diff --git a/.DS_Store b/.DS_Store
deleted file mode 100644
index c97dd93..0000000
Binary files a/.DS_Store and /dev/null differ
diff --git a/.gitignore b/.gitignore
deleted file mode 100644
index e87adce..0000000
--- a/.gitignore
+++ /dev/null
@@ -1,2 +0,0 @@
-*.swp
-.precomp
diff --git a/CRO/.gitignore b/CRO/.gitignore
deleted file mode 100644
index badb61f..0000000
--- a/CRO/.gitignore
+++ /dev/null
@@ -1 +0,0 @@
-*test*
diff --git a/CRO/crotest/README.md b/CRO/crotest/README.md
deleted file mode 100755
index e13115c..0000000
--- a/CRO/crotest/README.md
+++ /dev/null
@@ -1,7 +0,0 @@
-# Perl6 Cro Experimentation
-
-### Simple Webserver
-* Using SQLite3 Implementation Instead of PostgreSQL
-* Testing for Ingredient.Guru Final Website
-
-MORE TO COME IN THE FUTURE
diff --git a/CRO/crotest/ingredient.db b/CRO/crotest/ingredient.db
deleted file mode 100755
index cc6f199..0000000
Binary files a/CRO/crotest/ingredient.db and /dev/null differ
diff --git a/CRO/crotest/server/lib/Routes.pm6 b/CRO/crotest/server/lib/Routes.pm6
deleted file mode 100755
index 7d193f3..0000000
--- a/CRO/crotest/server/lib/Routes.pm6
+++ /dev/null
@@ -1,120 +0,0 @@
-use Cro::HTTP::Router;
-use Digest::SHA256::Native;
-use DBIish;
-
-### Attributes to pass to DBI->connect() to disable automatic
-### error checking
-my %attr = (
- database => '../ingredient.db',
- PrintError => 1,
- RaiseError => 0,
-);
-
-#Opens Connection
-my $dbh = DBIish.connect( 'SQLite', database => '../ingredient.db' );
-
-#Create SQL Table
-my $sth = $dbh.do(q:to/STATEMENT/);
- CREATE TABLE IF NOT EXISTS accounts (
- ID INTEGER PRIMARY KEY AUTOINCREMENT,
- username TEXT type UNIQUE,
- email TEXT,
- password TEXT,
- date TEXT
- )
- STATEMENT
-
-#$dbh.dispose;
-
-
-sub routes() is export {
- route {
-
- #Static Page HTML
- get -> {
- static 'static/index.html'
- }
-
- #Website Paths
- get -> 'static', *@path {
- static 'static', @path;
- }
-
- #Retrieve Info From register.html
- post -> 'register' {
- request-body -> (:$username,:$email,:$password) {
-
- #SQL Insert Statment
- $sth = $dbh.prepare(q:to/STATEMENT/);
- INSERT INTO accounts (username, email, password, date)
- VALUES ( ?, ?, ?, ? )
- STATEMENT
-
- #Hash Password
- my $hashpassword = sha256-hex $password.encode: 'utf8-c8';
-
- #Retrieves Date and Time
- my $date = Str(DateTime.now);
-
- #Inputs Data Into Database Using Prepare Statement (Outputs 1 for one line added, Outputs 0 for error)
- my $count = $sth.execute($username, $email, $hashpassword, $date);
-
- #Errors (i.e. Username Already Exists)
- CATCH {
- default {
- say 'Error caught: .message';
- content 'text/html','USERNAME ALREADY EXITS';
- }
- return;
- }
-
- #No Problems | Account Created
- if $count == 1 {
- content 'text/html','SUCCESS';
- }
- }
- }
- #Authentication
- post -> 'login' {
- #Retrieving Login Variables
- request-body -> (:$userlog,:$passlog) {
-
- #Hash Password At Login
- my $hashlogin = sha256-hex $passlog.encode: 'utf8-c8';
-
- #Select Statement to find username
- $sth = $dbh.prepare(q:to/STATEMENT/);
- select username from accounts WHERE username = (?)
- STATEMENT
-
- #Executes Select statement
- $sth.execute($userlog);
-
- #Stores the result
- my $result = $sth.allrows;
-
- #Starts to check password if a username is found
- if $result.elems >= 1 {
- $sth = $dbh.prepare(q:to/STATEMENT/);
- select password from accounts WHERE password = (?)
- STATEMENT
- $sth.execute($hashlogin);
-
- #Stores the returned hash from database
- my $hash = $sth.allrows[0];
-
- #Checks if hashs match and gives webpage response
- if $hashlogin eq $hash {
- content 'text/html',"Login Successful";
- } else {
- content 'text/html', "Login Failed";
- }
- #Completes first if statment
- } else {
- content 'text/html','Login Failed';
- }
- }
- }
- }
-}
-
diff --git a/CRO/crotest/server/static/index.html b/CRO/crotest/server/static/index.html
deleted file mode 100755
index ca2daa1..0000000
--- a/CRO/crotest/server/static/index.html
+++ /dev/null
@@ -1,12 +0,0 @@
-
-
- INGREDIENT GURU
-
-
-
- INGREDIENT GURU
- Sign In
-
- Register
-
-
diff --git a/CRO/crotest/server/static/register.html b/CRO/crotest/server/static/register.html
deleted file mode 100755
index d7d5665..0000000
--- a/CRO/crotest/server/static/register.html
+++ /dev/null
@@ -1,24 +0,0 @@
-
-
-
- Register
-
-
-
-
- Already Have An Account?
-
- Home
-
-
diff --git a/CRO/ingredient.db b/CRO/ingredient.db
new file mode 100755
index 0000000..aa760a4
Binary files /dev/null and b/CRO/ingredient.db differ
diff --git a/CRO/crotest/server/.DS_Store b/CRO/server/.DS_Store
similarity index 100%
rename from CRO/crotest/server/.DS_Store
rename to CRO/server/.DS_Store
diff --git a/CRO/crotest/server/.cro.yml b/CRO/server/.cro.yml
similarity index 100%
rename from CRO/crotest/server/.cro.yml
rename to CRO/server/.cro.yml
diff --git a/CRO/crotest/server/.dockerignore b/CRO/server/.dockerignore
similarity index 100%
rename from CRO/crotest/server/.dockerignore
rename to CRO/server/.dockerignore
diff --git a/CRO/crotest/server/Dockerfile b/CRO/server/Dockerfile
similarity index 100%
rename from CRO/crotest/server/Dockerfile
rename to CRO/server/Dockerfile
diff --git a/CRO/crotest/server/META6.json b/CRO/server/META6.json
similarity index 100%
rename from CRO/crotest/server/META6.json
rename to CRO/server/META6.json
diff --git a/CRO/crotest/server/README.md b/CRO/server/README.md
similarity index 100%
rename from CRO/crotest/server/README.md
rename to CRO/server/README.md
diff --git a/node_modules/pg-pool/test/timeout.js b/CRO/server/lib/.precomp/.lock
similarity index 100%
rename from node_modules/pg-pool/test/timeout.js
rename to CRO/server/lib/.precomp/.lock
diff --git a/CRO/server/lib/.precomp/1994AC47AA915F09C497C113636DA8687C32F278/00/001D9986B9B20C37FEC2793E5603C5CAE42C4999 b/CRO/server/lib/.precomp/1994AC47AA915F09C497C113636DA8687C32F278/00/001D9986B9B20C37FEC2793E5603C5CAE42C4999
new file mode 100644
index 0000000..7ddd544
Binary files /dev/null and b/CRO/server/lib/.precomp/1994AC47AA915F09C497C113636DA8687C32F278/00/001D9986B9B20C37FEC2793E5603C5CAE42C4999 differ
diff --git a/CRO/server/lib/.precomp/1994AC47AA915F09C497C113636DA8687C32F278/00/001D9986B9B20C37FEC2793E5603C5CAE42C4999.repo-id b/CRO/server/lib/.precomp/1994AC47AA915F09C497C113636DA8687C32F278/00/001D9986B9B20C37FEC2793E5603C5CAE42C4999.repo-id
new file mode 100644
index 0000000..0202048
--- /dev/null
+++ b/CRO/server/lib/.precomp/1994AC47AA915F09C497C113636DA8687C32F278/00/001D9986B9B20C37FEC2793E5603C5CAE42C4999.repo-id
@@ -0,0 +1 @@
+EA5F5AF5D9AE10EB218C4E1E49CBD4565AF7BF49
\ No newline at end of file
diff --git a/CRO/server/lib/.precomp/1994AC47AA915F09C497C113636DA8687C32F278/03/03730E58401EF5D9E79D1F674DF0A5F9CF756E33 b/CRO/server/lib/.precomp/1994AC47AA915F09C497C113636DA8687C32F278/03/03730E58401EF5D9E79D1F674DF0A5F9CF756E33
new file mode 100644
index 0000000..99bbc16
Binary files /dev/null and b/CRO/server/lib/.precomp/1994AC47AA915F09C497C113636DA8687C32F278/03/03730E58401EF5D9E79D1F674DF0A5F9CF756E33 differ
diff --git a/CRO/server/lib/.precomp/1994AC47AA915F09C497C113636DA8687C32F278/03/03730E58401EF5D9E79D1F674DF0A5F9CF756E33.repo-id b/CRO/server/lib/.precomp/1994AC47AA915F09C497C113636DA8687C32F278/03/03730E58401EF5D9E79D1F674DF0A5F9CF756E33.repo-id
new file mode 100644
index 0000000..0202048
--- /dev/null
+++ b/CRO/server/lib/.precomp/1994AC47AA915F09C497C113636DA8687C32F278/03/03730E58401EF5D9E79D1F674DF0A5F9CF756E33.repo-id
@@ -0,0 +1 @@
+EA5F5AF5D9AE10EB218C4E1E49CBD4565AF7BF49
\ No newline at end of file
diff --git a/CRO/server/lib/.precomp/1994AC47AA915F09C497C113636DA8687C32F278/1A/1AFC6DDADA58476C29D768530045ED6DE3F167E9.repo-id b/CRO/server/lib/.precomp/1994AC47AA915F09C497C113636DA8687C32F278/1A/1AFC6DDADA58476C29D768530045ED6DE3F167E9.repo-id
new file mode 100644
index 0000000..ff9f674
--- /dev/null
+++ b/CRO/server/lib/.precomp/1994AC47AA915F09C497C113636DA8687C32F278/1A/1AFC6DDADA58476C29D768530045ED6DE3F167E9.repo-id
@@ -0,0 +1 @@
+E422F9DB3B734B431BFDEC94BEC9084BFA14D905
\ No newline at end of file
diff --git a/CRO/server/lib/.precomp/1994AC47AA915F09C497C113636DA8687C32F278/28/28DDCAF3900BFC0EDFD827B501FCE9A173F5DDC5.repo-id b/CRO/server/lib/.precomp/1994AC47AA915F09C497C113636DA8687C32F278/28/28DDCAF3900BFC0EDFD827B501FCE9A173F5DDC5.repo-id
new file mode 100644
index 0000000..0202048
--- /dev/null
+++ b/CRO/server/lib/.precomp/1994AC47AA915F09C497C113636DA8687C32F278/28/28DDCAF3900BFC0EDFD827B501FCE9A173F5DDC5.repo-id
@@ -0,0 +1 @@
+EA5F5AF5D9AE10EB218C4E1E49CBD4565AF7BF49
\ No newline at end of file
diff --git a/CRO/server/lib/.precomp/1994AC47AA915F09C497C113636DA8687C32F278/37/37847C51B75336E258024B050712B7CAF4C66D19.repo-id b/CRO/server/lib/.precomp/1994AC47AA915F09C497C113636DA8687C32F278/37/37847C51B75336E258024B050712B7CAF4C66D19.repo-id
new file mode 100644
index 0000000..0202048
--- /dev/null
+++ b/CRO/server/lib/.precomp/1994AC47AA915F09C497C113636DA8687C32F278/37/37847C51B75336E258024B050712B7CAF4C66D19.repo-id
@@ -0,0 +1 @@
+EA5F5AF5D9AE10EB218C4E1E49CBD4565AF7BF49
\ No newline at end of file
diff --git a/CRO/server/lib/.precomp/1994AC47AA915F09C497C113636DA8687C32F278/3D/3D9007D72D757A944199F7743627DFE91CD2AAD9 b/CRO/server/lib/.precomp/1994AC47AA915F09C497C113636DA8687C32F278/3D/3D9007D72D757A944199F7743627DFE91CD2AAD9
new file mode 100644
index 0000000..dce6755
Binary files /dev/null and b/CRO/server/lib/.precomp/1994AC47AA915F09C497C113636DA8687C32F278/3D/3D9007D72D757A944199F7743627DFE91CD2AAD9 differ
diff --git a/CRO/server/lib/.precomp/1994AC47AA915F09C497C113636DA8687C32F278/3D/3D9007D72D757A944199F7743627DFE91CD2AAD9.repo-id b/CRO/server/lib/.precomp/1994AC47AA915F09C497C113636DA8687C32F278/3D/3D9007D72D757A944199F7743627DFE91CD2AAD9.repo-id
new file mode 100644
index 0000000..6954a30
--- /dev/null
+++ b/CRO/server/lib/.precomp/1994AC47AA915F09C497C113636DA8687C32F278/3D/3D9007D72D757A944199F7743627DFE91CD2AAD9.repo-id
@@ -0,0 +1 @@
+AAEBB26EAC094B45216F8AED9B9FFFA5D36BF124
\ No newline at end of file
diff --git a/CRO/server/lib/.precomp/1994AC47AA915F09C497C113636DA8687C32F278/64/64AEF0AD683EC647FAA7D9AFA7BA76927A0E111A.repo-id b/CRO/server/lib/.precomp/1994AC47AA915F09C497C113636DA8687C32F278/64/64AEF0AD683EC647FAA7D9AFA7BA76927A0E111A.repo-id
new file mode 100644
index 0000000..2558667
--- /dev/null
+++ b/CRO/server/lib/.precomp/1994AC47AA915F09C497C113636DA8687C32F278/64/64AEF0AD683EC647FAA7D9AFA7BA76927A0E111A.repo-id
@@ -0,0 +1 @@
+7EEDB4D42F038CF678D231449AFCDFB065BC6AF9
\ No newline at end of file
diff --git a/CRO/server/lib/.precomp/1994AC47AA915F09C497C113636DA8687C32F278/68/6857EA9A47FC4D2C5D0779785AF3119D1BAA4E9A.repo-id b/CRO/server/lib/.precomp/1994AC47AA915F09C497C113636DA8687C32F278/68/6857EA9A47FC4D2C5D0779785AF3119D1BAA4E9A.repo-id
new file mode 100644
index 0000000..0202048
--- /dev/null
+++ b/CRO/server/lib/.precomp/1994AC47AA915F09C497C113636DA8687C32F278/68/6857EA9A47FC4D2C5D0779785AF3119D1BAA4E9A.repo-id
@@ -0,0 +1 @@
+EA5F5AF5D9AE10EB218C4E1E49CBD4565AF7BF49
\ No newline at end of file
diff --git a/CRO/server/lib/.precomp/1994AC47AA915F09C497C113636DA8687C32F278/75/758A012BC24B97FD12CC128CDFC607A20B3EA1EF.repo-id b/CRO/server/lib/.precomp/1994AC47AA915F09C497C113636DA8687C32F278/75/758A012BC24B97FD12CC128CDFC607A20B3EA1EF.repo-id
new file mode 100644
index 0000000..6954a30
--- /dev/null
+++ b/CRO/server/lib/.precomp/1994AC47AA915F09C497C113636DA8687C32F278/75/758A012BC24B97FD12CC128CDFC607A20B3EA1EF.repo-id
@@ -0,0 +1 @@
+AAEBB26EAC094B45216F8AED9B9FFFA5D36BF124
\ No newline at end of file
diff --git a/CRO/server/lib/.precomp/1994AC47AA915F09C497C113636DA8687C32F278/8C/8CDD25426B4537A37E0306F483B47EAB126DBA2F.repo-id b/CRO/server/lib/.precomp/1994AC47AA915F09C497C113636DA8687C32F278/8C/8CDD25426B4537A37E0306F483B47EAB126DBA2F.repo-id
new file mode 100644
index 0000000..0202048
--- /dev/null
+++ b/CRO/server/lib/.precomp/1994AC47AA915F09C497C113636DA8687C32F278/8C/8CDD25426B4537A37E0306F483B47EAB126DBA2F.repo-id
@@ -0,0 +1 @@
+EA5F5AF5D9AE10EB218C4E1E49CBD4565AF7BF49
\ No newline at end of file
diff --git a/CRO/server/lib/.precomp/1994AC47AA915F09C497C113636DA8687C32F278/8E/8E96F75A04E2A71E8E0985767F527CA7038BF32D b/CRO/server/lib/.precomp/1994AC47AA915F09C497C113636DA8687C32F278/8E/8E96F75A04E2A71E8E0985767F527CA7038BF32D
new file mode 100644
index 0000000..90a73d4
Binary files /dev/null and b/CRO/server/lib/.precomp/1994AC47AA915F09C497C113636DA8687C32F278/8E/8E96F75A04E2A71E8E0985767F527CA7038BF32D differ
diff --git a/CRO/server/lib/.precomp/1994AC47AA915F09C497C113636DA8687C32F278/8E/8E96F75A04E2A71E8E0985767F527CA7038BF32D.repo-id b/CRO/server/lib/.precomp/1994AC47AA915F09C497C113636DA8687C32F278/8E/8E96F75A04E2A71E8E0985767F527CA7038BF32D.repo-id
new file mode 100644
index 0000000..0202048
--- /dev/null
+++ b/CRO/server/lib/.precomp/1994AC47AA915F09C497C113636DA8687C32F278/8E/8E96F75A04E2A71E8E0985767F527CA7038BF32D.repo-id
@@ -0,0 +1 @@
+EA5F5AF5D9AE10EB218C4E1E49CBD4565AF7BF49
\ No newline at end of file
diff --git a/CRO/server/lib/.precomp/1994AC47AA915F09C497C113636DA8687C32F278/A1/A14F298C2C089BD712CBC17D12AA8464C8F9095C.repo-id b/CRO/server/lib/.precomp/1994AC47AA915F09C497C113636DA8687C32F278/A1/A14F298C2C089BD712CBC17D12AA8464C8F9095C.repo-id
new file mode 100644
index 0000000..0202048
--- /dev/null
+++ b/CRO/server/lib/.precomp/1994AC47AA915F09C497C113636DA8687C32F278/A1/A14F298C2C089BD712CBC17D12AA8464C8F9095C.repo-id
@@ -0,0 +1 @@
+EA5F5AF5D9AE10EB218C4E1E49CBD4565AF7BF49
\ No newline at end of file
diff --git a/CRO/server/lib/.precomp/1994AC47AA915F09C497C113636DA8687C32F278/AA/AA06953B58584BD3266D1CEBC0F4D1DB3B090033.repo-id b/CRO/server/lib/.precomp/1994AC47AA915F09C497C113636DA8687C32F278/AA/AA06953B58584BD3266D1CEBC0F4D1DB3B090033.repo-id
new file mode 100644
index 0000000..6954a30
--- /dev/null
+++ b/CRO/server/lib/.precomp/1994AC47AA915F09C497C113636DA8687C32F278/AA/AA06953B58584BD3266D1CEBC0F4D1DB3B090033.repo-id
@@ -0,0 +1 @@
+AAEBB26EAC094B45216F8AED9B9FFFA5D36BF124
\ No newline at end of file
diff --git a/CRO/server/lib/.precomp/1994AC47AA915F09C497C113636DA8687C32F278/C0/C0C964B9B6734E572201A673C6F5818D62129A2C.repo-id b/CRO/server/lib/.precomp/1994AC47AA915F09C497C113636DA8687C32F278/C0/C0C964B9B6734E572201A673C6F5818D62129A2C.repo-id
new file mode 100644
index 0000000..0202048
--- /dev/null
+++ b/CRO/server/lib/.precomp/1994AC47AA915F09C497C113636DA8687C32F278/C0/C0C964B9B6734E572201A673C6F5818D62129A2C.repo-id
@@ -0,0 +1 @@
+EA5F5AF5D9AE10EB218C4E1E49CBD4565AF7BF49
\ No newline at end of file
diff --git a/CRO/server/lib/.precomp/1994AC47AA915F09C497C113636DA8687C32F278/D2/D26BE9BE3E2E4446371F551DF52DDF70968D9CA0.repo-id b/CRO/server/lib/.precomp/1994AC47AA915F09C497C113636DA8687C32F278/D2/D26BE9BE3E2E4446371F551DF52DDF70968D9CA0.repo-id
new file mode 100644
index 0000000..6954a30
--- /dev/null
+++ b/CRO/server/lib/.precomp/1994AC47AA915F09C497C113636DA8687C32F278/D2/D26BE9BE3E2E4446371F551DF52DDF70968D9CA0.repo-id
@@ -0,0 +1 @@
+AAEBB26EAC094B45216F8AED9B9FFFA5D36BF124
\ No newline at end of file
diff --git a/CRO/server/lib/.precomp/1F1A90EA5DFCB083FA8031791BAFCEA7CA4DDDB3/03/03730E58401EF5D9E79D1F674DF0A5F9CF756E33 b/CRO/server/lib/.precomp/1F1A90EA5DFCB083FA8031791BAFCEA7CA4DDDB3/03/03730E58401EF5D9E79D1F674DF0A5F9CF756E33
new file mode 100644
index 0000000..5708e65
Binary files /dev/null and b/CRO/server/lib/.precomp/1F1A90EA5DFCB083FA8031791BAFCEA7CA4DDDB3/03/03730E58401EF5D9E79D1F674DF0A5F9CF756E33 differ
diff --git a/CRO/server/lib/.precomp/1F1A90EA5DFCB083FA8031791BAFCEA7CA4DDDB3/03/03730E58401EF5D9E79D1F674DF0A5F9CF756E33.repo-id b/CRO/server/lib/.precomp/1F1A90EA5DFCB083FA8031791BAFCEA7CA4DDDB3/03/03730E58401EF5D9E79D1F674DF0A5F9CF756E33.repo-id
new file mode 100644
index 0000000..e4ac644
--- /dev/null
+++ b/CRO/server/lib/.precomp/1F1A90EA5DFCB083FA8031791BAFCEA7CA4DDDB3/03/03730E58401EF5D9E79D1F674DF0A5F9CF756E33.repo-id
@@ -0,0 +1 @@
+D96A526161C9091B04F3C816617816DEADD8DD53
\ No newline at end of file
diff --git a/CRO/server/lib/.precomp/1F1A90EA5DFCB083FA8031791BAFCEA7CA4DDDB3/37/37847C51B75336E258024B050712B7CAF4C66D19.repo-id b/CRO/server/lib/.precomp/1F1A90EA5DFCB083FA8031791BAFCEA7CA4DDDB3/37/37847C51B75336E258024B050712B7CAF4C66D19.repo-id
new file mode 100644
index 0000000..e4ac644
--- /dev/null
+++ b/CRO/server/lib/.precomp/1F1A90EA5DFCB083FA8031791BAFCEA7CA4DDDB3/37/37847C51B75336E258024B050712B7CAF4C66D19.repo-id
@@ -0,0 +1 @@
+D96A526161C9091B04F3C816617816DEADD8DD53
\ No newline at end of file
diff --git a/CRO/server/lib/.precomp/1F1A90EA5DFCB083FA8031791BAFCEA7CA4DDDB3/8E/8E96F75A04E2A71E8E0985767F527CA7038BF32D.repo-id b/CRO/server/lib/.precomp/1F1A90EA5DFCB083FA8031791BAFCEA7CA4DDDB3/8E/8E96F75A04E2A71E8E0985767F527CA7038BF32D.repo-id
new file mode 100644
index 0000000..e4ac644
--- /dev/null
+++ b/CRO/server/lib/.precomp/1F1A90EA5DFCB083FA8031791BAFCEA7CA4DDDB3/8E/8E96F75A04E2A71E8E0985767F527CA7038BF32D.repo-id
@@ -0,0 +1 @@
+D96A526161C9091B04F3C816617816DEADD8DD53
\ No newline at end of file
diff --git a/CRO/server/lib/.precomp/1F1A90EA5DFCB083FA8031791BAFCEA7CA4DDDB3/A1/A14F298C2C089BD712CBC17D12AA8464C8F9095C.repo-id b/CRO/server/lib/.precomp/1F1A90EA5DFCB083FA8031791BAFCEA7CA4DDDB3/A1/A14F298C2C089BD712CBC17D12AA8464C8F9095C.repo-id
new file mode 100644
index 0000000..e4ac644
--- /dev/null
+++ b/CRO/server/lib/.precomp/1F1A90EA5DFCB083FA8031791BAFCEA7CA4DDDB3/A1/A14F298C2C089BD712CBC17D12AA8464C8F9095C.repo-id
@@ -0,0 +1 @@
+D96A526161C9091B04F3C816617816DEADD8DD53
\ No newline at end of file
diff --git a/CRO/server/lib/.precomp/1F1A90EA5DFCB083FA8031791BAFCEA7CA4DDDB3/C0/C0C964B9B6734E572201A673C6F5818D62129A2C.repo-id b/CRO/server/lib/.precomp/1F1A90EA5DFCB083FA8031791BAFCEA7CA4DDDB3/C0/C0C964B9B6734E572201A673C6F5818D62129A2C.repo-id
new file mode 100644
index 0000000..e4ac644
--- /dev/null
+++ b/CRO/server/lib/.precomp/1F1A90EA5DFCB083FA8031791BAFCEA7CA4DDDB3/C0/C0C964B9B6734E572201A673C6F5818D62129A2C.repo-id
@@ -0,0 +1 @@
+D96A526161C9091B04F3C816617816DEADD8DD53
\ No newline at end of file
diff --git a/CRO/server/lib/.precomp/1F1A90EA5DFCB083FA8031791BAFCEA7CA4DDDB3/E9/E9B3E701744DAE0F3843E9C413FCB45C6EC80AC6.repo-id b/CRO/server/lib/.precomp/1F1A90EA5DFCB083FA8031791BAFCEA7CA4DDDB3/E9/E9B3E701744DAE0F3843E9C413FCB45C6EC80AC6.repo-id
new file mode 100644
index 0000000..e4ac644
--- /dev/null
+++ b/CRO/server/lib/.precomp/1F1A90EA5DFCB083FA8031791BAFCEA7CA4DDDB3/E9/E9B3E701744DAE0F3843E9C413FCB45C6EC80AC6.repo-id
@@ -0,0 +1 @@
+D96A526161C9091B04F3C816617816DEADD8DD53
\ No newline at end of file
diff --git a/CRO/server/lib/.precomp/1F1A90EA5DFCB083FA8031791BAFCEA7CA4DDDB3/FE/FE05B91225DE8F9ABABA27CB8D4EF83F8A0668B9.repo-id b/CRO/server/lib/.precomp/1F1A90EA5DFCB083FA8031791BAFCEA7CA4DDDB3/FE/FE05B91225DE8F9ABABA27CB8D4EF83F8A0668B9.repo-id
new file mode 100644
index 0000000..e4ac644
--- /dev/null
+++ b/CRO/server/lib/.precomp/1F1A90EA5DFCB083FA8031791BAFCEA7CA4DDDB3/FE/FE05B91225DE8F9ABABA27CB8D4EF83F8A0668B9.repo-id
@@ -0,0 +1 @@
+D96A526161C9091B04F3C816617816DEADD8DD53
\ No newline at end of file
diff --git a/CRO/server/lib/Routes.pm6 b/CRO/server/lib/Routes.pm6
new file mode 100755
index 0000000..d755392
--- /dev/null
+++ b/CRO/server/lib/Routes.pm6
@@ -0,0 +1,256 @@
+use Digest::SHA256::Native;
+use DBIish;
+use Cro::HTTP::Router;
+use Cro::HTTP::Cookie;
+use Cro::HTTP::Auth;
+use Cro::HTTP::Session::InMemory;
+use Net::SMTP;
+
+#Opens Connection
+my $dbh = DBIish.connect( 'SQLite', database => '../ingredient.db' );
+
+#Create Verified Account Names
+my $sth = $dbh.do(q:to/STATEMENT/);
+ CREATE TABLE IF NOT EXISTS accounts (
+ ID INTEGER PRIMARY KEY AUTOINCREMENT,
+ username TEXT type UNIQUE,
+ email TEXT type UNIQUE,
+ password TEXT,
+ date TEXT,
+ code INT,
+ verified TEXT
+ )
+ STATEMENT
+
+#For Session and Cookies
+$sth = $dbh.do(q:to/STATEMENT/);
+ CREATE TABLE IF NOT EXISTS tokens (
+ user PRIMARY KEY,
+ hash TEXT
+ )
+ STATEMENT
+
+#Password Reset
+$sth = $dbh.do(q:to/STATEMENT/);
+ CREATE TABLE IF NOT EXISTS reset (
+ email TEXT,
+ token TEXT,
+ date TEXT
+ )
+ STATEMENT
+
+# Cro::HTTP::Auth Stuff for Session Creation
+class UserSession does Cro::HTTP::Auth {
+ has $.username is rw;
+
+ method logged-in() {
+ defined $!username;
+ }
+}
+
+sub routes() is export {
+ route {
+ before Cro::HTTP::Session::InMemory[UserSession].new;
+
+ subset LoggedIn of UserSession where *.logged-in;
+
+ #Static Page HTML
+ get -> {
+ static 'static/index.html';
+ }
+
+ get -> 'register' {
+ static 'static/register.html';
+ }
+
+ get -> 'css' {
+ static 'static/style.css';
+ }
+
+ get -> 'confirm' {
+ static 'static/confirm.html';
+ }
+
+ get -> 'reset' {
+ static 'static/reset.html';
+ }
+
+ #Retrieve Info From register.html
+ post -> 'register', 'post' {
+ request-body -> (:$username,:$email,:$password) {
+
+ #SQL Insert Statment
+ $sth = $dbh.prepare(q:to/STATEMENT/);
+ INSERT INTO accounts (username, email, password, date, code, verified)
+ VALUES ( ?, ?, ?, ?, ?, ? )
+ STATEMENT
+
+ #Hash Password
+ my $hashpassword = sha256-hex $password.encode: 'utf8-c8';
+
+ #Retrieves Date and Time
+ my $date = Str(DateTime.now);
+
+ #Generate Random 6 Digit Code
+ my $code = (100000^..999999).pick;
+
+ #Inputs Data Into Database Using Prepare Statement (Outputs 1 for one line added, Outputs 0 for error)
+ my $count = $sth.execute($username, $email, $hashpassword, $date, $code, "FALSE");
+
+ $sth = $dbh.prepare(q:to/STATEMENT/);
+ insert into tokens (user, hash)
+ VALUES (?,?)
+ STATEMENT
+
+ $sth.execute($username,"");
+
+ #Errors (i.e. Username Already Exists)
+ CATCH {
+ default {
+ say 'Error caught:';
+ $*ERR.say: .message;
+ content 'text/html','USERNAME ALREADY EXITS';
+ }
+ return;
+ }
+
+ #No Problems | Account Created
+ if $count == 1 {
+ static 'static/confirm.html';
+
+ #Prep email
+ my $from = "ingredient@arltech.com";
+ my $to = "$email";
+ my $message = "Your 6 Digit Number: $code";
+
+ #Send email
+ my $client = Net::SMTP.new(:server("127.0.0.1"), :port(25), :debug);
+ $client.send($from, $to, $message);
+ $client.quit;
+ }
+ }
+ }
+ # construct URL: http://[server]/confirm/email?userlog='~$userlog~'&code='~$code
+
+ #Get Statement retirving code and username
+ post -> 'confirm' {
+ request-body -> (:$code,:$username) {
+ #CODE CHECKING WITH DATABASE
+ $sth = $dbh.prepare(q:to/STATEMENT/);
+ UPDATE accounts SET verified = "TRUE" WHERE username = (?) and code = (?)
+ STATEMENT
+
+ my $results = $sth.execute($username, $code);
+ if $results == 0 {
+ content 'text/html', "INCORRECT CODE";
+ } else {
+ content 'text/html', "ACCOUNT VERIFIED PLEASE LOGIN" ~ 'Home ';
+ }
+ }
+ }
+
+ #Authentication
+ get -> UserSession $s, 'login' {
+ if $s.logged-in {
+ content 'text/html','Successful Login: Welcome' ~ " " ~$s.username ~ 'Logout ';
+ }
+ else {static 'static/signin.html'}
+ }
+
+ post -> UserSession $user, 'login', 'authenticate' {
+ request-body -> (:$userlog, :$passlog, *%) {
+ if valid-user-pass($userlog, $passlog) {
+ $user.username = $userlog;
+ say "Successful login";
+ content 'text/html','Successful Login: Welcome' ~ " " ~$user.username ~ 'Logout ';
+ }
+ else {
+ say "Bad login";
+ content 'text/html', "Bad Username/Password and/or Account Not Verified" ~ 'Verify Account ';
+ }
+ }
+ }
+ sub valid-user-pass($username, $password) {
+ #Hash Password At Login
+ my $hashlogin = sha256-hex $password.encode: 'utf8-c8';
+
+ #Select Statement to find username
+ $sth = $dbh.prepare(q:to/STATEMENT/);
+ select username from accounts WHERE username = (?) and password = (?) and verified = "TRUE"
+ STATEMENT
+
+ #Executes Select statement
+ $sth.execute($username, $hashlogin);
+
+ #Stores the result
+ my $result = $sth.allrows;
+
+ #If there is more than one row, the username and password matched
+ return $result.elems >= 1;
+ }
+
+ get -> UserSession $s, 'logout' {
+ $s.username = Nil;
+ static 'static/signin.html'
+ }
+
+ post -> 'reset' {
+ request-body -> (:$email) {
+ #Check to see if email exists in accounts
+ #If Exists then send email
+ #If not exists post email not found
+
+ $sth = $dbh.prepare(q:to/STATEMENT/);
+ select email from accounts WHERE email = (?)
+ STATEMENT
+
+ $sth.execute($email);
+ my $results = $sth.allrows;
+
+ if $results == 1 {
+ content 'text/html','Successful Email sent' ~ 'Home ';
+
+ #Prep email
+ my $from = "ingredient@arltech.com";
+ my $to = "$email";
+ my $token = ("a".."z","A".."Z",0..9).flat.roll(22).join;
+ my $date = Str(DateTime.now);
+ my $message = "Click here http://ingredientguru.arltechinnovation.us/reset/$token";
+
+ #Send email
+ my $client = Net::SMTP.new(:server("127.0.0.1"), :port(25), :debug);
+ $client.send($from, $to, $message);
+ $client.quit;
+
+ $sth = $dbh.prepare(q:to/STATEMENT/);
+ INSERT INTO reset (email, token, date)
+ VALUES ( ?, ?, ? )
+ STATEMENT
+ $sth.execute($email, $token, $date);
+
+ # DELETE ENTRY AFTER TWO DAYS
+
+ } else {
+ content 'text/html', "Email does not exist";
+ }
+ }
+ }
+ get -> 'reset' , $token {
+ $sth = $dbh.prepare(q:to/STATEMENT/);
+ select email from reset WHERE token = (?)
+ STATEMENT
+
+ $sth.execute($token);
+ my $results = $sth.allrows;
+ if $results == 1 {
+ #Redirect to password_rest_prompt.html | post called reset password
+ }
+ content 'text/html','No Email is Associated with that Particular Token';
+ }
+ post -> 'resetpassword' {
+ request-body -> (:$password, :$confirm_password) {
+ # Check that passwords match based on the email above update password.
+ }
+ }
+ }
+}
diff --git a/CRO/crotest/server/service.p6 b/CRO/server/service.p6
similarity index 100%
rename from CRO/crotest/server/service.p6
rename to CRO/server/service.p6
diff --git a/CRO/server/static/confirm.html b/CRO/server/static/confirm.html
new file mode 100755
index 0000000..7d67546
--- /dev/null
+++ b/CRO/server/static/confirm.html
@@ -0,0 +1,46 @@
+
+
+
+ Testing
+
+
+You're almost done setting up
+
+
+
+
+
+
+
diff --git a/CRO/server/static/index.html b/CRO/server/static/index.html
new file mode 100755
index 0000000..66c1ec4
--- /dev/null
+++ b/CRO/server/static/index.html
@@ -0,0 +1,23 @@
+
+
+
+
+ INGREDIENT GURU
+
+
+
+ Hello there!
+ Welcome to ingredient.guru. This is a long term project that gameifies
+ chooseing healthy food. Ingredient.guru is written perl6 and is using
+ CRO. Below you will find the sign in and register options. Be careful,
+ there may be some unsquashed bugs!
+ INGREDIENT GURU
+ Sign In
+
+ Register
+
+ Verify Account
+
+ Reset Password
+
+
diff --git a/CRO/server/static/password_reset_prompt.html b/CRO/server/static/password_reset_prompt.html
new file mode 100644
index 0000000..1869ad0
--- /dev/null
+++ b/CRO/server/static/password_reset_prompt.html
@@ -0,0 +1,22 @@
+
+
+
+ Reset Password
+
+
+
+
+ Create an Account
+ Sign In
+
+ Home
+
+
+
diff --git a/CRO/server/static/register.html b/CRO/server/static/register.html
new file mode 100755
index 0000000..c21b48c
--- /dev/null
+++ b/CRO/server/static/register.html
@@ -0,0 +1,51 @@
+
+
+
+
+
+
+
+ Register
+
+
+
+
+
+
+
+
+
diff --git a/CRO/crotest/server/static/signin.html b/CRO/server/static/reset.html
old mode 100755
new mode 100644
similarity index 52%
rename from CRO/crotest/server/static/signin.html
rename to CRO/server/static/reset.html
index d31fb1c..07c3a3d
--- a/CRO/crotest/server/static/signin.html
+++ b/CRO/server/static/reset.html
@@ -1,21 +1,20 @@
- Testing
+ Reset Password
-
Create an Account
+ Sign In
Home
+
diff --git a/CRO/server/static/signin.html b/CRO/server/static/signin.html
new file mode 100755
index 0000000..f7bd720
--- /dev/null
+++ b/CRO/server/static/signin.html
@@ -0,0 +1,49 @@
+
+
+
+
+
+
+
+ Sign in
+
+
+
+
+
+
+
+
+
diff --git a/CRO/server/static/style.css b/CRO/server/static/style.css
new file mode 100644
index 0000000..2d4fd0d
--- /dev/null
+++ b/CRO/server/static/style.css
@@ -0,0 +1,129 @@
+ body {
+ background-color: #F3EBF6;
+ font-family: 'Ubuntu', sans-serif;
+ }
+
+ .main {
+ background-color: #FFFFFF;
+ width: 400px;
+ height: 400px;
+ margin: 7em auto;
+ border-radius: 1.5em;
+ box-shadow: 0px 11px 35px 2px rgba(0, 0, 0, 0.14);
+ }
+
+ .sign {
+ padding-top: 40px;
+ color: #8C55AA;
+ font-family: 'Ubuntu', sans-serif;
+ font-weight: bold;
+ font-size: 23px;
+ }
+
+ .un {
+ width: 76%;
+ color: rgb(38, 50, 56);
+ font-weight: 700;
+ font-size: 14px;
+ letter-spacing: 1px;
+ background: rgba(136, 126, 126, 0.04);
+ padding: 10px 20px;
+ border: none;
+ border-radius: 20px;
+ outline: none;
+ box-sizing: border-box;
+ border: 2px solid rgba(0, 0, 0, 0.02);
+ margin-bottom: 50px;
+ margin-left: 46px;
+ text-align: center;
+ margin-bottom: 27px;
+ font-family: 'Ubuntu', sans-serif;
+ }
+
+ .email {
+ width: 76%;
+ color: rgb(38, 50, 56);
+ font-weight: 700;
+ font-size: 14px;
+ letter-spacing: 1px;
+ background: rgba(136, 126, 126, 0.04);
+ padding: 10px 20px;
+ border: none;
+ border-radius: 20px;
+ outline: none;
+ box-sizing: border-box;
+ border: 2px solid rgba(0, 0, 0, 0.02);
+ margin-bottom: 50px;
+ margin-left: 46px;
+ text-align: center;
+ margin-bottom: 27px;
+ font-family: 'Ubuntu', sans-serif;
+ }
+
+
+ form.form1 {
+ padding-top: 40px;
+ }
+
+ .pass {
+ width: 76%;
+ color: rgb(38, 50, 56);
+ font-weight: 700;
+ font-size: 14px;
+ letter-spacing: 1px;
+ background: rgba(136, 126, 126, 0.04);
+ padding: 10px 20px;
+ border: none;
+ border-radius: 20px;
+ outline: none;
+ box-sizing: border-box;
+ border: 2px solid rgba(0, 0, 0, 0.02);
+ margin-bottom: 50px;
+ margin-left: 46px;
+ text-align: center;
+ margin-bottom: 27px;
+ font-family: 'Ubuntu', sans-serif;
+ }
+
+
+ .un:focus, .pass:focus {
+ border: 2px solid rgba(0, 0, 0, 0.18) !important;
+
+ }
+
+ .submit {
+ cursor: pointer;
+ border-radius: 5em;
+ color: #fff;
+ background: linear-gradient(to right, #9C27B0, #E040FB);
+ border: 0;
+ padding-left: 40px;
+ padding-right: 40px;
+ padding-bottom: 10px;
+ padding-top: 10px;
+ font-family: 'Ubuntu', sans-serif;
+ margin-left: 35%;
+ font-size: 13px;
+ box-shadow: 0 0 20px 1px rgba(0, 0, 0, 0.04);
+ }
+
+ .forgot {
+ text-shadow: 0px 0px 3px rgba(117, 117, 117, 0.12);
+ color: #E1BEE7;
+ padding-top: 15px;
+ }
+
+ a {
+ text-shadow: 0px 0px 3px rgba(117, 117, 117, 0.12);
+ color: #E1BEE7;
+ text-decoration: none
+ }
+
+ @media (max-width: 600px) {
+ .main {
+ border-radius: 0px;
+ }
+
+
+
+
diff --git a/CRO/session/README.md b/CRO/session/README.md
deleted file mode 100755
index e13115c..0000000
--- a/CRO/session/README.md
+++ /dev/null
@@ -1,7 +0,0 @@
-# Perl6 Cro Experimentation
-
-### Simple Webserver
-* Using SQLite3 Implementation Instead of PostgreSQL
-* Testing for Ingredient.Guru Final Website
-
-MORE TO COME IN THE FUTURE
diff --git a/CRO/session/server/.DS_Store b/CRO/session/server/.DS_Store
deleted file mode 100644
index 5008ddf..0000000
Binary files a/CRO/session/server/.DS_Store and /dev/null differ
diff --git a/CRO/session/server/.cro.yml b/CRO/session/server/.cro.yml
deleted file mode 100755
index 2ca6125..0000000
--- a/CRO/session/server/.cro.yml
+++ /dev/null
@@ -1,15 +0,0 @@
----
-env: []
-links: []
-id: server
-entrypoint: service.p6
-name: server
-endpoints:
- -
- host-env: SERVER_HOST
- id: http
- name: HTTP
- protocol: http
- port-env: SERVER_PORT
-cro: 1
-...
\ No newline at end of file
diff --git a/CRO/session/server/.dockerignore b/CRO/session/server/.dockerignore
deleted file mode 100755
index 860f8b0..0000000
--- a/CRO/session/server/.dockerignore
+++ /dev/null
@@ -1 +0,0 @@
-.precomp/
diff --git a/CRO/session/server/Dockerfile b/CRO/session/server/Dockerfile
deleted file mode 100755
index e35a70e..0000000
--- a/CRO/session/server/Dockerfile
+++ /dev/null
@@ -1,8 +0,0 @@
-FROM croservices/cro-http:0.8.1
-RUN mkdir /app
-COPY . /app
-WORKDIR /app
-RUN zef install --deps-only . && perl6 -c -Ilib service.p6
-ENV SERVER_HOST="0.0.0.0" SERVER_PORT="10000"
-EXPOSE 10000
-CMD perl6 -Ilib service.p6
diff --git a/CRO/session/server/META6.json b/CRO/session/server/META6.json
deleted file mode 100755
index 1396e48..0000000
--- a/CRO/session/server/META6.json
+++ /dev/null
@@ -1,34 +0,0 @@
-{
- "meta-version": "0",
- "resources": [
-
- ],
- "authors": [
- ""
- ],
- "perl": "6.*",
- "auth": "Write me!",
- "provides": {
- "Routes.pm6": "lib/Routes.pm6"
- },
- "test-depends": [
-
- ],
- "description": "Write me!",
- "version": "0.0.1",
- "tags": [
- ""
- ],
- "support": {
- "source": "Write me!"
- },
- "depends": [
- "Cro::HTTP"
- ],
- "build-depends": [
-
- ],
- "source-url": "Write me!",
- "license": "Write me!",
- "name": "server"
-}
\ No newline at end of file
diff --git a/CRO/session/server/README.md b/CRO/session/server/README.md
deleted file mode 100755
index c68aeba..0000000
--- a/CRO/session/server/README.md
+++ /dev/null
@@ -1,23 +0,0 @@
-# server
-
-This is an application stub generated by `cro stub`. To try it out,
-you'll need to have Cro installed; you can do so using:
-
-```
-zef install --/test cro
-```
-
-Then change directory to the app root (the directory containing this
-`README.md` file), and run these commands:
-
-```
-zef install --depsonly .
-cro run
-```
-
-You can also build and run a docker image while in the app root using:
-
-```
-docker build -t server .
-docker run --rm -p 10000:10000 server
-```
diff --git a/CRO/session/server/ingredient.db b/CRO/session/server/ingredient.db
deleted file mode 100644
index ef8961e..0000000
Binary files a/CRO/session/server/ingredient.db and /dev/null differ
diff --git a/CRO/session/server/lib/Routes.pm6 b/CRO/session/server/lib/Routes.pm6
deleted file mode 100755
index 1cf6a5c..0000000
--- a/CRO/session/server/lib/Routes.pm6
+++ /dev/null
@@ -1,126 +0,0 @@
-use Cro::HTTP::Router;
-use Digest::SHA256::Native;
-use DBIish;
-use Cro::HTTP::Cookie;
-
-#Opens Connection
-my $dbh = DBIish.connect( 'SQLite', database => './ingredient.db' );
-
-#Create SQL Table If Not There
-my $sth = $dbh.do(q:to/STATEMENT/);
- CREATE TABLE IF NOT EXISTS accounts (
- ID INTEGER PRIMARY KEY AUTOINCREMENT,
- username TEXT type UNIQUE,
- email TEXT,
- password TEXT,
- date TEXT
- )
- STATEMENT
-
-my $sth = $dbh.do(q:to/STATEMENT/);
- CREATE TABLE IF NOT EXISTS tokens (
- user PRIMARY KEY,
- hash TEXT
- )
- STATEMENT
-
-sub routes() is export {
- route {
-
- #Static Page HTML
- get -> {
- static 'static/index.html'
- }
-
- #Website Paths
- get -> 'static', *@path {
- static 'static', @path;
- }
-
- #Retrieve Info From register.html
- post -> 'register' {
- request-body -> (:$username,:$email,:$password) {
-
- #SQL Insert Statment
- $sth = $dbh.prepare(q:to/STATEMENT/);
- INSERT INTO accounts (username, email, password, date)
- VALUES ( ?, ?, ?, ? )
- STATEMENT
-
- #Hash Password
- my $hashpassword = sha256-hex $password.encode: 'utf8-c8';
-
- #Retrieves Date and Time
- my $date = Str(DateTime.now);
-
- #Inputs Data Into Database Using Prepare Statement (Outputs 1 for one line added, Outputs 0 for error)
- my $count = $sth.execute($username, $email, $hashpassword, $date);
-
- #Errors (i.e. Username Already Exists)
- CATCH {
- default {
- say 'Error caught: .message';
- content 'text/html','USERNAME ALREADY EXITS';
- }
- return;
- }
-
- #No Problems | Account Created
- if $count == 1 {
- content 'text/html','SUCCESS';
- }
- }
- }
- #Authentication
- get -> 'login', :$at is cookie {
- with $at {content 'text/html','Authentication token found: ' ~ $at}
- else {static 'static/signin.html'}
- }
- post -> 'login' , 'authenticate' {
- #Retrieving Login Variables
- request-body -> (:$userlog,:$passlog) {
-
- #Hash Password At Login
- my $hashlogin = sha256-hex $passlog.encode: 'utf8-c8';
-
- #Select Statement to find username
- $sth = $dbh.prepare(q:to/STATEMENT/);
- select username from accounts WHERE username = (?)
- STATEMENT
-
- #Executes Select statement
- $sth.execute($userlog);
-
- #Stores the result
- my $result = $sth.allrows;
-
- #Starts to check password if a username is found
- if $result.elems >= 1 {
- $sth = $dbh.prepare(q:to/STATEMENT/);
- select password from accounts WHERE password = (?)
- STATEMENT
- $sth.execute($hashlogin);
-
- #Stores the returned hash from database
- my $hash = $sth.allrows[0];
-
- #Checks if hashs match and gives webpage response
- if $hashlogin eq $hash {
- #at stands for authentication token
- my $time = DateTime.now.later(:5minutes);
- my $c = Cro::HTTP::Cookie.new(name => "at", value => "beans", expires => $time);
- my $token = sha256-hex $time.say ~ $userlog;
- set-cookie 'at', $token, expires => $time;
- content 'text/html',"Login Successful";
- } else {
- content 'text/html', "Login Failed";
- }
- #Completes first if statment
- } else {
- content 'text/html','Login Failed';
- }
- }
- }
- }
-}
-
diff --git a/CRO/session/server/service.p6 b/CRO/session/server/service.p6
deleted file mode 100755
index a42f22b..0000000
--- a/CRO/session/server/service.p6
+++ /dev/null
@@ -1,24 +0,0 @@
-use Cro::HTTP::Log::File;
-use Cro::HTTP::Server;
-use Routes;
-
-my Cro::Service $http = Cro::HTTP::Server.new(
- http => <1.1>,
- host => %*ENV ||
- die("Missing SERVER_HOST in environment"),
- port => %*ENV ||
- die("Missing SERVER_PORT in environment"),
- application => routes(),
- after => [
- Cro::HTTP::Log::File.new(logs => $*OUT, errors => $*ERR)
- ]
-);
-$http.start;
-say "Listening at http://%*ENV:%*ENV";
-react {
- whenever signal(SIGINT) {
- say "Shutting down...";
- $http.stop;
- done;
- }
-}
diff --git a/CRO/session/server/static/index.html b/CRO/session/server/static/index.html
deleted file mode 100755
index 8008a1c..0000000
--- a/CRO/session/server/static/index.html
+++ /dev/null
@@ -1,14 +0,0 @@
-
-
-
- INGREDIENT GURU
-
-
-
- INGREDIENT GURU
- Sign In
-
- Register
-
-
-
diff --git a/CRO/session/server/static/register.html b/CRO/session/server/static/register.html
deleted file mode 100755
index 0d4f1b7..0000000
--- a/CRO/session/server/static/register.html
+++ /dev/null
@@ -1,26 +0,0 @@
-
-
-
-
- Register
-
-
-
-
- Already Have An Account?
-
- Home
-
-
-
diff --git a/CRO/session/server/static/signin.html b/CRO/session/server/static/signin.html
deleted file mode 100755
index 2f2d2f2..0000000
--- a/CRO/session/server/static/signin.html
+++ /dev/null
@@ -1,23 +0,0 @@
-
-
-
-
- Testing
-
-
-
-
- Create an Account
-
- Home
-
-
-
diff --git a/CRO/sign-in-test/.DS_Store b/CRO/sign-in-test/.DS_Store
deleted file mode 100644
index 5008ddf..0000000
Binary files a/CRO/sign-in-test/.DS_Store and /dev/null differ
diff --git a/CRO/sign-in-test/.cro.yml b/CRO/sign-in-test/.cro.yml
deleted file mode 100644
index e6d2539..0000000
--- a/CRO/sign-in-test/.cro.yml
+++ /dev/null
@@ -1,15 +0,0 @@
----
-name: cro-server
-entrypoint: service.p6
-links: []
-env: []
-id: cro-server
-endpoints:
- -
- name: HTTP
- host-env: CRO_SERVER_HOST
- protocol: http
- port-env: CRO_SERVER_PORT
- id: http
-cro: 1
-...
diff --git a/CRO/sign-in-test/.dockerignore b/CRO/sign-in-test/.dockerignore
deleted file mode 100644
index 860f8b0..0000000
--- a/CRO/sign-in-test/.dockerignore
+++ /dev/null
@@ -1 +0,0 @@
-.precomp/
diff --git a/CRO/sign-in-test/Dockerfile b/CRO/sign-in-test/Dockerfile
deleted file mode 100644
index 7138d54..0000000
--- a/CRO/sign-in-test/Dockerfile
+++ /dev/null
@@ -1,8 +0,0 @@
-FROM croservices/cro-http:0.8.1
-RUN mkdir /app
-COPY . /app
-WORKDIR /app
-RUN zef install --deps-only . && perl6 -c -Ilib service.p6
-ENV TEMPLATE_CRO_HOST="0.0.0.0" TEMPLATE_CRO_PORT="10000"
-EXPOSE 10000
-CMD perl6 -Ilib service.p6
diff --git a/CRO/sign-in-test/META6.json b/CRO/sign-in-test/META6.json
deleted file mode 100644
index e1b3ea7..0000000
--- a/CRO/sign-in-test/META6.json
+++ /dev/null
@@ -1,31 +0,0 @@
-{
- "meta-version": "0",
- "test-depends": [
- ],
- "support": {
- "source": "Write me!"
- },
- "tags": [
- ""
- ],
- "version": "0.0.1",
- "name": "server-cro",
- "depends": [
- "Cro::HTTP"
- ],
- "license": "Write me!",
- "perl": "6.*",
- "authors": [
- ""
- ],
- "resources": [
- ],
- "build-depends": [
- ],
- "source-url": "Write me!",
- "provides": {
- "Routes.pm6": "lib/Routes.pm6"
- },
- "description": "Write me!",
- "auth": "Write me!"
-}
diff --git a/CRO/sign-in-test/README.md b/CRO/sign-in-test/README.md
deleted file mode 100644
index a761149..0000000
--- a/CRO/sign-in-test/README.md
+++ /dev/null
@@ -1,23 +0,0 @@
-# template-cro
-
-This is an application stub generated by `cro stub`. To try it out,
-you'll need to have Cro installed; you can do so using:
-
-```
-zef install --/test cro
-```
-
-Then change directory to the app root (the directory containing this
-`README.md` file), and run these commands:
-
-```
-zef install --depsonly .
-cro run
-```
-
-You can also build and run a docker image while in the app root using:
-
-```
-docker build -t template-cro .
-docker run --rm -p 10000:10000 template-cro
-```
diff --git a/CRO/sign-in-test/lib/HTML-P6/Basic.pm6 b/CRO/sign-in-test/lib/HTML-P6/Basic.pm6
deleted file mode 100644
index 3fea3f5..0000000
--- a/CRO/sign-in-test/lib/HTML-P6/Basic.pm6
+++ /dev/null
@@ -1,19 +0,0 @@
-#unit module conv;
-module HTML-P6::Basic {
-
- sub interpretBasic($text, %dict) is export {
- my $start;
- my $end;
- my $varstring;
- my $out = $text;
-
- while index($out, '{{') {
- $start = 2 + index $out, '{{';
- $end = -1 + index $out, '}}';
- $varstring = substr $out, $start..$end;
- $out = substr($out, 0..$start - 3)~%dict{$varstring}~substr($out, $end + 3..*);
- }
- return $out;
- }
-
-}
diff --git a/CRO/sign-in-test/lib/Routes.pm6 b/CRO/sign-in-test/lib/Routes.pm6
deleted file mode 100644
index 91beb60..0000000
--- a/CRO/sign-in-test/lib/Routes.pm6
+++ /dev/null
@@ -1,85 +0,0 @@
-#Route
-use HTML-P6::Basic;
-use Cro::HTTP::Router;
-use Digest::SHA256::Native;
-use Cro::HTTP::Client;
-use Cro::HTTP::Client::CookieJar;
-use Cro::HTTP::Response;
-use Cro::HTTP::Request;
-use Cro::HTTP::Cookie;
-
-#my $jar = Cro::HTTP::Client::CookieJar.new;
-#my $client = Cro::HTTP::Client.new(cookie-jar => $jar, base-uri => 'http://localhost:20000');
-#my $client = Cro::HTTP::Client.new(base-uri => 'http://localhost:20000');
-#$client.cookie-jar => $jar;
-#my $resp = Cro::HTTP::Response.new;
-#my $client = Cro::HTTP::Client.new(:cookie-jar);
-#say "Cookies: "~$resp.cookies.perl~' |}';
-#my $resp = await $client.get('/login');
-#$jar.add-cookie($c);
-
-my $jar = Cro::HTTP::Client::CookieJar.new;
-my $client = Cro::HTTP::Client.new(cookie-jar => $jar);
-sub routes() is export {
- route {
- get -> {
- static 'static/home.html';
- }
- get -> 'client', $val {
- my $time = DateTime.now.later(:5minutes);
- my $c = Cro::HTTP::Cookie.new(name => "happy-cookie", value => $val, expires => $time);
- my $resp = $client.get("http://localhost:20000/cookies");
- $jar.add-cookie($c);
- content 'text/html' , "* {$jar.contents} *";
- }
- get -> 'client2'{
-
- }
- get -> 'cookies3'{
- my $time = DateTime.now.later(:5minutes)
- my $c = Cro::HTTP::Cookie.new(name => "testc", value => $val, expires => $time);
- set-cookie "y-cookie", "derp";
- content 'text/html', 'yay';
- }
- get -> 'cookies4', :$y-cookie! is cookie {
- content 'text/html', "yayyayyyyyyy {$y-cookie}";
- }
- get -> 'cookies' , :$set ,:$val {
- my $req = Cro::HTTP::Request.new(path => '/cookies');
- if $set {
- my $time = DateTime.now.later(:5minutes)
- my $c = Cro::HTTP::Cookie.new(name => "testc", value => $val, expires => $time);
- $req.add-cookie($c);
- }
- if $req.has-cookie("testc") {
- content 'text/html' , 'Value: '~$req.cookie-value("testc");
- } else {
- content 'text/html' , "Cookie not found";
- }
- }
- get -> 'login' {
- static 'static/login.html';
- }
- post -> 'login', 'auth'{
- request-body -> (:$uname, :$passwd) {
- my %inputdict;
- %inputdict = sha256-hex $uname;
- %inputdict = sha256-hex $passwd;
- %inputdict = $passwd;
- %inputdict = $uname;
- #my %inputdict = username => $uname, password => $passwd, usha => sha256-hex $uname#, ass => $passwd;#, psha => sha256-hex $passwd;
- my $body = 'static/login-post.html'.IO.slurp;
- content 'text/html', interpretBasic $body, %inputdict;
- }
- }
- post -> 'form', 'post' {
- request-body -> (:$namevar) {
- content 'text/html', "Guess what? you came through the POST method, "~$namevar~"!";
- }
- }
- get -> 'sha', :$a {
- with $a {content 'text/html', sha256-hex "$a"}
- else {content 'text/html', ":/"}
- }
- }
-}
diff --git a/CRO/sign-in-test/service.p6 b/CRO/sign-in-test/service.p6
deleted file mode 100644
index 278e22b..0000000
--- a/CRO/sign-in-test/service.p6
+++ /dev/null
@@ -1,24 +0,0 @@
-use Cro::HTTP::Log::File;
-use Cro::HTTP::Server;
-use Routes;
-
-my Cro::Service $http = Cro::HTTP::Server.new(
- http => <1.1>,
- host => %*ENV ||
- die("Missing CRO_SERVER_HOST in environment"),
- port => %*ENV ||
- die("Missing CRO_SERVER_PORT in environment"),
- application => routes(),
- after => [
- Cro::HTTP::Log::File.new(logs => $*OUT, errors => $*ERR)
- ]
-);
-$http.start;
-say "Listening at http://%*ENV:%*ENV";
-react {
- whenever signal(SIGINT) {
- say "Shutting down...";
- $http.stop;
- done;
- }
-}
diff --git a/CRO/sign-in-test/static/.DS_Store b/CRO/sign-in-test/static/.DS_Store
deleted file mode 100644
index 5008ddf..0000000
Binary files a/CRO/sign-in-test/static/.DS_Store and /dev/null differ
diff --git a/CRO/sign-in-test/static/hidden.html b/CRO/sign-in-test/static/hidden.html
deleted file mode 100644
index 97739a8..0000000
--- a/CRO/sign-in-test/static/hidden.html
+++ /dev/null
@@ -1,4 +0,0 @@
- Html is a bad thing
- \qq[$super]
-
- Thats pretty good ;)
diff --git a/CRO/sign-in-test/static/home.html b/CRO/sign-in-test/static/home.html
deleted file mode 100644
index c601f7f..0000000
--- a/CRO/sign-in-test/static/home.html
+++ /dev/null
@@ -1,5 +0,0 @@
-
-Ingredient.Guru
-
-LOGIN
-
diff --git a/CRO/sign-in-test/static/login-post.html b/CRO/sign-in-test/static/login-post.html
deleted file mode 100644
index c361fe9..0000000
--- a/CRO/sign-in-test/static/login-post.html
+++ /dev/null
@@ -1,17 +0,0 @@
-
- POST results
-
-
- Username:
- {{username}}
-
- Password:
- {{password}}
-
- Home
-
-Hashes:
-
-{{usha}}
-
-{{psha}}
diff --git a/CRO/sign-in-test/static/login.html b/CRO/sign-in-test/static/login.html
deleted file mode 100644
index aa25e64..0000000
--- a/CRO/sign-in-test/static/login.html
+++ /dev/null
@@ -1,9 +0,0 @@
-
-Log In
-
-
diff --git a/CRO/sign-in-test/static/mt.html b/CRO/sign-in-test/static/mt.html
deleted file mode 100644
index f2130dd..0000000
--- a/CRO/sign-in-test/static/mt.html
+++ /dev/null
@@ -1,5 +0,0 @@
-{{prefix}} {{fname}}
-this is a letter to you
-
-jk {{prefix}} {{lname}}
- congrats on living {{age}} years
diff --git a/CRO/sign-in-test/static/test1.html b/CRO/sign-in-test/static/test1.html
deleted file mode 100644
index 648ee97..0000000
--- a/CRO/sign-in-test/static/test1.html
+++ /dev/null
@@ -1,3 +0,0 @@
-The test worked!
-
-Click here to go back
diff --git a/Postgres/Makefile b/Postgres/Makefile
deleted file mode 100644
index 3338f5c..0000000
--- a/Postgres/Makefile
+++ /dev/null
@@ -1,18 +0,0 @@
-DB=ingredientguru
-BUILD=${CURDIR}/build.sql
-SCRIPTS=${CURDIR}/
-MASTER=$(SCRIPTS)/import.sql
-NORMALIZE = $(SCRIPTS)/normalize.sql
-
-all: normalize
- cat $(BUILD) | envsubst | psql $(DB)
-
-
-import:
- @cat $(MASTER) >> $(BUILD)
-
-normalize: import
- @cat $(NORMALIZE) >> $(BUILD)
-
-clean:
- @rm -rf $(BUILD)
diff --git a/Postgres/SearchNutr/guru_wrapper.py b/Postgres/SearchNutr/guru_wrapper.py
deleted file mode 100755
index 2d5b88f..0000000
--- a/Postgres/SearchNutr/guru_wrapper.py
+++ /dev/null
@@ -1,43 +0,0 @@
-#!/user/bin/env python3
-import psycopg2
-
-
-def connect(user,dbname="ingredientguru"):
- return psycopg2.connect(f"dbname={dbname} user={user}")
-
-
-def query_ingredients(connection,match):
- cur = connection.cursor()
- cur.execute("SELECT id,short_description FROM ingredient WHERE lower(short_description) LIKE '%{0}%';".format(str(match).lower()))
-
- return cur.fetchall()
-
-
-def query_join_nutrient_data(connection,match):
- cur = connection.cursor()
- cur.execute(f"""
- SELECT
- food_desc.short_description,
- nut_def.tag_name,
- nut_dat.nutrient_value,
- nut_def.units_of_measurement
- FROM ingredient food_desc
- LEFT JOIN ingredient_nutrient nut_dat ON food_desc.id = nut_dat.ingredient_id
- LEFT JOIN nutrient nut_def ON nut_dat.nutrient_id = nut_def.nutrient_id
- WHERE food_desc.id = {match};
- """)
-
- return cur.fetchall()
-
-
-def print_result_ids(result):
- for row in result:
- print(row[0],row[1])
-
-
-if __name__ == '__main__':
- c = connect('fcrisafulli')
- ingredients = query_ingredients(c,input("Search for a short keyword: "))
- print(ingredients)
- result = query_join_nutrient_data(c,input("Type an ID: "))
- print(result)
diff --git a/Postgres/StressTests/.mypy_cache/3.7/@plugins_snapshot.json b/Postgres/StressTests/.mypy_cache/3.7/@plugins_snapshot.json
deleted file mode 100644
index 9e26dfe..0000000
--- a/Postgres/StressTests/.mypy_cache/3.7/@plugins_snapshot.json
+++ /dev/null
@@ -1 +0,0 @@
-{}
\ No newline at end of file
diff --git a/Postgres/StressTests/.mypy_cache/3.7/_ast.data.json b/Postgres/StressTests/.mypy_cache/3.7/_ast.data.json
deleted file mode 100644
index b9b9c0b..0000000
--- a/Postgres/StressTests/.mypy_cache/3.7/_ast.data.json
+++ /dev/null
@@ -1 +0,0 @@
-{".class": "MypyFile", "_fullname": "_ast", "is_partial_stub_package": false, "is_stub": true, "names": {".class": "SymbolTable", "AST": {".class": "SymbolTableNode", "kind": "Gdef", "node": {".class": "TypeInfo", "_promote": null, "abstract_attributes": [], "bases": ["builtins.object"], "declared_metaclass": null, "defn": {".class": "ClassDef", "fullname": "_ast.AST", "name": "AST", "type_vars": []}, "flags": [], "fullname": "_ast.AST", "metaclass_type": null, "metadata": {}, "module_name": "_ast", "mro": ["_ast.AST", "builtins.object"], "names": {".class": "SymbolTable", "__init__": {".class": "SymbolTableNode", "kind": "Mdef", "node": {".class": "FuncDef", "arg_kinds": [0, 2, 4], "arg_names": ["self", "args", "kwargs"], "flags": [], "fullname": "_ast.AST.__init__", "name": "__init__", "type": {".class": "CallableType", "arg_kinds": [0, 2, 4], "arg_names": ["self", "args", "kwargs"], "arg_types": ["_ast.AST", {".class": "AnyType", "missing_import_name": null, "source_any": null, "type_of_any": 2}, {".class": "AnyType", "missing_import_name": null, "source_any": null, "type_of_any": 2}], "bound_args": [], "def_extras": {"first_arg": "self"}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "__init__ of AST", "ret_type": {".class": "NoneTyp"}, "variables": []}}}, "_attributes": {".class": "SymbolTableNode", "kind": "Mdef", "node": {".class": "Var", "flags": ["is_initialized_in_class", "is_classvar"], "fullname": "_ast.AST._attributes", "name": "_attributes", "type": {".class": "Instance", "args": ["builtins.str"], "type_ref": "builtins.tuple"}}}, "_fields": {".class": "SymbolTableNode", "kind": "Mdef", "node": {".class": "Var", "flags": ["is_initialized_in_class", "is_classvar"], "fullname": "_ast.AST._fields", "name": "_fields", "type": {".class": "Instance", "args": ["builtins.str"], "type_ref": "builtins.tuple"}}}, "col_offset": {".class": "SymbolTableNode", "kind": "Mdef", "node": {".class": "Var", "flags": ["is_initialized_in_class"], "fullname": "_ast.AST.col_offset", "name": "col_offset", "type": "builtins.int"}}, "lineno": {".class": "SymbolTableNode", "kind": "Mdef", "node": {".class": "Var", "flags": ["is_initialized_in_class"], "fullname": "_ast.AST.lineno", "name": "lineno", "type": "builtins.int"}}}, "tuple_type": null, "type_vars": [], "typeddict_type": null}}, "Add": {".class": "SymbolTableNode", "kind": "Gdef", "node": {".class": "TypeInfo", "_promote": null, "abstract_attributes": [], "bases": ["_ast.operator"], "declared_metaclass": null, "defn": {".class": "ClassDef", "fullname": "_ast.Add", "name": "Add", "type_vars": []}, "flags": [], "fullname": "_ast.Add", "metaclass_type": null, "metadata": {}, "module_name": "_ast", "mro": ["_ast.Add", "_ast.operator", "_ast.AST", "builtins.object"], "names": {".class": "SymbolTable"}, "tuple_type": null, "type_vars": [], "typeddict_type": null}}, "And": {".class": "SymbolTableNode", "kind": "Gdef", "node": {".class": "TypeInfo", "_promote": null, "abstract_attributes": [], "bases": ["_ast.boolop"], "declared_metaclass": null, "defn": {".class": "ClassDef", "fullname": "_ast.And", "name": "And", "type_vars": []}, "flags": [], "fullname": "_ast.And", "metaclass_type": null, "metadata": {}, "module_name": "_ast", "mro": ["_ast.And", "_ast.boolop", "_ast.AST", "builtins.object"], "names": {".class": "SymbolTable"}, "tuple_type": null, "type_vars": [], "typeddict_type": null}}, "AnnAssign": {".class": "SymbolTableNode", "kind": "Gdef", "node": {".class": "TypeInfo", "_promote": null, "abstract_attributes": [], "bases": ["_ast.stmt"], "declared_metaclass": null, "defn": {".class": "ClassDef", "fullname": "_ast.AnnAssign", "name": "AnnAssign", "type_vars": []}, "flags": [], "fullname": "_ast.AnnAssign", "metaclass_type": null, "metadata": {}, "module_name": "_ast", "mro": ["_ast.AnnAssign", "_ast.stmt", "_ast.AST", "builtins.object"], "names": {".class": "SymbolTable", "annotation": {".class": "SymbolTableNode", "kind": "Mdef", "node": {".class": "Var", "flags": ["is_initialized_in_class"], "fullname": "_ast.AnnAssign.annotation", "name": "annotation", "type": "_ast.expr"}}, "simple": {".class": "SymbolTableNode", "kind": "Mdef", "node": {".class": "Var", "flags": ["is_initialized_in_class"], "fullname": "_ast.AnnAssign.simple", "name": "simple", "type": "builtins.int"}}, "target": {".class": "SymbolTableNode", "kind": "Mdef", "node": {".class": "Var", "flags": ["is_initialized_in_class"], "fullname": "_ast.AnnAssign.target", "name": "target", "type": "_ast.expr"}}, "value": {".class": "SymbolTableNode", "kind": "Mdef", "node": {".class": "Var", "flags": ["is_initialized_in_class"], "fullname": "_ast.AnnAssign.value", "name": "value", "type": {".class": "UnionType", "items": ["_ast.expr", {".class": "NoneTyp"}]}}}}, "tuple_type": null, "type_vars": [], "typeddict_type": null}}, "Any": {".class": "SymbolTableNode", "cross_ref": "typing.Any", "kind": "Gdef", "module_hidden": true, "module_public": false}, "Assert": {".class": "SymbolTableNode", "kind": "Gdef", "node": {".class": "TypeInfo", "_promote": null, "abstract_attributes": [], "bases": ["_ast.stmt"], "declared_metaclass": null, "defn": {".class": "ClassDef", "fullname": "_ast.Assert", "name": "Assert", "type_vars": []}, "flags": [], "fullname": "_ast.Assert", "metaclass_type": null, "metadata": {}, "module_name": "_ast", "mro": ["_ast.Assert", "_ast.stmt", "_ast.AST", "builtins.object"], "names": {".class": "SymbolTable", "msg": {".class": "SymbolTableNode", "kind": "Mdef", "node": {".class": "Var", "flags": ["is_initialized_in_class"], "fullname": "_ast.Assert.msg", "name": "msg", "type": {".class": "UnionType", "items": ["_ast.expr", {".class": "NoneTyp"}]}}}, "test": {".class": "SymbolTableNode", "kind": "Mdef", "node": {".class": "Var", "flags": ["is_initialized_in_class"], "fullname": "_ast.Assert.test", "name": "test", "type": "_ast.expr"}}}, "tuple_type": null, "type_vars": [], "typeddict_type": null}}, "Assign": {".class": "SymbolTableNode", "kind": "Gdef", "node": {".class": "TypeInfo", "_promote": null, "abstract_attributes": [], "bases": ["_ast.stmt"], "declared_metaclass": null, "defn": {".class": "ClassDef", "fullname": "_ast.Assign", "name": "Assign", "type_vars": []}, "flags": [], "fullname": "_ast.Assign", "metaclass_type": null, "metadata": {}, "module_name": "_ast", "mro": ["_ast.Assign", "_ast.stmt", "_ast.AST", "builtins.object"], "names": {".class": "SymbolTable", "targets": {".class": "SymbolTableNode", "kind": "Mdef", "node": {".class": "Var", "flags": ["is_initialized_in_class"], "fullname": "_ast.Assign.targets", "name": "targets", "type": {".class": "Instance", "args": ["_ast.expr"], "type_ref": "builtins.list"}}}, "value": {".class": "SymbolTableNode", "kind": "Mdef", "node": {".class": "Var", "flags": ["is_initialized_in_class"], "fullname": "_ast.Assign.value", "name": "value", "type": "_ast.expr"}}}, "tuple_type": null, "type_vars": [], "typeddict_type": null}}, "AsyncFor": {".class": "SymbolTableNode", "kind": "Gdef", "node": {".class": "TypeInfo", "_promote": null, "abstract_attributes": [], "bases": ["_ast.stmt"], "declared_metaclass": null, "defn": {".class": "ClassDef", "fullname": "_ast.AsyncFor", "name": "AsyncFor", "type_vars": []}, "flags": [], "fullname": "_ast.AsyncFor", "metaclass_type": null, "metadata": {}, "module_name": "_ast", "mro": ["_ast.AsyncFor", "_ast.stmt", "_ast.AST", "builtins.object"], "names": {".class": "SymbolTable", "body": {".class": "SymbolTableNode", "kind": "Mdef", "node": {".class": "Var", "flags": ["is_initialized_in_class"], "fullname": "_ast.AsyncFor.body", "name": "body", "type": {".class": "Instance", "args": ["_ast.stmt"], "type_ref": "builtins.list"}}}, "iter": {".class": "SymbolTableNode", "kind": "Mdef", "node": {".class": "Var", "flags": ["is_initialized_in_class"], "fullname": "_ast.AsyncFor.iter", "name": "iter", "type": "_ast.expr"}}, "orelse": {".class": "SymbolTableNode", "kind": "Mdef", "node": {".class": "Var", "flags": ["is_initialized_in_class"], "fullname": "_ast.AsyncFor.orelse", "name": "orelse", "type": {".class": "Instance", "args": ["_ast.stmt"], "type_ref": "builtins.list"}}}, "target": {".class": "SymbolTableNode", "kind": "Mdef", "node": {".class": "Var", "flags": ["is_initialized_in_class"], "fullname": "_ast.AsyncFor.target", "name": "target", "type": "_ast.expr"}}}, "tuple_type": null, "type_vars": [], "typeddict_type": null}}, "AsyncFunctionDef": {".class": "SymbolTableNode", "kind": "Gdef", "node": {".class": "TypeInfo", "_promote": null, "abstract_attributes": [], "bases": ["_ast.stmt"], "declared_metaclass": null, "defn": {".class": "ClassDef", "fullname": "_ast.AsyncFunctionDef", "name": "AsyncFunctionDef", "type_vars": []}, "flags": [], "fullname": "_ast.AsyncFunctionDef", "metaclass_type": null, "metadata": {}, "module_name": "_ast", "mro": ["_ast.AsyncFunctionDef", "_ast.stmt", "_ast.AST", "builtins.object"], "names": {".class": "SymbolTable", "args": {".class": "SymbolTableNode", "kind": "Mdef", "node": {".class": "Var", "flags": ["is_initialized_in_class"], "fullname": "_ast.AsyncFunctionDef.args", "name": "args", "type": "_ast.arguments"}}, "body": {".class": "SymbolTableNode", "kind": "Mdef", "node": {".class": "Var", "flags": ["is_initialized_in_class"], "fullname": "_ast.AsyncFunctionDef.body", "name": "body", "type": {".class": "Instance", "args": ["_ast.stmt"], "type_ref": "builtins.list"}}}, "decorator_list": {".class": "SymbolTableNode", "kind": "Mdef", "node": {".class": "Var", "flags": ["is_initialized_in_class"], "fullname": "_ast.AsyncFunctionDef.decorator_list", "name": "decorator_list", "type": {".class": "Instance", "args": ["_ast.expr"], "type_ref": "builtins.list"}}}, "docstring": {".class": "SymbolTableNode", "kind": "Mdef", "node": {".class": "Var", "flags": ["is_initialized_in_class"], "fullname": "_ast.AsyncFunctionDef.docstring", "name": "docstring", "type": {".class": "UnionType", "items": ["builtins.str", {".class": "NoneTyp"}]}}}, "name": {".class": "SymbolTableNode", "kind": "Mdef", "node": {".class": "Var", "flags": ["is_initialized_in_class"], "fullname": "_ast.AsyncFunctionDef.name", "name": "name", "type": "builtins.str"}}, "returns": {".class": "SymbolTableNode", "kind": "Mdef", "node": {".class": "Var", "flags": ["is_initialized_in_class"], "fullname": "_ast.AsyncFunctionDef.returns", "name": "returns", "type": {".class": "UnionType", "items": ["_ast.expr", {".class": "NoneTyp"}]}}}}, "tuple_type": null, "type_vars": [], "typeddict_type": null}}, "AsyncWith": {".class": "SymbolTableNode", "kind": "Gdef", "node": {".class": "TypeInfo", "_promote": null, "abstract_attributes": [], "bases": ["_ast.stmt"], "declared_metaclass": null, "defn": {".class": "ClassDef", "fullname": "_ast.AsyncWith", "name": "AsyncWith", "type_vars": []}, "flags": [], "fullname": "_ast.AsyncWith", "metaclass_type": null, "metadata": {}, "module_name": "_ast", "mro": ["_ast.AsyncWith", "_ast.stmt", "_ast.AST", "builtins.object"], "names": {".class": "SymbolTable", "body": {".class": "SymbolTableNode", "kind": "Mdef", "node": {".class": "Var", "flags": ["is_initialized_in_class"], "fullname": "_ast.AsyncWith.body", "name": "body", "type": {".class": "Instance", "args": ["_ast.stmt"], "type_ref": "builtins.list"}}}, "items": {".class": "SymbolTableNode", "kind": "Mdef", "node": {".class": "Var", "flags": ["is_initialized_in_class"], "fullname": "_ast.AsyncWith.items", "name": "items", "type": {".class": "Instance", "args": ["_ast.withitem"], "type_ref": "builtins.list"}}}}, "tuple_type": null, "type_vars": [], "typeddict_type": null}}, "Attribute": {".class": "SymbolTableNode", "kind": "Gdef", "node": {".class": "TypeInfo", "_promote": null, "abstract_attributes": [], "bases": ["_ast.expr"], "declared_metaclass": null, "defn": {".class": "ClassDef", "fullname": "_ast.Attribute", "name": "Attribute", "type_vars": []}, "flags": [], "fullname": "_ast.Attribute", "metaclass_type": null, "metadata": {}, "module_name": "_ast", "mro": ["_ast.Attribute", "_ast.expr", "_ast.AST", "builtins.object"], "names": {".class": "SymbolTable", "attr": {".class": "SymbolTableNode", "kind": "Mdef", "node": {".class": "Var", "flags": ["is_initialized_in_class"], "fullname": "_ast.Attribute.attr", "name": "attr", "type": "builtins.str"}}, "ctx": {".class": "SymbolTableNode", "kind": "Mdef", "node": {".class": "Var", "flags": ["is_initialized_in_class"], "fullname": "_ast.Attribute.ctx", "name": "ctx", "type": "_ast.expr_context"}}, "value": {".class": "SymbolTableNode", "kind": "Mdef", "node": {".class": "Var", "flags": ["is_initialized_in_class"], "fullname": "_ast.Attribute.value", "name": "value", "type": "_ast.expr"}}}, "tuple_type": null, "type_vars": [], "typeddict_type": null}}, "AugAssign": {".class": "SymbolTableNode", "kind": "Gdef", "node": {".class": "TypeInfo", "_promote": null, "abstract_attributes": [], "bases": ["_ast.stmt"], "declared_metaclass": null, "defn": {".class": "ClassDef", "fullname": "_ast.AugAssign", "name": "AugAssign", "type_vars": []}, "flags": [], "fullname": "_ast.AugAssign", "metaclass_type": null, "metadata": {}, "module_name": "_ast", "mro": ["_ast.AugAssign", "_ast.stmt", "_ast.AST", "builtins.object"], "names": {".class": "SymbolTable", "op": {".class": "SymbolTableNode", "kind": "Mdef", "node": {".class": "Var", "flags": ["is_initialized_in_class"], "fullname": "_ast.AugAssign.op", "name": "op", "type": "_ast.operator"}}, "target": {".class": "SymbolTableNode", "kind": "Mdef", "node": {".class": "Var", "flags": ["is_initialized_in_class"], "fullname": "_ast.AugAssign.target", "name": "target", "type": "_ast.expr"}}, "value": {".class": "SymbolTableNode", "kind": "Mdef", "node": {".class": "Var", "flags": ["is_initialized_in_class"], "fullname": "_ast.AugAssign.value", "name": "value", "type": "_ast.expr"}}}, "tuple_type": null, "type_vars": [], "typeddict_type": null}}, "AugLoad": {".class": "SymbolTableNode", "kind": "Gdef", "node": {".class": "TypeInfo", "_promote": null, "abstract_attributes": [], "bases": ["_ast.expr_context"], "declared_metaclass": null, "defn": {".class": "ClassDef", "fullname": "_ast.AugLoad", "name": "AugLoad", "type_vars": []}, "flags": [], "fullname": "_ast.AugLoad", "metaclass_type": null, "metadata": {}, "module_name": "_ast", "mro": ["_ast.AugLoad", "_ast.expr_context", "_ast.AST", "builtins.object"], "names": {".class": "SymbolTable"}, "tuple_type": null, "type_vars": [], "typeddict_type": null}}, "AugStore": {".class": "SymbolTableNode", "kind": "Gdef", "node": {".class": "TypeInfo", "_promote": null, "abstract_attributes": [], "bases": ["_ast.expr_context"], "declared_metaclass": null, "defn": {".class": "ClassDef", "fullname": "_ast.AugStore", "name": "AugStore", "type_vars": []}, "flags": [], "fullname": "_ast.AugStore", "metaclass_type": null, "metadata": {}, "module_name": "_ast", "mro": ["_ast.AugStore", "_ast.expr_context", "_ast.AST", "builtins.object"], "names": {".class": "SymbolTable"}, "tuple_type": null, "type_vars": [], "typeddict_type": null}}, "Await": {".class": "SymbolTableNode", "kind": "Gdef", "node": {".class": "TypeInfo", "_promote": null, "abstract_attributes": [], "bases": ["_ast.expr"], "declared_metaclass": null, "defn": {".class": "ClassDef", "fullname": "_ast.Await", "name": "Await", "type_vars": []}, "flags": [], "fullname": "_ast.Await", "metaclass_type": null, "metadata": {}, "module_name": "_ast", "mro": ["_ast.Await", "_ast.expr", "_ast.AST", "builtins.object"], "names": {".class": "SymbolTable", "value": {".class": "SymbolTableNode", "kind": "Mdef", "node": {".class": "Var", "flags": ["is_initialized_in_class"], "fullname": "_ast.Await.value", "name": "value", "type": "_ast.expr"}}}, "tuple_type": null, "type_vars": [], "typeddict_type": null}}, "BinOp": {".class": "SymbolTableNode", "kind": "Gdef", "node": {".class": "TypeInfo", "_promote": null, "abstract_attributes": [], "bases": ["_ast.expr"], "declared_metaclass": null, "defn": {".class": "ClassDef", "fullname": "_ast.BinOp", "name": "BinOp", "type_vars": []}, "flags": [], "fullname": "_ast.BinOp", "metaclass_type": null, "metadata": {}, "module_name": "_ast", "mro": ["_ast.BinOp", "_ast.expr", "_ast.AST", "builtins.object"], "names": {".class": "SymbolTable", "left": {".class": "SymbolTableNode", "kind": "Mdef", "node": {".class": "Var", "flags": ["is_initialized_in_class"], "fullname": "_ast.BinOp.left", "name": "left", "type": "_ast.expr"}}, "op": {".class": "SymbolTableNode", "kind": "Mdef", "node": {".class": "Var", "flags": ["is_initialized_in_class"], "fullname": "_ast.BinOp.op", "name": "op", "type": "_ast.operator"}}, "right": {".class": "SymbolTableNode", "kind": "Mdef", "node": {".class": "Var", "flags": ["is_initialized_in_class"], "fullname": "_ast.BinOp.right", "name": "right", "type": "_ast.expr"}}}, "tuple_type": null, "type_vars": [], "typeddict_type": null}}, "BitAnd": {".class": "SymbolTableNode", "kind": "Gdef", "node": {".class": "TypeInfo", "_promote": null, "abstract_attributes": [], "bases": ["_ast.operator"], "declared_metaclass": null, "defn": {".class": "ClassDef", "fullname": "_ast.BitAnd", "name": "BitAnd", "type_vars": []}, "flags": [], "fullname": "_ast.BitAnd", "metaclass_type": null, "metadata": {}, "module_name": "_ast", "mro": ["_ast.BitAnd", "_ast.operator", "_ast.AST", "builtins.object"], "names": {".class": "SymbolTable"}, "tuple_type": null, "type_vars": [], "typeddict_type": null}}, "BitOr": {".class": "SymbolTableNode", "kind": "Gdef", "node": {".class": "TypeInfo", "_promote": null, "abstract_attributes": [], "bases": ["_ast.operator"], "declared_metaclass": null, "defn": {".class": "ClassDef", "fullname": "_ast.BitOr", "name": "BitOr", "type_vars": []}, "flags": [], "fullname": "_ast.BitOr", "metaclass_type": null, "metadata": {}, "module_name": "_ast", "mro": ["_ast.BitOr", "_ast.operator", "_ast.AST", "builtins.object"], "names": {".class": "SymbolTable"}, "tuple_type": null, "type_vars": [], "typeddict_type": null}}, "BitXor": {".class": "SymbolTableNode", "kind": "Gdef", "node": {".class": "TypeInfo", "_promote": null, "abstract_attributes": [], "bases": ["_ast.operator"], "declared_metaclass": null, "defn": {".class": "ClassDef", "fullname": "_ast.BitXor", "name": "BitXor", "type_vars": []}, "flags": [], "fullname": "_ast.BitXor", "metaclass_type": null, "metadata": {}, "module_name": "_ast", "mro": ["_ast.BitXor", "_ast.operator", "_ast.AST", "builtins.object"], "names": {".class": "SymbolTable"}, "tuple_type": null, "type_vars": [], "typeddict_type": null}}, "BoolOp": {".class": "SymbolTableNode", "kind": "Gdef", "node": {".class": "TypeInfo", "_promote": null, "abstract_attributes": [], "bases": ["_ast.expr"], "declared_metaclass": null, "defn": {".class": "ClassDef", "fullname": "_ast.BoolOp", "name": "BoolOp", "type_vars": []}, "flags": [], "fullname": "_ast.BoolOp", "metaclass_type": null, "metadata": {}, "module_name": "_ast", "mro": ["_ast.BoolOp", "_ast.expr", "_ast.AST", "builtins.object"], "names": {".class": "SymbolTable", "op": {".class": "SymbolTableNode", "kind": "Mdef", "node": {".class": "Var", "flags": ["is_initialized_in_class"], "fullname": "_ast.BoolOp.op", "name": "op", "type": "_ast.boolop"}}, "values": {".class": "SymbolTableNode", "kind": "Mdef", "node": {".class": "Var", "flags": ["is_initialized_in_class"], "fullname": "_ast.BoolOp.values", "name": "values", "type": {".class": "Instance", "args": ["_ast.expr"], "type_ref": "builtins.list"}}}}, "tuple_type": null, "type_vars": [], "typeddict_type": null}}, "Break": {".class": "SymbolTableNode", "kind": "Gdef", "node": {".class": "TypeInfo", "_promote": null, "abstract_attributes": [], "bases": ["_ast.stmt"], "declared_metaclass": null, "defn": {".class": "ClassDef", "fullname": "_ast.Break", "name": "Break", "type_vars": []}, "flags": [], "fullname": "_ast.Break", "metaclass_type": null, "metadata": {}, "module_name": "_ast", "mro": ["_ast.Break", "_ast.stmt", "_ast.AST", "builtins.object"], "names": {".class": "SymbolTable"}, "tuple_type": null, "type_vars": [], "typeddict_type": null}}, "Bytes": {".class": "SymbolTableNode", "kind": "Gdef", "node": {".class": "TypeInfo", "_promote": null, "abstract_attributes": [], "bases": ["_ast.expr"], "declared_metaclass": null, "defn": {".class": "ClassDef", "fullname": "_ast.Bytes", "name": "Bytes", "type_vars": []}, "flags": [], "fullname": "_ast.Bytes", "metaclass_type": null, "metadata": {}, "module_name": "_ast", "mro": ["_ast.Bytes", "_ast.expr", "_ast.AST", "builtins.object"], "names": {".class": "SymbolTable", "s": {".class": "SymbolTableNode", "kind": "Mdef", "node": {".class": "Var", "flags": ["is_initialized_in_class"], "fullname": "_ast.Bytes.s", "name": "s", "type": "builtins.bytes"}}}, "tuple_type": null, "type_vars": [], "typeddict_type": null}}, "Call": {".class": "SymbolTableNode", "kind": "Gdef", "node": {".class": "TypeInfo", "_promote": null, "abstract_attributes": [], "bases": ["_ast.expr"], "declared_metaclass": null, "defn": {".class": "ClassDef", "fullname": "_ast.Call", "name": "Call", "type_vars": []}, "flags": [], "fullname": "_ast.Call", "metaclass_type": null, "metadata": {}, "module_name": "_ast", "mro": ["_ast.Call", "_ast.expr", "_ast.AST", "builtins.object"], "names": {".class": "SymbolTable", "args": {".class": "SymbolTableNode", "kind": "Mdef", "node": {".class": "Var", "flags": ["is_initialized_in_class"], "fullname": "_ast.Call.args", "name": "args", "type": {".class": "Instance", "args": ["_ast.expr"], "type_ref": "builtins.list"}}}, "func": {".class": "SymbolTableNode", "kind": "Mdef", "node": {".class": "Var", "flags": ["is_initialized_in_class"], "fullname": "_ast.Call.func", "name": "func", "type": "_ast.expr"}}, "keywords": {".class": "SymbolTableNode", "kind": "Mdef", "node": {".class": "Var", "flags": ["is_initialized_in_class"], "fullname": "_ast.Call.keywords", "name": "keywords", "type": {".class": "Instance", "args": ["_ast.keyword"], "type_ref": "builtins.list"}}}}, "tuple_type": null, "type_vars": [], "typeddict_type": null}}, "ClassDef": {".class": "SymbolTableNode", "kind": "Gdef", "node": {".class": "TypeInfo", "_promote": null, "abstract_attributes": [], "bases": ["_ast.stmt"], "declared_metaclass": null, "defn": {".class": "ClassDef", "fullname": "_ast.ClassDef", "name": "ClassDef", "type_vars": []}, "flags": [], "fullname": "_ast.ClassDef", "metaclass_type": null, "metadata": {}, "module_name": "_ast", "mro": ["_ast.ClassDef", "_ast.stmt", "_ast.AST", "builtins.object"], "names": {".class": "SymbolTable", "bases": {".class": "SymbolTableNode", "kind": "Mdef", "node": {".class": "Var", "flags": ["is_initialized_in_class"], "fullname": "_ast.ClassDef.bases", "name": "bases", "type": {".class": "Instance", "args": ["_ast.expr"], "type_ref": "builtins.list"}}}, "body": {".class": "SymbolTableNode", "kind": "Mdef", "node": {".class": "Var", "flags": ["is_initialized_in_class"], "fullname": "_ast.ClassDef.body", "name": "body", "type": {".class": "Instance", "args": ["_ast.stmt"], "type_ref": "builtins.list"}}}, "decorator_list": {".class": "SymbolTableNode", "kind": "Mdef", "node": {".class": "Var", "flags": ["is_initialized_in_class"], "fullname": "_ast.ClassDef.decorator_list", "name": "decorator_list", "type": {".class": "Instance", "args": ["_ast.expr"], "type_ref": "builtins.list"}}}, "docstring": {".class": "SymbolTableNode", "kind": "Mdef", "node": {".class": "Var", "flags": ["is_initialized_in_class"], "fullname": "_ast.ClassDef.docstring", "name": "docstring", "type": {".class": "UnionType", "items": ["builtins.str", {".class": "NoneTyp"}]}}}, "keywords": {".class": "SymbolTableNode", "kind": "Mdef", "node": {".class": "Var", "flags": ["is_initialized_in_class"], "fullname": "_ast.ClassDef.keywords", "name": "keywords", "type": {".class": "Instance", "args": ["_ast.keyword"], "type_ref": "builtins.list"}}}, "name": {".class": "SymbolTableNode", "kind": "Mdef", "node": {".class": "Var", "flags": ["is_initialized_in_class"], "fullname": "_ast.ClassDef.name", "name": "name", "type": "builtins.str"}}}, "tuple_type": null, "type_vars": [], "typeddict_type": null}}, "ClassVar": {".class": "SymbolTableNode", "cross_ref": "typing.ClassVar", "kind": "Gdef", "module_hidden": true, "module_public": false}, "Compare": {".class": "SymbolTableNode", "kind": "Gdef", "node": {".class": "TypeInfo", "_promote": null, "abstract_attributes": [], "bases": ["_ast.expr"], "declared_metaclass": null, "defn": {".class": "ClassDef", "fullname": "_ast.Compare", "name": "Compare", "type_vars": []}, "flags": [], "fullname": "_ast.Compare", "metaclass_type": null, "metadata": {}, "module_name": "_ast", "mro": ["_ast.Compare", "_ast.expr", "_ast.AST", "builtins.object"], "names": {".class": "SymbolTable", "comparators": {".class": "SymbolTableNode", "kind": "Mdef", "node": {".class": "Var", "flags": ["is_initialized_in_class"], "fullname": "_ast.Compare.comparators", "name": "comparators", "type": {".class": "Instance", "args": ["_ast.expr"], "type_ref": "builtins.list"}}}, "left": {".class": "SymbolTableNode", "kind": "Mdef", "node": {".class": "Var", "flags": ["is_initialized_in_class"], "fullname": "_ast.Compare.left", "name": "left", "type": "_ast.expr"}}, "ops": {".class": "SymbolTableNode", "kind": "Mdef", "node": {".class": "Var", "flags": ["is_initialized_in_class"], "fullname": "_ast.Compare.ops", "name": "ops", "type": {".class": "Instance", "args": ["_ast.cmpop"], "type_ref": "builtins.list"}}}}, "tuple_type": null, "type_vars": [], "typeddict_type": null}}, "Continue": {".class": "SymbolTableNode", "kind": "Gdef", "node": {".class": "TypeInfo", "_promote": null, "abstract_attributes": [], "bases": ["_ast.stmt"], "declared_metaclass": null, "defn": {".class": "ClassDef", "fullname": "_ast.Continue", "name": "Continue", "type_vars": []}, "flags": [], "fullname": "_ast.Continue", "metaclass_type": null, "metadata": {}, "module_name": "_ast", "mro": ["_ast.Continue", "_ast.stmt", "_ast.AST", "builtins.object"], "names": {".class": "SymbolTable"}, "tuple_type": null, "type_vars": [], "typeddict_type": null}}, "Del": {".class": "SymbolTableNode", "kind": "Gdef", "node": {".class": "TypeInfo", "_promote": null, "abstract_attributes": [], "bases": ["_ast.expr_context"], "declared_metaclass": null, "defn": {".class": "ClassDef", "fullname": "_ast.Del", "name": "Del", "type_vars": []}, "flags": [], "fullname": "_ast.Del", "metaclass_type": null, "metadata": {}, "module_name": "_ast", "mro": ["_ast.Del", "_ast.expr_context", "_ast.AST", "builtins.object"], "names": {".class": "SymbolTable"}, "tuple_type": null, "type_vars": [], "typeddict_type": null}}, "Delete": {".class": "SymbolTableNode", "kind": "Gdef", "node": {".class": "TypeInfo", "_promote": null, "abstract_attributes": [], "bases": ["_ast.stmt"], "declared_metaclass": null, "defn": {".class": "ClassDef", "fullname": "_ast.Delete", "name": "Delete", "type_vars": []}, "flags": [], "fullname": "_ast.Delete", "metaclass_type": null, "metadata": {}, "module_name": "_ast", "mro": ["_ast.Delete", "_ast.stmt", "_ast.AST", "builtins.object"], "names": {".class": "SymbolTable", "targets": {".class": "SymbolTableNode", "kind": "Mdef", "node": {".class": "Var", "flags": ["is_initialized_in_class"], "fullname": "_ast.Delete.targets", "name": "targets", "type": {".class": "Instance", "args": ["_ast.expr"], "type_ref": "builtins.list"}}}}, "tuple_type": null, "type_vars": [], "typeddict_type": null}}, "Dict": {".class": "SymbolTableNode", "kind": "Gdef", "node": {".class": "TypeInfo", "_promote": null, "abstract_attributes": [], "bases": ["_ast.expr"], "declared_metaclass": null, "defn": {".class": "ClassDef", "fullname": "_ast.Dict", "name": "Dict", "type_vars": []}, "flags": [], "fullname": "_ast.Dict", "metaclass_type": null, "metadata": {}, "module_name": "_ast", "mro": ["_ast.Dict", "_ast.expr", "_ast.AST", "builtins.object"], "names": {".class": "SymbolTable", "keys": {".class": "SymbolTableNode", "kind": "Mdef", "node": {".class": "Var", "flags": ["is_initialized_in_class"], "fullname": "_ast.Dict.keys", "name": "keys", "type": {".class": "Instance", "args": ["_ast.expr"], "type_ref": "builtins.list"}}}, "values": {".class": "SymbolTableNode", "kind": "Mdef", "node": {".class": "Var", "flags": ["is_initialized_in_class"], "fullname": "_ast.Dict.values", "name": "values", "type": {".class": "Instance", "args": ["_ast.expr"], "type_ref": "builtins.list"}}}}, "tuple_type": null, "type_vars": [], "typeddict_type": null}}, "DictComp": {".class": "SymbolTableNode", "kind": "Gdef", "node": {".class": "TypeInfo", "_promote": null, "abstract_attributes": [], "bases": ["_ast.expr"], "declared_metaclass": null, "defn": {".class": "ClassDef", "fullname": "_ast.DictComp", "name": "DictComp", "type_vars": []}, "flags": [], "fullname": "_ast.DictComp", "metaclass_type": null, "metadata": {}, "module_name": "_ast", "mro": ["_ast.DictComp", "_ast.expr", "_ast.AST", "builtins.object"], "names": {".class": "SymbolTable", "generators": {".class": "SymbolTableNode", "kind": "Mdef", "node": {".class": "Var", "flags": ["is_initialized_in_class"], "fullname": "_ast.DictComp.generators", "name": "generators", "type": {".class": "Instance", "args": ["_ast.comprehension"], "type_ref": "builtins.list"}}}, "key": {".class": "SymbolTableNode", "kind": "Mdef", "node": {".class": "Var", "flags": ["is_initialized_in_class"], "fullname": "_ast.DictComp.key", "name": "key", "type": "_ast.expr"}}, "value": {".class": "SymbolTableNode", "kind": "Mdef", "node": {".class": "Var", "flags": ["is_initialized_in_class"], "fullname": "_ast.DictComp.value", "name": "value", "type": "_ast.expr"}}}, "tuple_type": null, "type_vars": [], "typeddict_type": null}}, "Div": {".class": "SymbolTableNode", "kind": "Gdef", "node": {".class": "TypeInfo", "_promote": null, "abstract_attributes": [], "bases": ["_ast.operator"], "declared_metaclass": null, "defn": {".class": "ClassDef", "fullname": "_ast.Div", "name": "Div", "type_vars": []}, "flags": [], "fullname": "_ast.Div", "metaclass_type": null, "metadata": {}, "module_name": "_ast", "mro": ["_ast.Div", "_ast.operator", "_ast.AST", "builtins.object"], "names": {".class": "SymbolTable"}, "tuple_type": null, "type_vars": [], "typeddict_type": null}}, "Ellipsis": {".class": "SymbolTableNode", "kind": "Gdef", "node": {".class": "TypeInfo", "_promote": null, "abstract_attributes": [], "bases": ["_ast.expr"], "declared_metaclass": null, "defn": {".class": "ClassDef", "fullname": "_ast.Ellipsis", "name": "Ellipsis", "type_vars": []}, "flags": [], "fullname": "_ast.Ellipsis", "metaclass_type": null, "metadata": {}, "module_name": "_ast", "mro": ["_ast.Ellipsis", "_ast.expr", "_ast.AST", "builtins.object"], "names": {".class": "SymbolTable"}, "tuple_type": null, "type_vars": [], "typeddict_type": null}}, "Eq": {".class": "SymbolTableNode", "kind": "Gdef", "node": {".class": "TypeInfo", "_promote": null, "abstract_attributes": [], "bases": ["_ast.cmpop"], "declared_metaclass": null, "defn": {".class": "ClassDef", "fullname": "_ast.Eq", "name": "Eq", "type_vars": []}, "flags": [], "fullname": "_ast.Eq", "metaclass_type": null, "metadata": {}, "module_name": "_ast", "mro": ["_ast.Eq", "_ast.cmpop", "_ast.AST", "builtins.object"], "names": {".class": "SymbolTable"}, "tuple_type": null, "type_vars": [], "typeddict_type": null}}, "ExceptHandler": {".class": "SymbolTableNode", "kind": "Gdef", "node": {".class": "TypeInfo", "_promote": null, "abstract_attributes": [], "bases": ["_ast.AST"], "declared_metaclass": null, "defn": {".class": "ClassDef", "fullname": "_ast.ExceptHandler", "name": "ExceptHandler", "type_vars": []}, "flags": [], "fullname": "_ast.ExceptHandler", "metaclass_type": null, "metadata": {}, "module_name": "_ast", "mro": ["_ast.ExceptHandler", "_ast.AST", "builtins.object"], "names": {".class": "SymbolTable", "body": {".class": "SymbolTableNode", "kind": "Mdef", "node": {".class": "Var", "flags": ["is_initialized_in_class"], "fullname": "_ast.ExceptHandler.body", "name": "body", "type": {".class": "Instance", "args": ["_ast.stmt"], "type_ref": "builtins.list"}}}, "name": {".class": "SymbolTableNode", "kind": "Mdef", "node": {".class": "Var", "flags": ["is_initialized_in_class"], "fullname": "_ast.ExceptHandler.name", "name": "name", "type": {".class": "UnionType", "items": ["builtins.str", {".class": "NoneTyp"}]}}}, "type": {".class": "SymbolTableNode", "kind": "Mdef", "node": {".class": "Var", "flags": ["is_initialized_in_class"], "fullname": "_ast.ExceptHandler.type", "name": "type", "type": {".class": "UnionType", "items": ["_ast.expr", {".class": "NoneTyp"}]}}}}, "tuple_type": null, "type_vars": [], "typeddict_type": null}}, "Expr": {".class": "SymbolTableNode", "kind": "Gdef", "node": {".class": "TypeInfo", "_promote": null, "abstract_attributes": [], "bases": ["_ast.stmt"], "declared_metaclass": null, "defn": {".class": "ClassDef", "fullname": "_ast.Expr", "name": "Expr", "type_vars": []}, "flags": [], "fullname": "_ast.Expr", "metaclass_type": null, "metadata": {}, "module_name": "_ast", "mro": ["_ast.Expr", "_ast.stmt", "_ast.AST", "builtins.object"], "names": {".class": "SymbolTable", "value": {".class": "SymbolTableNode", "kind": "Mdef", "node": {".class": "Var", "flags": ["is_initialized_in_class"], "fullname": "_ast.Expr.value", "name": "value", "type": "_ast.expr"}}}, "tuple_type": null, "type_vars": [], "typeddict_type": null}}, "Expression": {".class": "SymbolTableNode", "kind": "Gdef", "node": {".class": "TypeInfo", "_promote": null, "abstract_attributes": [], "bases": ["_ast.mod"], "declared_metaclass": null, "defn": {".class": "ClassDef", "fullname": "_ast.Expression", "name": "Expression", "type_vars": []}, "flags": [], "fullname": "_ast.Expression", "metaclass_type": null, "metadata": {}, "module_name": "_ast", "mro": ["_ast.Expression", "_ast.mod", "_ast.AST", "builtins.object"], "names": {".class": "SymbolTable", "body": {".class": "SymbolTableNode", "kind": "Mdef", "node": {".class": "Var", "flags": ["is_initialized_in_class"], "fullname": "_ast.Expression.body", "name": "body", "type": "_ast.expr"}}}, "tuple_type": null, "type_vars": [], "typeddict_type": null}}, "ExtSlice": {".class": "SymbolTableNode", "kind": "Gdef", "node": {".class": "TypeInfo", "_promote": null, "abstract_attributes": [], "bases": ["_ast.slice"], "declared_metaclass": null, "defn": {".class": "ClassDef", "fullname": "_ast.ExtSlice", "name": "ExtSlice", "type_vars": []}, "flags": [], "fullname": "_ast.ExtSlice", "metaclass_type": null, "metadata": {}, "module_name": "_ast", "mro": ["_ast.ExtSlice", "_ast.slice", "_ast.AST", "builtins.object"], "names": {".class": "SymbolTable", "dims": {".class": "SymbolTableNode", "kind": "Mdef", "node": {".class": "Var", "flags": ["is_initialized_in_class"], "fullname": "_ast.ExtSlice.dims", "name": "dims", "type": {".class": "Instance", "args": ["_ast.slice"], "type_ref": "builtins.list"}}}}, "tuple_type": null, "type_vars": [], "typeddict_type": null}}, "FloorDiv": {".class": "SymbolTableNode", "kind": "Gdef", "node": {".class": "TypeInfo", "_promote": null, "abstract_attributes": [], "bases": ["_ast.operator"], "declared_metaclass": null, "defn": {".class": "ClassDef", "fullname": "_ast.FloorDiv", "name": "FloorDiv", "type_vars": []}, "flags": [], "fullname": "_ast.FloorDiv", "metaclass_type": null, "metadata": {}, "module_name": "_ast", "mro": ["_ast.FloorDiv", "_ast.operator", "_ast.AST", "builtins.object"], "names": {".class": "SymbolTable"}, "tuple_type": null, "type_vars": [], "typeddict_type": null}}, "For": {".class": "SymbolTableNode", "kind": "Gdef", "node": {".class": "TypeInfo", "_promote": null, "abstract_attributes": [], "bases": ["_ast.stmt"], "declared_metaclass": null, "defn": {".class": "ClassDef", "fullname": "_ast.For", "name": "For", "type_vars": []}, "flags": [], "fullname": "_ast.For", "metaclass_type": null, "metadata": {}, "module_name": "_ast", "mro": ["_ast.For", "_ast.stmt", "_ast.AST", "builtins.object"], "names": {".class": "SymbolTable", "body": {".class": "SymbolTableNode", "kind": "Mdef", "node": {".class": "Var", "flags": ["is_initialized_in_class"], "fullname": "_ast.For.body", "name": "body", "type": {".class": "Instance", "args": ["_ast.stmt"], "type_ref": "builtins.list"}}}, "iter": {".class": "SymbolTableNode", "kind": "Mdef", "node": {".class": "Var", "flags": ["is_initialized_in_class"], "fullname": "_ast.For.iter", "name": "iter", "type": "_ast.expr"}}, "orelse": {".class": "SymbolTableNode", "kind": "Mdef", "node": {".class": "Var", "flags": ["is_initialized_in_class"], "fullname": "_ast.For.orelse", "name": "orelse", "type": {".class": "Instance", "args": ["_ast.stmt"], "type_ref": "builtins.list"}}}, "target": {".class": "SymbolTableNode", "kind": "Mdef", "node": {".class": "Var", "flags": ["is_initialized_in_class"], "fullname": "_ast.For.target", "name": "target", "type": "_ast.expr"}}}, "tuple_type": null, "type_vars": [], "typeddict_type": null}}, "FormattedValue": {".class": "SymbolTableNode", "kind": "Gdef", "node": {".class": "TypeInfo", "_promote": null, "abstract_attributes": [], "bases": ["_ast.expr"], "declared_metaclass": null, "defn": {".class": "ClassDef", "fullname": "_ast.FormattedValue", "name": "FormattedValue", "type_vars": []}, "flags": [], "fullname": "_ast.FormattedValue", "metaclass_type": null, "metadata": {}, "module_name": "_ast", "mro": ["_ast.FormattedValue", "_ast.expr", "_ast.AST", "builtins.object"], "names": {".class": "SymbolTable", "conversion": {".class": "SymbolTableNode", "kind": "Mdef", "node": {".class": "Var", "flags": ["is_initialized_in_class"], "fullname": "_ast.FormattedValue.conversion", "name": "conversion", "type": {".class": "UnionType", "items": ["builtins.int", {".class": "NoneTyp"}]}}}, "format_spec": {".class": "SymbolTableNode", "kind": "Mdef", "node": {".class": "Var", "flags": ["is_initialized_in_class"], "fullname": "_ast.FormattedValue.format_spec", "name": "format_spec", "type": {".class": "UnionType", "items": ["_ast.expr", {".class": "NoneTyp"}]}}}, "value": {".class": "SymbolTableNode", "kind": "Mdef", "node": {".class": "Var", "flags": ["is_initialized_in_class"], "fullname": "_ast.FormattedValue.value", "name": "value", "type": "_ast.expr"}}}, "tuple_type": null, "type_vars": [], "typeddict_type": null}}, "FunctionDef": {".class": "SymbolTableNode", "kind": "Gdef", "node": {".class": "TypeInfo", "_promote": null, "abstract_attributes": [], "bases": ["_ast.stmt"], "declared_metaclass": null, "defn": {".class": "ClassDef", "fullname": "_ast.FunctionDef", "name": "FunctionDef", "type_vars": []}, "flags": [], "fullname": "_ast.FunctionDef", "metaclass_type": null, "metadata": {}, "module_name": "_ast", "mro": ["_ast.FunctionDef", "_ast.stmt", "_ast.AST", "builtins.object"], "names": {".class": "SymbolTable", "args": {".class": "SymbolTableNode", "kind": "Mdef", "node": {".class": "Var", "flags": ["is_initialized_in_class"], "fullname": "_ast.FunctionDef.args", "name": "args", "type": "_ast.arguments"}}, "body": {".class": "SymbolTableNode", "kind": "Mdef", "node": {".class": "Var", "flags": ["is_initialized_in_class"], "fullname": "_ast.FunctionDef.body", "name": "body", "type": {".class": "Instance", "args": ["_ast.stmt"], "type_ref": "builtins.list"}}}, "decorator_list": {".class": "SymbolTableNode", "kind": "Mdef", "node": {".class": "Var", "flags": ["is_initialized_in_class"], "fullname": "_ast.FunctionDef.decorator_list", "name": "decorator_list", "type": {".class": "Instance", "args": ["_ast.expr"], "type_ref": "builtins.list"}}}, "docstring": {".class": "SymbolTableNode", "kind": "Mdef", "node": {".class": "Var", "flags": ["is_initialized_in_class"], "fullname": "_ast.FunctionDef.docstring", "name": "docstring", "type": {".class": "UnionType", "items": ["builtins.str", {".class": "NoneTyp"}]}}}, "name": {".class": "SymbolTableNode", "kind": "Mdef", "node": {".class": "Var", "flags": ["is_initialized_in_class"], "fullname": "_ast.FunctionDef.name", "name": "name", "type": "builtins.str"}}, "returns": {".class": "SymbolTableNode", "kind": "Mdef", "node": {".class": "Var", "flags": ["is_initialized_in_class"], "fullname": "_ast.FunctionDef.returns", "name": "returns", "type": {".class": "UnionType", "items": ["_ast.expr", {".class": "NoneTyp"}]}}}}, "tuple_type": null, "type_vars": [], "typeddict_type": null}}, "GeneratorExp": {".class": "SymbolTableNode", "kind": "Gdef", "node": {".class": "TypeInfo", "_promote": null, "abstract_attributes": [], "bases": ["_ast.expr"], "declared_metaclass": null, "defn": {".class": "ClassDef", "fullname": "_ast.GeneratorExp", "name": "GeneratorExp", "type_vars": []}, "flags": [], "fullname": "_ast.GeneratorExp", "metaclass_type": null, "metadata": {}, "module_name": "_ast", "mro": ["_ast.GeneratorExp", "_ast.expr", "_ast.AST", "builtins.object"], "names": {".class": "SymbolTable", "elt": {".class": "SymbolTableNode", "kind": "Mdef", "node": {".class": "Var", "flags": ["is_initialized_in_class"], "fullname": "_ast.GeneratorExp.elt", "name": "elt", "type": "_ast.expr"}}, "generators": {".class": "SymbolTableNode", "kind": "Mdef", "node": {".class": "Var", "flags": ["is_initialized_in_class"], "fullname": "_ast.GeneratorExp.generators", "name": "generators", "type": {".class": "Instance", "args": ["_ast.comprehension"], "type_ref": "builtins.list"}}}}, "tuple_type": null, "type_vars": [], "typeddict_type": null}}, "Global": {".class": "SymbolTableNode", "kind": "Gdef", "node": {".class": "TypeInfo", "_promote": null, "abstract_attributes": [], "bases": ["_ast.stmt"], "declared_metaclass": null, "defn": {".class": "ClassDef", "fullname": "_ast.Global", "name": "Global", "type_vars": []}, "flags": [], "fullname": "_ast.Global", "metaclass_type": null, "metadata": {}, "module_name": "_ast", "mro": ["_ast.Global", "_ast.stmt", "_ast.AST", "builtins.object"], "names": {".class": "SymbolTable", "names": {".class": "SymbolTableNode", "kind": "Mdef", "node": {".class": "Var", "flags": ["is_initialized_in_class"], "fullname": "_ast.Global.names", "name": "names", "type": {".class": "Instance", "args": ["builtins.str"], "type_ref": "builtins.list"}}}}, "tuple_type": null, "type_vars": [], "typeddict_type": null}}, "Gt": {".class": "SymbolTableNode", "kind": "Gdef", "node": {".class": "TypeInfo", "_promote": null, "abstract_attributes": [], "bases": ["_ast.cmpop"], "declared_metaclass": null, "defn": {".class": "ClassDef", "fullname": "_ast.Gt", "name": "Gt", "type_vars": []}, "flags": [], "fullname": "_ast.Gt", "metaclass_type": null, "metadata": {}, "module_name": "_ast", "mro": ["_ast.Gt", "_ast.cmpop", "_ast.AST", "builtins.object"], "names": {".class": "SymbolTable"}, "tuple_type": null, "type_vars": [], "typeddict_type": null}}, "GtE": {".class": "SymbolTableNode", "kind": "Gdef", "node": {".class": "TypeInfo", "_promote": null, "abstract_attributes": [], "bases": ["_ast.cmpop"], "declared_metaclass": null, "defn": {".class": "ClassDef", "fullname": "_ast.GtE", "name": "GtE", "type_vars": []}, "flags": [], "fullname": "_ast.GtE", "metaclass_type": null, "metadata": {}, "module_name": "_ast", "mro": ["_ast.GtE", "_ast.cmpop", "_ast.AST", "builtins.object"], "names": {".class": "SymbolTable"}, "tuple_type": null, "type_vars": [], "typeddict_type": null}}, "If": {".class": "SymbolTableNode", "kind": "Gdef", "node": {".class": "TypeInfo", "_promote": null, "abstract_attributes": [], "bases": ["_ast.stmt"], "declared_metaclass": null, "defn": {".class": "ClassDef", "fullname": "_ast.If", "name": "If", "type_vars": []}, "flags": [], "fullname": "_ast.If", "metaclass_type": null, "metadata": {}, "module_name": "_ast", "mro": ["_ast.If", "_ast.stmt", "_ast.AST", "builtins.object"], "names": {".class": "SymbolTable", "body": {".class": "SymbolTableNode", "kind": "Mdef", "node": {".class": "Var", "flags": ["is_initialized_in_class"], "fullname": "_ast.If.body", "name": "body", "type": {".class": "Instance", "args": ["_ast.stmt"], "type_ref": "builtins.list"}}}, "orelse": {".class": "SymbolTableNode", "kind": "Mdef", "node": {".class": "Var", "flags": ["is_initialized_in_class"], "fullname": "_ast.If.orelse", "name": "orelse", "type": {".class": "Instance", "args": ["_ast.stmt"], "type_ref": "builtins.list"}}}, "test": {".class": "SymbolTableNode", "kind": "Mdef", "node": {".class": "Var", "flags": ["is_initialized_in_class"], "fullname": "_ast.If.test", "name": "test", "type": "_ast.expr"}}}, "tuple_type": null, "type_vars": [], "typeddict_type": null}}, "IfExp": {".class": "SymbolTableNode", "kind": "Gdef", "node": {".class": "TypeInfo", "_promote": null, "abstract_attributes": [], "bases": ["_ast.expr"], "declared_metaclass": null, "defn": {".class": "ClassDef", "fullname": "_ast.IfExp", "name": "IfExp", "type_vars": []}, "flags": [], "fullname": "_ast.IfExp", "metaclass_type": null, "metadata": {}, "module_name": "_ast", "mro": ["_ast.IfExp", "_ast.expr", "_ast.AST", "builtins.object"], "names": {".class": "SymbolTable", "body": {".class": "SymbolTableNode", "kind": "Mdef", "node": {".class": "Var", "flags": ["is_initialized_in_class"], "fullname": "_ast.IfExp.body", "name": "body", "type": "_ast.expr"}}, "orelse": {".class": "SymbolTableNode", "kind": "Mdef", "node": {".class": "Var", "flags": ["is_initialized_in_class"], "fullname": "_ast.IfExp.orelse", "name": "orelse", "type": "_ast.expr"}}, "test": {".class": "SymbolTableNode", "kind": "Mdef", "node": {".class": "Var", "flags": ["is_initialized_in_class"], "fullname": "_ast.IfExp.test", "name": "test", "type": "_ast.expr"}}}, "tuple_type": null, "type_vars": [], "typeddict_type": null}}, "Import": {".class": "SymbolTableNode", "kind": "Gdef", "node": {".class": "TypeInfo", "_promote": null, "abstract_attributes": [], "bases": ["_ast.stmt"], "declared_metaclass": null, "defn": {".class": "ClassDef", "fullname": "_ast.Import", "name": "Import", "type_vars": []}, "flags": [], "fullname": "_ast.Import", "metaclass_type": null, "metadata": {}, "module_name": "_ast", "mro": ["_ast.Import", "_ast.stmt", "_ast.AST", "builtins.object"], "names": {".class": "SymbolTable", "names": {".class": "SymbolTableNode", "kind": "Mdef", "node": {".class": "Var", "flags": ["is_initialized_in_class"], "fullname": "_ast.Import.names", "name": "names", "type": {".class": "Instance", "args": ["_ast.alias"], "type_ref": "builtins.list"}}}}, "tuple_type": null, "type_vars": [], "typeddict_type": null}}, "ImportFrom": {".class": "SymbolTableNode", "kind": "Gdef", "node": {".class": "TypeInfo", "_promote": null, "abstract_attributes": [], "bases": ["_ast.stmt"], "declared_metaclass": null, "defn": {".class": "ClassDef", "fullname": "_ast.ImportFrom", "name": "ImportFrom", "type_vars": []}, "flags": [], "fullname": "_ast.ImportFrom", "metaclass_type": null, "metadata": {}, "module_name": "_ast", "mro": ["_ast.ImportFrom", "_ast.stmt", "_ast.AST", "builtins.object"], "names": {".class": "SymbolTable", "level": {".class": "SymbolTableNode", "kind": "Mdef", "node": {".class": "Var", "flags": ["is_initialized_in_class"], "fullname": "_ast.ImportFrom.level", "name": "level", "type": "builtins.int"}}, "module": {".class": "SymbolTableNode", "kind": "Mdef", "node": {".class": "Var", "flags": ["is_initialized_in_class"], "fullname": "_ast.ImportFrom.module", "name": "module", "type": {".class": "UnionType", "items": ["builtins.str", {".class": "NoneTyp"}]}}}, "names": {".class": "SymbolTableNode", "kind": "Mdef", "node": {".class": "Var", "flags": ["is_initialized_in_class"], "fullname": "_ast.ImportFrom.names", "name": "names", "type": {".class": "Instance", "args": ["_ast.alias"], "type_ref": "builtins.list"}}}}, "tuple_type": null, "type_vars": [], "typeddict_type": null}}, "In": {".class": "SymbolTableNode", "kind": "Gdef", "node": {".class": "TypeInfo", "_promote": null, "abstract_attributes": [], "bases": ["_ast.cmpop"], "declared_metaclass": null, "defn": {".class": "ClassDef", "fullname": "_ast.In", "name": "In", "type_vars": []}, "flags": [], "fullname": "_ast.In", "metaclass_type": null, "metadata": {}, "module_name": "_ast", "mro": ["_ast.In", "_ast.cmpop", "_ast.AST", "builtins.object"], "names": {".class": "SymbolTable"}, "tuple_type": null, "type_vars": [], "typeddict_type": null}}, "Index": {".class": "SymbolTableNode", "kind": "Gdef", "node": {".class": "TypeInfo", "_promote": null, "abstract_attributes": [], "bases": ["_ast.slice"], "declared_metaclass": null, "defn": {".class": "ClassDef", "fullname": "_ast.Index", "name": "Index", "type_vars": []}, "flags": [], "fullname": "_ast.Index", "metaclass_type": null, "metadata": {}, "module_name": "_ast", "mro": ["_ast.Index", "_ast.slice", "_ast.AST", "builtins.object"], "names": {".class": "SymbolTable", "value": {".class": "SymbolTableNode", "kind": "Mdef", "node": {".class": "Var", "flags": ["is_initialized_in_class"], "fullname": "_ast.Index.value", "name": "value", "type": "_ast.expr"}}}, "tuple_type": null, "type_vars": [], "typeddict_type": null}}, "Interactive": {".class": "SymbolTableNode", "kind": "Gdef", "node": {".class": "TypeInfo", "_promote": null, "abstract_attributes": [], "bases": ["_ast.mod"], "declared_metaclass": null, "defn": {".class": "ClassDef", "fullname": "_ast.Interactive", "name": "Interactive", "type_vars": []}, "flags": [], "fullname": "_ast.Interactive", "metaclass_type": null, "metadata": {}, "module_name": "_ast", "mro": ["_ast.Interactive", "_ast.mod", "_ast.AST", "builtins.object"], "names": {".class": "SymbolTable", "body": {".class": "SymbolTableNode", "kind": "Mdef", "node": {".class": "Var", "flags": ["is_initialized_in_class"], "fullname": "_ast.Interactive.body", "name": "body", "type": {".class": "Instance", "args": ["_ast.stmt"], "type_ref": "builtins.list"}}}}, "tuple_type": null, "type_vars": [], "typeddict_type": null}}, "Invert": {".class": "SymbolTableNode", "kind": "Gdef", "node": {".class": "TypeInfo", "_promote": null, "abstract_attributes": [], "bases": ["_ast.unaryop"], "declared_metaclass": null, "defn": {".class": "ClassDef", "fullname": "_ast.Invert", "name": "Invert", "type_vars": []}, "flags": [], "fullname": "_ast.Invert", "metaclass_type": null, "metadata": {}, "module_name": "_ast", "mro": ["_ast.Invert", "_ast.unaryop", "_ast.AST", "builtins.object"], "names": {".class": "SymbolTable"}, "tuple_type": null, "type_vars": [], "typeddict_type": null}}, "Is": {".class": "SymbolTableNode", "kind": "Gdef", "node": {".class": "TypeInfo", "_promote": null, "abstract_attributes": [], "bases": ["_ast.cmpop"], "declared_metaclass": null, "defn": {".class": "ClassDef", "fullname": "_ast.Is", "name": "Is", "type_vars": []}, "flags": [], "fullname": "_ast.Is", "metaclass_type": null, "metadata": {}, "module_name": "_ast", "mro": ["_ast.Is", "_ast.cmpop", "_ast.AST", "builtins.object"], "names": {".class": "SymbolTable"}, "tuple_type": null, "type_vars": [], "typeddict_type": null}}, "IsNot": {".class": "SymbolTableNode", "kind": "Gdef", "node": {".class": "TypeInfo", "_promote": null, "abstract_attributes": [], "bases": ["_ast.cmpop"], "declared_metaclass": null, "defn": {".class": "ClassDef", "fullname": "_ast.IsNot", "name": "IsNot", "type_vars": []}, "flags": [], "fullname": "_ast.IsNot", "metaclass_type": null, "metadata": {}, "module_name": "_ast", "mro": ["_ast.IsNot", "_ast.cmpop", "_ast.AST", "builtins.object"], "names": {".class": "SymbolTable"}, "tuple_type": null, "type_vars": [], "typeddict_type": null}}, "JoinedStr": {".class": "SymbolTableNode", "kind": "Gdef", "node": {".class": "TypeInfo", "_promote": null, "abstract_attributes": [], "bases": ["_ast.expr"], "declared_metaclass": null, "defn": {".class": "ClassDef", "fullname": "_ast.JoinedStr", "name": "JoinedStr", "type_vars": []}, "flags": [], "fullname": "_ast.JoinedStr", "metaclass_type": null, "metadata": {}, "module_name": "_ast", "mro": ["_ast.JoinedStr", "_ast.expr", "_ast.AST", "builtins.object"], "names": {".class": "SymbolTable", "values": {".class": "SymbolTableNode", "kind": "Mdef", "node": {".class": "Var", "flags": ["is_initialized_in_class"], "fullname": "_ast.JoinedStr.values", "name": "values", "type": {".class": "Instance", "args": ["_ast.expr"], "type_ref": "builtins.list"}}}}, "tuple_type": null, "type_vars": [], "typeddict_type": null}}, "LShift": {".class": "SymbolTableNode", "kind": "Gdef", "node": {".class": "TypeInfo", "_promote": null, "abstract_attributes": [], "bases": ["_ast.operator"], "declared_metaclass": null, "defn": {".class": "ClassDef", "fullname": "_ast.LShift", "name": "LShift", "type_vars": []}, "flags": [], "fullname": "_ast.LShift", "metaclass_type": null, "metadata": {}, "module_name": "_ast", "mro": ["_ast.LShift", "_ast.operator", "_ast.AST", "builtins.object"], "names": {".class": "SymbolTable"}, "tuple_type": null, "type_vars": [], "typeddict_type": null}}, "Lambda": {".class": "SymbolTableNode", "kind": "Gdef", "node": {".class": "TypeInfo", "_promote": null, "abstract_attributes": [], "bases": ["_ast.expr"], "declared_metaclass": null, "defn": {".class": "ClassDef", "fullname": "_ast.Lambda", "name": "Lambda", "type_vars": []}, "flags": [], "fullname": "_ast.Lambda", "metaclass_type": null, "metadata": {}, "module_name": "_ast", "mro": ["_ast.Lambda", "_ast.expr", "_ast.AST", "builtins.object"], "names": {".class": "SymbolTable", "args": {".class": "SymbolTableNode", "kind": "Mdef", "node": {".class": "Var", "flags": ["is_initialized_in_class"], "fullname": "_ast.Lambda.args", "name": "args", "type": "_ast.arguments"}}, "body": {".class": "SymbolTableNode", "kind": "Mdef", "node": {".class": "Var", "flags": ["is_initialized_in_class"], "fullname": "_ast.Lambda.body", "name": "body", "type": "_ast.expr"}}}, "tuple_type": null, "type_vars": [], "typeddict_type": null}}, "List": {".class": "SymbolTableNode", "kind": "Gdef", "node": {".class": "TypeInfo", "_promote": null, "abstract_attributes": [], "bases": ["_ast.expr"], "declared_metaclass": null, "defn": {".class": "ClassDef", "fullname": "_ast.List", "name": "List", "type_vars": []}, "flags": [], "fullname": "_ast.List", "metaclass_type": null, "metadata": {}, "module_name": "_ast", "mro": ["_ast.List", "_ast.expr", "_ast.AST", "builtins.object"], "names": {".class": "SymbolTable", "ctx": {".class": "SymbolTableNode", "kind": "Mdef", "node": {".class": "Var", "flags": ["is_initialized_in_class"], "fullname": "_ast.List.ctx", "name": "ctx", "type": "_ast.expr_context"}}, "elts": {".class": "SymbolTableNode", "kind": "Mdef", "node": {".class": "Var", "flags": ["is_initialized_in_class"], "fullname": "_ast.List.elts", "name": "elts", "type": {".class": "Instance", "args": ["_ast.expr"], "type_ref": "builtins.list"}}}}, "tuple_type": null, "type_vars": [], "typeddict_type": null}}, "ListComp": {".class": "SymbolTableNode", "kind": "Gdef", "node": {".class": "TypeInfo", "_promote": null, "abstract_attributes": [], "bases": ["_ast.expr"], "declared_metaclass": null, "defn": {".class": "ClassDef", "fullname": "_ast.ListComp", "name": "ListComp", "type_vars": []}, "flags": [], "fullname": "_ast.ListComp", "metaclass_type": null, "metadata": {}, "module_name": "_ast", "mro": ["_ast.ListComp", "_ast.expr", "_ast.AST", "builtins.object"], "names": {".class": "SymbolTable", "elt": {".class": "SymbolTableNode", "kind": "Mdef", "node": {".class": "Var", "flags": ["is_initialized_in_class"], "fullname": "_ast.ListComp.elt", "name": "elt", "type": "_ast.expr"}}, "generators": {".class": "SymbolTableNode", "kind": "Mdef", "node": {".class": "Var", "flags": ["is_initialized_in_class"], "fullname": "_ast.ListComp.generators", "name": "generators", "type": {".class": "Instance", "args": ["_ast.comprehension"], "type_ref": "builtins.list"}}}}, "tuple_type": null, "type_vars": [], "typeddict_type": null}}, "Load": {".class": "SymbolTableNode", "kind": "Gdef", "node": {".class": "TypeInfo", "_promote": null, "abstract_attributes": [], "bases": ["_ast.expr_context"], "declared_metaclass": null, "defn": {".class": "ClassDef", "fullname": "_ast.Load", "name": "Load", "type_vars": []}, "flags": [], "fullname": "_ast.Load", "metaclass_type": null, "metadata": {}, "module_name": "_ast", "mro": ["_ast.Load", "_ast.expr_context", "_ast.AST", "builtins.object"], "names": {".class": "SymbolTable"}, "tuple_type": null, "type_vars": [], "typeddict_type": null}}, "Lt": {".class": "SymbolTableNode", "kind": "Gdef", "node": {".class": "TypeInfo", "_promote": null, "abstract_attributes": [], "bases": ["_ast.cmpop"], "declared_metaclass": null, "defn": {".class": "ClassDef", "fullname": "_ast.Lt", "name": "Lt", "type_vars": []}, "flags": [], "fullname": "_ast.Lt", "metaclass_type": null, "metadata": {}, "module_name": "_ast", "mro": ["_ast.Lt", "_ast.cmpop", "_ast.AST", "builtins.object"], "names": {".class": "SymbolTable"}, "tuple_type": null, "type_vars": [], "typeddict_type": null}}, "LtE": {".class": "SymbolTableNode", "kind": "Gdef", "node": {".class": "TypeInfo", "_promote": null, "abstract_attributes": [], "bases": ["_ast.cmpop"], "declared_metaclass": null, "defn": {".class": "ClassDef", "fullname": "_ast.LtE", "name": "LtE", "type_vars": []}, "flags": [], "fullname": "_ast.LtE", "metaclass_type": null, "metadata": {}, "module_name": "_ast", "mro": ["_ast.LtE", "_ast.cmpop", "_ast.AST", "builtins.object"], "names": {".class": "SymbolTable"}, "tuple_type": null, "type_vars": [], "typeddict_type": null}}, "MatMult": {".class": "SymbolTableNode", "kind": "Gdef", "node": {".class": "TypeInfo", "_promote": null, "abstract_attributes": [], "bases": ["_ast.operator"], "declared_metaclass": null, "defn": {".class": "ClassDef", "fullname": "_ast.MatMult", "name": "MatMult", "type_vars": []}, "flags": [], "fullname": "_ast.MatMult", "metaclass_type": null, "metadata": {}, "module_name": "_ast", "mro": ["_ast.MatMult", "_ast.operator", "_ast.AST", "builtins.object"], "names": {".class": "SymbolTable"}, "tuple_type": null, "type_vars": [], "typeddict_type": null}}, "Mod": {".class": "SymbolTableNode", "kind": "Gdef", "node": {".class": "TypeInfo", "_promote": null, "abstract_attributes": [], "bases": ["_ast.operator"], "declared_metaclass": null, "defn": {".class": "ClassDef", "fullname": "_ast.Mod", "name": "Mod", "type_vars": []}, "flags": [], "fullname": "_ast.Mod", "metaclass_type": null, "metadata": {}, "module_name": "_ast", "mro": ["_ast.Mod", "_ast.operator", "_ast.AST", "builtins.object"], "names": {".class": "SymbolTable"}, "tuple_type": null, "type_vars": [], "typeddict_type": null}}, "Module": {".class": "SymbolTableNode", "kind": "Gdef", "node": {".class": "TypeInfo", "_promote": null, "abstract_attributes": [], "bases": ["_ast.mod"], "declared_metaclass": null, "defn": {".class": "ClassDef", "fullname": "_ast.Module", "name": "Module", "type_vars": []}, "flags": [], "fullname": "_ast.Module", "metaclass_type": null, "metadata": {}, "module_name": "_ast", "mro": ["_ast.Module", "_ast.mod", "_ast.AST", "builtins.object"], "names": {".class": "SymbolTable", "body": {".class": "SymbolTableNode", "kind": "Mdef", "node": {".class": "Var", "flags": ["is_initialized_in_class"], "fullname": "_ast.Module.body", "name": "body", "type": {".class": "Instance", "args": ["_ast.stmt"], "type_ref": "builtins.list"}}}, "docstring": {".class": "SymbolTableNode", "kind": "Mdef", "node": {".class": "Var", "flags": ["is_initialized_in_class"], "fullname": "_ast.Module.docstring", "name": "docstring", "type": {".class": "UnionType", "items": ["builtins.str", {".class": "NoneTyp"}]}}}}, "tuple_type": null, "type_vars": [], "typeddict_type": null}}, "Mult": {".class": "SymbolTableNode", "kind": "Gdef", "node": {".class": "TypeInfo", "_promote": null, "abstract_attributes": [], "bases": ["_ast.operator"], "declared_metaclass": null, "defn": {".class": "ClassDef", "fullname": "_ast.Mult", "name": "Mult", "type_vars": []}, "flags": [], "fullname": "_ast.Mult", "metaclass_type": null, "metadata": {}, "module_name": "_ast", "mro": ["_ast.Mult", "_ast.operator", "_ast.AST", "builtins.object"], "names": {".class": "SymbolTable"}, "tuple_type": null, "type_vars": [], "typeddict_type": null}}, "Name": {".class": "SymbolTableNode", "kind": "Gdef", "node": {".class": "TypeInfo", "_promote": null, "abstract_attributes": [], "bases": ["_ast.expr"], "declared_metaclass": null, "defn": {".class": "ClassDef", "fullname": "_ast.Name", "name": "Name", "type_vars": []}, "flags": [], "fullname": "_ast.Name", "metaclass_type": null, "metadata": {}, "module_name": "_ast", "mro": ["_ast.Name", "_ast.expr", "_ast.AST", "builtins.object"], "names": {".class": "SymbolTable", "ctx": {".class": "SymbolTableNode", "kind": "Mdef", "node": {".class": "Var", "flags": ["is_initialized_in_class"], "fullname": "_ast.Name.ctx", "name": "ctx", "type": "_ast.expr_context"}}, "id": {".class": "SymbolTableNode", "kind": "Mdef", "node": {".class": "Var", "flags": ["is_initialized_in_class"], "fullname": "_ast.Name.id", "name": "id", "type": "builtins.str"}}}, "tuple_type": null, "type_vars": [], "typeddict_type": null}}, "NameConstant": {".class": "SymbolTableNode", "kind": "Gdef", "node": {".class": "TypeInfo", "_promote": null, "abstract_attributes": [], "bases": ["_ast.expr"], "declared_metaclass": null, "defn": {".class": "ClassDef", "fullname": "_ast.NameConstant", "name": "NameConstant", "type_vars": []}, "flags": [], "fullname": "_ast.NameConstant", "metaclass_type": null, "metadata": {}, "module_name": "_ast", "mro": ["_ast.NameConstant", "_ast.expr", "_ast.AST", "builtins.object"], "names": {".class": "SymbolTable", "value": {".class": "SymbolTableNode", "kind": "Mdef", "node": {".class": "Var", "flags": ["is_initialized_in_class"], "fullname": "_ast.NameConstant.value", "name": "value", "type": {".class": "AnyType", "missing_import_name": null, "source_any": null, "type_of_any": 2}}}}, "tuple_type": null, "type_vars": [], "typeddict_type": null}}, "Nonlocal": {".class": "SymbolTableNode", "kind": "Gdef", "node": {".class": "TypeInfo", "_promote": null, "abstract_attributes": [], "bases": ["_ast.stmt"], "declared_metaclass": null, "defn": {".class": "ClassDef", "fullname": "_ast.Nonlocal", "name": "Nonlocal", "type_vars": []}, "flags": [], "fullname": "_ast.Nonlocal", "metaclass_type": null, "metadata": {}, "module_name": "_ast", "mro": ["_ast.Nonlocal", "_ast.stmt", "_ast.AST", "builtins.object"], "names": {".class": "SymbolTable", "names": {".class": "SymbolTableNode", "kind": "Mdef", "node": {".class": "Var", "flags": ["is_initialized_in_class"], "fullname": "_ast.Nonlocal.names", "name": "names", "type": {".class": "Instance", "args": ["builtins.str"], "type_ref": "builtins.list"}}}}, "tuple_type": null, "type_vars": [], "typeddict_type": null}}, "Not": {".class": "SymbolTableNode", "kind": "Gdef", "node": {".class": "TypeInfo", "_promote": null, "abstract_attributes": [], "bases": ["_ast.unaryop"], "declared_metaclass": null, "defn": {".class": "ClassDef", "fullname": "_ast.Not", "name": "Not", "type_vars": []}, "flags": [], "fullname": "_ast.Not", "metaclass_type": null, "metadata": {}, "module_name": "_ast", "mro": ["_ast.Not", "_ast.unaryop", "_ast.AST", "builtins.object"], "names": {".class": "SymbolTable"}, "tuple_type": null, "type_vars": [], "typeddict_type": null}}, "NotEq": {".class": "SymbolTableNode", "kind": "Gdef", "node": {".class": "TypeInfo", "_promote": null, "abstract_attributes": [], "bases": ["_ast.cmpop"], "declared_metaclass": null, "defn": {".class": "ClassDef", "fullname": "_ast.NotEq", "name": "NotEq", "type_vars": []}, "flags": [], "fullname": "_ast.NotEq", "metaclass_type": null, "metadata": {}, "module_name": "_ast", "mro": ["_ast.NotEq", "_ast.cmpop", "_ast.AST", "builtins.object"], "names": {".class": "SymbolTable"}, "tuple_type": null, "type_vars": [], "typeddict_type": null}}, "NotIn": {".class": "SymbolTableNode", "kind": "Gdef", "node": {".class": "TypeInfo", "_promote": null, "abstract_attributes": [], "bases": ["_ast.cmpop"], "declared_metaclass": null, "defn": {".class": "ClassDef", "fullname": "_ast.NotIn", "name": "NotIn", "type_vars": []}, "flags": [], "fullname": "_ast.NotIn", "metaclass_type": null, "metadata": {}, "module_name": "_ast", "mro": ["_ast.NotIn", "_ast.cmpop", "_ast.AST", "builtins.object"], "names": {".class": "SymbolTable"}, "tuple_type": null, "type_vars": [], "typeddict_type": null}}, "Num": {".class": "SymbolTableNode", "kind": "Gdef", "node": {".class": "TypeInfo", "_promote": null, "abstract_attributes": [], "bases": ["_ast.expr"], "declared_metaclass": null, "defn": {".class": "ClassDef", "fullname": "_ast.Num", "name": "Num", "type_vars": []}, "flags": [], "fullname": "_ast.Num", "metaclass_type": null, "metadata": {}, "module_name": "_ast", "mro": ["_ast.Num", "_ast.expr", "_ast.AST", "builtins.object"], "names": {".class": "SymbolTable", "n": {".class": "SymbolTableNode", "kind": "Mdef", "node": {".class": "Var", "flags": ["is_initialized_in_class"], "fullname": "_ast.Num.n", "name": "n", "type": "builtins.float"}}}, "tuple_type": null, "type_vars": [], "typeddict_type": null}}, "Optional": {".class": "SymbolTableNode", "cross_ref": "typing.Optional", "kind": "Gdef", "module_hidden": true, "module_public": false}, "Or": {".class": "SymbolTableNode", "kind": "Gdef", "node": {".class": "TypeInfo", "_promote": null, "abstract_attributes": [], "bases": ["_ast.boolop"], "declared_metaclass": null, "defn": {".class": "ClassDef", "fullname": "_ast.Or", "name": "Or", "type_vars": []}, "flags": [], "fullname": "_ast.Or", "metaclass_type": null, "metadata": {}, "module_name": "_ast", "mro": ["_ast.Or", "_ast.boolop", "_ast.AST", "builtins.object"], "names": {".class": "SymbolTable"}, "tuple_type": null, "type_vars": [], "typeddict_type": null}}, "Param": {".class": "SymbolTableNode", "kind": "Gdef", "node": {".class": "TypeInfo", "_promote": null, "abstract_attributes": [], "bases": ["_ast.expr_context"], "declared_metaclass": null, "defn": {".class": "ClassDef", "fullname": "_ast.Param", "name": "Param", "type_vars": []}, "flags": [], "fullname": "_ast.Param", "metaclass_type": null, "metadata": {}, "module_name": "_ast", "mro": ["_ast.Param", "_ast.expr_context", "_ast.AST", "builtins.object"], "names": {".class": "SymbolTable"}, "tuple_type": null, "type_vars": [], "typeddict_type": null}}, "Pass": {".class": "SymbolTableNode", "kind": "Gdef", "node": {".class": "TypeInfo", "_promote": null, "abstract_attributes": [], "bases": ["_ast.stmt"], "declared_metaclass": null, "defn": {".class": "ClassDef", "fullname": "_ast.Pass", "name": "Pass", "type_vars": []}, "flags": [], "fullname": "_ast.Pass", "metaclass_type": null, "metadata": {}, "module_name": "_ast", "mro": ["_ast.Pass", "_ast.stmt", "_ast.AST", "builtins.object"], "names": {".class": "SymbolTable"}, "tuple_type": null, "type_vars": [], "typeddict_type": null}}, "Pow": {".class": "SymbolTableNode", "kind": "Gdef", "node": {".class": "TypeInfo", "_promote": null, "abstract_attributes": [], "bases": ["_ast.operator"], "declared_metaclass": null, "defn": {".class": "ClassDef", "fullname": "_ast.Pow", "name": "Pow", "type_vars": []}, "flags": [], "fullname": "_ast.Pow", "metaclass_type": null, "metadata": {}, "module_name": "_ast", "mro": ["_ast.Pow", "_ast.operator", "_ast.AST", "builtins.object"], "names": {".class": "SymbolTable"}, "tuple_type": null, "type_vars": [], "typeddict_type": null}}, "PyCF_ONLY_AST": {".class": "SymbolTableNode", "kind": "Gdef", "node": {".class": "Var", "flags": [], "fullname": "_ast.PyCF_ONLY_AST", "name": "PyCF_ONLY_AST", "type": "builtins.int"}}, "RShift": {".class": "SymbolTableNode", "kind": "Gdef", "node": {".class": "TypeInfo", "_promote": null, "abstract_attributes": [], "bases": ["_ast.operator"], "declared_metaclass": null, "defn": {".class": "ClassDef", "fullname": "_ast.RShift", "name": "RShift", "type_vars": []}, "flags": [], "fullname": "_ast.RShift", "metaclass_type": null, "metadata": {}, "module_name": "_ast", "mro": ["_ast.RShift", "_ast.operator", "_ast.AST", "builtins.object"], "names": {".class": "SymbolTable"}, "tuple_type": null, "type_vars": [], "typeddict_type": null}}, "Raise": {".class": "SymbolTableNode", "kind": "Gdef", "node": {".class": "TypeInfo", "_promote": null, "abstract_attributes": [], "bases": ["_ast.stmt"], "declared_metaclass": null, "defn": {".class": "ClassDef", "fullname": "_ast.Raise", "name": "Raise", "type_vars": []}, "flags": [], "fullname": "_ast.Raise", "metaclass_type": null, "metadata": {}, "module_name": "_ast", "mro": ["_ast.Raise", "_ast.stmt", "_ast.AST", "builtins.object"], "names": {".class": "SymbolTable", "cause": {".class": "SymbolTableNode", "kind": "Mdef", "node": {".class": "Var", "flags": ["is_initialized_in_class"], "fullname": "_ast.Raise.cause", "name": "cause", "type": {".class": "UnionType", "items": ["_ast.expr", {".class": "NoneTyp"}]}}}, "exc": {".class": "SymbolTableNode", "kind": "Mdef", "node": {".class": "Var", "flags": ["is_initialized_in_class"], "fullname": "_ast.Raise.exc", "name": "exc", "type": {".class": "UnionType", "items": ["_ast.expr", {".class": "NoneTyp"}]}}}}, "tuple_type": null, "type_vars": [], "typeddict_type": null}}, "Return": {".class": "SymbolTableNode", "kind": "Gdef", "node": {".class": "TypeInfo", "_promote": null, "abstract_attributes": [], "bases": ["_ast.stmt"], "declared_metaclass": null, "defn": {".class": "ClassDef", "fullname": "_ast.Return", "name": "Return", "type_vars": []}, "flags": [], "fullname": "_ast.Return", "metaclass_type": null, "metadata": {}, "module_name": "_ast", "mro": ["_ast.Return", "_ast.stmt", "_ast.AST", "builtins.object"], "names": {".class": "SymbolTable", "value": {".class": "SymbolTableNode", "kind": "Mdef", "node": {".class": "Var", "flags": ["is_initialized_in_class"], "fullname": "_ast.Return.value", "name": "value", "type": {".class": "UnionType", "items": ["_ast.expr", {".class": "NoneTyp"}]}}}}, "tuple_type": null, "type_vars": [], "typeddict_type": null}}, "Set": {".class": "SymbolTableNode", "kind": "Gdef", "node": {".class": "TypeInfo", "_promote": null, "abstract_attributes": [], "bases": ["_ast.expr"], "declared_metaclass": null, "defn": {".class": "ClassDef", "fullname": "_ast.Set", "name": "Set", "type_vars": []}, "flags": [], "fullname": "_ast.Set", "metaclass_type": null, "metadata": {}, "module_name": "_ast", "mro": ["_ast.Set", "_ast.expr", "_ast.AST", "builtins.object"], "names": {".class": "SymbolTable", "elts": {".class": "SymbolTableNode", "kind": "Mdef", "node": {".class": "Var", "flags": ["is_initialized_in_class"], "fullname": "_ast.Set.elts", "name": "elts", "type": {".class": "Instance", "args": ["_ast.expr"], "type_ref": "builtins.list"}}}}, "tuple_type": null, "type_vars": [], "typeddict_type": null}}, "SetComp": {".class": "SymbolTableNode", "kind": "Gdef", "node": {".class": "TypeInfo", "_promote": null, "abstract_attributes": [], "bases": ["_ast.expr"], "declared_metaclass": null, "defn": {".class": "ClassDef", "fullname": "_ast.SetComp", "name": "SetComp", "type_vars": []}, "flags": [], "fullname": "_ast.SetComp", "metaclass_type": null, "metadata": {}, "module_name": "_ast", "mro": ["_ast.SetComp", "_ast.expr", "_ast.AST", "builtins.object"], "names": {".class": "SymbolTable", "elt": {".class": "SymbolTableNode", "kind": "Mdef", "node": {".class": "Var", "flags": ["is_initialized_in_class"], "fullname": "_ast.SetComp.elt", "name": "elt", "type": "_ast.expr"}}, "generators": {".class": "SymbolTableNode", "kind": "Mdef", "node": {".class": "Var", "flags": ["is_initialized_in_class"], "fullname": "_ast.SetComp.generators", "name": "generators", "type": {".class": "Instance", "args": ["_ast.comprehension"], "type_ref": "builtins.list"}}}}, "tuple_type": null, "type_vars": [], "typeddict_type": null}}, "Slice": {".class": "SymbolTableNode", "kind": "Gdef", "node": {".class": "TypeInfo", "_promote": null, "abstract_attributes": [], "bases": ["_ast.slice"], "declared_metaclass": null, "defn": {".class": "ClassDef", "fullname": "_ast.Slice", "name": "Slice", "type_vars": []}, "flags": [], "fullname": "_ast.Slice", "metaclass_type": null, "metadata": {}, "module_name": "_ast", "mro": ["_ast.Slice", "_ast.slice", "_ast.AST", "builtins.object"], "names": {".class": "SymbolTable", "lower": {".class": "SymbolTableNode", "kind": "Mdef", "node": {".class": "Var", "flags": ["is_initialized_in_class"], "fullname": "_ast.Slice.lower", "name": "lower", "type": {".class": "UnionType", "items": ["_ast.expr", {".class": "NoneTyp"}]}}}, "step": {".class": "SymbolTableNode", "kind": "Mdef", "node": {".class": "Var", "flags": ["is_initialized_in_class"], "fullname": "_ast.Slice.step", "name": "step", "type": {".class": "UnionType", "items": ["_ast.expr", {".class": "NoneTyp"}]}}}, "upper": {".class": "SymbolTableNode", "kind": "Mdef", "node": {".class": "Var", "flags": ["is_initialized_in_class"], "fullname": "_ast.Slice.upper", "name": "upper", "type": {".class": "UnionType", "items": ["_ast.expr", {".class": "NoneTyp"}]}}}}, "tuple_type": null, "type_vars": [], "typeddict_type": null}}, "Starred": {".class": "SymbolTableNode", "kind": "Gdef", "node": {".class": "TypeInfo", "_promote": null, "abstract_attributes": [], "bases": ["_ast.expr"], "declared_metaclass": null, "defn": {".class": "ClassDef", "fullname": "_ast.Starred", "name": "Starred", "type_vars": []}, "flags": [], "fullname": "_ast.Starred", "metaclass_type": null, "metadata": {}, "module_name": "_ast", "mro": ["_ast.Starred", "_ast.expr", "_ast.AST", "builtins.object"], "names": {".class": "SymbolTable", "ctx": {".class": "SymbolTableNode", "kind": "Mdef", "node": {".class": "Var", "flags": ["is_initialized_in_class"], "fullname": "_ast.Starred.ctx", "name": "ctx", "type": "_ast.expr_context"}}, "value": {".class": "SymbolTableNode", "kind": "Mdef", "node": {".class": "Var", "flags": ["is_initialized_in_class"], "fullname": "_ast.Starred.value", "name": "value", "type": "_ast.expr"}}}, "tuple_type": null, "type_vars": [], "typeddict_type": null}}, "Store": {".class": "SymbolTableNode", "kind": "Gdef", "node": {".class": "TypeInfo", "_promote": null, "abstract_attributes": [], "bases": ["_ast.expr_context"], "declared_metaclass": null, "defn": {".class": "ClassDef", "fullname": "_ast.Store", "name": "Store", "type_vars": []}, "flags": [], "fullname": "_ast.Store", "metaclass_type": null, "metadata": {}, "module_name": "_ast", "mro": ["_ast.Store", "_ast.expr_context", "_ast.AST", "builtins.object"], "names": {".class": "SymbolTable"}, "tuple_type": null, "type_vars": [], "typeddict_type": null}}, "Str": {".class": "SymbolTableNode", "kind": "Gdef", "node": {".class": "TypeInfo", "_promote": null, "abstract_attributes": [], "bases": ["_ast.expr"], "declared_metaclass": null, "defn": {".class": "ClassDef", "fullname": "_ast.Str", "name": "Str", "type_vars": []}, "flags": [], "fullname": "_ast.Str", "metaclass_type": null, "metadata": {}, "module_name": "_ast", "mro": ["_ast.Str", "_ast.expr", "_ast.AST", "builtins.object"], "names": {".class": "SymbolTable", "s": {".class": "SymbolTableNode", "kind": "Mdef", "node": {".class": "Var", "flags": ["is_initialized_in_class"], "fullname": "_ast.Str.s", "name": "s", "type": "builtins.str"}}}, "tuple_type": null, "type_vars": [], "typeddict_type": null}}, "Sub": {".class": "SymbolTableNode", "kind": "Gdef", "node": {".class": "TypeInfo", "_promote": null, "abstract_attributes": [], "bases": ["_ast.operator"], "declared_metaclass": null, "defn": {".class": "ClassDef", "fullname": "_ast.Sub", "name": "Sub", "type_vars": []}, "flags": [], "fullname": "_ast.Sub", "metaclass_type": null, "metadata": {}, "module_name": "_ast", "mro": ["_ast.Sub", "_ast.operator", "_ast.AST", "builtins.object"], "names": {".class": "SymbolTable"}, "tuple_type": null, "type_vars": [], "typeddict_type": null}}, "Subscript": {".class": "SymbolTableNode", "kind": "Gdef", "node": {".class": "TypeInfo", "_promote": null, "abstract_attributes": [], "bases": ["_ast.expr"], "declared_metaclass": null, "defn": {".class": "ClassDef", "fullname": "_ast.Subscript", "name": "Subscript", "type_vars": []}, "flags": [], "fullname": "_ast.Subscript", "metaclass_type": null, "metadata": {}, "module_name": "_ast", "mro": ["_ast.Subscript", "_ast.expr", "_ast.AST", "builtins.object"], "names": {".class": "SymbolTable", "ctx": {".class": "SymbolTableNode", "kind": "Mdef", "node": {".class": "Var", "flags": ["is_initialized_in_class"], "fullname": "_ast.Subscript.ctx", "name": "ctx", "type": "_ast.expr_context"}}, "slice": {".class": "SymbolTableNode", "kind": "Mdef", "node": {".class": "Var", "flags": ["is_initialized_in_class"], "fullname": "_ast.Subscript.slice", "name": "slice", "type": "_ast.slice"}}, "value": {".class": "SymbolTableNode", "kind": "Mdef", "node": {".class": "Var", "flags": ["is_initialized_in_class"], "fullname": "_ast.Subscript.value", "name": "value", "type": "_ast.expr"}}}, "tuple_type": null, "type_vars": [], "typeddict_type": null}}, "Suite": {".class": "SymbolTableNode", "kind": "Gdef", "node": {".class": "TypeInfo", "_promote": null, "abstract_attributes": [], "bases": ["_ast.mod"], "declared_metaclass": null, "defn": {".class": "ClassDef", "fullname": "_ast.Suite", "name": "Suite", "type_vars": []}, "flags": [], "fullname": "_ast.Suite", "metaclass_type": null, "metadata": {}, "module_name": "_ast", "mro": ["_ast.Suite", "_ast.mod", "_ast.AST", "builtins.object"], "names": {".class": "SymbolTable", "body": {".class": "SymbolTableNode", "kind": "Mdef", "node": {".class": "Var", "flags": ["is_initialized_in_class"], "fullname": "_ast.Suite.body", "name": "body", "type": {".class": "Instance", "args": ["_ast.stmt"], "type_ref": "builtins.list"}}}}, "tuple_type": null, "type_vars": [], "typeddict_type": null}}, "Try": {".class": "SymbolTableNode", "kind": "Gdef", "node": {".class": "TypeInfo", "_promote": null, "abstract_attributes": [], "bases": ["_ast.stmt"], "declared_metaclass": null, "defn": {".class": "ClassDef", "fullname": "_ast.Try", "name": "Try", "type_vars": []}, "flags": [], "fullname": "_ast.Try", "metaclass_type": null, "metadata": {}, "module_name": "_ast", "mro": ["_ast.Try", "_ast.stmt", "_ast.AST", "builtins.object"], "names": {".class": "SymbolTable", "body": {".class": "SymbolTableNode", "kind": "Mdef", "node": {".class": "Var", "flags": ["is_initialized_in_class"], "fullname": "_ast.Try.body", "name": "body", "type": {".class": "Instance", "args": ["_ast.stmt"], "type_ref": "builtins.list"}}}, "finalbody": {".class": "SymbolTableNode", "kind": "Mdef", "node": {".class": "Var", "flags": ["is_initialized_in_class"], "fullname": "_ast.Try.finalbody", "name": "finalbody", "type": {".class": "Instance", "args": ["_ast.stmt"], "type_ref": "builtins.list"}}}, "handlers": {".class": "SymbolTableNode", "kind": "Mdef", "node": {".class": "Var", "flags": ["is_initialized_in_class"], "fullname": "_ast.Try.handlers", "name": "handlers", "type": {".class": "Instance", "args": ["_ast.ExceptHandler"], "type_ref": "builtins.list"}}}, "orelse": {".class": "SymbolTableNode", "kind": "Mdef", "node": {".class": "Var", "flags": ["is_initialized_in_class"], "fullname": "_ast.Try.orelse", "name": "orelse", "type": {".class": "Instance", "args": ["_ast.stmt"], "type_ref": "builtins.list"}}}}, "tuple_type": null, "type_vars": [], "typeddict_type": null}}, "Tuple": {".class": "SymbolTableNode", "kind": "Gdef", "node": {".class": "TypeInfo", "_promote": null, "abstract_attributes": [], "bases": ["_ast.expr"], "declared_metaclass": null, "defn": {".class": "ClassDef", "fullname": "_ast.Tuple", "name": "Tuple", "type_vars": []}, "flags": [], "fullname": "_ast.Tuple", "metaclass_type": null, "metadata": {}, "module_name": "_ast", "mro": ["_ast.Tuple", "_ast.expr", "_ast.AST", "builtins.object"], "names": {".class": "SymbolTable", "ctx": {".class": "SymbolTableNode", "kind": "Mdef", "node": {".class": "Var", "flags": ["is_initialized_in_class"], "fullname": "_ast.Tuple.ctx", "name": "ctx", "type": "_ast.expr_context"}}, "elts": {".class": "SymbolTableNode", "kind": "Mdef", "node": {".class": "Var", "flags": ["is_initialized_in_class"], "fullname": "_ast.Tuple.elts", "name": "elts", "type": {".class": "Instance", "args": ["_ast.expr"], "type_ref": "builtins.list"}}}}, "tuple_type": null, "type_vars": [], "typeddict_type": null}}, "UAdd": {".class": "SymbolTableNode", "kind": "Gdef", "node": {".class": "TypeInfo", "_promote": null, "abstract_attributes": [], "bases": ["_ast.unaryop"], "declared_metaclass": null, "defn": {".class": "ClassDef", "fullname": "_ast.UAdd", "name": "UAdd", "type_vars": []}, "flags": [], "fullname": "_ast.UAdd", "metaclass_type": null, "metadata": {}, "module_name": "_ast", "mro": ["_ast.UAdd", "_ast.unaryop", "_ast.AST", "builtins.object"], "names": {".class": "SymbolTable"}, "tuple_type": null, "type_vars": [], "typeddict_type": null}}, "USub": {".class": "SymbolTableNode", "kind": "Gdef", "node": {".class": "TypeInfo", "_promote": null, "abstract_attributes": [], "bases": ["_ast.unaryop"], "declared_metaclass": null, "defn": {".class": "ClassDef", "fullname": "_ast.USub", "name": "USub", "type_vars": []}, "flags": [], "fullname": "_ast.USub", "metaclass_type": null, "metadata": {}, "module_name": "_ast", "mro": ["_ast.USub", "_ast.unaryop", "_ast.AST", "builtins.object"], "names": {".class": "SymbolTable"}, "tuple_type": null, "type_vars": [], "typeddict_type": null}}, "UnaryOp": {".class": "SymbolTableNode", "kind": "Gdef", "node": {".class": "TypeInfo", "_promote": null, "abstract_attributes": [], "bases": ["_ast.expr"], "declared_metaclass": null, "defn": {".class": "ClassDef", "fullname": "_ast.UnaryOp", "name": "UnaryOp", "type_vars": []}, "flags": [], "fullname": "_ast.UnaryOp", "metaclass_type": null, "metadata": {}, "module_name": "_ast", "mro": ["_ast.UnaryOp", "_ast.expr", "_ast.AST", "builtins.object"], "names": {".class": "SymbolTable", "op": {".class": "SymbolTableNode", "kind": "Mdef", "node": {".class": "Var", "flags": ["is_initialized_in_class"], "fullname": "_ast.UnaryOp.op", "name": "op", "type": "_ast.unaryop"}}, "operand": {".class": "SymbolTableNode", "kind": "Mdef", "node": {".class": "Var", "flags": ["is_initialized_in_class"], "fullname": "_ast.UnaryOp.operand", "name": "operand", "type": "_ast.expr"}}}, "tuple_type": null, "type_vars": [], "typeddict_type": null}}, "While": {".class": "SymbolTableNode", "kind": "Gdef", "node": {".class": "TypeInfo", "_promote": null, "abstract_attributes": [], "bases": ["_ast.stmt"], "declared_metaclass": null, "defn": {".class": "ClassDef", "fullname": "_ast.While", "name": "While", "type_vars": []}, "flags": [], "fullname": "_ast.While", "metaclass_type": null, "metadata": {}, "module_name": "_ast", "mro": ["_ast.While", "_ast.stmt", "_ast.AST", "builtins.object"], "names": {".class": "SymbolTable", "body": {".class": "SymbolTableNode", "kind": "Mdef", "node": {".class": "Var", "flags": ["is_initialized_in_class"], "fullname": "_ast.While.body", "name": "body", "type": {".class": "Instance", "args": ["_ast.stmt"], "type_ref": "builtins.list"}}}, "orelse": {".class": "SymbolTableNode", "kind": "Mdef", "node": {".class": "Var", "flags": ["is_initialized_in_class"], "fullname": "_ast.While.orelse", "name": "orelse", "type": {".class": "Instance", "args": ["_ast.stmt"], "type_ref": "builtins.list"}}}, "test": {".class": "SymbolTableNode", "kind": "Mdef", "node": {".class": "Var", "flags": ["is_initialized_in_class"], "fullname": "_ast.While.test", "name": "test", "type": "_ast.expr"}}}, "tuple_type": null, "type_vars": [], "typeddict_type": null}}, "With": {".class": "SymbolTableNode", "kind": "Gdef", "node": {".class": "TypeInfo", "_promote": null, "abstract_attributes": [], "bases": ["_ast.stmt"], "declared_metaclass": null, "defn": {".class": "ClassDef", "fullname": "_ast.With", "name": "With", "type_vars": []}, "flags": [], "fullname": "_ast.With", "metaclass_type": null, "metadata": {}, "module_name": "_ast", "mro": ["_ast.With", "_ast.stmt", "_ast.AST", "builtins.object"], "names": {".class": "SymbolTable", "body": {".class": "SymbolTableNode", "kind": "Mdef", "node": {".class": "Var", "flags": ["is_initialized_in_class"], "fullname": "_ast.With.body", "name": "body", "type": {".class": "Instance", "args": ["_ast.stmt"], "type_ref": "builtins.list"}}}, "items": {".class": "SymbolTableNode", "kind": "Mdef", "node": {".class": "Var", "flags": ["is_initialized_in_class"], "fullname": "_ast.With.items", "name": "items", "type": {".class": "Instance", "args": ["_ast.withitem"], "type_ref": "builtins.list"}}}}, "tuple_type": null, "type_vars": [], "typeddict_type": null}}, "Yield": {".class": "SymbolTableNode", "kind": "Gdef", "node": {".class": "TypeInfo", "_promote": null, "abstract_attributes": [], "bases": ["_ast.expr"], "declared_metaclass": null, "defn": {".class": "ClassDef", "fullname": "_ast.Yield", "name": "Yield", "type_vars": []}, "flags": [], "fullname": "_ast.Yield", "metaclass_type": null, "metadata": {}, "module_name": "_ast", "mro": ["_ast.Yield", "_ast.expr", "_ast.AST", "builtins.object"], "names": {".class": "SymbolTable", "value": {".class": "SymbolTableNode", "kind": "Mdef", "node": {".class": "Var", "flags": ["is_initialized_in_class"], "fullname": "_ast.Yield.value", "name": "value", "type": {".class": "UnionType", "items": ["_ast.expr", {".class": "NoneTyp"}]}}}}, "tuple_type": null, "type_vars": [], "typeddict_type": null}}, "YieldFrom": {".class": "SymbolTableNode", "kind": "Gdef", "node": {".class": "TypeInfo", "_promote": null, "abstract_attributes": [], "bases": ["_ast.expr"], "declared_metaclass": null, "defn": {".class": "ClassDef", "fullname": "_ast.YieldFrom", "name": "YieldFrom", "type_vars": []}, "flags": [], "fullname": "_ast.YieldFrom", "metaclass_type": null, "metadata": {}, "module_name": "_ast", "mro": ["_ast.YieldFrom", "_ast.expr", "_ast.AST", "builtins.object"], "names": {".class": "SymbolTable", "value": {".class": "SymbolTableNode", "kind": "Mdef", "node": {".class": "Var", "flags": ["is_initialized_in_class"], "fullname": "_ast.YieldFrom.value", "name": "value", "type": "_ast.expr"}}}, "tuple_type": null, "type_vars": [], "typeddict_type": null}}, "__doc__": {".class": "SymbolTableNode", "kind": "Gdef", "node": {".class": "Var", "flags": [], "fullname": "_ast.__doc__", "name": "__doc__", "type": "builtins.str"}}, "__file__": {".class": "SymbolTableNode", "kind": "Gdef", "node": {".class": "Var", "flags": [], "fullname": "_ast.__file__", "name": "__file__", "type": "builtins.str"}}, "__name__": {".class": "SymbolTableNode", "kind": "Gdef", "node": {".class": "Var", "flags": [], "fullname": "_ast.__name__", "name": "__name__", "type": "builtins.str"}}, "__package__": {".class": "SymbolTableNode", "kind": "Gdef", "node": {".class": "Var", "flags": [], "fullname": "_ast.__package__", "name": "__package__", "type": "builtins.str"}}, "_identifier": {".class": "SymbolTableNode", "kind": "Gdef", "node": {".class": "TypeAlias", "alias_tvars": [], "column": 0, "fullname": "_ast._identifier", "line": 7, "no_args": true, "normalized": false, "target": "builtins.str"}}, "_slice": {".class": "SymbolTableNode", "kind": "Gdef", "node": {".class": "TypeAlias", "alias_tvars": [], "column": 0, "fullname": "_ast._slice", "line": 154, "no_args": true, "normalized": false, "target": "_ast.slice"}}, "alias": {".class": "SymbolTableNode", "kind": "Gdef", "node": {".class": "TypeInfo", "_promote": null, "abstract_attributes": [], "bases": ["_ast.AST"], "declared_metaclass": null, "defn": {".class": "ClassDef", "fullname": "_ast.alias", "name": "alias", "type_vars": []}, "flags": [], "fullname": "_ast.alias", "metaclass_type": null, "metadata": {}, "module_name": "_ast", "mro": ["_ast.alias", "_ast.AST", "builtins.object"], "names": {".class": "SymbolTable", "asname": {".class": "SymbolTableNode", "kind": "Mdef", "node": {".class": "Var", "flags": ["is_initialized_in_class"], "fullname": "_ast.alias.asname", "name": "asname", "type": {".class": "UnionType", "items": ["builtins.str", {".class": "NoneTyp"}]}}}, "name": {".class": "SymbolTableNode", "kind": "Mdef", "node": {".class": "Var", "flags": ["is_initialized_in_class"], "fullname": "_ast.alias.name", "name": "name", "type": "builtins.str"}}}, "tuple_type": null, "type_vars": [], "typeddict_type": null}}, "arg": {".class": "SymbolTableNode", "kind": "Gdef", "node": {".class": "TypeInfo", "_promote": null, "abstract_attributes": [], "bases": ["_ast.AST"], "declared_metaclass": null, "defn": {".class": "ClassDef", "fullname": "_ast.arg", "name": "arg", "type_vars": []}, "flags": [], "fullname": "_ast.arg", "metaclass_type": null, "metadata": {}, "module_name": "_ast", "mro": ["_ast.arg", "_ast.AST", "builtins.object"], "names": {".class": "SymbolTable", "annotation": {".class": "SymbolTableNode", "kind": "Mdef", "node": {".class": "Var", "flags": ["is_initialized_in_class"], "fullname": "_ast.arg.annotation", "name": "annotation", "type": {".class": "UnionType", "items": ["_ast.expr", {".class": "NoneTyp"}]}}}, "arg": {".class": "SymbolTableNode", "kind": "Mdef", "node": {".class": "Var", "flags": ["is_initialized_in_class"], "fullname": "_ast.arg.arg", "name": "arg", "type": "builtins.str"}}}, "tuple_type": null, "type_vars": [], "typeddict_type": null}}, "arguments": {".class": "SymbolTableNode", "kind": "Gdef", "node": {".class": "TypeInfo", "_promote": null, "abstract_attributes": [], "bases": ["_ast.AST"], "declared_metaclass": null, "defn": {".class": "ClassDef", "fullname": "_ast.arguments", "name": "arguments", "type_vars": []}, "flags": [], "fullname": "_ast.arguments", "metaclass_type": null, "metadata": {}, "module_name": "_ast", "mro": ["_ast.arguments", "_ast.AST", "builtins.object"], "names": {".class": "SymbolTable", "args": {".class": "SymbolTableNode", "kind": "Mdef", "node": {".class": "Var", "flags": ["is_initialized_in_class"], "fullname": "_ast.arguments.args", "name": "args", "type": {".class": "Instance", "args": ["_ast.arg"], "type_ref": "builtins.list"}}}, "defaults": {".class": "SymbolTableNode", "kind": "Mdef", "node": {".class": "Var", "flags": ["is_initialized_in_class"], "fullname": "_ast.arguments.defaults", "name": "defaults", "type": {".class": "Instance", "args": ["_ast.expr"], "type_ref": "builtins.list"}}}, "kw_defaults": {".class": "SymbolTableNode", "kind": "Mdef", "node": {".class": "Var", "flags": ["is_initialized_in_class"], "fullname": "_ast.arguments.kw_defaults", "name": "kw_defaults", "type": {".class": "Instance", "args": ["_ast.expr"], "type_ref": "builtins.list"}}}, "kwarg": {".class": "SymbolTableNode", "kind": "Mdef", "node": {".class": "Var", "flags": ["is_initialized_in_class"], "fullname": "_ast.arguments.kwarg", "name": "kwarg", "type": {".class": "UnionType", "items": ["_ast.arg", {".class": "NoneTyp"}]}}}, "kwonlyargs": {".class": "SymbolTableNode", "kind": "Mdef", "node": {".class": "Var", "flags": ["is_initialized_in_class"], "fullname": "_ast.arguments.kwonlyargs", "name": "kwonlyargs", "type": {".class": "Instance", "args": ["_ast.arg"], "type_ref": "builtins.list"}}}, "vararg": {".class": "SymbolTableNode", "kind": "Mdef", "node": {".class": "Var", "flags": ["is_initialized_in_class"], "fullname": "_ast.arguments.vararg", "name": "vararg", "type": {".class": "UnionType", "items": ["_ast.arg", {".class": "NoneTyp"}]}}}}, "tuple_type": null, "type_vars": [], "typeddict_type": null}}, "boolop": {".class": "SymbolTableNode", "kind": "Gdef", "node": {".class": "TypeInfo", "_promote": null, "abstract_attributes": [], "bases": ["_ast.AST"], "declared_metaclass": null, "defn": {".class": "ClassDef", "fullname": "_ast.boolop", "name": "boolop", "type_vars": []}, "flags": [], "fullname": "_ast.boolop", "metaclass_type": null, "metadata": {}, "module_name": "_ast", "mro": ["_ast.boolop", "_ast.AST", "builtins.object"], "names": {".class": "SymbolTable"}, "tuple_type": null, "type_vars": [], "typeddict_type": null}}, "cmpop": {".class": "SymbolTableNode", "kind": "Gdef", "node": {".class": "TypeInfo", "_promote": null, "abstract_attributes": [], "bases": ["_ast.AST"], "declared_metaclass": null, "defn": {".class": "ClassDef", "fullname": "_ast.cmpop", "name": "cmpop", "type_vars": []}, "flags": [], "fullname": "_ast.cmpop", "metaclass_type": null, "metadata": {}, "module_name": "_ast", "mro": ["_ast.cmpop", "_ast.AST", "builtins.object"], "names": {".class": "SymbolTable"}, "tuple_type": null, "type_vars": [], "typeddict_type": null}}, "comprehension": {".class": "SymbolTableNode", "kind": "Gdef", "node": {".class": "TypeInfo", "_promote": null, "abstract_attributes": [], "bases": ["_ast.AST"], "declared_metaclass": null, "defn": {".class": "ClassDef", "fullname": "_ast.comprehension", "name": "comprehension", "type_vars": []}, "flags": [], "fullname": "_ast.comprehension", "metaclass_type": null, "metadata": {}, "module_name": "_ast", "mro": ["_ast.comprehension", "_ast.AST", "builtins.object"], "names": {".class": "SymbolTable", "ifs": {".class": "SymbolTableNode", "kind": "Mdef", "node": {".class": "Var", "flags": ["is_initialized_in_class"], "fullname": "_ast.comprehension.ifs", "name": "ifs", "type": {".class": "Instance", "args": ["_ast.expr"], "type_ref": "builtins.list"}}}, "is_async": {".class": "SymbolTableNode", "kind": "Mdef", "node": {".class": "Var", "flags": ["is_initialized_in_class"], "fullname": "_ast.comprehension.is_async", "name": "is_async", "type": "builtins.int"}}, "iter": {".class": "SymbolTableNode", "kind": "Mdef", "node": {".class": "Var", "flags": ["is_initialized_in_class"], "fullname": "_ast.comprehension.iter", "name": "iter", "type": "_ast.expr"}}, "target": {".class": "SymbolTableNode", "kind": "Mdef", "node": {".class": "Var", "flags": ["is_initialized_in_class"], "fullname": "_ast.comprehension.target", "name": "target", "type": "_ast.expr"}}}, "tuple_type": null, "type_vars": [], "typeddict_type": null}}, "expr": {".class": "SymbolTableNode", "kind": "Gdef", "node": {".class": "TypeInfo", "_promote": null, "abstract_attributes": [], "bases": ["_ast.AST"], "declared_metaclass": null, "defn": {".class": "ClassDef", "fullname": "_ast.expr", "name": "expr", "type_vars": []}, "flags": [], "fullname": "_ast.expr", "metaclass_type": null, "metadata": {}, "module_name": "_ast", "mro": ["_ast.expr", "_ast.AST", "builtins.object"], "names": {".class": "SymbolTable"}, "tuple_type": null, "type_vars": [], "typeddict_type": null}}, "expr_context": {".class": "SymbolTableNode", "kind": "Gdef", "node": {".class": "TypeInfo", "_promote": null, "abstract_attributes": [], "bases": ["_ast.AST"], "declared_metaclass": null, "defn": {".class": "ClassDef", "fullname": "_ast.expr_context", "name": "expr_context", "type_vars": []}, "flags": [], "fullname": "_ast.expr_context", "metaclass_type": null, "metadata": {}, "module_name": "_ast", "mro": ["_ast.expr_context", "_ast.AST", "builtins.object"], "names": {".class": "SymbolTable"}, "tuple_type": null, "type_vars": [], "typeddict_type": null}}, "keyword": {".class": "SymbolTableNode", "kind": "Gdef", "node": {".class": "TypeInfo", "_promote": null, "abstract_attributes": [], "bases": ["_ast.AST"], "declared_metaclass": null, "defn": {".class": "ClassDef", "fullname": "_ast.keyword", "name": "keyword", "type_vars": []}, "flags": [], "fullname": "_ast.keyword", "metaclass_type": null, "metadata": {}, "module_name": "_ast", "mro": ["_ast.keyword", "_ast.AST", "builtins.object"], "names": {".class": "SymbolTable", "arg": {".class": "SymbolTableNode", "kind": "Mdef", "node": {".class": "Var", "flags": ["is_initialized_in_class"], "fullname": "_ast.keyword.arg", "name": "arg", "type": {".class": "UnionType", "items": ["builtins.str", {".class": "NoneTyp"}]}}}, "value": {".class": "SymbolTableNode", "kind": "Mdef", "node": {".class": "Var", "flags": ["is_initialized_in_class"], "fullname": "_ast.keyword.value", "name": "value", "type": "_ast.expr"}}}, "tuple_type": null, "type_vars": [], "typeddict_type": null}}, "mod": {".class": "SymbolTableNode", "kind": "Gdef", "node": {".class": "TypeInfo", "_promote": null, "abstract_attributes": [], "bases": ["_ast.AST"], "declared_metaclass": null, "defn": {".class": "ClassDef", "fullname": "_ast.mod", "name": "mod", "type_vars": []}, "flags": [], "fullname": "_ast.mod", "metaclass_type": null, "metadata": {}, "module_name": "_ast", "mro": ["_ast.mod", "_ast.AST", "builtins.object"], "names": {".class": "SymbolTable"}, "tuple_type": null, "type_vars": [], "typeddict_type": null}}, "operator": {".class": "SymbolTableNode", "kind": "Gdef", "node": {".class": "TypeInfo", "_promote": null, "abstract_attributes": [], "bases": ["_ast.AST"], "declared_metaclass": null, "defn": {".class": "ClassDef", "fullname": "_ast.operator", "name": "operator", "type_vars": []}, "flags": [], "fullname": "_ast.operator", "metaclass_type": null, "metadata": {}, "module_name": "_ast", "mro": ["_ast.operator", "_ast.AST", "builtins.object"], "names": {".class": "SymbolTable"}, "tuple_type": null, "type_vars": [], "typeddict_type": null}}, "slice": {".class": "SymbolTableNode", "kind": "Gdef", "node": {".class": "TypeInfo", "_promote": null, "abstract_attributes": [], "bases": ["_ast.AST"], "declared_metaclass": null, "defn": {".class": "ClassDef", "fullname": "_ast.slice", "name": "slice", "type_vars": []}, "flags": [], "fullname": "_ast.slice", "metaclass_type": null, "metadata": {}, "module_name": "_ast", "mro": ["_ast.slice", "_ast.AST", "builtins.object"], "names": {".class": "SymbolTable"}, "tuple_type": null, "type_vars": [], "typeddict_type": null}}, "stmt": {".class": "SymbolTableNode", "kind": "Gdef", "node": {".class": "TypeInfo", "_promote": null, "abstract_attributes": [], "bases": ["_ast.AST"], "declared_metaclass": null, "defn": {".class": "ClassDef", "fullname": "_ast.stmt", "name": "stmt", "type_vars": []}, "flags": [], "fullname": "_ast.stmt", "metaclass_type": null, "metadata": {}, "module_name": "_ast", "mro": ["_ast.stmt", "_ast.AST", "builtins.object"], "names": {".class": "SymbolTable"}, "tuple_type": null, "type_vars": [], "typeddict_type": null}}, "sys": {".class": "SymbolTableNode", "cross_ref": "sys", "kind": "Gdef", "module_hidden": true, "module_public": false}, "typing": {".class": "SymbolTableNode", "cross_ref": "typing", "kind": "Gdef", "module_hidden": true, "module_public": false}, "unaryop": {".class": "SymbolTableNode", "kind": "Gdef", "node": {".class": "TypeInfo", "_promote": null, "abstract_attributes": [], "bases": ["_ast.AST"], "declared_metaclass": null, "defn": {".class": "ClassDef", "fullname": "_ast.unaryop", "name": "unaryop", "type_vars": []}, "flags": [], "fullname": "_ast.unaryop", "metaclass_type": null, "metadata": {}, "module_name": "_ast", "mro": ["_ast.unaryop", "_ast.AST", "builtins.object"], "names": {".class": "SymbolTable"}, "tuple_type": null, "type_vars": [], "typeddict_type": null}}, "withitem": {".class": "SymbolTableNode", "kind": "Gdef", "node": {".class": "TypeInfo", "_promote": null, "abstract_attributes": [], "bases": ["_ast.AST"], "declared_metaclass": null, "defn": {".class": "ClassDef", "fullname": "_ast.withitem", "name": "withitem", "type_vars": []}, "flags": [], "fullname": "_ast.withitem", "metaclass_type": null, "metadata": {}, "module_name": "_ast", "mro": ["_ast.withitem", "_ast.AST", "builtins.object"], "names": {".class": "SymbolTable", "context_expr": {".class": "SymbolTableNode", "kind": "Mdef", "node": {".class": "Var", "flags": ["is_initialized_in_class"], "fullname": "_ast.withitem.context_expr", "name": "context_expr", "type": "_ast.expr"}}, "optional_vars": {".class": "SymbolTableNode", "kind": "Mdef", "node": {".class": "Var", "flags": ["is_initialized_in_class"], "fullname": "_ast.withitem.optional_vars", "name": "optional_vars", "type": {".class": "UnionType", "items": ["_ast.expr", {".class": "NoneTyp"}]}}}}, "tuple_type": null, "type_vars": [], "typeddict_type": null}}}, "path": "/usr/lib/python3/dist-packages/mypy/typeshed/stdlib/3/_ast.pyi"}
\ No newline at end of file
diff --git a/Postgres/StressTests/.mypy_cache/3.7/_ast.meta.json b/Postgres/StressTests/.mypy_cache/3.7/_ast.meta.json
deleted file mode 100644
index 2aa437a..0000000
--- a/Postgres/StressTests/.mypy_cache/3.7/_ast.meta.json
+++ /dev/null
@@ -1 +0,0 @@
-{"child_modules": [], "data_mtime": 1553688971, "dep_lines": [1, 2, 1, 1], "dep_prios": [10, 5, 5, 30], "dependencies": ["sys", "typing", "builtins", "abc"], "hash": "8ec0450c6aa8b9e61865d2ae39b6328a", "id": "_ast", "ignore_all": true, "interface_hash": "3b87726ef6d599d94114e992567140c7", "mtime": 1549659920, "options": {"allow_redefinition": false, "allow_untyped_globals": false, "always_false": [], "always_true": [], "bazel": false, "check_untyped_defs": false, "disallow_any_decorated": false, "disallow_any_explicit": false, "disallow_any_expr": false, "disallow_any_generics": false, "disallow_any_unimported": false, "disallow_incomplete_defs": false, "disallow_subclassing_any": false, "disallow_untyped_calls": false, "disallow_untyped_decorators": false, "disallow_untyped_defs": false, "follow_imports": "normal", "follow_imports_for_stubs": false, "ignore_errors": false, "ignore_missing_imports": false, "local_partial_types": false, "mypyc": false, "new_semantic_analyzer": false, "no_implicit_optional": false, "platform": "linux", "plugins": [], "show_none_errors": true, "strict_optional": true, "strict_optional_whitelist": null, "warn_no_return": true, "warn_return_any": false, "warn_unused_ignores": false}, "path": "/usr/lib/python3/dist-packages/mypy/typeshed/stdlib/3/_ast.pyi", "size": 8992, "suppressed": [], "version_id": "0.670"}
\ No newline at end of file
diff --git a/Postgres/StressTests/.mypy_cache/3.7/_importlib_modulespec.data.json b/Postgres/StressTests/.mypy_cache/3.7/_importlib_modulespec.data.json
deleted file mode 100644
index 156317d..0000000
--- a/Postgres/StressTests/.mypy_cache/3.7/_importlib_modulespec.data.json
+++ /dev/null
@@ -1 +0,0 @@
-{".class": "MypyFile", "_fullname": "_importlib_modulespec", "is_partial_stub_package": false, "is_stub": true, "names": {".class": "SymbolTable", "ABCMeta": {".class": "SymbolTableNode", "cross_ref": "abc.ABCMeta", "kind": "Gdef", "module_hidden": true, "module_public": false}, "Any": {".class": "SymbolTableNode", "cross_ref": "typing.Any", "kind": "Gdef", "module_hidden": true, "module_public": false}, "Dict": {".class": "SymbolTableNode", "cross_ref": "typing.Dict", "kind": "Gdef", "module_hidden": true, "module_public": false}, "List": {".class": "SymbolTableNode", "cross_ref": "typing.List", "kind": "Gdef", "module_hidden": true, "module_public": false}, "Loader": {".class": "SymbolTableNode", "kind": "Gdef", "node": {".class": "TypeInfo", "_promote": null, "abstract_attributes": [], "bases": ["builtins.object"], "declared_metaclass": "abc.ABCMeta", "defn": {".class": "ClassDef", "fullname": "_importlib_modulespec.Loader", "name": "Loader", "type_vars": []}, "flags": [], "fullname": "_importlib_modulespec.Loader", "metaclass_type": "abc.ABCMeta", "metadata": {}, "module_name": "_importlib_modulespec", "mro": ["_importlib_modulespec.Loader", "builtins.object"], "names": {".class": "SymbolTable", "create_module": {".class": "SymbolTableNode", "kind": "Mdef", "node": {".class": "FuncDef", "arg_kinds": [0, 0], "arg_names": ["self", "spec"], "flags": [], "fullname": "_importlib_modulespec.Loader.create_module", "name": "create_module", "type": {".class": "CallableType", "arg_kinds": [0, 0], "arg_names": ["self", "spec"], "arg_types": ["_importlib_modulespec.Loader", "_importlib_modulespec.ModuleSpec"], "bound_args": [], "def_extras": {"first_arg": "self"}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "create_module of Loader", "ret_type": {".class": "UnionType", "items": ["_importlib_modulespec.ModuleType", {".class": "NoneTyp"}]}, "variables": []}}}, "exec_module": {".class": "SymbolTableNode", "kind": "Mdef", "node": {".class": "FuncDef", "arg_kinds": [0, 0], "arg_names": ["self", "module"], "flags": [], "fullname": "_importlib_modulespec.Loader.exec_module", "name": "exec_module", "type": {".class": "CallableType", "arg_kinds": [0, 0], "arg_names": ["self", "module"], "arg_types": ["_importlib_modulespec.Loader", "_importlib_modulespec.ModuleType"], "bound_args": [], "def_extras": {"first_arg": "self"}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "exec_module of Loader", "ret_type": {".class": "NoneTyp"}, "variables": []}}}, "load_module": {".class": "SymbolTableNode", "kind": "Mdef", "node": {".class": "FuncDef", "arg_kinds": [0, 0], "arg_names": ["self", "fullname"], "flags": [], "fullname": "_importlib_modulespec.Loader.load_module", "name": "load_module", "type": {".class": "CallableType", "arg_kinds": [0, 0], "arg_names": ["self", "fullname"], "arg_types": ["_importlib_modulespec.Loader", "builtins.str"], "bound_args": [], "def_extras": {"first_arg": "self"}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "load_module of Loader", "ret_type": "_importlib_modulespec.ModuleType", "variables": []}}}, "module_repr": {".class": "SymbolTableNode", "kind": "Mdef", "node": {".class": "FuncDef", "arg_kinds": [0, 0], "arg_names": ["self", "module"], "flags": [], "fullname": "_importlib_modulespec.Loader.module_repr", "name": "module_repr", "type": {".class": "CallableType", "arg_kinds": [0, 0], "arg_names": ["self", "module"], "arg_types": ["_importlib_modulespec.Loader", "_importlib_modulespec.ModuleType"], "bound_args": [], "def_extras": {"first_arg": "self"}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "module_repr of Loader", "ret_type": "builtins.str", "variables": []}}}}, "tuple_type": null, "type_vars": [], "typeddict_type": null}}, "ModuleSpec": {".class": "SymbolTableNode", "kind": "Gdef", "node": {".class": "TypeInfo", "_promote": null, "abstract_attributes": [], "bases": ["builtins.object"], "declared_metaclass": null, "defn": {".class": "ClassDef", "fullname": "_importlib_modulespec.ModuleSpec", "name": "ModuleSpec", "type_vars": []}, "flags": [], "fullname": "_importlib_modulespec.ModuleSpec", "metaclass_type": null, "metadata": {}, "module_name": "_importlib_modulespec", "mro": ["_importlib_modulespec.ModuleSpec", "builtins.object"], "names": {".class": "SymbolTable", "__init__": {".class": "SymbolTableNode", "kind": "Mdef", "node": {".class": "FuncDef", "arg_kinds": [0, 0, 0, 5, 5, 5], "arg_names": ["self", "name", "loader", "origin", "loader_state", "is_package"], "flags": [], "fullname": "_importlib_modulespec.ModuleSpec.__init__", "name": "__init__", "type": {".class": "CallableType", "arg_kinds": [0, 0, 0, 5, 5, 5], "arg_names": ["self", "name", "loader", "origin", "loader_state", "is_package"], "arg_types": ["_importlib_modulespec.ModuleSpec", "builtins.str", {".class": "UnionType", "items": ["_importlib_modulespec.Loader", {".class": "NoneTyp"}]}, {".class": "UnionType", "items": ["builtins.str", {".class": "NoneTyp"}]}, {".class": "AnyType", "missing_import_name": null, "source_any": null, "type_of_any": 2}, {".class": "UnionType", "items": ["builtins.bool", {".class": "NoneTyp"}]}], "bound_args": [], "def_extras": {"first_arg": "self"}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "__init__ of ModuleSpec", "ret_type": {".class": "NoneTyp"}, "variables": []}}}, "cached": {".class": "SymbolTableNode", "kind": "Mdef", "node": {".class": "Var", "flags": ["is_initialized_in_class"], "fullname": "_importlib_modulespec.ModuleSpec.cached", "name": "cached", "type": {".class": "UnionType", "items": ["builtins.str", {".class": "NoneTyp"}]}}}, "has_location": {".class": "SymbolTableNode", "kind": "Mdef", "node": {".class": "Var", "flags": ["is_initialized_in_class"], "fullname": "_importlib_modulespec.ModuleSpec.has_location", "name": "has_location", "type": "builtins.bool"}}, "loader": {".class": "SymbolTableNode", "kind": "Mdef", "node": {".class": "Var", "flags": ["is_initialized_in_class"], "fullname": "_importlib_modulespec.ModuleSpec.loader", "name": "loader", "type": {".class": "UnionType", "items": ["_importlib_modulespec._Loader", {".class": "NoneTyp"}]}}}, "loader_state": {".class": "SymbolTableNode", "kind": "Mdef", "node": {".class": "Var", "flags": ["is_initialized_in_class"], "fullname": "_importlib_modulespec.ModuleSpec.loader_state", "name": "loader_state", "type": {".class": "AnyType", "missing_import_name": null, "source_any": null, "type_of_any": 2}}}, "name": {".class": "SymbolTableNode", "kind": "Mdef", "node": {".class": "Var", "flags": ["is_initialized_in_class"], "fullname": "_importlib_modulespec.ModuleSpec.name", "name": "name", "type": "builtins.str"}}, "origin": {".class": "SymbolTableNode", "kind": "Mdef", "node": {".class": "Var", "flags": ["is_initialized_in_class"], "fullname": "_importlib_modulespec.ModuleSpec.origin", "name": "origin", "type": {".class": "UnionType", "items": ["builtins.str", {".class": "NoneTyp"}]}}}, "parent": {".class": "SymbolTableNode", "kind": "Mdef", "node": {".class": "Var", "flags": ["is_initialized_in_class"], "fullname": "_importlib_modulespec.ModuleSpec.parent", "name": "parent", "type": {".class": "UnionType", "items": ["builtins.str", {".class": "NoneTyp"}]}}}, "submodule_search_locations": {".class": "SymbolTableNode", "kind": "Mdef", "node": {".class": "Var", "flags": ["is_initialized_in_class"], "fullname": "_importlib_modulespec.ModuleSpec.submodule_search_locations", "name": "submodule_search_locations", "type": {".class": "UnionType", "items": [{".class": "Instance", "args": ["builtins.str"], "type_ref": "builtins.list"}, {".class": "NoneTyp"}]}}}}, "tuple_type": null, "type_vars": [], "typeddict_type": null}}, "ModuleType": {".class": "SymbolTableNode", "kind": "Gdef", "node": {".class": "TypeInfo", "_promote": null, "abstract_attributes": [], "bases": ["builtins.object"], "declared_metaclass": null, "defn": {".class": "ClassDef", "fullname": "_importlib_modulespec.ModuleType", "name": "ModuleType", "type_vars": []}, "flags": [], "fullname": "_importlib_modulespec.ModuleType", "metaclass_type": null, "metadata": {}, "module_name": "_importlib_modulespec", "mro": ["_importlib_modulespec.ModuleType", "builtins.object"], "names": {".class": "SymbolTable", "__dict__": {".class": "SymbolTableNode", "kind": "Mdef", "node": {".class": "Var", "flags": ["is_initialized_in_class"], "fullname": "_importlib_modulespec.ModuleType.__dict__", "name": "__dict__", "type": {".class": "Instance", "args": ["builtins.str", {".class": "AnyType", "missing_import_name": null, "source_any": null, "type_of_any": 2}], "type_ref": "builtins.dict"}}}, "__file__": {".class": "SymbolTableNode", "kind": "Mdef", "node": {".class": "Var", "flags": ["is_initialized_in_class"], "fullname": "_importlib_modulespec.ModuleType.__file__", "name": "__file__", "type": "builtins.str"}}, "__init__": {".class": "SymbolTableNode", "kind": "Mdef", "node": {".class": "FuncDef", "arg_kinds": [0, 0, 1], "arg_names": ["self", "name", "doc"], "flags": [], "fullname": "_importlib_modulespec.ModuleType.__init__", "name": "__init__", "type": {".class": "CallableType", "arg_kinds": [0, 0, 1], "arg_names": ["self", "name", "doc"], "arg_types": ["_importlib_modulespec.ModuleType", "builtins.str", {".class": "UnionType", "items": ["builtins.str", {".class": "NoneTyp"}]}], "bound_args": [], "def_extras": {"first_arg": "self"}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "__init__ of ModuleType", "ret_type": {".class": "NoneTyp"}, "variables": []}}}, "__loader__": {".class": "SymbolTableNode", "kind": "Mdef", "node": {".class": "Var", "flags": ["is_initialized_in_class"], "fullname": "_importlib_modulespec.ModuleType.__loader__", "name": "__loader__", "type": {".class": "UnionType", "items": ["_importlib_modulespec._Loader", {".class": "NoneTyp"}]}}}, "__name__": {".class": "SymbolTableNode", "kind": "Mdef", "node": {".class": "Var", "flags": ["is_initialized_in_class"], "fullname": "_importlib_modulespec.ModuleType.__name__", "name": "__name__", "type": "builtins.str"}}, "__package__": {".class": "SymbolTableNode", "kind": "Mdef", "node": {".class": "Var", "flags": ["is_initialized_in_class"], "fullname": "_importlib_modulespec.ModuleType.__package__", "name": "__package__", "type": {".class": "UnionType", "items": ["builtins.str", {".class": "NoneTyp"}]}}}, "__spec__": {".class": "SymbolTableNode", "kind": "Mdef", "node": {".class": "Var", "flags": ["is_initialized_in_class"], "fullname": "_importlib_modulespec.ModuleType.__spec__", "name": "__spec__", "type": {".class": "UnionType", "items": ["_importlib_modulespec.ModuleSpec", {".class": "NoneTyp"}]}}}}, "tuple_type": null, "type_vars": [], "typeddict_type": null}}, "Optional": {".class": "SymbolTableNode", "cross_ref": "typing.Optional", "kind": "Gdef", "module_hidden": true, "module_public": false}, "Protocol": {".class": "SymbolTableNode", "cross_ref": "typing.Protocol", "kind": "Gdef", "module_hidden": true, "module_public": false}, "_Loader": {".class": "SymbolTableNode", "kind": "Gdef", "node": {".class": "TypeInfo", "_promote": null, "abstract_attributes": [], "bases": ["builtins.object"], "declared_metaclass": null, "defn": {".class": "ClassDef", "fullname": "_importlib_modulespec._Loader", "name": "_Loader", "type_vars": []}, "flags": ["is_protocol"], "fullname": "_importlib_modulespec._Loader", "metaclass_type": "abc.ABCMeta", "metadata": {}, "module_name": "_importlib_modulespec", "mro": ["_importlib_modulespec._Loader", "builtins.object"], "names": {".class": "SymbolTable", "load_module": {".class": "SymbolTableNode", "kind": "Mdef", "node": {".class": "FuncDef", "arg_kinds": [0, 0], "arg_names": ["self", "fullname"], "flags": [], "fullname": "_importlib_modulespec._Loader.load_module", "name": "load_module", "type": {".class": "CallableType", "arg_kinds": [0, 0], "arg_names": ["self", "fullname"], "arg_types": ["_importlib_modulespec._Loader", "builtins.str"], "bound_args": [], "def_extras": {"first_arg": "self"}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "load_module of _Loader", "ret_type": "_importlib_modulespec.ModuleType", "variables": []}}}}, "tuple_type": null, "type_vars": [], "typeddict_type": null}}, "__doc__": {".class": "SymbolTableNode", "kind": "Gdef", "node": {".class": "Var", "flags": [], "fullname": "_importlib_modulespec.__doc__", "name": "__doc__", "type": "builtins.str"}}, "__file__": {".class": "SymbolTableNode", "kind": "Gdef", "node": {".class": "Var", "flags": [], "fullname": "_importlib_modulespec.__file__", "name": "__file__", "type": "builtins.str"}}, "__name__": {".class": "SymbolTableNode", "kind": "Gdef", "node": {".class": "Var", "flags": [], "fullname": "_importlib_modulespec.__name__", "name": "__name__", "type": "builtins.str"}}, "__package__": {".class": "SymbolTableNode", "kind": "Gdef", "node": {".class": "Var", "flags": [], "fullname": "_importlib_modulespec.__package__", "name": "__package__", "type": "builtins.str"}}, "sys": {".class": "SymbolTableNode", "cross_ref": "sys", "kind": "Gdef", "module_hidden": true, "module_public": false}}, "path": "/usr/lib/python3/dist-packages/mypy/typeshed/stdlib/3/_importlib_modulespec.pyi"}
\ No newline at end of file
diff --git a/Postgres/StressTests/.mypy_cache/3.7/_importlib_modulespec.meta.json b/Postgres/StressTests/.mypy_cache/3.7/_importlib_modulespec.meta.json
deleted file mode 100644
index 0e13d0a..0000000
--- a/Postgres/StressTests/.mypy_cache/3.7/_importlib_modulespec.meta.json
+++ /dev/null
@@ -1 +0,0 @@
-{"child_modules": [], "data_mtime": 1553688971, "dep_lines": [10, 11, 12, 1], "dep_prios": [5, 10, 5, 5], "dependencies": ["abc", "sys", "typing", "builtins"], "hash": "f3f36a25ee3040c6b86752e0c4338fde", "id": "_importlib_modulespec", "ignore_all": true, "interface_hash": "daa3c7e4e4177bb45d96512124becd67", "mtime": 1549659920, "options": {"allow_redefinition": false, "allow_untyped_globals": false, "always_false": [], "always_true": [], "bazel": false, "check_untyped_defs": false, "disallow_any_decorated": false, "disallow_any_explicit": false, "disallow_any_expr": false, "disallow_any_generics": false, "disallow_any_unimported": false, "disallow_incomplete_defs": false, "disallow_subclassing_any": false, "disallow_untyped_calls": false, "disallow_untyped_decorators": false, "disallow_untyped_defs": false, "follow_imports": "normal", "follow_imports_for_stubs": false, "ignore_errors": false, "ignore_missing_imports": false, "local_partial_types": false, "mypyc": false, "new_semantic_analyzer": false, "no_implicit_optional": false, "platform": "linux", "plugins": [], "show_none_errors": true, "strict_optional": true, "strict_optional_whitelist": null, "warn_no_return": true, "warn_return_any": false, "warn_unused_ignores": false}, "path": "/usr/lib/python3/dist-packages/mypy/typeshed/stdlib/3/_importlib_modulespec.pyi", "size": 1764, "suppressed": [], "version_id": "0.670"}
\ No newline at end of file
diff --git a/Postgres/StressTests/.mypy_cache/3.7/abc.data.json b/Postgres/StressTests/.mypy_cache/3.7/abc.data.json
deleted file mode 100644
index 2ce76f6..0000000
--- a/Postgres/StressTests/.mypy_cache/3.7/abc.data.json
+++ /dev/null
@@ -1 +0,0 @@
-{".class": "MypyFile", "_fullname": "abc", "is_partial_stub_package": false, "is_stub": true, "names": {".class": "SymbolTable", "ABC": {".class": "SymbolTableNode", "kind": "Gdef", "node": {".class": "TypeInfo", "_promote": null, "abstract_attributes": [], "bases": ["builtins.object"], "declared_metaclass": "abc.ABCMeta", "defn": {".class": "ClassDef", "fullname": "abc.ABC", "name": "ABC", "type_vars": []}, "flags": [], "fullname": "abc.ABC", "metaclass_type": "abc.ABCMeta", "metadata": {}, "module_name": "abc", "mro": ["abc.ABC", "builtins.object"], "names": {".class": "SymbolTable"}, "tuple_type": null, "type_vars": [], "typeddict_type": null}}, "ABCMeta": {".class": "SymbolTableNode", "kind": "Gdef", "node": {".class": "TypeInfo", "_promote": null, "abstract_attributes": [], "bases": ["builtins.type"], "declared_metaclass": null, "defn": {".class": "ClassDef", "fullname": "abc.ABCMeta", "name": "ABCMeta", "type_vars": []}, "flags": [], "fullname": "abc.ABCMeta", "metaclass_type": null, "metadata": {}, "module_name": "abc", "mro": ["abc.ABCMeta", "builtins.type", "builtins.object"], "names": {".class": "SymbolTable", "register": {".class": "SymbolTableNode", "kind": "Mdef", "node": {".class": "FuncDef", "arg_kinds": [0, 0], "arg_names": ["cls", "subclass"], "flags": [], "fullname": "abc.ABCMeta.register", "name": "register", "type": {".class": "CallableType", "arg_kinds": [0, 0], "arg_names": ["cls", "subclass"], "arg_types": ["abc.ABCMeta", {".class": "TypeType", "item": {".class": "TypeVarType", "fullname": "abc._T", "id": -1, "name": "_T", "upper_bound": "builtins.object", "values": [], "variance": 0}}], "bound_args": [], "def_extras": {"first_arg": "cls"}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "register of ABCMeta", "ret_type": {".class": "TypeType", "item": {".class": "TypeVarType", "fullname": "abc._T", "id": -1, "name": "_T", "upper_bound": "builtins.object", "values": [], "variance": 0}}, "variables": [{".class": "TypeVarDef", "fullname": "abc._T", "id": -1, "name": "_T", "upper_bound": "builtins.object", "values": [], "variance": 0}]}}}}, "tuple_type": null, "type_vars": [], "typeddict_type": null}}, "Any": {".class": "SymbolTableNode", "cross_ref": "typing.Any", "kind": "Gdef", "module_hidden": true, "module_public": false}, "Callable": {".class": "SymbolTableNode", "cross_ref": "typing.Callable", "kind": "Gdef", "module_hidden": true, "module_public": false}, "Type": {".class": "SymbolTableNode", "cross_ref": "typing.Type", "kind": "Gdef", "module_hidden": true, "module_public": false}, "TypeVar": {".class": "SymbolTableNode", "cross_ref": "typing.TypeVar", "kind": "Gdef", "module_hidden": true, "module_public": false}, "_FuncT": {".class": "SymbolTableNode", "kind": "Gdef", "node": {".class": "TypeVarExpr", "fullname": "abc._FuncT", "name": "_FuncT", "upper_bound": {".class": "CallableType", "arg_kinds": [2, 4], "arg_names": [null, null], "arg_types": [{".class": "AnyType", "missing_import_name": null, "source_any": null, "type_of_any": 2}, {".class": "AnyType", "missing_import_name": null, "source_any": null, "type_of_any": 2}], "bound_args": [], "def_extras": {}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": true, "name": null, "ret_type": {".class": "AnyType", "missing_import_name": null, "source_any": null, "type_of_any": 2}, "variables": []}, "values": [], "variance": 0}}, "_T": {".class": "SymbolTableNode", "kind": "Gdef", "node": {".class": "TypeVarExpr", "fullname": "abc._T", "name": "_T", "upper_bound": "builtins.object", "values": [], "variance": 0}}, "__doc__": {".class": "SymbolTableNode", "kind": "Gdef", "node": {".class": "Var", "flags": [], "fullname": "abc.__doc__", "name": "__doc__", "type": "builtins.str"}}, "__file__": {".class": "SymbolTableNode", "kind": "Gdef", "node": {".class": "Var", "flags": [], "fullname": "abc.__file__", "name": "__file__", "type": "builtins.str"}}, "__name__": {".class": "SymbolTableNode", "kind": "Gdef", "node": {".class": "Var", "flags": [], "fullname": "abc.__name__", "name": "__name__", "type": "builtins.str"}}, "__package__": {".class": "SymbolTableNode", "kind": "Gdef", "node": {".class": "Var", "flags": [], "fullname": "abc.__package__", "name": "__package__", "type": "builtins.str"}}, "abstractclassmethod": {".class": "SymbolTableNode", "kind": "Gdef", "node": {".class": "FuncDef", "arg_kinds": [0], "arg_names": ["callable"], "flags": [], "fullname": "abc.abstractclassmethod", "name": "abstractclassmethod", "type": {".class": "CallableType", "arg_kinds": [0], "arg_names": ["callable"], "arg_types": [{".class": "TypeVarType", "fullname": "abc._FuncT", "id": -1, "name": "_FuncT", "upper_bound": {".class": "CallableType", "arg_kinds": [2, 4], "arg_names": [null, null], "arg_types": [{".class": "AnyType", "missing_import_name": null, "source_any": null, "type_of_any": 2}, {".class": "AnyType", "missing_import_name": null, "source_any": null, "type_of_any": 2}], "bound_args": [], "def_extras": {}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": true, "name": null, "ret_type": {".class": "AnyType", "missing_import_name": null, "source_any": null, "type_of_any": 2}, "variables": []}, "values": [], "variance": 0}], "bound_args": [], "def_extras": {"first_arg": null}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "abstractclassmethod", "ret_type": {".class": "TypeVarType", "fullname": "abc._FuncT", "id": -1, "name": "_FuncT", "upper_bound": {".class": "CallableType", "arg_kinds": [2, 4], "arg_names": [null, null], "arg_types": [{".class": "AnyType", "missing_import_name": null, "source_any": null, "type_of_any": 2}, {".class": "AnyType", "missing_import_name": null, "source_any": null, "type_of_any": 2}], "bound_args": [], "def_extras": {}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": true, "name": null, "ret_type": {".class": "AnyType", "missing_import_name": null, "source_any": null, "type_of_any": 2}, "variables": []}, "values": [], "variance": 0}, "variables": [{".class": "TypeVarDef", "fullname": "abc._FuncT", "id": -1, "name": "_FuncT", "upper_bound": {".class": "CallableType", "arg_kinds": [2, 4], "arg_names": [null, null], "arg_types": [{".class": "AnyType", "missing_import_name": null, "source_any": null, "type_of_any": 2}, {".class": "AnyType", "missing_import_name": null, "source_any": null, "type_of_any": 2}], "bound_args": [], "def_extras": {}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": true, "name": null, "ret_type": {".class": "AnyType", "missing_import_name": null, "source_any": null, "type_of_any": 2}, "variables": []}, "values": [], "variance": 0}]}}}, "abstractmethod": {".class": "SymbolTableNode", "kind": "Gdef", "node": {".class": "FuncDef", "arg_kinds": [0], "arg_names": ["callable"], "flags": [], "fullname": "abc.abstractmethod", "name": "abstractmethod", "type": {".class": "CallableType", "arg_kinds": [0], "arg_names": ["callable"], "arg_types": [{".class": "TypeVarType", "fullname": "abc._FuncT", "id": -1, "name": "_FuncT", "upper_bound": {".class": "CallableType", "arg_kinds": [2, 4], "arg_names": [null, null], "arg_types": [{".class": "AnyType", "missing_import_name": null, "source_any": null, "type_of_any": 2}, {".class": "AnyType", "missing_import_name": null, "source_any": null, "type_of_any": 2}], "bound_args": [], "def_extras": {}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": true, "name": null, "ret_type": {".class": "AnyType", "missing_import_name": null, "source_any": null, "type_of_any": 2}, "variables": []}, "values": [], "variance": 0}], "bound_args": [], "def_extras": {"first_arg": null}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "abstractmethod", "ret_type": {".class": "TypeVarType", "fullname": "abc._FuncT", "id": -1, "name": "_FuncT", "upper_bound": {".class": "CallableType", "arg_kinds": [2, 4], "arg_names": [null, null], "arg_types": [{".class": "AnyType", "missing_import_name": null, "source_any": null, "type_of_any": 2}, {".class": "AnyType", "missing_import_name": null, "source_any": null, "type_of_any": 2}], "bound_args": [], "def_extras": {}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": true, "name": null, "ret_type": {".class": "AnyType", "missing_import_name": null, "source_any": null, "type_of_any": 2}, "variables": []}, "values": [], "variance": 0}, "variables": [{".class": "TypeVarDef", "fullname": "abc._FuncT", "id": -1, "name": "_FuncT", "upper_bound": {".class": "CallableType", "arg_kinds": [2, 4], "arg_names": [null, null], "arg_types": [{".class": "AnyType", "missing_import_name": null, "source_any": null, "type_of_any": 2}, {".class": "AnyType", "missing_import_name": null, "source_any": null, "type_of_any": 2}], "bound_args": [], "def_extras": {}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": true, "name": null, "ret_type": {".class": "AnyType", "missing_import_name": null, "source_any": null, "type_of_any": 2}, "variables": []}, "values": [], "variance": 0}]}}}, "abstractproperty": {".class": "SymbolTableNode", "kind": "Gdef", "node": {".class": "TypeInfo", "_promote": null, "abstract_attributes": [], "bases": ["builtins.property"], "declared_metaclass": null, "defn": {".class": "ClassDef", "fullname": "abc.abstractproperty", "name": "abstractproperty", "type_vars": []}, "flags": [], "fullname": "abc.abstractproperty", "metaclass_type": null, "metadata": {}, "module_name": "abc", "mro": ["abc.abstractproperty", "builtins.property", "builtins.object"], "names": {".class": "SymbolTable"}, "tuple_type": null, "type_vars": [], "typeddict_type": null}}, "abstractstaticmethod": {".class": "SymbolTableNode", "kind": "Gdef", "node": {".class": "FuncDef", "arg_kinds": [0], "arg_names": ["callable"], "flags": [], "fullname": "abc.abstractstaticmethod", "name": "abstractstaticmethod", "type": {".class": "CallableType", "arg_kinds": [0], "arg_names": ["callable"], "arg_types": [{".class": "TypeVarType", "fullname": "abc._FuncT", "id": -1, "name": "_FuncT", "upper_bound": {".class": "CallableType", "arg_kinds": [2, 4], "arg_names": [null, null], "arg_types": [{".class": "AnyType", "missing_import_name": null, "source_any": null, "type_of_any": 2}, {".class": "AnyType", "missing_import_name": null, "source_any": null, "type_of_any": 2}], "bound_args": [], "def_extras": {}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": true, "name": null, "ret_type": {".class": "AnyType", "missing_import_name": null, "source_any": null, "type_of_any": 2}, "variables": []}, "values": [], "variance": 0}], "bound_args": [], "def_extras": {"first_arg": null}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "abstractstaticmethod", "ret_type": {".class": "TypeVarType", "fullname": "abc._FuncT", "id": -1, "name": "_FuncT", "upper_bound": {".class": "CallableType", "arg_kinds": [2, 4], "arg_names": [null, null], "arg_types": [{".class": "AnyType", "missing_import_name": null, "source_any": null, "type_of_any": 2}, {".class": "AnyType", "missing_import_name": null, "source_any": null, "type_of_any": 2}], "bound_args": [], "def_extras": {}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": true, "name": null, "ret_type": {".class": "AnyType", "missing_import_name": null, "source_any": null, "type_of_any": 2}, "variables": []}, "values": [], "variance": 0}, "variables": [{".class": "TypeVarDef", "fullname": "abc._FuncT", "id": -1, "name": "_FuncT", "upper_bound": {".class": "CallableType", "arg_kinds": [2, 4], "arg_names": [null, null], "arg_types": [{".class": "AnyType", "missing_import_name": null, "source_any": null, "type_of_any": 2}, {".class": "AnyType", "missing_import_name": null, "source_any": null, "type_of_any": 2}], "bound_args": [], "def_extras": {}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": true, "name": null, "ret_type": {".class": "AnyType", "missing_import_name": null, "source_any": null, "type_of_any": 2}, "variables": []}, "values": [], "variance": 0}]}}}, "get_cache_token": {".class": "SymbolTableNode", "kind": "Gdef", "node": {".class": "FuncDef", "arg_kinds": [], "arg_names": [], "flags": [], "fullname": "abc.get_cache_token", "name": "get_cache_token", "type": {".class": "CallableType", "arg_kinds": [], "arg_names": [], "arg_types": [], "bound_args": [], "def_extras": {"first_arg": null}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "get_cache_token", "ret_type": "builtins.object", "variables": []}}}}, "path": "/usr/lib/python3/dist-packages/mypy/typeshed/stdlib/3/abc.pyi"}
\ No newline at end of file
diff --git a/Postgres/StressTests/.mypy_cache/3.7/abc.meta.json b/Postgres/StressTests/.mypy_cache/3.7/abc.meta.json
deleted file mode 100644
index 2657c02..0000000
--- a/Postgres/StressTests/.mypy_cache/3.7/abc.meta.json
+++ /dev/null
@@ -1 +0,0 @@
-{"child_modules": [], "data_mtime": 1553688971, "dep_lines": [1, 1], "dep_prios": [5, 5], "dependencies": ["typing", "builtins"], "hash": "2584c2f5c4667a231d7afdd171e0b0a2", "id": "abc", "ignore_all": true, "interface_hash": "085ed7492d8ddf3c6fe154b4c64883f7", "mtime": 1549659920, "options": {"allow_redefinition": false, "allow_untyped_globals": false, "always_false": [], "always_true": [], "bazel": false, "check_untyped_defs": false, "disallow_any_decorated": false, "disallow_any_explicit": false, "disallow_any_expr": false, "disallow_any_generics": false, "disallow_any_unimported": false, "disallow_incomplete_defs": false, "disallow_subclassing_any": false, "disallow_untyped_calls": false, "disallow_untyped_decorators": false, "disallow_untyped_defs": false, "follow_imports": "normal", "follow_imports_for_stubs": false, "ignore_errors": false, "ignore_missing_imports": false, "local_partial_types": false, "mypyc": false, "new_semantic_analyzer": false, "no_implicit_optional": false, "platform": "linux", "plugins": [], "show_none_errors": true, "strict_optional": true, "strict_optional_whitelist": null, "warn_no_return": true, "warn_return_any": false, "warn_unused_ignores": false}, "path": "/usr/lib/python3/dist-packages/mypy/typeshed/stdlib/3/abc.pyi", "size": 613, "suppressed": [], "version_id": "0.670"}
\ No newline at end of file
diff --git a/Postgres/StressTests/.mypy_cache/3.7/ast.data.json b/Postgres/StressTests/.mypy_cache/3.7/ast.data.json
deleted file mode 100644
index 5d1e0ba..0000000
--- a/Postgres/StressTests/.mypy_cache/3.7/ast.data.json
+++ /dev/null
@@ -1 +0,0 @@
-{".class": "MypyFile", "_fullname": "ast", "is_partial_stub_package": false, "is_stub": true, "names": {".class": "SymbolTable", "AST": {".class": "SymbolTableNode", "cross_ref": "_ast.AST", "kind": "Gdef"}, "Add": {".class": "SymbolTableNode", "cross_ref": "_ast.Add", "kind": "Gdef"}, "And": {".class": "SymbolTableNode", "cross_ref": "_ast.And", "kind": "Gdef"}, "AnnAssign": {".class": "SymbolTableNode", "cross_ref": "_ast.AnnAssign", "kind": "Gdef"}, "Any": {".class": "SymbolTableNode", "cross_ref": "typing.Any", "kind": "Gdef", "module_hidden": true, "module_public": false}, "Assert": {".class": "SymbolTableNode", "cross_ref": "_ast.Assert", "kind": "Gdef"}, "Assign": {".class": "SymbolTableNode", "cross_ref": "_ast.Assign", "kind": "Gdef"}, "AsyncFor": {".class": "SymbolTableNode", "cross_ref": "_ast.AsyncFor", "kind": "Gdef"}, "AsyncFunctionDef": {".class": "SymbolTableNode", "cross_ref": "_ast.AsyncFunctionDef", "kind": "Gdef"}, "AsyncWith": {".class": "SymbolTableNode", "cross_ref": "_ast.AsyncWith", "kind": "Gdef"}, "Attribute": {".class": "SymbolTableNode", "cross_ref": "_ast.Attribute", "kind": "Gdef"}, "AugAssign": {".class": "SymbolTableNode", "cross_ref": "_ast.AugAssign", "kind": "Gdef"}, "AugLoad": {".class": "SymbolTableNode", "cross_ref": "_ast.AugLoad", "kind": "Gdef"}, "AugStore": {".class": "SymbolTableNode", "cross_ref": "_ast.AugStore", "kind": "Gdef"}, "Await": {".class": "SymbolTableNode", "cross_ref": "_ast.Await", "kind": "Gdef"}, "BinOp": {".class": "SymbolTableNode", "cross_ref": "_ast.BinOp", "kind": "Gdef"}, "BitAnd": {".class": "SymbolTableNode", "cross_ref": "_ast.BitAnd", "kind": "Gdef"}, "BitOr": {".class": "SymbolTableNode", "cross_ref": "_ast.BitOr", "kind": "Gdef"}, "BitXor": {".class": "SymbolTableNode", "cross_ref": "_ast.BitXor", "kind": "Gdef"}, "BoolOp": {".class": "SymbolTableNode", "cross_ref": "_ast.BoolOp", "kind": "Gdef"}, "Break": {".class": "SymbolTableNode", "cross_ref": "_ast.Break", "kind": "Gdef"}, "Bytes": {".class": "SymbolTableNode", "cross_ref": "_ast.Bytes", "kind": "Gdef"}, "Call": {".class": "SymbolTableNode", "cross_ref": "_ast.Call", "kind": "Gdef"}, "ClassDef": {".class": "SymbolTableNode", "cross_ref": "_ast.ClassDef", "kind": "Gdef"}, "Compare": {".class": "SymbolTableNode", "cross_ref": "_ast.Compare", "kind": "Gdef"}, "Continue": {".class": "SymbolTableNode", "cross_ref": "_ast.Continue", "kind": "Gdef"}, "Del": {".class": "SymbolTableNode", "cross_ref": "_ast.Del", "kind": "Gdef"}, "Delete": {".class": "SymbolTableNode", "cross_ref": "_ast.Delete", "kind": "Gdef"}, "Dict": {".class": "SymbolTableNode", "cross_ref": "_ast.Dict", "kind": "Gdef"}, "DictComp": {".class": "SymbolTableNode", "cross_ref": "_ast.DictComp", "kind": "Gdef"}, "Div": {".class": "SymbolTableNode", "cross_ref": "_ast.Div", "kind": "Gdef"}, "Ellipsis": {".class": "SymbolTableNode", "cross_ref": "_ast.Ellipsis", "kind": "Gdef"}, "Eq": {".class": "SymbolTableNode", "cross_ref": "_ast.Eq", "kind": "Gdef"}, "ExceptHandler": {".class": "SymbolTableNode", "cross_ref": "_ast.ExceptHandler", "kind": "Gdef"}, "Expr": {".class": "SymbolTableNode", "cross_ref": "_ast.Expr", "kind": "Gdef"}, "Expression": {".class": "SymbolTableNode", "cross_ref": "_ast.Expression", "kind": "Gdef"}, "ExtSlice": {".class": "SymbolTableNode", "cross_ref": "_ast.ExtSlice", "kind": "Gdef"}, "FloorDiv": {".class": "SymbolTableNode", "cross_ref": "_ast.FloorDiv", "kind": "Gdef"}, "For": {".class": "SymbolTableNode", "cross_ref": "_ast.For", "kind": "Gdef"}, "FormattedValue": {".class": "SymbolTableNode", "cross_ref": "_ast.FormattedValue", "kind": "Gdef"}, "FunctionDef": {".class": "SymbolTableNode", "cross_ref": "_ast.FunctionDef", "kind": "Gdef"}, "GeneratorExp": {".class": "SymbolTableNode", "cross_ref": "_ast.GeneratorExp", "kind": "Gdef"}, "Global": {".class": "SymbolTableNode", "cross_ref": "_ast.Global", "kind": "Gdef"}, "Gt": {".class": "SymbolTableNode", "cross_ref": "_ast.Gt", "kind": "Gdef"}, "GtE": {".class": "SymbolTableNode", "cross_ref": "_ast.GtE", "kind": "Gdef"}, "If": {".class": "SymbolTableNode", "cross_ref": "_ast.If", "kind": "Gdef"}, "IfExp": {".class": "SymbolTableNode", "cross_ref": "_ast.IfExp", "kind": "Gdef"}, "Import": {".class": "SymbolTableNode", "cross_ref": "_ast.Import", "kind": "Gdef"}, "ImportFrom": {".class": "SymbolTableNode", "cross_ref": "_ast.ImportFrom", "kind": "Gdef"}, "In": {".class": "SymbolTableNode", "cross_ref": "_ast.In", "kind": "Gdef"}, "Index": {".class": "SymbolTableNode", "cross_ref": "_ast.Index", "kind": "Gdef"}, "Interactive": {".class": "SymbolTableNode", "cross_ref": "_ast.Interactive", "kind": "Gdef"}, "Invert": {".class": "SymbolTableNode", "cross_ref": "_ast.Invert", "kind": "Gdef"}, "Is": {".class": "SymbolTableNode", "cross_ref": "_ast.Is", "kind": "Gdef"}, "IsNot": {".class": "SymbolTableNode", "cross_ref": "_ast.IsNot", "kind": "Gdef"}, "Iterator": {".class": "SymbolTableNode", "cross_ref": "typing.Iterator", "kind": "Gdef", "module_hidden": true, "module_public": false}, "JoinedStr": {".class": "SymbolTableNode", "cross_ref": "_ast.JoinedStr", "kind": "Gdef"}, "LShift": {".class": "SymbolTableNode", "cross_ref": "_ast.LShift", "kind": "Gdef"}, "Lambda": {".class": "SymbolTableNode", "cross_ref": "_ast.Lambda", "kind": "Gdef"}, "List": {".class": "SymbolTableNode", "cross_ref": "_ast.List", "kind": "Gdef"}, "ListComp": {".class": "SymbolTableNode", "cross_ref": "_ast.ListComp", "kind": "Gdef"}, "Load": {".class": "SymbolTableNode", "cross_ref": "_ast.Load", "kind": "Gdef"}, "Lt": {".class": "SymbolTableNode", "cross_ref": "_ast.Lt", "kind": "Gdef"}, "LtE": {".class": "SymbolTableNode", "cross_ref": "_ast.LtE", "kind": "Gdef"}, "MatMult": {".class": "SymbolTableNode", "cross_ref": "_ast.MatMult", "kind": "Gdef"}, "Mod": {".class": "SymbolTableNode", "cross_ref": "_ast.Mod", "kind": "Gdef"}, "Module": {".class": "SymbolTableNode", "cross_ref": "_ast.Module", "kind": "Gdef"}, "Mult": {".class": "SymbolTableNode", "cross_ref": "_ast.Mult", "kind": "Gdef"}, "Name": {".class": "SymbolTableNode", "cross_ref": "_ast.Name", "kind": "Gdef"}, "NameConstant": {".class": "SymbolTableNode", "cross_ref": "_ast.NameConstant", "kind": "Gdef"}, "NodeTransformer": {".class": "SymbolTableNode", "kind": "Gdef", "node": {".class": "TypeInfo", "_promote": null, "abstract_attributes": [], "bases": ["ast.NodeVisitor"], "declared_metaclass": null, "defn": {".class": "ClassDef", "fullname": "ast.NodeTransformer", "name": "NodeTransformer", "type_vars": []}, "flags": [], "fullname": "ast.NodeTransformer", "metaclass_type": null, "metadata": {}, "module_name": "ast", "mro": ["ast.NodeTransformer", "ast.NodeVisitor", "builtins.object"], "names": {".class": "SymbolTable", "generic_visit": {".class": "SymbolTableNode", "kind": "Mdef", "node": {".class": "FuncDef", "arg_kinds": [0, 0], "arg_names": ["self", "node"], "flags": [], "fullname": "ast.NodeTransformer.generic_visit", "name": "generic_visit", "type": {".class": "CallableType", "arg_kinds": [0, 0], "arg_names": ["self", "node"], "arg_types": ["ast.NodeTransformer", "_ast.AST"], "bound_args": [], "def_extras": {"first_arg": "self"}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "generic_visit of NodeTransformer", "ret_type": {".class": "UnionType", "items": ["_ast.AST", {".class": "NoneTyp"}]}, "variables": []}}}}, "tuple_type": null, "type_vars": [], "typeddict_type": null}}, "NodeVisitor": {".class": "SymbolTableNode", "kind": "Gdef", "node": {".class": "TypeInfo", "_promote": null, "abstract_attributes": [], "bases": ["builtins.object"], "declared_metaclass": null, "defn": {".class": "ClassDef", "fullname": "ast.NodeVisitor", "name": "NodeVisitor", "type_vars": []}, "flags": [], "fullname": "ast.NodeVisitor", "metaclass_type": null, "metadata": {}, "module_name": "ast", "mro": ["ast.NodeVisitor", "builtins.object"], "names": {".class": "SymbolTable", "generic_visit": {".class": "SymbolTableNode", "kind": "Mdef", "node": {".class": "FuncDef", "arg_kinds": [0, 0], "arg_names": ["self", "node"], "flags": [], "fullname": "ast.NodeVisitor.generic_visit", "name": "generic_visit", "type": {".class": "CallableType", "arg_kinds": [0, 0], "arg_names": ["self", "node"], "arg_types": ["ast.NodeVisitor", "_ast.AST"], "bound_args": [], "def_extras": {"first_arg": "self"}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "generic_visit of NodeVisitor", "ret_type": {".class": "AnyType", "missing_import_name": null, "source_any": null, "type_of_any": 2}, "variables": []}}}, "visit": {".class": "SymbolTableNode", "kind": "Mdef", "node": {".class": "FuncDef", "arg_kinds": [0, 0], "arg_names": ["self", "node"], "flags": [], "fullname": "ast.NodeVisitor.visit", "name": "visit", "type": {".class": "CallableType", "arg_kinds": [0, 0], "arg_names": ["self", "node"], "arg_types": ["ast.NodeVisitor", "_ast.AST"], "bound_args": [], "def_extras": {"first_arg": "self"}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "visit of NodeVisitor", "ret_type": {".class": "AnyType", "missing_import_name": null, "source_any": null, "type_of_any": 2}, "variables": []}}}}, "tuple_type": null, "type_vars": [], "typeddict_type": null}}, "Nonlocal": {".class": "SymbolTableNode", "cross_ref": "_ast.Nonlocal", "kind": "Gdef"}, "Not": {".class": "SymbolTableNode", "cross_ref": "_ast.Not", "kind": "Gdef"}, "NotEq": {".class": "SymbolTableNode", "cross_ref": "_ast.NotEq", "kind": "Gdef"}, "NotIn": {".class": "SymbolTableNode", "cross_ref": "_ast.NotIn", "kind": "Gdef"}, "Num": {".class": "SymbolTableNode", "cross_ref": "_ast.Num", "kind": "Gdef"}, "Optional": {".class": "SymbolTableNode", "cross_ref": "typing.Optional", "kind": "Gdef", "module_hidden": true, "module_public": false}, "Or": {".class": "SymbolTableNode", "cross_ref": "_ast.Or", "kind": "Gdef"}, "Param": {".class": "SymbolTableNode", "cross_ref": "_ast.Param", "kind": "Gdef"}, "Pass": {".class": "SymbolTableNode", "cross_ref": "_ast.Pass", "kind": "Gdef"}, "Pow": {".class": "SymbolTableNode", "cross_ref": "_ast.Pow", "kind": "Gdef"}, "PyCF_ONLY_AST": {".class": "SymbolTableNode", "kind": "Gdef", "node": {".class": "Var", "flags": [], "fullname": "ast.PyCF_ONLY_AST", "name": "PyCF_ONLY_AST", "type": "builtins.int"}}, "RShift": {".class": "SymbolTableNode", "cross_ref": "_ast.RShift", "kind": "Gdef"}, "Raise": {".class": "SymbolTableNode", "cross_ref": "_ast.Raise", "kind": "Gdef"}, "Return": {".class": "SymbolTableNode", "cross_ref": "_ast.Return", "kind": "Gdef"}, "Set": {".class": "SymbolTableNode", "cross_ref": "_ast.Set", "kind": "Gdef"}, "SetComp": {".class": "SymbolTableNode", "cross_ref": "_ast.SetComp", "kind": "Gdef"}, "Slice": {".class": "SymbolTableNode", "cross_ref": "_ast.Slice", "kind": "Gdef"}, "Starred": {".class": "SymbolTableNode", "cross_ref": "_ast.Starred", "kind": "Gdef"}, "Store": {".class": "SymbolTableNode", "cross_ref": "_ast.Store", "kind": "Gdef"}, "Str": {".class": "SymbolTableNode", "cross_ref": "_ast.Str", "kind": "Gdef"}, "Sub": {".class": "SymbolTableNode", "cross_ref": "_ast.Sub", "kind": "Gdef"}, "Subscript": {".class": "SymbolTableNode", "cross_ref": "_ast.Subscript", "kind": "Gdef"}, "Suite": {".class": "SymbolTableNode", "cross_ref": "_ast.Suite", "kind": "Gdef"}, "Try": {".class": "SymbolTableNode", "cross_ref": "_ast.Try", "kind": "Gdef"}, "Tuple": {".class": "SymbolTableNode", "cross_ref": "_ast.Tuple", "kind": "Gdef"}, "TypeVar": {".class": "SymbolTableNode", "cross_ref": "typing.TypeVar", "kind": "Gdef", "module_hidden": true, "module_public": false}, "UAdd": {".class": "SymbolTableNode", "cross_ref": "_ast.UAdd", "kind": "Gdef"}, "USub": {".class": "SymbolTableNode", "cross_ref": "_ast.USub", "kind": "Gdef"}, "UnaryOp": {".class": "SymbolTableNode", "cross_ref": "_ast.UnaryOp", "kind": "Gdef"}, "Union": {".class": "SymbolTableNode", "cross_ref": "typing.Union", "kind": "Gdef", "module_hidden": true, "module_public": false}, "While": {".class": "SymbolTableNode", "cross_ref": "_ast.While", "kind": "Gdef"}, "With": {".class": "SymbolTableNode", "cross_ref": "_ast.With", "kind": "Gdef"}, "Yield": {".class": "SymbolTableNode", "cross_ref": "_ast.Yield", "kind": "Gdef"}, "YieldFrom": {".class": "SymbolTableNode", "cross_ref": "_ast.YieldFrom", "kind": "Gdef"}, "_T": {".class": "SymbolTableNode", "kind": "Gdef", "node": {".class": "TypeVarExpr", "fullname": "ast._T", "name": "_T", "upper_bound": "_ast.AST", "values": [], "variance": 0}}, "__doc__": {".class": "SymbolTableNode", "kind": "Gdef", "node": {".class": "Var", "flags": [], "fullname": "ast.__doc__", "name": "__doc__", "type": "builtins.str"}}, "__file__": {".class": "SymbolTableNode", "kind": "Gdef", "node": {".class": "Var", "flags": [], "fullname": "ast.__file__", "name": "__file__", "type": "builtins.str"}}, "__name__": {".class": "SymbolTableNode", "kind": "Gdef", "node": {".class": "Var", "flags": [], "fullname": "ast.__name__", "name": "__name__", "type": "builtins.str"}}, "__package__": {".class": "SymbolTableNode", "kind": "Gdef", "node": {".class": "Var", "flags": [], "fullname": "ast.__package__", "name": "__package__", "type": "builtins.str"}}, "_typing": {".class": "SymbolTableNode", "cross_ref": "typing", "kind": "Gdef"}, "alias": {".class": "SymbolTableNode", "cross_ref": "_ast.alias", "kind": "Gdef"}, "arg": {".class": "SymbolTableNode", "cross_ref": "_ast.arg", "kind": "Gdef"}, "arguments": {".class": "SymbolTableNode", "cross_ref": "_ast.arguments", "kind": "Gdef"}, "boolop": {".class": "SymbolTableNode", "cross_ref": "_ast.boolop", "kind": "Gdef"}, "cmpop": {".class": "SymbolTableNode", "cross_ref": "_ast.cmpop", "kind": "Gdef"}, "comprehension": {".class": "SymbolTableNode", "cross_ref": "_ast.comprehension", "kind": "Gdef"}, "copy_location": {".class": "SymbolTableNode", "kind": "Gdef", "node": {".class": "FuncDef", "arg_kinds": [0, 0], "arg_names": ["new_node", "old_node"], "flags": [], "fullname": "ast.copy_location", "name": "copy_location", "type": {".class": "CallableType", "arg_kinds": [0, 0], "arg_names": ["new_node", "old_node"], "arg_types": [{".class": "TypeVarType", "fullname": "ast._T", "id": -1, "name": "_T", "upper_bound": "_ast.AST", "values": [], "variance": 0}, "_ast.AST"], "bound_args": [], "def_extras": {"first_arg": null}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "copy_location", "ret_type": {".class": "TypeVarType", "fullname": "ast._T", "id": -1, "name": "_T", "upper_bound": "_ast.AST", "values": [], "variance": 0}, "variables": [{".class": "TypeVarDef", "fullname": "ast._T", "id": -1, "name": "_T", "upper_bound": "_ast.AST", "values": [], "variance": 0}]}}}, "dump": {".class": "SymbolTableNode", "kind": "Gdef", "node": {".class": "FuncDef", "arg_kinds": [0, 1, 1], "arg_names": ["node", "annotate_fields", "include_attributes"], "flags": [], "fullname": "ast.dump", "name": "dump", "type": {".class": "CallableType", "arg_kinds": [0, 1, 1], "arg_names": ["node", "annotate_fields", "include_attributes"], "arg_types": ["_ast.AST", "builtins.bool", "builtins.bool"], "bound_args": [], "def_extras": {"first_arg": null}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "dump", "ret_type": "builtins.str", "variables": []}}}, "expr": {".class": "SymbolTableNode", "cross_ref": "_ast.expr", "kind": "Gdef"}, "expr_context": {".class": "SymbolTableNode", "cross_ref": "_ast.expr_context", "kind": "Gdef"}, "fix_missing_locations": {".class": "SymbolTableNode", "kind": "Gdef", "node": {".class": "FuncDef", "arg_kinds": [0], "arg_names": ["node"], "flags": [], "fullname": "ast.fix_missing_locations", "name": "fix_missing_locations", "type": {".class": "CallableType", "arg_kinds": [0], "arg_names": ["node"], "arg_types": [{".class": "TypeVarType", "fullname": "ast._T", "id": -1, "name": "_T", "upper_bound": "_ast.AST", "values": [], "variance": 0}], "bound_args": [], "def_extras": {"first_arg": null}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "fix_missing_locations", "ret_type": {".class": "TypeVarType", "fullname": "ast._T", "id": -1, "name": "_T", "upper_bound": "_ast.AST", "values": [], "variance": 0}, "variables": [{".class": "TypeVarDef", "fullname": "ast._T", "id": -1, "name": "_T", "upper_bound": "_ast.AST", "values": [], "variance": 0}]}}}, "get_docstring": {".class": "SymbolTableNode", "kind": "Gdef", "node": {".class": "FuncDef", "arg_kinds": [0, 1], "arg_names": ["node", "clean"], "flags": [], "fullname": "ast.get_docstring", "name": "get_docstring", "type": {".class": "CallableType", "arg_kinds": [0, 1], "arg_names": ["node", "clean"], "arg_types": ["_ast.AST", "builtins.bool"], "bound_args": [], "def_extras": {"first_arg": null}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "get_docstring", "ret_type": "builtins.str", "variables": []}}}, "increment_lineno": {".class": "SymbolTableNode", "kind": "Gdef", "node": {".class": "FuncDef", "arg_kinds": [0, 1], "arg_names": ["node", "n"], "flags": [], "fullname": "ast.increment_lineno", "name": "increment_lineno", "type": {".class": "CallableType", "arg_kinds": [0, 1], "arg_names": ["node", "n"], "arg_types": [{".class": "TypeVarType", "fullname": "ast._T", "id": -1, "name": "_T", "upper_bound": "_ast.AST", "values": [], "variance": 0}, "builtins.int"], "bound_args": [], "def_extras": {"first_arg": null}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "increment_lineno", "ret_type": {".class": "TypeVarType", "fullname": "ast._T", "id": -1, "name": "_T", "upper_bound": "_ast.AST", "values": [], "variance": 0}, "variables": [{".class": "TypeVarDef", "fullname": "ast._T", "id": -1, "name": "_T", "upper_bound": "_ast.AST", "values": [], "variance": 0}]}}}, "iter_child_nodes": {".class": "SymbolTableNode", "kind": "Gdef", "node": {".class": "FuncDef", "arg_kinds": [0], "arg_names": ["node"], "flags": [], "fullname": "ast.iter_child_nodes", "name": "iter_child_nodes", "type": {".class": "CallableType", "arg_kinds": [0], "arg_names": ["node"], "arg_types": ["_ast.AST"], "bound_args": [], "def_extras": {"first_arg": null}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "iter_child_nodes", "ret_type": {".class": "Instance", "args": ["_ast.AST"], "type_ref": "typing.Iterator"}, "variables": []}}}, "iter_fields": {".class": "SymbolTableNode", "kind": "Gdef", "node": {".class": "FuncDef", "arg_kinds": [0], "arg_names": ["node"], "flags": [], "fullname": "ast.iter_fields", "name": "iter_fields", "type": {".class": "CallableType", "arg_kinds": [0], "arg_names": ["node"], "arg_types": ["_ast.AST"], "bound_args": [], "def_extras": {"first_arg": null}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "iter_fields", "ret_type": {".class": "Instance", "args": [{".class": "TupleType", "fallback": {".class": "Instance", "args": [{".class": "AnyType", "missing_import_name": null, "source_any": null, "type_of_any": 6}], "type_ref": "builtins.tuple"}, "implicit": false, "items": ["builtins.str", {".class": "AnyType", "missing_import_name": null, "source_any": null, "type_of_any": 2}]}], "type_ref": "typing.Iterator"}, "variables": []}}}, "keyword": {".class": "SymbolTableNode", "cross_ref": "_ast.keyword", "kind": "Gdef"}, "literal_eval": {".class": "SymbolTableNode", "kind": "Gdef", "node": {".class": "FuncDef", "arg_kinds": [0], "arg_names": ["node_or_string"], "flags": [], "fullname": "ast.literal_eval", "name": "literal_eval", "type": {".class": "CallableType", "arg_kinds": [0], "arg_names": ["node_or_string"], "arg_types": [{".class": "UnionType", "items": ["builtins.str", "_ast.AST"]}], "bound_args": [], "def_extras": {"first_arg": null}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "literal_eval", "ret_type": {".class": "AnyType", "missing_import_name": null, "source_any": null, "type_of_any": 2}, "variables": []}}}, "mod": {".class": "SymbolTableNode", "cross_ref": "_ast.mod", "kind": "Gdef"}, "operator": {".class": "SymbolTableNode", "cross_ref": "_ast.operator", "kind": "Gdef"}, "parse": {".class": "SymbolTableNode", "kind": "Gdef", "node": {".class": "FuncDef", "arg_kinds": [0, 1, 1], "arg_names": ["source", "filename", "mode"], "flags": [], "fullname": "ast.parse", "name": "parse", "type": {".class": "CallableType", "arg_kinds": [0, 1, 1], "arg_names": ["source", "filename", "mode"], "arg_types": [{".class": "UnionType", "items": ["builtins.str", "builtins.bytes"]}, {".class": "UnionType", "items": ["builtins.str", "builtins.bytes"]}, "builtins.str"], "bound_args": [], "def_extras": {"first_arg": null}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "parse", "ret_type": "_ast.Module", "variables": []}}}, "slice": {".class": "SymbolTableNode", "cross_ref": "_ast.slice", "kind": "Gdef"}, "stmt": {".class": "SymbolTableNode", "cross_ref": "_ast.stmt", "kind": "Gdef"}, "unaryop": {".class": "SymbolTableNode", "cross_ref": "_ast.unaryop", "kind": "Gdef"}, "walk": {".class": "SymbolTableNode", "kind": "Gdef", "node": {".class": "FuncDef", "arg_kinds": [0], "arg_names": ["node"], "flags": [], "fullname": "ast.walk", "name": "walk", "type": {".class": "CallableType", "arg_kinds": [0], "arg_names": ["node"], "arg_types": ["_ast.AST"], "bound_args": [], "def_extras": {"first_arg": null}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "walk", "ret_type": {".class": "Instance", "args": ["_ast.AST"], "type_ref": "typing.Iterator"}, "variables": []}}}, "withitem": {".class": "SymbolTableNode", "cross_ref": "_ast.withitem", "kind": "Gdef"}}, "path": "/usr/lib/python3/dist-packages/mypy/typeshed/stdlib/3/ast.pyi"}
\ No newline at end of file
diff --git a/Postgres/StressTests/.mypy_cache/3.7/ast.meta.json b/Postgres/StressTests/.mypy_cache/3.7/ast.meta.json
deleted file mode 100644
index 3973fff..0000000
--- a/Postgres/StressTests/.mypy_cache/3.7/ast.meta.json
+++ /dev/null
@@ -1 +0,0 @@
-{"child_modules": [], "data_mtime": 1553688971, "dep_lines": [6, 9, 1], "dep_prios": [5, 5, 5], "dependencies": ["typing", "_ast", "builtins"], "hash": "5cf413210661f731a5394a6be766862c", "id": "ast", "ignore_all": true, "interface_hash": "0371341a3f6150dbd66bcdfb0b1d6b9e", "mtime": 1549659920, "options": {"allow_redefinition": false, "allow_untyped_globals": false, "always_false": [], "always_true": [], "bazel": false, "check_untyped_defs": false, "disallow_any_decorated": false, "disallow_any_explicit": false, "disallow_any_expr": false, "disallow_any_generics": false, "disallow_any_unimported": false, "disallow_incomplete_defs": false, "disallow_subclassing_any": false, "disallow_untyped_calls": false, "disallow_untyped_decorators": false, "disallow_untyped_defs": false, "follow_imports": "normal", "follow_imports_for_stubs": false, "ignore_errors": false, "ignore_missing_imports": false, "local_partial_types": false, "mypyc": false, "new_semantic_analyzer": false, "no_implicit_optional": false, "platform": "linux", "plugins": [], "show_none_errors": true, "strict_optional": true, "strict_optional_whitelist": null, "warn_no_return": true, "warn_return_any": false, "warn_unused_ignores": false}, "path": "/usr/lib/python3/dist-packages/mypy/typeshed/stdlib/3/ast.pyi", "size": 1211, "suppressed": [], "version_id": "0.670"}
\ No newline at end of file
diff --git a/Postgres/StressTests/.mypy_cache/3.7/builtins.data.json b/Postgres/StressTests/.mypy_cache/3.7/builtins.data.json
deleted file mode 100644
index 0a47c49..0000000
--- a/Postgres/StressTests/.mypy_cache/3.7/builtins.data.json
+++ /dev/null
@@ -1 +0,0 @@
-{".class": "MypyFile", "_fullname": "builtins", "is_partial_stub_package": false, "is_stub": true, "names": {".class": "SymbolTable", "ArithmeticError": {".class": "SymbolTableNode", "kind": "Gdef", "node": {".class": "TypeInfo", "_promote": null, "abstract_attributes": [], "bases": ["builtins.Exception"], "declared_metaclass": null, "defn": {".class": "ClassDef", "fullname": "builtins.ArithmeticError", "name": "ArithmeticError", "type_vars": []}, "flags": [], "fullname": "builtins.ArithmeticError", "metaclass_type": null, "metadata": {}, "module_name": "builtins", "mro": ["builtins.ArithmeticError", "builtins.Exception", "builtins.BaseException", "builtins.object"], "names": {".class": "SymbolTable"}, "tuple_type": null, "type_vars": [], "typeddict_type": null}}, "AssertionError": {".class": "SymbolTableNode", "kind": "Gdef", "node": {".class": "TypeInfo", "_promote": null, "abstract_attributes": [], "bases": ["builtins.Exception"], "declared_metaclass": null, "defn": {".class": "ClassDef", "fullname": "builtins.AssertionError", "name": "AssertionError", "type_vars": []}, "flags": [], "fullname": "builtins.AssertionError", "metaclass_type": null, "metadata": {}, "module_name": "builtins", "mro": ["builtins.AssertionError", "builtins.Exception", "builtins.BaseException", "builtins.object"], "names": {".class": "SymbolTable"}, "tuple_type": null, "type_vars": [], "typeddict_type": null}}, "AttributeError": {".class": "SymbolTableNode", "kind": "Gdef", "node": {".class": "TypeInfo", "_promote": null, "abstract_attributes": [], "bases": ["builtins.Exception"], "declared_metaclass": null, "defn": {".class": "ClassDef", "fullname": "builtins.AttributeError", "name": "AttributeError", "type_vars": []}, "flags": [], "fullname": "builtins.AttributeError", "metaclass_type": null, "metadata": {}, "module_name": "builtins", "mro": ["builtins.AttributeError", "builtins.Exception", "builtins.BaseException", "builtins.object"], "names": {".class": "SymbolTable"}, "tuple_type": null, "type_vars": [], "typeddict_type": null}}, "BaseException": {".class": "SymbolTableNode", "kind": "Gdef", "node": {".class": "TypeInfo", "_promote": null, "abstract_attributes": [], "bases": ["builtins.object"], "declared_metaclass": null, "defn": {".class": "ClassDef", "fullname": "builtins.BaseException", "name": "BaseException", "type_vars": []}, "flags": [], "fullname": "builtins.BaseException", "metaclass_type": null, "metadata": {}, "module_name": "builtins", "mro": ["builtins.BaseException", "builtins.object"], "names": {".class": "SymbolTable", "__cause__": {".class": "SymbolTableNode", "kind": "Mdef", "node": {".class": "Var", "flags": ["is_initialized_in_class"], "fullname": "builtins.BaseException.__cause__", "name": "__cause__", "type": {".class": "UnionType", "items": ["builtins.BaseException", {".class": "NoneTyp"}]}}}, "__context__": {".class": "SymbolTableNode", "kind": "Mdef", "node": {".class": "Var", "flags": ["is_initialized_in_class"], "fullname": "builtins.BaseException.__context__", "name": "__context__", "type": {".class": "UnionType", "items": ["builtins.BaseException", {".class": "NoneTyp"}]}}}, "__init__": {".class": "SymbolTableNode", "kind": "Mdef", "node": {".class": "FuncDef", "arg_kinds": [0, 2], "arg_names": ["self", "args"], "flags": [], "fullname": "builtins.BaseException.__init__", "name": "__init__", "type": {".class": "CallableType", "arg_kinds": [0, 2], "arg_names": ["self", "args"], "arg_types": ["builtins.BaseException", "builtins.object"], "bound_args": [], "def_extras": {"first_arg": "self"}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "__init__ of BaseException", "ret_type": {".class": "NoneTyp"}, "variables": []}}}, "__traceback__": {".class": "SymbolTableNode", "kind": "Mdef", "node": {".class": "Var", "flags": ["is_initialized_in_class"], "fullname": "builtins.BaseException.__traceback__", "name": "__traceback__", "type": {".class": "UnionType", "items": ["types.TracebackType", {".class": "NoneTyp"}]}}}, "args": {".class": "SymbolTableNode", "kind": "Mdef", "node": {".class": "Var", "flags": ["is_initialized_in_class"], "fullname": "builtins.BaseException.args", "name": "args", "type": {".class": "Instance", "args": [{".class": "AnyType", "missing_import_name": null, "source_any": null, "type_of_any": 2}], "type_ref": "builtins.tuple"}}}, "with_traceback": {".class": "SymbolTableNode", "kind": "Mdef", "node": {".class": "FuncDef", "arg_kinds": [0, 0], "arg_names": ["self", "tb"], "flags": ["is_conditional"], "fullname": "builtins.BaseException.with_traceback", "name": "with_traceback", "type": {".class": "CallableType", "arg_kinds": [0, 0], "arg_names": ["self", "tb"], "arg_types": ["builtins.BaseException", {".class": "UnionType", "items": ["types.TracebackType", {".class": "NoneTyp"}]}], "bound_args": [], "def_extras": {"first_arg": "self"}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "with_traceback of BaseException", "ret_type": "builtins.BaseException", "variables": []}}}}, "tuple_type": null, "type_vars": [], "typeddict_type": null}}, "BlockingIOError": {".class": "SymbolTableNode", "kind": "Gdef", "node": {".class": "TypeInfo", "_promote": null, "abstract_attributes": [], "bases": ["builtins.OSError"], "declared_metaclass": null, "defn": {".class": "ClassDef", "fullname": "builtins.BlockingIOError", "name": "BlockingIOError", "type_vars": []}, "flags": [], "fullname": "builtins.BlockingIOError", "metaclass_type": null, "metadata": {}, "module_name": "builtins", "mro": ["builtins.BlockingIOError", "builtins.OSError", "builtins.Exception", "builtins.BaseException", "builtins.object"], "names": {".class": "SymbolTable", "characters_written": {".class": "SymbolTableNode", "kind": "Mdef", "node": {".class": "Var", "flags": ["is_initialized_in_class"], "fullname": "builtins.BlockingIOError.characters_written", "name": "characters_written", "type": "builtins.int"}}}, "tuple_type": null, "type_vars": [], "typeddict_type": null}}, "BrokenPipeError": {".class": "SymbolTableNode", "kind": "Gdef", "node": {".class": "TypeInfo", "_promote": null, "abstract_attributes": [], "bases": ["builtins.ConnectionError"], "declared_metaclass": null, "defn": {".class": "ClassDef", "fullname": "builtins.BrokenPipeError", "name": "BrokenPipeError", "type_vars": []}, "flags": [], "fullname": "builtins.BrokenPipeError", "metaclass_type": null, "metadata": {}, "module_name": "builtins", "mro": ["builtins.BrokenPipeError", "builtins.ConnectionError", "builtins.OSError", "builtins.Exception", "builtins.BaseException", "builtins.object"], "names": {".class": "SymbolTable"}, "tuple_type": null, "type_vars": [], "typeddict_type": null}}, "BufferError": {".class": "SymbolTableNode", "kind": "Gdef", "node": {".class": "TypeInfo", "_promote": null, "abstract_attributes": [], "bases": ["builtins.Exception"], "declared_metaclass": null, "defn": {".class": "ClassDef", "fullname": "builtins.BufferError", "name": "BufferError", "type_vars": []}, "flags": [], "fullname": "builtins.BufferError", "metaclass_type": null, "metadata": {}, "module_name": "builtins", "mro": ["builtins.BufferError", "builtins.Exception", "builtins.BaseException", "builtins.object"], "names": {".class": "SymbolTable"}, "tuple_type": null, "type_vars": [], "typeddict_type": null}}, "BytesWarning": {".class": "SymbolTableNode", "kind": "Gdef", "node": {".class": "TypeInfo", "_promote": null, "abstract_attributes": [], "bases": ["builtins.Warning"], "declared_metaclass": null, "defn": {".class": "ClassDef", "fullname": "builtins.BytesWarning", "name": "BytesWarning", "type_vars": []}, "flags": [], "fullname": "builtins.BytesWarning", "metaclass_type": null, "metadata": {}, "module_name": "builtins", "mro": ["builtins.BytesWarning", "builtins.Warning", "builtins.Exception", "builtins.BaseException", "builtins.object"], "names": {".class": "SymbolTable"}, "tuple_type": null, "type_vars": [], "typeddict_type": null}}, "ChildProcessError": {".class": "SymbolTableNode", "kind": "Gdef", "node": {".class": "TypeInfo", "_promote": null, "abstract_attributes": [], "bases": ["builtins.OSError"], "declared_metaclass": null, "defn": {".class": "ClassDef", "fullname": "builtins.ChildProcessError", "name": "ChildProcessError", "type_vars": []}, "flags": [], "fullname": "builtins.ChildProcessError", "metaclass_type": null, "metadata": {}, "module_name": "builtins", "mro": ["builtins.ChildProcessError", "builtins.OSError", "builtins.Exception", "builtins.BaseException", "builtins.object"], "names": {".class": "SymbolTable"}, "tuple_type": null, "type_vars": [], "typeddict_type": null}}, "ConnectionAbortedError": {".class": "SymbolTableNode", "kind": "Gdef", "node": {".class": "TypeInfo", "_promote": null, "abstract_attributes": [], "bases": ["builtins.ConnectionError"], "declared_metaclass": null, "defn": {".class": "ClassDef", "fullname": "builtins.ConnectionAbortedError", "name": "ConnectionAbortedError", "type_vars": []}, "flags": [], "fullname": "builtins.ConnectionAbortedError", "metaclass_type": null, "metadata": {}, "module_name": "builtins", "mro": ["builtins.ConnectionAbortedError", "builtins.ConnectionError", "builtins.OSError", "builtins.Exception", "builtins.BaseException", "builtins.object"], "names": {".class": "SymbolTable"}, "tuple_type": null, "type_vars": [], "typeddict_type": null}}, "ConnectionError": {".class": "SymbolTableNode", "kind": "Gdef", "node": {".class": "TypeInfo", "_promote": null, "abstract_attributes": [], "bases": ["builtins.OSError"], "declared_metaclass": null, "defn": {".class": "ClassDef", "fullname": "builtins.ConnectionError", "name": "ConnectionError", "type_vars": []}, "flags": [], "fullname": "builtins.ConnectionError", "metaclass_type": null, "metadata": {}, "module_name": "builtins", "mro": ["builtins.ConnectionError", "builtins.OSError", "builtins.Exception", "builtins.BaseException", "builtins.object"], "names": {".class": "SymbolTable"}, "tuple_type": null, "type_vars": [], "typeddict_type": null}}, "ConnectionRefusedError": {".class": "SymbolTableNode", "kind": "Gdef", "node": {".class": "TypeInfo", "_promote": null, "abstract_attributes": [], "bases": ["builtins.ConnectionError"], "declared_metaclass": null, "defn": {".class": "ClassDef", "fullname": "builtins.ConnectionRefusedError", "name": "ConnectionRefusedError", "type_vars": []}, "flags": [], "fullname": "builtins.ConnectionRefusedError", "metaclass_type": null, "metadata": {}, "module_name": "builtins", "mro": ["builtins.ConnectionRefusedError", "builtins.ConnectionError", "builtins.OSError", "builtins.Exception", "builtins.BaseException", "builtins.object"], "names": {".class": "SymbolTable"}, "tuple_type": null, "type_vars": [], "typeddict_type": null}}, "ConnectionResetError": {".class": "SymbolTableNode", "kind": "Gdef", "node": {".class": "TypeInfo", "_promote": null, "abstract_attributes": [], "bases": ["builtins.ConnectionError"], "declared_metaclass": null, "defn": {".class": "ClassDef", "fullname": "builtins.ConnectionResetError", "name": "ConnectionResetError", "type_vars": []}, "flags": [], "fullname": "builtins.ConnectionResetError", "metaclass_type": null, "metadata": {}, "module_name": "builtins", "mro": ["builtins.ConnectionResetError", "builtins.ConnectionError", "builtins.OSError", "builtins.Exception", "builtins.BaseException", "builtins.object"], "names": {".class": "SymbolTable"}, "tuple_type": null, "type_vars": [], "typeddict_type": null}}, "DeprecationWarning": {".class": "SymbolTableNode", "kind": "Gdef", "node": {".class": "TypeInfo", "_promote": null, "abstract_attributes": [], "bases": ["builtins.Warning"], "declared_metaclass": null, "defn": {".class": "ClassDef", "fullname": "builtins.DeprecationWarning", "name": "DeprecationWarning", "type_vars": []}, "flags": [], "fullname": "builtins.DeprecationWarning", "metaclass_type": null, "metadata": {}, "module_name": "builtins", "mro": ["builtins.DeprecationWarning", "builtins.Warning", "builtins.Exception", "builtins.BaseException", "builtins.object"], "names": {".class": "SymbolTable"}, "tuple_type": null, "type_vars": [], "typeddict_type": null}}, "EOFError": {".class": "SymbolTableNode", "kind": "Gdef", "node": {".class": "TypeInfo", "_promote": null, "abstract_attributes": [], "bases": ["builtins.Exception"], "declared_metaclass": null, "defn": {".class": "ClassDef", "fullname": "builtins.EOFError", "name": "EOFError", "type_vars": []}, "flags": [], "fullname": "builtins.EOFError", "metaclass_type": null, "metadata": {}, "module_name": "builtins", "mro": ["builtins.EOFError", "builtins.Exception", "builtins.BaseException", "builtins.object"], "names": {".class": "SymbolTable"}, "tuple_type": null, "type_vars": [], "typeddict_type": null}}, "Ellipsis": {".class": "SymbolTableNode", "kind": "Gdef", "node": {".class": "Var", "flags": [], "fullname": "builtins.Ellipsis", "name": "Ellipsis", "type": "builtins.ellipsis"}}, "EnvironmentError": {".class": "SymbolTableNode", "kind": "Gdef", "node": {".class": "TypeAlias", "alias_tvars": [], "column": 4, "fullname": "builtins.EnvironmentError", "line": 1464, "no_args": true, "normalized": false, "target": "builtins.OSError"}}, "Exception": {".class": "SymbolTableNode", "kind": "Gdef", "node": {".class": "TypeInfo", "_promote": null, "abstract_attributes": [], "bases": ["builtins.BaseException"], "declared_metaclass": null, "defn": {".class": "ClassDef", "fullname": "builtins.Exception", "name": "Exception", "type_vars": []}, "flags": [], "fullname": "builtins.Exception", "metaclass_type": null, "metadata": {}, "module_name": "builtins", "mro": ["builtins.Exception", "builtins.BaseException", "builtins.object"], "names": {".class": "SymbolTable"}, "tuple_type": null, "type_vars": [], "typeddict_type": null}}, "False": {".class": "SymbolTableNode", "kind": "Gdef", "node": {".class": "Var", "flags": [], "fullname": "builtins.False", "name": "False", "type": "builtins.bool"}}, "FileExistsError": {".class": "SymbolTableNode", "kind": "Gdef", "node": {".class": "TypeInfo", "_promote": null, "abstract_attributes": [], "bases": ["builtins.OSError"], "declared_metaclass": null, "defn": {".class": "ClassDef", "fullname": "builtins.FileExistsError", "name": "FileExistsError", "type_vars": []}, "flags": [], "fullname": "builtins.FileExistsError", "metaclass_type": null, "metadata": {}, "module_name": "builtins", "mro": ["builtins.FileExistsError", "builtins.OSError", "builtins.Exception", "builtins.BaseException", "builtins.object"], "names": {".class": "SymbolTable"}, "tuple_type": null, "type_vars": [], "typeddict_type": null}}, "FileNotFoundError": {".class": "SymbolTableNode", "kind": "Gdef", "node": {".class": "TypeInfo", "_promote": null, "abstract_attributes": [], "bases": ["builtins.OSError"], "declared_metaclass": null, "defn": {".class": "ClassDef", "fullname": "builtins.FileNotFoundError", "name": "FileNotFoundError", "type_vars": []}, "flags": [], "fullname": "builtins.FileNotFoundError", "metaclass_type": null, "metadata": {}, "module_name": "builtins", "mro": ["builtins.FileNotFoundError", "builtins.OSError", "builtins.Exception", "builtins.BaseException", "builtins.object"], "names": {".class": "SymbolTable"}, "tuple_type": null, "type_vars": [], "typeddict_type": null}}, "FloatingPointError": {".class": "SymbolTableNode", "kind": "Gdef", "node": {".class": "TypeInfo", "_promote": null, "abstract_attributes": [], "bases": ["builtins.ArithmeticError"], "declared_metaclass": null, "defn": {".class": "ClassDef", "fullname": "builtins.FloatingPointError", "name": "FloatingPointError", "type_vars": []}, "flags": [], "fullname": "builtins.FloatingPointError", "metaclass_type": null, "metadata": {}, "module_name": "builtins", "mro": ["builtins.FloatingPointError", "builtins.ArithmeticError", "builtins.Exception", "builtins.BaseException", "builtins.object"], "names": {".class": "SymbolTable"}, "tuple_type": null, "type_vars": [], "typeddict_type": null}}, "FutureWarning": {".class": "SymbolTableNode", "kind": "Gdef", "node": {".class": "TypeInfo", "_promote": null, "abstract_attributes": [], "bases": ["builtins.Warning"], "declared_metaclass": null, "defn": {".class": "ClassDef", "fullname": "builtins.FutureWarning", "name": "FutureWarning", "type_vars": []}, "flags": [], "fullname": "builtins.FutureWarning", "metaclass_type": null, "metadata": {}, "module_name": "builtins", "mro": ["builtins.FutureWarning", "builtins.Warning", "builtins.Exception", "builtins.BaseException", "builtins.object"], "names": {".class": "SymbolTable"}, "tuple_type": null, "type_vars": [], "typeddict_type": null}}, "GeneratorExit": {".class": "SymbolTableNode", "kind": "Gdef", "node": {".class": "TypeInfo", "_promote": null, "abstract_attributes": [], "bases": ["builtins.BaseException"], "declared_metaclass": null, "defn": {".class": "ClassDef", "fullname": "builtins.GeneratorExit", "name": "GeneratorExit", "type_vars": []}, "flags": [], "fullname": "builtins.GeneratorExit", "metaclass_type": null, "metadata": {}, "module_name": "builtins", "mro": ["builtins.GeneratorExit", "builtins.BaseException", "builtins.object"], "names": {".class": "SymbolTable"}, "tuple_type": null, "type_vars": [], "typeddict_type": null}}, "IOError": {".class": "SymbolTableNode", "kind": "Gdef", "node": {".class": "TypeAlias", "alias_tvars": [], "column": 4, "fullname": "builtins.IOError", "line": 1465, "no_args": true, "normalized": false, "target": "builtins.OSError"}}, "ImportError": {".class": "SymbolTableNode", "kind": "Gdef", "node": {".class": "TypeInfo", "_promote": null, "abstract_attributes": [], "bases": ["builtins.Exception"], "declared_metaclass": null, "defn": {".class": "ClassDef", "fullname": "builtins.ImportError", "name": "ImportError", "type_vars": []}, "flags": [], "fullname": "builtins.ImportError", "metaclass_type": null, "metadata": {}, "module_name": "builtins", "mro": ["builtins.ImportError", "builtins.Exception", "builtins.BaseException", "builtins.object"], "names": {".class": "SymbolTable", "name": {".class": "SymbolTableNode", "kind": "Mdef", "node": {".class": "Var", "flags": ["is_initialized_in_class"], "fullname": "builtins.ImportError.name", "name": "name", "type": "builtins.str"}}, "path": {".class": "SymbolTableNode", "kind": "Mdef", "node": {".class": "Var", "flags": ["is_initialized_in_class"], "fullname": "builtins.ImportError.path", "name": "path", "type": "builtins.str"}}}, "tuple_type": null, "type_vars": [], "typeddict_type": null}}, "ImportWarning": {".class": "SymbolTableNode", "kind": "Gdef", "node": {".class": "TypeInfo", "_promote": null, "abstract_attributes": [], "bases": ["builtins.Warning"], "declared_metaclass": null, "defn": {".class": "ClassDef", "fullname": "builtins.ImportWarning", "name": "ImportWarning", "type_vars": []}, "flags": [], "fullname": "builtins.ImportWarning", "metaclass_type": null, "metadata": {}, "module_name": "builtins", "mro": ["builtins.ImportWarning", "builtins.Warning", "builtins.Exception", "builtins.BaseException", "builtins.object"], "names": {".class": "SymbolTable"}, "tuple_type": null, "type_vars": [], "typeddict_type": null}}, "IndentationError": {".class": "SymbolTableNode", "kind": "Gdef", "node": {".class": "TypeInfo", "_promote": null, "abstract_attributes": [], "bases": ["builtins.SyntaxError"], "declared_metaclass": null, "defn": {".class": "ClassDef", "fullname": "builtins.IndentationError", "name": "IndentationError", "type_vars": []}, "flags": [], "fullname": "builtins.IndentationError", "metaclass_type": null, "metadata": {}, "module_name": "builtins", "mro": ["builtins.IndentationError", "builtins.SyntaxError", "builtins.Exception", "builtins.BaseException", "builtins.object"], "names": {".class": "SymbolTable"}, "tuple_type": null, "type_vars": [], "typeddict_type": null}}, "IndexError": {".class": "SymbolTableNode", "kind": "Gdef", "node": {".class": "TypeInfo", "_promote": null, "abstract_attributes": [], "bases": ["builtins.LookupError"], "declared_metaclass": null, "defn": {".class": "ClassDef", "fullname": "builtins.IndexError", "name": "IndexError", "type_vars": []}, "flags": [], "fullname": "builtins.IndexError", "metaclass_type": null, "metadata": {}, "module_name": "builtins", "mro": ["builtins.IndexError", "builtins.LookupError", "builtins.Exception", "builtins.BaseException", "builtins.object"], "names": {".class": "SymbolTable"}, "tuple_type": null, "type_vars": [], "typeddict_type": null}}, "InterruptedError": {".class": "SymbolTableNode", "kind": "Gdef", "node": {".class": "TypeInfo", "_promote": null, "abstract_attributes": [], "bases": ["builtins.OSError"], "declared_metaclass": null, "defn": {".class": "ClassDef", "fullname": "builtins.InterruptedError", "name": "InterruptedError", "type_vars": []}, "flags": [], "fullname": "builtins.InterruptedError", "metaclass_type": null, "metadata": {}, "module_name": "builtins", "mro": ["builtins.InterruptedError", "builtins.OSError", "builtins.Exception", "builtins.BaseException", "builtins.object"], "names": {".class": "SymbolTable"}, "tuple_type": null, "type_vars": [], "typeddict_type": null}}, "IsADirectoryError": {".class": "SymbolTableNode", "kind": "Gdef", "node": {".class": "TypeInfo", "_promote": null, "abstract_attributes": [], "bases": ["builtins.OSError"], "declared_metaclass": null, "defn": {".class": "ClassDef", "fullname": "builtins.IsADirectoryError", "name": "IsADirectoryError", "type_vars": []}, "flags": [], "fullname": "builtins.IsADirectoryError", "metaclass_type": null, "metadata": {}, "module_name": "builtins", "mro": ["builtins.IsADirectoryError", "builtins.OSError", "builtins.Exception", "builtins.BaseException", "builtins.object"], "names": {".class": "SymbolTable"}, "tuple_type": null, "type_vars": [], "typeddict_type": null}}, "KeyError": {".class": "SymbolTableNode", "kind": "Gdef", "node": {".class": "TypeInfo", "_promote": null, "abstract_attributes": [], "bases": ["builtins.LookupError"], "declared_metaclass": null, "defn": {".class": "ClassDef", "fullname": "builtins.KeyError", "name": "KeyError", "type_vars": []}, "flags": [], "fullname": "builtins.KeyError", "metaclass_type": null, "metadata": {}, "module_name": "builtins", "mro": ["builtins.KeyError", "builtins.LookupError", "builtins.Exception", "builtins.BaseException", "builtins.object"], "names": {".class": "SymbolTable"}, "tuple_type": null, "type_vars": [], "typeddict_type": null}}, "KeyboardInterrupt": {".class": "SymbolTableNode", "kind": "Gdef", "node": {".class": "TypeInfo", "_promote": null, "abstract_attributes": [], "bases": ["builtins.BaseException"], "declared_metaclass": null, "defn": {".class": "ClassDef", "fullname": "builtins.KeyboardInterrupt", "name": "KeyboardInterrupt", "type_vars": []}, "flags": [], "fullname": "builtins.KeyboardInterrupt", "metaclass_type": null, "metadata": {}, "module_name": "builtins", "mro": ["builtins.KeyboardInterrupt", "builtins.BaseException", "builtins.object"], "names": {".class": "SymbolTable"}, "tuple_type": null, "type_vars": [], "typeddict_type": null}}, "LookupError": {".class": "SymbolTableNode", "kind": "Gdef", "node": {".class": "TypeInfo", "_promote": null, "abstract_attributes": [], "bases": ["builtins.Exception"], "declared_metaclass": null, "defn": {".class": "ClassDef", "fullname": "builtins.LookupError", "name": "LookupError", "type_vars": []}, "flags": [], "fullname": "builtins.LookupError", "metaclass_type": null, "metadata": {}, "module_name": "builtins", "mro": ["builtins.LookupError", "builtins.Exception", "builtins.BaseException", "builtins.object"], "names": {".class": "SymbolTable"}, "tuple_type": null, "type_vars": [], "typeddict_type": null}}, "MemoryError": {".class": "SymbolTableNode", "kind": "Gdef", "node": {".class": "TypeInfo", "_promote": null, "abstract_attributes": [], "bases": ["builtins.Exception"], "declared_metaclass": null, "defn": {".class": "ClassDef", "fullname": "builtins.MemoryError", "name": "MemoryError", "type_vars": []}, "flags": [], "fullname": "builtins.MemoryError", "metaclass_type": null, "metadata": {}, "module_name": "builtins", "mro": ["builtins.MemoryError", "builtins.Exception", "builtins.BaseException", "builtins.object"], "names": {".class": "SymbolTable"}, "tuple_type": null, "type_vars": [], "typeddict_type": null}}, "ModuleNotFoundError": {".class": "SymbolTableNode", "kind": "Gdef", "node": {".class": "TypeInfo", "_promote": null, "abstract_attributes": [], "bases": ["builtins.ImportError"], "declared_metaclass": null, "defn": {".class": "ClassDef", "fullname": "builtins.ModuleNotFoundError", "name": "ModuleNotFoundError", "type_vars": []}, "flags": [], "fullname": "builtins.ModuleNotFoundError", "metaclass_type": null, "metadata": {}, "module_name": "builtins", "mro": ["builtins.ModuleNotFoundError", "builtins.ImportError", "builtins.Exception", "builtins.BaseException", "builtins.object"], "names": {".class": "SymbolTable"}, "tuple_type": null, "type_vars": [], "typeddict_type": null}}, "NameError": {".class": "SymbolTableNode", "kind": "Gdef", "node": {".class": "TypeInfo", "_promote": null, "abstract_attributes": [], "bases": ["builtins.Exception"], "declared_metaclass": null, "defn": {".class": "ClassDef", "fullname": "builtins.NameError", "name": "NameError", "type_vars": []}, "flags": [], "fullname": "builtins.NameError", "metaclass_type": null, "metadata": {}, "module_name": "builtins", "mro": ["builtins.NameError", "builtins.Exception", "builtins.BaseException", "builtins.object"], "names": {".class": "SymbolTable"}, "tuple_type": null, "type_vars": [], "typeddict_type": null}}, "None": {".class": "SymbolTableNode", "kind": "Gdef", "node": {".class": "Var", "flags": [], "fullname": "builtins.None", "name": "None", "type": {".class": "NoneTyp"}}}, "NotADirectoryError": {".class": "SymbolTableNode", "kind": "Gdef", "node": {".class": "TypeInfo", "_promote": null, "abstract_attributes": [], "bases": ["builtins.OSError"], "declared_metaclass": null, "defn": {".class": "ClassDef", "fullname": "builtins.NotADirectoryError", "name": "NotADirectoryError", "type_vars": []}, "flags": [], "fullname": "builtins.NotADirectoryError", "metaclass_type": null, "metadata": {}, "module_name": "builtins", "mro": ["builtins.NotADirectoryError", "builtins.OSError", "builtins.Exception", "builtins.BaseException", "builtins.object"], "names": {".class": "SymbolTable"}, "tuple_type": null, "type_vars": [], "typeddict_type": null}}, "NotImplemented": {".class": "SymbolTableNode", "kind": "Gdef", "node": {".class": "Var", "flags": [], "fullname": "builtins.NotImplemented", "name": "NotImplemented", "type": {".class": "AnyType", "missing_import_name": null, "source_any": null, "type_of_any": 2}}}, "NotImplementedError": {".class": "SymbolTableNode", "kind": "Gdef", "node": {".class": "TypeInfo", "_promote": null, "abstract_attributes": [], "bases": ["builtins.RuntimeError"], "declared_metaclass": null, "defn": {".class": "ClassDef", "fullname": "builtins.NotImplementedError", "name": "NotImplementedError", "type_vars": []}, "flags": [], "fullname": "builtins.NotImplementedError", "metaclass_type": null, "metadata": {}, "module_name": "builtins", "mro": ["builtins.NotImplementedError", "builtins.RuntimeError", "builtins.Exception", "builtins.BaseException", "builtins.object"], "names": {".class": "SymbolTable"}, "tuple_type": null, "type_vars": [], "typeddict_type": null}}, "OSError": {".class": "SymbolTableNode", "kind": "Gdef", "node": {".class": "TypeInfo", "_promote": null, "abstract_attributes": [], "bases": ["builtins.Exception"], "declared_metaclass": null, "defn": {".class": "ClassDef", "fullname": "builtins.OSError", "name": "OSError", "type_vars": []}, "flags": [], "fullname": "builtins.OSError", "metaclass_type": null, "metadata": {}, "module_name": "builtins", "mro": ["builtins.OSError", "builtins.Exception", "builtins.BaseException", "builtins.object"], "names": {".class": "SymbolTable", "errno": {".class": "SymbolTableNode", "kind": "Mdef", "node": {".class": "Var", "flags": ["is_initialized_in_class"], "fullname": "builtins.OSError.errno", "name": "errno", "type": "builtins.int"}}, "filename": {".class": "SymbolTableNode", "kind": "Mdef", "node": {".class": "Var", "flags": ["is_initialized_in_class"], "fullname": "builtins.OSError.filename", "name": "filename", "type": {".class": "AnyType", "missing_import_name": null, "source_any": null, "type_of_any": 2}}}, "filename2": {".class": "SymbolTableNode", "kind": "Mdef", "node": {".class": "Var", "flags": ["is_initialized_in_class"], "fullname": "builtins.OSError.filename2", "name": "filename2", "type": {".class": "AnyType", "missing_import_name": null, "source_any": null, "type_of_any": 2}}}, "strerror": {".class": "SymbolTableNode", "kind": "Mdef", "node": {".class": "Var", "flags": ["is_initialized_in_class"], "fullname": "builtins.OSError.strerror", "name": "strerror", "type": "builtins.str"}}}, "tuple_type": null, "type_vars": [], "typeddict_type": null}}, "OverflowError": {".class": "SymbolTableNode", "kind": "Gdef", "node": {".class": "TypeInfo", "_promote": null, "abstract_attributes": [], "bases": ["builtins.ArithmeticError"], "declared_metaclass": null, "defn": {".class": "ClassDef", "fullname": "builtins.OverflowError", "name": "OverflowError", "type_vars": []}, "flags": [], "fullname": "builtins.OverflowError", "metaclass_type": null, "metadata": {}, "module_name": "builtins", "mro": ["builtins.OverflowError", "builtins.ArithmeticError", "builtins.Exception", "builtins.BaseException", "builtins.object"], "names": {".class": "SymbolTable"}, "tuple_type": null, "type_vars": [], "typeddict_type": null}}, "PendingDeprecationWarning": {".class": "SymbolTableNode", "kind": "Gdef", "node": {".class": "TypeInfo", "_promote": null, "abstract_attributes": [], "bases": ["builtins.Warning"], "declared_metaclass": null, "defn": {".class": "ClassDef", "fullname": "builtins.PendingDeprecationWarning", "name": "PendingDeprecationWarning", "type_vars": []}, "flags": [], "fullname": "builtins.PendingDeprecationWarning", "metaclass_type": null, "metadata": {}, "module_name": "builtins", "mro": ["builtins.PendingDeprecationWarning", "builtins.Warning", "builtins.Exception", "builtins.BaseException", "builtins.object"], "names": {".class": "SymbolTable"}, "tuple_type": null, "type_vars": [], "typeddict_type": null}}, "PermissionError": {".class": "SymbolTableNode", "kind": "Gdef", "node": {".class": "TypeInfo", "_promote": null, "abstract_attributes": [], "bases": ["builtins.OSError"], "declared_metaclass": null, "defn": {".class": "ClassDef", "fullname": "builtins.PermissionError", "name": "PermissionError", "type_vars": []}, "flags": [], "fullname": "builtins.PermissionError", "metaclass_type": null, "metadata": {}, "module_name": "builtins", "mro": ["builtins.PermissionError", "builtins.OSError", "builtins.Exception", "builtins.BaseException", "builtins.object"], "names": {".class": "SymbolTable"}, "tuple_type": null, "type_vars": [], "typeddict_type": null}}, "ProcessLookupError": {".class": "SymbolTableNode", "kind": "Gdef", "node": {".class": "TypeInfo", "_promote": null, "abstract_attributes": [], "bases": ["builtins.OSError"], "declared_metaclass": null, "defn": {".class": "ClassDef", "fullname": "builtins.ProcessLookupError", "name": "ProcessLookupError", "type_vars": []}, "flags": [], "fullname": "builtins.ProcessLookupError", "metaclass_type": null, "metadata": {}, "module_name": "builtins", "mro": ["builtins.ProcessLookupError", "builtins.OSError", "builtins.Exception", "builtins.BaseException", "builtins.object"], "names": {".class": "SymbolTable"}, "tuple_type": null, "type_vars": [], "typeddict_type": null}}, "RecursionError": {".class": "SymbolTableNode", "kind": "Gdef", "node": {".class": "TypeInfo", "_promote": null, "abstract_attributes": [], "bases": ["builtins.RuntimeError"], "declared_metaclass": null, "defn": {".class": "ClassDef", "fullname": "builtins.RecursionError", "name": "RecursionError", "type_vars": []}, "flags": [], "fullname": "builtins.RecursionError", "metaclass_type": null, "metadata": {}, "module_name": "builtins", "mro": ["builtins.RecursionError", "builtins.RuntimeError", "builtins.Exception", "builtins.BaseException", "builtins.object"], "names": {".class": "SymbolTable"}, "tuple_type": null, "type_vars": [], "typeddict_type": null}}, "ReferenceError": {".class": "SymbolTableNode", "kind": "Gdef", "node": {".class": "TypeInfo", "_promote": null, "abstract_attributes": [], "bases": ["builtins.Exception"], "declared_metaclass": null, "defn": {".class": "ClassDef", "fullname": "builtins.ReferenceError", "name": "ReferenceError", "type_vars": []}, "flags": [], "fullname": "builtins.ReferenceError", "metaclass_type": null, "metadata": {}, "module_name": "builtins", "mro": ["builtins.ReferenceError", "builtins.Exception", "builtins.BaseException", "builtins.object"], "names": {".class": "SymbolTable"}, "tuple_type": null, "type_vars": [], "typeddict_type": null}}, "ResourceWarning": {".class": "SymbolTableNode", "kind": "Gdef", "node": {".class": "TypeInfo", "_promote": null, "abstract_attributes": [], "bases": ["builtins.Warning"], "declared_metaclass": null, "defn": {".class": "ClassDef", "fullname": "builtins.ResourceWarning", "name": "ResourceWarning", "type_vars": []}, "flags": [], "fullname": "builtins.ResourceWarning", "metaclass_type": null, "metadata": {}, "module_name": "builtins", "mro": ["builtins.ResourceWarning", "builtins.Warning", "builtins.Exception", "builtins.BaseException", "builtins.object"], "names": {".class": "SymbolTable"}, "tuple_type": null, "type_vars": [], "typeddict_type": null}}, "RuntimeError": {".class": "SymbolTableNode", "kind": "Gdef", "node": {".class": "TypeInfo", "_promote": null, "abstract_attributes": [], "bases": ["builtins.Exception"], "declared_metaclass": null, "defn": {".class": "ClassDef", "fullname": "builtins.RuntimeError", "name": "RuntimeError", "type_vars": []}, "flags": [], "fullname": "builtins.RuntimeError", "metaclass_type": null, "metadata": {}, "module_name": "builtins", "mro": ["builtins.RuntimeError", "builtins.Exception", "builtins.BaseException", "builtins.object"], "names": {".class": "SymbolTable"}, "tuple_type": null, "type_vars": [], "typeddict_type": null}}, "RuntimeWarning": {".class": "SymbolTableNode", "kind": "Gdef", "node": {".class": "TypeInfo", "_promote": null, "abstract_attributes": [], "bases": ["builtins.Warning"], "declared_metaclass": null, "defn": {".class": "ClassDef", "fullname": "builtins.RuntimeWarning", "name": "RuntimeWarning", "type_vars": []}, "flags": [], "fullname": "builtins.RuntimeWarning", "metaclass_type": null, "metadata": {}, "module_name": "builtins", "mro": ["builtins.RuntimeWarning", "builtins.Warning", "builtins.Exception", "builtins.BaseException", "builtins.object"], "names": {".class": "SymbolTable"}, "tuple_type": null, "type_vars": [], "typeddict_type": null}}, "StopAsyncIteration": {".class": "SymbolTableNode", "kind": "Gdef", "node": {".class": "TypeInfo", "_promote": null, "abstract_attributes": [], "bases": ["builtins.Exception"], "declared_metaclass": null, "defn": {".class": "ClassDef", "fullname": "builtins.StopAsyncIteration", "name": "StopAsyncIteration", "type_vars": []}, "flags": [], "fullname": "builtins.StopAsyncIteration", "metaclass_type": null, "metadata": {}, "module_name": "builtins", "mro": ["builtins.StopAsyncIteration", "builtins.Exception", "builtins.BaseException", "builtins.object"], "names": {".class": "SymbolTable", "value": {".class": "SymbolTableNode", "kind": "Mdef", "node": {".class": "Var", "flags": ["is_initialized_in_class"], "fullname": "builtins.StopAsyncIteration.value", "name": "value", "type": {".class": "AnyType", "missing_import_name": null, "source_any": null, "type_of_any": 2}}}}, "tuple_type": null, "type_vars": [], "typeddict_type": null}}, "StopIteration": {".class": "SymbolTableNode", "kind": "Gdef", "node": {".class": "TypeInfo", "_promote": null, "abstract_attributes": [], "bases": ["builtins.Exception"], "declared_metaclass": null, "defn": {".class": "ClassDef", "fullname": "builtins.StopIteration", "name": "StopIteration", "type_vars": []}, "flags": [], "fullname": "builtins.StopIteration", "metaclass_type": null, "metadata": {}, "module_name": "builtins", "mro": ["builtins.StopIteration", "builtins.Exception", "builtins.BaseException", "builtins.object"], "names": {".class": "SymbolTable", "value": {".class": "SymbolTableNode", "kind": "Mdef", "node": {".class": "Var", "flags": ["is_initialized_in_class"], "fullname": "builtins.StopIteration.value", "name": "value", "type": {".class": "AnyType", "missing_import_name": null, "source_any": null, "type_of_any": 2}}}}, "tuple_type": null, "type_vars": [], "typeddict_type": null}}, "SyntaxError": {".class": "SymbolTableNode", "kind": "Gdef", "node": {".class": "TypeInfo", "_promote": null, "abstract_attributes": [], "bases": ["builtins.Exception"], "declared_metaclass": null, "defn": {".class": "ClassDef", "fullname": "builtins.SyntaxError", "name": "SyntaxError", "type_vars": []}, "flags": [], "fullname": "builtins.SyntaxError", "metaclass_type": null, "metadata": {}, "module_name": "builtins", "mro": ["builtins.SyntaxError", "builtins.Exception", "builtins.BaseException", "builtins.object"], "names": {".class": "SymbolTable", "filename": {".class": "SymbolTableNode", "kind": "Mdef", "node": {".class": "Var", "flags": ["is_initialized_in_class"], "fullname": "builtins.SyntaxError.filename", "name": "filename", "type": "builtins.str"}}, "lineno": {".class": "SymbolTableNode", "kind": "Mdef", "node": {".class": "Var", "flags": ["is_initialized_in_class"], "fullname": "builtins.SyntaxError.lineno", "name": "lineno", "type": "builtins.int"}}, "msg": {".class": "SymbolTableNode", "kind": "Mdef", "node": {".class": "Var", "flags": ["is_initialized_in_class"], "fullname": "builtins.SyntaxError.msg", "name": "msg", "type": "builtins.str"}}, "offset": {".class": "SymbolTableNode", "kind": "Mdef", "node": {".class": "Var", "flags": ["is_initialized_in_class"], "fullname": "builtins.SyntaxError.offset", "name": "offset", "type": "builtins.int"}}, "text": {".class": "SymbolTableNode", "kind": "Mdef", "node": {".class": "Var", "flags": ["is_initialized_in_class"], "fullname": "builtins.SyntaxError.text", "name": "text", "type": "builtins.str"}}}, "tuple_type": null, "type_vars": [], "typeddict_type": null}}, "SyntaxWarning": {".class": "SymbolTableNode", "kind": "Gdef", "node": {".class": "TypeInfo", "_promote": null, "abstract_attributes": [], "bases": ["builtins.Warning"], "declared_metaclass": null, "defn": {".class": "ClassDef", "fullname": "builtins.SyntaxWarning", "name": "SyntaxWarning", "type_vars": []}, "flags": [], "fullname": "builtins.SyntaxWarning", "metaclass_type": null, "metadata": {}, "module_name": "builtins", "mro": ["builtins.SyntaxWarning", "builtins.Warning", "builtins.Exception", "builtins.BaseException", "builtins.object"], "names": {".class": "SymbolTable"}, "tuple_type": null, "type_vars": [], "typeddict_type": null}}, "SystemError": {".class": "SymbolTableNode", "kind": "Gdef", "node": {".class": "TypeInfo", "_promote": null, "abstract_attributes": [], "bases": ["builtins.Exception"], "declared_metaclass": null, "defn": {".class": "ClassDef", "fullname": "builtins.SystemError", "name": "SystemError", "type_vars": []}, "flags": [], "fullname": "builtins.SystemError", "metaclass_type": null, "metadata": {}, "module_name": "builtins", "mro": ["builtins.SystemError", "builtins.Exception", "builtins.BaseException", "builtins.object"], "names": {".class": "SymbolTable"}, "tuple_type": null, "type_vars": [], "typeddict_type": null}}, "SystemExit": {".class": "SymbolTableNode", "kind": "Gdef", "node": {".class": "TypeInfo", "_promote": null, "abstract_attributes": [], "bases": ["builtins.BaseException"], "declared_metaclass": null, "defn": {".class": "ClassDef", "fullname": "builtins.SystemExit", "name": "SystemExit", "type_vars": []}, "flags": [], "fullname": "builtins.SystemExit", "metaclass_type": null, "metadata": {}, "module_name": "builtins", "mro": ["builtins.SystemExit", "builtins.BaseException", "builtins.object"], "names": {".class": "SymbolTable", "code": {".class": "SymbolTableNode", "kind": "Mdef", "node": {".class": "Var", "flags": ["is_initialized_in_class"], "fullname": "builtins.SystemExit.code", "name": "code", "type": "builtins.int"}}}, "tuple_type": null, "type_vars": [], "typeddict_type": null}}, "TabError": {".class": "SymbolTableNode", "kind": "Gdef", "node": {".class": "TypeInfo", "_promote": null, "abstract_attributes": [], "bases": ["builtins.IndentationError"], "declared_metaclass": null, "defn": {".class": "ClassDef", "fullname": "builtins.TabError", "name": "TabError", "type_vars": []}, "flags": [], "fullname": "builtins.TabError", "metaclass_type": null, "metadata": {}, "module_name": "builtins", "mro": ["builtins.TabError", "builtins.IndentationError", "builtins.SyntaxError", "builtins.Exception", "builtins.BaseException", "builtins.object"], "names": {".class": "SymbolTable"}, "tuple_type": null, "type_vars": [], "typeddict_type": null}}, "TimeoutError": {".class": "SymbolTableNode", "kind": "Gdef", "node": {".class": "TypeInfo", "_promote": null, "abstract_attributes": [], "bases": ["builtins.OSError"], "declared_metaclass": null, "defn": {".class": "ClassDef", "fullname": "builtins.TimeoutError", "name": "TimeoutError", "type_vars": []}, "flags": [], "fullname": "builtins.TimeoutError", "metaclass_type": null, "metadata": {}, "module_name": "builtins", "mro": ["builtins.TimeoutError", "builtins.OSError", "builtins.Exception", "builtins.BaseException", "builtins.object"], "names": {".class": "SymbolTable"}, "tuple_type": null, "type_vars": [], "typeddict_type": null}}, "True": {".class": "SymbolTableNode", "kind": "Gdef", "node": {".class": "Var", "flags": [], "fullname": "builtins.True", "name": "True", "type": "builtins.bool"}}, "TypeError": {".class": "SymbolTableNode", "kind": "Gdef", "node": {".class": "TypeInfo", "_promote": null, "abstract_attributes": [], "bases": ["builtins.Exception"], "declared_metaclass": null, "defn": {".class": "ClassDef", "fullname": "builtins.TypeError", "name": "TypeError", "type_vars": []}, "flags": [], "fullname": "builtins.TypeError", "metaclass_type": null, "metadata": {}, "module_name": "builtins", "mro": ["builtins.TypeError", "builtins.Exception", "builtins.BaseException", "builtins.object"], "names": {".class": "SymbolTable"}, "tuple_type": null, "type_vars": [], "typeddict_type": null}}, "UnboundLocalError": {".class": "SymbolTableNode", "kind": "Gdef", "node": {".class": "TypeInfo", "_promote": null, "abstract_attributes": [], "bases": ["builtins.NameError"], "declared_metaclass": null, "defn": {".class": "ClassDef", "fullname": "builtins.UnboundLocalError", "name": "UnboundLocalError", "type_vars": []}, "flags": [], "fullname": "builtins.UnboundLocalError", "metaclass_type": null, "metadata": {}, "module_name": "builtins", "mro": ["builtins.UnboundLocalError", "builtins.NameError", "builtins.Exception", "builtins.BaseException", "builtins.object"], "names": {".class": "SymbolTable"}, "tuple_type": null, "type_vars": [], "typeddict_type": null}}, "UnicodeDecodeError": {".class": "SymbolTableNode", "kind": "Gdef", "node": {".class": "TypeInfo", "_promote": null, "abstract_attributes": [], "bases": ["builtins.UnicodeError"], "declared_metaclass": null, "defn": {".class": "ClassDef", "fullname": "builtins.UnicodeDecodeError", "name": "UnicodeDecodeError", "type_vars": []}, "flags": [], "fullname": "builtins.UnicodeDecodeError", "metaclass_type": null, "metadata": {}, "module_name": "builtins", "mro": ["builtins.UnicodeDecodeError", "builtins.UnicodeError", "builtins.ValueError", "builtins.Exception", "builtins.BaseException", "builtins.object"], "names": {".class": "SymbolTable", "__init__": {".class": "SymbolTableNode", "kind": "Mdef", "node": {".class": "FuncDef", "arg_kinds": [0, 0, 0, 0, 0, 0], "arg_names": ["self", "__encoding", "__object", "__start", "__end", "__reason"], "flags": [], "fullname": "builtins.UnicodeDecodeError.__init__", "name": "__init__", "type": {".class": "CallableType", "arg_kinds": [0, 0, 0, 0, 0, 0], "arg_names": ["self", null, null, null, null, null], "arg_types": ["builtins.UnicodeDecodeError", "builtins.str", "builtins.bytes", "builtins.int", "builtins.int", "builtins.str"], "bound_args": [], "def_extras": {"first_arg": "self"}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "__init__ of UnicodeDecodeError", "ret_type": {".class": "NoneTyp"}, "variables": []}}}, "encoding": {".class": "SymbolTableNode", "kind": "Mdef", "node": {".class": "Var", "flags": ["is_initialized_in_class"], "fullname": "builtins.UnicodeDecodeError.encoding", "name": "encoding", "type": "builtins.str"}}, "end": {".class": "SymbolTableNode", "kind": "Mdef", "node": {".class": "Var", "flags": ["is_initialized_in_class"], "fullname": "builtins.UnicodeDecodeError.end", "name": "end", "type": "builtins.int"}}, "object": {".class": "SymbolTableNode", "kind": "Mdef", "node": {".class": "Var", "flags": ["is_initialized_in_class"], "fullname": "builtins.UnicodeDecodeError.object", "name": "object", "type": "builtins.bytes"}}, "reason": {".class": "SymbolTableNode", "kind": "Mdef", "node": {".class": "Var", "flags": ["is_initialized_in_class"], "fullname": "builtins.UnicodeDecodeError.reason", "name": "reason", "type": "builtins.str"}}, "start": {".class": "SymbolTableNode", "kind": "Mdef", "node": {".class": "Var", "flags": ["is_initialized_in_class"], "fullname": "builtins.UnicodeDecodeError.start", "name": "start", "type": "builtins.int"}}}, "tuple_type": null, "type_vars": [], "typeddict_type": null}}, "UnicodeEncodeError": {".class": "SymbolTableNode", "kind": "Gdef", "node": {".class": "TypeInfo", "_promote": null, "abstract_attributes": [], "bases": ["builtins.UnicodeError"], "declared_metaclass": null, "defn": {".class": "ClassDef", "fullname": "builtins.UnicodeEncodeError", "name": "UnicodeEncodeError", "type_vars": []}, "flags": [], "fullname": "builtins.UnicodeEncodeError", "metaclass_type": null, "metadata": {}, "module_name": "builtins", "mro": ["builtins.UnicodeEncodeError", "builtins.UnicodeError", "builtins.ValueError", "builtins.Exception", "builtins.BaseException", "builtins.object"], "names": {".class": "SymbolTable", "__init__": {".class": "SymbolTableNode", "kind": "Mdef", "node": {".class": "FuncDef", "arg_kinds": [0, 0, 0, 0, 0, 0], "arg_names": ["self", "__encoding", "__object", "__start", "__end", "__reason"], "flags": [], "fullname": "builtins.UnicodeEncodeError.__init__", "name": "__init__", "type": {".class": "CallableType", "arg_kinds": [0, 0, 0, 0, 0, 0], "arg_names": ["self", null, null, null, null, null], "arg_types": ["builtins.UnicodeEncodeError", "builtins.str", "builtins.str", "builtins.int", "builtins.int", "builtins.str"], "bound_args": [], "def_extras": {"first_arg": "self"}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "__init__ of UnicodeEncodeError", "ret_type": {".class": "NoneTyp"}, "variables": []}}}, "encoding": {".class": "SymbolTableNode", "kind": "Mdef", "node": {".class": "Var", "flags": ["is_initialized_in_class"], "fullname": "builtins.UnicodeEncodeError.encoding", "name": "encoding", "type": "builtins.str"}}, "end": {".class": "SymbolTableNode", "kind": "Mdef", "node": {".class": "Var", "flags": ["is_initialized_in_class"], "fullname": "builtins.UnicodeEncodeError.end", "name": "end", "type": "builtins.int"}}, "object": {".class": "SymbolTableNode", "kind": "Mdef", "node": {".class": "Var", "flags": ["is_initialized_in_class"], "fullname": "builtins.UnicodeEncodeError.object", "name": "object", "type": "builtins.str"}}, "reason": {".class": "SymbolTableNode", "kind": "Mdef", "node": {".class": "Var", "flags": ["is_initialized_in_class"], "fullname": "builtins.UnicodeEncodeError.reason", "name": "reason", "type": "builtins.str"}}, "start": {".class": "SymbolTableNode", "kind": "Mdef", "node": {".class": "Var", "flags": ["is_initialized_in_class"], "fullname": "builtins.UnicodeEncodeError.start", "name": "start", "type": "builtins.int"}}}, "tuple_type": null, "type_vars": [], "typeddict_type": null}}, "UnicodeError": {".class": "SymbolTableNode", "kind": "Gdef", "node": {".class": "TypeInfo", "_promote": null, "abstract_attributes": [], "bases": ["builtins.ValueError"], "declared_metaclass": null, "defn": {".class": "ClassDef", "fullname": "builtins.UnicodeError", "name": "UnicodeError", "type_vars": []}, "flags": [], "fullname": "builtins.UnicodeError", "metaclass_type": null, "metadata": {}, "module_name": "builtins", "mro": ["builtins.UnicodeError", "builtins.ValueError", "builtins.Exception", "builtins.BaseException", "builtins.object"], "names": {".class": "SymbolTable"}, "tuple_type": null, "type_vars": [], "typeddict_type": null}}, "UnicodeTranslateError": {".class": "SymbolTableNode", "kind": "Gdef", "node": {".class": "TypeInfo", "_promote": null, "abstract_attributes": [], "bases": ["builtins.UnicodeError"], "declared_metaclass": null, "defn": {".class": "ClassDef", "fullname": "builtins.UnicodeTranslateError", "name": "UnicodeTranslateError", "type_vars": []}, "flags": [], "fullname": "builtins.UnicodeTranslateError", "metaclass_type": null, "metadata": {}, "module_name": "builtins", "mro": ["builtins.UnicodeTranslateError", "builtins.UnicodeError", "builtins.ValueError", "builtins.Exception", "builtins.BaseException", "builtins.object"], "names": {".class": "SymbolTable"}, "tuple_type": null, "type_vars": [], "typeddict_type": null}}, "UnicodeWarning": {".class": "SymbolTableNode", "kind": "Gdef", "node": {".class": "TypeInfo", "_promote": null, "abstract_attributes": [], "bases": ["builtins.Warning"], "declared_metaclass": null, "defn": {".class": "ClassDef", "fullname": "builtins.UnicodeWarning", "name": "UnicodeWarning", "type_vars": []}, "flags": [], "fullname": "builtins.UnicodeWarning", "metaclass_type": null, "metadata": {}, "module_name": "builtins", "mro": ["builtins.UnicodeWarning", "builtins.Warning", "builtins.Exception", "builtins.BaseException", "builtins.object"], "names": {".class": "SymbolTable"}, "tuple_type": null, "type_vars": [], "typeddict_type": null}}, "UserWarning": {".class": "SymbolTableNode", "kind": "Gdef", "node": {".class": "TypeInfo", "_promote": null, "abstract_attributes": [], "bases": ["builtins.Warning"], "declared_metaclass": null, "defn": {".class": "ClassDef", "fullname": "builtins.UserWarning", "name": "UserWarning", "type_vars": []}, "flags": [], "fullname": "builtins.UserWarning", "metaclass_type": null, "metadata": {}, "module_name": "builtins", "mro": ["builtins.UserWarning", "builtins.Warning", "builtins.Exception", "builtins.BaseException", "builtins.object"], "names": {".class": "SymbolTable"}, "tuple_type": null, "type_vars": [], "typeddict_type": null}}, "ValueError": {".class": "SymbolTableNode", "kind": "Gdef", "node": {".class": "TypeInfo", "_promote": null, "abstract_attributes": [], "bases": ["builtins.Exception"], "declared_metaclass": null, "defn": {".class": "ClassDef", "fullname": "builtins.ValueError", "name": "ValueError", "type_vars": []}, "flags": [], "fullname": "builtins.ValueError", "metaclass_type": null, "metadata": {}, "module_name": "builtins", "mro": ["builtins.ValueError", "builtins.Exception", "builtins.BaseException", "builtins.object"], "names": {".class": "SymbolTable"}, "tuple_type": null, "type_vars": [], "typeddict_type": null}}, "Warning": {".class": "SymbolTableNode", "kind": "Gdef", "node": {".class": "TypeInfo", "_promote": null, "abstract_attributes": [], "bases": ["builtins.Exception"], "declared_metaclass": null, "defn": {".class": "ClassDef", "fullname": "builtins.Warning", "name": "Warning", "type_vars": []}, "flags": [], "fullname": "builtins.Warning", "metaclass_type": null, "metadata": {}, "module_name": "builtins", "mro": ["builtins.Warning", "builtins.Exception", "builtins.BaseException", "builtins.object"], "names": {".class": "SymbolTable"}, "tuple_type": null, "type_vars": [], "typeddict_type": null}}, "WindowsError": {".class": "SymbolTableNode", "kind": "Gdef", "node": {".class": "TypeInfo", "_promote": null, "abstract_attributes": [], "bases": ["builtins.OSError"], "declared_metaclass": null, "defn": {".class": "ClassDef", "fullname": "builtins.WindowsError", "name": "WindowsError", "type_vars": []}, "flags": [], "fullname": "builtins.WindowsError", "metaclass_type": null, "metadata": {}, "module_name": "builtins", "mro": ["builtins.WindowsError", "builtins.OSError", "builtins.Exception", "builtins.BaseException", "builtins.object"], "names": {".class": "SymbolTable", "winerror": {".class": "SymbolTableNode", "kind": "Mdef", "node": {".class": "Var", "flags": ["is_initialized_in_class"], "fullname": "builtins.WindowsError.winerror", "name": "winerror", "type": "builtins.int"}}}, "tuple_type": null, "type_vars": [], "typeddict_type": null}}, "ZeroDivisionError": {".class": "SymbolTableNode", "kind": "Gdef", "node": {".class": "TypeInfo", "_promote": null, "abstract_attributes": [], "bases": ["builtins.ArithmeticError"], "declared_metaclass": null, "defn": {".class": "ClassDef", "fullname": "builtins.ZeroDivisionError", "name": "ZeroDivisionError", "type_vars": []}, "flags": [], "fullname": "builtins.ZeroDivisionError", "metaclass_type": null, "metadata": {}, "module_name": "builtins", "mro": ["builtins.ZeroDivisionError", "builtins.ArithmeticError", "builtins.Exception", "builtins.BaseException", "builtins.object"], "names": {".class": "SymbolTable"}, "tuple_type": null, "type_vars": [], "typeddict_type": null}}, "_KT": {".class": "SymbolTableNode", "kind": "Gdef", "node": {".class": "TypeVarExpr", "fullname": "builtins._KT", "name": "_KT", "upper_bound": "builtins.object", "values": [], "variance": 0}}, "_N2": {".class": "SymbolTableNode", "kind": "Gdef", "node": {".class": "TypeVarExpr", "fullname": "builtins._N2", "name": "_N2", "upper_bound": "builtins.object", "values": ["builtins.int", "builtins.float"], "variance": 0}}, "_PathLike": {".class": "SymbolTableNode", "kind": "Gdef", "node": {".class": "TypeInfo", "_promote": null, "abstract_attributes": [], "bases": ["builtins.object"], "declared_metaclass": null, "defn": {".class": "ClassDef", "fullname": "builtins._PathLike", "name": "_PathLike", "type_vars": [{".class": "TypeVarDef", "fullname": "typing.AnyStr", "id": 1, "name": "AnyStr", "upper_bound": "builtins.object", "values": ["builtins.str", "builtins.bytes"], "variance": 0}]}, "flags": [], "fullname": "builtins._PathLike", "metaclass_type": null, "metadata": {}, "module_name": "builtins", "mro": ["builtins._PathLike", "builtins.object"], "names": {".class": "SymbolTable", "__fspath__": {".class": "SymbolTableNode", "kind": "Mdef", "node": {".class": "FuncDef", "arg_kinds": [0], "arg_names": ["self"], "flags": [], "fullname": "builtins._PathLike.__fspath__", "name": "__fspath__", "type": {".class": "CallableType", "arg_kinds": [0], "arg_names": ["self"], "arg_types": [{".class": "Instance", "args": [{".class": "TypeVarType", "fullname": "typing.AnyStr", "id": 1, "name": "AnyStr", "upper_bound": "builtins.object", "values": ["builtins.str", "builtins.bytes"], "variance": 0}], "type_ref": "builtins._PathLike"}], "bound_args": [], "def_extras": {"first_arg": "self"}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "__fspath__ of _PathLike", "ret_type": {".class": "TypeVarType", "fullname": "typing.AnyStr", "id": 1, "name": "AnyStr", "upper_bound": "builtins.object", "values": ["builtins.str", "builtins.bytes"], "variance": 0}, "variables": []}}}}, "tuple_type": null, "type_vars": ["AnyStr"], "typeddict_type": null}}, "_S": {".class": "SymbolTableNode", "kind": "Gdef", "node": {".class": "TypeVarExpr", "fullname": "builtins._S", "name": "_S", "upper_bound": "builtins.object", "values": [], "variance": 0}}, "_StandardError": {".class": "SymbolTableNode", "kind": "Gdef", "node": {".class": "TypeAlias", "alias_tvars": [], "column": 4, "fullname": "builtins._StandardError", "line": 1457, "no_args": true, "normalized": false, "target": "builtins.Exception"}}, "_T": {".class": "SymbolTableNode", "kind": "Gdef", "node": {".class": "TypeVarExpr", "fullname": "builtins._T", "name": "_T", "upper_bound": "builtins.object", "values": [], "variance": 0}}, "_T1": {".class": "SymbolTableNode", "kind": "Gdef", "node": {".class": "TypeVarExpr", "fullname": "builtins._T1", "name": "_T1", "upper_bound": "builtins.object", "values": [], "variance": 0}}, "_T2": {".class": "SymbolTableNode", "kind": "Gdef", "node": {".class": "TypeVarExpr", "fullname": "builtins._T2", "name": "_T2", "upper_bound": "builtins.object", "values": [], "variance": 0}}, "_T3": {".class": "SymbolTableNode", "kind": "Gdef", "node": {".class": "TypeVarExpr", "fullname": "builtins._T3", "name": "_T3", "upper_bound": "builtins.object", "values": [], "variance": 0}}, "_T4": {".class": "SymbolTableNode", "kind": "Gdef", "node": {".class": "TypeVarExpr", "fullname": "builtins._T4", "name": "_T4", "upper_bound": "builtins.object", "values": [], "variance": 0}}, "_T5": {".class": "SymbolTableNode", "kind": "Gdef", "node": {".class": "TypeVarExpr", "fullname": "builtins._T5", "name": "_T5", "upper_bound": "builtins.object", "values": [], "variance": 0}}, "_TT": {".class": "SymbolTableNode", "kind": "Gdef", "node": {".class": "TypeVarExpr", "fullname": "builtins._TT", "name": "_TT", "upper_bound": "builtins.type", "values": [], "variance": 0}}, "_T_co": {".class": "SymbolTableNode", "kind": "Gdef", "node": {".class": "TypeVarExpr", "fullname": "builtins._T_co", "name": "_T_co", "upper_bound": "builtins.object", "values": [], "variance": 1}}, "_VT": {".class": "SymbolTableNode", "kind": "Gdef", "node": {".class": "TypeVarExpr", "fullname": "builtins._VT", "name": "_VT", "upper_bound": "builtins.object", "values": [], "variance": 0}}, "__debug__": {".class": "SymbolTableNode", "kind": "Gdef", "node": {".class": "Var", "flags": [], "fullname": "builtins.__debug__", "name": "__debug__", "type": "builtins.bool"}}, "__doc__": {".class": "SymbolTableNode", "kind": "Gdef", "node": {".class": "Var", "flags": [], "fullname": "builtins.__doc__", "name": "__doc__", "type": "builtins.str"}}, "__file__": {".class": "SymbolTableNode", "kind": "Gdef", "node": {".class": "Var", "flags": [], "fullname": "builtins.__file__", "name": "__file__", "type": "builtins.str"}}, "__import__": {".class": "SymbolTableNode", "kind": "Gdef", "node": {".class": "FuncDef", "arg_kinds": [0, 1, 1, 1, 1], "arg_names": ["name", "globals", "locals", "fromlist", "level"], "flags": [], "fullname": "builtins.__import__", "name": "__import__", "type": {".class": "CallableType", "arg_kinds": [0, 1, 1, 1, 1], "arg_names": ["name", "globals", "locals", "fromlist", "level"], "arg_types": ["builtins.str", {".class": "Instance", "args": ["builtins.str", {".class": "AnyType", "missing_import_name": null, "source_any": null, "type_of_any": 2}], "type_ref": "builtins.dict"}, {".class": "Instance", "args": ["builtins.str", {".class": "AnyType", "missing_import_name": null, "source_any": null, "type_of_any": 2}], "type_ref": "builtins.dict"}, {".class": "Instance", "args": ["builtins.str"], "type_ref": "builtins.list"}, "builtins.int"], "bound_args": [], "def_extras": {"first_arg": null}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "__import__", "ret_type": {".class": "AnyType", "missing_import_name": null, "source_any": null, "type_of_any": 2}, "variables": []}}}, "__name__": {".class": "SymbolTableNode", "kind": "Gdef", "node": {".class": "Var", "flags": [], "fullname": "builtins.__name__", "name": "__name__", "type": "builtins.str"}}, "__package__": {".class": "SymbolTableNode", "kind": "Gdef", "node": {".class": "Var", "flags": [], "fullname": "builtins.__package__", "name": "__package__", "type": "builtins.str"}}, "_mv_container_type": {".class": "SymbolTableNode", "kind": "Gdef", "node": {".class": "TypeAlias", "alias_tvars": [], "column": 4, "fullname": "builtins._mv_container_type", "line": 760, "no_args": true, "normalized": false, "target": "builtins.int"}}, "_str_base": {".class": "SymbolTableNode", "kind": "Gdef", "node": {".class": "TypeAlias", "alias_tvars": [], "column": 4, "fullname": "builtins._str_base", "line": 314, "no_args": true, "normalized": false, "target": "builtins.object"}}, "abs": {".class": "SymbolTableNode", "kind": "Gdef", "node": {".class": "FuncDef", "arg_kinds": [0], "arg_names": ["n"], "flags": [], "fullname": "builtins.abs", "name": "abs", "type": {".class": "CallableType", "arg_kinds": [0], "arg_names": ["n"], "arg_types": [{".class": "Instance", "args": [{".class": "TypeVarType", "fullname": "builtins._T", "id": -1, "name": "_T", "upper_bound": "builtins.object", "values": [], "variance": 0}], "type_ref": "typing.SupportsAbs"}], "bound_args": [], "def_extras": {"first_arg": null}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "abs", "ret_type": {".class": "TypeVarType", "fullname": "builtins._T", "id": -1, "name": "_T", "upper_bound": "builtins.object", "values": [], "variance": 0}, "variables": [{".class": "TypeVarDef", "fullname": "builtins._T", "id": -1, "name": "_T", "upper_bound": "builtins.object", "values": [], "variance": 0}]}}}, "all": {".class": "SymbolTableNode", "kind": "Gdef", "node": {".class": "FuncDef", "arg_kinds": [0], "arg_names": ["i"], "flags": [], "fullname": "builtins.all", "name": "all", "type": {".class": "CallableType", "arg_kinds": [0], "arg_names": ["i"], "arg_types": [{".class": "Instance", "args": ["builtins.object"], "type_ref": "typing.Iterable"}], "bound_args": [], "def_extras": {"first_arg": null}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "all", "ret_type": "builtins.bool", "variables": []}}}, "any": {".class": "SymbolTableNode", "kind": "Gdef", "node": {".class": "FuncDef", "arg_kinds": [0], "arg_names": ["i"], "flags": [], "fullname": "builtins.any", "name": "any", "type": {".class": "CallableType", "arg_kinds": [0], "arg_names": ["i"], "arg_types": [{".class": "Instance", "args": ["builtins.object"], "type_ref": "typing.Iterable"}], "bound_args": [], "def_extras": {"first_arg": null}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "any", "ret_type": "builtins.bool", "variables": []}}}, "ascii": {".class": "SymbolTableNode", "kind": "Gdef", "node": {".class": "FuncDef", "arg_kinds": [0], "arg_names": ["o"], "flags": ["is_conditional"], "fullname": "builtins.ascii", "name": "ascii", "type": {".class": "CallableType", "arg_kinds": [0], "arg_names": ["o"], "arg_types": ["builtins.object"], "bound_args": [], "def_extras": {"first_arg": null}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "ascii", "ret_type": "builtins.str", "variables": []}}}, "bin": {".class": "SymbolTableNode", "kind": "Gdef", "node": {".class": "FuncDef", "arg_kinds": [0], "arg_names": ["number"], "flags": [], "fullname": "builtins.bin", "name": "bin", "type": {".class": "CallableType", "arg_kinds": [0], "arg_names": ["number"], "arg_types": ["builtins.int"], "bound_args": [], "def_extras": {"first_arg": null}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "bin", "ret_type": "builtins.str", "variables": []}}}, "bool": {".class": "SymbolTableNode", "kind": "Gdef", "node": {".class": "TypeInfo", "_promote": null, "abstract_attributes": [], "bases": ["builtins.int"], "declared_metaclass": null, "defn": {".class": "ClassDef", "fullname": "builtins.bool", "name": "bool", "type_vars": []}, "flags": [], "fullname": "builtins.bool", "metaclass_type": null, "metadata": {}, "module_name": "builtins", "mro": ["builtins.bool", "builtins.int", "builtins.object"], "names": {".class": "SymbolTable", "__and__": {".class": "SymbolTableNode", "kind": "Mdef", "node": {".class": "OverloadedFuncDef", "flags": [], "fullname": "builtins.bool.__and__", "impl": null, "items": [{".class": "Decorator", "func": {".class": "FuncDef", "arg_kinds": [0, 0], "arg_names": ["self", "x"], "flags": ["is_overload", "is_decorated"], "fullname": "builtins.bool.__and__", "name": "__and__", "type": {".class": "CallableType", "arg_kinds": [0, 0], "arg_names": [null, null], "arg_types": ["builtins.bool", "builtins.bool"], "bound_args": [], "def_extras": {"first_arg": "self"}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "__and__ of bool", "ret_type": "builtins.bool", "variables": []}}, "is_overload": true, "var": {".class": "Var", "flags": [], "fullname": null, "name": "__and__", "type": null}}, {".class": "Decorator", "func": {".class": "FuncDef", "arg_kinds": [0, 0], "arg_names": ["self", "x"], "flags": ["is_overload", "is_decorated"], "fullname": "builtins.bool.__and__", "name": "__and__", "type": {".class": "CallableType", "arg_kinds": [0, 0], "arg_names": [null, null], "arg_types": ["builtins.bool", "builtins.int"], "bound_args": [], "def_extras": {"first_arg": "self"}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "__and__ of bool", "ret_type": "builtins.int", "variables": []}}, "is_overload": true, "var": {".class": "Var", "flags": [], "fullname": null, "name": "__and__", "type": null}}], "type": {".class": "Overloaded", "items": [{".class": "CallableType", "arg_kinds": [0, 0], "arg_names": [null, null], "arg_types": ["builtins.bool", "builtins.bool"], "bound_args": [], "def_extras": {"first_arg": "self"}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "__and__ of bool", "ret_type": "builtins.bool", "variables": []}, {".class": "CallableType", "arg_kinds": [0, 0], "arg_names": [null, null], "arg_types": ["builtins.bool", "builtins.int"], "bound_args": [], "def_extras": {"first_arg": "self"}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "__and__ of bool", "ret_type": "builtins.int", "variables": []}]}}}, "__getnewargs__": {".class": "SymbolTableNode", "kind": "Mdef", "node": {".class": "FuncDef", "arg_kinds": [0], "arg_names": ["self"], "flags": [], "fullname": "builtins.bool.__getnewargs__", "name": "__getnewargs__", "type": {".class": "CallableType", "arg_kinds": [0], "arg_names": ["self"], "arg_types": ["builtins.bool"], "bound_args": [], "def_extras": {"first_arg": "self"}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "__getnewargs__ of bool", "ret_type": {".class": "TupleType", "fallback": {".class": "Instance", "args": [{".class": "AnyType", "missing_import_name": null, "source_any": null, "type_of_any": 6}], "type_ref": "builtins.tuple"}, "implicit": false, "items": ["builtins.int"]}, "variables": []}}}, "__init__": {".class": "SymbolTableNode", "kind": "Mdef", "node": {".class": "FuncDef", "arg_kinds": [0, 1], "arg_names": ["self", "o"], "flags": [], "fullname": "builtins.bool.__init__", "name": "__init__", "type": {".class": "CallableType", "arg_kinds": [0, 1], "arg_names": ["self", "o"], "arg_types": ["builtins.bool", "builtins.object"], "bound_args": [], "def_extras": {"first_arg": "self"}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "__init__ of bool", "ret_type": {".class": "NoneTyp"}, "variables": []}}}, "__or__": {".class": "SymbolTableNode", "kind": "Mdef", "node": {".class": "OverloadedFuncDef", "flags": [], "fullname": "builtins.bool.__or__", "impl": null, "items": [{".class": "Decorator", "func": {".class": "FuncDef", "arg_kinds": [0, 0], "arg_names": ["self", "x"], "flags": ["is_overload", "is_decorated"], "fullname": "builtins.bool.__or__", "name": "__or__", "type": {".class": "CallableType", "arg_kinds": [0, 0], "arg_names": [null, null], "arg_types": ["builtins.bool", "builtins.bool"], "bound_args": [], "def_extras": {"first_arg": "self"}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "__or__ of bool", "ret_type": "builtins.bool", "variables": []}}, "is_overload": true, "var": {".class": "Var", "flags": [], "fullname": null, "name": "__or__", "type": null}}, {".class": "Decorator", "func": {".class": "FuncDef", "arg_kinds": [0, 0], "arg_names": ["self", "x"], "flags": ["is_overload", "is_decorated"], "fullname": "builtins.bool.__or__", "name": "__or__", "type": {".class": "CallableType", "arg_kinds": [0, 0], "arg_names": [null, null], "arg_types": ["builtins.bool", "builtins.int"], "bound_args": [], "def_extras": {"first_arg": "self"}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "__or__ of bool", "ret_type": "builtins.int", "variables": []}}, "is_overload": true, "var": {".class": "Var", "flags": [], "fullname": null, "name": "__or__", "type": null}}], "type": {".class": "Overloaded", "items": [{".class": "CallableType", "arg_kinds": [0, 0], "arg_names": [null, null], "arg_types": ["builtins.bool", "builtins.bool"], "bound_args": [], "def_extras": {"first_arg": "self"}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "__or__ of bool", "ret_type": "builtins.bool", "variables": []}, {".class": "CallableType", "arg_kinds": [0, 0], "arg_names": [null, null], "arg_types": ["builtins.bool", "builtins.int"], "bound_args": [], "def_extras": {"first_arg": "self"}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "__or__ of bool", "ret_type": "builtins.int", "variables": []}]}}}, "__rand__": {".class": "SymbolTableNode", "kind": "Mdef", "node": {".class": "OverloadedFuncDef", "flags": [], "fullname": "builtins.bool.__rand__", "impl": null, "items": [{".class": "Decorator", "func": {".class": "FuncDef", "arg_kinds": [0, 0], "arg_names": ["self", "x"], "flags": ["is_overload", "is_decorated"], "fullname": "builtins.bool.__rand__", "name": "__rand__", "type": {".class": "CallableType", "arg_kinds": [0, 0], "arg_names": [null, null], "arg_types": ["builtins.bool", "builtins.bool"], "bound_args": [], "def_extras": {"first_arg": "self"}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "__rand__ of bool", "ret_type": "builtins.bool", "variables": []}}, "is_overload": true, "var": {".class": "Var", "flags": [], "fullname": null, "name": "__rand__", "type": null}}, {".class": "Decorator", "func": {".class": "FuncDef", "arg_kinds": [0, 0], "arg_names": ["self", "x"], "flags": ["is_overload", "is_decorated"], "fullname": "builtins.bool.__rand__", "name": "__rand__", "type": {".class": "CallableType", "arg_kinds": [0, 0], "arg_names": [null, null], "arg_types": ["builtins.bool", "builtins.int"], "bound_args": [], "def_extras": {"first_arg": "self"}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "__rand__ of bool", "ret_type": "builtins.int", "variables": []}}, "is_overload": true, "var": {".class": "Var", "flags": [], "fullname": null, "name": "__rand__", "type": null}}], "type": {".class": "Overloaded", "items": [{".class": "CallableType", "arg_kinds": [0, 0], "arg_names": [null, null], "arg_types": ["builtins.bool", "builtins.bool"], "bound_args": [], "def_extras": {"first_arg": "self"}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "__rand__ of bool", "ret_type": "builtins.bool", "variables": []}, {".class": "CallableType", "arg_kinds": [0, 0], "arg_names": [null, null], "arg_types": ["builtins.bool", "builtins.int"], "bound_args": [], "def_extras": {"first_arg": "self"}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "__rand__ of bool", "ret_type": "builtins.int", "variables": []}]}}}, "__ror__": {".class": "SymbolTableNode", "kind": "Mdef", "node": {".class": "OverloadedFuncDef", "flags": [], "fullname": "builtins.bool.__ror__", "impl": null, "items": [{".class": "Decorator", "func": {".class": "FuncDef", "arg_kinds": [0, 0], "arg_names": ["self", "x"], "flags": ["is_overload", "is_decorated"], "fullname": "builtins.bool.__ror__", "name": "__ror__", "type": {".class": "CallableType", "arg_kinds": [0, 0], "arg_names": [null, null], "arg_types": ["builtins.bool", "builtins.bool"], "bound_args": [], "def_extras": {"first_arg": "self"}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "__ror__ of bool", "ret_type": "builtins.bool", "variables": []}}, "is_overload": true, "var": {".class": "Var", "flags": [], "fullname": null, "name": "__ror__", "type": null}}, {".class": "Decorator", "func": {".class": "FuncDef", "arg_kinds": [0, 0], "arg_names": ["self", "x"], "flags": ["is_overload", "is_decorated"], "fullname": "builtins.bool.__ror__", "name": "__ror__", "type": {".class": "CallableType", "arg_kinds": [0, 0], "arg_names": [null, null], "arg_types": ["builtins.bool", "builtins.int"], "bound_args": [], "def_extras": {"first_arg": "self"}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "__ror__ of bool", "ret_type": "builtins.int", "variables": []}}, "is_overload": true, "var": {".class": "Var", "flags": [], "fullname": null, "name": "__ror__", "type": null}}], "type": {".class": "Overloaded", "items": [{".class": "CallableType", "arg_kinds": [0, 0], "arg_names": [null, null], "arg_types": ["builtins.bool", "builtins.bool"], "bound_args": [], "def_extras": {"first_arg": "self"}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "__ror__ of bool", "ret_type": "builtins.bool", "variables": []}, {".class": "CallableType", "arg_kinds": [0, 0], "arg_names": [null, null], "arg_types": ["builtins.bool", "builtins.int"], "bound_args": [], "def_extras": {"first_arg": "self"}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "__ror__ of bool", "ret_type": "builtins.int", "variables": []}]}}}, "__rxor__": {".class": "SymbolTableNode", "kind": "Mdef", "node": {".class": "OverloadedFuncDef", "flags": [], "fullname": "builtins.bool.__rxor__", "impl": null, "items": [{".class": "Decorator", "func": {".class": "FuncDef", "arg_kinds": [0, 0], "arg_names": ["self", "x"], "flags": ["is_overload", "is_decorated"], "fullname": "builtins.bool.__rxor__", "name": "__rxor__", "type": {".class": "CallableType", "arg_kinds": [0, 0], "arg_names": [null, null], "arg_types": ["builtins.bool", "builtins.bool"], "bound_args": [], "def_extras": {"first_arg": "self"}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "__rxor__ of bool", "ret_type": "builtins.bool", "variables": []}}, "is_overload": true, "var": {".class": "Var", "flags": [], "fullname": null, "name": "__rxor__", "type": null}}, {".class": "Decorator", "func": {".class": "FuncDef", "arg_kinds": [0, 0], "arg_names": ["self", "x"], "flags": ["is_overload", "is_decorated"], "fullname": "builtins.bool.__rxor__", "name": "__rxor__", "type": {".class": "CallableType", "arg_kinds": [0, 0], "arg_names": [null, null], "arg_types": ["builtins.bool", "builtins.int"], "bound_args": [], "def_extras": {"first_arg": "self"}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "__rxor__ of bool", "ret_type": "builtins.int", "variables": []}}, "is_overload": true, "var": {".class": "Var", "flags": [], "fullname": null, "name": "__rxor__", "type": null}}], "type": {".class": "Overloaded", "items": [{".class": "CallableType", "arg_kinds": [0, 0], "arg_names": [null, null], "arg_types": ["builtins.bool", "builtins.bool"], "bound_args": [], "def_extras": {"first_arg": "self"}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "__rxor__ of bool", "ret_type": "builtins.bool", "variables": []}, {".class": "CallableType", "arg_kinds": [0, 0], "arg_names": [null, null], "arg_types": ["builtins.bool", "builtins.int"], "bound_args": [], "def_extras": {"first_arg": "self"}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "__rxor__ of bool", "ret_type": "builtins.int", "variables": []}]}}}, "__xor__": {".class": "SymbolTableNode", "kind": "Mdef", "node": {".class": "OverloadedFuncDef", "flags": [], "fullname": "builtins.bool.__xor__", "impl": null, "items": [{".class": "Decorator", "func": {".class": "FuncDef", "arg_kinds": [0, 0], "arg_names": ["self", "x"], "flags": ["is_overload", "is_decorated"], "fullname": "builtins.bool.__xor__", "name": "__xor__", "type": {".class": "CallableType", "arg_kinds": [0, 0], "arg_names": [null, null], "arg_types": ["builtins.bool", "builtins.bool"], "bound_args": [], "def_extras": {"first_arg": "self"}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "__xor__ of bool", "ret_type": "builtins.bool", "variables": []}}, "is_overload": true, "var": {".class": "Var", "flags": [], "fullname": null, "name": "__xor__", "type": null}}, {".class": "Decorator", "func": {".class": "FuncDef", "arg_kinds": [0, 0], "arg_names": ["self", "x"], "flags": ["is_overload", "is_decorated"], "fullname": "builtins.bool.__xor__", "name": "__xor__", "type": {".class": "CallableType", "arg_kinds": [0, 0], "arg_names": [null, null], "arg_types": ["builtins.bool", "builtins.int"], "bound_args": [], "def_extras": {"first_arg": "self"}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "__xor__ of bool", "ret_type": "builtins.int", "variables": []}}, "is_overload": true, "var": {".class": "Var", "flags": [], "fullname": null, "name": "__xor__", "type": null}}], "type": {".class": "Overloaded", "items": [{".class": "CallableType", "arg_kinds": [0, 0], "arg_names": [null, null], "arg_types": ["builtins.bool", "builtins.bool"], "bound_args": [], "def_extras": {"first_arg": "self"}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "__xor__ of bool", "ret_type": "builtins.bool", "variables": []}, {".class": "CallableType", "arg_kinds": [0, 0], "arg_names": [null, null], "arg_types": ["builtins.bool", "builtins.int"], "bound_args": [], "def_extras": {"first_arg": "self"}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "__xor__ of bool", "ret_type": "builtins.int", "variables": []}]}}}}, "tuple_type": null, "type_vars": [], "typeddict_type": null}}, "breakpoint": {".class": "SymbolTableNode", "kind": "Gdef", "node": {".class": "FuncDef", "arg_kinds": [2, 4], "arg_names": ["args", "kws"], "flags": ["is_conditional"], "fullname": "builtins.breakpoint", "name": "breakpoint", "type": {".class": "CallableType", "arg_kinds": [2, 4], "arg_names": ["args", "kws"], "arg_types": [{".class": "AnyType", "missing_import_name": null, "source_any": null, "type_of_any": 2}, {".class": "AnyType", "missing_import_name": null, "source_any": null, "type_of_any": 2}], "bound_args": [], "def_extras": {"first_arg": null}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "breakpoint", "ret_type": {".class": "NoneTyp"}, "variables": []}}}, "bytearray": {".class": "SymbolTableNode", "kind": "Gdef", "node": {".class": "TypeInfo", "_promote": "builtins.bytes", "abstract_attributes": [], "bases": [{".class": "Instance", "args": ["builtins.int"], "type_ref": "typing.MutableSequence"}, "typing.ByteString"], "declared_metaclass": null, "defn": {".class": "ClassDef", "fullname": "builtins.bytearray", "name": "bytearray", "type_vars": []}, "flags": [], "fullname": "builtins.bytearray", "metaclass_type": "abc.ABCMeta", "metadata": {}, "module_name": "builtins", "mro": ["builtins.bytearray", "typing.MutableSequence", "typing.ByteString", "typing.Sequence", "typing.Collection", "typing.Iterable", "typing.Container", "typing.Reversible", "builtins.object"], "names": {".class": "SymbolTable", "__add__": {".class": "SymbolTableNode", "kind": "Mdef", "node": {".class": "FuncDef", "arg_kinds": [0, 0], "arg_names": ["self", "s"], "flags": [], "fullname": "builtins.bytearray.__add__", "name": "__add__", "type": {".class": "CallableType", "arg_kinds": [0, 0], "arg_names": [null, null], "arg_types": ["builtins.bytearray", "builtins.bytes"], "bound_args": [], "def_extras": {"first_arg": "self"}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "__add__ of bytearray", "ret_type": "builtins.bytearray", "variables": []}}}, "__contains__": {".class": "SymbolTableNode", "kind": "Mdef", "node": {".class": "FuncDef", "arg_kinds": [0, 0], "arg_names": ["self", "o"], "flags": [], "fullname": "builtins.bytearray.__contains__", "name": "__contains__", "type": {".class": "CallableType", "arg_kinds": [0, 0], "arg_names": [null, null], "arg_types": ["builtins.bytearray", "builtins.object"], "bound_args": [], "def_extras": {"first_arg": "self"}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "__contains__ of bytearray", "ret_type": "builtins.bool", "variables": []}}}, "__delitem__": {".class": "SymbolTableNode", "kind": "Mdef", "node": {".class": "FuncDef", "arg_kinds": [0, 0], "arg_names": ["self", "i"], "flags": [], "fullname": "builtins.bytearray.__delitem__", "name": "__delitem__", "type": {".class": "CallableType", "arg_kinds": [0, 0], "arg_names": [null, null], "arg_types": ["builtins.bytearray", {".class": "UnionType", "items": ["builtins.int", "builtins.slice"]}], "bound_args": [], "def_extras": {"first_arg": "self"}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "__delitem__ of bytearray", "ret_type": {".class": "NoneTyp"}, "variables": []}}}, "__eq__": {".class": "SymbolTableNode", "kind": "Mdef", "node": {".class": "FuncDef", "arg_kinds": [0, 0], "arg_names": ["self", "x"], "flags": [], "fullname": "builtins.bytearray.__eq__", "name": "__eq__", "type": {".class": "CallableType", "arg_kinds": [0, 0], "arg_names": [null, null], "arg_types": ["builtins.bytearray", "builtins.object"], "bound_args": [], "def_extras": {"first_arg": "self"}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "__eq__ of bytearray", "ret_type": "builtins.bool", "variables": []}}}, "__float__": {".class": "SymbolTableNode", "kind": "Mdef", "node": {".class": "FuncDef", "arg_kinds": [0], "arg_names": ["self"], "flags": [], "fullname": "builtins.bytearray.__float__", "name": "__float__", "type": {".class": "CallableType", "arg_kinds": [0], "arg_names": [null], "arg_types": ["builtins.bytearray"], "bound_args": [], "def_extras": {"first_arg": "self"}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "__float__ of bytearray", "ret_type": "builtins.float", "variables": []}}}, "__ge__": {".class": "SymbolTableNode", "kind": "Mdef", "node": {".class": "FuncDef", "arg_kinds": [0, 0], "arg_names": ["self", "x"], "flags": [], "fullname": "builtins.bytearray.__ge__", "name": "__ge__", "type": {".class": "CallableType", "arg_kinds": [0, 0], "arg_names": [null, null], "arg_types": ["builtins.bytearray", "builtins.bytes"], "bound_args": [], "def_extras": {"first_arg": "self"}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "__ge__ of bytearray", "ret_type": "builtins.bool", "variables": []}}}, "__getitem__": {".class": "SymbolTableNode", "kind": "Mdef", "node": {".class": "OverloadedFuncDef", "flags": [], "fullname": "builtins.bytearray.__getitem__", "impl": null, "items": [{".class": "Decorator", "func": {".class": "FuncDef", "arg_kinds": [0, 0], "arg_names": ["self", "i"], "flags": ["is_overload", "is_decorated"], "fullname": "builtins.bytearray.__getitem__", "name": "__getitem__", "type": {".class": "CallableType", "arg_kinds": [0, 0], "arg_names": [null, null], "arg_types": ["builtins.bytearray", "builtins.int"], "bound_args": [], "def_extras": {"first_arg": "self"}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "__getitem__ of bytearray", "ret_type": "builtins.int", "variables": []}}, "is_overload": true, "var": {".class": "Var", "flags": [], "fullname": null, "name": "__getitem__", "type": null}}, {".class": "Decorator", "func": {".class": "FuncDef", "arg_kinds": [0, 0], "arg_names": ["self", "s"], "flags": ["is_overload", "is_decorated"], "fullname": "builtins.bytearray.__getitem__", "name": "__getitem__", "type": {".class": "CallableType", "arg_kinds": [0, 0], "arg_names": [null, null], "arg_types": ["builtins.bytearray", "builtins.slice"], "bound_args": [], "def_extras": {"first_arg": "self"}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "__getitem__ of bytearray", "ret_type": "builtins.bytearray", "variables": []}}, "is_overload": true, "var": {".class": "Var", "flags": [], "fullname": null, "name": "__getitem__", "type": null}}], "type": {".class": "Overloaded", "items": [{".class": "CallableType", "arg_kinds": [0, 0], "arg_names": [null, null], "arg_types": ["builtins.bytearray", "builtins.int"], "bound_args": [], "def_extras": {"first_arg": "self"}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "__getitem__ of bytearray", "ret_type": "builtins.int", "variables": []}, {".class": "CallableType", "arg_kinds": [0, 0], "arg_names": [null, null], "arg_types": ["builtins.bytearray", "builtins.slice"], "bound_args": [], "def_extras": {"first_arg": "self"}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "__getitem__ of bytearray", "ret_type": "builtins.bytearray", "variables": []}]}}}, "__gt__": {".class": "SymbolTableNode", "kind": "Mdef", "node": {".class": "FuncDef", "arg_kinds": [0, 0], "arg_names": ["self", "x"], "flags": [], "fullname": "builtins.bytearray.__gt__", "name": "__gt__", "type": {".class": "CallableType", "arg_kinds": [0, 0], "arg_names": [null, null], "arg_types": ["builtins.bytearray", "builtins.bytes"], "bound_args": [], "def_extras": {"first_arg": "self"}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "__gt__ of bytearray", "ret_type": "builtins.bool", "variables": []}}}, "__hash__": {".class": "SymbolTableNode", "kind": "Mdef", "node": {".class": "FuncDef", "arg_kinds": [0], "arg_names": ["self"], "flags": [], "fullname": "builtins.bytearray.__hash__", "name": "__hash__", "type": {".class": "CallableType", "arg_kinds": [0], "arg_names": ["self"], "arg_types": ["builtins.bytearray"], "bound_args": [], "def_extras": {"first_arg": "self"}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "__hash__ of bytearray", "ret_type": "builtins.int", "variables": []}}}, "__iadd__": {".class": "SymbolTableNode", "kind": "Mdef", "node": {".class": "FuncDef", "arg_kinds": [0, 0], "arg_names": ["self", "s"], "flags": ["is_conditional"], "fullname": "builtins.bytearray.__iadd__", "name": "__iadd__", "type": {".class": "CallableType", "arg_kinds": [0, 0], "arg_names": [null, null], "arg_types": ["builtins.bytearray", {".class": "Instance", "args": ["builtins.int"], "type_ref": "typing.Iterable"}], "bound_args": [], "def_extras": {"first_arg": "self"}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "__iadd__ of bytearray", "ret_type": "builtins.bytearray", "variables": []}}}, "__imul__": {".class": "SymbolTableNode", "kind": "Mdef", "node": {".class": "FuncDef", "arg_kinds": [0, 0], "arg_names": ["self", "n"], "flags": ["is_conditional"], "fullname": "builtins.bytearray.__imul__", "name": "__imul__", "type": {".class": "CallableType", "arg_kinds": [0, 0], "arg_names": [null, null], "arg_types": ["builtins.bytearray", "builtins.int"], "bound_args": [], "def_extras": {"first_arg": "self"}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "__imul__ of bytearray", "ret_type": "builtins.bytearray", "variables": []}}}, "__init__": {".class": "SymbolTableNode", "kind": "Mdef", "node": {".class": "OverloadedFuncDef", "flags": [], "fullname": "builtins.bytearray.__init__", "impl": null, "items": [{".class": "Decorator", "func": {".class": "FuncDef", "arg_kinds": [0], "arg_names": ["self"], "flags": ["is_overload", "is_decorated", "is_conditional"], "fullname": "builtins.bytearray.__init__", "name": "__init__", "type": {".class": "CallableType", "arg_kinds": [0], "arg_names": ["self"], "arg_types": ["builtins.bytearray"], "bound_args": [], "def_extras": {"first_arg": "self"}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "__init__ of bytearray", "ret_type": {".class": "NoneTyp"}, "variables": []}}, "is_overload": true, "var": {".class": "Var", "flags": [], "fullname": null, "name": "__init__", "type": null}}, {".class": "Decorator", "func": {".class": "FuncDef", "arg_kinds": [0, 0], "arg_names": ["self", "ints"], "flags": ["is_overload", "is_decorated", "is_conditional"], "fullname": "builtins.bytearray.__init__", "name": "__init__", "type": {".class": "CallableType", "arg_kinds": [0, 0], "arg_names": ["self", "ints"], "arg_types": ["builtins.bytearray", {".class": "Instance", "args": ["builtins.int"], "type_ref": "typing.Iterable"}], "bound_args": [], "def_extras": {"first_arg": "self"}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "__init__ of bytearray", "ret_type": {".class": "NoneTyp"}, "variables": []}}, "is_overload": true, "var": {".class": "Var", "flags": [], "fullname": null, "name": "__init__", "type": null}}, {".class": "Decorator", "func": {".class": "FuncDef", "arg_kinds": [0, 0, 0, 1], "arg_names": ["self", "string", "encoding", "errors"], "flags": ["is_overload", "is_decorated", "is_conditional"], "fullname": "builtins.bytearray.__init__", "name": "__init__", "type": {".class": "CallableType", "arg_kinds": [0, 0, 0, 1], "arg_names": ["self", "string", "encoding", "errors"], "arg_types": ["builtins.bytearray", "builtins.str", "builtins.str", "builtins.str"], "bound_args": [], "def_extras": {"first_arg": "self"}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "__init__ of bytearray", "ret_type": {".class": "NoneTyp"}, "variables": []}}, "is_overload": true, "var": {".class": "Var", "flags": [], "fullname": null, "name": "__init__", "type": null}}, {".class": "Decorator", "func": {".class": "FuncDef", "arg_kinds": [0, 0], "arg_names": ["self", "length"], "flags": ["is_overload", "is_decorated", "is_conditional"], "fullname": "builtins.bytearray.__init__", "name": "__init__", "type": {".class": "CallableType", "arg_kinds": [0, 0], "arg_names": ["self", "length"], "arg_types": ["builtins.bytearray", "builtins.int"], "bound_args": [], "def_extras": {"first_arg": "self"}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "__init__ of bytearray", "ret_type": {".class": "NoneTyp"}, "variables": []}}, "is_overload": true, "var": {".class": "Var", "flags": [], "fullname": null, "name": "__init__", "type": null}}], "type": {".class": "Overloaded", "items": [{".class": "CallableType", "arg_kinds": [0], "arg_names": ["self"], "arg_types": ["builtins.bytearray"], "bound_args": [], "def_extras": {"first_arg": "self"}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "__init__ of bytearray", "ret_type": {".class": "NoneTyp"}, "variables": []}, {".class": "CallableType", "arg_kinds": [0, 0], "arg_names": ["self", "ints"], "arg_types": ["builtins.bytearray", {".class": "Instance", "args": ["builtins.int"], "type_ref": "typing.Iterable"}], "bound_args": [], "def_extras": {"first_arg": "self"}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "__init__ of bytearray", "ret_type": {".class": "NoneTyp"}, "variables": []}, {".class": "CallableType", "arg_kinds": [0, 0, 0, 1], "arg_names": ["self", "string", "encoding", "errors"], "arg_types": ["builtins.bytearray", "builtins.str", "builtins.str", "builtins.str"], "bound_args": [], "def_extras": {"first_arg": "self"}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "__init__ of bytearray", "ret_type": {".class": "NoneTyp"}, "variables": []}, {".class": "CallableType", "arg_kinds": [0, 0], "arg_names": ["self", "length"], "arg_types": ["builtins.bytearray", "builtins.int"], "bound_args": [], "def_extras": {"first_arg": "self"}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "__init__ of bytearray", "ret_type": {".class": "NoneTyp"}, "variables": []}]}}}, "__int__": {".class": "SymbolTableNode", "kind": "Mdef", "node": {".class": "FuncDef", "arg_kinds": [0], "arg_names": ["self"], "flags": [], "fullname": "builtins.bytearray.__int__", "name": "__int__", "type": {".class": "CallableType", "arg_kinds": [0], "arg_names": [null], "arg_types": ["builtins.bytearray"], "bound_args": [], "def_extras": {"first_arg": "self"}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "__int__ of bytearray", "ret_type": "builtins.int", "variables": []}}}, "__iter__": {".class": "SymbolTableNode", "kind": "Mdef", "node": {".class": "FuncDef", "arg_kinds": [0], "arg_names": ["self"], "flags": [], "fullname": "builtins.bytearray.__iter__", "name": "__iter__", "type": {".class": "CallableType", "arg_kinds": [0], "arg_names": [null], "arg_types": ["builtins.bytearray"], "bound_args": [], "def_extras": {"first_arg": "self"}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "__iter__ of bytearray", "ret_type": {".class": "Instance", "args": ["builtins.int"], "type_ref": "typing.Iterator"}, "variables": []}}}, "__le__": {".class": "SymbolTableNode", "kind": "Mdef", "node": {".class": "FuncDef", "arg_kinds": [0, 0], "arg_names": ["self", "x"], "flags": [], "fullname": "builtins.bytearray.__le__", "name": "__le__", "type": {".class": "CallableType", "arg_kinds": [0, 0], "arg_names": [null, null], "arg_types": ["builtins.bytearray", "builtins.bytes"], "bound_args": [], "def_extras": {"first_arg": "self"}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "__le__ of bytearray", "ret_type": "builtins.bool", "variables": []}}}, "__len__": {".class": "SymbolTableNode", "kind": "Mdef", "node": {".class": "FuncDef", "arg_kinds": [0], "arg_names": ["self"], "flags": [], "fullname": "builtins.bytearray.__len__", "name": "__len__", "type": {".class": "CallableType", "arg_kinds": [0], "arg_names": [null], "arg_types": ["builtins.bytearray"], "bound_args": [], "def_extras": {"first_arg": "self"}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "__len__ of bytearray", "ret_type": "builtins.int", "variables": []}}}, "__lt__": {".class": "SymbolTableNode", "kind": "Mdef", "node": {".class": "FuncDef", "arg_kinds": [0, 0], "arg_names": ["self", "x"], "flags": [], "fullname": "builtins.bytearray.__lt__", "name": "__lt__", "type": {".class": "CallableType", "arg_kinds": [0, 0], "arg_names": [null, null], "arg_types": ["builtins.bytearray", "builtins.bytes"], "bound_args": [], "def_extras": {"first_arg": "self"}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "__lt__ of bytearray", "ret_type": "builtins.bool", "variables": []}}}, "__mod__": {".class": "SymbolTableNode", "kind": "Mdef", "node": {".class": "FuncDef", "arg_kinds": [0, 0], "arg_names": ["self", "value"], "flags": ["is_conditional"], "fullname": "builtins.bytearray.__mod__", "name": "__mod__", "type": {".class": "CallableType", "arg_kinds": [0, 0], "arg_names": [null, null], "arg_types": ["builtins.bytearray", {".class": "AnyType", "missing_import_name": null, "source_any": null, "type_of_any": 2}], "bound_args": [], "def_extras": {"first_arg": "self"}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "__mod__ of bytearray", "ret_type": "builtins.bytes", "variables": []}}}, "__mul__": {".class": "SymbolTableNode", "kind": "Mdef", "node": {".class": "FuncDef", "arg_kinds": [0, 0], "arg_names": ["self", "n"], "flags": [], "fullname": "builtins.bytearray.__mul__", "name": "__mul__", "type": {".class": "CallableType", "arg_kinds": [0, 0], "arg_names": [null, null], "arg_types": ["builtins.bytearray", "builtins.int"], "bound_args": [], "def_extras": {"first_arg": "self"}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "__mul__ of bytearray", "ret_type": "builtins.bytearray", "variables": []}}}, "__ne__": {".class": "SymbolTableNode", "kind": "Mdef", "node": {".class": "FuncDef", "arg_kinds": [0, 0], "arg_names": ["self", "x"], "flags": [], "fullname": "builtins.bytearray.__ne__", "name": "__ne__", "type": {".class": "CallableType", "arg_kinds": [0, 0], "arg_names": [null, null], "arg_types": ["builtins.bytearray", "builtins.object"], "bound_args": [], "def_extras": {"first_arg": "self"}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "__ne__ of bytearray", "ret_type": "builtins.bool", "variables": []}}}, "__repr__": {".class": "SymbolTableNode", "kind": "Mdef", "node": {".class": "FuncDef", "arg_kinds": [0], "arg_names": ["self"], "flags": [], "fullname": "builtins.bytearray.__repr__", "name": "__repr__", "type": {".class": "CallableType", "arg_kinds": [0], "arg_names": [null], "arg_types": ["builtins.bytearray"], "bound_args": [], "def_extras": {"first_arg": "self"}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "__repr__ of bytearray", "ret_type": "builtins.str", "variables": []}}}, "__rmul__": {".class": "SymbolTableNode", "kind": "Mdef", "node": {".class": "FuncDef", "arg_kinds": [0, 0], "arg_names": ["self", "n"], "flags": ["is_conditional"], "fullname": "builtins.bytearray.__rmul__", "name": "__rmul__", "type": {".class": "CallableType", "arg_kinds": [0, 0], "arg_names": [null, null], "arg_types": ["builtins.bytearray", "builtins.int"], "bound_args": [], "def_extras": {"first_arg": "self"}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "__rmul__ of bytearray", "ret_type": "builtins.bytearray", "variables": []}}}, "__setitem__": {".class": "SymbolTableNode", "kind": "Mdef", "node": {".class": "OverloadedFuncDef", "flags": [], "fullname": "builtins.bytearray.__setitem__", "impl": null, "items": [{".class": "Decorator", "func": {".class": "FuncDef", "arg_kinds": [0, 0, 0], "arg_names": ["self", "i", "x"], "flags": ["is_overload", "is_decorated"], "fullname": "builtins.bytearray.__setitem__", "name": "__setitem__", "type": {".class": "CallableType", "arg_kinds": [0, 0, 0], "arg_names": [null, null, null], "arg_types": ["builtins.bytearray", "builtins.int", "builtins.int"], "bound_args": [], "def_extras": {"first_arg": "self"}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "__setitem__ of bytearray", "ret_type": {".class": "NoneTyp"}, "variables": []}}, "is_overload": true, "var": {".class": "Var", "flags": [], "fullname": null, "name": "__setitem__", "type": null}}, {".class": "Decorator", "func": {".class": "FuncDef", "arg_kinds": [0, 0, 0], "arg_names": ["self", "s", "x"], "flags": ["is_overload", "is_decorated"], "fullname": "builtins.bytearray.__setitem__", "name": "__setitem__", "type": {".class": "CallableType", "arg_kinds": [0, 0, 0], "arg_names": [null, null, null], "arg_types": ["builtins.bytearray", "builtins.slice", {".class": "UnionType", "items": [{".class": "Instance", "args": ["builtins.int"], "type_ref": "typing.Iterable"}, "builtins.bytes"]}], "bound_args": [], "def_extras": {"first_arg": "self"}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "__setitem__ of bytearray", "ret_type": {".class": "NoneTyp"}, "variables": []}}, "is_overload": true, "var": {".class": "Var", "flags": [], "fullname": null, "name": "__setitem__", "type": null}}], "type": {".class": "Overloaded", "items": [{".class": "CallableType", "arg_kinds": [0, 0, 0], "arg_names": [null, null, null], "arg_types": ["builtins.bytearray", "builtins.int", "builtins.int"], "bound_args": [], "def_extras": {"first_arg": "self"}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "__setitem__ of bytearray", "ret_type": {".class": "NoneTyp"}, "variables": []}, {".class": "CallableType", "arg_kinds": [0, 0, 0], "arg_names": [null, null, null], "arg_types": ["builtins.bytearray", "builtins.slice", {".class": "UnionType", "items": [{".class": "Instance", "args": ["builtins.int"], "type_ref": "typing.Iterable"}, "builtins.bytes"]}], "bound_args": [], "def_extras": {"first_arg": "self"}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "__setitem__ of bytearray", "ret_type": {".class": "NoneTyp"}, "variables": []}]}}}, "__str__": {".class": "SymbolTableNode", "kind": "Mdef", "node": {".class": "FuncDef", "arg_kinds": [0], "arg_names": ["self"], "flags": [], "fullname": "builtins.bytearray.__str__", "name": "__str__", "type": {".class": "CallableType", "arg_kinds": [0], "arg_names": [null], "arg_types": ["builtins.bytearray"], "bound_args": [], "def_extras": {"first_arg": "self"}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "__str__ of bytearray", "ret_type": "builtins.str", "variables": []}}}, "capitalize": {".class": "SymbolTableNode", "kind": "Mdef", "node": {".class": "FuncDef", "arg_kinds": [0], "arg_names": ["self"], "flags": [], "fullname": "builtins.bytearray.capitalize", "name": "capitalize", "type": {".class": "CallableType", "arg_kinds": [0], "arg_names": ["self"], "arg_types": ["builtins.bytearray"], "bound_args": [], "def_extras": {"first_arg": "self"}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "capitalize of bytearray", "ret_type": "builtins.bytearray", "variables": []}}}, "center": {".class": "SymbolTableNode", "kind": "Mdef", "node": {".class": "FuncDef", "arg_kinds": [0, 0, 1], "arg_names": ["self", "width", "fillchar"], "flags": [], "fullname": "builtins.bytearray.center", "name": "center", "type": {".class": "CallableType", "arg_kinds": [0, 0, 1], "arg_names": ["self", "width", "fillchar"], "arg_types": ["builtins.bytearray", "builtins.int", "builtins.bytes"], "bound_args": [], "def_extras": {"first_arg": "self"}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "center of bytearray", "ret_type": "builtins.bytearray", "variables": []}}}, "copy": {".class": "SymbolTableNode", "kind": "Mdef", "node": {".class": "FuncDef", "arg_kinds": [0], "arg_names": ["self"], "flags": ["is_conditional"], "fullname": "builtins.bytearray.copy", "name": "copy", "type": {".class": "CallableType", "arg_kinds": [0], "arg_names": ["self"], "arg_types": ["builtins.bytearray"], "bound_args": [], "def_extras": {"first_arg": "self"}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "copy of bytearray", "ret_type": "builtins.bytearray", "variables": []}}}, "count": {".class": "SymbolTableNode", "kind": "Mdef", "node": {".class": "FuncDef", "arg_kinds": [0, 0, 1, 1], "arg_names": ["self", "sub", "start", "end"], "flags": ["is_conditional"], "fullname": "builtins.bytearray.count", "name": "count", "type": {".class": "CallableType", "arg_kinds": [0, 0, 1, 1], "arg_names": ["self", "sub", "start", "end"], "arg_types": ["builtins.bytearray", {".class": "UnionType", "items": ["builtins.bytes", "builtins.int"]}, {".class": "UnionType", "items": ["builtins.int", {".class": "NoneTyp"}]}, {".class": "UnionType", "items": ["builtins.int", {".class": "NoneTyp"}]}], "bound_args": [], "def_extras": {"first_arg": "self"}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "count of bytearray", "ret_type": "builtins.int", "variables": []}}}, "decode": {".class": "SymbolTableNode", "kind": "Mdef", "node": {".class": "FuncDef", "arg_kinds": [0, 1, 1], "arg_names": ["self", "encoding", "errors"], "flags": [], "fullname": "builtins.bytearray.decode", "name": "decode", "type": {".class": "CallableType", "arg_kinds": [0, 1, 1], "arg_names": ["self", "encoding", "errors"], "arg_types": ["builtins.bytearray", "builtins.str", "builtins.str"], "bound_args": [], "def_extras": {"first_arg": "self"}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "decode of bytearray", "ret_type": "builtins.str", "variables": []}}}, "endswith": {".class": "SymbolTableNode", "kind": "Mdef", "node": {".class": "FuncDef", "arg_kinds": [0, 0], "arg_names": ["self", "suffix"], "flags": [], "fullname": "builtins.bytearray.endswith", "name": "endswith", "type": {".class": "CallableType", "arg_kinds": [0, 0], "arg_names": ["self", "suffix"], "arg_types": ["builtins.bytearray", {".class": "UnionType", "items": ["builtins.bytes", {".class": "Instance", "args": ["builtins.bytes"], "type_ref": "builtins.tuple"}]}], "bound_args": [], "def_extras": {"first_arg": "self"}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "endswith of bytearray", "ret_type": "builtins.bool", "variables": []}}}, "expandtabs": {".class": "SymbolTableNode", "kind": "Mdef", "node": {".class": "FuncDef", "arg_kinds": [0, 1], "arg_names": ["self", "tabsize"], "flags": [], "fullname": "builtins.bytearray.expandtabs", "name": "expandtabs", "type": {".class": "CallableType", "arg_kinds": [0, 1], "arg_names": ["self", "tabsize"], "arg_types": ["builtins.bytearray", "builtins.int"], "bound_args": [], "def_extras": {"first_arg": "self"}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "expandtabs of bytearray", "ret_type": "builtins.bytearray", "variables": []}}}, "find": {".class": "SymbolTableNode", "kind": "Mdef", "node": {".class": "FuncDef", "arg_kinds": [0, 0, 1, 1], "arg_names": ["self", "sub", "start", "end"], "flags": ["is_conditional"], "fullname": "builtins.bytearray.find", "name": "find", "type": {".class": "CallableType", "arg_kinds": [0, 0, 1, 1], "arg_names": ["self", "sub", "start", "end"], "arg_types": ["builtins.bytearray", {".class": "UnionType", "items": ["builtins.bytes", "builtins.int"]}, {".class": "UnionType", "items": ["builtins.int", {".class": "NoneTyp"}]}, {".class": "UnionType", "items": ["builtins.int", {".class": "NoneTyp"}]}], "bound_args": [], "def_extras": {"first_arg": "self"}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "find of bytearray", "ret_type": "builtins.int", "variables": []}}}, "fromhex": {".class": "SymbolTableNode", "kind": "Mdef", "node": {".class": "Decorator", "func": {".class": "FuncDef", "arg_kinds": [0], "arg_names": ["s"], "flags": ["is_static", "is_decorated"], "fullname": "builtins.bytearray.fromhex", "name": "fromhex", "type": {".class": "CallableType", "arg_kinds": [0], "arg_names": ["s"], "arg_types": ["builtins.str"], "bound_args": [], "def_extras": {"first_arg": null}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "fromhex of bytearray", "ret_type": "builtins.bytearray", "variables": []}}, "is_overload": false, "var": {".class": "Var", "flags": ["is_initialized_in_class", "is_staticmethod"], "fullname": null, "name": "fromhex", "type": {".class": "CallableType", "arg_kinds": [0], "arg_names": ["s"], "arg_types": ["builtins.str"], "bound_args": [], "def_extras": {"first_arg": null}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "fromhex of bytearray", "ret_type": "builtins.bytearray", "variables": []}}}}, "hex": {".class": "SymbolTableNode", "kind": "Mdef", "node": {".class": "FuncDef", "arg_kinds": [0], "arg_names": ["self"], "flags": ["is_conditional"], "fullname": "builtins.bytearray.hex", "name": "hex", "type": {".class": "CallableType", "arg_kinds": [0], "arg_names": ["self"], "arg_types": ["builtins.bytearray"], "bound_args": [], "def_extras": {"first_arg": "self"}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "hex of bytearray", "ret_type": "builtins.str", "variables": []}}}, "index": {".class": "SymbolTableNode", "kind": "Mdef", "node": {".class": "FuncDef", "arg_kinds": [0, 0, 1, 1], "arg_names": ["self", "sub", "start", "end"], "flags": ["is_conditional"], "fullname": "builtins.bytearray.index", "name": "index", "type": {".class": "CallableType", "arg_kinds": [0, 0, 1, 1], "arg_names": ["self", "sub", "start", "end"], "arg_types": ["builtins.bytearray", {".class": "UnionType", "items": ["builtins.bytes", "builtins.int"]}, {".class": "UnionType", "items": ["builtins.int", {".class": "NoneTyp"}]}, {".class": "UnionType", "items": ["builtins.int", {".class": "NoneTyp"}]}], "bound_args": [], "def_extras": {"first_arg": "self"}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "index of bytearray", "ret_type": "builtins.int", "variables": []}}}, "insert": {".class": "SymbolTableNode", "kind": "Mdef", "node": {".class": "FuncDef", "arg_kinds": [0, 0, 0], "arg_names": ["self", "index", "object"], "flags": [], "fullname": "builtins.bytearray.insert", "name": "insert", "type": {".class": "CallableType", "arg_kinds": [0, 0, 0], "arg_names": ["self", "index", "object"], "arg_types": ["builtins.bytearray", "builtins.int", "builtins.int"], "bound_args": [], "def_extras": {"first_arg": "self"}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "insert of bytearray", "ret_type": {".class": "NoneTyp"}, "variables": []}}}, "isalnum": {".class": "SymbolTableNode", "kind": "Mdef", "node": {".class": "FuncDef", "arg_kinds": [0], "arg_names": ["self"], "flags": [], "fullname": "builtins.bytearray.isalnum", "name": "isalnum", "type": {".class": "CallableType", "arg_kinds": [0], "arg_names": ["self"], "arg_types": ["builtins.bytearray"], "bound_args": [], "def_extras": {"first_arg": "self"}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "isalnum of bytearray", "ret_type": "builtins.bool", "variables": []}}}, "isalpha": {".class": "SymbolTableNode", "kind": "Mdef", "node": {".class": "FuncDef", "arg_kinds": [0], "arg_names": ["self"], "flags": [], "fullname": "builtins.bytearray.isalpha", "name": "isalpha", "type": {".class": "CallableType", "arg_kinds": [0], "arg_names": ["self"], "arg_types": ["builtins.bytearray"], "bound_args": [], "def_extras": {"first_arg": "self"}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "isalpha of bytearray", "ret_type": "builtins.bool", "variables": []}}}, "isdigit": {".class": "SymbolTableNode", "kind": "Mdef", "node": {".class": "FuncDef", "arg_kinds": [0], "arg_names": ["self"], "flags": [], "fullname": "builtins.bytearray.isdigit", "name": "isdigit", "type": {".class": "CallableType", "arg_kinds": [0], "arg_names": ["self"], "arg_types": ["builtins.bytearray"], "bound_args": [], "def_extras": {"first_arg": "self"}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "isdigit of bytearray", "ret_type": "builtins.bool", "variables": []}}}, "islower": {".class": "SymbolTableNode", "kind": "Mdef", "node": {".class": "FuncDef", "arg_kinds": [0], "arg_names": ["self"], "flags": [], "fullname": "builtins.bytearray.islower", "name": "islower", "type": {".class": "CallableType", "arg_kinds": [0], "arg_names": ["self"], "arg_types": ["builtins.bytearray"], "bound_args": [], "def_extras": {"first_arg": "self"}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "islower of bytearray", "ret_type": "builtins.bool", "variables": []}}}, "isspace": {".class": "SymbolTableNode", "kind": "Mdef", "node": {".class": "FuncDef", "arg_kinds": [0], "arg_names": ["self"], "flags": [], "fullname": "builtins.bytearray.isspace", "name": "isspace", "type": {".class": "CallableType", "arg_kinds": [0], "arg_names": ["self"], "arg_types": ["builtins.bytearray"], "bound_args": [], "def_extras": {"first_arg": "self"}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "isspace of bytearray", "ret_type": "builtins.bool", "variables": []}}}, "istitle": {".class": "SymbolTableNode", "kind": "Mdef", "node": {".class": "FuncDef", "arg_kinds": [0], "arg_names": ["self"], "flags": [], "fullname": "builtins.bytearray.istitle", "name": "istitle", "type": {".class": "CallableType", "arg_kinds": [0], "arg_names": ["self"], "arg_types": ["builtins.bytearray"], "bound_args": [], "def_extras": {"first_arg": "self"}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "istitle of bytearray", "ret_type": "builtins.bool", "variables": []}}}, "isupper": {".class": "SymbolTableNode", "kind": "Mdef", "node": {".class": "FuncDef", "arg_kinds": [0], "arg_names": ["self"], "flags": [], "fullname": "builtins.bytearray.isupper", "name": "isupper", "type": {".class": "CallableType", "arg_kinds": [0], "arg_names": ["self"], "arg_types": ["builtins.bytearray"], "bound_args": [], "def_extras": {"first_arg": "self"}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "isupper of bytearray", "ret_type": "builtins.bool", "variables": []}}}, "join": {".class": "SymbolTableNode", "kind": "Mdef", "node": {".class": "FuncDef", "arg_kinds": [0, 0], "arg_names": ["self", "iterable"], "flags": ["is_conditional"], "fullname": "builtins.bytearray.join", "name": "join", "type": {".class": "CallableType", "arg_kinds": [0, 0], "arg_names": ["self", "iterable"], "arg_types": ["builtins.bytearray", {".class": "Instance", "args": [{".class": "UnionType", "items": ["typing.ByteString", "builtins.memoryview"]}], "type_ref": "typing.Iterable"}], "bound_args": [], "def_extras": {"first_arg": "self"}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "join of bytearray", "ret_type": "builtins.bytearray", "variables": []}}}, "ljust": {".class": "SymbolTableNode", "kind": "Mdef", "node": {".class": "FuncDef", "arg_kinds": [0, 0, 1], "arg_names": ["self", "width", "fillchar"], "flags": ["is_conditional"], "fullname": "builtins.bytearray.ljust", "name": "ljust", "type": {".class": "CallableType", "arg_kinds": [0, 0, 1], "arg_names": ["self", "width", "fillchar"], "arg_types": ["builtins.bytearray", "builtins.int", "builtins.bytes"], "bound_args": [], "def_extras": {"first_arg": "self"}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "ljust of bytearray", "ret_type": "builtins.bytearray", "variables": []}}}, "lower": {".class": "SymbolTableNode", "kind": "Mdef", "node": {".class": "FuncDef", "arg_kinds": [0], "arg_names": ["self"], "flags": [], "fullname": "builtins.bytearray.lower", "name": "lower", "type": {".class": "CallableType", "arg_kinds": [0], "arg_names": ["self"], "arg_types": ["builtins.bytearray"], "bound_args": [], "def_extras": {"first_arg": "self"}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "lower of bytearray", "ret_type": "builtins.bytearray", "variables": []}}}, "lstrip": {".class": "SymbolTableNode", "kind": "Mdef", "node": {".class": "FuncDef", "arg_kinds": [0, 1], "arg_names": ["self", "chars"], "flags": [], "fullname": "builtins.bytearray.lstrip", "name": "lstrip", "type": {".class": "CallableType", "arg_kinds": [0, 1], "arg_names": ["self", "chars"], "arg_types": ["builtins.bytearray", {".class": "UnionType", "items": ["builtins.bytes", {".class": "NoneTyp"}]}], "bound_args": [], "def_extras": {"first_arg": "self"}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "lstrip of bytearray", "ret_type": "builtins.bytearray", "variables": []}}}, "maketrans": {".class": "SymbolTableNode", "kind": "Mdef", "node": {".class": "Decorator", "func": {".class": "FuncDef", "arg_kinds": [0, 0, 0], "arg_names": ["cls", "frm", "to"], "flags": ["is_class", "is_decorated", "is_conditional"], "fullname": "builtins.bytearray.maketrans", "name": "maketrans", "type": {".class": "CallableType", "arg_kinds": [0, 0, 0], "arg_names": ["cls", "frm", "to"], "arg_types": [{".class": "TypeType", "item": "builtins.bytearray"}, "builtins.bytes", "builtins.bytes"], "bound_args": [], "def_extras": {"first_arg": "cls"}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "maketrans of bytearray", "ret_type": "builtins.bytes", "variables": []}}, "is_overload": false, "var": {".class": "Var", "flags": ["is_initialized_in_class", "is_classmethod"], "fullname": null, "name": "maketrans", "type": {".class": "CallableType", "arg_kinds": [0, 0, 0], "arg_names": ["cls", "frm", "to"], "arg_types": [{".class": "TypeType", "item": "builtins.bytearray"}, "builtins.bytes", "builtins.bytes"], "bound_args": [], "def_extras": {"first_arg": "cls"}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "maketrans of bytearray", "ret_type": "builtins.bytes", "variables": []}}}}, "partition": {".class": "SymbolTableNode", "kind": "Mdef", "node": {".class": "FuncDef", "arg_kinds": [0, 0], "arg_names": ["self", "sep"], "flags": [], "fullname": "builtins.bytearray.partition", "name": "partition", "type": {".class": "CallableType", "arg_kinds": [0, 0], "arg_names": ["self", "sep"], "arg_types": ["builtins.bytearray", "builtins.bytes"], "bound_args": [], "def_extras": {"first_arg": "self"}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "partition of bytearray", "ret_type": {".class": "TupleType", "fallback": {".class": "Instance", "args": [{".class": "AnyType", "missing_import_name": null, "source_any": null, "type_of_any": 6}], "type_ref": "builtins.tuple"}, "implicit": false, "items": ["builtins.bytearray", "builtins.bytearray", "builtins.bytearray"]}, "variables": []}}}, "replace": {".class": "SymbolTableNode", "kind": "Mdef", "node": {".class": "FuncDef", "arg_kinds": [0, 0, 0, 1], "arg_names": ["self", "old", "new", "count"], "flags": [], "fullname": "builtins.bytearray.replace", "name": "replace", "type": {".class": "CallableType", "arg_kinds": [0, 0, 0, 1], "arg_names": ["self", "old", "new", "count"], "arg_types": ["builtins.bytearray", "builtins.bytes", "builtins.bytes", "builtins.int"], "bound_args": [], "def_extras": {"first_arg": "self"}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "replace of bytearray", "ret_type": "builtins.bytearray", "variables": []}}}, "rfind": {".class": "SymbolTableNode", "kind": "Mdef", "node": {".class": "FuncDef", "arg_kinds": [0, 0, 1, 1], "arg_names": ["self", "sub", "start", "end"], "flags": ["is_conditional"], "fullname": "builtins.bytearray.rfind", "name": "rfind", "type": {".class": "CallableType", "arg_kinds": [0, 0, 1, 1], "arg_names": ["self", "sub", "start", "end"], "arg_types": ["builtins.bytearray", {".class": "UnionType", "items": ["builtins.bytes", "builtins.int"]}, {".class": "UnionType", "items": ["builtins.int", {".class": "NoneTyp"}]}, {".class": "UnionType", "items": ["builtins.int", {".class": "NoneTyp"}]}], "bound_args": [], "def_extras": {"first_arg": "self"}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "rfind of bytearray", "ret_type": "builtins.int", "variables": []}}}, "rindex": {".class": "SymbolTableNode", "kind": "Mdef", "node": {".class": "FuncDef", "arg_kinds": [0, 0, 1, 1], "arg_names": ["self", "sub", "start", "end"], "flags": ["is_conditional"], "fullname": "builtins.bytearray.rindex", "name": "rindex", "type": {".class": "CallableType", "arg_kinds": [0, 0, 1, 1], "arg_names": ["self", "sub", "start", "end"], "arg_types": ["builtins.bytearray", {".class": "UnionType", "items": ["builtins.bytes", "builtins.int"]}, {".class": "UnionType", "items": ["builtins.int", {".class": "NoneTyp"}]}, {".class": "UnionType", "items": ["builtins.int", {".class": "NoneTyp"}]}], "bound_args": [], "def_extras": {"first_arg": "self"}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "rindex of bytearray", "ret_type": "builtins.int", "variables": []}}}, "rjust": {".class": "SymbolTableNode", "kind": "Mdef", "node": {".class": "FuncDef", "arg_kinds": [0, 0, 1], "arg_names": ["self", "width", "fillchar"], "flags": [], "fullname": "builtins.bytearray.rjust", "name": "rjust", "type": {".class": "CallableType", "arg_kinds": [0, 0, 1], "arg_names": ["self", "width", "fillchar"], "arg_types": ["builtins.bytearray", "builtins.int", "builtins.bytes"], "bound_args": [], "def_extras": {"first_arg": "self"}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "rjust of bytearray", "ret_type": "builtins.bytearray", "variables": []}}}, "rpartition": {".class": "SymbolTableNode", "kind": "Mdef", "node": {".class": "FuncDef", "arg_kinds": [0, 0], "arg_names": ["self", "sep"], "flags": [], "fullname": "builtins.bytearray.rpartition", "name": "rpartition", "type": {".class": "CallableType", "arg_kinds": [0, 0], "arg_names": ["self", "sep"], "arg_types": ["builtins.bytearray", "builtins.bytes"], "bound_args": [], "def_extras": {"first_arg": "self"}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "rpartition of bytearray", "ret_type": {".class": "TupleType", "fallback": {".class": "Instance", "args": [{".class": "AnyType", "missing_import_name": null, "source_any": null, "type_of_any": 6}], "type_ref": "builtins.tuple"}, "implicit": false, "items": ["builtins.bytearray", "builtins.bytearray", "builtins.bytearray"]}, "variables": []}}}, "rsplit": {".class": "SymbolTableNode", "kind": "Mdef", "node": {".class": "FuncDef", "arg_kinds": [0, 1, 1], "arg_names": ["self", "sep", "maxsplit"], "flags": [], "fullname": "builtins.bytearray.rsplit", "name": "rsplit", "type": {".class": "CallableType", "arg_kinds": [0, 1, 1], "arg_names": ["self", "sep", "maxsplit"], "arg_types": ["builtins.bytearray", {".class": "UnionType", "items": ["builtins.bytes", {".class": "NoneTyp"}]}, "builtins.int"], "bound_args": [], "def_extras": {"first_arg": "self"}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "rsplit of bytearray", "ret_type": {".class": "Instance", "args": ["builtins.bytearray"], "type_ref": "builtins.list"}, "variables": []}}}, "rstrip": {".class": "SymbolTableNode", "kind": "Mdef", "node": {".class": "FuncDef", "arg_kinds": [0, 1], "arg_names": ["self", "chars"], "flags": [], "fullname": "builtins.bytearray.rstrip", "name": "rstrip", "type": {".class": "CallableType", "arg_kinds": [0, 1], "arg_names": ["self", "chars"], "arg_types": ["builtins.bytearray", {".class": "UnionType", "items": ["builtins.bytes", {".class": "NoneTyp"}]}], "bound_args": [], "def_extras": {"first_arg": "self"}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "rstrip of bytearray", "ret_type": "builtins.bytearray", "variables": []}}}, "split": {".class": "SymbolTableNode", "kind": "Mdef", "node": {".class": "FuncDef", "arg_kinds": [0, 1, 1], "arg_names": ["self", "sep", "maxsplit"], "flags": [], "fullname": "builtins.bytearray.split", "name": "split", "type": {".class": "CallableType", "arg_kinds": [0, 1, 1], "arg_names": ["self", "sep", "maxsplit"], "arg_types": ["builtins.bytearray", {".class": "UnionType", "items": ["builtins.bytes", {".class": "NoneTyp"}]}, "builtins.int"], "bound_args": [], "def_extras": {"first_arg": "self"}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "split of bytearray", "ret_type": {".class": "Instance", "args": ["builtins.bytearray"], "type_ref": "builtins.list"}, "variables": []}}}, "splitlines": {".class": "SymbolTableNode", "kind": "Mdef", "node": {".class": "FuncDef", "arg_kinds": [0, 1], "arg_names": ["self", "keepends"], "flags": [], "fullname": "builtins.bytearray.splitlines", "name": "splitlines", "type": {".class": "CallableType", "arg_kinds": [0, 1], "arg_names": ["self", "keepends"], "arg_types": ["builtins.bytearray", "builtins.bool"], "bound_args": [], "def_extras": {"first_arg": "self"}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "splitlines of bytearray", "ret_type": {".class": "Instance", "args": ["builtins.bytearray"], "type_ref": "builtins.list"}, "variables": []}}}, "startswith": {".class": "SymbolTableNode", "kind": "Mdef", "node": {".class": "FuncDef", "arg_kinds": [0, 0, 1, 1], "arg_names": ["self", "prefix", "start", "end"], "flags": [], "fullname": "builtins.bytearray.startswith", "name": "startswith", "type": {".class": "CallableType", "arg_kinds": [0, 0, 1, 1], "arg_names": ["self", "prefix", "start", "end"], "arg_types": ["builtins.bytearray", {".class": "UnionType", "items": ["builtins.bytes", {".class": "Instance", "args": ["builtins.bytes"], "type_ref": "builtins.tuple"}]}, {".class": "UnionType", "items": ["builtins.int", {".class": "NoneTyp"}]}, {".class": "UnionType", "items": ["builtins.int", {".class": "NoneTyp"}]}], "bound_args": [], "def_extras": {"first_arg": "self"}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "startswith of bytearray", "ret_type": "builtins.bool", "variables": []}}}, "strip": {".class": "SymbolTableNode", "kind": "Mdef", "node": {".class": "FuncDef", "arg_kinds": [0, 1], "arg_names": ["self", "chars"], "flags": [], "fullname": "builtins.bytearray.strip", "name": "strip", "type": {".class": "CallableType", "arg_kinds": [0, 1], "arg_names": ["self", "chars"], "arg_types": ["builtins.bytearray", {".class": "UnionType", "items": ["builtins.bytes", {".class": "NoneTyp"}]}], "bound_args": [], "def_extras": {"first_arg": "self"}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "strip of bytearray", "ret_type": "builtins.bytearray", "variables": []}}}, "swapcase": {".class": "SymbolTableNode", "kind": "Mdef", "node": {".class": "FuncDef", "arg_kinds": [0], "arg_names": ["self"], "flags": [], "fullname": "builtins.bytearray.swapcase", "name": "swapcase", "type": {".class": "CallableType", "arg_kinds": [0], "arg_names": ["self"], "arg_types": ["builtins.bytearray"], "bound_args": [], "def_extras": {"first_arg": "self"}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "swapcase of bytearray", "ret_type": "builtins.bytearray", "variables": []}}}, "title": {".class": "SymbolTableNode", "kind": "Mdef", "node": {".class": "FuncDef", "arg_kinds": [0], "arg_names": ["self"], "flags": [], "fullname": "builtins.bytearray.title", "name": "title", "type": {".class": "CallableType", "arg_kinds": [0], "arg_names": ["self"], "arg_types": ["builtins.bytearray"], "bound_args": [], "def_extras": {"first_arg": "self"}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "title of bytearray", "ret_type": "builtins.bytearray", "variables": []}}}, "translate": {".class": "SymbolTableNode", "kind": "Mdef", "node": {".class": "FuncDef", "arg_kinds": [0, 0, 1], "arg_names": ["self", "table", "delete"], "flags": ["is_conditional"], "fullname": "builtins.bytearray.translate", "name": "translate", "type": {".class": "CallableType", "arg_kinds": [0, 0, 1], "arg_names": ["self", "table", "delete"], "arg_types": ["builtins.bytearray", {".class": "UnionType", "items": ["builtins.bytes", {".class": "NoneTyp"}]}, "builtins.bytes"], "bound_args": [], "def_extras": {"first_arg": "self"}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "translate of bytearray", "ret_type": "builtins.bytearray", "variables": []}}}, "upper": {".class": "SymbolTableNode", "kind": "Mdef", "node": {".class": "FuncDef", "arg_kinds": [0], "arg_names": ["self"], "flags": [], "fullname": "builtins.bytearray.upper", "name": "upper", "type": {".class": "CallableType", "arg_kinds": [0], "arg_names": ["self"], "arg_types": ["builtins.bytearray"], "bound_args": [], "def_extras": {"first_arg": "self"}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "upper of bytearray", "ret_type": "builtins.bytearray", "variables": []}}}, "zfill": {".class": "SymbolTableNode", "kind": "Mdef", "node": {".class": "FuncDef", "arg_kinds": [0, 0], "arg_names": ["self", "width"], "flags": [], "fullname": "builtins.bytearray.zfill", "name": "zfill", "type": {".class": "CallableType", "arg_kinds": [0, 0], "arg_names": ["self", "width"], "arg_types": ["builtins.bytearray", "builtins.int"], "bound_args": [], "def_extras": {"first_arg": "self"}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "zfill of bytearray", "ret_type": "builtins.bytearray", "variables": []}}}}, "tuple_type": null, "type_vars": [], "typeddict_type": null}}, "bytes": {".class": "SymbolTableNode", "kind": "Gdef", "node": {".class": "TypeInfo", "_promote": null, "abstract_attributes": [], "bases": ["typing.ByteString"], "declared_metaclass": null, "defn": {".class": "ClassDef", "fullname": "builtins.bytes", "name": "bytes", "type_vars": []}, "flags": [], "fullname": "builtins.bytes", "metaclass_type": "abc.ABCMeta", "metadata": {}, "module_name": "builtins", "mro": ["builtins.bytes", "typing.ByteString", "typing.Sequence", "typing.Collection", "typing.Iterable", "typing.Container", "typing.Reversible", "builtins.object"], "names": {".class": "SymbolTable", "__add__": {".class": "SymbolTableNode", "kind": "Mdef", "node": {".class": "FuncDef", "arg_kinds": [0, 0], "arg_names": ["self", "s"], "flags": [], "fullname": "builtins.bytes.__add__", "name": "__add__", "type": {".class": "CallableType", "arg_kinds": [0, 0], "arg_names": [null, null], "arg_types": ["builtins.bytes", "builtins.bytes"], "bound_args": [], "def_extras": {"first_arg": "self"}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "__add__ of bytes", "ret_type": "builtins.bytes", "variables": []}}}, "__contains__": {".class": "SymbolTableNode", "kind": "Mdef", "node": {".class": "FuncDef", "arg_kinds": [0, 0], "arg_names": ["self", "o"], "flags": [], "fullname": "builtins.bytes.__contains__", "name": "__contains__", "type": {".class": "CallableType", "arg_kinds": [0, 0], "arg_names": [null, null], "arg_types": ["builtins.bytes", "builtins.object"], "bound_args": [], "def_extras": {"first_arg": "self"}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "__contains__ of bytes", "ret_type": "builtins.bool", "variables": []}}}, "__eq__": {".class": "SymbolTableNode", "kind": "Mdef", "node": {".class": "FuncDef", "arg_kinds": [0, 0], "arg_names": ["self", "x"], "flags": [], "fullname": "builtins.bytes.__eq__", "name": "__eq__", "type": {".class": "CallableType", "arg_kinds": [0, 0], "arg_names": [null, null], "arg_types": ["builtins.bytes", "builtins.object"], "bound_args": [], "def_extras": {"first_arg": "self"}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "__eq__ of bytes", "ret_type": "builtins.bool", "variables": []}}}, "__float__": {".class": "SymbolTableNode", "kind": "Mdef", "node": {".class": "FuncDef", "arg_kinds": [0], "arg_names": ["self"], "flags": [], "fullname": "builtins.bytes.__float__", "name": "__float__", "type": {".class": "CallableType", "arg_kinds": [0], "arg_names": [null], "arg_types": ["builtins.bytes"], "bound_args": [], "def_extras": {"first_arg": "self"}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "__float__ of bytes", "ret_type": "builtins.float", "variables": []}}}, "__ge__": {".class": "SymbolTableNode", "kind": "Mdef", "node": {".class": "FuncDef", "arg_kinds": [0, 0], "arg_names": ["self", "x"], "flags": [], "fullname": "builtins.bytes.__ge__", "name": "__ge__", "type": {".class": "CallableType", "arg_kinds": [0, 0], "arg_names": [null, null], "arg_types": ["builtins.bytes", "builtins.bytes"], "bound_args": [], "def_extras": {"first_arg": "self"}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "__ge__ of bytes", "ret_type": "builtins.bool", "variables": []}}}, "__getitem__": {".class": "SymbolTableNode", "kind": "Mdef", "node": {".class": "OverloadedFuncDef", "flags": [], "fullname": "builtins.bytes.__getitem__", "impl": null, "items": [{".class": "Decorator", "func": {".class": "FuncDef", "arg_kinds": [0, 0], "arg_names": ["self", "i"], "flags": ["is_overload", "is_decorated"], "fullname": "builtins.bytes.__getitem__", "name": "__getitem__", "type": {".class": "CallableType", "arg_kinds": [0, 0], "arg_names": [null, null], "arg_types": ["builtins.bytes", "builtins.int"], "bound_args": [], "def_extras": {"first_arg": "self"}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "__getitem__ of bytes", "ret_type": "builtins.int", "variables": []}}, "is_overload": true, "var": {".class": "Var", "flags": [], "fullname": null, "name": "__getitem__", "type": null}}, {".class": "Decorator", "func": {".class": "FuncDef", "arg_kinds": [0, 0], "arg_names": ["self", "s"], "flags": ["is_overload", "is_decorated"], "fullname": "builtins.bytes.__getitem__", "name": "__getitem__", "type": {".class": "CallableType", "arg_kinds": [0, 0], "arg_names": [null, null], "arg_types": ["builtins.bytes", "builtins.slice"], "bound_args": [], "def_extras": {"first_arg": "self"}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "__getitem__ of bytes", "ret_type": "builtins.bytes", "variables": []}}, "is_overload": true, "var": {".class": "Var", "flags": [], "fullname": null, "name": "__getitem__", "type": null}}], "type": {".class": "Overloaded", "items": [{".class": "CallableType", "arg_kinds": [0, 0], "arg_names": [null, null], "arg_types": ["builtins.bytes", "builtins.int"], "bound_args": [], "def_extras": {"first_arg": "self"}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "__getitem__ of bytes", "ret_type": "builtins.int", "variables": []}, {".class": "CallableType", "arg_kinds": [0, 0], "arg_names": [null, null], "arg_types": ["builtins.bytes", "builtins.slice"], "bound_args": [], "def_extras": {"first_arg": "self"}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "__getitem__ of bytes", "ret_type": "builtins.bytes", "variables": []}]}}}, "__getnewargs__": {".class": "SymbolTableNode", "kind": "Mdef", "node": {".class": "FuncDef", "arg_kinds": [0], "arg_names": ["self"], "flags": [], "fullname": "builtins.bytes.__getnewargs__", "name": "__getnewargs__", "type": {".class": "CallableType", "arg_kinds": [0], "arg_names": ["self"], "arg_types": ["builtins.bytes"], "bound_args": [], "def_extras": {"first_arg": "self"}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "__getnewargs__ of bytes", "ret_type": {".class": "TupleType", "fallback": {".class": "Instance", "args": [{".class": "AnyType", "missing_import_name": null, "source_any": null, "type_of_any": 6}], "type_ref": "builtins.tuple"}, "implicit": false, "items": ["builtins.bytes"]}, "variables": []}}}, "__gt__": {".class": "SymbolTableNode", "kind": "Mdef", "node": {".class": "FuncDef", "arg_kinds": [0, 0], "arg_names": ["self", "x"], "flags": [], "fullname": "builtins.bytes.__gt__", "name": "__gt__", "type": {".class": "CallableType", "arg_kinds": [0, 0], "arg_names": [null, null], "arg_types": ["builtins.bytes", "builtins.bytes"], "bound_args": [], "def_extras": {"first_arg": "self"}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "__gt__ of bytes", "ret_type": "builtins.bool", "variables": []}}}, "__hash__": {".class": "SymbolTableNode", "kind": "Mdef", "node": {".class": "FuncDef", "arg_kinds": [0], "arg_names": ["self"], "flags": [], "fullname": "builtins.bytes.__hash__", "name": "__hash__", "type": {".class": "CallableType", "arg_kinds": [0], "arg_names": ["self"], "arg_types": ["builtins.bytes"], "bound_args": [], "def_extras": {"first_arg": "self"}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "__hash__ of bytes", "ret_type": "builtins.int", "variables": []}}}, "__init__": {".class": "SymbolTableNode", "kind": "Mdef", "node": {".class": "OverloadedFuncDef", "flags": [], "fullname": "builtins.bytes.__init__", "impl": null, "items": [{".class": "Decorator", "func": {".class": "FuncDef", "arg_kinds": [0, 0], "arg_names": ["self", "ints"], "flags": ["is_overload", "is_decorated"], "fullname": "builtins.bytes.__init__", "name": "__init__", "type": {".class": "CallableType", "arg_kinds": [0, 0], "arg_names": ["self", "ints"], "arg_types": ["builtins.bytes", {".class": "Instance", "args": ["builtins.int"], "type_ref": "typing.Iterable"}], "bound_args": [], "def_extras": {"first_arg": "self"}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "__init__ of bytes", "ret_type": {".class": "NoneTyp"}, "variables": []}}, "is_overload": true, "var": {".class": "Var", "flags": [], "fullname": null, "name": "__init__", "type": null}}, {".class": "Decorator", "func": {".class": "FuncDef", "arg_kinds": [0, 0, 0, 1], "arg_names": ["self", "string", "encoding", "errors"], "flags": ["is_overload", "is_decorated"], "fullname": "builtins.bytes.__init__", "name": "__init__", "type": {".class": "CallableType", "arg_kinds": [0, 0, 0, 1], "arg_names": ["self", "string", "encoding", "errors"], "arg_types": ["builtins.bytes", "builtins.str", "builtins.str", "builtins.str"], "bound_args": [], "def_extras": {"first_arg": "self"}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "__init__ of bytes", "ret_type": {".class": "NoneTyp"}, "variables": []}}, "is_overload": true, "var": {".class": "Var", "flags": [], "fullname": null, "name": "__init__", "type": null}}, {".class": "Decorator", "func": {".class": "FuncDef", "arg_kinds": [0, 0], "arg_names": ["self", "length"], "flags": ["is_overload", "is_decorated"], "fullname": "builtins.bytes.__init__", "name": "__init__", "type": {".class": "CallableType", "arg_kinds": [0, 0], "arg_names": ["self", "length"], "arg_types": ["builtins.bytes", "builtins.int"], "bound_args": [], "def_extras": {"first_arg": "self"}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "__init__ of bytes", "ret_type": {".class": "NoneTyp"}, "variables": []}}, "is_overload": true, "var": {".class": "Var", "flags": [], "fullname": null, "name": "__init__", "type": null}}, {".class": "Decorator", "func": {".class": "FuncDef", "arg_kinds": [0], "arg_names": ["self"], "flags": ["is_overload", "is_decorated"], "fullname": "builtins.bytes.__init__", "name": "__init__", "type": {".class": "CallableType", "arg_kinds": [0], "arg_names": ["self"], "arg_types": ["builtins.bytes"], "bound_args": [], "def_extras": {"first_arg": "self"}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "__init__ of bytes", "ret_type": {".class": "NoneTyp"}, "variables": []}}, "is_overload": true, "var": {".class": "Var", "flags": [], "fullname": null, "name": "__init__", "type": null}}, {".class": "Decorator", "func": {".class": "FuncDef", "arg_kinds": [0, 0], "arg_names": ["self", "o"], "flags": ["is_overload", "is_decorated"], "fullname": "builtins.bytes.__init__", "name": "__init__", "type": {".class": "CallableType", "arg_kinds": [0, 0], "arg_names": ["self", "o"], "arg_types": ["builtins.bytes", "typing.SupportsBytes"], "bound_args": [], "def_extras": {"first_arg": "self"}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "__init__ of bytes", "ret_type": {".class": "NoneTyp"}, "variables": []}}, "is_overload": true, "var": {".class": "Var", "flags": [], "fullname": null, "name": "__init__", "type": null}}], "type": {".class": "Overloaded", "items": [{".class": "CallableType", "arg_kinds": [0, 0], "arg_names": ["self", "ints"], "arg_types": ["builtins.bytes", {".class": "Instance", "args": ["builtins.int"], "type_ref": "typing.Iterable"}], "bound_args": [], "def_extras": {"first_arg": "self"}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "__init__ of bytes", "ret_type": {".class": "NoneTyp"}, "variables": []}, {".class": "CallableType", "arg_kinds": [0, 0, 0, 1], "arg_names": ["self", "string", "encoding", "errors"], "arg_types": ["builtins.bytes", "builtins.str", "builtins.str", "builtins.str"], "bound_args": [], "def_extras": {"first_arg": "self"}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "__init__ of bytes", "ret_type": {".class": "NoneTyp"}, "variables": []}, {".class": "CallableType", "arg_kinds": [0, 0], "arg_names": ["self", "length"], "arg_types": ["builtins.bytes", "builtins.int"], "bound_args": [], "def_extras": {"first_arg": "self"}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "__init__ of bytes", "ret_type": {".class": "NoneTyp"}, "variables": []}, {".class": "CallableType", "arg_kinds": [0], "arg_names": ["self"], "arg_types": ["builtins.bytes"], "bound_args": [], "def_extras": {"first_arg": "self"}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "__init__ of bytes", "ret_type": {".class": "NoneTyp"}, "variables": []}, {".class": "CallableType", "arg_kinds": [0, 0], "arg_names": ["self", "o"], "arg_types": ["builtins.bytes", "typing.SupportsBytes"], "bound_args": [], "def_extras": {"first_arg": "self"}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "__init__ of bytes", "ret_type": {".class": "NoneTyp"}, "variables": []}]}}}, "__int__": {".class": "SymbolTableNode", "kind": "Mdef", "node": {".class": "FuncDef", "arg_kinds": [0], "arg_names": ["self"], "flags": [], "fullname": "builtins.bytes.__int__", "name": "__int__", "type": {".class": "CallableType", "arg_kinds": [0], "arg_names": [null], "arg_types": ["builtins.bytes"], "bound_args": [], "def_extras": {"first_arg": "self"}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "__int__ of bytes", "ret_type": "builtins.int", "variables": []}}}, "__iter__": {".class": "SymbolTableNode", "kind": "Mdef", "node": {".class": "FuncDef", "arg_kinds": [0], "arg_names": ["self"], "flags": [], "fullname": "builtins.bytes.__iter__", "name": "__iter__", "type": {".class": "CallableType", "arg_kinds": [0], "arg_names": [null], "arg_types": ["builtins.bytes"], "bound_args": [], "def_extras": {"first_arg": "self"}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "__iter__ of bytes", "ret_type": {".class": "Instance", "args": ["builtins.int"], "type_ref": "typing.Iterator"}, "variables": []}}}, "__le__": {".class": "SymbolTableNode", "kind": "Mdef", "node": {".class": "FuncDef", "arg_kinds": [0, 0], "arg_names": ["self", "x"], "flags": [], "fullname": "builtins.bytes.__le__", "name": "__le__", "type": {".class": "CallableType", "arg_kinds": [0, 0], "arg_names": [null, null], "arg_types": ["builtins.bytes", "builtins.bytes"], "bound_args": [], "def_extras": {"first_arg": "self"}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "__le__ of bytes", "ret_type": "builtins.bool", "variables": []}}}, "__len__": {".class": "SymbolTableNode", "kind": "Mdef", "node": {".class": "FuncDef", "arg_kinds": [0], "arg_names": ["self"], "flags": [], "fullname": "builtins.bytes.__len__", "name": "__len__", "type": {".class": "CallableType", "arg_kinds": [0], "arg_names": [null], "arg_types": ["builtins.bytes"], "bound_args": [], "def_extras": {"first_arg": "self"}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "__len__ of bytes", "ret_type": "builtins.int", "variables": []}}}, "__lt__": {".class": "SymbolTableNode", "kind": "Mdef", "node": {".class": "FuncDef", "arg_kinds": [0, 0], "arg_names": ["self", "x"], "flags": [], "fullname": "builtins.bytes.__lt__", "name": "__lt__", "type": {".class": "CallableType", "arg_kinds": [0, 0], "arg_names": [null, null], "arg_types": ["builtins.bytes", "builtins.bytes"], "bound_args": [], "def_extras": {"first_arg": "self"}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "__lt__ of bytes", "ret_type": "builtins.bool", "variables": []}}}, "__mod__": {".class": "SymbolTableNode", "kind": "Mdef", "node": {".class": "FuncDef", "arg_kinds": [0, 0], "arg_names": ["self", "value"], "flags": ["is_conditional"], "fullname": "builtins.bytes.__mod__", "name": "__mod__", "type": {".class": "CallableType", "arg_kinds": [0, 0], "arg_names": [null, null], "arg_types": ["builtins.bytes", {".class": "AnyType", "missing_import_name": null, "source_any": null, "type_of_any": 2}], "bound_args": [], "def_extras": {"first_arg": "self"}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "__mod__ of bytes", "ret_type": "builtins.bytes", "variables": []}}}, "__mul__": {".class": "SymbolTableNode", "kind": "Mdef", "node": {".class": "FuncDef", "arg_kinds": [0, 0], "arg_names": ["self", "n"], "flags": [], "fullname": "builtins.bytes.__mul__", "name": "__mul__", "type": {".class": "CallableType", "arg_kinds": [0, 0], "arg_names": [null, null], "arg_types": ["builtins.bytes", "builtins.int"], "bound_args": [], "def_extras": {"first_arg": "self"}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "__mul__ of bytes", "ret_type": "builtins.bytes", "variables": []}}}, "__ne__": {".class": "SymbolTableNode", "kind": "Mdef", "node": {".class": "FuncDef", "arg_kinds": [0, 0], "arg_names": ["self", "x"], "flags": [], "fullname": "builtins.bytes.__ne__", "name": "__ne__", "type": {".class": "CallableType", "arg_kinds": [0, 0], "arg_names": [null, null], "arg_types": ["builtins.bytes", "builtins.object"], "bound_args": [], "def_extras": {"first_arg": "self"}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "__ne__ of bytes", "ret_type": "builtins.bool", "variables": []}}}, "__repr__": {".class": "SymbolTableNode", "kind": "Mdef", "node": {".class": "FuncDef", "arg_kinds": [0], "arg_names": ["self"], "flags": [], "fullname": "builtins.bytes.__repr__", "name": "__repr__", "type": {".class": "CallableType", "arg_kinds": [0], "arg_names": [null], "arg_types": ["builtins.bytes"], "bound_args": [], "def_extras": {"first_arg": "self"}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "__repr__ of bytes", "ret_type": "builtins.str", "variables": []}}}, "__rmul__": {".class": "SymbolTableNode", "kind": "Mdef", "node": {".class": "FuncDef", "arg_kinds": [0, 0], "arg_names": ["self", "n"], "flags": [], "fullname": "builtins.bytes.__rmul__", "name": "__rmul__", "type": {".class": "CallableType", "arg_kinds": [0, 0], "arg_names": [null, null], "arg_types": ["builtins.bytes", "builtins.int"], "bound_args": [], "def_extras": {"first_arg": "self"}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "__rmul__ of bytes", "ret_type": "builtins.bytes", "variables": []}}}, "__str__": {".class": "SymbolTableNode", "kind": "Mdef", "node": {".class": "FuncDef", "arg_kinds": [0], "arg_names": ["self"], "flags": [], "fullname": "builtins.bytes.__str__", "name": "__str__", "type": {".class": "CallableType", "arg_kinds": [0], "arg_names": [null], "arg_types": ["builtins.bytes"], "bound_args": [], "def_extras": {"first_arg": "self"}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "__str__ of bytes", "ret_type": "builtins.str", "variables": []}}}, "capitalize": {".class": "SymbolTableNode", "kind": "Mdef", "node": {".class": "FuncDef", "arg_kinds": [0], "arg_names": ["self"], "flags": [], "fullname": "builtins.bytes.capitalize", "name": "capitalize", "type": {".class": "CallableType", "arg_kinds": [0], "arg_names": ["self"], "arg_types": ["builtins.bytes"], "bound_args": [], "def_extras": {"first_arg": "self"}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "capitalize of bytes", "ret_type": "builtins.bytes", "variables": []}}}, "center": {".class": "SymbolTableNode", "kind": "Mdef", "node": {".class": "FuncDef", "arg_kinds": [0, 0, 1], "arg_names": ["self", "width", "fillchar"], "flags": [], "fullname": "builtins.bytes.center", "name": "center", "type": {".class": "CallableType", "arg_kinds": [0, 0, 1], "arg_names": ["self", "width", "fillchar"], "arg_types": ["builtins.bytes", "builtins.int", "builtins.bytes"], "bound_args": [], "def_extras": {"first_arg": "self"}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "center of bytes", "ret_type": "builtins.bytes", "variables": []}}}, "count": {".class": "SymbolTableNode", "kind": "Mdef", "node": {".class": "FuncDef", "arg_kinds": [0, 0, 1, 1], "arg_names": ["self", "sub", "start", "end"], "flags": [], "fullname": "builtins.bytes.count", "name": "count", "type": {".class": "CallableType", "arg_kinds": [0, 0, 1, 1], "arg_names": ["self", "sub", "start", "end"], "arg_types": ["builtins.bytes", {".class": "UnionType", "items": ["builtins.bytes", "builtins.int"]}, {".class": "UnionType", "items": ["builtins.int", {".class": "NoneTyp"}]}, {".class": "UnionType", "items": ["builtins.int", {".class": "NoneTyp"}]}], "bound_args": [], "def_extras": {"first_arg": "self"}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "count of bytes", "ret_type": "builtins.int", "variables": []}}}, "decode": {".class": "SymbolTableNode", "kind": "Mdef", "node": {".class": "FuncDef", "arg_kinds": [0, 1, 1], "arg_names": ["self", "encoding", "errors"], "flags": [], "fullname": "builtins.bytes.decode", "name": "decode", "type": {".class": "CallableType", "arg_kinds": [0, 1, 1], "arg_names": ["self", "encoding", "errors"], "arg_types": ["builtins.bytes", "builtins.str", "builtins.str"], "bound_args": [], "def_extras": {"first_arg": "self"}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "decode of bytes", "ret_type": "builtins.str", "variables": []}}}, "endswith": {".class": "SymbolTableNode", "kind": "Mdef", "node": {".class": "FuncDef", "arg_kinds": [0, 0], "arg_names": ["self", "suffix"], "flags": [], "fullname": "builtins.bytes.endswith", "name": "endswith", "type": {".class": "CallableType", "arg_kinds": [0, 0], "arg_names": ["self", "suffix"], "arg_types": ["builtins.bytes", {".class": "UnionType", "items": ["builtins.bytes", {".class": "Instance", "args": ["builtins.bytes"], "type_ref": "builtins.tuple"}]}], "bound_args": [], "def_extras": {"first_arg": "self"}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "endswith of bytes", "ret_type": "builtins.bool", "variables": []}}}, "expandtabs": {".class": "SymbolTableNode", "kind": "Mdef", "node": {".class": "FuncDef", "arg_kinds": [0, 1], "arg_names": ["self", "tabsize"], "flags": [], "fullname": "builtins.bytes.expandtabs", "name": "expandtabs", "type": {".class": "CallableType", "arg_kinds": [0, 1], "arg_names": ["self", "tabsize"], "arg_types": ["builtins.bytes", "builtins.int"], "bound_args": [], "def_extras": {"first_arg": "self"}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "expandtabs of bytes", "ret_type": "builtins.bytes", "variables": []}}}, "find": {".class": "SymbolTableNode", "kind": "Mdef", "node": {".class": "FuncDef", "arg_kinds": [0, 0, 1, 1], "arg_names": ["self", "sub", "start", "end"], "flags": [], "fullname": "builtins.bytes.find", "name": "find", "type": {".class": "CallableType", "arg_kinds": [0, 0, 1, 1], "arg_names": ["self", "sub", "start", "end"], "arg_types": ["builtins.bytes", {".class": "UnionType", "items": ["builtins.bytes", "builtins.int"]}, {".class": "UnionType", "items": ["builtins.int", {".class": "NoneTyp"}]}, {".class": "UnionType", "items": ["builtins.int", {".class": "NoneTyp"}]}], "bound_args": [], "def_extras": {"first_arg": "self"}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "find of bytes", "ret_type": "builtins.int", "variables": []}}}, "fromhex": {".class": "SymbolTableNode", "kind": "Mdef", "node": {".class": "Decorator", "func": {".class": "FuncDef", "arg_kinds": [0, 0], "arg_names": ["cls", "s"], "flags": ["is_class", "is_decorated"], "fullname": "builtins.bytes.fromhex", "name": "fromhex", "type": {".class": "CallableType", "arg_kinds": [0, 0], "arg_names": ["cls", "s"], "arg_types": [{".class": "TypeType", "item": "builtins.bytes"}, "builtins.str"], "bound_args": [], "def_extras": {"first_arg": "cls"}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "fromhex of bytes", "ret_type": "builtins.bytes", "variables": []}}, "is_overload": false, "var": {".class": "Var", "flags": ["is_initialized_in_class", "is_classmethod"], "fullname": null, "name": "fromhex", "type": {".class": "CallableType", "arg_kinds": [0, 0], "arg_names": ["cls", "s"], "arg_types": [{".class": "TypeType", "item": "builtins.bytes"}, "builtins.str"], "bound_args": [], "def_extras": {"first_arg": "cls"}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "fromhex of bytes", "ret_type": "builtins.bytes", "variables": []}}}}, "hex": {".class": "SymbolTableNode", "kind": "Mdef", "node": {".class": "FuncDef", "arg_kinds": [0], "arg_names": ["self"], "flags": ["is_conditional"], "fullname": "builtins.bytes.hex", "name": "hex", "type": {".class": "CallableType", "arg_kinds": [0], "arg_names": ["self"], "arg_types": ["builtins.bytes"], "bound_args": [], "def_extras": {"first_arg": "self"}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "hex of bytes", "ret_type": "builtins.str", "variables": []}}}, "index": {".class": "SymbolTableNode", "kind": "Mdef", "node": {".class": "FuncDef", "arg_kinds": [0, 0, 1, 1], "arg_names": ["self", "sub", "start", "end"], "flags": [], "fullname": "builtins.bytes.index", "name": "index", "type": {".class": "CallableType", "arg_kinds": [0, 0, 1, 1], "arg_names": ["self", "sub", "start", "end"], "arg_types": ["builtins.bytes", {".class": "UnionType", "items": ["builtins.bytes", "builtins.int"]}, {".class": "UnionType", "items": ["builtins.int", {".class": "NoneTyp"}]}, {".class": "UnionType", "items": ["builtins.int", {".class": "NoneTyp"}]}], "bound_args": [], "def_extras": {"first_arg": "self"}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "index of bytes", "ret_type": "builtins.int", "variables": []}}}, "isalnum": {".class": "SymbolTableNode", "kind": "Mdef", "node": {".class": "FuncDef", "arg_kinds": [0], "arg_names": ["self"], "flags": [], "fullname": "builtins.bytes.isalnum", "name": "isalnum", "type": {".class": "CallableType", "arg_kinds": [0], "arg_names": ["self"], "arg_types": ["builtins.bytes"], "bound_args": [], "def_extras": {"first_arg": "self"}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "isalnum of bytes", "ret_type": "builtins.bool", "variables": []}}}, "isalpha": {".class": "SymbolTableNode", "kind": "Mdef", "node": {".class": "FuncDef", "arg_kinds": [0], "arg_names": ["self"], "flags": [], "fullname": "builtins.bytes.isalpha", "name": "isalpha", "type": {".class": "CallableType", "arg_kinds": [0], "arg_names": ["self"], "arg_types": ["builtins.bytes"], "bound_args": [], "def_extras": {"first_arg": "self"}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "isalpha of bytes", "ret_type": "builtins.bool", "variables": []}}}, "isdigit": {".class": "SymbolTableNode", "kind": "Mdef", "node": {".class": "FuncDef", "arg_kinds": [0], "arg_names": ["self"], "flags": [], "fullname": "builtins.bytes.isdigit", "name": "isdigit", "type": {".class": "CallableType", "arg_kinds": [0], "arg_names": ["self"], "arg_types": ["builtins.bytes"], "bound_args": [], "def_extras": {"first_arg": "self"}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "isdigit of bytes", "ret_type": "builtins.bool", "variables": []}}}, "islower": {".class": "SymbolTableNode", "kind": "Mdef", "node": {".class": "FuncDef", "arg_kinds": [0], "arg_names": ["self"], "flags": [], "fullname": "builtins.bytes.islower", "name": "islower", "type": {".class": "CallableType", "arg_kinds": [0], "arg_names": ["self"], "arg_types": ["builtins.bytes"], "bound_args": [], "def_extras": {"first_arg": "self"}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "islower of bytes", "ret_type": "builtins.bool", "variables": []}}}, "isspace": {".class": "SymbolTableNode", "kind": "Mdef", "node": {".class": "FuncDef", "arg_kinds": [0], "arg_names": ["self"], "flags": [], "fullname": "builtins.bytes.isspace", "name": "isspace", "type": {".class": "CallableType", "arg_kinds": [0], "arg_names": ["self"], "arg_types": ["builtins.bytes"], "bound_args": [], "def_extras": {"first_arg": "self"}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "isspace of bytes", "ret_type": "builtins.bool", "variables": []}}}, "istitle": {".class": "SymbolTableNode", "kind": "Mdef", "node": {".class": "FuncDef", "arg_kinds": [0], "arg_names": ["self"], "flags": [], "fullname": "builtins.bytes.istitle", "name": "istitle", "type": {".class": "CallableType", "arg_kinds": [0], "arg_names": ["self"], "arg_types": ["builtins.bytes"], "bound_args": [], "def_extras": {"first_arg": "self"}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "istitle of bytes", "ret_type": "builtins.bool", "variables": []}}}, "isupper": {".class": "SymbolTableNode", "kind": "Mdef", "node": {".class": "FuncDef", "arg_kinds": [0], "arg_names": ["self"], "flags": [], "fullname": "builtins.bytes.isupper", "name": "isupper", "type": {".class": "CallableType", "arg_kinds": [0], "arg_names": ["self"], "arg_types": ["builtins.bytes"], "bound_args": [], "def_extras": {"first_arg": "self"}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "isupper of bytes", "ret_type": "builtins.bool", "variables": []}}}, "join": {".class": "SymbolTableNode", "kind": "Mdef", "node": {".class": "FuncDef", "arg_kinds": [0, 0], "arg_names": ["self", "iterable"], "flags": [], "fullname": "builtins.bytes.join", "name": "join", "type": {".class": "CallableType", "arg_kinds": [0, 0], "arg_names": ["self", "iterable"], "arg_types": ["builtins.bytes", {".class": "Instance", "args": [{".class": "UnionType", "items": ["typing.ByteString", "builtins.memoryview"]}], "type_ref": "typing.Iterable"}], "bound_args": [], "def_extras": {"first_arg": "self"}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "join of bytes", "ret_type": "builtins.bytes", "variables": []}}}, "ljust": {".class": "SymbolTableNode", "kind": "Mdef", "node": {".class": "FuncDef", "arg_kinds": [0, 0, 1], "arg_names": ["self", "width", "fillchar"], "flags": [], "fullname": "builtins.bytes.ljust", "name": "ljust", "type": {".class": "CallableType", "arg_kinds": [0, 0, 1], "arg_names": ["self", "width", "fillchar"], "arg_types": ["builtins.bytes", "builtins.int", "builtins.bytes"], "bound_args": [], "def_extras": {"first_arg": "self"}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "ljust of bytes", "ret_type": "builtins.bytes", "variables": []}}}, "lower": {".class": "SymbolTableNode", "kind": "Mdef", "node": {".class": "FuncDef", "arg_kinds": [0], "arg_names": ["self"], "flags": [], "fullname": "builtins.bytes.lower", "name": "lower", "type": {".class": "CallableType", "arg_kinds": [0], "arg_names": ["self"], "arg_types": ["builtins.bytes"], "bound_args": [], "def_extras": {"first_arg": "self"}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "lower of bytes", "ret_type": "builtins.bytes", "variables": []}}}, "lstrip": {".class": "SymbolTableNode", "kind": "Mdef", "node": {".class": "FuncDef", "arg_kinds": [0, 1], "arg_names": ["self", "chars"], "flags": [], "fullname": "builtins.bytes.lstrip", "name": "lstrip", "type": {".class": "CallableType", "arg_kinds": [0, 1], "arg_names": ["self", "chars"], "arg_types": ["builtins.bytes", {".class": "UnionType", "items": ["builtins.bytes", {".class": "NoneTyp"}]}], "bound_args": [], "def_extras": {"first_arg": "self"}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "lstrip of bytes", "ret_type": "builtins.bytes", "variables": []}}}, "maketrans": {".class": "SymbolTableNode", "kind": "Mdef", "node": {".class": "Decorator", "func": {".class": "FuncDef", "arg_kinds": [0, 0, 0], "arg_names": ["cls", "frm", "to"], "flags": ["is_class", "is_decorated"], "fullname": "builtins.bytes.maketrans", "name": "maketrans", "type": {".class": "CallableType", "arg_kinds": [0, 0, 0], "arg_names": ["cls", "frm", "to"], "arg_types": [{".class": "TypeType", "item": "builtins.bytes"}, "builtins.bytes", "builtins.bytes"], "bound_args": [], "def_extras": {"first_arg": "cls"}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "maketrans of bytes", "ret_type": "builtins.bytes", "variables": []}}, "is_overload": false, "var": {".class": "Var", "flags": ["is_initialized_in_class", "is_classmethod"], "fullname": null, "name": "maketrans", "type": {".class": "CallableType", "arg_kinds": [0, 0, 0], "arg_names": ["cls", "frm", "to"], "arg_types": [{".class": "TypeType", "item": "builtins.bytes"}, "builtins.bytes", "builtins.bytes"], "bound_args": [], "def_extras": {"first_arg": "cls"}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "maketrans of bytes", "ret_type": "builtins.bytes", "variables": []}}}}, "partition": {".class": "SymbolTableNode", "kind": "Mdef", "node": {".class": "FuncDef", "arg_kinds": [0, 0], "arg_names": ["self", "sep"], "flags": [], "fullname": "builtins.bytes.partition", "name": "partition", "type": {".class": "CallableType", "arg_kinds": [0, 0], "arg_names": ["self", "sep"], "arg_types": ["builtins.bytes", "builtins.bytes"], "bound_args": [], "def_extras": {"first_arg": "self"}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "partition of bytes", "ret_type": {".class": "TupleType", "fallback": {".class": "Instance", "args": [{".class": "AnyType", "missing_import_name": null, "source_any": null, "type_of_any": 6}], "type_ref": "builtins.tuple"}, "implicit": false, "items": ["builtins.bytes", "builtins.bytes", "builtins.bytes"]}, "variables": []}}}, "replace": {".class": "SymbolTableNode", "kind": "Mdef", "node": {".class": "FuncDef", "arg_kinds": [0, 0, 0, 1], "arg_names": ["self", "old", "new", "count"], "flags": [], "fullname": "builtins.bytes.replace", "name": "replace", "type": {".class": "CallableType", "arg_kinds": [0, 0, 0, 1], "arg_names": ["self", "old", "new", "count"], "arg_types": ["builtins.bytes", "builtins.bytes", "builtins.bytes", "builtins.int"], "bound_args": [], "def_extras": {"first_arg": "self"}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "replace of bytes", "ret_type": "builtins.bytes", "variables": []}}}, "rfind": {".class": "SymbolTableNode", "kind": "Mdef", "node": {".class": "FuncDef", "arg_kinds": [0, 0, 1, 1], "arg_names": ["self", "sub", "start", "end"], "flags": [], "fullname": "builtins.bytes.rfind", "name": "rfind", "type": {".class": "CallableType", "arg_kinds": [0, 0, 1, 1], "arg_names": ["self", "sub", "start", "end"], "arg_types": ["builtins.bytes", {".class": "UnionType", "items": ["builtins.bytes", "builtins.int"]}, {".class": "UnionType", "items": ["builtins.int", {".class": "NoneTyp"}]}, {".class": "UnionType", "items": ["builtins.int", {".class": "NoneTyp"}]}], "bound_args": [], "def_extras": {"first_arg": "self"}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "rfind of bytes", "ret_type": "builtins.int", "variables": []}}}, "rindex": {".class": "SymbolTableNode", "kind": "Mdef", "node": {".class": "FuncDef", "arg_kinds": [0, 0, 1, 1], "arg_names": ["self", "sub", "start", "end"], "flags": [], "fullname": "builtins.bytes.rindex", "name": "rindex", "type": {".class": "CallableType", "arg_kinds": [0, 0, 1, 1], "arg_names": ["self", "sub", "start", "end"], "arg_types": ["builtins.bytes", {".class": "UnionType", "items": ["builtins.bytes", "builtins.int"]}, {".class": "UnionType", "items": ["builtins.int", {".class": "NoneTyp"}]}, {".class": "UnionType", "items": ["builtins.int", {".class": "NoneTyp"}]}], "bound_args": [], "def_extras": {"first_arg": "self"}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "rindex of bytes", "ret_type": "builtins.int", "variables": []}}}, "rjust": {".class": "SymbolTableNode", "kind": "Mdef", "node": {".class": "FuncDef", "arg_kinds": [0, 0, 1], "arg_names": ["self", "width", "fillchar"], "flags": [], "fullname": "builtins.bytes.rjust", "name": "rjust", "type": {".class": "CallableType", "arg_kinds": [0, 0, 1], "arg_names": ["self", "width", "fillchar"], "arg_types": ["builtins.bytes", "builtins.int", "builtins.bytes"], "bound_args": [], "def_extras": {"first_arg": "self"}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "rjust of bytes", "ret_type": "builtins.bytes", "variables": []}}}, "rpartition": {".class": "SymbolTableNode", "kind": "Mdef", "node": {".class": "FuncDef", "arg_kinds": [0, 0], "arg_names": ["self", "sep"], "flags": [], "fullname": "builtins.bytes.rpartition", "name": "rpartition", "type": {".class": "CallableType", "arg_kinds": [0, 0], "arg_names": ["self", "sep"], "arg_types": ["builtins.bytes", "builtins.bytes"], "bound_args": [], "def_extras": {"first_arg": "self"}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "rpartition of bytes", "ret_type": {".class": "TupleType", "fallback": {".class": "Instance", "args": [{".class": "AnyType", "missing_import_name": null, "source_any": null, "type_of_any": 6}], "type_ref": "builtins.tuple"}, "implicit": false, "items": ["builtins.bytes", "builtins.bytes", "builtins.bytes"]}, "variables": []}}}, "rsplit": {".class": "SymbolTableNode", "kind": "Mdef", "node": {".class": "FuncDef", "arg_kinds": [0, 1, 1], "arg_names": ["self", "sep", "maxsplit"], "flags": [], "fullname": "builtins.bytes.rsplit", "name": "rsplit", "type": {".class": "CallableType", "arg_kinds": [0, 1, 1], "arg_names": ["self", "sep", "maxsplit"], "arg_types": ["builtins.bytes", {".class": "UnionType", "items": ["builtins.bytes", {".class": "NoneTyp"}]}, "builtins.int"], "bound_args": [], "def_extras": {"first_arg": "self"}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "rsplit of bytes", "ret_type": {".class": "Instance", "args": ["builtins.bytes"], "type_ref": "builtins.list"}, "variables": []}}}, "rstrip": {".class": "SymbolTableNode", "kind": "Mdef", "node": {".class": "FuncDef", "arg_kinds": [0, 1], "arg_names": ["self", "chars"], "flags": [], "fullname": "builtins.bytes.rstrip", "name": "rstrip", "type": {".class": "CallableType", "arg_kinds": [0, 1], "arg_names": ["self", "chars"], "arg_types": ["builtins.bytes", {".class": "UnionType", "items": ["builtins.bytes", {".class": "NoneTyp"}]}], "bound_args": [], "def_extras": {"first_arg": "self"}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "rstrip of bytes", "ret_type": "builtins.bytes", "variables": []}}}, "split": {".class": "SymbolTableNode", "kind": "Mdef", "node": {".class": "FuncDef", "arg_kinds": [0, 1, 1], "arg_names": ["self", "sep", "maxsplit"], "flags": [], "fullname": "builtins.bytes.split", "name": "split", "type": {".class": "CallableType", "arg_kinds": [0, 1, 1], "arg_names": ["self", "sep", "maxsplit"], "arg_types": ["builtins.bytes", {".class": "UnionType", "items": ["builtins.bytes", {".class": "NoneTyp"}]}, "builtins.int"], "bound_args": [], "def_extras": {"first_arg": "self"}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "split of bytes", "ret_type": {".class": "Instance", "args": ["builtins.bytes"], "type_ref": "builtins.list"}, "variables": []}}}, "splitlines": {".class": "SymbolTableNode", "kind": "Mdef", "node": {".class": "FuncDef", "arg_kinds": [0, 1], "arg_names": ["self", "keepends"], "flags": [], "fullname": "builtins.bytes.splitlines", "name": "splitlines", "type": {".class": "CallableType", "arg_kinds": [0, 1], "arg_names": ["self", "keepends"], "arg_types": ["builtins.bytes", "builtins.bool"], "bound_args": [], "def_extras": {"first_arg": "self"}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "splitlines of bytes", "ret_type": {".class": "Instance", "args": ["builtins.bytes"], "type_ref": "builtins.list"}, "variables": []}}}, "startswith": {".class": "SymbolTableNode", "kind": "Mdef", "node": {".class": "FuncDef", "arg_kinds": [0, 0, 1, 1], "arg_names": ["self", "prefix", "start", "end"], "flags": [], "fullname": "builtins.bytes.startswith", "name": "startswith", "type": {".class": "CallableType", "arg_kinds": [0, 0, 1, 1], "arg_names": ["self", "prefix", "start", "end"], "arg_types": ["builtins.bytes", {".class": "UnionType", "items": ["builtins.bytes", {".class": "Instance", "args": ["builtins.bytes"], "type_ref": "builtins.tuple"}]}, {".class": "UnionType", "items": ["builtins.int", {".class": "NoneTyp"}]}, {".class": "UnionType", "items": ["builtins.int", {".class": "NoneTyp"}]}], "bound_args": [], "def_extras": {"first_arg": "self"}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "startswith of bytes", "ret_type": "builtins.bool", "variables": []}}}, "strip": {".class": "SymbolTableNode", "kind": "Mdef", "node": {".class": "FuncDef", "arg_kinds": [0, 1], "arg_names": ["self", "chars"], "flags": [], "fullname": "builtins.bytes.strip", "name": "strip", "type": {".class": "CallableType", "arg_kinds": [0, 1], "arg_names": ["self", "chars"], "arg_types": ["builtins.bytes", {".class": "UnionType", "items": ["builtins.bytes", {".class": "NoneTyp"}]}], "bound_args": [], "def_extras": {"first_arg": "self"}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "strip of bytes", "ret_type": "builtins.bytes", "variables": []}}}, "swapcase": {".class": "SymbolTableNode", "kind": "Mdef", "node": {".class": "FuncDef", "arg_kinds": [0], "arg_names": ["self"], "flags": [], "fullname": "builtins.bytes.swapcase", "name": "swapcase", "type": {".class": "CallableType", "arg_kinds": [0], "arg_names": ["self"], "arg_types": ["builtins.bytes"], "bound_args": [], "def_extras": {"first_arg": "self"}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "swapcase of bytes", "ret_type": "builtins.bytes", "variables": []}}}, "title": {".class": "SymbolTableNode", "kind": "Mdef", "node": {".class": "FuncDef", "arg_kinds": [0], "arg_names": ["self"], "flags": [], "fullname": "builtins.bytes.title", "name": "title", "type": {".class": "CallableType", "arg_kinds": [0], "arg_names": ["self"], "arg_types": ["builtins.bytes"], "bound_args": [], "def_extras": {"first_arg": "self"}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "title of bytes", "ret_type": "builtins.bytes", "variables": []}}}, "translate": {".class": "SymbolTableNode", "kind": "Mdef", "node": {".class": "FuncDef", "arg_kinds": [0, 0, 1], "arg_names": ["self", "table", "delete"], "flags": [], "fullname": "builtins.bytes.translate", "name": "translate", "type": {".class": "CallableType", "arg_kinds": [0, 0, 1], "arg_names": ["self", "table", "delete"], "arg_types": ["builtins.bytes", {".class": "UnionType", "items": ["builtins.bytes", {".class": "NoneTyp"}]}, "builtins.bytes"], "bound_args": [], "def_extras": {"first_arg": "self"}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "translate of bytes", "ret_type": "builtins.bytes", "variables": []}}}, "upper": {".class": "SymbolTableNode", "kind": "Mdef", "node": {".class": "FuncDef", "arg_kinds": [0], "arg_names": ["self"], "flags": [], "fullname": "builtins.bytes.upper", "name": "upper", "type": {".class": "CallableType", "arg_kinds": [0], "arg_names": ["self"], "arg_types": ["builtins.bytes"], "bound_args": [], "def_extras": {"first_arg": "self"}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "upper of bytes", "ret_type": "builtins.bytes", "variables": []}}}, "zfill": {".class": "SymbolTableNode", "kind": "Mdef", "node": {".class": "FuncDef", "arg_kinds": [0, 0], "arg_names": ["self", "width"], "flags": [], "fullname": "builtins.bytes.zfill", "name": "zfill", "type": {".class": "CallableType", "arg_kinds": [0, 0], "arg_names": ["self", "width"], "arg_types": ["builtins.bytes", "builtins.int"], "bound_args": [], "def_extras": {"first_arg": "self"}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "zfill of bytes", "ret_type": "builtins.bytes", "variables": []}}}}, "tuple_type": null, "type_vars": [], "typeddict_type": null}}, "callable": {".class": "SymbolTableNode", "kind": "Gdef", "node": {".class": "FuncDef", "arg_kinds": [0], "arg_names": ["o"], "flags": [], "fullname": "builtins.callable", "name": "callable", "type": {".class": "CallableType", "arg_kinds": [0], "arg_names": ["o"], "arg_types": ["builtins.object"], "bound_args": [], "def_extras": {"first_arg": null}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "callable", "ret_type": "builtins.bool", "variables": []}}}, "chr": {".class": "SymbolTableNode", "kind": "Gdef", "node": {".class": "FuncDef", "arg_kinds": [0], "arg_names": ["code"], "flags": [], "fullname": "builtins.chr", "name": "chr", "type": {".class": "CallableType", "arg_kinds": [0], "arg_names": ["code"], "arg_types": ["builtins.int"], "bound_args": [], "def_extras": {"first_arg": null}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "chr", "ret_type": "builtins.str", "variables": []}}}, "classmethod": {".class": "SymbolTableNode", "kind": "Gdef", "node": {".class": "TypeInfo", "_promote": null, "abstract_attributes": [], "bases": ["builtins.object"], "declared_metaclass": null, "defn": {".class": "ClassDef", "fullname": "builtins.classmethod", "name": "classmethod", "type_vars": []}, "flags": [], "fullname": "builtins.classmethod", "metaclass_type": null, "metadata": {}, "module_name": "builtins", "mro": ["builtins.classmethod", "builtins.object"], "names": {".class": "SymbolTable", "__func__": {".class": "SymbolTableNode", "kind": "Mdef", "node": {".class": "Var", "flags": ["is_initialized_in_class"], "fullname": "builtins.classmethod.__func__", "name": "__func__", "type": {".class": "CallableType", "arg_kinds": [2, 4], "arg_names": [null, null], "arg_types": [{".class": "AnyType", "missing_import_name": null, "source_any": null, "type_of_any": 4}, {".class": "AnyType", "missing_import_name": null, "source_any": null, "type_of_any": 4}], "bound_args": [], "def_extras": {}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": true, "name": null, "ret_type": {".class": "AnyType", "missing_import_name": null, "source_any": null, "type_of_any": 4}, "variables": []}}}, "__get__": {".class": "SymbolTableNode", "kind": "Mdef", "node": {".class": "FuncDef", "arg_kinds": [0, 0, 1], "arg_names": ["self", "obj", "type"], "flags": [], "fullname": "builtins.classmethod.__get__", "name": "__get__", "type": {".class": "CallableType", "arg_kinds": [0, 0, 1], "arg_names": ["self", "obj", "type"], "arg_types": ["builtins.classmethod", {".class": "TypeVarType", "fullname": "builtins._T", "id": -1, "name": "_T", "upper_bound": "builtins.object", "values": [], "variance": 0}, {".class": "UnionType", "items": [{".class": "TypeType", "item": {".class": "TypeVarType", "fullname": "builtins._T", "id": -1, "name": "_T", "upper_bound": "builtins.object", "values": [], "variance": 0}}, {".class": "NoneTyp"}]}], "bound_args": [], "def_extras": {"first_arg": "self"}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "__get__ of classmethod", "ret_type": {".class": "CallableType", "arg_kinds": [2, 4], "arg_names": [null, null], "arg_types": [{".class": "AnyType", "missing_import_name": null, "source_any": null, "type_of_any": 4}, {".class": "AnyType", "missing_import_name": null, "source_any": null, "type_of_any": 4}], "bound_args": [], "def_extras": {}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": true, "name": null, "ret_type": {".class": "AnyType", "missing_import_name": null, "source_any": null, "type_of_any": 4}, "variables": []}, "variables": [{".class": "TypeVarDef", "fullname": "builtins._T", "id": -1, "name": "_T", "upper_bound": "builtins.object", "values": [], "variance": 0}]}}}, "__init__": {".class": "SymbolTableNode", "kind": "Mdef", "node": {".class": "FuncDef", "arg_kinds": [0, 0], "arg_names": ["self", "f"], "flags": [], "fullname": "builtins.classmethod.__init__", "name": "__init__", "type": {".class": "CallableType", "arg_kinds": [0, 0], "arg_names": ["self", "f"], "arg_types": ["builtins.classmethod", {".class": "CallableType", "arg_kinds": [2, 4], "arg_names": [null, null], "arg_types": [{".class": "AnyType", "missing_import_name": null, "source_any": null, "type_of_any": 4}, {".class": "AnyType", "missing_import_name": null, "source_any": null, "type_of_any": 4}], "bound_args": [], "def_extras": {}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": true, "name": null, "ret_type": {".class": "AnyType", "missing_import_name": null, "source_any": null, "type_of_any": 4}, "variables": []}], "bound_args": [], "def_extras": {"first_arg": "self"}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "__init__ of classmethod", "ret_type": {".class": "NoneTyp"}, "variables": []}}}, "__isabstractmethod__": {".class": "SymbolTableNode", "kind": "Mdef", "node": {".class": "Var", "flags": ["is_initialized_in_class"], "fullname": "builtins.classmethod.__isabstractmethod__", "name": "__isabstractmethod__", "type": "builtins.bool"}}, "__new__": {".class": "SymbolTableNode", "kind": "Mdef", "node": {".class": "FuncDef", "arg_kinds": [0, 2, 4], "arg_names": ["cls", "args", "kwargs"], "flags": [], "fullname": "builtins.classmethod.__new__", "name": "__new__", "type": {".class": "CallableType", "arg_kinds": [0, 2, 4], "arg_names": ["cls", "args", "kwargs"], "arg_types": [{".class": "TypeType", "item": {".class": "TypeVarType", "fullname": "builtins._T", "id": -1, "name": "_T", "upper_bound": "builtins.object", "values": [], "variance": 0}}, {".class": "AnyType", "missing_import_name": null, "source_any": null, "type_of_any": 2}, {".class": "AnyType", "missing_import_name": null, "source_any": null, "type_of_any": 2}], "bound_args": [], "def_extras": {"first_arg": "cls"}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "__new__ of classmethod", "ret_type": {".class": "TypeVarType", "fullname": "builtins._T", "id": -1, "name": "_T", "upper_bound": "builtins.object", "values": [], "variance": 0}, "variables": [{".class": "TypeVarDef", "fullname": "builtins._T", "id": -1, "name": "_T", "upper_bound": "builtins.object", "values": [], "variance": 0}]}}}}, "tuple_type": null, "type_vars": [], "typeddict_type": null}}, "compile": {".class": "SymbolTableNode", "kind": "Gdef", "node": {".class": "FuncDef", "arg_kinds": [0, 0, 0, 1, 1, 1], "arg_names": ["source", "filename", "mode", "flags", "dont_inherit", "optimize"], "flags": ["is_conditional"], "fullname": "builtins.compile", "name": "compile", "type": {".class": "CallableType", "arg_kinds": [0, 0, 0, 1, 1, 1], "arg_names": ["source", "filename", "mode", "flags", "dont_inherit", "optimize"], "arg_types": [{".class": "UnionType", "items": ["builtins.str", "builtins.bytes", "_ast.mod"]}, {".class": "UnionType", "items": ["builtins.str", "builtins.bytes", {".class": "Instance", "args": [{".class": "AnyType", "missing_import_name": null, "source_any": null, "type_of_any": 4}], "type_ref": "builtins._PathLike"}]}, "builtins.str", "builtins.int", "builtins.int", "builtins.int"], "bound_args": [], "def_extras": {"first_arg": null}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "compile", "ret_type": {".class": "AnyType", "missing_import_name": null, "source_any": null, "type_of_any": 2}, "variables": []}}}, "complex": {".class": "SymbolTableNode", "kind": "Gdef", "node": {".class": "TypeInfo", "_promote": null, "abstract_attributes": [], "bases": ["builtins.object"], "declared_metaclass": null, "defn": {".class": "ClassDef", "fullname": "builtins.complex", "name": "complex", "type_vars": []}, "flags": [], "fullname": "builtins.complex", "metaclass_type": null, "metadata": {}, "module_name": "builtins", "mro": ["builtins.complex", "builtins.object"], "names": {".class": "SymbolTable", "__abs__": {".class": "SymbolTableNode", "kind": "Mdef", "node": {".class": "FuncDef", "arg_kinds": [0], "arg_names": ["self"], "flags": [], "fullname": "builtins.complex.__abs__", "name": "__abs__", "type": {".class": "CallableType", "arg_kinds": [0], "arg_names": [null], "arg_types": ["builtins.complex"], "bound_args": [], "def_extras": {"first_arg": "self"}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "__abs__ of complex", "ret_type": "builtins.float", "variables": []}}}, "__add__": {".class": "SymbolTableNode", "kind": "Mdef", "node": {".class": "FuncDef", "arg_kinds": [0, 0], "arg_names": ["self", "x"], "flags": [], "fullname": "builtins.complex.__add__", "name": "__add__", "type": {".class": "CallableType", "arg_kinds": [0, 0], "arg_names": [null, null], "arg_types": ["builtins.complex", "builtins.complex"], "bound_args": [], "def_extras": {"first_arg": "self"}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "__add__ of complex", "ret_type": "builtins.complex", "variables": []}}}, "__bool__": {".class": "SymbolTableNode", "kind": "Mdef", "node": {".class": "FuncDef", "arg_kinds": [0], "arg_names": ["self"], "flags": ["is_conditional"], "fullname": "builtins.complex.__bool__", "name": "__bool__", "type": {".class": "CallableType", "arg_kinds": [0], "arg_names": ["self"], "arg_types": ["builtins.complex"], "bound_args": [], "def_extras": {"first_arg": "self"}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "__bool__ of complex", "ret_type": "builtins.bool", "variables": []}}}, "__complex__": {".class": "SymbolTableNode", "kind": "Mdef", "node": {".class": "FuncDef", "arg_kinds": [0], "arg_names": ["self"], "flags": [], "fullname": "builtins.complex.__complex__", "name": "__complex__", "type": {".class": "CallableType", "arg_kinds": [0], "arg_names": [null], "arg_types": ["builtins.complex"], "bound_args": [], "def_extras": {"first_arg": "self"}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "__complex__ of complex", "ret_type": "builtins.complex", "variables": []}}}, "__eq__": {".class": "SymbolTableNode", "kind": "Mdef", "node": {".class": "FuncDef", "arg_kinds": [0, 0], "arg_names": ["self", "x"], "flags": [], "fullname": "builtins.complex.__eq__", "name": "__eq__", "type": {".class": "CallableType", "arg_kinds": [0, 0], "arg_names": [null, null], "arg_types": ["builtins.complex", "builtins.object"], "bound_args": [], "def_extras": {"first_arg": "self"}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "__eq__ of complex", "ret_type": "builtins.bool", "variables": []}}}, "__hash__": {".class": "SymbolTableNode", "kind": "Mdef", "node": {".class": "FuncDef", "arg_kinds": [0], "arg_names": ["self"], "flags": [], "fullname": "builtins.complex.__hash__", "name": "__hash__", "type": {".class": "CallableType", "arg_kinds": [0], "arg_names": ["self"], "arg_types": ["builtins.complex"], "bound_args": [], "def_extras": {"first_arg": "self"}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "__hash__ of complex", "ret_type": "builtins.int", "variables": []}}}, "__init__": {".class": "SymbolTableNode", "kind": "Mdef", "node": {".class": "OverloadedFuncDef", "flags": [], "fullname": "builtins.complex.__init__", "impl": null, "items": [{".class": "Decorator", "func": {".class": "FuncDef", "arg_kinds": [0, 1, 1], "arg_names": ["self", "re", "im"], "flags": ["is_overload", "is_decorated"], "fullname": "builtins.complex.__init__", "name": "__init__", "type": {".class": "CallableType", "arg_kinds": [0, 1, 1], "arg_names": ["self", "re", "im"], "arg_types": ["builtins.complex", "builtins.float", "builtins.float"], "bound_args": [], "def_extras": {"first_arg": "self"}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "__init__ of complex", "ret_type": {".class": "NoneTyp"}, "variables": []}}, "is_overload": true, "var": {".class": "Var", "flags": [], "fullname": null, "name": "__init__", "type": null}}, {".class": "Decorator", "func": {".class": "FuncDef", "arg_kinds": [0, 0], "arg_names": ["self", "s"], "flags": ["is_overload", "is_decorated"], "fullname": "builtins.complex.__init__", "name": "__init__", "type": {".class": "CallableType", "arg_kinds": [0, 0], "arg_names": ["self", "s"], "arg_types": ["builtins.complex", "builtins.str"], "bound_args": [], "def_extras": {"first_arg": "self"}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "__init__ of complex", "ret_type": {".class": "NoneTyp"}, "variables": []}}, "is_overload": true, "var": {".class": "Var", "flags": [], "fullname": null, "name": "__init__", "type": null}}, {".class": "Decorator", "func": {".class": "FuncDef", "arg_kinds": [0, 0], "arg_names": ["self", "s"], "flags": ["is_overload", "is_decorated"], "fullname": "builtins.complex.__init__", "name": "__init__", "type": {".class": "CallableType", "arg_kinds": [0, 0], "arg_names": ["self", "s"], "arg_types": ["builtins.complex", "typing.SupportsComplex"], "bound_args": [], "def_extras": {"first_arg": "self"}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "__init__ of complex", "ret_type": {".class": "NoneTyp"}, "variables": []}}, "is_overload": true, "var": {".class": "Var", "flags": [], "fullname": null, "name": "__init__", "type": null}}], "type": {".class": "Overloaded", "items": [{".class": "CallableType", "arg_kinds": [0, 1, 1], "arg_names": ["self", "re", "im"], "arg_types": ["builtins.complex", "builtins.float", "builtins.float"], "bound_args": [], "def_extras": {"first_arg": "self"}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "__init__ of complex", "ret_type": {".class": "NoneTyp"}, "variables": []}, {".class": "CallableType", "arg_kinds": [0, 0], "arg_names": ["self", "s"], "arg_types": ["builtins.complex", "builtins.str"], "bound_args": [], "def_extras": {"first_arg": "self"}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "__init__ of complex", "ret_type": {".class": "NoneTyp"}, "variables": []}, {".class": "CallableType", "arg_kinds": [0, 0], "arg_names": ["self", "s"], "arg_types": ["builtins.complex", "typing.SupportsComplex"], "bound_args": [], "def_extras": {"first_arg": "self"}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "__init__ of complex", "ret_type": {".class": "NoneTyp"}, "variables": []}]}}}, "__mul__": {".class": "SymbolTableNode", "kind": "Mdef", "node": {".class": "FuncDef", "arg_kinds": [0, 0], "arg_names": ["self", "x"], "flags": [], "fullname": "builtins.complex.__mul__", "name": "__mul__", "type": {".class": "CallableType", "arg_kinds": [0, 0], "arg_names": [null, null], "arg_types": ["builtins.complex", "builtins.complex"], "bound_args": [], "def_extras": {"first_arg": "self"}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "__mul__ of complex", "ret_type": "builtins.complex", "variables": []}}}, "__ne__": {".class": "SymbolTableNode", "kind": "Mdef", "node": {".class": "FuncDef", "arg_kinds": [0, 0], "arg_names": ["self", "x"], "flags": [], "fullname": "builtins.complex.__ne__", "name": "__ne__", "type": {".class": "CallableType", "arg_kinds": [0, 0], "arg_names": [null, null], "arg_types": ["builtins.complex", "builtins.object"], "bound_args": [], "def_extras": {"first_arg": "self"}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "__ne__ of complex", "ret_type": "builtins.bool", "variables": []}}}, "__neg__": {".class": "SymbolTableNode", "kind": "Mdef", "node": {".class": "FuncDef", "arg_kinds": [0], "arg_names": ["self"], "flags": [], "fullname": "builtins.complex.__neg__", "name": "__neg__", "type": {".class": "CallableType", "arg_kinds": [0], "arg_names": [null], "arg_types": ["builtins.complex"], "bound_args": [], "def_extras": {"first_arg": "self"}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "__neg__ of complex", "ret_type": "builtins.complex", "variables": []}}}, "__pos__": {".class": "SymbolTableNode", "kind": "Mdef", "node": {".class": "FuncDef", "arg_kinds": [0], "arg_names": ["self"], "flags": [], "fullname": "builtins.complex.__pos__", "name": "__pos__", "type": {".class": "CallableType", "arg_kinds": [0], "arg_names": [null], "arg_types": ["builtins.complex"], "bound_args": [], "def_extras": {"first_arg": "self"}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "__pos__ of complex", "ret_type": "builtins.complex", "variables": []}}}, "__pow__": {".class": "SymbolTableNode", "kind": "Mdef", "node": {".class": "FuncDef", "arg_kinds": [0, 0], "arg_names": ["self", "x"], "flags": [], "fullname": "builtins.complex.__pow__", "name": "__pow__", "type": {".class": "CallableType", "arg_kinds": [0, 0], "arg_names": [null, null], "arg_types": ["builtins.complex", "builtins.complex"], "bound_args": [], "def_extras": {"first_arg": "self"}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "__pow__ of complex", "ret_type": "builtins.complex", "variables": []}}}, "__radd__": {".class": "SymbolTableNode", "kind": "Mdef", "node": {".class": "FuncDef", "arg_kinds": [0, 0], "arg_names": ["self", "x"], "flags": [], "fullname": "builtins.complex.__radd__", "name": "__radd__", "type": {".class": "CallableType", "arg_kinds": [0, 0], "arg_names": [null, null], "arg_types": ["builtins.complex", "builtins.complex"], "bound_args": [], "def_extras": {"first_arg": "self"}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "__radd__ of complex", "ret_type": "builtins.complex", "variables": []}}}, "__rmul__": {".class": "SymbolTableNode", "kind": "Mdef", "node": {".class": "FuncDef", "arg_kinds": [0, 0], "arg_names": ["self", "x"], "flags": [], "fullname": "builtins.complex.__rmul__", "name": "__rmul__", "type": {".class": "CallableType", "arg_kinds": [0, 0], "arg_names": [null, null], "arg_types": ["builtins.complex", "builtins.complex"], "bound_args": [], "def_extras": {"first_arg": "self"}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "__rmul__ of complex", "ret_type": "builtins.complex", "variables": []}}}, "__rpow__": {".class": "SymbolTableNode", "kind": "Mdef", "node": {".class": "FuncDef", "arg_kinds": [0, 0], "arg_names": ["self", "x"], "flags": [], "fullname": "builtins.complex.__rpow__", "name": "__rpow__", "type": {".class": "CallableType", "arg_kinds": [0, 0], "arg_names": [null, null], "arg_types": ["builtins.complex", "builtins.complex"], "bound_args": [], "def_extras": {"first_arg": "self"}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "__rpow__ of complex", "ret_type": "builtins.complex", "variables": []}}}, "__rsub__": {".class": "SymbolTableNode", "kind": "Mdef", "node": {".class": "FuncDef", "arg_kinds": [0, 0], "arg_names": ["self", "x"], "flags": [], "fullname": "builtins.complex.__rsub__", "name": "__rsub__", "type": {".class": "CallableType", "arg_kinds": [0, 0], "arg_names": [null, null], "arg_types": ["builtins.complex", "builtins.complex"], "bound_args": [], "def_extras": {"first_arg": "self"}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "__rsub__ of complex", "ret_type": "builtins.complex", "variables": []}}}, "__rtruediv__": {".class": "SymbolTableNode", "kind": "Mdef", "node": {".class": "FuncDef", "arg_kinds": [0, 0], "arg_names": ["self", "x"], "flags": [], "fullname": "builtins.complex.__rtruediv__", "name": "__rtruediv__", "type": {".class": "CallableType", "arg_kinds": [0, 0], "arg_names": ["self", "x"], "arg_types": ["builtins.complex", "builtins.complex"], "bound_args": [], "def_extras": {"first_arg": "self"}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "__rtruediv__ of complex", "ret_type": "builtins.complex", "variables": []}}}, "__str__": {".class": "SymbolTableNode", "kind": "Mdef", "node": {".class": "FuncDef", "arg_kinds": [0], "arg_names": ["self"], "flags": [], "fullname": "builtins.complex.__str__", "name": "__str__", "type": {".class": "CallableType", "arg_kinds": [0], "arg_names": [null], "arg_types": ["builtins.complex"], "bound_args": [], "def_extras": {"first_arg": "self"}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "__str__ of complex", "ret_type": "builtins.str", "variables": []}}}, "__sub__": {".class": "SymbolTableNode", "kind": "Mdef", "node": {".class": "FuncDef", "arg_kinds": [0, 0], "arg_names": ["self", "x"], "flags": [], "fullname": "builtins.complex.__sub__", "name": "__sub__", "type": {".class": "CallableType", "arg_kinds": [0, 0], "arg_names": [null, null], "arg_types": ["builtins.complex", "builtins.complex"], "bound_args": [], "def_extras": {"first_arg": "self"}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "__sub__ of complex", "ret_type": "builtins.complex", "variables": []}}}, "__truediv__": {".class": "SymbolTableNode", "kind": "Mdef", "node": {".class": "FuncDef", "arg_kinds": [0, 0], "arg_names": ["self", "x"], "flags": [], "fullname": "builtins.complex.__truediv__", "name": "__truediv__", "type": {".class": "CallableType", "arg_kinds": [0, 0], "arg_names": ["self", "x"], "arg_types": ["builtins.complex", "builtins.complex"], "bound_args": [], "def_extras": {"first_arg": "self"}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "__truediv__ of complex", "ret_type": "builtins.complex", "variables": []}}}, "conjugate": {".class": "SymbolTableNode", "kind": "Mdef", "node": {".class": "FuncDef", "arg_kinds": [0], "arg_names": ["self"], "flags": [], "fullname": "builtins.complex.conjugate", "name": "conjugate", "type": {".class": "CallableType", "arg_kinds": [0], "arg_names": ["self"], "arg_types": ["builtins.complex"], "bound_args": [], "def_extras": {"first_arg": "self"}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "conjugate of complex", "ret_type": "builtins.complex", "variables": []}}}, "imag": {".class": "SymbolTableNode", "kind": "Mdef", "node": {".class": "Decorator", "func": {".class": "FuncDef", "arg_kinds": [0], "arg_names": ["self"], "flags": ["is_property", "is_decorated"], "fullname": "builtins.complex.imag", "name": "imag", "type": {".class": "CallableType", "arg_kinds": [0], "arg_names": ["self"], "arg_types": ["builtins.complex"], "bound_args": [], "def_extras": {"first_arg": "self"}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "imag of complex", "ret_type": "builtins.float", "variables": []}}, "is_overload": false, "var": {".class": "Var", "flags": ["is_initialized_in_class", "is_property"], "fullname": null, "name": "imag", "type": {".class": "CallableType", "arg_kinds": [0], "arg_names": ["self"], "arg_types": ["builtins.complex"], "bound_args": [], "def_extras": {"first_arg": "self"}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "imag of complex", "ret_type": "builtins.float", "variables": []}}}}, "real": {".class": "SymbolTableNode", "kind": "Mdef", "node": {".class": "Decorator", "func": {".class": "FuncDef", "arg_kinds": [0], "arg_names": ["self"], "flags": ["is_property", "is_decorated"], "fullname": "builtins.complex.real", "name": "real", "type": {".class": "CallableType", "arg_kinds": [0], "arg_names": ["self"], "arg_types": ["builtins.complex"], "bound_args": [], "def_extras": {"first_arg": "self"}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "real of complex", "ret_type": "builtins.float", "variables": []}}, "is_overload": false, "var": {".class": "Var", "flags": ["is_initialized_in_class", "is_property"], "fullname": null, "name": "real", "type": {".class": "CallableType", "arg_kinds": [0], "arg_names": ["self"], "arg_types": ["builtins.complex"], "bound_args": [], "def_extras": {"first_arg": "self"}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "real of complex", "ret_type": "builtins.float", "variables": []}}}}}, "tuple_type": null, "type_vars": [], "typeddict_type": null}}, "copyright": {".class": "SymbolTableNode", "kind": "Gdef", "node": {".class": "FuncDef", "arg_kinds": [], "arg_names": [], "flags": ["is_conditional"], "fullname": "builtins.copyright", "name": "copyright", "type": {".class": "CallableType", "arg_kinds": [], "arg_names": [], "arg_types": [], "bound_args": [], "def_extras": {"first_arg": null}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "copyright", "ret_type": {".class": "NoneTyp"}, "variables": []}}}, "credits": {".class": "SymbolTableNode", "kind": "Gdef", "node": {".class": "FuncDef", "arg_kinds": [], "arg_names": [], "flags": ["is_conditional"], "fullname": "builtins.credits", "name": "credits", "type": {".class": "CallableType", "arg_kinds": [], "arg_names": [], "arg_types": [], "bound_args": [], "def_extras": {"first_arg": null}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "credits", "ret_type": {".class": "NoneTyp"}, "variables": []}}}, "delattr": {".class": "SymbolTableNode", "kind": "Gdef", "node": {".class": "FuncDef", "arg_kinds": [0, 0], "arg_names": ["o", "name"], "flags": [], "fullname": "builtins.delattr", "name": "delattr", "type": {".class": "CallableType", "arg_kinds": [0, 0], "arg_names": ["o", "name"], "arg_types": [{".class": "AnyType", "missing_import_name": null, "source_any": null, "type_of_any": 2}, "builtins.str"], "bound_args": [], "def_extras": {"first_arg": null}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "delattr", "ret_type": {".class": "NoneTyp"}, "variables": []}}}, "dict": {".class": "SymbolTableNode", "kind": "Gdef", "node": {".class": "TypeInfo", "_promote": null, "abstract_attributes": [], "bases": [{".class": "Instance", "args": [{".class": "TypeVarType", "fullname": "builtins._KT", "id": 1, "name": "_KT", "upper_bound": "builtins.object", "values": [], "variance": 0}, {".class": "TypeVarType", "fullname": "builtins._VT", "id": 2, "name": "_VT", "upper_bound": "builtins.object", "values": [], "variance": 0}], "type_ref": "typing.MutableMapping"}], "declared_metaclass": null, "defn": {".class": "ClassDef", "fullname": "builtins.dict", "name": "dict", "type_vars": [{".class": "TypeVarDef", "fullname": "builtins._KT", "id": 1, "name": "_KT", "upper_bound": "builtins.object", "values": [], "variance": 0}, {".class": "TypeVarDef", "fullname": "builtins._VT", "id": 2, "name": "_VT", "upper_bound": "builtins.object", "values": [], "variance": 0}]}, "flags": [], "fullname": "builtins.dict", "metaclass_type": "abc.ABCMeta", "metadata": {}, "module_name": "builtins", "mro": ["builtins.dict", "typing.MutableMapping", "typing.Mapping", "typing.Collection", "typing.Iterable", "typing.Container", "builtins.object"], "names": {".class": "SymbolTable", "__delitem__": {".class": "SymbolTableNode", "kind": "Mdef", "node": {".class": "FuncDef", "arg_kinds": [0, 0], "arg_names": ["self", "v"], "flags": [], "fullname": "builtins.dict.__delitem__", "name": "__delitem__", "type": {".class": "CallableType", "arg_kinds": [0, 0], "arg_names": [null, null], "arg_types": [{".class": "Instance", "args": [{".class": "TypeVarType", "fullname": "builtins._KT", "id": 1, "name": "_KT", "upper_bound": "builtins.object", "values": [], "variance": 0}, {".class": "TypeVarType", "fullname": "builtins._VT", "id": 2, "name": "_VT", "upper_bound": "builtins.object", "values": [], "variance": 0}], "type_ref": "builtins.dict"}, {".class": "TypeVarType", "fullname": "builtins._KT", "id": 1, "name": "_KT", "upper_bound": "builtins.object", "values": [], "variance": 0}], "bound_args": [], "def_extras": {"first_arg": "self"}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "__delitem__ of dict", "ret_type": {".class": "NoneTyp"}, "variables": []}}}, "__getitem__": {".class": "SymbolTableNode", "kind": "Mdef", "node": {".class": "FuncDef", "arg_kinds": [0, 0], "arg_names": ["self", "k"], "flags": [], "fullname": "builtins.dict.__getitem__", "name": "__getitem__", "type": {".class": "CallableType", "arg_kinds": [0, 0], "arg_names": [null, null], "arg_types": [{".class": "Instance", "args": [{".class": "TypeVarType", "fullname": "builtins._KT", "id": 1, "name": "_KT", "upper_bound": "builtins.object", "values": [], "variance": 0}, {".class": "TypeVarType", "fullname": "builtins._VT", "id": 2, "name": "_VT", "upper_bound": "builtins.object", "values": [], "variance": 0}], "type_ref": "builtins.dict"}, {".class": "TypeVarType", "fullname": "builtins._KT", "id": 1, "name": "_KT", "upper_bound": "builtins.object", "values": [], "variance": 0}], "bound_args": [], "def_extras": {"first_arg": "self"}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "__getitem__ of dict", "ret_type": {".class": "TypeVarType", "fullname": "builtins._VT", "id": 2, "name": "_VT", "upper_bound": "builtins.object", "values": [], "variance": 0}, "variables": []}}}, "__init__": {".class": "SymbolTableNode", "kind": "Mdef", "node": {".class": "OverloadedFuncDef", "flags": [], "fullname": "builtins.dict.__init__", "impl": null, "items": [{".class": "Decorator", "func": {".class": "FuncDef", "arg_kinds": [0, 4], "arg_names": ["self", "kwargs"], "flags": ["is_overload", "is_decorated"], "fullname": "builtins.dict.__init__", "name": "__init__", "type": {".class": "CallableType", "arg_kinds": [0, 4], "arg_names": ["self", "kwargs"], "arg_types": [{".class": "Instance", "args": [{".class": "TypeVarType", "fullname": "builtins._KT", "id": 1, "name": "_KT", "upper_bound": "builtins.object", "values": [], "variance": 0}, {".class": "TypeVarType", "fullname": "builtins._VT", "id": 2, "name": "_VT", "upper_bound": "builtins.object", "values": [], "variance": 0}], "type_ref": "builtins.dict"}, {".class": "TypeVarType", "fullname": "builtins._VT", "id": 2, "name": "_VT", "upper_bound": "builtins.object", "values": [], "variance": 0}], "bound_args": [], "def_extras": {"first_arg": "self"}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "__init__ of dict", "ret_type": {".class": "NoneTyp"}, "variables": []}}, "is_overload": true, "var": {".class": "Var", "flags": [], "fullname": null, "name": "__init__", "type": null}}, {".class": "Decorator", "func": {".class": "FuncDef", "arg_kinds": [0, 0, 4], "arg_names": ["self", "map", "kwargs"], "flags": ["is_overload", "is_decorated"], "fullname": "builtins.dict.__init__", "name": "__init__", "type": {".class": "CallableType", "arg_kinds": [0, 0, 4], "arg_names": ["self", "map", "kwargs"], "arg_types": [{".class": "Instance", "args": [{".class": "TypeVarType", "fullname": "builtins._KT", "id": 1, "name": "_KT", "upper_bound": "builtins.object", "values": [], "variance": 0}, {".class": "TypeVarType", "fullname": "builtins._VT", "id": 2, "name": "_VT", "upper_bound": "builtins.object", "values": [], "variance": 0}], "type_ref": "builtins.dict"}, {".class": "Instance", "args": [{".class": "TypeVarType", "fullname": "builtins._KT", "id": 1, "name": "_KT", "upper_bound": "builtins.object", "values": [], "variance": 0}, {".class": "TypeVarType", "fullname": "builtins._VT", "id": 2, "name": "_VT", "upper_bound": "builtins.object", "values": [], "variance": 0}], "type_ref": "typing.Mapping"}, {".class": "TypeVarType", "fullname": "builtins._VT", "id": 2, "name": "_VT", "upper_bound": "builtins.object", "values": [], "variance": 0}], "bound_args": [], "def_extras": {"first_arg": "self"}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "__init__ of dict", "ret_type": {".class": "NoneTyp"}, "variables": []}}, "is_overload": true, "var": {".class": "Var", "flags": [], "fullname": null, "name": "__init__", "type": null}}, {".class": "Decorator", "func": {".class": "FuncDef", "arg_kinds": [0, 0, 4], "arg_names": ["self", "iterable", "kwargs"], "flags": ["is_overload", "is_decorated"], "fullname": "builtins.dict.__init__", "name": "__init__", "type": {".class": "CallableType", "arg_kinds": [0, 0, 4], "arg_names": ["self", "iterable", "kwargs"], "arg_types": [{".class": "Instance", "args": [{".class": "TypeVarType", "fullname": "builtins._KT", "id": 1, "name": "_KT", "upper_bound": "builtins.object", "values": [], "variance": 0}, {".class": "TypeVarType", "fullname": "builtins._VT", "id": 2, "name": "_VT", "upper_bound": "builtins.object", "values": [], "variance": 0}], "type_ref": "builtins.dict"}, {".class": "Instance", "args": [{".class": "TupleType", "fallback": {".class": "Instance", "args": [{".class": "AnyType", "missing_import_name": null, "source_any": null, "type_of_any": 6}], "type_ref": "builtins.tuple"}, "implicit": false, "items": [{".class": "TypeVarType", "fullname": "builtins._KT", "id": 1, "name": "_KT", "upper_bound": "builtins.object", "values": [], "variance": 0}, {".class": "TypeVarType", "fullname": "builtins._VT", "id": 2, "name": "_VT", "upper_bound": "builtins.object", "values": [], "variance": 0}]}], "type_ref": "typing.Iterable"}, {".class": "TypeVarType", "fullname": "builtins._VT", "id": 2, "name": "_VT", "upper_bound": "builtins.object", "values": [], "variance": 0}], "bound_args": [], "def_extras": {"first_arg": "self"}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "__init__ of dict", "ret_type": {".class": "NoneTyp"}, "variables": []}}, "is_overload": true, "var": {".class": "Var", "flags": [], "fullname": null, "name": "__init__", "type": null}}], "type": {".class": "Overloaded", "items": [{".class": "CallableType", "arg_kinds": [0, 4], "arg_names": ["self", "kwargs"], "arg_types": [{".class": "Instance", "args": [{".class": "TypeVarType", "fullname": "builtins._KT", "id": 1, "name": "_KT", "upper_bound": "builtins.object", "values": [], "variance": 0}, {".class": "TypeVarType", "fullname": "builtins._VT", "id": 2, "name": "_VT", "upper_bound": "builtins.object", "values": [], "variance": 0}], "type_ref": "builtins.dict"}, {".class": "TypeVarType", "fullname": "builtins._VT", "id": 2, "name": "_VT", "upper_bound": "builtins.object", "values": [], "variance": 0}], "bound_args": [], "def_extras": {"first_arg": "self"}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "__init__ of dict", "ret_type": {".class": "NoneTyp"}, "variables": []}, {".class": "CallableType", "arg_kinds": [0, 0, 4], "arg_names": ["self", "map", "kwargs"], "arg_types": [{".class": "Instance", "args": [{".class": "TypeVarType", "fullname": "builtins._KT", "id": 1, "name": "_KT", "upper_bound": "builtins.object", "values": [], "variance": 0}, {".class": "TypeVarType", "fullname": "builtins._VT", "id": 2, "name": "_VT", "upper_bound": "builtins.object", "values": [], "variance": 0}], "type_ref": "builtins.dict"}, {".class": "Instance", "args": [{".class": "TypeVarType", "fullname": "builtins._KT", "id": 1, "name": "_KT", "upper_bound": "builtins.object", "values": [], "variance": 0}, {".class": "TypeVarType", "fullname": "builtins._VT", "id": 2, "name": "_VT", "upper_bound": "builtins.object", "values": [], "variance": 0}], "type_ref": "typing.Mapping"}, {".class": "TypeVarType", "fullname": "builtins._VT", "id": 2, "name": "_VT", "upper_bound": "builtins.object", "values": [], "variance": 0}], "bound_args": [], "def_extras": {"first_arg": "self"}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "__init__ of dict", "ret_type": {".class": "NoneTyp"}, "variables": []}, {".class": "CallableType", "arg_kinds": [0, 0, 4], "arg_names": ["self", "iterable", "kwargs"], "arg_types": [{".class": "Instance", "args": [{".class": "TypeVarType", "fullname": "builtins._KT", "id": 1, "name": "_KT", "upper_bound": "builtins.object", "values": [], "variance": 0}, {".class": "TypeVarType", "fullname": "builtins._VT", "id": 2, "name": "_VT", "upper_bound": "builtins.object", "values": [], "variance": 0}], "type_ref": "builtins.dict"}, {".class": "Instance", "args": [{".class": "TupleType", "fallback": {".class": "Instance", "args": [{".class": "AnyType", "missing_import_name": null, "source_any": null, "type_of_any": 6}], "type_ref": "builtins.tuple"}, "implicit": false, "items": [{".class": "TypeVarType", "fullname": "builtins._KT", "id": 1, "name": "_KT", "upper_bound": "builtins.object", "values": [], "variance": 0}, {".class": "TypeVarType", "fullname": "builtins._VT", "id": 2, "name": "_VT", "upper_bound": "builtins.object", "values": [], "variance": 0}]}], "type_ref": "typing.Iterable"}, {".class": "TypeVarType", "fullname": "builtins._VT", "id": 2, "name": "_VT", "upper_bound": "builtins.object", "values": [], "variance": 0}], "bound_args": [], "def_extras": {"first_arg": "self"}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "__init__ of dict", "ret_type": {".class": "NoneTyp"}, "variables": []}]}}}, "__iter__": {".class": "SymbolTableNode", "kind": "Mdef", "node": {".class": "FuncDef", "arg_kinds": [0], "arg_names": ["self"], "flags": [], "fullname": "builtins.dict.__iter__", "name": "__iter__", "type": {".class": "CallableType", "arg_kinds": [0], "arg_names": [null], "arg_types": [{".class": "Instance", "args": [{".class": "TypeVarType", "fullname": "builtins._KT", "id": 1, "name": "_KT", "upper_bound": "builtins.object", "values": [], "variance": 0}, {".class": "TypeVarType", "fullname": "builtins._VT", "id": 2, "name": "_VT", "upper_bound": "builtins.object", "values": [], "variance": 0}], "type_ref": "builtins.dict"}], "bound_args": [], "def_extras": {"first_arg": "self"}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "__iter__ of dict", "ret_type": {".class": "Instance", "args": [{".class": "TypeVarType", "fullname": "builtins._KT", "id": 1, "name": "_KT", "upper_bound": "builtins.object", "values": [], "variance": 0}], "type_ref": "typing.Iterator"}, "variables": []}}}, "__len__": {".class": "SymbolTableNode", "kind": "Mdef", "node": {".class": "FuncDef", "arg_kinds": [0], "arg_names": ["self"], "flags": [], "fullname": "builtins.dict.__len__", "name": "__len__", "type": {".class": "CallableType", "arg_kinds": [0], "arg_names": [null], "arg_types": [{".class": "Instance", "args": [{".class": "TypeVarType", "fullname": "builtins._KT", "id": 1, "name": "_KT", "upper_bound": "builtins.object", "values": [], "variance": 0}, {".class": "TypeVarType", "fullname": "builtins._VT", "id": 2, "name": "_VT", "upper_bound": "builtins.object", "values": [], "variance": 0}], "type_ref": "builtins.dict"}], "bound_args": [], "def_extras": {"first_arg": "self"}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "__len__ of dict", "ret_type": "builtins.int", "variables": []}}}, "__new__": {".class": "SymbolTableNode", "kind": "Mdef", "node": {".class": "FuncDef", "arg_kinds": [0, 2, 4], "arg_names": ["cls", "args", "kwargs"], "flags": [], "fullname": "builtins.dict.__new__", "name": "__new__", "type": {".class": "CallableType", "arg_kinds": [0, 2, 4], "arg_names": ["cls", "args", "kwargs"], "arg_types": [{".class": "TypeType", "item": {".class": "TypeVarType", "fullname": "builtins._T1", "id": -1, "name": "_T1", "upper_bound": "builtins.object", "values": [], "variance": 0}}, {".class": "AnyType", "missing_import_name": null, "source_any": null, "type_of_any": 2}, {".class": "AnyType", "missing_import_name": null, "source_any": null, "type_of_any": 2}], "bound_args": [], "def_extras": {"first_arg": "cls"}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "__new__ of dict", "ret_type": {".class": "TypeVarType", "fullname": "builtins._T1", "id": -1, "name": "_T1", "upper_bound": "builtins.object", "values": [], "variance": 0}, "variables": [{".class": "TypeVarDef", "fullname": "builtins._T1", "id": -1, "name": "_T1", "upper_bound": "builtins.object", "values": [], "variance": 0}]}}}, "__setitem__": {".class": "SymbolTableNode", "kind": "Mdef", "node": {".class": "FuncDef", "arg_kinds": [0, 0, 0], "arg_names": ["self", "k", "v"], "flags": [], "fullname": "builtins.dict.__setitem__", "name": "__setitem__", "type": {".class": "CallableType", "arg_kinds": [0, 0, 0], "arg_names": [null, null, null], "arg_types": [{".class": "Instance", "args": [{".class": "TypeVarType", "fullname": "builtins._KT", "id": 1, "name": "_KT", "upper_bound": "builtins.object", "values": [], "variance": 0}, {".class": "TypeVarType", "fullname": "builtins._VT", "id": 2, "name": "_VT", "upper_bound": "builtins.object", "values": [], "variance": 0}], "type_ref": "builtins.dict"}, {".class": "TypeVarType", "fullname": "builtins._KT", "id": 1, "name": "_KT", "upper_bound": "builtins.object", "values": [], "variance": 0}, {".class": "TypeVarType", "fullname": "builtins._VT", "id": 2, "name": "_VT", "upper_bound": "builtins.object", "values": [], "variance": 0}], "bound_args": [], "def_extras": {"first_arg": "self"}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "__setitem__ of dict", "ret_type": {".class": "NoneTyp"}, "variables": []}}}, "__str__": {".class": "SymbolTableNode", "kind": "Mdef", "node": {".class": "FuncDef", "arg_kinds": [0], "arg_names": ["self"], "flags": [], "fullname": "builtins.dict.__str__", "name": "__str__", "type": {".class": "CallableType", "arg_kinds": [0], "arg_names": [null], "arg_types": [{".class": "Instance", "args": [{".class": "TypeVarType", "fullname": "builtins._KT", "id": 1, "name": "_KT", "upper_bound": "builtins.object", "values": [], "variance": 0}, {".class": "TypeVarType", "fullname": "builtins._VT", "id": 2, "name": "_VT", "upper_bound": "builtins.object", "values": [], "variance": 0}], "type_ref": "builtins.dict"}], "bound_args": [], "def_extras": {"first_arg": "self"}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "__str__ of dict", "ret_type": "builtins.str", "variables": []}}}, "clear": {".class": "SymbolTableNode", "kind": "Mdef", "node": {".class": "FuncDef", "arg_kinds": [0], "arg_names": ["self"], "flags": [], "fullname": "builtins.dict.clear", "name": "clear", "type": {".class": "CallableType", "arg_kinds": [0], "arg_names": ["self"], "arg_types": [{".class": "Instance", "args": [{".class": "TypeVarType", "fullname": "builtins._KT", "id": 1, "name": "_KT", "upper_bound": "builtins.object", "values": [], "variance": 0}, {".class": "TypeVarType", "fullname": "builtins._VT", "id": 2, "name": "_VT", "upper_bound": "builtins.object", "values": [], "variance": 0}], "type_ref": "builtins.dict"}], "bound_args": [], "def_extras": {"first_arg": "self"}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "clear of dict", "ret_type": {".class": "NoneTyp"}, "variables": []}}}, "copy": {".class": "SymbolTableNode", "kind": "Mdef", "node": {".class": "FuncDef", "arg_kinds": [0], "arg_names": ["self"], "flags": [], "fullname": "builtins.dict.copy", "name": "copy", "type": {".class": "CallableType", "arg_kinds": [0], "arg_names": ["self"], "arg_types": [{".class": "Instance", "args": [{".class": "TypeVarType", "fullname": "builtins._KT", "id": 1, "name": "_KT", "upper_bound": "builtins.object", "values": [], "variance": 0}, {".class": "TypeVarType", "fullname": "builtins._VT", "id": 2, "name": "_VT", "upper_bound": "builtins.object", "values": [], "variance": 0}], "type_ref": "builtins.dict"}], "bound_args": [], "def_extras": {"first_arg": "self"}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "copy of dict", "ret_type": {".class": "Instance", "args": [{".class": "TypeVarType", "fullname": "builtins._KT", "id": 1, "name": "_KT", "upper_bound": "builtins.object", "values": [], "variance": 0}, {".class": "TypeVarType", "fullname": "builtins._VT", "id": 2, "name": "_VT", "upper_bound": "builtins.object", "values": [], "variance": 0}], "type_ref": "builtins.dict"}, "variables": []}}}, "fromkeys": {".class": "SymbolTableNode", "kind": "Mdef", "node": {".class": "OverloadedFuncDef", "flags": ["is_static"], "fullname": "builtins.dict.fromkeys", "impl": null, "items": [{".class": "Decorator", "func": {".class": "FuncDef", "arg_kinds": [0], "arg_names": ["seq"], "flags": ["is_static", "is_overload", "is_decorated"], "fullname": "builtins.dict.fromkeys", "name": "fromkeys", "type": {".class": "CallableType", "arg_kinds": [0], "arg_names": ["seq"], "arg_types": [{".class": "Instance", "args": [{".class": "TypeVarType", "fullname": "builtins._T", "id": -1, "name": "_T", "upper_bound": "builtins.object", "values": [], "variance": 0}], "type_ref": "typing.Iterable"}], "bound_args": [], "def_extras": {"first_arg": null}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "fromkeys of dict", "ret_type": {".class": "Instance", "args": [{".class": "TypeVarType", "fullname": "builtins._T", "id": -1, "name": "_T", "upper_bound": "builtins.object", "values": [], "variance": 0}, {".class": "AnyType", "missing_import_name": null, "source_any": null, "type_of_any": 2}], "type_ref": "builtins.dict"}, "variables": [{".class": "TypeVarDef", "fullname": "builtins._T", "id": -1, "name": "_T", "upper_bound": "builtins.object", "values": [], "variance": 0}]}}, "is_overload": true, "var": {".class": "Var", "flags": ["is_staticmethod"], "fullname": null, "name": "fromkeys", "type": null}}, {".class": "Decorator", "func": {".class": "FuncDef", "arg_kinds": [0, 0], "arg_names": ["seq", "value"], "flags": ["is_static", "is_overload", "is_decorated"], "fullname": "builtins.dict.fromkeys", "name": "fromkeys", "type": {".class": "CallableType", "arg_kinds": [0, 0], "arg_names": ["seq", "value"], "arg_types": [{".class": "Instance", "args": [{".class": "TypeVarType", "fullname": "builtins._T", "id": -1, "name": "_T", "upper_bound": "builtins.object", "values": [], "variance": 0}], "type_ref": "typing.Iterable"}, {".class": "TypeVarType", "fullname": "builtins._S", "id": -2, "name": "_S", "upper_bound": "builtins.object", "values": [], "variance": 0}], "bound_args": [], "def_extras": {"first_arg": null}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "fromkeys of dict", "ret_type": {".class": "Instance", "args": [{".class": "TypeVarType", "fullname": "builtins._T", "id": -1, "name": "_T", "upper_bound": "builtins.object", "values": [], "variance": 0}, {".class": "TypeVarType", "fullname": "builtins._S", "id": -2, "name": "_S", "upper_bound": "builtins.object", "values": [], "variance": 0}], "type_ref": "builtins.dict"}, "variables": [{".class": "TypeVarDef", "fullname": "builtins._T", "id": -1, "name": "_T", "upper_bound": "builtins.object", "values": [], "variance": 0}, {".class": "TypeVarDef", "fullname": "builtins._S", "id": -2, "name": "_S", "upper_bound": "builtins.object", "values": [], "variance": 0}]}}, "is_overload": true, "var": {".class": "Var", "flags": ["is_staticmethod"], "fullname": null, "name": "fromkeys", "type": null}}], "type": {".class": "Overloaded", "items": [{".class": "CallableType", "arg_kinds": [0], "arg_names": ["seq"], "arg_types": [{".class": "Instance", "args": [{".class": "TypeVarType", "fullname": "builtins._T", "id": -1, "name": "_T", "upper_bound": "builtins.object", "values": [], "variance": 0}], "type_ref": "typing.Iterable"}], "bound_args": [], "def_extras": {"first_arg": null}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "fromkeys of dict", "ret_type": {".class": "Instance", "args": [{".class": "TypeVarType", "fullname": "builtins._T", "id": -1, "name": "_T", "upper_bound": "builtins.object", "values": [], "variance": 0}, {".class": "AnyType", "missing_import_name": null, "source_any": null, "type_of_any": 2}], "type_ref": "builtins.dict"}, "variables": [{".class": "TypeVarDef", "fullname": "builtins._T", "id": -1, "name": "_T", "upper_bound": "builtins.object", "values": [], "variance": 0}]}, {".class": "CallableType", "arg_kinds": [0, 0], "arg_names": ["seq", "value"], "arg_types": [{".class": "Instance", "args": [{".class": "TypeVarType", "fullname": "builtins._T", "id": -1, "name": "_T", "upper_bound": "builtins.object", "values": [], "variance": 0}], "type_ref": "typing.Iterable"}, {".class": "TypeVarType", "fullname": "builtins._S", "id": -2, "name": "_S", "upper_bound": "builtins.object", "values": [], "variance": 0}], "bound_args": [], "def_extras": {"first_arg": null}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "fromkeys of dict", "ret_type": {".class": "Instance", "args": [{".class": "TypeVarType", "fullname": "builtins._T", "id": -1, "name": "_T", "upper_bound": "builtins.object", "values": [], "variance": 0}, {".class": "TypeVarType", "fullname": "builtins._S", "id": -2, "name": "_S", "upper_bound": "builtins.object", "values": [], "variance": 0}], "type_ref": "builtins.dict"}, "variables": [{".class": "TypeVarDef", "fullname": "builtins._T", "id": -1, "name": "_T", "upper_bound": "builtins.object", "values": [], "variance": 0}, {".class": "TypeVarDef", "fullname": "builtins._S", "id": -2, "name": "_S", "upper_bound": "builtins.object", "values": [], "variance": 0}]}]}}}, "items": {".class": "SymbolTableNode", "kind": "Mdef", "node": {".class": "FuncDef", "arg_kinds": [0], "arg_names": ["self"], "flags": ["is_conditional"], "fullname": "builtins.dict.items", "name": "items", "type": {".class": "CallableType", "arg_kinds": [0], "arg_names": ["self"], "arg_types": [{".class": "Instance", "args": [{".class": "TypeVarType", "fullname": "builtins._KT", "id": 1, "name": "_KT", "upper_bound": "builtins.object", "values": [], "variance": 0}, {".class": "TypeVarType", "fullname": "builtins._VT", "id": 2, "name": "_VT", "upper_bound": "builtins.object", "values": [], "variance": 0}], "type_ref": "builtins.dict"}], "bound_args": [], "def_extras": {"first_arg": "self"}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "items of dict", "ret_type": {".class": "Instance", "args": [{".class": "TypeVarType", "fullname": "builtins._KT", "id": 1, "name": "_KT", "upper_bound": "builtins.object", "values": [], "variance": 0}, {".class": "TypeVarType", "fullname": "builtins._VT", "id": 2, "name": "_VT", "upper_bound": "builtins.object", "values": [], "variance": 0}], "type_ref": "typing.ItemsView"}, "variables": []}}}, "keys": {".class": "SymbolTableNode", "kind": "Mdef", "node": {".class": "FuncDef", "arg_kinds": [0], "arg_names": ["self"], "flags": ["is_conditional"], "fullname": "builtins.dict.keys", "name": "keys", "type": {".class": "CallableType", "arg_kinds": [0], "arg_names": ["self"], "arg_types": [{".class": "Instance", "args": [{".class": "TypeVarType", "fullname": "builtins._KT", "id": 1, "name": "_KT", "upper_bound": "builtins.object", "values": [], "variance": 0}, {".class": "TypeVarType", "fullname": "builtins._VT", "id": 2, "name": "_VT", "upper_bound": "builtins.object", "values": [], "variance": 0}], "type_ref": "builtins.dict"}], "bound_args": [], "def_extras": {"first_arg": "self"}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "keys of dict", "ret_type": {".class": "Instance", "args": [{".class": "TypeVarType", "fullname": "builtins._KT", "id": 1, "name": "_KT", "upper_bound": "builtins.object", "values": [], "variance": 0}], "type_ref": "typing.KeysView"}, "variables": []}}}, "popitem": {".class": "SymbolTableNode", "kind": "Mdef", "node": {".class": "FuncDef", "arg_kinds": [0], "arg_names": ["self"], "flags": [], "fullname": "builtins.dict.popitem", "name": "popitem", "type": {".class": "CallableType", "arg_kinds": [0], "arg_names": ["self"], "arg_types": [{".class": "Instance", "args": [{".class": "TypeVarType", "fullname": "builtins._KT", "id": 1, "name": "_KT", "upper_bound": "builtins.object", "values": [], "variance": 0}, {".class": "TypeVarType", "fullname": "builtins._VT", "id": 2, "name": "_VT", "upper_bound": "builtins.object", "values": [], "variance": 0}], "type_ref": "builtins.dict"}], "bound_args": [], "def_extras": {"first_arg": "self"}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "popitem of dict", "ret_type": {".class": "TupleType", "fallback": {".class": "Instance", "args": [{".class": "AnyType", "missing_import_name": null, "source_any": null, "type_of_any": 6}], "type_ref": "builtins.tuple"}, "implicit": false, "items": [{".class": "TypeVarType", "fullname": "builtins._KT", "id": 1, "name": "_KT", "upper_bound": "builtins.object", "values": [], "variance": 0}, {".class": "TypeVarType", "fullname": "builtins._VT", "id": 2, "name": "_VT", "upper_bound": "builtins.object", "values": [], "variance": 0}]}, "variables": []}}}, "setdefault": {".class": "SymbolTableNode", "kind": "Mdef", "node": {".class": "FuncDef", "arg_kinds": [0, 0, 1], "arg_names": ["self", "k", "default"], "flags": [], "fullname": "builtins.dict.setdefault", "name": "setdefault", "type": {".class": "CallableType", "arg_kinds": [0, 0, 1], "arg_names": ["self", "k", "default"], "arg_types": [{".class": "Instance", "args": [{".class": "TypeVarType", "fullname": "builtins._KT", "id": 1, "name": "_KT", "upper_bound": "builtins.object", "values": [], "variance": 0}, {".class": "TypeVarType", "fullname": "builtins._VT", "id": 2, "name": "_VT", "upper_bound": "builtins.object", "values": [], "variance": 0}], "type_ref": "builtins.dict"}, {".class": "TypeVarType", "fullname": "builtins._KT", "id": 1, "name": "_KT", "upper_bound": "builtins.object", "values": [], "variance": 0}, {".class": "TypeVarType", "fullname": "builtins._VT", "id": 2, "name": "_VT", "upper_bound": "builtins.object", "values": [], "variance": 0}], "bound_args": [], "def_extras": {"first_arg": "self"}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "setdefault of dict", "ret_type": {".class": "TypeVarType", "fullname": "builtins._VT", "id": 2, "name": "_VT", "upper_bound": "builtins.object", "values": [], "variance": 0}, "variables": []}}}, "update": {".class": "SymbolTableNode", "kind": "Mdef", "node": {".class": "OverloadedFuncDef", "flags": [], "fullname": "builtins.dict.update", "impl": null, "items": [{".class": "Decorator", "func": {".class": "FuncDef", "arg_kinds": [0, 0, 4], "arg_names": ["self", "__m", "kwargs"], "flags": ["is_overload", "is_decorated"], "fullname": "builtins.dict.update", "name": "update", "type": {".class": "CallableType", "arg_kinds": [0, 0, 4], "arg_names": ["self", null, "kwargs"], "arg_types": [{".class": "Instance", "args": [{".class": "TypeVarType", "fullname": "builtins._KT", "id": 1, "name": "_KT", "upper_bound": "builtins.object", "values": [], "variance": 0}, {".class": "TypeVarType", "fullname": "builtins._VT", "id": 2, "name": "_VT", "upper_bound": "builtins.object", "values": [], "variance": 0}], "type_ref": "builtins.dict"}, {".class": "Instance", "args": [{".class": "TypeVarType", "fullname": "builtins._KT", "id": 1, "name": "_KT", "upper_bound": "builtins.object", "values": [], "variance": 0}, {".class": "TypeVarType", "fullname": "builtins._VT", "id": 2, "name": "_VT", "upper_bound": "builtins.object", "values": [], "variance": 0}], "type_ref": "typing.Mapping"}, {".class": "TypeVarType", "fullname": "builtins._VT", "id": 2, "name": "_VT", "upper_bound": "builtins.object", "values": [], "variance": 0}], "bound_args": [], "def_extras": {"first_arg": "self"}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "update of dict", "ret_type": {".class": "NoneTyp"}, "variables": []}}, "is_overload": true, "var": {".class": "Var", "flags": [], "fullname": null, "name": "update", "type": null}}, {".class": "Decorator", "func": {".class": "FuncDef", "arg_kinds": [0, 0, 4], "arg_names": ["self", "__m", "kwargs"], "flags": ["is_overload", "is_decorated"], "fullname": "builtins.dict.update", "name": "update", "type": {".class": "CallableType", "arg_kinds": [0, 0, 4], "arg_names": ["self", null, "kwargs"], "arg_types": [{".class": "Instance", "args": [{".class": "TypeVarType", "fullname": "builtins._KT", "id": 1, "name": "_KT", "upper_bound": "builtins.object", "values": [], "variance": 0}, {".class": "TypeVarType", "fullname": "builtins._VT", "id": 2, "name": "_VT", "upper_bound": "builtins.object", "values": [], "variance": 0}], "type_ref": "builtins.dict"}, {".class": "Instance", "args": [{".class": "TupleType", "fallback": {".class": "Instance", "args": [{".class": "AnyType", "missing_import_name": null, "source_any": null, "type_of_any": 6}], "type_ref": "builtins.tuple"}, "implicit": false, "items": [{".class": "TypeVarType", "fullname": "builtins._KT", "id": 1, "name": "_KT", "upper_bound": "builtins.object", "values": [], "variance": 0}, {".class": "TypeVarType", "fullname": "builtins._VT", "id": 2, "name": "_VT", "upper_bound": "builtins.object", "values": [], "variance": 0}]}], "type_ref": "typing.Iterable"}, {".class": "TypeVarType", "fullname": "builtins._VT", "id": 2, "name": "_VT", "upper_bound": "builtins.object", "values": [], "variance": 0}], "bound_args": [], "def_extras": {"first_arg": "self"}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "update of dict", "ret_type": {".class": "NoneTyp"}, "variables": []}}, "is_overload": true, "var": {".class": "Var", "flags": [], "fullname": null, "name": "update", "type": null}}, {".class": "Decorator", "func": {".class": "FuncDef", "arg_kinds": [0, 4], "arg_names": ["self", "kwargs"], "flags": ["is_overload", "is_decorated"], "fullname": "builtins.dict.update", "name": "update", "type": {".class": "CallableType", "arg_kinds": [0, 4], "arg_names": ["self", "kwargs"], "arg_types": [{".class": "Instance", "args": [{".class": "TypeVarType", "fullname": "builtins._KT", "id": 1, "name": "_KT", "upper_bound": "builtins.object", "values": [], "variance": 0}, {".class": "TypeVarType", "fullname": "builtins._VT", "id": 2, "name": "_VT", "upper_bound": "builtins.object", "values": [], "variance": 0}], "type_ref": "builtins.dict"}, {".class": "TypeVarType", "fullname": "builtins._VT", "id": 2, "name": "_VT", "upper_bound": "builtins.object", "values": [], "variance": 0}], "bound_args": [], "def_extras": {"first_arg": "self"}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "update of dict", "ret_type": {".class": "NoneTyp"}, "variables": []}}, "is_overload": true, "var": {".class": "Var", "flags": [], "fullname": null, "name": "update", "type": null}}], "type": {".class": "Overloaded", "items": [{".class": "CallableType", "arg_kinds": [0, 0, 4], "arg_names": ["self", null, "kwargs"], "arg_types": [{".class": "Instance", "args": [{".class": "TypeVarType", "fullname": "builtins._KT", "id": 1, "name": "_KT", "upper_bound": "builtins.object", "values": [], "variance": 0}, {".class": "TypeVarType", "fullname": "builtins._VT", "id": 2, "name": "_VT", "upper_bound": "builtins.object", "values": [], "variance": 0}], "type_ref": "builtins.dict"}, {".class": "Instance", "args": [{".class": "TypeVarType", "fullname": "builtins._KT", "id": 1, "name": "_KT", "upper_bound": "builtins.object", "values": [], "variance": 0}, {".class": "TypeVarType", "fullname": "builtins._VT", "id": 2, "name": "_VT", "upper_bound": "builtins.object", "values": [], "variance": 0}], "type_ref": "typing.Mapping"}, {".class": "TypeVarType", "fullname": "builtins._VT", "id": 2, "name": "_VT", "upper_bound": "builtins.object", "values": [], "variance": 0}], "bound_args": [], "def_extras": {"first_arg": "self"}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "update of dict", "ret_type": {".class": "NoneTyp"}, "variables": []}, {".class": "CallableType", "arg_kinds": [0, 0, 4], "arg_names": ["self", null, "kwargs"], "arg_types": [{".class": "Instance", "args": [{".class": "TypeVarType", "fullname": "builtins._KT", "id": 1, "name": "_KT", "upper_bound": "builtins.object", "values": [], "variance": 0}, {".class": "TypeVarType", "fullname": "builtins._VT", "id": 2, "name": "_VT", "upper_bound": "builtins.object", "values": [], "variance": 0}], "type_ref": "builtins.dict"}, {".class": "Instance", "args": [{".class": "TupleType", "fallback": {".class": "Instance", "args": [{".class": "AnyType", "missing_import_name": null, "source_any": null, "type_of_any": 6}], "type_ref": "builtins.tuple"}, "implicit": false, "items": [{".class": "TypeVarType", "fullname": "builtins._KT", "id": 1, "name": "_KT", "upper_bound": "builtins.object", "values": [], "variance": 0}, {".class": "TypeVarType", "fullname": "builtins._VT", "id": 2, "name": "_VT", "upper_bound": "builtins.object", "values": [], "variance": 0}]}], "type_ref": "typing.Iterable"}, {".class": "TypeVarType", "fullname": "builtins._VT", "id": 2, "name": "_VT", "upper_bound": "builtins.object", "values": [], "variance": 0}], "bound_args": [], "def_extras": {"first_arg": "self"}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "update of dict", "ret_type": {".class": "NoneTyp"}, "variables": []}, {".class": "CallableType", "arg_kinds": [0, 4], "arg_names": ["self", "kwargs"], "arg_types": [{".class": "Instance", "args": [{".class": "TypeVarType", "fullname": "builtins._KT", "id": 1, "name": "_KT", "upper_bound": "builtins.object", "values": [], "variance": 0}, {".class": "TypeVarType", "fullname": "builtins._VT", "id": 2, "name": "_VT", "upper_bound": "builtins.object", "values": [], "variance": 0}], "type_ref": "builtins.dict"}, {".class": "TypeVarType", "fullname": "builtins._VT", "id": 2, "name": "_VT", "upper_bound": "builtins.object", "values": [], "variance": 0}], "bound_args": [], "def_extras": {"first_arg": "self"}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "update of dict", "ret_type": {".class": "NoneTyp"}, "variables": []}]}}}, "values": {".class": "SymbolTableNode", "kind": "Mdef", "node": {".class": "FuncDef", "arg_kinds": [0], "arg_names": ["self"], "flags": ["is_conditional"], "fullname": "builtins.dict.values", "name": "values", "type": {".class": "CallableType", "arg_kinds": [0], "arg_names": ["self"], "arg_types": [{".class": "Instance", "args": [{".class": "TypeVarType", "fullname": "builtins._KT", "id": 1, "name": "_KT", "upper_bound": "builtins.object", "values": [], "variance": 0}, {".class": "TypeVarType", "fullname": "builtins._VT", "id": 2, "name": "_VT", "upper_bound": "builtins.object", "values": [], "variance": 0}], "type_ref": "builtins.dict"}], "bound_args": [], "def_extras": {"first_arg": "self"}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "values of dict", "ret_type": {".class": "Instance", "args": [{".class": "TypeVarType", "fullname": "builtins._VT", "id": 2, "name": "_VT", "upper_bound": "builtins.object", "values": [], "variance": 0}], "type_ref": "typing.ValuesView"}, "variables": []}}}}, "tuple_type": null, "type_vars": ["_KT", "_VT"], "typeddict_type": null}}, "dir": {".class": "SymbolTableNode", "kind": "Gdef", "node": {".class": "FuncDef", "arg_kinds": [1], "arg_names": ["o"], "flags": [], "fullname": "builtins.dir", "name": "dir", "type": {".class": "CallableType", "arg_kinds": [1], "arg_names": ["o"], "arg_types": ["builtins.object"], "bound_args": [], "def_extras": {"first_arg": null}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "dir", "ret_type": {".class": "Instance", "args": ["builtins.str"], "type_ref": "builtins.list"}, "variables": []}}}, "divmod": {".class": "SymbolTableNode", "kind": "Gdef", "node": {".class": "FuncDef", "arg_kinds": [0, 0], "arg_names": ["a", "b"], "flags": [], "fullname": "builtins.divmod", "name": "divmod", "type": {".class": "CallableType", "arg_kinds": [0, 0], "arg_names": ["a", "b"], "arg_types": [{".class": "TypeVarType", "fullname": "builtins._N2", "id": -1, "name": "_N2", "upper_bound": "builtins.object", "values": ["builtins.int", "builtins.float"], "variance": 0}, {".class": "TypeVarType", "fullname": "builtins._N2", "id": -1, "name": "_N2", "upper_bound": "builtins.object", "values": ["builtins.int", "builtins.float"], "variance": 0}], "bound_args": [], "def_extras": {"first_arg": null}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "divmod", "ret_type": {".class": "TupleType", "fallback": {".class": "Instance", "args": [{".class": "AnyType", "missing_import_name": null, "source_any": null, "type_of_any": 6}], "type_ref": "builtins.tuple"}, "implicit": false, "items": [{".class": "TypeVarType", "fullname": "builtins._N2", "id": -1, "name": "_N2", "upper_bound": "builtins.object", "values": ["builtins.int", "builtins.float"], "variance": 0}, {".class": "TypeVarType", "fullname": "builtins._N2", "id": -1, "name": "_N2", "upper_bound": "builtins.object", "values": ["builtins.int", "builtins.float"], "variance": 0}]}, "variables": [{".class": "TypeVarDef", "fullname": "builtins._N2", "id": -1, "name": "_N2", "upper_bound": "builtins.object", "values": ["builtins.int", "builtins.float"], "variance": 0}]}}}, "ellipsis": {".class": "SymbolTableNode", "kind": "Gdef", "node": {".class": "TypeInfo", "_promote": null, "abstract_attributes": [], "bases": ["builtins.object"], "declared_metaclass": null, "defn": {".class": "ClassDef", "fullname": "builtins.ellipsis", "name": "ellipsis", "type_vars": []}, "flags": [], "fullname": "builtins.ellipsis", "metaclass_type": null, "metadata": {}, "module_name": "builtins", "mro": ["builtins.ellipsis", "builtins.object"], "names": {".class": "SymbolTable"}, "tuple_type": null, "type_vars": [], "typeddict_type": null}}, "enumerate": {".class": "SymbolTableNode", "kind": "Gdef", "node": {".class": "TypeInfo", "_promote": null, "abstract_attributes": [], "bases": [{".class": "Instance", "args": [{".class": "TupleType", "fallback": {".class": "Instance", "args": [{".class": "AnyType", "missing_import_name": null, "source_any": null, "type_of_any": 6}], "type_ref": "builtins.tuple"}, "implicit": false, "items": ["builtins.int", {".class": "TypeVarType", "fullname": "builtins._T", "id": 1, "name": "_T", "upper_bound": "builtins.object", "values": [], "variance": 0}]}], "type_ref": "typing.Iterator"}], "declared_metaclass": null, "defn": {".class": "ClassDef", "fullname": "builtins.enumerate", "name": "enumerate", "type_vars": [{".class": "TypeVarDef", "fullname": "builtins._T", "id": 1, "name": "_T", "upper_bound": "builtins.object", "values": [], "variance": 0}]}, "flags": [], "fullname": "builtins.enumerate", "metaclass_type": "abc.ABCMeta", "metadata": {}, "module_name": "builtins", "mro": ["builtins.enumerate", "typing.Iterator", "typing.Iterable", "builtins.object"], "names": {".class": "SymbolTable", "__init__": {".class": "SymbolTableNode", "kind": "Mdef", "node": {".class": "FuncDef", "arg_kinds": [0, 0, 1], "arg_names": ["self", "iterable", "start"], "flags": [], "fullname": "builtins.enumerate.__init__", "name": "__init__", "type": {".class": "CallableType", "arg_kinds": [0, 0, 1], "arg_names": ["self", "iterable", "start"], "arg_types": [{".class": "Instance", "args": [{".class": "TypeVarType", "fullname": "builtins._T", "id": 1, "name": "_T", "upper_bound": "builtins.object", "values": [], "variance": 0}], "type_ref": "builtins.enumerate"}, {".class": "Instance", "args": [{".class": "TypeVarType", "fullname": "builtins._T", "id": 1, "name": "_T", "upper_bound": "builtins.object", "values": [], "variance": 0}], "type_ref": "typing.Iterable"}, "builtins.int"], "bound_args": [], "def_extras": {"first_arg": "self"}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "__init__ of enumerate", "ret_type": {".class": "NoneTyp"}, "variables": []}}}, "__iter__": {".class": "SymbolTableNode", "kind": "Mdef", "node": {".class": "FuncDef", "arg_kinds": [0], "arg_names": ["self"], "flags": [], "fullname": "builtins.enumerate.__iter__", "name": "__iter__", "type": {".class": "CallableType", "arg_kinds": [0], "arg_names": [null], "arg_types": [{".class": "Instance", "args": [{".class": "TypeVarType", "fullname": "builtins._T", "id": 1, "name": "_T", "upper_bound": "builtins.object", "values": [], "variance": 0}], "type_ref": "builtins.enumerate"}], "bound_args": [], "def_extras": {"first_arg": "self"}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "__iter__ of enumerate", "ret_type": {".class": "Instance", "args": [{".class": "TupleType", "fallback": {".class": "Instance", "args": [{".class": "AnyType", "missing_import_name": null, "source_any": null, "type_of_any": 6}], "type_ref": "builtins.tuple"}, "implicit": false, "items": ["builtins.int", {".class": "TypeVarType", "fullname": "builtins._T", "id": 1, "name": "_T", "upper_bound": "builtins.object", "values": [], "variance": 0}]}], "type_ref": "typing.Iterator"}, "variables": []}}}, "__next__": {".class": "SymbolTableNode", "kind": "Mdef", "node": {".class": "FuncDef", "arg_kinds": [0], "arg_names": ["self"], "flags": ["is_conditional"], "fullname": "builtins.enumerate.__next__", "name": "__next__", "type": {".class": "CallableType", "arg_kinds": [0], "arg_names": ["self"], "arg_types": [{".class": "Instance", "args": [{".class": "TypeVarType", "fullname": "builtins._T", "id": 1, "name": "_T", "upper_bound": "builtins.object", "values": [], "variance": 0}], "type_ref": "builtins.enumerate"}], "bound_args": [], "def_extras": {"first_arg": "self"}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "__next__ of enumerate", "ret_type": {".class": "TupleType", "fallback": {".class": "Instance", "args": [{".class": "AnyType", "missing_import_name": null, "source_any": null, "type_of_any": 6}], "type_ref": "builtins.tuple"}, "implicit": false, "items": ["builtins.int", {".class": "TypeVarType", "fullname": "builtins._T", "id": 1, "name": "_T", "upper_bound": "builtins.object", "values": [], "variance": 0}]}, "variables": []}}}}, "tuple_type": null, "type_vars": ["_T"], "typeddict_type": null}}, "eval": {".class": "SymbolTableNode", "kind": "Gdef", "node": {".class": "FuncDef", "arg_kinds": [0, 1, 1], "arg_names": ["source", "globals", "locals"], "flags": [], "fullname": "builtins.eval", "name": "eval", "type": {".class": "CallableType", "arg_kinds": [0, 1, 1], "arg_names": ["source", "globals", "locals"], "arg_types": [{".class": "UnionType", "items": ["builtins.str", "builtins.bytes", "types.CodeType"]}, {".class": "UnionType", "items": [{".class": "Instance", "args": ["builtins.str", {".class": "AnyType", "missing_import_name": null, "source_any": null, "type_of_any": 2}], "type_ref": "builtins.dict"}, {".class": "NoneTyp"}]}, {".class": "UnionType", "items": [{".class": "Instance", "args": ["builtins.str", {".class": "AnyType", "missing_import_name": null, "source_any": null, "type_of_any": 2}], "type_ref": "typing.Mapping"}, {".class": "NoneTyp"}]}], "bound_args": [], "def_extras": {"first_arg": null}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "eval", "ret_type": {".class": "AnyType", "missing_import_name": null, "source_any": null, "type_of_any": 2}, "variables": []}}}, "exec": {".class": "SymbolTableNode", "kind": "Gdef", "node": {".class": "FuncDef", "arg_kinds": [0, 1, 1], "arg_names": ["object", "globals", "locals"], "flags": ["is_conditional"], "fullname": "builtins.exec", "name": "exec", "type": {".class": "CallableType", "arg_kinds": [0, 1, 1], "arg_names": ["object", "globals", "locals"], "arg_types": [{".class": "UnionType", "items": ["builtins.str", "builtins.bytes", "types.CodeType"]}, {".class": "UnionType", "items": [{".class": "Instance", "args": ["builtins.str", {".class": "AnyType", "missing_import_name": null, "source_any": null, "type_of_any": 2}], "type_ref": "builtins.dict"}, {".class": "NoneTyp"}]}, {".class": "UnionType", "items": [{".class": "Instance", "args": ["builtins.str", {".class": "AnyType", "missing_import_name": null, "source_any": null, "type_of_any": 2}], "type_ref": "typing.Mapping"}, {".class": "NoneTyp"}]}], "bound_args": [], "def_extras": {"first_arg": null}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "exec", "ret_type": {".class": "AnyType", "missing_import_name": null, "source_any": null, "type_of_any": 2}, "variables": []}}}, "exit": {".class": "SymbolTableNode", "kind": "Gdef", "node": {".class": "FuncDef", "arg_kinds": [1], "arg_names": ["code"], "flags": [], "fullname": "builtins.exit", "name": "exit", "type": {".class": "CallableType", "arg_kinds": [1], "arg_names": ["code"], "arg_types": [{".class": "AnyType", "missing_import_name": null, "source_any": null, "type_of_any": 2}], "bound_args": [], "def_extras": {"first_arg": null}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "exit", "ret_type": {".class": "UninhabitedType", "is_noreturn": true}, "variables": []}}}, "filter": {".class": "SymbolTableNode", "kind": "Gdef", "node": {".class": "OverloadedFuncDef", "flags": [], "fullname": "builtins.filter", "impl": null, "items": [{".class": "Decorator", "func": {".class": "FuncDef", "arg_kinds": [0, 0], "arg_names": ["__function", "__iterable"], "flags": ["is_overload", "is_decorated", "is_conditional"], "fullname": "builtins.filter", "name": "filter", "type": {".class": "CallableType", "arg_kinds": [0, 0], "arg_names": [null, null], "arg_types": [{".class": "NoneTyp"}, {".class": "Instance", "args": [{".class": "UnionType", "items": [{".class": "TypeVarType", "fullname": "builtins._T", "id": -1, "name": "_T", "upper_bound": "builtins.object", "values": [], "variance": 0}, {".class": "NoneTyp"}]}], "type_ref": "typing.Iterable"}], "bound_args": [], "def_extras": {"first_arg": null}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "filter", "ret_type": {".class": "Instance", "args": [{".class": "TypeVarType", "fullname": "builtins._T", "id": -1, "name": "_T", "upper_bound": "builtins.object", "values": [], "variance": 0}], "type_ref": "typing.Iterator"}, "variables": [{".class": "TypeVarDef", "fullname": "builtins._T", "id": -1, "name": "_T", "upper_bound": "builtins.object", "values": [], "variance": 0}]}}, "is_overload": true, "var": {".class": "Var", "flags": [], "fullname": null, "name": "filter", "type": null}}, {".class": "Decorator", "func": {".class": "FuncDef", "arg_kinds": [0, 0], "arg_names": ["__function", "__iterable"], "flags": ["is_overload", "is_decorated", "is_conditional"], "fullname": "builtins.filter", "name": "filter", "type": {".class": "CallableType", "arg_kinds": [0, 0], "arg_names": [null, null], "arg_types": [{".class": "CallableType", "arg_kinds": [0], "arg_names": [null], "arg_types": [{".class": "TypeVarType", "fullname": "builtins._T", "id": -1, "name": "_T", "upper_bound": "builtins.object", "values": [], "variance": 0}], "bound_args": [], "def_extras": {}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": null, "ret_type": {".class": "AnyType", "missing_import_name": null, "source_any": null, "type_of_any": 2}, "variables": []}, {".class": "Instance", "args": [{".class": "TypeVarType", "fullname": "builtins._T", "id": -1, "name": "_T", "upper_bound": "builtins.object", "values": [], "variance": 0}], "type_ref": "typing.Iterable"}], "bound_args": [], "def_extras": {"first_arg": null}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "filter", "ret_type": {".class": "Instance", "args": [{".class": "TypeVarType", "fullname": "builtins._T", "id": -1, "name": "_T", "upper_bound": "builtins.object", "values": [], "variance": 0}], "type_ref": "typing.Iterator"}, "variables": [{".class": "TypeVarDef", "fullname": "builtins._T", "id": -1, "name": "_T", "upper_bound": "builtins.object", "values": [], "variance": 0}]}}, "is_overload": true, "var": {".class": "Var", "flags": [], "fullname": null, "name": "filter", "type": null}}], "type": {".class": "Overloaded", "items": [{".class": "CallableType", "arg_kinds": [0, 0], "arg_names": [null, null], "arg_types": [{".class": "NoneTyp"}, {".class": "Instance", "args": [{".class": "UnionType", "items": [{".class": "TypeVarType", "fullname": "builtins._T", "id": -1, "name": "_T", "upper_bound": "builtins.object", "values": [], "variance": 0}, {".class": "NoneTyp"}]}], "type_ref": "typing.Iterable"}], "bound_args": [], "def_extras": {"first_arg": null}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "filter", "ret_type": {".class": "Instance", "args": [{".class": "TypeVarType", "fullname": "builtins._T", "id": -1, "name": "_T", "upper_bound": "builtins.object", "values": [], "variance": 0}], "type_ref": "typing.Iterator"}, "variables": [{".class": "TypeVarDef", "fullname": "builtins._T", "id": -1, "name": "_T", "upper_bound": "builtins.object", "values": [], "variance": 0}]}, {".class": "CallableType", "arg_kinds": [0, 0], "arg_names": [null, null], "arg_types": [{".class": "CallableType", "arg_kinds": [0], "arg_names": [null], "arg_types": [{".class": "TypeVarType", "fullname": "builtins._T", "id": -1, "name": "_T", "upper_bound": "builtins.object", "values": [], "variance": 0}], "bound_args": [], "def_extras": {}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": null, "ret_type": {".class": "AnyType", "missing_import_name": null, "source_any": null, "type_of_any": 2}, "variables": []}, {".class": "Instance", "args": [{".class": "TypeVarType", "fullname": "builtins._T", "id": -1, "name": "_T", "upper_bound": "builtins.object", "values": [], "variance": 0}], "type_ref": "typing.Iterable"}], "bound_args": [], "def_extras": {"first_arg": null}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "filter", "ret_type": {".class": "Instance", "args": [{".class": "TypeVarType", "fullname": "builtins._T", "id": -1, "name": "_T", "upper_bound": "builtins.object", "values": [], "variance": 0}], "type_ref": "typing.Iterator"}, "variables": [{".class": "TypeVarDef", "fullname": "builtins._T", "id": -1, "name": "_T", "upper_bound": "builtins.object", "values": [], "variance": 0}]}]}}}, "float": {".class": "SymbolTableNode", "kind": "Gdef", "node": {".class": "TypeInfo", "_promote": "builtins.complex", "abstract_attributes": [], "bases": ["builtins.object"], "declared_metaclass": null, "defn": {".class": "ClassDef", "fullname": "builtins.float", "name": "float", "type_vars": []}, "flags": [], "fullname": "builtins.float", "metaclass_type": null, "metadata": {}, "module_name": "builtins", "mro": ["builtins.float", "builtins.object"], "names": {".class": "SymbolTable", "__abs__": {".class": "SymbolTableNode", "kind": "Mdef", "node": {".class": "FuncDef", "arg_kinds": [0], "arg_names": ["self"], "flags": [], "fullname": "builtins.float.__abs__", "name": "__abs__", "type": {".class": "CallableType", "arg_kinds": [0], "arg_names": [null], "arg_types": ["builtins.float"], "bound_args": [], "def_extras": {"first_arg": "self"}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "__abs__ of float", "ret_type": "builtins.float", "variables": []}}}, "__add__": {".class": "SymbolTableNode", "kind": "Mdef", "node": {".class": "FuncDef", "arg_kinds": [0, 0], "arg_names": ["self", "x"], "flags": [], "fullname": "builtins.float.__add__", "name": "__add__", "type": {".class": "CallableType", "arg_kinds": [0, 0], "arg_names": [null, null], "arg_types": ["builtins.float", "builtins.float"], "bound_args": [], "def_extras": {"first_arg": "self"}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "__add__ of float", "ret_type": "builtins.float", "variables": []}}}, "__bool__": {".class": "SymbolTableNode", "kind": "Mdef", "node": {".class": "FuncDef", "arg_kinds": [0], "arg_names": ["self"], "flags": ["is_conditional"], "fullname": "builtins.float.__bool__", "name": "__bool__", "type": {".class": "CallableType", "arg_kinds": [0], "arg_names": ["self"], "arg_types": ["builtins.float"], "bound_args": [], "def_extras": {"first_arg": "self"}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "__bool__ of float", "ret_type": "builtins.bool", "variables": []}}}, "__divmod__": {".class": "SymbolTableNode", "kind": "Mdef", "node": {".class": "FuncDef", "arg_kinds": [0, 0], "arg_names": ["self", "x"], "flags": [], "fullname": "builtins.float.__divmod__", "name": "__divmod__", "type": {".class": "CallableType", "arg_kinds": [0, 0], "arg_names": [null, null], "arg_types": ["builtins.float", "builtins.float"], "bound_args": [], "def_extras": {"first_arg": "self"}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "__divmod__ of float", "ret_type": {".class": "TupleType", "fallback": {".class": "Instance", "args": [{".class": "AnyType", "missing_import_name": null, "source_any": null, "type_of_any": 6}], "type_ref": "builtins.tuple"}, "implicit": false, "items": ["builtins.float", "builtins.float"]}, "variables": []}}}, "__eq__": {".class": "SymbolTableNode", "kind": "Mdef", "node": {".class": "FuncDef", "arg_kinds": [0, 0], "arg_names": ["self", "x"], "flags": [], "fullname": "builtins.float.__eq__", "name": "__eq__", "type": {".class": "CallableType", "arg_kinds": [0, 0], "arg_names": [null, null], "arg_types": ["builtins.float", "builtins.object"], "bound_args": [], "def_extras": {"first_arg": "self"}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "__eq__ of float", "ret_type": "builtins.bool", "variables": []}}}, "__float__": {".class": "SymbolTableNode", "kind": "Mdef", "node": {".class": "FuncDef", "arg_kinds": [0], "arg_names": ["self"], "flags": [], "fullname": "builtins.float.__float__", "name": "__float__", "type": {".class": "CallableType", "arg_kinds": [0], "arg_names": [null], "arg_types": ["builtins.float"], "bound_args": [], "def_extras": {"first_arg": "self"}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "__float__ of float", "ret_type": "builtins.float", "variables": []}}}, "__floordiv__": {".class": "SymbolTableNode", "kind": "Mdef", "node": {".class": "FuncDef", "arg_kinds": [0, 0], "arg_names": ["self", "x"], "flags": [], "fullname": "builtins.float.__floordiv__", "name": "__floordiv__", "type": {".class": "CallableType", "arg_kinds": [0, 0], "arg_names": [null, null], "arg_types": ["builtins.float", "builtins.float"], "bound_args": [], "def_extras": {"first_arg": "self"}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "__floordiv__ of float", "ret_type": "builtins.float", "variables": []}}}, "__ge__": {".class": "SymbolTableNode", "kind": "Mdef", "node": {".class": "FuncDef", "arg_kinds": [0, 0], "arg_names": ["self", "x"], "flags": [], "fullname": "builtins.float.__ge__", "name": "__ge__", "type": {".class": "CallableType", "arg_kinds": [0, 0], "arg_names": [null, null], "arg_types": ["builtins.float", "builtins.float"], "bound_args": [], "def_extras": {"first_arg": "self"}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "__ge__ of float", "ret_type": "builtins.bool", "variables": []}}}, "__getnewargs__": {".class": "SymbolTableNode", "kind": "Mdef", "node": {".class": "FuncDef", "arg_kinds": [0], "arg_names": ["self"], "flags": [], "fullname": "builtins.float.__getnewargs__", "name": "__getnewargs__", "type": {".class": "CallableType", "arg_kinds": [0], "arg_names": ["self"], "arg_types": ["builtins.float"], "bound_args": [], "def_extras": {"first_arg": "self"}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "__getnewargs__ of float", "ret_type": {".class": "TupleType", "fallback": {".class": "Instance", "args": [{".class": "AnyType", "missing_import_name": null, "source_any": null, "type_of_any": 6}], "type_ref": "builtins.tuple"}, "implicit": false, "items": ["builtins.float"]}, "variables": []}}}, "__gt__": {".class": "SymbolTableNode", "kind": "Mdef", "node": {".class": "FuncDef", "arg_kinds": [0, 0], "arg_names": ["self", "x"], "flags": [], "fullname": "builtins.float.__gt__", "name": "__gt__", "type": {".class": "CallableType", "arg_kinds": [0, 0], "arg_names": [null, null], "arg_types": ["builtins.float", "builtins.float"], "bound_args": [], "def_extras": {"first_arg": "self"}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "__gt__ of float", "ret_type": "builtins.bool", "variables": []}}}, "__hash__": {".class": "SymbolTableNode", "kind": "Mdef", "node": {".class": "FuncDef", "arg_kinds": [0], "arg_names": ["self"], "flags": [], "fullname": "builtins.float.__hash__", "name": "__hash__", "type": {".class": "CallableType", "arg_kinds": [0], "arg_names": ["self"], "arg_types": ["builtins.float"], "bound_args": [], "def_extras": {"first_arg": "self"}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "__hash__ of float", "ret_type": "builtins.int", "variables": []}}}, "__init__": {".class": "SymbolTableNode", "kind": "Mdef", "node": {".class": "FuncDef", "arg_kinds": [0, 1], "arg_names": ["self", "x"], "flags": [], "fullname": "builtins.float.__init__", "name": "__init__", "type": {".class": "CallableType", "arg_kinds": [0, 1], "arg_names": ["self", "x"], "arg_types": ["builtins.float", {".class": "UnionType", "items": ["typing.SupportsFloat", "builtins.str", "builtins.bytes", "builtins.bytearray"]}], "bound_args": [], "def_extras": {"first_arg": "self"}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "__init__ of float", "ret_type": {".class": "NoneTyp"}, "variables": []}}}, "__int__": {".class": "SymbolTableNode", "kind": "Mdef", "node": {".class": "FuncDef", "arg_kinds": [0], "arg_names": ["self"], "flags": [], "fullname": "builtins.float.__int__", "name": "__int__", "type": {".class": "CallableType", "arg_kinds": [0], "arg_names": [null], "arg_types": ["builtins.float"], "bound_args": [], "def_extras": {"first_arg": "self"}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "__int__ of float", "ret_type": "builtins.int", "variables": []}}}, "__le__": {".class": "SymbolTableNode", "kind": "Mdef", "node": {".class": "FuncDef", "arg_kinds": [0, 0], "arg_names": ["self", "x"], "flags": [], "fullname": "builtins.float.__le__", "name": "__le__", "type": {".class": "CallableType", "arg_kinds": [0, 0], "arg_names": [null, null], "arg_types": ["builtins.float", "builtins.float"], "bound_args": [], "def_extras": {"first_arg": "self"}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "__le__ of float", "ret_type": "builtins.bool", "variables": []}}}, "__lt__": {".class": "SymbolTableNode", "kind": "Mdef", "node": {".class": "FuncDef", "arg_kinds": [0, 0], "arg_names": ["self", "x"], "flags": [], "fullname": "builtins.float.__lt__", "name": "__lt__", "type": {".class": "CallableType", "arg_kinds": [0, 0], "arg_names": [null, null], "arg_types": ["builtins.float", "builtins.float"], "bound_args": [], "def_extras": {"first_arg": "self"}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "__lt__ of float", "ret_type": "builtins.bool", "variables": []}}}, "__mod__": {".class": "SymbolTableNode", "kind": "Mdef", "node": {".class": "FuncDef", "arg_kinds": [0, 0], "arg_names": ["self", "x"], "flags": [], "fullname": "builtins.float.__mod__", "name": "__mod__", "type": {".class": "CallableType", "arg_kinds": [0, 0], "arg_names": [null, null], "arg_types": ["builtins.float", "builtins.float"], "bound_args": [], "def_extras": {"first_arg": "self"}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "__mod__ of float", "ret_type": "builtins.float", "variables": []}}}, "__mul__": {".class": "SymbolTableNode", "kind": "Mdef", "node": {".class": "FuncDef", "arg_kinds": [0, 0], "arg_names": ["self", "x"], "flags": [], "fullname": "builtins.float.__mul__", "name": "__mul__", "type": {".class": "CallableType", "arg_kinds": [0, 0], "arg_names": [null, null], "arg_types": ["builtins.float", "builtins.float"], "bound_args": [], "def_extras": {"first_arg": "self"}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "__mul__ of float", "ret_type": "builtins.float", "variables": []}}}, "__ne__": {".class": "SymbolTableNode", "kind": "Mdef", "node": {".class": "FuncDef", "arg_kinds": [0, 0], "arg_names": ["self", "x"], "flags": [], "fullname": "builtins.float.__ne__", "name": "__ne__", "type": {".class": "CallableType", "arg_kinds": [0, 0], "arg_names": [null, null], "arg_types": ["builtins.float", "builtins.object"], "bound_args": [], "def_extras": {"first_arg": "self"}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "__ne__ of float", "ret_type": "builtins.bool", "variables": []}}}, "__neg__": {".class": "SymbolTableNode", "kind": "Mdef", "node": {".class": "FuncDef", "arg_kinds": [0], "arg_names": ["self"], "flags": [], "fullname": "builtins.float.__neg__", "name": "__neg__", "type": {".class": "CallableType", "arg_kinds": [0], "arg_names": [null], "arg_types": ["builtins.float"], "bound_args": [], "def_extras": {"first_arg": "self"}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "__neg__ of float", "ret_type": "builtins.float", "variables": []}}}, "__pos__": {".class": "SymbolTableNode", "kind": "Mdef", "node": {".class": "FuncDef", "arg_kinds": [0], "arg_names": ["self"], "flags": [], "fullname": "builtins.float.__pos__", "name": "__pos__", "type": {".class": "CallableType", "arg_kinds": [0], "arg_names": [null], "arg_types": ["builtins.float"], "bound_args": [], "def_extras": {"first_arg": "self"}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "__pos__ of float", "ret_type": "builtins.float", "variables": []}}}, "__pow__": {".class": "SymbolTableNode", "kind": "Mdef", "node": {".class": "FuncDef", "arg_kinds": [0, 0], "arg_names": ["self", "x"], "flags": [], "fullname": "builtins.float.__pow__", "name": "__pow__", "type": {".class": "CallableType", "arg_kinds": [0, 0], "arg_names": [null, null], "arg_types": ["builtins.float", "builtins.float"], "bound_args": [], "def_extras": {"first_arg": "self"}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "__pow__ of float", "ret_type": "builtins.float", "variables": []}}}, "__radd__": {".class": "SymbolTableNode", "kind": "Mdef", "node": {".class": "FuncDef", "arg_kinds": [0, 0], "arg_names": ["self", "x"], "flags": [], "fullname": "builtins.float.__radd__", "name": "__radd__", "type": {".class": "CallableType", "arg_kinds": [0, 0], "arg_names": [null, null], "arg_types": ["builtins.float", "builtins.float"], "bound_args": [], "def_extras": {"first_arg": "self"}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "__radd__ of float", "ret_type": "builtins.float", "variables": []}}}, "__rdivmod__": {".class": "SymbolTableNode", "kind": "Mdef", "node": {".class": "FuncDef", "arg_kinds": [0, 0], "arg_names": ["self", "x"], "flags": [], "fullname": "builtins.float.__rdivmod__", "name": "__rdivmod__", "type": {".class": "CallableType", "arg_kinds": [0, 0], "arg_names": ["self", "x"], "arg_types": ["builtins.float", "builtins.float"], "bound_args": [], "def_extras": {"first_arg": "self"}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "__rdivmod__ of float", "ret_type": {".class": "TupleType", "fallback": {".class": "Instance", "args": [{".class": "AnyType", "missing_import_name": null, "source_any": null, "type_of_any": 6}], "type_ref": "builtins.tuple"}, "implicit": false, "items": ["builtins.float", "builtins.float"]}, "variables": []}}}, "__rfloordiv__": {".class": "SymbolTableNode", "kind": "Mdef", "node": {".class": "FuncDef", "arg_kinds": [0, 0], "arg_names": ["self", "x"], "flags": [], "fullname": "builtins.float.__rfloordiv__", "name": "__rfloordiv__", "type": {".class": "CallableType", "arg_kinds": [0, 0], "arg_names": [null, null], "arg_types": ["builtins.float", "builtins.float"], "bound_args": [], "def_extras": {"first_arg": "self"}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "__rfloordiv__ of float", "ret_type": "builtins.float", "variables": []}}}, "__rmod__": {".class": "SymbolTableNode", "kind": "Mdef", "node": {".class": "FuncDef", "arg_kinds": [0, 0], "arg_names": ["self", "x"], "flags": [], "fullname": "builtins.float.__rmod__", "name": "__rmod__", "type": {".class": "CallableType", "arg_kinds": [0, 0], "arg_names": [null, null], "arg_types": ["builtins.float", "builtins.float"], "bound_args": [], "def_extras": {"first_arg": "self"}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "__rmod__ of float", "ret_type": "builtins.float", "variables": []}}}, "__rmul__": {".class": "SymbolTableNode", "kind": "Mdef", "node": {".class": "FuncDef", "arg_kinds": [0, 0], "arg_names": ["self", "x"], "flags": [], "fullname": "builtins.float.__rmul__", "name": "__rmul__", "type": {".class": "CallableType", "arg_kinds": [0, 0], "arg_names": [null, null], "arg_types": ["builtins.float", "builtins.float"], "bound_args": [], "def_extras": {"first_arg": "self"}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "__rmul__ of float", "ret_type": "builtins.float", "variables": []}}}, "__round__": {".class": "SymbolTableNode", "kind": "Mdef", "node": {".class": "OverloadedFuncDef", "flags": [], "fullname": "builtins.float.__round__", "impl": null, "items": [{".class": "Decorator", "func": {".class": "FuncDef", "arg_kinds": [0], "arg_names": ["self"], "flags": ["is_overload", "is_decorated", "is_conditional"], "fullname": "builtins.float.__round__", "name": "__round__", "type": {".class": "CallableType", "arg_kinds": [0], "arg_names": ["self"], "arg_types": ["builtins.float"], "bound_args": [], "def_extras": {"first_arg": "self"}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "__round__ of float", "ret_type": "builtins.int", "variables": []}}, "is_overload": true, "var": {".class": "Var", "flags": [], "fullname": null, "name": "__round__", "type": null}}, {".class": "Decorator", "func": {".class": "FuncDef", "arg_kinds": [0, 0], "arg_names": ["self", "ndigits"], "flags": ["is_overload", "is_decorated", "is_conditional"], "fullname": "builtins.float.__round__", "name": "__round__", "type": {".class": "CallableType", "arg_kinds": [0, 0], "arg_names": ["self", "ndigits"], "arg_types": ["builtins.float", {".class": "NoneTyp"}], "bound_args": [], "def_extras": {"first_arg": "self"}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "__round__ of float", "ret_type": "builtins.int", "variables": []}}, "is_overload": true, "var": {".class": "Var", "flags": [], "fullname": null, "name": "__round__", "type": null}}, {".class": "Decorator", "func": {".class": "FuncDef", "arg_kinds": [0, 0], "arg_names": ["self", "ndigits"], "flags": ["is_overload", "is_decorated", "is_conditional"], "fullname": "builtins.float.__round__", "name": "__round__", "type": {".class": "CallableType", "arg_kinds": [0, 0], "arg_names": ["self", "ndigits"], "arg_types": ["builtins.float", "builtins.int"], "bound_args": [], "def_extras": {"first_arg": "self"}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "__round__ of float", "ret_type": "builtins.float", "variables": []}}, "is_overload": true, "var": {".class": "Var", "flags": [], "fullname": null, "name": "__round__", "type": null}}], "type": {".class": "Overloaded", "items": [{".class": "CallableType", "arg_kinds": [0], "arg_names": ["self"], "arg_types": ["builtins.float"], "bound_args": [], "def_extras": {"first_arg": "self"}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "__round__ of float", "ret_type": "builtins.int", "variables": []}, {".class": "CallableType", "arg_kinds": [0, 0], "arg_names": ["self", "ndigits"], "arg_types": ["builtins.float", {".class": "NoneTyp"}], "bound_args": [], "def_extras": {"first_arg": "self"}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "__round__ of float", "ret_type": "builtins.int", "variables": []}, {".class": "CallableType", "arg_kinds": [0, 0], "arg_names": ["self", "ndigits"], "arg_types": ["builtins.float", "builtins.int"], "bound_args": [], "def_extras": {"first_arg": "self"}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "__round__ of float", "ret_type": "builtins.float", "variables": []}]}}}, "__rpow__": {".class": "SymbolTableNode", "kind": "Mdef", "node": {".class": "FuncDef", "arg_kinds": [0, 0], "arg_names": ["self", "x"], "flags": [], "fullname": "builtins.float.__rpow__", "name": "__rpow__", "type": {".class": "CallableType", "arg_kinds": [0, 0], "arg_names": [null, null], "arg_types": ["builtins.float", "builtins.float"], "bound_args": [], "def_extras": {"first_arg": "self"}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "__rpow__ of float", "ret_type": "builtins.float", "variables": []}}}, "__rsub__": {".class": "SymbolTableNode", "kind": "Mdef", "node": {".class": "FuncDef", "arg_kinds": [0, 0], "arg_names": ["self", "x"], "flags": [], "fullname": "builtins.float.__rsub__", "name": "__rsub__", "type": {".class": "CallableType", "arg_kinds": [0, 0], "arg_names": [null, null], "arg_types": ["builtins.float", "builtins.float"], "bound_args": [], "def_extras": {"first_arg": "self"}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "__rsub__ of float", "ret_type": "builtins.float", "variables": []}}}, "__rtruediv__": {".class": "SymbolTableNode", "kind": "Mdef", "node": {".class": "FuncDef", "arg_kinds": [0, 0], "arg_names": ["self", "x"], "flags": [], "fullname": "builtins.float.__rtruediv__", "name": "__rtruediv__", "type": {".class": "CallableType", "arg_kinds": [0, 0], "arg_names": ["self", "x"], "arg_types": ["builtins.float", "builtins.float"], "bound_args": [], "def_extras": {"first_arg": "self"}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "__rtruediv__ of float", "ret_type": "builtins.float", "variables": []}}}, "__str__": {".class": "SymbolTableNode", "kind": "Mdef", "node": {".class": "FuncDef", "arg_kinds": [0], "arg_names": ["self"], "flags": [], "fullname": "builtins.float.__str__", "name": "__str__", "type": {".class": "CallableType", "arg_kinds": [0], "arg_names": [null], "arg_types": ["builtins.float"], "bound_args": [], "def_extras": {"first_arg": "self"}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "__str__ of float", "ret_type": "builtins.str", "variables": []}}}, "__sub__": {".class": "SymbolTableNode", "kind": "Mdef", "node": {".class": "FuncDef", "arg_kinds": [0, 0], "arg_names": ["self", "x"], "flags": [], "fullname": "builtins.float.__sub__", "name": "__sub__", "type": {".class": "CallableType", "arg_kinds": [0, 0], "arg_names": [null, null], "arg_types": ["builtins.float", "builtins.float"], "bound_args": [], "def_extras": {"first_arg": "self"}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "__sub__ of float", "ret_type": "builtins.float", "variables": []}}}, "__truediv__": {".class": "SymbolTableNode", "kind": "Mdef", "node": {".class": "FuncDef", "arg_kinds": [0, 0], "arg_names": ["self", "x"], "flags": [], "fullname": "builtins.float.__truediv__", "name": "__truediv__", "type": {".class": "CallableType", "arg_kinds": [0, 0], "arg_names": ["self", "x"], "arg_types": ["builtins.float", "builtins.float"], "bound_args": [], "def_extras": {"first_arg": "self"}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "__truediv__ of float", "ret_type": "builtins.float", "variables": []}}}, "as_integer_ratio": {".class": "SymbolTableNode", "kind": "Mdef", "node": {".class": "FuncDef", "arg_kinds": [0], "arg_names": ["self"], "flags": [], "fullname": "builtins.float.as_integer_ratio", "name": "as_integer_ratio", "type": {".class": "CallableType", "arg_kinds": [0], "arg_names": ["self"], "arg_types": ["builtins.float"], "bound_args": [], "def_extras": {"first_arg": "self"}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "as_integer_ratio of float", "ret_type": {".class": "TupleType", "fallback": {".class": "Instance", "args": [{".class": "AnyType", "missing_import_name": null, "source_any": null, "type_of_any": 6}], "type_ref": "builtins.tuple"}, "implicit": false, "items": ["builtins.int", "builtins.int"]}, "variables": []}}}, "conjugate": {".class": "SymbolTableNode", "kind": "Mdef", "node": {".class": "FuncDef", "arg_kinds": [0], "arg_names": ["self"], "flags": [], "fullname": "builtins.float.conjugate", "name": "conjugate", "type": {".class": "CallableType", "arg_kinds": [0], "arg_names": ["self"], "arg_types": ["builtins.float"], "bound_args": [], "def_extras": {"first_arg": "self"}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "conjugate of float", "ret_type": "builtins.float", "variables": []}}}, "fromhex": {".class": "SymbolTableNode", "kind": "Mdef", "node": {".class": "Decorator", "func": {".class": "FuncDef", "arg_kinds": [0, 0], "arg_names": ["cls", "s"], "flags": ["is_class", "is_decorated"], "fullname": "builtins.float.fromhex", "name": "fromhex", "type": {".class": "CallableType", "arg_kinds": [0, 0], "arg_names": ["cls", "s"], "arg_types": [{".class": "TypeType", "item": "builtins.float"}, "builtins.str"], "bound_args": [], "def_extras": {"first_arg": "cls"}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "fromhex of float", "ret_type": "builtins.float", "variables": []}}, "is_overload": false, "var": {".class": "Var", "flags": ["is_initialized_in_class", "is_classmethod"], "fullname": null, "name": "fromhex", "type": {".class": "CallableType", "arg_kinds": [0, 0], "arg_names": ["cls", "s"], "arg_types": [{".class": "TypeType", "item": "builtins.float"}, "builtins.str"], "bound_args": [], "def_extras": {"first_arg": "cls"}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "fromhex of float", "ret_type": "builtins.float", "variables": []}}}}, "hex": {".class": "SymbolTableNode", "kind": "Mdef", "node": {".class": "FuncDef", "arg_kinds": [0], "arg_names": ["self"], "flags": [], "fullname": "builtins.float.hex", "name": "hex", "type": {".class": "CallableType", "arg_kinds": [0], "arg_names": ["self"], "arg_types": ["builtins.float"], "bound_args": [], "def_extras": {"first_arg": "self"}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "hex of float", "ret_type": "builtins.str", "variables": []}}}, "imag": {".class": "SymbolTableNode", "kind": "Mdef", "node": {".class": "Decorator", "func": {".class": "FuncDef", "arg_kinds": [0], "arg_names": ["self"], "flags": ["is_property", "is_decorated"], "fullname": "builtins.float.imag", "name": "imag", "type": {".class": "CallableType", "arg_kinds": [0], "arg_names": ["self"], "arg_types": ["builtins.float"], "bound_args": [], "def_extras": {"first_arg": "self"}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "imag of float", "ret_type": "builtins.float", "variables": []}}, "is_overload": false, "var": {".class": "Var", "flags": ["is_initialized_in_class", "is_property"], "fullname": null, "name": "imag", "type": {".class": "CallableType", "arg_kinds": [0], "arg_names": ["self"], "arg_types": ["builtins.float"], "bound_args": [], "def_extras": {"first_arg": "self"}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "imag of float", "ret_type": "builtins.float", "variables": []}}}}, "is_integer": {".class": "SymbolTableNode", "kind": "Mdef", "node": {".class": "FuncDef", "arg_kinds": [0], "arg_names": ["self"], "flags": [], "fullname": "builtins.float.is_integer", "name": "is_integer", "type": {".class": "CallableType", "arg_kinds": [0], "arg_names": ["self"], "arg_types": ["builtins.float"], "bound_args": [], "def_extras": {"first_arg": "self"}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "is_integer of float", "ret_type": "builtins.bool", "variables": []}}}, "real": {".class": "SymbolTableNode", "kind": "Mdef", "node": {".class": "Decorator", "func": {".class": "FuncDef", "arg_kinds": [0], "arg_names": ["self"], "flags": ["is_property", "is_decorated"], "fullname": "builtins.float.real", "name": "real", "type": {".class": "CallableType", "arg_kinds": [0], "arg_names": ["self"], "arg_types": ["builtins.float"], "bound_args": [], "def_extras": {"first_arg": "self"}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "real of float", "ret_type": "builtins.float", "variables": []}}, "is_overload": false, "var": {".class": "Var", "flags": ["is_initialized_in_class", "is_property"], "fullname": null, "name": "real", "type": {".class": "CallableType", "arg_kinds": [0], "arg_names": ["self"], "arg_types": ["builtins.float"], "bound_args": [], "def_extras": {"first_arg": "self"}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "real of float", "ret_type": "builtins.float", "variables": []}}}}}, "tuple_type": null, "type_vars": [], "typeddict_type": null}}, "format": {".class": "SymbolTableNode", "kind": "Gdef", "node": {".class": "FuncDef", "arg_kinds": [0, 1], "arg_names": ["o", "format_spec"], "flags": [], "fullname": "builtins.format", "name": "format", "type": {".class": "CallableType", "arg_kinds": [0, 1], "arg_names": ["o", "format_spec"], "arg_types": ["builtins.object", "builtins.str"], "bound_args": [], "def_extras": {"first_arg": null}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "format", "ret_type": "builtins.str", "variables": []}}}, "frozenset": {".class": "SymbolTableNode", "kind": "Gdef", "node": {".class": "TypeInfo", "_promote": null, "abstract_attributes": [], "bases": [{".class": "Instance", "args": [{".class": "TypeVarType", "fullname": "builtins._T", "id": 1, "name": "_T", "upper_bound": "builtins.object", "values": [], "variance": 0}], "type_ref": "typing.AbstractSet"}], "declared_metaclass": null, "defn": {".class": "ClassDef", "fullname": "builtins.frozenset", "name": "frozenset", "type_vars": [{".class": "TypeVarDef", "fullname": "builtins._T", "id": 1, "name": "_T", "upper_bound": "builtins.object", "values": [], "variance": 0}]}, "flags": [], "fullname": "builtins.frozenset", "metaclass_type": "abc.ABCMeta", "metadata": {}, "module_name": "builtins", "mro": ["builtins.frozenset", "typing.AbstractSet", "typing.Collection", "typing.Iterable", "typing.Container", "builtins.object"], "names": {".class": "SymbolTable", "__and__": {".class": "SymbolTableNode", "kind": "Mdef", "node": {".class": "FuncDef", "arg_kinds": [0, 0], "arg_names": ["self", "s"], "flags": [], "fullname": "builtins.frozenset.__and__", "name": "__and__", "type": {".class": "CallableType", "arg_kinds": [0, 0], "arg_names": [null, null], "arg_types": [{".class": "Instance", "args": [{".class": "TypeVarType", "fullname": "builtins._T", "id": 1, "name": "_T", "upper_bound": "builtins.object", "values": [], "variance": 0}], "type_ref": "builtins.frozenset"}, {".class": "Instance", "args": [{".class": "TypeVarType", "fullname": "builtins._T", "id": 1, "name": "_T", "upper_bound": "builtins.object", "values": [], "variance": 0}], "type_ref": "typing.AbstractSet"}], "bound_args": [], "def_extras": {"first_arg": "self"}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "__and__ of frozenset", "ret_type": {".class": "Instance", "args": [{".class": "TypeVarType", "fullname": "builtins._T", "id": 1, "name": "_T", "upper_bound": "builtins.object", "values": [], "variance": 0}], "type_ref": "builtins.frozenset"}, "variables": []}}}, "__contains__": {".class": "SymbolTableNode", "kind": "Mdef", "node": {".class": "FuncDef", "arg_kinds": [0, 0], "arg_names": ["self", "o"], "flags": [], "fullname": "builtins.frozenset.__contains__", "name": "__contains__", "type": {".class": "CallableType", "arg_kinds": [0, 0], "arg_names": [null, null], "arg_types": [{".class": "Instance", "args": [{".class": "TypeVarType", "fullname": "builtins._T", "id": 1, "name": "_T", "upper_bound": "builtins.object", "values": [], "variance": 0}], "type_ref": "builtins.frozenset"}, "builtins.object"], "bound_args": [], "def_extras": {"first_arg": "self"}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "__contains__ of frozenset", "ret_type": "builtins.bool", "variables": []}}}, "__ge__": {".class": "SymbolTableNode", "kind": "Mdef", "node": {".class": "FuncDef", "arg_kinds": [0, 0], "arg_names": ["self", "s"], "flags": [], "fullname": "builtins.frozenset.__ge__", "name": "__ge__", "type": {".class": "CallableType", "arg_kinds": [0, 0], "arg_names": [null, null], "arg_types": [{".class": "Instance", "args": [{".class": "TypeVarType", "fullname": "builtins._T", "id": 1, "name": "_T", "upper_bound": "builtins.object", "values": [], "variance": 0}], "type_ref": "builtins.frozenset"}, {".class": "Instance", "args": ["builtins.object"], "type_ref": "typing.AbstractSet"}], "bound_args": [], "def_extras": {"first_arg": "self"}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "__ge__ of frozenset", "ret_type": "builtins.bool", "variables": []}}}, "__gt__": {".class": "SymbolTableNode", "kind": "Mdef", "node": {".class": "FuncDef", "arg_kinds": [0, 0], "arg_names": ["self", "s"], "flags": [], "fullname": "builtins.frozenset.__gt__", "name": "__gt__", "type": {".class": "CallableType", "arg_kinds": [0, 0], "arg_names": [null, null], "arg_types": [{".class": "Instance", "args": [{".class": "TypeVarType", "fullname": "builtins._T", "id": 1, "name": "_T", "upper_bound": "builtins.object", "values": [], "variance": 0}], "type_ref": "builtins.frozenset"}, {".class": "Instance", "args": ["builtins.object"], "type_ref": "typing.AbstractSet"}], "bound_args": [], "def_extras": {"first_arg": "self"}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "__gt__ of frozenset", "ret_type": "builtins.bool", "variables": []}}}, "__init__": {".class": "SymbolTableNode", "kind": "Mdef", "node": {".class": "FuncDef", "arg_kinds": [0, 1], "arg_names": ["self", "iterable"], "flags": [], "fullname": "builtins.frozenset.__init__", "name": "__init__", "type": {".class": "CallableType", "arg_kinds": [0, 1], "arg_names": ["self", "iterable"], "arg_types": [{".class": "Instance", "args": [{".class": "TypeVarType", "fullname": "builtins._T", "id": 1, "name": "_T", "upper_bound": "builtins.object", "values": [], "variance": 0}], "type_ref": "builtins.frozenset"}, {".class": "Instance", "args": [{".class": "TypeVarType", "fullname": "builtins._T", "id": 1, "name": "_T", "upper_bound": "builtins.object", "values": [], "variance": 0}], "type_ref": "typing.Iterable"}], "bound_args": [], "def_extras": {"first_arg": "self"}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "__init__ of frozenset", "ret_type": {".class": "NoneTyp"}, "variables": []}}}, "__iter__": {".class": "SymbolTableNode", "kind": "Mdef", "node": {".class": "FuncDef", "arg_kinds": [0], "arg_names": ["self"], "flags": [], "fullname": "builtins.frozenset.__iter__", "name": "__iter__", "type": {".class": "CallableType", "arg_kinds": [0], "arg_names": [null], "arg_types": [{".class": "Instance", "args": [{".class": "TypeVarType", "fullname": "builtins._T", "id": 1, "name": "_T", "upper_bound": "builtins.object", "values": [], "variance": 0}], "type_ref": "builtins.frozenset"}], "bound_args": [], "def_extras": {"first_arg": "self"}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "__iter__ of frozenset", "ret_type": {".class": "Instance", "args": [{".class": "TypeVarType", "fullname": "builtins._T", "id": 1, "name": "_T", "upper_bound": "builtins.object", "values": [], "variance": 0}], "type_ref": "typing.Iterator"}, "variables": []}}}, "__le__": {".class": "SymbolTableNode", "kind": "Mdef", "node": {".class": "FuncDef", "arg_kinds": [0, 0], "arg_names": ["self", "s"], "flags": [], "fullname": "builtins.frozenset.__le__", "name": "__le__", "type": {".class": "CallableType", "arg_kinds": [0, 0], "arg_names": [null, null], "arg_types": [{".class": "Instance", "args": [{".class": "TypeVarType", "fullname": "builtins._T", "id": 1, "name": "_T", "upper_bound": "builtins.object", "values": [], "variance": 0}], "type_ref": "builtins.frozenset"}, {".class": "Instance", "args": ["builtins.object"], "type_ref": "typing.AbstractSet"}], "bound_args": [], "def_extras": {"first_arg": "self"}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "__le__ of frozenset", "ret_type": "builtins.bool", "variables": []}}}, "__len__": {".class": "SymbolTableNode", "kind": "Mdef", "node": {".class": "FuncDef", "arg_kinds": [0], "arg_names": ["self"], "flags": [], "fullname": "builtins.frozenset.__len__", "name": "__len__", "type": {".class": "CallableType", "arg_kinds": [0], "arg_names": [null], "arg_types": [{".class": "Instance", "args": [{".class": "TypeVarType", "fullname": "builtins._T", "id": 1, "name": "_T", "upper_bound": "builtins.object", "values": [], "variance": 0}], "type_ref": "builtins.frozenset"}], "bound_args": [], "def_extras": {"first_arg": "self"}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "__len__ of frozenset", "ret_type": "builtins.int", "variables": []}}}, "__lt__": {".class": "SymbolTableNode", "kind": "Mdef", "node": {".class": "FuncDef", "arg_kinds": [0, 0], "arg_names": ["self", "s"], "flags": [], "fullname": "builtins.frozenset.__lt__", "name": "__lt__", "type": {".class": "CallableType", "arg_kinds": [0, 0], "arg_names": [null, null], "arg_types": [{".class": "Instance", "args": [{".class": "TypeVarType", "fullname": "builtins._T", "id": 1, "name": "_T", "upper_bound": "builtins.object", "values": [], "variance": 0}], "type_ref": "builtins.frozenset"}, {".class": "Instance", "args": ["builtins.object"], "type_ref": "typing.AbstractSet"}], "bound_args": [], "def_extras": {"first_arg": "self"}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "__lt__ of frozenset", "ret_type": "builtins.bool", "variables": []}}}, "__or__": {".class": "SymbolTableNode", "kind": "Mdef", "node": {".class": "FuncDef", "arg_kinds": [0, 0], "arg_names": ["self", "s"], "flags": [], "fullname": "builtins.frozenset.__or__", "name": "__or__", "type": {".class": "CallableType", "arg_kinds": [0, 0], "arg_names": [null, null], "arg_types": [{".class": "Instance", "args": [{".class": "TypeVarType", "fullname": "builtins._T", "id": 1, "name": "_T", "upper_bound": "builtins.object", "values": [], "variance": 0}], "type_ref": "builtins.frozenset"}, {".class": "Instance", "args": [{".class": "TypeVarType", "fullname": "builtins._S", "id": -1, "name": "_S", "upper_bound": "builtins.object", "values": [], "variance": 0}], "type_ref": "typing.AbstractSet"}], "bound_args": [], "def_extras": {"first_arg": "self"}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "__or__ of frozenset", "ret_type": {".class": "Instance", "args": [{".class": "UnionType", "items": [{".class": "TypeVarType", "fullname": "builtins._T", "id": 1, "name": "_T", "upper_bound": "builtins.object", "values": [], "variance": 0}, {".class": "TypeVarType", "fullname": "builtins._S", "id": -1, "name": "_S", "upper_bound": "builtins.object", "values": [], "variance": 0}]}], "type_ref": "builtins.frozenset"}, "variables": [{".class": "TypeVarDef", "fullname": "builtins._S", "id": -1, "name": "_S", "upper_bound": "builtins.object", "values": [], "variance": 0}]}}}, "__str__": {".class": "SymbolTableNode", "kind": "Mdef", "node": {".class": "FuncDef", "arg_kinds": [0], "arg_names": ["self"], "flags": [], "fullname": "builtins.frozenset.__str__", "name": "__str__", "type": {".class": "CallableType", "arg_kinds": [0], "arg_names": [null], "arg_types": [{".class": "Instance", "args": [{".class": "TypeVarType", "fullname": "builtins._T", "id": 1, "name": "_T", "upper_bound": "builtins.object", "values": [], "variance": 0}], "type_ref": "builtins.frozenset"}], "bound_args": [], "def_extras": {"first_arg": "self"}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "__str__ of frozenset", "ret_type": "builtins.str", "variables": []}}}, "__sub__": {".class": "SymbolTableNode", "kind": "Mdef", "node": {".class": "FuncDef", "arg_kinds": [0, 0], "arg_names": ["self", "s"], "flags": [], "fullname": "builtins.frozenset.__sub__", "name": "__sub__", "type": {".class": "CallableType", "arg_kinds": [0, 0], "arg_names": [null, null], "arg_types": [{".class": "Instance", "args": [{".class": "TypeVarType", "fullname": "builtins._T", "id": 1, "name": "_T", "upper_bound": "builtins.object", "values": [], "variance": 0}], "type_ref": "builtins.frozenset"}, {".class": "Instance", "args": [{".class": "TypeVarType", "fullname": "builtins._T", "id": 1, "name": "_T", "upper_bound": "builtins.object", "values": [], "variance": 0}], "type_ref": "typing.AbstractSet"}], "bound_args": [], "def_extras": {"first_arg": "self"}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "__sub__ of frozenset", "ret_type": {".class": "Instance", "args": [{".class": "TypeVarType", "fullname": "builtins._T", "id": 1, "name": "_T", "upper_bound": "builtins.object", "values": [], "variance": 0}], "type_ref": "builtins.frozenset"}, "variables": []}}}, "__xor__": {".class": "SymbolTableNode", "kind": "Mdef", "node": {".class": "FuncDef", "arg_kinds": [0, 0], "arg_names": ["self", "s"], "flags": [], "fullname": "builtins.frozenset.__xor__", "name": "__xor__", "type": {".class": "CallableType", "arg_kinds": [0, 0], "arg_names": [null, null], "arg_types": [{".class": "Instance", "args": [{".class": "TypeVarType", "fullname": "builtins._T", "id": 1, "name": "_T", "upper_bound": "builtins.object", "values": [], "variance": 0}], "type_ref": "builtins.frozenset"}, {".class": "Instance", "args": [{".class": "TypeVarType", "fullname": "builtins._S", "id": -1, "name": "_S", "upper_bound": "builtins.object", "values": [], "variance": 0}], "type_ref": "typing.AbstractSet"}], "bound_args": [], "def_extras": {"first_arg": "self"}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "__xor__ of frozenset", "ret_type": {".class": "Instance", "args": [{".class": "UnionType", "items": [{".class": "TypeVarType", "fullname": "builtins._T", "id": 1, "name": "_T", "upper_bound": "builtins.object", "values": [], "variance": 0}, {".class": "TypeVarType", "fullname": "builtins._S", "id": -1, "name": "_S", "upper_bound": "builtins.object", "values": [], "variance": 0}]}], "type_ref": "builtins.frozenset"}, "variables": [{".class": "TypeVarDef", "fullname": "builtins._S", "id": -1, "name": "_S", "upper_bound": "builtins.object", "values": [], "variance": 0}]}}}, "copy": {".class": "SymbolTableNode", "kind": "Mdef", "node": {".class": "FuncDef", "arg_kinds": [0], "arg_names": ["self"], "flags": [], "fullname": "builtins.frozenset.copy", "name": "copy", "type": {".class": "CallableType", "arg_kinds": [0], "arg_names": ["self"], "arg_types": [{".class": "Instance", "args": [{".class": "TypeVarType", "fullname": "builtins._T", "id": 1, "name": "_T", "upper_bound": "builtins.object", "values": [], "variance": 0}], "type_ref": "builtins.frozenset"}], "bound_args": [], "def_extras": {"first_arg": "self"}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "copy of frozenset", "ret_type": {".class": "Instance", "args": [{".class": "TypeVarType", "fullname": "builtins._T", "id": 1, "name": "_T", "upper_bound": "builtins.object", "values": [], "variance": 0}], "type_ref": "builtins.frozenset"}, "variables": []}}}, "difference": {".class": "SymbolTableNode", "kind": "Mdef", "node": {".class": "FuncDef", "arg_kinds": [0, 2], "arg_names": ["self", "s"], "flags": [], "fullname": "builtins.frozenset.difference", "name": "difference", "type": {".class": "CallableType", "arg_kinds": [0, 2], "arg_names": ["self", "s"], "arg_types": [{".class": "Instance", "args": [{".class": "TypeVarType", "fullname": "builtins._T", "id": 1, "name": "_T", "upper_bound": "builtins.object", "values": [], "variance": 0}], "type_ref": "builtins.frozenset"}, {".class": "Instance", "args": ["builtins.object"], "type_ref": "typing.Iterable"}], "bound_args": [], "def_extras": {"first_arg": "self"}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "difference of frozenset", "ret_type": {".class": "Instance", "args": [{".class": "TypeVarType", "fullname": "builtins._T", "id": 1, "name": "_T", "upper_bound": "builtins.object", "values": [], "variance": 0}], "type_ref": "builtins.frozenset"}, "variables": []}}}, "intersection": {".class": "SymbolTableNode", "kind": "Mdef", "node": {".class": "FuncDef", "arg_kinds": [0, 2], "arg_names": ["self", "s"], "flags": [], "fullname": "builtins.frozenset.intersection", "name": "intersection", "type": {".class": "CallableType", "arg_kinds": [0, 2], "arg_names": ["self", "s"], "arg_types": [{".class": "Instance", "args": [{".class": "TypeVarType", "fullname": "builtins._T", "id": 1, "name": "_T", "upper_bound": "builtins.object", "values": [], "variance": 0}], "type_ref": "builtins.frozenset"}, {".class": "Instance", "args": ["builtins.object"], "type_ref": "typing.Iterable"}], "bound_args": [], "def_extras": {"first_arg": "self"}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "intersection of frozenset", "ret_type": {".class": "Instance", "args": [{".class": "TypeVarType", "fullname": "builtins._T", "id": 1, "name": "_T", "upper_bound": "builtins.object", "values": [], "variance": 0}], "type_ref": "builtins.frozenset"}, "variables": []}}}, "isdisjoint": {".class": "SymbolTableNode", "kind": "Mdef", "node": {".class": "FuncDef", "arg_kinds": [0, 0], "arg_names": ["self", "s"], "flags": [], "fullname": "builtins.frozenset.isdisjoint", "name": "isdisjoint", "type": {".class": "CallableType", "arg_kinds": [0, 0], "arg_names": ["self", "s"], "arg_types": [{".class": "Instance", "args": [{".class": "TypeVarType", "fullname": "builtins._T", "id": 1, "name": "_T", "upper_bound": "builtins.object", "values": [], "variance": 0}], "type_ref": "builtins.frozenset"}, {".class": "Instance", "args": [{".class": "TypeVarType", "fullname": "builtins._T", "id": 1, "name": "_T", "upper_bound": "builtins.object", "values": [], "variance": 0}], "type_ref": "typing.Iterable"}], "bound_args": [], "def_extras": {"first_arg": "self"}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "isdisjoint of frozenset", "ret_type": "builtins.bool", "variables": []}}}, "issubset": {".class": "SymbolTableNode", "kind": "Mdef", "node": {".class": "FuncDef", "arg_kinds": [0, 0], "arg_names": ["self", "s"], "flags": [], "fullname": "builtins.frozenset.issubset", "name": "issubset", "type": {".class": "CallableType", "arg_kinds": [0, 0], "arg_names": ["self", "s"], "arg_types": [{".class": "Instance", "args": [{".class": "TypeVarType", "fullname": "builtins._T", "id": 1, "name": "_T", "upper_bound": "builtins.object", "values": [], "variance": 0}], "type_ref": "builtins.frozenset"}, {".class": "Instance", "args": ["builtins.object"], "type_ref": "typing.Iterable"}], "bound_args": [], "def_extras": {"first_arg": "self"}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "issubset of frozenset", "ret_type": "builtins.bool", "variables": []}}}, "issuperset": {".class": "SymbolTableNode", "kind": "Mdef", "node": {".class": "FuncDef", "arg_kinds": [0, 0], "arg_names": ["self", "s"], "flags": [], "fullname": "builtins.frozenset.issuperset", "name": "issuperset", "type": {".class": "CallableType", "arg_kinds": [0, 0], "arg_names": ["self", "s"], "arg_types": [{".class": "Instance", "args": [{".class": "TypeVarType", "fullname": "builtins._T", "id": 1, "name": "_T", "upper_bound": "builtins.object", "values": [], "variance": 0}], "type_ref": "builtins.frozenset"}, {".class": "Instance", "args": ["builtins.object"], "type_ref": "typing.Iterable"}], "bound_args": [], "def_extras": {"first_arg": "self"}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "issuperset of frozenset", "ret_type": "builtins.bool", "variables": []}}}, "symmetric_difference": {".class": "SymbolTableNode", "kind": "Mdef", "node": {".class": "FuncDef", "arg_kinds": [0, 0], "arg_names": ["self", "s"], "flags": [], "fullname": "builtins.frozenset.symmetric_difference", "name": "symmetric_difference", "type": {".class": "CallableType", "arg_kinds": [0, 0], "arg_names": ["self", "s"], "arg_types": [{".class": "Instance", "args": [{".class": "TypeVarType", "fullname": "builtins._T", "id": 1, "name": "_T", "upper_bound": "builtins.object", "values": [], "variance": 0}], "type_ref": "builtins.frozenset"}, {".class": "Instance", "args": [{".class": "TypeVarType", "fullname": "builtins._T", "id": 1, "name": "_T", "upper_bound": "builtins.object", "values": [], "variance": 0}], "type_ref": "typing.Iterable"}], "bound_args": [], "def_extras": {"first_arg": "self"}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "symmetric_difference of frozenset", "ret_type": {".class": "Instance", "args": [{".class": "TypeVarType", "fullname": "builtins._T", "id": 1, "name": "_T", "upper_bound": "builtins.object", "values": [], "variance": 0}], "type_ref": "builtins.frozenset"}, "variables": []}}}, "union": {".class": "SymbolTableNode", "kind": "Mdef", "node": {".class": "FuncDef", "arg_kinds": [0, 2], "arg_names": ["self", "s"], "flags": [], "fullname": "builtins.frozenset.union", "name": "union", "type": {".class": "CallableType", "arg_kinds": [0, 2], "arg_names": ["self", "s"], "arg_types": [{".class": "Instance", "args": [{".class": "TypeVarType", "fullname": "builtins._T", "id": 1, "name": "_T", "upper_bound": "builtins.object", "values": [], "variance": 0}], "type_ref": "builtins.frozenset"}, {".class": "Instance", "args": [{".class": "TypeVarType", "fullname": "builtins._T", "id": 1, "name": "_T", "upper_bound": "builtins.object", "values": [], "variance": 0}], "type_ref": "typing.Iterable"}], "bound_args": [], "def_extras": {"first_arg": "self"}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "union of frozenset", "ret_type": {".class": "Instance", "args": [{".class": "TypeVarType", "fullname": "builtins._T", "id": 1, "name": "_T", "upper_bound": "builtins.object", "values": [], "variance": 0}], "type_ref": "builtins.frozenset"}, "variables": []}}}}, "tuple_type": null, "type_vars": ["_T"], "typeddict_type": null}}, "function": {".class": "SymbolTableNode", "kind": "Gdef", "node": {".class": "TypeInfo", "_promote": null, "abstract_attributes": [], "bases": ["builtins.object"], "declared_metaclass": null, "defn": {".class": "ClassDef", "fullname": "builtins.function", "name": "function", "type_vars": []}, "flags": [], "fullname": "builtins.function", "metaclass_type": null, "metadata": {}, "module_name": "builtins", "mro": ["builtins.function", "builtins.object"], "names": {".class": "SymbolTable", "__annotations__": {".class": "SymbolTableNode", "kind": "Mdef", "node": {".class": "Var", "flags": ["is_initialized_in_class"], "fullname": "builtins.function.__annotations__", "name": "__annotations__", "type": {".class": "Instance", "args": ["builtins.str", {".class": "AnyType", "missing_import_name": null, "source_any": null, "type_of_any": 2}], "type_ref": "builtins.dict"}}}, "__code__": {".class": "SymbolTableNode", "kind": "Mdef", "node": {".class": "Var", "flags": ["is_initialized_in_class"], "fullname": "builtins.function.__code__", "name": "__code__", "type": "types.CodeType"}}, "__module__": {".class": "SymbolTableNode", "kind": "Mdef", "node": {".class": "Var", "flags": ["is_initialized_in_class"], "fullname": "builtins.function.__module__", "name": "__module__", "type": "builtins.str"}}, "__name__": {".class": "SymbolTableNode", "kind": "Mdef", "node": {".class": "Var", "flags": ["is_initialized_in_class"], "fullname": "builtins.function.__name__", "name": "__name__", "type": "builtins.str"}}, "__qualname__": {".class": "SymbolTableNode", "kind": "Mdef", "node": {".class": "Var", "flags": ["is_initialized_in_class"], "fullname": "builtins.function.__qualname__", "name": "__qualname__", "type": "builtins.str"}}}, "tuple_type": null, "type_vars": [], "typeddict_type": null}}, "getattr": {".class": "SymbolTableNode", "kind": "Gdef", "node": {".class": "FuncDef", "arg_kinds": [0, 0, 1], "arg_names": ["o", "name", "default"], "flags": [], "fullname": "builtins.getattr", "name": "getattr", "type": {".class": "CallableType", "arg_kinds": [0, 0, 1], "arg_names": ["o", "name", "default"], "arg_types": [{".class": "AnyType", "missing_import_name": null, "source_any": null, "type_of_any": 2}, "builtins.str", {".class": "AnyType", "missing_import_name": null, "source_any": null, "type_of_any": 2}], "bound_args": [], "def_extras": {"first_arg": null}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "getattr", "ret_type": {".class": "AnyType", "missing_import_name": null, "source_any": null, "type_of_any": 2}, "variables": []}}}, "globals": {".class": "SymbolTableNode", "kind": "Gdef", "node": {".class": "FuncDef", "arg_kinds": [], "arg_names": [], "flags": [], "fullname": "builtins.globals", "name": "globals", "type": {".class": "CallableType", "arg_kinds": [], "arg_names": [], "arg_types": [], "bound_args": [], "def_extras": {"first_arg": null}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "globals", "ret_type": {".class": "Instance", "args": ["builtins.str", {".class": "AnyType", "missing_import_name": null, "source_any": null, "type_of_any": 2}], "type_ref": "builtins.dict"}, "variables": []}}}, "hasattr": {".class": "SymbolTableNode", "kind": "Gdef", "node": {".class": "FuncDef", "arg_kinds": [0, 0], "arg_names": ["o", "name"], "flags": [], "fullname": "builtins.hasattr", "name": "hasattr", "type": {".class": "CallableType", "arg_kinds": [0, 0], "arg_names": ["o", "name"], "arg_types": [{".class": "AnyType", "missing_import_name": null, "source_any": null, "type_of_any": 2}, "builtins.str"], "bound_args": [], "def_extras": {"first_arg": null}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "hasattr", "ret_type": "builtins.bool", "variables": []}}}, "hash": {".class": "SymbolTableNode", "kind": "Gdef", "node": {".class": "FuncDef", "arg_kinds": [0], "arg_names": ["o"], "flags": [], "fullname": "builtins.hash", "name": "hash", "type": {".class": "CallableType", "arg_kinds": [0], "arg_names": ["o"], "arg_types": ["builtins.object"], "bound_args": [], "def_extras": {"first_arg": null}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "hash", "ret_type": "builtins.int", "variables": []}}}, "help": {".class": "SymbolTableNode", "kind": "Gdef", "node": {".class": "FuncDef", "arg_kinds": [2, 4], "arg_names": ["args", "kwds"], "flags": ["is_conditional"], "fullname": "builtins.help", "name": "help", "type": {".class": "CallableType", "arg_kinds": [2, 4], "arg_names": ["args", "kwds"], "arg_types": [{".class": "AnyType", "missing_import_name": null, "source_any": null, "type_of_any": 2}, {".class": "AnyType", "missing_import_name": null, "source_any": null, "type_of_any": 2}], "bound_args": [], "def_extras": {"first_arg": null}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "help", "ret_type": {".class": "NoneTyp"}, "variables": []}}}, "hex": {".class": "SymbolTableNode", "kind": "Gdef", "node": {".class": "FuncDef", "arg_kinds": [0], "arg_names": ["i"], "flags": [], "fullname": "builtins.hex", "name": "hex", "type": {".class": "CallableType", "arg_kinds": [0], "arg_names": ["i"], "arg_types": ["builtins.int"], "bound_args": [], "def_extras": {"first_arg": null}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "hex", "ret_type": "builtins.str", "variables": []}}}, "id": {".class": "SymbolTableNode", "kind": "Gdef", "node": {".class": "FuncDef", "arg_kinds": [0], "arg_names": ["o"], "flags": [], "fullname": "builtins.id", "name": "id", "type": {".class": "CallableType", "arg_kinds": [0], "arg_names": ["o"], "arg_types": ["builtins.object"], "bound_args": [], "def_extras": {"first_arg": null}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "id", "ret_type": "builtins.int", "variables": []}}}, "input": {".class": "SymbolTableNode", "kind": "Gdef", "node": {".class": "FuncDef", "arg_kinds": [1], "arg_names": ["prompt"], "flags": ["is_conditional"], "fullname": "builtins.input", "name": "input", "type": {".class": "CallableType", "arg_kinds": [1], "arg_names": ["prompt"], "arg_types": [{".class": "AnyType", "missing_import_name": null, "source_any": null, "type_of_any": 2}], "bound_args": [], "def_extras": {"first_arg": null}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "input", "ret_type": "builtins.str", "variables": []}}}, "int": {".class": "SymbolTableNode", "kind": "Gdef", "node": {".class": "TypeInfo", "_promote": "builtins.float", "abstract_attributes": [], "bases": ["builtins.object"], "declared_metaclass": null, "defn": {".class": "ClassDef", "fullname": "builtins.int", "name": "int", "type_vars": []}, "flags": [], "fullname": "builtins.int", "metaclass_type": null, "metadata": {}, "module_name": "builtins", "mro": ["builtins.int", "builtins.object"], "names": {".class": "SymbolTable", "__abs__": {".class": "SymbolTableNode", "kind": "Mdef", "node": {".class": "FuncDef", "arg_kinds": [0], "arg_names": ["self"], "flags": [], "fullname": "builtins.int.__abs__", "name": "__abs__", "type": {".class": "CallableType", "arg_kinds": [0], "arg_names": [null], "arg_types": ["builtins.int"], "bound_args": [], "def_extras": {"first_arg": "self"}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "__abs__ of int", "ret_type": "builtins.int", "variables": []}}}, "__add__": {".class": "SymbolTableNode", "kind": "Mdef", "node": {".class": "FuncDef", "arg_kinds": [0, 0], "arg_names": ["self", "x"], "flags": [], "fullname": "builtins.int.__add__", "name": "__add__", "type": {".class": "CallableType", "arg_kinds": [0, 0], "arg_names": [null, null], "arg_types": ["builtins.int", "builtins.int"], "bound_args": [], "def_extras": {"first_arg": "self"}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "__add__ of int", "ret_type": "builtins.int", "variables": []}}}, "__and__": {".class": "SymbolTableNode", "kind": "Mdef", "node": {".class": "FuncDef", "arg_kinds": [0, 0], "arg_names": ["self", "n"], "flags": [], "fullname": "builtins.int.__and__", "name": "__and__", "type": {".class": "CallableType", "arg_kinds": [0, 0], "arg_names": [null, null], "arg_types": ["builtins.int", "builtins.int"], "bound_args": [], "def_extras": {"first_arg": "self"}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "__and__ of int", "ret_type": "builtins.int", "variables": []}}}, "__bool__": {".class": "SymbolTableNode", "kind": "Mdef", "node": {".class": "FuncDef", "arg_kinds": [0], "arg_names": ["self"], "flags": ["is_conditional"], "fullname": "builtins.int.__bool__", "name": "__bool__", "type": {".class": "CallableType", "arg_kinds": [0], "arg_names": ["self"], "arg_types": ["builtins.int"], "bound_args": [], "def_extras": {"first_arg": "self"}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "__bool__ of int", "ret_type": "builtins.bool", "variables": []}}}, "__divmod__": {".class": "SymbolTableNode", "kind": "Mdef", "node": {".class": "FuncDef", "arg_kinds": [0, 0], "arg_names": ["self", "x"], "flags": [], "fullname": "builtins.int.__divmod__", "name": "__divmod__", "type": {".class": "CallableType", "arg_kinds": [0, 0], "arg_names": [null, null], "arg_types": ["builtins.int", "builtins.int"], "bound_args": [], "def_extras": {"first_arg": "self"}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "__divmod__ of int", "ret_type": {".class": "TupleType", "fallback": {".class": "Instance", "args": [{".class": "AnyType", "missing_import_name": null, "source_any": null, "type_of_any": 6}], "type_ref": "builtins.tuple"}, "implicit": false, "items": ["builtins.int", "builtins.int"]}, "variables": []}}}, "__eq__": {".class": "SymbolTableNode", "kind": "Mdef", "node": {".class": "FuncDef", "arg_kinds": [0, 0], "arg_names": ["self", "x"], "flags": [], "fullname": "builtins.int.__eq__", "name": "__eq__", "type": {".class": "CallableType", "arg_kinds": [0, 0], "arg_names": [null, null], "arg_types": ["builtins.int", "builtins.object"], "bound_args": [], "def_extras": {"first_arg": "self"}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "__eq__ of int", "ret_type": "builtins.bool", "variables": []}}}, "__float__": {".class": "SymbolTableNode", "kind": "Mdef", "node": {".class": "FuncDef", "arg_kinds": [0], "arg_names": ["self"], "flags": [], "fullname": "builtins.int.__float__", "name": "__float__", "type": {".class": "CallableType", "arg_kinds": [0], "arg_names": [null], "arg_types": ["builtins.int"], "bound_args": [], "def_extras": {"first_arg": "self"}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "__float__ of int", "ret_type": "builtins.float", "variables": []}}}, "__floordiv__": {".class": "SymbolTableNode", "kind": "Mdef", "node": {".class": "FuncDef", "arg_kinds": [0, 0], "arg_names": ["self", "x"], "flags": [], "fullname": "builtins.int.__floordiv__", "name": "__floordiv__", "type": {".class": "CallableType", "arg_kinds": [0, 0], "arg_names": [null, null], "arg_types": ["builtins.int", "builtins.int"], "bound_args": [], "def_extras": {"first_arg": "self"}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "__floordiv__ of int", "ret_type": "builtins.int", "variables": []}}}, "__ge__": {".class": "SymbolTableNode", "kind": "Mdef", "node": {".class": "FuncDef", "arg_kinds": [0, 0], "arg_names": ["self", "x"], "flags": [], "fullname": "builtins.int.__ge__", "name": "__ge__", "type": {".class": "CallableType", "arg_kinds": [0, 0], "arg_names": [null, null], "arg_types": ["builtins.int", "builtins.int"], "bound_args": [], "def_extras": {"first_arg": "self"}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "__ge__ of int", "ret_type": "builtins.bool", "variables": []}}}, "__getnewargs__": {".class": "SymbolTableNode", "kind": "Mdef", "node": {".class": "FuncDef", "arg_kinds": [0], "arg_names": ["self"], "flags": [], "fullname": "builtins.int.__getnewargs__", "name": "__getnewargs__", "type": {".class": "CallableType", "arg_kinds": [0], "arg_names": ["self"], "arg_types": ["builtins.int"], "bound_args": [], "def_extras": {"first_arg": "self"}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "__getnewargs__ of int", "ret_type": {".class": "TupleType", "fallback": {".class": "Instance", "args": [{".class": "AnyType", "missing_import_name": null, "source_any": null, "type_of_any": 6}], "type_ref": "builtins.tuple"}, "implicit": false, "items": ["builtins.int"]}, "variables": []}}}, "__gt__": {".class": "SymbolTableNode", "kind": "Mdef", "node": {".class": "FuncDef", "arg_kinds": [0, 0], "arg_names": ["self", "x"], "flags": [], "fullname": "builtins.int.__gt__", "name": "__gt__", "type": {".class": "CallableType", "arg_kinds": [0, 0], "arg_names": [null, null], "arg_types": ["builtins.int", "builtins.int"], "bound_args": [], "def_extras": {"first_arg": "self"}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "__gt__ of int", "ret_type": "builtins.bool", "variables": []}}}, "__hash__": {".class": "SymbolTableNode", "kind": "Mdef", "node": {".class": "FuncDef", "arg_kinds": [0], "arg_names": ["self"], "flags": [], "fullname": "builtins.int.__hash__", "name": "__hash__", "type": {".class": "CallableType", "arg_kinds": [0], "arg_names": ["self"], "arg_types": ["builtins.int"], "bound_args": [], "def_extras": {"first_arg": "self"}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "__hash__ of int", "ret_type": "builtins.int", "variables": []}}}, "__index__": {".class": "SymbolTableNode", "kind": "Mdef", "node": {".class": "FuncDef", "arg_kinds": [0], "arg_names": ["self"], "flags": [], "fullname": "builtins.int.__index__", "name": "__index__", "type": {".class": "CallableType", "arg_kinds": [0], "arg_names": ["self"], "arg_types": ["builtins.int"], "bound_args": [], "def_extras": {"first_arg": "self"}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "__index__ of int", "ret_type": "builtins.int", "variables": []}}}, "__init__": {".class": "SymbolTableNode", "kind": "Mdef", "node": {".class": "OverloadedFuncDef", "flags": [], "fullname": "builtins.int.__init__", "impl": null, "items": [{".class": "Decorator", "func": {".class": "FuncDef", "arg_kinds": [0, 1], "arg_names": ["self", "x"], "flags": ["is_overload", "is_decorated"], "fullname": "builtins.int.__init__", "name": "__init__", "type": {".class": "CallableType", "arg_kinds": [0, 1], "arg_names": ["self", "x"], "arg_types": ["builtins.int", {".class": "UnionType", "items": ["builtins.str", "builtins.bytes", "typing.SupportsInt"]}], "bound_args": [], "def_extras": {"first_arg": "self"}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "__init__ of int", "ret_type": {".class": "NoneTyp"}, "variables": []}}, "is_overload": true, "var": {".class": "Var", "flags": [], "fullname": null, "name": "__init__", "type": null}}, {".class": "Decorator", "func": {".class": "FuncDef", "arg_kinds": [0, 0, 0], "arg_names": ["self", "x", "base"], "flags": ["is_overload", "is_decorated"], "fullname": "builtins.int.__init__", "name": "__init__", "type": {".class": "CallableType", "arg_kinds": [0, 0, 0], "arg_names": ["self", "x", "base"], "arg_types": ["builtins.int", {".class": "UnionType", "items": ["builtins.str", "builtins.bytes", "builtins.bytearray"]}, "builtins.int"], "bound_args": [], "def_extras": {"first_arg": "self"}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "__init__ of int", "ret_type": {".class": "NoneTyp"}, "variables": []}}, "is_overload": true, "var": {".class": "Var", "flags": [], "fullname": null, "name": "__init__", "type": null}}], "type": {".class": "Overloaded", "items": [{".class": "CallableType", "arg_kinds": [0, 1], "arg_names": ["self", "x"], "arg_types": ["builtins.int", {".class": "UnionType", "items": ["builtins.str", "builtins.bytes", "typing.SupportsInt"]}], "bound_args": [], "def_extras": {"first_arg": "self"}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "__init__ of int", "ret_type": {".class": "NoneTyp"}, "variables": []}, {".class": "CallableType", "arg_kinds": [0, 0, 0], "arg_names": ["self", "x", "base"], "arg_types": ["builtins.int", {".class": "UnionType", "items": ["builtins.str", "builtins.bytes", "builtins.bytearray"]}, "builtins.int"], "bound_args": [], "def_extras": {"first_arg": "self"}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "__init__ of int", "ret_type": {".class": "NoneTyp"}, "variables": []}]}}}, "__int__": {".class": "SymbolTableNode", "kind": "Mdef", "node": {".class": "FuncDef", "arg_kinds": [0], "arg_names": ["self"], "flags": [], "fullname": "builtins.int.__int__", "name": "__int__", "type": {".class": "CallableType", "arg_kinds": [0], "arg_names": [null], "arg_types": ["builtins.int"], "bound_args": [], "def_extras": {"first_arg": "self"}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "__int__ of int", "ret_type": "builtins.int", "variables": []}}}, "__invert__": {".class": "SymbolTableNode", "kind": "Mdef", "node": {".class": "FuncDef", "arg_kinds": [0], "arg_names": ["self"], "flags": [], "fullname": "builtins.int.__invert__", "name": "__invert__", "type": {".class": "CallableType", "arg_kinds": [0], "arg_names": [null], "arg_types": ["builtins.int"], "bound_args": [], "def_extras": {"first_arg": "self"}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "__invert__ of int", "ret_type": "builtins.int", "variables": []}}}, "__le__": {".class": "SymbolTableNode", "kind": "Mdef", "node": {".class": "FuncDef", "arg_kinds": [0, 0], "arg_names": ["self", "x"], "flags": [], "fullname": "builtins.int.__le__", "name": "__le__", "type": {".class": "CallableType", "arg_kinds": [0, 0], "arg_names": [null, null], "arg_types": ["builtins.int", "builtins.int"], "bound_args": [], "def_extras": {"first_arg": "self"}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "__le__ of int", "ret_type": "builtins.bool", "variables": []}}}, "__lshift__": {".class": "SymbolTableNode", "kind": "Mdef", "node": {".class": "FuncDef", "arg_kinds": [0, 0], "arg_names": ["self", "n"], "flags": [], "fullname": "builtins.int.__lshift__", "name": "__lshift__", "type": {".class": "CallableType", "arg_kinds": [0, 0], "arg_names": [null, null], "arg_types": ["builtins.int", "builtins.int"], "bound_args": [], "def_extras": {"first_arg": "self"}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "__lshift__ of int", "ret_type": "builtins.int", "variables": []}}}, "__lt__": {".class": "SymbolTableNode", "kind": "Mdef", "node": {".class": "FuncDef", "arg_kinds": [0, 0], "arg_names": ["self", "x"], "flags": [], "fullname": "builtins.int.__lt__", "name": "__lt__", "type": {".class": "CallableType", "arg_kinds": [0, 0], "arg_names": [null, null], "arg_types": ["builtins.int", "builtins.int"], "bound_args": [], "def_extras": {"first_arg": "self"}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "__lt__ of int", "ret_type": "builtins.bool", "variables": []}}}, "__mod__": {".class": "SymbolTableNode", "kind": "Mdef", "node": {".class": "FuncDef", "arg_kinds": [0, 0], "arg_names": ["self", "x"], "flags": [], "fullname": "builtins.int.__mod__", "name": "__mod__", "type": {".class": "CallableType", "arg_kinds": [0, 0], "arg_names": [null, null], "arg_types": ["builtins.int", "builtins.int"], "bound_args": [], "def_extras": {"first_arg": "self"}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "__mod__ of int", "ret_type": "builtins.int", "variables": []}}}, "__mul__": {".class": "SymbolTableNode", "kind": "Mdef", "node": {".class": "FuncDef", "arg_kinds": [0, 0], "arg_names": ["self", "x"], "flags": [], "fullname": "builtins.int.__mul__", "name": "__mul__", "type": {".class": "CallableType", "arg_kinds": [0, 0], "arg_names": [null, null], "arg_types": ["builtins.int", "builtins.int"], "bound_args": [], "def_extras": {"first_arg": "self"}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "__mul__ of int", "ret_type": "builtins.int", "variables": []}}}, "__ne__": {".class": "SymbolTableNode", "kind": "Mdef", "node": {".class": "FuncDef", "arg_kinds": [0, 0], "arg_names": ["self", "x"], "flags": [], "fullname": "builtins.int.__ne__", "name": "__ne__", "type": {".class": "CallableType", "arg_kinds": [0, 0], "arg_names": [null, null], "arg_types": ["builtins.int", "builtins.object"], "bound_args": [], "def_extras": {"first_arg": "self"}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "__ne__ of int", "ret_type": "builtins.bool", "variables": []}}}, "__neg__": {".class": "SymbolTableNode", "kind": "Mdef", "node": {".class": "FuncDef", "arg_kinds": [0], "arg_names": ["self"], "flags": [], "fullname": "builtins.int.__neg__", "name": "__neg__", "type": {".class": "CallableType", "arg_kinds": [0], "arg_names": [null], "arg_types": ["builtins.int"], "bound_args": [], "def_extras": {"first_arg": "self"}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "__neg__ of int", "ret_type": "builtins.int", "variables": []}}}, "__or__": {".class": "SymbolTableNode", "kind": "Mdef", "node": {".class": "FuncDef", "arg_kinds": [0, 0], "arg_names": ["self", "n"], "flags": [], "fullname": "builtins.int.__or__", "name": "__or__", "type": {".class": "CallableType", "arg_kinds": [0, 0], "arg_names": [null, null], "arg_types": ["builtins.int", "builtins.int"], "bound_args": [], "def_extras": {"first_arg": "self"}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "__or__ of int", "ret_type": "builtins.int", "variables": []}}}, "__pos__": {".class": "SymbolTableNode", "kind": "Mdef", "node": {".class": "FuncDef", "arg_kinds": [0], "arg_names": ["self"], "flags": [], "fullname": "builtins.int.__pos__", "name": "__pos__", "type": {".class": "CallableType", "arg_kinds": [0], "arg_names": [null], "arg_types": ["builtins.int"], "bound_args": [], "def_extras": {"first_arg": "self"}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "__pos__ of int", "ret_type": "builtins.int", "variables": []}}}, "__pow__": {".class": "SymbolTableNode", "kind": "Mdef", "node": {".class": "FuncDef", "arg_kinds": [0, 0], "arg_names": ["self", "x"], "flags": [], "fullname": "builtins.int.__pow__", "name": "__pow__", "type": {".class": "CallableType", "arg_kinds": [0, 0], "arg_names": [null, null], "arg_types": ["builtins.int", "builtins.int"], "bound_args": [], "def_extras": {"first_arg": "self"}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "__pow__ of int", "ret_type": {".class": "AnyType", "missing_import_name": null, "source_any": null, "type_of_any": 2}, "variables": []}}}, "__radd__": {".class": "SymbolTableNode", "kind": "Mdef", "node": {".class": "FuncDef", "arg_kinds": [0, 0], "arg_names": ["self", "x"], "flags": [], "fullname": "builtins.int.__radd__", "name": "__radd__", "type": {".class": "CallableType", "arg_kinds": [0, 0], "arg_names": [null, null], "arg_types": ["builtins.int", "builtins.int"], "bound_args": [], "def_extras": {"first_arg": "self"}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "__radd__ of int", "ret_type": "builtins.int", "variables": []}}}, "__rand__": {".class": "SymbolTableNode", "kind": "Mdef", "node": {".class": "FuncDef", "arg_kinds": [0, 0], "arg_names": ["self", "n"], "flags": [], "fullname": "builtins.int.__rand__", "name": "__rand__", "type": {".class": "CallableType", "arg_kinds": [0, 0], "arg_names": [null, null], "arg_types": ["builtins.int", "builtins.int"], "bound_args": [], "def_extras": {"first_arg": "self"}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "__rand__ of int", "ret_type": "builtins.int", "variables": []}}}, "__rdivmod__": {".class": "SymbolTableNode", "kind": "Mdef", "node": {".class": "FuncDef", "arg_kinds": [0, 0], "arg_names": ["self", "x"], "flags": [], "fullname": "builtins.int.__rdivmod__", "name": "__rdivmod__", "type": {".class": "CallableType", "arg_kinds": [0, 0], "arg_names": ["self", "x"], "arg_types": ["builtins.int", "builtins.int"], "bound_args": [], "def_extras": {"first_arg": "self"}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "__rdivmod__ of int", "ret_type": {".class": "TupleType", "fallback": {".class": "Instance", "args": [{".class": "AnyType", "missing_import_name": null, "source_any": null, "type_of_any": 6}], "type_ref": "builtins.tuple"}, "implicit": false, "items": ["builtins.int", "builtins.int"]}, "variables": []}}}, "__rfloordiv__": {".class": "SymbolTableNode", "kind": "Mdef", "node": {".class": "FuncDef", "arg_kinds": [0, 0], "arg_names": ["self", "x"], "flags": [], "fullname": "builtins.int.__rfloordiv__", "name": "__rfloordiv__", "type": {".class": "CallableType", "arg_kinds": [0, 0], "arg_names": [null, null], "arg_types": ["builtins.int", "builtins.int"], "bound_args": [], "def_extras": {"first_arg": "self"}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "__rfloordiv__ of int", "ret_type": "builtins.int", "variables": []}}}, "__rlshift__": {".class": "SymbolTableNode", "kind": "Mdef", "node": {".class": "FuncDef", "arg_kinds": [0, 0], "arg_names": ["self", "n"], "flags": [], "fullname": "builtins.int.__rlshift__", "name": "__rlshift__", "type": {".class": "CallableType", "arg_kinds": [0, 0], "arg_names": [null, null], "arg_types": ["builtins.int", "builtins.int"], "bound_args": [], "def_extras": {"first_arg": "self"}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "__rlshift__ of int", "ret_type": "builtins.int", "variables": []}}}, "__rmod__": {".class": "SymbolTableNode", "kind": "Mdef", "node": {".class": "FuncDef", "arg_kinds": [0, 0], "arg_names": ["self", "x"], "flags": [], "fullname": "builtins.int.__rmod__", "name": "__rmod__", "type": {".class": "CallableType", "arg_kinds": [0, 0], "arg_names": [null, null], "arg_types": ["builtins.int", "builtins.int"], "bound_args": [], "def_extras": {"first_arg": "self"}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "__rmod__ of int", "ret_type": "builtins.int", "variables": []}}}, "__rmul__": {".class": "SymbolTableNode", "kind": "Mdef", "node": {".class": "FuncDef", "arg_kinds": [0, 0], "arg_names": ["self", "x"], "flags": [], "fullname": "builtins.int.__rmul__", "name": "__rmul__", "type": {".class": "CallableType", "arg_kinds": [0, 0], "arg_names": [null, null], "arg_types": ["builtins.int", "builtins.int"], "bound_args": [], "def_extras": {"first_arg": "self"}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "__rmul__ of int", "ret_type": "builtins.int", "variables": []}}}, "__ror__": {".class": "SymbolTableNode", "kind": "Mdef", "node": {".class": "FuncDef", "arg_kinds": [0, 0], "arg_names": ["self", "n"], "flags": [], "fullname": "builtins.int.__ror__", "name": "__ror__", "type": {".class": "CallableType", "arg_kinds": [0, 0], "arg_names": [null, null], "arg_types": ["builtins.int", "builtins.int"], "bound_args": [], "def_extras": {"first_arg": "self"}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "__ror__ of int", "ret_type": "builtins.int", "variables": []}}}, "__round__": {".class": "SymbolTableNode", "kind": "Mdef", "node": {".class": "FuncDef", "arg_kinds": [0, 1], "arg_names": ["self", "ndigits"], "flags": ["is_conditional"], "fullname": "builtins.int.__round__", "name": "__round__", "type": {".class": "CallableType", "arg_kinds": [0, 1], "arg_names": ["self", "ndigits"], "arg_types": ["builtins.int", {".class": "UnionType", "items": ["builtins.int", {".class": "NoneTyp"}]}], "bound_args": [], "def_extras": {"first_arg": "self"}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "__round__ of int", "ret_type": "builtins.int", "variables": []}}}, "__rpow__": {".class": "SymbolTableNode", "kind": "Mdef", "node": {".class": "FuncDef", "arg_kinds": [0, 0], "arg_names": ["self", "x"], "flags": [], "fullname": "builtins.int.__rpow__", "name": "__rpow__", "type": {".class": "CallableType", "arg_kinds": [0, 0], "arg_names": [null, null], "arg_types": ["builtins.int", "builtins.int"], "bound_args": [], "def_extras": {"first_arg": "self"}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "__rpow__ of int", "ret_type": {".class": "AnyType", "missing_import_name": null, "source_any": null, "type_of_any": 2}, "variables": []}}}, "__rrshift__": {".class": "SymbolTableNode", "kind": "Mdef", "node": {".class": "FuncDef", "arg_kinds": [0, 0], "arg_names": ["self", "n"], "flags": [], "fullname": "builtins.int.__rrshift__", "name": "__rrshift__", "type": {".class": "CallableType", "arg_kinds": [0, 0], "arg_names": [null, null], "arg_types": ["builtins.int", "builtins.int"], "bound_args": [], "def_extras": {"first_arg": "self"}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "__rrshift__ of int", "ret_type": "builtins.int", "variables": []}}}, "__rshift__": {".class": "SymbolTableNode", "kind": "Mdef", "node": {".class": "FuncDef", "arg_kinds": [0, 0], "arg_names": ["self", "n"], "flags": [], "fullname": "builtins.int.__rshift__", "name": "__rshift__", "type": {".class": "CallableType", "arg_kinds": [0, 0], "arg_names": [null, null], "arg_types": ["builtins.int", "builtins.int"], "bound_args": [], "def_extras": {"first_arg": "self"}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "__rshift__ of int", "ret_type": "builtins.int", "variables": []}}}, "__rsub__": {".class": "SymbolTableNode", "kind": "Mdef", "node": {".class": "FuncDef", "arg_kinds": [0, 0], "arg_names": ["self", "x"], "flags": [], "fullname": "builtins.int.__rsub__", "name": "__rsub__", "type": {".class": "CallableType", "arg_kinds": [0, 0], "arg_names": [null, null], "arg_types": ["builtins.int", "builtins.int"], "bound_args": [], "def_extras": {"first_arg": "self"}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "__rsub__ of int", "ret_type": "builtins.int", "variables": []}}}, "__rtruediv__": {".class": "SymbolTableNode", "kind": "Mdef", "node": {".class": "FuncDef", "arg_kinds": [0, 0], "arg_names": ["self", "x"], "flags": [], "fullname": "builtins.int.__rtruediv__", "name": "__rtruediv__", "type": {".class": "CallableType", "arg_kinds": [0, 0], "arg_names": ["self", "x"], "arg_types": ["builtins.int", "builtins.int"], "bound_args": [], "def_extras": {"first_arg": "self"}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "__rtruediv__ of int", "ret_type": "builtins.float", "variables": []}}}, "__rxor__": {".class": "SymbolTableNode", "kind": "Mdef", "node": {".class": "FuncDef", "arg_kinds": [0, 0], "arg_names": ["self", "n"], "flags": [], "fullname": "builtins.int.__rxor__", "name": "__rxor__", "type": {".class": "CallableType", "arg_kinds": [0, 0], "arg_names": [null, null], "arg_types": ["builtins.int", "builtins.int"], "bound_args": [], "def_extras": {"first_arg": "self"}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "__rxor__ of int", "ret_type": "builtins.int", "variables": []}}}, "__str__": {".class": "SymbolTableNode", "kind": "Mdef", "node": {".class": "FuncDef", "arg_kinds": [0], "arg_names": ["self"], "flags": [], "fullname": "builtins.int.__str__", "name": "__str__", "type": {".class": "CallableType", "arg_kinds": [0], "arg_names": [null], "arg_types": ["builtins.int"], "bound_args": [], "def_extras": {"first_arg": "self"}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "__str__ of int", "ret_type": "builtins.str", "variables": []}}}, "__sub__": {".class": "SymbolTableNode", "kind": "Mdef", "node": {".class": "FuncDef", "arg_kinds": [0, 0], "arg_names": ["self", "x"], "flags": [], "fullname": "builtins.int.__sub__", "name": "__sub__", "type": {".class": "CallableType", "arg_kinds": [0, 0], "arg_names": [null, null], "arg_types": ["builtins.int", "builtins.int"], "bound_args": [], "def_extras": {"first_arg": "self"}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "__sub__ of int", "ret_type": "builtins.int", "variables": []}}}, "__truediv__": {".class": "SymbolTableNode", "kind": "Mdef", "node": {".class": "FuncDef", "arg_kinds": [0, 0], "arg_names": ["self", "x"], "flags": [], "fullname": "builtins.int.__truediv__", "name": "__truediv__", "type": {".class": "CallableType", "arg_kinds": [0, 0], "arg_names": ["self", "x"], "arg_types": ["builtins.int", "builtins.int"], "bound_args": [], "def_extras": {"first_arg": "self"}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "__truediv__ of int", "ret_type": "builtins.float", "variables": []}}}, "__xor__": {".class": "SymbolTableNode", "kind": "Mdef", "node": {".class": "FuncDef", "arg_kinds": [0, 0], "arg_names": ["self", "n"], "flags": [], "fullname": "builtins.int.__xor__", "name": "__xor__", "type": {".class": "CallableType", "arg_kinds": [0, 0], "arg_names": [null, null], "arg_types": ["builtins.int", "builtins.int"], "bound_args": [], "def_extras": {"first_arg": "self"}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "__xor__ of int", "ret_type": "builtins.int", "variables": []}}}, "bit_length": {".class": "SymbolTableNode", "kind": "Mdef", "node": {".class": "FuncDef", "arg_kinds": [0], "arg_names": ["self"], "flags": [], "fullname": "builtins.int.bit_length", "name": "bit_length", "type": {".class": "CallableType", "arg_kinds": [0], "arg_names": ["self"], "arg_types": ["builtins.int"], "bound_args": [], "def_extras": {"first_arg": "self"}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "bit_length of int", "ret_type": "builtins.int", "variables": []}}}, "conjugate": {".class": "SymbolTableNode", "kind": "Mdef", "node": {".class": "FuncDef", "arg_kinds": [0], "arg_names": ["self"], "flags": [], "fullname": "builtins.int.conjugate", "name": "conjugate", "type": {".class": "CallableType", "arg_kinds": [0], "arg_names": ["self"], "arg_types": ["builtins.int"], "bound_args": [], "def_extras": {"first_arg": "self"}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "conjugate of int", "ret_type": "builtins.int", "variables": []}}}, "denominator": {".class": "SymbolTableNode", "kind": "Mdef", "node": {".class": "Decorator", "func": {".class": "FuncDef", "arg_kinds": [0], "arg_names": ["self"], "flags": ["is_property", "is_decorated"], "fullname": "builtins.int.denominator", "name": "denominator", "type": {".class": "CallableType", "arg_kinds": [0], "arg_names": ["self"], "arg_types": ["builtins.int"], "bound_args": [], "def_extras": {"first_arg": "self"}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "denominator of int", "ret_type": "builtins.int", "variables": []}}, "is_overload": false, "var": {".class": "Var", "flags": ["is_initialized_in_class", "is_property"], "fullname": null, "name": "denominator", "type": {".class": "CallableType", "arg_kinds": [0], "arg_names": ["self"], "arg_types": ["builtins.int"], "bound_args": [], "def_extras": {"first_arg": "self"}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "denominator of int", "ret_type": "builtins.int", "variables": []}}}}, "from_bytes": {".class": "SymbolTableNode", "kind": "Mdef", "node": {".class": "Decorator", "func": {".class": "FuncDef", "arg_kinds": [0, 0, 0, 5], "arg_names": ["cls", "bytes", "byteorder", "signed"], "flags": ["is_class", "is_decorated", "is_conditional"], "fullname": "builtins.int.from_bytes", "name": "from_bytes", "type": {".class": "CallableType", "arg_kinds": [0, 0, 0, 5], "arg_names": ["cls", "bytes", "byteorder", "signed"], "arg_types": [{".class": "TypeType", "item": "builtins.int"}, {".class": "Instance", "args": ["builtins.int"], "type_ref": "typing.Sequence"}, "builtins.str", "builtins.bool"], "bound_args": [], "def_extras": {"first_arg": "cls"}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "from_bytes of int", "ret_type": "builtins.int", "variables": []}}, "is_overload": false, "var": {".class": "Var", "flags": ["is_initialized_in_class", "is_classmethod"], "fullname": null, "name": "from_bytes", "type": {".class": "CallableType", "arg_kinds": [0, 0, 0, 5], "arg_names": ["cls", "bytes", "byteorder", "signed"], "arg_types": [{".class": "TypeType", "item": "builtins.int"}, {".class": "Instance", "args": ["builtins.int"], "type_ref": "typing.Sequence"}, "builtins.str", "builtins.bool"], "bound_args": [], "def_extras": {"first_arg": "cls"}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "from_bytes of int", "ret_type": "builtins.int", "variables": []}}}}, "imag": {".class": "SymbolTableNode", "kind": "Mdef", "node": {".class": "Decorator", "func": {".class": "FuncDef", "arg_kinds": [0], "arg_names": ["self"], "flags": ["is_property", "is_decorated"], "fullname": "builtins.int.imag", "name": "imag", "type": {".class": "CallableType", "arg_kinds": [0], "arg_names": ["self"], "arg_types": ["builtins.int"], "bound_args": [], "def_extras": {"first_arg": "self"}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "imag of int", "ret_type": "builtins.int", "variables": []}}, "is_overload": false, "var": {".class": "Var", "flags": ["is_initialized_in_class", "is_property"], "fullname": null, "name": "imag", "type": {".class": "CallableType", "arg_kinds": [0], "arg_names": ["self"], "arg_types": ["builtins.int"], "bound_args": [], "def_extras": {"first_arg": "self"}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "imag of int", "ret_type": "builtins.int", "variables": []}}}}, "numerator": {".class": "SymbolTableNode", "kind": "Mdef", "node": {".class": "Decorator", "func": {".class": "FuncDef", "arg_kinds": [0], "arg_names": ["self"], "flags": ["is_property", "is_decorated"], "fullname": "builtins.int.numerator", "name": "numerator", "type": {".class": "CallableType", "arg_kinds": [0], "arg_names": ["self"], "arg_types": ["builtins.int"], "bound_args": [], "def_extras": {"first_arg": "self"}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "numerator of int", "ret_type": "builtins.int", "variables": []}}, "is_overload": false, "var": {".class": "Var", "flags": ["is_initialized_in_class", "is_property"], "fullname": null, "name": "numerator", "type": {".class": "CallableType", "arg_kinds": [0], "arg_names": ["self"], "arg_types": ["builtins.int"], "bound_args": [], "def_extras": {"first_arg": "self"}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "numerator of int", "ret_type": "builtins.int", "variables": []}}}}, "real": {".class": "SymbolTableNode", "kind": "Mdef", "node": {".class": "Decorator", "func": {".class": "FuncDef", "arg_kinds": [0], "arg_names": ["self"], "flags": ["is_property", "is_decorated"], "fullname": "builtins.int.real", "name": "real", "type": {".class": "CallableType", "arg_kinds": [0], "arg_names": ["self"], "arg_types": ["builtins.int"], "bound_args": [], "def_extras": {"first_arg": "self"}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "real of int", "ret_type": "builtins.int", "variables": []}}, "is_overload": false, "var": {".class": "Var", "flags": ["is_initialized_in_class", "is_property"], "fullname": null, "name": "real", "type": {".class": "CallableType", "arg_kinds": [0], "arg_names": ["self"], "arg_types": ["builtins.int"], "bound_args": [], "def_extras": {"first_arg": "self"}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "real of int", "ret_type": "builtins.int", "variables": []}}}}, "to_bytes": {".class": "SymbolTableNode", "kind": "Mdef", "node": {".class": "FuncDef", "arg_kinds": [0, 0, 0, 5], "arg_names": ["self", "length", "byteorder", "signed"], "flags": ["is_conditional"], "fullname": "builtins.int.to_bytes", "name": "to_bytes", "type": {".class": "CallableType", "arg_kinds": [0, 0, 0, 5], "arg_names": ["self", "length", "byteorder", "signed"], "arg_types": ["builtins.int", "builtins.int", "builtins.str", "builtins.bool"], "bound_args": [], "def_extras": {"first_arg": "self"}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "to_bytes of int", "ret_type": "builtins.bytes", "variables": []}}}}, "tuple_type": null, "type_vars": [], "typeddict_type": null}}, "isinstance": {".class": "SymbolTableNode", "kind": "Gdef", "node": {".class": "FuncDef", "arg_kinds": [0, 0], "arg_names": ["o", "t"], "flags": [], "fullname": "builtins.isinstance", "name": "isinstance", "type": {".class": "CallableType", "arg_kinds": [0, 0], "arg_names": ["o", "t"], "arg_types": ["builtins.object", {".class": "UnionType", "items": ["builtins.type", {".class": "Instance", "args": [{".class": "UnionType", "items": ["builtins.type", {".class": "Instance", "args": [{".class": "AnyType", "missing_import_name": null, "source_any": null, "type_of_any": 6}], "type_ref": "builtins.tuple"}]}], "type_ref": "builtins.tuple"}]}], "bound_args": [], "def_extras": {"first_arg": null}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "isinstance", "ret_type": "builtins.bool", "variables": []}}}, "issubclass": {".class": "SymbolTableNode", "kind": "Gdef", "node": {".class": "FuncDef", "arg_kinds": [0, 0], "arg_names": ["cls", "classinfo"], "flags": [], "fullname": "builtins.issubclass", "name": "issubclass", "type": {".class": "CallableType", "arg_kinds": [0, 0], "arg_names": ["cls", "classinfo"], "arg_types": ["builtins.type", {".class": "UnionType", "items": ["builtins.type", {".class": "Instance", "args": [{".class": "UnionType", "items": ["builtins.type", {".class": "Instance", "args": [{".class": "AnyType", "missing_import_name": null, "source_any": null, "type_of_any": 6}], "type_ref": "builtins.tuple"}]}], "type_ref": "builtins.tuple"}]}], "bound_args": [], "def_extras": {"first_arg": null}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "issubclass", "ret_type": "builtins.bool", "variables": []}}}, "iter": {".class": "SymbolTableNode", "kind": "Gdef", "node": {".class": "OverloadedFuncDef", "flags": [], "fullname": "builtins.iter", "impl": null, "items": [{".class": "Decorator", "func": {".class": "FuncDef", "arg_kinds": [0], "arg_names": ["iterable"], "flags": ["is_overload", "is_decorated"], "fullname": "builtins.iter", "name": "iter", "type": {".class": "CallableType", "arg_kinds": [0], "arg_names": ["iterable"], "arg_types": [{".class": "Instance", "args": [{".class": "TypeVarType", "fullname": "builtins._T", "id": -1, "name": "_T", "upper_bound": "builtins.object", "values": [], "variance": 0}], "type_ref": "typing.Iterable"}], "bound_args": [], "def_extras": {"first_arg": null}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "iter", "ret_type": {".class": "Instance", "args": [{".class": "TypeVarType", "fullname": "builtins._T", "id": -1, "name": "_T", "upper_bound": "builtins.object", "values": [], "variance": 0}], "type_ref": "typing.Iterator"}, "variables": [{".class": "TypeVarDef", "fullname": "builtins._T", "id": -1, "name": "_T", "upper_bound": "builtins.object", "values": [], "variance": 0}]}}, "is_overload": true, "var": {".class": "Var", "flags": [], "fullname": null, "name": "iter", "type": null}}, {".class": "Decorator", "func": {".class": "FuncDef", "arg_kinds": [0, 0], "arg_names": ["function", "sentinel"], "flags": ["is_overload", "is_decorated"], "fullname": "builtins.iter", "name": "iter", "type": {".class": "CallableType", "arg_kinds": [0, 0], "arg_names": ["function", "sentinel"], "arg_types": [{".class": "CallableType", "arg_kinds": [], "arg_names": [], "arg_types": [], "bound_args": [], "def_extras": {}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": null, "ret_type": {".class": "TypeVarType", "fullname": "builtins._T", "id": -1, "name": "_T", "upper_bound": "builtins.object", "values": [], "variance": 0}, "variables": []}, {".class": "TypeVarType", "fullname": "builtins._T", "id": -1, "name": "_T", "upper_bound": "builtins.object", "values": [], "variance": 0}], "bound_args": [], "def_extras": {"first_arg": null}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "iter", "ret_type": {".class": "Instance", "args": [{".class": "TypeVarType", "fullname": "builtins._T", "id": -1, "name": "_T", "upper_bound": "builtins.object", "values": [], "variance": 0}], "type_ref": "typing.Iterator"}, "variables": [{".class": "TypeVarDef", "fullname": "builtins._T", "id": -1, "name": "_T", "upper_bound": "builtins.object", "values": [], "variance": 0}]}}, "is_overload": true, "var": {".class": "Var", "flags": [], "fullname": null, "name": "iter", "type": null}}], "type": {".class": "Overloaded", "items": [{".class": "CallableType", "arg_kinds": [0], "arg_names": ["iterable"], "arg_types": [{".class": "Instance", "args": [{".class": "TypeVarType", "fullname": "builtins._T", "id": -1, "name": "_T", "upper_bound": "builtins.object", "values": [], "variance": 0}], "type_ref": "typing.Iterable"}], "bound_args": [], "def_extras": {"first_arg": null}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "iter", "ret_type": {".class": "Instance", "args": [{".class": "TypeVarType", "fullname": "builtins._T", "id": -1, "name": "_T", "upper_bound": "builtins.object", "values": [], "variance": 0}], "type_ref": "typing.Iterator"}, "variables": [{".class": "TypeVarDef", "fullname": "builtins._T", "id": -1, "name": "_T", "upper_bound": "builtins.object", "values": [], "variance": 0}]}, {".class": "CallableType", "arg_kinds": [0, 0], "arg_names": ["function", "sentinel"], "arg_types": [{".class": "CallableType", "arg_kinds": [], "arg_names": [], "arg_types": [], "bound_args": [], "def_extras": {}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": null, "ret_type": {".class": "TypeVarType", "fullname": "builtins._T", "id": -1, "name": "_T", "upper_bound": "builtins.object", "values": [], "variance": 0}, "variables": []}, {".class": "TypeVarType", "fullname": "builtins._T", "id": -1, "name": "_T", "upper_bound": "builtins.object", "values": [], "variance": 0}], "bound_args": [], "def_extras": {"first_arg": null}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "iter", "ret_type": {".class": "Instance", "args": [{".class": "TypeVarType", "fullname": "builtins._T", "id": -1, "name": "_T", "upper_bound": "builtins.object", "values": [], "variance": 0}], "type_ref": "typing.Iterator"}, "variables": [{".class": "TypeVarDef", "fullname": "builtins._T", "id": -1, "name": "_T", "upper_bound": "builtins.object", "values": [], "variance": 0}]}]}}}, "len": {".class": "SymbolTableNode", "kind": "Gdef", "node": {".class": "FuncDef", "arg_kinds": [0], "arg_names": ["o"], "flags": [], "fullname": "builtins.len", "name": "len", "type": {".class": "CallableType", "arg_kinds": [0], "arg_names": ["o"], "arg_types": ["typing.Sized"], "bound_args": [], "def_extras": {"first_arg": null}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "len", "ret_type": "builtins.int", "variables": []}}}, "license": {".class": "SymbolTableNode", "kind": "Gdef", "node": {".class": "FuncDef", "arg_kinds": [], "arg_names": [], "flags": ["is_conditional"], "fullname": "builtins.license", "name": "license", "type": {".class": "CallableType", "arg_kinds": [], "arg_names": [], "arg_types": [], "bound_args": [], "def_extras": {"first_arg": null}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "license", "ret_type": {".class": "NoneTyp"}, "variables": []}}}, "list": {".class": "SymbolTableNode", "kind": "Gdef", "node": {".class": "TypeInfo", "_promote": null, "abstract_attributes": [], "bases": [{".class": "Instance", "args": [{".class": "TypeVarType", "fullname": "builtins._T", "id": 1, "name": "_T", "upper_bound": "builtins.object", "values": [], "variance": 0}], "type_ref": "typing.MutableSequence"}], "declared_metaclass": null, "defn": {".class": "ClassDef", "fullname": "builtins.list", "name": "list", "type_vars": [{".class": "TypeVarDef", "fullname": "builtins._T", "id": 1, "name": "_T", "upper_bound": "builtins.object", "values": [], "variance": 0}]}, "flags": [], "fullname": "builtins.list", "metaclass_type": "abc.ABCMeta", "metadata": {}, "module_name": "builtins", "mro": ["builtins.list", "typing.MutableSequence", "typing.Sequence", "typing.Collection", "typing.Iterable", "typing.Container", "typing.Reversible", "builtins.object"], "names": {".class": "SymbolTable", "__add__": {".class": "SymbolTableNode", "kind": "Mdef", "node": {".class": "FuncDef", "arg_kinds": [0, 0], "arg_names": ["self", "x"], "flags": [], "fullname": "builtins.list.__add__", "name": "__add__", "type": {".class": "CallableType", "arg_kinds": [0, 0], "arg_names": [null, null], "arg_types": [{".class": "Instance", "args": [{".class": "TypeVarType", "fullname": "builtins._T", "id": 1, "name": "_T", "upper_bound": "builtins.object", "values": [], "variance": 0}], "type_ref": "builtins.list"}, {".class": "Instance", "args": [{".class": "TypeVarType", "fullname": "builtins._T", "id": 1, "name": "_T", "upper_bound": "builtins.object", "values": [], "variance": 0}], "type_ref": "builtins.list"}], "bound_args": [], "def_extras": {"first_arg": "self"}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "__add__ of list", "ret_type": {".class": "Instance", "args": [{".class": "TypeVarType", "fullname": "builtins._T", "id": 1, "name": "_T", "upper_bound": "builtins.object", "values": [], "variance": 0}], "type_ref": "builtins.list"}, "variables": []}}}, "__contains__": {".class": "SymbolTableNode", "kind": "Mdef", "node": {".class": "FuncDef", "arg_kinds": [0, 0], "arg_names": ["self", "o"], "flags": [], "fullname": "builtins.list.__contains__", "name": "__contains__", "type": {".class": "CallableType", "arg_kinds": [0, 0], "arg_names": [null, null], "arg_types": [{".class": "Instance", "args": [{".class": "TypeVarType", "fullname": "builtins._T", "id": 1, "name": "_T", "upper_bound": "builtins.object", "values": [], "variance": 0}], "type_ref": "builtins.list"}, "builtins.object"], "bound_args": [], "def_extras": {"first_arg": "self"}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "__contains__ of list", "ret_type": "builtins.bool", "variables": []}}}, "__delitem__": {".class": "SymbolTableNode", "kind": "Mdef", "node": {".class": "FuncDef", "arg_kinds": [0, 0], "arg_names": ["self", "i"], "flags": [], "fullname": "builtins.list.__delitem__", "name": "__delitem__", "type": {".class": "CallableType", "arg_kinds": [0, 0], "arg_names": [null, null], "arg_types": [{".class": "Instance", "args": [{".class": "TypeVarType", "fullname": "builtins._T", "id": 1, "name": "_T", "upper_bound": "builtins.object", "values": [], "variance": 0}], "type_ref": "builtins.list"}, {".class": "UnionType", "items": ["builtins.int", "builtins.slice"]}], "bound_args": [], "def_extras": {"first_arg": "self"}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "__delitem__ of list", "ret_type": {".class": "NoneTyp"}, "variables": []}}}, "__ge__": {".class": "SymbolTableNode", "kind": "Mdef", "node": {".class": "FuncDef", "arg_kinds": [0, 0], "arg_names": ["self", "x"], "flags": [], "fullname": "builtins.list.__ge__", "name": "__ge__", "type": {".class": "CallableType", "arg_kinds": [0, 0], "arg_names": [null, null], "arg_types": [{".class": "Instance", "args": [{".class": "TypeVarType", "fullname": "builtins._T", "id": 1, "name": "_T", "upper_bound": "builtins.object", "values": [], "variance": 0}], "type_ref": "builtins.list"}, {".class": "Instance", "args": [{".class": "TypeVarType", "fullname": "builtins._T", "id": 1, "name": "_T", "upper_bound": "builtins.object", "values": [], "variance": 0}], "type_ref": "builtins.list"}], "bound_args": [], "def_extras": {"first_arg": "self"}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "__ge__ of list", "ret_type": "builtins.bool", "variables": []}}}, "__getitem__": {".class": "SymbolTableNode", "kind": "Mdef", "node": {".class": "OverloadedFuncDef", "flags": [], "fullname": "builtins.list.__getitem__", "impl": null, "items": [{".class": "Decorator", "func": {".class": "FuncDef", "arg_kinds": [0, 0], "arg_names": ["self", "i"], "flags": ["is_overload", "is_decorated"], "fullname": "builtins.list.__getitem__", "name": "__getitem__", "type": {".class": "CallableType", "arg_kinds": [0, 0], "arg_names": [null, null], "arg_types": [{".class": "Instance", "args": [{".class": "TypeVarType", "fullname": "builtins._T", "id": 1, "name": "_T", "upper_bound": "builtins.object", "values": [], "variance": 0}], "type_ref": "builtins.list"}, "builtins.int"], "bound_args": [], "def_extras": {"first_arg": "self"}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "__getitem__ of list", "ret_type": {".class": "TypeVarType", "fullname": "builtins._T", "id": 1, "name": "_T", "upper_bound": "builtins.object", "values": [], "variance": 0}, "variables": []}}, "is_overload": true, "var": {".class": "Var", "flags": [], "fullname": null, "name": "__getitem__", "type": null}}, {".class": "Decorator", "func": {".class": "FuncDef", "arg_kinds": [0, 0], "arg_names": ["self", "s"], "flags": ["is_overload", "is_decorated"], "fullname": "builtins.list.__getitem__", "name": "__getitem__", "type": {".class": "CallableType", "arg_kinds": [0, 0], "arg_names": [null, null], "arg_types": [{".class": "Instance", "args": [{".class": "TypeVarType", "fullname": "builtins._T", "id": 1, "name": "_T", "upper_bound": "builtins.object", "values": [], "variance": 0}], "type_ref": "builtins.list"}, "builtins.slice"], "bound_args": [], "def_extras": {"first_arg": "self"}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "__getitem__ of list", "ret_type": {".class": "Instance", "args": [{".class": "TypeVarType", "fullname": "builtins._T", "id": 1, "name": "_T", "upper_bound": "builtins.object", "values": [], "variance": 0}], "type_ref": "builtins.list"}, "variables": []}}, "is_overload": true, "var": {".class": "Var", "flags": [], "fullname": null, "name": "__getitem__", "type": null}}], "type": {".class": "Overloaded", "items": [{".class": "CallableType", "arg_kinds": [0, 0], "arg_names": [null, null], "arg_types": [{".class": "Instance", "args": [{".class": "TypeVarType", "fullname": "builtins._T", "id": 1, "name": "_T", "upper_bound": "builtins.object", "values": [], "variance": 0}], "type_ref": "builtins.list"}, "builtins.int"], "bound_args": [], "def_extras": {"first_arg": "self"}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "__getitem__ of list", "ret_type": {".class": "TypeVarType", "fullname": "builtins._T", "id": 1, "name": "_T", "upper_bound": "builtins.object", "values": [], "variance": 0}, "variables": []}, {".class": "CallableType", "arg_kinds": [0, 0], "arg_names": [null, null], "arg_types": [{".class": "Instance", "args": [{".class": "TypeVarType", "fullname": "builtins._T", "id": 1, "name": "_T", "upper_bound": "builtins.object", "values": [], "variance": 0}], "type_ref": "builtins.list"}, "builtins.slice"], "bound_args": [], "def_extras": {"first_arg": "self"}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "__getitem__ of list", "ret_type": {".class": "Instance", "args": [{".class": "TypeVarType", "fullname": "builtins._T", "id": 1, "name": "_T", "upper_bound": "builtins.object", "values": [], "variance": 0}], "type_ref": "builtins.list"}, "variables": []}]}}}, "__gt__": {".class": "SymbolTableNode", "kind": "Mdef", "node": {".class": "FuncDef", "arg_kinds": [0, 0], "arg_names": ["self", "x"], "flags": [], "fullname": "builtins.list.__gt__", "name": "__gt__", "type": {".class": "CallableType", "arg_kinds": [0, 0], "arg_names": [null, null], "arg_types": [{".class": "Instance", "args": [{".class": "TypeVarType", "fullname": "builtins._T", "id": 1, "name": "_T", "upper_bound": "builtins.object", "values": [], "variance": 0}], "type_ref": "builtins.list"}, {".class": "Instance", "args": [{".class": "TypeVarType", "fullname": "builtins._T", "id": 1, "name": "_T", "upper_bound": "builtins.object", "values": [], "variance": 0}], "type_ref": "builtins.list"}], "bound_args": [], "def_extras": {"first_arg": "self"}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "__gt__ of list", "ret_type": "builtins.bool", "variables": []}}}, "__hash__": {".class": "SymbolTableNode", "kind": "Mdef", "node": {".class": "FuncDef", "arg_kinds": [0], "arg_names": ["self"], "flags": [], "fullname": "builtins.list.__hash__", "name": "__hash__", "type": {".class": "CallableType", "arg_kinds": [0], "arg_names": ["self"], "arg_types": [{".class": "Instance", "args": [{".class": "TypeVarType", "fullname": "builtins._T", "id": 1, "name": "_T", "upper_bound": "builtins.object", "values": [], "variance": 0}], "type_ref": "builtins.list"}], "bound_args": [], "def_extras": {"first_arg": "self"}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "__hash__ of list", "ret_type": "builtins.int", "variables": []}}}, "__iadd__": {".class": "SymbolTableNode", "kind": "Mdef", "node": {".class": "FuncDef", "arg_kinds": [0, 0], "arg_names": ["self", "x"], "flags": [], "fullname": "builtins.list.__iadd__", "name": "__iadd__", "type": {".class": "CallableType", "arg_kinds": [0, 0], "arg_names": [null, null], "arg_types": [{".class": "TypeVarType", "fullname": "builtins._S", "id": -1, "name": "_S", "upper_bound": "builtins.object", "values": [], "variance": 0}, {".class": "Instance", "args": [{".class": "TypeVarType", "fullname": "builtins._T", "id": 1, "name": "_T", "upper_bound": "builtins.object", "values": [], "variance": 0}], "type_ref": "typing.Iterable"}], "bound_args": [], "def_extras": {"first_arg": "self"}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "__iadd__ of list", "ret_type": {".class": "TypeVarType", "fullname": "builtins._S", "id": -1, "name": "_S", "upper_bound": "builtins.object", "values": [], "variance": 0}, "variables": [{".class": "TypeVarDef", "fullname": "builtins._S", "id": -1, "name": "_S", "upper_bound": "builtins.object", "values": [], "variance": 0}]}}}, "__imul__": {".class": "SymbolTableNode", "kind": "Mdef", "node": {".class": "FuncDef", "arg_kinds": [0, 0], "arg_names": ["self", "n"], "flags": ["is_conditional"], "fullname": "builtins.list.__imul__", "name": "__imul__", "type": {".class": "CallableType", "arg_kinds": [0, 0], "arg_names": [null, null], "arg_types": [{".class": "TypeVarType", "fullname": "builtins._S", "id": -1, "name": "_S", "upper_bound": "builtins.object", "values": [], "variance": 0}, "builtins.int"], "bound_args": [], "def_extras": {"first_arg": "self"}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "__imul__ of list", "ret_type": {".class": "TypeVarType", "fullname": "builtins._S", "id": -1, "name": "_S", "upper_bound": "builtins.object", "values": [], "variance": 0}, "variables": [{".class": "TypeVarDef", "fullname": "builtins._S", "id": -1, "name": "_S", "upper_bound": "builtins.object", "values": [], "variance": 0}]}}}, "__init__": {".class": "SymbolTableNode", "kind": "Mdef", "node": {".class": "OverloadedFuncDef", "flags": [], "fullname": "builtins.list.__init__", "impl": null, "items": [{".class": "Decorator", "func": {".class": "FuncDef", "arg_kinds": [0], "arg_names": ["self"], "flags": ["is_overload", "is_decorated"], "fullname": "builtins.list.__init__", "name": "__init__", "type": {".class": "CallableType", "arg_kinds": [0], "arg_names": ["self"], "arg_types": [{".class": "Instance", "args": [{".class": "TypeVarType", "fullname": "builtins._T", "id": 1, "name": "_T", "upper_bound": "builtins.object", "values": [], "variance": 0}], "type_ref": "builtins.list"}], "bound_args": [], "def_extras": {"first_arg": "self"}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "__init__ of list", "ret_type": {".class": "NoneTyp"}, "variables": []}}, "is_overload": true, "var": {".class": "Var", "flags": [], "fullname": null, "name": "__init__", "type": null}}, {".class": "Decorator", "func": {".class": "FuncDef", "arg_kinds": [0, 0], "arg_names": ["self", "iterable"], "flags": ["is_overload", "is_decorated"], "fullname": "builtins.list.__init__", "name": "__init__", "type": {".class": "CallableType", "arg_kinds": [0, 0], "arg_names": ["self", "iterable"], "arg_types": [{".class": "Instance", "args": [{".class": "TypeVarType", "fullname": "builtins._T", "id": 1, "name": "_T", "upper_bound": "builtins.object", "values": [], "variance": 0}], "type_ref": "builtins.list"}, {".class": "Instance", "args": [{".class": "TypeVarType", "fullname": "builtins._T", "id": 1, "name": "_T", "upper_bound": "builtins.object", "values": [], "variance": 0}], "type_ref": "typing.Iterable"}], "bound_args": [], "def_extras": {"first_arg": "self"}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "__init__ of list", "ret_type": {".class": "NoneTyp"}, "variables": []}}, "is_overload": true, "var": {".class": "Var", "flags": [], "fullname": null, "name": "__init__", "type": null}}], "type": {".class": "Overloaded", "items": [{".class": "CallableType", "arg_kinds": [0], "arg_names": ["self"], "arg_types": [{".class": "Instance", "args": [{".class": "TypeVarType", "fullname": "builtins._T", "id": 1, "name": "_T", "upper_bound": "builtins.object", "values": [], "variance": 0}], "type_ref": "builtins.list"}], "bound_args": [], "def_extras": {"first_arg": "self"}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "__init__ of list", "ret_type": {".class": "NoneTyp"}, "variables": []}, {".class": "CallableType", "arg_kinds": [0, 0], "arg_names": ["self", "iterable"], "arg_types": [{".class": "Instance", "args": [{".class": "TypeVarType", "fullname": "builtins._T", "id": 1, "name": "_T", "upper_bound": "builtins.object", "values": [], "variance": 0}], "type_ref": "builtins.list"}, {".class": "Instance", "args": [{".class": "TypeVarType", "fullname": "builtins._T", "id": 1, "name": "_T", "upper_bound": "builtins.object", "values": [], "variance": 0}], "type_ref": "typing.Iterable"}], "bound_args": [], "def_extras": {"first_arg": "self"}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "__init__ of list", "ret_type": {".class": "NoneTyp"}, "variables": []}]}}}, "__iter__": {".class": "SymbolTableNode", "kind": "Mdef", "node": {".class": "FuncDef", "arg_kinds": [0], "arg_names": ["self"], "flags": [], "fullname": "builtins.list.__iter__", "name": "__iter__", "type": {".class": "CallableType", "arg_kinds": [0], "arg_names": [null], "arg_types": [{".class": "Instance", "args": [{".class": "TypeVarType", "fullname": "builtins._T", "id": 1, "name": "_T", "upper_bound": "builtins.object", "values": [], "variance": 0}], "type_ref": "builtins.list"}], "bound_args": [], "def_extras": {"first_arg": "self"}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "__iter__ of list", "ret_type": {".class": "Instance", "args": [{".class": "TypeVarType", "fullname": "builtins._T", "id": 1, "name": "_T", "upper_bound": "builtins.object", "values": [], "variance": 0}], "type_ref": "typing.Iterator"}, "variables": []}}}, "__le__": {".class": "SymbolTableNode", "kind": "Mdef", "node": {".class": "FuncDef", "arg_kinds": [0, 0], "arg_names": ["self", "x"], "flags": [], "fullname": "builtins.list.__le__", "name": "__le__", "type": {".class": "CallableType", "arg_kinds": [0, 0], "arg_names": [null, null], "arg_types": [{".class": "Instance", "args": [{".class": "TypeVarType", "fullname": "builtins._T", "id": 1, "name": "_T", "upper_bound": "builtins.object", "values": [], "variance": 0}], "type_ref": "builtins.list"}, {".class": "Instance", "args": [{".class": "TypeVarType", "fullname": "builtins._T", "id": 1, "name": "_T", "upper_bound": "builtins.object", "values": [], "variance": 0}], "type_ref": "builtins.list"}], "bound_args": [], "def_extras": {"first_arg": "self"}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "__le__ of list", "ret_type": "builtins.bool", "variables": []}}}, "__len__": {".class": "SymbolTableNode", "kind": "Mdef", "node": {".class": "FuncDef", "arg_kinds": [0], "arg_names": ["self"], "flags": [], "fullname": "builtins.list.__len__", "name": "__len__", "type": {".class": "CallableType", "arg_kinds": [0], "arg_names": [null], "arg_types": [{".class": "Instance", "args": [{".class": "TypeVarType", "fullname": "builtins._T", "id": 1, "name": "_T", "upper_bound": "builtins.object", "values": [], "variance": 0}], "type_ref": "builtins.list"}], "bound_args": [], "def_extras": {"first_arg": "self"}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "__len__ of list", "ret_type": "builtins.int", "variables": []}}}, "__lt__": {".class": "SymbolTableNode", "kind": "Mdef", "node": {".class": "FuncDef", "arg_kinds": [0, 0], "arg_names": ["self", "x"], "flags": [], "fullname": "builtins.list.__lt__", "name": "__lt__", "type": {".class": "CallableType", "arg_kinds": [0, 0], "arg_names": [null, null], "arg_types": [{".class": "Instance", "args": [{".class": "TypeVarType", "fullname": "builtins._T", "id": 1, "name": "_T", "upper_bound": "builtins.object", "values": [], "variance": 0}], "type_ref": "builtins.list"}, {".class": "Instance", "args": [{".class": "TypeVarType", "fullname": "builtins._T", "id": 1, "name": "_T", "upper_bound": "builtins.object", "values": [], "variance": 0}], "type_ref": "builtins.list"}], "bound_args": [], "def_extras": {"first_arg": "self"}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "__lt__ of list", "ret_type": "builtins.bool", "variables": []}}}, "__mul__": {".class": "SymbolTableNode", "kind": "Mdef", "node": {".class": "FuncDef", "arg_kinds": [0, 0], "arg_names": ["self", "n"], "flags": [], "fullname": "builtins.list.__mul__", "name": "__mul__", "type": {".class": "CallableType", "arg_kinds": [0, 0], "arg_names": [null, null], "arg_types": [{".class": "Instance", "args": [{".class": "TypeVarType", "fullname": "builtins._T", "id": 1, "name": "_T", "upper_bound": "builtins.object", "values": [], "variance": 0}], "type_ref": "builtins.list"}, "builtins.int"], "bound_args": [], "def_extras": {"first_arg": "self"}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "__mul__ of list", "ret_type": {".class": "Instance", "args": [{".class": "TypeVarType", "fullname": "builtins._T", "id": 1, "name": "_T", "upper_bound": "builtins.object", "values": [], "variance": 0}], "type_ref": "builtins.list"}, "variables": []}}}, "__reversed__": {".class": "SymbolTableNode", "kind": "Mdef", "node": {".class": "FuncDef", "arg_kinds": [0], "arg_names": ["self"], "flags": [], "fullname": "builtins.list.__reversed__", "name": "__reversed__", "type": {".class": "CallableType", "arg_kinds": [0], "arg_names": [null], "arg_types": [{".class": "Instance", "args": [{".class": "TypeVarType", "fullname": "builtins._T", "id": 1, "name": "_T", "upper_bound": "builtins.object", "values": [], "variance": 0}], "type_ref": "builtins.list"}], "bound_args": [], "def_extras": {"first_arg": "self"}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "__reversed__ of list", "ret_type": {".class": "Instance", "args": [{".class": "TypeVarType", "fullname": "builtins._T", "id": 1, "name": "_T", "upper_bound": "builtins.object", "values": [], "variance": 0}], "type_ref": "typing.Iterator"}, "variables": []}}}, "__rmul__": {".class": "SymbolTableNode", "kind": "Mdef", "node": {".class": "FuncDef", "arg_kinds": [0, 0], "arg_names": ["self", "n"], "flags": [], "fullname": "builtins.list.__rmul__", "name": "__rmul__", "type": {".class": "CallableType", "arg_kinds": [0, 0], "arg_names": [null, null], "arg_types": [{".class": "Instance", "args": [{".class": "TypeVarType", "fullname": "builtins._T", "id": 1, "name": "_T", "upper_bound": "builtins.object", "values": [], "variance": 0}], "type_ref": "builtins.list"}, "builtins.int"], "bound_args": [], "def_extras": {"first_arg": "self"}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "__rmul__ of list", "ret_type": {".class": "Instance", "args": [{".class": "TypeVarType", "fullname": "builtins._T", "id": 1, "name": "_T", "upper_bound": "builtins.object", "values": [], "variance": 0}], "type_ref": "builtins.list"}, "variables": []}}}, "__setitem__": {".class": "SymbolTableNode", "kind": "Mdef", "node": {".class": "OverloadedFuncDef", "flags": [], "fullname": "builtins.list.__setitem__", "impl": null, "items": [{".class": "Decorator", "func": {".class": "FuncDef", "arg_kinds": [0, 0, 0], "arg_names": ["self", "i", "o"], "flags": ["is_overload", "is_decorated"], "fullname": "builtins.list.__setitem__", "name": "__setitem__", "type": {".class": "CallableType", "arg_kinds": [0, 0, 0], "arg_names": [null, null, null], "arg_types": [{".class": "Instance", "args": [{".class": "TypeVarType", "fullname": "builtins._T", "id": 1, "name": "_T", "upper_bound": "builtins.object", "values": [], "variance": 0}], "type_ref": "builtins.list"}, "builtins.int", {".class": "TypeVarType", "fullname": "builtins._T", "id": 1, "name": "_T", "upper_bound": "builtins.object", "values": [], "variance": 0}], "bound_args": [], "def_extras": {"first_arg": "self"}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "__setitem__ of list", "ret_type": {".class": "NoneTyp"}, "variables": []}}, "is_overload": true, "var": {".class": "Var", "flags": [], "fullname": null, "name": "__setitem__", "type": null}}, {".class": "Decorator", "func": {".class": "FuncDef", "arg_kinds": [0, 0, 0], "arg_names": ["self", "s", "o"], "flags": ["is_overload", "is_decorated"], "fullname": "builtins.list.__setitem__", "name": "__setitem__", "type": {".class": "CallableType", "arg_kinds": [0, 0, 0], "arg_names": [null, null, null], "arg_types": [{".class": "Instance", "args": [{".class": "TypeVarType", "fullname": "builtins._T", "id": 1, "name": "_T", "upper_bound": "builtins.object", "values": [], "variance": 0}], "type_ref": "builtins.list"}, "builtins.slice", {".class": "Instance", "args": [{".class": "TypeVarType", "fullname": "builtins._T", "id": 1, "name": "_T", "upper_bound": "builtins.object", "values": [], "variance": 0}], "type_ref": "typing.Iterable"}], "bound_args": [], "def_extras": {"first_arg": "self"}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "__setitem__ of list", "ret_type": {".class": "NoneTyp"}, "variables": []}}, "is_overload": true, "var": {".class": "Var", "flags": [], "fullname": null, "name": "__setitem__", "type": null}}], "type": {".class": "Overloaded", "items": [{".class": "CallableType", "arg_kinds": [0, 0, 0], "arg_names": [null, null, null], "arg_types": [{".class": "Instance", "args": [{".class": "TypeVarType", "fullname": "builtins._T", "id": 1, "name": "_T", "upper_bound": "builtins.object", "values": [], "variance": 0}], "type_ref": "builtins.list"}, "builtins.int", {".class": "TypeVarType", "fullname": "builtins._T", "id": 1, "name": "_T", "upper_bound": "builtins.object", "values": [], "variance": 0}], "bound_args": [], "def_extras": {"first_arg": "self"}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "__setitem__ of list", "ret_type": {".class": "NoneTyp"}, "variables": []}, {".class": "CallableType", "arg_kinds": [0, 0, 0], "arg_names": [null, null, null], "arg_types": [{".class": "Instance", "args": [{".class": "TypeVarType", "fullname": "builtins._T", "id": 1, "name": "_T", "upper_bound": "builtins.object", "values": [], "variance": 0}], "type_ref": "builtins.list"}, "builtins.slice", {".class": "Instance", "args": [{".class": "TypeVarType", "fullname": "builtins._T", "id": 1, "name": "_T", "upper_bound": "builtins.object", "values": [], "variance": 0}], "type_ref": "typing.Iterable"}], "bound_args": [], "def_extras": {"first_arg": "self"}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "__setitem__ of list", "ret_type": {".class": "NoneTyp"}, "variables": []}]}}}, "__str__": {".class": "SymbolTableNode", "kind": "Mdef", "node": {".class": "FuncDef", "arg_kinds": [0], "arg_names": ["self"], "flags": [], "fullname": "builtins.list.__str__", "name": "__str__", "type": {".class": "CallableType", "arg_kinds": [0], "arg_names": [null], "arg_types": [{".class": "Instance", "args": [{".class": "TypeVarType", "fullname": "builtins._T", "id": 1, "name": "_T", "upper_bound": "builtins.object", "values": [], "variance": 0}], "type_ref": "builtins.list"}], "bound_args": [], "def_extras": {"first_arg": "self"}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "__str__ of list", "ret_type": "builtins.str", "variables": []}}}, "append": {".class": "SymbolTableNode", "kind": "Mdef", "node": {".class": "FuncDef", "arg_kinds": [0, 0], "arg_names": ["self", "object"], "flags": [], "fullname": "builtins.list.append", "name": "append", "type": {".class": "CallableType", "arg_kinds": [0, 0], "arg_names": ["self", "object"], "arg_types": [{".class": "Instance", "args": [{".class": "TypeVarType", "fullname": "builtins._T", "id": 1, "name": "_T", "upper_bound": "builtins.object", "values": [], "variance": 0}], "type_ref": "builtins.list"}, {".class": "TypeVarType", "fullname": "builtins._T", "id": 1, "name": "_T", "upper_bound": "builtins.object", "values": [], "variance": 0}], "bound_args": [], "def_extras": {"first_arg": "self"}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "append of list", "ret_type": {".class": "NoneTyp"}, "variables": []}}}, "clear": {".class": "SymbolTableNode", "kind": "Mdef", "node": {".class": "FuncDef", "arg_kinds": [0], "arg_names": ["self"], "flags": ["is_conditional"], "fullname": "builtins.list.clear", "name": "clear", "type": {".class": "CallableType", "arg_kinds": [0], "arg_names": ["self"], "arg_types": [{".class": "Instance", "args": [{".class": "TypeVarType", "fullname": "builtins._T", "id": 1, "name": "_T", "upper_bound": "builtins.object", "values": [], "variance": 0}], "type_ref": "builtins.list"}], "bound_args": [], "def_extras": {"first_arg": "self"}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "clear of list", "ret_type": {".class": "NoneTyp"}, "variables": []}}}, "copy": {".class": "SymbolTableNode", "kind": "Mdef", "node": {".class": "FuncDef", "arg_kinds": [0], "arg_names": ["self"], "flags": ["is_conditional"], "fullname": "builtins.list.copy", "name": "copy", "type": {".class": "CallableType", "arg_kinds": [0], "arg_names": ["self"], "arg_types": [{".class": "Instance", "args": [{".class": "TypeVarType", "fullname": "builtins._T", "id": 1, "name": "_T", "upper_bound": "builtins.object", "values": [], "variance": 0}], "type_ref": "builtins.list"}], "bound_args": [], "def_extras": {"first_arg": "self"}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "copy of list", "ret_type": {".class": "Instance", "args": [{".class": "TypeVarType", "fullname": "builtins._T", "id": 1, "name": "_T", "upper_bound": "builtins.object", "values": [], "variance": 0}], "type_ref": "builtins.list"}, "variables": []}}}, "count": {".class": "SymbolTableNode", "kind": "Mdef", "node": {".class": "FuncDef", "arg_kinds": [0, 0], "arg_names": ["self", "object"], "flags": [], "fullname": "builtins.list.count", "name": "count", "type": {".class": "CallableType", "arg_kinds": [0, 0], "arg_names": ["self", "object"], "arg_types": [{".class": "Instance", "args": [{".class": "TypeVarType", "fullname": "builtins._T", "id": 1, "name": "_T", "upper_bound": "builtins.object", "values": [], "variance": 0}], "type_ref": "builtins.list"}, {".class": "TypeVarType", "fullname": "builtins._T", "id": 1, "name": "_T", "upper_bound": "builtins.object", "values": [], "variance": 0}], "bound_args": [], "def_extras": {"first_arg": "self"}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "count of list", "ret_type": "builtins.int", "variables": []}}}, "extend": {".class": "SymbolTableNode", "kind": "Mdef", "node": {".class": "FuncDef", "arg_kinds": [0, 0], "arg_names": ["self", "iterable"], "flags": [], "fullname": "builtins.list.extend", "name": "extend", "type": {".class": "CallableType", "arg_kinds": [0, 0], "arg_names": ["self", "iterable"], "arg_types": [{".class": "Instance", "args": [{".class": "TypeVarType", "fullname": "builtins._T", "id": 1, "name": "_T", "upper_bound": "builtins.object", "values": [], "variance": 0}], "type_ref": "builtins.list"}, {".class": "Instance", "args": [{".class": "TypeVarType", "fullname": "builtins._T", "id": 1, "name": "_T", "upper_bound": "builtins.object", "values": [], "variance": 0}], "type_ref": "typing.Iterable"}], "bound_args": [], "def_extras": {"first_arg": "self"}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "extend of list", "ret_type": {".class": "NoneTyp"}, "variables": []}}}, "index": {".class": "SymbolTableNode", "kind": "Mdef", "node": {".class": "FuncDef", "arg_kinds": [0, 0, 1, 1], "arg_names": ["self", "object", "start", "stop"], "flags": [], "fullname": "builtins.list.index", "name": "index", "type": {".class": "CallableType", "arg_kinds": [0, 0, 1, 1], "arg_names": ["self", "object", "start", "stop"], "arg_types": [{".class": "Instance", "args": [{".class": "TypeVarType", "fullname": "builtins._T", "id": 1, "name": "_T", "upper_bound": "builtins.object", "values": [], "variance": 0}], "type_ref": "builtins.list"}, {".class": "TypeVarType", "fullname": "builtins._T", "id": 1, "name": "_T", "upper_bound": "builtins.object", "values": [], "variance": 0}, "builtins.int", "builtins.int"], "bound_args": [], "def_extras": {"first_arg": "self"}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "index of list", "ret_type": "builtins.int", "variables": []}}}, "insert": {".class": "SymbolTableNode", "kind": "Mdef", "node": {".class": "FuncDef", "arg_kinds": [0, 0, 0], "arg_names": ["self", "index", "object"], "flags": [], "fullname": "builtins.list.insert", "name": "insert", "type": {".class": "CallableType", "arg_kinds": [0, 0, 0], "arg_names": ["self", "index", "object"], "arg_types": [{".class": "Instance", "args": [{".class": "TypeVarType", "fullname": "builtins._T", "id": 1, "name": "_T", "upper_bound": "builtins.object", "values": [], "variance": 0}], "type_ref": "builtins.list"}, "builtins.int", {".class": "TypeVarType", "fullname": "builtins._T", "id": 1, "name": "_T", "upper_bound": "builtins.object", "values": [], "variance": 0}], "bound_args": [], "def_extras": {"first_arg": "self"}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "insert of list", "ret_type": {".class": "NoneTyp"}, "variables": []}}}, "pop": {".class": "SymbolTableNode", "kind": "Mdef", "node": {".class": "FuncDef", "arg_kinds": [0, 1], "arg_names": ["self", "index"], "flags": [], "fullname": "builtins.list.pop", "name": "pop", "type": {".class": "CallableType", "arg_kinds": [0, 1], "arg_names": ["self", "index"], "arg_types": [{".class": "Instance", "args": [{".class": "TypeVarType", "fullname": "builtins._T", "id": 1, "name": "_T", "upper_bound": "builtins.object", "values": [], "variance": 0}], "type_ref": "builtins.list"}, "builtins.int"], "bound_args": [], "def_extras": {"first_arg": "self"}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "pop of list", "ret_type": {".class": "TypeVarType", "fullname": "builtins._T", "id": 1, "name": "_T", "upper_bound": "builtins.object", "values": [], "variance": 0}, "variables": []}}}, "remove": {".class": "SymbolTableNode", "kind": "Mdef", "node": {".class": "FuncDef", "arg_kinds": [0, 0], "arg_names": ["self", "object"], "flags": [], "fullname": "builtins.list.remove", "name": "remove", "type": {".class": "CallableType", "arg_kinds": [0, 0], "arg_names": ["self", "object"], "arg_types": [{".class": "Instance", "args": [{".class": "TypeVarType", "fullname": "builtins._T", "id": 1, "name": "_T", "upper_bound": "builtins.object", "values": [], "variance": 0}], "type_ref": "builtins.list"}, {".class": "TypeVarType", "fullname": "builtins._T", "id": 1, "name": "_T", "upper_bound": "builtins.object", "values": [], "variance": 0}], "bound_args": [], "def_extras": {"first_arg": "self"}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "remove of list", "ret_type": {".class": "NoneTyp"}, "variables": []}}}, "reverse": {".class": "SymbolTableNode", "kind": "Mdef", "node": {".class": "FuncDef", "arg_kinds": [0], "arg_names": ["self"], "flags": [], "fullname": "builtins.list.reverse", "name": "reverse", "type": {".class": "CallableType", "arg_kinds": [0], "arg_names": ["self"], "arg_types": [{".class": "Instance", "args": [{".class": "TypeVarType", "fullname": "builtins._T", "id": 1, "name": "_T", "upper_bound": "builtins.object", "values": [], "variance": 0}], "type_ref": "builtins.list"}], "bound_args": [], "def_extras": {"first_arg": "self"}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "reverse of list", "ret_type": {".class": "NoneTyp"}, "variables": []}}}, "sort": {".class": "SymbolTableNode", "kind": "Mdef", "node": {".class": "FuncDef", "arg_kinds": [0, 5, 5], "arg_names": ["self", "key", "reverse"], "flags": ["is_conditional"], "fullname": "builtins.list.sort", "name": "sort", "type": {".class": "CallableType", "arg_kinds": [0, 5, 5], "arg_names": ["self", "key", "reverse"], "arg_types": [{".class": "Instance", "args": [{".class": "TypeVarType", "fullname": "builtins._T", "id": 1, "name": "_T", "upper_bound": "builtins.object", "values": [], "variance": 0}], "type_ref": "builtins.list"}, {".class": "UnionType", "items": [{".class": "CallableType", "arg_kinds": [0], "arg_names": [null], "arg_types": [{".class": "TypeVarType", "fullname": "builtins._T", "id": 1, "name": "_T", "upper_bound": "builtins.object", "values": [], "variance": 0}], "bound_args": [], "def_extras": {}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": null, "ret_type": {".class": "AnyType", "missing_import_name": null, "source_any": null, "type_of_any": 2}, "variables": []}, {".class": "NoneTyp"}]}, "builtins.bool"], "bound_args": [], "def_extras": {"first_arg": "self"}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "sort of list", "ret_type": {".class": "NoneTyp"}, "variables": []}}}}, "tuple_type": null, "type_vars": ["_T"], "typeddict_type": null}}, "locals": {".class": "SymbolTableNode", "kind": "Gdef", "node": {".class": "FuncDef", "arg_kinds": [], "arg_names": [], "flags": [], "fullname": "builtins.locals", "name": "locals", "type": {".class": "CallableType", "arg_kinds": [], "arg_names": [], "arg_types": [], "bound_args": [], "def_extras": {"first_arg": null}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "locals", "ret_type": {".class": "Instance", "args": ["builtins.str", {".class": "AnyType", "missing_import_name": null, "source_any": null, "type_of_any": 2}], "type_ref": "builtins.dict"}, "variables": []}}}, "map": {".class": "SymbolTableNode", "kind": "Gdef", "node": {".class": "OverloadedFuncDef", "flags": [], "fullname": "builtins.map", "impl": null, "items": [{".class": "Decorator", "func": {".class": "FuncDef", "arg_kinds": [0, 0], "arg_names": ["func", "iter1"], "flags": ["is_overload", "is_decorated", "is_conditional"], "fullname": "builtins.map", "name": "map", "type": {".class": "CallableType", "arg_kinds": [0, 0], "arg_names": ["func", "iter1"], "arg_types": [{".class": "CallableType", "arg_kinds": [0], "arg_names": [null], "arg_types": [{".class": "TypeVarType", "fullname": "builtins._T1", "id": -1, "name": "_T1", "upper_bound": "builtins.object", "values": [], "variance": 0}], "bound_args": [], "def_extras": {}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": null, "ret_type": {".class": "TypeVarType", "fullname": "builtins._S", "id": -2, "name": "_S", "upper_bound": "builtins.object", "values": [], "variance": 0}, "variables": []}, {".class": "Instance", "args": [{".class": "TypeVarType", "fullname": "builtins._T1", "id": -1, "name": "_T1", "upper_bound": "builtins.object", "values": [], "variance": 0}], "type_ref": "typing.Iterable"}], "bound_args": [], "def_extras": {"first_arg": null}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "map", "ret_type": {".class": "Instance", "args": [{".class": "TypeVarType", "fullname": "builtins._S", "id": -2, "name": "_S", "upper_bound": "builtins.object", "values": [], "variance": 0}], "type_ref": "typing.Iterator"}, "variables": [{".class": "TypeVarDef", "fullname": "builtins._T1", "id": -1, "name": "_T1", "upper_bound": "builtins.object", "values": [], "variance": 0}, {".class": "TypeVarDef", "fullname": "builtins._S", "id": -2, "name": "_S", "upper_bound": "builtins.object", "values": [], "variance": 0}]}}, "is_overload": true, "var": {".class": "Var", "flags": [], "fullname": null, "name": "map", "type": null}}, {".class": "Decorator", "func": {".class": "FuncDef", "arg_kinds": [0, 0, 0], "arg_names": ["func", "iter1", "iter2"], "flags": ["is_overload", "is_decorated", "is_conditional"], "fullname": "builtins.map", "name": "map", "type": {".class": "CallableType", "arg_kinds": [0, 0, 0], "arg_names": ["func", "iter1", "iter2"], "arg_types": [{".class": "CallableType", "arg_kinds": [0, 0], "arg_names": [null, null], "arg_types": [{".class": "TypeVarType", "fullname": "builtins._T1", "id": -1, "name": "_T1", "upper_bound": "builtins.object", "values": [], "variance": 0}, {".class": "TypeVarType", "fullname": "builtins._T2", "id": -2, "name": "_T2", "upper_bound": "builtins.object", "values": [], "variance": 0}], "bound_args": [], "def_extras": {}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": null, "ret_type": {".class": "TypeVarType", "fullname": "builtins._S", "id": -3, "name": "_S", "upper_bound": "builtins.object", "values": [], "variance": 0}, "variables": []}, {".class": "Instance", "args": [{".class": "TypeVarType", "fullname": "builtins._T1", "id": -1, "name": "_T1", "upper_bound": "builtins.object", "values": [], "variance": 0}], "type_ref": "typing.Iterable"}, {".class": "Instance", "args": [{".class": "TypeVarType", "fullname": "builtins._T2", "id": -2, "name": "_T2", "upper_bound": "builtins.object", "values": [], "variance": 0}], "type_ref": "typing.Iterable"}], "bound_args": [], "def_extras": {"first_arg": null}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "map", "ret_type": {".class": "Instance", "args": [{".class": "TypeVarType", "fullname": "builtins._S", "id": -3, "name": "_S", "upper_bound": "builtins.object", "values": [], "variance": 0}], "type_ref": "typing.Iterator"}, "variables": [{".class": "TypeVarDef", "fullname": "builtins._T1", "id": -1, "name": "_T1", "upper_bound": "builtins.object", "values": [], "variance": 0}, {".class": "TypeVarDef", "fullname": "builtins._T2", "id": -2, "name": "_T2", "upper_bound": "builtins.object", "values": [], "variance": 0}, {".class": "TypeVarDef", "fullname": "builtins._S", "id": -3, "name": "_S", "upper_bound": "builtins.object", "values": [], "variance": 0}]}}, "is_overload": true, "var": {".class": "Var", "flags": [], "fullname": null, "name": "map", "type": null}}, {".class": "Decorator", "func": {".class": "FuncDef", "arg_kinds": [0, 0, 0, 0], "arg_names": ["func", "iter1", "iter2", "iter3"], "flags": ["is_overload", "is_decorated", "is_conditional"], "fullname": "builtins.map", "name": "map", "type": {".class": "CallableType", "arg_kinds": [0, 0, 0, 0], "arg_names": ["func", "iter1", "iter2", "iter3"], "arg_types": [{".class": "CallableType", "arg_kinds": [0, 0, 0], "arg_names": [null, null, null], "arg_types": [{".class": "TypeVarType", "fullname": "builtins._T1", "id": -1, "name": "_T1", "upper_bound": "builtins.object", "values": [], "variance": 0}, {".class": "TypeVarType", "fullname": "builtins._T2", "id": -2, "name": "_T2", "upper_bound": "builtins.object", "values": [], "variance": 0}, {".class": "TypeVarType", "fullname": "builtins._T3", "id": -3, "name": "_T3", "upper_bound": "builtins.object", "values": [], "variance": 0}], "bound_args": [], "def_extras": {}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": null, "ret_type": {".class": "TypeVarType", "fullname": "builtins._S", "id": -4, "name": "_S", "upper_bound": "builtins.object", "values": [], "variance": 0}, "variables": []}, {".class": "Instance", "args": [{".class": "TypeVarType", "fullname": "builtins._T1", "id": -1, "name": "_T1", "upper_bound": "builtins.object", "values": [], "variance": 0}], "type_ref": "typing.Iterable"}, {".class": "Instance", "args": [{".class": "TypeVarType", "fullname": "builtins._T2", "id": -2, "name": "_T2", "upper_bound": "builtins.object", "values": [], "variance": 0}], "type_ref": "typing.Iterable"}, {".class": "Instance", "args": [{".class": "TypeVarType", "fullname": "builtins._T3", "id": -3, "name": "_T3", "upper_bound": "builtins.object", "values": [], "variance": 0}], "type_ref": "typing.Iterable"}], "bound_args": [], "def_extras": {"first_arg": null}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "map", "ret_type": {".class": "Instance", "args": [{".class": "TypeVarType", "fullname": "builtins._S", "id": -4, "name": "_S", "upper_bound": "builtins.object", "values": [], "variance": 0}], "type_ref": "typing.Iterator"}, "variables": [{".class": "TypeVarDef", "fullname": "builtins._T1", "id": -1, "name": "_T1", "upper_bound": "builtins.object", "values": [], "variance": 0}, {".class": "TypeVarDef", "fullname": "builtins._T2", "id": -2, "name": "_T2", "upper_bound": "builtins.object", "values": [], "variance": 0}, {".class": "TypeVarDef", "fullname": "builtins._T3", "id": -3, "name": "_T3", "upper_bound": "builtins.object", "values": [], "variance": 0}, {".class": "TypeVarDef", "fullname": "builtins._S", "id": -4, "name": "_S", "upper_bound": "builtins.object", "values": [], "variance": 0}]}}, "is_overload": true, "var": {".class": "Var", "flags": [], "fullname": null, "name": "map", "type": null}}, {".class": "Decorator", "func": {".class": "FuncDef", "arg_kinds": [0, 0, 0, 0, 0], "arg_names": ["func", "iter1", "iter2", "iter3", "iter4"], "flags": ["is_overload", "is_decorated", "is_conditional"], "fullname": "builtins.map", "name": "map", "type": {".class": "CallableType", "arg_kinds": [0, 0, 0, 0, 0], "arg_names": ["func", "iter1", "iter2", "iter3", "iter4"], "arg_types": [{".class": "CallableType", "arg_kinds": [0, 0, 0, 0], "arg_names": [null, null, null, null], "arg_types": [{".class": "TypeVarType", "fullname": "builtins._T1", "id": -1, "name": "_T1", "upper_bound": "builtins.object", "values": [], "variance": 0}, {".class": "TypeVarType", "fullname": "builtins._T2", "id": -2, "name": "_T2", "upper_bound": "builtins.object", "values": [], "variance": 0}, {".class": "TypeVarType", "fullname": "builtins._T3", "id": -3, "name": "_T3", "upper_bound": "builtins.object", "values": [], "variance": 0}, {".class": "TypeVarType", "fullname": "builtins._T4", "id": -4, "name": "_T4", "upper_bound": "builtins.object", "values": [], "variance": 0}], "bound_args": [], "def_extras": {}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": null, "ret_type": {".class": "TypeVarType", "fullname": "builtins._S", "id": -5, "name": "_S", "upper_bound": "builtins.object", "values": [], "variance": 0}, "variables": []}, {".class": "Instance", "args": [{".class": "TypeVarType", "fullname": "builtins._T1", "id": -1, "name": "_T1", "upper_bound": "builtins.object", "values": [], "variance": 0}], "type_ref": "typing.Iterable"}, {".class": "Instance", "args": [{".class": "TypeVarType", "fullname": "builtins._T2", "id": -2, "name": "_T2", "upper_bound": "builtins.object", "values": [], "variance": 0}], "type_ref": "typing.Iterable"}, {".class": "Instance", "args": [{".class": "TypeVarType", "fullname": "builtins._T3", "id": -3, "name": "_T3", "upper_bound": "builtins.object", "values": [], "variance": 0}], "type_ref": "typing.Iterable"}, {".class": "Instance", "args": [{".class": "TypeVarType", "fullname": "builtins._T4", "id": -4, "name": "_T4", "upper_bound": "builtins.object", "values": [], "variance": 0}], "type_ref": "typing.Iterable"}], "bound_args": [], "def_extras": {"first_arg": null}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "map", "ret_type": {".class": "Instance", "args": [{".class": "TypeVarType", "fullname": "builtins._S", "id": -5, "name": "_S", "upper_bound": "builtins.object", "values": [], "variance": 0}], "type_ref": "typing.Iterator"}, "variables": [{".class": "TypeVarDef", "fullname": "builtins._T1", "id": -1, "name": "_T1", "upper_bound": "builtins.object", "values": [], "variance": 0}, {".class": "TypeVarDef", "fullname": "builtins._T2", "id": -2, "name": "_T2", "upper_bound": "builtins.object", "values": [], "variance": 0}, {".class": "TypeVarDef", "fullname": "builtins._T3", "id": -3, "name": "_T3", "upper_bound": "builtins.object", "values": [], "variance": 0}, {".class": "TypeVarDef", "fullname": "builtins._T4", "id": -4, "name": "_T4", "upper_bound": "builtins.object", "values": [], "variance": 0}, {".class": "TypeVarDef", "fullname": "builtins._S", "id": -5, "name": "_S", "upper_bound": "builtins.object", "values": [], "variance": 0}]}}, "is_overload": true, "var": {".class": "Var", "flags": [], "fullname": null, "name": "map", "type": null}}, {".class": "Decorator", "func": {".class": "FuncDef", "arg_kinds": [0, 0, 0, 0, 0, 0], "arg_names": ["func", "iter1", "iter2", "iter3", "iter4", "iter5"], "flags": ["is_overload", "is_decorated", "is_conditional"], "fullname": "builtins.map", "name": "map", "type": {".class": "CallableType", "arg_kinds": [0, 0, 0, 0, 0, 0], "arg_names": ["func", "iter1", "iter2", "iter3", "iter4", "iter5"], "arg_types": [{".class": "CallableType", "arg_kinds": [0, 0, 0, 0, 0], "arg_names": [null, null, null, null, null], "arg_types": [{".class": "TypeVarType", "fullname": "builtins._T1", "id": -1, "name": "_T1", "upper_bound": "builtins.object", "values": [], "variance": 0}, {".class": "TypeVarType", "fullname": "builtins._T2", "id": -2, "name": "_T2", "upper_bound": "builtins.object", "values": [], "variance": 0}, {".class": "TypeVarType", "fullname": "builtins._T3", "id": -3, "name": "_T3", "upper_bound": "builtins.object", "values": [], "variance": 0}, {".class": "TypeVarType", "fullname": "builtins._T4", "id": -4, "name": "_T4", "upper_bound": "builtins.object", "values": [], "variance": 0}, {".class": "TypeVarType", "fullname": "builtins._T5", "id": -5, "name": "_T5", "upper_bound": "builtins.object", "values": [], "variance": 0}], "bound_args": [], "def_extras": {}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": null, "ret_type": {".class": "TypeVarType", "fullname": "builtins._S", "id": -6, "name": "_S", "upper_bound": "builtins.object", "values": [], "variance": 0}, "variables": []}, {".class": "Instance", "args": [{".class": "TypeVarType", "fullname": "builtins._T1", "id": -1, "name": "_T1", "upper_bound": "builtins.object", "values": [], "variance": 0}], "type_ref": "typing.Iterable"}, {".class": "Instance", "args": [{".class": "TypeVarType", "fullname": "builtins._T2", "id": -2, "name": "_T2", "upper_bound": "builtins.object", "values": [], "variance": 0}], "type_ref": "typing.Iterable"}, {".class": "Instance", "args": [{".class": "TypeVarType", "fullname": "builtins._T3", "id": -3, "name": "_T3", "upper_bound": "builtins.object", "values": [], "variance": 0}], "type_ref": "typing.Iterable"}, {".class": "Instance", "args": [{".class": "TypeVarType", "fullname": "builtins._T4", "id": -4, "name": "_T4", "upper_bound": "builtins.object", "values": [], "variance": 0}], "type_ref": "typing.Iterable"}, {".class": "Instance", "args": [{".class": "TypeVarType", "fullname": "builtins._T5", "id": -5, "name": "_T5", "upper_bound": "builtins.object", "values": [], "variance": 0}], "type_ref": "typing.Iterable"}], "bound_args": [], "def_extras": {"first_arg": null}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "map", "ret_type": {".class": "Instance", "args": [{".class": "TypeVarType", "fullname": "builtins._S", "id": -6, "name": "_S", "upper_bound": "builtins.object", "values": [], "variance": 0}], "type_ref": "typing.Iterator"}, "variables": [{".class": "TypeVarDef", "fullname": "builtins._T1", "id": -1, "name": "_T1", "upper_bound": "builtins.object", "values": [], "variance": 0}, {".class": "TypeVarDef", "fullname": "builtins._T2", "id": -2, "name": "_T2", "upper_bound": "builtins.object", "values": [], "variance": 0}, {".class": "TypeVarDef", "fullname": "builtins._T3", "id": -3, "name": "_T3", "upper_bound": "builtins.object", "values": [], "variance": 0}, {".class": "TypeVarDef", "fullname": "builtins._T4", "id": -4, "name": "_T4", "upper_bound": "builtins.object", "values": [], "variance": 0}, {".class": "TypeVarDef", "fullname": "builtins._T5", "id": -5, "name": "_T5", "upper_bound": "builtins.object", "values": [], "variance": 0}, {".class": "TypeVarDef", "fullname": "builtins._S", "id": -6, "name": "_S", "upper_bound": "builtins.object", "values": [], "variance": 0}]}}, "is_overload": true, "var": {".class": "Var", "flags": [], "fullname": null, "name": "map", "type": null}}, {".class": "Decorator", "func": {".class": "FuncDef", "arg_kinds": [0, 0, 0, 0, 0, 0, 0, 2], "arg_names": ["func", "iter1", "iter2", "iter3", "iter4", "iter5", "iter6", "iterables"], "flags": ["is_overload", "is_decorated", "is_conditional"], "fullname": "builtins.map", "name": "map", "type": {".class": "CallableType", "arg_kinds": [0, 0, 0, 0, 0, 0, 0, 2], "arg_names": ["func", "iter1", "iter2", "iter3", "iter4", "iter5", "iter6", "iterables"], "arg_types": [{".class": "CallableType", "arg_kinds": [2, 4], "arg_names": [null, null], "arg_types": [{".class": "AnyType", "missing_import_name": null, "source_any": null, "type_of_any": 2}, {".class": "AnyType", "missing_import_name": null, "source_any": null, "type_of_any": 2}], "bound_args": [], "def_extras": {}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": true, "name": null, "ret_type": {".class": "TypeVarType", "fullname": "builtins._S", "id": -1, "name": "_S", "upper_bound": "builtins.object", "values": [], "variance": 0}, "variables": []}, {".class": "Instance", "args": [{".class": "AnyType", "missing_import_name": null, "source_any": null, "type_of_any": 2}], "type_ref": "typing.Iterable"}, {".class": "Instance", "args": [{".class": "AnyType", "missing_import_name": null, "source_any": null, "type_of_any": 2}], "type_ref": "typing.Iterable"}, {".class": "Instance", "args": [{".class": "AnyType", "missing_import_name": null, "source_any": null, "type_of_any": 2}], "type_ref": "typing.Iterable"}, {".class": "Instance", "args": [{".class": "AnyType", "missing_import_name": null, "source_any": null, "type_of_any": 2}], "type_ref": "typing.Iterable"}, {".class": "Instance", "args": [{".class": "AnyType", "missing_import_name": null, "source_any": null, "type_of_any": 2}], "type_ref": "typing.Iterable"}, {".class": "Instance", "args": [{".class": "AnyType", "missing_import_name": null, "source_any": null, "type_of_any": 2}], "type_ref": "typing.Iterable"}, {".class": "Instance", "args": [{".class": "AnyType", "missing_import_name": null, "source_any": null, "type_of_any": 2}], "type_ref": "typing.Iterable"}], "bound_args": [], "def_extras": {"first_arg": null}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "map", "ret_type": {".class": "Instance", "args": [{".class": "TypeVarType", "fullname": "builtins._S", "id": -1, "name": "_S", "upper_bound": "builtins.object", "values": [], "variance": 0}], "type_ref": "typing.Iterator"}, "variables": [{".class": "TypeVarDef", "fullname": "builtins._S", "id": -1, "name": "_S", "upper_bound": "builtins.object", "values": [], "variance": 0}]}}, "is_overload": true, "var": {".class": "Var", "flags": [], "fullname": null, "name": "map", "type": null}}], "type": {".class": "Overloaded", "items": [{".class": "CallableType", "arg_kinds": [0, 0], "arg_names": ["func", "iter1"], "arg_types": [{".class": "CallableType", "arg_kinds": [0], "arg_names": [null], "arg_types": [{".class": "TypeVarType", "fullname": "builtins._T1", "id": -1, "name": "_T1", "upper_bound": "builtins.object", "values": [], "variance": 0}], "bound_args": [], "def_extras": {}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": null, "ret_type": {".class": "TypeVarType", "fullname": "builtins._S", "id": -2, "name": "_S", "upper_bound": "builtins.object", "values": [], "variance": 0}, "variables": []}, {".class": "Instance", "args": [{".class": "TypeVarType", "fullname": "builtins._T1", "id": -1, "name": "_T1", "upper_bound": "builtins.object", "values": [], "variance": 0}], "type_ref": "typing.Iterable"}], "bound_args": [], "def_extras": {"first_arg": null}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "map", "ret_type": {".class": "Instance", "args": [{".class": "TypeVarType", "fullname": "builtins._S", "id": -2, "name": "_S", "upper_bound": "builtins.object", "values": [], "variance": 0}], "type_ref": "typing.Iterator"}, "variables": [{".class": "TypeVarDef", "fullname": "builtins._T1", "id": -1, "name": "_T1", "upper_bound": "builtins.object", "values": [], "variance": 0}, {".class": "TypeVarDef", "fullname": "builtins._S", "id": -2, "name": "_S", "upper_bound": "builtins.object", "values": [], "variance": 0}]}, {".class": "CallableType", "arg_kinds": [0, 0, 0], "arg_names": ["func", "iter1", "iter2"], "arg_types": [{".class": "CallableType", "arg_kinds": [0, 0], "arg_names": [null, null], "arg_types": [{".class": "TypeVarType", "fullname": "builtins._T1", "id": -1, "name": "_T1", "upper_bound": "builtins.object", "values": [], "variance": 0}, {".class": "TypeVarType", "fullname": "builtins._T2", "id": -2, "name": "_T2", "upper_bound": "builtins.object", "values": [], "variance": 0}], "bound_args": [], "def_extras": {}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": null, "ret_type": {".class": "TypeVarType", "fullname": "builtins._S", "id": -3, "name": "_S", "upper_bound": "builtins.object", "values": [], "variance": 0}, "variables": []}, {".class": "Instance", "args": [{".class": "TypeVarType", "fullname": "builtins._T1", "id": -1, "name": "_T1", "upper_bound": "builtins.object", "values": [], "variance": 0}], "type_ref": "typing.Iterable"}, {".class": "Instance", "args": [{".class": "TypeVarType", "fullname": "builtins._T2", "id": -2, "name": "_T2", "upper_bound": "builtins.object", "values": [], "variance": 0}], "type_ref": "typing.Iterable"}], "bound_args": [], "def_extras": {"first_arg": null}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "map", "ret_type": {".class": "Instance", "args": [{".class": "TypeVarType", "fullname": "builtins._S", "id": -3, "name": "_S", "upper_bound": "builtins.object", "values": [], "variance": 0}], "type_ref": "typing.Iterator"}, "variables": [{".class": "TypeVarDef", "fullname": "builtins._T1", "id": -1, "name": "_T1", "upper_bound": "builtins.object", "values": [], "variance": 0}, {".class": "TypeVarDef", "fullname": "builtins._T2", "id": -2, "name": "_T2", "upper_bound": "builtins.object", "values": [], "variance": 0}, {".class": "TypeVarDef", "fullname": "builtins._S", "id": -3, "name": "_S", "upper_bound": "builtins.object", "values": [], "variance": 0}]}, {".class": "CallableType", "arg_kinds": [0, 0, 0, 0], "arg_names": ["func", "iter1", "iter2", "iter3"], "arg_types": [{".class": "CallableType", "arg_kinds": [0, 0, 0], "arg_names": [null, null, null], "arg_types": [{".class": "TypeVarType", "fullname": "builtins._T1", "id": -1, "name": "_T1", "upper_bound": "builtins.object", "values": [], "variance": 0}, {".class": "TypeVarType", "fullname": "builtins._T2", "id": -2, "name": "_T2", "upper_bound": "builtins.object", "values": [], "variance": 0}, {".class": "TypeVarType", "fullname": "builtins._T3", "id": -3, "name": "_T3", "upper_bound": "builtins.object", "values": [], "variance": 0}], "bound_args": [], "def_extras": {}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": null, "ret_type": {".class": "TypeVarType", "fullname": "builtins._S", "id": -4, "name": "_S", "upper_bound": "builtins.object", "values": [], "variance": 0}, "variables": []}, {".class": "Instance", "args": [{".class": "TypeVarType", "fullname": "builtins._T1", "id": -1, "name": "_T1", "upper_bound": "builtins.object", "values": [], "variance": 0}], "type_ref": "typing.Iterable"}, {".class": "Instance", "args": [{".class": "TypeVarType", "fullname": "builtins._T2", "id": -2, "name": "_T2", "upper_bound": "builtins.object", "values": [], "variance": 0}], "type_ref": "typing.Iterable"}, {".class": "Instance", "args": [{".class": "TypeVarType", "fullname": "builtins._T3", "id": -3, "name": "_T3", "upper_bound": "builtins.object", "values": [], "variance": 0}], "type_ref": "typing.Iterable"}], "bound_args": [], "def_extras": {"first_arg": null}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "map", "ret_type": {".class": "Instance", "args": [{".class": "TypeVarType", "fullname": "builtins._S", "id": -4, "name": "_S", "upper_bound": "builtins.object", "values": [], "variance": 0}], "type_ref": "typing.Iterator"}, "variables": [{".class": "TypeVarDef", "fullname": "builtins._T1", "id": -1, "name": "_T1", "upper_bound": "builtins.object", "values": [], "variance": 0}, {".class": "TypeVarDef", "fullname": "builtins._T2", "id": -2, "name": "_T2", "upper_bound": "builtins.object", "values": [], "variance": 0}, {".class": "TypeVarDef", "fullname": "builtins._T3", "id": -3, "name": "_T3", "upper_bound": "builtins.object", "values": [], "variance": 0}, {".class": "TypeVarDef", "fullname": "builtins._S", "id": -4, "name": "_S", "upper_bound": "builtins.object", "values": [], "variance": 0}]}, {".class": "CallableType", "arg_kinds": [0, 0, 0, 0, 0], "arg_names": ["func", "iter1", "iter2", "iter3", "iter4"], "arg_types": [{".class": "CallableType", "arg_kinds": [0, 0, 0, 0], "arg_names": [null, null, null, null], "arg_types": [{".class": "TypeVarType", "fullname": "builtins._T1", "id": -1, "name": "_T1", "upper_bound": "builtins.object", "values": [], "variance": 0}, {".class": "TypeVarType", "fullname": "builtins._T2", "id": -2, "name": "_T2", "upper_bound": "builtins.object", "values": [], "variance": 0}, {".class": "TypeVarType", "fullname": "builtins._T3", "id": -3, "name": "_T3", "upper_bound": "builtins.object", "values": [], "variance": 0}, {".class": "TypeVarType", "fullname": "builtins._T4", "id": -4, "name": "_T4", "upper_bound": "builtins.object", "values": [], "variance": 0}], "bound_args": [], "def_extras": {}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": null, "ret_type": {".class": "TypeVarType", "fullname": "builtins._S", "id": -5, "name": "_S", "upper_bound": "builtins.object", "values": [], "variance": 0}, "variables": []}, {".class": "Instance", "args": [{".class": "TypeVarType", "fullname": "builtins._T1", "id": -1, "name": "_T1", "upper_bound": "builtins.object", "values": [], "variance": 0}], "type_ref": "typing.Iterable"}, {".class": "Instance", "args": [{".class": "TypeVarType", "fullname": "builtins._T2", "id": -2, "name": "_T2", "upper_bound": "builtins.object", "values": [], "variance": 0}], "type_ref": "typing.Iterable"}, {".class": "Instance", "args": [{".class": "TypeVarType", "fullname": "builtins._T3", "id": -3, "name": "_T3", "upper_bound": "builtins.object", "values": [], "variance": 0}], "type_ref": "typing.Iterable"}, {".class": "Instance", "args": [{".class": "TypeVarType", "fullname": "builtins._T4", "id": -4, "name": "_T4", "upper_bound": "builtins.object", "values": [], "variance": 0}], "type_ref": "typing.Iterable"}], "bound_args": [], "def_extras": {"first_arg": null}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "map", "ret_type": {".class": "Instance", "args": [{".class": "TypeVarType", "fullname": "builtins._S", "id": -5, "name": "_S", "upper_bound": "builtins.object", "values": [], "variance": 0}], "type_ref": "typing.Iterator"}, "variables": [{".class": "TypeVarDef", "fullname": "builtins._T1", "id": -1, "name": "_T1", "upper_bound": "builtins.object", "values": [], "variance": 0}, {".class": "TypeVarDef", "fullname": "builtins._T2", "id": -2, "name": "_T2", "upper_bound": "builtins.object", "values": [], "variance": 0}, {".class": "TypeVarDef", "fullname": "builtins._T3", "id": -3, "name": "_T3", "upper_bound": "builtins.object", "values": [], "variance": 0}, {".class": "TypeVarDef", "fullname": "builtins._T4", "id": -4, "name": "_T4", "upper_bound": "builtins.object", "values": [], "variance": 0}, {".class": "TypeVarDef", "fullname": "builtins._S", "id": -5, "name": "_S", "upper_bound": "builtins.object", "values": [], "variance": 0}]}, {".class": "CallableType", "arg_kinds": [0, 0, 0, 0, 0, 0], "arg_names": ["func", "iter1", "iter2", "iter3", "iter4", "iter5"], "arg_types": [{".class": "CallableType", "arg_kinds": [0, 0, 0, 0, 0], "arg_names": [null, null, null, null, null], "arg_types": [{".class": "TypeVarType", "fullname": "builtins._T1", "id": -1, "name": "_T1", "upper_bound": "builtins.object", "values": [], "variance": 0}, {".class": "TypeVarType", "fullname": "builtins._T2", "id": -2, "name": "_T2", "upper_bound": "builtins.object", "values": [], "variance": 0}, {".class": "TypeVarType", "fullname": "builtins._T3", "id": -3, "name": "_T3", "upper_bound": "builtins.object", "values": [], "variance": 0}, {".class": "TypeVarType", "fullname": "builtins._T4", "id": -4, "name": "_T4", "upper_bound": "builtins.object", "values": [], "variance": 0}, {".class": "TypeVarType", "fullname": "builtins._T5", "id": -5, "name": "_T5", "upper_bound": "builtins.object", "values": [], "variance": 0}], "bound_args": [], "def_extras": {}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": null, "ret_type": {".class": "TypeVarType", "fullname": "builtins._S", "id": -6, "name": "_S", "upper_bound": "builtins.object", "values": [], "variance": 0}, "variables": []}, {".class": "Instance", "args": [{".class": "TypeVarType", "fullname": "builtins._T1", "id": -1, "name": "_T1", "upper_bound": "builtins.object", "values": [], "variance": 0}], "type_ref": "typing.Iterable"}, {".class": "Instance", "args": [{".class": "TypeVarType", "fullname": "builtins._T2", "id": -2, "name": "_T2", "upper_bound": "builtins.object", "values": [], "variance": 0}], "type_ref": "typing.Iterable"}, {".class": "Instance", "args": [{".class": "TypeVarType", "fullname": "builtins._T3", "id": -3, "name": "_T3", "upper_bound": "builtins.object", "values": [], "variance": 0}], "type_ref": "typing.Iterable"}, {".class": "Instance", "args": [{".class": "TypeVarType", "fullname": "builtins._T4", "id": -4, "name": "_T4", "upper_bound": "builtins.object", "values": [], "variance": 0}], "type_ref": "typing.Iterable"}, {".class": "Instance", "args": [{".class": "TypeVarType", "fullname": "builtins._T5", "id": -5, "name": "_T5", "upper_bound": "builtins.object", "values": [], "variance": 0}], "type_ref": "typing.Iterable"}], "bound_args": [], "def_extras": {"first_arg": null}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "map", "ret_type": {".class": "Instance", "args": [{".class": "TypeVarType", "fullname": "builtins._S", "id": -6, "name": "_S", "upper_bound": "builtins.object", "values": [], "variance": 0}], "type_ref": "typing.Iterator"}, "variables": [{".class": "TypeVarDef", "fullname": "builtins._T1", "id": -1, "name": "_T1", "upper_bound": "builtins.object", "values": [], "variance": 0}, {".class": "TypeVarDef", "fullname": "builtins._T2", "id": -2, "name": "_T2", "upper_bound": "builtins.object", "values": [], "variance": 0}, {".class": "TypeVarDef", "fullname": "builtins._T3", "id": -3, "name": "_T3", "upper_bound": "builtins.object", "values": [], "variance": 0}, {".class": "TypeVarDef", "fullname": "builtins._T4", "id": -4, "name": "_T4", "upper_bound": "builtins.object", "values": [], "variance": 0}, {".class": "TypeVarDef", "fullname": "builtins._T5", "id": -5, "name": "_T5", "upper_bound": "builtins.object", "values": [], "variance": 0}, {".class": "TypeVarDef", "fullname": "builtins._S", "id": -6, "name": "_S", "upper_bound": "builtins.object", "values": [], "variance": 0}]}, {".class": "CallableType", "arg_kinds": [0, 0, 0, 0, 0, 0, 0, 2], "arg_names": ["func", "iter1", "iter2", "iter3", "iter4", "iter5", "iter6", "iterables"], "arg_types": [{".class": "CallableType", "arg_kinds": [2, 4], "arg_names": [null, null], "arg_types": [{".class": "AnyType", "missing_import_name": null, "source_any": null, "type_of_any": 2}, {".class": "AnyType", "missing_import_name": null, "source_any": null, "type_of_any": 2}], "bound_args": [], "def_extras": {}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": true, "name": null, "ret_type": {".class": "TypeVarType", "fullname": "builtins._S", "id": -1, "name": "_S", "upper_bound": "builtins.object", "values": [], "variance": 0}, "variables": []}, {".class": "Instance", "args": [{".class": "AnyType", "missing_import_name": null, "source_any": null, "type_of_any": 2}], "type_ref": "typing.Iterable"}, {".class": "Instance", "args": [{".class": "AnyType", "missing_import_name": null, "source_any": null, "type_of_any": 2}], "type_ref": "typing.Iterable"}, {".class": "Instance", "args": [{".class": "AnyType", "missing_import_name": null, "source_any": null, "type_of_any": 2}], "type_ref": "typing.Iterable"}, {".class": "Instance", "args": [{".class": "AnyType", "missing_import_name": null, "source_any": null, "type_of_any": 2}], "type_ref": "typing.Iterable"}, {".class": "Instance", "args": [{".class": "AnyType", "missing_import_name": null, "source_any": null, "type_of_any": 2}], "type_ref": "typing.Iterable"}, {".class": "Instance", "args": [{".class": "AnyType", "missing_import_name": null, "source_any": null, "type_of_any": 2}], "type_ref": "typing.Iterable"}, {".class": "Instance", "args": [{".class": "AnyType", "missing_import_name": null, "source_any": null, "type_of_any": 2}], "type_ref": "typing.Iterable"}], "bound_args": [], "def_extras": {"first_arg": null}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "map", "ret_type": {".class": "Instance", "args": [{".class": "TypeVarType", "fullname": "builtins._S", "id": -1, "name": "_S", "upper_bound": "builtins.object", "values": [], "variance": 0}], "type_ref": "typing.Iterator"}, "variables": [{".class": "TypeVarDef", "fullname": "builtins._S", "id": -1, "name": "_S", "upper_bound": "builtins.object", "values": [], "variance": 0}]}]}}}, "max": {".class": "SymbolTableNode", "kind": "Gdef", "node": {".class": "OverloadedFuncDef", "flags": [], "fullname": "builtins.max", "impl": null, "items": [{".class": "Decorator", "func": {".class": "FuncDef", "arg_kinds": [0, 0, 2, 5], "arg_names": ["arg1", "arg2", "args", "key"], "flags": ["is_overload", "is_decorated", "is_conditional"], "fullname": "builtins.max", "name": "max", "type": {".class": "CallableType", "arg_kinds": [0, 0, 2, 5], "arg_names": ["arg1", "arg2", "args", "key"], "arg_types": [{".class": "TypeVarType", "fullname": "builtins._T", "id": -1, "name": "_T", "upper_bound": "builtins.object", "values": [], "variance": 0}, {".class": "TypeVarType", "fullname": "builtins._T", "id": -1, "name": "_T", "upper_bound": "builtins.object", "values": [], "variance": 0}, {".class": "TypeVarType", "fullname": "builtins._T", "id": -1, "name": "_T", "upper_bound": "builtins.object", "values": [], "variance": 0}, {".class": "CallableType", "arg_kinds": [0], "arg_names": [null], "arg_types": [{".class": "TypeVarType", "fullname": "builtins._T", "id": -1, "name": "_T", "upper_bound": "builtins.object", "values": [], "variance": 0}], "bound_args": [], "def_extras": {}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": null, "ret_type": {".class": "AnyType", "missing_import_name": null, "source_any": null, "type_of_any": 2}, "variables": []}], "bound_args": [], "def_extras": {"first_arg": null}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "max", "ret_type": {".class": "TypeVarType", "fullname": "builtins._T", "id": -1, "name": "_T", "upper_bound": "builtins.object", "values": [], "variance": 0}, "variables": [{".class": "TypeVarDef", "fullname": "builtins._T", "id": -1, "name": "_T", "upper_bound": "builtins.object", "values": [], "variance": 0}]}}, "is_overload": true, "var": {".class": "Var", "flags": [], "fullname": null, "name": "max", "type": null}}, {".class": "Decorator", "func": {".class": "FuncDef", "arg_kinds": [0, 1, 1], "arg_names": ["iterable", "key", "default"], "flags": ["is_overload", "is_decorated", "is_conditional"], "fullname": "builtins.max", "name": "max", "type": {".class": "CallableType", "arg_kinds": [0, 1, 1], "arg_names": ["iterable", "key", "default"], "arg_types": [{".class": "Instance", "args": [{".class": "TypeVarType", "fullname": "builtins._T", "id": -1, "name": "_T", "upper_bound": "builtins.object", "values": [], "variance": 0}], "type_ref": "typing.Iterable"}, {".class": "CallableType", "arg_kinds": [0], "arg_names": [null], "arg_types": [{".class": "TypeVarType", "fullname": "builtins._T", "id": -1, "name": "_T", "upper_bound": "builtins.object", "values": [], "variance": 0}], "bound_args": [], "def_extras": {}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": null, "ret_type": {".class": "AnyType", "missing_import_name": null, "source_any": null, "type_of_any": 2}, "variables": []}, {".class": "TypeVarType", "fullname": "builtins._T", "id": -1, "name": "_T", "upper_bound": "builtins.object", "values": [], "variance": 0}], "bound_args": [], "def_extras": {"first_arg": null}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "max", "ret_type": {".class": "TypeVarType", "fullname": "builtins._T", "id": -1, "name": "_T", "upper_bound": "builtins.object", "values": [], "variance": 0}, "variables": [{".class": "TypeVarDef", "fullname": "builtins._T", "id": -1, "name": "_T", "upper_bound": "builtins.object", "values": [], "variance": 0}]}}, "is_overload": true, "var": {".class": "Var", "flags": [], "fullname": null, "name": "max", "type": null}}], "type": {".class": "Overloaded", "items": [{".class": "CallableType", "arg_kinds": [0, 0, 2, 5], "arg_names": ["arg1", "arg2", "args", "key"], "arg_types": [{".class": "TypeVarType", "fullname": "builtins._T", "id": -1, "name": "_T", "upper_bound": "builtins.object", "values": [], "variance": 0}, {".class": "TypeVarType", "fullname": "builtins._T", "id": -1, "name": "_T", "upper_bound": "builtins.object", "values": [], "variance": 0}, {".class": "TypeVarType", "fullname": "builtins._T", "id": -1, "name": "_T", "upper_bound": "builtins.object", "values": [], "variance": 0}, {".class": "CallableType", "arg_kinds": [0], "arg_names": [null], "arg_types": [{".class": "TypeVarType", "fullname": "builtins._T", "id": -1, "name": "_T", "upper_bound": "builtins.object", "values": [], "variance": 0}], "bound_args": [], "def_extras": {}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": null, "ret_type": {".class": "AnyType", "missing_import_name": null, "source_any": null, "type_of_any": 2}, "variables": []}], "bound_args": [], "def_extras": {"first_arg": null}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "max", "ret_type": {".class": "TypeVarType", "fullname": "builtins._T", "id": -1, "name": "_T", "upper_bound": "builtins.object", "values": [], "variance": 0}, "variables": [{".class": "TypeVarDef", "fullname": "builtins._T", "id": -1, "name": "_T", "upper_bound": "builtins.object", "values": [], "variance": 0}]}, {".class": "CallableType", "arg_kinds": [0, 1, 1], "arg_names": ["iterable", "key", "default"], "arg_types": [{".class": "Instance", "args": [{".class": "TypeVarType", "fullname": "builtins._T", "id": -1, "name": "_T", "upper_bound": "builtins.object", "values": [], "variance": 0}], "type_ref": "typing.Iterable"}, {".class": "CallableType", "arg_kinds": [0], "arg_names": [null], "arg_types": [{".class": "TypeVarType", "fullname": "builtins._T", "id": -1, "name": "_T", "upper_bound": "builtins.object", "values": [], "variance": 0}], "bound_args": [], "def_extras": {}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": null, "ret_type": {".class": "AnyType", "missing_import_name": null, "source_any": null, "type_of_any": 2}, "variables": []}, {".class": "TypeVarType", "fullname": "builtins._T", "id": -1, "name": "_T", "upper_bound": "builtins.object", "values": [], "variance": 0}], "bound_args": [], "def_extras": {"first_arg": null}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "max", "ret_type": {".class": "TypeVarType", "fullname": "builtins._T", "id": -1, "name": "_T", "upper_bound": "builtins.object", "values": [], "variance": 0}, "variables": [{".class": "TypeVarDef", "fullname": "builtins._T", "id": -1, "name": "_T", "upper_bound": "builtins.object", "values": [], "variance": 0}]}]}}}, "memoryview": {".class": "SymbolTableNode", "kind": "Gdef", "node": {".class": "TypeInfo", "_promote": null, "abstract_attributes": [], "bases": ["typing.Sized", {".class": "Instance", "args": ["builtins.int"], "type_ref": "typing.Container"}], "declared_metaclass": null, "defn": {".class": "ClassDef", "fullname": "builtins.memoryview", "name": "memoryview", "type_vars": []}, "flags": [], "fullname": "builtins.memoryview", "metaclass_type": "abc.ABCMeta", "metadata": {}, "module_name": "builtins", "mro": ["builtins.memoryview", "typing.Sized", "typing.Container", "builtins.object"], "names": {".class": "SymbolTable", "__contains__": {".class": "SymbolTableNode", "kind": "Mdef", "node": {".class": "FuncDef", "arg_kinds": [0, 0], "arg_names": ["self", "x"], "flags": [], "fullname": "builtins.memoryview.__contains__", "name": "__contains__", "type": {".class": "CallableType", "arg_kinds": [0, 0], "arg_names": [null, null], "arg_types": ["builtins.memoryview", "builtins.object"], "bound_args": [], "def_extras": {"first_arg": "self"}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "__contains__ of memoryview", "ret_type": "builtins.bool", "variables": []}}}, "__enter__": {".class": "SymbolTableNode", "kind": "Mdef", "node": {".class": "FuncDef", "arg_kinds": [0], "arg_names": ["self"], "flags": ["is_conditional"], "fullname": "builtins.memoryview.__enter__", "name": "__enter__", "type": {".class": "CallableType", "arg_kinds": [0], "arg_names": [null], "arg_types": ["builtins.memoryview"], "bound_args": [], "def_extras": {"first_arg": "self"}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "__enter__ of memoryview", "ret_type": "builtins.memoryview", "variables": []}}}, "__exit__": {".class": "SymbolTableNode", "kind": "Mdef", "node": {".class": "FuncDef", "arg_kinds": [0, 0, 0, 0], "arg_names": ["self", "exc_type", "exc_val", "exc_tb"], "flags": ["is_conditional"], "fullname": "builtins.memoryview.__exit__", "name": "__exit__", "type": {".class": "CallableType", "arg_kinds": [0, 0, 0, 0], "arg_names": [null, null, null, null], "arg_types": ["builtins.memoryview", {".class": "UnionType", "items": [{".class": "TypeType", "item": "builtins.BaseException"}, {".class": "NoneTyp"}]}, {".class": "UnionType", "items": ["builtins.BaseException", {".class": "NoneTyp"}]}, {".class": "UnionType", "items": ["types.TracebackType", {".class": "NoneTyp"}]}], "bound_args": [], "def_extras": {"first_arg": "self"}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "__exit__ of memoryview", "ret_type": "builtins.bool", "variables": []}}}, "__getitem__": {".class": "SymbolTableNode", "kind": "Mdef", "node": {".class": "OverloadedFuncDef", "flags": [], "fullname": "builtins.memoryview.__getitem__", "impl": null, "items": [{".class": "Decorator", "func": {".class": "FuncDef", "arg_kinds": [0, 0], "arg_names": ["self", "i"], "flags": ["is_overload", "is_decorated"], "fullname": "builtins.memoryview.__getitem__", "name": "__getitem__", "type": {".class": "CallableType", "arg_kinds": [0, 0], "arg_names": [null, null], "arg_types": ["builtins.memoryview", "builtins.int"], "bound_args": [], "def_extras": {"first_arg": "self"}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "__getitem__ of memoryview", "ret_type": "builtins.int", "variables": []}}, "is_overload": true, "var": {".class": "Var", "flags": [], "fullname": null, "name": "__getitem__", "type": null}}, {".class": "Decorator", "func": {".class": "FuncDef", "arg_kinds": [0, 0], "arg_names": ["self", "s"], "flags": ["is_overload", "is_decorated"], "fullname": "builtins.memoryview.__getitem__", "name": "__getitem__", "type": {".class": "CallableType", "arg_kinds": [0, 0], "arg_names": [null, null], "arg_types": ["builtins.memoryview", "builtins.slice"], "bound_args": [], "def_extras": {"first_arg": "self"}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "__getitem__ of memoryview", "ret_type": "builtins.memoryview", "variables": []}}, "is_overload": true, "var": {".class": "Var", "flags": [], "fullname": null, "name": "__getitem__", "type": null}}], "type": {".class": "Overloaded", "items": [{".class": "CallableType", "arg_kinds": [0, 0], "arg_names": [null, null], "arg_types": ["builtins.memoryview", "builtins.int"], "bound_args": [], "def_extras": {"first_arg": "self"}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "__getitem__ of memoryview", "ret_type": "builtins.int", "variables": []}, {".class": "CallableType", "arg_kinds": [0, 0], "arg_names": [null, null], "arg_types": ["builtins.memoryview", "builtins.slice"], "bound_args": [], "def_extras": {"first_arg": "self"}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "__getitem__ of memoryview", "ret_type": "builtins.memoryview", "variables": []}]}}}, "__init__": {".class": "SymbolTableNode", "kind": "Mdef", "node": {".class": "FuncDef", "arg_kinds": [0, 0], "arg_names": ["self", "obj"], "flags": ["is_conditional"], "fullname": "builtins.memoryview.__init__", "name": "__init__", "type": {".class": "CallableType", "arg_kinds": [0, 0], "arg_names": ["self", "obj"], "arg_types": ["builtins.memoryview", {".class": "UnionType", "items": ["builtins.bytes", "builtins.bytearray", "builtins.memoryview"]}], "bound_args": [], "def_extras": {"first_arg": "self"}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "__init__ of memoryview", "ret_type": {".class": "NoneTyp"}, "variables": []}}}, "__iter__": {".class": "SymbolTableNode", "kind": "Mdef", "node": {".class": "FuncDef", "arg_kinds": [0], "arg_names": ["self"], "flags": [], "fullname": "builtins.memoryview.__iter__", "name": "__iter__", "type": {".class": "CallableType", "arg_kinds": [0], "arg_names": [null], "arg_types": ["builtins.memoryview"], "bound_args": [], "def_extras": {"first_arg": "self"}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "__iter__ of memoryview", "ret_type": {".class": "Instance", "args": ["builtins.int"], "type_ref": "typing.Iterator"}, "variables": []}}}, "__len__": {".class": "SymbolTableNode", "kind": "Mdef", "node": {".class": "FuncDef", "arg_kinds": [0], "arg_names": ["self"], "flags": [], "fullname": "builtins.memoryview.__len__", "name": "__len__", "type": {".class": "CallableType", "arg_kinds": [0], "arg_names": [null], "arg_types": ["builtins.memoryview"], "bound_args": [], "def_extras": {"first_arg": "self"}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "__len__ of memoryview", "ret_type": "builtins.int", "variables": []}}}, "__setitem__": {".class": "SymbolTableNode", "kind": "Mdef", "node": {".class": "OverloadedFuncDef", "flags": [], "fullname": "builtins.memoryview.__setitem__", "impl": null, "items": [{".class": "Decorator", "func": {".class": "FuncDef", "arg_kinds": [0, 0, 0], "arg_names": ["self", "i", "o"], "flags": ["is_overload", "is_decorated"], "fullname": "builtins.memoryview.__setitem__", "name": "__setitem__", "type": {".class": "CallableType", "arg_kinds": [0, 0, 0], "arg_names": [null, null, null], "arg_types": ["builtins.memoryview", "builtins.int", "builtins.bytes"], "bound_args": [], "def_extras": {"first_arg": "self"}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "__setitem__ of memoryview", "ret_type": {".class": "NoneTyp"}, "variables": []}}, "is_overload": true, "var": {".class": "Var", "flags": [], "fullname": null, "name": "__setitem__", "type": null}}, {".class": "Decorator", "func": {".class": "FuncDef", "arg_kinds": [0, 0, 0], "arg_names": ["self", "s", "o"], "flags": ["is_overload", "is_decorated"], "fullname": "builtins.memoryview.__setitem__", "name": "__setitem__", "type": {".class": "CallableType", "arg_kinds": [0, 0, 0], "arg_names": [null, null, null], "arg_types": ["builtins.memoryview", "builtins.slice", {".class": "Instance", "args": ["builtins.bytes"], "type_ref": "typing.Sequence"}], "bound_args": [], "def_extras": {"first_arg": "self"}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "__setitem__ of memoryview", "ret_type": {".class": "NoneTyp"}, "variables": []}}, "is_overload": true, "var": {".class": "Var", "flags": [], "fullname": null, "name": "__setitem__", "type": null}}, {".class": "Decorator", "func": {".class": "FuncDef", "arg_kinds": [0, 0, 0], "arg_names": ["self", "s", "o"], "flags": ["is_overload", "is_decorated"], "fullname": "builtins.memoryview.__setitem__", "name": "__setitem__", "type": {".class": "CallableType", "arg_kinds": [0, 0, 0], "arg_names": [null, null, null], "arg_types": ["builtins.memoryview", "builtins.slice", "builtins.memoryview"], "bound_args": [], "def_extras": {"first_arg": "self"}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "__setitem__ of memoryview", "ret_type": {".class": "NoneTyp"}, "variables": []}}, "is_overload": true, "var": {".class": "Var", "flags": [], "fullname": null, "name": "__setitem__", "type": null}}], "type": {".class": "Overloaded", "items": [{".class": "CallableType", "arg_kinds": [0, 0, 0], "arg_names": [null, null, null], "arg_types": ["builtins.memoryview", "builtins.int", "builtins.bytes"], "bound_args": [], "def_extras": {"first_arg": "self"}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "__setitem__ of memoryview", "ret_type": {".class": "NoneTyp"}, "variables": []}, {".class": "CallableType", "arg_kinds": [0, 0, 0], "arg_names": [null, null, null], "arg_types": ["builtins.memoryview", "builtins.slice", {".class": "Instance", "args": ["builtins.bytes"], "type_ref": "typing.Sequence"}], "bound_args": [], "def_extras": {"first_arg": "self"}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "__setitem__ of memoryview", "ret_type": {".class": "NoneTyp"}, "variables": []}, {".class": "CallableType", "arg_kinds": [0, 0, 0], "arg_names": [null, null, null], "arg_types": ["builtins.memoryview", "builtins.slice", "builtins.memoryview"], "bound_args": [], "def_extras": {"first_arg": "self"}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "__setitem__ of memoryview", "ret_type": {".class": "NoneTyp"}, "variables": []}]}}}, "format": {".class": "SymbolTableNode", "kind": "Mdef", "node": {".class": "Var", "flags": ["is_initialized_in_class"], "fullname": "builtins.memoryview.format", "name": "format", "type": "builtins.str"}}, "hex": {".class": "SymbolTableNode", "kind": "Mdef", "node": {".class": "FuncDef", "arg_kinds": [0], "arg_names": ["self"], "flags": ["is_conditional"], "fullname": "builtins.memoryview.hex", "name": "hex", "type": {".class": "CallableType", "arg_kinds": [0], "arg_names": ["self"], "arg_types": ["builtins.memoryview"], "bound_args": [], "def_extras": {"first_arg": "self"}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "hex of memoryview", "ret_type": "builtins.str", "variables": []}}}, "itemsize": {".class": "SymbolTableNode", "kind": "Mdef", "node": {".class": "Var", "flags": ["is_initialized_in_class"], "fullname": "builtins.memoryview.itemsize", "name": "itemsize", "type": "builtins.int"}}, "ndim": {".class": "SymbolTableNode", "kind": "Mdef", "node": {".class": "Var", "flags": ["is_initialized_in_class"], "fullname": "builtins.memoryview.ndim", "name": "ndim", "type": "builtins.int"}}, "readonly": {".class": "SymbolTableNode", "kind": "Mdef", "node": {".class": "Var", "flags": ["is_initialized_in_class"], "fullname": "builtins.memoryview.readonly", "name": "readonly", "type": "builtins.bool"}}, "shape": {".class": "SymbolTableNode", "kind": "Mdef", "node": {".class": "Var", "flags": ["is_initialized_in_class"], "fullname": "builtins.memoryview.shape", "name": "shape", "type": {".class": "UnionType", "items": [{".class": "Instance", "args": ["builtins.int"], "type_ref": "builtins.tuple"}, {".class": "NoneTyp"}]}}}, "strides": {".class": "SymbolTableNode", "kind": "Mdef", "node": {".class": "Var", "flags": ["is_initialized_in_class"], "fullname": "builtins.memoryview.strides", "name": "strides", "type": {".class": "UnionType", "items": [{".class": "Instance", "args": ["builtins.int"], "type_ref": "builtins.tuple"}, {".class": "NoneTyp"}]}}}, "suboffsets": {".class": "SymbolTableNode", "kind": "Mdef", "node": {".class": "Var", "flags": ["is_initialized_in_class"], "fullname": "builtins.memoryview.suboffsets", "name": "suboffsets", "type": {".class": "UnionType", "items": [{".class": "Instance", "args": ["builtins.int"], "type_ref": "builtins.tuple"}, {".class": "NoneTyp"}]}}}, "tobytes": {".class": "SymbolTableNode", "kind": "Mdef", "node": {".class": "FuncDef", "arg_kinds": [0], "arg_names": ["self"], "flags": [], "fullname": "builtins.memoryview.tobytes", "name": "tobytes", "type": {".class": "CallableType", "arg_kinds": [0], "arg_names": ["self"], "arg_types": ["builtins.memoryview"], "bound_args": [], "def_extras": {"first_arg": "self"}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "tobytes of memoryview", "ret_type": "builtins.bytes", "variables": []}}}, "tolist": {".class": "SymbolTableNode", "kind": "Mdef", "node": {".class": "FuncDef", "arg_kinds": [0], "arg_names": ["self"], "flags": [], "fullname": "builtins.memoryview.tolist", "name": "tolist", "type": {".class": "CallableType", "arg_kinds": [0], "arg_names": ["self"], "arg_types": ["builtins.memoryview"], "bound_args": [], "def_extras": {"first_arg": "self"}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "tolist of memoryview", "ret_type": {".class": "Instance", "args": ["builtins.int"], "type_ref": "builtins.list"}, "variables": []}}}}, "tuple_type": null, "type_vars": [], "typeddict_type": null}}, "min": {".class": "SymbolTableNode", "kind": "Gdef", "node": {".class": "OverloadedFuncDef", "flags": [], "fullname": "builtins.min", "impl": null, "items": [{".class": "Decorator", "func": {".class": "FuncDef", "arg_kinds": [0, 0, 2, 5], "arg_names": ["arg1", "arg2", "args", "key"], "flags": ["is_overload", "is_decorated", "is_conditional"], "fullname": "builtins.min", "name": "min", "type": {".class": "CallableType", "arg_kinds": [0, 0, 2, 5], "arg_names": ["arg1", "arg2", "args", "key"], "arg_types": [{".class": "TypeVarType", "fullname": "builtins._T", "id": -1, "name": "_T", "upper_bound": "builtins.object", "values": [], "variance": 0}, {".class": "TypeVarType", "fullname": "builtins._T", "id": -1, "name": "_T", "upper_bound": "builtins.object", "values": [], "variance": 0}, {".class": "TypeVarType", "fullname": "builtins._T", "id": -1, "name": "_T", "upper_bound": "builtins.object", "values": [], "variance": 0}, {".class": "CallableType", "arg_kinds": [0], "arg_names": [null], "arg_types": [{".class": "TypeVarType", "fullname": "builtins._T", "id": -1, "name": "_T", "upper_bound": "builtins.object", "values": [], "variance": 0}], "bound_args": [], "def_extras": {}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": null, "ret_type": {".class": "AnyType", "missing_import_name": null, "source_any": null, "type_of_any": 2}, "variables": []}], "bound_args": [], "def_extras": {"first_arg": null}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "min", "ret_type": {".class": "TypeVarType", "fullname": "builtins._T", "id": -1, "name": "_T", "upper_bound": "builtins.object", "values": [], "variance": 0}, "variables": [{".class": "TypeVarDef", "fullname": "builtins._T", "id": -1, "name": "_T", "upper_bound": "builtins.object", "values": [], "variance": 0}]}}, "is_overload": true, "var": {".class": "Var", "flags": [], "fullname": null, "name": "min", "type": null}}, {".class": "Decorator", "func": {".class": "FuncDef", "arg_kinds": [0, 1, 1], "arg_names": ["iterable", "key", "default"], "flags": ["is_overload", "is_decorated", "is_conditional"], "fullname": "builtins.min", "name": "min", "type": {".class": "CallableType", "arg_kinds": [0, 1, 1], "arg_names": ["iterable", "key", "default"], "arg_types": [{".class": "Instance", "args": [{".class": "TypeVarType", "fullname": "builtins._T", "id": -1, "name": "_T", "upper_bound": "builtins.object", "values": [], "variance": 0}], "type_ref": "typing.Iterable"}, {".class": "CallableType", "arg_kinds": [0], "arg_names": [null], "arg_types": [{".class": "TypeVarType", "fullname": "builtins._T", "id": -1, "name": "_T", "upper_bound": "builtins.object", "values": [], "variance": 0}], "bound_args": [], "def_extras": {}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": null, "ret_type": {".class": "AnyType", "missing_import_name": null, "source_any": null, "type_of_any": 2}, "variables": []}, {".class": "TypeVarType", "fullname": "builtins._T", "id": -1, "name": "_T", "upper_bound": "builtins.object", "values": [], "variance": 0}], "bound_args": [], "def_extras": {"first_arg": null}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "min", "ret_type": {".class": "TypeVarType", "fullname": "builtins._T", "id": -1, "name": "_T", "upper_bound": "builtins.object", "values": [], "variance": 0}, "variables": [{".class": "TypeVarDef", "fullname": "builtins._T", "id": -1, "name": "_T", "upper_bound": "builtins.object", "values": [], "variance": 0}]}}, "is_overload": true, "var": {".class": "Var", "flags": [], "fullname": null, "name": "min", "type": null}}], "type": {".class": "Overloaded", "items": [{".class": "CallableType", "arg_kinds": [0, 0, 2, 5], "arg_names": ["arg1", "arg2", "args", "key"], "arg_types": [{".class": "TypeVarType", "fullname": "builtins._T", "id": -1, "name": "_T", "upper_bound": "builtins.object", "values": [], "variance": 0}, {".class": "TypeVarType", "fullname": "builtins._T", "id": -1, "name": "_T", "upper_bound": "builtins.object", "values": [], "variance": 0}, {".class": "TypeVarType", "fullname": "builtins._T", "id": -1, "name": "_T", "upper_bound": "builtins.object", "values": [], "variance": 0}, {".class": "CallableType", "arg_kinds": [0], "arg_names": [null], "arg_types": [{".class": "TypeVarType", "fullname": "builtins._T", "id": -1, "name": "_T", "upper_bound": "builtins.object", "values": [], "variance": 0}], "bound_args": [], "def_extras": {}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": null, "ret_type": {".class": "AnyType", "missing_import_name": null, "source_any": null, "type_of_any": 2}, "variables": []}], "bound_args": [], "def_extras": {"first_arg": null}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "min", "ret_type": {".class": "TypeVarType", "fullname": "builtins._T", "id": -1, "name": "_T", "upper_bound": "builtins.object", "values": [], "variance": 0}, "variables": [{".class": "TypeVarDef", "fullname": "builtins._T", "id": -1, "name": "_T", "upper_bound": "builtins.object", "values": [], "variance": 0}]}, {".class": "CallableType", "arg_kinds": [0, 1, 1], "arg_names": ["iterable", "key", "default"], "arg_types": [{".class": "Instance", "args": [{".class": "TypeVarType", "fullname": "builtins._T", "id": -1, "name": "_T", "upper_bound": "builtins.object", "values": [], "variance": 0}], "type_ref": "typing.Iterable"}, {".class": "CallableType", "arg_kinds": [0], "arg_names": [null], "arg_types": [{".class": "TypeVarType", "fullname": "builtins._T", "id": -1, "name": "_T", "upper_bound": "builtins.object", "values": [], "variance": 0}], "bound_args": [], "def_extras": {}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": null, "ret_type": {".class": "AnyType", "missing_import_name": null, "source_any": null, "type_of_any": 2}, "variables": []}, {".class": "TypeVarType", "fullname": "builtins._T", "id": -1, "name": "_T", "upper_bound": "builtins.object", "values": [], "variance": 0}], "bound_args": [], "def_extras": {"first_arg": null}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "min", "ret_type": {".class": "TypeVarType", "fullname": "builtins._T", "id": -1, "name": "_T", "upper_bound": "builtins.object", "values": [], "variance": 0}, "variables": [{".class": "TypeVarDef", "fullname": "builtins._T", "id": -1, "name": "_T", "upper_bound": "builtins.object", "values": [], "variance": 0}]}]}}}, "next": {".class": "SymbolTableNode", "kind": "Gdef", "node": {".class": "OverloadedFuncDef", "flags": [], "fullname": "builtins.next", "impl": null, "items": [{".class": "Decorator", "func": {".class": "FuncDef", "arg_kinds": [0], "arg_names": ["i"], "flags": ["is_overload", "is_decorated"], "fullname": "builtins.next", "name": "next", "type": {".class": "CallableType", "arg_kinds": [0], "arg_names": ["i"], "arg_types": [{".class": "Instance", "args": [{".class": "TypeVarType", "fullname": "builtins._T", "id": -1, "name": "_T", "upper_bound": "builtins.object", "values": [], "variance": 0}], "type_ref": "typing.Iterator"}], "bound_args": [], "def_extras": {"first_arg": null}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "next", "ret_type": {".class": "TypeVarType", "fullname": "builtins._T", "id": -1, "name": "_T", "upper_bound": "builtins.object", "values": [], "variance": 0}, "variables": [{".class": "TypeVarDef", "fullname": "builtins._T", "id": -1, "name": "_T", "upper_bound": "builtins.object", "values": [], "variance": 0}]}}, "is_overload": true, "var": {".class": "Var", "flags": [], "fullname": null, "name": "next", "type": null}}, {".class": "Decorator", "func": {".class": "FuncDef", "arg_kinds": [0, 0], "arg_names": ["i", "default"], "flags": ["is_overload", "is_decorated"], "fullname": "builtins.next", "name": "next", "type": {".class": "CallableType", "arg_kinds": [0, 0], "arg_names": ["i", "default"], "arg_types": [{".class": "Instance", "args": [{".class": "TypeVarType", "fullname": "builtins._T", "id": -1, "name": "_T", "upper_bound": "builtins.object", "values": [], "variance": 0}], "type_ref": "typing.Iterator"}, {".class": "TypeVarType", "fullname": "builtins._VT", "id": -2, "name": "_VT", "upper_bound": "builtins.object", "values": [], "variance": 0}], "bound_args": [], "def_extras": {"first_arg": null}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "next", "ret_type": {".class": "UnionType", "items": [{".class": "TypeVarType", "fullname": "builtins._T", "id": -1, "name": "_T", "upper_bound": "builtins.object", "values": [], "variance": 0}, {".class": "TypeVarType", "fullname": "builtins._VT", "id": -2, "name": "_VT", "upper_bound": "builtins.object", "values": [], "variance": 0}]}, "variables": [{".class": "TypeVarDef", "fullname": "builtins._T", "id": -1, "name": "_T", "upper_bound": "builtins.object", "values": [], "variance": 0}, {".class": "TypeVarDef", "fullname": "builtins._VT", "id": -2, "name": "_VT", "upper_bound": "builtins.object", "values": [], "variance": 0}]}}, "is_overload": true, "var": {".class": "Var", "flags": [], "fullname": null, "name": "next", "type": null}}], "type": {".class": "Overloaded", "items": [{".class": "CallableType", "arg_kinds": [0], "arg_names": ["i"], "arg_types": [{".class": "Instance", "args": [{".class": "TypeVarType", "fullname": "builtins._T", "id": -1, "name": "_T", "upper_bound": "builtins.object", "values": [], "variance": 0}], "type_ref": "typing.Iterator"}], "bound_args": [], "def_extras": {"first_arg": null}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "next", "ret_type": {".class": "TypeVarType", "fullname": "builtins._T", "id": -1, "name": "_T", "upper_bound": "builtins.object", "values": [], "variance": 0}, "variables": [{".class": "TypeVarDef", "fullname": "builtins._T", "id": -1, "name": "_T", "upper_bound": "builtins.object", "values": [], "variance": 0}]}, {".class": "CallableType", "arg_kinds": [0, 0], "arg_names": ["i", "default"], "arg_types": [{".class": "Instance", "args": [{".class": "TypeVarType", "fullname": "builtins._T", "id": -1, "name": "_T", "upper_bound": "builtins.object", "values": [], "variance": 0}], "type_ref": "typing.Iterator"}, {".class": "TypeVarType", "fullname": "builtins._VT", "id": -2, "name": "_VT", "upper_bound": "builtins.object", "values": [], "variance": 0}], "bound_args": [], "def_extras": {"first_arg": null}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "next", "ret_type": {".class": "UnionType", "items": [{".class": "TypeVarType", "fullname": "builtins._T", "id": -1, "name": "_T", "upper_bound": "builtins.object", "values": [], "variance": 0}, {".class": "TypeVarType", "fullname": "builtins._VT", "id": -2, "name": "_VT", "upper_bound": "builtins.object", "values": [], "variance": 0}]}, "variables": [{".class": "TypeVarDef", "fullname": "builtins._T", "id": -1, "name": "_T", "upper_bound": "builtins.object", "values": [], "variance": 0}, {".class": "TypeVarDef", "fullname": "builtins._VT", "id": -2, "name": "_VT", "upper_bound": "builtins.object", "values": [], "variance": 0}]}]}}}, "object": {".class": "SymbolTableNode", "kind": "Gdef", "node": {".class": "TypeInfo", "_promote": null, "abstract_attributes": [], "bases": [], "declared_metaclass": null, "defn": {".class": "ClassDef", "fullname": "builtins.object", "name": "object", "type_vars": []}, "flags": [], "fullname": "builtins.object", "metaclass_type": null, "metadata": {}, "module_name": "builtins", "mro": ["builtins.object"], "names": {".class": "SymbolTable", "__annotations__": {".class": "SymbolTableNode", "kind": "Mdef", "node": {".class": "Var", "flags": ["is_initialized_in_class"], "fullname": "builtins.object.__annotations__", "name": "__annotations__", "type": {".class": "Instance", "args": ["builtins.str", {".class": "AnyType", "missing_import_name": null, "source_any": null, "type_of_any": 2}], "type_ref": "builtins.dict"}}}, "__class__": {".class": "SymbolTableNode", "kind": "Mdef", "node": {".class": "OverloadedFuncDef", "flags": ["is_property"], "fullname": "builtins.object.__class__", "impl": null, "items": [{".class": "Decorator", "func": {".class": "FuncDef", "arg_kinds": [0], "arg_names": ["self"], "flags": ["is_property", "is_overload", "is_decorated"], "fullname": "builtins.object.__class__", "name": "__class__", "type": {".class": "CallableType", "arg_kinds": [0], "arg_names": ["self"], "arg_types": [{".class": "TypeVarType", "fullname": "builtins._T", "id": -1, "name": "_T", "upper_bound": "builtins.object", "values": [], "variance": 0}], "bound_args": [], "def_extras": {"first_arg": "self"}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "__class__ of object", "ret_type": {".class": "TypeType", "item": {".class": "TypeVarType", "fullname": "builtins._T", "id": -1, "name": "_T", "upper_bound": "builtins.object", "values": [], "variance": 0}}, "variables": [{".class": "TypeVarDef", "fullname": "builtins._T", "id": -1, "name": "_T", "upper_bound": "builtins.object", "values": [], "variance": 0}]}}, "is_overload": true, "var": {".class": "Var", "flags": ["is_initialized_in_class", "is_property", "is_settable_property"], "fullname": null, "name": "__class__", "type": {".class": "CallableType", "arg_kinds": [0], "arg_names": ["self"], "arg_types": [{".class": "TypeVarType", "fullname": "builtins._T", "id": -1, "name": "_T", "upper_bound": "builtins.object", "values": [], "variance": 0}], "bound_args": [], "def_extras": {"first_arg": "self"}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "__class__ of object", "ret_type": {".class": "TypeType", "item": {".class": "TypeVarType", "fullname": "builtins._T", "id": -1, "name": "_T", "upper_bound": "builtins.object", "values": [], "variance": 0}}, "variables": [{".class": "TypeVarDef", "fullname": "builtins._T", "id": -1, "name": "_T", "upper_bound": "builtins.object", "values": [], "variance": 0}]}}}, {".class": "Decorator", "func": {".class": "FuncDef", "arg_kinds": [0, 0], "arg_names": ["self", "__type"], "flags": ["is_decorated"], "fullname": "builtins.object.__class__", "name": "__class__", "type": {".class": "CallableType", "arg_kinds": [0, 0], "arg_names": ["self", null], "arg_types": ["builtins.object", {".class": "TypeType", "item": "builtins.object"}], "bound_args": [], "def_extras": {"first_arg": "self"}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "__class__ of object", "ret_type": {".class": "NoneTyp"}, "variables": []}}, "is_overload": false, "var": {".class": "Var", "flags": [], "fullname": null, "name": "__class__", "type": null}}], "type": {".class": "Overloaded", "items": [{".class": "CallableType", "arg_kinds": [0], "arg_names": ["self"], "arg_types": [{".class": "TypeVarType", "fullname": "builtins._T", "id": -1, "name": "_T", "upper_bound": "builtins.object", "values": [], "variance": 0}], "bound_args": [], "def_extras": {"first_arg": "self"}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "__class__ of object", "ret_type": {".class": "TypeType", "item": {".class": "TypeVarType", "fullname": "builtins._T", "id": -1, "name": "_T", "upper_bound": "builtins.object", "values": [], "variance": 0}}, "variables": [{".class": "TypeVarDef", "fullname": "builtins._T", "id": -1, "name": "_T", "upper_bound": "builtins.object", "values": [], "variance": 0}]}]}}}, "__delattr__": {".class": "SymbolTableNode", "kind": "Mdef", "node": {".class": "FuncDef", "arg_kinds": [0, 0], "arg_names": ["self", "name"], "flags": [], "fullname": "builtins.object.__delattr__", "name": "__delattr__", "type": {".class": "CallableType", "arg_kinds": [0, 0], "arg_names": [null, null], "arg_types": ["builtins.object", "builtins.str"], "bound_args": [], "def_extras": {"first_arg": "self"}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "__delattr__ of object", "ret_type": {".class": "NoneTyp"}, "variables": []}}}, "__dict__": {".class": "SymbolTableNode", "kind": "Mdef", "node": {".class": "Var", "flags": ["is_initialized_in_class"], "fullname": "builtins.object.__dict__", "name": "__dict__", "type": {".class": "Instance", "args": ["builtins.str", {".class": "AnyType", "missing_import_name": null, "source_any": null, "type_of_any": 2}], "type_ref": "builtins.dict"}}}, "__dir__": {".class": "SymbolTableNode", "kind": "Mdef", "node": {".class": "FuncDef", "arg_kinds": [0], "arg_names": ["self"], "flags": ["is_conditional"], "fullname": "builtins.object.__dir__", "name": "__dir__", "type": {".class": "CallableType", "arg_kinds": [0], "arg_names": ["self"], "arg_types": ["builtins.object"], "bound_args": [], "def_extras": {"first_arg": "self"}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "__dir__ of object", "ret_type": {".class": "Instance", "args": ["builtins.str"], "type_ref": "typing.Iterable"}, "variables": []}}}, "__doc__": {".class": "SymbolTableNode", "kind": "Mdef", "node": {".class": "Var", "flags": ["is_initialized_in_class"], "fullname": "builtins.object.__doc__", "name": "__doc__", "type": {".class": "UnionType", "items": ["builtins.str", {".class": "NoneTyp"}]}}}, "__eq__": {".class": "SymbolTableNode", "kind": "Mdef", "node": {".class": "FuncDef", "arg_kinds": [0, 0], "arg_names": ["self", "o"], "flags": [], "fullname": "builtins.object.__eq__", "name": "__eq__", "type": {".class": "CallableType", "arg_kinds": [0, 0], "arg_names": [null, null], "arg_types": ["builtins.object", "builtins.object"], "bound_args": [], "def_extras": {"first_arg": "self"}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "__eq__ of object", "ret_type": "builtins.bool", "variables": []}}}, "__format__": {".class": "SymbolTableNode", "kind": "Mdef", "node": {".class": "FuncDef", "arg_kinds": [0, 0], "arg_names": ["self", "format_spec"], "flags": [], "fullname": "builtins.object.__format__", "name": "__format__", "type": {".class": "CallableType", "arg_kinds": [0, 0], "arg_names": ["self", "format_spec"], "arg_types": ["builtins.object", "builtins.str"], "bound_args": [], "def_extras": {"first_arg": "self"}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "__format__ of object", "ret_type": "builtins.str", "variables": []}}}, "__getattribute__": {".class": "SymbolTableNode", "kind": "Mdef", "node": {".class": "FuncDef", "arg_kinds": [0, 0], "arg_names": ["self", "name"], "flags": [], "fullname": "builtins.object.__getattribute__", "name": "__getattribute__", "type": {".class": "CallableType", "arg_kinds": [0, 0], "arg_names": [null, null], "arg_types": ["builtins.object", "builtins.str"], "bound_args": [], "def_extras": {"first_arg": "self"}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "__getattribute__ of object", "ret_type": {".class": "AnyType", "missing_import_name": null, "source_any": null, "type_of_any": 2}, "variables": []}}}, "__hash__": {".class": "SymbolTableNode", "kind": "Mdef", "node": {".class": "FuncDef", "arg_kinds": [0], "arg_names": ["self"], "flags": [], "fullname": "builtins.object.__hash__", "name": "__hash__", "type": {".class": "CallableType", "arg_kinds": [0], "arg_names": ["self"], "arg_types": ["builtins.object"], "bound_args": [], "def_extras": {"first_arg": "self"}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "__hash__ of object", "ret_type": "builtins.int", "variables": []}}}, "__init__": {".class": "SymbolTableNode", "kind": "Mdef", "node": {".class": "FuncDef", "arg_kinds": [0], "arg_names": ["self"], "flags": [], "fullname": "builtins.object.__init__", "name": "__init__", "type": {".class": "CallableType", "arg_kinds": [0], "arg_names": ["self"], "arg_types": ["builtins.object"], "bound_args": [], "def_extras": {"first_arg": "self"}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "__init__ of object", "ret_type": {".class": "NoneTyp"}, "variables": []}}}, "__init_subclass__": {".class": "SymbolTableNode", "kind": "Mdef", "node": {".class": "FuncDef", "arg_kinds": [0], "arg_names": ["cls"], "flags": ["is_conditional"], "fullname": "builtins.object.__init_subclass__", "name": "__init_subclass__", "type": {".class": "CallableType", "arg_kinds": [0], "arg_names": ["cls"], "arg_types": [{".class": "TypeType", "item": "builtins.object"}], "bound_args": [], "def_extras": {"first_arg": "cls"}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "__init_subclass__ of object", "ret_type": {".class": "NoneTyp"}, "variables": []}}}, "__module__": {".class": "SymbolTableNode", "kind": "Mdef", "node": {".class": "Var", "flags": ["is_initialized_in_class"], "fullname": "builtins.object.__module__", "name": "__module__", "type": "builtins.str"}}, "__ne__": {".class": "SymbolTableNode", "kind": "Mdef", "node": {".class": "FuncDef", "arg_kinds": [0, 0], "arg_names": ["self", "o"], "flags": [], "fullname": "builtins.object.__ne__", "name": "__ne__", "type": {".class": "CallableType", "arg_kinds": [0, 0], "arg_names": [null, null], "arg_types": ["builtins.object", "builtins.object"], "bound_args": [], "def_extras": {"first_arg": "self"}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "__ne__ of object", "ret_type": "builtins.bool", "variables": []}}}, "__new__": {".class": "SymbolTableNode", "kind": "Mdef", "node": {".class": "FuncDef", "arg_kinds": [0], "arg_names": ["cls"], "flags": [], "fullname": "builtins.object.__new__", "name": "__new__", "type": {".class": "CallableType", "arg_kinds": [0], "arg_names": ["cls"], "arg_types": [{".class": "TypeType", "item": "builtins.object"}], "bound_args": [], "def_extras": {"first_arg": "cls"}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "__new__ of object", "ret_type": {".class": "AnyType", "missing_import_name": null, "source_any": null, "type_of_any": 2}, "variables": []}}}, "__reduce__": {".class": "SymbolTableNode", "kind": "Mdef", "node": {".class": "FuncDef", "arg_kinds": [0], "arg_names": ["self"], "flags": [], "fullname": "builtins.object.__reduce__", "name": "__reduce__", "type": {".class": "CallableType", "arg_kinds": [0], "arg_names": ["self"], "arg_types": ["builtins.object"], "bound_args": [], "def_extras": {"first_arg": "self"}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "__reduce__ of object", "ret_type": {".class": "Instance", "args": [{".class": "AnyType", "missing_import_name": null, "source_any": null, "type_of_any": 4}], "type_ref": "builtins.tuple"}, "variables": []}}}, "__reduce_ex__": {".class": "SymbolTableNode", "kind": "Mdef", "node": {".class": "FuncDef", "arg_kinds": [0, 0], "arg_names": ["self", "protocol"], "flags": [], "fullname": "builtins.object.__reduce_ex__", "name": "__reduce_ex__", "type": {".class": "CallableType", "arg_kinds": [0, 0], "arg_names": ["self", "protocol"], "arg_types": ["builtins.object", "builtins.int"], "bound_args": [], "def_extras": {"first_arg": "self"}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "__reduce_ex__ of object", "ret_type": {".class": "Instance", "args": [{".class": "AnyType", "missing_import_name": null, "source_any": null, "type_of_any": 4}], "type_ref": "builtins.tuple"}, "variables": []}}}, "__repr__": {".class": "SymbolTableNode", "kind": "Mdef", "node": {".class": "FuncDef", "arg_kinds": [0], "arg_names": ["self"], "flags": [], "fullname": "builtins.object.__repr__", "name": "__repr__", "type": {".class": "CallableType", "arg_kinds": [0], "arg_names": [null], "arg_types": ["builtins.object"], "bound_args": [], "def_extras": {"first_arg": "self"}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "__repr__ of object", "ret_type": "builtins.str", "variables": []}}}, "__setattr__": {".class": "SymbolTableNode", "kind": "Mdef", "node": {".class": "FuncDef", "arg_kinds": [0, 0, 0], "arg_names": ["self", "name", "value"], "flags": [], "fullname": "builtins.object.__setattr__", "name": "__setattr__", "type": {".class": "CallableType", "arg_kinds": [0, 0, 0], "arg_names": [null, null, null], "arg_types": ["builtins.object", "builtins.str", {".class": "AnyType", "missing_import_name": null, "source_any": null, "type_of_any": 2}], "bound_args": [], "def_extras": {"first_arg": "self"}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "__setattr__ of object", "ret_type": {".class": "NoneTyp"}, "variables": []}}}, "__sizeof__": {".class": "SymbolTableNode", "kind": "Mdef", "node": {".class": "FuncDef", "arg_kinds": [0], "arg_names": ["self"], "flags": [], "fullname": "builtins.object.__sizeof__", "name": "__sizeof__", "type": {".class": "CallableType", "arg_kinds": [0], "arg_names": ["self"], "arg_types": ["builtins.object"], "bound_args": [], "def_extras": {"first_arg": "self"}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "__sizeof__ of object", "ret_type": "builtins.int", "variables": []}}}, "__slots__": {".class": "SymbolTableNode", "kind": "Mdef", "node": {".class": "Var", "flags": ["is_initialized_in_class"], "fullname": "builtins.object.__slots__", "name": "__slots__", "type": {".class": "UnionType", "items": ["builtins.str", {".class": "Instance", "args": ["builtins.str"], "type_ref": "typing.Iterable"}]}}}, "__str__": {".class": "SymbolTableNode", "kind": "Mdef", "node": {".class": "FuncDef", "arg_kinds": [0], "arg_names": ["self"], "flags": [], "fullname": "builtins.object.__str__", "name": "__str__", "type": {".class": "CallableType", "arg_kinds": [0], "arg_names": [null], "arg_types": ["builtins.object"], "bound_args": [], "def_extras": {"first_arg": "self"}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "__str__ of object", "ret_type": "builtins.str", "variables": []}}}}, "tuple_type": null, "type_vars": [], "typeddict_type": null}}, "oct": {".class": "SymbolTableNode", "kind": "Gdef", "node": {".class": "FuncDef", "arg_kinds": [0], "arg_names": ["i"], "flags": [], "fullname": "builtins.oct", "name": "oct", "type": {".class": "CallableType", "arg_kinds": [0], "arg_names": ["i"], "arg_types": ["builtins.int"], "bound_args": [], "def_extras": {"first_arg": null}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "oct", "ret_type": "builtins.str", "variables": []}}}, "open": {".class": "SymbolTableNode", "kind": "Gdef", "node": {".class": "FuncDef", "arg_kinds": [0, 1, 1, 1, 1, 1, 1], "arg_names": ["file", "mode", "buffering", "encoding", "errors", "newline", "closefd"], "flags": ["is_conditional"], "fullname": "builtins.open", "name": "open", "type": {".class": "CallableType", "arg_kinds": [0, 1, 1, 1, 1, 1, 1], "arg_names": ["file", "mode", "buffering", "encoding", "errors", "newline", "closefd"], "arg_types": [{".class": "UnionType", "items": ["builtins.str", "builtins.bytes", "builtins.int", {".class": "Instance", "args": [{".class": "AnyType", "missing_import_name": null, "source_any": null, "type_of_any": 4}], "type_ref": "builtins._PathLike"}]}, "builtins.str", "builtins.int", {".class": "UnionType", "items": ["builtins.str", {".class": "NoneTyp"}]}, {".class": "UnionType", "items": ["builtins.str", {".class": "NoneTyp"}]}, {".class": "UnionType", "items": ["builtins.str", {".class": "NoneTyp"}]}, "builtins.bool"], "bound_args": [], "def_extras": {"first_arg": null}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "open", "ret_type": {".class": "Instance", "args": [{".class": "AnyType", "missing_import_name": null, "source_any": null, "type_of_any": 2}], "type_ref": "typing.IO"}, "variables": []}}}, "ord": {".class": "SymbolTableNode", "kind": "Gdef", "node": {".class": "FuncDef", "arg_kinds": [0], "arg_names": ["c"], "flags": [], "fullname": "builtins.ord", "name": "ord", "type": {".class": "CallableType", "arg_kinds": [0], "arg_names": ["c"], "arg_types": [{".class": "UnionType", "items": ["builtins.str", "builtins.bytes"]}], "bound_args": [], "def_extras": {"first_arg": null}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "ord", "ret_type": "builtins.int", "variables": []}}}, "pow": {".class": "SymbolTableNode", "kind": "Gdef", "node": {".class": "OverloadedFuncDef", "flags": [], "fullname": "builtins.pow", "impl": null, "items": [{".class": "Decorator", "func": {".class": "FuncDef", "arg_kinds": [0, 0], "arg_names": ["x", "y"], "flags": ["is_overload", "is_decorated"], "fullname": "builtins.pow", "name": "pow", "type": {".class": "CallableType", "arg_kinds": [0, 0], "arg_names": ["x", "y"], "arg_types": ["builtins.int", "builtins.int"], "bound_args": [], "def_extras": {"first_arg": null}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "pow", "ret_type": {".class": "AnyType", "missing_import_name": null, "source_any": null, "type_of_any": 2}, "variables": []}}, "is_overload": true, "var": {".class": "Var", "flags": [], "fullname": null, "name": "pow", "type": null}}, {".class": "Decorator", "func": {".class": "FuncDef", "arg_kinds": [0, 0, 0], "arg_names": ["x", "y", "z"], "flags": ["is_overload", "is_decorated"], "fullname": "builtins.pow", "name": "pow", "type": {".class": "CallableType", "arg_kinds": [0, 0, 0], "arg_names": ["x", "y", "z"], "arg_types": ["builtins.int", "builtins.int", "builtins.int"], "bound_args": [], "def_extras": {"first_arg": null}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "pow", "ret_type": {".class": "AnyType", "missing_import_name": null, "source_any": null, "type_of_any": 2}, "variables": []}}, "is_overload": true, "var": {".class": "Var", "flags": [], "fullname": null, "name": "pow", "type": null}}, {".class": "Decorator", "func": {".class": "FuncDef", "arg_kinds": [0, 0], "arg_names": ["x", "y"], "flags": ["is_overload", "is_decorated"], "fullname": "builtins.pow", "name": "pow", "type": {".class": "CallableType", "arg_kinds": [0, 0], "arg_names": ["x", "y"], "arg_types": ["builtins.float", "builtins.float"], "bound_args": [], "def_extras": {"first_arg": null}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "pow", "ret_type": "builtins.float", "variables": []}}, "is_overload": true, "var": {".class": "Var", "flags": [], "fullname": null, "name": "pow", "type": null}}, {".class": "Decorator", "func": {".class": "FuncDef", "arg_kinds": [0, 0, 0], "arg_names": ["x", "y", "z"], "flags": ["is_overload", "is_decorated"], "fullname": "builtins.pow", "name": "pow", "type": {".class": "CallableType", "arg_kinds": [0, 0, 0], "arg_names": ["x", "y", "z"], "arg_types": ["builtins.float", "builtins.float", "builtins.float"], "bound_args": [], "def_extras": {"first_arg": null}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "pow", "ret_type": "builtins.float", "variables": []}}, "is_overload": true, "var": {".class": "Var", "flags": [], "fullname": null, "name": "pow", "type": null}}], "type": {".class": "Overloaded", "items": [{".class": "CallableType", "arg_kinds": [0, 0], "arg_names": ["x", "y"], "arg_types": ["builtins.int", "builtins.int"], "bound_args": [], "def_extras": {"first_arg": null}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "pow", "ret_type": {".class": "AnyType", "missing_import_name": null, "source_any": null, "type_of_any": 2}, "variables": []}, {".class": "CallableType", "arg_kinds": [0, 0, 0], "arg_names": ["x", "y", "z"], "arg_types": ["builtins.int", "builtins.int", "builtins.int"], "bound_args": [], "def_extras": {"first_arg": null}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "pow", "ret_type": {".class": "AnyType", "missing_import_name": null, "source_any": null, "type_of_any": 2}, "variables": []}, {".class": "CallableType", "arg_kinds": [0, 0], "arg_names": ["x", "y"], "arg_types": ["builtins.float", "builtins.float"], "bound_args": [], "def_extras": {"first_arg": null}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "pow", "ret_type": "builtins.float", "variables": []}, {".class": "CallableType", "arg_kinds": [0, 0, 0], "arg_names": ["x", "y", "z"], "arg_types": ["builtins.float", "builtins.float", "builtins.float"], "bound_args": [], "def_extras": {"first_arg": null}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "pow", "ret_type": "builtins.float", "variables": []}]}}}, "print": {".class": "SymbolTableNode", "kind": "Gdef", "node": {".class": "FuncDef", "arg_kinds": [2, 5, 5, 5, 5], "arg_names": ["values", "sep", "end", "file", "flush"], "flags": ["is_conditional"], "fullname": "builtins.print", "name": "print", "type": {".class": "CallableType", "arg_kinds": [2, 5, 5, 5, 5], "arg_names": ["values", "sep", "end", "file", "flush"], "arg_types": [{".class": "AnyType", "missing_import_name": null, "source_any": null, "type_of_any": 2}, "builtins.str", "builtins.str", {".class": "UnionType", "items": [{".class": "Instance", "args": ["builtins.str"], "type_ref": "typing.IO"}, {".class": "NoneTyp"}]}, "builtins.bool"], "bound_args": [], "def_extras": {"first_arg": null}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "print", "ret_type": {".class": "NoneTyp"}, "variables": []}}}, "property": {".class": "SymbolTableNode", "kind": "Gdef", "node": {".class": "TypeInfo", "_promote": null, "abstract_attributes": [], "bases": ["builtins.object"], "declared_metaclass": null, "defn": {".class": "ClassDef", "fullname": "builtins.property", "name": "property", "type_vars": []}, "flags": [], "fullname": "builtins.property", "metaclass_type": null, "metadata": {}, "module_name": "builtins", "mro": ["builtins.property", "builtins.object"], "names": {".class": "SymbolTable", "__delete__": {".class": "SymbolTableNode", "kind": "Mdef", "node": {".class": "FuncDef", "arg_kinds": [0, 0], "arg_names": ["self", "obj"], "flags": [], "fullname": "builtins.property.__delete__", "name": "__delete__", "type": {".class": "CallableType", "arg_kinds": [0, 0], "arg_names": ["self", "obj"], "arg_types": ["builtins.property", {".class": "AnyType", "missing_import_name": null, "source_any": null, "type_of_any": 2}], "bound_args": [], "def_extras": {"first_arg": "self"}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "__delete__ of property", "ret_type": {".class": "NoneTyp"}, "variables": []}}}, "__get__": {".class": "SymbolTableNode", "kind": "Mdef", "node": {".class": "FuncDef", "arg_kinds": [0, 0, 1], "arg_names": ["self", "obj", "type"], "flags": [], "fullname": "builtins.property.__get__", "name": "__get__", "type": {".class": "CallableType", "arg_kinds": [0, 0, 1], "arg_names": ["self", "obj", "type"], "arg_types": ["builtins.property", {".class": "AnyType", "missing_import_name": null, "source_any": null, "type_of_any": 2}, {".class": "UnionType", "items": ["builtins.type", {".class": "NoneTyp"}]}], "bound_args": [], "def_extras": {"first_arg": "self"}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "__get__ of property", "ret_type": {".class": "AnyType", "missing_import_name": null, "source_any": null, "type_of_any": 2}, "variables": []}}}, "__init__": {".class": "SymbolTableNode", "kind": "Mdef", "node": {".class": "FuncDef", "arg_kinds": [0, 1, 1, 1, 1], "arg_names": ["self", "fget", "fset", "fdel", "doc"], "flags": [], "fullname": "builtins.property.__init__", "name": "__init__", "type": {".class": "CallableType", "arg_kinds": [0, 1, 1, 1, 1], "arg_names": ["self", "fget", "fset", "fdel", "doc"], "arg_types": ["builtins.property", {".class": "UnionType", "items": [{".class": "CallableType", "arg_kinds": [0], "arg_names": [null], "arg_types": [{".class": "AnyType", "missing_import_name": null, "source_any": null, "type_of_any": 2}], "bound_args": [], "def_extras": {}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": null, "ret_type": {".class": "AnyType", "missing_import_name": null, "source_any": null, "type_of_any": 2}, "variables": []}, {".class": "NoneTyp"}]}, {".class": "UnionType", "items": [{".class": "CallableType", "arg_kinds": [0, 0], "arg_names": [null, null], "arg_types": [{".class": "AnyType", "missing_import_name": null, "source_any": null, "type_of_any": 2}, {".class": "AnyType", "missing_import_name": null, "source_any": null, "type_of_any": 2}], "bound_args": [], "def_extras": {}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": null, "ret_type": {".class": "NoneTyp"}, "variables": []}, {".class": "NoneTyp"}]}, {".class": "UnionType", "items": [{".class": "CallableType", "arg_kinds": [0], "arg_names": [null], "arg_types": [{".class": "AnyType", "missing_import_name": null, "source_any": null, "type_of_any": 2}], "bound_args": [], "def_extras": {}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": null, "ret_type": {".class": "NoneTyp"}, "variables": []}, {".class": "NoneTyp"}]}, {".class": "UnionType", "items": ["builtins.str", {".class": "NoneTyp"}]}], "bound_args": [], "def_extras": {"first_arg": "self"}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "__init__ of property", "ret_type": {".class": "NoneTyp"}, "variables": []}}}, "__set__": {".class": "SymbolTableNode", "kind": "Mdef", "node": {".class": "FuncDef", "arg_kinds": [0, 0, 0], "arg_names": ["self", "obj", "value"], "flags": [], "fullname": "builtins.property.__set__", "name": "__set__", "type": {".class": "CallableType", "arg_kinds": [0, 0, 0], "arg_names": ["self", "obj", "value"], "arg_types": ["builtins.property", {".class": "AnyType", "missing_import_name": null, "source_any": null, "type_of_any": 2}, {".class": "AnyType", "missing_import_name": null, "source_any": null, "type_of_any": 2}], "bound_args": [], "def_extras": {"first_arg": "self"}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "__set__ of property", "ret_type": {".class": "NoneTyp"}, "variables": []}}}, "deleter": {".class": "SymbolTableNode", "kind": "Mdef", "node": {".class": "FuncDef", "arg_kinds": [0, 0], "arg_names": ["self", "fdel"], "flags": [], "fullname": "builtins.property.deleter", "name": "deleter", "type": {".class": "CallableType", "arg_kinds": [0, 0], "arg_names": ["self", "fdel"], "arg_types": ["builtins.property", {".class": "CallableType", "arg_kinds": [0], "arg_names": [null], "arg_types": [{".class": "AnyType", "missing_import_name": null, "source_any": null, "type_of_any": 2}], "bound_args": [], "def_extras": {}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": null, "ret_type": {".class": "NoneTyp"}, "variables": []}], "bound_args": [], "def_extras": {"first_arg": "self"}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "deleter of property", "ret_type": "builtins.property", "variables": []}}}, "fdel": {".class": "SymbolTableNode", "kind": "Mdef", "node": {".class": "FuncDef", "arg_kinds": [0], "arg_names": ["self"], "flags": [], "fullname": "builtins.property.fdel", "name": "fdel", "type": {".class": "CallableType", "arg_kinds": [0], "arg_names": ["self"], "arg_types": ["builtins.property"], "bound_args": [], "def_extras": {"first_arg": "self"}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "fdel of property", "ret_type": {".class": "NoneTyp"}, "variables": []}}}, "fget": {".class": "SymbolTableNode", "kind": "Mdef", "node": {".class": "FuncDef", "arg_kinds": [0], "arg_names": ["self"], "flags": [], "fullname": "builtins.property.fget", "name": "fget", "type": {".class": "CallableType", "arg_kinds": [0], "arg_names": ["self"], "arg_types": ["builtins.property"], "bound_args": [], "def_extras": {"first_arg": "self"}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "fget of property", "ret_type": {".class": "AnyType", "missing_import_name": null, "source_any": null, "type_of_any": 2}, "variables": []}}}, "fset": {".class": "SymbolTableNode", "kind": "Mdef", "node": {".class": "FuncDef", "arg_kinds": [0, 0], "arg_names": ["self", "value"], "flags": [], "fullname": "builtins.property.fset", "name": "fset", "type": {".class": "CallableType", "arg_kinds": [0, 0], "arg_names": ["self", "value"], "arg_types": ["builtins.property", {".class": "AnyType", "missing_import_name": null, "source_any": null, "type_of_any": 2}], "bound_args": [], "def_extras": {"first_arg": "self"}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "fset of property", "ret_type": {".class": "NoneTyp"}, "variables": []}}}, "getter": {".class": "SymbolTableNode", "kind": "Mdef", "node": {".class": "FuncDef", "arg_kinds": [0, 0], "arg_names": ["self", "fget"], "flags": [], "fullname": "builtins.property.getter", "name": "getter", "type": {".class": "CallableType", "arg_kinds": [0, 0], "arg_names": ["self", "fget"], "arg_types": ["builtins.property", {".class": "CallableType", "arg_kinds": [0], "arg_names": [null], "arg_types": [{".class": "AnyType", "missing_import_name": null, "source_any": null, "type_of_any": 2}], "bound_args": [], "def_extras": {}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": null, "ret_type": {".class": "AnyType", "missing_import_name": null, "source_any": null, "type_of_any": 2}, "variables": []}], "bound_args": [], "def_extras": {"first_arg": "self"}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "getter of property", "ret_type": "builtins.property", "variables": []}}}, "setter": {".class": "SymbolTableNode", "kind": "Mdef", "node": {".class": "FuncDef", "arg_kinds": [0, 0], "arg_names": ["self", "fset"], "flags": [], "fullname": "builtins.property.setter", "name": "setter", "type": {".class": "CallableType", "arg_kinds": [0, 0], "arg_names": ["self", "fset"], "arg_types": ["builtins.property", {".class": "CallableType", "arg_kinds": [0, 0], "arg_names": [null, null], "arg_types": [{".class": "AnyType", "missing_import_name": null, "source_any": null, "type_of_any": 2}, {".class": "AnyType", "missing_import_name": null, "source_any": null, "type_of_any": 2}], "bound_args": [], "def_extras": {}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": null, "ret_type": {".class": "NoneTyp"}, "variables": []}], "bound_args": [], "def_extras": {"first_arg": "self"}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "setter of property", "ret_type": "builtins.property", "variables": []}}}}, "tuple_type": null, "type_vars": [], "typeddict_type": null}}, "quit": {".class": "SymbolTableNode", "kind": "Gdef", "node": {".class": "FuncDef", "arg_kinds": [1], "arg_names": ["code"], "flags": [], "fullname": "builtins.quit", "name": "quit", "type": {".class": "CallableType", "arg_kinds": [1], "arg_names": ["code"], "arg_types": [{".class": "UnionType", "items": ["builtins.int", {".class": "NoneTyp"}]}], "bound_args": [], "def_extras": {"first_arg": null}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "quit", "ret_type": {".class": "NoneTyp"}, "variables": []}}}, "range": {".class": "SymbolTableNode", "kind": "Gdef", "node": {".class": "TypeInfo", "_promote": null, "abstract_attributes": [], "bases": [{".class": "Instance", "args": ["builtins.int"], "type_ref": "typing.Sequence"}], "declared_metaclass": null, "defn": {".class": "ClassDef", "fullname": "builtins.range", "name": "range", "type_vars": []}, "flags": [], "fullname": "builtins.range", "metaclass_type": "abc.ABCMeta", "metadata": {}, "module_name": "builtins", "mro": ["builtins.range", "typing.Sequence", "typing.Collection", "typing.Iterable", "typing.Container", "typing.Reversible", "builtins.object"], "names": {".class": "SymbolTable", "__contains__": {".class": "SymbolTableNode", "kind": "Mdef", "node": {".class": "FuncDef", "arg_kinds": [0, 0], "arg_names": ["self", "o"], "flags": [], "fullname": "builtins.range.__contains__", "name": "__contains__", "type": {".class": "CallableType", "arg_kinds": [0, 0], "arg_names": [null, null], "arg_types": ["builtins.range", "builtins.object"], "bound_args": [], "def_extras": {"first_arg": "self"}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "__contains__ of range", "ret_type": "builtins.bool", "variables": []}}}, "__getitem__": {".class": "SymbolTableNode", "kind": "Mdef", "node": {".class": "OverloadedFuncDef", "flags": [], "fullname": "builtins.range.__getitem__", "impl": null, "items": [{".class": "Decorator", "func": {".class": "FuncDef", "arg_kinds": [0, 0], "arg_names": ["self", "i"], "flags": ["is_overload", "is_decorated"], "fullname": "builtins.range.__getitem__", "name": "__getitem__", "type": {".class": "CallableType", "arg_kinds": [0, 0], "arg_names": [null, null], "arg_types": ["builtins.range", "builtins.int"], "bound_args": [], "def_extras": {"first_arg": "self"}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "__getitem__ of range", "ret_type": "builtins.int", "variables": []}}, "is_overload": true, "var": {".class": "Var", "flags": [], "fullname": null, "name": "__getitem__", "type": null}}, {".class": "Decorator", "func": {".class": "FuncDef", "arg_kinds": [0, 0], "arg_names": ["self", "s"], "flags": ["is_overload", "is_decorated"], "fullname": "builtins.range.__getitem__", "name": "__getitem__", "type": {".class": "CallableType", "arg_kinds": [0, 0], "arg_names": [null, null], "arg_types": ["builtins.range", "builtins.slice"], "bound_args": [], "def_extras": {"first_arg": "self"}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "__getitem__ of range", "ret_type": "builtins.range", "variables": []}}, "is_overload": true, "var": {".class": "Var", "flags": [], "fullname": null, "name": "__getitem__", "type": null}}], "type": {".class": "Overloaded", "items": [{".class": "CallableType", "arg_kinds": [0, 0], "arg_names": [null, null], "arg_types": ["builtins.range", "builtins.int"], "bound_args": [], "def_extras": {"first_arg": "self"}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "__getitem__ of range", "ret_type": "builtins.int", "variables": []}, {".class": "CallableType", "arg_kinds": [0, 0], "arg_names": [null, null], "arg_types": ["builtins.range", "builtins.slice"], "bound_args": [], "def_extras": {"first_arg": "self"}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "__getitem__ of range", "ret_type": "builtins.range", "variables": []}]}}}, "__init__": {".class": "SymbolTableNode", "kind": "Mdef", "node": {".class": "OverloadedFuncDef", "flags": [], "fullname": "builtins.range.__init__", "impl": null, "items": [{".class": "Decorator", "func": {".class": "FuncDef", "arg_kinds": [0, 0], "arg_names": ["self", "stop"], "flags": ["is_overload", "is_decorated"], "fullname": "builtins.range.__init__", "name": "__init__", "type": {".class": "CallableType", "arg_kinds": [0, 0], "arg_names": ["self", "stop"], "arg_types": ["builtins.range", "builtins.int"], "bound_args": [], "def_extras": {"first_arg": "self"}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "__init__ of range", "ret_type": {".class": "NoneTyp"}, "variables": []}}, "is_overload": true, "var": {".class": "Var", "flags": [], "fullname": null, "name": "__init__", "type": null}}, {".class": "Decorator", "func": {".class": "FuncDef", "arg_kinds": [0, 0, 0, 1], "arg_names": ["self", "start", "stop", "step"], "flags": ["is_overload", "is_decorated"], "fullname": "builtins.range.__init__", "name": "__init__", "type": {".class": "CallableType", "arg_kinds": [0, 0, 0, 1], "arg_names": ["self", "start", "stop", "step"], "arg_types": ["builtins.range", "builtins.int", "builtins.int", "builtins.int"], "bound_args": [], "def_extras": {"first_arg": "self"}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "__init__ of range", "ret_type": {".class": "NoneTyp"}, "variables": []}}, "is_overload": true, "var": {".class": "Var", "flags": [], "fullname": null, "name": "__init__", "type": null}}], "type": {".class": "Overloaded", "items": [{".class": "CallableType", "arg_kinds": [0, 0], "arg_names": ["self", "stop"], "arg_types": ["builtins.range", "builtins.int"], "bound_args": [], "def_extras": {"first_arg": "self"}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "__init__ of range", "ret_type": {".class": "NoneTyp"}, "variables": []}, {".class": "CallableType", "arg_kinds": [0, 0, 0, 1], "arg_names": ["self", "start", "stop", "step"], "arg_types": ["builtins.range", "builtins.int", "builtins.int", "builtins.int"], "bound_args": [], "def_extras": {"first_arg": "self"}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "__init__ of range", "ret_type": {".class": "NoneTyp"}, "variables": []}]}}}, "__iter__": {".class": "SymbolTableNode", "kind": "Mdef", "node": {".class": "FuncDef", "arg_kinds": [0], "arg_names": ["self"], "flags": [], "fullname": "builtins.range.__iter__", "name": "__iter__", "type": {".class": "CallableType", "arg_kinds": [0], "arg_names": [null], "arg_types": ["builtins.range"], "bound_args": [], "def_extras": {"first_arg": "self"}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "__iter__ of range", "ret_type": {".class": "Instance", "args": ["builtins.int"], "type_ref": "typing.Iterator"}, "variables": []}}}, "__len__": {".class": "SymbolTableNode", "kind": "Mdef", "node": {".class": "FuncDef", "arg_kinds": [0], "arg_names": ["self"], "flags": [], "fullname": "builtins.range.__len__", "name": "__len__", "type": {".class": "CallableType", "arg_kinds": [0], "arg_names": [null], "arg_types": ["builtins.range"], "bound_args": [], "def_extras": {"first_arg": "self"}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "__len__ of range", "ret_type": "builtins.int", "variables": []}}}, "__repr__": {".class": "SymbolTableNode", "kind": "Mdef", "node": {".class": "FuncDef", "arg_kinds": [0], "arg_names": ["self"], "flags": [], "fullname": "builtins.range.__repr__", "name": "__repr__", "type": {".class": "CallableType", "arg_kinds": [0], "arg_names": [null], "arg_types": ["builtins.range"], "bound_args": [], "def_extras": {"first_arg": "self"}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "__repr__ of range", "ret_type": "builtins.str", "variables": []}}}, "__reversed__": {".class": "SymbolTableNode", "kind": "Mdef", "node": {".class": "FuncDef", "arg_kinds": [0], "arg_names": ["self"], "flags": [], "fullname": "builtins.range.__reversed__", "name": "__reversed__", "type": {".class": "CallableType", "arg_kinds": [0], "arg_names": [null], "arg_types": ["builtins.range"], "bound_args": [], "def_extras": {"first_arg": "self"}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "__reversed__ of range", "ret_type": {".class": "Instance", "args": ["builtins.int"], "type_ref": "typing.Iterator"}, "variables": []}}}, "count": {".class": "SymbolTableNode", "kind": "Mdef", "node": {".class": "FuncDef", "arg_kinds": [0, 0], "arg_names": ["self", "value"], "flags": [], "fullname": "builtins.range.count", "name": "count", "type": {".class": "CallableType", "arg_kinds": [0, 0], "arg_names": ["self", "value"], "arg_types": ["builtins.range", "builtins.int"], "bound_args": [], "def_extras": {"first_arg": "self"}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "count of range", "ret_type": "builtins.int", "variables": []}}}, "index": {".class": "SymbolTableNode", "kind": "Mdef", "node": {".class": "FuncDef", "arg_kinds": [0, 0, 1, 1], "arg_names": ["self", "value", "start", "stop"], "flags": [], "fullname": "builtins.range.index", "name": "index", "type": {".class": "CallableType", "arg_kinds": [0, 0, 1, 1], "arg_names": ["self", "value", "start", "stop"], "arg_types": ["builtins.range", "builtins.int", "builtins.int", {".class": "UnionType", "items": ["builtins.int", {".class": "NoneTyp"}]}], "bound_args": [], "def_extras": {"first_arg": "self"}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "index of range", "ret_type": "builtins.int", "variables": []}}}, "start": {".class": "SymbolTableNode", "kind": "Mdef", "node": {".class": "Var", "flags": ["is_initialized_in_class"], "fullname": "builtins.range.start", "name": "start", "type": "builtins.int"}}, "step": {".class": "SymbolTableNode", "kind": "Mdef", "node": {".class": "Var", "flags": ["is_initialized_in_class"], "fullname": "builtins.range.step", "name": "step", "type": "builtins.int"}}, "stop": {".class": "SymbolTableNode", "kind": "Mdef", "node": {".class": "Var", "flags": ["is_initialized_in_class"], "fullname": "builtins.range.stop", "name": "stop", "type": "builtins.int"}}}, "tuple_type": null, "type_vars": [], "typeddict_type": null}}, "repr": {".class": "SymbolTableNode", "kind": "Gdef", "node": {".class": "FuncDef", "arg_kinds": [0], "arg_names": ["o"], "flags": [], "fullname": "builtins.repr", "name": "repr", "type": {".class": "CallableType", "arg_kinds": [0], "arg_names": ["o"], "arg_types": ["builtins.object"], "bound_args": [], "def_extras": {"first_arg": null}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "repr", "ret_type": "builtins.str", "variables": []}}}, "reveal_locals": {".class": "SymbolTableNode", "kind": "Gdef", "node": {".class": "Var", "flags": [], "fullname": "builtins.reveal_locals", "name": "reveal_locals", "type": {".class": "AnyType", "missing_import_name": null, "source_any": null, "type_of_any": 6}}}, "reveal_type": {".class": "SymbolTableNode", "kind": "Gdef", "node": {".class": "Var", "flags": [], "fullname": "builtins.reveal_type", "name": "reveal_type", "type": {".class": "AnyType", "missing_import_name": null, "source_any": null, "type_of_any": 6}}}, "reversed": {".class": "SymbolTableNode", "kind": "Gdef", "node": {".class": "OverloadedFuncDef", "flags": [], "fullname": "builtins.reversed", "impl": null, "items": [{".class": "Decorator", "func": {".class": "FuncDef", "arg_kinds": [0], "arg_names": ["object"], "flags": ["is_overload", "is_decorated"], "fullname": "builtins.reversed", "name": "reversed", "type": {".class": "CallableType", "arg_kinds": [0], "arg_names": ["object"], "arg_types": [{".class": "Instance", "args": [{".class": "TypeVarType", "fullname": "builtins._T", "id": -1, "name": "_T", "upper_bound": "builtins.object", "values": [], "variance": 0}], "type_ref": "typing.Sequence"}], "bound_args": [], "def_extras": {"first_arg": null}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "reversed", "ret_type": {".class": "Instance", "args": [{".class": "TypeVarType", "fullname": "builtins._T", "id": -1, "name": "_T", "upper_bound": "builtins.object", "values": [], "variance": 0}], "type_ref": "typing.Iterator"}, "variables": [{".class": "TypeVarDef", "fullname": "builtins._T", "id": -1, "name": "_T", "upper_bound": "builtins.object", "values": [], "variance": 0}]}}, "is_overload": true, "var": {".class": "Var", "flags": [], "fullname": null, "name": "reversed", "type": null}}, {".class": "Decorator", "func": {".class": "FuncDef", "arg_kinds": [0], "arg_names": ["object"], "flags": ["is_overload", "is_decorated"], "fullname": "builtins.reversed", "name": "reversed", "type": {".class": "CallableType", "arg_kinds": [0], "arg_names": ["object"], "arg_types": [{".class": "Instance", "args": [{".class": "TypeVarType", "fullname": "builtins._T", "id": -1, "name": "_T", "upper_bound": "builtins.object", "values": [], "variance": 0}], "type_ref": "typing.Reversible"}], "bound_args": [], "def_extras": {"first_arg": null}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "reversed", "ret_type": {".class": "Instance", "args": [{".class": "TypeVarType", "fullname": "builtins._T", "id": -1, "name": "_T", "upper_bound": "builtins.object", "values": [], "variance": 0}], "type_ref": "typing.Iterator"}, "variables": [{".class": "TypeVarDef", "fullname": "builtins._T", "id": -1, "name": "_T", "upper_bound": "builtins.object", "values": [], "variance": 0}]}}, "is_overload": true, "var": {".class": "Var", "flags": [], "fullname": null, "name": "reversed", "type": null}}], "type": {".class": "Overloaded", "items": [{".class": "CallableType", "arg_kinds": [0], "arg_names": ["object"], "arg_types": [{".class": "Instance", "args": [{".class": "TypeVarType", "fullname": "builtins._T", "id": -1, "name": "_T", "upper_bound": "builtins.object", "values": [], "variance": 0}], "type_ref": "typing.Sequence"}], "bound_args": [], "def_extras": {"first_arg": null}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "reversed", "ret_type": {".class": "Instance", "args": [{".class": "TypeVarType", "fullname": "builtins._T", "id": -1, "name": "_T", "upper_bound": "builtins.object", "values": [], "variance": 0}], "type_ref": "typing.Iterator"}, "variables": [{".class": "TypeVarDef", "fullname": "builtins._T", "id": -1, "name": "_T", "upper_bound": "builtins.object", "values": [], "variance": 0}]}, {".class": "CallableType", "arg_kinds": [0], "arg_names": ["object"], "arg_types": [{".class": "Instance", "args": [{".class": "TypeVarType", "fullname": "builtins._T", "id": -1, "name": "_T", "upper_bound": "builtins.object", "values": [], "variance": 0}], "type_ref": "typing.Reversible"}], "bound_args": [], "def_extras": {"first_arg": null}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "reversed", "ret_type": {".class": "Instance", "args": [{".class": "TypeVarType", "fullname": "builtins._T", "id": -1, "name": "_T", "upper_bound": "builtins.object", "values": [], "variance": 0}], "type_ref": "typing.Iterator"}, "variables": [{".class": "TypeVarDef", "fullname": "builtins._T", "id": -1, "name": "_T", "upper_bound": "builtins.object", "values": [], "variance": 0}]}]}}}, "round": {".class": "SymbolTableNode", "kind": "Gdef", "node": {".class": "OverloadedFuncDef", "flags": [], "fullname": "builtins.round", "impl": null, "items": [{".class": "Decorator", "func": {".class": "FuncDef", "arg_kinds": [0], "arg_names": ["number"], "flags": ["is_overload", "is_decorated", "is_conditional"], "fullname": "builtins.round", "name": "round", "type": {".class": "CallableType", "arg_kinds": [0], "arg_names": ["number"], "arg_types": ["builtins.float"], "bound_args": [], "def_extras": {"first_arg": null}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "round", "ret_type": "builtins.int", "variables": []}}, "is_overload": true, "var": {".class": "Var", "flags": [], "fullname": null, "name": "round", "type": null}}, {".class": "Decorator", "func": {".class": "FuncDef", "arg_kinds": [0, 0], "arg_names": ["number", "ndigits"], "flags": ["is_overload", "is_decorated", "is_conditional"], "fullname": "builtins.round", "name": "round", "type": {".class": "CallableType", "arg_kinds": [0, 0], "arg_names": ["number", "ndigits"], "arg_types": ["builtins.float", {".class": "NoneTyp"}], "bound_args": [], "def_extras": {"first_arg": null}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "round", "ret_type": "builtins.int", "variables": []}}, "is_overload": true, "var": {".class": "Var", "flags": [], "fullname": null, "name": "round", "type": null}}, {".class": "Decorator", "func": {".class": "FuncDef", "arg_kinds": [0, 0], "arg_names": ["number", "ndigits"], "flags": ["is_overload", "is_decorated", "is_conditional"], "fullname": "builtins.round", "name": "round", "type": {".class": "CallableType", "arg_kinds": [0, 0], "arg_names": ["number", "ndigits"], "arg_types": ["builtins.float", "builtins.int"], "bound_args": [], "def_extras": {"first_arg": null}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "round", "ret_type": "builtins.float", "variables": []}}, "is_overload": true, "var": {".class": "Var", "flags": [], "fullname": null, "name": "round", "type": null}}, {".class": "Decorator", "func": {".class": "FuncDef", "arg_kinds": [0], "arg_names": ["number"], "flags": ["is_overload", "is_decorated", "is_conditional"], "fullname": "builtins.round", "name": "round", "type": {".class": "CallableType", "arg_kinds": [0], "arg_names": ["number"], "arg_types": [{".class": "Instance", "args": [{".class": "TypeVarType", "fullname": "builtins._T", "id": -1, "name": "_T", "upper_bound": "builtins.object", "values": [], "variance": 0}], "type_ref": "typing.SupportsRound"}], "bound_args": [], "def_extras": {"first_arg": null}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "round", "ret_type": "builtins.int", "variables": [{".class": "TypeVarDef", "fullname": "builtins._T", "id": -1, "name": "_T", "upper_bound": "builtins.object", "values": [], "variance": 0}]}}, "is_overload": true, "var": {".class": "Var", "flags": [], "fullname": null, "name": "round", "type": null}}, {".class": "Decorator", "func": {".class": "FuncDef", "arg_kinds": [0, 0], "arg_names": ["number", "ndigits"], "flags": ["is_overload", "is_decorated", "is_conditional"], "fullname": "builtins.round", "name": "round", "type": {".class": "CallableType", "arg_kinds": [0, 0], "arg_names": ["number", "ndigits"], "arg_types": [{".class": "Instance", "args": [{".class": "TypeVarType", "fullname": "builtins._T", "id": -1, "name": "_T", "upper_bound": "builtins.object", "values": [], "variance": 0}], "type_ref": "typing.SupportsRound"}, {".class": "NoneTyp"}], "bound_args": [], "def_extras": {"first_arg": null}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "round", "ret_type": "builtins.int", "variables": [{".class": "TypeVarDef", "fullname": "builtins._T", "id": -1, "name": "_T", "upper_bound": "builtins.object", "values": [], "variance": 0}]}}, "is_overload": true, "var": {".class": "Var", "flags": [], "fullname": null, "name": "round", "type": null}}, {".class": "Decorator", "func": {".class": "FuncDef", "arg_kinds": [0, 0], "arg_names": ["number", "ndigits"], "flags": ["is_overload", "is_decorated", "is_conditional"], "fullname": "builtins.round", "name": "round", "type": {".class": "CallableType", "arg_kinds": [0, 0], "arg_names": ["number", "ndigits"], "arg_types": [{".class": "Instance", "args": [{".class": "TypeVarType", "fullname": "builtins._T", "id": -1, "name": "_T", "upper_bound": "builtins.object", "values": [], "variance": 0}], "type_ref": "typing.SupportsRound"}, "builtins.int"], "bound_args": [], "def_extras": {"first_arg": null}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "round", "ret_type": {".class": "TypeVarType", "fullname": "builtins._T", "id": -1, "name": "_T", "upper_bound": "builtins.object", "values": [], "variance": 0}, "variables": [{".class": "TypeVarDef", "fullname": "builtins._T", "id": -1, "name": "_T", "upper_bound": "builtins.object", "values": [], "variance": 0}]}}, "is_overload": true, "var": {".class": "Var", "flags": [], "fullname": null, "name": "round", "type": null}}], "type": {".class": "Overloaded", "items": [{".class": "CallableType", "arg_kinds": [0], "arg_names": ["number"], "arg_types": ["builtins.float"], "bound_args": [], "def_extras": {"first_arg": null}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "round", "ret_type": "builtins.int", "variables": []}, {".class": "CallableType", "arg_kinds": [0, 0], "arg_names": ["number", "ndigits"], "arg_types": ["builtins.float", {".class": "NoneTyp"}], "bound_args": [], "def_extras": {"first_arg": null}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "round", "ret_type": "builtins.int", "variables": []}, {".class": "CallableType", "arg_kinds": [0, 0], "arg_names": ["number", "ndigits"], "arg_types": ["builtins.float", "builtins.int"], "bound_args": [], "def_extras": {"first_arg": null}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "round", "ret_type": "builtins.float", "variables": []}, {".class": "CallableType", "arg_kinds": [0], "arg_names": ["number"], "arg_types": [{".class": "Instance", "args": [{".class": "TypeVarType", "fullname": "builtins._T", "id": -1, "name": "_T", "upper_bound": "builtins.object", "values": [], "variance": 0}], "type_ref": "typing.SupportsRound"}], "bound_args": [], "def_extras": {"first_arg": null}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "round", "ret_type": "builtins.int", "variables": [{".class": "TypeVarDef", "fullname": "builtins._T", "id": -1, "name": "_T", "upper_bound": "builtins.object", "values": [], "variance": 0}]}, {".class": "CallableType", "arg_kinds": [0, 0], "arg_names": ["number", "ndigits"], "arg_types": [{".class": "Instance", "args": [{".class": "TypeVarType", "fullname": "builtins._T", "id": -1, "name": "_T", "upper_bound": "builtins.object", "values": [], "variance": 0}], "type_ref": "typing.SupportsRound"}, {".class": "NoneTyp"}], "bound_args": [], "def_extras": {"first_arg": null}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "round", "ret_type": "builtins.int", "variables": [{".class": "TypeVarDef", "fullname": "builtins._T", "id": -1, "name": "_T", "upper_bound": "builtins.object", "values": [], "variance": 0}]}, {".class": "CallableType", "arg_kinds": [0, 0], "arg_names": ["number", "ndigits"], "arg_types": [{".class": "Instance", "args": [{".class": "TypeVarType", "fullname": "builtins._T", "id": -1, "name": "_T", "upper_bound": "builtins.object", "values": [], "variance": 0}], "type_ref": "typing.SupportsRound"}, "builtins.int"], "bound_args": [], "def_extras": {"first_arg": null}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "round", "ret_type": {".class": "TypeVarType", "fullname": "builtins._T", "id": -1, "name": "_T", "upper_bound": "builtins.object", "values": [], "variance": 0}, "variables": [{".class": "TypeVarDef", "fullname": "builtins._T", "id": -1, "name": "_T", "upper_bound": "builtins.object", "values": [], "variance": 0}]}]}}}, "set": {".class": "SymbolTableNode", "kind": "Gdef", "node": {".class": "TypeInfo", "_promote": null, "abstract_attributes": [], "bases": [{".class": "Instance", "args": [{".class": "TypeVarType", "fullname": "builtins._T", "id": 1, "name": "_T", "upper_bound": "builtins.object", "values": [], "variance": 0}], "type_ref": "typing.MutableSet"}], "declared_metaclass": null, "defn": {".class": "ClassDef", "fullname": "builtins.set", "name": "set", "type_vars": [{".class": "TypeVarDef", "fullname": "builtins._T", "id": 1, "name": "_T", "upper_bound": "builtins.object", "values": [], "variance": 0}]}, "flags": [], "fullname": "builtins.set", "metaclass_type": "abc.ABCMeta", "metadata": {}, "module_name": "builtins", "mro": ["builtins.set", "typing.MutableSet", "typing.AbstractSet", "typing.Collection", "typing.Iterable", "typing.Container", "builtins.object"], "names": {".class": "SymbolTable", "__and__": {".class": "SymbolTableNode", "kind": "Mdef", "node": {".class": "FuncDef", "arg_kinds": [0, 0], "arg_names": ["self", "s"], "flags": [], "fullname": "builtins.set.__and__", "name": "__and__", "type": {".class": "CallableType", "arg_kinds": [0, 0], "arg_names": [null, null], "arg_types": [{".class": "Instance", "args": [{".class": "TypeVarType", "fullname": "builtins._T", "id": 1, "name": "_T", "upper_bound": "builtins.object", "values": [], "variance": 0}], "type_ref": "builtins.set"}, {".class": "Instance", "args": ["builtins.object"], "type_ref": "typing.AbstractSet"}], "bound_args": [], "def_extras": {"first_arg": "self"}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "__and__ of set", "ret_type": {".class": "Instance", "args": [{".class": "TypeVarType", "fullname": "builtins._T", "id": 1, "name": "_T", "upper_bound": "builtins.object", "values": [], "variance": 0}], "type_ref": "builtins.set"}, "variables": []}}}, "__contains__": {".class": "SymbolTableNode", "kind": "Mdef", "node": {".class": "FuncDef", "arg_kinds": [0, 0], "arg_names": ["self", "o"], "flags": [], "fullname": "builtins.set.__contains__", "name": "__contains__", "type": {".class": "CallableType", "arg_kinds": [0, 0], "arg_names": [null, null], "arg_types": [{".class": "Instance", "args": [{".class": "TypeVarType", "fullname": "builtins._T", "id": 1, "name": "_T", "upper_bound": "builtins.object", "values": [], "variance": 0}], "type_ref": "builtins.set"}, "builtins.object"], "bound_args": [], "def_extras": {"first_arg": "self"}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "__contains__ of set", "ret_type": "builtins.bool", "variables": []}}}, "__ge__": {".class": "SymbolTableNode", "kind": "Mdef", "node": {".class": "FuncDef", "arg_kinds": [0, 0], "arg_names": ["self", "s"], "flags": [], "fullname": "builtins.set.__ge__", "name": "__ge__", "type": {".class": "CallableType", "arg_kinds": [0, 0], "arg_names": [null, null], "arg_types": [{".class": "Instance", "args": [{".class": "TypeVarType", "fullname": "builtins._T", "id": 1, "name": "_T", "upper_bound": "builtins.object", "values": [], "variance": 0}], "type_ref": "builtins.set"}, {".class": "Instance", "args": ["builtins.object"], "type_ref": "typing.AbstractSet"}], "bound_args": [], "def_extras": {"first_arg": "self"}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "__ge__ of set", "ret_type": "builtins.bool", "variables": []}}}, "__gt__": {".class": "SymbolTableNode", "kind": "Mdef", "node": {".class": "FuncDef", "arg_kinds": [0, 0], "arg_names": ["self", "s"], "flags": [], "fullname": "builtins.set.__gt__", "name": "__gt__", "type": {".class": "CallableType", "arg_kinds": [0, 0], "arg_names": [null, null], "arg_types": [{".class": "Instance", "args": [{".class": "TypeVarType", "fullname": "builtins._T", "id": 1, "name": "_T", "upper_bound": "builtins.object", "values": [], "variance": 0}], "type_ref": "builtins.set"}, {".class": "Instance", "args": ["builtins.object"], "type_ref": "typing.AbstractSet"}], "bound_args": [], "def_extras": {"first_arg": "self"}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "__gt__ of set", "ret_type": "builtins.bool", "variables": []}}}, "__iand__": {".class": "SymbolTableNode", "kind": "Mdef", "node": {".class": "FuncDef", "arg_kinds": [0, 0], "arg_names": ["self", "s"], "flags": [], "fullname": "builtins.set.__iand__", "name": "__iand__", "type": {".class": "CallableType", "arg_kinds": [0, 0], "arg_names": [null, null], "arg_types": [{".class": "Instance", "args": [{".class": "TypeVarType", "fullname": "builtins._T", "id": 1, "name": "_T", "upper_bound": "builtins.object", "values": [], "variance": 0}], "type_ref": "builtins.set"}, {".class": "Instance", "args": ["builtins.object"], "type_ref": "typing.AbstractSet"}], "bound_args": [], "def_extras": {"first_arg": "self"}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "__iand__ of set", "ret_type": {".class": "Instance", "args": [{".class": "TypeVarType", "fullname": "builtins._T", "id": 1, "name": "_T", "upper_bound": "builtins.object", "values": [], "variance": 0}], "type_ref": "builtins.set"}, "variables": []}}}, "__init__": {".class": "SymbolTableNode", "kind": "Mdef", "node": {".class": "FuncDef", "arg_kinds": [0, 1], "arg_names": ["self", "iterable"], "flags": [], "fullname": "builtins.set.__init__", "name": "__init__", "type": {".class": "CallableType", "arg_kinds": [0, 1], "arg_names": ["self", "iterable"], "arg_types": [{".class": "Instance", "args": [{".class": "TypeVarType", "fullname": "builtins._T", "id": 1, "name": "_T", "upper_bound": "builtins.object", "values": [], "variance": 0}], "type_ref": "builtins.set"}, {".class": "Instance", "args": [{".class": "TypeVarType", "fullname": "builtins._T", "id": 1, "name": "_T", "upper_bound": "builtins.object", "values": [], "variance": 0}], "type_ref": "typing.Iterable"}], "bound_args": [], "def_extras": {"first_arg": "self"}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "__init__ of set", "ret_type": {".class": "NoneTyp"}, "variables": []}}}, "__ior__": {".class": "SymbolTableNode", "kind": "Mdef", "node": {".class": "FuncDef", "arg_kinds": [0, 0], "arg_names": ["self", "s"], "flags": [], "fullname": "builtins.set.__ior__", "name": "__ior__", "type": {".class": "CallableType", "arg_kinds": [0, 0], "arg_names": [null, null], "arg_types": [{".class": "Instance", "args": [{".class": "TypeVarType", "fullname": "builtins._T", "id": 1, "name": "_T", "upper_bound": "builtins.object", "values": [], "variance": 0}], "type_ref": "builtins.set"}, {".class": "Instance", "args": [{".class": "TypeVarType", "fullname": "builtins._S", "id": -1, "name": "_S", "upper_bound": "builtins.object", "values": [], "variance": 0}], "type_ref": "typing.AbstractSet"}], "bound_args": [], "def_extras": {"first_arg": "self"}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "__ior__ of set", "ret_type": {".class": "Instance", "args": [{".class": "UnionType", "items": [{".class": "TypeVarType", "fullname": "builtins._T", "id": 1, "name": "_T", "upper_bound": "builtins.object", "values": [], "variance": 0}, {".class": "TypeVarType", "fullname": "builtins._S", "id": -1, "name": "_S", "upper_bound": "builtins.object", "values": [], "variance": 0}]}], "type_ref": "builtins.set"}, "variables": [{".class": "TypeVarDef", "fullname": "builtins._S", "id": -1, "name": "_S", "upper_bound": "builtins.object", "values": [], "variance": 0}]}}}, "__isub__": {".class": "SymbolTableNode", "kind": "Mdef", "node": {".class": "FuncDef", "arg_kinds": [0, 0], "arg_names": ["self", "s"], "flags": [], "fullname": "builtins.set.__isub__", "name": "__isub__", "type": {".class": "CallableType", "arg_kinds": [0, 0], "arg_names": [null, null], "arg_types": [{".class": "Instance", "args": [{".class": "TypeVarType", "fullname": "builtins._T", "id": 1, "name": "_T", "upper_bound": "builtins.object", "values": [], "variance": 0}], "type_ref": "builtins.set"}, {".class": "Instance", "args": ["builtins.object"], "type_ref": "typing.AbstractSet"}], "bound_args": [], "def_extras": {"first_arg": "self"}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "__isub__ of set", "ret_type": {".class": "Instance", "args": [{".class": "TypeVarType", "fullname": "builtins._T", "id": 1, "name": "_T", "upper_bound": "builtins.object", "values": [], "variance": 0}], "type_ref": "builtins.set"}, "variables": []}}}, "__iter__": {".class": "SymbolTableNode", "kind": "Mdef", "node": {".class": "FuncDef", "arg_kinds": [0], "arg_names": ["self"], "flags": [], "fullname": "builtins.set.__iter__", "name": "__iter__", "type": {".class": "CallableType", "arg_kinds": [0], "arg_names": [null], "arg_types": [{".class": "Instance", "args": [{".class": "TypeVarType", "fullname": "builtins._T", "id": 1, "name": "_T", "upper_bound": "builtins.object", "values": [], "variance": 0}], "type_ref": "builtins.set"}], "bound_args": [], "def_extras": {"first_arg": "self"}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "__iter__ of set", "ret_type": {".class": "Instance", "args": [{".class": "TypeVarType", "fullname": "builtins._T", "id": 1, "name": "_T", "upper_bound": "builtins.object", "values": [], "variance": 0}], "type_ref": "typing.Iterator"}, "variables": []}}}, "__ixor__": {".class": "SymbolTableNode", "kind": "Mdef", "node": {".class": "FuncDef", "arg_kinds": [0, 0], "arg_names": ["self", "s"], "flags": [], "fullname": "builtins.set.__ixor__", "name": "__ixor__", "type": {".class": "CallableType", "arg_kinds": [0, 0], "arg_names": [null, null], "arg_types": [{".class": "Instance", "args": [{".class": "TypeVarType", "fullname": "builtins._T", "id": 1, "name": "_T", "upper_bound": "builtins.object", "values": [], "variance": 0}], "type_ref": "builtins.set"}, {".class": "Instance", "args": [{".class": "TypeVarType", "fullname": "builtins._S", "id": -1, "name": "_S", "upper_bound": "builtins.object", "values": [], "variance": 0}], "type_ref": "typing.AbstractSet"}], "bound_args": [], "def_extras": {"first_arg": "self"}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "__ixor__ of set", "ret_type": {".class": "Instance", "args": [{".class": "UnionType", "items": [{".class": "TypeVarType", "fullname": "builtins._T", "id": 1, "name": "_T", "upper_bound": "builtins.object", "values": [], "variance": 0}, {".class": "TypeVarType", "fullname": "builtins._S", "id": -1, "name": "_S", "upper_bound": "builtins.object", "values": [], "variance": 0}]}], "type_ref": "builtins.set"}, "variables": [{".class": "TypeVarDef", "fullname": "builtins._S", "id": -1, "name": "_S", "upper_bound": "builtins.object", "values": [], "variance": 0}]}}}, "__le__": {".class": "SymbolTableNode", "kind": "Mdef", "node": {".class": "FuncDef", "arg_kinds": [0, 0], "arg_names": ["self", "s"], "flags": [], "fullname": "builtins.set.__le__", "name": "__le__", "type": {".class": "CallableType", "arg_kinds": [0, 0], "arg_names": [null, null], "arg_types": [{".class": "Instance", "args": [{".class": "TypeVarType", "fullname": "builtins._T", "id": 1, "name": "_T", "upper_bound": "builtins.object", "values": [], "variance": 0}], "type_ref": "builtins.set"}, {".class": "Instance", "args": ["builtins.object"], "type_ref": "typing.AbstractSet"}], "bound_args": [], "def_extras": {"first_arg": "self"}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "__le__ of set", "ret_type": "builtins.bool", "variables": []}}}, "__len__": {".class": "SymbolTableNode", "kind": "Mdef", "node": {".class": "FuncDef", "arg_kinds": [0], "arg_names": ["self"], "flags": [], "fullname": "builtins.set.__len__", "name": "__len__", "type": {".class": "CallableType", "arg_kinds": [0], "arg_names": [null], "arg_types": [{".class": "Instance", "args": [{".class": "TypeVarType", "fullname": "builtins._T", "id": 1, "name": "_T", "upper_bound": "builtins.object", "values": [], "variance": 0}], "type_ref": "builtins.set"}], "bound_args": [], "def_extras": {"first_arg": "self"}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "__len__ of set", "ret_type": "builtins.int", "variables": []}}}, "__lt__": {".class": "SymbolTableNode", "kind": "Mdef", "node": {".class": "FuncDef", "arg_kinds": [0, 0], "arg_names": ["self", "s"], "flags": [], "fullname": "builtins.set.__lt__", "name": "__lt__", "type": {".class": "CallableType", "arg_kinds": [0, 0], "arg_names": [null, null], "arg_types": [{".class": "Instance", "args": [{".class": "TypeVarType", "fullname": "builtins._T", "id": 1, "name": "_T", "upper_bound": "builtins.object", "values": [], "variance": 0}], "type_ref": "builtins.set"}, {".class": "Instance", "args": ["builtins.object"], "type_ref": "typing.AbstractSet"}], "bound_args": [], "def_extras": {"first_arg": "self"}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "__lt__ of set", "ret_type": "builtins.bool", "variables": []}}}, "__or__": {".class": "SymbolTableNode", "kind": "Mdef", "node": {".class": "FuncDef", "arg_kinds": [0, 0], "arg_names": ["self", "s"], "flags": [], "fullname": "builtins.set.__or__", "name": "__or__", "type": {".class": "CallableType", "arg_kinds": [0, 0], "arg_names": [null, null], "arg_types": [{".class": "Instance", "args": [{".class": "TypeVarType", "fullname": "builtins._T", "id": 1, "name": "_T", "upper_bound": "builtins.object", "values": [], "variance": 0}], "type_ref": "builtins.set"}, {".class": "Instance", "args": [{".class": "TypeVarType", "fullname": "builtins._S", "id": -1, "name": "_S", "upper_bound": "builtins.object", "values": [], "variance": 0}], "type_ref": "typing.AbstractSet"}], "bound_args": [], "def_extras": {"first_arg": "self"}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "__or__ of set", "ret_type": {".class": "Instance", "args": [{".class": "UnionType", "items": [{".class": "TypeVarType", "fullname": "builtins._T", "id": 1, "name": "_T", "upper_bound": "builtins.object", "values": [], "variance": 0}, {".class": "TypeVarType", "fullname": "builtins._S", "id": -1, "name": "_S", "upper_bound": "builtins.object", "values": [], "variance": 0}]}], "type_ref": "builtins.set"}, "variables": [{".class": "TypeVarDef", "fullname": "builtins._S", "id": -1, "name": "_S", "upper_bound": "builtins.object", "values": [], "variance": 0}]}}}, "__str__": {".class": "SymbolTableNode", "kind": "Mdef", "node": {".class": "FuncDef", "arg_kinds": [0], "arg_names": ["self"], "flags": [], "fullname": "builtins.set.__str__", "name": "__str__", "type": {".class": "CallableType", "arg_kinds": [0], "arg_names": [null], "arg_types": [{".class": "Instance", "args": [{".class": "TypeVarType", "fullname": "builtins._T", "id": 1, "name": "_T", "upper_bound": "builtins.object", "values": [], "variance": 0}], "type_ref": "builtins.set"}], "bound_args": [], "def_extras": {"first_arg": "self"}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "__str__ of set", "ret_type": "builtins.str", "variables": []}}}, "__sub__": {".class": "SymbolTableNode", "kind": "Mdef", "node": {".class": "FuncDef", "arg_kinds": [0, 0], "arg_names": ["self", "s"], "flags": [], "fullname": "builtins.set.__sub__", "name": "__sub__", "type": {".class": "CallableType", "arg_kinds": [0, 0], "arg_names": [null, null], "arg_types": [{".class": "Instance", "args": [{".class": "TypeVarType", "fullname": "builtins._T", "id": 1, "name": "_T", "upper_bound": "builtins.object", "values": [], "variance": 0}], "type_ref": "builtins.set"}, {".class": "Instance", "args": ["builtins.object"], "type_ref": "typing.AbstractSet"}], "bound_args": [], "def_extras": {"first_arg": "self"}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "__sub__ of set", "ret_type": {".class": "Instance", "args": [{".class": "TypeVarType", "fullname": "builtins._T", "id": 1, "name": "_T", "upper_bound": "builtins.object", "values": [], "variance": 0}], "type_ref": "builtins.set"}, "variables": []}}}, "__xor__": {".class": "SymbolTableNode", "kind": "Mdef", "node": {".class": "FuncDef", "arg_kinds": [0, 0], "arg_names": ["self", "s"], "flags": [], "fullname": "builtins.set.__xor__", "name": "__xor__", "type": {".class": "CallableType", "arg_kinds": [0, 0], "arg_names": [null, null], "arg_types": [{".class": "Instance", "args": [{".class": "TypeVarType", "fullname": "builtins._T", "id": 1, "name": "_T", "upper_bound": "builtins.object", "values": [], "variance": 0}], "type_ref": "builtins.set"}, {".class": "Instance", "args": [{".class": "TypeVarType", "fullname": "builtins._S", "id": -1, "name": "_S", "upper_bound": "builtins.object", "values": [], "variance": 0}], "type_ref": "typing.AbstractSet"}], "bound_args": [], "def_extras": {"first_arg": "self"}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "__xor__ of set", "ret_type": {".class": "Instance", "args": [{".class": "UnionType", "items": [{".class": "TypeVarType", "fullname": "builtins._T", "id": 1, "name": "_T", "upper_bound": "builtins.object", "values": [], "variance": 0}, {".class": "TypeVarType", "fullname": "builtins._S", "id": -1, "name": "_S", "upper_bound": "builtins.object", "values": [], "variance": 0}]}], "type_ref": "builtins.set"}, "variables": [{".class": "TypeVarDef", "fullname": "builtins._S", "id": -1, "name": "_S", "upper_bound": "builtins.object", "values": [], "variance": 0}]}}}, "add": {".class": "SymbolTableNode", "kind": "Mdef", "node": {".class": "FuncDef", "arg_kinds": [0, 0], "arg_names": ["self", "element"], "flags": [], "fullname": "builtins.set.add", "name": "add", "type": {".class": "CallableType", "arg_kinds": [0, 0], "arg_names": ["self", "element"], "arg_types": [{".class": "Instance", "args": [{".class": "TypeVarType", "fullname": "builtins._T", "id": 1, "name": "_T", "upper_bound": "builtins.object", "values": [], "variance": 0}], "type_ref": "builtins.set"}, {".class": "TypeVarType", "fullname": "builtins._T", "id": 1, "name": "_T", "upper_bound": "builtins.object", "values": [], "variance": 0}], "bound_args": [], "def_extras": {"first_arg": "self"}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "add of set", "ret_type": {".class": "NoneTyp"}, "variables": []}}}, "clear": {".class": "SymbolTableNode", "kind": "Mdef", "node": {".class": "FuncDef", "arg_kinds": [0], "arg_names": ["self"], "flags": [], "fullname": "builtins.set.clear", "name": "clear", "type": {".class": "CallableType", "arg_kinds": [0], "arg_names": ["self"], "arg_types": [{".class": "Instance", "args": [{".class": "TypeVarType", "fullname": "builtins._T", "id": 1, "name": "_T", "upper_bound": "builtins.object", "values": [], "variance": 0}], "type_ref": "builtins.set"}], "bound_args": [], "def_extras": {"first_arg": "self"}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "clear of set", "ret_type": {".class": "NoneTyp"}, "variables": []}}}, "copy": {".class": "SymbolTableNode", "kind": "Mdef", "node": {".class": "FuncDef", "arg_kinds": [0], "arg_names": ["self"], "flags": [], "fullname": "builtins.set.copy", "name": "copy", "type": {".class": "CallableType", "arg_kinds": [0], "arg_names": ["self"], "arg_types": [{".class": "Instance", "args": [{".class": "TypeVarType", "fullname": "builtins._T", "id": 1, "name": "_T", "upper_bound": "builtins.object", "values": [], "variance": 0}], "type_ref": "builtins.set"}], "bound_args": [], "def_extras": {"first_arg": "self"}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "copy of set", "ret_type": {".class": "Instance", "args": [{".class": "TypeVarType", "fullname": "builtins._T", "id": 1, "name": "_T", "upper_bound": "builtins.object", "values": [], "variance": 0}], "type_ref": "builtins.set"}, "variables": []}}}, "difference": {".class": "SymbolTableNode", "kind": "Mdef", "node": {".class": "FuncDef", "arg_kinds": [0, 2], "arg_names": ["self", "s"], "flags": [], "fullname": "builtins.set.difference", "name": "difference", "type": {".class": "CallableType", "arg_kinds": [0, 2], "arg_names": ["self", "s"], "arg_types": [{".class": "Instance", "args": [{".class": "TypeVarType", "fullname": "builtins._T", "id": 1, "name": "_T", "upper_bound": "builtins.object", "values": [], "variance": 0}], "type_ref": "builtins.set"}, {".class": "Instance", "args": [{".class": "AnyType", "missing_import_name": null, "source_any": null, "type_of_any": 2}], "type_ref": "typing.Iterable"}], "bound_args": [], "def_extras": {"first_arg": "self"}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "difference of set", "ret_type": {".class": "Instance", "args": [{".class": "TypeVarType", "fullname": "builtins._T", "id": 1, "name": "_T", "upper_bound": "builtins.object", "values": [], "variance": 0}], "type_ref": "builtins.set"}, "variables": []}}}, "difference_update": {".class": "SymbolTableNode", "kind": "Mdef", "node": {".class": "FuncDef", "arg_kinds": [0, 2], "arg_names": ["self", "s"], "flags": [], "fullname": "builtins.set.difference_update", "name": "difference_update", "type": {".class": "CallableType", "arg_kinds": [0, 2], "arg_names": ["self", "s"], "arg_types": [{".class": "Instance", "args": [{".class": "TypeVarType", "fullname": "builtins._T", "id": 1, "name": "_T", "upper_bound": "builtins.object", "values": [], "variance": 0}], "type_ref": "builtins.set"}, {".class": "Instance", "args": [{".class": "AnyType", "missing_import_name": null, "source_any": null, "type_of_any": 2}], "type_ref": "typing.Iterable"}], "bound_args": [], "def_extras": {"first_arg": "self"}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "difference_update of set", "ret_type": {".class": "NoneTyp"}, "variables": []}}}, "discard": {".class": "SymbolTableNode", "kind": "Mdef", "node": {".class": "FuncDef", "arg_kinds": [0, 0], "arg_names": ["self", "element"], "flags": [], "fullname": "builtins.set.discard", "name": "discard", "type": {".class": "CallableType", "arg_kinds": [0, 0], "arg_names": ["self", "element"], "arg_types": [{".class": "Instance", "args": [{".class": "TypeVarType", "fullname": "builtins._T", "id": 1, "name": "_T", "upper_bound": "builtins.object", "values": [], "variance": 0}], "type_ref": "builtins.set"}, {".class": "TypeVarType", "fullname": "builtins._T", "id": 1, "name": "_T", "upper_bound": "builtins.object", "values": [], "variance": 0}], "bound_args": [], "def_extras": {"first_arg": "self"}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "discard of set", "ret_type": {".class": "NoneTyp"}, "variables": []}}}, "intersection": {".class": "SymbolTableNode", "kind": "Mdef", "node": {".class": "FuncDef", "arg_kinds": [0, 2], "arg_names": ["self", "s"], "flags": [], "fullname": "builtins.set.intersection", "name": "intersection", "type": {".class": "CallableType", "arg_kinds": [0, 2], "arg_names": ["self", "s"], "arg_types": [{".class": "Instance", "args": [{".class": "TypeVarType", "fullname": "builtins._T", "id": 1, "name": "_T", "upper_bound": "builtins.object", "values": [], "variance": 0}], "type_ref": "builtins.set"}, {".class": "Instance", "args": [{".class": "AnyType", "missing_import_name": null, "source_any": null, "type_of_any": 2}], "type_ref": "typing.Iterable"}], "bound_args": [], "def_extras": {"first_arg": "self"}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "intersection of set", "ret_type": {".class": "Instance", "args": [{".class": "TypeVarType", "fullname": "builtins._T", "id": 1, "name": "_T", "upper_bound": "builtins.object", "values": [], "variance": 0}], "type_ref": "builtins.set"}, "variables": []}}}, "intersection_update": {".class": "SymbolTableNode", "kind": "Mdef", "node": {".class": "FuncDef", "arg_kinds": [0, 2], "arg_names": ["self", "s"], "flags": [], "fullname": "builtins.set.intersection_update", "name": "intersection_update", "type": {".class": "CallableType", "arg_kinds": [0, 2], "arg_names": ["self", "s"], "arg_types": [{".class": "Instance", "args": [{".class": "TypeVarType", "fullname": "builtins._T", "id": 1, "name": "_T", "upper_bound": "builtins.object", "values": [], "variance": 0}], "type_ref": "builtins.set"}, {".class": "Instance", "args": [{".class": "AnyType", "missing_import_name": null, "source_any": null, "type_of_any": 2}], "type_ref": "typing.Iterable"}], "bound_args": [], "def_extras": {"first_arg": "self"}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "intersection_update of set", "ret_type": {".class": "NoneTyp"}, "variables": []}}}, "isdisjoint": {".class": "SymbolTableNode", "kind": "Mdef", "node": {".class": "FuncDef", "arg_kinds": [0, 0], "arg_names": ["self", "s"], "flags": [], "fullname": "builtins.set.isdisjoint", "name": "isdisjoint", "type": {".class": "CallableType", "arg_kinds": [0, 0], "arg_names": ["self", "s"], "arg_types": [{".class": "Instance", "args": [{".class": "TypeVarType", "fullname": "builtins._T", "id": 1, "name": "_T", "upper_bound": "builtins.object", "values": [], "variance": 0}], "type_ref": "builtins.set"}, {".class": "Instance", "args": [{".class": "AnyType", "missing_import_name": null, "source_any": null, "type_of_any": 2}], "type_ref": "typing.Iterable"}], "bound_args": [], "def_extras": {"first_arg": "self"}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "isdisjoint of set", "ret_type": "builtins.bool", "variables": []}}}, "issubset": {".class": "SymbolTableNode", "kind": "Mdef", "node": {".class": "FuncDef", "arg_kinds": [0, 0], "arg_names": ["self", "s"], "flags": [], "fullname": "builtins.set.issubset", "name": "issubset", "type": {".class": "CallableType", "arg_kinds": [0, 0], "arg_names": ["self", "s"], "arg_types": [{".class": "Instance", "args": [{".class": "TypeVarType", "fullname": "builtins._T", "id": 1, "name": "_T", "upper_bound": "builtins.object", "values": [], "variance": 0}], "type_ref": "builtins.set"}, {".class": "Instance", "args": [{".class": "AnyType", "missing_import_name": null, "source_any": null, "type_of_any": 2}], "type_ref": "typing.Iterable"}], "bound_args": [], "def_extras": {"first_arg": "self"}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "issubset of set", "ret_type": "builtins.bool", "variables": []}}}, "issuperset": {".class": "SymbolTableNode", "kind": "Mdef", "node": {".class": "FuncDef", "arg_kinds": [0, 0], "arg_names": ["self", "s"], "flags": [], "fullname": "builtins.set.issuperset", "name": "issuperset", "type": {".class": "CallableType", "arg_kinds": [0, 0], "arg_names": ["self", "s"], "arg_types": [{".class": "Instance", "args": [{".class": "TypeVarType", "fullname": "builtins._T", "id": 1, "name": "_T", "upper_bound": "builtins.object", "values": [], "variance": 0}], "type_ref": "builtins.set"}, {".class": "Instance", "args": [{".class": "AnyType", "missing_import_name": null, "source_any": null, "type_of_any": 2}], "type_ref": "typing.Iterable"}], "bound_args": [], "def_extras": {"first_arg": "self"}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "issuperset of set", "ret_type": "builtins.bool", "variables": []}}}, "pop": {".class": "SymbolTableNode", "kind": "Mdef", "node": {".class": "FuncDef", "arg_kinds": [0], "arg_names": ["self"], "flags": [], "fullname": "builtins.set.pop", "name": "pop", "type": {".class": "CallableType", "arg_kinds": [0], "arg_names": ["self"], "arg_types": [{".class": "Instance", "args": [{".class": "TypeVarType", "fullname": "builtins._T", "id": 1, "name": "_T", "upper_bound": "builtins.object", "values": [], "variance": 0}], "type_ref": "builtins.set"}], "bound_args": [], "def_extras": {"first_arg": "self"}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "pop of set", "ret_type": {".class": "TypeVarType", "fullname": "builtins._T", "id": 1, "name": "_T", "upper_bound": "builtins.object", "values": [], "variance": 0}, "variables": []}}}, "remove": {".class": "SymbolTableNode", "kind": "Mdef", "node": {".class": "FuncDef", "arg_kinds": [0, 0], "arg_names": ["self", "element"], "flags": [], "fullname": "builtins.set.remove", "name": "remove", "type": {".class": "CallableType", "arg_kinds": [0, 0], "arg_names": ["self", "element"], "arg_types": [{".class": "Instance", "args": [{".class": "TypeVarType", "fullname": "builtins._T", "id": 1, "name": "_T", "upper_bound": "builtins.object", "values": [], "variance": 0}], "type_ref": "builtins.set"}, {".class": "TypeVarType", "fullname": "builtins._T", "id": 1, "name": "_T", "upper_bound": "builtins.object", "values": [], "variance": 0}], "bound_args": [], "def_extras": {"first_arg": "self"}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "remove of set", "ret_type": {".class": "NoneTyp"}, "variables": []}}}, "symmetric_difference": {".class": "SymbolTableNode", "kind": "Mdef", "node": {".class": "FuncDef", "arg_kinds": [0, 0], "arg_names": ["self", "s"], "flags": [], "fullname": "builtins.set.symmetric_difference", "name": "symmetric_difference", "type": {".class": "CallableType", "arg_kinds": [0, 0], "arg_names": ["self", "s"], "arg_types": [{".class": "Instance", "args": [{".class": "TypeVarType", "fullname": "builtins._T", "id": 1, "name": "_T", "upper_bound": "builtins.object", "values": [], "variance": 0}], "type_ref": "builtins.set"}, {".class": "Instance", "args": [{".class": "TypeVarType", "fullname": "builtins._T", "id": 1, "name": "_T", "upper_bound": "builtins.object", "values": [], "variance": 0}], "type_ref": "typing.Iterable"}], "bound_args": [], "def_extras": {"first_arg": "self"}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "symmetric_difference of set", "ret_type": {".class": "Instance", "args": [{".class": "TypeVarType", "fullname": "builtins._T", "id": 1, "name": "_T", "upper_bound": "builtins.object", "values": [], "variance": 0}], "type_ref": "builtins.set"}, "variables": []}}}, "symmetric_difference_update": {".class": "SymbolTableNode", "kind": "Mdef", "node": {".class": "FuncDef", "arg_kinds": [0, 0], "arg_names": ["self", "s"], "flags": [], "fullname": "builtins.set.symmetric_difference_update", "name": "symmetric_difference_update", "type": {".class": "CallableType", "arg_kinds": [0, 0], "arg_names": ["self", "s"], "arg_types": [{".class": "Instance", "args": [{".class": "TypeVarType", "fullname": "builtins._T", "id": 1, "name": "_T", "upper_bound": "builtins.object", "values": [], "variance": 0}], "type_ref": "builtins.set"}, {".class": "Instance", "args": [{".class": "TypeVarType", "fullname": "builtins._T", "id": 1, "name": "_T", "upper_bound": "builtins.object", "values": [], "variance": 0}], "type_ref": "typing.Iterable"}], "bound_args": [], "def_extras": {"first_arg": "self"}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "symmetric_difference_update of set", "ret_type": {".class": "NoneTyp"}, "variables": []}}}, "union": {".class": "SymbolTableNode", "kind": "Mdef", "node": {".class": "FuncDef", "arg_kinds": [0, 2], "arg_names": ["self", "s"], "flags": [], "fullname": "builtins.set.union", "name": "union", "type": {".class": "CallableType", "arg_kinds": [0, 2], "arg_names": ["self", "s"], "arg_types": [{".class": "Instance", "args": [{".class": "TypeVarType", "fullname": "builtins._T", "id": 1, "name": "_T", "upper_bound": "builtins.object", "values": [], "variance": 0}], "type_ref": "builtins.set"}, {".class": "Instance", "args": [{".class": "TypeVarType", "fullname": "builtins._T", "id": 1, "name": "_T", "upper_bound": "builtins.object", "values": [], "variance": 0}], "type_ref": "typing.Iterable"}], "bound_args": [], "def_extras": {"first_arg": "self"}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "union of set", "ret_type": {".class": "Instance", "args": [{".class": "TypeVarType", "fullname": "builtins._T", "id": 1, "name": "_T", "upper_bound": "builtins.object", "values": [], "variance": 0}], "type_ref": "builtins.set"}, "variables": []}}}, "update": {".class": "SymbolTableNode", "kind": "Mdef", "node": {".class": "FuncDef", "arg_kinds": [0, 2], "arg_names": ["self", "s"], "flags": [], "fullname": "builtins.set.update", "name": "update", "type": {".class": "CallableType", "arg_kinds": [0, 2], "arg_names": ["self", "s"], "arg_types": [{".class": "Instance", "args": [{".class": "TypeVarType", "fullname": "builtins._T", "id": 1, "name": "_T", "upper_bound": "builtins.object", "values": [], "variance": 0}], "type_ref": "builtins.set"}, {".class": "Instance", "args": [{".class": "TypeVarType", "fullname": "builtins._T", "id": 1, "name": "_T", "upper_bound": "builtins.object", "values": [], "variance": 0}], "type_ref": "typing.Iterable"}], "bound_args": [], "def_extras": {"first_arg": "self"}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "update of set", "ret_type": {".class": "NoneTyp"}, "variables": []}}}}, "tuple_type": null, "type_vars": ["_T"], "typeddict_type": null}}, "setattr": {".class": "SymbolTableNode", "kind": "Gdef", "node": {".class": "FuncDef", "arg_kinds": [0, 0, 0], "arg_names": ["object", "name", "value"], "flags": [], "fullname": "builtins.setattr", "name": "setattr", "type": {".class": "CallableType", "arg_kinds": [0, 0, 0], "arg_names": ["object", "name", "value"], "arg_types": [{".class": "AnyType", "missing_import_name": null, "source_any": null, "type_of_any": 2}, "builtins.str", {".class": "AnyType", "missing_import_name": null, "source_any": null, "type_of_any": 2}], "bound_args": [], "def_extras": {"first_arg": null}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "setattr", "ret_type": {".class": "NoneTyp"}, "variables": []}}}, "slice": {".class": "SymbolTableNode", "kind": "Gdef", "node": {".class": "TypeInfo", "_promote": null, "abstract_attributes": [], "bases": ["builtins.object"], "declared_metaclass": null, "defn": {".class": "ClassDef", "fullname": "builtins.slice", "name": "slice", "type_vars": []}, "flags": [], "fullname": "builtins.slice", "metaclass_type": null, "metadata": {}, "module_name": "builtins", "mro": ["builtins.slice", "builtins.object"], "names": {".class": "SymbolTable", "__init__": {".class": "SymbolTableNode", "kind": "Mdef", "node": {".class": "OverloadedFuncDef", "flags": [], "fullname": "builtins.slice.__init__", "impl": null, "items": [{".class": "Decorator", "func": {".class": "FuncDef", "arg_kinds": [0, 0], "arg_names": ["self", "stop"], "flags": ["is_overload", "is_decorated"], "fullname": "builtins.slice.__init__", "name": "__init__", "type": {".class": "CallableType", "arg_kinds": [0, 0], "arg_names": ["self", "stop"], "arg_types": ["builtins.slice", {".class": "UnionType", "items": ["builtins.int", {".class": "NoneTyp"}]}], "bound_args": [], "def_extras": {"first_arg": "self"}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "__init__ of slice", "ret_type": {".class": "NoneTyp"}, "variables": []}}, "is_overload": true, "var": {".class": "Var", "flags": [], "fullname": null, "name": "__init__", "type": null}}, {".class": "Decorator", "func": {".class": "FuncDef", "arg_kinds": [0, 0, 0, 1], "arg_names": ["self", "start", "stop", "step"], "flags": ["is_overload", "is_decorated"], "fullname": "builtins.slice.__init__", "name": "__init__", "type": {".class": "CallableType", "arg_kinds": [0, 0, 0, 1], "arg_names": ["self", "start", "stop", "step"], "arg_types": ["builtins.slice", {".class": "UnionType", "items": ["builtins.int", {".class": "NoneTyp"}]}, {".class": "UnionType", "items": ["builtins.int", {".class": "NoneTyp"}]}, {".class": "UnionType", "items": ["builtins.int", {".class": "NoneTyp"}]}], "bound_args": [], "def_extras": {"first_arg": "self"}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "__init__ of slice", "ret_type": {".class": "NoneTyp"}, "variables": []}}, "is_overload": true, "var": {".class": "Var", "flags": [], "fullname": null, "name": "__init__", "type": null}}], "type": {".class": "Overloaded", "items": [{".class": "CallableType", "arg_kinds": [0, 0], "arg_names": ["self", "stop"], "arg_types": ["builtins.slice", {".class": "UnionType", "items": ["builtins.int", {".class": "NoneTyp"}]}], "bound_args": [], "def_extras": {"first_arg": "self"}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "__init__ of slice", "ret_type": {".class": "NoneTyp"}, "variables": []}, {".class": "CallableType", "arg_kinds": [0, 0, 0, 1], "arg_names": ["self", "start", "stop", "step"], "arg_types": ["builtins.slice", {".class": "UnionType", "items": ["builtins.int", {".class": "NoneTyp"}]}, {".class": "UnionType", "items": ["builtins.int", {".class": "NoneTyp"}]}, {".class": "UnionType", "items": ["builtins.int", {".class": "NoneTyp"}]}], "bound_args": [], "def_extras": {"first_arg": "self"}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "__init__ of slice", "ret_type": {".class": "NoneTyp"}, "variables": []}]}}}, "indices": {".class": "SymbolTableNode", "kind": "Mdef", "node": {".class": "FuncDef", "arg_kinds": [0, 0], "arg_names": ["self", "len"], "flags": [], "fullname": "builtins.slice.indices", "name": "indices", "type": {".class": "CallableType", "arg_kinds": [0, 0], "arg_names": ["self", "len"], "arg_types": ["builtins.slice", "builtins.int"], "bound_args": [], "def_extras": {"first_arg": "self"}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "indices of slice", "ret_type": {".class": "TupleType", "fallback": {".class": "Instance", "args": [{".class": "AnyType", "missing_import_name": null, "source_any": null, "type_of_any": 6}], "type_ref": "builtins.tuple"}, "implicit": false, "items": ["builtins.int", "builtins.int", "builtins.int"]}, "variables": []}}}, "start": {".class": "SymbolTableNode", "kind": "Mdef", "node": {".class": "Var", "flags": ["is_initialized_in_class"], "fullname": "builtins.slice.start", "name": "start", "type": {".class": "UnionType", "items": ["builtins.int", {".class": "NoneTyp"}]}}}, "step": {".class": "SymbolTableNode", "kind": "Mdef", "node": {".class": "Var", "flags": ["is_initialized_in_class"], "fullname": "builtins.slice.step", "name": "step", "type": {".class": "UnionType", "items": ["builtins.int", {".class": "NoneTyp"}]}}}, "stop": {".class": "SymbolTableNode", "kind": "Mdef", "node": {".class": "Var", "flags": ["is_initialized_in_class"], "fullname": "builtins.slice.stop", "name": "stop", "type": {".class": "UnionType", "items": ["builtins.int", {".class": "NoneTyp"}]}}}}, "tuple_type": null, "type_vars": [], "typeddict_type": null}}, "sorted": {".class": "SymbolTableNode", "kind": "Gdef", "node": {".class": "FuncDef", "arg_kinds": [0, 5, 5], "arg_names": ["iterable", "key", "reverse"], "flags": ["is_conditional"], "fullname": "builtins.sorted", "name": "sorted", "type": {".class": "CallableType", "arg_kinds": [0, 5, 5], "arg_names": ["iterable", "key", "reverse"], "arg_types": [{".class": "Instance", "args": [{".class": "TypeVarType", "fullname": "builtins._T", "id": -1, "name": "_T", "upper_bound": "builtins.object", "values": [], "variance": 0}], "type_ref": "typing.Iterable"}, {".class": "UnionType", "items": [{".class": "CallableType", "arg_kinds": [0], "arg_names": [null], "arg_types": [{".class": "TypeVarType", "fullname": "builtins._T", "id": -1, "name": "_T", "upper_bound": "builtins.object", "values": [], "variance": 0}], "bound_args": [], "def_extras": {}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": null, "ret_type": {".class": "AnyType", "missing_import_name": null, "source_any": null, "type_of_any": 2}, "variables": []}, {".class": "NoneTyp"}]}, "builtins.bool"], "bound_args": [], "def_extras": {"first_arg": null}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "sorted", "ret_type": {".class": "Instance", "args": [{".class": "TypeVarType", "fullname": "builtins._T", "id": -1, "name": "_T", "upper_bound": "builtins.object", "values": [], "variance": 0}], "type_ref": "builtins.list"}, "variables": [{".class": "TypeVarDef", "fullname": "builtins._T", "id": -1, "name": "_T", "upper_bound": "builtins.object", "values": [], "variance": 0}]}}}, "staticmethod": {".class": "SymbolTableNode", "kind": "Gdef", "node": {".class": "TypeInfo", "_promote": null, "abstract_attributes": [], "bases": ["builtins.object"], "declared_metaclass": null, "defn": {".class": "ClassDef", "fullname": "builtins.staticmethod", "name": "staticmethod", "type_vars": []}, "flags": [], "fullname": "builtins.staticmethod", "metaclass_type": null, "metadata": {}, "module_name": "builtins", "mro": ["builtins.staticmethod", "builtins.object"], "names": {".class": "SymbolTable", "__func__": {".class": "SymbolTableNode", "kind": "Mdef", "node": {".class": "Var", "flags": ["is_initialized_in_class"], "fullname": "builtins.staticmethod.__func__", "name": "__func__", "type": {".class": "CallableType", "arg_kinds": [2, 4], "arg_names": [null, null], "arg_types": [{".class": "AnyType", "missing_import_name": null, "source_any": null, "type_of_any": 4}, {".class": "AnyType", "missing_import_name": null, "source_any": null, "type_of_any": 4}], "bound_args": [], "def_extras": {}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": true, "name": null, "ret_type": {".class": "AnyType", "missing_import_name": null, "source_any": null, "type_of_any": 4}, "variables": []}}}, "__get__": {".class": "SymbolTableNode", "kind": "Mdef", "node": {".class": "FuncDef", "arg_kinds": [0, 0, 1], "arg_names": ["self", "obj", "type"], "flags": [], "fullname": "builtins.staticmethod.__get__", "name": "__get__", "type": {".class": "CallableType", "arg_kinds": [0, 0, 1], "arg_names": ["self", "obj", "type"], "arg_types": ["builtins.staticmethod", {".class": "TypeVarType", "fullname": "builtins._T", "id": -1, "name": "_T", "upper_bound": "builtins.object", "values": [], "variance": 0}, {".class": "UnionType", "items": [{".class": "TypeType", "item": {".class": "TypeVarType", "fullname": "builtins._T", "id": -1, "name": "_T", "upper_bound": "builtins.object", "values": [], "variance": 0}}, {".class": "NoneTyp"}]}], "bound_args": [], "def_extras": {"first_arg": "self"}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "__get__ of staticmethod", "ret_type": {".class": "CallableType", "arg_kinds": [2, 4], "arg_names": [null, null], "arg_types": [{".class": "AnyType", "missing_import_name": null, "source_any": null, "type_of_any": 4}, {".class": "AnyType", "missing_import_name": null, "source_any": null, "type_of_any": 4}], "bound_args": [], "def_extras": {}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": true, "name": null, "ret_type": {".class": "AnyType", "missing_import_name": null, "source_any": null, "type_of_any": 4}, "variables": []}, "variables": [{".class": "TypeVarDef", "fullname": "builtins._T", "id": -1, "name": "_T", "upper_bound": "builtins.object", "values": [], "variance": 0}]}}}, "__init__": {".class": "SymbolTableNode", "kind": "Mdef", "node": {".class": "FuncDef", "arg_kinds": [0, 0], "arg_names": ["self", "f"], "flags": [], "fullname": "builtins.staticmethod.__init__", "name": "__init__", "type": {".class": "CallableType", "arg_kinds": [0, 0], "arg_names": ["self", "f"], "arg_types": ["builtins.staticmethod", {".class": "CallableType", "arg_kinds": [2, 4], "arg_names": [null, null], "arg_types": [{".class": "AnyType", "missing_import_name": null, "source_any": null, "type_of_any": 4}, {".class": "AnyType", "missing_import_name": null, "source_any": null, "type_of_any": 4}], "bound_args": [], "def_extras": {}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": true, "name": null, "ret_type": {".class": "AnyType", "missing_import_name": null, "source_any": null, "type_of_any": 4}, "variables": []}], "bound_args": [], "def_extras": {"first_arg": "self"}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "__init__ of staticmethod", "ret_type": {".class": "NoneTyp"}, "variables": []}}}, "__isabstractmethod__": {".class": "SymbolTableNode", "kind": "Mdef", "node": {".class": "Var", "flags": ["is_initialized_in_class"], "fullname": "builtins.staticmethod.__isabstractmethod__", "name": "__isabstractmethod__", "type": "builtins.bool"}}, "__new__": {".class": "SymbolTableNode", "kind": "Mdef", "node": {".class": "FuncDef", "arg_kinds": [0, 2, 4], "arg_names": ["cls", "args", "kwargs"], "flags": [], "fullname": "builtins.staticmethod.__new__", "name": "__new__", "type": {".class": "CallableType", "arg_kinds": [0, 2, 4], "arg_names": ["cls", "args", "kwargs"], "arg_types": [{".class": "TypeType", "item": {".class": "TypeVarType", "fullname": "builtins._T", "id": -1, "name": "_T", "upper_bound": "builtins.object", "values": [], "variance": 0}}, {".class": "AnyType", "missing_import_name": null, "source_any": null, "type_of_any": 2}, {".class": "AnyType", "missing_import_name": null, "source_any": null, "type_of_any": 2}], "bound_args": [], "def_extras": {"first_arg": "cls"}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "__new__ of staticmethod", "ret_type": {".class": "TypeVarType", "fullname": "builtins._T", "id": -1, "name": "_T", "upper_bound": "builtins.object", "values": [], "variance": 0}, "variables": [{".class": "TypeVarDef", "fullname": "builtins._T", "id": -1, "name": "_T", "upper_bound": "builtins.object", "values": [], "variance": 0}]}}}}, "tuple_type": null, "type_vars": [], "typeddict_type": null}}, "str": {".class": "SymbolTableNode", "kind": "Gdef", "node": {".class": "TypeInfo", "_promote": null, "abstract_attributes": [], "bases": [{".class": "Instance", "args": ["builtins.str"], "type_ref": "typing.Sequence"}, "builtins.object"], "declared_metaclass": null, "defn": {".class": "ClassDef", "fullname": "builtins.str", "name": "str", "type_vars": []}, "flags": [], "fullname": "builtins.str", "metaclass_type": "abc.ABCMeta", "metadata": {}, "module_name": "builtins", "mro": ["builtins.str", "typing.Sequence", "typing.Collection", "typing.Iterable", "typing.Container", "typing.Reversible", "builtins.object"], "names": {".class": "SymbolTable", "__add__": {".class": "SymbolTableNode", "kind": "Mdef", "node": {".class": "FuncDef", "arg_kinds": [0, 0], "arg_names": ["self", "s"], "flags": ["is_conditional"], "fullname": "builtins.str.__add__", "name": "__add__", "type": {".class": "CallableType", "arg_kinds": [0, 0], "arg_names": [null, null], "arg_types": ["builtins.str", "builtins.str"], "bound_args": [], "def_extras": {"first_arg": "self"}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "__add__ of str", "ret_type": "builtins.str", "variables": []}}}, "__contains__": {".class": "SymbolTableNode", "kind": "Mdef", "node": {".class": "FuncDef", "arg_kinds": [0, 0], "arg_names": ["self", "o"], "flags": [], "fullname": "builtins.str.__contains__", "name": "__contains__", "type": {".class": "CallableType", "arg_kinds": [0, 0], "arg_names": [null, null], "arg_types": ["builtins.str", "builtins.object"], "bound_args": [], "def_extras": {"first_arg": "self"}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "__contains__ of str", "ret_type": "builtins.bool", "variables": []}}}, "__eq__": {".class": "SymbolTableNode", "kind": "Mdef", "node": {".class": "FuncDef", "arg_kinds": [0, 0], "arg_names": ["self", "x"], "flags": [], "fullname": "builtins.str.__eq__", "name": "__eq__", "type": {".class": "CallableType", "arg_kinds": [0, 0], "arg_names": [null, null], "arg_types": ["builtins.str", "builtins.object"], "bound_args": [], "def_extras": {"first_arg": "self"}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "__eq__ of str", "ret_type": "builtins.bool", "variables": []}}}, "__ge__": {".class": "SymbolTableNode", "kind": "Mdef", "node": {".class": "FuncDef", "arg_kinds": [0, 0], "arg_names": ["self", "x"], "flags": [], "fullname": "builtins.str.__ge__", "name": "__ge__", "type": {".class": "CallableType", "arg_kinds": [0, 0], "arg_names": [null, null], "arg_types": ["builtins.str", "builtins.str"], "bound_args": [], "def_extras": {"first_arg": "self"}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "__ge__ of str", "ret_type": "builtins.bool", "variables": []}}}, "__getitem__": {".class": "SymbolTableNode", "kind": "Mdef", "node": {".class": "FuncDef", "arg_kinds": [0, 0], "arg_names": ["self", "i"], "flags": [], "fullname": "builtins.str.__getitem__", "name": "__getitem__", "type": {".class": "CallableType", "arg_kinds": [0, 0], "arg_names": [null, null], "arg_types": ["builtins.str", {".class": "UnionType", "items": ["builtins.int", "builtins.slice"]}], "bound_args": [], "def_extras": {"first_arg": "self"}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "__getitem__ of str", "ret_type": "builtins.str", "variables": []}}}, "__getnewargs__": {".class": "SymbolTableNode", "kind": "Mdef", "node": {".class": "FuncDef", "arg_kinds": [0], "arg_names": ["self"], "flags": [], "fullname": "builtins.str.__getnewargs__", "name": "__getnewargs__", "type": {".class": "CallableType", "arg_kinds": [0], "arg_names": ["self"], "arg_types": ["builtins.str"], "bound_args": [], "def_extras": {"first_arg": "self"}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "__getnewargs__ of str", "ret_type": {".class": "TupleType", "fallback": {".class": "Instance", "args": [{".class": "AnyType", "missing_import_name": null, "source_any": null, "type_of_any": 6}], "type_ref": "builtins.tuple"}, "implicit": false, "items": ["builtins.str"]}, "variables": []}}}, "__gt__": {".class": "SymbolTableNode", "kind": "Mdef", "node": {".class": "FuncDef", "arg_kinds": [0, 0], "arg_names": ["self", "x"], "flags": [], "fullname": "builtins.str.__gt__", "name": "__gt__", "type": {".class": "CallableType", "arg_kinds": [0, 0], "arg_names": [null, null], "arg_types": ["builtins.str", "builtins.str"], "bound_args": [], "def_extras": {"first_arg": "self"}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "__gt__ of str", "ret_type": "builtins.bool", "variables": []}}}, "__hash__": {".class": "SymbolTableNode", "kind": "Mdef", "node": {".class": "FuncDef", "arg_kinds": [0], "arg_names": ["self"], "flags": [], "fullname": "builtins.str.__hash__", "name": "__hash__", "type": {".class": "CallableType", "arg_kinds": [0], "arg_names": ["self"], "arg_types": ["builtins.str"], "bound_args": [], "def_extras": {"first_arg": "self"}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "__hash__ of str", "ret_type": "builtins.int", "variables": []}}}, "__init__": {".class": "SymbolTableNode", "kind": "Mdef", "node": {".class": "OverloadedFuncDef", "flags": [], "fullname": "builtins.str.__init__", "impl": null, "items": [{".class": "Decorator", "func": {".class": "FuncDef", "arg_kinds": [0, 1], "arg_names": ["self", "o"], "flags": ["is_overload", "is_decorated", "is_conditional"], "fullname": "builtins.str.__init__", "name": "__init__", "type": {".class": "CallableType", "arg_kinds": [0, 1], "arg_names": ["self", "o"], "arg_types": ["builtins.str", "builtins.object"], "bound_args": [], "def_extras": {"first_arg": "self"}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "__init__ of str", "ret_type": {".class": "NoneTyp"}, "variables": []}}, "is_overload": true, "var": {".class": "Var", "flags": [], "fullname": null, "name": "__init__", "type": null}}, {".class": "Decorator", "func": {".class": "FuncDef", "arg_kinds": [0, 0, 1, 1], "arg_names": ["self", "o", "encoding", "errors"], "flags": ["is_overload", "is_decorated", "is_conditional"], "fullname": "builtins.str.__init__", "name": "__init__", "type": {".class": "CallableType", "arg_kinds": [0, 0, 1, 1], "arg_names": ["self", "o", "encoding", "errors"], "arg_types": ["builtins.str", "builtins.bytes", "builtins.str", "builtins.str"], "bound_args": [], "def_extras": {"first_arg": "self"}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "__init__ of str", "ret_type": {".class": "NoneTyp"}, "variables": []}}, "is_overload": true, "var": {".class": "Var", "flags": [], "fullname": null, "name": "__init__", "type": null}}], "type": {".class": "Overloaded", "items": [{".class": "CallableType", "arg_kinds": [0, 1], "arg_names": ["self", "o"], "arg_types": ["builtins.str", "builtins.object"], "bound_args": [], "def_extras": {"first_arg": "self"}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "__init__ of str", "ret_type": {".class": "NoneTyp"}, "variables": []}, {".class": "CallableType", "arg_kinds": [0, 0, 1, 1], "arg_names": ["self", "o", "encoding", "errors"], "arg_types": ["builtins.str", "builtins.bytes", "builtins.str", "builtins.str"], "bound_args": [], "def_extras": {"first_arg": "self"}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "__init__ of str", "ret_type": {".class": "NoneTyp"}, "variables": []}]}}}, "__iter__": {".class": "SymbolTableNode", "kind": "Mdef", "node": {".class": "FuncDef", "arg_kinds": [0], "arg_names": ["self"], "flags": [], "fullname": "builtins.str.__iter__", "name": "__iter__", "type": {".class": "CallableType", "arg_kinds": [0], "arg_names": [null], "arg_types": ["builtins.str"], "bound_args": [], "def_extras": {"first_arg": "self"}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "__iter__ of str", "ret_type": {".class": "Instance", "args": ["builtins.str"], "type_ref": "typing.Iterator"}, "variables": []}}}, "__le__": {".class": "SymbolTableNode", "kind": "Mdef", "node": {".class": "FuncDef", "arg_kinds": [0, 0], "arg_names": ["self", "x"], "flags": [], "fullname": "builtins.str.__le__", "name": "__le__", "type": {".class": "CallableType", "arg_kinds": [0, 0], "arg_names": [null, null], "arg_types": ["builtins.str", "builtins.str"], "bound_args": [], "def_extras": {"first_arg": "self"}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "__le__ of str", "ret_type": "builtins.bool", "variables": []}}}, "__len__": {".class": "SymbolTableNode", "kind": "Mdef", "node": {".class": "FuncDef", "arg_kinds": [0], "arg_names": ["self"], "flags": [], "fullname": "builtins.str.__len__", "name": "__len__", "type": {".class": "CallableType", "arg_kinds": [0], "arg_names": [null], "arg_types": ["builtins.str"], "bound_args": [], "def_extras": {"first_arg": "self"}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "__len__ of str", "ret_type": "builtins.int", "variables": []}}}, "__lt__": {".class": "SymbolTableNode", "kind": "Mdef", "node": {".class": "FuncDef", "arg_kinds": [0, 0], "arg_names": ["self", "x"], "flags": [], "fullname": "builtins.str.__lt__", "name": "__lt__", "type": {".class": "CallableType", "arg_kinds": [0, 0], "arg_names": [null, null], "arg_types": ["builtins.str", "builtins.str"], "bound_args": [], "def_extras": {"first_arg": "self"}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "__lt__ of str", "ret_type": "builtins.bool", "variables": []}}}, "__mod__": {".class": "SymbolTableNode", "kind": "Mdef", "node": {".class": "FuncDef", "arg_kinds": [0, 0], "arg_names": ["self", "x"], "flags": [], "fullname": "builtins.str.__mod__", "name": "__mod__", "type": {".class": "CallableType", "arg_kinds": [0, 0], "arg_names": [null, null], "arg_types": ["builtins.str", {".class": "AnyType", "missing_import_name": null, "source_any": null, "type_of_any": 2}], "bound_args": [], "def_extras": {"first_arg": "self"}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "__mod__ of str", "ret_type": "builtins.str", "variables": []}}}, "__mul__": {".class": "SymbolTableNode", "kind": "Mdef", "node": {".class": "FuncDef", "arg_kinds": [0, 0], "arg_names": ["self", "n"], "flags": [], "fullname": "builtins.str.__mul__", "name": "__mul__", "type": {".class": "CallableType", "arg_kinds": [0, 0], "arg_names": [null, null], "arg_types": ["builtins.str", "builtins.int"], "bound_args": [], "def_extras": {"first_arg": "self"}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "__mul__ of str", "ret_type": "builtins.str", "variables": []}}}, "__ne__": {".class": "SymbolTableNode", "kind": "Mdef", "node": {".class": "FuncDef", "arg_kinds": [0, 0], "arg_names": ["self", "x"], "flags": [], "fullname": "builtins.str.__ne__", "name": "__ne__", "type": {".class": "CallableType", "arg_kinds": [0, 0], "arg_names": [null, null], "arg_types": ["builtins.str", "builtins.object"], "bound_args": [], "def_extras": {"first_arg": "self"}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "__ne__ of str", "ret_type": "builtins.bool", "variables": []}}}, "__repr__": {".class": "SymbolTableNode", "kind": "Mdef", "node": {".class": "FuncDef", "arg_kinds": [0], "arg_names": ["self"], "flags": [], "fullname": "builtins.str.__repr__", "name": "__repr__", "type": {".class": "CallableType", "arg_kinds": [0], "arg_names": [null], "arg_types": ["builtins.str"], "bound_args": [], "def_extras": {"first_arg": "self"}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "__repr__ of str", "ret_type": "builtins.str", "variables": []}}}, "__rmul__": {".class": "SymbolTableNode", "kind": "Mdef", "node": {".class": "FuncDef", "arg_kinds": [0, 0], "arg_names": ["self", "n"], "flags": [], "fullname": "builtins.str.__rmul__", "name": "__rmul__", "type": {".class": "CallableType", "arg_kinds": [0, 0], "arg_names": [null, null], "arg_types": ["builtins.str", "builtins.int"], "bound_args": [], "def_extras": {"first_arg": "self"}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "__rmul__ of str", "ret_type": "builtins.str", "variables": []}}}, "__str__": {".class": "SymbolTableNode", "kind": "Mdef", "node": {".class": "FuncDef", "arg_kinds": [0], "arg_names": ["self"], "flags": [], "fullname": "builtins.str.__str__", "name": "__str__", "type": {".class": "CallableType", "arg_kinds": [0], "arg_names": [null], "arg_types": ["builtins.str"], "bound_args": [], "def_extras": {"first_arg": "self"}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "__str__ of str", "ret_type": "builtins.str", "variables": []}}}, "capitalize": {".class": "SymbolTableNode", "kind": "Mdef", "node": {".class": "FuncDef", "arg_kinds": [0], "arg_names": ["self"], "flags": [], "fullname": "builtins.str.capitalize", "name": "capitalize", "type": {".class": "CallableType", "arg_kinds": [0], "arg_names": ["self"], "arg_types": ["builtins.str"], "bound_args": [], "def_extras": {"first_arg": "self"}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "capitalize of str", "ret_type": "builtins.str", "variables": []}}}, "casefold": {".class": "SymbolTableNode", "kind": "Mdef", "node": {".class": "FuncDef", "arg_kinds": [0], "arg_names": ["self"], "flags": ["is_conditional"], "fullname": "builtins.str.casefold", "name": "casefold", "type": {".class": "CallableType", "arg_kinds": [0], "arg_names": ["self"], "arg_types": ["builtins.str"], "bound_args": [], "def_extras": {"first_arg": "self"}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "casefold of str", "ret_type": "builtins.str", "variables": []}}}, "center": {".class": "SymbolTableNode", "kind": "Mdef", "node": {".class": "FuncDef", "arg_kinds": [0, 0, 1], "arg_names": ["self", "width", "fillchar"], "flags": [], "fullname": "builtins.str.center", "name": "center", "type": {".class": "CallableType", "arg_kinds": [0, 0, 1], "arg_names": ["self", "width", "fillchar"], "arg_types": ["builtins.str", "builtins.int", "builtins.str"], "bound_args": [], "def_extras": {"first_arg": "self"}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "center of str", "ret_type": "builtins.str", "variables": []}}}, "count": {".class": "SymbolTableNode", "kind": "Mdef", "node": {".class": "FuncDef", "arg_kinds": [0, 0, 1, 1], "arg_names": ["self", "x", "__start", "__end"], "flags": [], "fullname": "builtins.str.count", "name": "count", "type": {".class": "CallableType", "arg_kinds": [0, 0, 1, 1], "arg_names": ["self", "x", null, null], "arg_types": ["builtins.str", "builtins.str", {".class": "UnionType", "items": ["builtins.int", {".class": "NoneTyp"}]}, {".class": "UnionType", "items": ["builtins.int", {".class": "NoneTyp"}]}], "bound_args": [], "def_extras": {"first_arg": "self"}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "count of str", "ret_type": "builtins.int", "variables": []}}}, "encode": {".class": "SymbolTableNode", "kind": "Mdef", "node": {".class": "FuncDef", "arg_kinds": [0, 1, 1], "arg_names": ["self", "encoding", "errors"], "flags": [], "fullname": "builtins.str.encode", "name": "encode", "type": {".class": "CallableType", "arg_kinds": [0, 1, 1], "arg_names": ["self", "encoding", "errors"], "arg_types": ["builtins.str", "builtins.str", "builtins.str"], "bound_args": [], "def_extras": {"first_arg": "self"}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "encode of str", "ret_type": "builtins.bytes", "variables": []}}}, "endswith": {".class": "SymbolTableNode", "kind": "Mdef", "node": {".class": "FuncDef", "arg_kinds": [0, 0, 1, 1], "arg_names": ["self", "suffix", "start", "end"], "flags": ["is_conditional"], "fullname": "builtins.str.endswith", "name": "endswith", "type": {".class": "CallableType", "arg_kinds": [0, 0, 1, 1], "arg_names": ["self", "suffix", "start", "end"], "arg_types": ["builtins.str", {".class": "UnionType", "items": ["builtins.str", {".class": "Instance", "args": ["builtins.str"], "type_ref": "builtins.tuple"}]}, {".class": "UnionType", "items": ["builtins.int", {".class": "NoneTyp"}]}, {".class": "UnionType", "items": ["builtins.int", {".class": "NoneTyp"}]}], "bound_args": [], "def_extras": {"first_arg": "self"}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "endswith of str", "ret_type": "builtins.bool", "variables": []}}}, "expandtabs": {".class": "SymbolTableNode", "kind": "Mdef", "node": {".class": "FuncDef", "arg_kinds": [0, 1], "arg_names": ["self", "tabsize"], "flags": [], "fullname": "builtins.str.expandtabs", "name": "expandtabs", "type": {".class": "CallableType", "arg_kinds": [0, 1], "arg_names": ["self", "tabsize"], "arg_types": ["builtins.str", "builtins.int"], "bound_args": [], "def_extras": {"first_arg": "self"}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "expandtabs of str", "ret_type": "builtins.str", "variables": []}}}, "find": {".class": "SymbolTableNode", "kind": "Mdef", "node": {".class": "FuncDef", "arg_kinds": [0, 0, 1, 1], "arg_names": ["self", "sub", "__start", "__end"], "flags": [], "fullname": "builtins.str.find", "name": "find", "type": {".class": "CallableType", "arg_kinds": [0, 0, 1, 1], "arg_names": ["self", "sub", null, null], "arg_types": ["builtins.str", "builtins.str", {".class": "UnionType", "items": ["builtins.int", {".class": "NoneTyp"}]}, {".class": "UnionType", "items": ["builtins.int", {".class": "NoneTyp"}]}], "bound_args": [], "def_extras": {"first_arg": "self"}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "find of str", "ret_type": "builtins.int", "variables": []}}}, "format": {".class": "SymbolTableNode", "kind": "Mdef", "node": {".class": "FuncDef", "arg_kinds": [0, 2, 4], "arg_names": ["self", "args", "kwargs"], "flags": [], "fullname": "builtins.str.format", "name": "format", "type": {".class": "CallableType", "arg_kinds": [0, 2, 4], "arg_names": ["self", "args", "kwargs"], "arg_types": ["builtins.str", {".class": "AnyType", "missing_import_name": null, "source_any": null, "type_of_any": 2}, {".class": "AnyType", "missing_import_name": null, "source_any": null, "type_of_any": 2}], "bound_args": [], "def_extras": {"first_arg": "self"}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "format of str", "ret_type": "builtins.str", "variables": []}}}, "format_map": {".class": "SymbolTableNode", "kind": "Mdef", "node": {".class": "FuncDef", "arg_kinds": [0, 0], "arg_names": ["self", "map"], "flags": ["is_conditional"], "fullname": "builtins.str.format_map", "name": "format_map", "type": {".class": "CallableType", "arg_kinds": [0, 0], "arg_names": ["self", "map"], "arg_types": ["builtins.str", {".class": "Instance", "args": ["builtins.str", {".class": "AnyType", "missing_import_name": null, "source_any": null, "type_of_any": 2}], "type_ref": "typing.Mapping"}], "bound_args": [], "def_extras": {"first_arg": "self"}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "format_map of str", "ret_type": "builtins.str", "variables": []}}}, "index": {".class": "SymbolTableNode", "kind": "Mdef", "node": {".class": "FuncDef", "arg_kinds": [0, 0, 1, 1], "arg_names": ["self", "sub", "__start", "__end"], "flags": [], "fullname": "builtins.str.index", "name": "index", "type": {".class": "CallableType", "arg_kinds": [0, 0, 1, 1], "arg_names": ["self", "sub", null, null], "arg_types": ["builtins.str", "builtins.str", {".class": "UnionType", "items": ["builtins.int", {".class": "NoneTyp"}]}, {".class": "UnionType", "items": ["builtins.int", {".class": "NoneTyp"}]}], "bound_args": [], "def_extras": {"first_arg": "self"}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "index of str", "ret_type": "builtins.int", "variables": []}}}, "isalnum": {".class": "SymbolTableNode", "kind": "Mdef", "node": {".class": "FuncDef", "arg_kinds": [0], "arg_names": ["self"], "flags": [], "fullname": "builtins.str.isalnum", "name": "isalnum", "type": {".class": "CallableType", "arg_kinds": [0], "arg_names": ["self"], "arg_types": ["builtins.str"], "bound_args": [], "def_extras": {"first_arg": "self"}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "isalnum of str", "ret_type": "builtins.bool", "variables": []}}}, "isalpha": {".class": "SymbolTableNode", "kind": "Mdef", "node": {".class": "FuncDef", "arg_kinds": [0], "arg_names": ["self"], "flags": [], "fullname": "builtins.str.isalpha", "name": "isalpha", "type": {".class": "CallableType", "arg_kinds": [0], "arg_names": ["self"], "arg_types": ["builtins.str"], "bound_args": [], "def_extras": {"first_arg": "self"}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "isalpha of str", "ret_type": "builtins.bool", "variables": []}}}, "isdecimal": {".class": "SymbolTableNode", "kind": "Mdef", "node": {".class": "FuncDef", "arg_kinds": [0], "arg_names": ["self"], "flags": ["is_conditional"], "fullname": "builtins.str.isdecimal", "name": "isdecimal", "type": {".class": "CallableType", "arg_kinds": [0], "arg_names": ["self"], "arg_types": ["builtins.str"], "bound_args": [], "def_extras": {"first_arg": "self"}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "isdecimal of str", "ret_type": "builtins.bool", "variables": []}}}, "isdigit": {".class": "SymbolTableNode", "kind": "Mdef", "node": {".class": "FuncDef", "arg_kinds": [0], "arg_names": ["self"], "flags": [], "fullname": "builtins.str.isdigit", "name": "isdigit", "type": {".class": "CallableType", "arg_kinds": [0], "arg_names": ["self"], "arg_types": ["builtins.str"], "bound_args": [], "def_extras": {"first_arg": "self"}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "isdigit of str", "ret_type": "builtins.bool", "variables": []}}}, "isidentifier": {".class": "SymbolTableNode", "kind": "Mdef", "node": {".class": "FuncDef", "arg_kinds": [0], "arg_names": ["self"], "flags": ["is_conditional"], "fullname": "builtins.str.isidentifier", "name": "isidentifier", "type": {".class": "CallableType", "arg_kinds": [0], "arg_names": ["self"], "arg_types": ["builtins.str"], "bound_args": [], "def_extras": {"first_arg": "self"}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "isidentifier of str", "ret_type": "builtins.bool", "variables": []}}}, "islower": {".class": "SymbolTableNode", "kind": "Mdef", "node": {".class": "FuncDef", "arg_kinds": [0], "arg_names": ["self"], "flags": [], "fullname": "builtins.str.islower", "name": "islower", "type": {".class": "CallableType", "arg_kinds": [0], "arg_names": ["self"], "arg_types": ["builtins.str"], "bound_args": [], "def_extras": {"first_arg": "self"}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "islower of str", "ret_type": "builtins.bool", "variables": []}}}, "isnumeric": {".class": "SymbolTableNode", "kind": "Mdef", "node": {".class": "FuncDef", "arg_kinds": [0], "arg_names": ["self"], "flags": ["is_conditional"], "fullname": "builtins.str.isnumeric", "name": "isnumeric", "type": {".class": "CallableType", "arg_kinds": [0], "arg_names": ["self"], "arg_types": ["builtins.str"], "bound_args": [], "def_extras": {"first_arg": "self"}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "isnumeric of str", "ret_type": "builtins.bool", "variables": []}}}, "isprintable": {".class": "SymbolTableNode", "kind": "Mdef", "node": {".class": "FuncDef", "arg_kinds": [0], "arg_names": ["self"], "flags": ["is_conditional"], "fullname": "builtins.str.isprintable", "name": "isprintable", "type": {".class": "CallableType", "arg_kinds": [0], "arg_names": ["self"], "arg_types": ["builtins.str"], "bound_args": [], "def_extras": {"first_arg": "self"}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "isprintable of str", "ret_type": "builtins.bool", "variables": []}}}, "isspace": {".class": "SymbolTableNode", "kind": "Mdef", "node": {".class": "FuncDef", "arg_kinds": [0], "arg_names": ["self"], "flags": [], "fullname": "builtins.str.isspace", "name": "isspace", "type": {".class": "CallableType", "arg_kinds": [0], "arg_names": ["self"], "arg_types": ["builtins.str"], "bound_args": [], "def_extras": {"first_arg": "self"}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "isspace of str", "ret_type": "builtins.bool", "variables": []}}}, "istitle": {".class": "SymbolTableNode", "kind": "Mdef", "node": {".class": "FuncDef", "arg_kinds": [0], "arg_names": ["self"], "flags": [], "fullname": "builtins.str.istitle", "name": "istitle", "type": {".class": "CallableType", "arg_kinds": [0], "arg_names": ["self"], "arg_types": ["builtins.str"], "bound_args": [], "def_extras": {"first_arg": "self"}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "istitle of str", "ret_type": "builtins.bool", "variables": []}}}, "isupper": {".class": "SymbolTableNode", "kind": "Mdef", "node": {".class": "FuncDef", "arg_kinds": [0], "arg_names": ["self"], "flags": [], "fullname": "builtins.str.isupper", "name": "isupper", "type": {".class": "CallableType", "arg_kinds": [0], "arg_names": ["self"], "arg_types": ["builtins.str"], "bound_args": [], "def_extras": {"first_arg": "self"}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "isupper of str", "ret_type": "builtins.bool", "variables": []}}}, "join": {".class": "SymbolTableNode", "kind": "Mdef", "node": {".class": "FuncDef", "arg_kinds": [0, 0], "arg_names": ["self", "iterable"], "flags": ["is_conditional"], "fullname": "builtins.str.join", "name": "join", "type": {".class": "CallableType", "arg_kinds": [0, 0], "arg_names": ["self", "iterable"], "arg_types": ["builtins.str", {".class": "Instance", "args": ["builtins.str"], "type_ref": "typing.Iterable"}], "bound_args": [], "def_extras": {"first_arg": "self"}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "join of str", "ret_type": "builtins.str", "variables": []}}}, "ljust": {".class": "SymbolTableNode", "kind": "Mdef", "node": {".class": "FuncDef", "arg_kinds": [0, 0, 1], "arg_names": ["self", "width", "fillchar"], "flags": [], "fullname": "builtins.str.ljust", "name": "ljust", "type": {".class": "CallableType", "arg_kinds": [0, 0, 1], "arg_names": ["self", "width", "fillchar"], "arg_types": ["builtins.str", "builtins.int", "builtins.str"], "bound_args": [], "def_extras": {"first_arg": "self"}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "ljust of str", "ret_type": "builtins.str", "variables": []}}}, "lower": {".class": "SymbolTableNode", "kind": "Mdef", "node": {".class": "FuncDef", "arg_kinds": [0], "arg_names": ["self"], "flags": [], "fullname": "builtins.str.lower", "name": "lower", "type": {".class": "CallableType", "arg_kinds": [0], "arg_names": ["self"], "arg_types": ["builtins.str"], "bound_args": [], "def_extras": {"first_arg": "self"}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "lower of str", "ret_type": "builtins.str", "variables": []}}}, "lstrip": {".class": "SymbolTableNode", "kind": "Mdef", "node": {".class": "FuncDef", "arg_kinds": [0, 1], "arg_names": ["self", "chars"], "flags": ["is_conditional"], "fullname": "builtins.str.lstrip", "name": "lstrip", "type": {".class": "CallableType", "arg_kinds": [0, 1], "arg_names": ["self", "chars"], "arg_types": ["builtins.str", {".class": "UnionType", "items": ["builtins.str", {".class": "NoneTyp"}]}], "bound_args": [], "def_extras": {"first_arg": "self"}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "lstrip of str", "ret_type": "builtins.str", "variables": []}}}, "maketrans": {".class": "SymbolTableNode", "kind": "Mdef", "node": {".class": "OverloadedFuncDef", "flags": ["is_static"], "fullname": "builtins.str.maketrans", "impl": null, "items": [{".class": "Decorator", "func": {".class": "FuncDef", "arg_kinds": [0], "arg_names": ["x"], "flags": ["is_static", "is_overload", "is_decorated", "is_conditional"], "fullname": "builtins.str.maketrans", "name": "maketrans", "type": {".class": "CallableType", "arg_kinds": [0], "arg_names": ["x"], "arg_types": [{".class": "UnionType", "items": [{".class": "Instance", "args": ["builtins.int", {".class": "TypeVarType", "fullname": "builtins._T", "id": -1, "name": "_T", "upper_bound": "builtins.object", "values": [], "variance": 0}], "type_ref": "builtins.dict"}, {".class": "Instance", "args": ["builtins.str", {".class": "TypeVarType", "fullname": "builtins._T", "id": -1, "name": "_T", "upper_bound": "builtins.object", "values": [], "variance": 0}], "type_ref": "builtins.dict"}, {".class": "Instance", "args": [{".class": "UnionType", "items": ["builtins.str", "builtins.int"]}, {".class": "TypeVarType", "fullname": "builtins._T", "id": -1, "name": "_T", "upper_bound": "builtins.object", "values": [], "variance": 0}], "type_ref": "builtins.dict"}]}], "bound_args": [], "def_extras": {"first_arg": null}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "maketrans of str", "ret_type": {".class": "Instance", "args": ["builtins.int", {".class": "TypeVarType", "fullname": "builtins._T", "id": -1, "name": "_T", "upper_bound": "builtins.object", "values": [], "variance": 0}], "type_ref": "builtins.dict"}, "variables": [{".class": "TypeVarDef", "fullname": "builtins._T", "id": -1, "name": "_T", "upper_bound": "builtins.object", "values": [], "variance": 0}]}}, "is_overload": true, "var": {".class": "Var", "flags": ["is_staticmethod"], "fullname": null, "name": "maketrans", "type": null}}, {".class": "Decorator", "func": {".class": "FuncDef", "arg_kinds": [0, 0, 1], "arg_names": ["x", "y", "z"], "flags": ["is_static", "is_overload", "is_decorated", "is_conditional"], "fullname": "builtins.str.maketrans", "name": "maketrans", "type": {".class": "CallableType", "arg_kinds": [0, 0, 1], "arg_names": ["x", "y", "z"], "arg_types": ["builtins.str", "builtins.str", "builtins.str"], "bound_args": [], "def_extras": {"first_arg": null}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "maketrans of str", "ret_type": {".class": "Instance", "args": ["builtins.int", {".class": "UnionType", "items": ["builtins.int", {".class": "NoneTyp"}]}], "type_ref": "builtins.dict"}, "variables": []}}, "is_overload": true, "var": {".class": "Var", "flags": ["is_staticmethod"], "fullname": null, "name": "maketrans", "type": null}}], "type": {".class": "Overloaded", "items": [{".class": "CallableType", "arg_kinds": [0], "arg_names": ["x"], "arg_types": [{".class": "UnionType", "items": [{".class": "Instance", "args": ["builtins.int", {".class": "TypeVarType", "fullname": "builtins._T", "id": -1, "name": "_T", "upper_bound": "builtins.object", "values": [], "variance": 0}], "type_ref": "builtins.dict"}, {".class": "Instance", "args": ["builtins.str", {".class": "TypeVarType", "fullname": "builtins._T", "id": -1, "name": "_T", "upper_bound": "builtins.object", "values": [], "variance": 0}], "type_ref": "builtins.dict"}, {".class": "Instance", "args": [{".class": "UnionType", "items": ["builtins.str", "builtins.int"]}, {".class": "TypeVarType", "fullname": "builtins._T", "id": -1, "name": "_T", "upper_bound": "builtins.object", "values": [], "variance": 0}], "type_ref": "builtins.dict"}]}], "bound_args": [], "def_extras": {"first_arg": null}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "maketrans of str", "ret_type": {".class": "Instance", "args": ["builtins.int", {".class": "TypeVarType", "fullname": "builtins._T", "id": -1, "name": "_T", "upper_bound": "builtins.object", "values": [], "variance": 0}], "type_ref": "builtins.dict"}, "variables": [{".class": "TypeVarDef", "fullname": "builtins._T", "id": -1, "name": "_T", "upper_bound": "builtins.object", "values": [], "variance": 0}]}, {".class": "CallableType", "arg_kinds": [0, 0, 1], "arg_names": ["x", "y", "z"], "arg_types": ["builtins.str", "builtins.str", "builtins.str"], "bound_args": [], "def_extras": {"first_arg": null}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "maketrans of str", "ret_type": {".class": "Instance", "args": ["builtins.int", {".class": "UnionType", "items": ["builtins.int", {".class": "NoneTyp"}]}], "type_ref": "builtins.dict"}, "variables": []}]}}}, "partition": {".class": "SymbolTableNode", "kind": "Mdef", "node": {".class": "FuncDef", "arg_kinds": [0, 0], "arg_names": ["self", "sep"], "flags": ["is_conditional"], "fullname": "builtins.str.partition", "name": "partition", "type": {".class": "CallableType", "arg_kinds": [0, 0], "arg_names": ["self", "sep"], "arg_types": ["builtins.str", "builtins.str"], "bound_args": [], "def_extras": {"first_arg": "self"}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "partition of str", "ret_type": {".class": "TupleType", "fallback": {".class": "Instance", "args": [{".class": "AnyType", "missing_import_name": null, "source_any": null, "type_of_any": 6}], "type_ref": "builtins.tuple"}, "implicit": false, "items": ["builtins.str", "builtins.str", "builtins.str"]}, "variables": []}}}, "replace": {".class": "SymbolTableNode", "kind": "Mdef", "node": {".class": "FuncDef", "arg_kinds": [0, 0, 0, 1], "arg_names": ["self", "old", "new", "count"], "flags": ["is_conditional"], "fullname": "builtins.str.replace", "name": "replace", "type": {".class": "CallableType", "arg_kinds": [0, 0, 0, 1], "arg_names": ["self", "old", "new", "count"], "arg_types": ["builtins.str", "builtins.str", "builtins.str", "builtins.int"], "bound_args": [], "def_extras": {"first_arg": "self"}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "replace of str", "ret_type": "builtins.str", "variables": []}}}, "rfind": {".class": "SymbolTableNode", "kind": "Mdef", "node": {".class": "FuncDef", "arg_kinds": [0, 0, 1, 1], "arg_names": ["self", "sub", "__start", "__end"], "flags": [], "fullname": "builtins.str.rfind", "name": "rfind", "type": {".class": "CallableType", "arg_kinds": [0, 0, 1, 1], "arg_names": ["self", "sub", null, null], "arg_types": ["builtins.str", "builtins.str", {".class": "UnionType", "items": ["builtins.int", {".class": "NoneTyp"}]}, {".class": "UnionType", "items": ["builtins.int", {".class": "NoneTyp"}]}], "bound_args": [], "def_extras": {"first_arg": "self"}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "rfind of str", "ret_type": "builtins.int", "variables": []}}}, "rindex": {".class": "SymbolTableNode", "kind": "Mdef", "node": {".class": "FuncDef", "arg_kinds": [0, 0, 1, 1], "arg_names": ["self", "sub", "__start", "__end"], "flags": [], "fullname": "builtins.str.rindex", "name": "rindex", "type": {".class": "CallableType", "arg_kinds": [0, 0, 1, 1], "arg_names": ["self", "sub", null, null], "arg_types": ["builtins.str", "builtins.str", {".class": "UnionType", "items": ["builtins.int", {".class": "NoneTyp"}]}, {".class": "UnionType", "items": ["builtins.int", {".class": "NoneTyp"}]}], "bound_args": [], "def_extras": {"first_arg": "self"}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "rindex of str", "ret_type": "builtins.int", "variables": []}}}, "rjust": {".class": "SymbolTableNode", "kind": "Mdef", "node": {".class": "FuncDef", "arg_kinds": [0, 0, 1], "arg_names": ["self", "width", "fillchar"], "flags": [], "fullname": "builtins.str.rjust", "name": "rjust", "type": {".class": "CallableType", "arg_kinds": [0, 0, 1], "arg_names": ["self", "width", "fillchar"], "arg_types": ["builtins.str", "builtins.int", "builtins.str"], "bound_args": [], "def_extras": {"first_arg": "self"}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "rjust of str", "ret_type": "builtins.str", "variables": []}}}, "rpartition": {".class": "SymbolTableNode", "kind": "Mdef", "node": {".class": "FuncDef", "arg_kinds": [0, 0], "arg_names": ["self", "sep"], "flags": ["is_conditional"], "fullname": "builtins.str.rpartition", "name": "rpartition", "type": {".class": "CallableType", "arg_kinds": [0, 0], "arg_names": ["self", "sep"], "arg_types": ["builtins.str", "builtins.str"], "bound_args": [], "def_extras": {"first_arg": "self"}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "rpartition of str", "ret_type": {".class": "TupleType", "fallback": {".class": "Instance", "args": [{".class": "AnyType", "missing_import_name": null, "source_any": null, "type_of_any": 6}], "type_ref": "builtins.tuple"}, "implicit": false, "items": ["builtins.str", "builtins.str", "builtins.str"]}, "variables": []}}}, "rsplit": {".class": "SymbolTableNode", "kind": "Mdef", "node": {".class": "FuncDef", "arg_kinds": [0, 1, 1], "arg_names": ["self", "sep", "maxsplit"], "flags": ["is_conditional"], "fullname": "builtins.str.rsplit", "name": "rsplit", "type": {".class": "CallableType", "arg_kinds": [0, 1, 1], "arg_names": ["self", "sep", "maxsplit"], "arg_types": ["builtins.str", {".class": "UnionType", "items": ["builtins.str", {".class": "NoneTyp"}]}, "builtins.int"], "bound_args": [], "def_extras": {"first_arg": "self"}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "rsplit of str", "ret_type": {".class": "Instance", "args": ["builtins.str"], "type_ref": "builtins.list"}, "variables": []}}}, "rstrip": {".class": "SymbolTableNode", "kind": "Mdef", "node": {".class": "FuncDef", "arg_kinds": [0, 1], "arg_names": ["self", "chars"], "flags": ["is_conditional"], "fullname": "builtins.str.rstrip", "name": "rstrip", "type": {".class": "CallableType", "arg_kinds": [0, 1], "arg_names": ["self", "chars"], "arg_types": ["builtins.str", {".class": "UnionType", "items": ["builtins.str", {".class": "NoneTyp"}]}], "bound_args": [], "def_extras": {"first_arg": "self"}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "rstrip of str", "ret_type": "builtins.str", "variables": []}}}, "split": {".class": "SymbolTableNode", "kind": "Mdef", "node": {".class": "FuncDef", "arg_kinds": [0, 1, 1], "arg_names": ["self", "sep", "maxsplit"], "flags": ["is_conditional"], "fullname": "builtins.str.split", "name": "split", "type": {".class": "CallableType", "arg_kinds": [0, 1, 1], "arg_names": ["self", "sep", "maxsplit"], "arg_types": ["builtins.str", {".class": "UnionType", "items": ["builtins.str", {".class": "NoneTyp"}]}, "builtins.int"], "bound_args": [], "def_extras": {"first_arg": "self"}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "split of str", "ret_type": {".class": "Instance", "args": ["builtins.str"], "type_ref": "builtins.list"}, "variables": []}}}, "splitlines": {".class": "SymbolTableNode", "kind": "Mdef", "node": {".class": "FuncDef", "arg_kinds": [0, 1], "arg_names": ["self", "keepends"], "flags": [], "fullname": "builtins.str.splitlines", "name": "splitlines", "type": {".class": "CallableType", "arg_kinds": [0, 1], "arg_names": ["self", "keepends"], "arg_types": ["builtins.str", "builtins.bool"], "bound_args": [], "def_extras": {"first_arg": "self"}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "splitlines of str", "ret_type": {".class": "Instance", "args": ["builtins.str"], "type_ref": "builtins.list"}, "variables": []}}}, "startswith": {".class": "SymbolTableNode", "kind": "Mdef", "node": {".class": "FuncDef", "arg_kinds": [0, 0, 1, 1], "arg_names": ["self", "prefix", "start", "end"], "flags": ["is_conditional"], "fullname": "builtins.str.startswith", "name": "startswith", "type": {".class": "CallableType", "arg_kinds": [0, 0, 1, 1], "arg_names": ["self", "prefix", "start", "end"], "arg_types": ["builtins.str", {".class": "UnionType", "items": ["builtins.str", {".class": "Instance", "args": ["builtins.str"], "type_ref": "builtins.tuple"}]}, {".class": "UnionType", "items": ["builtins.int", {".class": "NoneTyp"}]}, {".class": "UnionType", "items": ["builtins.int", {".class": "NoneTyp"}]}], "bound_args": [], "def_extras": {"first_arg": "self"}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "startswith of str", "ret_type": "builtins.bool", "variables": []}}}, "strip": {".class": "SymbolTableNode", "kind": "Mdef", "node": {".class": "FuncDef", "arg_kinds": [0, 1], "arg_names": ["self", "chars"], "flags": ["is_conditional"], "fullname": "builtins.str.strip", "name": "strip", "type": {".class": "CallableType", "arg_kinds": [0, 1], "arg_names": ["self", "chars"], "arg_types": ["builtins.str", {".class": "UnionType", "items": ["builtins.str", {".class": "NoneTyp"}]}], "bound_args": [], "def_extras": {"first_arg": "self"}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "strip of str", "ret_type": "builtins.str", "variables": []}}}, "swapcase": {".class": "SymbolTableNode", "kind": "Mdef", "node": {".class": "FuncDef", "arg_kinds": [0], "arg_names": ["self"], "flags": [], "fullname": "builtins.str.swapcase", "name": "swapcase", "type": {".class": "CallableType", "arg_kinds": [0], "arg_names": ["self"], "arg_types": ["builtins.str"], "bound_args": [], "def_extras": {"first_arg": "self"}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "swapcase of str", "ret_type": "builtins.str", "variables": []}}}, "title": {".class": "SymbolTableNode", "kind": "Mdef", "node": {".class": "FuncDef", "arg_kinds": [0], "arg_names": ["self"], "flags": [], "fullname": "builtins.str.title", "name": "title", "type": {".class": "CallableType", "arg_kinds": [0], "arg_names": ["self"], "arg_types": ["builtins.str"], "bound_args": [], "def_extras": {"first_arg": "self"}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "title of str", "ret_type": "builtins.str", "variables": []}}}, "translate": {".class": "SymbolTableNode", "kind": "Mdef", "node": {".class": "FuncDef", "arg_kinds": [0, 0], "arg_names": ["self", "table"], "flags": ["is_conditional"], "fullname": "builtins.str.translate", "name": "translate", "type": {".class": "CallableType", "arg_kinds": [0, 0], "arg_names": ["self", "table"], "arg_types": ["builtins.str", {".class": "UnionType", "items": [{".class": "Instance", "args": ["builtins.int", {".class": "UnionType", "items": ["builtins.int", "builtins.str", {".class": "NoneTyp"}]}], "type_ref": "typing.Mapping"}, {".class": "Instance", "args": [{".class": "UnionType", "items": ["builtins.int", "builtins.str", {".class": "NoneTyp"}]}], "type_ref": "typing.Sequence"}]}], "bound_args": [], "def_extras": {"first_arg": "self"}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "translate of str", "ret_type": "builtins.str", "variables": []}}}, "upper": {".class": "SymbolTableNode", "kind": "Mdef", "node": {".class": "FuncDef", "arg_kinds": [0], "arg_names": ["self"], "flags": [], "fullname": "builtins.str.upper", "name": "upper", "type": {".class": "CallableType", "arg_kinds": [0], "arg_names": ["self"], "arg_types": ["builtins.str"], "bound_args": [], "def_extras": {"first_arg": "self"}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "upper of str", "ret_type": "builtins.str", "variables": []}}}, "zfill": {".class": "SymbolTableNode", "kind": "Mdef", "node": {".class": "FuncDef", "arg_kinds": [0, 0], "arg_names": ["self", "width"], "flags": [], "fullname": "builtins.str.zfill", "name": "zfill", "type": {".class": "CallableType", "arg_kinds": [0, 0], "arg_names": ["self", "width"], "arg_types": ["builtins.str", "builtins.int"], "bound_args": [], "def_extras": {"first_arg": "self"}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "zfill of str", "ret_type": "builtins.str", "variables": []}}}}, "tuple_type": null, "type_vars": [], "typeddict_type": null}}, "sum": {".class": "SymbolTableNode", "kind": "Gdef", "node": {".class": "OverloadedFuncDef", "flags": [], "fullname": "builtins.sum", "impl": null, "items": [{".class": "Decorator", "func": {".class": "FuncDef", "arg_kinds": [0], "arg_names": ["iterable"], "flags": ["is_overload", "is_decorated"], "fullname": "builtins.sum", "name": "sum", "type": {".class": "CallableType", "arg_kinds": [0], "arg_names": ["iterable"], "arg_types": [{".class": "Instance", "args": [{".class": "TypeVarType", "fullname": "builtins._T", "id": -1, "name": "_T", "upper_bound": "builtins.object", "values": [], "variance": 0}], "type_ref": "typing.Iterable"}], "bound_args": [], "def_extras": {"first_arg": null}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "sum", "ret_type": {".class": "UnionType", "items": [{".class": "TypeVarType", "fullname": "builtins._T", "id": -1, "name": "_T", "upper_bound": "builtins.object", "values": [], "variance": 0}, "builtins.int"]}, "variables": [{".class": "TypeVarDef", "fullname": "builtins._T", "id": -1, "name": "_T", "upper_bound": "builtins.object", "values": [], "variance": 0}]}}, "is_overload": true, "var": {".class": "Var", "flags": [], "fullname": null, "name": "sum", "type": null}}, {".class": "Decorator", "func": {".class": "FuncDef", "arg_kinds": [0, 0], "arg_names": ["iterable", "start"], "flags": ["is_overload", "is_decorated"], "fullname": "builtins.sum", "name": "sum", "type": {".class": "CallableType", "arg_kinds": [0, 0], "arg_names": ["iterable", "start"], "arg_types": [{".class": "Instance", "args": [{".class": "TypeVarType", "fullname": "builtins._T", "id": -1, "name": "_T", "upper_bound": "builtins.object", "values": [], "variance": 0}], "type_ref": "typing.Iterable"}, {".class": "TypeVarType", "fullname": "builtins._S", "id": -2, "name": "_S", "upper_bound": "builtins.object", "values": [], "variance": 0}], "bound_args": [], "def_extras": {"first_arg": null}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "sum", "ret_type": {".class": "UnionType", "items": [{".class": "TypeVarType", "fullname": "builtins._T", "id": -1, "name": "_T", "upper_bound": "builtins.object", "values": [], "variance": 0}, {".class": "TypeVarType", "fullname": "builtins._S", "id": -2, "name": "_S", "upper_bound": "builtins.object", "values": [], "variance": 0}]}, "variables": [{".class": "TypeVarDef", "fullname": "builtins._T", "id": -1, "name": "_T", "upper_bound": "builtins.object", "values": [], "variance": 0}, {".class": "TypeVarDef", "fullname": "builtins._S", "id": -2, "name": "_S", "upper_bound": "builtins.object", "values": [], "variance": 0}]}}, "is_overload": true, "var": {".class": "Var", "flags": [], "fullname": null, "name": "sum", "type": null}}], "type": {".class": "Overloaded", "items": [{".class": "CallableType", "arg_kinds": [0], "arg_names": ["iterable"], "arg_types": [{".class": "Instance", "args": [{".class": "TypeVarType", "fullname": "builtins._T", "id": -1, "name": "_T", "upper_bound": "builtins.object", "values": [], "variance": 0}], "type_ref": "typing.Iterable"}], "bound_args": [], "def_extras": {"first_arg": null}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "sum", "ret_type": {".class": "UnionType", "items": [{".class": "TypeVarType", "fullname": "builtins._T", "id": -1, "name": "_T", "upper_bound": "builtins.object", "values": [], "variance": 0}, "builtins.int"]}, "variables": [{".class": "TypeVarDef", "fullname": "builtins._T", "id": -1, "name": "_T", "upper_bound": "builtins.object", "values": [], "variance": 0}]}, {".class": "CallableType", "arg_kinds": [0, 0], "arg_names": ["iterable", "start"], "arg_types": [{".class": "Instance", "args": [{".class": "TypeVarType", "fullname": "builtins._T", "id": -1, "name": "_T", "upper_bound": "builtins.object", "values": [], "variance": 0}], "type_ref": "typing.Iterable"}, {".class": "TypeVarType", "fullname": "builtins._S", "id": -2, "name": "_S", "upper_bound": "builtins.object", "values": [], "variance": 0}], "bound_args": [], "def_extras": {"first_arg": null}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "sum", "ret_type": {".class": "UnionType", "items": [{".class": "TypeVarType", "fullname": "builtins._T", "id": -1, "name": "_T", "upper_bound": "builtins.object", "values": [], "variance": 0}, {".class": "TypeVarType", "fullname": "builtins._S", "id": -2, "name": "_S", "upper_bound": "builtins.object", "values": [], "variance": 0}]}, "variables": [{".class": "TypeVarDef", "fullname": "builtins._T", "id": -1, "name": "_T", "upper_bound": "builtins.object", "values": [], "variance": 0}, {".class": "TypeVarDef", "fullname": "builtins._S", "id": -2, "name": "_S", "upper_bound": "builtins.object", "values": [], "variance": 0}]}]}}}, "super": {".class": "SymbolTableNode", "kind": "Gdef", "node": {".class": "TypeInfo", "_promote": null, "abstract_attributes": [], "bases": ["builtins.object"], "declared_metaclass": null, "defn": {".class": "ClassDef", "fullname": "builtins.super", "name": "super", "type_vars": []}, "flags": [], "fullname": "builtins.super", "metaclass_type": null, "metadata": {}, "module_name": "builtins", "mro": ["builtins.super", "builtins.object"], "names": {".class": "SymbolTable", "__init__": {".class": "SymbolTableNode", "kind": "Mdef", "node": {".class": "OverloadedFuncDef", "flags": [], "fullname": "builtins.super.__init__", "impl": null, "items": [{".class": "Decorator", "func": {".class": "FuncDef", "arg_kinds": [0, 0, 0], "arg_names": ["self", "t", "obj"], "flags": ["is_overload", "is_decorated", "is_conditional"], "fullname": "builtins.super.__init__", "name": "__init__", "type": {".class": "CallableType", "arg_kinds": [0, 0, 0], "arg_names": ["self", "t", "obj"], "arg_types": ["builtins.super", {".class": "AnyType", "missing_import_name": null, "source_any": null, "type_of_any": 2}, {".class": "AnyType", "missing_import_name": null, "source_any": null, "type_of_any": 2}], "bound_args": [], "def_extras": {"first_arg": "self"}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "__init__ of super", "ret_type": {".class": "NoneTyp"}, "variables": []}}, "is_overload": true, "var": {".class": "Var", "flags": [], "fullname": null, "name": "__init__", "type": null}}, {".class": "Decorator", "func": {".class": "FuncDef", "arg_kinds": [0, 0], "arg_names": ["self", "t"], "flags": ["is_overload", "is_decorated", "is_conditional"], "fullname": "builtins.super.__init__", "name": "__init__", "type": {".class": "CallableType", "arg_kinds": [0, 0], "arg_names": ["self", "t"], "arg_types": ["builtins.super", {".class": "AnyType", "missing_import_name": null, "source_any": null, "type_of_any": 2}], "bound_args": [], "def_extras": {"first_arg": "self"}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "__init__ of super", "ret_type": {".class": "NoneTyp"}, "variables": []}}, "is_overload": true, "var": {".class": "Var", "flags": [], "fullname": null, "name": "__init__", "type": null}}, {".class": "Decorator", "func": {".class": "FuncDef", "arg_kinds": [0], "arg_names": ["self"], "flags": ["is_overload", "is_decorated", "is_conditional"], "fullname": "builtins.super.__init__", "name": "__init__", "type": {".class": "CallableType", "arg_kinds": [0], "arg_names": ["self"], "arg_types": ["builtins.super"], "bound_args": [], "def_extras": {"first_arg": "self"}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "__init__ of super", "ret_type": {".class": "NoneTyp"}, "variables": []}}, "is_overload": true, "var": {".class": "Var", "flags": [], "fullname": null, "name": "__init__", "type": null}}], "type": {".class": "Overloaded", "items": [{".class": "CallableType", "arg_kinds": [0, 0, 0], "arg_names": ["self", "t", "obj"], "arg_types": ["builtins.super", {".class": "AnyType", "missing_import_name": null, "source_any": null, "type_of_any": 2}, {".class": "AnyType", "missing_import_name": null, "source_any": null, "type_of_any": 2}], "bound_args": [], "def_extras": {"first_arg": "self"}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "__init__ of super", "ret_type": {".class": "NoneTyp"}, "variables": []}, {".class": "CallableType", "arg_kinds": [0, 0], "arg_names": ["self", "t"], "arg_types": ["builtins.super", {".class": "AnyType", "missing_import_name": null, "source_any": null, "type_of_any": 2}], "bound_args": [], "def_extras": {"first_arg": "self"}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "__init__ of super", "ret_type": {".class": "NoneTyp"}, "variables": []}, {".class": "CallableType", "arg_kinds": [0], "arg_names": ["self"], "arg_types": ["builtins.super"], "bound_args": [], "def_extras": {"first_arg": "self"}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "__init__ of super", "ret_type": {".class": "NoneTyp"}, "variables": []}]}}}}, "tuple_type": null, "type_vars": [], "typeddict_type": null}}, "tuple": {".class": "SymbolTableNode", "kind": "Gdef", "node": {".class": "TypeInfo", "_promote": null, "abstract_attributes": [], "bases": [{".class": "Instance", "args": [{".class": "TypeVarType", "fullname": "builtins._T_co", "id": 1, "name": "_T_co", "upper_bound": "builtins.object", "values": [], "variance": 1}], "type_ref": "typing.Sequence"}], "declared_metaclass": null, "defn": {".class": "ClassDef", "fullname": "builtins.tuple", "name": "tuple", "type_vars": [{".class": "TypeVarDef", "fullname": "builtins._T_co", "id": 1, "name": "_T_co", "upper_bound": "builtins.object", "values": [], "variance": 1}]}, "flags": [], "fullname": "builtins.tuple", "metaclass_type": "abc.ABCMeta", "metadata": {}, "module_name": "builtins", "mro": ["builtins.tuple", "typing.Sequence", "typing.Collection", "typing.Iterable", "typing.Container", "typing.Reversible", "builtins.object"], "names": {".class": "SymbolTable", "__add__": {".class": "SymbolTableNode", "kind": "Mdef", "node": {".class": "FuncDef", "arg_kinds": [0, 0], "arg_names": ["self", "x"], "flags": [], "fullname": "builtins.tuple.__add__", "name": "__add__", "type": {".class": "CallableType", "arg_kinds": [0, 0], "arg_names": [null, null], "arg_types": [{".class": "Instance", "args": [{".class": "TypeVarType", "fullname": "builtins._T_co", "id": 1, "name": "_T_co", "upper_bound": "builtins.object", "values": [], "variance": 1}], "type_ref": "builtins.tuple"}, {".class": "Instance", "args": [{".class": "TypeVarType", "fullname": "builtins._T_co", "id": 1, "name": "_T_co", "upper_bound": "builtins.object", "values": [], "variance": 1}], "type_ref": "builtins.tuple"}], "bound_args": [], "def_extras": {"first_arg": "self"}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "__add__ of tuple", "ret_type": {".class": "Instance", "args": [{".class": "TypeVarType", "fullname": "builtins._T_co", "id": 1, "name": "_T_co", "upper_bound": "builtins.object", "values": [], "variance": 1}], "type_ref": "builtins.tuple"}, "variables": []}}}, "__contains__": {".class": "SymbolTableNode", "kind": "Mdef", "node": {".class": "FuncDef", "arg_kinds": [0, 0], "arg_names": ["self", "x"], "flags": [], "fullname": "builtins.tuple.__contains__", "name": "__contains__", "type": {".class": "CallableType", "arg_kinds": [0, 0], "arg_names": [null, null], "arg_types": [{".class": "Instance", "args": [{".class": "TypeVarType", "fullname": "builtins._T_co", "id": 1, "name": "_T_co", "upper_bound": "builtins.object", "values": [], "variance": 1}], "type_ref": "builtins.tuple"}, "builtins.object"], "bound_args": [], "def_extras": {"first_arg": "self"}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "__contains__ of tuple", "ret_type": "builtins.bool", "variables": []}}}, "__ge__": {".class": "SymbolTableNode", "kind": "Mdef", "node": {".class": "FuncDef", "arg_kinds": [0, 0], "arg_names": ["self", "x"], "flags": [], "fullname": "builtins.tuple.__ge__", "name": "__ge__", "type": {".class": "CallableType", "arg_kinds": [0, 0], "arg_names": [null, null], "arg_types": [{".class": "Instance", "args": [{".class": "TypeVarType", "fullname": "builtins._T_co", "id": 1, "name": "_T_co", "upper_bound": "builtins.object", "values": [], "variance": 1}], "type_ref": "builtins.tuple"}, {".class": "Instance", "args": [{".class": "TypeVarType", "fullname": "builtins._T_co", "id": 1, "name": "_T_co", "upper_bound": "builtins.object", "values": [], "variance": 1}], "type_ref": "builtins.tuple"}], "bound_args": [], "def_extras": {"first_arg": "self"}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "__ge__ of tuple", "ret_type": "builtins.bool", "variables": []}}}, "__getitem__": {".class": "SymbolTableNode", "kind": "Mdef", "node": {".class": "OverloadedFuncDef", "flags": [], "fullname": "builtins.tuple.__getitem__", "impl": null, "items": [{".class": "Decorator", "func": {".class": "FuncDef", "arg_kinds": [0, 0], "arg_names": ["self", "x"], "flags": ["is_overload", "is_decorated"], "fullname": "builtins.tuple.__getitem__", "name": "__getitem__", "type": {".class": "CallableType", "arg_kinds": [0, 0], "arg_names": [null, null], "arg_types": [{".class": "Instance", "args": [{".class": "TypeVarType", "fullname": "builtins._T_co", "id": 1, "name": "_T_co", "upper_bound": "builtins.object", "values": [], "variance": 1}], "type_ref": "builtins.tuple"}, "builtins.int"], "bound_args": [], "def_extras": {"first_arg": "self"}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "__getitem__ of tuple", "ret_type": {".class": "TypeVarType", "fullname": "builtins._T_co", "id": 1, "name": "_T_co", "upper_bound": "builtins.object", "values": [], "variance": 1}, "variables": []}}, "is_overload": true, "var": {".class": "Var", "flags": [], "fullname": null, "name": "__getitem__", "type": null}}, {".class": "Decorator", "func": {".class": "FuncDef", "arg_kinds": [0, 0], "arg_names": ["self", "x"], "flags": ["is_overload", "is_decorated"], "fullname": "builtins.tuple.__getitem__", "name": "__getitem__", "type": {".class": "CallableType", "arg_kinds": [0, 0], "arg_names": [null, null], "arg_types": [{".class": "Instance", "args": [{".class": "TypeVarType", "fullname": "builtins._T_co", "id": 1, "name": "_T_co", "upper_bound": "builtins.object", "values": [], "variance": 1}], "type_ref": "builtins.tuple"}, "builtins.slice"], "bound_args": [], "def_extras": {"first_arg": "self"}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "__getitem__ of tuple", "ret_type": {".class": "Instance", "args": [{".class": "TypeVarType", "fullname": "builtins._T_co", "id": 1, "name": "_T_co", "upper_bound": "builtins.object", "values": [], "variance": 1}], "type_ref": "builtins.tuple"}, "variables": []}}, "is_overload": true, "var": {".class": "Var", "flags": [], "fullname": null, "name": "__getitem__", "type": null}}], "type": {".class": "Overloaded", "items": [{".class": "CallableType", "arg_kinds": [0, 0], "arg_names": [null, null], "arg_types": [{".class": "Instance", "args": [{".class": "TypeVarType", "fullname": "builtins._T_co", "id": 1, "name": "_T_co", "upper_bound": "builtins.object", "values": [], "variance": 1}], "type_ref": "builtins.tuple"}, "builtins.int"], "bound_args": [], "def_extras": {"first_arg": "self"}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "__getitem__ of tuple", "ret_type": {".class": "TypeVarType", "fullname": "builtins._T_co", "id": 1, "name": "_T_co", "upper_bound": "builtins.object", "values": [], "variance": 1}, "variables": []}, {".class": "CallableType", "arg_kinds": [0, 0], "arg_names": [null, null], "arg_types": [{".class": "Instance", "args": [{".class": "TypeVarType", "fullname": "builtins._T_co", "id": 1, "name": "_T_co", "upper_bound": "builtins.object", "values": [], "variance": 1}], "type_ref": "builtins.tuple"}, "builtins.slice"], "bound_args": [], "def_extras": {"first_arg": "self"}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "__getitem__ of tuple", "ret_type": {".class": "Instance", "args": [{".class": "TypeVarType", "fullname": "builtins._T_co", "id": 1, "name": "_T_co", "upper_bound": "builtins.object", "values": [], "variance": 1}], "type_ref": "builtins.tuple"}, "variables": []}]}}}, "__gt__": {".class": "SymbolTableNode", "kind": "Mdef", "node": {".class": "FuncDef", "arg_kinds": [0, 0], "arg_names": ["self", "x"], "flags": [], "fullname": "builtins.tuple.__gt__", "name": "__gt__", "type": {".class": "CallableType", "arg_kinds": [0, 0], "arg_names": [null, null], "arg_types": [{".class": "Instance", "args": [{".class": "TypeVarType", "fullname": "builtins._T_co", "id": 1, "name": "_T_co", "upper_bound": "builtins.object", "values": [], "variance": 1}], "type_ref": "builtins.tuple"}, {".class": "Instance", "args": [{".class": "TypeVarType", "fullname": "builtins._T_co", "id": 1, "name": "_T_co", "upper_bound": "builtins.object", "values": [], "variance": 1}], "type_ref": "builtins.tuple"}], "bound_args": [], "def_extras": {"first_arg": "self"}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "__gt__ of tuple", "ret_type": "builtins.bool", "variables": []}}}, "__iter__": {".class": "SymbolTableNode", "kind": "Mdef", "node": {".class": "FuncDef", "arg_kinds": [0], "arg_names": ["self"], "flags": [], "fullname": "builtins.tuple.__iter__", "name": "__iter__", "type": {".class": "CallableType", "arg_kinds": [0], "arg_names": [null], "arg_types": [{".class": "Instance", "args": [{".class": "TypeVarType", "fullname": "builtins._T_co", "id": 1, "name": "_T_co", "upper_bound": "builtins.object", "values": [], "variance": 1}], "type_ref": "builtins.tuple"}], "bound_args": [], "def_extras": {"first_arg": "self"}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "__iter__ of tuple", "ret_type": {".class": "Instance", "args": [{".class": "TypeVarType", "fullname": "builtins._T_co", "id": 1, "name": "_T_co", "upper_bound": "builtins.object", "values": [], "variance": 1}], "type_ref": "typing.Iterator"}, "variables": []}}}, "__le__": {".class": "SymbolTableNode", "kind": "Mdef", "node": {".class": "FuncDef", "arg_kinds": [0, 0], "arg_names": ["self", "x"], "flags": [], "fullname": "builtins.tuple.__le__", "name": "__le__", "type": {".class": "CallableType", "arg_kinds": [0, 0], "arg_names": [null, null], "arg_types": [{".class": "Instance", "args": [{".class": "TypeVarType", "fullname": "builtins._T_co", "id": 1, "name": "_T_co", "upper_bound": "builtins.object", "values": [], "variance": 1}], "type_ref": "builtins.tuple"}, {".class": "Instance", "args": [{".class": "TypeVarType", "fullname": "builtins._T_co", "id": 1, "name": "_T_co", "upper_bound": "builtins.object", "values": [], "variance": 1}], "type_ref": "builtins.tuple"}], "bound_args": [], "def_extras": {"first_arg": "self"}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "__le__ of tuple", "ret_type": "builtins.bool", "variables": []}}}, "__len__": {".class": "SymbolTableNode", "kind": "Mdef", "node": {".class": "FuncDef", "arg_kinds": [0], "arg_names": ["self"], "flags": [], "fullname": "builtins.tuple.__len__", "name": "__len__", "type": {".class": "CallableType", "arg_kinds": [0], "arg_names": [null], "arg_types": [{".class": "Instance", "args": [{".class": "TypeVarType", "fullname": "builtins._T_co", "id": 1, "name": "_T_co", "upper_bound": "builtins.object", "values": [], "variance": 1}], "type_ref": "builtins.tuple"}], "bound_args": [], "def_extras": {"first_arg": "self"}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "__len__ of tuple", "ret_type": "builtins.int", "variables": []}}}, "__lt__": {".class": "SymbolTableNode", "kind": "Mdef", "node": {".class": "FuncDef", "arg_kinds": [0, 0], "arg_names": ["self", "x"], "flags": [], "fullname": "builtins.tuple.__lt__", "name": "__lt__", "type": {".class": "CallableType", "arg_kinds": [0, 0], "arg_names": [null, null], "arg_types": [{".class": "Instance", "args": [{".class": "TypeVarType", "fullname": "builtins._T_co", "id": 1, "name": "_T_co", "upper_bound": "builtins.object", "values": [], "variance": 1}], "type_ref": "builtins.tuple"}, {".class": "Instance", "args": [{".class": "TypeVarType", "fullname": "builtins._T_co", "id": 1, "name": "_T_co", "upper_bound": "builtins.object", "values": [], "variance": 1}], "type_ref": "builtins.tuple"}], "bound_args": [], "def_extras": {"first_arg": "self"}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "__lt__ of tuple", "ret_type": "builtins.bool", "variables": []}}}, "__mul__": {".class": "SymbolTableNode", "kind": "Mdef", "node": {".class": "FuncDef", "arg_kinds": [0, 0], "arg_names": ["self", "n"], "flags": [], "fullname": "builtins.tuple.__mul__", "name": "__mul__", "type": {".class": "CallableType", "arg_kinds": [0, 0], "arg_names": [null, null], "arg_types": [{".class": "Instance", "args": [{".class": "TypeVarType", "fullname": "builtins._T_co", "id": 1, "name": "_T_co", "upper_bound": "builtins.object", "values": [], "variance": 1}], "type_ref": "builtins.tuple"}, "builtins.int"], "bound_args": [], "def_extras": {"first_arg": "self"}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "__mul__ of tuple", "ret_type": {".class": "Instance", "args": [{".class": "TypeVarType", "fullname": "builtins._T_co", "id": 1, "name": "_T_co", "upper_bound": "builtins.object", "values": [], "variance": 1}], "type_ref": "builtins.tuple"}, "variables": []}}}, "__new__": {".class": "SymbolTableNode", "kind": "Mdef", "node": {".class": "FuncDef", "arg_kinds": [0, 1], "arg_names": ["cls", "iterable"], "flags": [], "fullname": "builtins.tuple.__new__", "name": "__new__", "type": {".class": "CallableType", "arg_kinds": [0, 1], "arg_names": ["cls", "iterable"], "arg_types": [{".class": "TypeType", "item": {".class": "TypeVarType", "fullname": "builtins._T", "id": -1, "name": "_T", "upper_bound": "builtins.object", "values": [], "variance": 0}}, {".class": "Instance", "args": [{".class": "TypeVarType", "fullname": "builtins._T_co", "id": 1, "name": "_T_co", "upper_bound": "builtins.object", "values": [], "variance": 1}], "type_ref": "typing.Iterable"}], "bound_args": [], "def_extras": {"first_arg": "cls"}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "__new__ of tuple", "ret_type": {".class": "TypeVarType", "fullname": "builtins._T", "id": -1, "name": "_T", "upper_bound": "builtins.object", "values": [], "variance": 0}, "variables": [{".class": "TypeVarDef", "fullname": "builtins._T", "id": -1, "name": "_T", "upper_bound": "builtins.object", "values": [], "variance": 0}]}}}, "__rmul__": {".class": "SymbolTableNode", "kind": "Mdef", "node": {".class": "FuncDef", "arg_kinds": [0, 0], "arg_names": ["self", "n"], "flags": [], "fullname": "builtins.tuple.__rmul__", "name": "__rmul__", "type": {".class": "CallableType", "arg_kinds": [0, 0], "arg_names": [null, null], "arg_types": [{".class": "Instance", "args": [{".class": "TypeVarType", "fullname": "builtins._T_co", "id": 1, "name": "_T_co", "upper_bound": "builtins.object", "values": [], "variance": 1}], "type_ref": "builtins.tuple"}, "builtins.int"], "bound_args": [], "def_extras": {"first_arg": "self"}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "__rmul__ of tuple", "ret_type": {".class": "Instance", "args": [{".class": "TypeVarType", "fullname": "builtins._T_co", "id": 1, "name": "_T_co", "upper_bound": "builtins.object", "values": [], "variance": 1}], "type_ref": "builtins.tuple"}, "variables": []}}}, "count": {".class": "SymbolTableNode", "kind": "Mdef", "node": {".class": "FuncDef", "arg_kinds": [0, 0], "arg_names": ["self", "x"], "flags": [], "fullname": "builtins.tuple.count", "name": "count", "type": {".class": "CallableType", "arg_kinds": [0, 0], "arg_names": ["self", "x"], "arg_types": [{".class": "Instance", "args": [{".class": "TypeVarType", "fullname": "builtins._T_co", "id": 1, "name": "_T_co", "upper_bound": "builtins.object", "values": [], "variance": 1}], "type_ref": "builtins.tuple"}, {".class": "AnyType", "missing_import_name": null, "source_any": null, "type_of_any": 2}], "bound_args": [], "def_extras": {"first_arg": "self"}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "count of tuple", "ret_type": "builtins.int", "variables": []}}}, "index": {".class": "SymbolTableNode", "kind": "Mdef", "node": {".class": "FuncDef", "arg_kinds": [0, 0, 1, 1], "arg_names": ["self", "x", "start", "end"], "flags": ["is_conditional"], "fullname": "builtins.tuple.index", "name": "index", "type": {".class": "CallableType", "arg_kinds": [0, 0, 1, 1], "arg_names": ["self", "x", "start", "end"], "arg_types": [{".class": "Instance", "args": [{".class": "TypeVarType", "fullname": "builtins._T_co", "id": 1, "name": "_T_co", "upper_bound": "builtins.object", "values": [], "variance": 1}], "type_ref": "builtins.tuple"}, {".class": "AnyType", "missing_import_name": null, "source_any": null, "type_of_any": 2}, "builtins.int", "builtins.int"], "bound_args": [], "def_extras": {"first_arg": "self"}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "index of tuple", "ret_type": "builtins.int", "variables": []}}}}, "tuple_type": null, "type_vars": ["_T_co"], "typeddict_type": null}}, "type": {".class": "SymbolTableNode", "kind": "Gdef", "node": {".class": "TypeInfo", "_promote": null, "abstract_attributes": [], "bases": ["builtins.object"], "declared_metaclass": null, "defn": {".class": "ClassDef", "fullname": "builtins.type", "name": "type", "type_vars": []}, "flags": [], "fullname": "builtins.type", "metaclass_type": "builtins.type", "metadata": {}, "module_name": "builtins", "mro": ["builtins.type", "builtins.object"], "names": {".class": "SymbolTable", "__base__": {".class": "SymbolTableNode", "kind": "Mdef", "node": {".class": "Var", "flags": ["is_initialized_in_class"], "fullname": "builtins.type.__base__", "name": "__base__", "type": "builtins.type"}}, "__bases__": {".class": "SymbolTableNode", "kind": "Mdef", "node": {".class": "Var", "flags": ["is_initialized_in_class"], "fullname": "builtins.type.__bases__", "name": "__bases__", "type": {".class": "Instance", "args": ["builtins.type"], "type_ref": "builtins.tuple"}}}, "__basicsize__": {".class": "SymbolTableNode", "kind": "Mdef", "node": {".class": "Var", "flags": ["is_initialized_in_class"], "fullname": "builtins.type.__basicsize__", "name": "__basicsize__", "type": "builtins.int"}}, "__call__": {".class": "SymbolTableNode", "kind": "Mdef", "node": {".class": "FuncDef", "arg_kinds": [0, 2, 4], "arg_names": ["self", "args", "kwds"], "flags": [], "fullname": "builtins.type.__call__", "name": "__call__", "type": {".class": "CallableType", "arg_kinds": [0, 2, 4], "arg_names": ["self", "args", "kwds"], "arg_types": ["builtins.type", {".class": "AnyType", "missing_import_name": null, "source_any": null, "type_of_any": 2}, {".class": "AnyType", "missing_import_name": null, "source_any": null, "type_of_any": 2}], "bound_args": [], "def_extras": {"first_arg": "self"}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "__call__ of type", "ret_type": {".class": "AnyType", "missing_import_name": null, "source_any": null, "type_of_any": 2}, "variables": []}}}, "__dict__": {".class": "SymbolTableNode", "kind": "Mdef", "node": {".class": "Var", "flags": ["is_initialized_in_class"], "fullname": "builtins.type.__dict__", "name": "__dict__", "type": {".class": "Instance", "args": ["builtins.str", {".class": "AnyType", "missing_import_name": null, "source_any": null, "type_of_any": 2}], "type_ref": "builtins.dict"}}}, "__dictoffset__": {".class": "SymbolTableNode", "kind": "Mdef", "node": {".class": "Var", "flags": ["is_initialized_in_class"], "fullname": "builtins.type.__dictoffset__", "name": "__dictoffset__", "type": "builtins.int"}}, "__flags__": {".class": "SymbolTableNode", "kind": "Mdef", "node": {".class": "Var", "flags": ["is_initialized_in_class"], "fullname": "builtins.type.__flags__", "name": "__flags__", "type": "builtins.int"}}, "__init__": {".class": "SymbolTableNode", "kind": "Mdef", "node": {".class": "OverloadedFuncDef", "flags": [], "fullname": "builtins.type.__init__", "impl": null, "items": [{".class": "Decorator", "func": {".class": "FuncDef", "arg_kinds": [0, 0], "arg_names": ["self", "o"], "flags": ["is_overload", "is_decorated"], "fullname": "builtins.type.__init__", "name": "__init__", "type": {".class": "CallableType", "arg_kinds": [0, 0], "arg_names": ["self", "o"], "arg_types": ["builtins.type", "builtins.object"], "bound_args": [], "def_extras": {"first_arg": "self"}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "__init__ of type", "ret_type": {".class": "NoneTyp"}, "variables": []}}, "is_overload": true, "var": {".class": "Var", "flags": [], "fullname": null, "name": "__init__", "type": null}}, {".class": "Decorator", "func": {".class": "FuncDef", "arg_kinds": [0, 0, 0, 0], "arg_names": ["self", "name", "bases", "dict"], "flags": ["is_overload", "is_decorated"], "fullname": "builtins.type.__init__", "name": "__init__", "type": {".class": "CallableType", "arg_kinds": [0, 0, 0, 0], "arg_names": ["self", "name", "bases", "dict"], "arg_types": ["builtins.type", "builtins.str", {".class": "Instance", "args": ["builtins.type"], "type_ref": "builtins.tuple"}, {".class": "Instance", "args": ["builtins.str", {".class": "AnyType", "missing_import_name": null, "source_any": null, "type_of_any": 2}], "type_ref": "builtins.dict"}], "bound_args": [], "def_extras": {"first_arg": "self"}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "__init__ of type", "ret_type": {".class": "NoneTyp"}, "variables": []}}, "is_overload": true, "var": {".class": "Var", "flags": [], "fullname": null, "name": "__init__", "type": null}}], "type": {".class": "Overloaded", "items": [{".class": "CallableType", "arg_kinds": [0, 0], "arg_names": ["self", "o"], "arg_types": ["builtins.type", "builtins.object"], "bound_args": [], "def_extras": {"first_arg": "self"}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "__init__ of type", "ret_type": {".class": "NoneTyp"}, "variables": []}, {".class": "CallableType", "arg_kinds": [0, 0, 0, 0], "arg_names": ["self", "name", "bases", "dict"], "arg_types": ["builtins.type", "builtins.str", {".class": "Instance", "args": ["builtins.type"], "type_ref": "builtins.tuple"}, {".class": "Instance", "args": ["builtins.str", {".class": "AnyType", "missing_import_name": null, "source_any": null, "type_of_any": 2}], "type_ref": "builtins.dict"}], "bound_args": [], "def_extras": {"first_arg": "self"}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "__init__ of type", "ret_type": {".class": "NoneTyp"}, "variables": []}]}}}, "__instancecheck__": {".class": "SymbolTableNode", "kind": "Mdef", "node": {".class": "FuncDef", "arg_kinds": [0, 0], "arg_names": ["self", "instance"], "flags": [], "fullname": "builtins.type.__instancecheck__", "name": "__instancecheck__", "type": {".class": "CallableType", "arg_kinds": [0, 0], "arg_names": ["self", "instance"], "arg_types": ["builtins.type", {".class": "AnyType", "missing_import_name": null, "source_any": null, "type_of_any": 2}], "bound_args": [], "def_extras": {"first_arg": "self"}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "__instancecheck__ of type", "ret_type": "builtins.bool", "variables": []}}}, "__itemsize__": {".class": "SymbolTableNode", "kind": "Mdef", "node": {".class": "Var", "flags": ["is_initialized_in_class"], "fullname": "builtins.type.__itemsize__", "name": "__itemsize__", "type": "builtins.int"}}, "__module__": {".class": "SymbolTableNode", "kind": "Mdef", "node": {".class": "Var", "flags": ["is_initialized_in_class"], "fullname": "builtins.type.__module__", "name": "__module__", "type": "builtins.str"}}, "__mro__": {".class": "SymbolTableNode", "kind": "Mdef", "node": {".class": "Var", "flags": ["is_initialized_in_class"], "fullname": "builtins.type.__mro__", "name": "__mro__", "type": {".class": "Instance", "args": ["builtins.type"], "type_ref": "builtins.tuple"}}}, "__name__": {".class": "SymbolTableNode", "kind": "Mdef", "node": {".class": "Var", "flags": ["is_initialized_in_class"], "fullname": "builtins.type.__name__", "name": "__name__", "type": "builtins.str"}}, "__new__": {".class": "SymbolTableNode", "kind": "Mdef", "node": {".class": "OverloadedFuncDef", "flags": [], "fullname": "builtins.type.__new__", "impl": null, "items": [{".class": "Decorator", "func": {".class": "FuncDef", "arg_kinds": [0, 0], "arg_names": ["cls", "o"], "flags": ["is_overload", "is_decorated"], "fullname": "builtins.type.__new__", "name": "__new__", "type": {".class": "CallableType", "arg_kinds": [0, 0], "arg_names": ["cls", "o"], "arg_types": [{".class": "TypeType", "item": "builtins.type"}, "builtins.object"], "bound_args": [], "def_extras": {"first_arg": "cls"}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "__new__ of type", "ret_type": "builtins.type", "variables": []}}, "is_overload": true, "var": {".class": "Var", "flags": [], "fullname": null, "name": "__new__", "type": null}}, {".class": "Decorator", "func": {".class": "FuncDef", "arg_kinds": [0, 0, 0, 0], "arg_names": ["cls", "name", "bases", "namespace"], "flags": ["is_overload", "is_decorated"], "fullname": "builtins.type.__new__", "name": "__new__", "type": {".class": "CallableType", "arg_kinds": [0, 0, 0, 0], "arg_names": ["cls", "name", "bases", "namespace"], "arg_types": [{".class": "TypeType", "item": "builtins.type"}, "builtins.str", {".class": "Instance", "args": ["builtins.type"], "type_ref": "builtins.tuple"}, {".class": "Instance", "args": ["builtins.str", {".class": "AnyType", "missing_import_name": null, "source_any": null, "type_of_any": 2}], "type_ref": "builtins.dict"}], "bound_args": [], "def_extras": {"first_arg": "cls"}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "__new__ of type", "ret_type": "builtins.type", "variables": []}}, "is_overload": true, "var": {".class": "Var", "flags": [], "fullname": null, "name": "__new__", "type": null}}], "type": {".class": "Overloaded", "items": [{".class": "CallableType", "arg_kinds": [0, 0], "arg_names": ["cls", "o"], "arg_types": [{".class": "TypeType", "item": "builtins.type"}, "builtins.object"], "bound_args": [], "def_extras": {"first_arg": "cls"}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "__new__ of type", "ret_type": "builtins.type", "variables": []}, {".class": "CallableType", "arg_kinds": [0, 0, 0, 0], "arg_names": ["cls", "name", "bases", "namespace"], "arg_types": [{".class": "TypeType", "item": "builtins.type"}, "builtins.str", {".class": "Instance", "args": ["builtins.type"], "type_ref": "builtins.tuple"}, {".class": "Instance", "args": ["builtins.str", {".class": "AnyType", "missing_import_name": null, "source_any": null, "type_of_any": 2}], "type_ref": "builtins.dict"}], "bound_args": [], "def_extras": {"first_arg": "cls"}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "__new__ of type", "ret_type": "builtins.type", "variables": []}]}}}, "__prepare__": {".class": "SymbolTableNode", "kind": "Mdef", "node": {".class": "Decorator", "func": {".class": "FuncDef", "arg_kinds": [0, 0, 0, 4], "arg_names": ["metacls", "__name", "__bases", "kwds"], "flags": ["is_class", "is_decorated", "is_conditional"], "fullname": "builtins.type.__prepare__", "name": "__prepare__", "type": {".class": "CallableType", "arg_kinds": [0, 0, 0, 4], "arg_names": ["metacls", null, null, "kwds"], "arg_types": [{".class": "TypeType", "item": "builtins.type"}, "builtins.str", {".class": "Instance", "args": ["builtins.type"], "type_ref": "builtins.tuple"}, {".class": "AnyType", "missing_import_name": null, "source_any": null, "type_of_any": 2}], "bound_args": [], "def_extras": {"first_arg": "metacls"}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "__prepare__ of type", "ret_type": {".class": "Instance", "args": ["builtins.str", {".class": "AnyType", "missing_import_name": null, "source_any": null, "type_of_any": 2}], "type_ref": "typing.Mapping"}, "variables": []}}, "is_overload": false, "var": {".class": "Var", "flags": ["is_initialized_in_class", "is_classmethod"], "fullname": null, "name": "__prepare__", "type": {".class": "CallableType", "arg_kinds": [0, 0, 0, 4], "arg_names": ["metacls", null, null, "kwds"], "arg_types": [{".class": "TypeType", "item": "builtins.type"}, "builtins.str", {".class": "Instance", "args": ["builtins.type"], "type_ref": "builtins.tuple"}, {".class": "AnyType", "missing_import_name": null, "source_any": null, "type_of_any": 2}], "bound_args": [], "def_extras": {"first_arg": "metacls"}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "__prepare__ of type", "ret_type": {".class": "Instance", "args": ["builtins.str", {".class": "AnyType", "missing_import_name": null, "source_any": null, "type_of_any": 2}], "type_ref": "typing.Mapping"}, "variables": []}}}}, "__qualname__": {".class": "SymbolTableNode", "kind": "Mdef", "node": {".class": "Var", "flags": ["is_initialized_in_class"], "fullname": "builtins.type.__qualname__", "name": "__qualname__", "type": "builtins.str"}}, "__subclasscheck__": {".class": "SymbolTableNode", "kind": "Mdef", "node": {".class": "FuncDef", "arg_kinds": [0, 0], "arg_names": ["self", "subclass"], "flags": [], "fullname": "builtins.type.__subclasscheck__", "name": "__subclasscheck__", "type": {".class": "CallableType", "arg_kinds": [0, 0], "arg_names": ["self", "subclass"], "arg_types": ["builtins.type", "builtins.type"], "bound_args": [], "def_extras": {"first_arg": "self"}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "__subclasscheck__ of type", "ret_type": "builtins.bool", "variables": []}}}, "__subclasses__": {".class": "SymbolTableNode", "kind": "Mdef", "node": {".class": "FuncDef", "arg_kinds": [0], "arg_names": ["self"], "flags": [], "fullname": "builtins.type.__subclasses__", "name": "__subclasses__", "type": {".class": "CallableType", "arg_kinds": [0], "arg_names": ["self"], "arg_types": [{".class": "TypeVarType", "fullname": "builtins._TT", "id": -1, "name": "_TT", "upper_bound": "builtins.type", "values": [], "variance": 0}], "bound_args": [], "def_extras": {"first_arg": "self"}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "__subclasses__ of type", "ret_type": {".class": "Instance", "args": [{".class": "TypeVarType", "fullname": "builtins._TT", "id": -1, "name": "_TT", "upper_bound": "builtins.type", "values": [], "variance": 0}], "type_ref": "builtins.list"}, "variables": [{".class": "TypeVarDef", "fullname": "builtins._TT", "id": -1, "name": "_TT", "upper_bound": "builtins.type", "values": [], "variance": 0}]}}}, "__text_signature__": {".class": "SymbolTableNode", "kind": "Mdef", "node": {".class": "Var", "flags": ["is_initialized_in_class"], "fullname": "builtins.type.__text_signature__", "name": "__text_signature__", "type": {".class": "UnionType", "items": ["builtins.str", {".class": "NoneTyp"}]}}}, "__weakrefoffset__": {".class": "SymbolTableNode", "kind": "Mdef", "node": {".class": "Var", "flags": ["is_initialized_in_class"], "fullname": "builtins.type.__weakrefoffset__", "name": "__weakrefoffset__", "type": "builtins.int"}}, "mro": {".class": "SymbolTableNode", "kind": "Mdef", "node": {".class": "FuncDef", "arg_kinds": [0], "arg_names": ["self"], "flags": [], "fullname": "builtins.type.mro", "name": "mro", "type": {".class": "CallableType", "arg_kinds": [0], "arg_names": ["self"], "arg_types": ["builtins.type"], "bound_args": [], "def_extras": {"first_arg": "self"}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "mro of type", "ret_type": {".class": "Instance", "args": ["builtins.type"], "type_ref": "builtins.list"}, "variables": []}}}}, "tuple_type": null, "type_vars": [], "typeddict_type": null}}, "vars": {".class": "SymbolTableNode", "kind": "Gdef", "node": {".class": "FuncDef", "arg_kinds": [1], "arg_names": ["object"], "flags": [], "fullname": "builtins.vars", "name": "vars", "type": {".class": "CallableType", "arg_kinds": [1], "arg_names": ["object"], "arg_types": [{".class": "AnyType", "missing_import_name": null, "source_any": null, "type_of_any": 2}], "bound_args": [], "def_extras": {"first_arg": null}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "vars", "ret_type": {".class": "Instance", "args": ["builtins.str", {".class": "AnyType", "missing_import_name": null, "source_any": null, "type_of_any": 2}], "type_ref": "builtins.dict"}, "variables": []}}}, "zip": {".class": "SymbolTableNode", "kind": "Gdef", "node": {".class": "OverloadedFuncDef", "flags": [], "fullname": "builtins.zip", "impl": null, "items": [{".class": "Decorator", "func": {".class": "FuncDef", "arg_kinds": [0], "arg_names": ["iter1"], "flags": ["is_overload", "is_decorated", "is_conditional"], "fullname": "builtins.zip", "name": "zip", "type": {".class": "CallableType", "arg_kinds": [0], "arg_names": ["iter1"], "arg_types": [{".class": "Instance", "args": [{".class": "TypeVarType", "fullname": "builtins._T1", "id": -1, "name": "_T1", "upper_bound": "builtins.object", "values": [], "variance": 0}], "type_ref": "typing.Iterable"}], "bound_args": [], "def_extras": {"first_arg": null}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "zip", "ret_type": {".class": "Instance", "args": [{".class": "TupleType", "fallback": {".class": "Instance", "args": [{".class": "AnyType", "missing_import_name": null, "source_any": null, "type_of_any": 6}], "type_ref": "builtins.tuple"}, "implicit": false, "items": [{".class": "TypeVarType", "fullname": "builtins._T1", "id": -1, "name": "_T1", "upper_bound": "builtins.object", "values": [], "variance": 0}]}], "type_ref": "typing.Iterator"}, "variables": [{".class": "TypeVarDef", "fullname": "builtins._T1", "id": -1, "name": "_T1", "upper_bound": "builtins.object", "values": [], "variance": 0}]}}, "is_overload": true, "var": {".class": "Var", "flags": [], "fullname": null, "name": "zip", "type": null}}, {".class": "Decorator", "func": {".class": "FuncDef", "arg_kinds": [0, 0], "arg_names": ["iter1", "iter2"], "flags": ["is_overload", "is_decorated", "is_conditional"], "fullname": "builtins.zip", "name": "zip", "type": {".class": "CallableType", "arg_kinds": [0, 0], "arg_names": ["iter1", "iter2"], "arg_types": [{".class": "Instance", "args": [{".class": "TypeVarType", "fullname": "builtins._T1", "id": -1, "name": "_T1", "upper_bound": "builtins.object", "values": [], "variance": 0}], "type_ref": "typing.Iterable"}, {".class": "Instance", "args": [{".class": "TypeVarType", "fullname": "builtins._T2", "id": -2, "name": "_T2", "upper_bound": "builtins.object", "values": [], "variance": 0}], "type_ref": "typing.Iterable"}], "bound_args": [], "def_extras": {"first_arg": null}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "zip", "ret_type": {".class": "Instance", "args": [{".class": "TupleType", "fallback": {".class": "Instance", "args": [{".class": "AnyType", "missing_import_name": null, "source_any": null, "type_of_any": 6}], "type_ref": "builtins.tuple"}, "implicit": false, "items": [{".class": "TypeVarType", "fullname": "builtins._T1", "id": -1, "name": "_T1", "upper_bound": "builtins.object", "values": [], "variance": 0}, {".class": "TypeVarType", "fullname": "builtins._T2", "id": -2, "name": "_T2", "upper_bound": "builtins.object", "values": [], "variance": 0}]}], "type_ref": "typing.Iterator"}, "variables": [{".class": "TypeVarDef", "fullname": "builtins._T1", "id": -1, "name": "_T1", "upper_bound": "builtins.object", "values": [], "variance": 0}, {".class": "TypeVarDef", "fullname": "builtins._T2", "id": -2, "name": "_T2", "upper_bound": "builtins.object", "values": [], "variance": 0}]}}, "is_overload": true, "var": {".class": "Var", "flags": [], "fullname": null, "name": "zip", "type": null}}, {".class": "Decorator", "func": {".class": "FuncDef", "arg_kinds": [0, 0, 0], "arg_names": ["iter1", "iter2", "iter3"], "flags": ["is_overload", "is_decorated", "is_conditional"], "fullname": "builtins.zip", "name": "zip", "type": {".class": "CallableType", "arg_kinds": [0, 0, 0], "arg_names": ["iter1", "iter2", "iter3"], "arg_types": [{".class": "Instance", "args": [{".class": "TypeVarType", "fullname": "builtins._T1", "id": -1, "name": "_T1", "upper_bound": "builtins.object", "values": [], "variance": 0}], "type_ref": "typing.Iterable"}, {".class": "Instance", "args": [{".class": "TypeVarType", "fullname": "builtins._T2", "id": -2, "name": "_T2", "upper_bound": "builtins.object", "values": [], "variance": 0}], "type_ref": "typing.Iterable"}, {".class": "Instance", "args": [{".class": "TypeVarType", "fullname": "builtins._T3", "id": -3, "name": "_T3", "upper_bound": "builtins.object", "values": [], "variance": 0}], "type_ref": "typing.Iterable"}], "bound_args": [], "def_extras": {"first_arg": null}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "zip", "ret_type": {".class": "Instance", "args": [{".class": "TupleType", "fallback": {".class": "Instance", "args": [{".class": "AnyType", "missing_import_name": null, "source_any": null, "type_of_any": 6}], "type_ref": "builtins.tuple"}, "implicit": false, "items": [{".class": "TypeVarType", "fullname": "builtins._T1", "id": -1, "name": "_T1", "upper_bound": "builtins.object", "values": [], "variance": 0}, {".class": "TypeVarType", "fullname": "builtins._T2", "id": -2, "name": "_T2", "upper_bound": "builtins.object", "values": [], "variance": 0}, {".class": "TypeVarType", "fullname": "builtins._T3", "id": -3, "name": "_T3", "upper_bound": "builtins.object", "values": [], "variance": 0}]}], "type_ref": "typing.Iterator"}, "variables": [{".class": "TypeVarDef", "fullname": "builtins._T1", "id": -1, "name": "_T1", "upper_bound": "builtins.object", "values": [], "variance": 0}, {".class": "TypeVarDef", "fullname": "builtins._T2", "id": -2, "name": "_T2", "upper_bound": "builtins.object", "values": [], "variance": 0}, {".class": "TypeVarDef", "fullname": "builtins._T3", "id": -3, "name": "_T3", "upper_bound": "builtins.object", "values": [], "variance": 0}]}}, "is_overload": true, "var": {".class": "Var", "flags": [], "fullname": null, "name": "zip", "type": null}}, {".class": "Decorator", "func": {".class": "FuncDef", "arg_kinds": [0, 0, 0, 0], "arg_names": ["iter1", "iter2", "iter3", "iter4"], "flags": ["is_overload", "is_decorated", "is_conditional"], "fullname": "builtins.zip", "name": "zip", "type": {".class": "CallableType", "arg_kinds": [0, 0, 0, 0], "arg_names": ["iter1", "iter2", "iter3", "iter4"], "arg_types": [{".class": "Instance", "args": [{".class": "TypeVarType", "fullname": "builtins._T1", "id": -1, "name": "_T1", "upper_bound": "builtins.object", "values": [], "variance": 0}], "type_ref": "typing.Iterable"}, {".class": "Instance", "args": [{".class": "TypeVarType", "fullname": "builtins._T2", "id": -2, "name": "_T2", "upper_bound": "builtins.object", "values": [], "variance": 0}], "type_ref": "typing.Iterable"}, {".class": "Instance", "args": [{".class": "TypeVarType", "fullname": "builtins._T3", "id": -3, "name": "_T3", "upper_bound": "builtins.object", "values": [], "variance": 0}], "type_ref": "typing.Iterable"}, {".class": "Instance", "args": [{".class": "TypeVarType", "fullname": "builtins._T4", "id": -4, "name": "_T4", "upper_bound": "builtins.object", "values": [], "variance": 0}], "type_ref": "typing.Iterable"}], "bound_args": [], "def_extras": {"first_arg": null}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "zip", "ret_type": {".class": "Instance", "args": [{".class": "TupleType", "fallback": {".class": "Instance", "args": [{".class": "AnyType", "missing_import_name": null, "source_any": null, "type_of_any": 6}], "type_ref": "builtins.tuple"}, "implicit": false, "items": [{".class": "TypeVarType", "fullname": "builtins._T1", "id": -1, "name": "_T1", "upper_bound": "builtins.object", "values": [], "variance": 0}, {".class": "TypeVarType", "fullname": "builtins._T2", "id": -2, "name": "_T2", "upper_bound": "builtins.object", "values": [], "variance": 0}, {".class": "TypeVarType", "fullname": "builtins._T3", "id": -3, "name": "_T3", "upper_bound": "builtins.object", "values": [], "variance": 0}, {".class": "TypeVarType", "fullname": "builtins._T4", "id": -4, "name": "_T4", "upper_bound": "builtins.object", "values": [], "variance": 0}]}], "type_ref": "typing.Iterator"}, "variables": [{".class": "TypeVarDef", "fullname": "builtins._T1", "id": -1, "name": "_T1", "upper_bound": "builtins.object", "values": [], "variance": 0}, {".class": "TypeVarDef", "fullname": "builtins._T2", "id": -2, "name": "_T2", "upper_bound": "builtins.object", "values": [], "variance": 0}, {".class": "TypeVarDef", "fullname": "builtins._T3", "id": -3, "name": "_T3", "upper_bound": "builtins.object", "values": [], "variance": 0}, {".class": "TypeVarDef", "fullname": "builtins._T4", "id": -4, "name": "_T4", "upper_bound": "builtins.object", "values": [], "variance": 0}]}}, "is_overload": true, "var": {".class": "Var", "flags": [], "fullname": null, "name": "zip", "type": null}}, {".class": "Decorator", "func": {".class": "FuncDef", "arg_kinds": [0, 0, 0, 0, 0], "arg_names": ["iter1", "iter2", "iter3", "iter4", "iter5"], "flags": ["is_overload", "is_decorated", "is_conditional"], "fullname": "builtins.zip", "name": "zip", "type": {".class": "CallableType", "arg_kinds": [0, 0, 0, 0, 0], "arg_names": ["iter1", "iter2", "iter3", "iter4", "iter5"], "arg_types": [{".class": "Instance", "args": [{".class": "TypeVarType", "fullname": "builtins._T1", "id": -1, "name": "_T1", "upper_bound": "builtins.object", "values": [], "variance": 0}], "type_ref": "typing.Iterable"}, {".class": "Instance", "args": [{".class": "TypeVarType", "fullname": "builtins._T2", "id": -2, "name": "_T2", "upper_bound": "builtins.object", "values": [], "variance": 0}], "type_ref": "typing.Iterable"}, {".class": "Instance", "args": [{".class": "TypeVarType", "fullname": "builtins._T3", "id": -3, "name": "_T3", "upper_bound": "builtins.object", "values": [], "variance": 0}], "type_ref": "typing.Iterable"}, {".class": "Instance", "args": [{".class": "TypeVarType", "fullname": "builtins._T4", "id": -4, "name": "_T4", "upper_bound": "builtins.object", "values": [], "variance": 0}], "type_ref": "typing.Iterable"}, {".class": "Instance", "args": [{".class": "TypeVarType", "fullname": "builtins._T5", "id": -5, "name": "_T5", "upper_bound": "builtins.object", "values": [], "variance": 0}], "type_ref": "typing.Iterable"}], "bound_args": [], "def_extras": {"first_arg": null}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "zip", "ret_type": {".class": "Instance", "args": [{".class": "TupleType", "fallback": {".class": "Instance", "args": [{".class": "AnyType", "missing_import_name": null, "source_any": null, "type_of_any": 6}], "type_ref": "builtins.tuple"}, "implicit": false, "items": [{".class": "TypeVarType", "fullname": "builtins._T1", "id": -1, "name": "_T1", "upper_bound": "builtins.object", "values": [], "variance": 0}, {".class": "TypeVarType", "fullname": "builtins._T2", "id": -2, "name": "_T2", "upper_bound": "builtins.object", "values": [], "variance": 0}, {".class": "TypeVarType", "fullname": "builtins._T3", "id": -3, "name": "_T3", "upper_bound": "builtins.object", "values": [], "variance": 0}, {".class": "TypeVarType", "fullname": "builtins._T4", "id": -4, "name": "_T4", "upper_bound": "builtins.object", "values": [], "variance": 0}, {".class": "TypeVarType", "fullname": "builtins._T5", "id": -5, "name": "_T5", "upper_bound": "builtins.object", "values": [], "variance": 0}]}], "type_ref": "typing.Iterator"}, "variables": [{".class": "TypeVarDef", "fullname": "builtins._T1", "id": -1, "name": "_T1", "upper_bound": "builtins.object", "values": [], "variance": 0}, {".class": "TypeVarDef", "fullname": "builtins._T2", "id": -2, "name": "_T2", "upper_bound": "builtins.object", "values": [], "variance": 0}, {".class": "TypeVarDef", "fullname": "builtins._T3", "id": -3, "name": "_T3", "upper_bound": "builtins.object", "values": [], "variance": 0}, {".class": "TypeVarDef", "fullname": "builtins._T4", "id": -4, "name": "_T4", "upper_bound": "builtins.object", "values": [], "variance": 0}, {".class": "TypeVarDef", "fullname": "builtins._T5", "id": -5, "name": "_T5", "upper_bound": "builtins.object", "values": [], "variance": 0}]}}, "is_overload": true, "var": {".class": "Var", "flags": [], "fullname": null, "name": "zip", "type": null}}, {".class": "Decorator", "func": {".class": "FuncDef", "arg_kinds": [0, 0, 0, 0, 0, 0, 2], "arg_names": ["iter1", "iter2", "iter3", "iter4", "iter5", "iter6", "iterables"], "flags": ["is_overload", "is_decorated", "is_conditional"], "fullname": "builtins.zip", "name": "zip", "type": {".class": "CallableType", "arg_kinds": [0, 0, 0, 0, 0, 0, 2], "arg_names": ["iter1", "iter2", "iter3", "iter4", "iter5", "iter6", "iterables"], "arg_types": [{".class": "Instance", "args": [{".class": "AnyType", "missing_import_name": null, "source_any": null, "type_of_any": 2}], "type_ref": "typing.Iterable"}, {".class": "Instance", "args": [{".class": "AnyType", "missing_import_name": null, "source_any": null, "type_of_any": 2}], "type_ref": "typing.Iterable"}, {".class": "Instance", "args": [{".class": "AnyType", "missing_import_name": null, "source_any": null, "type_of_any": 2}], "type_ref": "typing.Iterable"}, {".class": "Instance", "args": [{".class": "AnyType", "missing_import_name": null, "source_any": null, "type_of_any": 2}], "type_ref": "typing.Iterable"}, {".class": "Instance", "args": [{".class": "AnyType", "missing_import_name": null, "source_any": null, "type_of_any": 2}], "type_ref": "typing.Iterable"}, {".class": "Instance", "args": [{".class": "AnyType", "missing_import_name": null, "source_any": null, "type_of_any": 2}], "type_ref": "typing.Iterable"}, {".class": "Instance", "args": [{".class": "AnyType", "missing_import_name": null, "source_any": null, "type_of_any": 2}], "type_ref": "typing.Iterable"}], "bound_args": [], "def_extras": {"first_arg": null}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "zip", "ret_type": {".class": "Instance", "args": [{".class": "Instance", "args": [{".class": "AnyType", "missing_import_name": null, "source_any": null, "type_of_any": 2}], "type_ref": "builtins.tuple"}], "type_ref": "typing.Iterator"}, "variables": []}}, "is_overload": true, "var": {".class": "Var", "flags": [], "fullname": null, "name": "zip", "type": null}}], "type": {".class": "Overloaded", "items": [{".class": "CallableType", "arg_kinds": [0], "arg_names": ["iter1"], "arg_types": [{".class": "Instance", "args": [{".class": "TypeVarType", "fullname": "builtins._T1", "id": -1, "name": "_T1", "upper_bound": "builtins.object", "values": [], "variance": 0}], "type_ref": "typing.Iterable"}], "bound_args": [], "def_extras": {"first_arg": null}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "zip", "ret_type": {".class": "Instance", "args": [{".class": "TupleType", "fallback": {".class": "Instance", "args": [{".class": "AnyType", "missing_import_name": null, "source_any": null, "type_of_any": 6}], "type_ref": "builtins.tuple"}, "implicit": false, "items": [{".class": "TypeVarType", "fullname": "builtins._T1", "id": -1, "name": "_T1", "upper_bound": "builtins.object", "values": [], "variance": 0}]}], "type_ref": "typing.Iterator"}, "variables": [{".class": "TypeVarDef", "fullname": "builtins._T1", "id": -1, "name": "_T1", "upper_bound": "builtins.object", "values": [], "variance": 0}]}, {".class": "CallableType", "arg_kinds": [0, 0], "arg_names": ["iter1", "iter2"], "arg_types": [{".class": "Instance", "args": [{".class": "TypeVarType", "fullname": "builtins._T1", "id": -1, "name": "_T1", "upper_bound": "builtins.object", "values": [], "variance": 0}], "type_ref": "typing.Iterable"}, {".class": "Instance", "args": [{".class": "TypeVarType", "fullname": "builtins._T2", "id": -2, "name": "_T2", "upper_bound": "builtins.object", "values": [], "variance": 0}], "type_ref": "typing.Iterable"}], "bound_args": [], "def_extras": {"first_arg": null}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "zip", "ret_type": {".class": "Instance", "args": [{".class": "TupleType", "fallback": {".class": "Instance", "args": [{".class": "AnyType", "missing_import_name": null, "source_any": null, "type_of_any": 6}], "type_ref": "builtins.tuple"}, "implicit": false, "items": [{".class": "TypeVarType", "fullname": "builtins._T1", "id": -1, "name": "_T1", "upper_bound": "builtins.object", "values": [], "variance": 0}, {".class": "TypeVarType", "fullname": "builtins._T2", "id": -2, "name": "_T2", "upper_bound": "builtins.object", "values": [], "variance": 0}]}], "type_ref": "typing.Iterator"}, "variables": [{".class": "TypeVarDef", "fullname": "builtins._T1", "id": -1, "name": "_T1", "upper_bound": "builtins.object", "values": [], "variance": 0}, {".class": "TypeVarDef", "fullname": "builtins._T2", "id": -2, "name": "_T2", "upper_bound": "builtins.object", "values": [], "variance": 0}]}, {".class": "CallableType", "arg_kinds": [0, 0, 0], "arg_names": ["iter1", "iter2", "iter3"], "arg_types": [{".class": "Instance", "args": [{".class": "TypeVarType", "fullname": "builtins._T1", "id": -1, "name": "_T1", "upper_bound": "builtins.object", "values": [], "variance": 0}], "type_ref": "typing.Iterable"}, {".class": "Instance", "args": [{".class": "TypeVarType", "fullname": "builtins._T2", "id": -2, "name": "_T2", "upper_bound": "builtins.object", "values": [], "variance": 0}], "type_ref": "typing.Iterable"}, {".class": "Instance", "args": [{".class": "TypeVarType", "fullname": "builtins._T3", "id": -3, "name": "_T3", "upper_bound": "builtins.object", "values": [], "variance": 0}], "type_ref": "typing.Iterable"}], "bound_args": [], "def_extras": {"first_arg": null}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "zip", "ret_type": {".class": "Instance", "args": [{".class": "TupleType", "fallback": {".class": "Instance", "args": [{".class": "AnyType", "missing_import_name": null, "source_any": null, "type_of_any": 6}], "type_ref": "builtins.tuple"}, "implicit": false, "items": [{".class": "TypeVarType", "fullname": "builtins._T1", "id": -1, "name": "_T1", "upper_bound": "builtins.object", "values": [], "variance": 0}, {".class": "TypeVarType", "fullname": "builtins._T2", "id": -2, "name": "_T2", "upper_bound": "builtins.object", "values": [], "variance": 0}, {".class": "TypeVarType", "fullname": "builtins._T3", "id": -3, "name": "_T3", "upper_bound": "builtins.object", "values": [], "variance": 0}]}], "type_ref": "typing.Iterator"}, "variables": [{".class": "TypeVarDef", "fullname": "builtins._T1", "id": -1, "name": "_T1", "upper_bound": "builtins.object", "values": [], "variance": 0}, {".class": "TypeVarDef", "fullname": "builtins._T2", "id": -2, "name": "_T2", "upper_bound": "builtins.object", "values": [], "variance": 0}, {".class": "TypeVarDef", "fullname": "builtins._T3", "id": -3, "name": "_T3", "upper_bound": "builtins.object", "values": [], "variance": 0}]}, {".class": "CallableType", "arg_kinds": [0, 0, 0, 0], "arg_names": ["iter1", "iter2", "iter3", "iter4"], "arg_types": [{".class": "Instance", "args": [{".class": "TypeVarType", "fullname": "builtins._T1", "id": -1, "name": "_T1", "upper_bound": "builtins.object", "values": [], "variance": 0}], "type_ref": "typing.Iterable"}, {".class": "Instance", "args": [{".class": "TypeVarType", "fullname": "builtins._T2", "id": -2, "name": "_T2", "upper_bound": "builtins.object", "values": [], "variance": 0}], "type_ref": "typing.Iterable"}, {".class": "Instance", "args": [{".class": "TypeVarType", "fullname": "builtins._T3", "id": -3, "name": "_T3", "upper_bound": "builtins.object", "values": [], "variance": 0}], "type_ref": "typing.Iterable"}, {".class": "Instance", "args": [{".class": "TypeVarType", "fullname": "builtins._T4", "id": -4, "name": "_T4", "upper_bound": "builtins.object", "values": [], "variance": 0}], "type_ref": "typing.Iterable"}], "bound_args": [], "def_extras": {"first_arg": null}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "zip", "ret_type": {".class": "Instance", "args": [{".class": "TupleType", "fallback": {".class": "Instance", "args": [{".class": "AnyType", "missing_import_name": null, "source_any": null, "type_of_any": 6}], "type_ref": "builtins.tuple"}, "implicit": false, "items": [{".class": "TypeVarType", "fullname": "builtins._T1", "id": -1, "name": "_T1", "upper_bound": "builtins.object", "values": [], "variance": 0}, {".class": "TypeVarType", "fullname": "builtins._T2", "id": -2, "name": "_T2", "upper_bound": "builtins.object", "values": [], "variance": 0}, {".class": "TypeVarType", "fullname": "builtins._T3", "id": -3, "name": "_T3", "upper_bound": "builtins.object", "values": [], "variance": 0}, {".class": "TypeVarType", "fullname": "builtins._T4", "id": -4, "name": "_T4", "upper_bound": "builtins.object", "values": [], "variance": 0}]}], "type_ref": "typing.Iterator"}, "variables": [{".class": "TypeVarDef", "fullname": "builtins._T1", "id": -1, "name": "_T1", "upper_bound": "builtins.object", "values": [], "variance": 0}, {".class": "TypeVarDef", "fullname": "builtins._T2", "id": -2, "name": "_T2", "upper_bound": "builtins.object", "values": [], "variance": 0}, {".class": "TypeVarDef", "fullname": "builtins._T3", "id": -3, "name": "_T3", "upper_bound": "builtins.object", "values": [], "variance": 0}, {".class": "TypeVarDef", "fullname": "builtins._T4", "id": -4, "name": "_T4", "upper_bound": "builtins.object", "values": [], "variance": 0}]}, {".class": "CallableType", "arg_kinds": [0, 0, 0, 0, 0], "arg_names": ["iter1", "iter2", "iter3", "iter4", "iter5"], "arg_types": [{".class": "Instance", "args": [{".class": "TypeVarType", "fullname": "builtins._T1", "id": -1, "name": "_T1", "upper_bound": "builtins.object", "values": [], "variance": 0}], "type_ref": "typing.Iterable"}, {".class": "Instance", "args": [{".class": "TypeVarType", "fullname": "builtins._T2", "id": -2, "name": "_T2", "upper_bound": "builtins.object", "values": [], "variance": 0}], "type_ref": "typing.Iterable"}, {".class": "Instance", "args": [{".class": "TypeVarType", "fullname": "builtins._T3", "id": -3, "name": "_T3", "upper_bound": "builtins.object", "values": [], "variance": 0}], "type_ref": "typing.Iterable"}, {".class": "Instance", "args": [{".class": "TypeVarType", "fullname": "builtins._T4", "id": -4, "name": "_T4", "upper_bound": "builtins.object", "values": [], "variance": 0}], "type_ref": "typing.Iterable"}, {".class": "Instance", "args": [{".class": "TypeVarType", "fullname": "builtins._T5", "id": -5, "name": "_T5", "upper_bound": "builtins.object", "values": [], "variance": 0}], "type_ref": "typing.Iterable"}], "bound_args": [], "def_extras": {"first_arg": null}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "zip", "ret_type": {".class": "Instance", "args": [{".class": "TupleType", "fallback": {".class": "Instance", "args": [{".class": "AnyType", "missing_import_name": null, "source_any": null, "type_of_any": 6}], "type_ref": "builtins.tuple"}, "implicit": false, "items": [{".class": "TypeVarType", "fullname": "builtins._T1", "id": -1, "name": "_T1", "upper_bound": "builtins.object", "values": [], "variance": 0}, {".class": "TypeVarType", "fullname": "builtins._T2", "id": -2, "name": "_T2", "upper_bound": "builtins.object", "values": [], "variance": 0}, {".class": "TypeVarType", "fullname": "builtins._T3", "id": -3, "name": "_T3", "upper_bound": "builtins.object", "values": [], "variance": 0}, {".class": "TypeVarType", "fullname": "builtins._T4", "id": -4, "name": "_T4", "upper_bound": "builtins.object", "values": [], "variance": 0}, {".class": "TypeVarType", "fullname": "builtins._T5", "id": -5, "name": "_T5", "upper_bound": "builtins.object", "values": [], "variance": 0}]}], "type_ref": "typing.Iterator"}, "variables": [{".class": "TypeVarDef", "fullname": "builtins._T1", "id": -1, "name": "_T1", "upper_bound": "builtins.object", "values": [], "variance": 0}, {".class": "TypeVarDef", "fullname": "builtins._T2", "id": -2, "name": "_T2", "upper_bound": "builtins.object", "values": [], "variance": 0}, {".class": "TypeVarDef", "fullname": "builtins._T3", "id": -3, "name": "_T3", "upper_bound": "builtins.object", "values": [], "variance": 0}, {".class": "TypeVarDef", "fullname": "builtins._T4", "id": -4, "name": "_T4", "upper_bound": "builtins.object", "values": [], "variance": 0}, {".class": "TypeVarDef", "fullname": "builtins._T5", "id": -5, "name": "_T5", "upper_bound": "builtins.object", "values": [], "variance": 0}]}, {".class": "CallableType", "arg_kinds": [0, 0, 0, 0, 0, 0, 2], "arg_names": ["iter1", "iter2", "iter3", "iter4", "iter5", "iter6", "iterables"], "arg_types": [{".class": "Instance", "args": [{".class": "AnyType", "missing_import_name": null, "source_any": null, "type_of_any": 2}], "type_ref": "typing.Iterable"}, {".class": "Instance", "args": [{".class": "AnyType", "missing_import_name": null, "source_any": null, "type_of_any": 2}], "type_ref": "typing.Iterable"}, {".class": "Instance", "args": [{".class": "AnyType", "missing_import_name": null, "source_any": null, "type_of_any": 2}], "type_ref": "typing.Iterable"}, {".class": "Instance", "args": [{".class": "AnyType", "missing_import_name": null, "source_any": null, "type_of_any": 2}], "type_ref": "typing.Iterable"}, {".class": "Instance", "args": [{".class": "AnyType", "missing_import_name": null, "source_any": null, "type_of_any": 2}], "type_ref": "typing.Iterable"}, {".class": "Instance", "args": [{".class": "AnyType", "missing_import_name": null, "source_any": null, "type_of_any": 2}], "type_ref": "typing.Iterable"}, {".class": "Instance", "args": [{".class": "AnyType", "missing_import_name": null, "source_any": null, "type_of_any": 2}], "type_ref": "typing.Iterable"}], "bound_args": [], "def_extras": {"first_arg": null}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "zip", "ret_type": {".class": "Instance", "args": [{".class": "Instance", "args": [{".class": "AnyType", "missing_import_name": null, "source_any": null, "type_of_any": 2}], "type_ref": "builtins.tuple"}], "type_ref": "typing.Iterator"}, "variables": []}]}}}}, "path": "/usr/lib/python3/dist-packages/mypy/typeshed/stdlib/2and3/builtins.pyi"}
\ No newline at end of file
diff --git a/Postgres/StressTests/.mypy_cache/3.7/builtins.meta.json b/Postgres/StressTests/.mypy_cache/3.7/builtins.meta.json
deleted file mode 100644
index a13091f..0000000
--- a/Postgres/StressTests/.mypy_cache/3.7/builtins.meta.json
+++ /dev/null
@@ -1 +0,0 @@
-{"child_modules": [], "data_mtime": 1553688971, "dep_lines": [4, 11, 12, 13, 14], "dep_prios": [5, 5, 5, 5, 10], "dependencies": ["typing", "abc", "ast", "types", "sys"], "hash": "9dc9a9f7e49978b64af05d193d1c3871", "id": "builtins", "ignore_all": true, "interface_hash": "9231838664201464bc3dd98b9fb90b9d", "mtime": 1549659920, "options": {"allow_redefinition": false, "allow_untyped_globals": false, "always_false": [], "always_true": [], "bazel": false, "check_untyped_defs": false, "disallow_any_decorated": false, "disallow_any_explicit": false, "disallow_any_expr": false, "disallow_any_generics": false, "disallow_any_unimported": false, "disallow_incomplete_defs": false, "disallow_subclassing_any": false, "disallow_untyped_calls": false, "disallow_untyped_decorators": false, "disallow_untyped_defs": false, "follow_imports": "normal", "follow_imports_for_stubs": false, "ignore_errors": false, "ignore_missing_imports": false, "local_partial_types": false, "mypyc": false, "new_semantic_analyzer": false, "no_implicit_optional": false, "platform": "linux", "plugins": [], "show_none_errors": true, "strict_optional": true, "strict_optional_whitelist": null, "warn_no_return": true, "warn_return_any": false, "warn_unused_ignores": false}, "path": "/usr/lib/python3/dist-packages/mypy/typeshed/stdlib/2and3/builtins.pyi", "size": 67860, "suppressed": [], "version_id": "0.670"}
\ No newline at end of file
diff --git a/Postgres/StressTests/.mypy_cache/3.7/codecs.data.json b/Postgres/StressTests/.mypy_cache/3.7/codecs.data.json
deleted file mode 100644
index 96bf9d4..0000000
--- a/Postgres/StressTests/.mypy_cache/3.7/codecs.data.json
+++ /dev/null
@@ -1 +0,0 @@
-{".class": "MypyFile", "_fullname": "codecs", "is_partial_stub_package": false, "is_stub": true, "names": {".class": "SymbolTable", "Any": {".class": "SymbolTableNode", "cross_ref": "typing.Any", "kind": "Gdef", "module_hidden": true, "module_public": false}, "BOM": {".class": "SymbolTableNode", "kind": "Gdef", "node": {".class": "Var", "flags": [], "fullname": "codecs.BOM", "name": "BOM", "type": "builtins.bytes"}}, "BOM_BE": {".class": "SymbolTableNode", "kind": "Gdef", "node": {".class": "Var", "flags": [], "fullname": "codecs.BOM_BE", "name": "BOM_BE", "type": "builtins.bytes"}}, "BOM_LE": {".class": "SymbolTableNode", "kind": "Gdef", "node": {".class": "Var", "flags": [], "fullname": "codecs.BOM_LE", "name": "BOM_LE", "type": "builtins.bytes"}}, "BOM_UTF16": {".class": "SymbolTableNode", "kind": "Gdef", "node": {".class": "Var", "flags": [], "fullname": "codecs.BOM_UTF16", "name": "BOM_UTF16", "type": "builtins.bytes"}}, "BOM_UTF16_BE": {".class": "SymbolTableNode", "kind": "Gdef", "node": {".class": "Var", "flags": [], "fullname": "codecs.BOM_UTF16_BE", "name": "BOM_UTF16_BE", "type": "builtins.bytes"}}, "BOM_UTF16_LE": {".class": "SymbolTableNode", "kind": "Gdef", "node": {".class": "Var", "flags": [], "fullname": "codecs.BOM_UTF16_LE", "name": "BOM_UTF16_LE", "type": "builtins.bytes"}}, "BOM_UTF32": {".class": "SymbolTableNode", "kind": "Gdef", "node": {".class": "Var", "flags": [], "fullname": "codecs.BOM_UTF32", "name": "BOM_UTF32", "type": "builtins.bytes"}}, "BOM_UTF32_BE": {".class": "SymbolTableNode", "kind": "Gdef", "node": {".class": "Var", "flags": [], "fullname": "codecs.BOM_UTF32_BE", "name": "BOM_UTF32_BE", "type": "builtins.bytes"}}, "BOM_UTF32_LE": {".class": "SymbolTableNode", "kind": "Gdef", "node": {".class": "Var", "flags": [], "fullname": "codecs.BOM_UTF32_LE", "name": "BOM_UTF32_LE", "type": "builtins.bytes"}}, "BOM_UTF8": {".class": "SymbolTableNode", "kind": "Gdef", "node": {".class": "Var", "flags": [], "fullname": "codecs.BOM_UTF8", "name": "BOM_UTF8", "type": "builtins.bytes"}}, "BinaryIO": {".class": "SymbolTableNode", "cross_ref": "typing.BinaryIO", "kind": "Gdef", "module_hidden": true, "module_public": false}, "BufferedIncrementalDecoder": {".class": "SymbolTableNode", "kind": "Gdef", "node": {".class": "TypeInfo", "_promote": null, "abstract_attributes": ["_buffer_decode"], "bases": ["codecs.IncrementalDecoder"], "declared_metaclass": null, "defn": {".class": "ClassDef", "fullname": "codecs.BufferedIncrementalDecoder", "name": "BufferedIncrementalDecoder", "type_vars": []}, "flags": ["is_abstract"], "fullname": "codecs.BufferedIncrementalDecoder", "metaclass_type": null, "metadata": {}, "module_name": "codecs", "mro": ["codecs.BufferedIncrementalDecoder", "codecs.IncrementalDecoder", "builtins.object"], "names": {".class": "SymbolTable", "__init__": {".class": "SymbolTableNode", "kind": "Mdef", "node": {".class": "FuncDef", "arg_kinds": [0, 1], "arg_names": ["self", "errors"], "flags": [], "fullname": "codecs.BufferedIncrementalDecoder.__init__", "name": "__init__", "type": {".class": "CallableType", "arg_kinds": [0, 1], "arg_names": ["self", "errors"], "arg_types": ["codecs.BufferedIncrementalDecoder", "builtins.str"], "bound_args": [], "def_extras": {"first_arg": "self"}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "__init__ of BufferedIncrementalDecoder", "ret_type": {".class": "NoneTyp"}, "variables": []}}}, "_buffer_decode": {".class": "SymbolTableNode", "kind": "Mdef", "node": {".class": "Decorator", "func": {".class": "FuncDef", "arg_kinds": [0, 0, 0, 0], "arg_names": ["self", "input", "errors", "final"], "flags": ["is_decorated", "is_abstract"], "fullname": "codecs.BufferedIncrementalDecoder._buffer_decode", "name": "_buffer_decode", "type": {".class": "CallableType", "arg_kinds": [0, 0, 0, 0], "arg_names": ["self", "input", "errors", "final"], "arg_types": ["codecs.BufferedIncrementalDecoder", "builtins.bytes", "builtins.str", "builtins.bool"], "bound_args": [], "def_extras": {"first_arg": "self"}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "_buffer_decode of BufferedIncrementalDecoder", "ret_type": {".class": "TupleType", "fallback": {".class": "Instance", "args": [{".class": "AnyType", "missing_import_name": null, "source_any": null, "type_of_any": 6}], "type_ref": "builtins.tuple"}, "implicit": false, "items": ["builtins.str", "builtins.int"]}, "variables": []}}, "is_overload": false, "var": {".class": "Var", "flags": ["is_initialized_in_class"], "fullname": null, "name": "_buffer_decode", "type": {".class": "CallableType", "arg_kinds": [0, 0, 0, 0], "arg_names": ["self", "input", "errors", "final"], "arg_types": ["codecs.BufferedIncrementalDecoder", "builtins.bytes", "builtins.str", "builtins.bool"], "bound_args": [], "def_extras": {"first_arg": "self"}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "_buffer_decode of BufferedIncrementalDecoder", "ret_type": {".class": "TupleType", "fallback": {".class": "Instance", "args": [{".class": "AnyType", "missing_import_name": null, "source_any": null, "type_of_any": 6}], "type_ref": "builtins.tuple"}, "implicit": false, "items": ["builtins.str", "builtins.int"]}, "variables": []}}}}, "buffer": {".class": "SymbolTableNode", "kind": "Mdef", "node": {".class": "Var", "flags": ["is_initialized_in_class"], "fullname": "codecs.BufferedIncrementalDecoder.buffer", "name": "buffer", "type": "builtins.bytes"}}, "decode": {".class": "SymbolTableNode", "kind": "Mdef", "node": {".class": "FuncDef", "arg_kinds": [0, 0, 1], "arg_names": ["self", "object", "final"], "flags": [], "fullname": "codecs.BufferedIncrementalDecoder.decode", "name": "decode", "type": {".class": "CallableType", "arg_kinds": [0, 0, 1], "arg_names": ["self", "object", "final"], "arg_types": ["codecs.BufferedIncrementalDecoder", "builtins.bytes", "builtins.bool"], "bound_args": [], "def_extras": {"first_arg": "self"}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "decode of BufferedIncrementalDecoder", "ret_type": "builtins.str", "variables": []}}}}, "tuple_type": null, "type_vars": [], "typeddict_type": null}}, "BufferedIncrementalEncoder": {".class": "SymbolTableNode", "kind": "Gdef", "node": {".class": "TypeInfo", "_promote": null, "abstract_attributes": ["_buffer_encode"], "bases": ["codecs.IncrementalEncoder"], "declared_metaclass": null, "defn": {".class": "ClassDef", "fullname": "codecs.BufferedIncrementalEncoder", "name": "BufferedIncrementalEncoder", "type_vars": []}, "flags": ["is_abstract"], "fullname": "codecs.BufferedIncrementalEncoder", "metaclass_type": null, "metadata": {}, "module_name": "codecs", "mro": ["codecs.BufferedIncrementalEncoder", "codecs.IncrementalEncoder", "builtins.object"], "names": {".class": "SymbolTable", "__init__": {".class": "SymbolTableNode", "kind": "Mdef", "node": {".class": "FuncDef", "arg_kinds": [0, 1], "arg_names": ["self", "errors"], "flags": [], "fullname": "codecs.BufferedIncrementalEncoder.__init__", "name": "__init__", "type": {".class": "CallableType", "arg_kinds": [0, 1], "arg_names": ["self", "errors"], "arg_types": ["codecs.BufferedIncrementalEncoder", "builtins.str"], "bound_args": [], "def_extras": {"first_arg": "self"}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "__init__ of BufferedIncrementalEncoder", "ret_type": {".class": "NoneTyp"}, "variables": []}}}, "_buffer_encode": {".class": "SymbolTableNode", "kind": "Mdef", "node": {".class": "Decorator", "func": {".class": "FuncDef", "arg_kinds": [0, 0, 0, 0], "arg_names": ["self", "input", "errors", "final"], "flags": ["is_decorated", "is_abstract"], "fullname": "codecs.BufferedIncrementalEncoder._buffer_encode", "name": "_buffer_encode", "type": {".class": "CallableType", "arg_kinds": [0, 0, 0, 0], "arg_names": ["self", "input", "errors", "final"], "arg_types": ["codecs.BufferedIncrementalEncoder", "builtins.str", "builtins.str", "builtins.bool"], "bound_args": [], "def_extras": {"first_arg": "self"}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "_buffer_encode of BufferedIncrementalEncoder", "ret_type": "builtins.bytes", "variables": []}}, "is_overload": false, "var": {".class": "Var", "flags": ["is_initialized_in_class"], "fullname": null, "name": "_buffer_encode", "type": {".class": "CallableType", "arg_kinds": [0, 0, 0, 0], "arg_names": ["self", "input", "errors", "final"], "arg_types": ["codecs.BufferedIncrementalEncoder", "builtins.str", "builtins.str", "builtins.bool"], "bound_args": [], "def_extras": {"first_arg": "self"}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "_buffer_encode of BufferedIncrementalEncoder", "ret_type": "builtins.bytes", "variables": []}}}}, "buffer": {".class": "SymbolTableNode", "kind": "Mdef", "node": {".class": "Var", "flags": ["is_initialized_in_class"], "fullname": "codecs.BufferedIncrementalEncoder.buffer", "name": "buffer", "type": "builtins.str"}}, "encode": {".class": "SymbolTableNode", "kind": "Mdef", "node": {".class": "FuncDef", "arg_kinds": [0, 0, 1], "arg_names": ["self", "input", "final"], "flags": [], "fullname": "codecs.BufferedIncrementalEncoder.encode", "name": "encode", "type": {".class": "CallableType", "arg_kinds": [0, 0, 1], "arg_names": ["self", "input", "final"], "arg_types": ["codecs.BufferedIncrementalEncoder", "builtins.str", "builtins.bool"], "bound_args": [], "def_extras": {"first_arg": "self"}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "encode of BufferedIncrementalEncoder", "ret_type": "builtins.bytes", "variables": []}}}}, "tuple_type": null, "type_vars": [], "typeddict_type": null}}, "Callable": {".class": "SymbolTableNode", "cross_ref": "typing.Callable", "kind": "Gdef", "module_hidden": true, "module_public": false}, "Codec": {".class": "SymbolTableNode", "kind": "Gdef", "node": {".class": "TypeInfo", "_promote": null, "abstract_attributes": [], "bases": ["builtins.object"], "declared_metaclass": null, "defn": {".class": "ClassDef", "fullname": "codecs.Codec", "name": "Codec", "type_vars": []}, "flags": [], "fullname": "codecs.Codec", "metaclass_type": null, "metadata": {}, "module_name": "codecs", "mro": ["codecs.Codec", "builtins.object"], "names": {".class": "SymbolTable", "decode": {".class": "SymbolTableNode", "kind": "Mdef", "node": {".class": "FuncDef", "arg_kinds": [0, 0, 1], "arg_names": ["self", "input", "errors"], "flags": [], "fullname": "codecs.Codec.decode", "name": "decode", "type": {".class": "CallableType", "arg_kinds": [0, 0, 1], "arg_names": ["self", "input", "errors"], "arg_types": ["codecs.Codec", "builtins.bytes", "builtins.str"], "bound_args": [], "def_extras": {"first_arg": "self"}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "decode of Codec", "ret_type": {".class": "TupleType", "fallback": {".class": "Instance", "args": [{".class": "AnyType", "missing_import_name": null, "source_any": null, "type_of_any": 6}], "type_ref": "builtins.tuple"}, "implicit": false, "items": ["builtins.str", "builtins.int"]}, "variables": []}}}, "encode": {".class": "SymbolTableNode", "kind": "Mdef", "node": {".class": "FuncDef", "arg_kinds": [0, 0, 1], "arg_names": ["self", "input", "errors"], "flags": [], "fullname": "codecs.Codec.encode", "name": "encode", "type": {".class": "CallableType", "arg_kinds": [0, 0, 1], "arg_names": ["self", "input", "errors"], "arg_types": ["codecs.Codec", "builtins.str", "builtins.str"], "bound_args": [], "def_extras": {"first_arg": "self"}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "encode of Codec", "ret_type": {".class": "TupleType", "fallback": {".class": "Instance", "args": [{".class": "AnyType", "missing_import_name": null, "source_any": null, "type_of_any": 6}], "type_ref": "builtins.tuple"}, "implicit": false, "items": ["builtins.bytes", "builtins.int"]}, "variables": []}}}}, "tuple_type": null, "type_vars": [], "typeddict_type": null}}, "CodecInfo": {".class": "SymbolTableNode", "kind": "Gdef", "node": {".class": "TypeInfo", "_promote": null, "abstract_attributes": [], "bases": [{".class": "Instance", "args": [{".class": "AnyType", "missing_import_name": null, "source_any": null, "type_of_any": 6}], "type_ref": "builtins.tuple"}], "declared_metaclass": null, "defn": {".class": "ClassDef", "fullname": "codecs.CodecInfo", "name": "CodecInfo", "type_vars": []}, "flags": [], "fullname": "codecs.CodecInfo", "metaclass_type": null, "metadata": {}, "module_name": "codecs", "mro": ["codecs.CodecInfo", "builtins.tuple", "typing.Sequence", "typing.Collection", "typing.Iterable", "typing.Container", "typing.Reversible", "builtins.object"], "names": {".class": "SymbolTable", "__init__": {".class": "SymbolTableNode", "kind": "Mdef", "node": {".class": "FuncDef", "arg_kinds": [0, 0, 0, 1, 1, 1, 1, 1], "arg_names": ["self", "encode", "decode", "streamreader", "streamwriter", "incrementalencoder", "incrementaldecoder", "name"], "flags": [], "fullname": "codecs.CodecInfo.__init__", "name": "__init__", "type": {".class": "CallableType", "arg_kinds": [0, 0, 0, 1, 1, 1, 1, 1], "arg_names": ["self", "encode", "decode", "streamreader", "streamwriter", "incrementalencoder", "incrementaldecoder", "name"], "arg_types": [{".class": "TupleType", "fallback": "codecs.CodecInfo", "implicit": false, "items": ["codecs._Encoder", "codecs._Decoder", {".class": "CallableType", "arg_kinds": [0], "arg_names": [null], "arg_types": [{".class": "Instance", "args": ["builtins.bytes"], "type_ref": "typing.IO"}], "bound_args": [], "def_extras": {}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": null, "ret_type": "codecs.StreamReader", "variables": []}, {".class": "CallableType", "arg_kinds": [0], "arg_names": [null], "arg_types": [{".class": "Instance", "args": ["builtins.bytes"], "type_ref": "typing.IO"}], "bound_args": [], "def_extras": {}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": null, "ret_type": "codecs.StreamWriter", "variables": []}]}, "codecs._Encoder", "codecs._Decoder", {".class": "CallableType", "arg_kinds": [0], "arg_names": [null], "arg_types": [{".class": "Instance", "args": ["builtins.bytes"], "type_ref": "typing.IO"}], "bound_args": [], "def_extras": {}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": null, "ret_type": "codecs.StreamReader", "variables": []}, {".class": "CallableType", "arg_kinds": [0], "arg_names": [null], "arg_types": [{".class": "Instance", "args": ["builtins.bytes"], "type_ref": "typing.IO"}], "bound_args": [], "def_extras": {}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": null, "ret_type": "codecs.StreamWriter", "variables": []}, {".class": "CallableType", "arg_kinds": [], "arg_names": [], "arg_types": [], "bound_args": [], "def_extras": {}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": null, "ret_type": "codecs.IncrementalEncoder", "variables": []}, {".class": "CallableType", "arg_kinds": [], "arg_names": [], "arg_types": [], "bound_args": [], "def_extras": {}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": null, "ret_type": "codecs.IncrementalDecoder", "variables": []}, "builtins.str"], "bound_args": [], "def_extras": {"first_arg": "self"}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "__init__ of CodecInfo", "ret_type": {".class": "NoneTyp"}, "variables": []}}}, "decode": {".class": "SymbolTableNode", "kind": "Mdef", "node": {".class": "Decorator", "func": {".class": "FuncDef", "arg_kinds": [0], "arg_names": ["self"], "flags": ["is_property", "is_decorated"], "fullname": "codecs.CodecInfo.decode", "name": "decode", "type": {".class": "CallableType", "arg_kinds": [0], "arg_names": ["self"], "arg_types": [{".class": "TupleType", "fallback": "codecs.CodecInfo", "implicit": false, "items": ["codecs._Encoder", "codecs._Decoder", {".class": "CallableType", "arg_kinds": [0], "arg_names": [null], "arg_types": [{".class": "Instance", "args": ["builtins.bytes"], "type_ref": "typing.IO"}], "bound_args": [], "def_extras": {}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": null, "ret_type": "codecs.StreamReader", "variables": []}, {".class": "CallableType", "arg_kinds": [0], "arg_names": [null], "arg_types": [{".class": "Instance", "args": ["builtins.bytes"], "type_ref": "typing.IO"}], "bound_args": [], "def_extras": {}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": null, "ret_type": "codecs.StreamWriter", "variables": []}]}], "bound_args": [], "def_extras": {"first_arg": "self"}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "decode of CodecInfo", "ret_type": "codecs._Decoder", "variables": []}}, "is_overload": false, "var": {".class": "Var", "flags": ["is_initialized_in_class", "is_property"], "fullname": null, "name": "decode", "type": {".class": "CallableType", "arg_kinds": [0], "arg_names": ["self"], "arg_types": [{".class": "TupleType", "fallback": "codecs.CodecInfo", "implicit": false, "items": ["codecs._Encoder", "codecs._Decoder", {".class": "CallableType", "arg_kinds": [0], "arg_names": [null], "arg_types": [{".class": "Instance", "args": ["builtins.bytes"], "type_ref": "typing.IO"}], "bound_args": [], "def_extras": {}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": null, "ret_type": "codecs.StreamReader", "variables": []}, {".class": "CallableType", "arg_kinds": [0], "arg_names": [null], "arg_types": [{".class": "Instance", "args": ["builtins.bytes"], "type_ref": "typing.IO"}], "bound_args": [], "def_extras": {}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": null, "ret_type": "codecs.StreamWriter", "variables": []}]}], "bound_args": [], "def_extras": {"first_arg": "self"}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "decode of CodecInfo", "ret_type": "codecs._Decoder", "variables": []}}}}, "encode": {".class": "SymbolTableNode", "kind": "Mdef", "node": {".class": "Decorator", "func": {".class": "FuncDef", "arg_kinds": [0], "arg_names": ["self"], "flags": ["is_property", "is_decorated"], "fullname": "codecs.CodecInfo.encode", "name": "encode", "type": {".class": "CallableType", "arg_kinds": [0], "arg_names": ["self"], "arg_types": [{".class": "TupleType", "fallback": "codecs.CodecInfo", "implicit": false, "items": ["codecs._Encoder", "codecs._Decoder", {".class": "CallableType", "arg_kinds": [0], "arg_names": [null], "arg_types": [{".class": "Instance", "args": ["builtins.bytes"], "type_ref": "typing.IO"}], "bound_args": [], "def_extras": {}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": null, "ret_type": "codecs.StreamReader", "variables": []}, {".class": "CallableType", "arg_kinds": [0], "arg_names": [null], "arg_types": [{".class": "Instance", "args": ["builtins.bytes"], "type_ref": "typing.IO"}], "bound_args": [], "def_extras": {}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": null, "ret_type": "codecs.StreamWriter", "variables": []}]}], "bound_args": [], "def_extras": {"first_arg": "self"}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "encode of CodecInfo", "ret_type": "codecs._Encoder", "variables": []}}, "is_overload": false, "var": {".class": "Var", "flags": ["is_initialized_in_class", "is_property"], "fullname": null, "name": "encode", "type": {".class": "CallableType", "arg_kinds": [0], "arg_names": ["self"], "arg_types": [{".class": "TupleType", "fallback": "codecs.CodecInfo", "implicit": false, "items": ["codecs._Encoder", "codecs._Decoder", {".class": "CallableType", "arg_kinds": [0], "arg_names": [null], "arg_types": [{".class": "Instance", "args": ["builtins.bytes"], "type_ref": "typing.IO"}], "bound_args": [], "def_extras": {}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": null, "ret_type": "codecs.StreamReader", "variables": []}, {".class": "CallableType", "arg_kinds": [0], "arg_names": [null], "arg_types": [{".class": "Instance", "args": ["builtins.bytes"], "type_ref": "typing.IO"}], "bound_args": [], "def_extras": {}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": null, "ret_type": "codecs.StreamWriter", "variables": []}]}], "bound_args": [], "def_extras": {"first_arg": "self"}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "encode of CodecInfo", "ret_type": "codecs._Encoder", "variables": []}}}}, "incrementaldecoder": {".class": "SymbolTableNode", "kind": "Mdef", "node": {".class": "Decorator", "func": {".class": "FuncDef", "arg_kinds": [0], "arg_names": ["self"], "flags": ["is_property", "is_decorated"], "fullname": "codecs.CodecInfo.incrementaldecoder", "name": "incrementaldecoder", "type": {".class": "CallableType", "arg_kinds": [0], "arg_names": ["self"], "arg_types": [{".class": "TupleType", "fallback": "codecs.CodecInfo", "implicit": false, "items": ["codecs._Encoder", "codecs._Decoder", {".class": "CallableType", "arg_kinds": [0], "arg_names": [null], "arg_types": [{".class": "Instance", "args": ["builtins.bytes"], "type_ref": "typing.IO"}], "bound_args": [], "def_extras": {}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": null, "ret_type": "codecs.StreamReader", "variables": []}, {".class": "CallableType", "arg_kinds": [0], "arg_names": [null], "arg_types": [{".class": "Instance", "args": ["builtins.bytes"], "type_ref": "typing.IO"}], "bound_args": [], "def_extras": {}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": null, "ret_type": "codecs.StreamWriter", "variables": []}]}], "bound_args": [], "def_extras": {"first_arg": "self"}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "incrementaldecoder of CodecInfo", "ret_type": {".class": "CallableType", "arg_kinds": [], "arg_names": [], "arg_types": [], "bound_args": [], "def_extras": {}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": null, "ret_type": "codecs.IncrementalDecoder", "variables": []}, "variables": []}}, "is_overload": false, "var": {".class": "Var", "flags": ["is_initialized_in_class", "is_property"], "fullname": null, "name": "incrementaldecoder", "type": {".class": "CallableType", "arg_kinds": [0], "arg_names": ["self"], "arg_types": [{".class": "TupleType", "fallback": "codecs.CodecInfo", "implicit": false, "items": ["codecs._Encoder", "codecs._Decoder", {".class": "CallableType", "arg_kinds": [0], "arg_names": [null], "arg_types": [{".class": "Instance", "args": ["builtins.bytes"], "type_ref": "typing.IO"}], "bound_args": [], "def_extras": {}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": null, "ret_type": "codecs.StreamReader", "variables": []}, {".class": "CallableType", "arg_kinds": [0], "arg_names": [null], "arg_types": [{".class": "Instance", "args": ["builtins.bytes"], "type_ref": "typing.IO"}], "bound_args": [], "def_extras": {}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": null, "ret_type": "codecs.StreamWriter", "variables": []}]}], "bound_args": [], "def_extras": {"first_arg": "self"}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "incrementaldecoder of CodecInfo", "ret_type": {".class": "CallableType", "arg_kinds": [], "arg_names": [], "arg_types": [], "bound_args": [], "def_extras": {}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": null, "ret_type": "codecs.IncrementalDecoder", "variables": []}, "variables": []}}}}, "incrementalencoder": {".class": "SymbolTableNode", "kind": "Mdef", "node": {".class": "Decorator", "func": {".class": "FuncDef", "arg_kinds": [0], "arg_names": ["self"], "flags": ["is_property", "is_decorated"], "fullname": "codecs.CodecInfo.incrementalencoder", "name": "incrementalencoder", "type": {".class": "CallableType", "arg_kinds": [0], "arg_names": ["self"], "arg_types": [{".class": "TupleType", "fallback": "codecs.CodecInfo", "implicit": false, "items": ["codecs._Encoder", "codecs._Decoder", {".class": "CallableType", "arg_kinds": [0], "arg_names": [null], "arg_types": [{".class": "Instance", "args": ["builtins.bytes"], "type_ref": "typing.IO"}], "bound_args": [], "def_extras": {}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": null, "ret_type": "codecs.StreamReader", "variables": []}, {".class": "CallableType", "arg_kinds": [0], "arg_names": [null], "arg_types": [{".class": "Instance", "args": ["builtins.bytes"], "type_ref": "typing.IO"}], "bound_args": [], "def_extras": {}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": null, "ret_type": "codecs.StreamWriter", "variables": []}]}], "bound_args": [], "def_extras": {"first_arg": "self"}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "incrementalencoder of CodecInfo", "ret_type": {".class": "CallableType", "arg_kinds": [], "arg_names": [], "arg_types": [], "bound_args": [], "def_extras": {}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": null, "ret_type": "codecs.IncrementalEncoder", "variables": []}, "variables": []}}, "is_overload": false, "var": {".class": "Var", "flags": ["is_initialized_in_class", "is_property"], "fullname": null, "name": "incrementalencoder", "type": {".class": "CallableType", "arg_kinds": [0], "arg_names": ["self"], "arg_types": [{".class": "TupleType", "fallback": "codecs.CodecInfo", "implicit": false, "items": ["codecs._Encoder", "codecs._Decoder", {".class": "CallableType", "arg_kinds": [0], "arg_names": [null], "arg_types": [{".class": "Instance", "args": ["builtins.bytes"], "type_ref": "typing.IO"}], "bound_args": [], "def_extras": {}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": null, "ret_type": "codecs.StreamReader", "variables": []}, {".class": "CallableType", "arg_kinds": [0], "arg_names": [null], "arg_types": [{".class": "Instance", "args": ["builtins.bytes"], "type_ref": "typing.IO"}], "bound_args": [], "def_extras": {}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": null, "ret_type": "codecs.StreamWriter", "variables": []}]}], "bound_args": [], "def_extras": {"first_arg": "self"}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "incrementalencoder of CodecInfo", "ret_type": {".class": "CallableType", "arg_kinds": [], "arg_names": [], "arg_types": [], "bound_args": [], "def_extras": {}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": null, "ret_type": "codecs.IncrementalEncoder", "variables": []}, "variables": []}}}}, "name": {".class": "SymbolTableNode", "kind": "Mdef", "node": {".class": "Var", "flags": ["is_initialized_in_class"], "fullname": "codecs.CodecInfo.name", "name": "name", "type": "builtins.str"}}, "streamreader": {".class": "SymbolTableNode", "kind": "Mdef", "node": {".class": "Decorator", "func": {".class": "FuncDef", "arg_kinds": [0], "arg_names": ["self"], "flags": ["is_property", "is_decorated"], "fullname": "codecs.CodecInfo.streamreader", "name": "streamreader", "type": {".class": "CallableType", "arg_kinds": [0], "arg_names": ["self"], "arg_types": [{".class": "TupleType", "fallback": "codecs.CodecInfo", "implicit": false, "items": ["codecs._Encoder", "codecs._Decoder", {".class": "CallableType", "arg_kinds": [0], "arg_names": [null], "arg_types": [{".class": "Instance", "args": ["builtins.bytes"], "type_ref": "typing.IO"}], "bound_args": [], "def_extras": {}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": null, "ret_type": "codecs.StreamReader", "variables": []}, {".class": "CallableType", "arg_kinds": [0], "arg_names": [null], "arg_types": [{".class": "Instance", "args": ["builtins.bytes"], "type_ref": "typing.IO"}], "bound_args": [], "def_extras": {}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": null, "ret_type": "codecs.StreamWriter", "variables": []}]}], "bound_args": [], "def_extras": {"first_arg": "self"}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "streamreader of CodecInfo", "ret_type": {".class": "CallableType", "arg_kinds": [0], "arg_names": [null], "arg_types": [{".class": "Instance", "args": ["builtins.bytes"], "type_ref": "typing.IO"}], "bound_args": [], "def_extras": {}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": null, "ret_type": "codecs.StreamReader", "variables": []}, "variables": []}}, "is_overload": false, "var": {".class": "Var", "flags": ["is_initialized_in_class", "is_property"], "fullname": null, "name": "streamreader", "type": {".class": "CallableType", "arg_kinds": [0], "arg_names": ["self"], "arg_types": [{".class": "TupleType", "fallback": "codecs.CodecInfo", "implicit": false, "items": ["codecs._Encoder", "codecs._Decoder", {".class": "CallableType", "arg_kinds": [0], "arg_names": [null], "arg_types": [{".class": "Instance", "args": ["builtins.bytes"], "type_ref": "typing.IO"}], "bound_args": [], "def_extras": {}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": null, "ret_type": "codecs.StreamReader", "variables": []}, {".class": "CallableType", "arg_kinds": [0], "arg_names": [null], "arg_types": [{".class": "Instance", "args": ["builtins.bytes"], "type_ref": "typing.IO"}], "bound_args": [], "def_extras": {}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": null, "ret_type": "codecs.StreamWriter", "variables": []}]}], "bound_args": [], "def_extras": {"first_arg": "self"}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "streamreader of CodecInfo", "ret_type": {".class": "CallableType", "arg_kinds": [0], "arg_names": [null], "arg_types": [{".class": "Instance", "args": ["builtins.bytes"], "type_ref": "typing.IO"}], "bound_args": [], "def_extras": {}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": null, "ret_type": "codecs.StreamReader", "variables": []}, "variables": []}}}}, "streamwriter": {".class": "SymbolTableNode", "kind": "Mdef", "node": {".class": "Decorator", "func": {".class": "FuncDef", "arg_kinds": [0], "arg_names": ["self"], "flags": ["is_property", "is_decorated"], "fullname": "codecs.CodecInfo.streamwriter", "name": "streamwriter", "type": {".class": "CallableType", "arg_kinds": [0], "arg_names": ["self"], "arg_types": [{".class": "TupleType", "fallback": "codecs.CodecInfo", "implicit": false, "items": ["codecs._Encoder", "codecs._Decoder", {".class": "CallableType", "arg_kinds": [0], "arg_names": [null], "arg_types": [{".class": "Instance", "args": ["builtins.bytes"], "type_ref": "typing.IO"}], "bound_args": [], "def_extras": {}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": null, "ret_type": "codecs.StreamReader", "variables": []}, {".class": "CallableType", "arg_kinds": [0], "arg_names": [null], "arg_types": [{".class": "Instance", "args": ["builtins.bytes"], "type_ref": "typing.IO"}], "bound_args": [], "def_extras": {}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": null, "ret_type": "codecs.StreamWriter", "variables": []}]}], "bound_args": [], "def_extras": {"first_arg": "self"}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "streamwriter of CodecInfo", "ret_type": {".class": "CallableType", "arg_kinds": [0], "arg_names": [null], "arg_types": [{".class": "Instance", "args": ["builtins.bytes"], "type_ref": "typing.IO"}], "bound_args": [], "def_extras": {}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": null, "ret_type": "codecs.StreamWriter", "variables": []}, "variables": []}}, "is_overload": false, "var": {".class": "Var", "flags": ["is_initialized_in_class", "is_property"], "fullname": null, "name": "streamwriter", "type": {".class": "CallableType", "arg_kinds": [0], "arg_names": ["self"], "arg_types": [{".class": "TupleType", "fallback": "codecs.CodecInfo", "implicit": false, "items": ["codecs._Encoder", "codecs._Decoder", {".class": "CallableType", "arg_kinds": [0], "arg_names": [null], "arg_types": [{".class": "Instance", "args": ["builtins.bytes"], "type_ref": "typing.IO"}], "bound_args": [], "def_extras": {}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": null, "ret_type": "codecs.StreamReader", "variables": []}, {".class": "CallableType", "arg_kinds": [0], "arg_names": [null], "arg_types": [{".class": "Instance", "args": ["builtins.bytes"], "type_ref": "typing.IO"}], "bound_args": [], "def_extras": {}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": null, "ret_type": "codecs.StreamWriter", "variables": []}]}], "bound_args": [], "def_extras": {"first_arg": "self"}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "streamwriter of CodecInfo", "ret_type": {".class": "CallableType", "arg_kinds": [0], "arg_names": [null], "arg_types": [{".class": "Instance", "args": ["builtins.bytes"], "type_ref": "typing.IO"}], "bound_args": [], "def_extras": {}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": null, "ret_type": "codecs.StreamWriter", "variables": []}, "variables": []}}}}}, "tuple_type": {".class": "TupleType", "fallback": {".class": "Instance", "args": [{".class": "AnyType", "missing_import_name": null, "source_any": null, "type_of_any": 6}], "type_ref": "builtins.tuple"}, "implicit": false, "items": ["codecs._Encoder", "codecs._Decoder", {".class": "CallableType", "arg_kinds": [0], "arg_names": [null], "arg_types": [{".class": "Instance", "args": ["builtins.bytes"], "type_ref": "typing.IO"}], "bound_args": [], "def_extras": {}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": null, "ret_type": "codecs.StreamReader", "variables": []}, {".class": "CallableType", "arg_kinds": [0], "arg_names": [null], "arg_types": [{".class": "Instance", "args": ["builtins.bytes"], "type_ref": "typing.IO"}], "bound_args": [], "def_extras": {}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": null, "ret_type": "codecs.StreamWriter", "variables": []}]}, "type_vars": [], "typeddict_type": null}}, "EncodedFile": {".class": "SymbolTableNode", "kind": "Gdef", "node": {".class": "FuncDef", "arg_kinds": [0, 0, 1, 1], "arg_names": ["file", "data_encoding", "file_encoding", "errors"], "flags": [], "fullname": "codecs.EncodedFile", "name": "EncodedFile", "type": {".class": "CallableType", "arg_kinds": [0, 0, 1, 1], "arg_names": ["file", "data_encoding", "file_encoding", "errors"], "arg_types": [{".class": "Instance", "args": ["builtins.bytes"], "type_ref": "typing.IO"}, "builtins.str", "builtins.str", "builtins.str"], "bound_args": [], "def_extras": {"first_arg": null}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "EncodedFile", "ret_type": "codecs.StreamRecoder", "variables": []}}}, "Generator": {".class": "SymbolTableNode", "cross_ref": "typing.Generator", "kind": "Gdef", "module_hidden": true, "module_public": false}, "IO": {".class": "SymbolTableNode", "cross_ref": "typing.IO", "kind": "Gdef", "module_hidden": true, "module_public": false}, "IncrementalDecoder": {".class": "SymbolTableNode", "kind": "Gdef", "node": {".class": "TypeInfo", "_promote": null, "abstract_attributes": ["decode"], "bases": ["builtins.object"], "declared_metaclass": null, "defn": {".class": "ClassDef", "fullname": "codecs.IncrementalDecoder", "name": "IncrementalDecoder", "type_vars": []}, "flags": ["is_abstract"], "fullname": "codecs.IncrementalDecoder", "metaclass_type": null, "metadata": {}, "module_name": "codecs", "mro": ["codecs.IncrementalDecoder", "builtins.object"], "names": {".class": "SymbolTable", "__init__": {".class": "SymbolTableNode", "kind": "Mdef", "node": {".class": "FuncDef", "arg_kinds": [0, 1], "arg_names": ["self", "errors"], "flags": [], "fullname": "codecs.IncrementalDecoder.__init__", "name": "__init__", "type": {".class": "CallableType", "arg_kinds": [0, 1], "arg_names": ["self", "errors"], "arg_types": ["codecs.IncrementalDecoder", "builtins.str"], "bound_args": [], "def_extras": {"first_arg": "self"}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "__init__ of IncrementalDecoder", "ret_type": {".class": "NoneTyp"}, "variables": []}}}, "decode": {".class": "SymbolTableNode", "kind": "Mdef", "node": {".class": "Decorator", "func": {".class": "FuncDef", "arg_kinds": [0, 0, 1], "arg_names": ["self", "object", "final"], "flags": ["is_decorated", "is_abstract"], "fullname": "codecs.IncrementalDecoder.decode", "name": "decode", "type": {".class": "CallableType", "arg_kinds": [0, 0, 1], "arg_names": ["self", "object", "final"], "arg_types": ["codecs.IncrementalDecoder", "builtins.bytes", "builtins.bool"], "bound_args": [], "def_extras": {"first_arg": "self"}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "decode of IncrementalDecoder", "ret_type": "builtins.str", "variables": []}}, "is_overload": false, "var": {".class": "Var", "flags": ["is_initialized_in_class"], "fullname": null, "name": "decode", "type": {".class": "CallableType", "arg_kinds": [0, 0, 1], "arg_names": ["self", "object", "final"], "arg_types": ["codecs.IncrementalDecoder", "builtins.bytes", "builtins.bool"], "bound_args": [], "def_extras": {"first_arg": "self"}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "decode of IncrementalDecoder", "ret_type": "builtins.str", "variables": []}}}}, "errors": {".class": "SymbolTableNode", "kind": "Mdef", "node": {".class": "Var", "flags": ["is_initialized_in_class"], "fullname": "codecs.IncrementalDecoder.errors", "name": "errors", "type": "builtins.str"}}, "getstate": {".class": "SymbolTableNode", "kind": "Mdef", "node": {".class": "FuncDef", "arg_kinds": [0], "arg_names": ["self"], "flags": [], "fullname": "codecs.IncrementalDecoder.getstate", "name": "getstate", "type": {".class": "CallableType", "arg_kinds": [0], "arg_names": ["self"], "arg_types": ["codecs.IncrementalDecoder"], "bound_args": [], "def_extras": {"first_arg": "self"}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "getstate of IncrementalDecoder", "ret_type": {".class": "TupleType", "fallback": {".class": "Instance", "args": [{".class": "AnyType", "missing_import_name": null, "source_any": null, "type_of_any": 6}], "type_ref": "builtins.tuple"}, "implicit": false, "items": ["builtins.bytes", "builtins.int"]}, "variables": []}}}, "reset": {".class": "SymbolTableNode", "kind": "Mdef", "node": {".class": "FuncDef", "arg_kinds": [0], "arg_names": ["self"], "flags": [], "fullname": "codecs.IncrementalDecoder.reset", "name": "reset", "type": {".class": "CallableType", "arg_kinds": [0], "arg_names": ["self"], "arg_types": ["codecs.IncrementalDecoder"], "bound_args": [], "def_extras": {"first_arg": "self"}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "reset of IncrementalDecoder", "ret_type": {".class": "NoneTyp"}, "variables": []}}}, "setstate": {".class": "SymbolTableNode", "kind": "Mdef", "node": {".class": "FuncDef", "arg_kinds": [0, 0], "arg_names": ["self", "state"], "flags": [], "fullname": "codecs.IncrementalDecoder.setstate", "name": "setstate", "type": {".class": "CallableType", "arg_kinds": [0, 0], "arg_names": ["self", "state"], "arg_types": ["codecs.IncrementalDecoder", {".class": "TupleType", "fallback": {".class": "Instance", "args": [{".class": "AnyType", "missing_import_name": null, "source_any": null, "type_of_any": 6}], "type_ref": "builtins.tuple"}, "implicit": false, "items": ["builtins.bytes", "builtins.int"]}], "bound_args": [], "def_extras": {"first_arg": "self"}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "setstate of IncrementalDecoder", "ret_type": {".class": "NoneTyp"}, "variables": []}}}}, "tuple_type": null, "type_vars": [], "typeddict_type": null}}, "IncrementalEncoder": {".class": "SymbolTableNode", "kind": "Gdef", "node": {".class": "TypeInfo", "_promote": null, "abstract_attributes": ["encode"], "bases": ["builtins.object"], "declared_metaclass": null, "defn": {".class": "ClassDef", "fullname": "codecs.IncrementalEncoder", "name": "IncrementalEncoder", "type_vars": []}, "flags": ["is_abstract"], "fullname": "codecs.IncrementalEncoder", "metaclass_type": null, "metadata": {}, "module_name": "codecs", "mro": ["codecs.IncrementalEncoder", "builtins.object"], "names": {".class": "SymbolTable", "__init__": {".class": "SymbolTableNode", "kind": "Mdef", "node": {".class": "FuncDef", "arg_kinds": [0, 1], "arg_names": ["self", "errors"], "flags": [], "fullname": "codecs.IncrementalEncoder.__init__", "name": "__init__", "type": {".class": "CallableType", "arg_kinds": [0, 1], "arg_names": ["self", "errors"], "arg_types": ["codecs.IncrementalEncoder", "builtins.str"], "bound_args": [], "def_extras": {"first_arg": "self"}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "__init__ of IncrementalEncoder", "ret_type": {".class": "NoneTyp"}, "variables": []}}}, "encode": {".class": "SymbolTableNode", "kind": "Mdef", "node": {".class": "Decorator", "func": {".class": "FuncDef", "arg_kinds": [0, 0, 1], "arg_names": ["self", "object", "final"], "flags": ["is_decorated", "is_abstract"], "fullname": "codecs.IncrementalEncoder.encode", "name": "encode", "type": {".class": "CallableType", "arg_kinds": [0, 0, 1], "arg_names": ["self", "object", "final"], "arg_types": ["codecs.IncrementalEncoder", "builtins.str", "builtins.bool"], "bound_args": [], "def_extras": {"first_arg": "self"}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "encode of IncrementalEncoder", "ret_type": "builtins.bytes", "variables": []}}, "is_overload": false, "var": {".class": "Var", "flags": ["is_initialized_in_class"], "fullname": null, "name": "encode", "type": {".class": "CallableType", "arg_kinds": [0, 0, 1], "arg_names": ["self", "object", "final"], "arg_types": ["codecs.IncrementalEncoder", "builtins.str", "builtins.bool"], "bound_args": [], "def_extras": {"first_arg": "self"}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "encode of IncrementalEncoder", "ret_type": "builtins.bytes", "variables": []}}}}, "errors": {".class": "SymbolTableNode", "kind": "Mdef", "node": {".class": "Var", "flags": ["is_initialized_in_class"], "fullname": "codecs.IncrementalEncoder.errors", "name": "errors", "type": "builtins.str"}}, "getstate": {".class": "SymbolTableNode", "kind": "Mdef", "node": {".class": "FuncDef", "arg_kinds": [0], "arg_names": ["self"], "flags": [], "fullname": "codecs.IncrementalEncoder.getstate", "name": "getstate", "type": {".class": "CallableType", "arg_kinds": [0], "arg_names": ["self"], "arg_types": ["codecs.IncrementalEncoder"], "bound_args": [], "def_extras": {"first_arg": "self"}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "getstate of IncrementalEncoder", "ret_type": {".class": "UnionType", "items": ["builtins.int", "builtins.str"]}, "variables": []}}}, "reset": {".class": "SymbolTableNode", "kind": "Mdef", "node": {".class": "FuncDef", "arg_kinds": [0], "arg_names": ["self"], "flags": [], "fullname": "codecs.IncrementalEncoder.reset", "name": "reset", "type": {".class": "CallableType", "arg_kinds": [0], "arg_names": ["self"], "arg_types": ["codecs.IncrementalEncoder"], "bound_args": [], "def_extras": {"first_arg": "self"}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "reset of IncrementalEncoder", "ret_type": {".class": "NoneTyp"}, "variables": []}}}, "setstate": {".class": "SymbolTableNode", "kind": "Mdef", "node": {".class": "FuncDef", "arg_kinds": [0, 0], "arg_names": ["self", "state"], "flags": [], "fullname": "codecs.IncrementalEncoder.setstate", "name": "setstate", "type": {".class": "CallableType", "arg_kinds": [0, 0], "arg_names": ["self", "state"], "arg_types": ["codecs.IncrementalEncoder", {".class": "UnionType", "items": ["builtins.int", "builtins.str"]}], "bound_args": [], "def_extras": {"first_arg": "self"}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "setstate of IncrementalEncoder", "ret_type": {".class": "NoneTyp"}, "variables": []}}}}, "tuple_type": null, "type_vars": [], "typeddict_type": null}}, "Iterable": {".class": "SymbolTableNode", "cross_ref": "typing.Iterable", "kind": "Gdef", "module_hidden": true, "module_public": false}, "Iterator": {".class": "SymbolTableNode", "cross_ref": "typing.Iterator", "kind": "Gdef", "module_hidden": true, "module_public": false}, "List": {".class": "SymbolTableNode", "cross_ref": "typing.List", "kind": "Gdef", "module_hidden": true, "module_public": false}, "Optional": {".class": "SymbolTableNode", "cross_ref": "typing.Optional", "kind": "Gdef", "module_hidden": true, "module_public": false}, "Protocol": {".class": "SymbolTableNode", "cross_ref": "typing.Protocol", "kind": "Gdef", "module_hidden": true, "module_public": false}, "StreamReader": {".class": "SymbolTableNode", "kind": "Gdef", "node": {".class": "TypeInfo", "_promote": null, "abstract_attributes": [], "bases": ["codecs.Codec"], "declared_metaclass": null, "defn": {".class": "ClassDef", "fullname": "codecs.StreamReader", "name": "StreamReader", "type_vars": []}, "flags": [], "fullname": "codecs.StreamReader", "metaclass_type": null, "metadata": {}, "module_name": "codecs", "mro": ["codecs.StreamReader", "codecs.Codec", "builtins.object"], "names": {".class": "SymbolTable", "__enter__": {".class": "SymbolTableNode", "kind": "Mdef", "node": {".class": "FuncDef", "arg_kinds": [0], "arg_names": ["self"], "flags": [], "fullname": "codecs.StreamReader.__enter__", "name": "__enter__", "type": {".class": "CallableType", "arg_kinds": [0], "arg_names": [null], "arg_types": [{".class": "TypeVarType", "fullname": "codecs._SR", "id": -1, "name": "_SR", "upper_bound": "codecs.StreamReader", "values": [], "variance": 0}], "bound_args": [], "def_extras": {"first_arg": "self"}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "__enter__ of StreamReader", "ret_type": {".class": "TypeVarType", "fullname": "codecs._SR", "id": -1, "name": "_SR", "upper_bound": "codecs.StreamReader", "values": [], "variance": 0}, "variables": [{".class": "TypeVarDef", "fullname": "codecs._SR", "id": -1, "name": "_SR", "upper_bound": "codecs.StreamReader", "values": [], "variance": 0}]}}}, "__exit__": {".class": "SymbolTableNode", "kind": "Mdef", "node": {".class": "FuncDef", "arg_kinds": [0, 0, 0, 0], "arg_names": ["self", "typ", "exc", "tb"], "flags": [], "fullname": "codecs.StreamReader.__exit__", "name": "__exit__", "type": {".class": "CallableType", "arg_kinds": [0, 0, 0, 0], "arg_names": [null, null, null, null], "arg_types": ["codecs.StreamReader", {".class": "UnionType", "items": [{".class": "TypeType", "item": "builtins.BaseException"}, {".class": "NoneTyp"}]}, {".class": "UnionType", "items": ["builtins.BaseException", {".class": "NoneTyp"}]}, {".class": "UnionType", "items": ["types.TracebackType", {".class": "NoneTyp"}]}], "bound_args": [], "def_extras": {"first_arg": "self"}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "__exit__ of StreamReader", "ret_type": {".class": "NoneTyp"}, "variables": []}}}, "__getattr__": {".class": "SymbolTableNode", "kind": "Mdef", "node": {".class": "FuncDef", "arg_kinds": [0, 0], "arg_names": ["self", "name"], "flags": [], "fullname": "codecs.StreamReader.__getattr__", "name": "__getattr__", "type": {".class": "CallableType", "arg_kinds": [0, 0], "arg_names": [null, null], "arg_types": ["codecs.StreamReader", "builtins.str"], "bound_args": [], "def_extras": {"first_arg": "self"}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "__getattr__ of StreamReader", "ret_type": {".class": "AnyType", "missing_import_name": null, "source_any": null, "type_of_any": 2}, "variables": []}}}, "__init__": {".class": "SymbolTableNode", "kind": "Mdef", "node": {".class": "FuncDef", "arg_kinds": [0, 0, 1], "arg_names": ["self", "stream", "errors"], "flags": [], "fullname": "codecs.StreamReader.__init__", "name": "__init__", "type": {".class": "CallableType", "arg_kinds": [0, 0, 1], "arg_names": ["self", "stream", "errors"], "arg_types": ["codecs.StreamReader", {".class": "Instance", "args": ["builtins.bytes"], "type_ref": "typing.IO"}, "builtins.str"], "bound_args": [], "def_extras": {"first_arg": "self"}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "__init__ of StreamReader", "ret_type": {".class": "NoneTyp"}, "variables": []}}}, "__iter__": {".class": "SymbolTableNode", "kind": "Mdef", "node": {".class": "FuncDef", "arg_kinds": [0], "arg_names": ["self"], "flags": [], "fullname": "codecs.StreamReader.__iter__", "name": "__iter__", "type": {".class": "CallableType", "arg_kinds": [0], "arg_names": [null], "arg_types": ["codecs.StreamReader"], "bound_args": [], "def_extras": {"first_arg": "self"}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "__iter__ of StreamReader", "ret_type": {".class": "Instance", "args": ["builtins.str"], "type_ref": "typing.Iterator"}, "variables": []}}}, "errors": {".class": "SymbolTableNode", "kind": "Mdef", "node": {".class": "Var", "flags": ["is_initialized_in_class"], "fullname": "codecs.StreamReader.errors", "name": "errors", "type": "builtins.str"}}, "read": {".class": "SymbolTableNode", "kind": "Mdef", "node": {".class": "FuncDef", "arg_kinds": [0, 1, 1, 1], "arg_names": ["self", "size", "chars", "firstline"], "flags": [], "fullname": "codecs.StreamReader.read", "name": "read", "type": {".class": "CallableType", "arg_kinds": [0, 1, 1, 1], "arg_names": ["self", "size", "chars", "firstline"], "arg_types": ["codecs.StreamReader", "builtins.int", "builtins.int", "builtins.bool"], "bound_args": [], "def_extras": {"first_arg": "self"}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "read of StreamReader", "ret_type": "builtins.str", "variables": []}}}, "readline": {".class": "SymbolTableNode", "kind": "Mdef", "node": {".class": "FuncDef", "arg_kinds": [0, 1, 1], "arg_names": ["self", "size", "keepends"], "flags": [], "fullname": "codecs.StreamReader.readline", "name": "readline", "type": {".class": "CallableType", "arg_kinds": [0, 1, 1], "arg_names": ["self", "size", "keepends"], "arg_types": ["codecs.StreamReader", "builtins.int", "builtins.bool"], "bound_args": [], "def_extras": {"first_arg": "self"}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "readline of StreamReader", "ret_type": "builtins.str", "variables": []}}}, "readlines": {".class": "SymbolTableNode", "kind": "Mdef", "node": {".class": "FuncDef", "arg_kinds": [0, 1, 1], "arg_names": ["self", "sizehint", "keepends"], "flags": [], "fullname": "codecs.StreamReader.readlines", "name": "readlines", "type": {".class": "CallableType", "arg_kinds": [0, 1, 1], "arg_names": ["self", "sizehint", "keepends"], "arg_types": ["codecs.StreamReader", "builtins.int", "builtins.bool"], "bound_args": [], "def_extras": {"first_arg": "self"}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "readlines of StreamReader", "ret_type": {".class": "Instance", "args": ["builtins.str"], "type_ref": "builtins.list"}, "variables": []}}}, "reset": {".class": "SymbolTableNode", "kind": "Mdef", "node": {".class": "FuncDef", "arg_kinds": [0], "arg_names": ["self"], "flags": [], "fullname": "codecs.StreamReader.reset", "name": "reset", "type": {".class": "CallableType", "arg_kinds": [0], "arg_names": ["self"], "arg_types": ["codecs.StreamReader"], "bound_args": [], "def_extras": {"first_arg": "self"}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "reset of StreamReader", "ret_type": {".class": "NoneTyp"}, "variables": []}}}}, "tuple_type": null, "type_vars": [], "typeddict_type": null}}, "StreamReaderWriter": {".class": "SymbolTableNode", "kind": "Gdef", "node": {".class": "TypeInfo", "_promote": null, "abstract_attributes": [], "bases": ["typing.TextIO"], "declared_metaclass": null, "defn": {".class": "ClassDef", "fullname": "codecs.StreamReaderWriter", "name": "StreamReaderWriter", "type_vars": []}, "flags": [], "fullname": "codecs.StreamReaderWriter", "metaclass_type": "abc.ABCMeta", "metadata": {}, "module_name": "codecs", "mro": ["codecs.StreamReaderWriter", "typing.TextIO", "typing.IO", "typing.Iterator", "typing.Iterable", "builtins.object"], "names": {".class": "SymbolTable", "__enter__": {".class": "SymbolTableNode", "kind": "Mdef", "node": {".class": "FuncDef", "arg_kinds": [0], "arg_names": ["self"], "flags": [], "fullname": "codecs.StreamReaderWriter.__enter__", "name": "__enter__", "type": {".class": "CallableType", "arg_kinds": [0], "arg_names": [null], "arg_types": [{".class": "TypeVarType", "fullname": "codecs._T", "id": -1, "name": "_T", "upper_bound": "codecs.StreamReaderWriter", "values": [], "variance": 0}], "bound_args": [], "def_extras": {"first_arg": "self"}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "__enter__ of StreamReaderWriter", "ret_type": {".class": "TypeVarType", "fullname": "codecs._T", "id": -1, "name": "_T", "upper_bound": "codecs.StreamReaderWriter", "values": [], "variance": 0}, "variables": [{".class": "TypeVarDef", "fullname": "codecs._T", "id": -1, "name": "_T", "upper_bound": "codecs.StreamReaderWriter", "values": [], "variance": 0}]}}}, "__exit__": {".class": "SymbolTableNode", "kind": "Mdef", "node": {".class": "FuncDef", "arg_kinds": [0, 0, 0, 0], "arg_names": ["self", "typ", "exc", "tb"], "flags": [], "fullname": "codecs.StreamReaderWriter.__exit__", "name": "__exit__", "type": {".class": "CallableType", "arg_kinds": [0, 0, 0, 0], "arg_names": [null, null, null, null], "arg_types": ["codecs.StreamReaderWriter", {".class": "UnionType", "items": [{".class": "TypeType", "item": "builtins.BaseException"}, {".class": "NoneTyp"}]}, {".class": "UnionType", "items": ["builtins.BaseException", {".class": "NoneTyp"}]}, {".class": "UnionType", "items": ["types.TracebackType", {".class": "NoneTyp"}]}], "bound_args": [], "def_extras": {"first_arg": "self"}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "__exit__ of StreamReaderWriter", "ret_type": "builtins.bool", "variables": []}}}, "__getattr__": {".class": "SymbolTableNode", "kind": "Mdef", "node": {".class": "FuncDef", "arg_kinds": [0, 0], "arg_names": ["self", "name"], "flags": [], "fullname": "codecs.StreamReaderWriter.__getattr__", "name": "__getattr__", "type": {".class": "CallableType", "arg_kinds": [0, 0], "arg_names": [null, null], "arg_types": ["codecs.StreamReaderWriter", "builtins.str"], "bound_args": [], "def_extras": {"first_arg": "self"}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "__getattr__ of StreamReaderWriter", "ret_type": {".class": "AnyType", "missing_import_name": null, "source_any": null, "type_of_any": 2}, "variables": []}}}, "__init__": {".class": "SymbolTableNode", "kind": "Mdef", "node": {".class": "FuncDef", "arg_kinds": [0, 0, 0, 0, 1], "arg_names": ["self", "stream", "Reader", "Writer", "errors"], "flags": [], "fullname": "codecs.StreamReaderWriter.__init__", "name": "__init__", "type": {".class": "CallableType", "arg_kinds": [0, 0, 0, 0, 1], "arg_names": ["self", "stream", "Reader", "Writer", "errors"], "arg_types": ["codecs.StreamReaderWriter", {".class": "Instance", "args": ["builtins.bytes"], "type_ref": "typing.IO"}, {".class": "CallableType", "arg_kinds": [0], "arg_names": [null], "arg_types": [{".class": "Instance", "args": ["builtins.bytes"], "type_ref": "typing.IO"}], "bound_args": [], "def_extras": {}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": null, "ret_type": "codecs.StreamReader", "variables": []}, {".class": "CallableType", "arg_kinds": [0], "arg_names": [null], "arg_types": [{".class": "Instance", "args": ["builtins.bytes"], "type_ref": "typing.IO"}], "bound_args": [], "def_extras": {}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": null, "ret_type": "codecs.StreamWriter", "variables": []}, "builtins.str"], "bound_args": [], "def_extras": {"first_arg": "self"}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "__init__ of StreamReaderWriter", "ret_type": {".class": "NoneTyp"}, "variables": []}}}, "__iter__": {".class": "SymbolTableNode", "kind": "Mdef", "node": {".class": "FuncDef", "arg_kinds": [0], "arg_names": ["self"], "flags": [], "fullname": "codecs.StreamReaderWriter.__iter__", "name": "__iter__", "type": {".class": "CallableType", "arg_kinds": [0], "arg_names": [null], "arg_types": [{".class": "TypeVarType", "fullname": "codecs._T", "id": -1, "name": "_T", "upper_bound": "codecs.StreamReaderWriter", "values": [], "variance": 0}], "bound_args": [], "def_extras": {"first_arg": "self"}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "__iter__ of StreamReaderWriter", "ret_type": {".class": "TypeVarType", "fullname": "codecs._T", "id": -1, "name": "_T", "upper_bound": "codecs.StreamReaderWriter", "values": [], "variance": 0}, "variables": [{".class": "TypeVarDef", "fullname": "codecs._T", "id": -1, "name": "_T", "upper_bound": "codecs.StreamReaderWriter", "values": [], "variance": 0}]}}}, "__next__": {".class": "SymbolTableNode", "kind": "Mdef", "node": {".class": "FuncDef", "arg_kinds": [0], "arg_names": ["self"], "flags": ["is_conditional"], "fullname": "codecs.StreamReaderWriter.__next__", "name": "__next__", "type": {".class": "CallableType", "arg_kinds": [0], "arg_names": ["self"], "arg_types": ["codecs.StreamReaderWriter"], "bound_args": [], "def_extras": {"first_arg": "self"}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "__next__ of StreamReaderWriter", "ret_type": "builtins.str", "variables": []}}}, "close": {".class": "SymbolTableNode", "kind": "Mdef", "node": {".class": "FuncDef", "arg_kinds": [0], "arg_names": ["self"], "flags": [], "fullname": "codecs.StreamReaderWriter.close", "name": "close", "type": {".class": "CallableType", "arg_kinds": [0], "arg_names": ["self"], "arg_types": ["codecs.StreamReaderWriter"], "bound_args": [], "def_extras": {"first_arg": "self"}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "close of StreamReaderWriter", "ret_type": {".class": "NoneTyp"}, "variables": []}}}, "fileno": {".class": "SymbolTableNode", "kind": "Mdef", "node": {".class": "FuncDef", "arg_kinds": [0], "arg_names": ["self"], "flags": [], "fullname": "codecs.StreamReaderWriter.fileno", "name": "fileno", "type": {".class": "CallableType", "arg_kinds": [0], "arg_names": ["self"], "arg_types": ["codecs.StreamReaderWriter"], "bound_args": [], "def_extras": {"first_arg": "self"}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "fileno of StreamReaderWriter", "ret_type": "builtins.int", "variables": []}}}, "flush": {".class": "SymbolTableNode", "kind": "Mdef", "node": {".class": "FuncDef", "arg_kinds": [0], "arg_names": ["self"], "flags": [], "fullname": "codecs.StreamReaderWriter.flush", "name": "flush", "type": {".class": "CallableType", "arg_kinds": [0], "arg_names": ["self"], "arg_types": ["codecs.StreamReaderWriter"], "bound_args": [], "def_extras": {"first_arg": "self"}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "flush of StreamReaderWriter", "ret_type": {".class": "NoneTyp"}, "variables": []}}}, "isatty": {".class": "SymbolTableNode", "kind": "Mdef", "node": {".class": "FuncDef", "arg_kinds": [0], "arg_names": ["self"], "flags": [], "fullname": "codecs.StreamReaderWriter.isatty", "name": "isatty", "type": {".class": "CallableType", "arg_kinds": [0], "arg_names": ["self"], "arg_types": ["codecs.StreamReaderWriter"], "bound_args": [], "def_extras": {"first_arg": "self"}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "isatty of StreamReaderWriter", "ret_type": "builtins.bool", "variables": []}}}, "read": {".class": "SymbolTableNode", "kind": "Mdef", "node": {".class": "FuncDef", "arg_kinds": [0, 1], "arg_names": ["self", "size"], "flags": [], "fullname": "codecs.StreamReaderWriter.read", "name": "read", "type": {".class": "CallableType", "arg_kinds": [0, 1], "arg_names": ["self", "size"], "arg_types": ["codecs.StreamReaderWriter", "builtins.int"], "bound_args": [], "def_extras": {"first_arg": "self"}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "read of StreamReaderWriter", "ret_type": "builtins.str", "variables": []}}}, "readable": {".class": "SymbolTableNode", "kind": "Mdef", "node": {".class": "FuncDef", "arg_kinds": [0], "arg_names": ["self"], "flags": [], "fullname": "codecs.StreamReaderWriter.readable", "name": "readable", "type": {".class": "CallableType", "arg_kinds": [0], "arg_names": ["self"], "arg_types": ["codecs.StreamReaderWriter"], "bound_args": [], "def_extras": {"first_arg": "self"}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "readable of StreamReaderWriter", "ret_type": "builtins.bool", "variables": []}}}, "readline": {".class": "SymbolTableNode", "kind": "Mdef", "node": {".class": "FuncDef", "arg_kinds": [0, 1], "arg_names": ["self", "size"], "flags": [], "fullname": "codecs.StreamReaderWriter.readline", "name": "readline", "type": {".class": "CallableType", "arg_kinds": [0, 1], "arg_names": ["self", "size"], "arg_types": ["codecs.StreamReaderWriter", {".class": "UnionType", "items": ["builtins.int", {".class": "NoneTyp"}]}], "bound_args": [], "def_extras": {"first_arg": "self"}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "readline of StreamReaderWriter", "ret_type": "builtins.str", "variables": []}}}, "readlines": {".class": "SymbolTableNode", "kind": "Mdef", "node": {".class": "FuncDef", "arg_kinds": [0, 1], "arg_names": ["self", "sizehint"], "flags": [], "fullname": "codecs.StreamReaderWriter.readlines", "name": "readlines", "type": {".class": "CallableType", "arg_kinds": [0, 1], "arg_names": ["self", "sizehint"], "arg_types": ["codecs.StreamReaderWriter", {".class": "UnionType", "items": ["builtins.int", {".class": "NoneTyp"}]}], "bound_args": [], "def_extras": {"first_arg": "self"}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "readlines of StreamReaderWriter", "ret_type": {".class": "Instance", "args": ["builtins.str"], "type_ref": "builtins.list"}, "variables": []}}}, "reset": {".class": "SymbolTableNode", "kind": "Mdef", "node": {".class": "FuncDef", "arg_kinds": [0], "arg_names": ["self"], "flags": [], "fullname": "codecs.StreamReaderWriter.reset", "name": "reset", "type": {".class": "CallableType", "arg_kinds": [0], "arg_names": ["self"], "arg_types": ["codecs.StreamReaderWriter"], "bound_args": [], "def_extras": {"first_arg": "self"}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "reset of StreamReaderWriter", "ret_type": {".class": "NoneTyp"}, "variables": []}}}, "seek": {".class": "SymbolTableNode", "kind": "Mdef", "node": {".class": "FuncDef", "arg_kinds": [0, 0, 1], "arg_names": ["self", "offset", "whence"], "flags": [], "fullname": "codecs.StreamReaderWriter.seek", "name": "seek", "type": {".class": "CallableType", "arg_kinds": [0, 0, 1], "arg_names": ["self", "offset", "whence"], "arg_types": ["codecs.StreamReaderWriter", "builtins.int", "builtins.int"], "bound_args": [], "def_extras": {"first_arg": "self"}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "seek of StreamReaderWriter", "ret_type": "builtins.int", "variables": []}}}, "seekable": {".class": "SymbolTableNode", "kind": "Mdef", "node": {".class": "FuncDef", "arg_kinds": [0], "arg_names": ["self"], "flags": [], "fullname": "codecs.StreamReaderWriter.seekable", "name": "seekable", "type": {".class": "CallableType", "arg_kinds": [0], "arg_names": ["self"], "arg_types": ["codecs.StreamReaderWriter"], "bound_args": [], "def_extras": {"first_arg": "self"}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "seekable of StreamReaderWriter", "ret_type": "builtins.bool", "variables": []}}}, "tell": {".class": "SymbolTableNode", "kind": "Mdef", "node": {".class": "FuncDef", "arg_kinds": [0], "arg_names": ["self"], "flags": [], "fullname": "codecs.StreamReaderWriter.tell", "name": "tell", "type": {".class": "CallableType", "arg_kinds": [0], "arg_names": ["self"], "arg_types": ["codecs.StreamReaderWriter"], "bound_args": [], "def_extras": {"first_arg": "self"}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "tell of StreamReaderWriter", "ret_type": "builtins.int", "variables": []}}}, "truncate": {".class": "SymbolTableNode", "kind": "Mdef", "node": {".class": "FuncDef", "arg_kinds": [0, 1], "arg_names": ["self", "size"], "flags": [], "fullname": "codecs.StreamReaderWriter.truncate", "name": "truncate", "type": {".class": "CallableType", "arg_kinds": [0, 1], "arg_names": ["self", "size"], "arg_types": ["codecs.StreamReaderWriter", {".class": "UnionType", "items": ["builtins.int", {".class": "NoneTyp"}]}], "bound_args": [], "def_extras": {"first_arg": "self"}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "truncate of StreamReaderWriter", "ret_type": "builtins.int", "variables": []}}}, "writable": {".class": "SymbolTableNode", "kind": "Mdef", "node": {".class": "FuncDef", "arg_kinds": [0], "arg_names": ["self"], "flags": [], "fullname": "codecs.StreamReaderWriter.writable", "name": "writable", "type": {".class": "CallableType", "arg_kinds": [0], "arg_names": ["self"], "arg_types": ["codecs.StreamReaderWriter"], "bound_args": [], "def_extras": {"first_arg": "self"}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "writable of StreamReaderWriter", "ret_type": "builtins.bool", "variables": []}}}, "write": {".class": "SymbolTableNode", "kind": "Mdef", "node": {".class": "FuncDef", "arg_kinds": [0, 0], "arg_names": ["self", "data"], "flags": [], "fullname": "codecs.StreamReaderWriter.write", "name": "write", "type": {".class": "CallableType", "arg_kinds": [0, 0], "arg_names": ["self", "data"], "arg_types": ["codecs.StreamReaderWriter", "builtins.str"], "bound_args": [], "def_extras": {"first_arg": "self"}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "write of StreamReaderWriter", "ret_type": "builtins.int", "variables": []}}}, "writelines": {".class": "SymbolTableNode", "kind": "Mdef", "node": {".class": "FuncDef", "arg_kinds": [0, 0], "arg_names": ["self", "list"], "flags": [], "fullname": "codecs.StreamReaderWriter.writelines", "name": "writelines", "type": {".class": "CallableType", "arg_kinds": [0, 0], "arg_names": ["self", "list"], "arg_types": ["codecs.StreamReaderWriter", {".class": "Instance", "args": ["builtins.str"], "type_ref": "typing.Iterable"}], "bound_args": [], "def_extras": {"first_arg": "self"}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "writelines of StreamReaderWriter", "ret_type": {".class": "NoneTyp"}, "variables": []}}}}, "tuple_type": null, "type_vars": [], "typeddict_type": null}}, "StreamRecoder": {".class": "SymbolTableNode", "kind": "Gdef", "node": {".class": "TypeInfo", "_promote": null, "abstract_attributes": [], "bases": ["typing.BinaryIO"], "declared_metaclass": null, "defn": {".class": "ClassDef", "fullname": "codecs.StreamRecoder", "name": "StreamRecoder", "type_vars": []}, "flags": [], "fullname": "codecs.StreamRecoder", "metaclass_type": "abc.ABCMeta", "metadata": {}, "module_name": "codecs", "mro": ["codecs.StreamRecoder", "typing.BinaryIO", "typing.IO", "typing.Iterator", "typing.Iterable", "builtins.object"], "names": {".class": "SymbolTable", "__enter__": {".class": "SymbolTableNode", "kind": "Mdef", "node": {".class": "FuncDef", "arg_kinds": [0], "arg_names": ["self"], "flags": [], "fullname": "codecs.StreamRecoder.__enter__", "name": "__enter__", "type": {".class": "CallableType", "arg_kinds": [0], "arg_names": [null], "arg_types": [{".class": "TypeVarType", "fullname": "codecs._SRT", "id": -1, "name": "_SRT", "upper_bound": "codecs.StreamRecoder", "values": [], "variance": 0}], "bound_args": [], "def_extras": {"first_arg": "self"}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "__enter__ of StreamRecoder", "ret_type": {".class": "TypeVarType", "fullname": "codecs._SRT", "id": -1, "name": "_SRT", "upper_bound": "codecs.StreamRecoder", "values": [], "variance": 0}, "variables": [{".class": "TypeVarDef", "fullname": "codecs._SRT", "id": -1, "name": "_SRT", "upper_bound": "codecs.StreamRecoder", "values": [], "variance": 0}]}}}, "__exit__": {".class": "SymbolTableNode", "kind": "Mdef", "node": {".class": "FuncDef", "arg_kinds": [0, 0, 0, 0], "arg_names": ["self", "type", "value", "tb"], "flags": [], "fullname": "codecs.StreamRecoder.__exit__", "name": "__exit__", "type": {".class": "CallableType", "arg_kinds": [0, 0, 0, 0], "arg_names": [null, null, null, null], "arg_types": ["codecs.StreamRecoder", {".class": "UnionType", "items": [{".class": "TypeType", "item": "builtins.BaseException"}, {".class": "NoneTyp"}]}, {".class": "UnionType", "items": ["builtins.BaseException", {".class": "NoneTyp"}]}, {".class": "UnionType", "items": ["types.TracebackType", {".class": "NoneTyp"}]}], "bound_args": [], "def_extras": {"first_arg": "self"}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "__exit__ of StreamRecoder", "ret_type": "builtins.bool", "variables": []}}}, "__getattr__": {".class": "SymbolTableNode", "kind": "Mdef", "node": {".class": "FuncDef", "arg_kinds": [0, 0], "arg_names": ["self", "name"], "flags": [], "fullname": "codecs.StreamRecoder.__getattr__", "name": "__getattr__", "type": {".class": "CallableType", "arg_kinds": [0, 0], "arg_names": [null, null], "arg_types": ["codecs.StreamRecoder", "builtins.str"], "bound_args": [], "def_extras": {"first_arg": "self"}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "__getattr__ of StreamRecoder", "ret_type": {".class": "AnyType", "missing_import_name": null, "source_any": null, "type_of_any": 2}, "variables": []}}}, "__init__": {".class": "SymbolTableNode", "kind": "Mdef", "node": {".class": "FuncDef", "arg_kinds": [0, 0, 0, 0, 0, 0, 1], "arg_names": ["self", "stream", "encode", "decode", "Reader", "Writer", "errors"], "flags": [], "fullname": "codecs.StreamRecoder.__init__", "name": "__init__", "type": {".class": "CallableType", "arg_kinds": [0, 0, 0, 0, 0, 0, 1], "arg_names": ["self", "stream", "encode", "decode", "Reader", "Writer", "errors"], "arg_types": ["codecs.StreamRecoder", {".class": "Instance", "args": ["builtins.bytes"], "type_ref": "typing.IO"}, "codecs._Encoder", "codecs._Decoder", {".class": "CallableType", "arg_kinds": [0], "arg_names": [null], "arg_types": [{".class": "Instance", "args": ["builtins.bytes"], "type_ref": "typing.IO"}], "bound_args": [], "def_extras": {}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": null, "ret_type": "codecs.StreamReader", "variables": []}, {".class": "CallableType", "arg_kinds": [0], "arg_names": [null], "arg_types": [{".class": "Instance", "args": ["builtins.bytes"], "type_ref": "typing.IO"}], "bound_args": [], "def_extras": {}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": null, "ret_type": "codecs.StreamWriter", "variables": []}, "builtins.str"], "bound_args": [], "def_extras": {"first_arg": "self"}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "__init__ of StreamRecoder", "ret_type": {".class": "NoneTyp"}, "variables": []}}}, "__iter__": {".class": "SymbolTableNode", "kind": "Mdef", "node": {".class": "FuncDef", "arg_kinds": [0], "arg_names": ["self"], "flags": [], "fullname": "codecs.StreamRecoder.__iter__", "name": "__iter__", "type": {".class": "CallableType", "arg_kinds": [0], "arg_names": [null], "arg_types": [{".class": "TypeVarType", "fullname": "codecs._SRT", "id": -1, "name": "_SRT", "upper_bound": "codecs.StreamRecoder", "values": [], "variance": 0}], "bound_args": [], "def_extras": {"first_arg": "self"}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "__iter__ of StreamRecoder", "ret_type": {".class": "TypeVarType", "fullname": "codecs._SRT", "id": -1, "name": "_SRT", "upper_bound": "codecs.StreamRecoder", "values": [], "variance": 0}, "variables": [{".class": "TypeVarDef", "fullname": "codecs._SRT", "id": -1, "name": "_SRT", "upper_bound": "codecs.StreamRecoder", "values": [], "variance": 0}]}}}, "__next__": {".class": "SymbolTableNode", "kind": "Mdef", "node": {".class": "FuncDef", "arg_kinds": [0], "arg_names": ["self"], "flags": ["is_conditional"], "fullname": "codecs.StreamRecoder.__next__", "name": "__next__", "type": {".class": "CallableType", "arg_kinds": [0], "arg_names": ["self"], "arg_types": ["codecs.StreamRecoder"], "bound_args": [], "def_extras": {"first_arg": "self"}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "__next__ of StreamRecoder", "ret_type": "builtins.bytes", "variables": []}}}, "close": {".class": "SymbolTableNode", "kind": "Mdef", "node": {".class": "FuncDef", "arg_kinds": [0], "arg_names": ["self"], "flags": [], "fullname": "codecs.StreamRecoder.close", "name": "close", "type": {".class": "CallableType", "arg_kinds": [0], "arg_names": ["self"], "arg_types": ["codecs.StreamRecoder"], "bound_args": [], "def_extras": {"first_arg": "self"}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "close of StreamRecoder", "ret_type": {".class": "NoneTyp"}, "variables": []}}}, "fileno": {".class": "SymbolTableNode", "kind": "Mdef", "node": {".class": "FuncDef", "arg_kinds": [0], "arg_names": ["self"], "flags": [], "fullname": "codecs.StreamRecoder.fileno", "name": "fileno", "type": {".class": "CallableType", "arg_kinds": [0], "arg_names": ["self"], "arg_types": ["codecs.StreamRecoder"], "bound_args": [], "def_extras": {"first_arg": "self"}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "fileno of StreamRecoder", "ret_type": "builtins.int", "variables": []}}}, "flush": {".class": "SymbolTableNode", "kind": "Mdef", "node": {".class": "FuncDef", "arg_kinds": [0], "arg_names": ["self"], "flags": [], "fullname": "codecs.StreamRecoder.flush", "name": "flush", "type": {".class": "CallableType", "arg_kinds": [0], "arg_names": ["self"], "arg_types": ["codecs.StreamRecoder"], "bound_args": [], "def_extras": {"first_arg": "self"}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "flush of StreamRecoder", "ret_type": {".class": "NoneTyp"}, "variables": []}}}, "isatty": {".class": "SymbolTableNode", "kind": "Mdef", "node": {".class": "FuncDef", "arg_kinds": [0], "arg_names": ["self"], "flags": [], "fullname": "codecs.StreamRecoder.isatty", "name": "isatty", "type": {".class": "CallableType", "arg_kinds": [0], "arg_names": ["self"], "arg_types": ["codecs.StreamRecoder"], "bound_args": [], "def_extras": {"first_arg": "self"}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "isatty of StreamRecoder", "ret_type": "builtins.bool", "variables": []}}}, "read": {".class": "SymbolTableNode", "kind": "Mdef", "node": {".class": "FuncDef", "arg_kinds": [0, 1], "arg_names": ["self", "size"], "flags": [], "fullname": "codecs.StreamRecoder.read", "name": "read", "type": {".class": "CallableType", "arg_kinds": [0, 1], "arg_names": ["self", "size"], "arg_types": ["codecs.StreamRecoder", "builtins.int"], "bound_args": [], "def_extras": {"first_arg": "self"}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "read of StreamRecoder", "ret_type": "builtins.bytes", "variables": []}}}, "readable": {".class": "SymbolTableNode", "kind": "Mdef", "node": {".class": "FuncDef", "arg_kinds": [0], "arg_names": ["self"], "flags": [], "fullname": "codecs.StreamRecoder.readable", "name": "readable", "type": {".class": "CallableType", "arg_kinds": [0], "arg_names": ["self"], "arg_types": ["codecs.StreamRecoder"], "bound_args": [], "def_extras": {"first_arg": "self"}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "readable of StreamRecoder", "ret_type": "builtins.bool", "variables": []}}}, "readline": {".class": "SymbolTableNode", "kind": "Mdef", "node": {".class": "FuncDef", "arg_kinds": [0, 1], "arg_names": ["self", "size"], "flags": [], "fullname": "codecs.StreamRecoder.readline", "name": "readline", "type": {".class": "CallableType", "arg_kinds": [0, 1], "arg_names": ["self", "size"], "arg_types": ["codecs.StreamRecoder", {".class": "UnionType", "items": ["builtins.int", {".class": "NoneTyp"}]}], "bound_args": [], "def_extras": {"first_arg": "self"}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "readline of StreamRecoder", "ret_type": "builtins.bytes", "variables": []}}}, "readlines": {".class": "SymbolTableNode", "kind": "Mdef", "node": {".class": "FuncDef", "arg_kinds": [0, 1], "arg_names": ["self", "sizehint"], "flags": [], "fullname": "codecs.StreamRecoder.readlines", "name": "readlines", "type": {".class": "CallableType", "arg_kinds": [0, 1], "arg_names": ["self", "sizehint"], "arg_types": ["codecs.StreamRecoder", {".class": "UnionType", "items": ["builtins.int", {".class": "NoneTyp"}]}], "bound_args": [], "def_extras": {"first_arg": "self"}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "readlines of StreamRecoder", "ret_type": {".class": "Instance", "args": ["builtins.bytes"], "type_ref": "builtins.list"}, "variables": []}}}, "reset": {".class": "SymbolTableNode", "kind": "Mdef", "node": {".class": "FuncDef", "arg_kinds": [0], "arg_names": ["self"], "flags": [], "fullname": "codecs.StreamRecoder.reset", "name": "reset", "type": {".class": "CallableType", "arg_kinds": [0], "arg_names": ["self"], "arg_types": ["codecs.StreamRecoder"], "bound_args": [], "def_extras": {"first_arg": "self"}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "reset of StreamRecoder", "ret_type": {".class": "NoneTyp"}, "variables": []}}}, "seek": {".class": "SymbolTableNode", "kind": "Mdef", "node": {".class": "FuncDef", "arg_kinds": [0, 0, 1], "arg_names": ["self", "offset", "whence"], "flags": [], "fullname": "codecs.StreamRecoder.seek", "name": "seek", "type": {".class": "CallableType", "arg_kinds": [0, 0, 1], "arg_names": ["self", "offset", "whence"], "arg_types": ["codecs.StreamRecoder", "builtins.int", "builtins.int"], "bound_args": [], "def_extras": {"first_arg": "self"}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "seek of StreamRecoder", "ret_type": "builtins.int", "variables": []}}}, "seekable": {".class": "SymbolTableNode", "kind": "Mdef", "node": {".class": "FuncDef", "arg_kinds": [0], "arg_names": ["self"], "flags": [], "fullname": "codecs.StreamRecoder.seekable", "name": "seekable", "type": {".class": "CallableType", "arg_kinds": [0], "arg_names": ["self"], "arg_types": ["codecs.StreamRecoder"], "bound_args": [], "def_extras": {"first_arg": "self"}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "seekable of StreamRecoder", "ret_type": "builtins.bool", "variables": []}}}, "tell": {".class": "SymbolTableNode", "kind": "Mdef", "node": {".class": "FuncDef", "arg_kinds": [0], "arg_names": ["self"], "flags": [], "fullname": "codecs.StreamRecoder.tell", "name": "tell", "type": {".class": "CallableType", "arg_kinds": [0], "arg_names": ["self"], "arg_types": ["codecs.StreamRecoder"], "bound_args": [], "def_extras": {"first_arg": "self"}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "tell of StreamRecoder", "ret_type": "builtins.int", "variables": []}}}, "truncate": {".class": "SymbolTableNode", "kind": "Mdef", "node": {".class": "FuncDef", "arg_kinds": [0, 1], "arg_names": ["self", "size"], "flags": [], "fullname": "codecs.StreamRecoder.truncate", "name": "truncate", "type": {".class": "CallableType", "arg_kinds": [0, 1], "arg_names": ["self", "size"], "arg_types": ["codecs.StreamRecoder", {".class": "UnionType", "items": ["builtins.int", {".class": "NoneTyp"}]}], "bound_args": [], "def_extras": {"first_arg": "self"}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "truncate of StreamRecoder", "ret_type": "builtins.int", "variables": []}}}, "writable": {".class": "SymbolTableNode", "kind": "Mdef", "node": {".class": "FuncDef", "arg_kinds": [0], "arg_names": ["self"], "flags": [], "fullname": "codecs.StreamRecoder.writable", "name": "writable", "type": {".class": "CallableType", "arg_kinds": [0], "arg_names": ["self"], "arg_types": ["codecs.StreamRecoder"], "bound_args": [], "def_extras": {"first_arg": "self"}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "writable of StreamRecoder", "ret_type": "builtins.bool", "variables": []}}}, "write": {".class": "SymbolTableNode", "kind": "Mdef", "node": {".class": "FuncDef", "arg_kinds": [0, 0], "arg_names": ["self", "data"], "flags": [], "fullname": "codecs.StreamRecoder.write", "name": "write", "type": {".class": "CallableType", "arg_kinds": [0, 0], "arg_names": ["self", "data"], "arg_types": ["codecs.StreamRecoder", "builtins.bytes"], "bound_args": [], "def_extras": {"first_arg": "self"}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "write of StreamRecoder", "ret_type": "builtins.int", "variables": []}}}, "writelines": {".class": "SymbolTableNode", "kind": "Mdef", "node": {".class": "FuncDef", "arg_kinds": [0, 0], "arg_names": ["self", "list"], "flags": [], "fullname": "codecs.StreamRecoder.writelines", "name": "writelines", "type": {".class": "CallableType", "arg_kinds": [0, 0], "arg_names": ["self", "list"], "arg_types": ["codecs.StreamRecoder", {".class": "Instance", "args": ["builtins.bytes"], "type_ref": "typing.Iterable"}], "bound_args": [], "def_extras": {"first_arg": "self"}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "writelines of StreamRecoder", "ret_type": "builtins.int", "variables": []}}}}, "tuple_type": null, "type_vars": [], "typeddict_type": null}}, "StreamWriter": {".class": "SymbolTableNode", "kind": "Gdef", "node": {".class": "TypeInfo", "_promote": null, "abstract_attributes": [], "bases": ["codecs.Codec"], "declared_metaclass": null, "defn": {".class": "ClassDef", "fullname": "codecs.StreamWriter", "name": "StreamWriter", "type_vars": []}, "flags": [], "fullname": "codecs.StreamWriter", "metaclass_type": null, "metadata": {}, "module_name": "codecs", "mro": ["codecs.StreamWriter", "codecs.Codec", "builtins.object"], "names": {".class": "SymbolTable", "__enter__": {".class": "SymbolTableNode", "kind": "Mdef", "node": {".class": "FuncDef", "arg_kinds": [0], "arg_names": ["self"], "flags": [], "fullname": "codecs.StreamWriter.__enter__", "name": "__enter__", "type": {".class": "CallableType", "arg_kinds": [0], "arg_names": [null], "arg_types": [{".class": "TypeVarType", "fullname": "codecs._SW", "id": -1, "name": "_SW", "upper_bound": "codecs.StreamWriter", "values": [], "variance": 0}], "bound_args": [], "def_extras": {"first_arg": "self"}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "__enter__ of StreamWriter", "ret_type": {".class": "TypeVarType", "fullname": "codecs._SW", "id": -1, "name": "_SW", "upper_bound": "codecs.StreamWriter", "values": [], "variance": 0}, "variables": [{".class": "TypeVarDef", "fullname": "codecs._SW", "id": -1, "name": "_SW", "upper_bound": "codecs.StreamWriter", "values": [], "variance": 0}]}}}, "__exit__": {".class": "SymbolTableNode", "kind": "Mdef", "node": {".class": "FuncDef", "arg_kinds": [0, 0, 0, 0], "arg_names": ["self", "typ", "exc", "tb"], "flags": [], "fullname": "codecs.StreamWriter.__exit__", "name": "__exit__", "type": {".class": "CallableType", "arg_kinds": [0, 0, 0, 0], "arg_names": [null, null, null, null], "arg_types": ["codecs.StreamWriter", {".class": "UnionType", "items": [{".class": "TypeType", "item": "builtins.BaseException"}, {".class": "NoneTyp"}]}, {".class": "UnionType", "items": ["builtins.BaseException", {".class": "NoneTyp"}]}, {".class": "UnionType", "items": ["types.TracebackType", {".class": "NoneTyp"}]}], "bound_args": [], "def_extras": {"first_arg": "self"}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "__exit__ of StreamWriter", "ret_type": {".class": "NoneTyp"}, "variables": []}}}, "__getattr__": {".class": "SymbolTableNode", "kind": "Mdef", "node": {".class": "FuncDef", "arg_kinds": [0, 0], "arg_names": ["self", "name"], "flags": [], "fullname": "codecs.StreamWriter.__getattr__", "name": "__getattr__", "type": {".class": "CallableType", "arg_kinds": [0, 0], "arg_names": [null, null], "arg_types": ["codecs.StreamWriter", "builtins.str"], "bound_args": [], "def_extras": {"first_arg": "self"}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "__getattr__ of StreamWriter", "ret_type": {".class": "AnyType", "missing_import_name": null, "source_any": null, "type_of_any": 2}, "variables": []}}}, "__init__": {".class": "SymbolTableNode", "kind": "Mdef", "node": {".class": "FuncDef", "arg_kinds": [0, 0, 1], "arg_names": ["self", "stream", "errors"], "flags": [], "fullname": "codecs.StreamWriter.__init__", "name": "__init__", "type": {".class": "CallableType", "arg_kinds": [0, 0, 1], "arg_names": ["self", "stream", "errors"], "arg_types": ["codecs.StreamWriter", {".class": "Instance", "args": ["builtins.bytes"], "type_ref": "typing.IO"}, "builtins.str"], "bound_args": [], "def_extras": {"first_arg": "self"}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "__init__ of StreamWriter", "ret_type": {".class": "NoneTyp"}, "variables": []}}}, "errors": {".class": "SymbolTableNode", "kind": "Mdef", "node": {".class": "Var", "flags": ["is_initialized_in_class"], "fullname": "codecs.StreamWriter.errors", "name": "errors", "type": "builtins.str"}}, "reset": {".class": "SymbolTableNode", "kind": "Mdef", "node": {".class": "FuncDef", "arg_kinds": [0], "arg_names": ["self"], "flags": [], "fullname": "codecs.StreamWriter.reset", "name": "reset", "type": {".class": "CallableType", "arg_kinds": [0], "arg_names": ["self"], "arg_types": ["codecs.StreamWriter"], "bound_args": [], "def_extras": {"first_arg": "self"}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "reset of StreamWriter", "ret_type": {".class": "NoneTyp"}, "variables": []}}}, "write": {".class": "SymbolTableNode", "kind": "Mdef", "node": {".class": "FuncDef", "arg_kinds": [0, 0], "arg_names": ["self", "obj"], "flags": [], "fullname": "codecs.StreamWriter.write", "name": "write", "type": {".class": "CallableType", "arg_kinds": [0, 0], "arg_names": ["self", "obj"], "arg_types": ["codecs.StreamWriter", "builtins.str"], "bound_args": [], "def_extras": {"first_arg": "self"}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "write of StreamWriter", "ret_type": {".class": "NoneTyp"}, "variables": []}}}, "writelines": {".class": "SymbolTableNode", "kind": "Mdef", "node": {".class": "FuncDef", "arg_kinds": [0, 0], "arg_names": ["self", "list"], "flags": [], "fullname": "codecs.StreamWriter.writelines", "name": "writelines", "type": {".class": "CallableType", "arg_kinds": [0, 0], "arg_names": ["self", "list"], "arg_types": ["codecs.StreamWriter", {".class": "Instance", "args": ["builtins.str"], "type_ref": "typing.Iterable"}], "bound_args": [], "def_extras": {"first_arg": "self"}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "writelines of StreamWriter", "ret_type": {".class": "NoneTyp"}, "variables": []}}}}, "tuple_type": null, "type_vars": [], "typeddict_type": null}}, "Text": {".class": "SymbolTableNode", "cross_ref": "typing.Text", "kind": "Gdef", "module_hidden": true, "module_public": false}, "TextIO": {".class": "SymbolTableNode", "cross_ref": "typing.TextIO", "kind": "Gdef", "module_hidden": true, "module_public": false}, "Tuple": {".class": "SymbolTableNode", "cross_ref": "typing.Tuple", "kind": "Gdef", "module_hidden": true, "module_public": false}, "Type": {".class": "SymbolTableNode", "cross_ref": "typing.Type", "kind": "Gdef", "module_hidden": true, "module_public": false}, "TypeVar": {".class": "SymbolTableNode", "cross_ref": "typing.TypeVar", "kind": "Gdef", "module_hidden": true, "module_public": false}, "Union": {".class": "SymbolTableNode", "cross_ref": "typing.Union", "kind": "Gdef", "module_hidden": true, "module_public": false}, "_Decoded": {".class": "SymbolTableNode", "kind": "Gdef", "node": {".class": "TypeAlias", "alias_tvars": [], "column": 0, "fullname": "codecs._Decoded", "line": 13, "no_args": true, "normalized": false, "target": "builtins.str"}}, "_Decoder": {".class": "SymbolTableNode", "kind": "Gdef", "node": {".class": "TypeInfo", "_promote": null, "abstract_attributes": [], "bases": ["builtins.object"], "declared_metaclass": null, "defn": {".class": "ClassDef", "fullname": "codecs._Decoder", "name": "_Decoder", "type_vars": []}, "flags": ["is_protocol"], "fullname": "codecs._Decoder", "metaclass_type": "abc.ABCMeta", "metadata": {}, "module_name": "codecs", "mro": ["codecs._Decoder", "builtins.object"], "names": {".class": "SymbolTable", "__call__": {".class": "SymbolTableNode", "kind": "Mdef", "node": {".class": "FuncDef", "arg_kinds": [0, 0, 1], "arg_names": ["self", "input", "errors"], "flags": [], "fullname": "codecs._Decoder.__call__", "name": "__call__", "type": {".class": "CallableType", "arg_kinds": [0, 0, 1], "arg_names": ["self", "input", "errors"], "arg_types": ["codecs._Decoder", "builtins.bytes", "builtins.str"], "bound_args": [], "def_extras": {"first_arg": "self"}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "__call__ of _Decoder", "ret_type": {".class": "TupleType", "fallback": {".class": "Instance", "args": [{".class": "AnyType", "missing_import_name": null, "source_any": null, "type_of_any": 6}], "type_ref": "builtins.tuple"}, "implicit": false, "items": ["builtins.str", "builtins.int"]}, "variables": []}}}}, "tuple_type": null, "type_vars": [], "typeddict_type": null}}, "_Encoded": {".class": "SymbolTableNode", "kind": "Gdef", "node": {".class": "TypeAlias", "alias_tvars": [], "column": 0, "fullname": "codecs._Encoded", "line": 14, "no_args": true, "normalized": false, "target": "builtins.bytes"}}, "_Encoder": {".class": "SymbolTableNode", "kind": "Gdef", "node": {".class": "TypeInfo", "_promote": null, "abstract_attributes": [], "bases": ["builtins.object"], "declared_metaclass": null, "defn": {".class": "ClassDef", "fullname": "codecs._Encoder", "name": "_Encoder", "type_vars": []}, "flags": ["is_protocol"], "fullname": "codecs._Encoder", "metaclass_type": "abc.ABCMeta", "metadata": {}, "module_name": "codecs", "mro": ["codecs._Encoder", "builtins.object"], "names": {".class": "SymbolTable", "__call__": {".class": "SymbolTableNode", "kind": "Mdef", "node": {".class": "FuncDef", "arg_kinds": [0, 0, 1], "arg_names": ["self", "input", "errors"], "flags": [], "fullname": "codecs._Encoder.__call__", "name": "__call__", "type": {".class": "CallableType", "arg_kinds": [0, 0, 1], "arg_names": ["self", "input", "errors"], "arg_types": ["codecs._Encoder", "builtins.str", "builtins.str"], "bound_args": [], "def_extras": {"first_arg": "self"}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "__call__ of _Encoder", "ret_type": {".class": "TupleType", "fallback": {".class": "Instance", "args": [{".class": "AnyType", "missing_import_name": null, "source_any": null, "type_of_any": 6}], "type_ref": "builtins.tuple"}, "implicit": false, "items": ["builtins.bytes", "builtins.int"]}, "variables": []}}}}, "tuple_type": null, "type_vars": [], "typeddict_type": null}}, "_IncrementalDecoder": {".class": "SymbolTableNode", "kind": "Gdef", "node": {".class": "TypeAlias", "alias_tvars": [], "column": 0, "fullname": "codecs._IncrementalDecoder", "line": 25, "no_args": false, "normalized": false, "target": {".class": "CallableType", "arg_kinds": [], "arg_names": [], "arg_types": [], "bound_args": [], "def_extras": {}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": null, "ret_type": "codecs.IncrementalDecoder", "variables": []}}}, "_IncrementalEncoder": {".class": "SymbolTableNode", "kind": "Gdef", "node": {".class": "TypeAlias", "alias_tvars": [], "column": 0, "fullname": "codecs._IncrementalEncoder", "line": 24, "no_args": false, "normalized": false, "target": {".class": "CallableType", "arg_kinds": [], "arg_names": [], "arg_types": [], "bound_args": [], "def_extras": {}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": null, "ret_type": "codecs.IncrementalEncoder", "variables": []}}}, "_SR": {".class": "SymbolTableNode", "kind": "Gdef", "node": {".class": "TypeVarExpr", "fullname": "codecs._SR", "name": "_SR", "upper_bound": "codecs.StreamReader", "values": [], "variance": 0}}, "_SRT": {".class": "SymbolTableNode", "kind": "Gdef", "node": {".class": "TypeVarExpr", "fullname": "codecs._SRT", "name": "_SRT", "upper_bound": "codecs.StreamRecoder", "values": [], "variance": 0}}, "_SW": {".class": "SymbolTableNode", "kind": "Gdef", "node": {".class": "TypeVarExpr", "fullname": "codecs._SW", "name": "_SW", "upper_bound": "codecs.StreamWriter", "values": [], "variance": 0}}, "_StreamReader": {".class": "SymbolTableNode", "kind": "Gdef", "node": {".class": "TypeAlias", "alias_tvars": [], "column": 0, "fullname": "codecs._StreamReader", "line": 22, "no_args": false, "normalized": false, "target": {".class": "CallableType", "arg_kinds": [0], "arg_names": [null], "arg_types": [{".class": "Instance", "args": ["builtins.bytes"], "type_ref": "typing.IO"}], "bound_args": [], "def_extras": {}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": null, "ret_type": "codecs.StreamReader", "variables": []}}}, "_StreamWriter": {".class": "SymbolTableNode", "kind": "Gdef", "node": {".class": "TypeAlias", "alias_tvars": [], "column": 0, "fullname": "codecs._StreamWriter", "line": 23, "no_args": false, "normalized": false, "target": {".class": "CallableType", "arg_kinds": [0], "arg_names": [null], "arg_types": [{".class": "Instance", "args": ["builtins.bytes"], "type_ref": "typing.IO"}], "bound_args": [], "def_extras": {}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": null, "ret_type": "codecs.StreamWriter", "variables": []}}}, "_T": {".class": "SymbolTableNode", "kind": "Gdef", "node": {".class": "TypeVarExpr", "fullname": "codecs._T", "name": "_T", "upper_bound": "codecs.StreamReaderWriter", "values": [], "variance": 0}}, "__doc__": {".class": "SymbolTableNode", "kind": "Gdef", "node": {".class": "Var", "flags": [], "fullname": "codecs.__doc__", "name": "__doc__", "type": "builtins.str"}}, "__file__": {".class": "SymbolTableNode", "kind": "Gdef", "node": {".class": "Var", "flags": [], "fullname": "codecs.__file__", "name": "__file__", "type": "builtins.str"}}, "__name__": {".class": "SymbolTableNode", "kind": "Gdef", "node": {".class": "Var", "flags": [], "fullname": "codecs.__name__", "name": "__name__", "type": "builtins.str"}}, "__package__": {".class": "SymbolTableNode", "kind": "Gdef", "node": {".class": "Var", "flags": [], "fullname": "codecs.__package__", "name": "__package__", "type": "builtins.str"}}, "abstractmethod": {".class": "SymbolTableNode", "cross_ref": "abc.abstractmethod", "kind": "Gdef", "module_hidden": true, "module_public": false}, "backslashreplace_errors": {".class": "SymbolTableNode", "kind": "Gdef", "node": {".class": "FuncDef", "arg_kinds": [0], "arg_names": ["exception"], "flags": [], "fullname": "codecs.backslashreplace_errors", "name": "backslashreplace_errors", "type": {".class": "CallableType", "arg_kinds": [0], "arg_names": ["exception"], "arg_types": ["builtins.UnicodeError"], "bound_args": [], "def_extras": {"first_arg": null}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "backslashreplace_errors", "ret_type": {".class": "TupleType", "fallback": {".class": "Instance", "args": [{".class": "AnyType", "missing_import_name": null, "source_any": null, "type_of_any": 6}], "type_ref": "builtins.tuple"}, "implicit": false, "items": [{".class": "UnionType", "items": ["builtins.str", "builtins.bytes"]}, "builtins.int"]}, "variables": []}}}, "decode": {".class": "SymbolTableNode", "kind": "Gdef", "node": {".class": "FuncDef", "arg_kinds": [0, 1, 1], "arg_names": ["obj", "encoding", "errors"], "flags": [], "fullname": "codecs.decode", "name": "decode", "type": {".class": "CallableType", "arg_kinds": [0, 1, 1], "arg_names": ["obj", "encoding", "errors"], "arg_types": ["builtins.bytes", "builtins.str", "builtins.str"], "bound_args": [], "def_extras": {"first_arg": null}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "decode", "ret_type": "builtins.str", "variables": []}}}, "encode": {".class": "SymbolTableNode", "kind": "Gdef", "node": {".class": "FuncDef", "arg_kinds": [0, 1, 1], "arg_names": ["obj", "encoding", "errors"], "flags": [], "fullname": "codecs.encode", "name": "encode", "type": {".class": "CallableType", "arg_kinds": [0, 1, 1], "arg_names": ["obj", "encoding", "errors"], "arg_types": ["builtins.str", "builtins.str", "builtins.str"], "bound_args": [], "def_extras": {"first_arg": null}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "encode", "ret_type": "builtins.bytes", "variables": []}}}, "getdecoder": {".class": "SymbolTableNode", "kind": "Gdef", "node": {".class": "FuncDef", "arg_kinds": [0], "arg_names": ["encoding"], "flags": [], "fullname": "codecs.getdecoder", "name": "getdecoder", "type": {".class": "CallableType", "arg_kinds": [0], "arg_names": ["encoding"], "arg_types": ["builtins.str"], "bound_args": [], "def_extras": {"first_arg": null}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "getdecoder", "ret_type": "codecs._Decoder", "variables": []}}}, "getencoder": {".class": "SymbolTableNode", "kind": "Gdef", "node": {".class": "FuncDef", "arg_kinds": [0], "arg_names": ["encoding"], "flags": [], "fullname": "codecs.getencoder", "name": "getencoder", "type": {".class": "CallableType", "arg_kinds": [0], "arg_names": ["encoding"], "arg_types": ["builtins.str"], "bound_args": [], "def_extras": {"first_arg": null}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "getencoder", "ret_type": "codecs._Encoder", "variables": []}}}, "getincrementaldecoder": {".class": "SymbolTableNode", "kind": "Gdef", "node": {".class": "FuncDef", "arg_kinds": [0], "arg_names": ["encoding"], "flags": [], "fullname": "codecs.getincrementaldecoder", "name": "getincrementaldecoder", "type": {".class": "CallableType", "arg_kinds": [0], "arg_names": ["encoding"], "arg_types": ["builtins.str"], "bound_args": [], "def_extras": {"first_arg": null}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "getincrementaldecoder", "ret_type": {".class": "CallableType", "arg_kinds": [], "arg_names": [], "arg_types": [], "bound_args": [], "def_extras": {}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": null, "ret_type": "codecs.IncrementalDecoder", "variables": []}, "variables": []}}}, "getincrementalencoder": {".class": "SymbolTableNode", "kind": "Gdef", "node": {".class": "FuncDef", "arg_kinds": [0], "arg_names": ["encoding"], "flags": [], "fullname": "codecs.getincrementalencoder", "name": "getincrementalencoder", "type": {".class": "CallableType", "arg_kinds": [0], "arg_names": ["encoding"], "arg_types": ["builtins.str"], "bound_args": [], "def_extras": {"first_arg": null}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "getincrementalencoder", "ret_type": {".class": "CallableType", "arg_kinds": [], "arg_names": [], "arg_types": [], "bound_args": [], "def_extras": {}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": null, "ret_type": "codecs.IncrementalEncoder", "variables": []}, "variables": []}}}, "getreader": {".class": "SymbolTableNode", "kind": "Gdef", "node": {".class": "FuncDef", "arg_kinds": [0], "arg_names": ["encoding"], "flags": [], "fullname": "codecs.getreader", "name": "getreader", "type": {".class": "CallableType", "arg_kinds": [0], "arg_names": ["encoding"], "arg_types": ["builtins.str"], "bound_args": [], "def_extras": {"first_arg": null}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "getreader", "ret_type": {".class": "CallableType", "arg_kinds": [0], "arg_names": [null], "arg_types": [{".class": "Instance", "args": ["builtins.bytes"], "type_ref": "typing.IO"}], "bound_args": [], "def_extras": {}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": null, "ret_type": "codecs.StreamReader", "variables": []}, "variables": []}}}, "getwriter": {".class": "SymbolTableNode", "kind": "Gdef", "node": {".class": "FuncDef", "arg_kinds": [0], "arg_names": ["encoding"], "flags": [], "fullname": "codecs.getwriter", "name": "getwriter", "type": {".class": "CallableType", "arg_kinds": [0], "arg_names": ["encoding"], "arg_types": ["builtins.str"], "bound_args": [], "def_extras": {"first_arg": null}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "getwriter", "ret_type": {".class": "CallableType", "arg_kinds": [0], "arg_names": [null], "arg_types": [{".class": "Instance", "args": ["builtins.bytes"], "type_ref": "typing.IO"}], "bound_args": [], "def_extras": {}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": null, "ret_type": "codecs.StreamWriter", "variables": []}, "variables": []}}}, "ignore_errors": {".class": "SymbolTableNode", "kind": "Gdef", "node": {".class": "FuncDef", "arg_kinds": [0], "arg_names": ["exception"], "flags": [], "fullname": "codecs.ignore_errors", "name": "ignore_errors", "type": {".class": "CallableType", "arg_kinds": [0], "arg_names": ["exception"], "arg_types": ["builtins.UnicodeError"], "bound_args": [], "def_extras": {"first_arg": null}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "ignore_errors", "ret_type": {".class": "TupleType", "fallback": {".class": "Instance", "args": [{".class": "AnyType", "missing_import_name": null, "source_any": null, "type_of_any": 6}], "type_ref": "builtins.tuple"}, "implicit": false, "items": [{".class": "UnionType", "items": ["builtins.str", "builtins.bytes"]}, "builtins.int"]}, "variables": []}}}, "iterdecode": {".class": "SymbolTableNode", "kind": "Gdef", "node": {".class": "FuncDef", "arg_kinds": [0, 0, 1], "arg_names": ["iterator", "encoding", "errors"], "flags": [], "fullname": "codecs.iterdecode", "name": "iterdecode", "type": {".class": "CallableType", "arg_kinds": [0, 0, 1], "arg_names": ["iterator", "encoding", "errors"], "arg_types": [{".class": "Instance", "args": ["builtins.bytes"], "type_ref": "typing.Iterable"}, "builtins.str", "builtins.str"], "bound_args": [], "def_extras": {"first_arg": null}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "iterdecode", "ret_type": {".class": "Instance", "args": ["builtins.str", {".class": "NoneTyp"}, {".class": "NoneTyp"}], "type_ref": "typing.Generator"}, "variables": []}}}, "iterencode": {".class": "SymbolTableNode", "kind": "Gdef", "node": {".class": "FuncDef", "arg_kinds": [0, 0, 1], "arg_names": ["iterator", "encoding", "errors"], "flags": [], "fullname": "codecs.iterencode", "name": "iterencode", "type": {".class": "CallableType", "arg_kinds": [0, 0, 1], "arg_names": ["iterator", "encoding", "errors"], "arg_types": [{".class": "Instance", "args": ["builtins.str"], "type_ref": "typing.Iterable"}, "builtins.str", "builtins.str"], "bound_args": [], "def_extras": {"first_arg": null}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "iterencode", "ret_type": {".class": "Instance", "args": ["builtins.bytes", {".class": "NoneTyp"}, {".class": "NoneTyp"}], "type_ref": "typing.Generator"}, "variables": []}}}, "lookup": {".class": "SymbolTableNode", "kind": "Gdef", "node": {".class": "FuncDef", "arg_kinds": [0], "arg_names": ["encoding"], "flags": [], "fullname": "codecs.lookup", "name": "lookup", "type": {".class": "CallableType", "arg_kinds": [0], "arg_names": ["encoding"], "arg_types": ["builtins.str"], "bound_args": [], "def_extras": {"first_arg": null}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "lookup", "ret_type": {".class": "TupleType", "fallback": "codecs.CodecInfo", "implicit": false, "items": ["codecs._Encoder", "codecs._Decoder", {".class": "CallableType", "arg_kinds": [0], "arg_names": [null], "arg_types": [{".class": "Instance", "args": ["builtins.bytes"], "type_ref": "typing.IO"}], "bound_args": [], "def_extras": {}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": null, "ret_type": "codecs.StreamReader", "variables": []}, {".class": "CallableType", "arg_kinds": [0], "arg_names": [null], "arg_types": [{".class": "Instance", "args": ["builtins.bytes"], "type_ref": "typing.IO"}], "bound_args": [], "def_extras": {}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": null, "ret_type": "codecs.StreamWriter", "variables": []}]}, "variables": []}}}, "lookup_error": {".class": "SymbolTableNode", "kind": "Gdef", "node": {".class": "FuncDef", "arg_kinds": [0], "arg_names": ["name"], "flags": [], "fullname": "codecs.lookup_error", "name": "lookup_error", "type": {".class": "CallableType", "arg_kinds": [0], "arg_names": ["name"], "arg_types": ["builtins.str"], "bound_args": [], "def_extras": {"first_arg": null}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "lookup_error", "ret_type": {".class": "CallableType", "arg_kinds": [0], "arg_names": [null], "arg_types": ["builtins.UnicodeError"], "bound_args": [], "def_extras": {}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": null, "ret_type": {".class": "TupleType", "fallback": {".class": "Instance", "args": [{".class": "AnyType", "missing_import_name": null, "source_any": null, "type_of_any": 6}], "type_ref": "builtins.tuple"}, "implicit": false, "items": [{".class": "UnionType", "items": ["builtins.str", "builtins.bytes"]}, "builtins.int"]}, "variables": []}, "variables": []}}}, "open": {".class": "SymbolTableNode", "kind": "Gdef", "node": {".class": "FuncDef", "arg_kinds": [0, 1, 1, 1, 1], "arg_names": ["filename", "mode", "encoding", "errors", "buffering"], "flags": [], "fullname": "codecs.open", "name": "open", "type": {".class": "CallableType", "arg_kinds": [0, 1, 1, 1, 1], "arg_names": ["filename", "mode", "encoding", "errors", "buffering"], "arg_types": ["builtins.str", "builtins.str", "builtins.str", "builtins.str", "builtins.int"], "bound_args": [], "def_extras": {"first_arg": null}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "open", "ret_type": "codecs.StreamReaderWriter", "variables": []}}}, "register": {".class": "SymbolTableNode", "kind": "Gdef", "node": {".class": "FuncDef", "arg_kinds": [0], "arg_names": ["search_function"], "flags": [], "fullname": "codecs.register", "name": "register", "type": {".class": "CallableType", "arg_kinds": [0], "arg_names": ["search_function"], "arg_types": [{".class": "CallableType", "arg_kinds": [0], "arg_names": [null], "arg_types": ["builtins.str"], "bound_args": [], "def_extras": {}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": null, "ret_type": {".class": "TupleType", "fallback": "codecs.CodecInfo", "implicit": false, "items": ["codecs._Encoder", "codecs._Decoder", {".class": "CallableType", "arg_kinds": [0], "arg_names": [null], "arg_types": [{".class": "Instance", "args": ["builtins.bytes"], "type_ref": "typing.IO"}], "bound_args": [], "def_extras": {}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": null, "ret_type": "codecs.StreamReader", "variables": []}, {".class": "CallableType", "arg_kinds": [0], "arg_names": [null], "arg_types": [{".class": "Instance", "args": ["builtins.bytes"], "type_ref": "typing.IO"}], "bound_args": [], "def_extras": {}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": null, "ret_type": "codecs.StreamWriter", "variables": []}]}, "variables": []}], "bound_args": [], "def_extras": {"first_arg": null}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "register", "ret_type": {".class": "NoneTyp"}, "variables": []}}}, "register_error": {".class": "SymbolTableNode", "kind": "Gdef", "node": {".class": "FuncDef", "arg_kinds": [0, 0], "arg_names": ["name", "error_handler"], "flags": [], "fullname": "codecs.register_error", "name": "register_error", "type": {".class": "CallableType", "arg_kinds": [0, 0], "arg_names": ["name", "error_handler"], "arg_types": ["builtins.str", {".class": "CallableType", "arg_kinds": [0], "arg_names": [null], "arg_types": ["builtins.UnicodeError"], "bound_args": [], "def_extras": {}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": null, "ret_type": {".class": "TupleType", "fallback": {".class": "Instance", "args": [{".class": "AnyType", "missing_import_name": null, "source_any": null, "type_of_any": 6}], "type_ref": "builtins.tuple"}, "implicit": false, "items": [{".class": "UnionType", "items": ["builtins.str", "builtins.bytes"]}, "builtins.int"]}, "variables": []}], "bound_args": [], "def_extras": {"first_arg": null}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "register_error", "ret_type": {".class": "NoneTyp"}, "variables": []}}}, "replace_errors": {".class": "SymbolTableNode", "kind": "Gdef", "node": {".class": "FuncDef", "arg_kinds": [0], "arg_names": ["exception"], "flags": [], "fullname": "codecs.replace_errors", "name": "replace_errors", "type": {".class": "CallableType", "arg_kinds": [0], "arg_names": ["exception"], "arg_types": ["builtins.UnicodeError"], "bound_args": [], "def_extras": {"first_arg": null}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "replace_errors", "ret_type": {".class": "TupleType", "fallback": {".class": "Instance", "args": [{".class": "AnyType", "missing_import_name": null, "source_any": null, "type_of_any": 6}], "type_ref": "builtins.tuple"}, "implicit": false, "items": [{".class": "UnionType", "items": ["builtins.str", "builtins.bytes"]}, "builtins.int"]}, "variables": []}}}, "strict_errors": {".class": "SymbolTableNode", "kind": "Gdef", "node": {".class": "FuncDef", "arg_kinds": [0], "arg_names": ["exception"], "flags": [], "fullname": "codecs.strict_errors", "name": "strict_errors", "type": {".class": "CallableType", "arg_kinds": [0], "arg_names": ["exception"], "arg_types": ["builtins.UnicodeError"], "bound_args": [], "def_extras": {"first_arg": null}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "strict_errors", "ret_type": {".class": "TupleType", "fallback": {".class": "Instance", "args": [{".class": "AnyType", "missing_import_name": null, "source_any": null, "type_of_any": 6}], "type_ref": "builtins.tuple"}, "implicit": false, "items": [{".class": "UnionType", "items": ["builtins.str", "builtins.bytes"]}, "builtins.int"]}, "variables": []}}}, "sys": {".class": "SymbolTableNode", "cross_ref": "sys", "kind": "Gdef", "module_hidden": true, "module_public": false}, "types": {".class": "SymbolTableNode", "cross_ref": "types", "kind": "Gdef", "module_hidden": true, "module_public": false}, "xmlcharrefreplace_errors": {".class": "SymbolTableNode", "kind": "Gdef", "node": {".class": "FuncDef", "arg_kinds": [0], "arg_names": ["exception"], "flags": [], "fullname": "codecs.xmlcharrefreplace_errors", "name": "xmlcharrefreplace_errors", "type": {".class": "CallableType", "arg_kinds": [0], "arg_names": ["exception"], "arg_types": ["builtins.UnicodeError"], "bound_args": [], "def_extras": {"first_arg": null}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "xmlcharrefreplace_errors", "ret_type": {".class": "TupleType", "fallback": {".class": "Instance", "args": [{".class": "AnyType", "missing_import_name": null, "source_any": null, "type_of_any": 6}], "type_ref": "builtins.tuple"}, "implicit": false, "items": [{".class": "UnionType", "items": ["builtins.str", "builtins.bytes"]}, "builtins.int"]}, "variables": []}}}}, "path": "/usr/lib/python3/dist-packages/mypy/typeshed/stdlib/2and3/codecs.pyi"}
\ No newline at end of file
diff --git a/Postgres/StressTests/.mypy_cache/3.7/codecs.meta.json b/Postgres/StressTests/.mypy_cache/3.7/codecs.meta.json
deleted file mode 100644
index 011b186..0000000
--- a/Postgres/StressTests/.mypy_cache/3.7/codecs.meta.json
+++ /dev/null
@@ -1 +0,0 @@
-{"child_modules": [], "data_mtime": 1553688971, "dep_lines": [1, 2, 4, 5, 1], "dep_prios": [10, 5, 5, 10, 5], "dependencies": ["sys", "typing", "abc", "types", "builtins"], "hash": "0cf7618d2eae9b45cfec48df6cd22eda", "id": "codecs", "ignore_all": true, "interface_hash": "62485daf53221e5f66639660621ddbbe", "mtime": 1549659920, "options": {"allow_redefinition": false, "allow_untyped_globals": false, "always_false": [], "always_true": [], "bazel": false, "check_untyped_defs": false, "disallow_any_decorated": false, "disallow_any_explicit": false, "disallow_any_expr": false, "disallow_any_generics": false, "disallow_any_unimported": false, "disallow_incomplete_defs": false, "disallow_subclassing_any": false, "disallow_untyped_calls": false, "disallow_untyped_decorators": false, "disallow_untyped_defs": false, "follow_imports": "normal", "follow_imports_for_stubs": false, "ignore_errors": false, "ignore_missing_imports": false, "local_partial_types": false, "mypyc": false, "new_semantic_analyzer": false, "no_implicit_optional": false, "platform": "linux", "plugins": [], "show_none_errors": true, "strict_optional": true, "strict_optional_whitelist": null, "warn_no_return": true, "warn_return_any": false, "warn_unused_ignores": false}, "path": "/usr/lib/python3/dist-packages/mypy/typeshed/stdlib/2and3/codecs.pyi", "size": 10854, "suppressed": [], "version_id": "0.670"}
\ No newline at end of file
diff --git a/Postgres/StressTests/.mypy_cache/3.7/collections/__init__.data.json b/Postgres/StressTests/.mypy_cache/3.7/collections/__init__.data.json
deleted file mode 100644
index 9f301ec..0000000
--- a/Postgres/StressTests/.mypy_cache/3.7/collections/__init__.data.json
+++ /dev/null
@@ -1 +0,0 @@
-{".class": "MypyFile", "_fullname": "collections", "is_partial_stub_package": false, "is_stub": true, "names": {".class": "SymbolTable", "Any": {".class": "SymbolTableNode", "cross_ref": "typing.Any", "kind": "Gdef", "module_hidden": true, "module_public": false}, "AsyncGenerator": {".class": "SymbolTableNode", "cross_ref": "typing.AsyncGenerator", "kind": "Gdef"}, "AsyncIterable": {".class": "SymbolTableNode", "cross_ref": "typing.AsyncIterable", "kind": "Gdef"}, "AsyncIterator": {".class": "SymbolTableNode", "cross_ref": "typing.AsyncIterator", "kind": "Gdef"}, "Awaitable": {".class": "SymbolTableNode", "cross_ref": "typing.Awaitable", "kind": "Gdef"}, "ByteString": {".class": "SymbolTableNode", "cross_ref": "typing.ByteString", "kind": "Gdef"}, "Callable": {".class": "SymbolTableNode", "cross_ref": "typing.Callable", "kind": "Gdef"}, "ChainMap": {".class": "SymbolTableNode", "kind": "Gdef", "node": {".class": "TypeInfo", "_promote": null, "abstract_attributes": [], "bases": [{".class": "Instance", "args": [{".class": "TypeVarType", "fullname": "collections._KT", "id": 1, "name": "_KT", "upper_bound": "builtins.object", "values": [], "variance": 0}, {".class": "TypeVarType", "fullname": "collections._VT", "id": 2, "name": "_VT", "upper_bound": "builtins.object", "values": [], "variance": 0}], "type_ref": "typing.MutableMapping"}], "declared_metaclass": null, "defn": {".class": "ClassDef", "fullname": "collections.ChainMap", "name": "ChainMap", "type_vars": [{".class": "TypeVarDef", "fullname": "collections._KT", "id": 1, "name": "_KT", "upper_bound": "builtins.object", "values": [], "variance": 0}, {".class": "TypeVarDef", "fullname": "collections._VT", "id": 2, "name": "_VT", "upper_bound": "builtins.object", "values": [], "variance": 0}]}, "flags": [], "fullname": "collections.ChainMap", "metaclass_type": "abc.ABCMeta", "metadata": {}, "module_name": "collections", "mro": ["collections.ChainMap", "typing.MutableMapping", "typing.Mapping", "typing.Collection", "typing.Iterable", "typing.Container", "builtins.object"], "names": {".class": "SymbolTable", "__delitem__": {".class": "SymbolTableNode", "kind": "Mdef", "node": {".class": "FuncDef", "arg_kinds": [0, 0], "arg_names": ["self", "v"], "flags": [], "fullname": "collections.ChainMap.__delitem__", "name": "__delitem__", "type": {".class": "CallableType", "arg_kinds": [0, 0], "arg_names": [null, null], "arg_types": [{".class": "Instance", "args": [{".class": "TypeVarType", "fullname": "collections._KT", "id": 1, "name": "_KT", "upper_bound": "builtins.object", "values": [], "variance": 0}, {".class": "TypeVarType", "fullname": "collections._VT", "id": 2, "name": "_VT", "upper_bound": "builtins.object", "values": [], "variance": 0}], "type_ref": "collections.ChainMap"}, {".class": "TypeVarType", "fullname": "collections._KT", "id": 1, "name": "_KT", "upper_bound": "builtins.object", "values": [], "variance": 0}], "bound_args": [], "def_extras": {"first_arg": "self"}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "__delitem__ of ChainMap", "ret_type": {".class": "NoneTyp"}, "variables": []}}}, "__getitem__": {".class": "SymbolTableNode", "kind": "Mdef", "node": {".class": "FuncDef", "arg_kinds": [0, 0], "arg_names": ["self", "k"], "flags": [], "fullname": "collections.ChainMap.__getitem__", "name": "__getitem__", "type": {".class": "CallableType", "arg_kinds": [0, 0], "arg_names": [null, null], "arg_types": [{".class": "Instance", "args": [{".class": "TypeVarType", "fullname": "collections._KT", "id": 1, "name": "_KT", "upper_bound": "builtins.object", "values": [], "variance": 0}, {".class": "TypeVarType", "fullname": "collections._VT", "id": 2, "name": "_VT", "upper_bound": "builtins.object", "values": [], "variance": 0}], "type_ref": "collections.ChainMap"}, {".class": "TypeVarType", "fullname": "collections._KT", "id": 1, "name": "_KT", "upper_bound": "builtins.object", "values": [], "variance": 0}], "bound_args": [], "def_extras": {"first_arg": "self"}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "__getitem__ of ChainMap", "ret_type": {".class": "TypeVarType", "fullname": "collections._VT", "id": 2, "name": "_VT", "upper_bound": "builtins.object", "values": [], "variance": 0}, "variables": []}}}, "__init__": {".class": "SymbolTableNode", "kind": "Mdef", "node": {".class": "FuncDef", "arg_kinds": [0, 2], "arg_names": ["self", "maps"], "flags": [], "fullname": "collections.ChainMap.__init__", "name": "__init__", "type": {".class": "CallableType", "arg_kinds": [0, 2], "arg_names": ["self", "maps"], "arg_types": [{".class": "Instance", "args": [{".class": "TypeVarType", "fullname": "collections._KT", "id": 1, "name": "_KT", "upper_bound": "builtins.object", "values": [], "variance": 0}, {".class": "TypeVarType", "fullname": "collections._VT", "id": 2, "name": "_VT", "upper_bound": "builtins.object", "values": [], "variance": 0}], "type_ref": "collections.ChainMap"}, {".class": "Instance", "args": [{".class": "TypeVarType", "fullname": "collections._KT", "id": 1, "name": "_KT", "upper_bound": "builtins.object", "values": [], "variance": 0}, {".class": "TypeVarType", "fullname": "collections._VT", "id": 2, "name": "_VT", "upper_bound": "builtins.object", "values": [], "variance": 0}], "type_ref": "typing.Mapping"}], "bound_args": [], "def_extras": {"first_arg": "self"}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "__init__ of ChainMap", "ret_type": {".class": "NoneTyp"}, "variables": []}}}, "__iter__": {".class": "SymbolTableNode", "kind": "Mdef", "node": {".class": "FuncDef", "arg_kinds": [0], "arg_names": ["self"], "flags": [], "fullname": "collections.ChainMap.__iter__", "name": "__iter__", "type": {".class": "CallableType", "arg_kinds": [0], "arg_names": [null], "arg_types": [{".class": "Instance", "args": [{".class": "TypeVarType", "fullname": "collections._KT", "id": 1, "name": "_KT", "upper_bound": "builtins.object", "values": [], "variance": 0}, {".class": "TypeVarType", "fullname": "collections._VT", "id": 2, "name": "_VT", "upper_bound": "builtins.object", "values": [], "variance": 0}], "type_ref": "collections.ChainMap"}], "bound_args": [], "def_extras": {"first_arg": "self"}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "__iter__ of ChainMap", "ret_type": {".class": "Instance", "args": [{".class": "TypeVarType", "fullname": "collections._KT", "id": 1, "name": "_KT", "upper_bound": "builtins.object", "values": [], "variance": 0}], "type_ref": "typing.Iterator"}, "variables": []}}}, "__len__": {".class": "SymbolTableNode", "kind": "Mdef", "node": {".class": "FuncDef", "arg_kinds": [0], "arg_names": ["self"], "flags": [], "fullname": "collections.ChainMap.__len__", "name": "__len__", "type": {".class": "CallableType", "arg_kinds": [0], "arg_names": [null], "arg_types": [{".class": "Instance", "args": [{".class": "TypeVarType", "fullname": "collections._KT", "id": 1, "name": "_KT", "upper_bound": "builtins.object", "values": [], "variance": 0}, {".class": "TypeVarType", "fullname": "collections._VT", "id": 2, "name": "_VT", "upper_bound": "builtins.object", "values": [], "variance": 0}], "type_ref": "collections.ChainMap"}], "bound_args": [], "def_extras": {"first_arg": "self"}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "__len__ of ChainMap", "ret_type": "builtins.int", "variables": []}}}, "__setitem__": {".class": "SymbolTableNode", "kind": "Mdef", "node": {".class": "FuncDef", "arg_kinds": [0, 0, 0], "arg_names": ["self", "k", "v"], "flags": [], "fullname": "collections.ChainMap.__setitem__", "name": "__setitem__", "type": {".class": "CallableType", "arg_kinds": [0, 0, 0], "arg_names": [null, null, null], "arg_types": [{".class": "Instance", "args": [{".class": "TypeVarType", "fullname": "collections._KT", "id": 1, "name": "_KT", "upper_bound": "builtins.object", "values": [], "variance": 0}, {".class": "TypeVarType", "fullname": "collections._VT", "id": 2, "name": "_VT", "upper_bound": "builtins.object", "values": [], "variance": 0}], "type_ref": "collections.ChainMap"}, {".class": "TypeVarType", "fullname": "collections._KT", "id": 1, "name": "_KT", "upper_bound": "builtins.object", "values": [], "variance": 0}, {".class": "TypeVarType", "fullname": "collections._VT", "id": 2, "name": "_VT", "upper_bound": "builtins.object", "values": [], "variance": 0}], "bound_args": [], "def_extras": {"first_arg": "self"}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "__setitem__ of ChainMap", "ret_type": {".class": "NoneTyp"}, "variables": []}}}, "maps": {".class": "SymbolTableNode", "kind": "Mdef", "node": {".class": "Decorator", "func": {".class": "FuncDef", "arg_kinds": [0], "arg_names": ["self"], "flags": ["is_property", "is_decorated"], "fullname": "collections.ChainMap.maps", "name": "maps", "type": {".class": "CallableType", "arg_kinds": [0], "arg_names": ["self"], "arg_types": [{".class": "Instance", "args": [{".class": "TypeVarType", "fullname": "collections._KT", "id": 1, "name": "_KT", "upper_bound": "builtins.object", "values": [], "variance": 0}, {".class": "TypeVarType", "fullname": "collections._VT", "id": 2, "name": "_VT", "upper_bound": "builtins.object", "values": [], "variance": 0}], "type_ref": "collections.ChainMap"}], "bound_args": [], "def_extras": {"first_arg": "self"}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "maps of ChainMap", "ret_type": {".class": "Instance", "args": [{".class": "Instance", "args": [{".class": "TypeVarType", "fullname": "collections._KT", "id": 1, "name": "_KT", "upper_bound": "builtins.object", "values": [], "variance": 0}, {".class": "TypeVarType", "fullname": "collections._VT", "id": 2, "name": "_VT", "upper_bound": "builtins.object", "values": [], "variance": 0}], "type_ref": "typing.Mapping"}], "type_ref": "builtins.list"}, "variables": []}}, "is_overload": false, "var": {".class": "Var", "flags": ["is_initialized_in_class", "is_property"], "fullname": null, "name": "maps", "type": {".class": "CallableType", "arg_kinds": [0], "arg_names": ["self"], "arg_types": [{".class": "Instance", "args": [{".class": "TypeVarType", "fullname": "collections._KT", "id": 1, "name": "_KT", "upper_bound": "builtins.object", "values": [], "variance": 0}, {".class": "TypeVarType", "fullname": "collections._VT", "id": 2, "name": "_VT", "upper_bound": "builtins.object", "values": [], "variance": 0}], "type_ref": "collections.ChainMap"}], "bound_args": [], "def_extras": {"first_arg": "self"}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "maps of ChainMap", "ret_type": {".class": "Instance", "args": [{".class": "Instance", "args": [{".class": "TypeVarType", "fullname": "collections._KT", "id": 1, "name": "_KT", "upper_bound": "builtins.object", "values": [], "variance": 0}, {".class": "TypeVarType", "fullname": "collections._VT", "id": 2, "name": "_VT", "upper_bound": "builtins.object", "values": [], "variance": 0}], "type_ref": "typing.Mapping"}], "type_ref": "builtins.list"}, "variables": []}}}}, "new_child": {".class": "SymbolTableNode", "kind": "Mdef", "node": {".class": "FuncDef", "arg_kinds": [0, 1], "arg_names": ["self", "m"], "flags": [], "fullname": "collections.ChainMap.new_child", "name": "new_child", "type": {".class": "CallableType", "arg_kinds": [0, 1], "arg_names": ["self", "m"], "arg_types": [{".class": "Instance", "args": [{".class": "TypeVarType", "fullname": "collections._KT", "id": 1, "name": "_KT", "upper_bound": "builtins.object", "values": [], "variance": 0}, {".class": "TypeVarType", "fullname": "collections._VT", "id": 2, "name": "_VT", "upper_bound": "builtins.object", "values": [], "variance": 0}], "type_ref": "collections.ChainMap"}, {".class": "Instance", "args": [{".class": "TypeVarType", "fullname": "collections._KT", "id": 1, "name": "_KT", "upper_bound": "builtins.object", "values": [], "variance": 0}, {".class": "TypeVarType", "fullname": "collections._VT", "id": 2, "name": "_VT", "upper_bound": "builtins.object", "values": [], "variance": 0}], "type_ref": "typing.Mapping"}], "bound_args": [], "def_extras": {"first_arg": "self"}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "new_child of ChainMap", "ret_type": {".class": "Instance", "args": [{".class": "TypeVarType", "fullname": "collections._KT", "id": 1, "name": "_KT", "upper_bound": "builtins.object", "values": [], "variance": 0}, {".class": "TypeVarType", "fullname": "collections._VT", "id": 2, "name": "_VT", "upper_bound": "builtins.object", "values": [], "variance": 0}], "type_ref": "collections.ChainMap"}, "variables": []}}}, "parents": {".class": "SymbolTableNode", "kind": "Mdef", "node": {".class": "Decorator", "func": {".class": "FuncDef", "arg_kinds": [0], "arg_names": ["self"], "flags": ["is_property", "is_decorated"], "fullname": "collections.ChainMap.parents", "name": "parents", "type": {".class": "CallableType", "arg_kinds": [0], "arg_names": ["self"], "arg_types": [{".class": "Instance", "args": [{".class": "TypeVarType", "fullname": "collections._KT", "id": 1, "name": "_KT", "upper_bound": "builtins.object", "values": [], "variance": 0}, {".class": "TypeVarType", "fullname": "collections._VT", "id": 2, "name": "_VT", "upper_bound": "builtins.object", "values": [], "variance": 0}], "type_ref": "collections.ChainMap"}], "bound_args": [], "def_extras": {"first_arg": "self"}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "parents of ChainMap", "ret_type": {".class": "Instance", "args": [{".class": "TypeVarType", "fullname": "collections._KT", "id": 1, "name": "_KT", "upper_bound": "builtins.object", "values": [], "variance": 0}, {".class": "TypeVarType", "fullname": "collections._VT", "id": 2, "name": "_VT", "upper_bound": "builtins.object", "values": [], "variance": 0}], "type_ref": "collections.ChainMap"}, "variables": []}}, "is_overload": false, "var": {".class": "Var", "flags": ["is_initialized_in_class", "is_property"], "fullname": null, "name": "parents", "type": {".class": "CallableType", "arg_kinds": [0], "arg_names": ["self"], "arg_types": [{".class": "Instance", "args": [{".class": "TypeVarType", "fullname": "collections._KT", "id": 1, "name": "_KT", "upper_bound": "builtins.object", "values": [], "variance": 0}, {".class": "TypeVarType", "fullname": "collections._VT", "id": 2, "name": "_VT", "upper_bound": "builtins.object", "values": [], "variance": 0}], "type_ref": "collections.ChainMap"}], "bound_args": [], "def_extras": {"first_arg": "self"}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "parents of ChainMap", "ret_type": {".class": "Instance", "args": [{".class": "TypeVarType", "fullname": "collections._KT", "id": 1, "name": "_KT", "upper_bound": "builtins.object", "values": [], "variance": 0}, {".class": "TypeVarType", "fullname": "collections._VT", "id": 2, "name": "_VT", "upper_bound": "builtins.object", "values": [], "variance": 0}], "type_ref": "collections.ChainMap"}, "variables": []}}}}}, "tuple_type": null, "type_vars": ["_KT", "_VT"], "typeddict_type": null}}, "Collection": {".class": "SymbolTableNode", "cross_ref": "typing.Collection", "kind": "Gdef"}, "Container": {".class": "SymbolTableNode", "cross_ref": "typing.Container", "kind": "Gdef"}, "Coroutine": {".class": "SymbolTableNode", "cross_ref": "typing.Coroutine", "kind": "Gdef"}, "Counter": {".class": "SymbolTableNode", "kind": "Gdef", "node": {".class": "TypeInfo", "_promote": null, "abstract_attributes": [], "bases": [{".class": "Instance", "args": [{".class": "TypeVarType", "fullname": "collections._T", "id": 1, "name": "_T", "upper_bound": "builtins.object", "values": [], "variance": 0}, "builtins.int"], "type_ref": "builtins.dict"}], "declared_metaclass": null, "defn": {".class": "ClassDef", "fullname": "collections.Counter", "name": "Counter", "type_vars": [{".class": "TypeVarDef", "fullname": "collections._T", "id": 1, "name": "_T", "upper_bound": "builtins.object", "values": [], "variance": 0}]}, "flags": [], "fullname": "collections.Counter", "metaclass_type": null, "metadata": {}, "module_name": "collections", "mro": ["collections.Counter", "builtins.dict", "typing.MutableMapping", "typing.Mapping", "typing.Collection", "typing.Iterable", "typing.Container", "builtins.object"], "names": {".class": "SymbolTable", "__add__": {".class": "SymbolTableNode", "kind": "Mdef", "node": {".class": "FuncDef", "arg_kinds": [0, 0], "arg_names": ["self", "other"], "flags": [], "fullname": "collections.Counter.__add__", "name": "__add__", "type": {".class": "CallableType", "arg_kinds": [0, 0], "arg_names": [null, null], "arg_types": [{".class": "Instance", "args": [{".class": "TypeVarType", "fullname": "collections._T", "id": 1, "name": "_T", "upper_bound": "builtins.object", "values": [], "variance": 0}], "type_ref": "collections.Counter"}, {".class": "Instance", "args": [{".class": "TypeVarType", "fullname": "collections._T", "id": 1, "name": "_T", "upper_bound": "builtins.object", "values": [], "variance": 0}], "type_ref": "collections.Counter"}], "bound_args": [], "def_extras": {"first_arg": "self"}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "__add__ of Counter", "ret_type": {".class": "Instance", "args": [{".class": "TypeVarType", "fullname": "collections._T", "id": 1, "name": "_T", "upper_bound": "builtins.object", "values": [], "variance": 0}], "type_ref": "collections.Counter"}, "variables": []}}}, "__and__": {".class": "SymbolTableNode", "kind": "Mdef", "node": {".class": "FuncDef", "arg_kinds": [0, 0], "arg_names": ["self", "other"], "flags": [], "fullname": "collections.Counter.__and__", "name": "__and__", "type": {".class": "CallableType", "arg_kinds": [0, 0], "arg_names": [null, null], "arg_types": [{".class": "Instance", "args": [{".class": "TypeVarType", "fullname": "collections._T", "id": 1, "name": "_T", "upper_bound": "builtins.object", "values": [], "variance": 0}], "type_ref": "collections.Counter"}, {".class": "Instance", "args": [{".class": "TypeVarType", "fullname": "collections._T", "id": 1, "name": "_T", "upper_bound": "builtins.object", "values": [], "variance": 0}], "type_ref": "collections.Counter"}], "bound_args": [], "def_extras": {"first_arg": "self"}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "__and__ of Counter", "ret_type": {".class": "Instance", "args": [{".class": "TypeVarType", "fullname": "collections._T", "id": 1, "name": "_T", "upper_bound": "builtins.object", "values": [], "variance": 0}], "type_ref": "collections.Counter"}, "variables": []}}}, "__iadd__": {".class": "SymbolTableNode", "kind": "Mdef", "node": {".class": "FuncDef", "arg_kinds": [0, 0], "arg_names": ["self", "other"], "flags": [], "fullname": "collections.Counter.__iadd__", "name": "__iadd__", "type": {".class": "CallableType", "arg_kinds": [0, 0], "arg_names": [null, null], "arg_types": [{".class": "Instance", "args": [{".class": "TypeVarType", "fullname": "collections._T", "id": 1, "name": "_T", "upper_bound": "builtins.object", "values": [], "variance": 0}], "type_ref": "collections.Counter"}, {".class": "Instance", "args": [{".class": "TypeVarType", "fullname": "collections._T", "id": 1, "name": "_T", "upper_bound": "builtins.object", "values": [], "variance": 0}], "type_ref": "collections.Counter"}], "bound_args": [], "def_extras": {"first_arg": "self"}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "__iadd__ of Counter", "ret_type": {".class": "Instance", "args": [{".class": "TypeVarType", "fullname": "collections._T", "id": 1, "name": "_T", "upper_bound": "builtins.object", "values": [], "variance": 0}], "type_ref": "collections.Counter"}, "variables": []}}}, "__iand__": {".class": "SymbolTableNode", "kind": "Mdef", "node": {".class": "FuncDef", "arg_kinds": [0, 0], "arg_names": ["self", "other"], "flags": [], "fullname": "collections.Counter.__iand__", "name": "__iand__", "type": {".class": "CallableType", "arg_kinds": [0, 0], "arg_names": [null, null], "arg_types": [{".class": "Instance", "args": [{".class": "TypeVarType", "fullname": "collections._T", "id": 1, "name": "_T", "upper_bound": "builtins.object", "values": [], "variance": 0}], "type_ref": "collections.Counter"}, {".class": "Instance", "args": [{".class": "TypeVarType", "fullname": "collections._T", "id": 1, "name": "_T", "upper_bound": "builtins.object", "values": [], "variance": 0}], "type_ref": "collections.Counter"}], "bound_args": [], "def_extras": {"first_arg": "self"}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "__iand__ of Counter", "ret_type": {".class": "Instance", "args": [{".class": "TypeVarType", "fullname": "collections._T", "id": 1, "name": "_T", "upper_bound": "builtins.object", "values": [], "variance": 0}], "type_ref": "collections.Counter"}, "variables": []}}}, "__init__": {".class": "SymbolTableNode", "kind": "Mdef", "node": {".class": "OverloadedFuncDef", "flags": [], "fullname": "collections.Counter.__init__", "impl": null, "items": [{".class": "Decorator", "func": {".class": "FuncDef", "arg_kinds": [0, 4], "arg_names": ["self", "kwargs"], "flags": ["is_overload", "is_decorated"], "fullname": "collections.Counter.__init__", "name": "__init__", "type": {".class": "CallableType", "arg_kinds": [0, 4], "arg_names": ["self", "kwargs"], "arg_types": [{".class": "Instance", "args": [{".class": "TypeVarType", "fullname": "collections._T", "id": 1, "name": "_T", "upper_bound": "builtins.object", "values": [], "variance": 0}], "type_ref": "collections.Counter"}, "builtins.int"], "bound_args": [], "def_extras": {"first_arg": "self"}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "__init__ of Counter", "ret_type": {".class": "NoneTyp"}, "variables": []}}, "is_overload": true, "var": {".class": "Var", "flags": [], "fullname": null, "name": "__init__", "type": null}}, {".class": "Decorator", "func": {".class": "FuncDef", "arg_kinds": [0, 0], "arg_names": ["self", "mapping"], "flags": ["is_overload", "is_decorated"], "fullname": "collections.Counter.__init__", "name": "__init__", "type": {".class": "CallableType", "arg_kinds": [0, 0], "arg_names": ["self", "mapping"], "arg_types": [{".class": "Instance", "args": [{".class": "TypeVarType", "fullname": "collections._T", "id": 1, "name": "_T", "upper_bound": "builtins.object", "values": [], "variance": 0}], "type_ref": "collections.Counter"}, {".class": "Instance", "args": [{".class": "TypeVarType", "fullname": "collections._T", "id": 1, "name": "_T", "upper_bound": "builtins.object", "values": [], "variance": 0}, "builtins.int"], "type_ref": "typing.Mapping"}], "bound_args": [], "def_extras": {"first_arg": "self"}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "__init__ of Counter", "ret_type": {".class": "NoneTyp"}, "variables": []}}, "is_overload": true, "var": {".class": "Var", "flags": [], "fullname": null, "name": "__init__", "type": null}}, {".class": "Decorator", "func": {".class": "FuncDef", "arg_kinds": [0, 0], "arg_names": ["self", "iterable"], "flags": ["is_overload", "is_decorated"], "fullname": "collections.Counter.__init__", "name": "__init__", "type": {".class": "CallableType", "arg_kinds": [0, 0], "arg_names": ["self", "iterable"], "arg_types": [{".class": "Instance", "args": [{".class": "TypeVarType", "fullname": "collections._T", "id": 1, "name": "_T", "upper_bound": "builtins.object", "values": [], "variance": 0}], "type_ref": "collections.Counter"}, {".class": "Instance", "args": [{".class": "TypeVarType", "fullname": "collections._T", "id": 1, "name": "_T", "upper_bound": "builtins.object", "values": [], "variance": 0}], "type_ref": "typing.Iterable"}], "bound_args": [], "def_extras": {"first_arg": "self"}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "__init__ of Counter", "ret_type": {".class": "NoneTyp"}, "variables": []}}, "is_overload": true, "var": {".class": "Var", "flags": [], "fullname": null, "name": "__init__", "type": null}}], "type": {".class": "Overloaded", "items": [{".class": "CallableType", "arg_kinds": [0, 4], "arg_names": ["self", "kwargs"], "arg_types": [{".class": "Instance", "args": [{".class": "TypeVarType", "fullname": "collections._T", "id": 1, "name": "_T", "upper_bound": "builtins.object", "values": [], "variance": 0}], "type_ref": "collections.Counter"}, "builtins.int"], "bound_args": [], "def_extras": {"first_arg": "self"}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "__init__ of Counter", "ret_type": {".class": "NoneTyp"}, "variables": []}, {".class": "CallableType", "arg_kinds": [0, 0], "arg_names": ["self", "mapping"], "arg_types": [{".class": "Instance", "args": [{".class": "TypeVarType", "fullname": "collections._T", "id": 1, "name": "_T", "upper_bound": "builtins.object", "values": [], "variance": 0}], "type_ref": "collections.Counter"}, {".class": "Instance", "args": [{".class": "TypeVarType", "fullname": "collections._T", "id": 1, "name": "_T", "upper_bound": "builtins.object", "values": [], "variance": 0}, "builtins.int"], "type_ref": "typing.Mapping"}], "bound_args": [], "def_extras": {"first_arg": "self"}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "__init__ of Counter", "ret_type": {".class": "NoneTyp"}, "variables": []}, {".class": "CallableType", "arg_kinds": [0, 0], "arg_names": ["self", "iterable"], "arg_types": [{".class": "Instance", "args": [{".class": "TypeVarType", "fullname": "collections._T", "id": 1, "name": "_T", "upper_bound": "builtins.object", "values": [], "variance": 0}], "type_ref": "collections.Counter"}, {".class": "Instance", "args": [{".class": "TypeVarType", "fullname": "collections._T", "id": 1, "name": "_T", "upper_bound": "builtins.object", "values": [], "variance": 0}], "type_ref": "typing.Iterable"}], "bound_args": [], "def_extras": {"first_arg": "self"}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "__init__ of Counter", "ret_type": {".class": "NoneTyp"}, "variables": []}]}}}, "__ior__": {".class": "SymbolTableNode", "kind": "Mdef", "node": {".class": "FuncDef", "arg_kinds": [0, 0], "arg_names": ["self", "other"], "flags": [], "fullname": "collections.Counter.__ior__", "name": "__ior__", "type": {".class": "CallableType", "arg_kinds": [0, 0], "arg_names": [null, null], "arg_types": [{".class": "Instance", "args": [{".class": "TypeVarType", "fullname": "collections._T", "id": 1, "name": "_T", "upper_bound": "builtins.object", "values": [], "variance": 0}], "type_ref": "collections.Counter"}, {".class": "Instance", "args": [{".class": "TypeVarType", "fullname": "collections._T", "id": 1, "name": "_T", "upper_bound": "builtins.object", "values": [], "variance": 0}], "type_ref": "collections.Counter"}], "bound_args": [], "def_extras": {"first_arg": "self"}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "__ior__ of Counter", "ret_type": {".class": "Instance", "args": [{".class": "TypeVarType", "fullname": "collections._T", "id": 1, "name": "_T", "upper_bound": "builtins.object", "values": [], "variance": 0}], "type_ref": "collections.Counter"}, "variables": []}}}, "__isub__": {".class": "SymbolTableNode", "kind": "Mdef", "node": {".class": "FuncDef", "arg_kinds": [0, 0], "arg_names": ["self", "other"], "flags": [], "fullname": "collections.Counter.__isub__", "name": "__isub__", "type": {".class": "CallableType", "arg_kinds": [0, 0], "arg_names": [null, null], "arg_types": [{".class": "Instance", "args": [{".class": "TypeVarType", "fullname": "collections._T", "id": 1, "name": "_T", "upper_bound": "builtins.object", "values": [], "variance": 0}], "type_ref": "collections.Counter"}, {".class": "Instance", "args": [{".class": "TypeVarType", "fullname": "collections._T", "id": 1, "name": "_T", "upper_bound": "builtins.object", "values": [], "variance": 0}], "type_ref": "collections.Counter"}], "bound_args": [], "def_extras": {"first_arg": "self"}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "__isub__ of Counter", "ret_type": {".class": "Instance", "args": [{".class": "TypeVarType", "fullname": "collections._T", "id": 1, "name": "_T", "upper_bound": "builtins.object", "values": [], "variance": 0}], "type_ref": "collections.Counter"}, "variables": []}}}, "__neg__": {".class": "SymbolTableNode", "kind": "Mdef", "node": {".class": "FuncDef", "arg_kinds": [0], "arg_names": ["self"], "flags": [], "fullname": "collections.Counter.__neg__", "name": "__neg__", "type": {".class": "CallableType", "arg_kinds": [0], "arg_names": [null], "arg_types": [{".class": "Instance", "args": [{".class": "TypeVarType", "fullname": "collections._T", "id": 1, "name": "_T", "upper_bound": "builtins.object", "values": [], "variance": 0}], "type_ref": "collections.Counter"}], "bound_args": [], "def_extras": {"first_arg": "self"}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "__neg__ of Counter", "ret_type": {".class": "Instance", "args": [{".class": "TypeVarType", "fullname": "collections._T", "id": 1, "name": "_T", "upper_bound": "builtins.object", "values": [], "variance": 0}], "type_ref": "collections.Counter"}, "variables": []}}}, "__or__": {".class": "SymbolTableNode", "kind": "Mdef", "node": {".class": "FuncDef", "arg_kinds": [0, 0], "arg_names": ["self", "other"], "flags": [], "fullname": "collections.Counter.__or__", "name": "__or__", "type": {".class": "CallableType", "arg_kinds": [0, 0], "arg_names": [null, null], "arg_types": [{".class": "Instance", "args": [{".class": "TypeVarType", "fullname": "collections._T", "id": 1, "name": "_T", "upper_bound": "builtins.object", "values": [], "variance": 0}], "type_ref": "collections.Counter"}, {".class": "Instance", "args": [{".class": "TypeVarType", "fullname": "collections._T", "id": 1, "name": "_T", "upper_bound": "builtins.object", "values": [], "variance": 0}], "type_ref": "collections.Counter"}], "bound_args": [], "def_extras": {"first_arg": "self"}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "__or__ of Counter", "ret_type": {".class": "Instance", "args": [{".class": "TypeVarType", "fullname": "collections._T", "id": 1, "name": "_T", "upper_bound": "builtins.object", "values": [], "variance": 0}], "type_ref": "collections.Counter"}, "variables": []}}}, "__pos__": {".class": "SymbolTableNode", "kind": "Mdef", "node": {".class": "FuncDef", "arg_kinds": [0], "arg_names": ["self"], "flags": [], "fullname": "collections.Counter.__pos__", "name": "__pos__", "type": {".class": "CallableType", "arg_kinds": [0], "arg_names": [null], "arg_types": [{".class": "Instance", "args": [{".class": "TypeVarType", "fullname": "collections._T", "id": 1, "name": "_T", "upper_bound": "builtins.object", "values": [], "variance": 0}], "type_ref": "collections.Counter"}], "bound_args": [], "def_extras": {"first_arg": "self"}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "__pos__ of Counter", "ret_type": {".class": "Instance", "args": [{".class": "TypeVarType", "fullname": "collections._T", "id": 1, "name": "_T", "upper_bound": "builtins.object", "values": [], "variance": 0}], "type_ref": "collections.Counter"}, "variables": []}}}, "__sub__": {".class": "SymbolTableNode", "kind": "Mdef", "node": {".class": "FuncDef", "arg_kinds": [0, 0], "arg_names": ["self", "other"], "flags": [], "fullname": "collections.Counter.__sub__", "name": "__sub__", "type": {".class": "CallableType", "arg_kinds": [0, 0], "arg_names": [null, null], "arg_types": [{".class": "Instance", "args": [{".class": "TypeVarType", "fullname": "collections._T", "id": 1, "name": "_T", "upper_bound": "builtins.object", "values": [], "variance": 0}], "type_ref": "collections.Counter"}, {".class": "Instance", "args": [{".class": "TypeVarType", "fullname": "collections._T", "id": 1, "name": "_T", "upper_bound": "builtins.object", "values": [], "variance": 0}], "type_ref": "collections.Counter"}], "bound_args": [], "def_extras": {"first_arg": "self"}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "__sub__ of Counter", "ret_type": {".class": "Instance", "args": [{".class": "TypeVarType", "fullname": "collections._T", "id": 1, "name": "_T", "upper_bound": "builtins.object", "values": [], "variance": 0}], "type_ref": "collections.Counter"}, "variables": []}}}, "copy": {".class": "SymbolTableNode", "kind": "Mdef", "node": {".class": "FuncDef", "arg_kinds": [0], "arg_names": ["self"], "flags": [], "fullname": "collections.Counter.copy", "name": "copy", "type": {".class": "CallableType", "arg_kinds": [0], "arg_names": ["self"], "arg_types": [{".class": "TypeVarType", "fullname": "collections._CounterT", "id": -1, "name": "_CounterT", "upper_bound": {".class": "Instance", "args": [{".class": "AnyType", "missing_import_name": null, "source_any": null, "type_of_any": 4}], "type_ref": "collections.Counter"}, "values": [], "variance": 0}], "bound_args": [], "def_extras": {"first_arg": "self"}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "copy of Counter", "ret_type": {".class": "TypeVarType", "fullname": "collections._CounterT", "id": -1, "name": "_CounterT", "upper_bound": {".class": "Instance", "args": [{".class": "AnyType", "missing_import_name": null, "source_any": null, "type_of_any": 4}], "type_ref": "collections.Counter"}, "values": [], "variance": 0}, "variables": [{".class": "TypeVarDef", "fullname": "collections._CounterT", "id": -1, "name": "_CounterT", "upper_bound": {".class": "Instance", "args": [{".class": "AnyType", "missing_import_name": null, "source_any": null, "type_of_any": 4}], "type_ref": "collections.Counter"}, "values": [], "variance": 0}]}}}, "elements": {".class": "SymbolTableNode", "kind": "Mdef", "node": {".class": "FuncDef", "arg_kinds": [0], "arg_names": ["self"], "flags": [], "fullname": "collections.Counter.elements", "name": "elements", "type": {".class": "CallableType", "arg_kinds": [0], "arg_names": ["self"], "arg_types": [{".class": "Instance", "args": [{".class": "TypeVarType", "fullname": "collections._T", "id": 1, "name": "_T", "upper_bound": "builtins.object", "values": [], "variance": 0}], "type_ref": "collections.Counter"}], "bound_args": [], "def_extras": {"first_arg": "self"}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "elements of Counter", "ret_type": {".class": "Instance", "args": [{".class": "TypeVarType", "fullname": "collections._T", "id": 1, "name": "_T", "upper_bound": "builtins.object", "values": [], "variance": 0}], "type_ref": "typing.Iterator"}, "variables": []}}}, "most_common": {".class": "SymbolTableNode", "kind": "Mdef", "node": {".class": "FuncDef", "arg_kinds": [0, 1], "arg_names": ["self", "n"], "flags": [], "fullname": "collections.Counter.most_common", "name": "most_common", "type": {".class": "CallableType", "arg_kinds": [0, 1], "arg_names": ["self", "n"], "arg_types": [{".class": "Instance", "args": [{".class": "TypeVarType", "fullname": "collections._T", "id": 1, "name": "_T", "upper_bound": "builtins.object", "values": [], "variance": 0}], "type_ref": "collections.Counter"}, {".class": "UnionType", "items": ["builtins.int", {".class": "NoneTyp"}]}], "bound_args": [], "def_extras": {"first_arg": "self"}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "most_common of Counter", "ret_type": {".class": "Instance", "args": [{".class": "TupleType", "fallback": {".class": "Instance", "args": [{".class": "AnyType", "missing_import_name": null, "source_any": null, "type_of_any": 6}], "type_ref": "builtins.tuple"}, "implicit": false, "items": [{".class": "TypeVarType", "fullname": "collections._T", "id": 1, "name": "_T", "upper_bound": "builtins.object", "values": [], "variance": 0}, "builtins.int"]}], "type_ref": "builtins.list"}, "variables": []}}}, "subtract": {".class": "SymbolTableNode", "kind": "Mdef", "node": {".class": "OverloadedFuncDef", "flags": [], "fullname": "collections.Counter.subtract", "impl": null, "items": [{".class": "Decorator", "func": {".class": "FuncDef", "arg_kinds": [0, 0], "arg_names": ["self", "__mapping"], "flags": ["is_overload", "is_decorated"], "fullname": "collections.Counter.subtract", "name": "subtract", "type": {".class": "CallableType", "arg_kinds": [0, 0], "arg_names": ["self", null], "arg_types": [{".class": "Instance", "args": [{".class": "TypeVarType", "fullname": "collections._T", "id": 1, "name": "_T", "upper_bound": "builtins.object", "values": [], "variance": 0}], "type_ref": "collections.Counter"}, {".class": "Instance", "args": [{".class": "TypeVarType", "fullname": "collections._T", "id": 1, "name": "_T", "upper_bound": "builtins.object", "values": [], "variance": 0}, "builtins.int"], "type_ref": "typing.Mapping"}], "bound_args": [], "def_extras": {"first_arg": "self"}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "subtract of Counter", "ret_type": {".class": "NoneTyp"}, "variables": []}}, "is_overload": true, "var": {".class": "Var", "flags": [], "fullname": null, "name": "subtract", "type": null}}, {".class": "Decorator", "func": {".class": "FuncDef", "arg_kinds": [0, 0], "arg_names": ["self", "iterable"], "flags": ["is_overload", "is_decorated"], "fullname": "collections.Counter.subtract", "name": "subtract", "type": {".class": "CallableType", "arg_kinds": [0, 0], "arg_names": ["self", "iterable"], "arg_types": [{".class": "Instance", "args": [{".class": "TypeVarType", "fullname": "collections._T", "id": 1, "name": "_T", "upper_bound": "builtins.object", "values": [], "variance": 0}], "type_ref": "collections.Counter"}, {".class": "Instance", "args": [{".class": "TypeVarType", "fullname": "collections._T", "id": 1, "name": "_T", "upper_bound": "builtins.object", "values": [], "variance": 0}], "type_ref": "typing.Iterable"}], "bound_args": [], "def_extras": {"first_arg": "self"}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "subtract of Counter", "ret_type": {".class": "NoneTyp"}, "variables": []}}, "is_overload": true, "var": {".class": "Var", "flags": [], "fullname": null, "name": "subtract", "type": null}}], "type": {".class": "Overloaded", "items": [{".class": "CallableType", "arg_kinds": [0, 0], "arg_names": ["self", null], "arg_types": [{".class": "Instance", "args": [{".class": "TypeVarType", "fullname": "collections._T", "id": 1, "name": "_T", "upper_bound": "builtins.object", "values": [], "variance": 0}], "type_ref": "collections.Counter"}, {".class": "Instance", "args": [{".class": "TypeVarType", "fullname": "collections._T", "id": 1, "name": "_T", "upper_bound": "builtins.object", "values": [], "variance": 0}, "builtins.int"], "type_ref": "typing.Mapping"}], "bound_args": [], "def_extras": {"first_arg": "self"}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "subtract of Counter", "ret_type": {".class": "NoneTyp"}, "variables": []}, {".class": "CallableType", "arg_kinds": [0, 0], "arg_names": ["self", "iterable"], "arg_types": [{".class": "Instance", "args": [{".class": "TypeVarType", "fullname": "collections._T", "id": 1, "name": "_T", "upper_bound": "builtins.object", "values": [], "variance": 0}], "type_ref": "collections.Counter"}, {".class": "Instance", "args": [{".class": "TypeVarType", "fullname": "collections._T", "id": 1, "name": "_T", "upper_bound": "builtins.object", "values": [], "variance": 0}], "type_ref": "typing.Iterable"}], "bound_args": [], "def_extras": {"first_arg": "self"}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "subtract of Counter", "ret_type": {".class": "NoneTyp"}, "variables": []}]}}}, "update": {".class": "SymbolTableNode", "kind": "Mdef", "node": {".class": "OverloadedFuncDef", "flags": [], "fullname": "collections.Counter.update", "impl": null, "items": [{".class": "Decorator", "func": {".class": "FuncDef", "arg_kinds": [0, 0, 4], "arg_names": ["self", "__m", "kwargs"], "flags": ["is_overload", "is_decorated"], "fullname": "collections.Counter.update", "name": "update", "type": {".class": "CallableType", "arg_kinds": [0, 0, 4], "arg_names": ["self", null, "kwargs"], "arg_types": [{".class": "Instance", "args": [{".class": "TypeVarType", "fullname": "collections._T", "id": 1, "name": "_T", "upper_bound": "builtins.object", "values": [], "variance": 0}], "type_ref": "collections.Counter"}, {".class": "Instance", "args": [{".class": "TypeVarType", "fullname": "collections._T", "id": 1, "name": "_T", "upper_bound": "builtins.object", "values": [], "variance": 0}, "builtins.int"], "type_ref": "typing.Mapping"}, "builtins.int"], "bound_args": [], "def_extras": {"first_arg": "self"}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "update of Counter", "ret_type": {".class": "NoneTyp"}, "variables": []}}, "is_overload": true, "var": {".class": "Var", "flags": [], "fullname": null, "name": "update", "type": null}}, {".class": "Decorator", "func": {".class": "FuncDef", "arg_kinds": [0, 0, 4], "arg_names": ["self", "__m", "kwargs"], "flags": ["is_overload", "is_decorated"], "fullname": "collections.Counter.update", "name": "update", "type": {".class": "CallableType", "arg_kinds": [0, 0, 4], "arg_names": ["self", null, "kwargs"], "arg_types": [{".class": "Instance", "args": [{".class": "TypeVarType", "fullname": "collections._T", "id": 1, "name": "_T", "upper_bound": "builtins.object", "values": [], "variance": 0}], "type_ref": "collections.Counter"}, {".class": "UnionType", "items": [{".class": "Instance", "args": [{".class": "TypeVarType", "fullname": "collections._T", "id": 1, "name": "_T", "upper_bound": "builtins.object", "values": [], "variance": 0}], "type_ref": "typing.Iterable"}, {".class": "Instance", "args": [{".class": "TupleType", "fallback": {".class": "Instance", "args": [{".class": "AnyType", "missing_import_name": null, "source_any": null, "type_of_any": 6}], "type_ref": "builtins.tuple"}, "implicit": false, "items": [{".class": "TypeVarType", "fullname": "collections._T", "id": 1, "name": "_T", "upper_bound": "builtins.object", "values": [], "variance": 0}, "builtins.int"]}], "type_ref": "typing.Iterable"}]}, "builtins.int"], "bound_args": [], "def_extras": {"first_arg": "self"}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "update of Counter", "ret_type": {".class": "NoneTyp"}, "variables": []}}, "is_overload": true, "var": {".class": "Var", "flags": [], "fullname": null, "name": "update", "type": null}}, {".class": "Decorator", "func": {".class": "FuncDef", "arg_kinds": [0, 4], "arg_names": ["self", "kwargs"], "flags": ["is_overload", "is_decorated"], "fullname": "collections.Counter.update", "name": "update", "type": {".class": "CallableType", "arg_kinds": [0, 4], "arg_names": ["self", "kwargs"], "arg_types": [{".class": "Instance", "args": [{".class": "TypeVarType", "fullname": "collections._T", "id": 1, "name": "_T", "upper_bound": "builtins.object", "values": [], "variance": 0}], "type_ref": "collections.Counter"}, "builtins.int"], "bound_args": [], "def_extras": {"first_arg": "self"}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "update of Counter", "ret_type": {".class": "NoneTyp"}, "variables": []}}, "is_overload": true, "var": {".class": "Var", "flags": [], "fullname": null, "name": "update", "type": null}}], "type": {".class": "Overloaded", "items": [{".class": "CallableType", "arg_kinds": [0, 0, 4], "arg_names": ["self", null, "kwargs"], "arg_types": [{".class": "Instance", "args": [{".class": "TypeVarType", "fullname": "collections._T", "id": 1, "name": "_T", "upper_bound": "builtins.object", "values": [], "variance": 0}], "type_ref": "collections.Counter"}, {".class": "Instance", "args": [{".class": "TypeVarType", "fullname": "collections._T", "id": 1, "name": "_T", "upper_bound": "builtins.object", "values": [], "variance": 0}, "builtins.int"], "type_ref": "typing.Mapping"}, "builtins.int"], "bound_args": [], "def_extras": {"first_arg": "self"}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "update of Counter", "ret_type": {".class": "NoneTyp"}, "variables": []}, {".class": "CallableType", "arg_kinds": [0, 0, 4], "arg_names": ["self", null, "kwargs"], "arg_types": [{".class": "Instance", "args": [{".class": "TypeVarType", "fullname": "collections._T", "id": 1, "name": "_T", "upper_bound": "builtins.object", "values": [], "variance": 0}], "type_ref": "collections.Counter"}, {".class": "UnionType", "items": [{".class": "Instance", "args": [{".class": "TypeVarType", "fullname": "collections._T", "id": 1, "name": "_T", "upper_bound": "builtins.object", "values": [], "variance": 0}], "type_ref": "typing.Iterable"}, {".class": "Instance", "args": [{".class": "TupleType", "fallback": {".class": "Instance", "args": [{".class": "AnyType", "missing_import_name": null, "source_any": null, "type_of_any": 6}], "type_ref": "builtins.tuple"}, "implicit": false, "items": [{".class": "TypeVarType", "fullname": "collections._T", "id": 1, "name": "_T", "upper_bound": "builtins.object", "values": [], "variance": 0}, "builtins.int"]}], "type_ref": "typing.Iterable"}]}, "builtins.int"], "bound_args": [], "def_extras": {"first_arg": "self"}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "update of Counter", "ret_type": {".class": "NoneTyp"}, "variables": []}, {".class": "CallableType", "arg_kinds": [0, 4], "arg_names": ["self", "kwargs"], "arg_types": [{".class": "Instance", "args": [{".class": "TypeVarType", "fullname": "collections._T", "id": 1, "name": "_T", "upper_bound": "builtins.object", "values": [], "variance": 0}], "type_ref": "collections.Counter"}, "builtins.int"], "bound_args": [], "def_extras": {"first_arg": "self"}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "update of Counter", "ret_type": {".class": "NoneTyp"}, "variables": []}]}}}}, "tuple_type": null, "type_vars": ["_T"], "typeddict_type": null}}, "Dict": {".class": "SymbolTableNode", "cross_ref": "typing.Dict", "kind": "Gdef", "module_hidden": true, "module_public": false}, "Generator": {".class": "SymbolTableNode", "cross_ref": "typing.Generator", "kind": "Gdef"}, "Generic": {".class": "SymbolTableNode", "cross_ref": "typing.Generic", "kind": "Gdef", "module_hidden": true, "module_public": false}, "Hashable": {".class": "SymbolTableNode", "cross_ref": "typing.Hashable", "kind": "Gdef"}, "ItemsView": {".class": "SymbolTableNode", "cross_ref": "typing.ItemsView", "kind": "Gdef"}, "Iterable": {".class": "SymbolTableNode", "cross_ref": "typing.Iterable", "kind": "Gdef"}, "Iterator": {".class": "SymbolTableNode", "cross_ref": "typing.Iterator", "kind": "Gdef"}, "KeysView": {".class": "SymbolTableNode", "cross_ref": "typing.KeysView", "kind": "Gdef"}, "List": {".class": "SymbolTableNode", "cross_ref": "typing.List", "kind": "Gdef", "module_hidden": true, "module_public": false}, "Mapping": {".class": "SymbolTableNode", "cross_ref": "typing.Mapping", "kind": "Gdef"}, "MappingView": {".class": "SymbolTableNode", "cross_ref": "typing.MappingView", "kind": "Gdef"}, "MutableMapping": {".class": "SymbolTableNode", "cross_ref": "typing.MutableMapping", "kind": "Gdef"}, "MutableSequence": {".class": "SymbolTableNode", "cross_ref": "typing.MutableSequence", "kind": "Gdef"}, "MutableSet": {".class": "SymbolTableNode", "cross_ref": "typing.MutableSet", "kind": "Gdef"}, "Optional": {".class": "SymbolTableNode", "cross_ref": "typing.Optional", "kind": "Gdef", "module_hidden": true, "module_public": false}, "OrderedDict": {".class": "SymbolTableNode", "kind": "Gdef", "node": {".class": "TypeInfo", "_promote": null, "abstract_attributes": [], "bases": [{".class": "Instance", "args": [{".class": "TypeVarType", "fullname": "collections._KT", "id": 1, "name": "_KT", "upper_bound": "builtins.object", "values": [], "variance": 0}, {".class": "TypeVarType", "fullname": "collections._VT", "id": 2, "name": "_VT", "upper_bound": "builtins.object", "values": [], "variance": 0}], "type_ref": "builtins.dict"}, {".class": "Instance", "args": [{".class": "TypeVarType", "fullname": "collections._KT", "id": 1, "name": "_KT", "upper_bound": "builtins.object", "values": [], "variance": 0}], "type_ref": "typing.Reversible"}], "declared_metaclass": null, "defn": {".class": "ClassDef", "fullname": "collections.OrderedDict", "name": "OrderedDict", "type_vars": [{".class": "TypeVarDef", "fullname": "collections._KT", "id": 1, "name": "_KT", "upper_bound": "builtins.object", "values": [], "variance": 0}, {".class": "TypeVarDef", "fullname": "collections._VT", "id": 2, "name": "_VT", "upper_bound": "builtins.object", "values": [], "variance": 0}]}, "flags": [], "fullname": "collections.OrderedDict", "metaclass_type": "abc.ABCMeta", "metadata": {}, "module_name": "collections", "mro": ["collections.OrderedDict", "builtins.dict", "typing.MutableMapping", "typing.Mapping", "typing.Collection", "typing.Iterable", "typing.Container", "typing.Reversible", "builtins.object"], "names": {".class": "SymbolTable", "__reversed__": {".class": "SymbolTableNode", "kind": "Mdef", "node": {".class": "FuncDef", "arg_kinds": [0], "arg_names": ["self"], "flags": [], "fullname": "collections.OrderedDict.__reversed__", "name": "__reversed__", "type": {".class": "CallableType", "arg_kinds": [0], "arg_names": [null], "arg_types": [{".class": "Instance", "args": [{".class": "TypeVarType", "fullname": "collections._KT", "id": 1, "name": "_KT", "upper_bound": "builtins.object", "values": [], "variance": 0}, {".class": "TypeVarType", "fullname": "collections._VT", "id": 2, "name": "_VT", "upper_bound": "builtins.object", "values": [], "variance": 0}], "type_ref": "collections.OrderedDict"}], "bound_args": [], "def_extras": {"first_arg": "self"}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "__reversed__ of OrderedDict", "ret_type": {".class": "Instance", "args": [{".class": "TypeVarType", "fullname": "collections._KT", "id": 1, "name": "_KT", "upper_bound": "builtins.object", "values": [], "variance": 0}], "type_ref": "typing.Iterator"}, "variables": []}}}, "copy": {".class": "SymbolTableNode", "kind": "Mdef", "node": {".class": "FuncDef", "arg_kinds": [0], "arg_names": ["self"], "flags": [], "fullname": "collections.OrderedDict.copy", "name": "copy", "type": {".class": "CallableType", "arg_kinds": [0], "arg_names": ["self"], "arg_types": [{".class": "TypeVarType", "fullname": "collections._OrderedDictT", "id": -1, "name": "_OrderedDictT", "upper_bound": {".class": "Instance", "args": [{".class": "AnyType", "missing_import_name": null, "source_any": null, "type_of_any": 4}, {".class": "AnyType", "missing_import_name": null, "source_any": null, "type_of_any": 4}], "type_ref": "collections.OrderedDict"}, "values": [], "variance": 0}], "bound_args": [], "def_extras": {"first_arg": "self"}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "copy of OrderedDict", "ret_type": {".class": "TypeVarType", "fullname": "collections._OrderedDictT", "id": -1, "name": "_OrderedDictT", "upper_bound": {".class": "Instance", "args": [{".class": "AnyType", "missing_import_name": null, "source_any": null, "type_of_any": 4}, {".class": "AnyType", "missing_import_name": null, "source_any": null, "type_of_any": 4}], "type_ref": "collections.OrderedDict"}, "values": [], "variance": 0}, "variables": [{".class": "TypeVarDef", "fullname": "collections._OrderedDictT", "id": -1, "name": "_OrderedDictT", "upper_bound": {".class": "Instance", "args": [{".class": "AnyType", "missing_import_name": null, "source_any": null, "type_of_any": 4}, {".class": "AnyType", "missing_import_name": null, "source_any": null, "type_of_any": 4}], "type_ref": "collections.OrderedDict"}, "values": [], "variance": 0}]}}}, "items": {".class": "SymbolTableNode", "kind": "Mdef", "node": {".class": "FuncDef", "arg_kinds": [0], "arg_names": ["self"], "flags": [], "fullname": "collections.OrderedDict.items", "name": "items", "type": {".class": "CallableType", "arg_kinds": [0], "arg_names": ["self"], "arg_types": [{".class": "Instance", "args": [{".class": "TypeVarType", "fullname": "collections._KT", "id": 1, "name": "_KT", "upper_bound": "builtins.object", "values": [], "variance": 0}, {".class": "TypeVarType", "fullname": "collections._VT", "id": 2, "name": "_VT", "upper_bound": "builtins.object", "values": [], "variance": 0}], "type_ref": "collections.OrderedDict"}], "bound_args": [], "def_extras": {"first_arg": "self"}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "items of OrderedDict", "ret_type": {".class": "Instance", "args": [{".class": "TypeVarType", "fullname": "collections._KT", "id": 1, "name": "_KT", "upper_bound": "builtins.object", "values": [], "variance": 0}, {".class": "TypeVarType", "fullname": "collections._VT", "id": 2, "name": "_VT", "upper_bound": "builtins.object", "values": [], "variance": 0}], "type_ref": "collections._OrderedDictItemsView"}, "variables": []}}}, "keys": {".class": "SymbolTableNode", "kind": "Mdef", "node": {".class": "FuncDef", "arg_kinds": [0], "arg_names": ["self"], "flags": [], "fullname": "collections.OrderedDict.keys", "name": "keys", "type": {".class": "CallableType", "arg_kinds": [0], "arg_names": ["self"], "arg_types": [{".class": "Instance", "args": [{".class": "TypeVarType", "fullname": "collections._KT", "id": 1, "name": "_KT", "upper_bound": "builtins.object", "values": [], "variance": 0}, {".class": "TypeVarType", "fullname": "collections._VT", "id": 2, "name": "_VT", "upper_bound": "builtins.object", "values": [], "variance": 0}], "type_ref": "collections.OrderedDict"}], "bound_args": [], "def_extras": {"first_arg": "self"}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "keys of OrderedDict", "ret_type": {".class": "Instance", "args": [{".class": "TypeVarType", "fullname": "collections._KT", "id": 1, "name": "_KT", "upper_bound": "builtins.object", "values": [], "variance": 0}], "type_ref": "collections._OrderedDictKeysView"}, "variables": []}}}, "move_to_end": {".class": "SymbolTableNode", "kind": "Mdef", "node": {".class": "FuncDef", "arg_kinds": [0, 0, 1], "arg_names": ["self", "key", "last"], "flags": [], "fullname": "collections.OrderedDict.move_to_end", "name": "move_to_end", "type": {".class": "CallableType", "arg_kinds": [0, 0, 1], "arg_names": ["self", "key", "last"], "arg_types": [{".class": "Instance", "args": [{".class": "TypeVarType", "fullname": "collections._KT", "id": 1, "name": "_KT", "upper_bound": "builtins.object", "values": [], "variance": 0}, {".class": "TypeVarType", "fullname": "collections._VT", "id": 2, "name": "_VT", "upper_bound": "builtins.object", "values": [], "variance": 0}], "type_ref": "collections.OrderedDict"}, {".class": "TypeVarType", "fullname": "collections._KT", "id": 1, "name": "_KT", "upper_bound": "builtins.object", "values": [], "variance": 0}, "builtins.bool"], "bound_args": [], "def_extras": {"first_arg": "self"}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "move_to_end of OrderedDict", "ret_type": {".class": "NoneTyp"}, "variables": []}}}, "popitem": {".class": "SymbolTableNode", "kind": "Mdef", "node": {".class": "FuncDef", "arg_kinds": [0, 1], "arg_names": ["self", "last"], "flags": [], "fullname": "collections.OrderedDict.popitem", "name": "popitem", "type": {".class": "CallableType", "arg_kinds": [0, 1], "arg_names": ["self", "last"], "arg_types": [{".class": "Instance", "args": [{".class": "TypeVarType", "fullname": "collections._KT", "id": 1, "name": "_KT", "upper_bound": "builtins.object", "values": [], "variance": 0}, {".class": "TypeVarType", "fullname": "collections._VT", "id": 2, "name": "_VT", "upper_bound": "builtins.object", "values": [], "variance": 0}], "type_ref": "collections.OrderedDict"}, "builtins.bool"], "bound_args": [], "def_extras": {"first_arg": "self"}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "popitem of OrderedDict", "ret_type": {".class": "TupleType", "fallback": {".class": "Instance", "args": [{".class": "AnyType", "missing_import_name": null, "source_any": null, "type_of_any": 6}], "type_ref": "builtins.tuple"}, "implicit": false, "items": [{".class": "TypeVarType", "fullname": "collections._KT", "id": 1, "name": "_KT", "upper_bound": "builtins.object", "values": [], "variance": 0}, {".class": "TypeVarType", "fullname": "collections._VT", "id": 2, "name": "_VT", "upper_bound": "builtins.object", "values": [], "variance": 0}]}, "variables": []}}}, "values": {".class": "SymbolTableNode", "kind": "Mdef", "node": {".class": "FuncDef", "arg_kinds": [0], "arg_names": ["self"], "flags": [], "fullname": "collections.OrderedDict.values", "name": "values", "type": {".class": "CallableType", "arg_kinds": [0], "arg_names": ["self"], "arg_types": [{".class": "Instance", "args": [{".class": "TypeVarType", "fullname": "collections._KT", "id": 1, "name": "_KT", "upper_bound": "builtins.object", "values": [], "variance": 0}, {".class": "TypeVarType", "fullname": "collections._VT", "id": 2, "name": "_VT", "upper_bound": "builtins.object", "values": [], "variance": 0}], "type_ref": "collections.OrderedDict"}], "bound_args": [], "def_extras": {"first_arg": "self"}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "values of OrderedDict", "ret_type": {".class": "Instance", "args": [{".class": "TypeVarType", "fullname": "collections._VT", "id": 2, "name": "_VT", "upper_bound": "builtins.object", "values": [], "variance": 0}], "type_ref": "collections._OrderedDictValuesView"}, "variables": []}}}}, "tuple_type": null, "type_vars": ["_KT", "_VT"], "typeddict_type": null}}, "Reversible": {".class": "SymbolTableNode", "cross_ref": "typing.Reversible", "kind": "Gdef"}, "Sequence": {".class": "SymbolTableNode", "cross_ref": "typing.Sequence", "kind": "Gdef"}, "Set": {".class": "SymbolTableNode", "cross_ref": "typing.AbstractSet", "kind": "Gdef"}, "Sized": {".class": "SymbolTableNode", "cross_ref": "typing.Sized", "kind": "Gdef"}, "Tuple": {".class": "SymbolTableNode", "cross_ref": "typing.Tuple", "kind": "Gdef", "module_hidden": true, "module_public": false}, "Type": {".class": "SymbolTableNode", "cross_ref": "typing.Type", "kind": "Gdef", "module_hidden": true, "module_public": false}, "TypeVar": {".class": "SymbolTableNode", "cross_ref": "typing.TypeVar", "kind": "Gdef", "module_hidden": true, "module_public": false}, "Union": {".class": "SymbolTableNode", "cross_ref": "typing.Union", "kind": "Gdef", "module_hidden": true, "module_public": false}, "UserDict": {".class": "SymbolTableNode", "kind": "Gdef", "node": {".class": "TypeInfo", "_promote": null, "abstract_attributes": [], "bases": [{".class": "Instance", "args": [{".class": "TypeVarType", "fullname": "collections._KT", "id": 1, "name": "_KT", "upper_bound": "builtins.object", "values": [], "variance": 0}, {".class": "TypeVarType", "fullname": "collections._VT", "id": 2, "name": "_VT", "upper_bound": "builtins.object", "values": [], "variance": 0}], "type_ref": "typing.MutableMapping"}], "declared_metaclass": null, "defn": {".class": "ClassDef", "fullname": "collections.UserDict", "name": "UserDict", "type_vars": [{".class": "TypeVarDef", "fullname": "collections._KT", "id": 1, "name": "_KT", "upper_bound": "builtins.object", "values": [], "variance": 0}, {".class": "TypeVarDef", "fullname": "collections._VT", "id": 2, "name": "_VT", "upper_bound": "builtins.object", "values": [], "variance": 0}]}, "flags": [], "fullname": "collections.UserDict", "metaclass_type": "abc.ABCMeta", "metadata": {}, "module_name": "collections", "mro": ["collections.UserDict", "typing.MutableMapping", "typing.Mapping", "typing.Collection", "typing.Iterable", "typing.Container", "builtins.object"], "names": {".class": "SymbolTable", "__contains__": {".class": "SymbolTableNode", "kind": "Mdef", "node": {".class": "FuncDef", "arg_kinds": [0, 0], "arg_names": ["self", "key"], "flags": [], "fullname": "collections.UserDict.__contains__", "name": "__contains__", "type": {".class": "CallableType", "arg_kinds": [0, 0], "arg_names": [null, null], "arg_types": [{".class": "Instance", "args": [{".class": "TypeVarType", "fullname": "collections._KT", "id": 1, "name": "_KT", "upper_bound": "builtins.object", "values": [], "variance": 0}, {".class": "TypeVarType", "fullname": "collections._VT", "id": 2, "name": "_VT", "upper_bound": "builtins.object", "values": [], "variance": 0}], "type_ref": "collections.UserDict"}, "builtins.object"], "bound_args": [], "def_extras": {"first_arg": "self"}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "__contains__ of UserDict", "ret_type": "builtins.bool", "variables": []}}}, "__delitem__": {".class": "SymbolTableNode", "kind": "Mdef", "node": {".class": "FuncDef", "arg_kinds": [0, 0], "arg_names": ["self", "key"], "flags": [], "fullname": "collections.UserDict.__delitem__", "name": "__delitem__", "type": {".class": "CallableType", "arg_kinds": [0, 0], "arg_names": [null, null], "arg_types": [{".class": "Instance", "args": [{".class": "TypeVarType", "fullname": "collections._KT", "id": 1, "name": "_KT", "upper_bound": "builtins.object", "values": [], "variance": 0}, {".class": "TypeVarType", "fullname": "collections._VT", "id": 2, "name": "_VT", "upper_bound": "builtins.object", "values": [], "variance": 0}], "type_ref": "collections.UserDict"}, {".class": "TypeVarType", "fullname": "collections._KT", "id": 1, "name": "_KT", "upper_bound": "builtins.object", "values": [], "variance": 0}], "bound_args": [], "def_extras": {"first_arg": "self"}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "__delitem__ of UserDict", "ret_type": {".class": "NoneTyp"}, "variables": []}}}, "__getitem__": {".class": "SymbolTableNode", "kind": "Mdef", "node": {".class": "FuncDef", "arg_kinds": [0, 0], "arg_names": ["self", "key"], "flags": [], "fullname": "collections.UserDict.__getitem__", "name": "__getitem__", "type": {".class": "CallableType", "arg_kinds": [0, 0], "arg_names": [null, null], "arg_types": [{".class": "Instance", "args": [{".class": "TypeVarType", "fullname": "collections._KT", "id": 1, "name": "_KT", "upper_bound": "builtins.object", "values": [], "variance": 0}, {".class": "TypeVarType", "fullname": "collections._VT", "id": 2, "name": "_VT", "upper_bound": "builtins.object", "values": [], "variance": 0}], "type_ref": "collections.UserDict"}, {".class": "TypeVarType", "fullname": "collections._KT", "id": 1, "name": "_KT", "upper_bound": "builtins.object", "values": [], "variance": 0}], "bound_args": [], "def_extras": {"first_arg": "self"}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "__getitem__ of UserDict", "ret_type": {".class": "TypeVarType", "fullname": "collections._VT", "id": 2, "name": "_VT", "upper_bound": "builtins.object", "values": [], "variance": 0}, "variables": []}}}, "__init__": {".class": "SymbolTableNode", "kind": "Mdef", "node": {".class": "FuncDef", "arg_kinds": [0, 1, 4], "arg_names": ["self", "dict", "kwargs"], "flags": [], "fullname": "collections.UserDict.__init__", "name": "__init__", "type": {".class": "CallableType", "arg_kinds": [0, 1, 4], "arg_names": ["self", "dict", "kwargs"], "arg_types": [{".class": "Instance", "args": [{".class": "TypeVarType", "fullname": "collections._KT", "id": 1, "name": "_KT", "upper_bound": "builtins.object", "values": [], "variance": 0}, {".class": "TypeVarType", "fullname": "collections._VT", "id": 2, "name": "_VT", "upper_bound": "builtins.object", "values": [], "variance": 0}], "type_ref": "collections.UserDict"}, {".class": "UnionType", "items": [{".class": "Instance", "args": [{".class": "TypeVarType", "fullname": "collections._KT", "id": 1, "name": "_KT", "upper_bound": "builtins.object", "values": [], "variance": 0}, {".class": "TypeVarType", "fullname": "collections._VT", "id": 2, "name": "_VT", "upper_bound": "builtins.object", "values": [], "variance": 0}], "type_ref": "typing.Mapping"}, {".class": "NoneTyp"}]}, {".class": "TypeVarType", "fullname": "collections._VT", "id": 2, "name": "_VT", "upper_bound": "builtins.object", "values": [], "variance": 0}], "bound_args": [], "def_extras": {"first_arg": "self"}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "__init__ of UserDict", "ret_type": {".class": "NoneTyp"}, "variables": []}}}, "__iter__": {".class": "SymbolTableNode", "kind": "Mdef", "node": {".class": "FuncDef", "arg_kinds": [0], "arg_names": ["self"], "flags": [], "fullname": "collections.UserDict.__iter__", "name": "__iter__", "type": {".class": "CallableType", "arg_kinds": [0], "arg_names": [null], "arg_types": [{".class": "Instance", "args": [{".class": "TypeVarType", "fullname": "collections._KT", "id": 1, "name": "_KT", "upper_bound": "builtins.object", "values": [], "variance": 0}, {".class": "TypeVarType", "fullname": "collections._VT", "id": 2, "name": "_VT", "upper_bound": "builtins.object", "values": [], "variance": 0}], "type_ref": "collections.UserDict"}], "bound_args": [], "def_extras": {"first_arg": "self"}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "__iter__ of UserDict", "ret_type": {".class": "Instance", "args": [{".class": "TypeVarType", "fullname": "collections._KT", "id": 1, "name": "_KT", "upper_bound": "builtins.object", "values": [], "variance": 0}], "type_ref": "typing.Iterator"}, "variables": []}}}, "__len__": {".class": "SymbolTableNode", "kind": "Mdef", "node": {".class": "FuncDef", "arg_kinds": [0], "arg_names": ["self"], "flags": [], "fullname": "collections.UserDict.__len__", "name": "__len__", "type": {".class": "CallableType", "arg_kinds": [0], "arg_names": [null], "arg_types": [{".class": "Instance", "args": [{".class": "TypeVarType", "fullname": "collections._KT", "id": 1, "name": "_KT", "upper_bound": "builtins.object", "values": [], "variance": 0}, {".class": "TypeVarType", "fullname": "collections._VT", "id": 2, "name": "_VT", "upper_bound": "builtins.object", "values": [], "variance": 0}], "type_ref": "collections.UserDict"}], "bound_args": [], "def_extras": {"first_arg": "self"}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "__len__ of UserDict", "ret_type": "builtins.int", "variables": []}}}, "__setitem__": {".class": "SymbolTableNode", "kind": "Mdef", "node": {".class": "FuncDef", "arg_kinds": [0, 0, 0], "arg_names": ["self", "key", "item"], "flags": [], "fullname": "collections.UserDict.__setitem__", "name": "__setitem__", "type": {".class": "CallableType", "arg_kinds": [0, 0, 0], "arg_names": [null, null, null], "arg_types": [{".class": "Instance", "args": [{".class": "TypeVarType", "fullname": "collections._KT", "id": 1, "name": "_KT", "upper_bound": "builtins.object", "values": [], "variance": 0}, {".class": "TypeVarType", "fullname": "collections._VT", "id": 2, "name": "_VT", "upper_bound": "builtins.object", "values": [], "variance": 0}], "type_ref": "collections.UserDict"}, {".class": "TypeVarType", "fullname": "collections._KT", "id": 1, "name": "_KT", "upper_bound": "builtins.object", "values": [], "variance": 0}, {".class": "TypeVarType", "fullname": "collections._VT", "id": 2, "name": "_VT", "upper_bound": "builtins.object", "values": [], "variance": 0}], "bound_args": [], "def_extras": {"first_arg": "self"}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "__setitem__ of UserDict", "ret_type": {".class": "NoneTyp"}, "variables": []}}}, "copy": {".class": "SymbolTableNode", "kind": "Mdef", "node": {".class": "FuncDef", "arg_kinds": [0], "arg_names": ["self"], "flags": [], "fullname": "collections.UserDict.copy", "name": "copy", "type": {".class": "CallableType", "arg_kinds": [0], "arg_names": ["self"], "arg_types": [{".class": "TypeVarType", "fullname": "collections._UserDictT", "id": -1, "name": "_UserDictT", "upper_bound": {".class": "Instance", "args": [{".class": "AnyType", "missing_import_name": null, "source_any": null, "type_of_any": 4}, {".class": "AnyType", "missing_import_name": null, "source_any": null, "type_of_any": 4}], "type_ref": "collections.UserDict"}, "values": [], "variance": 0}], "bound_args": [], "def_extras": {"first_arg": "self"}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "copy of UserDict", "ret_type": {".class": "TypeVarType", "fullname": "collections._UserDictT", "id": -1, "name": "_UserDictT", "upper_bound": {".class": "Instance", "args": [{".class": "AnyType", "missing_import_name": null, "source_any": null, "type_of_any": 4}, {".class": "AnyType", "missing_import_name": null, "source_any": null, "type_of_any": 4}], "type_ref": "collections.UserDict"}, "values": [], "variance": 0}, "variables": [{".class": "TypeVarDef", "fullname": "collections._UserDictT", "id": -1, "name": "_UserDictT", "upper_bound": {".class": "Instance", "args": [{".class": "AnyType", "missing_import_name": null, "source_any": null, "type_of_any": 4}, {".class": "AnyType", "missing_import_name": null, "source_any": null, "type_of_any": 4}], "type_ref": "collections.UserDict"}, "values": [], "variance": 0}]}}}, "data": {".class": "SymbolTableNode", "kind": "Mdef", "node": {".class": "Var", "flags": ["is_initialized_in_class"], "fullname": "collections.UserDict.data", "name": "data", "type": {".class": "Instance", "args": [{".class": "TypeVarType", "fullname": "collections._KT", "id": 1, "name": "_KT", "upper_bound": "builtins.object", "values": [], "variance": 0}, {".class": "TypeVarType", "fullname": "collections._VT", "id": 2, "name": "_VT", "upper_bound": "builtins.object", "values": [], "variance": 0}], "type_ref": "builtins.dict"}}}, "fromkeys": {".class": "SymbolTableNode", "kind": "Mdef", "node": {".class": "Decorator", "func": {".class": "FuncDef", "arg_kinds": [0, 0, 1], "arg_names": ["cls", "iterable", "value"], "flags": ["is_class", "is_decorated"], "fullname": "collections.UserDict.fromkeys", "name": "fromkeys", "type": {".class": "CallableType", "arg_kinds": [0, 0, 1], "arg_names": ["cls", "iterable", "value"], "arg_types": [{".class": "TypeType", "item": {".class": "TypeVarType", "fullname": "collections._UserDictT", "id": -1, "name": "_UserDictT", "upper_bound": {".class": "Instance", "args": [{".class": "AnyType", "missing_import_name": null, "source_any": null, "type_of_any": 4}, {".class": "AnyType", "missing_import_name": null, "source_any": null, "type_of_any": 4}], "type_ref": "collections.UserDict"}, "values": [], "variance": 0}}, {".class": "Instance", "args": [{".class": "TypeVarType", "fullname": "collections._KT", "id": 1, "name": "_KT", "upper_bound": "builtins.object", "values": [], "variance": 0}], "type_ref": "typing.Iterable"}, {".class": "UnionType", "items": [{".class": "TypeVarType", "fullname": "collections._VT", "id": 2, "name": "_VT", "upper_bound": "builtins.object", "values": [], "variance": 0}, {".class": "NoneTyp"}]}], "bound_args": [], "def_extras": {"first_arg": "cls"}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "fromkeys of UserDict", "ret_type": {".class": "TypeVarType", "fullname": "collections._UserDictT", "id": -1, "name": "_UserDictT", "upper_bound": {".class": "Instance", "args": [{".class": "AnyType", "missing_import_name": null, "source_any": null, "type_of_any": 4}, {".class": "AnyType", "missing_import_name": null, "source_any": null, "type_of_any": 4}], "type_ref": "collections.UserDict"}, "values": [], "variance": 0}, "variables": [{".class": "TypeVarDef", "fullname": "collections._UserDictT", "id": -1, "name": "_UserDictT", "upper_bound": {".class": "Instance", "args": [{".class": "AnyType", "missing_import_name": null, "source_any": null, "type_of_any": 4}, {".class": "AnyType", "missing_import_name": null, "source_any": null, "type_of_any": 4}], "type_ref": "collections.UserDict"}, "values": [], "variance": 0}]}}, "is_overload": false, "var": {".class": "Var", "flags": ["is_initialized_in_class", "is_classmethod"], "fullname": null, "name": "fromkeys", "type": {".class": "CallableType", "arg_kinds": [0, 0, 1], "arg_names": ["cls", "iterable", "value"], "arg_types": [{".class": "TypeType", "item": {".class": "TypeVarType", "fullname": "collections._UserDictT", "id": -1, "name": "_UserDictT", "upper_bound": {".class": "Instance", "args": [{".class": "AnyType", "missing_import_name": null, "source_any": null, "type_of_any": 4}, {".class": "AnyType", "missing_import_name": null, "source_any": null, "type_of_any": 4}], "type_ref": "collections.UserDict"}, "values": [], "variance": 0}}, {".class": "Instance", "args": [{".class": "TypeVarType", "fullname": "collections._KT", "id": 1, "name": "_KT", "upper_bound": "builtins.object", "values": [], "variance": 0}], "type_ref": "typing.Iterable"}, {".class": "UnionType", "items": [{".class": "TypeVarType", "fullname": "collections._VT", "id": 2, "name": "_VT", "upper_bound": "builtins.object", "values": [], "variance": 0}, {".class": "NoneTyp"}]}], "bound_args": [], "def_extras": {"first_arg": "cls"}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "fromkeys of UserDict", "ret_type": {".class": "TypeVarType", "fullname": "collections._UserDictT", "id": -1, "name": "_UserDictT", "upper_bound": {".class": "Instance", "args": [{".class": "AnyType", "missing_import_name": null, "source_any": null, "type_of_any": 4}, {".class": "AnyType", "missing_import_name": null, "source_any": null, "type_of_any": 4}], "type_ref": "collections.UserDict"}, "values": [], "variance": 0}, "variables": [{".class": "TypeVarDef", "fullname": "collections._UserDictT", "id": -1, "name": "_UserDictT", "upper_bound": {".class": "Instance", "args": [{".class": "AnyType", "missing_import_name": null, "source_any": null, "type_of_any": 4}, {".class": "AnyType", "missing_import_name": null, "source_any": null, "type_of_any": 4}], "type_ref": "collections.UserDict"}, "values": [], "variance": 0}]}}}}}, "tuple_type": null, "type_vars": ["_KT", "_VT"], "typeddict_type": null}}, "UserList": {".class": "SymbolTableNode", "kind": "Gdef", "node": {".class": "TypeInfo", "_promote": null, "abstract_attributes": [], "bases": [{".class": "Instance", "args": [{".class": "TypeVarType", "fullname": "collections._T", "id": 1, "name": "_T", "upper_bound": "builtins.object", "values": [], "variance": 0}], "type_ref": "typing.MutableSequence"}], "declared_metaclass": null, "defn": {".class": "ClassDef", "fullname": "collections.UserList", "name": "UserList", "type_vars": [{".class": "TypeVarDef", "fullname": "collections._T", "id": 1, "name": "_T", "upper_bound": "builtins.object", "values": [], "variance": 0}]}, "flags": [], "fullname": "collections.UserList", "metaclass_type": "abc.ABCMeta", "metadata": {}, "module_name": "collections", "mro": ["collections.UserList", "typing.MutableSequence", "typing.Sequence", "typing.Collection", "typing.Iterable", "typing.Container", "typing.Reversible", "builtins.object"], "names": {".class": "SymbolTable", "__add__": {".class": "SymbolTableNode", "kind": "Mdef", "node": {".class": "FuncDef", "arg_kinds": [0, 0], "arg_names": ["self", "other"], "flags": [], "fullname": "collections.UserList.__add__", "name": "__add__", "type": {".class": "CallableType", "arg_kinds": [0, 0], "arg_names": [null, null], "arg_types": [{".class": "TypeVarType", "fullname": "collections._UserListT", "id": -1, "name": "_UserListT", "upper_bound": {".class": "Instance", "args": [{".class": "AnyType", "missing_import_name": null, "source_any": null, "type_of_any": 4}], "type_ref": "collections.UserList"}, "values": [], "variance": 0}, {".class": "Instance", "args": [{".class": "TypeVarType", "fullname": "collections._T", "id": 1, "name": "_T", "upper_bound": "builtins.object", "values": [], "variance": 0}], "type_ref": "typing.Iterable"}], "bound_args": [], "def_extras": {"first_arg": "self"}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "__add__ of UserList", "ret_type": {".class": "TypeVarType", "fullname": "collections._UserListT", "id": -1, "name": "_UserListT", "upper_bound": {".class": "Instance", "args": [{".class": "AnyType", "missing_import_name": null, "source_any": null, "type_of_any": 4}], "type_ref": "collections.UserList"}, "values": [], "variance": 0}, "variables": [{".class": "TypeVarDef", "fullname": "collections._UserListT", "id": -1, "name": "_UserListT", "upper_bound": {".class": "Instance", "args": [{".class": "AnyType", "missing_import_name": null, "source_any": null, "type_of_any": 4}], "type_ref": "collections.UserList"}, "values": [], "variance": 0}]}}}, "__contains__": {".class": "SymbolTableNode", "kind": "Mdef", "node": {".class": "FuncDef", "arg_kinds": [0, 0], "arg_names": ["self", "item"], "flags": [], "fullname": "collections.UserList.__contains__", "name": "__contains__", "type": {".class": "CallableType", "arg_kinds": [0, 0], "arg_names": [null, null], "arg_types": [{".class": "Instance", "args": [{".class": "TypeVarType", "fullname": "collections._T", "id": 1, "name": "_T", "upper_bound": "builtins.object", "values": [], "variance": 0}], "type_ref": "collections.UserList"}, "builtins.object"], "bound_args": [], "def_extras": {"first_arg": "self"}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "__contains__ of UserList", "ret_type": "builtins.bool", "variables": []}}}, "__delitem__": {".class": "SymbolTableNode", "kind": "Mdef", "node": {".class": "FuncDef", "arg_kinds": [0, 0], "arg_names": ["self", "i"], "flags": [], "fullname": "collections.UserList.__delitem__", "name": "__delitem__", "type": {".class": "CallableType", "arg_kinds": [0, 0], "arg_names": [null, null], "arg_types": [{".class": "Instance", "args": [{".class": "TypeVarType", "fullname": "collections._T", "id": 1, "name": "_T", "upper_bound": "builtins.object", "values": [], "variance": 0}], "type_ref": "collections.UserList"}, {".class": "UnionType", "items": ["builtins.int", "builtins.slice"]}], "bound_args": [], "def_extras": {"first_arg": "self"}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "__delitem__ of UserList", "ret_type": {".class": "NoneTyp"}, "variables": []}}}, "__ge__": {".class": "SymbolTableNode", "kind": "Mdef", "node": {".class": "FuncDef", "arg_kinds": [0, 0], "arg_names": ["self", "other"], "flags": [], "fullname": "collections.UserList.__ge__", "name": "__ge__", "type": {".class": "CallableType", "arg_kinds": [0, 0], "arg_names": [null, null], "arg_types": [{".class": "Instance", "args": [{".class": "TypeVarType", "fullname": "collections._T", "id": 1, "name": "_T", "upper_bound": "builtins.object", "values": [], "variance": 0}], "type_ref": "collections.UserList"}, "builtins.object"], "bound_args": [], "def_extras": {"first_arg": "self"}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "__ge__ of UserList", "ret_type": "builtins.bool", "variables": []}}}, "__getitem__": {".class": "SymbolTableNode", "kind": "Mdef", "node": {".class": "OverloadedFuncDef", "flags": [], "fullname": "collections.UserList.__getitem__", "impl": null, "items": [{".class": "Decorator", "func": {".class": "FuncDef", "arg_kinds": [0, 0], "arg_names": ["self", "i"], "flags": ["is_overload", "is_decorated"], "fullname": "collections.UserList.__getitem__", "name": "__getitem__", "type": {".class": "CallableType", "arg_kinds": [0, 0], "arg_names": [null, null], "arg_types": [{".class": "Instance", "args": [{".class": "TypeVarType", "fullname": "collections._T", "id": 1, "name": "_T", "upper_bound": "builtins.object", "values": [], "variance": 0}], "type_ref": "collections.UserList"}, "builtins.int"], "bound_args": [], "def_extras": {"first_arg": "self"}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "__getitem__ of UserList", "ret_type": {".class": "TypeVarType", "fullname": "collections._T", "id": 1, "name": "_T", "upper_bound": "builtins.object", "values": [], "variance": 0}, "variables": []}}, "is_overload": true, "var": {".class": "Var", "flags": [], "fullname": null, "name": "__getitem__", "type": null}}, {".class": "Decorator", "func": {".class": "FuncDef", "arg_kinds": [0, 0], "arg_names": ["self", "i"], "flags": ["is_overload", "is_decorated"], "fullname": "collections.UserList.__getitem__", "name": "__getitem__", "type": {".class": "CallableType", "arg_kinds": [0, 0], "arg_names": [null, null], "arg_types": [{".class": "Instance", "args": [{".class": "TypeVarType", "fullname": "collections._T", "id": 1, "name": "_T", "upper_bound": "builtins.object", "values": [], "variance": 0}], "type_ref": "collections.UserList"}, "builtins.slice"], "bound_args": [], "def_extras": {"first_arg": "self"}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "__getitem__ of UserList", "ret_type": {".class": "Instance", "args": [{".class": "TypeVarType", "fullname": "collections._T", "id": 1, "name": "_T", "upper_bound": "builtins.object", "values": [], "variance": 0}], "type_ref": "typing.MutableSequence"}, "variables": []}}, "is_overload": true, "var": {".class": "Var", "flags": [], "fullname": null, "name": "__getitem__", "type": null}}], "type": {".class": "Overloaded", "items": [{".class": "CallableType", "arg_kinds": [0, 0], "arg_names": [null, null], "arg_types": [{".class": "Instance", "args": [{".class": "TypeVarType", "fullname": "collections._T", "id": 1, "name": "_T", "upper_bound": "builtins.object", "values": [], "variance": 0}], "type_ref": "collections.UserList"}, "builtins.int"], "bound_args": [], "def_extras": {"first_arg": "self"}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "__getitem__ of UserList", "ret_type": {".class": "TypeVarType", "fullname": "collections._T", "id": 1, "name": "_T", "upper_bound": "builtins.object", "values": [], "variance": 0}, "variables": []}, {".class": "CallableType", "arg_kinds": [0, 0], "arg_names": [null, null], "arg_types": [{".class": "Instance", "args": [{".class": "TypeVarType", "fullname": "collections._T", "id": 1, "name": "_T", "upper_bound": "builtins.object", "values": [], "variance": 0}], "type_ref": "collections.UserList"}, "builtins.slice"], "bound_args": [], "def_extras": {"first_arg": "self"}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "__getitem__ of UserList", "ret_type": {".class": "Instance", "args": [{".class": "TypeVarType", "fullname": "collections._T", "id": 1, "name": "_T", "upper_bound": "builtins.object", "values": [], "variance": 0}], "type_ref": "typing.MutableSequence"}, "variables": []}]}}}, "__gt__": {".class": "SymbolTableNode", "kind": "Mdef", "node": {".class": "FuncDef", "arg_kinds": [0, 0], "arg_names": ["self", "other"], "flags": [], "fullname": "collections.UserList.__gt__", "name": "__gt__", "type": {".class": "CallableType", "arg_kinds": [0, 0], "arg_names": [null, null], "arg_types": [{".class": "Instance", "args": [{".class": "TypeVarType", "fullname": "collections._T", "id": 1, "name": "_T", "upper_bound": "builtins.object", "values": [], "variance": 0}], "type_ref": "collections.UserList"}, "builtins.object"], "bound_args": [], "def_extras": {"first_arg": "self"}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "__gt__ of UserList", "ret_type": "builtins.bool", "variables": []}}}, "__iadd__": {".class": "SymbolTableNode", "kind": "Mdef", "node": {".class": "FuncDef", "arg_kinds": [0, 0], "arg_names": ["self", "other"], "flags": [], "fullname": "collections.UserList.__iadd__", "name": "__iadd__", "type": {".class": "CallableType", "arg_kinds": [0, 0], "arg_names": [null, null], "arg_types": [{".class": "TypeVarType", "fullname": "collections._UserListT", "id": -1, "name": "_UserListT", "upper_bound": {".class": "Instance", "args": [{".class": "AnyType", "missing_import_name": null, "source_any": null, "type_of_any": 4}], "type_ref": "collections.UserList"}, "values": [], "variance": 0}, {".class": "Instance", "args": [{".class": "TypeVarType", "fullname": "collections._T", "id": 1, "name": "_T", "upper_bound": "builtins.object", "values": [], "variance": 0}], "type_ref": "typing.Iterable"}], "bound_args": [], "def_extras": {"first_arg": "self"}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "__iadd__ of UserList", "ret_type": {".class": "TypeVarType", "fullname": "collections._UserListT", "id": -1, "name": "_UserListT", "upper_bound": {".class": "Instance", "args": [{".class": "AnyType", "missing_import_name": null, "source_any": null, "type_of_any": 4}], "type_ref": "collections.UserList"}, "values": [], "variance": 0}, "variables": [{".class": "TypeVarDef", "fullname": "collections._UserListT", "id": -1, "name": "_UserListT", "upper_bound": {".class": "Instance", "args": [{".class": "AnyType", "missing_import_name": null, "source_any": null, "type_of_any": 4}], "type_ref": "collections.UserList"}, "values": [], "variance": 0}]}}}, "__imul__": {".class": "SymbolTableNode", "kind": "Mdef", "node": {".class": "FuncDef", "arg_kinds": [0, 0], "arg_names": ["self", "n"], "flags": [], "fullname": "collections.UserList.__imul__", "name": "__imul__", "type": {".class": "CallableType", "arg_kinds": [0, 0], "arg_names": [null, null], "arg_types": [{".class": "TypeVarType", "fullname": "collections._UserListT", "id": -1, "name": "_UserListT", "upper_bound": {".class": "Instance", "args": [{".class": "AnyType", "missing_import_name": null, "source_any": null, "type_of_any": 4}], "type_ref": "collections.UserList"}, "values": [], "variance": 0}, "builtins.int"], "bound_args": [], "def_extras": {"first_arg": "self"}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "__imul__ of UserList", "ret_type": {".class": "TypeVarType", "fullname": "collections._UserListT", "id": -1, "name": "_UserListT", "upper_bound": {".class": "Instance", "args": [{".class": "AnyType", "missing_import_name": null, "source_any": null, "type_of_any": 4}], "type_ref": "collections.UserList"}, "values": [], "variance": 0}, "variables": [{".class": "TypeVarDef", "fullname": "collections._UserListT", "id": -1, "name": "_UserListT", "upper_bound": {".class": "Instance", "args": [{".class": "AnyType", "missing_import_name": null, "source_any": null, "type_of_any": 4}], "type_ref": "collections.UserList"}, "values": [], "variance": 0}]}}}, "__init__": {".class": "SymbolTableNode", "kind": "Mdef", "node": {".class": "FuncDef", "arg_kinds": [0, 1], "arg_names": ["self", "initlist"], "flags": [], "fullname": "collections.UserList.__init__", "name": "__init__", "type": {".class": "CallableType", "arg_kinds": [0, 1], "arg_names": ["self", "initlist"], "arg_types": [{".class": "Instance", "args": [{".class": "TypeVarType", "fullname": "collections._T", "id": 1, "name": "_T", "upper_bound": "builtins.object", "values": [], "variance": 0}], "type_ref": "collections.UserList"}, {".class": "UnionType", "items": [{".class": "Instance", "args": [{".class": "TypeVarType", "fullname": "collections._T", "id": 1, "name": "_T", "upper_bound": "builtins.object", "values": [], "variance": 0}], "type_ref": "typing.Iterable"}, {".class": "NoneTyp"}]}], "bound_args": [], "def_extras": {"first_arg": "self"}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "__init__ of UserList", "ret_type": {".class": "NoneTyp"}, "variables": []}}}, "__le__": {".class": "SymbolTableNode", "kind": "Mdef", "node": {".class": "FuncDef", "arg_kinds": [0, 0], "arg_names": ["self", "other"], "flags": [], "fullname": "collections.UserList.__le__", "name": "__le__", "type": {".class": "CallableType", "arg_kinds": [0, 0], "arg_names": [null, null], "arg_types": [{".class": "Instance", "args": [{".class": "TypeVarType", "fullname": "collections._T", "id": 1, "name": "_T", "upper_bound": "builtins.object", "values": [], "variance": 0}], "type_ref": "collections.UserList"}, "builtins.object"], "bound_args": [], "def_extras": {"first_arg": "self"}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "__le__ of UserList", "ret_type": "builtins.bool", "variables": []}}}, "__len__": {".class": "SymbolTableNode", "kind": "Mdef", "node": {".class": "FuncDef", "arg_kinds": [0], "arg_names": ["self"], "flags": [], "fullname": "collections.UserList.__len__", "name": "__len__", "type": {".class": "CallableType", "arg_kinds": [0], "arg_names": [null], "arg_types": [{".class": "Instance", "args": [{".class": "TypeVarType", "fullname": "collections._T", "id": 1, "name": "_T", "upper_bound": "builtins.object", "values": [], "variance": 0}], "type_ref": "collections.UserList"}], "bound_args": [], "def_extras": {"first_arg": "self"}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "__len__ of UserList", "ret_type": "builtins.int", "variables": []}}}, "__lt__": {".class": "SymbolTableNode", "kind": "Mdef", "node": {".class": "FuncDef", "arg_kinds": [0, 0], "arg_names": ["self", "other"], "flags": [], "fullname": "collections.UserList.__lt__", "name": "__lt__", "type": {".class": "CallableType", "arg_kinds": [0, 0], "arg_names": [null, null], "arg_types": [{".class": "Instance", "args": [{".class": "TypeVarType", "fullname": "collections._T", "id": 1, "name": "_T", "upper_bound": "builtins.object", "values": [], "variance": 0}], "type_ref": "collections.UserList"}, "builtins.object"], "bound_args": [], "def_extras": {"first_arg": "self"}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "__lt__ of UserList", "ret_type": "builtins.bool", "variables": []}}}, "__mul__": {".class": "SymbolTableNode", "kind": "Mdef", "node": {".class": "FuncDef", "arg_kinds": [0, 0], "arg_names": ["self", "n"], "flags": [], "fullname": "collections.UserList.__mul__", "name": "__mul__", "type": {".class": "CallableType", "arg_kinds": [0, 0], "arg_names": [null, null], "arg_types": [{".class": "TypeVarType", "fullname": "collections._UserListT", "id": -1, "name": "_UserListT", "upper_bound": {".class": "Instance", "args": [{".class": "AnyType", "missing_import_name": null, "source_any": null, "type_of_any": 4}], "type_ref": "collections.UserList"}, "values": [], "variance": 0}, "builtins.int"], "bound_args": [], "def_extras": {"first_arg": "self"}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "__mul__ of UserList", "ret_type": {".class": "TypeVarType", "fullname": "collections._UserListT", "id": -1, "name": "_UserListT", "upper_bound": {".class": "Instance", "args": [{".class": "AnyType", "missing_import_name": null, "source_any": null, "type_of_any": 4}], "type_ref": "collections.UserList"}, "values": [], "variance": 0}, "variables": [{".class": "TypeVarDef", "fullname": "collections._UserListT", "id": -1, "name": "_UserListT", "upper_bound": {".class": "Instance", "args": [{".class": "AnyType", "missing_import_name": null, "source_any": null, "type_of_any": 4}], "type_ref": "collections.UserList"}, "values": [], "variance": 0}]}}}, "__setitem__": {".class": "SymbolTableNode", "kind": "Mdef", "node": {".class": "OverloadedFuncDef", "flags": [], "fullname": "collections.UserList.__setitem__", "impl": null, "items": [{".class": "Decorator", "func": {".class": "FuncDef", "arg_kinds": [0, 0, 0], "arg_names": ["self", "i", "o"], "flags": ["is_overload", "is_decorated"], "fullname": "collections.UserList.__setitem__", "name": "__setitem__", "type": {".class": "CallableType", "arg_kinds": [0, 0, 0], "arg_names": [null, null, null], "arg_types": [{".class": "Instance", "args": [{".class": "TypeVarType", "fullname": "collections._T", "id": 1, "name": "_T", "upper_bound": "builtins.object", "values": [], "variance": 0}], "type_ref": "collections.UserList"}, "builtins.int", {".class": "TypeVarType", "fullname": "collections._T", "id": 1, "name": "_T", "upper_bound": "builtins.object", "values": [], "variance": 0}], "bound_args": [], "def_extras": {"first_arg": "self"}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "__setitem__ of UserList", "ret_type": {".class": "NoneTyp"}, "variables": []}}, "is_overload": true, "var": {".class": "Var", "flags": [], "fullname": null, "name": "__setitem__", "type": null}}, {".class": "Decorator", "func": {".class": "FuncDef", "arg_kinds": [0, 0, 0], "arg_names": ["self", "i", "o"], "flags": ["is_overload", "is_decorated"], "fullname": "collections.UserList.__setitem__", "name": "__setitem__", "type": {".class": "CallableType", "arg_kinds": [0, 0, 0], "arg_names": [null, null, null], "arg_types": [{".class": "Instance", "args": [{".class": "TypeVarType", "fullname": "collections._T", "id": 1, "name": "_T", "upper_bound": "builtins.object", "values": [], "variance": 0}], "type_ref": "collections.UserList"}, "builtins.slice", {".class": "Instance", "args": [{".class": "TypeVarType", "fullname": "collections._T", "id": 1, "name": "_T", "upper_bound": "builtins.object", "values": [], "variance": 0}], "type_ref": "typing.Iterable"}], "bound_args": [], "def_extras": {"first_arg": "self"}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "__setitem__ of UserList", "ret_type": {".class": "NoneTyp"}, "variables": []}}, "is_overload": true, "var": {".class": "Var", "flags": [], "fullname": null, "name": "__setitem__", "type": null}}], "type": {".class": "Overloaded", "items": [{".class": "CallableType", "arg_kinds": [0, 0, 0], "arg_names": [null, null, null], "arg_types": [{".class": "Instance", "args": [{".class": "TypeVarType", "fullname": "collections._T", "id": 1, "name": "_T", "upper_bound": "builtins.object", "values": [], "variance": 0}], "type_ref": "collections.UserList"}, "builtins.int", {".class": "TypeVarType", "fullname": "collections._T", "id": 1, "name": "_T", "upper_bound": "builtins.object", "values": [], "variance": 0}], "bound_args": [], "def_extras": {"first_arg": "self"}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "__setitem__ of UserList", "ret_type": {".class": "NoneTyp"}, "variables": []}, {".class": "CallableType", "arg_kinds": [0, 0, 0], "arg_names": [null, null, null], "arg_types": [{".class": "Instance", "args": [{".class": "TypeVarType", "fullname": "collections._T", "id": 1, "name": "_T", "upper_bound": "builtins.object", "values": [], "variance": 0}], "type_ref": "collections.UserList"}, "builtins.slice", {".class": "Instance", "args": [{".class": "TypeVarType", "fullname": "collections._T", "id": 1, "name": "_T", "upper_bound": "builtins.object", "values": [], "variance": 0}], "type_ref": "typing.Iterable"}], "bound_args": [], "def_extras": {"first_arg": "self"}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "__setitem__ of UserList", "ret_type": {".class": "NoneTyp"}, "variables": []}]}}}, "append": {".class": "SymbolTableNode", "kind": "Mdef", "node": {".class": "FuncDef", "arg_kinds": [0, 0], "arg_names": ["self", "item"], "flags": [], "fullname": "collections.UserList.append", "name": "append", "type": {".class": "CallableType", "arg_kinds": [0, 0], "arg_names": ["self", "item"], "arg_types": [{".class": "Instance", "args": [{".class": "TypeVarType", "fullname": "collections._T", "id": 1, "name": "_T", "upper_bound": "builtins.object", "values": [], "variance": 0}], "type_ref": "collections.UserList"}, {".class": "TypeVarType", "fullname": "collections._T", "id": 1, "name": "_T", "upper_bound": "builtins.object", "values": [], "variance": 0}], "bound_args": [], "def_extras": {"first_arg": "self"}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "append of UserList", "ret_type": {".class": "NoneTyp"}, "variables": []}}}, "clear": {".class": "SymbolTableNode", "kind": "Mdef", "node": {".class": "FuncDef", "arg_kinds": [0], "arg_names": ["self"], "flags": [], "fullname": "collections.UserList.clear", "name": "clear", "type": {".class": "CallableType", "arg_kinds": [0], "arg_names": ["self"], "arg_types": [{".class": "Instance", "args": [{".class": "TypeVarType", "fullname": "collections._T", "id": 1, "name": "_T", "upper_bound": "builtins.object", "values": [], "variance": 0}], "type_ref": "collections.UserList"}], "bound_args": [], "def_extras": {"first_arg": "self"}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "clear of UserList", "ret_type": {".class": "NoneTyp"}, "variables": []}}}, "copy": {".class": "SymbolTableNode", "kind": "Mdef", "node": {".class": "FuncDef", "arg_kinds": [0], "arg_names": ["self"], "flags": [], "fullname": "collections.UserList.copy", "name": "copy", "type": {".class": "CallableType", "arg_kinds": [0], "arg_names": ["self"], "arg_types": [{".class": "TypeVarType", "fullname": "collections._UserListT", "id": -1, "name": "_UserListT", "upper_bound": {".class": "Instance", "args": [{".class": "AnyType", "missing_import_name": null, "source_any": null, "type_of_any": 4}], "type_ref": "collections.UserList"}, "values": [], "variance": 0}], "bound_args": [], "def_extras": {"first_arg": "self"}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "copy of UserList", "ret_type": {".class": "TypeVarType", "fullname": "collections._UserListT", "id": -1, "name": "_UserListT", "upper_bound": {".class": "Instance", "args": [{".class": "AnyType", "missing_import_name": null, "source_any": null, "type_of_any": 4}], "type_ref": "collections.UserList"}, "values": [], "variance": 0}, "variables": [{".class": "TypeVarDef", "fullname": "collections._UserListT", "id": -1, "name": "_UserListT", "upper_bound": {".class": "Instance", "args": [{".class": "AnyType", "missing_import_name": null, "source_any": null, "type_of_any": 4}], "type_ref": "collections.UserList"}, "values": [], "variance": 0}]}}}, "count": {".class": "SymbolTableNode", "kind": "Mdef", "node": {".class": "FuncDef", "arg_kinds": [0, 0], "arg_names": ["self", "item"], "flags": [], "fullname": "collections.UserList.count", "name": "count", "type": {".class": "CallableType", "arg_kinds": [0, 0], "arg_names": ["self", "item"], "arg_types": [{".class": "Instance", "args": [{".class": "TypeVarType", "fullname": "collections._T", "id": 1, "name": "_T", "upper_bound": "builtins.object", "values": [], "variance": 0}], "type_ref": "collections.UserList"}, {".class": "TypeVarType", "fullname": "collections._T", "id": 1, "name": "_T", "upper_bound": "builtins.object", "values": [], "variance": 0}], "bound_args": [], "def_extras": {"first_arg": "self"}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "count of UserList", "ret_type": "builtins.int", "variables": []}}}, "data": {".class": "SymbolTableNode", "kind": "Mdef", "node": {".class": "Var", "flags": ["is_initialized_in_class"], "fullname": "collections.UserList.data", "name": "data", "type": {".class": "Instance", "args": [{".class": "TypeVarType", "fullname": "collections._T", "id": 1, "name": "_T", "upper_bound": "builtins.object", "values": [], "variance": 0}], "type_ref": "builtins.list"}}}, "extend": {".class": "SymbolTableNode", "kind": "Mdef", "node": {".class": "FuncDef", "arg_kinds": [0, 0], "arg_names": ["self", "other"], "flags": [], "fullname": "collections.UserList.extend", "name": "extend", "type": {".class": "CallableType", "arg_kinds": [0, 0], "arg_names": ["self", "other"], "arg_types": [{".class": "Instance", "args": [{".class": "TypeVarType", "fullname": "collections._T", "id": 1, "name": "_T", "upper_bound": "builtins.object", "values": [], "variance": 0}], "type_ref": "collections.UserList"}, {".class": "Instance", "args": [{".class": "TypeVarType", "fullname": "collections._T", "id": 1, "name": "_T", "upper_bound": "builtins.object", "values": [], "variance": 0}], "type_ref": "typing.Iterable"}], "bound_args": [], "def_extras": {"first_arg": "self"}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "extend of UserList", "ret_type": {".class": "NoneTyp"}, "variables": []}}}, "index": {".class": "SymbolTableNode", "kind": "Mdef", "node": {".class": "FuncDef", "arg_kinds": [0, 0, 2], "arg_names": ["self", "item", "args"], "flags": [], "fullname": "collections.UserList.index", "name": "index", "type": {".class": "CallableType", "arg_kinds": [0, 0, 2], "arg_names": ["self", "item", "args"], "arg_types": [{".class": "Instance", "args": [{".class": "TypeVarType", "fullname": "collections._T", "id": 1, "name": "_T", "upper_bound": "builtins.object", "values": [], "variance": 0}], "type_ref": "collections.UserList"}, {".class": "TypeVarType", "fullname": "collections._T", "id": 1, "name": "_T", "upper_bound": "builtins.object", "values": [], "variance": 0}, {".class": "AnyType", "missing_import_name": null, "source_any": null, "type_of_any": 2}], "bound_args": [], "def_extras": {"first_arg": "self"}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "index of UserList", "ret_type": "builtins.int", "variables": []}}}, "insert": {".class": "SymbolTableNode", "kind": "Mdef", "node": {".class": "FuncDef", "arg_kinds": [0, 0, 0], "arg_names": ["self", "i", "item"], "flags": [], "fullname": "collections.UserList.insert", "name": "insert", "type": {".class": "CallableType", "arg_kinds": [0, 0, 0], "arg_names": ["self", "i", "item"], "arg_types": [{".class": "Instance", "args": [{".class": "TypeVarType", "fullname": "collections._T", "id": 1, "name": "_T", "upper_bound": "builtins.object", "values": [], "variance": 0}], "type_ref": "collections.UserList"}, "builtins.int", {".class": "TypeVarType", "fullname": "collections._T", "id": 1, "name": "_T", "upper_bound": "builtins.object", "values": [], "variance": 0}], "bound_args": [], "def_extras": {"first_arg": "self"}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "insert of UserList", "ret_type": {".class": "NoneTyp"}, "variables": []}}}, "pop": {".class": "SymbolTableNode", "kind": "Mdef", "node": {".class": "FuncDef", "arg_kinds": [0, 1], "arg_names": ["self", "i"], "flags": [], "fullname": "collections.UserList.pop", "name": "pop", "type": {".class": "CallableType", "arg_kinds": [0, 1], "arg_names": ["self", "i"], "arg_types": [{".class": "Instance", "args": [{".class": "TypeVarType", "fullname": "collections._T", "id": 1, "name": "_T", "upper_bound": "builtins.object", "values": [], "variance": 0}], "type_ref": "collections.UserList"}, "builtins.int"], "bound_args": [], "def_extras": {"first_arg": "self"}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "pop of UserList", "ret_type": {".class": "TypeVarType", "fullname": "collections._T", "id": 1, "name": "_T", "upper_bound": "builtins.object", "values": [], "variance": 0}, "variables": []}}}, "remove": {".class": "SymbolTableNode", "kind": "Mdef", "node": {".class": "FuncDef", "arg_kinds": [0, 0], "arg_names": ["self", "item"], "flags": [], "fullname": "collections.UserList.remove", "name": "remove", "type": {".class": "CallableType", "arg_kinds": [0, 0], "arg_names": ["self", "item"], "arg_types": [{".class": "Instance", "args": [{".class": "TypeVarType", "fullname": "collections._T", "id": 1, "name": "_T", "upper_bound": "builtins.object", "values": [], "variance": 0}], "type_ref": "collections.UserList"}, {".class": "TypeVarType", "fullname": "collections._T", "id": 1, "name": "_T", "upper_bound": "builtins.object", "values": [], "variance": 0}], "bound_args": [], "def_extras": {"first_arg": "self"}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "remove of UserList", "ret_type": {".class": "NoneTyp"}, "variables": []}}}, "reverse": {".class": "SymbolTableNode", "kind": "Mdef", "node": {".class": "FuncDef", "arg_kinds": [0], "arg_names": ["self"], "flags": [], "fullname": "collections.UserList.reverse", "name": "reverse", "type": {".class": "CallableType", "arg_kinds": [0], "arg_names": ["self"], "arg_types": [{".class": "Instance", "args": [{".class": "TypeVarType", "fullname": "collections._T", "id": 1, "name": "_T", "upper_bound": "builtins.object", "values": [], "variance": 0}], "type_ref": "collections.UserList"}], "bound_args": [], "def_extras": {"first_arg": "self"}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "reverse of UserList", "ret_type": {".class": "NoneTyp"}, "variables": []}}}, "sort": {".class": "SymbolTableNode", "kind": "Mdef", "node": {".class": "FuncDef", "arg_kinds": [0, 2, 4], "arg_names": ["self", "args", "kwds"], "flags": [], "fullname": "collections.UserList.sort", "name": "sort", "type": {".class": "CallableType", "arg_kinds": [0, 2, 4], "arg_names": ["self", "args", "kwds"], "arg_types": [{".class": "Instance", "args": [{".class": "TypeVarType", "fullname": "collections._T", "id": 1, "name": "_T", "upper_bound": "builtins.object", "values": [], "variance": 0}], "type_ref": "collections.UserList"}, {".class": "AnyType", "missing_import_name": null, "source_any": null, "type_of_any": 2}, {".class": "AnyType", "missing_import_name": null, "source_any": null, "type_of_any": 2}], "bound_args": [], "def_extras": {"first_arg": "self"}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "sort of UserList", "ret_type": {".class": "NoneTyp"}, "variables": []}}}}, "tuple_type": null, "type_vars": ["_T"], "typeddict_type": null}}, "UserString": {".class": "SymbolTableNode", "kind": "Gdef", "node": {".class": "TypeInfo", "_promote": null, "abstract_attributes": [], "bases": [{".class": "Instance", "args": ["builtins.str"], "type_ref": "typing.Sequence"}], "declared_metaclass": null, "defn": {".class": "ClassDef", "fullname": "collections.UserString", "name": "UserString", "type_vars": []}, "flags": [], "fullname": "collections.UserString", "metaclass_type": "abc.ABCMeta", "metadata": {}, "module_name": "collections", "mro": ["collections.UserString", "typing.Sequence", "typing.Collection", "typing.Iterable", "typing.Container", "typing.Reversible", "builtins.object"], "names": {".class": "SymbolTable", "__add__": {".class": "SymbolTableNode", "kind": "Mdef", "node": {".class": "FuncDef", "arg_kinds": [0, 0], "arg_names": ["self", "other"], "flags": [], "fullname": "collections.UserString.__add__", "name": "__add__", "type": {".class": "CallableType", "arg_kinds": [0, 0], "arg_names": [null, null], "arg_types": [{".class": "TypeVarType", "fullname": "collections._UserStringT", "id": -1, "name": "_UserStringT", "upper_bound": "collections.UserString", "values": [], "variance": 0}, "builtins.object"], "bound_args": [], "def_extras": {"first_arg": "self"}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "__add__ of UserString", "ret_type": {".class": "TypeVarType", "fullname": "collections._UserStringT", "id": -1, "name": "_UserStringT", "upper_bound": "collections.UserString", "values": [], "variance": 0}, "variables": [{".class": "TypeVarDef", "fullname": "collections._UserStringT", "id": -1, "name": "_UserStringT", "upper_bound": "collections.UserString", "values": [], "variance": 0}]}}}, "__complex__": {".class": "SymbolTableNode", "kind": "Mdef", "node": {".class": "FuncDef", "arg_kinds": [0], "arg_names": ["self"], "flags": [], "fullname": "collections.UserString.__complex__", "name": "__complex__", "type": {".class": "CallableType", "arg_kinds": [0], "arg_names": [null], "arg_types": ["collections.UserString"], "bound_args": [], "def_extras": {"first_arg": "self"}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "__complex__ of UserString", "ret_type": "builtins.complex", "variables": []}}}, "__contains__": {".class": "SymbolTableNode", "kind": "Mdef", "node": {".class": "FuncDef", "arg_kinds": [0, 0], "arg_names": ["self", "char"], "flags": [], "fullname": "collections.UserString.__contains__", "name": "__contains__", "type": {".class": "CallableType", "arg_kinds": [0, 0], "arg_names": [null, null], "arg_types": ["collections.UserString", "builtins.object"], "bound_args": [], "def_extras": {"first_arg": "self"}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "__contains__ of UserString", "ret_type": "builtins.bool", "variables": []}}}, "__float__": {".class": "SymbolTableNode", "kind": "Mdef", "node": {".class": "FuncDef", "arg_kinds": [0], "arg_names": ["self"], "flags": [], "fullname": "collections.UserString.__float__", "name": "__float__", "type": {".class": "CallableType", "arg_kinds": [0], "arg_names": [null], "arg_types": ["collections.UserString"], "bound_args": [], "def_extras": {"first_arg": "self"}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "__float__ of UserString", "ret_type": "builtins.float", "variables": []}}}, "__ge__": {".class": "SymbolTableNode", "kind": "Mdef", "node": {".class": "FuncDef", "arg_kinds": [0, 0], "arg_names": ["self", "string"], "flags": [], "fullname": "collections.UserString.__ge__", "name": "__ge__", "type": {".class": "CallableType", "arg_kinds": [0, 0], "arg_names": [null, null], "arg_types": ["collections.UserString", {".class": "UnionType", "items": ["builtins.str", "collections.UserString"]}], "bound_args": [], "def_extras": {"first_arg": "self"}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "__ge__ of UserString", "ret_type": "builtins.bool", "variables": []}}}, "__getitem__": {".class": "SymbolTableNode", "kind": "Mdef", "node": {".class": "FuncDef", "arg_kinds": [0, 0], "arg_names": ["self", "i"], "flags": [], "fullname": "collections.UserString.__getitem__", "name": "__getitem__", "type": {".class": "CallableType", "arg_kinds": [0, 0], "arg_names": [null, null], "arg_types": [{".class": "TypeVarType", "fullname": "collections._UserStringT", "id": -1, "name": "_UserStringT", "upper_bound": "collections.UserString", "values": [], "variance": 0}, {".class": "UnionType", "items": ["builtins.int", "builtins.slice"]}], "bound_args": [], "def_extras": {"first_arg": "self"}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "__getitem__ of UserString", "ret_type": {".class": "TypeVarType", "fullname": "collections._UserStringT", "id": -1, "name": "_UserStringT", "upper_bound": "collections.UserString", "values": [], "variance": 0}, "variables": [{".class": "TypeVarDef", "fullname": "collections._UserStringT", "id": -1, "name": "_UserStringT", "upper_bound": "collections.UserString", "values": [], "variance": 0}]}}}, "__getnewargs__": {".class": "SymbolTableNode", "kind": "Mdef", "node": {".class": "FuncDef", "arg_kinds": [0], "arg_names": ["self"], "flags": ["is_conditional"], "fullname": "collections.UserString.__getnewargs__", "name": "__getnewargs__", "type": {".class": "CallableType", "arg_kinds": [0], "arg_names": ["self"], "arg_types": ["collections.UserString"], "bound_args": [], "def_extras": {"first_arg": "self"}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "__getnewargs__ of UserString", "ret_type": {".class": "TupleType", "fallback": {".class": "Instance", "args": [{".class": "AnyType", "missing_import_name": null, "source_any": null, "type_of_any": 6}], "type_ref": "builtins.tuple"}, "implicit": false, "items": ["builtins.str"]}, "variables": []}}}, "__gt__": {".class": "SymbolTableNode", "kind": "Mdef", "node": {".class": "FuncDef", "arg_kinds": [0, 0], "arg_names": ["self", "string"], "flags": [], "fullname": "collections.UserString.__gt__", "name": "__gt__", "type": {".class": "CallableType", "arg_kinds": [0, 0], "arg_names": [null, null], "arg_types": ["collections.UserString", {".class": "UnionType", "items": ["builtins.str", "collections.UserString"]}], "bound_args": [], "def_extras": {"first_arg": "self"}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "__gt__ of UserString", "ret_type": "builtins.bool", "variables": []}}}, "__init__": {".class": "SymbolTableNode", "kind": "Mdef", "node": {".class": "FuncDef", "arg_kinds": [0, 0], "arg_names": ["self", "seq"], "flags": [], "fullname": "collections.UserString.__init__", "name": "__init__", "type": {".class": "CallableType", "arg_kinds": [0, 0], "arg_names": ["self", "seq"], "arg_types": ["collections.UserString", "builtins.object"], "bound_args": [], "def_extras": {"first_arg": "self"}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "__init__ of UserString", "ret_type": {".class": "NoneTyp"}, "variables": []}}}, "__int__": {".class": "SymbolTableNode", "kind": "Mdef", "node": {".class": "FuncDef", "arg_kinds": [0], "arg_names": ["self"], "flags": [], "fullname": "collections.UserString.__int__", "name": "__int__", "type": {".class": "CallableType", "arg_kinds": [0], "arg_names": [null], "arg_types": ["collections.UserString"], "bound_args": [], "def_extras": {"first_arg": "self"}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "__int__ of UserString", "ret_type": "builtins.int", "variables": []}}}, "__le__": {".class": "SymbolTableNode", "kind": "Mdef", "node": {".class": "FuncDef", "arg_kinds": [0, 0], "arg_names": ["self", "string"], "flags": [], "fullname": "collections.UserString.__le__", "name": "__le__", "type": {".class": "CallableType", "arg_kinds": [0, 0], "arg_names": [null, null], "arg_types": ["collections.UserString", {".class": "UnionType", "items": ["builtins.str", "collections.UserString"]}], "bound_args": [], "def_extras": {"first_arg": "self"}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "__le__ of UserString", "ret_type": "builtins.bool", "variables": []}}}, "__len__": {".class": "SymbolTableNode", "kind": "Mdef", "node": {".class": "FuncDef", "arg_kinds": [0], "arg_names": ["self"], "flags": [], "fullname": "collections.UserString.__len__", "name": "__len__", "type": {".class": "CallableType", "arg_kinds": [0], "arg_names": [null], "arg_types": ["collections.UserString"], "bound_args": [], "def_extras": {"first_arg": "self"}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "__len__ of UserString", "ret_type": "builtins.int", "variables": []}}}, "__lt__": {".class": "SymbolTableNode", "kind": "Mdef", "node": {".class": "FuncDef", "arg_kinds": [0, 0], "arg_names": ["self", "string"], "flags": [], "fullname": "collections.UserString.__lt__", "name": "__lt__", "type": {".class": "CallableType", "arg_kinds": [0, 0], "arg_names": [null, null], "arg_types": ["collections.UserString", {".class": "UnionType", "items": ["builtins.str", "collections.UserString"]}], "bound_args": [], "def_extras": {"first_arg": "self"}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "__lt__ of UserString", "ret_type": "builtins.bool", "variables": []}}}, "__mod__": {".class": "SymbolTableNode", "kind": "Mdef", "node": {".class": "FuncDef", "arg_kinds": [0, 0], "arg_names": ["self", "args"], "flags": [], "fullname": "collections.UserString.__mod__", "name": "__mod__", "type": {".class": "CallableType", "arg_kinds": [0, 0], "arg_names": [null, null], "arg_types": [{".class": "TypeVarType", "fullname": "collections._UserStringT", "id": -1, "name": "_UserStringT", "upper_bound": "collections.UserString", "values": [], "variance": 0}, {".class": "AnyType", "missing_import_name": null, "source_any": null, "type_of_any": 2}], "bound_args": [], "def_extras": {"first_arg": "self"}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "__mod__ of UserString", "ret_type": {".class": "TypeVarType", "fullname": "collections._UserStringT", "id": -1, "name": "_UserStringT", "upper_bound": "collections.UserString", "values": [], "variance": 0}, "variables": [{".class": "TypeVarDef", "fullname": "collections._UserStringT", "id": -1, "name": "_UserStringT", "upper_bound": "collections.UserString", "values": [], "variance": 0}]}}}, "__mul__": {".class": "SymbolTableNode", "kind": "Mdef", "node": {".class": "FuncDef", "arg_kinds": [0, 0], "arg_names": ["self", "n"], "flags": [], "fullname": "collections.UserString.__mul__", "name": "__mul__", "type": {".class": "CallableType", "arg_kinds": [0, 0], "arg_names": [null, null], "arg_types": [{".class": "TypeVarType", "fullname": "collections._UserStringT", "id": -1, "name": "_UserStringT", "upper_bound": "collections.UserString", "values": [], "variance": 0}, "builtins.int"], "bound_args": [], "def_extras": {"first_arg": "self"}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "__mul__ of UserString", "ret_type": {".class": "TypeVarType", "fullname": "collections._UserStringT", "id": -1, "name": "_UserStringT", "upper_bound": "collections.UserString", "values": [], "variance": 0}, "variables": [{".class": "TypeVarDef", "fullname": "collections._UserStringT", "id": -1, "name": "_UserStringT", "upper_bound": "collections.UserString", "values": [], "variance": 0}]}}}, "capitalize": {".class": "SymbolTableNode", "kind": "Mdef", "node": {".class": "FuncDef", "arg_kinds": [0], "arg_names": ["self"], "flags": [], "fullname": "collections.UserString.capitalize", "name": "capitalize", "type": {".class": "CallableType", "arg_kinds": [0], "arg_names": ["self"], "arg_types": [{".class": "TypeVarType", "fullname": "collections._UserStringT", "id": -1, "name": "_UserStringT", "upper_bound": "collections.UserString", "values": [], "variance": 0}], "bound_args": [], "def_extras": {"first_arg": "self"}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "capitalize of UserString", "ret_type": {".class": "TypeVarType", "fullname": "collections._UserStringT", "id": -1, "name": "_UserStringT", "upper_bound": "collections.UserString", "values": [], "variance": 0}, "variables": [{".class": "TypeVarDef", "fullname": "collections._UserStringT", "id": -1, "name": "_UserStringT", "upper_bound": "collections.UserString", "values": [], "variance": 0}]}}}, "casefold": {".class": "SymbolTableNode", "kind": "Mdef", "node": {".class": "FuncDef", "arg_kinds": [0], "arg_names": ["self"], "flags": ["is_conditional"], "fullname": "collections.UserString.casefold", "name": "casefold", "type": {".class": "CallableType", "arg_kinds": [0], "arg_names": ["self"], "arg_types": [{".class": "TypeVarType", "fullname": "collections._UserStringT", "id": -1, "name": "_UserStringT", "upper_bound": "collections.UserString", "values": [], "variance": 0}], "bound_args": [], "def_extras": {"first_arg": "self"}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "casefold of UserString", "ret_type": {".class": "TypeVarType", "fullname": "collections._UserStringT", "id": -1, "name": "_UserStringT", "upper_bound": "collections.UserString", "values": [], "variance": 0}, "variables": [{".class": "TypeVarDef", "fullname": "collections._UserStringT", "id": -1, "name": "_UserStringT", "upper_bound": "collections.UserString", "values": [], "variance": 0}]}}}, "center": {".class": "SymbolTableNode", "kind": "Mdef", "node": {".class": "FuncDef", "arg_kinds": [0, 0, 2], "arg_names": ["self", "width", "args"], "flags": [], "fullname": "collections.UserString.center", "name": "center", "type": {".class": "CallableType", "arg_kinds": [0, 0, 2], "arg_names": ["self", "width", "args"], "arg_types": [{".class": "TypeVarType", "fullname": "collections._UserStringT", "id": -1, "name": "_UserStringT", "upper_bound": "collections.UserString", "values": [], "variance": 0}, "builtins.int", {".class": "AnyType", "missing_import_name": null, "source_any": null, "type_of_any": 2}], "bound_args": [], "def_extras": {"first_arg": "self"}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "center of UserString", "ret_type": {".class": "TypeVarType", "fullname": "collections._UserStringT", "id": -1, "name": "_UserStringT", "upper_bound": "collections.UserString", "values": [], "variance": 0}, "variables": [{".class": "TypeVarDef", "fullname": "collections._UserStringT", "id": -1, "name": "_UserStringT", "upper_bound": "collections.UserString", "values": [], "variance": 0}]}}}, "count": {".class": "SymbolTableNode", "kind": "Mdef", "node": {".class": "FuncDef", "arg_kinds": [0, 0, 1, 1], "arg_names": ["self", "sub", "start", "end"], "flags": [], "fullname": "collections.UserString.count", "name": "count", "type": {".class": "CallableType", "arg_kinds": [0, 0, 1, 1], "arg_names": ["self", "sub", "start", "end"], "arg_types": ["collections.UserString", {".class": "UnionType", "items": ["builtins.str", "collections.UserString"]}, "builtins.int", "builtins.int"], "bound_args": [], "def_extras": {"first_arg": "self"}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "count of UserString", "ret_type": "builtins.int", "variables": []}}}, "data": {".class": "SymbolTableNode", "kind": "Mdef", "node": {".class": "Var", "flags": ["is_initialized_in_class"], "fullname": "collections.UserString.data", "name": "data", "type": "builtins.str"}}, "encode": {".class": "SymbolTableNode", "kind": "Mdef", "node": {".class": "FuncDef", "arg_kinds": [0, 1, 1], "arg_names": ["self", "encoding", "errors"], "flags": [], "fullname": "collections.UserString.encode", "name": "encode", "type": {".class": "CallableType", "arg_kinds": [0, 1, 1], "arg_names": ["self", "encoding", "errors"], "arg_types": [{".class": "TypeVarType", "fullname": "collections._UserStringT", "id": -1, "name": "_UserStringT", "upper_bound": "collections.UserString", "values": [], "variance": 0}, {".class": "UnionType", "items": ["builtins.str", {".class": "NoneTyp"}]}, {".class": "UnionType", "items": ["builtins.str", {".class": "NoneTyp"}]}], "bound_args": [], "def_extras": {"first_arg": "self"}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "encode of UserString", "ret_type": {".class": "TypeVarType", "fullname": "collections._UserStringT", "id": -1, "name": "_UserStringT", "upper_bound": "collections.UserString", "values": [], "variance": 0}, "variables": [{".class": "TypeVarDef", "fullname": "collections._UserStringT", "id": -1, "name": "_UserStringT", "upper_bound": "collections.UserString", "values": [], "variance": 0}]}}}, "endswith": {".class": "SymbolTableNode", "kind": "Mdef", "node": {".class": "FuncDef", "arg_kinds": [0, 0, 1, 1], "arg_names": ["self", "suffix", "start", "end"], "flags": [], "fullname": "collections.UserString.endswith", "name": "endswith", "type": {".class": "CallableType", "arg_kinds": [0, 0, 1, 1], "arg_names": ["self", "suffix", "start", "end"], "arg_types": ["collections.UserString", {".class": "UnionType", "items": ["builtins.str", {".class": "Instance", "args": ["builtins.str"], "type_ref": "builtins.tuple"}]}, "builtins.int", "builtins.int"], "bound_args": [], "def_extras": {"first_arg": "self"}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "endswith of UserString", "ret_type": "builtins.bool", "variables": []}}}, "expandtabs": {".class": "SymbolTableNode", "kind": "Mdef", "node": {".class": "FuncDef", "arg_kinds": [0, 1], "arg_names": ["self", "tabsize"], "flags": [], "fullname": "collections.UserString.expandtabs", "name": "expandtabs", "type": {".class": "CallableType", "arg_kinds": [0, 1], "arg_names": ["self", "tabsize"], "arg_types": [{".class": "TypeVarType", "fullname": "collections._UserStringT", "id": -1, "name": "_UserStringT", "upper_bound": "collections.UserString", "values": [], "variance": 0}, "builtins.int"], "bound_args": [], "def_extras": {"first_arg": "self"}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "expandtabs of UserString", "ret_type": {".class": "TypeVarType", "fullname": "collections._UserStringT", "id": -1, "name": "_UserStringT", "upper_bound": "collections.UserString", "values": [], "variance": 0}, "variables": [{".class": "TypeVarDef", "fullname": "collections._UserStringT", "id": -1, "name": "_UserStringT", "upper_bound": "collections.UserString", "values": [], "variance": 0}]}}}, "find": {".class": "SymbolTableNode", "kind": "Mdef", "node": {".class": "FuncDef", "arg_kinds": [0, 0, 1, 1], "arg_names": ["self", "sub", "start", "end"], "flags": [], "fullname": "collections.UserString.find", "name": "find", "type": {".class": "CallableType", "arg_kinds": [0, 0, 1, 1], "arg_names": ["self", "sub", "start", "end"], "arg_types": ["collections.UserString", {".class": "UnionType", "items": ["builtins.str", "collections.UserString"]}, "builtins.int", "builtins.int"], "bound_args": [], "def_extras": {"first_arg": "self"}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "find of UserString", "ret_type": "builtins.int", "variables": []}}}, "format": {".class": "SymbolTableNode", "kind": "Mdef", "node": {".class": "FuncDef", "arg_kinds": [0, 2, 4], "arg_names": ["self", "args", "kwds"], "flags": [], "fullname": "collections.UserString.format", "name": "format", "type": {".class": "CallableType", "arg_kinds": [0, 2, 4], "arg_names": ["self", "args", "kwds"], "arg_types": ["collections.UserString", {".class": "AnyType", "missing_import_name": null, "source_any": null, "type_of_any": 2}, {".class": "AnyType", "missing_import_name": null, "source_any": null, "type_of_any": 2}], "bound_args": [], "def_extras": {"first_arg": "self"}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "format of UserString", "ret_type": "builtins.str", "variables": []}}}, "format_map": {".class": "SymbolTableNode", "kind": "Mdef", "node": {".class": "FuncDef", "arg_kinds": [0, 0], "arg_names": ["self", "mapping"], "flags": ["is_conditional"], "fullname": "collections.UserString.format_map", "name": "format_map", "type": {".class": "CallableType", "arg_kinds": [0, 0], "arg_names": ["self", "mapping"], "arg_types": ["collections.UserString", {".class": "Instance", "args": ["builtins.str", {".class": "AnyType", "missing_import_name": null, "source_any": null, "type_of_any": 2}], "type_ref": "typing.Mapping"}], "bound_args": [], "def_extras": {"first_arg": "self"}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "format_map of UserString", "ret_type": "builtins.str", "variables": []}}}, "index": {".class": "SymbolTableNode", "kind": "Mdef", "node": {".class": "FuncDef", "arg_kinds": [0, 0, 1, 1], "arg_names": ["self", "sub", "start", "end"], "flags": [], "fullname": "collections.UserString.index", "name": "index", "type": {".class": "CallableType", "arg_kinds": [0, 0, 1, 1], "arg_names": ["self", "sub", "start", "end"], "arg_types": ["collections.UserString", "builtins.str", "builtins.int", "builtins.int"], "bound_args": [], "def_extras": {"first_arg": "self"}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "index of UserString", "ret_type": "builtins.int", "variables": []}}}, "isalnum": {".class": "SymbolTableNode", "kind": "Mdef", "node": {".class": "FuncDef", "arg_kinds": [0], "arg_names": ["self"], "flags": [], "fullname": "collections.UserString.isalnum", "name": "isalnum", "type": {".class": "CallableType", "arg_kinds": [0], "arg_names": ["self"], "arg_types": ["collections.UserString"], "bound_args": [], "def_extras": {"first_arg": "self"}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "isalnum of UserString", "ret_type": "builtins.bool", "variables": []}}}, "isalpha": {".class": "SymbolTableNode", "kind": "Mdef", "node": {".class": "FuncDef", "arg_kinds": [0], "arg_names": ["self"], "flags": [], "fullname": "collections.UserString.isalpha", "name": "isalpha", "type": {".class": "CallableType", "arg_kinds": [0], "arg_names": ["self"], "arg_types": ["collections.UserString"], "bound_args": [], "def_extras": {"first_arg": "self"}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "isalpha of UserString", "ret_type": "builtins.bool", "variables": []}}}, "isdecimal": {".class": "SymbolTableNode", "kind": "Mdef", "node": {".class": "FuncDef", "arg_kinds": [0], "arg_names": ["self"], "flags": [], "fullname": "collections.UserString.isdecimal", "name": "isdecimal", "type": {".class": "CallableType", "arg_kinds": [0], "arg_names": ["self"], "arg_types": ["collections.UserString"], "bound_args": [], "def_extras": {"first_arg": "self"}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "isdecimal of UserString", "ret_type": "builtins.bool", "variables": []}}}, "isdigit": {".class": "SymbolTableNode", "kind": "Mdef", "node": {".class": "FuncDef", "arg_kinds": [0], "arg_names": ["self"], "flags": [], "fullname": "collections.UserString.isdigit", "name": "isdigit", "type": {".class": "CallableType", "arg_kinds": [0], "arg_names": ["self"], "arg_types": ["collections.UserString"], "bound_args": [], "def_extras": {"first_arg": "self"}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "isdigit of UserString", "ret_type": "builtins.bool", "variables": []}}}, "isidentifier": {".class": "SymbolTableNode", "kind": "Mdef", "node": {".class": "FuncDef", "arg_kinds": [0], "arg_names": ["self"], "flags": [], "fullname": "collections.UserString.isidentifier", "name": "isidentifier", "type": {".class": "CallableType", "arg_kinds": [0], "arg_names": ["self"], "arg_types": ["collections.UserString"], "bound_args": [], "def_extras": {"first_arg": "self"}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "isidentifier of UserString", "ret_type": "builtins.bool", "variables": []}}}, "islower": {".class": "SymbolTableNode", "kind": "Mdef", "node": {".class": "FuncDef", "arg_kinds": [0], "arg_names": ["self"], "flags": [], "fullname": "collections.UserString.islower", "name": "islower", "type": {".class": "CallableType", "arg_kinds": [0], "arg_names": ["self"], "arg_types": ["collections.UserString"], "bound_args": [], "def_extras": {"first_arg": "self"}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "islower of UserString", "ret_type": "builtins.bool", "variables": []}}}, "isnumeric": {".class": "SymbolTableNode", "kind": "Mdef", "node": {".class": "FuncDef", "arg_kinds": [0], "arg_names": ["self"], "flags": [], "fullname": "collections.UserString.isnumeric", "name": "isnumeric", "type": {".class": "CallableType", "arg_kinds": [0], "arg_names": ["self"], "arg_types": ["collections.UserString"], "bound_args": [], "def_extras": {"first_arg": "self"}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "isnumeric of UserString", "ret_type": "builtins.bool", "variables": []}}}, "isprintable": {".class": "SymbolTableNode", "kind": "Mdef", "node": {".class": "FuncDef", "arg_kinds": [0], "arg_names": ["self"], "flags": ["is_conditional"], "fullname": "collections.UserString.isprintable", "name": "isprintable", "type": {".class": "CallableType", "arg_kinds": [0], "arg_names": ["self"], "arg_types": ["collections.UserString"], "bound_args": [], "def_extras": {"first_arg": "self"}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "isprintable of UserString", "ret_type": "builtins.bool", "variables": []}}}, "isspace": {".class": "SymbolTableNode", "kind": "Mdef", "node": {".class": "FuncDef", "arg_kinds": [0], "arg_names": ["self"], "flags": [], "fullname": "collections.UserString.isspace", "name": "isspace", "type": {".class": "CallableType", "arg_kinds": [0], "arg_names": ["self"], "arg_types": ["collections.UserString"], "bound_args": [], "def_extras": {"first_arg": "self"}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "isspace of UserString", "ret_type": "builtins.bool", "variables": []}}}, "istitle": {".class": "SymbolTableNode", "kind": "Mdef", "node": {".class": "FuncDef", "arg_kinds": [0], "arg_names": ["self"], "flags": [], "fullname": "collections.UserString.istitle", "name": "istitle", "type": {".class": "CallableType", "arg_kinds": [0], "arg_names": ["self"], "arg_types": ["collections.UserString"], "bound_args": [], "def_extras": {"first_arg": "self"}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "istitle of UserString", "ret_type": "builtins.bool", "variables": []}}}, "isupper": {".class": "SymbolTableNode", "kind": "Mdef", "node": {".class": "FuncDef", "arg_kinds": [0], "arg_names": ["self"], "flags": [], "fullname": "collections.UserString.isupper", "name": "isupper", "type": {".class": "CallableType", "arg_kinds": [0], "arg_names": ["self"], "arg_types": ["collections.UserString"], "bound_args": [], "def_extras": {"first_arg": "self"}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "isupper of UserString", "ret_type": "builtins.bool", "variables": []}}}, "join": {".class": "SymbolTableNode", "kind": "Mdef", "node": {".class": "FuncDef", "arg_kinds": [0, 0], "arg_names": ["self", "seq"], "flags": [], "fullname": "collections.UserString.join", "name": "join", "type": {".class": "CallableType", "arg_kinds": [0, 0], "arg_names": ["self", "seq"], "arg_types": ["collections.UserString", {".class": "Instance", "args": ["builtins.str"], "type_ref": "typing.Iterable"}], "bound_args": [], "def_extras": {"first_arg": "self"}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "join of UserString", "ret_type": "builtins.str", "variables": []}}}, "ljust": {".class": "SymbolTableNode", "kind": "Mdef", "node": {".class": "FuncDef", "arg_kinds": [0, 0, 2], "arg_names": ["self", "width", "args"], "flags": [], "fullname": "collections.UserString.ljust", "name": "ljust", "type": {".class": "CallableType", "arg_kinds": [0, 0, 2], "arg_names": ["self", "width", "args"], "arg_types": [{".class": "TypeVarType", "fullname": "collections._UserStringT", "id": -1, "name": "_UserStringT", "upper_bound": "collections.UserString", "values": [], "variance": 0}, "builtins.int", {".class": "AnyType", "missing_import_name": null, "source_any": null, "type_of_any": 2}], "bound_args": [], "def_extras": {"first_arg": "self"}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "ljust of UserString", "ret_type": {".class": "TypeVarType", "fullname": "collections._UserStringT", "id": -1, "name": "_UserStringT", "upper_bound": "collections.UserString", "values": [], "variance": 0}, "variables": [{".class": "TypeVarDef", "fullname": "collections._UserStringT", "id": -1, "name": "_UserStringT", "upper_bound": "collections.UserString", "values": [], "variance": 0}]}}}, "lower": {".class": "SymbolTableNode", "kind": "Mdef", "node": {".class": "FuncDef", "arg_kinds": [0], "arg_names": ["self"], "flags": [], "fullname": "collections.UserString.lower", "name": "lower", "type": {".class": "CallableType", "arg_kinds": [0], "arg_names": ["self"], "arg_types": [{".class": "TypeVarType", "fullname": "collections._UserStringT", "id": -1, "name": "_UserStringT", "upper_bound": "collections.UserString", "values": [], "variance": 0}], "bound_args": [], "def_extras": {"first_arg": "self"}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "lower of UserString", "ret_type": {".class": "TypeVarType", "fullname": "collections._UserStringT", "id": -1, "name": "_UserStringT", "upper_bound": "collections.UserString", "values": [], "variance": 0}, "variables": [{".class": "TypeVarDef", "fullname": "collections._UserStringT", "id": -1, "name": "_UserStringT", "upper_bound": "collections.UserString", "values": [], "variance": 0}]}}}, "lstrip": {".class": "SymbolTableNode", "kind": "Mdef", "node": {".class": "FuncDef", "arg_kinds": [0, 1], "arg_names": ["self", "chars"], "flags": [], "fullname": "collections.UserString.lstrip", "name": "lstrip", "type": {".class": "CallableType", "arg_kinds": [0, 1], "arg_names": ["self", "chars"], "arg_types": [{".class": "TypeVarType", "fullname": "collections._UserStringT", "id": -1, "name": "_UserStringT", "upper_bound": "collections.UserString", "values": [], "variance": 0}, {".class": "UnionType", "items": ["builtins.str", {".class": "NoneTyp"}]}], "bound_args": [], "def_extras": {"first_arg": "self"}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "lstrip of UserString", "ret_type": {".class": "TypeVarType", "fullname": "collections._UserStringT", "id": -1, "name": "_UserStringT", "upper_bound": "collections.UserString", "values": [], "variance": 0}, "variables": [{".class": "TypeVarDef", "fullname": "collections._UserStringT", "id": -1, "name": "_UserStringT", "upper_bound": "collections.UserString", "values": [], "variance": 0}]}}}, "maketrans": {".class": "SymbolTableNode", "kind": "Mdef", "node": {".class": "OverloadedFuncDef", "flags": ["is_static"], "fullname": "collections.UserString.maketrans", "impl": null, "items": [{".class": "Decorator", "func": {".class": "FuncDef", "arg_kinds": [0], "arg_names": ["x"], "flags": ["is_static", "is_overload", "is_decorated", "is_conditional"], "fullname": "collections.UserString.maketrans", "name": "maketrans", "type": {".class": "CallableType", "arg_kinds": [0], "arg_names": ["x"], "arg_types": [{".class": "UnionType", "items": [{".class": "Instance", "args": ["builtins.int", {".class": "TypeVarType", "fullname": "collections._T", "id": -1, "name": "_T", "upper_bound": "builtins.object", "values": [], "variance": 0}], "type_ref": "builtins.dict"}, {".class": "Instance", "args": ["builtins.str", {".class": "TypeVarType", "fullname": "collections._T", "id": -1, "name": "_T", "upper_bound": "builtins.object", "values": [], "variance": 0}], "type_ref": "builtins.dict"}, {".class": "Instance", "args": [{".class": "UnionType", "items": ["builtins.str", "builtins.int"]}, {".class": "TypeVarType", "fullname": "collections._T", "id": -1, "name": "_T", "upper_bound": "builtins.object", "values": [], "variance": 0}], "type_ref": "builtins.dict"}]}], "bound_args": [], "def_extras": {"first_arg": null}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "maketrans of UserString", "ret_type": {".class": "Instance", "args": ["builtins.int", {".class": "TypeVarType", "fullname": "collections._T", "id": -1, "name": "_T", "upper_bound": "builtins.object", "values": [], "variance": 0}], "type_ref": "builtins.dict"}, "variables": [{".class": "TypeVarDef", "fullname": "collections._T", "id": -1, "name": "_T", "upper_bound": "builtins.object", "values": [], "variance": 0}]}}, "is_overload": true, "var": {".class": "Var", "flags": ["is_staticmethod"], "fullname": null, "name": "maketrans", "type": null}}, {".class": "Decorator", "func": {".class": "FuncDef", "arg_kinds": [0, 0, 1], "arg_names": ["x", "y", "z"], "flags": ["is_static", "is_overload", "is_decorated", "is_conditional"], "fullname": "collections.UserString.maketrans", "name": "maketrans", "type": {".class": "CallableType", "arg_kinds": [0, 0, 1], "arg_names": ["x", "y", "z"], "arg_types": ["builtins.str", "builtins.str", "builtins.str"], "bound_args": [], "def_extras": {"first_arg": null}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "maketrans of UserString", "ret_type": {".class": "Instance", "args": ["builtins.int", {".class": "UnionType", "items": ["builtins.int", {".class": "NoneTyp"}]}], "type_ref": "builtins.dict"}, "variables": []}}, "is_overload": true, "var": {".class": "Var", "flags": ["is_staticmethod"], "fullname": null, "name": "maketrans", "type": null}}], "type": {".class": "Overloaded", "items": [{".class": "CallableType", "arg_kinds": [0], "arg_names": ["x"], "arg_types": [{".class": "UnionType", "items": [{".class": "Instance", "args": ["builtins.int", {".class": "TypeVarType", "fullname": "collections._T", "id": -1, "name": "_T", "upper_bound": "builtins.object", "values": [], "variance": 0}], "type_ref": "builtins.dict"}, {".class": "Instance", "args": ["builtins.str", {".class": "TypeVarType", "fullname": "collections._T", "id": -1, "name": "_T", "upper_bound": "builtins.object", "values": [], "variance": 0}], "type_ref": "builtins.dict"}, {".class": "Instance", "args": [{".class": "UnionType", "items": ["builtins.str", "builtins.int"]}, {".class": "TypeVarType", "fullname": "collections._T", "id": -1, "name": "_T", "upper_bound": "builtins.object", "values": [], "variance": 0}], "type_ref": "builtins.dict"}]}], "bound_args": [], "def_extras": {"first_arg": null}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "maketrans of UserString", "ret_type": {".class": "Instance", "args": ["builtins.int", {".class": "TypeVarType", "fullname": "collections._T", "id": -1, "name": "_T", "upper_bound": "builtins.object", "values": [], "variance": 0}], "type_ref": "builtins.dict"}, "variables": [{".class": "TypeVarDef", "fullname": "collections._T", "id": -1, "name": "_T", "upper_bound": "builtins.object", "values": [], "variance": 0}]}, {".class": "CallableType", "arg_kinds": [0, 0, 1], "arg_names": ["x", "y", "z"], "arg_types": ["builtins.str", "builtins.str", "builtins.str"], "bound_args": [], "def_extras": {"first_arg": null}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "maketrans of UserString", "ret_type": {".class": "Instance", "args": ["builtins.int", {".class": "UnionType", "items": ["builtins.int", {".class": "NoneTyp"}]}], "type_ref": "builtins.dict"}, "variables": []}]}}}, "partition": {".class": "SymbolTableNode", "kind": "Mdef", "node": {".class": "FuncDef", "arg_kinds": [0, 0], "arg_names": ["self", "sep"], "flags": [], "fullname": "collections.UserString.partition", "name": "partition", "type": {".class": "CallableType", "arg_kinds": [0, 0], "arg_names": ["self", "sep"], "arg_types": ["collections.UserString", "builtins.str"], "bound_args": [], "def_extras": {"first_arg": "self"}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "partition of UserString", "ret_type": {".class": "TupleType", "fallback": {".class": "Instance", "args": [{".class": "AnyType", "missing_import_name": null, "source_any": null, "type_of_any": 6}], "type_ref": "builtins.tuple"}, "implicit": false, "items": ["builtins.str", "builtins.str", "builtins.str"]}, "variables": []}}}, "replace": {".class": "SymbolTableNode", "kind": "Mdef", "node": {".class": "FuncDef", "arg_kinds": [0, 0, 0, 1], "arg_names": ["self", "old", "new", "maxsplit"], "flags": [], "fullname": "collections.UserString.replace", "name": "replace", "type": {".class": "CallableType", "arg_kinds": [0, 0, 0, 1], "arg_names": ["self", "old", "new", "maxsplit"], "arg_types": [{".class": "TypeVarType", "fullname": "collections._UserStringT", "id": -1, "name": "_UserStringT", "upper_bound": "collections.UserString", "values": [], "variance": 0}, {".class": "UnionType", "items": ["builtins.str", "collections.UserString"]}, {".class": "UnionType", "items": ["builtins.str", "collections.UserString"]}, "builtins.int"], "bound_args": [], "def_extras": {"first_arg": "self"}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "replace of UserString", "ret_type": {".class": "TypeVarType", "fullname": "collections._UserStringT", "id": -1, "name": "_UserStringT", "upper_bound": "collections.UserString", "values": [], "variance": 0}, "variables": [{".class": "TypeVarDef", "fullname": "collections._UserStringT", "id": -1, "name": "_UserStringT", "upper_bound": "collections.UserString", "values": [], "variance": 0}]}}}, "rfind": {".class": "SymbolTableNode", "kind": "Mdef", "node": {".class": "FuncDef", "arg_kinds": [0, 0, 1, 1], "arg_names": ["self", "sub", "start", "end"], "flags": [], "fullname": "collections.UserString.rfind", "name": "rfind", "type": {".class": "CallableType", "arg_kinds": [0, 0, 1, 1], "arg_names": ["self", "sub", "start", "end"], "arg_types": ["collections.UserString", {".class": "UnionType", "items": ["builtins.str", "collections.UserString"]}, "builtins.int", "builtins.int"], "bound_args": [], "def_extras": {"first_arg": "self"}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "rfind of UserString", "ret_type": "builtins.int", "variables": []}}}, "rindex": {".class": "SymbolTableNode", "kind": "Mdef", "node": {".class": "FuncDef", "arg_kinds": [0, 0, 1, 1], "arg_names": ["self", "sub", "start", "end"], "flags": [], "fullname": "collections.UserString.rindex", "name": "rindex", "type": {".class": "CallableType", "arg_kinds": [0, 0, 1, 1], "arg_names": ["self", "sub", "start", "end"], "arg_types": ["collections.UserString", {".class": "UnionType", "items": ["builtins.str", "collections.UserString"]}, "builtins.int", "builtins.int"], "bound_args": [], "def_extras": {"first_arg": "self"}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "rindex of UserString", "ret_type": "builtins.int", "variables": []}}}, "rjust": {".class": "SymbolTableNode", "kind": "Mdef", "node": {".class": "FuncDef", "arg_kinds": [0, 0, 2], "arg_names": ["self", "width", "args"], "flags": [], "fullname": "collections.UserString.rjust", "name": "rjust", "type": {".class": "CallableType", "arg_kinds": [0, 0, 2], "arg_names": ["self", "width", "args"], "arg_types": [{".class": "TypeVarType", "fullname": "collections._UserStringT", "id": -1, "name": "_UserStringT", "upper_bound": "collections.UserString", "values": [], "variance": 0}, "builtins.int", {".class": "AnyType", "missing_import_name": null, "source_any": null, "type_of_any": 2}], "bound_args": [], "def_extras": {"first_arg": "self"}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "rjust of UserString", "ret_type": {".class": "TypeVarType", "fullname": "collections._UserStringT", "id": -1, "name": "_UserStringT", "upper_bound": "collections.UserString", "values": [], "variance": 0}, "variables": [{".class": "TypeVarDef", "fullname": "collections._UserStringT", "id": -1, "name": "_UserStringT", "upper_bound": "collections.UserString", "values": [], "variance": 0}]}}}, "rpartition": {".class": "SymbolTableNode", "kind": "Mdef", "node": {".class": "FuncDef", "arg_kinds": [0, 0], "arg_names": ["self", "sep"], "flags": [], "fullname": "collections.UserString.rpartition", "name": "rpartition", "type": {".class": "CallableType", "arg_kinds": [0, 0], "arg_names": ["self", "sep"], "arg_types": ["collections.UserString", "builtins.str"], "bound_args": [], "def_extras": {"first_arg": "self"}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "rpartition of UserString", "ret_type": {".class": "TupleType", "fallback": {".class": "Instance", "args": [{".class": "AnyType", "missing_import_name": null, "source_any": null, "type_of_any": 6}], "type_ref": "builtins.tuple"}, "implicit": false, "items": ["builtins.str", "builtins.str", "builtins.str"]}, "variables": []}}}, "rsplit": {".class": "SymbolTableNode", "kind": "Mdef", "node": {".class": "FuncDef", "arg_kinds": [0, 1, 1], "arg_names": ["self", "sep", "maxsplit"], "flags": [], "fullname": "collections.UserString.rsplit", "name": "rsplit", "type": {".class": "CallableType", "arg_kinds": [0, 1, 1], "arg_names": ["self", "sep", "maxsplit"], "arg_types": ["collections.UserString", {".class": "UnionType", "items": ["builtins.str", {".class": "NoneTyp"}]}, "builtins.int"], "bound_args": [], "def_extras": {"first_arg": "self"}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "rsplit of UserString", "ret_type": {".class": "Instance", "args": ["builtins.str"], "type_ref": "builtins.list"}, "variables": []}}}, "rstrip": {".class": "SymbolTableNode", "kind": "Mdef", "node": {".class": "FuncDef", "arg_kinds": [0, 1], "arg_names": ["self", "chars"], "flags": [], "fullname": "collections.UserString.rstrip", "name": "rstrip", "type": {".class": "CallableType", "arg_kinds": [0, 1], "arg_names": ["self", "chars"], "arg_types": [{".class": "TypeVarType", "fullname": "collections._UserStringT", "id": -1, "name": "_UserStringT", "upper_bound": "collections.UserString", "values": [], "variance": 0}, {".class": "UnionType", "items": ["builtins.str", {".class": "NoneTyp"}]}], "bound_args": [], "def_extras": {"first_arg": "self"}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "rstrip of UserString", "ret_type": {".class": "TypeVarType", "fullname": "collections._UserStringT", "id": -1, "name": "_UserStringT", "upper_bound": "collections.UserString", "values": [], "variance": 0}, "variables": [{".class": "TypeVarDef", "fullname": "collections._UserStringT", "id": -1, "name": "_UserStringT", "upper_bound": "collections.UserString", "values": [], "variance": 0}]}}}, "split": {".class": "SymbolTableNode", "kind": "Mdef", "node": {".class": "FuncDef", "arg_kinds": [0, 1, 1], "arg_names": ["self", "sep", "maxsplit"], "flags": [], "fullname": "collections.UserString.split", "name": "split", "type": {".class": "CallableType", "arg_kinds": [0, 1, 1], "arg_names": ["self", "sep", "maxsplit"], "arg_types": ["collections.UserString", {".class": "UnionType", "items": ["builtins.str", {".class": "NoneTyp"}]}, "builtins.int"], "bound_args": [], "def_extras": {"first_arg": "self"}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "split of UserString", "ret_type": {".class": "Instance", "args": ["builtins.str"], "type_ref": "builtins.list"}, "variables": []}}}, "splitlines": {".class": "SymbolTableNode", "kind": "Mdef", "node": {".class": "FuncDef", "arg_kinds": [0, 1], "arg_names": ["self", "keepends"], "flags": [], "fullname": "collections.UserString.splitlines", "name": "splitlines", "type": {".class": "CallableType", "arg_kinds": [0, 1], "arg_names": ["self", "keepends"], "arg_types": ["collections.UserString", "builtins.bool"], "bound_args": [], "def_extras": {"first_arg": "self"}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "splitlines of UserString", "ret_type": {".class": "Instance", "args": ["builtins.str"], "type_ref": "builtins.list"}, "variables": []}}}, "startswith": {".class": "SymbolTableNode", "kind": "Mdef", "node": {".class": "FuncDef", "arg_kinds": [0, 0, 1, 1], "arg_names": ["self", "prefix", "start", "end"], "flags": [], "fullname": "collections.UserString.startswith", "name": "startswith", "type": {".class": "CallableType", "arg_kinds": [0, 0, 1, 1], "arg_names": ["self", "prefix", "start", "end"], "arg_types": ["collections.UserString", {".class": "UnionType", "items": ["builtins.str", {".class": "Instance", "args": ["builtins.str"], "type_ref": "builtins.tuple"}]}, "builtins.int", "builtins.int"], "bound_args": [], "def_extras": {"first_arg": "self"}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "startswith of UserString", "ret_type": "builtins.bool", "variables": []}}}, "strip": {".class": "SymbolTableNode", "kind": "Mdef", "node": {".class": "FuncDef", "arg_kinds": [0, 1], "arg_names": ["self", "chars"], "flags": [], "fullname": "collections.UserString.strip", "name": "strip", "type": {".class": "CallableType", "arg_kinds": [0, 1], "arg_names": ["self", "chars"], "arg_types": [{".class": "TypeVarType", "fullname": "collections._UserStringT", "id": -1, "name": "_UserStringT", "upper_bound": "collections.UserString", "values": [], "variance": 0}, {".class": "UnionType", "items": ["builtins.str", {".class": "NoneTyp"}]}], "bound_args": [], "def_extras": {"first_arg": "self"}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "strip of UserString", "ret_type": {".class": "TypeVarType", "fullname": "collections._UserStringT", "id": -1, "name": "_UserStringT", "upper_bound": "collections.UserString", "values": [], "variance": 0}, "variables": [{".class": "TypeVarDef", "fullname": "collections._UserStringT", "id": -1, "name": "_UserStringT", "upper_bound": "collections.UserString", "values": [], "variance": 0}]}}}, "swapcase": {".class": "SymbolTableNode", "kind": "Mdef", "node": {".class": "FuncDef", "arg_kinds": [0], "arg_names": ["self"], "flags": [], "fullname": "collections.UserString.swapcase", "name": "swapcase", "type": {".class": "CallableType", "arg_kinds": [0], "arg_names": ["self"], "arg_types": [{".class": "TypeVarType", "fullname": "collections._UserStringT", "id": -1, "name": "_UserStringT", "upper_bound": "collections.UserString", "values": [], "variance": 0}], "bound_args": [], "def_extras": {"first_arg": "self"}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "swapcase of UserString", "ret_type": {".class": "TypeVarType", "fullname": "collections._UserStringT", "id": -1, "name": "_UserStringT", "upper_bound": "collections.UserString", "values": [], "variance": 0}, "variables": [{".class": "TypeVarDef", "fullname": "collections._UserStringT", "id": -1, "name": "_UserStringT", "upper_bound": "collections.UserString", "values": [], "variance": 0}]}}}, "title": {".class": "SymbolTableNode", "kind": "Mdef", "node": {".class": "FuncDef", "arg_kinds": [0], "arg_names": ["self"], "flags": [], "fullname": "collections.UserString.title", "name": "title", "type": {".class": "CallableType", "arg_kinds": [0], "arg_names": ["self"], "arg_types": [{".class": "TypeVarType", "fullname": "collections._UserStringT", "id": -1, "name": "_UserStringT", "upper_bound": "collections.UserString", "values": [], "variance": 0}], "bound_args": [], "def_extras": {"first_arg": "self"}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "title of UserString", "ret_type": {".class": "TypeVarType", "fullname": "collections._UserStringT", "id": -1, "name": "_UserStringT", "upper_bound": "collections.UserString", "values": [], "variance": 0}, "variables": [{".class": "TypeVarDef", "fullname": "collections._UserStringT", "id": -1, "name": "_UserStringT", "upper_bound": "collections.UserString", "values": [], "variance": 0}]}}}, "translate": {".class": "SymbolTableNode", "kind": "Mdef", "node": {".class": "FuncDef", "arg_kinds": [0, 2], "arg_names": ["self", "args"], "flags": [], "fullname": "collections.UserString.translate", "name": "translate", "type": {".class": "CallableType", "arg_kinds": [0, 2], "arg_names": ["self", "args"], "arg_types": [{".class": "TypeVarType", "fullname": "collections._UserStringT", "id": -1, "name": "_UserStringT", "upper_bound": "collections.UserString", "values": [], "variance": 0}, {".class": "AnyType", "missing_import_name": null, "source_any": null, "type_of_any": 2}], "bound_args": [], "def_extras": {"first_arg": "self"}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "translate of UserString", "ret_type": {".class": "TypeVarType", "fullname": "collections._UserStringT", "id": -1, "name": "_UserStringT", "upper_bound": "collections.UserString", "values": [], "variance": 0}, "variables": [{".class": "TypeVarDef", "fullname": "collections._UserStringT", "id": -1, "name": "_UserStringT", "upper_bound": "collections.UserString", "values": [], "variance": 0}]}}}, "upper": {".class": "SymbolTableNode", "kind": "Mdef", "node": {".class": "FuncDef", "arg_kinds": [0], "arg_names": ["self"], "flags": [], "fullname": "collections.UserString.upper", "name": "upper", "type": {".class": "CallableType", "arg_kinds": [0], "arg_names": ["self"], "arg_types": [{".class": "TypeVarType", "fullname": "collections._UserStringT", "id": -1, "name": "_UserStringT", "upper_bound": "collections.UserString", "values": [], "variance": 0}], "bound_args": [], "def_extras": {"first_arg": "self"}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "upper of UserString", "ret_type": {".class": "TypeVarType", "fullname": "collections._UserStringT", "id": -1, "name": "_UserStringT", "upper_bound": "collections.UserString", "values": [], "variance": 0}, "variables": [{".class": "TypeVarDef", "fullname": "collections._UserStringT", "id": -1, "name": "_UserStringT", "upper_bound": "collections.UserString", "values": [], "variance": 0}]}}}, "zfill": {".class": "SymbolTableNode", "kind": "Mdef", "node": {".class": "FuncDef", "arg_kinds": [0, 0], "arg_names": ["self", "width"], "flags": [], "fullname": "collections.UserString.zfill", "name": "zfill", "type": {".class": "CallableType", "arg_kinds": [0, 0], "arg_names": ["self", "width"], "arg_types": [{".class": "TypeVarType", "fullname": "collections._UserStringT", "id": -1, "name": "_UserStringT", "upper_bound": "collections.UserString", "values": [], "variance": 0}, "builtins.int"], "bound_args": [], "def_extras": {"first_arg": "self"}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "zfill of UserString", "ret_type": {".class": "TypeVarType", "fullname": "collections._UserStringT", "id": -1, "name": "_UserStringT", "upper_bound": "collections.UserString", "values": [], "variance": 0}, "variables": [{".class": "TypeVarDef", "fullname": "collections._UserStringT", "id": -1, "name": "_UserStringT", "upper_bound": "collections.UserString", "values": [], "variance": 0}]}}}}, "tuple_type": null, "type_vars": [], "typeddict_type": null}}, "ValuesView": {".class": "SymbolTableNode", "cross_ref": "typing.ValuesView", "kind": "Gdef"}, "_CounterT": {".class": "SymbolTableNode", "kind": "Gdef", "node": {".class": "TypeVarExpr", "fullname": "collections._CounterT", "name": "_CounterT", "upper_bound": {".class": "Instance", "args": [{".class": "AnyType", "missing_import_name": null, "source_any": null, "type_of_any": 4}], "type_ref": "collections.Counter"}, "values": [], "variance": 0}}, "_DefaultDictT": {".class": "SymbolTableNode", "kind": "Gdef", "node": {".class": "TypeVarExpr", "fullname": "collections._DefaultDictT", "name": "_DefaultDictT", "upper_bound": {".class": "Instance", "args": [{".class": "AnyType", "missing_import_name": null, "source_any": null, "type_of_any": 4}, {".class": "AnyType", "missing_import_name": null, "source_any": null, "type_of_any": 4}], "type_ref": "collections.defaultdict"}, "values": [], "variance": 0}}, "_KT": {".class": "SymbolTableNode", "kind": "Gdef", "node": {".class": "TypeVarExpr", "fullname": "collections._KT", "name": "_KT", "upper_bound": "builtins.object", "values": [], "variance": 0}}, "_OrderedDictItemsView": {".class": "SymbolTableNode", "kind": "Gdef", "node": {".class": "TypeInfo", "_promote": null, "abstract_attributes": [], "bases": [{".class": "Instance", "args": [{".class": "TypeVarType", "fullname": "collections._KT", "id": 1, "name": "_KT", "upper_bound": "builtins.object", "values": [], "variance": 0}, {".class": "TypeVarType", "fullname": "collections._VT", "id": 2, "name": "_VT", "upper_bound": "builtins.object", "values": [], "variance": 0}], "type_ref": "typing.ItemsView"}, {".class": "Instance", "args": [{".class": "TupleType", "fallback": {".class": "Instance", "args": [{".class": "AnyType", "missing_import_name": null, "source_any": null, "type_of_any": 6}], "type_ref": "builtins.tuple"}, "implicit": false, "items": [{".class": "TypeVarType", "fullname": "collections._KT", "id": 1, "name": "_KT", "upper_bound": "builtins.object", "values": [], "variance": 0}, {".class": "TypeVarType", "fullname": "collections._VT", "id": 2, "name": "_VT", "upper_bound": "builtins.object", "values": [], "variance": 0}]}], "type_ref": "typing.Reversible"}], "declared_metaclass": null, "defn": {".class": "ClassDef", "fullname": "collections._OrderedDictItemsView", "name": "_OrderedDictItemsView", "type_vars": [{".class": "TypeVarDef", "fullname": "collections._KT", "id": 1, "name": "_KT", "upper_bound": "builtins.object", "values": [], "variance": 0}, {".class": "TypeVarDef", "fullname": "collections._VT", "id": 2, "name": "_VT", "upper_bound": "builtins.object", "values": [], "variance": 0}]}, "flags": [], "fullname": "collections._OrderedDictItemsView", "metaclass_type": "abc.ABCMeta", "metadata": {}, "module_name": "collections", "mro": ["collections._OrderedDictItemsView", "typing.ItemsView", "typing.MappingView", "typing.AbstractSet", "typing.Collection", "typing.Iterable", "typing.Container", "typing.Reversible", "builtins.object"], "names": {".class": "SymbolTable", "__reversed__": {".class": "SymbolTableNode", "kind": "Mdef", "node": {".class": "FuncDef", "arg_kinds": [0], "arg_names": ["self"], "flags": [], "fullname": "collections._OrderedDictItemsView.__reversed__", "name": "__reversed__", "type": {".class": "CallableType", "arg_kinds": [0], "arg_names": [null], "arg_types": [{".class": "Instance", "args": [{".class": "TypeVarType", "fullname": "collections._KT", "id": 1, "name": "_KT", "upper_bound": "builtins.object", "values": [], "variance": 0}, {".class": "TypeVarType", "fullname": "collections._VT", "id": 2, "name": "_VT", "upper_bound": "builtins.object", "values": [], "variance": 0}], "type_ref": "collections._OrderedDictItemsView"}], "bound_args": [], "def_extras": {"first_arg": "self"}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "__reversed__ of _OrderedDictItemsView", "ret_type": {".class": "Instance", "args": [{".class": "TupleType", "fallback": {".class": "Instance", "args": [{".class": "AnyType", "missing_import_name": null, "source_any": null, "type_of_any": 6}], "type_ref": "builtins.tuple"}, "implicit": false, "items": [{".class": "TypeVarType", "fullname": "collections._KT", "id": 1, "name": "_KT", "upper_bound": "builtins.object", "values": [], "variance": 0}, {".class": "TypeVarType", "fullname": "collections._VT", "id": 2, "name": "_VT", "upper_bound": "builtins.object", "values": [], "variance": 0}]}], "type_ref": "typing.Iterator"}, "variables": []}}}}, "tuple_type": null, "type_vars": ["_KT", "_VT"], "typeddict_type": null}}, "_OrderedDictKeysView": {".class": "SymbolTableNode", "kind": "Gdef", "node": {".class": "TypeInfo", "_promote": null, "abstract_attributes": [], "bases": [{".class": "Instance", "args": [{".class": "TypeVarType", "fullname": "collections._KT", "id": 1, "name": "_KT", "upper_bound": "builtins.object", "values": [], "variance": 0}], "type_ref": "typing.KeysView"}, {".class": "Instance", "args": [{".class": "TypeVarType", "fullname": "collections._KT", "id": 1, "name": "_KT", "upper_bound": "builtins.object", "values": [], "variance": 0}], "type_ref": "typing.Reversible"}], "declared_metaclass": null, "defn": {".class": "ClassDef", "fullname": "collections._OrderedDictKeysView", "name": "_OrderedDictKeysView", "type_vars": [{".class": "TypeVarDef", "fullname": "collections._KT", "id": 1, "name": "_KT", "upper_bound": "builtins.object", "values": [], "variance": 0}]}, "flags": [], "fullname": "collections._OrderedDictKeysView", "metaclass_type": "abc.ABCMeta", "metadata": {}, "module_name": "collections", "mro": ["collections._OrderedDictKeysView", "typing.KeysView", "typing.MappingView", "typing.AbstractSet", "typing.Collection", "typing.Iterable", "typing.Container", "typing.Reversible", "builtins.object"], "names": {".class": "SymbolTable", "__reversed__": {".class": "SymbolTableNode", "kind": "Mdef", "node": {".class": "FuncDef", "arg_kinds": [0], "arg_names": ["self"], "flags": [], "fullname": "collections._OrderedDictKeysView.__reversed__", "name": "__reversed__", "type": {".class": "CallableType", "arg_kinds": [0], "arg_names": [null], "arg_types": [{".class": "Instance", "args": [{".class": "TypeVarType", "fullname": "collections._KT", "id": 1, "name": "_KT", "upper_bound": "builtins.object", "values": [], "variance": 0}], "type_ref": "collections._OrderedDictKeysView"}], "bound_args": [], "def_extras": {"first_arg": "self"}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "__reversed__ of _OrderedDictKeysView", "ret_type": {".class": "Instance", "args": [{".class": "TypeVarType", "fullname": "collections._KT", "id": 1, "name": "_KT", "upper_bound": "builtins.object", "values": [], "variance": 0}], "type_ref": "typing.Iterator"}, "variables": []}}}}, "tuple_type": null, "type_vars": ["_KT"], "typeddict_type": null}}, "_OrderedDictT": {".class": "SymbolTableNode", "kind": "Gdef", "node": {".class": "TypeVarExpr", "fullname": "collections._OrderedDictT", "name": "_OrderedDictT", "upper_bound": {".class": "Instance", "args": [{".class": "AnyType", "missing_import_name": null, "source_any": null, "type_of_any": 4}, {".class": "AnyType", "missing_import_name": null, "source_any": null, "type_of_any": 4}], "type_ref": "collections.OrderedDict"}, "values": [], "variance": 0}}, "_OrderedDictValuesView": {".class": "SymbolTableNode", "kind": "Gdef", "node": {".class": "TypeInfo", "_promote": null, "abstract_attributes": [], "bases": [{".class": "Instance", "args": [{".class": "TypeVarType", "fullname": "collections._VT", "id": 1, "name": "_VT", "upper_bound": "builtins.object", "values": [], "variance": 0}], "type_ref": "typing.ValuesView"}, {".class": "Instance", "args": [{".class": "TypeVarType", "fullname": "collections._VT", "id": 1, "name": "_VT", "upper_bound": "builtins.object", "values": [], "variance": 0}], "type_ref": "typing.Reversible"}], "declared_metaclass": null, "defn": {".class": "ClassDef", "fullname": "collections._OrderedDictValuesView", "name": "_OrderedDictValuesView", "type_vars": [{".class": "TypeVarDef", "fullname": "collections._VT", "id": 1, "name": "_VT", "upper_bound": "builtins.object", "values": [], "variance": 0}]}, "flags": [], "fullname": "collections._OrderedDictValuesView", "metaclass_type": "abc.ABCMeta", "metadata": {}, "module_name": "collections", "mro": ["collections._OrderedDictValuesView", "typing.ValuesView", "typing.MappingView", "typing.Iterable", "typing.Reversible", "builtins.object"], "names": {".class": "SymbolTable", "__reversed__": {".class": "SymbolTableNode", "kind": "Mdef", "node": {".class": "FuncDef", "arg_kinds": [0], "arg_names": ["self"], "flags": [], "fullname": "collections._OrderedDictValuesView.__reversed__", "name": "__reversed__", "type": {".class": "CallableType", "arg_kinds": [0], "arg_names": [null], "arg_types": [{".class": "Instance", "args": [{".class": "TypeVarType", "fullname": "collections._VT", "id": 1, "name": "_VT", "upper_bound": "builtins.object", "values": [], "variance": 0}], "type_ref": "collections._OrderedDictValuesView"}], "bound_args": [], "def_extras": {"first_arg": "self"}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "__reversed__ of _OrderedDictValuesView", "ret_type": {".class": "Instance", "args": [{".class": "TypeVarType", "fullname": "collections._VT", "id": 1, "name": "_VT", "upper_bound": "builtins.object", "values": [], "variance": 0}], "type_ref": "typing.Iterator"}, "variables": []}}}}, "tuple_type": null, "type_vars": ["_VT"], "typeddict_type": null}}, "_S": {".class": "SymbolTableNode", "kind": "Gdef", "node": {".class": "TypeVarExpr", "fullname": "collections._S", "name": "_S", "upper_bound": "builtins.object", "values": [], "variance": 0}}, "_T": {".class": "SymbolTableNode", "kind": "Gdef", "node": {".class": "TypeVarExpr", "fullname": "collections._T", "name": "_T", "upper_bound": "builtins.object", "values": [], "variance": 0}}, "_UserDictT": {".class": "SymbolTableNode", "kind": "Gdef", "node": {".class": "TypeVarExpr", "fullname": "collections._UserDictT", "name": "_UserDictT", "upper_bound": {".class": "Instance", "args": [{".class": "AnyType", "missing_import_name": null, "source_any": null, "type_of_any": 4}, {".class": "AnyType", "missing_import_name": null, "source_any": null, "type_of_any": 4}], "type_ref": "collections.UserDict"}, "values": [], "variance": 0}}, "_UserListT": {".class": "SymbolTableNode", "kind": "Gdef", "node": {".class": "TypeVarExpr", "fullname": "collections._UserListT", "name": "_UserListT", "upper_bound": {".class": "Instance", "args": [{".class": "AnyType", "missing_import_name": null, "source_any": null, "type_of_any": 4}], "type_ref": "collections.UserList"}, "values": [], "variance": 0}}, "_UserStringT": {".class": "SymbolTableNode", "kind": "Gdef", "node": {".class": "TypeVarExpr", "fullname": "collections._UserStringT", "name": "_UserStringT", "upper_bound": "collections.UserString", "values": [], "variance": 0}}, "_VT": {".class": "SymbolTableNode", "kind": "Gdef", "node": {".class": "TypeVarExpr", "fullname": "collections._VT", "name": "_VT", "upper_bound": "builtins.object", "values": [], "variance": 0}}, "__doc__": {".class": "SymbolTableNode", "kind": "Gdef", "node": {".class": "Var", "flags": [], "fullname": "collections.__doc__", "name": "__doc__", "type": "builtins.str"}}, "__file__": {".class": "SymbolTableNode", "kind": "Gdef", "node": {".class": "Var", "flags": [], "fullname": "collections.__file__", "name": "__file__", "type": "builtins.str"}}, "__name__": {".class": "SymbolTableNode", "kind": "Gdef", "node": {".class": "Var", "flags": [], "fullname": "collections.__name__", "name": "__name__", "type": "builtins.str"}}, "__package__": {".class": "SymbolTableNode", "kind": "Gdef", "node": {".class": "Var", "flags": [], "fullname": "collections.__package__", "name": "__package__", "type": "builtins.str"}}, "abc": {".class": "SymbolTableNode", "cross_ref": "collections.abc", "kind": "Gdef", "module_public": false}, "defaultdict": {".class": "SymbolTableNode", "kind": "Gdef", "node": {".class": "TypeInfo", "_promote": null, "abstract_attributes": [], "bases": [{".class": "Instance", "args": [{".class": "TypeVarType", "fullname": "collections._KT", "id": 1, "name": "_KT", "upper_bound": "builtins.object", "values": [], "variance": 0}, {".class": "TypeVarType", "fullname": "collections._VT", "id": 2, "name": "_VT", "upper_bound": "builtins.object", "values": [], "variance": 0}], "type_ref": "builtins.dict"}], "declared_metaclass": null, "defn": {".class": "ClassDef", "fullname": "collections.defaultdict", "name": "defaultdict", "type_vars": [{".class": "TypeVarDef", "fullname": "collections._KT", "id": 1, "name": "_KT", "upper_bound": "builtins.object", "values": [], "variance": 0}, {".class": "TypeVarDef", "fullname": "collections._VT", "id": 2, "name": "_VT", "upper_bound": "builtins.object", "values": [], "variance": 0}]}, "flags": [], "fullname": "collections.defaultdict", "metaclass_type": null, "metadata": {}, "module_name": "collections", "mro": ["collections.defaultdict", "builtins.dict", "typing.MutableMapping", "typing.Mapping", "typing.Collection", "typing.Iterable", "typing.Container", "builtins.object"], "names": {".class": "SymbolTable", "__init__": {".class": "SymbolTableNode", "kind": "Mdef", "node": {".class": "OverloadedFuncDef", "flags": [], "fullname": "collections.defaultdict.__init__", "impl": null, "items": [{".class": "Decorator", "func": {".class": "FuncDef", "arg_kinds": [0, 4], "arg_names": ["self", "kwargs"], "flags": ["is_overload", "is_decorated"], "fullname": "collections.defaultdict.__init__", "name": "__init__", "type": {".class": "CallableType", "arg_kinds": [0, 4], "arg_names": ["self", "kwargs"], "arg_types": [{".class": "Instance", "args": [{".class": "TypeVarType", "fullname": "collections._KT", "id": 1, "name": "_KT", "upper_bound": "builtins.object", "values": [], "variance": 0}, {".class": "TypeVarType", "fullname": "collections._VT", "id": 2, "name": "_VT", "upper_bound": "builtins.object", "values": [], "variance": 0}], "type_ref": "collections.defaultdict"}, {".class": "TypeVarType", "fullname": "collections._VT", "id": 2, "name": "_VT", "upper_bound": "builtins.object", "values": [], "variance": 0}], "bound_args": [], "def_extras": {"first_arg": "self"}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "__init__ of defaultdict", "ret_type": {".class": "NoneTyp"}, "variables": []}}, "is_overload": true, "var": {".class": "Var", "flags": [], "fullname": null, "name": "__init__", "type": null}}, {".class": "Decorator", "func": {".class": "FuncDef", "arg_kinds": [0, 0], "arg_names": ["self", "default_factory"], "flags": ["is_overload", "is_decorated"], "fullname": "collections.defaultdict.__init__", "name": "__init__", "type": {".class": "CallableType", "arg_kinds": [0, 0], "arg_names": ["self", "default_factory"], "arg_types": [{".class": "Instance", "args": [{".class": "TypeVarType", "fullname": "collections._KT", "id": 1, "name": "_KT", "upper_bound": "builtins.object", "values": [], "variance": 0}, {".class": "TypeVarType", "fullname": "collections._VT", "id": 2, "name": "_VT", "upper_bound": "builtins.object", "values": [], "variance": 0}], "type_ref": "collections.defaultdict"}, {".class": "UnionType", "items": [{".class": "CallableType", "arg_kinds": [], "arg_names": [], "arg_types": [], "bound_args": [], "def_extras": {}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": null, "ret_type": {".class": "TypeVarType", "fullname": "collections._VT", "id": 2, "name": "_VT", "upper_bound": "builtins.object", "values": [], "variance": 0}, "variables": []}, {".class": "NoneTyp"}]}], "bound_args": [], "def_extras": {"first_arg": "self"}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "__init__ of defaultdict", "ret_type": {".class": "NoneTyp"}, "variables": []}}, "is_overload": true, "var": {".class": "Var", "flags": [], "fullname": null, "name": "__init__", "type": null}}, {".class": "Decorator", "func": {".class": "FuncDef", "arg_kinds": [0, 0, 4], "arg_names": ["self", "default_factory", "kwargs"], "flags": ["is_overload", "is_decorated"], "fullname": "collections.defaultdict.__init__", "name": "__init__", "type": {".class": "CallableType", "arg_kinds": [0, 0, 4], "arg_names": ["self", "default_factory", "kwargs"], "arg_types": [{".class": "Instance", "args": [{".class": "TypeVarType", "fullname": "collections._KT", "id": 1, "name": "_KT", "upper_bound": "builtins.object", "values": [], "variance": 0}, {".class": "TypeVarType", "fullname": "collections._VT", "id": 2, "name": "_VT", "upper_bound": "builtins.object", "values": [], "variance": 0}], "type_ref": "collections.defaultdict"}, {".class": "UnionType", "items": [{".class": "CallableType", "arg_kinds": [], "arg_names": [], "arg_types": [], "bound_args": [], "def_extras": {}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": null, "ret_type": {".class": "TypeVarType", "fullname": "collections._VT", "id": 2, "name": "_VT", "upper_bound": "builtins.object", "values": [], "variance": 0}, "variables": []}, {".class": "NoneTyp"}]}, {".class": "TypeVarType", "fullname": "collections._VT", "id": 2, "name": "_VT", "upper_bound": "builtins.object", "values": [], "variance": 0}], "bound_args": [], "def_extras": {"first_arg": "self"}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "__init__ of defaultdict", "ret_type": {".class": "NoneTyp"}, "variables": []}}, "is_overload": true, "var": {".class": "Var", "flags": [], "fullname": null, "name": "__init__", "type": null}}, {".class": "Decorator", "func": {".class": "FuncDef", "arg_kinds": [0, 0, 0], "arg_names": ["self", "default_factory", "map"], "flags": ["is_overload", "is_decorated"], "fullname": "collections.defaultdict.__init__", "name": "__init__", "type": {".class": "CallableType", "arg_kinds": [0, 0, 0], "arg_names": ["self", "default_factory", "map"], "arg_types": [{".class": "Instance", "args": [{".class": "TypeVarType", "fullname": "collections._KT", "id": 1, "name": "_KT", "upper_bound": "builtins.object", "values": [], "variance": 0}, {".class": "TypeVarType", "fullname": "collections._VT", "id": 2, "name": "_VT", "upper_bound": "builtins.object", "values": [], "variance": 0}], "type_ref": "collections.defaultdict"}, {".class": "UnionType", "items": [{".class": "CallableType", "arg_kinds": [], "arg_names": [], "arg_types": [], "bound_args": [], "def_extras": {}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": null, "ret_type": {".class": "TypeVarType", "fullname": "collections._VT", "id": 2, "name": "_VT", "upper_bound": "builtins.object", "values": [], "variance": 0}, "variables": []}, {".class": "NoneTyp"}]}, {".class": "Instance", "args": [{".class": "TypeVarType", "fullname": "collections._KT", "id": 1, "name": "_KT", "upper_bound": "builtins.object", "values": [], "variance": 0}, {".class": "TypeVarType", "fullname": "collections._VT", "id": 2, "name": "_VT", "upper_bound": "builtins.object", "values": [], "variance": 0}], "type_ref": "typing.Mapping"}], "bound_args": [], "def_extras": {"first_arg": "self"}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "__init__ of defaultdict", "ret_type": {".class": "NoneTyp"}, "variables": []}}, "is_overload": true, "var": {".class": "Var", "flags": [], "fullname": null, "name": "__init__", "type": null}}, {".class": "Decorator", "func": {".class": "FuncDef", "arg_kinds": [0, 0, 0, 4], "arg_names": ["self", "default_factory", "map", "kwargs"], "flags": ["is_overload", "is_decorated"], "fullname": "collections.defaultdict.__init__", "name": "__init__", "type": {".class": "CallableType", "arg_kinds": [0, 0, 0, 4], "arg_names": ["self", "default_factory", "map", "kwargs"], "arg_types": [{".class": "Instance", "args": [{".class": "TypeVarType", "fullname": "collections._KT", "id": 1, "name": "_KT", "upper_bound": "builtins.object", "values": [], "variance": 0}, {".class": "TypeVarType", "fullname": "collections._VT", "id": 2, "name": "_VT", "upper_bound": "builtins.object", "values": [], "variance": 0}], "type_ref": "collections.defaultdict"}, {".class": "UnionType", "items": [{".class": "CallableType", "arg_kinds": [], "arg_names": [], "arg_types": [], "bound_args": [], "def_extras": {}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": null, "ret_type": {".class": "TypeVarType", "fullname": "collections._VT", "id": 2, "name": "_VT", "upper_bound": "builtins.object", "values": [], "variance": 0}, "variables": []}, {".class": "NoneTyp"}]}, {".class": "Instance", "args": [{".class": "TypeVarType", "fullname": "collections._KT", "id": 1, "name": "_KT", "upper_bound": "builtins.object", "values": [], "variance": 0}, {".class": "TypeVarType", "fullname": "collections._VT", "id": 2, "name": "_VT", "upper_bound": "builtins.object", "values": [], "variance": 0}], "type_ref": "typing.Mapping"}, {".class": "TypeVarType", "fullname": "collections._VT", "id": 2, "name": "_VT", "upper_bound": "builtins.object", "values": [], "variance": 0}], "bound_args": [], "def_extras": {"first_arg": "self"}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "__init__ of defaultdict", "ret_type": {".class": "NoneTyp"}, "variables": []}}, "is_overload": true, "var": {".class": "Var", "flags": [], "fullname": null, "name": "__init__", "type": null}}, {".class": "Decorator", "func": {".class": "FuncDef", "arg_kinds": [0, 0, 0], "arg_names": ["self", "default_factory", "iterable"], "flags": ["is_overload", "is_decorated"], "fullname": "collections.defaultdict.__init__", "name": "__init__", "type": {".class": "CallableType", "arg_kinds": [0, 0, 0], "arg_names": ["self", "default_factory", "iterable"], "arg_types": [{".class": "Instance", "args": [{".class": "TypeVarType", "fullname": "collections._KT", "id": 1, "name": "_KT", "upper_bound": "builtins.object", "values": [], "variance": 0}, {".class": "TypeVarType", "fullname": "collections._VT", "id": 2, "name": "_VT", "upper_bound": "builtins.object", "values": [], "variance": 0}], "type_ref": "collections.defaultdict"}, {".class": "UnionType", "items": [{".class": "CallableType", "arg_kinds": [], "arg_names": [], "arg_types": [], "bound_args": [], "def_extras": {}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": null, "ret_type": {".class": "TypeVarType", "fullname": "collections._VT", "id": 2, "name": "_VT", "upper_bound": "builtins.object", "values": [], "variance": 0}, "variables": []}, {".class": "NoneTyp"}]}, {".class": "Instance", "args": [{".class": "TupleType", "fallback": {".class": "Instance", "args": [{".class": "AnyType", "missing_import_name": null, "source_any": null, "type_of_any": 6}], "type_ref": "builtins.tuple"}, "implicit": false, "items": [{".class": "TypeVarType", "fullname": "collections._KT", "id": 1, "name": "_KT", "upper_bound": "builtins.object", "values": [], "variance": 0}, {".class": "TypeVarType", "fullname": "collections._VT", "id": 2, "name": "_VT", "upper_bound": "builtins.object", "values": [], "variance": 0}]}], "type_ref": "typing.Iterable"}], "bound_args": [], "def_extras": {"first_arg": "self"}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "__init__ of defaultdict", "ret_type": {".class": "NoneTyp"}, "variables": []}}, "is_overload": true, "var": {".class": "Var", "flags": [], "fullname": null, "name": "__init__", "type": null}}, {".class": "Decorator", "func": {".class": "FuncDef", "arg_kinds": [0, 0, 0, 4], "arg_names": ["self", "default_factory", "iterable", "kwargs"], "flags": ["is_overload", "is_decorated"], "fullname": "collections.defaultdict.__init__", "name": "__init__", "type": {".class": "CallableType", "arg_kinds": [0, 0, 0, 4], "arg_names": ["self", "default_factory", "iterable", "kwargs"], "arg_types": [{".class": "Instance", "args": [{".class": "TypeVarType", "fullname": "collections._KT", "id": 1, "name": "_KT", "upper_bound": "builtins.object", "values": [], "variance": 0}, {".class": "TypeVarType", "fullname": "collections._VT", "id": 2, "name": "_VT", "upper_bound": "builtins.object", "values": [], "variance": 0}], "type_ref": "collections.defaultdict"}, {".class": "UnionType", "items": [{".class": "CallableType", "arg_kinds": [], "arg_names": [], "arg_types": [], "bound_args": [], "def_extras": {}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": null, "ret_type": {".class": "TypeVarType", "fullname": "collections._VT", "id": 2, "name": "_VT", "upper_bound": "builtins.object", "values": [], "variance": 0}, "variables": []}, {".class": "NoneTyp"}]}, {".class": "Instance", "args": [{".class": "TupleType", "fallback": {".class": "Instance", "args": [{".class": "AnyType", "missing_import_name": null, "source_any": null, "type_of_any": 6}], "type_ref": "builtins.tuple"}, "implicit": false, "items": [{".class": "TypeVarType", "fullname": "collections._KT", "id": 1, "name": "_KT", "upper_bound": "builtins.object", "values": [], "variance": 0}, {".class": "TypeVarType", "fullname": "collections._VT", "id": 2, "name": "_VT", "upper_bound": "builtins.object", "values": [], "variance": 0}]}], "type_ref": "typing.Iterable"}, {".class": "TypeVarType", "fullname": "collections._VT", "id": 2, "name": "_VT", "upper_bound": "builtins.object", "values": [], "variance": 0}], "bound_args": [], "def_extras": {"first_arg": "self"}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "__init__ of defaultdict", "ret_type": {".class": "NoneTyp"}, "variables": []}}, "is_overload": true, "var": {".class": "Var", "flags": [], "fullname": null, "name": "__init__", "type": null}}], "type": {".class": "Overloaded", "items": [{".class": "CallableType", "arg_kinds": [0, 4], "arg_names": ["self", "kwargs"], "arg_types": [{".class": "Instance", "args": [{".class": "TypeVarType", "fullname": "collections._KT", "id": 1, "name": "_KT", "upper_bound": "builtins.object", "values": [], "variance": 0}, {".class": "TypeVarType", "fullname": "collections._VT", "id": 2, "name": "_VT", "upper_bound": "builtins.object", "values": [], "variance": 0}], "type_ref": "collections.defaultdict"}, {".class": "TypeVarType", "fullname": "collections._VT", "id": 2, "name": "_VT", "upper_bound": "builtins.object", "values": [], "variance": 0}], "bound_args": [], "def_extras": {"first_arg": "self"}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "__init__ of defaultdict", "ret_type": {".class": "NoneTyp"}, "variables": []}, {".class": "CallableType", "arg_kinds": [0, 0], "arg_names": ["self", "default_factory"], "arg_types": [{".class": "Instance", "args": [{".class": "TypeVarType", "fullname": "collections._KT", "id": 1, "name": "_KT", "upper_bound": "builtins.object", "values": [], "variance": 0}, {".class": "TypeVarType", "fullname": "collections._VT", "id": 2, "name": "_VT", "upper_bound": "builtins.object", "values": [], "variance": 0}], "type_ref": "collections.defaultdict"}, {".class": "UnionType", "items": [{".class": "CallableType", "arg_kinds": [], "arg_names": [], "arg_types": [], "bound_args": [], "def_extras": {}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": null, "ret_type": {".class": "TypeVarType", "fullname": "collections._VT", "id": 2, "name": "_VT", "upper_bound": "builtins.object", "values": [], "variance": 0}, "variables": []}, {".class": "NoneTyp"}]}], "bound_args": [], "def_extras": {"first_arg": "self"}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "__init__ of defaultdict", "ret_type": {".class": "NoneTyp"}, "variables": []}, {".class": "CallableType", "arg_kinds": [0, 0, 4], "arg_names": ["self", "default_factory", "kwargs"], "arg_types": [{".class": "Instance", "args": [{".class": "TypeVarType", "fullname": "collections._KT", "id": 1, "name": "_KT", "upper_bound": "builtins.object", "values": [], "variance": 0}, {".class": "TypeVarType", "fullname": "collections._VT", "id": 2, "name": "_VT", "upper_bound": "builtins.object", "values": [], "variance": 0}], "type_ref": "collections.defaultdict"}, {".class": "UnionType", "items": [{".class": "CallableType", "arg_kinds": [], "arg_names": [], "arg_types": [], "bound_args": [], "def_extras": {}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": null, "ret_type": {".class": "TypeVarType", "fullname": "collections._VT", "id": 2, "name": "_VT", "upper_bound": "builtins.object", "values": [], "variance": 0}, "variables": []}, {".class": "NoneTyp"}]}, {".class": "TypeVarType", "fullname": "collections._VT", "id": 2, "name": "_VT", "upper_bound": "builtins.object", "values": [], "variance": 0}], "bound_args": [], "def_extras": {"first_arg": "self"}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "__init__ of defaultdict", "ret_type": {".class": "NoneTyp"}, "variables": []}, {".class": "CallableType", "arg_kinds": [0, 0, 0], "arg_names": ["self", "default_factory", "map"], "arg_types": [{".class": "Instance", "args": [{".class": "TypeVarType", "fullname": "collections._KT", "id": 1, "name": "_KT", "upper_bound": "builtins.object", "values": [], "variance": 0}, {".class": "TypeVarType", "fullname": "collections._VT", "id": 2, "name": "_VT", "upper_bound": "builtins.object", "values": [], "variance": 0}], "type_ref": "collections.defaultdict"}, {".class": "UnionType", "items": [{".class": "CallableType", "arg_kinds": [], "arg_names": [], "arg_types": [], "bound_args": [], "def_extras": {}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": null, "ret_type": {".class": "TypeVarType", "fullname": "collections._VT", "id": 2, "name": "_VT", "upper_bound": "builtins.object", "values": [], "variance": 0}, "variables": []}, {".class": "NoneTyp"}]}, {".class": "Instance", "args": [{".class": "TypeVarType", "fullname": "collections._KT", "id": 1, "name": "_KT", "upper_bound": "builtins.object", "values": [], "variance": 0}, {".class": "TypeVarType", "fullname": "collections._VT", "id": 2, "name": "_VT", "upper_bound": "builtins.object", "values": [], "variance": 0}], "type_ref": "typing.Mapping"}], "bound_args": [], "def_extras": {"first_arg": "self"}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "__init__ of defaultdict", "ret_type": {".class": "NoneTyp"}, "variables": []}, {".class": "CallableType", "arg_kinds": [0, 0, 0, 4], "arg_names": ["self", "default_factory", "map", "kwargs"], "arg_types": [{".class": "Instance", "args": [{".class": "TypeVarType", "fullname": "collections._KT", "id": 1, "name": "_KT", "upper_bound": "builtins.object", "values": [], "variance": 0}, {".class": "TypeVarType", "fullname": "collections._VT", "id": 2, "name": "_VT", "upper_bound": "builtins.object", "values": [], "variance": 0}], "type_ref": "collections.defaultdict"}, {".class": "UnionType", "items": [{".class": "CallableType", "arg_kinds": [], "arg_names": [], "arg_types": [], "bound_args": [], "def_extras": {}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": null, "ret_type": {".class": "TypeVarType", "fullname": "collections._VT", "id": 2, "name": "_VT", "upper_bound": "builtins.object", "values": [], "variance": 0}, "variables": []}, {".class": "NoneTyp"}]}, {".class": "Instance", "args": [{".class": "TypeVarType", "fullname": "collections._KT", "id": 1, "name": "_KT", "upper_bound": "builtins.object", "values": [], "variance": 0}, {".class": "TypeVarType", "fullname": "collections._VT", "id": 2, "name": "_VT", "upper_bound": "builtins.object", "values": [], "variance": 0}], "type_ref": "typing.Mapping"}, {".class": "TypeVarType", "fullname": "collections._VT", "id": 2, "name": "_VT", "upper_bound": "builtins.object", "values": [], "variance": 0}], "bound_args": [], "def_extras": {"first_arg": "self"}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "__init__ of defaultdict", "ret_type": {".class": "NoneTyp"}, "variables": []}, {".class": "CallableType", "arg_kinds": [0, 0, 0], "arg_names": ["self", "default_factory", "iterable"], "arg_types": [{".class": "Instance", "args": [{".class": "TypeVarType", "fullname": "collections._KT", "id": 1, "name": "_KT", "upper_bound": "builtins.object", "values": [], "variance": 0}, {".class": "TypeVarType", "fullname": "collections._VT", "id": 2, "name": "_VT", "upper_bound": "builtins.object", "values": [], "variance": 0}], "type_ref": "collections.defaultdict"}, {".class": "UnionType", "items": [{".class": "CallableType", "arg_kinds": [], "arg_names": [], "arg_types": [], "bound_args": [], "def_extras": {}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": null, "ret_type": {".class": "TypeVarType", "fullname": "collections._VT", "id": 2, "name": "_VT", "upper_bound": "builtins.object", "values": [], "variance": 0}, "variables": []}, {".class": "NoneTyp"}]}, {".class": "Instance", "args": [{".class": "TupleType", "fallback": {".class": "Instance", "args": [{".class": "AnyType", "missing_import_name": null, "source_any": null, "type_of_any": 6}], "type_ref": "builtins.tuple"}, "implicit": false, "items": [{".class": "TypeVarType", "fullname": "collections._KT", "id": 1, "name": "_KT", "upper_bound": "builtins.object", "values": [], "variance": 0}, {".class": "TypeVarType", "fullname": "collections._VT", "id": 2, "name": "_VT", "upper_bound": "builtins.object", "values": [], "variance": 0}]}], "type_ref": "typing.Iterable"}], "bound_args": [], "def_extras": {"first_arg": "self"}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "__init__ of defaultdict", "ret_type": {".class": "NoneTyp"}, "variables": []}, {".class": "CallableType", "arg_kinds": [0, 0, 0, 4], "arg_names": ["self", "default_factory", "iterable", "kwargs"], "arg_types": [{".class": "Instance", "args": [{".class": "TypeVarType", "fullname": "collections._KT", "id": 1, "name": "_KT", "upper_bound": "builtins.object", "values": [], "variance": 0}, {".class": "TypeVarType", "fullname": "collections._VT", "id": 2, "name": "_VT", "upper_bound": "builtins.object", "values": [], "variance": 0}], "type_ref": "collections.defaultdict"}, {".class": "UnionType", "items": [{".class": "CallableType", "arg_kinds": [], "arg_names": [], "arg_types": [], "bound_args": [], "def_extras": {}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": null, "ret_type": {".class": "TypeVarType", "fullname": "collections._VT", "id": 2, "name": "_VT", "upper_bound": "builtins.object", "values": [], "variance": 0}, "variables": []}, {".class": "NoneTyp"}]}, {".class": "Instance", "args": [{".class": "TupleType", "fallback": {".class": "Instance", "args": [{".class": "AnyType", "missing_import_name": null, "source_any": null, "type_of_any": 6}], "type_ref": "builtins.tuple"}, "implicit": false, "items": [{".class": "TypeVarType", "fullname": "collections._KT", "id": 1, "name": "_KT", "upper_bound": "builtins.object", "values": [], "variance": 0}, {".class": "TypeVarType", "fullname": "collections._VT", "id": 2, "name": "_VT", "upper_bound": "builtins.object", "values": [], "variance": 0}]}], "type_ref": "typing.Iterable"}, {".class": "TypeVarType", "fullname": "collections._VT", "id": 2, "name": "_VT", "upper_bound": "builtins.object", "values": [], "variance": 0}], "bound_args": [], "def_extras": {"first_arg": "self"}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "__init__ of defaultdict", "ret_type": {".class": "NoneTyp"}, "variables": []}]}}}, "__missing__": {".class": "SymbolTableNode", "kind": "Mdef", "node": {".class": "FuncDef", "arg_kinds": [0, 0], "arg_names": ["self", "key"], "flags": [], "fullname": "collections.defaultdict.__missing__", "name": "__missing__", "type": {".class": "CallableType", "arg_kinds": [0, 0], "arg_names": ["self", "key"], "arg_types": [{".class": "Instance", "args": [{".class": "TypeVarType", "fullname": "collections._KT", "id": 1, "name": "_KT", "upper_bound": "builtins.object", "values": [], "variance": 0}, {".class": "TypeVarType", "fullname": "collections._VT", "id": 2, "name": "_VT", "upper_bound": "builtins.object", "values": [], "variance": 0}], "type_ref": "collections.defaultdict"}, {".class": "TypeVarType", "fullname": "collections._KT", "id": 1, "name": "_KT", "upper_bound": "builtins.object", "values": [], "variance": 0}], "bound_args": [], "def_extras": {"first_arg": "self"}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "__missing__ of defaultdict", "ret_type": {".class": "TypeVarType", "fullname": "collections._VT", "id": 2, "name": "_VT", "upper_bound": "builtins.object", "values": [], "variance": 0}, "variables": []}}}, "copy": {".class": "SymbolTableNode", "kind": "Mdef", "node": {".class": "FuncDef", "arg_kinds": [0], "arg_names": ["self"], "flags": [], "fullname": "collections.defaultdict.copy", "name": "copy", "type": {".class": "CallableType", "arg_kinds": [0], "arg_names": ["self"], "arg_types": [{".class": "TypeVarType", "fullname": "collections._DefaultDictT", "id": -1, "name": "_DefaultDictT", "upper_bound": {".class": "Instance", "args": [{".class": "AnyType", "missing_import_name": null, "source_any": null, "type_of_any": 4}, {".class": "AnyType", "missing_import_name": null, "source_any": null, "type_of_any": 4}], "type_ref": "collections.defaultdict"}, "values": [], "variance": 0}], "bound_args": [], "def_extras": {"first_arg": "self"}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "copy of defaultdict", "ret_type": {".class": "TypeVarType", "fullname": "collections._DefaultDictT", "id": -1, "name": "_DefaultDictT", "upper_bound": {".class": "Instance", "args": [{".class": "AnyType", "missing_import_name": null, "source_any": null, "type_of_any": 4}, {".class": "AnyType", "missing_import_name": null, "source_any": null, "type_of_any": 4}], "type_ref": "collections.defaultdict"}, "values": [], "variance": 0}, "variables": [{".class": "TypeVarDef", "fullname": "collections._DefaultDictT", "id": -1, "name": "_DefaultDictT", "upper_bound": {".class": "Instance", "args": [{".class": "AnyType", "missing_import_name": null, "source_any": null, "type_of_any": 4}, {".class": "AnyType", "missing_import_name": null, "source_any": null, "type_of_any": 4}], "type_ref": "collections.defaultdict"}, "values": [], "variance": 0}]}}}, "default_factory": {".class": "SymbolTableNode", "kind": "Mdef", "node": {".class": "Var", "flags": ["is_initialized_in_class"], "fullname": "collections.defaultdict.default_factory", "name": "default_factory", "type": {".class": "UnionType", "items": [{".class": "CallableType", "arg_kinds": [], "arg_names": [], "arg_types": [], "bound_args": [], "def_extras": {}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": null, "ret_type": {".class": "TypeVarType", "fullname": "collections._VT", "id": 2, "name": "_VT", "upper_bound": "builtins.object", "values": [], "variance": 0}, "variables": []}, {".class": "NoneTyp"}]}}}}, "tuple_type": null, "type_vars": ["_KT", "_VT"], "typeddict_type": null}}, "deque": {".class": "SymbolTableNode", "kind": "Gdef", "node": {".class": "TypeInfo", "_promote": null, "abstract_attributes": [], "bases": [{".class": "Instance", "args": [{".class": "TypeVarType", "fullname": "collections._T", "id": 1, "name": "_T", "upper_bound": "builtins.object", "values": [], "variance": 0}], "type_ref": "typing.MutableSequence"}], "declared_metaclass": null, "defn": {".class": "ClassDef", "fullname": "collections.deque", "name": "deque", "type_vars": [{".class": "TypeVarDef", "fullname": "collections._T", "id": 1, "name": "_T", "upper_bound": "builtins.object", "values": [], "variance": 0}]}, "flags": [], "fullname": "collections.deque", "metaclass_type": "abc.ABCMeta", "metadata": {}, "module_name": "collections", "mro": ["collections.deque", "typing.MutableSequence", "typing.Sequence", "typing.Collection", "typing.Iterable", "typing.Container", "typing.Reversible", "builtins.object"], "names": {".class": "SymbolTable", "__add__": {".class": "SymbolTableNode", "kind": "Mdef", "node": {".class": "FuncDef", "arg_kinds": [0, 0], "arg_names": ["self", "other"], "flags": ["is_conditional"], "fullname": "collections.deque.__add__", "name": "__add__", "type": {".class": "CallableType", "arg_kinds": [0, 0], "arg_names": [null, null], "arg_types": [{".class": "Instance", "args": [{".class": "TypeVarType", "fullname": "collections._T", "id": 1, "name": "_T", "upper_bound": "builtins.object", "values": [], "variance": 0}], "type_ref": "collections.deque"}, {".class": "Instance", "args": [{".class": "TypeVarType", "fullname": "collections._T", "id": 1, "name": "_T", "upper_bound": "builtins.object", "values": [], "variance": 0}], "type_ref": "collections.deque"}], "bound_args": [], "def_extras": {"first_arg": "self"}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "__add__ of deque", "ret_type": {".class": "Instance", "args": [{".class": "TypeVarType", "fullname": "collections._T", "id": 1, "name": "_T", "upper_bound": "builtins.object", "values": [], "variance": 0}], "type_ref": "collections.deque"}, "variables": []}}}, "__contains__": {".class": "SymbolTableNode", "kind": "Mdef", "node": {".class": "FuncDef", "arg_kinds": [0, 0], "arg_names": ["self", "o"], "flags": [], "fullname": "collections.deque.__contains__", "name": "__contains__", "type": {".class": "CallableType", "arg_kinds": [0, 0], "arg_names": [null, null], "arg_types": [{".class": "Instance", "args": [{".class": "TypeVarType", "fullname": "collections._T", "id": 1, "name": "_T", "upper_bound": "builtins.object", "values": [], "variance": 0}], "type_ref": "collections.deque"}, "builtins.object"], "bound_args": [], "def_extras": {"first_arg": "self"}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "__contains__ of deque", "ret_type": "builtins.bool", "variables": []}}}, "__delitem__": {".class": "SymbolTableNode", "kind": "Mdef", "node": {".class": "OverloadedFuncDef", "flags": [], "fullname": "collections.deque.__delitem__", "impl": null, "items": [{".class": "Decorator", "func": {".class": "FuncDef", "arg_kinds": [0, 0], "arg_names": ["self", "i"], "flags": ["is_overload", "is_decorated"], "fullname": "collections.deque.__delitem__", "name": "__delitem__", "type": {".class": "CallableType", "arg_kinds": [0, 0], "arg_names": [null, null], "arg_types": [{".class": "Instance", "args": [{".class": "TypeVarType", "fullname": "collections._T", "id": 1, "name": "_T", "upper_bound": "builtins.object", "values": [], "variance": 0}], "type_ref": "collections.deque"}, "builtins.int"], "bound_args": [], "def_extras": {"first_arg": "self"}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "__delitem__ of deque", "ret_type": {".class": "NoneTyp"}, "variables": []}}, "is_overload": true, "var": {".class": "Var", "flags": [], "fullname": null, "name": "__delitem__", "type": null}}, {".class": "Decorator", "func": {".class": "FuncDef", "arg_kinds": [0, 0], "arg_names": ["self", "s"], "flags": ["is_overload", "is_decorated"], "fullname": "collections.deque.__delitem__", "name": "__delitem__", "type": {".class": "CallableType", "arg_kinds": [0, 0], "arg_names": [null, null], "arg_types": [{".class": "Instance", "args": [{".class": "TypeVarType", "fullname": "collections._T", "id": 1, "name": "_T", "upper_bound": "builtins.object", "values": [], "variance": 0}], "type_ref": "collections.deque"}, "builtins.slice"], "bound_args": [], "def_extras": {"first_arg": "self"}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "__delitem__ of deque", "ret_type": {".class": "NoneTyp"}, "variables": []}}, "is_overload": true, "var": {".class": "Var", "flags": [], "fullname": null, "name": "__delitem__", "type": null}}], "type": {".class": "Overloaded", "items": [{".class": "CallableType", "arg_kinds": [0, 0], "arg_names": [null, null], "arg_types": [{".class": "Instance", "args": [{".class": "TypeVarType", "fullname": "collections._T", "id": 1, "name": "_T", "upper_bound": "builtins.object", "values": [], "variance": 0}], "type_ref": "collections.deque"}, "builtins.int"], "bound_args": [], "def_extras": {"first_arg": "self"}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "__delitem__ of deque", "ret_type": {".class": "NoneTyp"}, "variables": []}, {".class": "CallableType", "arg_kinds": [0, 0], "arg_names": [null, null], "arg_types": [{".class": "Instance", "args": [{".class": "TypeVarType", "fullname": "collections._T", "id": 1, "name": "_T", "upper_bound": "builtins.object", "values": [], "variance": 0}], "type_ref": "collections.deque"}, "builtins.slice"], "bound_args": [], "def_extras": {"first_arg": "self"}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "__delitem__ of deque", "ret_type": {".class": "NoneTyp"}, "variables": []}]}}}, "__getitem__": {".class": "SymbolTableNode", "kind": "Mdef", "node": {".class": "OverloadedFuncDef", "flags": [], "fullname": "collections.deque.__getitem__", "impl": null, "items": [{".class": "Decorator", "func": {".class": "FuncDef", "arg_kinds": [0, 0], "arg_names": ["self", "index"], "flags": ["is_overload", "is_decorated"], "fullname": "collections.deque.__getitem__", "name": "__getitem__", "type": {".class": "CallableType", "arg_kinds": [0, 0], "arg_names": [null, null], "arg_types": [{".class": "Instance", "args": [{".class": "TypeVarType", "fullname": "collections._T", "id": 1, "name": "_T", "upper_bound": "builtins.object", "values": [], "variance": 0}], "type_ref": "collections.deque"}, "builtins.int"], "bound_args": [], "def_extras": {"first_arg": "self"}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "__getitem__ of deque", "ret_type": {".class": "TypeVarType", "fullname": "collections._T", "id": 1, "name": "_T", "upper_bound": "builtins.object", "values": [], "variance": 0}, "variables": []}}, "is_overload": true, "var": {".class": "Var", "flags": [], "fullname": null, "name": "__getitem__", "type": null}}, {".class": "Decorator", "func": {".class": "FuncDef", "arg_kinds": [0, 0], "arg_names": ["self", "s"], "flags": ["is_overload", "is_decorated"], "fullname": "collections.deque.__getitem__", "name": "__getitem__", "type": {".class": "CallableType", "arg_kinds": [0, 0], "arg_names": [null, null], "arg_types": [{".class": "Instance", "args": [{".class": "TypeVarType", "fullname": "collections._T", "id": 1, "name": "_T", "upper_bound": "builtins.object", "values": [], "variance": 0}], "type_ref": "collections.deque"}, "builtins.slice"], "bound_args": [], "def_extras": {"first_arg": "self"}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "__getitem__ of deque", "ret_type": {".class": "Instance", "args": [{".class": "TypeVarType", "fullname": "collections._T", "id": 1, "name": "_T", "upper_bound": "builtins.object", "values": [], "variance": 0}], "type_ref": "typing.MutableSequence"}, "variables": []}}, "is_overload": true, "var": {".class": "Var", "flags": [], "fullname": null, "name": "__getitem__", "type": null}}], "type": {".class": "Overloaded", "items": [{".class": "CallableType", "arg_kinds": [0, 0], "arg_names": [null, null], "arg_types": [{".class": "Instance", "args": [{".class": "TypeVarType", "fullname": "collections._T", "id": 1, "name": "_T", "upper_bound": "builtins.object", "values": [], "variance": 0}], "type_ref": "collections.deque"}, "builtins.int"], "bound_args": [], "def_extras": {"first_arg": "self"}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "__getitem__ of deque", "ret_type": {".class": "TypeVarType", "fullname": "collections._T", "id": 1, "name": "_T", "upper_bound": "builtins.object", "values": [], "variance": 0}, "variables": []}, {".class": "CallableType", "arg_kinds": [0, 0], "arg_names": [null, null], "arg_types": [{".class": "Instance", "args": [{".class": "TypeVarType", "fullname": "collections._T", "id": 1, "name": "_T", "upper_bound": "builtins.object", "values": [], "variance": 0}], "type_ref": "collections.deque"}, "builtins.slice"], "bound_args": [], "def_extras": {"first_arg": "self"}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "__getitem__ of deque", "ret_type": {".class": "Instance", "args": [{".class": "TypeVarType", "fullname": "collections._T", "id": 1, "name": "_T", "upper_bound": "builtins.object", "values": [], "variance": 0}], "type_ref": "typing.MutableSequence"}, "variables": []}]}}}, "__hash__": {".class": "SymbolTableNode", "kind": "Mdef", "node": {".class": "FuncDef", "arg_kinds": [0], "arg_names": ["self"], "flags": [], "fullname": "collections.deque.__hash__", "name": "__hash__", "type": {".class": "CallableType", "arg_kinds": [0], "arg_names": ["self"], "arg_types": [{".class": "Instance", "args": [{".class": "TypeVarType", "fullname": "collections._T", "id": 1, "name": "_T", "upper_bound": "builtins.object", "values": [], "variance": 0}], "type_ref": "collections.deque"}], "bound_args": [], "def_extras": {"first_arg": "self"}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "__hash__ of deque", "ret_type": "builtins.int", "variables": []}}}, "__iadd__": {".class": "SymbolTableNode", "kind": "Mdef", "node": {".class": "FuncDef", "arg_kinds": [0, 0], "arg_names": ["self", "iterable"], "flags": [], "fullname": "collections.deque.__iadd__", "name": "__iadd__", "type": {".class": "CallableType", "arg_kinds": [0, 0], "arg_names": [null, null], "arg_types": [{".class": "TypeVarType", "fullname": "collections._S", "id": -1, "name": "_S", "upper_bound": "builtins.object", "values": [], "variance": 0}, {".class": "Instance", "args": [{".class": "TypeVarType", "fullname": "collections._T", "id": 1, "name": "_T", "upper_bound": "builtins.object", "values": [], "variance": 0}], "type_ref": "typing.Iterable"}], "bound_args": [], "def_extras": {"first_arg": "self"}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "__iadd__ of deque", "ret_type": {".class": "TypeVarType", "fullname": "collections._S", "id": -1, "name": "_S", "upper_bound": "builtins.object", "values": [], "variance": 0}, "variables": [{".class": "TypeVarDef", "fullname": "collections._S", "id": -1, "name": "_S", "upper_bound": "builtins.object", "values": [], "variance": 0}]}}}, "__imul__": {".class": "SymbolTableNode", "kind": "Mdef", "node": {".class": "FuncDef", "arg_kinds": [0, 0], "arg_names": ["self", "other"], "flags": ["is_conditional"], "fullname": "collections.deque.__imul__", "name": "__imul__", "type": {".class": "CallableType", "arg_kinds": [0, 0], "arg_names": [null, null], "arg_types": [{".class": "Instance", "args": [{".class": "TypeVarType", "fullname": "collections._T", "id": 1, "name": "_T", "upper_bound": "builtins.object", "values": [], "variance": 0}], "type_ref": "collections.deque"}, "builtins.int"], "bound_args": [], "def_extras": {"first_arg": "self"}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "__imul__ of deque", "ret_type": {".class": "NoneTyp"}, "variables": []}}}, "__init__": {".class": "SymbolTableNode", "kind": "Mdef", "node": {".class": "FuncDef", "arg_kinds": [0, 1, 1], "arg_names": ["self", "iterable", "maxlen"], "flags": [], "fullname": "collections.deque.__init__", "name": "__init__", "type": {".class": "CallableType", "arg_kinds": [0, 1, 1], "arg_names": ["self", "iterable", "maxlen"], "arg_types": [{".class": "Instance", "args": [{".class": "TypeVarType", "fullname": "collections._T", "id": 1, "name": "_T", "upper_bound": "builtins.object", "values": [], "variance": 0}], "type_ref": "collections.deque"}, {".class": "Instance", "args": [{".class": "TypeVarType", "fullname": "collections._T", "id": 1, "name": "_T", "upper_bound": "builtins.object", "values": [], "variance": 0}], "type_ref": "typing.Iterable"}, {".class": "UnionType", "items": ["builtins.int", {".class": "NoneTyp"}]}], "bound_args": [], "def_extras": {"first_arg": "self"}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "__init__ of deque", "ret_type": {".class": "NoneTyp"}, "variables": []}}}, "__iter__": {".class": "SymbolTableNode", "kind": "Mdef", "node": {".class": "FuncDef", "arg_kinds": [0], "arg_names": ["self"], "flags": [], "fullname": "collections.deque.__iter__", "name": "__iter__", "type": {".class": "CallableType", "arg_kinds": [0], "arg_names": [null], "arg_types": [{".class": "Instance", "args": [{".class": "TypeVarType", "fullname": "collections._T", "id": 1, "name": "_T", "upper_bound": "builtins.object", "values": [], "variance": 0}], "type_ref": "collections.deque"}], "bound_args": [], "def_extras": {"first_arg": "self"}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "__iter__ of deque", "ret_type": {".class": "Instance", "args": [{".class": "TypeVarType", "fullname": "collections._T", "id": 1, "name": "_T", "upper_bound": "builtins.object", "values": [], "variance": 0}], "type_ref": "typing.Iterator"}, "variables": []}}}, "__len__": {".class": "SymbolTableNode", "kind": "Mdef", "node": {".class": "FuncDef", "arg_kinds": [0], "arg_names": ["self"], "flags": [], "fullname": "collections.deque.__len__", "name": "__len__", "type": {".class": "CallableType", "arg_kinds": [0], "arg_names": [null], "arg_types": [{".class": "Instance", "args": [{".class": "TypeVarType", "fullname": "collections._T", "id": 1, "name": "_T", "upper_bound": "builtins.object", "values": [], "variance": 0}], "type_ref": "collections.deque"}], "bound_args": [], "def_extras": {"first_arg": "self"}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "__len__ of deque", "ret_type": "builtins.int", "variables": []}}}, "__mul__": {".class": "SymbolTableNode", "kind": "Mdef", "node": {".class": "FuncDef", "arg_kinds": [0, 0], "arg_names": ["self", "other"], "flags": ["is_conditional"], "fullname": "collections.deque.__mul__", "name": "__mul__", "type": {".class": "CallableType", "arg_kinds": [0, 0], "arg_names": [null, null], "arg_types": [{".class": "Instance", "args": [{".class": "TypeVarType", "fullname": "collections._T", "id": 1, "name": "_T", "upper_bound": "builtins.object", "values": [], "variance": 0}], "type_ref": "collections.deque"}, "builtins.int"], "bound_args": [], "def_extras": {"first_arg": "self"}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "__mul__ of deque", "ret_type": {".class": "Instance", "args": [{".class": "TypeVarType", "fullname": "collections._T", "id": 1, "name": "_T", "upper_bound": "builtins.object", "values": [], "variance": 0}], "type_ref": "collections.deque"}, "variables": []}}}, "__reversed__": {".class": "SymbolTableNode", "kind": "Mdef", "node": {".class": "FuncDef", "arg_kinds": [0], "arg_names": ["self"], "flags": [], "fullname": "collections.deque.__reversed__", "name": "__reversed__", "type": {".class": "CallableType", "arg_kinds": [0], "arg_names": [null], "arg_types": [{".class": "Instance", "args": [{".class": "TypeVarType", "fullname": "collections._T", "id": 1, "name": "_T", "upper_bound": "builtins.object", "values": [], "variance": 0}], "type_ref": "collections.deque"}], "bound_args": [], "def_extras": {"first_arg": "self"}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "__reversed__ of deque", "ret_type": {".class": "Instance", "args": [{".class": "TypeVarType", "fullname": "collections._T", "id": 1, "name": "_T", "upper_bound": "builtins.object", "values": [], "variance": 0}], "type_ref": "typing.Iterator"}, "variables": []}}}, "__setitem__": {".class": "SymbolTableNode", "kind": "Mdef", "node": {".class": "OverloadedFuncDef", "flags": [], "fullname": "collections.deque.__setitem__", "impl": null, "items": [{".class": "Decorator", "func": {".class": "FuncDef", "arg_kinds": [0, 0, 0], "arg_names": ["self", "i", "x"], "flags": ["is_overload", "is_decorated"], "fullname": "collections.deque.__setitem__", "name": "__setitem__", "type": {".class": "CallableType", "arg_kinds": [0, 0, 0], "arg_names": [null, null, null], "arg_types": [{".class": "Instance", "args": [{".class": "TypeVarType", "fullname": "collections._T", "id": 1, "name": "_T", "upper_bound": "builtins.object", "values": [], "variance": 0}], "type_ref": "collections.deque"}, "builtins.int", {".class": "TypeVarType", "fullname": "collections._T", "id": 1, "name": "_T", "upper_bound": "builtins.object", "values": [], "variance": 0}], "bound_args": [], "def_extras": {"first_arg": "self"}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "__setitem__ of deque", "ret_type": {".class": "NoneTyp"}, "variables": []}}, "is_overload": true, "var": {".class": "Var", "flags": [], "fullname": null, "name": "__setitem__", "type": null}}, {".class": "Decorator", "func": {".class": "FuncDef", "arg_kinds": [0, 0, 0], "arg_names": ["self", "s", "o"], "flags": ["is_overload", "is_decorated"], "fullname": "collections.deque.__setitem__", "name": "__setitem__", "type": {".class": "CallableType", "arg_kinds": [0, 0, 0], "arg_names": [null, null, null], "arg_types": [{".class": "Instance", "args": [{".class": "TypeVarType", "fullname": "collections._T", "id": 1, "name": "_T", "upper_bound": "builtins.object", "values": [], "variance": 0}], "type_ref": "collections.deque"}, "builtins.slice", {".class": "Instance", "args": [{".class": "TypeVarType", "fullname": "collections._T", "id": 1, "name": "_T", "upper_bound": "builtins.object", "values": [], "variance": 0}], "type_ref": "typing.Iterable"}], "bound_args": [], "def_extras": {"first_arg": "self"}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "__setitem__ of deque", "ret_type": {".class": "NoneTyp"}, "variables": []}}, "is_overload": true, "var": {".class": "Var", "flags": [], "fullname": null, "name": "__setitem__", "type": null}}], "type": {".class": "Overloaded", "items": [{".class": "CallableType", "arg_kinds": [0, 0, 0], "arg_names": [null, null, null], "arg_types": [{".class": "Instance", "args": [{".class": "TypeVarType", "fullname": "collections._T", "id": 1, "name": "_T", "upper_bound": "builtins.object", "values": [], "variance": 0}], "type_ref": "collections.deque"}, "builtins.int", {".class": "TypeVarType", "fullname": "collections._T", "id": 1, "name": "_T", "upper_bound": "builtins.object", "values": [], "variance": 0}], "bound_args": [], "def_extras": {"first_arg": "self"}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "__setitem__ of deque", "ret_type": {".class": "NoneTyp"}, "variables": []}, {".class": "CallableType", "arg_kinds": [0, 0, 0], "arg_names": [null, null, null], "arg_types": [{".class": "Instance", "args": [{".class": "TypeVarType", "fullname": "collections._T", "id": 1, "name": "_T", "upper_bound": "builtins.object", "values": [], "variance": 0}], "type_ref": "collections.deque"}, "builtins.slice", {".class": "Instance", "args": [{".class": "TypeVarType", "fullname": "collections._T", "id": 1, "name": "_T", "upper_bound": "builtins.object", "values": [], "variance": 0}], "type_ref": "typing.Iterable"}], "bound_args": [], "def_extras": {"first_arg": "self"}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "__setitem__ of deque", "ret_type": {".class": "NoneTyp"}, "variables": []}]}}}, "__str__": {".class": "SymbolTableNode", "kind": "Mdef", "node": {".class": "FuncDef", "arg_kinds": [0], "arg_names": ["self"], "flags": [], "fullname": "collections.deque.__str__", "name": "__str__", "type": {".class": "CallableType", "arg_kinds": [0], "arg_names": [null], "arg_types": [{".class": "Instance", "args": [{".class": "TypeVarType", "fullname": "collections._T", "id": 1, "name": "_T", "upper_bound": "builtins.object", "values": [], "variance": 0}], "type_ref": "collections.deque"}], "bound_args": [], "def_extras": {"first_arg": "self"}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "__str__ of deque", "ret_type": "builtins.str", "variables": []}}}, "append": {".class": "SymbolTableNode", "kind": "Mdef", "node": {".class": "FuncDef", "arg_kinds": [0, 0], "arg_names": ["self", "x"], "flags": [], "fullname": "collections.deque.append", "name": "append", "type": {".class": "CallableType", "arg_kinds": [0, 0], "arg_names": ["self", "x"], "arg_types": [{".class": "Instance", "args": [{".class": "TypeVarType", "fullname": "collections._T", "id": 1, "name": "_T", "upper_bound": "builtins.object", "values": [], "variance": 0}], "type_ref": "collections.deque"}, {".class": "TypeVarType", "fullname": "collections._T", "id": 1, "name": "_T", "upper_bound": "builtins.object", "values": [], "variance": 0}], "bound_args": [], "def_extras": {"first_arg": "self"}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "append of deque", "ret_type": {".class": "NoneTyp"}, "variables": []}}}, "appendleft": {".class": "SymbolTableNode", "kind": "Mdef", "node": {".class": "FuncDef", "arg_kinds": [0, 0], "arg_names": ["self", "x"], "flags": [], "fullname": "collections.deque.appendleft", "name": "appendleft", "type": {".class": "CallableType", "arg_kinds": [0, 0], "arg_names": ["self", "x"], "arg_types": [{".class": "Instance", "args": [{".class": "TypeVarType", "fullname": "collections._T", "id": 1, "name": "_T", "upper_bound": "builtins.object", "values": [], "variance": 0}], "type_ref": "collections.deque"}, {".class": "TypeVarType", "fullname": "collections._T", "id": 1, "name": "_T", "upper_bound": "builtins.object", "values": [], "variance": 0}], "bound_args": [], "def_extras": {"first_arg": "self"}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "appendleft of deque", "ret_type": {".class": "NoneTyp"}, "variables": []}}}, "clear": {".class": "SymbolTableNode", "kind": "Mdef", "node": {".class": "FuncDef", "arg_kinds": [0], "arg_names": ["self"], "flags": [], "fullname": "collections.deque.clear", "name": "clear", "type": {".class": "CallableType", "arg_kinds": [0], "arg_names": ["self"], "arg_types": [{".class": "Instance", "args": [{".class": "TypeVarType", "fullname": "collections._T", "id": 1, "name": "_T", "upper_bound": "builtins.object", "values": [], "variance": 0}], "type_ref": "collections.deque"}], "bound_args": [], "def_extras": {"first_arg": "self"}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "clear of deque", "ret_type": {".class": "NoneTyp"}, "variables": []}}}, "copy": {".class": "SymbolTableNode", "kind": "Mdef", "node": {".class": "FuncDef", "arg_kinds": [0], "arg_names": ["self"], "flags": ["is_conditional"], "fullname": "collections.deque.copy", "name": "copy", "type": {".class": "CallableType", "arg_kinds": [0], "arg_names": ["self"], "arg_types": [{".class": "Instance", "args": [{".class": "TypeVarType", "fullname": "collections._T", "id": 1, "name": "_T", "upper_bound": "builtins.object", "values": [], "variance": 0}], "type_ref": "collections.deque"}], "bound_args": [], "def_extras": {"first_arg": "self"}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "copy of deque", "ret_type": {".class": "Instance", "args": [{".class": "TypeVarType", "fullname": "collections._T", "id": 1, "name": "_T", "upper_bound": "builtins.object", "values": [], "variance": 0}], "type_ref": "collections.deque"}, "variables": []}}}, "count": {".class": "SymbolTableNode", "kind": "Mdef", "node": {".class": "FuncDef", "arg_kinds": [0, 0], "arg_names": ["self", "x"], "flags": [], "fullname": "collections.deque.count", "name": "count", "type": {".class": "CallableType", "arg_kinds": [0, 0], "arg_names": ["self", "x"], "arg_types": [{".class": "Instance", "args": [{".class": "TypeVarType", "fullname": "collections._T", "id": 1, "name": "_T", "upper_bound": "builtins.object", "values": [], "variance": 0}], "type_ref": "collections.deque"}, {".class": "TypeVarType", "fullname": "collections._T", "id": 1, "name": "_T", "upper_bound": "builtins.object", "values": [], "variance": 0}], "bound_args": [], "def_extras": {"first_arg": "self"}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "count of deque", "ret_type": "builtins.int", "variables": []}}}, "extend": {".class": "SymbolTableNode", "kind": "Mdef", "node": {".class": "FuncDef", "arg_kinds": [0, 0], "arg_names": ["self", "iterable"], "flags": [], "fullname": "collections.deque.extend", "name": "extend", "type": {".class": "CallableType", "arg_kinds": [0, 0], "arg_names": ["self", "iterable"], "arg_types": [{".class": "Instance", "args": [{".class": "TypeVarType", "fullname": "collections._T", "id": 1, "name": "_T", "upper_bound": "builtins.object", "values": [], "variance": 0}], "type_ref": "collections.deque"}, {".class": "Instance", "args": [{".class": "TypeVarType", "fullname": "collections._T", "id": 1, "name": "_T", "upper_bound": "builtins.object", "values": [], "variance": 0}], "type_ref": "typing.Iterable"}], "bound_args": [], "def_extras": {"first_arg": "self"}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "extend of deque", "ret_type": {".class": "NoneTyp"}, "variables": []}}}, "extendleft": {".class": "SymbolTableNode", "kind": "Mdef", "node": {".class": "FuncDef", "arg_kinds": [0, 0], "arg_names": ["self", "iterable"], "flags": [], "fullname": "collections.deque.extendleft", "name": "extendleft", "type": {".class": "CallableType", "arg_kinds": [0, 0], "arg_names": ["self", "iterable"], "arg_types": [{".class": "Instance", "args": [{".class": "TypeVarType", "fullname": "collections._T", "id": 1, "name": "_T", "upper_bound": "builtins.object", "values": [], "variance": 0}], "type_ref": "collections.deque"}, {".class": "Instance", "args": [{".class": "TypeVarType", "fullname": "collections._T", "id": 1, "name": "_T", "upper_bound": "builtins.object", "values": [], "variance": 0}], "type_ref": "typing.Iterable"}], "bound_args": [], "def_extras": {"first_arg": "self"}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "extendleft of deque", "ret_type": {".class": "NoneTyp"}, "variables": []}}}, "index": {".class": "SymbolTableNode", "kind": "Mdef", "node": {".class": "FuncDef", "arg_kinds": [0, 0, 1, 1], "arg_names": ["self", "x", "start", "stop"], "flags": [], "fullname": "collections.deque.index", "name": "index", "type": {".class": "CallableType", "arg_kinds": [0, 0, 1, 1], "arg_names": ["self", "x", "start", "stop"], "arg_types": [{".class": "Instance", "args": [{".class": "TypeVarType", "fullname": "collections._T", "id": 1, "name": "_T", "upper_bound": "builtins.object", "values": [], "variance": 0}], "type_ref": "collections.deque"}, {".class": "TypeVarType", "fullname": "collections._T", "id": 1, "name": "_T", "upper_bound": "builtins.object", "values": [], "variance": 0}, "builtins.int", "builtins.int"], "bound_args": [], "def_extras": {"first_arg": "self"}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "index of deque", "ret_type": "builtins.int", "variables": []}}}, "insert": {".class": "SymbolTableNode", "kind": "Mdef", "node": {".class": "FuncDef", "arg_kinds": [0, 0, 0], "arg_names": ["self", "i", "x"], "flags": [], "fullname": "collections.deque.insert", "name": "insert", "type": {".class": "CallableType", "arg_kinds": [0, 0, 0], "arg_names": ["self", "i", "x"], "arg_types": [{".class": "Instance", "args": [{".class": "TypeVarType", "fullname": "collections._T", "id": 1, "name": "_T", "upper_bound": "builtins.object", "values": [], "variance": 0}], "type_ref": "collections.deque"}, "builtins.int", {".class": "TypeVarType", "fullname": "collections._T", "id": 1, "name": "_T", "upper_bound": "builtins.object", "values": [], "variance": 0}], "bound_args": [], "def_extras": {"first_arg": "self"}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "insert of deque", "ret_type": {".class": "NoneTyp"}, "variables": []}}}, "maxlen": {".class": "SymbolTableNode", "kind": "Mdef", "node": {".class": "Decorator", "func": {".class": "FuncDef", "arg_kinds": [0], "arg_names": ["self"], "flags": ["is_property", "is_decorated"], "fullname": "collections.deque.maxlen", "name": "maxlen", "type": {".class": "CallableType", "arg_kinds": [0], "arg_names": ["self"], "arg_types": [{".class": "Instance", "args": [{".class": "TypeVarType", "fullname": "collections._T", "id": 1, "name": "_T", "upper_bound": "builtins.object", "values": [], "variance": 0}], "type_ref": "collections.deque"}], "bound_args": [], "def_extras": {"first_arg": "self"}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "maxlen of deque", "ret_type": {".class": "UnionType", "items": ["builtins.int", {".class": "NoneTyp"}]}, "variables": []}}, "is_overload": false, "var": {".class": "Var", "flags": ["is_initialized_in_class", "is_property"], "fullname": null, "name": "maxlen", "type": {".class": "CallableType", "arg_kinds": [0], "arg_names": ["self"], "arg_types": [{".class": "Instance", "args": [{".class": "TypeVarType", "fullname": "collections._T", "id": 1, "name": "_T", "upper_bound": "builtins.object", "values": [], "variance": 0}], "type_ref": "collections.deque"}], "bound_args": [], "def_extras": {"first_arg": "self"}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "maxlen of deque", "ret_type": {".class": "UnionType", "items": ["builtins.int", {".class": "NoneTyp"}]}, "variables": []}}}}, "pop": {".class": "SymbolTableNode", "kind": "Mdef", "node": {".class": "FuncDef", "arg_kinds": [0, 1], "arg_names": ["self", "i"], "flags": [], "fullname": "collections.deque.pop", "name": "pop", "type": {".class": "CallableType", "arg_kinds": [0, 1], "arg_names": ["self", "i"], "arg_types": [{".class": "Instance", "args": [{".class": "TypeVarType", "fullname": "collections._T", "id": 1, "name": "_T", "upper_bound": "builtins.object", "values": [], "variance": 0}], "type_ref": "collections.deque"}, "builtins.int"], "bound_args": [], "def_extras": {"first_arg": "self"}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "pop of deque", "ret_type": {".class": "TypeVarType", "fullname": "collections._T", "id": 1, "name": "_T", "upper_bound": "builtins.object", "values": [], "variance": 0}, "variables": []}}}, "popleft": {".class": "SymbolTableNode", "kind": "Mdef", "node": {".class": "FuncDef", "arg_kinds": [0], "arg_names": ["self"], "flags": [], "fullname": "collections.deque.popleft", "name": "popleft", "type": {".class": "CallableType", "arg_kinds": [0], "arg_names": ["self"], "arg_types": [{".class": "Instance", "args": [{".class": "TypeVarType", "fullname": "collections._T", "id": 1, "name": "_T", "upper_bound": "builtins.object", "values": [], "variance": 0}], "type_ref": "collections.deque"}], "bound_args": [], "def_extras": {"first_arg": "self"}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "popleft of deque", "ret_type": {".class": "TypeVarType", "fullname": "collections._T", "id": 1, "name": "_T", "upper_bound": "builtins.object", "values": [], "variance": 0}, "variables": []}}}, "remove": {".class": "SymbolTableNode", "kind": "Mdef", "node": {".class": "FuncDef", "arg_kinds": [0, 0], "arg_names": ["self", "value"], "flags": [], "fullname": "collections.deque.remove", "name": "remove", "type": {".class": "CallableType", "arg_kinds": [0, 0], "arg_names": ["self", "value"], "arg_types": [{".class": "Instance", "args": [{".class": "TypeVarType", "fullname": "collections._T", "id": 1, "name": "_T", "upper_bound": "builtins.object", "values": [], "variance": 0}], "type_ref": "collections.deque"}, {".class": "TypeVarType", "fullname": "collections._T", "id": 1, "name": "_T", "upper_bound": "builtins.object", "values": [], "variance": 0}], "bound_args": [], "def_extras": {"first_arg": "self"}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "remove of deque", "ret_type": {".class": "NoneTyp"}, "variables": []}}}, "reverse": {".class": "SymbolTableNode", "kind": "Mdef", "node": {".class": "FuncDef", "arg_kinds": [0], "arg_names": ["self"], "flags": [], "fullname": "collections.deque.reverse", "name": "reverse", "type": {".class": "CallableType", "arg_kinds": [0], "arg_names": ["self"], "arg_types": [{".class": "Instance", "args": [{".class": "TypeVarType", "fullname": "collections._T", "id": 1, "name": "_T", "upper_bound": "builtins.object", "values": [], "variance": 0}], "type_ref": "collections.deque"}], "bound_args": [], "def_extras": {"first_arg": "self"}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "reverse of deque", "ret_type": {".class": "NoneTyp"}, "variables": []}}}, "rotate": {".class": "SymbolTableNode", "kind": "Mdef", "node": {".class": "FuncDef", "arg_kinds": [0, 0], "arg_names": ["self", "n"], "flags": [], "fullname": "collections.deque.rotate", "name": "rotate", "type": {".class": "CallableType", "arg_kinds": [0, 0], "arg_names": ["self", "n"], "arg_types": [{".class": "Instance", "args": [{".class": "TypeVarType", "fullname": "collections._T", "id": 1, "name": "_T", "upper_bound": "builtins.object", "values": [], "variance": 0}], "type_ref": "collections.deque"}, "builtins.int"], "bound_args": [], "def_extras": {"first_arg": "self"}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "rotate of deque", "ret_type": {".class": "NoneTyp"}, "variables": []}}}}, "tuple_type": null, "type_vars": ["_T"], "typeddict_type": null}}, "namedtuple": {".class": "SymbolTableNode", "kind": "Gdef", "node": {".class": "FuncDef", "arg_kinds": [0, 0, 5, 5, 5], "arg_names": ["typename", "field_names", "rename", "module", "defaults"], "flags": ["is_conditional"], "fullname": "collections.namedtuple", "name": "namedtuple", "type": {".class": "CallableType", "arg_kinds": [0, 0, 5, 5, 5], "arg_names": ["typename", "field_names", "rename", "module", "defaults"], "arg_types": ["builtins.str", {".class": "UnionType", "items": ["builtins.str", {".class": "Instance", "args": ["builtins.str"], "type_ref": "typing.Iterable"}]}, "builtins.bool", {".class": "UnionType", "items": ["builtins.str", {".class": "NoneTyp"}]}, {".class": "UnionType", "items": [{".class": "Instance", "args": [{".class": "AnyType", "missing_import_name": null, "source_any": null, "type_of_any": 2}], "type_ref": "typing.Iterable"}, {".class": "NoneTyp"}]}], "bound_args": [], "def_extras": {"first_arg": null}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "namedtuple", "ret_type": {".class": "TypeType", "item": {".class": "Instance", "args": [{".class": "AnyType", "missing_import_name": null, "source_any": null, "type_of_any": 4}], "type_ref": "builtins.tuple"}}, "variables": []}}}, "overload": {".class": "SymbolTableNode", "cross_ref": "typing.overload", "kind": "Gdef", "module_hidden": true, "module_public": false}, "sys": {".class": "SymbolTableNode", "cross_ref": "sys", "kind": "Gdef", "module_hidden": true, "module_public": false}, "typing": {".class": "SymbolTableNode", "cross_ref": "typing", "kind": "Gdef", "module_hidden": true, "module_public": false}}, "path": "/usr/lib/python3/dist-packages/mypy/typeshed/stdlib/3/collections/__init__.pyi"}
\ No newline at end of file
diff --git a/Postgres/StressTests/.mypy_cache/3.7/collections/__init__.meta.json b/Postgres/StressTests/.mypy_cache/3.7/collections/__init__.meta.json
deleted file mode 100644
index 736782e..0000000
--- a/Postgres/StressTests/.mypy_cache/3.7/collections/__init__.meta.json
+++ /dev/null
@@ -1 +0,0 @@
-{"child_modules": ["collections.abc"], "data_mtime": 1553688971, "dep_lines": [2, 3, 9, 1, 1], "dep_prios": [10, 5, 10, 5, 30], "dependencies": ["sys", "typing", "collections.abc", "builtins", "abc"], "hash": "a771d73f70003131dc61f05923bcf536", "id": "collections", "ignore_all": true, "interface_hash": "6ad6a5afca808cc59c37f4e326a299e0", "mtime": 1549659920, "options": {"allow_redefinition": false, "allow_untyped_globals": false, "always_false": [], "always_true": [], "bazel": false, "check_untyped_defs": false, "disallow_any_decorated": false, "disallow_any_explicit": false, "disallow_any_expr": false, "disallow_any_generics": false, "disallow_any_unimported": false, "disallow_incomplete_defs": false, "disallow_subclassing_any": false, "disallow_untyped_calls": false, "disallow_untyped_decorators": false, "disallow_untyped_defs": false, "follow_imports": "normal", "follow_imports_for_stubs": false, "ignore_errors": false, "ignore_missing_imports": false, "local_partial_types": false, "mypyc": false, "new_semantic_analyzer": false, "no_implicit_optional": false, "platform": "linux", "plugins": [], "show_none_errors": true, "strict_optional": true, "strict_optional_whitelist": null, "warn_no_return": true, "warn_return_any": false, "warn_unused_ignores": false}, "path": "/usr/lib/python3/dist-packages/mypy/typeshed/stdlib/3/collections/__init__.pyi", "size": 15231, "suppressed": [], "version_id": "0.670"}
\ No newline at end of file
diff --git a/Postgres/StressTests/.mypy_cache/3.7/collections/abc.data.json b/Postgres/StressTests/.mypy_cache/3.7/collections/abc.data.json
deleted file mode 100644
index 7f0659b..0000000
--- a/Postgres/StressTests/.mypy_cache/3.7/collections/abc.data.json
+++ /dev/null
@@ -1 +0,0 @@
-{".class": "MypyFile", "_fullname": "collections.abc", "is_partial_stub_package": false, "is_stub": true, "names": {".class": "SymbolTable", "AsyncGenerator": {".class": "SymbolTableNode", "cross_ref": "typing.AsyncGenerator", "kind": "Gdef"}, "AsyncIterable": {".class": "SymbolTableNode", "cross_ref": "typing.AsyncIterable", "kind": "Gdef"}, "AsyncIterator": {".class": "SymbolTableNode", "cross_ref": "typing.AsyncIterator", "kind": "Gdef"}, "Awaitable": {".class": "SymbolTableNode", "cross_ref": "typing.Awaitable", "kind": "Gdef"}, "ByteString": {".class": "SymbolTableNode", "cross_ref": "typing.ByteString", "kind": "Gdef"}, "Callable": {".class": "SymbolTableNode", "cross_ref": "typing.Callable", "kind": "Gdef"}, "Collection": {".class": "SymbolTableNode", "cross_ref": "typing.Collection", "kind": "Gdef"}, "Container": {".class": "SymbolTableNode", "cross_ref": "typing.Container", "kind": "Gdef"}, "Coroutine": {".class": "SymbolTableNode", "cross_ref": "typing.Coroutine", "kind": "Gdef"}, "Generator": {".class": "SymbolTableNode", "cross_ref": "typing.Generator", "kind": "Gdef"}, "Hashable": {".class": "SymbolTableNode", "cross_ref": "typing.Hashable", "kind": "Gdef"}, "ItemsView": {".class": "SymbolTableNode", "cross_ref": "typing.ItemsView", "kind": "Gdef"}, "Iterable": {".class": "SymbolTableNode", "cross_ref": "typing.Iterable", "kind": "Gdef"}, "Iterator": {".class": "SymbolTableNode", "cross_ref": "typing.Iterator", "kind": "Gdef"}, "KeysView": {".class": "SymbolTableNode", "cross_ref": "typing.KeysView", "kind": "Gdef"}, "Mapping": {".class": "SymbolTableNode", "cross_ref": "typing.Mapping", "kind": "Gdef"}, "MappingView": {".class": "SymbolTableNode", "cross_ref": "typing.MappingView", "kind": "Gdef"}, "MutableMapping": {".class": "SymbolTableNode", "cross_ref": "typing.MutableMapping", "kind": "Gdef"}, "MutableSequence": {".class": "SymbolTableNode", "cross_ref": "typing.MutableSequence", "kind": "Gdef"}, "MutableSet": {".class": "SymbolTableNode", "cross_ref": "typing.MutableSet", "kind": "Gdef"}, "Reversible": {".class": "SymbolTableNode", "cross_ref": "typing.Reversible", "kind": "Gdef"}, "Sequence": {".class": "SymbolTableNode", "cross_ref": "typing.Sequence", "kind": "Gdef"}, "Set": {".class": "SymbolTableNode", "cross_ref": "typing.AbstractSet", "kind": "Gdef"}, "Sized": {".class": "SymbolTableNode", "cross_ref": "typing.Sized", "kind": "Gdef"}, "ValuesView": {".class": "SymbolTableNode", "cross_ref": "typing.ValuesView", "kind": "Gdef"}, "__doc__": {".class": "SymbolTableNode", "kind": "Gdef", "node": {".class": "Var", "flags": [], "fullname": "collections.abc.__doc__", "name": "__doc__", "type": "builtins.str"}}, "__file__": {".class": "SymbolTableNode", "kind": "Gdef", "node": {".class": "Var", "flags": [], "fullname": "collections.abc.__file__", "name": "__file__", "type": "builtins.str"}}, "__name__": {".class": "SymbolTableNode", "kind": "Gdef", "node": {".class": "Var", "flags": [], "fullname": "collections.abc.__name__", "name": "__name__", "type": "builtins.str"}}, "__package__": {".class": "SymbolTableNode", "kind": "Gdef", "node": {".class": "Var", "flags": [], "fullname": "collections.abc.__package__", "name": "__package__", "type": "builtins.str"}}, "sys": {".class": "SymbolTableNode", "cross_ref": "sys", "kind": "Gdef", "module_hidden": true, "module_public": false}}, "path": "/usr/lib/python3/dist-packages/mypy/typeshed/stdlib/3/collections/abc.pyi"}
\ No newline at end of file
diff --git a/Postgres/StressTests/.mypy_cache/3.7/collections/abc.meta.json b/Postgres/StressTests/.mypy_cache/3.7/collections/abc.meta.json
deleted file mode 100644
index 06bdc9b..0000000
--- a/Postgres/StressTests/.mypy_cache/3.7/collections/abc.meta.json
+++ /dev/null
@@ -1 +0,0 @@
-{"child_modules": [], "data_mtime": 1553688971, "dep_lines": [4, 6, 1, 1, 1], "dep_prios": [10, 5, 5, 30, 30], "dependencies": ["sys", "collections", "builtins", "abc", "typing"], "hash": "197c87e716a5e5bf05eb5bca4ecd0344", "id": "collections.abc", "ignore_all": true, "interface_hash": "da969010ae7ae1e030fc27b25fb90d6a", "mtime": 1549659920, "options": {"allow_redefinition": false, "allow_untyped_globals": false, "always_false": [], "always_true": [], "bazel": false, "check_untyped_defs": false, "disallow_any_decorated": false, "disallow_any_explicit": false, "disallow_any_expr": false, "disallow_any_generics": false, "disallow_any_unimported": false, "disallow_incomplete_defs": false, "disallow_subclassing_any": false, "disallow_untyped_calls": false, "disallow_untyped_decorators": false, "disallow_untyped_defs": false, "follow_imports": "normal", "follow_imports_for_stubs": false, "ignore_errors": false, "ignore_missing_imports": false, "local_partial_types": false, "mypyc": false, "new_semantic_analyzer": false, "no_implicit_optional": false, "platform": "linux", "plugins": [], "show_none_errors": true, "strict_optional": true, "strict_optional_whitelist": null, "warn_no_return": true, "warn_return_any": false, "warn_unused_ignores": false}, "path": "/usr/lib/python3/dist-packages/mypy/typeshed/stdlib/3/collections/abc.pyi", "size": 1027, "suppressed": [], "version_id": "0.670"}
\ No newline at end of file
diff --git a/Postgres/StressTests/.mypy_cache/3.7/datetime.data.json b/Postgres/StressTests/.mypy_cache/3.7/datetime.data.json
deleted file mode 100644
index 1a7ae54..0000000
--- a/Postgres/StressTests/.mypy_cache/3.7/datetime.data.json
+++ /dev/null
@@ -1 +0,0 @@
-{".class": "MypyFile", "_fullname": "datetime", "is_partial_stub_package": false, "is_stub": true, "names": {".class": "SymbolTable", "AnyStr": {".class": "SymbolTableNode", "cross_ref": "typing.AnyStr", "kind": "Gdef", "module_hidden": true, "module_public": false}, "ClassVar": {".class": "SymbolTableNode", "cross_ref": "typing.ClassVar", "kind": "Gdef", "module_hidden": true, "module_public": false}, "MAXYEAR": {".class": "SymbolTableNode", "kind": "Gdef", "node": {".class": "Var", "flags": [], "fullname": "datetime.MAXYEAR", "name": "MAXYEAR", "type": "builtins.int"}}, "MINYEAR": {".class": "SymbolTableNode", "kind": "Gdef", "node": {".class": "Var", "flags": [], "fullname": "datetime.MINYEAR", "name": "MINYEAR", "type": "builtins.int"}}, "Optional": {".class": "SymbolTableNode", "cross_ref": "typing.Optional", "kind": "Gdef", "module_hidden": true, "module_public": false}, "SupportsAbs": {".class": "SymbolTableNode", "cross_ref": "typing.SupportsAbs", "kind": "Gdef", "module_hidden": true, "module_public": false}, "Tuple": {".class": "SymbolTableNode", "cross_ref": "typing.Tuple", "kind": "Gdef", "module_hidden": true, "module_public": false}, "Union": {".class": "SymbolTableNode", "cross_ref": "typing.Union", "kind": "Gdef", "module_hidden": true, "module_public": false}, "_Text": {".class": "SymbolTableNode", "kind": "Gdef", "node": {".class": "TypeAlias", "alias_tvars": [], "column": 4, "fullname": "datetime._Text", "line": 9, "no_args": true, "normalized": false, "target": "builtins.str"}}, "__doc__": {".class": "SymbolTableNode", "kind": "Gdef", "node": {".class": "Var", "flags": [], "fullname": "datetime.__doc__", "name": "__doc__", "type": "builtins.str"}}, "__file__": {".class": "SymbolTableNode", "kind": "Gdef", "node": {".class": "Var", "flags": [], "fullname": "datetime.__file__", "name": "__file__", "type": "builtins.str"}}, "__name__": {".class": "SymbolTableNode", "kind": "Gdef", "node": {".class": "Var", "flags": [], "fullname": "datetime.__name__", "name": "__name__", "type": "builtins.str"}}, "__package__": {".class": "SymbolTableNode", "kind": "Gdef", "node": {".class": "Var", "flags": [], "fullname": "datetime.__package__", "name": "__package__", "type": "builtins.str"}}, "_date": {".class": "SymbolTableNode", "kind": "Gdef", "node": {".class": "TypeAlias", "alias_tvars": [], "column": 0, "fullname": "datetime._date", "line": 132, "no_args": true, "normalized": false, "target": "datetime.date"}}, "_time": {".class": "SymbolTableNode", "kind": "Gdef", "node": {".class": "TypeAlias", "alias_tvars": [], "column": 0, "fullname": "datetime._time", "line": 133, "no_args": true, "normalized": false, "target": "datetime.time"}}, "_tzinfo": {".class": "SymbolTableNode", "kind": "Gdef", "node": {".class": "TypeAlias", "alias_tvars": [], "column": 0, "fullname": "datetime._tzinfo", "line": 31, "no_args": true, "normalized": false, "target": "datetime.tzinfo"}}, "date": {".class": "SymbolTableNode", "kind": "Gdef", "node": {".class": "TypeInfo", "_promote": null, "abstract_attributes": [], "bases": ["builtins.object"], "declared_metaclass": null, "defn": {".class": "ClassDef", "fullname": "datetime.date", "name": "date", "type_vars": []}, "flags": [], "fullname": "datetime.date", "metaclass_type": null, "metadata": {}, "module_name": "datetime", "mro": ["datetime.date", "builtins.object"], "names": {".class": "SymbolTable", "__add__": {".class": "SymbolTableNode", "kind": "Mdef", "node": {".class": "FuncDef", "arg_kinds": [0, 0], "arg_names": ["self", "other"], "flags": [], "fullname": "datetime.date.__add__", "name": "__add__", "type": {".class": "CallableType", "arg_kinds": [0, 0], "arg_names": [null, null], "arg_types": ["datetime.date", "datetime.timedelta"], "bound_args": [], "def_extras": {"first_arg": "self"}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "__add__ of date", "ret_type": "datetime.date", "variables": []}}}, "__format__": {".class": "SymbolTableNode", "kind": "Mdef", "node": {".class": "FuncDef", "arg_kinds": [0, 0], "arg_names": ["self", "fmt"], "flags": ["is_conditional"], "fullname": "datetime.date.__format__", "name": "__format__", "type": {".class": "CallableType", "arg_kinds": [0, 0], "arg_names": ["self", "fmt"], "arg_types": ["datetime.date", "builtins.str"], "bound_args": [], "def_extras": {"first_arg": "self"}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "__format__ of date", "ret_type": "builtins.str", "variables": []}}}, "__ge__": {".class": "SymbolTableNode", "kind": "Mdef", "node": {".class": "FuncDef", "arg_kinds": [0, 0], "arg_names": ["self", "other"], "flags": [], "fullname": "datetime.date.__ge__", "name": "__ge__", "type": {".class": "CallableType", "arg_kinds": [0, 0], "arg_names": [null, null], "arg_types": ["datetime.date", "datetime.date"], "bound_args": [], "def_extras": {"first_arg": "self"}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "__ge__ of date", "ret_type": "builtins.bool", "variables": []}}}, "__gt__": {".class": "SymbolTableNode", "kind": "Mdef", "node": {".class": "FuncDef", "arg_kinds": [0, 0], "arg_names": ["self", "other"], "flags": [], "fullname": "datetime.date.__gt__", "name": "__gt__", "type": {".class": "CallableType", "arg_kinds": [0, 0], "arg_names": [null, null], "arg_types": ["datetime.date", "datetime.date"], "bound_args": [], "def_extras": {"first_arg": "self"}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "__gt__ of date", "ret_type": "builtins.bool", "variables": []}}}, "__hash__": {".class": "SymbolTableNode", "kind": "Mdef", "node": {".class": "FuncDef", "arg_kinds": [0], "arg_names": ["self"], "flags": [], "fullname": "datetime.date.__hash__", "name": "__hash__", "type": {".class": "CallableType", "arg_kinds": [0], "arg_names": ["self"], "arg_types": ["datetime.date"], "bound_args": [], "def_extras": {"first_arg": "self"}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "__hash__ of date", "ret_type": "builtins.int", "variables": []}}}, "__init__": {".class": "SymbolTableNode", "kind": "Mdef", "node": {".class": "FuncDef", "arg_kinds": [0, 0, 0, 0], "arg_names": ["self", "year", "month", "day"], "flags": [], "fullname": "datetime.date.__init__", "name": "__init__", "type": {".class": "CallableType", "arg_kinds": [0, 0, 0, 0], "arg_names": ["self", "year", "month", "day"], "arg_types": ["datetime.date", "builtins.int", "builtins.int", "builtins.int"], "bound_args": [], "def_extras": {"first_arg": "self"}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "__init__ of date", "ret_type": {".class": "NoneTyp"}, "variables": []}}}, "__le__": {".class": "SymbolTableNode", "kind": "Mdef", "node": {".class": "FuncDef", "arg_kinds": [0, 0], "arg_names": ["self", "other"], "flags": [], "fullname": "datetime.date.__le__", "name": "__le__", "type": {".class": "CallableType", "arg_kinds": [0, 0], "arg_names": [null, null], "arg_types": ["datetime.date", "datetime.date"], "bound_args": [], "def_extras": {"first_arg": "self"}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "__le__ of date", "ret_type": "builtins.bool", "variables": []}}}, "__lt__": {".class": "SymbolTableNode", "kind": "Mdef", "node": {".class": "FuncDef", "arg_kinds": [0, 0], "arg_names": ["self", "other"], "flags": [], "fullname": "datetime.date.__lt__", "name": "__lt__", "type": {".class": "CallableType", "arg_kinds": [0, 0], "arg_names": [null, null], "arg_types": ["datetime.date", "datetime.date"], "bound_args": [], "def_extras": {"first_arg": "self"}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "__lt__ of date", "ret_type": "builtins.bool", "variables": []}}}, "__sub__": {".class": "SymbolTableNode", "kind": "Mdef", "node": {".class": "OverloadedFuncDef", "flags": [], "fullname": "datetime.date.__sub__", "impl": null, "items": [{".class": "Decorator", "func": {".class": "FuncDef", "arg_kinds": [0, 0], "arg_names": ["self", "other"], "flags": ["is_overload", "is_decorated"], "fullname": "datetime.date.__sub__", "name": "__sub__", "type": {".class": "CallableType", "arg_kinds": [0, 0], "arg_names": [null, null], "arg_types": ["datetime.date", "datetime.timedelta"], "bound_args": [], "def_extras": {"first_arg": "self"}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "__sub__ of date", "ret_type": "datetime.date", "variables": []}}, "is_overload": true, "var": {".class": "Var", "flags": [], "fullname": null, "name": "__sub__", "type": null}}, {".class": "Decorator", "func": {".class": "FuncDef", "arg_kinds": [0, 0], "arg_names": ["self", "other"], "flags": ["is_overload", "is_decorated"], "fullname": "datetime.date.__sub__", "name": "__sub__", "type": {".class": "CallableType", "arg_kinds": [0, 0], "arg_names": [null, null], "arg_types": ["datetime.date", "datetime.date"], "bound_args": [], "def_extras": {"first_arg": "self"}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "__sub__ of date", "ret_type": "datetime.timedelta", "variables": []}}, "is_overload": true, "var": {".class": "Var", "flags": [], "fullname": null, "name": "__sub__", "type": null}}], "type": {".class": "Overloaded", "items": [{".class": "CallableType", "arg_kinds": [0, 0], "arg_names": [null, null], "arg_types": ["datetime.date", "datetime.timedelta"], "bound_args": [], "def_extras": {"first_arg": "self"}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "__sub__ of date", "ret_type": "datetime.date", "variables": []}, {".class": "CallableType", "arg_kinds": [0, 0], "arg_names": [null, null], "arg_types": ["datetime.date", "datetime.date"], "bound_args": [], "def_extras": {"first_arg": "self"}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "__sub__ of date", "ret_type": "datetime.timedelta", "variables": []}]}}}, "ctime": {".class": "SymbolTableNode", "kind": "Mdef", "node": {".class": "FuncDef", "arg_kinds": [0], "arg_names": ["self"], "flags": [], "fullname": "datetime.date.ctime", "name": "ctime", "type": {".class": "CallableType", "arg_kinds": [0], "arg_names": ["self"], "arg_types": ["datetime.date"], "bound_args": [], "def_extras": {"first_arg": "self"}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "ctime of date", "ret_type": "builtins.str", "variables": []}}}, "day": {".class": "SymbolTableNode", "kind": "Mdef", "node": {".class": "Decorator", "func": {".class": "FuncDef", "arg_kinds": [0], "arg_names": ["self"], "flags": ["is_property", "is_decorated"], "fullname": "datetime.date.day", "name": "day", "type": {".class": "CallableType", "arg_kinds": [0], "arg_names": ["self"], "arg_types": ["datetime.date"], "bound_args": [], "def_extras": {"first_arg": "self"}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "day of date", "ret_type": "builtins.int", "variables": []}}, "is_overload": false, "var": {".class": "Var", "flags": ["is_initialized_in_class", "is_property"], "fullname": null, "name": "day", "type": {".class": "CallableType", "arg_kinds": [0], "arg_names": ["self"], "arg_types": ["datetime.date"], "bound_args": [], "def_extras": {"first_arg": "self"}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "day of date", "ret_type": "builtins.int", "variables": []}}}}, "fromisoformat": {".class": "SymbolTableNode", "kind": "Mdef", "node": {".class": "Decorator", "func": {".class": "FuncDef", "arg_kinds": [0, 0], "arg_names": ["cls", "date_string"], "flags": ["is_class", "is_decorated", "is_conditional"], "fullname": "datetime.date.fromisoformat", "name": "fromisoformat", "type": {".class": "CallableType", "arg_kinds": [0, 0], "arg_names": ["cls", "date_string"], "arg_types": [{".class": "TypeType", "item": "datetime.date"}, "builtins.str"], "bound_args": [], "def_extras": {"first_arg": "cls"}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "fromisoformat of date", "ret_type": "datetime.date", "variables": []}}, "is_overload": false, "var": {".class": "Var", "flags": ["is_initialized_in_class", "is_classmethod"], "fullname": null, "name": "fromisoformat", "type": {".class": "CallableType", "arg_kinds": [0, 0], "arg_names": ["cls", "date_string"], "arg_types": [{".class": "TypeType", "item": "datetime.date"}, "builtins.str"], "bound_args": [], "def_extras": {"first_arg": "cls"}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "fromisoformat of date", "ret_type": "datetime.date", "variables": []}}}}, "fromordinal": {".class": "SymbolTableNode", "kind": "Mdef", "node": {".class": "Decorator", "func": {".class": "FuncDef", "arg_kinds": [0, 0], "arg_names": ["cls", "n"], "flags": ["is_class", "is_decorated"], "fullname": "datetime.date.fromordinal", "name": "fromordinal", "type": {".class": "CallableType", "arg_kinds": [0, 0], "arg_names": ["cls", "n"], "arg_types": [{".class": "TypeType", "item": "datetime.date"}, "builtins.int"], "bound_args": [], "def_extras": {"first_arg": "cls"}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "fromordinal of date", "ret_type": "datetime.date", "variables": []}}, "is_overload": false, "var": {".class": "Var", "flags": ["is_initialized_in_class", "is_classmethod"], "fullname": null, "name": "fromordinal", "type": {".class": "CallableType", "arg_kinds": [0, 0], "arg_names": ["cls", "n"], "arg_types": [{".class": "TypeType", "item": "datetime.date"}, "builtins.int"], "bound_args": [], "def_extras": {"first_arg": "cls"}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "fromordinal of date", "ret_type": "datetime.date", "variables": []}}}}, "fromtimestamp": {".class": "SymbolTableNode", "kind": "Mdef", "node": {".class": "Decorator", "func": {".class": "FuncDef", "arg_kinds": [0, 0], "arg_names": ["cls", "t"], "flags": ["is_class", "is_decorated"], "fullname": "datetime.date.fromtimestamp", "name": "fromtimestamp", "type": {".class": "CallableType", "arg_kinds": [0, 0], "arg_names": ["cls", "t"], "arg_types": [{".class": "TypeType", "item": "datetime.date"}, "builtins.float"], "bound_args": [], "def_extras": {"first_arg": "cls"}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "fromtimestamp of date", "ret_type": "datetime.date", "variables": []}}, "is_overload": false, "var": {".class": "Var", "flags": ["is_initialized_in_class", "is_classmethod"], "fullname": null, "name": "fromtimestamp", "type": {".class": "CallableType", "arg_kinds": [0, 0], "arg_names": ["cls", "t"], "arg_types": [{".class": "TypeType", "item": "datetime.date"}, "builtins.float"], "bound_args": [], "def_extras": {"first_arg": "cls"}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "fromtimestamp of date", "ret_type": "datetime.date", "variables": []}}}}, "isocalendar": {".class": "SymbolTableNode", "kind": "Mdef", "node": {".class": "FuncDef", "arg_kinds": [0], "arg_names": ["self"], "flags": [], "fullname": "datetime.date.isocalendar", "name": "isocalendar", "type": {".class": "CallableType", "arg_kinds": [0], "arg_names": ["self"], "arg_types": ["datetime.date"], "bound_args": [], "def_extras": {"first_arg": "self"}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "isocalendar of date", "ret_type": {".class": "TupleType", "fallback": {".class": "Instance", "args": [{".class": "AnyType", "missing_import_name": null, "source_any": null, "type_of_any": 6}], "type_ref": "builtins.tuple"}, "implicit": false, "items": ["builtins.int", "builtins.int", "builtins.int"]}, "variables": []}}}, "isoformat": {".class": "SymbolTableNode", "kind": "Mdef", "node": {".class": "FuncDef", "arg_kinds": [0], "arg_names": ["self"], "flags": [], "fullname": "datetime.date.isoformat", "name": "isoformat", "type": {".class": "CallableType", "arg_kinds": [0], "arg_names": ["self"], "arg_types": ["datetime.date"], "bound_args": [], "def_extras": {"first_arg": "self"}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "isoformat of date", "ret_type": "builtins.str", "variables": []}}}, "isoweekday": {".class": "SymbolTableNode", "kind": "Mdef", "node": {".class": "FuncDef", "arg_kinds": [0], "arg_names": ["self"], "flags": [], "fullname": "datetime.date.isoweekday", "name": "isoweekday", "type": {".class": "CallableType", "arg_kinds": [0], "arg_names": ["self"], "arg_types": ["datetime.date"], "bound_args": [], "def_extras": {"first_arg": "self"}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "isoweekday of date", "ret_type": "builtins.int", "variables": []}}}, "max": {".class": "SymbolTableNode", "kind": "Mdef", "node": {".class": "Var", "flags": ["is_initialized_in_class", "is_classvar"], "fullname": "datetime.date.max", "name": "max", "type": "datetime.date"}}, "min": {".class": "SymbolTableNode", "kind": "Mdef", "node": {".class": "Var", "flags": ["is_initialized_in_class", "is_classvar"], "fullname": "datetime.date.min", "name": "min", "type": "datetime.date"}}, "month": {".class": "SymbolTableNode", "kind": "Mdef", "node": {".class": "Decorator", "func": {".class": "FuncDef", "arg_kinds": [0], "arg_names": ["self"], "flags": ["is_property", "is_decorated"], "fullname": "datetime.date.month", "name": "month", "type": {".class": "CallableType", "arg_kinds": [0], "arg_names": ["self"], "arg_types": ["datetime.date"], "bound_args": [], "def_extras": {"first_arg": "self"}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "month of date", "ret_type": "builtins.int", "variables": []}}, "is_overload": false, "var": {".class": "Var", "flags": ["is_initialized_in_class", "is_property"], "fullname": null, "name": "month", "type": {".class": "CallableType", "arg_kinds": [0], "arg_names": ["self"], "arg_types": ["datetime.date"], "bound_args": [], "def_extras": {"first_arg": "self"}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "month of date", "ret_type": "builtins.int", "variables": []}}}}, "replace": {".class": "SymbolTableNode", "kind": "Mdef", "node": {".class": "FuncDef", "arg_kinds": [0, 1, 1, 1], "arg_names": ["self", "year", "month", "day"], "flags": [], "fullname": "datetime.date.replace", "name": "replace", "type": {".class": "CallableType", "arg_kinds": [0, 1, 1, 1], "arg_names": ["self", "year", "month", "day"], "arg_types": ["datetime.date", "builtins.int", "builtins.int", "builtins.int"], "bound_args": [], "def_extras": {"first_arg": "self"}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "replace of date", "ret_type": "datetime.date", "variables": []}}}, "resolution": {".class": "SymbolTableNode", "kind": "Mdef", "node": {".class": "Var", "flags": ["is_initialized_in_class", "is_classvar"], "fullname": "datetime.date.resolution", "name": "resolution", "type": "datetime.timedelta"}}, "strftime": {".class": "SymbolTableNode", "kind": "Mdef", "node": {".class": "FuncDef", "arg_kinds": [0, 0], "arg_names": ["self", "fmt"], "flags": [], "fullname": "datetime.date.strftime", "name": "strftime", "type": {".class": "CallableType", "arg_kinds": [0, 0], "arg_names": ["self", "fmt"], "arg_types": ["datetime.date", "builtins.str"], "bound_args": [], "def_extras": {"first_arg": "self"}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "strftime of date", "ret_type": "builtins.str", "variables": []}}}, "timetuple": {".class": "SymbolTableNode", "kind": "Mdef", "node": {".class": "FuncDef", "arg_kinds": [0], "arg_names": ["self"], "flags": [], "fullname": "datetime.date.timetuple", "name": "timetuple", "type": {".class": "CallableType", "arg_kinds": [0], "arg_names": ["self"], "arg_types": ["datetime.date"], "bound_args": [], "def_extras": {"first_arg": "self"}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "timetuple of date", "ret_type": {".class": "TupleType", "fallback": "time.struct_time", "implicit": false, "items": ["builtins.int", "builtins.int", "builtins.int", "builtins.int", "builtins.int", "builtins.int", "builtins.int", "builtins.int", "builtins.int", "builtins.str", "builtins.int"]}, "variables": []}}}, "today": {".class": "SymbolTableNode", "kind": "Mdef", "node": {".class": "Decorator", "func": {".class": "FuncDef", "arg_kinds": [0], "arg_names": ["cls"], "flags": ["is_class", "is_decorated"], "fullname": "datetime.date.today", "name": "today", "type": {".class": "CallableType", "arg_kinds": [0], "arg_names": ["cls"], "arg_types": [{".class": "TypeType", "item": "datetime.date"}], "bound_args": [], "def_extras": {"first_arg": "cls"}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "today of date", "ret_type": "datetime.date", "variables": []}}, "is_overload": false, "var": {".class": "Var", "flags": ["is_initialized_in_class", "is_classmethod"], "fullname": null, "name": "today", "type": {".class": "CallableType", "arg_kinds": [0], "arg_names": ["cls"], "arg_types": [{".class": "TypeType", "item": "datetime.date"}], "bound_args": [], "def_extras": {"first_arg": "cls"}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "today of date", "ret_type": "datetime.date", "variables": []}}}}, "toordinal": {".class": "SymbolTableNode", "kind": "Mdef", "node": {".class": "FuncDef", "arg_kinds": [0], "arg_names": ["self"], "flags": [], "fullname": "datetime.date.toordinal", "name": "toordinal", "type": {".class": "CallableType", "arg_kinds": [0], "arg_names": ["self"], "arg_types": ["datetime.date"], "bound_args": [], "def_extras": {"first_arg": "self"}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "toordinal of date", "ret_type": "builtins.int", "variables": []}}}, "weekday": {".class": "SymbolTableNode", "kind": "Mdef", "node": {".class": "FuncDef", "arg_kinds": [0], "arg_names": ["self"], "flags": [], "fullname": "datetime.date.weekday", "name": "weekday", "type": {".class": "CallableType", "arg_kinds": [0], "arg_names": ["self"], "arg_types": ["datetime.date"], "bound_args": [], "def_extras": {"first_arg": "self"}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "weekday of date", "ret_type": "builtins.int", "variables": []}}}, "year": {".class": "SymbolTableNode", "kind": "Mdef", "node": {".class": "Decorator", "func": {".class": "FuncDef", "arg_kinds": [0], "arg_names": ["self"], "flags": ["is_property", "is_decorated"], "fullname": "datetime.date.year", "name": "year", "type": {".class": "CallableType", "arg_kinds": [0], "arg_names": ["self"], "arg_types": ["datetime.date"], "bound_args": [], "def_extras": {"first_arg": "self"}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "year of date", "ret_type": "builtins.int", "variables": []}}, "is_overload": false, "var": {".class": "Var", "flags": ["is_initialized_in_class", "is_property"], "fullname": null, "name": "year", "type": {".class": "CallableType", "arg_kinds": [0], "arg_names": ["self"], "arg_types": ["datetime.date"], "bound_args": [], "def_extras": {"first_arg": "self"}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "year of date", "ret_type": "builtins.int", "variables": []}}}}}, "tuple_type": null, "type_vars": [], "typeddict_type": null}}, "datetime": {".class": "SymbolTableNode", "kind": "Gdef", "node": {".class": "TypeInfo", "_promote": null, "abstract_attributes": [], "bases": ["datetime.date"], "declared_metaclass": null, "defn": {".class": "ClassDef", "fullname": "datetime.datetime", "name": "datetime", "type_vars": []}, "flags": [], "fullname": "datetime.datetime", "metaclass_type": null, "metadata": {}, "module_name": "datetime", "mro": ["datetime.datetime", "datetime.date", "builtins.object"], "names": {".class": "SymbolTable", "__add__": {".class": "SymbolTableNode", "kind": "Mdef", "node": {".class": "FuncDef", "arg_kinds": [0, 0], "arg_names": ["self", "other"], "flags": [], "fullname": "datetime.datetime.__add__", "name": "__add__", "type": {".class": "CallableType", "arg_kinds": [0, 0], "arg_names": [null, null], "arg_types": ["datetime.datetime", "datetime.timedelta"], "bound_args": [], "def_extras": {"first_arg": "self"}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "__add__ of datetime", "ret_type": "datetime.datetime", "variables": []}}}, "__format__": {".class": "SymbolTableNode", "kind": "Mdef", "node": {".class": "FuncDef", "arg_kinds": [0, 0], "arg_names": ["self", "fmt"], "flags": ["is_conditional"], "fullname": "datetime.datetime.__format__", "name": "__format__", "type": {".class": "CallableType", "arg_kinds": [0, 0], "arg_names": ["self", "fmt"], "arg_types": ["datetime.datetime", "builtins.str"], "bound_args": [], "def_extras": {"first_arg": "self"}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "__format__ of datetime", "ret_type": "builtins.str", "variables": []}}}, "__ge__": {".class": "SymbolTableNode", "kind": "Mdef", "node": {".class": "FuncDef", "arg_kinds": [0, 0], "arg_names": ["self", "other"], "flags": [], "fullname": "datetime.datetime.__ge__", "name": "__ge__", "type": {".class": "CallableType", "arg_kinds": [0, 0], "arg_names": [null, null], "arg_types": ["datetime.datetime", "datetime.datetime"], "bound_args": [], "def_extras": {"first_arg": "self"}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "__ge__ of datetime", "ret_type": "builtins.bool", "variables": []}}}, "__gt__": {".class": "SymbolTableNode", "kind": "Mdef", "node": {".class": "FuncDef", "arg_kinds": [0, 0], "arg_names": ["self", "other"], "flags": [], "fullname": "datetime.datetime.__gt__", "name": "__gt__", "type": {".class": "CallableType", "arg_kinds": [0, 0], "arg_names": [null, null], "arg_types": ["datetime.datetime", "datetime.datetime"], "bound_args": [], "def_extras": {"first_arg": "self"}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "__gt__ of datetime", "ret_type": "builtins.bool", "variables": []}}}, "__hash__": {".class": "SymbolTableNode", "kind": "Mdef", "node": {".class": "FuncDef", "arg_kinds": [0], "arg_names": ["self"], "flags": [], "fullname": "datetime.datetime.__hash__", "name": "__hash__", "type": {".class": "CallableType", "arg_kinds": [0], "arg_names": ["self"], "arg_types": ["datetime.datetime"], "bound_args": [], "def_extras": {"first_arg": "self"}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "__hash__ of datetime", "ret_type": "builtins.int", "variables": []}}}, "__init__": {".class": "SymbolTableNode", "kind": "Mdef", "node": {".class": "FuncDef", "arg_kinds": [0, 0, 0, 0, 1, 1, 1, 1, 1, 5], "arg_names": ["self", "year", "month", "day", "hour", "minute", "second", "microsecond", "tzinfo", "fold"], "flags": ["is_conditional"], "fullname": "datetime.datetime.__init__", "name": "__init__", "type": {".class": "CallableType", "arg_kinds": [0, 0, 0, 0, 1, 1, 1, 1, 1, 5], "arg_names": ["self", "year", "month", "day", "hour", "minute", "second", "microsecond", "tzinfo", "fold"], "arg_types": ["datetime.datetime", "builtins.int", "builtins.int", "builtins.int", "builtins.int", "builtins.int", "builtins.int", "builtins.int", {".class": "UnionType", "items": ["datetime.tzinfo", {".class": "NoneTyp"}]}, "builtins.int"], "bound_args": [], "def_extras": {"first_arg": "self"}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "__init__ of datetime", "ret_type": {".class": "NoneTyp"}, "variables": []}}}, "__le__": {".class": "SymbolTableNode", "kind": "Mdef", "node": {".class": "FuncDef", "arg_kinds": [0, 0], "arg_names": ["self", "other"], "flags": [], "fullname": "datetime.datetime.__le__", "name": "__le__", "type": {".class": "CallableType", "arg_kinds": [0, 0], "arg_names": [null, null], "arg_types": ["datetime.datetime", "datetime.datetime"], "bound_args": [], "def_extras": {"first_arg": "self"}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "__le__ of datetime", "ret_type": "builtins.bool", "variables": []}}}, "__lt__": {".class": "SymbolTableNode", "kind": "Mdef", "node": {".class": "FuncDef", "arg_kinds": [0, 0], "arg_names": ["self", "other"], "flags": [], "fullname": "datetime.datetime.__lt__", "name": "__lt__", "type": {".class": "CallableType", "arg_kinds": [0, 0], "arg_names": [null, null], "arg_types": ["datetime.datetime", "datetime.datetime"], "bound_args": [], "def_extras": {"first_arg": "self"}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "__lt__ of datetime", "ret_type": "builtins.bool", "variables": []}}}, "__sub__": {".class": "SymbolTableNode", "kind": "Mdef", "node": {".class": "OverloadedFuncDef", "flags": [], "fullname": "datetime.datetime.__sub__", "impl": null, "items": [{".class": "Decorator", "func": {".class": "FuncDef", "arg_kinds": [0, 0], "arg_names": ["self", "other"], "flags": ["is_overload", "is_decorated"], "fullname": "datetime.datetime.__sub__", "name": "__sub__", "type": {".class": "CallableType", "arg_kinds": [0, 0], "arg_names": [null, null], "arg_types": ["datetime.datetime", "datetime.datetime"], "bound_args": [], "def_extras": {"first_arg": "self"}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "__sub__ of datetime", "ret_type": "datetime.timedelta", "variables": []}}, "is_overload": true, "var": {".class": "Var", "flags": [], "fullname": null, "name": "__sub__", "type": null}}, {".class": "Decorator", "func": {".class": "FuncDef", "arg_kinds": [0, 0], "arg_names": ["self", "other"], "flags": ["is_overload", "is_decorated"], "fullname": "datetime.datetime.__sub__", "name": "__sub__", "type": {".class": "CallableType", "arg_kinds": [0, 0], "arg_names": [null, null], "arg_types": ["datetime.datetime", "datetime.timedelta"], "bound_args": [], "def_extras": {"first_arg": "self"}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "__sub__ of datetime", "ret_type": "datetime.datetime", "variables": []}}, "is_overload": true, "var": {".class": "Var", "flags": [], "fullname": null, "name": "__sub__", "type": null}}], "type": {".class": "Overloaded", "items": [{".class": "CallableType", "arg_kinds": [0, 0], "arg_names": [null, null], "arg_types": ["datetime.datetime", "datetime.datetime"], "bound_args": [], "def_extras": {"first_arg": "self"}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "__sub__ of datetime", "ret_type": "datetime.timedelta", "variables": []}, {".class": "CallableType", "arg_kinds": [0, 0], "arg_names": [null, null], "arg_types": ["datetime.datetime", "datetime.timedelta"], "bound_args": [], "def_extras": {"first_arg": "self"}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "__sub__ of datetime", "ret_type": "datetime.datetime", "variables": []}]}}}, "astimezone": {".class": "SymbolTableNode", "kind": "Mdef", "node": {".class": "FuncDef", "arg_kinds": [0, 1], "arg_names": ["self", "tz"], "flags": ["is_conditional"], "fullname": "datetime.datetime.astimezone", "name": "astimezone", "type": {".class": "CallableType", "arg_kinds": [0, 1], "arg_names": ["self", "tz"], "arg_types": ["datetime.datetime", {".class": "UnionType", "items": ["datetime.tzinfo", {".class": "NoneTyp"}]}], "bound_args": [], "def_extras": {"first_arg": "self"}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "astimezone of datetime", "ret_type": "datetime.datetime", "variables": []}}}, "combine": {".class": "SymbolTableNode", "kind": "Mdef", "node": {".class": "Decorator", "func": {".class": "FuncDef", "arg_kinds": [0, 0, 0, 1], "arg_names": ["cls", "date", "time", "tzinfo"], "flags": ["is_class", "is_decorated", "is_conditional"], "fullname": "datetime.datetime.combine", "name": "combine", "type": {".class": "CallableType", "arg_kinds": [0, 0, 0, 1], "arg_names": ["cls", "date", "time", "tzinfo"], "arg_types": [{".class": "TypeType", "item": "datetime.datetime"}, "datetime.date", "datetime.time", {".class": "UnionType", "items": ["datetime.tzinfo", {".class": "NoneTyp"}]}], "bound_args": [], "def_extras": {"first_arg": "cls"}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "combine of datetime", "ret_type": "datetime.datetime", "variables": []}}, "is_overload": false, "var": {".class": "Var", "flags": ["is_initialized_in_class", "is_classmethod"], "fullname": null, "name": "combine", "type": {".class": "CallableType", "arg_kinds": [0, 0, 0, 1], "arg_names": ["cls", "date", "time", "tzinfo"], "arg_types": [{".class": "TypeType", "item": "datetime.datetime"}, "datetime.date", "datetime.time", {".class": "UnionType", "items": ["datetime.tzinfo", {".class": "NoneTyp"}]}], "bound_args": [], "def_extras": {"first_arg": "cls"}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "combine of datetime", "ret_type": "datetime.datetime", "variables": []}}}}, "ctime": {".class": "SymbolTableNode", "kind": "Mdef", "node": {".class": "FuncDef", "arg_kinds": [0], "arg_names": ["self"], "flags": [], "fullname": "datetime.datetime.ctime", "name": "ctime", "type": {".class": "CallableType", "arg_kinds": [0], "arg_names": ["self"], "arg_types": ["datetime.datetime"], "bound_args": [], "def_extras": {"first_arg": "self"}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "ctime of datetime", "ret_type": "builtins.str", "variables": []}}}, "date": {".class": "SymbolTableNode", "kind": "Mdef", "node": {".class": "FuncDef", "arg_kinds": [0], "arg_names": ["self"], "flags": [], "fullname": "datetime.datetime.date", "name": "date", "type": {".class": "CallableType", "arg_kinds": [0], "arg_names": ["self"], "arg_types": ["datetime.datetime"], "bound_args": [], "def_extras": {"first_arg": "self"}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "date of datetime", "ret_type": "datetime.date", "variables": []}}}, "day": {".class": "SymbolTableNode", "kind": "Mdef", "node": {".class": "Decorator", "func": {".class": "FuncDef", "arg_kinds": [0], "arg_names": ["self"], "flags": ["is_property", "is_decorated"], "fullname": "datetime.datetime.day", "name": "day", "type": {".class": "CallableType", "arg_kinds": [0], "arg_names": ["self"], "arg_types": ["datetime.datetime"], "bound_args": [], "def_extras": {"first_arg": "self"}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "day of datetime", "ret_type": "builtins.int", "variables": []}}, "is_overload": false, "var": {".class": "Var", "flags": ["is_initialized_in_class", "is_property"], "fullname": null, "name": "day", "type": {".class": "CallableType", "arg_kinds": [0], "arg_names": ["self"], "arg_types": ["datetime.datetime"], "bound_args": [], "def_extras": {"first_arg": "self"}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "day of datetime", "ret_type": "builtins.int", "variables": []}}}}, "dst": {".class": "SymbolTableNode", "kind": "Mdef", "node": {".class": "FuncDef", "arg_kinds": [0], "arg_names": ["self"], "flags": [], "fullname": "datetime.datetime.dst", "name": "dst", "type": {".class": "CallableType", "arg_kinds": [0], "arg_names": ["self"], "arg_types": ["datetime.datetime"], "bound_args": [], "def_extras": {"first_arg": "self"}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "dst of datetime", "ret_type": {".class": "UnionType", "items": ["datetime.timedelta", {".class": "NoneTyp"}]}, "variables": []}}}, "fold": {".class": "SymbolTableNode", "kind": "Mdef", "node": {".class": "Decorator", "func": {".class": "FuncDef", "arg_kinds": [0], "arg_names": ["self"], "flags": ["is_property", "is_decorated", "is_conditional"], "fullname": "datetime.datetime.fold", "name": "fold", "type": {".class": "CallableType", "arg_kinds": [0], "arg_names": ["self"], "arg_types": ["datetime.datetime"], "bound_args": [], "def_extras": {"first_arg": "self"}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "fold of datetime", "ret_type": "builtins.int", "variables": []}}, "is_overload": false, "var": {".class": "Var", "flags": ["is_initialized_in_class", "is_property"], "fullname": null, "name": "fold", "type": {".class": "CallableType", "arg_kinds": [0], "arg_names": ["self"], "arg_types": ["datetime.datetime"], "bound_args": [], "def_extras": {"first_arg": "self"}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "fold of datetime", "ret_type": "builtins.int", "variables": []}}}}, "fromisoformat": {".class": "SymbolTableNode", "kind": "Mdef", "node": {".class": "Decorator", "func": {".class": "FuncDef", "arg_kinds": [0, 0], "arg_names": ["cls", "date_string"], "flags": ["is_class", "is_decorated", "is_conditional"], "fullname": "datetime.datetime.fromisoformat", "name": "fromisoformat", "type": {".class": "CallableType", "arg_kinds": [0, 0], "arg_names": ["cls", "date_string"], "arg_types": [{".class": "TypeType", "item": "datetime.datetime"}, "builtins.str"], "bound_args": [], "def_extras": {"first_arg": "cls"}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "fromisoformat of datetime", "ret_type": "datetime.datetime", "variables": []}}, "is_overload": false, "var": {".class": "Var", "flags": ["is_initialized_in_class", "is_classmethod"], "fullname": null, "name": "fromisoformat", "type": {".class": "CallableType", "arg_kinds": [0, 0], "arg_names": ["cls", "date_string"], "arg_types": [{".class": "TypeType", "item": "datetime.datetime"}, "builtins.str"], "bound_args": [], "def_extras": {"first_arg": "cls"}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "fromisoformat of datetime", "ret_type": "datetime.datetime", "variables": []}}}}, "fromordinal": {".class": "SymbolTableNode", "kind": "Mdef", "node": {".class": "Decorator", "func": {".class": "FuncDef", "arg_kinds": [0, 0], "arg_names": ["cls", "n"], "flags": ["is_class", "is_decorated"], "fullname": "datetime.datetime.fromordinal", "name": "fromordinal", "type": {".class": "CallableType", "arg_kinds": [0, 0], "arg_names": ["cls", "n"], "arg_types": [{".class": "TypeType", "item": "datetime.datetime"}, "builtins.int"], "bound_args": [], "def_extras": {"first_arg": "cls"}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "fromordinal of datetime", "ret_type": "datetime.datetime", "variables": []}}, "is_overload": false, "var": {".class": "Var", "flags": ["is_initialized_in_class", "is_classmethod"], "fullname": null, "name": "fromordinal", "type": {".class": "CallableType", "arg_kinds": [0, 0], "arg_names": ["cls", "n"], "arg_types": [{".class": "TypeType", "item": "datetime.datetime"}, "builtins.int"], "bound_args": [], "def_extras": {"first_arg": "cls"}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "fromordinal of datetime", "ret_type": "datetime.datetime", "variables": []}}}}, "fromtimestamp": {".class": "SymbolTableNode", "kind": "Mdef", "node": {".class": "Decorator", "func": {".class": "FuncDef", "arg_kinds": [0, 0, 1], "arg_names": ["cls", "t", "tz"], "flags": ["is_class", "is_decorated"], "fullname": "datetime.datetime.fromtimestamp", "name": "fromtimestamp", "type": {".class": "CallableType", "arg_kinds": [0, 0, 1], "arg_names": ["cls", "t", "tz"], "arg_types": [{".class": "TypeType", "item": "datetime.datetime"}, "builtins.float", {".class": "UnionType", "items": ["datetime.tzinfo", {".class": "NoneTyp"}]}], "bound_args": [], "def_extras": {"first_arg": "cls"}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "fromtimestamp of datetime", "ret_type": "datetime.datetime", "variables": []}}, "is_overload": false, "var": {".class": "Var", "flags": ["is_initialized_in_class", "is_classmethod"], "fullname": null, "name": "fromtimestamp", "type": {".class": "CallableType", "arg_kinds": [0, 0, 1], "arg_names": ["cls", "t", "tz"], "arg_types": [{".class": "TypeType", "item": "datetime.datetime"}, "builtins.float", {".class": "UnionType", "items": ["datetime.tzinfo", {".class": "NoneTyp"}]}], "bound_args": [], "def_extras": {"first_arg": "cls"}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "fromtimestamp of datetime", "ret_type": "datetime.datetime", "variables": []}}}}, "hour": {".class": "SymbolTableNode", "kind": "Mdef", "node": {".class": "Decorator", "func": {".class": "FuncDef", "arg_kinds": [0], "arg_names": ["self"], "flags": ["is_property", "is_decorated"], "fullname": "datetime.datetime.hour", "name": "hour", "type": {".class": "CallableType", "arg_kinds": [0], "arg_names": ["self"], "arg_types": ["datetime.datetime"], "bound_args": [], "def_extras": {"first_arg": "self"}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "hour of datetime", "ret_type": "builtins.int", "variables": []}}, "is_overload": false, "var": {".class": "Var", "flags": ["is_initialized_in_class", "is_property"], "fullname": null, "name": "hour", "type": {".class": "CallableType", "arg_kinds": [0], "arg_names": ["self"], "arg_types": ["datetime.datetime"], "bound_args": [], "def_extras": {"first_arg": "self"}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "hour of datetime", "ret_type": "builtins.int", "variables": []}}}}, "isocalendar": {".class": "SymbolTableNode", "kind": "Mdef", "node": {".class": "FuncDef", "arg_kinds": [0], "arg_names": ["self"], "flags": [], "fullname": "datetime.datetime.isocalendar", "name": "isocalendar", "type": {".class": "CallableType", "arg_kinds": [0], "arg_names": ["self"], "arg_types": ["datetime.datetime"], "bound_args": [], "def_extras": {"first_arg": "self"}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "isocalendar of datetime", "ret_type": {".class": "TupleType", "fallback": {".class": "Instance", "args": [{".class": "AnyType", "missing_import_name": null, "source_any": null, "type_of_any": 6}], "type_ref": "builtins.tuple"}, "implicit": false, "items": ["builtins.int", "builtins.int", "builtins.int"]}, "variables": []}}}, "isoformat": {".class": "SymbolTableNode", "kind": "Mdef", "node": {".class": "FuncDef", "arg_kinds": [0, 1, 1], "arg_names": ["self", "sep", "timespec"], "flags": ["is_conditional"], "fullname": "datetime.datetime.isoformat", "name": "isoformat", "type": {".class": "CallableType", "arg_kinds": [0, 1, 1], "arg_names": ["self", "sep", "timespec"], "arg_types": ["datetime.datetime", "builtins.str", "builtins.str"], "bound_args": [], "def_extras": {"first_arg": "self"}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "isoformat of datetime", "ret_type": "builtins.str", "variables": []}}}, "isoweekday": {".class": "SymbolTableNode", "kind": "Mdef", "node": {".class": "FuncDef", "arg_kinds": [0], "arg_names": ["self"], "flags": [], "fullname": "datetime.datetime.isoweekday", "name": "isoweekday", "type": {".class": "CallableType", "arg_kinds": [0], "arg_names": ["self"], "arg_types": ["datetime.datetime"], "bound_args": [], "def_extras": {"first_arg": "self"}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "isoweekday of datetime", "ret_type": "builtins.int", "variables": []}}}, "max": {".class": "SymbolTableNode", "kind": "Mdef", "node": {".class": "Var", "flags": ["is_initialized_in_class", "is_classvar"], "fullname": "datetime.datetime.max", "name": "max", "type": "datetime.datetime"}}, "microsecond": {".class": "SymbolTableNode", "kind": "Mdef", "node": {".class": "Decorator", "func": {".class": "FuncDef", "arg_kinds": [0], "arg_names": ["self"], "flags": ["is_property", "is_decorated"], "fullname": "datetime.datetime.microsecond", "name": "microsecond", "type": {".class": "CallableType", "arg_kinds": [0], "arg_names": ["self"], "arg_types": ["datetime.datetime"], "bound_args": [], "def_extras": {"first_arg": "self"}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "microsecond of datetime", "ret_type": "builtins.int", "variables": []}}, "is_overload": false, "var": {".class": "Var", "flags": ["is_initialized_in_class", "is_property"], "fullname": null, "name": "microsecond", "type": {".class": "CallableType", "arg_kinds": [0], "arg_names": ["self"], "arg_types": ["datetime.datetime"], "bound_args": [], "def_extras": {"first_arg": "self"}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "microsecond of datetime", "ret_type": "builtins.int", "variables": []}}}}, "min": {".class": "SymbolTableNode", "kind": "Mdef", "node": {".class": "Var", "flags": ["is_initialized_in_class", "is_classvar"], "fullname": "datetime.datetime.min", "name": "min", "type": "datetime.datetime"}}, "minute": {".class": "SymbolTableNode", "kind": "Mdef", "node": {".class": "Decorator", "func": {".class": "FuncDef", "arg_kinds": [0], "arg_names": ["self"], "flags": ["is_property", "is_decorated"], "fullname": "datetime.datetime.minute", "name": "minute", "type": {".class": "CallableType", "arg_kinds": [0], "arg_names": ["self"], "arg_types": ["datetime.datetime"], "bound_args": [], "def_extras": {"first_arg": "self"}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "minute of datetime", "ret_type": "builtins.int", "variables": []}}, "is_overload": false, "var": {".class": "Var", "flags": ["is_initialized_in_class", "is_property"], "fullname": null, "name": "minute", "type": {".class": "CallableType", "arg_kinds": [0], "arg_names": ["self"], "arg_types": ["datetime.datetime"], "bound_args": [], "def_extras": {"first_arg": "self"}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "minute of datetime", "ret_type": "builtins.int", "variables": []}}}}, "month": {".class": "SymbolTableNode", "kind": "Mdef", "node": {".class": "Decorator", "func": {".class": "FuncDef", "arg_kinds": [0], "arg_names": ["self"], "flags": ["is_property", "is_decorated"], "fullname": "datetime.datetime.month", "name": "month", "type": {".class": "CallableType", "arg_kinds": [0], "arg_names": ["self"], "arg_types": ["datetime.datetime"], "bound_args": [], "def_extras": {"first_arg": "self"}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "month of datetime", "ret_type": "builtins.int", "variables": []}}, "is_overload": false, "var": {".class": "Var", "flags": ["is_initialized_in_class", "is_property"], "fullname": null, "name": "month", "type": {".class": "CallableType", "arg_kinds": [0], "arg_names": ["self"], "arg_types": ["datetime.datetime"], "bound_args": [], "def_extras": {"first_arg": "self"}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "month of datetime", "ret_type": "builtins.int", "variables": []}}}}, "now": {".class": "SymbolTableNode", "kind": "Mdef", "node": {".class": "Decorator", "func": {".class": "FuncDef", "arg_kinds": [0, 1], "arg_names": ["cls", "tz"], "flags": ["is_class", "is_decorated"], "fullname": "datetime.datetime.now", "name": "now", "type": {".class": "CallableType", "arg_kinds": [0, 1], "arg_names": ["cls", "tz"], "arg_types": [{".class": "TypeType", "item": "datetime.datetime"}, {".class": "UnionType", "items": ["datetime.tzinfo", {".class": "NoneTyp"}]}], "bound_args": [], "def_extras": {"first_arg": "cls"}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "now of datetime", "ret_type": "datetime.datetime", "variables": []}}, "is_overload": false, "var": {".class": "Var", "flags": ["is_initialized_in_class", "is_classmethod"], "fullname": null, "name": "now", "type": {".class": "CallableType", "arg_kinds": [0, 1], "arg_names": ["cls", "tz"], "arg_types": [{".class": "TypeType", "item": "datetime.datetime"}, {".class": "UnionType", "items": ["datetime.tzinfo", {".class": "NoneTyp"}]}], "bound_args": [], "def_extras": {"first_arg": "cls"}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "now of datetime", "ret_type": "datetime.datetime", "variables": []}}}}, "replace": {".class": "SymbolTableNode", "kind": "Mdef", "node": {".class": "FuncDef", "arg_kinds": [0, 1, 1, 1, 1, 1, 1, 1, 1, 5], "arg_names": ["self", "year", "month", "day", "hour", "minute", "second", "microsecond", "tzinfo", "fold"], "flags": ["is_conditional"], "fullname": "datetime.datetime.replace", "name": "replace", "type": {".class": "CallableType", "arg_kinds": [0, 1, 1, 1, 1, 1, 1, 1, 1, 5], "arg_names": ["self", "year", "month", "day", "hour", "minute", "second", "microsecond", "tzinfo", "fold"], "arg_types": ["datetime.datetime", "builtins.int", "builtins.int", "builtins.int", "builtins.int", "builtins.int", "builtins.int", "builtins.int", {".class": "UnionType", "items": ["datetime.tzinfo", {".class": "NoneTyp"}]}, "builtins.int"], "bound_args": [], "def_extras": {"first_arg": "self"}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "replace of datetime", "ret_type": "datetime.datetime", "variables": []}}}, "resolution": {".class": "SymbolTableNode", "kind": "Mdef", "node": {".class": "Var", "flags": ["is_initialized_in_class", "is_classvar"], "fullname": "datetime.datetime.resolution", "name": "resolution", "type": "datetime.timedelta"}}, "second": {".class": "SymbolTableNode", "kind": "Mdef", "node": {".class": "Decorator", "func": {".class": "FuncDef", "arg_kinds": [0], "arg_names": ["self"], "flags": ["is_property", "is_decorated"], "fullname": "datetime.datetime.second", "name": "second", "type": {".class": "CallableType", "arg_kinds": [0], "arg_names": ["self"], "arg_types": ["datetime.datetime"], "bound_args": [], "def_extras": {"first_arg": "self"}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "second of datetime", "ret_type": "builtins.int", "variables": []}}, "is_overload": false, "var": {".class": "Var", "flags": ["is_initialized_in_class", "is_property"], "fullname": null, "name": "second", "type": {".class": "CallableType", "arg_kinds": [0], "arg_names": ["self"], "arg_types": ["datetime.datetime"], "bound_args": [], "def_extras": {"first_arg": "self"}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "second of datetime", "ret_type": "builtins.int", "variables": []}}}}, "strftime": {".class": "SymbolTableNode", "kind": "Mdef", "node": {".class": "FuncDef", "arg_kinds": [0, 0], "arg_names": ["self", "fmt"], "flags": [], "fullname": "datetime.datetime.strftime", "name": "strftime", "type": {".class": "CallableType", "arg_kinds": [0, 0], "arg_names": ["self", "fmt"], "arg_types": ["datetime.datetime", "builtins.str"], "bound_args": [], "def_extras": {"first_arg": "self"}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "strftime of datetime", "ret_type": "builtins.str", "variables": []}}}, "strptime": {".class": "SymbolTableNode", "kind": "Mdef", "node": {".class": "Decorator", "func": {".class": "FuncDef", "arg_kinds": [0, 0, 0], "arg_names": ["cls", "date_string", "format"], "flags": ["is_class", "is_decorated"], "fullname": "datetime.datetime.strptime", "name": "strptime", "type": {".class": "CallableType", "arg_kinds": [0, 0, 0], "arg_names": ["cls", "date_string", "format"], "arg_types": [{".class": "TypeType", "item": "datetime.datetime"}, "builtins.str", "builtins.str"], "bound_args": [], "def_extras": {"first_arg": "cls"}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "strptime of datetime", "ret_type": "datetime.datetime", "variables": []}}, "is_overload": false, "var": {".class": "Var", "flags": ["is_initialized_in_class", "is_classmethod"], "fullname": null, "name": "strptime", "type": {".class": "CallableType", "arg_kinds": [0, 0, 0], "arg_names": ["cls", "date_string", "format"], "arg_types": [{".class": "TypeType", "item": "datetime.datetime"}, "builtins.str", "builtins.str"], "bound_args": [], "def_extras": {"first_arg": "cls"}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "strptime of datetime", "ret_type": "datetime.datetime", "variables": []}}}}, "time": {".class": "SymbolTableNode", "kind": "Mdef", "node": {".class": "FuncDef", "arg_kinds": [0], "arg_names": ["self"], "flags": [], "fullname": "datetime.datetime.time", "name": "time", "type": {".class": "CallableType", "arg_kinds": [0], "arg_names": ["self"], "arg_types": ["datetime.datetime"], "bound_args": [], "def_extras": {"first_arg": "self"}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "time of datetime", "ret_type": "datetime.time", "variables": []}}}, "timestamp": {".class": "SymbolTableNode", "kind": "Mdef", "node": {".class": "FuncDef", "arg_kinds": [0], "arg_names": ["self"], "flags": ["is_conditional"], "fullname": "datetime.datetime.timestamp", "name": "timestamp", "type": {".class": "CallableType", "arg_kinds": [0], "arg_names": ["self"], "arg_types": ["datetime.datetime"], "bound_args": [], "def_extras": {"first_arg": "self"}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "timestamp of datetime", "ret_type": "builtins.float", "variables": []}}}, "timetuple": {".class": "SymbolTableNode", "kind": "Mdef", "node": {".class": "FuncDef", "arg_kinds": [0], "arg_names": ["self"], "flags": [], "fullname": "datetime.datetime.timetuple", "name": "timetuple", "type": {".class": "CallableType", "arg_kinds": [0], "arg_names": ["self"], "arg_types": ["datetime.datetime"], "bound_args": [], "def_extras": {"first_arg": "self"}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "timetuple of datetime", "ret_type": {".class": "TupleType", "fallback": "time.struct_time", "implicit": false, "items": ["builtins.int", "builtins.int", "builtins.int", "builtins.int", "builtins.int", "builtins.int", "builtins.int", "builtins.int", "builtins.int", "builtins.str", "builtins.int"]}, "variables": []}}}, "timetz": {".class": "SymbolTableNode", "kind": "Mdef", "node": {".class": "FuncDef", "arg_kinds": [0], "arg_names": ["self"], "flags": [], "fullname": "datetime.datetime.timetz", "name": "timetz", "type": {".class": "CallableType", "arg_kinds": [0], "arg_names": ["self"], "arg_types": ["datetime.datetime"], "bound_args": [], "def_extras": {"first_arg": "self"}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "timetz of datetime", "ret_type": "datetime.time", "variables": []}}}, "today": {".class": "SymbolTableNode", "kind": "Mdef", "node": {".class": "Decorator", "func": {".class": "FuncDef", "arg_kinds": [0], "arg_names": ["cls"], "flags": ["is_class", "is_decorated"], "fullname": "datetime.datetime.today", "name": "today", "type": {".class": "CallableType", "arg_kinds": [0], "arg_names": ["cls"], "arg_types": [{".class": "TypeType", "item": "datetime.datetime"}], "bound_args": [], "def_extras": {"first_arg": "cls"}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "today of datetime", "ret_type": "datetime.datetime", "variables": []}}, "is_overload": false, "var": {".class": "Var", "flags": ["is_initialized_in_class", "is_classmethod"], "fullname": null, "name": "today", "type": {".class": "CallableType", "arg_kinds": [0], "arg_names": ["cls"], "arg_types": [{".class": "TypeType", "item": "datetime.datetime"}], "bound_args": [], "def_extras": {"first_arg": "cls"}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "today of datetime", "ret_type": "datetime.datetime", "variables": []}}}}, "toordinal": {".class": "SymbolTableNode", "kind": "Mdef", "node": {".class": "FuncDef", "arg_kinds": [0], "arg_names": ["self"], "flags": [], "fullname": "datetime.datetime.toordinal", "name": "toordinal", "type": {".class": "CallableType", "arg_kinds": [0], "arg_names": ["self"], "arg_types": ["datetime.datetime"], "bound_args": [], "def_extras": {"first_arg": "self"}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "toordinal of datetime", "ret_type": "builtins.int", "variables": []}}}, "tzinfo": {".class": "SymbolTableNode", "kind": "Mdef", "node": {".class": "Decorator", "func": {".class": "FuncDef", "arg_kinds": [0], "arg_names": ["self"], "flags": ["is_property", "is_decorated"], "fullname": "datetime.datetime.tzinfo", "name": "tzinfo", "type": {".class": "CallableType", "arg_kinds": [0], "arg_names": ["self"], "arg_types": ["datetime.datetime"], "bound_args": [], "def_extras": {"first_arg": "self"}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "tzinfo of datetime", "ret_type": {".class": "UnionType", "items": ["datetime.tzinfo", {".class": "NoneTyp"}]}, "variables": []}}, "is_overload": false, "var": {".class": "Var", "flags": ["is_initialized_in_class", "is_property"], "fullname": null, "name": "tzinfo", "type": {".class": "CallableType", "arg_kinds": [0], "arg_names": ["self"], "arg_types": ["datetime.datetime"], "bound_args": [], "def_extras": {"first_arg": "self"}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "tzinfo of datetime", "ret_type": {".class": "UnionType", "items": ["datetime.tzinfo", {".class": "NoneTyp"}]}, "variables": []}}}}, "tzname": {".class": "SymbolTableNode", "kind": "Mdef", "node": {".class": "FuncDef", "arg_kinds": [0], "arg_names": ["self"], "flags": [], "fullname": "datetime.datetime.tzname", "name": "tzname", "type": {".class": "CallableType", "arg_kinds": [0], "arg_names": ["self"], "arg_types": ["datetime.datetime"], "bound_args": [], "def_extras": {"first_arg": "self"}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "tzname of datetime", "ret_type": {".class": "UnionType", "items": ["builtins.str", {".class": "NoneTyp"}]}, "variables": []}}}, "utcfromtimestamp": {".class": "SymbolTableNode", "kind": "Mdef", "node": {".class": "Decorator", "func": {".class": "FuncDef", "arg_kinds": [0, 0], "arg_names": ["cls", "t"], "flags": ["is_class", "is_decorated"], "fullname": "datetime.datetime.utcfromtimestamp", "name": "utcfromtimestamp", "type": {".class": "CallableType", "arg_kinds": [0, 0], "arg_names": ["cls", "t"], "arg_types": [{".class": "TypeType", "item": "datetime.datetime"}, "builtins.float"], "bound_args": [], "def_extras": {"first_arg": "cls"}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "utcfromtimestamp of datetime", "ret_type": "datetime.datetime", "variables": []}}, "is_overload": false, "var": {".class": "Var", "flags": ["is_initialized_in_class", "is_classmethod"], "fullname": null, "name": "utcfromtimestamp", "type": {".class": "CallableType", "arg_kinds": [0, 0], "arg_names": ["cls", "t"], "arg_types": [{".class": "TypeType", "item": "datetime.datetime"}, "builtins.float"], "bound_args": [], "def_extras": {"first_arg": "cls"}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "utcfromtimestamp of datetime", "ret_type": "datetime.datetime", "variables": []}}}}, "utcnow": {".class": "SymbolTableNode", "kind": "Mdef", "node": {".class": "Decorator", "func": {".class": "FuncDef", "arg_kinds": [0], "arg_names": ["cls"], "flags": ["is_class", "is_decorated"], "fullname": "datetime.datetime.utcnow", "name": "utcnow", "type": {".class": "CallableType", "arg_kinds": [0], "arg_names": ["cls"], "arg_types": [{".class": "TypeType", "item": "datetime.datetime"}], "bound_args": [], "def_extras": {"first_arg": "cls"}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "utcnow of datetime", "ret_type": "datetime.datetime", "variables": []}}, "is_overload": false, "var": {".class": "Var", "flags": ["is_initialized_in_class", "is_classmethod"], "fullname": null, "name": "utcnow", "type": {".class": "CallableType", "arg_kinds": [0], "arg_names": ["cls"], "arg_types": [{".class": "TypeType", "item": "datetime.datetime"}], "bound_args": [], "def_extras": {"first_arg": "cls"}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "utcnow of datetime", "ret_type": "datetime.datetime", "variables": []}}}}, "utcoffset": {".class": "SymbolTableNode", "kind": "Mdef", "node": {".class": "FuncDef", "arg_kinds": [0], "arg_names": ["self"], "flags": [], "fullname": "datetime.datetime.utcoffset", "name": "utcoffset", "type": {".class": "CallableType", "arg_kinds": [0], "arg_names": ["self"], "arg_types": ["datetime.datetime"], "bound_args": [], "def_extras": {"first_arg": "self"}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "utcoffset of datetime", "ret_type": {".class": "UnionType", "items": ["datetime.timedelta", {".class": "NoneTyp"}]}, "variables": []}}}, "utctimetuple": {".class": "SymbolTableNode", "kind": "Mdef", "node": {".class": "FuncDef", "arg_kinds": [0], "arg_names": ["self"], "flags": [], "fullname": "datetime.datetime.utctimetuple", "name": "utctimetuple", "type": {".class": "CallableType", "arg_kinds": [0], "arg_names": ["self"], "arg_types": ["datetime.datetime"], "bound_args": [], "def_extras": {"first_arg": "self"}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "utctimetuple of datetime", "ret_type": {".class": "TupleType", "fallback": "time.struct_time", "implicit": false, "items": ["builtins.int", "builtins.int", "builtins.int", "builtins.int", "builtins.int", "builtins.int", "builtins.int", "builtins.int", "builtins.int", "builtins.str", "builtins.int"]}, "variables": []}}}, "weekday": {".class": "SymbolTableNode", "kind": "Mdef", "node": {".class": "FuncDef", "arg_kinds": [0], "arg_names": ["self"], "flags": [], "fullname": "datetime.datetime.weekday", "name": "weekday", "type": {".class": "CallableType", "arg_kinds": [0], "arg_names": ["self"], "arg_types": ["datetime.datetime"], "bound_args": [], "def_extras": {"first_arg": "self"}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "weekday of datetime", "ret_type": "builtins.int", "variables": []}}}, "year": {".class": "SymbolTableNode", "kind": "Mdef", "node": {".class": "Decorator", "func": {".class": "FuncDef", "arg_kinds": [0], "arg_names": ["self"], "flags": ["is_property", "is_decorated"], "fullname": "datetime.datetime.year", "name": "year", "type": {".class": "CallableType", "arg_kinds": [0], "arg_names": ["self"], "arg_types": ["datetime.datetime"], "bound_args": [], "def_extras": {"first_arg": "self"}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "year of datetime", "ret_type": "builtins.int", "variables": []}}, "is_overload": false, "var": {".class": "Var", "flags": ["is_initialized_in_class", "is_property"], "fullname": null, "name": "year", "type": {".class": "CallableType", "arg_kinds": [0], "arg_names": ["self"], "arg_types": ["datetime.datetime"], "bound_args": [], "def_extras": {"first_arg": "self"}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "year of datetime", "ret_type": "builtins.int", "variables": []}}}}}, "tuple_type": null, "type_vars": [], "typeddict_type": null}}, "overload": {".class": "SymbolTableNode", "cross_ref": "typing.overload", "kind": "Gdef", "module_hidden": true, "module_public": false}, "struct_time": {".class": "SymbolTableNode", "cross_ref": "time.struct_time", "kind": "Gdef", "module_hidden": true, "module_public": false}, "sys": {".class": "SymbolTableNode", "cross_ref": "sys", "kind": "Gdef", "module_hidden": true, "module_public": false}, "time": {".class": "SymbolTableNode", "kind": "Gdef", "node": {".class": "TypeInfo", "_promote": null, "abstract_attributes": [], "bases": ["builtins.object"], "declared_metaclass": null, "defn": {".class": "ClassDef", "fullname": "datetime.time", "name": "time", "type_vars": []}, "flags": [], "fullname": "datetime.time", "metaclass_type": null, "metadata": {}, "module_name": "datetime", "mro": ["datetime.time", "builtins.object"], "names": {".class": "SymbolTable", "__format__": {".class": "SymbolTableNode", "kind": "Mdef", "node": {".class": "FuncDef", "arg_kinds": [0, 0], "arg_names": ["self", "fmt"], "flags": ["is_conditional"], "fullname": "datetime.time.__format__", "name": "__format__", "type": {".class": "CallableType", "arg_kinds": [0, 0], "arg_names": ["self", "fmt"], "arg_types": ["datetime.time", "builtins.str"], "bound_args": [], "def_extras": {"first_arg": "self"}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "__format__ of time", "ret_type": "builtins.str", "variables": []}}}, "__ge__": {".class": "SymbolTableNode", "kind": "Mdef", "node": {".class": "FuncDef", "arg_kinds": [0, 0], "arg_names": ["self", "other"], "flags": [], "fullname": "datetime.time.__ge__", "name": "__ge__", "type": {".class": "CallableType", "arg_kinds": [0, 0], "arg_names": [null, null], "arg_types": ["datetime.time", "datetime.time"], "bound_args": [], "def_extras": {"first_arg": "self"}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "__ge__ of time", "ret_type": "builtins.bool", "variables": []}}}, "__gt__": {".class": "SymbolTableNode", "kind": "Mdef", "node": {".class": "FuncDef", "arg_kinds": [0, 0], "arg_names": ["self", "other"], "flags": [], "fullname": "datetime.time.__gt__", "name": "__gt__", "type": {".class": "CallableType", "arg_kinds": [0, 0], "arg_names": [null, null], "arg_types": ["datetime.time", "datetime.time"], "bound_args": [], "def_extras": {"first_arg": "self"}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "__gt__ of time", "ret_type": "builtins.bool", "variables": []}}}, "__hash__": {".class": "SymbolTableNode", "kind": "Mdef", "node": {".class": "FuncDef", "arg_kinds": [0], "arg_names": ["self"], "flags": [], "fullname": "datetime.time.__hash__", "name": "__hash__", "type": {".class": "CallableType", "arg_kinds": [0], "arg_names": ["self"], "arg_types": ["datetime.time"], "bound_args": [], "def_extras": {"first_arg": "self"}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "__hash__ of time", "ret_type": "builtins.int", "variables": []}}}, "__init__": {".class": "SymbolTableNode", "kind": "Mdef", "node": {".class": "FuncDef", "arg_kinds": [0, 1, 1, 1, 1, 1, 5], "arg_names": ["self", "hour", "minute", "second", "microsecond", "tzinfo", "fold"], "flags": ["is_conditional"], "fullname": "datetime.time.__init__", "name": "__init__", "type": {".class": "CallableType", "arg_kinds": [0, 1, 1, 1, 1, 1, 5], "arg_names": ["self", "hour", "minute", "second", "microsecond", "tzinfo", "fold"], "arg_types": ["datetime.time", "builtins.int", "builtins.int", "builtins.int", "builtins.int", {".class": "UnionType", "items": ["datetime.tzinfo", {".class": "NoneTyp"}]}, "builtins.int"], "bound_args": [], "def_extras": {"first_arg": "self"}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "__init__ of time", "ret_type": {".class": "NoneTyp"}, "variables": []}}}, "__le__": {".class": "SymbolTableNode", "kind": "Mdef", "node": {".class": "FuncDef", "arg_kinds": [0, 0], "arg_names": ["self", "other"], "flags": [], "fullname": "datetime.time.__le__", "name": "__le__", "type": {".class": "CallableType", "arg_kinds": [0, 0], "arg_names": [null, null], "arg_types": ["datetime.time", "datetime.time"], "bound_args": [], "def_extras": {"first_arg": "self"}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "__le__ of time", "ret_type": "builtins.bool", "variables": []}}}, "__lt__": {".class": "SymbolTableNode", "kind": "Mdef", "node": {".class": "FuncDef", "arg_kinds": [0, 0], "arg_names": ["self", "other"], "flags": [], "fullname": "datetime.time.__lt__", "name": "__lt__", "type": {".class": "CallableType", "arg_kinds": [0, 0], "arg_names": [null, null], "arg_types": ["datetime.time", "datetime.time"], "bound_args": [], "def_extras": {"first_arg": "self"}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "__lt__ of time", "ret_type": "builtins.bool", "variables": []}}}, "dst": {".class": "SymbolTableNode", "kind": "Mdef", "node": {".class": "FuncDef", "arg_kinds": [0], "arg_names": ["self"], "flags": [], "fullname": "datetime.time.dst", "name": "dst", "type": {".class": "CallableType", "arg_kinds": [0], "arg_names": ["self"], "arg_types": ["datetime.time"], "bound_args": [], "def_extras": {"first_arg": "self"}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "dst of time", "ret_type": {".class": "UnionType", "items": ["builtins.int", {".class": "NoneTyp"}]}, "variables": []}}}, "fold": {".class": "SymbolTableNode", "kind": "Mdef", "node": {".class": "Decorator", "func": {".class": "FuncDef", "arg_kinds": [0], "arg_names": ["self"], "flags": ["is_property", "is_decorated", "is_conditional"], "fullname": "datetime.time.fold", "name": "fold", "type": {".class": "CallableType", "arg_kinds": [0], "arg_names": ["self"], "arg_types": ["datetime.time"], "bound_args": [], "def_extras": {"first_arg": "self"}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "fold of time", "ret_type": "builtins.int", "variables": []}}, "is_overload": false, "var": {".class": "Var", "flags": ["is_initialized_in_class", "is_property"], "fullname": null, "name": "fold", "type": {".class": "CallableType", "arg_kinds": [0], "arg_names": ["self"], "arg_types": ["datetime.time"], "bound_args": [], "def_extras": {"first_arg": "self"}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "fold of time", "ret_type": "builtins.int", "variables": []}}}}, "fromisoformat": {".class": "SymbolTableNode", "kind": "Mdef", "node": {".class": "Decorator", "func": {".class": "FuncDef", "arg_kinds": [0, 0], "arg_names": ["cls", "time_string"], "flags": ["is_class", "is_decorated", "is_conditional"], "fullname": "datetime.time.fromisoformat", "name": "fromisoformat", "type": {".class": "CallableType", "arg_kinds": [0, 0], "arg_names": ["cls", "time_string"], "arg_types": [{".class": "TypeType", "item": "datetime.time"}, "builtins.str"], "bound_args": [], "def_extras": {"first_arg": "cls"}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "fromisoformat of time", "ret_type": "datetime.time", "variables": []}}, "is_overload": false, "var": {".class": "Var", "flags": ["is_initialized_in_class", "is_classmethod"], "fullname": null, "name": "fromisoformat", "type": {".class": "CallableType", "arg_kinds": [0, 0], "arg_names": ["cls", "time_string"], "arg_types": [{".class": "TypeType", "item": "datetime.time"}, "builtins.str"], "bound_args": [], "def_extras": {"first_arg": "cls"}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "fromisoformat of time", "ret_type": "datetime.time", "variables": []}}}}, "hour": {".class": "SymbolTableNode", "kind": "Mdef", "node": {".class": "Decorator", "func": {".class": "FuncDef", "arg_kinds": [0], "arg_names": ["self"], "flags": ["is_property", "is_decorated"], "fullname": "datetime.time.hour", "name": "hour", "type": {".class": "CallableType", "arg_kinds": [0], "arg_names": ["self"], "arg_types": ["datetime.time"], "bound_args": [], "def_extras": {"first_arg": "self"}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "hour of time", "ret_type": "builtins.int", "variables": []}}, "is_overload": false, "var": {".class": "Var", "flags": ["is_initialized_in_class", "is_property"], "fullname": null, "name": "hour", "type": {".class": "CallableType", "arg_kinds": [0], "arg_names": ["self"], "arg_types": ["datetime.time"], "bound_args": [], "def_extras": {"first_arg": "self"}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "hour of time", "ret_type": "builtins.int", "variables": []}}}}, "isoformat": {".class": "SymbolTableNode", "kind": "Mdef", "node": {".class": "FuncDef", "arg_kinds": [0], "arg_names": ["self"], "flags": [], "fullname": "datetime.time.isoformat", "name": "isoformat", "type": {".class": "CallableType", "arg_kinds": [0], "arg_names": ["self"], "arg_types": ["datetime.time"], "bound_args": [], "def_extras": {"first_arg": "self"}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "isoformat of time", "ret_type": "builtins.str", "variables": []}}}, "max": {".class": "SymbolTableNode", "kind": "Mdef", "node": {".class": "Var", "flags": ["is_initialized_in_class", "is_classvar"], "fullname": "datetime.time.max", "name": "max", "type": "datetime.time"}}, "microsecond": {".class": "SymbolTableNode", "kind": "Mdef", "node": {".class": "Decorator", "func": {".class": "FuncDef", "arg_kinds": [0], "arg_names": ["self"], "flags": ["is_property", "is_decorated"], "fullname": "datetime.time.microsecond", "name": "microsecond", "type": {".class": "CallableType", "arg_kinds": [0], "arg_names": ["self"], "arg_types": ["datetime.time"], "bound_args": [], "def_extras": {"first_arg": "self"}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "microsecond of time", "ret_type": "builtins.int", "variables": []}}, "is_overload": false, "var": {".class": "Var", "flags": ["is_initialized_in_class", "is_property"], "fullname": null, "name": "microsecond", "type": {".class": "CallableType", "arg_kinds": [0], "arg_names": ["self"], "arg_types": ["datetime.time"], "bound_args": [], "def_extras": {"first_arg": "self"}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "microsecond of time", "ret_type": "builtins.int", "variables": []}}}}, "min": {".class": "SymbolTableNode", "kind": "Mdef", "node": {".class": "Var", "flags": ["is_initialized_in_class", "is_classvar"], "fullname": "datetime.time.min", "name": "min", "type": "datetime.time"}}, "minute": {".class": "SymbolTableNode", "kind": "Mdef", "node": {".class": "Decorator", "func": {".class": "FuncDef", "arg_kinds": [0], "arg_names": ["self"], "flags": ["is_property", "is_decorated"], "fullname": "datetime.time.minute", "name": "minute", "type": {".class": "CallableType", "arg_kinds": [0], "arg_names": ["self"], "arg_types": ["datetime.time"], "bound_args": [], "def_extras": {"first_arg": "self"}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "minute of time", "ret_type": "builtins.int", "variables": []}}, "is_overload": false, "var": {".class": "Var", "flags": ["is_initialized_in_class", "is_property"], "fullname": null, "name": "minute", "type": {".class": "CallableType", "arg_kinds": [0], "arg_names": ["self"], "arg_types": ["datetime.time"], "bound_args": [], "def_extras": {"first_arg": "self"}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "minute of time", "ret_type": "builtins.int", "variables": []}}}}, "replace": {".class": "SymbolTableNode", "kind": "Mdef", "node": {".class": "FuncDef", "arg_kinds": [0, 1, 1, 1, 1, 1, 5], "arg_names": ["self", "hour", "minute", "second", "microsecond", "tzinfo", "fold"], "flags": ["is_conditional"], "fullname": "datetime.time.replace", "name": "replace", "type": {".class": "CallableType", "arg_kinds": [0, 1, 1, 1, 1, 1, 5], "arg_names": ["self", "hour", "minute", "second", "microsecond", "tzinfo", "fold"], "arg_types": ["datetime.time", "builtins.int", "builtins.int", "builtins.int", "builtins.int", {".class": "UnionType", "items": ["datetime.tzinfo", {".class": "NoneTyp"}]}, "builtins.int"], "bound_args": [], "def_extras": {"first_arg": "self"}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "replace of time", "ret_type": "datetime.time", "variables": []}}}, "resolution": {".class": "SymbolTableNode", "kind": "Mdef", "node": {".class": "Var", "flags": ["is_initialized_in_class", "is_classvar"], "fullname": "datetime.time.resolution", "name": "resolution", "type": "datetime.timedelta"}}, "second": {".class": "SymbolTableNode", "kind": "Mdef", "node": {".class": "Decorator", "func": {".class": "FuncDef", "arg_kinds": [0], "arg_names": ["self"], "flags": ["is_property", "is_decorated"], "fullname": "datetime.time.second", "name": "second", "type": {".class": "CallableType", "arg_kinds": [0], "arg_names": ["self"], "arg_types": ["datetime.time"], "bound_args": [], "def_extras": {"first_arg": "self"}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "second of time", "ret_type": "builtins.int", "variables": []}}, "is_overload": false, "var": {".class": "Var", "flags": ["is_initialized_in_class", "is_property"], "fullname": null, "name": "second", "type": {".class": "CallableType", "arg_kinds": [0], "arg_names": ["self"], "arg_types": ["datetime.time"], "bound_args": [], "def_extras": {"first_arg": "self"}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "second of time", "ret_type": "builtins.int", "variables": []}}}}, "strftime": {".class": "SymbolTableNode", "kind": "Mdef", "node": {".class": "FuncDef", "arg_kinds": [0, 0], "arg_names": ["self", "fmt"], "flags": [], "fullname": "datetime.time.strftime", "name": "strftime", "type": {".class": "CallableType", "arg_kinds": [0, 0], "arg_names": ["self", "fmt"], "arg_types": ["datetime.time", "builtins.str"], "bound_args": [], "def_extras": {"first_arg": "self"}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "strftime of time", "ret_type": "builtins.str", "variables": []}}}, "tzinfo": {".class": "SymbolTableNode", "kind": "Mdef", "node": {".class": "Decorator", "func": {".class": "FuncDef", "arg_kinds": [0], "arg_names": ["self"], "flags": ["is_property", "is_decorated"], "fullname": "datetime.time.tzinfo", "name": "tzinfo", "type": {".class": "CallableType", "arg_kinds": [0], "arg_names": ["self"], "arg_types": ["datetime.time"], "bound_args": [], "def_extras": {"first_arg": "self"}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "tzinfo of time", "ret_type": {".class": "UnionType", "items": ["datetime.tzinfo", {".class": "NoneTyp"}]}, "variables": []}}, "is_overload": false, "var": {".class": "Var", "flags": ["is_initialized_in_class", "is_property"], "fullname": null, "name": "tzinfo", "type": {".class": "CallableType", "arg_kinds": [0], "arg_names": ["self"], "arg_types": ["datetime.time"], "bound_args": [], "def_extras": {"first_arg": "self"}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "tzinfo of time", "ret_type": {".class": "UnionType", "items": ["datetime.tzinfo", {".class": "NoneTyp"}]}, "variables": []}}}}, "tzname": {".class": "SymbolTableNode", "kind": "Mdef", "node": {".class": "FuncDef", "arg_kinds": [0], "arg_names": ["self"], "flags": [], "fullname": "datetime.time.tzname", "name": "tzname", "type": {".class": "CallableType", "arg_kinds": [0], "arg_names": ["self"], "arg_types": ["datetime.time"], "bound_args": [], "def_extras": {"first_arg": "self"}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "tzname of time", "ret_type": {".class": "UnionType", "items": ["builtins.str", {".class": "NoneTyp"}]}, "variables": []}}}, "utcoffset": {".class": "SymbolTableNode", "kind": "Mdef", "node": {".class": "FuncDef", "arg_kinds": [0], "arg_names": ["self"], "flags": [], "fullname": "datetime.time.utcoffset", "name": "utcoffset", "type": {".class": "CallableType", "arg_kinds": [0], "arg_names": ["self"], "arg_types": ["datetime.time"], "bound_args": [], "def_extras": {"first_arg": "self"}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "utcoffset of time", "ret_type": {".class": "UnionType", "items": ["datetime.timedelta", {".class": "NoneTyp"}]}, "variables": []}}}}, "tuple_type": null, "type_vars": [], "typeddict_type": null}}, "timedelta": {".class": "SymbolTableNode", "kind": "Gdef", "node": {".class": "TypeInfo", "_promote": null, "abstract_attributes": [], "bases": [{".class": "Instance", "args": ["datetime.timedelta"], "type_ref": "typing.SupportsAbs"}], "declared_metaclass": null, "defn": {".class": "ClassDef", "fullname": "datetime.timedelta", "name": "timedelta", "type_vars": []}, "flags": [], "fullname": "datetime.timedelta", "metaclass_type": "abc.ABCMeta", "metadata": {}, "module_name": "datetime", "mro": ["datetime.timedelta", "typing.SupportsAbs", "builtins.object"], "names": {".class": "SymbolTable", "__abs__": {".class": "SymbolTableNode", "kind": "Mdef", "node": {".class": "FuncDef", "arg_kinds": [0], "arg_names": ["self"], "flags": [], "fullname": "datetime.timedelta.__abs__", "name": "__abs__", "type": {".class": "CallableType", "arg_kinds": [0], "arg_names": [null], "arg_types": ["datetime.timedelta"], "bound_args": [], "def_extras": {"first_arg": "self"}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "__abs__ of timedelta", "ret_type": "datetime.timedelta", "variables": []}}}, "__add__": {".class": "SymbolTableNode", "kind": "Mdef", "node": {".class": "FuncDef", "arg_kinds": [0, 0], "arg_names": ["self", "other"], "flags": [], "fullname": "datetime.timedelta.__add__", "name": "__add__", "type": {".class": "CallableType", "arg_kinds": [0, 0], "arg_names": [null, null], "arg_types": ["datetime.timedelta", "datetime.timedelta"], "bound_args": [], "def_extras": {"first_arg": "self"}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "__add__ of timedelta", "ret_type": "datetime.timedelta", "variables": []}}}, "__divmod__": {".class": "SymbolTableNode", "kind": "Mdef", "node": {".class": "FuncDef", "arg_kinds": [0, 0], "arg_names": ["self", "other"], "flags": ["is_conditional"], "fullname": "datetime.timedelta.__divmod__", "name": "__divmod__", "type": {".class": "CallableType", "arg_kinds": [0, 0], "arg_names": [null, null], "arg_types": ["datetime.timedelta", "datetime.timedelta"], "bound_args": [], "def_extras": {"first_arg": "self"}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "__divmod__ of timedelta", "ret_type": {".class": "TupleType", "fallback": {".class": "Instance", "args": [{".class": "AnyType", "missing_import_name": null, "source_any": null, "type_of_any": 6}], "type_ref": "builtins.tuple"}, "implicit": false, "items": ["builtins.int", "datetime.timedelta"]}, "variables": []}}}, "__floordiv__": {".class": "SymbolTableNode", "kind": "Mdef", "node": {".class": "OverloadedFuncDef", "flags": [], "fullname": "datetime.timedelta.__floordiv__", "impl": null, "items": [{".class": "Decorator", "func": {".class": "FuncDef", "arg_kinds": [0, 0], "arg_names": ["self", "other"], "flags": ["is_overload", "is_decorated"], "fullname": "datetime.timedelta.__floordiv__", "name": "__floordiv__", "type": {".class": "CallableType", "arg_kinds": [0, 0], "arg_names": [null, null], "arg_types": ["datetime.timedelta", "datetime.timedelta"], "bound_args": [], "def_extras": {"first_arg": "self"}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "__floordiv__ of timedelta", "ret_type": "builtins.int", "variables": []}}, "is_overload": true, "var": {".class": "Var", "flags": [], "fullname": null, "name": "__floordiv__", "type": null}}, {".class": "Decorator", "func": {".class": "FuncDef", "arg_kinds": [0, 0], "arg_names": ["self", "other"], "flags": ["is_overload", "is_decorated"], "fullname": "datetime.timedelta.__floordiv__", "name": "__floordiv__", "type": {".class": "CallableType", "arg_kinds": [0, 0], "arg_names": [null, null], "arg_types": ["datetime.timedelta", "builtins.int"], "bound_args": [], "def_extras": {"first_arg": "self"}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "__floordiv__ of timedelta", "ret_type": "datetime.timedelta", "variables": []}}, "is_overload": true, "var": {".class": "Var", "flags": [], "fullname": null, "name": "__floordiv__", "type": null}}], "type": {".class": "Overloaded", "items": [{".class": "CallableType", "arg_kinds": [0, 0], "arg_names": [null, null], "arg_types": ["datetime.timedelta", "datetime.timedelta"], "bound_args": [], "def_extras": {"first_arg": "self"}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "__floordiv__ of timedelta", "ret_type": "builtins.int", "variables": []}, {".class": "CallableType", "arg_kinds": [0, 0], "arg_names": [null, null], "arg_types": ["datetime.timedelta", "builtins.int"], "bound_args": [], "def_extras": {"first_arg": "self"}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "__floordiv__ of timedelta", "ret_type": "datetime.timedelta", "variables": []}]}}}, "__ge__": {".class": "SymbolTableNode", "kind": "Mdef", "node": {".class": "FuncDef", "arg_kinds": [0, 0], "arg_names": ["self", "other"], "flags": [], "fullname": "datetime.timedelta.__ge__", "name": "__ge__", "type": {".class": "CallableType", "arg_kinds": [0, 0], "arg_names": [null, null], "arg_types": ["datetime.timedelta", "datetime.timedelta"], "bound_args": [], "def_extras": {"first_arg": "self"}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "__ge__ of timedelta", "ret_type": "builtins.bool", "variables": []}}}, "__gt__": {".class": "SymbolTableNode", "kind": "Mdef", "node": {".class": "FuncDef", "arg_kinds": [0, 0], "arg_names": ["self", "other"], "flags": [], "fullname": "datetime.timedelta.__gt__", "name": "__gt__", "type": {".class": "CallableType", "arg_kinds": [0, 0], "arg_names": [null, null], "arg_types": ["datetime.timedelta", "datetime.timedelta"], "bound_args": [], "def_extras": {"first_arg": "self"}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "__gt__ of timedelta", "ret_type": "builtins.bool", "variables": []}}}, "__hash__": {".class": "SymbolTableNode", "kind": "Mdef", "node": {".class": "FuncDef", "arg_kinds": [0], "arg_names": ["self"], "flags": [], "fullname": "datetime.timedelta.__hash__", "name": "__hash__", "type": {".class": "CallableType", "arg_kinds": [0], "arg_names": ["self"], "arg_types": ["datetime.timedelta"], "bound_args": [], "def_extras": {"first_arg": "self"}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "__hash__ of timedelta", "ret_type": "builtins.int", "variables": []}}}, "__init__": {".class": "SymbolTableNode", "kind": "Mdef", "node": {".class": "FuncDef", "arg_kinds": [0, 1, 1, 1, 1, 1, 1, 1, 5], "arg_names": ["self", "days", "seconds", "microseconds", "milliseconds", "minutes", "hours", "weeks", "fold"], "flags": ["is_conditional"], "fullname": "datetime.timedelta.__init__", "name": "__init__", "type": {".class": "CallableType", "arg_kinds": [0, 1, 1, 1, 1, 1, 1, 1, 5], "arg_names": ["self", "days", "seconds", "microseconds", "milliseconds", "minutes", "hours", "weeks", "fold"], "arg_types": ["datetime.timedelta", "builtins.float", "builtins.float", "builtins.float", "builtins.float", "builtins.float", "builtins.float", "builtins.float", "builtins.int"], "bound_args": [], "def_extras": {"first_arg": "self"}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "__init__ of timedelta", "ret_type": {".class": "NoneTyp"}, "variables": []}}}, "__le__": {".class": "SymbolTableNode", "kind": "Mdef", "node": {".class": "FuncDef", "arg_kinds": [0, 0], "arg_names": ["self", "other"], "flags": [], "fullname": "datetime.timedelta.__le__", "name": "__le__", "type": {".class": "CallableType", "arg_kinds": [0, 0], "arg_names": [null, null], "arg_types": ["datetime.timedelta", "datetime.timedelta"], "bound_args": [], "def_extras": {"first_arg": "self"}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "__le__ of timedelta", "ret_type": "builtins.bool", "variables": []}}}, "__lt__": {".class": "SymbolTableNode", "kind": "Mdef", "node": {".class": "FuncDef", "arg_kinds": [0, 0], "arg_names": ["self", "other"], "flags": [], "fullname": "datetime.timedelta.__lt__", "name": "__lt__", "type": {".class": "CallableType", "arg_kinds": [0, 0], "arg_names": [null, null], "arg_types": ["datetime.timedelta", "datetime.timedelta"], "bound_args": [], "def_extras": {"first_arg": "self"}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "__lt__ of timedelta", "ret_type": "builtins.bool", "variables": []}}}, "__mod__": {".class": "SymbolTableNode", "kind": "Mdef", "node": {".class": "FuncDef", "arg_kinds": [0, 0], "arg_names": ["self", "other"], "flags": ["is_conditional"], "fullname": "datetime.timedelta.__mod__", "name": "__mod__", "type": {".class": "CallableType", "arg_kinds": [0, 0], "arg_names": [null, null], "arg_types": ["datetime.timedelta", "datetime.timedelta"], "bound_args": [], "def_extras": {"first_arg": "self"}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "__mod__ of timedelta", "ret_type": "datetime.timedelta", "variables": []}}}, "__mul__": {".class": "SymbolTableNode", "kind": "Mdef", "node": {".class": "FuncDef", "arg_kinds": [0, 0], "arg_names": ["self", "other"], "flags": [], "fullname": "datetime.timedelta.__mul__", "name": "__mul__", "type": {".class": "CallableType", "arg_kinds": [0, 0], "arg_names": [null, null], "arg_types": ["datetime.timedelta", "builtins.float"], "bound_args": [], "def_extras": {"first_arg": "self"}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "__mul__ of timedelta", "ret_type": "datetime.timedelta", "variables": []}}}, "__neg__": {".class": "SymbolTableNode", "kind": "Mdef", "node": {".class": "FuncDef", "arg_kinds": [0], "arg_names": ["self"], "flags": [], "fullname": "datetime.timedelta.__neg__", "name": "__neg__", "type": {".class": "CallableType", "arg_kinds": [0], "arg_names": [null], "arg_types": ["datetime.timedelta"], "bound_args": [], "def_extras": {"first_arg": "self"}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "__neg__ of timedelta", "ret_type": "datetime.timedelta", "variables": []}}}, "__pos__": {".class": "SymbolTableNode", "kind": "Mdef", "node": {".class": "FuncDef", "arg_kinds": [0], "arg_names": ["self"], "flags": [], "fullname": "datetime.timedelta.__pos__", "name": "__pos__", "type": {".class": "CallableType", "arg_kinds": [0], "arg_names": [null], "arg_types": ["datetime.timedelta"], "bound_args": [], "def_extras": {"first_arg": "self"}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "__pos__ of timedelta", "ret_type": "datetime.timedelta", "variables": []}}}, "__radd__": {".class": "SymbolTableNode", "kind": "Mdef", "node": {".class": "FuncDef", "arg_kinds": [0, 0], "arg_names": ["self", "other"], "flags": [], "fullname": "datetime.timedelta.__radd__", "name": "__radd__", "type": {".class": "CallableType", "arg_kinds": [0, 0], "arg_names": [null, null], "arg_types": ["datetime.timedelta", "datetime.timedelta"], "bound_args": [], "def_extras": {"first_arg": "self"}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "__radd__ of timedelta", "ret_type": "datetime.timedelta", "variables": []}}}, "__rmul__": {".class": "SymbolTableNode", "kind": "Mdef", "node": {".class": "FuncDef", "arg_kinds": [0, 0], "arg_names": ["self", "other"], "flags": [], "fullname": "datetime.timedelta.__rmul__", "name": "__rmul__", "type": {".class": "CallableType", "arg_kinds": [0, 0], "arg_names": [null, null], "arg_types": ["datetime.timedelta", "builtins.float"], "bound_args": [], "def_extras": {"first_arg": "self"}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "__rmul__ of timedelta", "ret_type": "datetime.timedelta", "variables": []}}}, "__rsub__": {".class": "SymbolTableNode", "kind": "Mdef", "node": {".class": "FuncDef", "arg_kinds": [0, 0], "arg_names": ["self", "other"], "flags": [], "fullname": "datetime.timedelta.__rsub__", "name": "__rsub__", "type": {".class": "CallableType", "arg_kinds": [0, 0], "arg_names": [null, null], "arg_types": ["datetime.timedelta", "datetime.timedelta"], "bound_args": [], "def_extras": {"first_arg": "self"}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "__rsub__ of timedelta", "ret_type": "datetime.timedelta", "variables": []}}}, "__sub__": {".class": "SymbolTableNode", "kind": "Mdef", "node": {".class": "FuncDef", "arg_kinds": [0, 0], "arg_names": ["self", "other"], "flags": [], "fullname": "datetime.timedelta.__sub__", "name": "__sub__", "type": {".class": "CallableType", "arg_kinds": [0, 0], "arg_names": [null, null], "arg_types": ["datetime.timedelta", "datetime.timedelta"], "bound_args": [], "def_extras": {"first_arg": "self"}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "__sub__ of timedelta", "ret_type": "datetime.timedelta", "variables": []}}}, "__truediv__": {".class": "SymbolTableNode", "kind": "Mdef", "node": {".class": "OverloadedFuncDef", "flags": [], "fullname": "datetime.timedelta.__truediv__", "impl": null, "items": [{".class": "Decorator", "func": {".class": "FuncDef", "arg_kinds": [0, 0], "arg_names": ["self", "other"], "flags": ["is_overload", "is_decorated", "is_conditional"], "fullname": "datetime.timedelta.__truediv__", "name": "__truediv__", "type": {".class": "CallableType", "arg_kinds": [0, 0], "arg_names": ["self", "other"], "arg_types": ["datetime.timedelta", "datetime.timedelta"], "bound_args": [], "def_extras": {"first_arg": "self"}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "__truediv__ of timedelta", "ret_type": "builtins.float", "variables": []}}, "is_overload": true, "var": {".class": "Var", "flags": [], "fullname": null, "name": "__truediv__", "type": null}}, {".class": "Decorator", "func": {".class": "FuncDef", "arg_kinds": [0, 0], "arg_names": ["self", "other"], "flags": ["is_overload", "is_decorated", "is_conditional"], "fullname": "datetime.timedelta.__truediv__", "name": "__truediv__", "type": {".class": "CallableType", "arg_kinds": [0, 0], "arg_names": ["self", "other"], "arg_types": ["datetime.timedelta", "builtins.float"], "bound_args": [], "def_extras": {"first_arg": "self"}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "__truediv__ of timedelta", "ret_type": "datetime.timedelta", "variables": []}}, "is_overload": true, "var": {".class": "Var", "flags": [], "fullname": null, "name": "__truediv__", "type": null}}], "type": {".class": "Overloaded", "items": [{".class": "CallableType", "arg_kinds": [0, 0], "arg_names": ["self", "other"], "arg_types": ["datetime.timedelta", "datetime.timedelta"], "bound_args": [], "def_extras": {"first_arg": "self"}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "__truediv__ of timedelta", "ret_type": "builtins.float", "variables": []}, {".class": "CallableType", "arg_kinds": [0, 0], "arg_names": ["self", "other"], "arg_types": ["datetime.timedelta", "builtins.float"], "bound_args": [], "def_extras": {"first_arg": "self"}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "__truediv__ of timedelta", "ret_type": "datetime.timedelta", "variables": []}]}}}, "days": {".class": "SymbolTableNode", "kind": "Mdef", "node": {".class": "Decorator", "func": {".class": "FuncDef", "arg_kinds": [0], "arg_names": ["self"], "flags": ["is_property", "is_decorated"], "fullname": "datetime.timedelta.days", "name": "days", "type": {".class": "CallableType", "arg_kinds": [0], "arg_names": ["self"], "arg_types": ["datetime.timedelta"], "bound_args": [], "def_extras": {"first_arg": "self"}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "days of timedelta", "ret_type": "builtins.int", "variables": []}}, "is_overload": false, "var": {".class": "Var", "flags": ["is_initialized_in_class", "is_property"], "fullname": null, "name": "days", "type": {".class": "CallableType", "arg_kinds": [0], "arg_names": ["self"], "arg_types": ["datetime.timedelta"], "bound_args": [], "def_extras": {"first_arg": "self"}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "days of timedelta", "ret_type": "builtins.int", "variables": []}}}}, "max": {".class": "SymbolTableNode", "kind": "Mdef", "node": {".class": "Var", "flags": ["is_initialized_in_class", "is_classvar"], "fullname": "datetime.timedelta.max", "name": "max", "type": "datetime.timedelta"}}, "microseconds": {".class": "SymbolTableNode", "kind": "Mdef", "node": {".class": "Decorator", "func": {".class": "FuncDef", "arg_kinds": [0], "arg_names": ["self"], "flags": ["is_property", "is_decorated"], "fullname": "datetime.timedelta.microseconds", "name": "microseconds", "type": {".class": "CallableType", "arg_kinds": [0], "arg_names": ["self"], "arg_types": ["datetime.timedelta"], "bound_args": [], "def_extras": {"first_arg": "self"}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "microseconds of timedelta", "ret_type": "builtins.int", "variables": []}}, "is_overload": false, "var": {".class": "Var", "flags": ["is_initialized_in_class", "is_property"], "fullname": null, "name": "microseconds", "type": {".class": "CallableType", "arg_kinds": [0], "arg_names": ["self"], "arg_types": ["datetime.timedelta"], "bound_args": [], "def_extras": {"first_arg": "self"}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "microseconds of timedelta", "ret_type": "builtins.int", "variables": []}}}}, "min": {".class": "SymbolTableNode", "kind": "Mdef", "node": {".class": "Var", "flags": ["is_initialized_in_class", "is_classvar"], "fullname": "datetime.timedelta.min", "name": "min", "type": "datetime.timedelta"}}, "resolution": {".class": "SymbolTableNode", "kind": "Mdef", "node": {".class": "Var", "flags": ["is_initialized_in_class", "is_classvar"], "fullname": "datetime.timedelta.resolution", "name": "resolution", "type": "datetime.timedelta"}}, "seconds": {".class": "SymbolTableNode", "kind": "Mdef", "node": {".class": "Decorator", "func": {".class": "FuncDef", "arg_kinds": [0], "arg_names": ["self"], "flags": ["is_property", "is_decorated"], "fullname": "datetime.timedelta.seconds", "name": "seconds", "type": {".class": "CallableType", "arg_kinds": [0], "arg_names": ["self"], "arg_types": ["datetime.timedelta"], "bound_args": [], "def_extras": {"first_arg": "self"}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "seconds of timedelta", "ret_type": "builtins.int", "variables": []}}, "is_overload": false, "var": {".class": "Var", "flags": ["is_initialized_in_class", "is_property"], "fullname": null, "name": "seconds", "type": {".class": "CallableType", "arg_kinds": [0], "arg_names": ["self"], "arg_types": ["datetime.timedelta"], "bound_args": [], "def_extras": {"first_arg": "self"}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "seconds of timedelta", "ret_type": "builtins.int", "variables": []}}}}, "total_seconds": {".class": "SymbolTableNode", "kind": "Mdef", "node": {".class": "FuncDef", "arg_kinds": [0], "arg_names": ["self"], "flags": [], "fullname": "datetime.timedelta.total_seconds", "name": "total_seconds", "type": {".class": "CallableType", "arg_kinds": [0], "arg_names": ["self"], "arg_types": ["datetime.timedelta"], "bound_args": [], "def_extras": {"first_arg": "self"}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "total_seconds of timedelta", "ret_type": "builtins.float", "variables": []}}}}, "tuple_type": null, "type_vars": [], "typeddict_type": null}}, "timezone": {".class": "SymbolTableNode", "kind": "Gdef", "node": {".class": "TypeInfo", "_promote": null, "abstract_attributes": [], "bases": ["datetime.tzinfo"], "declared_metaclass": null, "defn": {".class": "ClassDef", "fullname": "datetime.timezone", "name": "timezone", "type_vars": []}, "flags": [], "fullname": "datetime.timezone", "metaclass_type": null, "metadata": {}, "module_name": "datetime", "mro": ["datetime.timezone", "datetime.tzinfo", "builtins.object"], "names": {".class": "SymbolTable", "__hash__": {".class": "SymbolTableNode", "kind": "Mdef", "node": {".class": "FuncDef", "arg_kinds": [0], "arg_names": ["self"], "flags": [], "fullname": "datetime.timezone.__hash__", "name": "__hash__", "type": {".class": "CallableType", "arg_kinds": [0], "arg_names": ["self"], "arg_types": ["datetime.timezone"], "bound_args": [], "def_extras": {"first_arg": "self"}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "__hash__ of timezone", "ret_type": "builtins.int", "variables": []}}}, "__init__": {".class": "SymbolTableNode", "kind": "Mdef", "node": {".class": "FuncDef", "arg_kinds": [0, 0, 1], "arg_names": ["self", "offset", "name"], "flags": [], "fullname": "datetime.timezone.__init__", "name": "__init__", "type": {".class": "CallableType", "arg_kinds": [0, 0, 1], "arg_names": ["self", "offset", "name"], "arg_types": ["datetime.timezone", "datetime.timedelta", "builtins.str"], "bound_args": [], "def_extras": {"first_arg": "self"}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "__init__ of timezone", "ret_type": {".class": "NoneTyp"}, "variables": []}}}, "max": {".class": "SymbolTableNode", "kind": "Mdef", "node": {".class": "Var", "flags": ["is_initialized_in_class", "is_classvar"], "fullname": "datetime.timezone.max", "name": "max", "type": "datetime.timezone"}}, "min": {".class": "SymbolTableNode", "kind": "Mdef", "node": {".class": "Var", "flags": ["is_initialized_in_class", "is_classvar"], "fullname": "datetime.timezone.min", "name": "min", "type": "datetime.timezone"}}, "utc": {".class": "SymbolTableNode", "kind": "Mdef", "node": {".class": "Var", "flags": ["is_initialized_in_class", "is_classvar"], "fullname": "datetime.timezone.utc", "name": "utc", "type": "datetime.timezone"}}}, "tuple_type": null, "type_vars": [], "typeddict_type": null}}, "tzinfo": {".class": "SymbolTableNode", "kind": "Gdef", "node": {".class": "TypeInfo", "_promote": null, "abstract_attributes": [], "bases": ["builtins.object"], "declared_metaclass": null, "defn": {".class": "ClassDef", "fullname": "datetime.tzinfo", "name": "tzinfo", "type_vars": []}, "flags": [], "fullname": "datetime.tzinfo", "metaclass_type": null, "metadata": {}, "module_name": "datetime", "mro": ["datetime.tzinfo", "builtins.object"], "names": {".class": "SymbolTable", "dst": {".class": "SymbolTableNode", "kind": "Mdef", "node": {".class": "FuncDef", "arg_kinds": [0, 0], "arg_names": ["self", "dt"], "flags": [], "fullname": "datetime.tzinfo.dst", "name": "dst", "type": {".class": "CallableType", "arg_kinds": [0, 0], "arg_names": ["self", "dt"], "arg_types": ["datetime.tzinfo", {".class": "UnionType", "items": ["datetime.datetime", {".class": "NoneTyp"}]}], "bound_args": [], "def_extras": {"first_arg": "self"}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "dst of tzinfo", "ret_type": {".class": "UnionType", "items": ["datetime.timedelta", {".class": "NoneTyp"}]}, "variables": []}}}, "fromutc": {".class": "SymbolTableNode", "kind": "Mdef", "node": {".class": "FuncDef", "arg_kinds": [0, 0], "arg_names": ["self", "dt"], "flags": [], "fullname": "datetime.tzinfo.fromutc", "name": "fromutc", "type": {".class": "CallableType", "arg_kinds": [0, 0], "arg_names": ["self", "dt"], "arg_types": ["datetime.tzinfo", "datetime.datetime"], "bound_args": [], "def_extras": {"first_arg": "self"}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "fromutc of tzinfo", "ret_type": "datetime.datetime", "variables": []}}}, "tzname": {".class": "SymbolTableNode", "kind": "Mdef", "node": {".class": "FuncDef", "arg_kinds": [0, 0], "arg_names": ["self", "dt"], "flags": [], "fullname": "datetime.tzinfo.tzname", "name": "tzname", "type": {".class": "CallableType", "arg_kinds": [0, 0], "arg_names": ["self", "dt"], "arg_types": ["datetime.tzinfo", {".class": "UnionType", "items": ["datetime.datetime", {".class": "NoneTyp"}]}], "bound_args": [], "def_extras": {"first_arg": "self"}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "tzname of tzinfo", "ret_type": {".class": "UnionType", "items": ["builtins.str", {".class": "NoneTyp"}]}, "variables": []}}}, "utcoffset": {".class": "SymbolTableNode", "kind": "Mdef", "node": {".class": "FuncDef", "arg_kinds": [0, 0], "arg_names": ["self", "dt"], "flags": [], "fullname": "datetime.tzinfo.utcoffset", "name": "utcoffset", "type": {".class": "CallableType", "arg_kinds": [0, 0], "arg_names": ["self", "dt"], "arg_types": ["datetime.tzinfo", {".class": "UnionType", "items": ["datetime.datetime", {".class": "NoneTyp"}]}], "bound_args": [], "def_extras": {"first_arg": "self"}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "utcoffset of tzinfo", "ret_type": {".class": "UnionType", "items": ["datetime.timedelta", {".class": "NoneTyp"}]}, "variables": []}}}}, "tuple_type": null, "type_vars": [], "typeddict_type": null}}}, "path": "/usr/lib/python3/dist-packages/mypy/typeshed/stdlib/2and3/datetime.pyi"}
\ No newline at end of file
diff --git a/Postgres/StressTests/.mypy_cache/3.7/datetime.meta.json b/Postgres/StressTests/.mypy_cache/3.7/datetime.meta.json
deleted file mode 100644
index 209de5d..0000000
--- a/Postgres/StressTests/.mypy_cache/3.7/datetime.meta.json
+++ /dev/null
@@ -1 +0,0 @@
-{"child_modules": [], "data_mtime": 1553688972, "dep_lines": [1, 2, 3, 1, 1], "dep_prios": [10, 5, 5, 5, 30], "dependencies": ["sys", "time", "typing", "builtins", "abc"], "hash": "bde6d0c920f3e5d74be327b4014cf04c", "id": "datetime", "ignore_all": true, "interface_hash": "93e7833fdfe9b9165393a28786b70b0f", "mtime": 1549659920, "options": {"allow_redefinition": false, "allow_untyped_globals": false, "always_false": [], "always_true": [], "bazel": false, "check_untyped_defs": false, "disallow_any_decorated": false, "disallow_any_explicit": false, "disallow_any_expr": false, "disallow_any_generics": false, "disallow_any_unimported": false, "disallow_incomplete_defs": false, "disallow_subclassing_any": false, "disallow_untyped_calls": false, "disallow_untyped_decorators": false, "disallow_untyped_defs": false, "follow_imports": "normal", "follow_imports_for_stubs": false, "ignore_errors": false, "ignore_missing_imports": false, "local_partial_types": false, "mypyc": false, "new_semantic_analyzer": false, "no_implicit_optional": false, "platform": "linux", "plugins": [], "show_none_errors": true, "strict_optional": true, "strict_optional_whitelist": null, "warn_no_return": true, "warn_return_any": false, "warn_unused_ignores": false}, "path": "/usr/lib/python3/dist-packages/mypy/typeshed/stdlib/2and3/datetime.pyi", "size": 10854, "suppressed": [], "version_id": "0.670"}
\ No newline at end of file
diff --git a/Postgres/StressTests/.mypy_cache/3.7/importlib/__init__.data.json b/Postgres/StressTests/.mypy_cache/3.7/importlib/__init__.data.json
deleted file mode 100644
index 59b0911..0000000
--- a/Postgres/StressTests/.mypy_cache/3.7/importlib/__init__.data.json
+++ /dev/null
@@ -1 +0,0 @@
-{".class": "MypyFile", "_fullname": "importlib", "is_partial_stub_package": false, "is_stub": true, "names": {".class": "SymbolTable", "Any": {".class": "SymbolTableNode", "cross_ref": "typing.Any", "kind": "Gdef", "module_hidden": true, "module_public": false}, "Loader": {".class": "SymbolTableNode", "cross_ref": "_importlib_modulespec.Loader", "kind": "Gdef", "module_hidden": true, "module_public": false}, "Mapping": {".class": "SymbolTableNode", "cross_ref": "typing.Mapping", "kind": "Gdef", "module_hidden": true, "module_public": false}, "Optional": {".class": "SymbolTableNode", "cross_ref": "typing.Optional", "kind": "Gdef", "module_hidden": true, "module_public": false}, "Sequence": {".class": "SymbolTableNode", "cross_ref": "typing.Sequence", "kind": "Gdef", "module_hidden": true, "module_public": false}, "__doc__": {".class": "SymbolTableNode", "kind": "Gdef", "node": {".class": "Var", "flags": [], "fullname": "importlib.__doc__", "name": "__doc__", "type": "builtins.str"}}, "__file__": {".class": "SymbolTableNode", "kind": "Gdef", "node": {".class": "Var", "flags": [], "fullname": "importlib.__file__", "name": "__file__", "type": "builtins.str"}}, "__import__": {".class": "SymbolTableNode", "kind": "Gdef", "node": {".class": "FuncDef", "arg_kinds": [0, 1, 1, 1, 1], "arg_names": ["name", "globals", "locals", "fromlist", "level"], "flags": [], "fullname": "importlib.__import__", "name": "__import__", "type": {".class": "CallableType", "arg_kinds": [0, 1, 1, 1, 1], "arg_names": ["name", "globals", "locals", "fromlist", "level"], "arg_types": ["builtins.str", {".class": "UnionType", "items": [{".class": "Instance", "args": ["builtins.str", {".class": "AnyType", "missing_import_name": null, "source_any": null, "type_of_any": 2}], "type_ref": "typing.Mapping"}, {".class": "NoneTyp"}]}, {".class": "UnionType", "items": [{".class": "Instance", "args": ["builtins.str", {".class": "AnyType", "missing_import_name": null, "source_any": null, "type_of_any": 2}], "type_ref": "typing.Mapping"}, {".class": "NoneTyp"}]}, {".class": "Instance", "args": ["builtins.str"], "type_ref": "typing.Sequence"}, "builtins.int"], "bound_args": [], "def_extras": {"first_arg": null}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "__import__", "ret_type": "_importlib_modulespec.ModuleType", "variables": []}}}, "__name__": {".class": "SymbolTableNode", "kind": "Gdef", "node": {".class": "Var", "flags": [], "fullname": "importlib.__name__", "name": "__name__", "type": "builtins.str"}}, "__package__": {".class": "SymbolTableNode", "kind": "Gdef", "node": {".class": "Var", "flags": [], "fullname": "importlib.__package__", "name": "__package__", "type": "builtins.str"}}, "find_loader": {".class": "SymbolTableNode", "kind": "Gdef", "node": {".class": "FuncDef", "arg_kinds": [0, 1], "arg_names": ["name", "path"], "flags": [], "fullname": "importlib.find_loader", "name": "find_loader", "type": {".class": "CallableType", "arg_kinds": [0, 1], "arg_names": ["name", "path"], "arg_types": ["builtins.str", {".class": "UnionType", "items": ["builtins.str", {".class": "NoneTyp"}]}], "bound_args": [], "def_extras": {"first_arg": null}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "find_loader", "ret_type": {".class": "UnionType", "items": ["_importlib_modulespec.Loader", {".class": "NoneTyp"}]}, "variables": []}}}, "import_module": {".class": "SymbolTableNode", "kind": "Gdef", "node": {".class": "FuncDef", "arg_kinds": [0, 1], "arg_names": ["name", "package"], "flags": [], "fullname": "importlib.import_module", "name": "import_module", "type": {".class": "CallableType", "arg_kinds": [0, 1], "arg_names": ["name", "package"], "arg_types": ["builtins.str", {".class": "UnionType", "items": ["builtins.str", {".class": "NoneTyp"}]}], "bound_args": [], "def_extras": {"first_arg": null}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "import_module", "ret_type": "_importlib_modulespec.ModuleType", "variables": []}}}, "invalidate_caches": {".class": "SymbolTableNode", "kind": "Gdef", "node": {".class": "FuncDef", "arg_kinds": [], "arg_names": [], "flags": [], "fullname": "importlib.invalidate_caches", "name": "invalidate_caches", "type": {".class": "CallableType", "arg_kinds": [], "arg_names": [], "arg_types": [], "bound_args": [], "def_extras": {"first_arg": null}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "invalidate_caches", "ret_type": {".class": "NoneTyp"}, "variables": []}}}, "reload": {".class": "SymbolTableNode", "kind": "Gdef", "node": {".class": "FuncDef", "arg_kinds": [0], "arg_names": ["module"], "flags": [], "fullname": "importlib.reload", "name": "reload", "type": {".class": "CallableType", "arg_kinds": [0], "arg_names": ["module"], "arg_types": ["_importlib_modulespec.ModuleType"], "bound_args": [], "def_extras": {"first_arg": null}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "reload", "ret_type": "_importlib_modulespec.ModuleType", "variables": []}}}, "sys": {".class": "SymbolTableNode", "cross_ref": "sys", "kind": "Gdef", "module_hidden": true, "module_public": false}, "types": {".class": "SymbolTableNode", "cross_ref": "types", "kind": "Gdef", "module_hidden": true, "module_public": false}, "util": {".class": "SymbolTableNode", "cross_ref": "importlib.util", "kind": "Gdef", "module_public": false}}, "path": "/usr/lib/python3/dist-packages/mypy/typeshed/stdlib/3/importlib/__init__.pyi"}
\ No newline at end of file
diff --git a/Postgres/StressTests/.mypy_cache/3.7/importlib/__init__.meta.json b/Postgres/StressTests/.mypy_cache/3.7/importlib/__init__.meta.json
deleted file mode 100644
index aa3daec..0000000
--- a/Postgres/StressTests/.mypy_cache/3.7/importlib/__init__.meta.json
+++ /dev/null
@@ -1 +0,0 @@
-{"child_modules": ["importlib.abc", "importlib.machinery", "importlib.util"], "data_mtime": 1553688972, "dep_lines": [1, 2, 3, 4, 5, 1], "dep_prios": [10, 5, 10, 10, 5, 5], "dependencies": ["importlib.util", "importlib.abc", "sys", "types", "typing", "builtins"], "hash": "8a1ad9d3e69ecaaa263bca419aacba9b", "id": "importlib", "ignore_all": true, "interface_hash": "573f2c7f89b4f75c757120b0820a35bc", "mtime": 1549659920, "options": {"allow_redefinition": false, "allow_untyped_globals": false, "always_false": [], "always_true": [], "bazel": false, "check_untyped_defs": false, "disallow_any_decorated": false, "disallow_any_explicit": false, "disallow_any_expr": false, "disallow_any_generics": false, "disallow_any_unimported": false, "disallow_incomplete_defs": false, "disallow_subclassing_any": false, "disallow_untyped_calls": false, "disallow_untyped_decorators": false, "disallow_untyped_defs": false, "follow_imports": "normal", "follow_imports_for_stubs": false, "ignore_errors": false, "ignore_missing_imports": false, "local_partial_types": false, "mypyc": false, "new_semantic_analyzer": false, "no_implicit_optional": false, "platform": "linux", "plugins": [], "show_none_errors": true, "strict_optional": true, "strict_optional_whitelist": null, "warn_no_return": true, "warn_return_any": false, "warn_unused_ignores": false}, "path": "/usr/lib/python3/dist-packages/mypy/typeshed/stdlib/3/importlib/__init__.pyi", "size": 635, "suppressed": [], "version_id": "0.670"}
\ No newline at end of file
diff --git a/Postgres/StressTests/.mypy_cache/3.7/importlib/abc.data.json b/Postgres/StressTests/.mypy_cache/3.7/importlib/abc.data.json
deleted file mode 100644
index 9b89db6..0000000
--- a/Postgres/StressTests/.mypy_cache/3.7/importlib/abc.data.json
+++ /dev/null
@@ -1 +0,0 @@
-{".class": "MypyFile", "_fullname": "importlib.abc", "is_partial_stub_package": false, "is_stub": true, "names": {".class": "SymbolTable", "ABCMeta": {".class": "SymbolTableNode", "cross_ref": "abc.ABCMeta", "kind": "Gdef", "module_hidden": true, "module_public": false}, "Any": {".class": "SymbolTableNode", "cross_ref": "typing.Any", "kind": "Gdef", "module_hidden": true, "module_public": false}, "ExecutionLoader": {".class": "SymbolTableNode", "kind": "Gdef", "node": {".class": "TypeInfo", "_promote": null, "abstract_attributes": ["get_filename", "get_source"], "bases": ["importlib.abc.InspectLoader"], "declared_metaclass": null, "defn": {".class": "ClassDef", "fullname": "importlib.abc.ExecutionLoader", "name": "ExecutionLoader", "type_vars": []}, "flags": ["is_abstract"], "fullname": "importlib.abc.ExecutionLoader", "metaclass_type": "abc.ABCMeta", "metadata": {}, "module_name": "importlib.abc", "mro": ["importlib.abc.ExecutionLoader", "importlib.abc.InspectLoader", "_importlib_modulespec.Loader", "builtins.object"], "names": {".class": "SymbolTable", "get_code": {".class": "SymbolTableNode", "kind": "Mdef", "node": {".class": "FuncDef", "arg_kinds": [0, 0], "arg_names": ["self", "fullname"], "flags": [], "fullname": "importlib.abc.ExecutionLoader.get_code", "name": "get_code", "type": {".class": "CallableType", "arg_kinds": [0, 0], "arg_names": ["self", "fullname"], "arg_types": ["importlib.abc.ExecutionLoader", "builtins.str"], "bound_args": [], "def_extras": {"first_arg": "self"}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "get_code of ExecutionLoader", "ret_type": {".class": "UnionType", "items": ["types.CodeType", {".class": "NoneTyp"}]}, "variables": []}}}, "get_filename": {".class": "SymbolTableNode", "kind": "Mdef", "node": {".class": "Decorator", "func": {".class": "FuncDef", "arg_kinds": [0, 0], "arg_names": ["self", "fullname"], "flags": ["is_decorated", "is_abstract"], "fullname": "importlib.abc.ExecutionLoader.get_filename", "name": "get_filename", "type": {".class": "CallableType", "arg_kinds": [0, 0], "arg_names": ["self", "fullname"], "arg_types": ["importlib.abc.ExecutionLoader", "builtins.str"], "bound_args": [], "def_extras": {"first_arg": "self"}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "get_filename of ExecutionLoader", "ret_type": {".class": "UnionType", "items": ["builtins.bytes", "builtins.str"]}, "variables": []}}, "is_overload": false, "var": {".class": "Var", "flags": ["is_initialized_in_class"], "fullname": null, "name": "get_filename", "type": {".class": "CallableType", "arg_kinds": [0, 0], "arg_names": ["self", "fullname"], "arg_types": ["importlib.abc.ExecutionLoader", "builtins.str"], "bound_args": [], "def_extras": {"first_arg": "self"}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "get_filename of ExecutionLoader", "ret_type": {".class": "UnionType", "items": ["builtins.bytes", "builtins.str"]}, "variables": []}}}}}, "tuple_type": null, "type_vars": [], "typeddict_type": null}}, "FileLoader": {".class": "SymbolTableNode", "kind": "Gdef", "node": {".class": "TypeInfo", "_promote": null, "abstract_attributes": ["get_source"], "bases": ["importlib.abc.ResourceLoader", "importlib.abc.ExecutionLoader"], "declared_metaclass": "abc.ABCMeta", "defn": {".class": "ClassDef", "fullname": "importlib.abc.FileLoader", "name": "FileLoader", "type_vars": []}, "flags": ["is_abstract"], "fullname": "importlib.abc.FileLoader", "metaclass_type": "abc.ABCMeta", "metadata": {}, "module_name": "importlib.abc", "mro": ["importlib.abc.FileLoader", "importlib.abc.ResourceLoader", "importlib.abc.ExecutionLoader", "importlib.abc.InspectLoader", "_importlib_modulespec.Loader", "builtins.object"], "names": {".class": "SymbolTable", "__init__": {".class": "SymbolTableNode", "kind": "Mdef", "node": {".class": "FuncDef", "arg_kinds": [0, 0, 0], "arg_names": ["self", "fullname", "path"], "flags": [], "fullname": "importlib.abc.FileLoader.__init__", "name": "__init__", "type": {".class": "CallableType", "arg_kinds": [0, 0, 0], "arg_names": ["self", "fullname", "path"], "arg_types": ["importlib.abc.FileLoader", "builtins.str", {".class": "UnionType", "items": ["builtins.bytes", "builtins.str"]}], "bound_args": [], "def_extras": {"first_arg": "self"}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "__init__ of FileLoader", "ret_type": {".class": "NoneTyp"}, "variables": []}}}, "get_data": {".class": "SymbolTableNode", "kind": "Mdef", "node": {".class": "FuncDef", "arg_kinds": [0, 0], "arg_names": ["self", "path"], "flags": [], "fullname": "importlib.abc.FileLoader.get_data", "name": "get_data", "type": {".class": "CallableType", "arg_kinds": [0, 0], "arg_names": ["self", "path"], "arg_types": ["importlib.abc.FileLoader", {".class": "UnionType", "items": ["builtins.bytes", "builtins.str"]}], "bound_args": [], "def_extras": {"first_arg": "self"}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "get_data of FileLoader", "ret_type": "builtins.bytes", "variables": []}}}, "get_filename": {".class": "SymbolTableNode", "kind": "Mdef", "node": {".class": "FuncDef", "arg_kinds": [0, 0], "arg_names": ["self", "fullname"], "flags": [], "fullname": "importlib.abc.FileLoader.get_filename", "name": "get_filename", "type": {".class": "CallableType", "arg_kinds": [0, 0], "arg_names": ["self", "fullname"], "arg_types": ["importlib.abc.FileLoader", "builtins.str"], "bound_args": [], "def_extras": {"first_arg": "self"}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "get_filename of FileLoader", "ret_type": {".class": "UnionType", "items": ["builtins.bytes", "builtins.str"]}, "variables": []}}}, "name": {".class": "SymbolTableNode", "kind": "Mdef", "node": {".class": "Var", "flags": ["is_initialized_in_class"], "fullname": "importlib.abc.FileLoader.name", "name": "name", "type": "builtins.str"}}, "path": {".class": "SymbolTableNode", "kind": "Mdef", "node": {".class": "Var", "flags": ["is_initialized_in_class"], "fullname": "importlib.abc.FileLoader.path", "name": "path", "type": {".class": "UnionType", "items": ["builtins.bytes", "builtins.str"]}}}}, "tuple_type": null, "type_vars": [], "typeddict_type": null}}, "Finder": {".class": "SymbolTableNode", "kind": "Gdef", "node": {".class": "TypeInfo", "_promote": null, "abstract_attributes": [], "bases": ["builtins.object"], "declared_metaclass": "abc.ABCMeta", "defn": {".class": "ClassDef", "fullname": "importlib.abc.Finder", "name": "Finder", "type_vars": []}, "flags": [], "fullname": "importlib.abc.Finder", "metaclass_type": "abc.ABCMeta", "metadata": {}, "module_name": "importlib.abc", "mro": ["importlib.abc.Finder", "builtins.object"], "names": {".class": "SymbolTable"}, "tuple_type": null, "type_vars": [], "typeddict_type": null}}, "IO": {".class": "SymbolTableNode", "cross_ref": "typing.IO", "kind": "Gdef", "module_hidden": true, "module_public": false}, "InspectLoader": {".class": "SymbolTableNode", "kind": "Gdef", "node": {".class": "TypeInfo", "_promote": null, "abstract_attributes": ["get_source"], "bases": ["_importlib_modulespec.Loader"], "declared_metaclass": null, "defn": {".class": "ClassDef", "fullname": "importlib.abc.InspectLoader", "name": "InspectLoader", "type_vars": []}, "flags": ["is_abstract"], "fullname": "importlib.abc.InspectLoader", "metaclass_type": "abc.ABCMeta", "metadata": {}, "module_name": "importlib.abc", "mro": ["importlib.abc.InspectLoader", "_importlib_modulespec.Loader", "builtins.object"], "names": {".class": "SymbolTable", "exec_module": {".class": "SymbolTableNode", "kind": "Mdef", "node": {".class": "FuncDef", "arg_kinds": [0, 0], "arg_names": ["self", "module"], "flags": [], "fullname": "importlib.abc.InspectLoader.exec_module", "name": "exec_module", "type": {".class": "CallableType", "arg_kinds": [0, 0], "arg_names": ["self", "module"], "arg_types": ["importlib.abc.InspectLoader", "_importlib_modulespec.ModuleType"], "bound_args": [], "def_extras": {"first_arg": "self"}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "exec_module of InspectLoader", "ret_type": {".class": "NoneTyp"}, "variables": []}}}, "get_code": {".class": "SymbolTableNode", "kind": "Mdef", "node": {".class": "FuncDef", "arg_kinds": [0, 0], "arg_names": ["self", "fullname"], "flags": [], "fullname": "importlib.abc.InspectLoader.get_code", "name": "get_code", "type": {".class": "CallableType", "arg_kinds": [0, 0], "arg_names": ["self", "fullname"], "arg_types": ["importlib.abc.InspectLoader", "builtins.str"], "bound_args": [], "def_extras": {"first_arg": "self"}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "get_code of InspectLoader", "ret_type": {".class": "UnionType", "items": ["types.CodeType", {".class": "NoneTyp"}]}, "variables": []}}}, "get_source": {".class": "SymbolTableNode", "kind": "Mdef", "node": {".class": "Decorator", "func": {".class": "FuncDef", "arg_kinds": [0, 0], "arg_names": ["self", "fullname"], "flags": ["is_decorated", "is_abstract"], "fullname": "importlib.abc.InspectLoader.get_source", "name": "get_source", "type": {".class": "CallableType", "arg_kinds": [0, 0], "arg_names": ["self", "fullname"], "arg_types": ["importlib.abc.InspectLoader", "builtins.str"], "bound_args": [], "def_extras": {"first_arg": "self"}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "get_source of InspectLoader", "ret_type": {".class": "UnionType", "items": ["builtins.str", {".class": "NoneTyp"}]}, "variables": []}}, "is_overload": false, "var": {".class": "Var", "flags": ["is_initialized_in_class"], "fullname": null, "name": "get_source", "type": {".class": "CallableType", "arg_kinds": [0, 0], "arg_names": ["self", "fullname"], "arg_types": ["importlib.abc.InspectLoader", "builtins.str"], "bound_args": [], "def_extras": {"first_arg": "self"}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "get_source of InspectLoader", "ret_type": {".class": "UnionType", "items": ["builtins.str", {".class": "NoneTyp"}]}, "variables": []}}}}, "is_package": {".class": "SymbolTableNode", "kind": "Mdef", "node": {".class": "FuncDef", "arg_kinds": [0, 0], "arg_names": ["self", "fullname"], "flags": [], "fullname": "importlib.abc.InspectLoader.is_package", "name": "is_package", "type": {".class": "CallableType", "arg_kinds": [0, 0], "arg_names": ["self", "fullname"], "arg_types": ["importlib.abc.InspectLoader", "builtins.str"], "bound_args": [], "def_extras": {"first_arg": "self"}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "is_package of InspectLoader", "ret_type": "builtins.bool", "variables": []}}}, "load_module": {".class": "SymbolTableNode", "kind": "Mdef", "node": {".class": "FuncDef", "arg_kinds": [0, 0], "arg_names": ["self", "fullname"], "flags": [], "fullname": "importlib.abc.InspectLoader.load_module", "name": "load_module", "type": {".class": "CallableType", "arg_kinds": [0, 0], "arg_names": ["self", "fullname"], "arg_types": ["importlib.abc.InspectLoader", "builtins.str"], "bound_args": [], "def_extras": {"first_arg": "self"}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "load_module of InspectLoader", "ret_type": "_importlib_modulespec.ModuleType", "variables": []}}}, "source_to_code": {".class": "SymbolTableNode", "kind": "Mdef", "node": {".class": "Decorator", "func": {".class": "FuncDef", "arg_kinds": [0, 1], "arg_names": ["data", "path"], "flags": ["is_static", "is_decorated", "is_conditional"], "fullname": "importlib.abc.InspectLoader.source_to_code", "name": "source_to_code", "type": {".class": "CallableType", "arg_kinds": [0, 1], "arg_names": ["data", "path"], "arg_types": [{".class": "UnionType", "items": ["builtins.bytes", "builtins.str"]}, "builtins.str"], "bound_args": [], "def_extras": {"first_arg": null}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "source_to_code of InspectLoader", "ret_type": "types.CodeType", "variables": []}}, "is_overload": false, "var": {".class": "Var", "flags": ["is_initialized_in_class", "is_staticmethod"], "fullname": null, "name": "source_to_code", "type": {".class": "CallableType", "arg_kinds": [0, 1], "arg_names": ["data", "path"], "arg_types": [{".class": "UnionType", "items": ["builtins.bytes", "builtins.str"]}, "builtins.str"], "bound_args": [], "def_extras": {"first_arg": null}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "source_to_code of InspectLoader", "ret_type": "types.CodeType", "variables": []}}}}}, "tuple_type": null, "type_vars": [], "typeddict_type": null}}, "Iterator": {".class": "SymbolTableNode", "cross_ref": "typing.Iterator", "kind": "Gdef", "module_hidden": true, "module_public": false}, "Loader": {".class": "SymbolTableNode", "cross_ref": "_importlib_modulespec.Loader", "kind": "Gdef"}, "Mapping": {".class": "SymbolTableNode", "cross_ref": "typing.Mapping", "kind": "Gdef", "module_hidden": true, "module_public": false}, "MetaPathFinder": {".class": "SymbolTableNode", "kind": "Gdef", "node": {".class": "TypeInfo", "_promote": null, "abstract_attributes": [], "bases": ["importlib.abc.Finder"], "declared_metaclass": null, "defn": {".class": "ClassDef", "fullname": "importlib.abc.MetaPathFinder", "name": "MetaPathFinder", "type_vars": []}, "flags": [], "fullname": "importlib.abc.MetaPathFinder", "metaclass_type": "abc.ABCMeta", "metadata": {}, "module_name": "importlib.abc", "mro": ["importlib.abc.MetaPathFinder", "importlib.abc.Finder", "builtins.object"], "names": {".class": "SymbolTable", "find_module": {".class": "SymbolTableNode", "kind": "Mdef", "node": {".class": "FuncDef", "arg_kinds": [0, 0, 0], "arg_names": ["self", "fullname", "path"], "flags": [], "fullname": "importlib.abc.MetaPathFinder.find_module", "name": "find_module", "type": {".class": "CallableType", "arg_kinds": [0, 0, 0], "arg_names": ["self", "fullname", "path"], "arg_types": ["importlib.abc.MetaPathFinder", "builtins.str", {".class": "UnionType", "items": [{".class": "Instance", "args": [{".class": "UnionType", "items": ["builtins.bytes", "builtins.str"]}], "type_ref": "typing.Sequence"}, {".class": "NoneTyp"}]}], "bound_args": [], "def_extras": {"first_arg": "self"}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "find_module of MetaPathFinder", "ret_type": {".class": "UnionType", "items": ["_importlib_modulespec.Loader", {".class": "NoneTyp"}]}, "variables": []}}}, "find_spec": {".class": "SymbolTableNode", "kind": "Mdef", "node": {".class": "FuncDef", "arg_kinds": [0, 0, 0, 1], "arg_names": ["self", "fullname", "path", "target"], "flags": [], "fullname": "importlib.abc.MetaPathFinder.find_spec", "name": "find_spec", "type": {".class": "CallableType", "arg_kinds": [0, 0, 0, 1], "arg_names": ["self", "fullname", "path", "target"], "arg_types": ["importlib.abc.MetaPathFinder", "builtins.str", {".class": "UnionType", "items": [{".class": "Instance", "args": [{".class": "UnionType", "items": ["builtins.bytes", "builtins.str"]}], "type_ref": "typing.Sequence"}, {".class": "NoneTyp"}]}, {".class": "UnionType", "items": ["_importlib_modulespec.ModuleType", {".class": "NoneTyp"}]}], "bound_args": [], "def_extras": {"first_arg": "self"}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "find_spec of MetaPathFinder", "ret_type": {".class": "UnionType", "items": ["_importlib_modulespec.ModuleSpec", {".class": "NoneTyp"}]}, "variables": []}}}, "invalidate_caches": {".class": "SymbolTableNode", "kind": "Mdef", "node": {".class": "FuncDef", "arg_kinds": [0], "arg_names": ["self"], "flags": [], "fullname": "importlib.abc.MetaPathFinder.invalidate_caches", "name": "invalidate_caches", "type": {".class": "CallableType", "arg_kinds": [0], "arg_names": ["self"], "arg_types": ["importlib.abc.MetaPathFinder"], "bound_args": [], "def_extras": {"first_arg": "self"}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "invalidate_caches of MetaPathFinder", "ret_type": {".class": "NoneTyp"}, "variables": []}}}}, "tuple_type": null, "type_vars": [], "typeddict_type": null}}, "ModuleSpec": {".class": "SymbolTableNode", "cross_ref": "_importlib_modulespec.ModuleSpec", "kind": "Gdef", "module_hidden": true, "module_public": false}, "Optional": {".class": "SymbolTableNode", "cross_ref": "typing.Optional", "kind": "Gdef", "module_hidden": true, "module_public": false}, "PathEntryFinder": {".class": "SymbolTableNode", "kind": "Gdef", "node": {".class": "TypeInfo", "_promote": null, "abstract_attributes": [], "bases": ["importlib.abc.Finder"], "declared_metaclass": null, "defn": {".class": "ClassDef", "fullname": "importlib.abc.PathEntryFinder", "name": "PathEntryFinder", "type_vars": []}, "flags": [], "fullname": "importlib.abc.PathEntryFinder", "metaclass_type": "abc.ABCMeta", "metadata": {}, "module_name": "importlib.abc", "mro": ["importlib.abc.PathEntryFinder", "importlib.abc.Finder", "builtins.object"], "names": {".class": "SymbolTable", "find_loader": {".class": "SymbolTableNode", "kind": "Mdef", "node": {".class": "FuncDef", "arg_kinds": [0, 0], "arg_names": ["self", "fullname"], "flags": [], "fullname": "importlib.abc.PathEntryFinder.find_loader", "name": "find_loader", "type": {".class": "CallableType", "arg_kinds": [0, 0], "arg_names": ["self", "fullname"], "arg_types": ["importlib.abc.PathEntryFinder", "builtins.str"], "bound_args": [], "def_extras": {"first_arg": "self"}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "find_loader of PathEntryFinder", "ret_type": {".class": "TupleType", "fallback": {".class": "Instance", "args": [{".class": "AnyType", "missing_import_name": null, "source_any": null, "type_of_any": 6}], "type_ref": "builtins.tuple"}, "implicit": false, "items": [{".class": "UnionType", "items": ["_importlib_modulespec.Loader", {".class": "NoneTyp"}]}, {".class": "Instance", "args": [{".class": "UnionType", "items": ["builtins.bytes", "builtins.str"]}], "type_ref": "typing.Sequence"}]}, "variables": []}}}, "find_module": {".class": "SymbolTableNode", "kind": "Mdef", "node": {".class": "FuncDef", "arg_kinds": [0, 0], "arg_names": ["self", "fullname"], "flags": [], "fullname": "importlib.abc.PathEntryFinder.find_module", "name": "find_module", "type": {".class": "CallableType", "arg_kinds": [0, 0], "arg_names": ["self", "fullname"], "arg_types": ["importlib.abc.PathEntryFinder", "builtins.str"], "bound_args": [], "def_extras": {"first_arg": "self"}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "find_module of PathEntryFinder", "ret_type": {".class": "UnionType", "items": ["_importlib_modulespec.Loader", {".class": "NoneTyp"}]}, "variables": []}}}, "find_spec": {".class": "SymbolTableNode", "kind": "Mdef", "node": {".class": "FuncDef", "arg_kinds": [0, 0, 1], "arg_names": ["self", "fullname", "target"], "flags": [], "fullname": "importlib.abc.PathEntryFinder.find_spec", "name": "find_spec", "type": {".class": "CallableType", "arg_kinds": [0, 0, 1], "arg_names": ["self", "fullname", "target"], "arg_types": ["importlib.abc.PathEntryFinder", "builtins.str", {".class": "UnionType", "items": ["_importlib_modulespec.ModuleType", {".class": "NoneTyp"}]}], "bound_args": [], "def_extras": {"first_arg": "self"}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "find_spec of PathEntryFinder", "ret_type": {".class": "UnionType", "items": ["_importlib_modulespec.ModuleSpec", {".class": "NoneTyp"}]}, "variables": []}}}, "invalidate_caches": {".class": "SymbolTableNode", "kind": "Mdef", "node": {".class": "FuncDef", "arg_kinds": [0], "arg_names": ["self"], "flags": [], "fullname": "importlib.abc.PathEntryFinder.invalidate_caches", "name": "invalidate_caches", "type": {".class": "CallableType", "arg_kinds": [0], "arg_names": ["self"], "arg_types": ["importlib.abc.PathEntryFinder"], "bound_args": [], "def_extras": {"first_arg": "self"}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "invalidate_caches of PathEntryFinder", "ret_type": {".class": "NoneTyp"}, "variables": []}}}}, "tuple_type": null, "type_vars": [], "typeddict_type": null}}, "ResourceLoader": {".class": "SymbolTableNode", "kind": "Gdef", "node": {".class": "TypeInfo", "_promote": null, "abstract_attributes": ["get_data"], "bases": ["_importlib_modulespec.Loader"], "declared_metaclass": null, "defn": {".class": "ClassDef", "fullname": "importlib.abc.ResourceLoader", "name": "ResourceLoader", "type_vars": []}, "flags": ["is_abstract"], "fullname": "importlib.abc.ResourceLoader", "metaclass_type": "abc.ABCMeta", "metadata": {}, "module_name": "importlib.abc", "mro": ["importlib.abc.ResourceLoader", "_importlib_modulespec.Loader", "builtins.object"], "names": {".class": "SymbolTable", "get_data": {".class": "SymbolTableNode", "kind": "Mdef", "node": {".class": "Decorator", "func": {".class": "FuncDef", "arg_kinds": [0, 0], "arg_names": ["self", "path"], "flags": ["is_decorated", "is_abstract"], "fullname": "importlib.abc.ResourceLoader.get_data", "name": "get_data", "type": {".class": "CallableType", "arg_kinds": [0, 0], "arg_names": ["self", "path"], "arg_types": ["importlib.abc.ResourceLoader", {".class": "UnionType", "items": ["builtins.bytes", "builtins.str"]}], "bound_args": [], "def_extras": {"first_arg": "self"}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "get_data of ResourceLoader", "ret_type": "builtins.bytes", "variables": []}}, "is_overload": false, "var": {".class": "Var", "flags": ["is_initialized_in_class"], "fullname": null, "name": "get_data", "type": {".class": "CallableType", "arg_kinds": [0, 0], "arg_names": ["self", "path"], "arg_types": ["importlib.abc.ResourceLoader", {".class": "UnionType", "items": ["builtins.bytes", "builtins.str"]}], "bound_args": [], "def_extras": {"first_arg": "self"}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "get_data of ResourceLoader", "ret_type": "builtins.bytes", "variables": []}}}}}, "tuple_type": null, "type_vars": [], "typeddict_type": null}}, "ResourceReader": {".class": "SymbolTableNode", "kind": "Gdef", "node": {".class": "TypeInfo", "_promote": null, "abstract_attributes": ["contents", "is_resource", "open_resource", "resource_path"], "bases": ["builtins.object"], "declared_metaclass": "abc.ABCMeta", "defn": {".class": "ClassDef", "fullname": "importlib.abc.ResourceReader", "name": "ResourceReader", "type_vars": []}, "flags": ["is_abstract"], "fullname": "importlib.abc.ResourceReader", "metaclass_type": "abc.ABCMeta", "metadata": {}, "module_name": "importlib.abc", "mro": ["importlib.abc.ResourceReader", "builtins.object"], "names": {".class": "SymbolTable", "contents": {".class": "SymbolTableNode", "kind": "Mdef", "node": {".class": "Decorator", "func": {".class": "FuncDef", "arg_kinds": [0], "arg_names": ["self"], "flags": ["is_decorated", "is_abstract"], "fullname": "importlib.abc.ResourceReader.contents", "name": "contents", "type": {".class": "CallableType", "arg_kinds": [0], "arg_names": ["self"], "arg_types": ["importlib.abc.ResourceReader"], "bound_args": [], "def_extras": {"first_arg": "self"}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "contents of ResourceReader", "ret_type": {".class": "Instance", "args": ["builtins.str"], "type_ref": "typing.Iterator"}, "variables": []}}, "is_overload": false, "var": {".class": "Var", "flags": ["is_initialized_in_class"], "fullname": null, "name": "contents", "type": {".class": "CallableType", "arg_kinds": [0], "arg_names": ["self"], "arg_types": ["importlib.abc.ResourceReader"], "bound_args": [], "def_extras": {"first_arg": "self"}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "contents of ResourceReader", "ret_type": {".class": "Instance", "args": ["builtins.str"], "type_ref": "typing.Iterator"}, "variables": []}}}}, "is_resource": {".class": "SymbolTableNode", "kind": "Mdef", "node": {".class": "Decorator", "func": {".class": "FuncDef", "arg_kinds": [0, 0], "arg_names": ["self", "name"], "flags": ["is_decorated", "is_abstract"], "fullname": "importlib.abc.ResourceReader.is_resource", "name": "is_resource", "type": {".class": "CallableType", "arg_kinds": [0, 0], "arg_names": ["self", "name"], "arg_types": ["importlib.abc.ResourceReader", "builtins.str"], "bound_args": [], "def_extras": {"first_arg": "self"}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "is_resource of ResourceReader", "ret_type": "builtins.bool", "variables": []}}, "is_overload": false, "var": {".class": "Var", "flags": ["is_initialized_in_class"], "fullname": null, "name": "is_resource", "type": {".class": "CallableType", "arg_kinds": [0, 0], "arg_names": ["self", "name"], "arg_types": ["importlib.abc.ResourceReader", "builtins.str"], "bound_args": [], "def_extras": {"first_arg": "self"}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "is_resource of ResourceReader", "ret_type": "builtins.bool", "variables": []}}}}, "open_resource": {".class": "SymbolTableNode", "kind": "Mdef", "node": {".class": "Decorator", "func": {".class": "FuncDef", "arg_kinds": [0, 0], "arg_names": ["self", "resource"], "flags": ["is_decorated", "is_abstract"], "fullname": "importlib.abc.ResourceReader.open_resource", "name": "open_resource", "type": {".class": "CallableType", "arg_kinds": [0, 0], "arg_names": ["self", "resource"], "arg_types": ["importlib.abc.ResourceReader", {".class": "UnionType", "items": ["builtins.bytes", "builtins.str", {".class": "Instance", "args": [{".class": "AnyType", "missing_import_name": null, "source_any": null, "type_of_any": 6}], "type_ref": "builtins._PathLike"}]}], "bound_args": [], "def_extras": {"first_arg": "self"}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "open_resource of ResourceReader", "ret_type": {".class": "Instance", "args": ["builtins.bytes"], "type_ref": "typing.IO"}, "variables": []}}, "is_overload": false, "var": {".class": "Var", "flags": ["is_initialized_in_class"], "fullname": null, "name": "open_resource", "type": {".class": "CallableType", "arg_kinds": [0, 0], "arg_names": ["self", "resource"], "arg_types": ["importlib.abc.ResourceReader", {".class": "UnionType", "items": ["builtins.bytes", "builtins.str", {".class": "Instance", "args": [{".class": "AnyType", "missing_import_name": null, "source_any": null, "type_of_any": 6}], "type_ref": "builtins._PathLike"}]}], "bound_args": [], "def_extras": {"first_arg": "self"}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "open_resource of ResourceReader", "ret_type": {".class": "Instance", "args": ["builtins.bytes"], "type_ref": "typing.IO"}, "variables": []}}}}, "resource_path": {".class": "SymbolTableNode", "kind": "Mdef", "node": {".class": "Decorator", "func": {".class": "FuncDef", "arg_kinds": [0, 0], "arg_names": ["self", "resource"], "flags": ["is_decorated", "is_abstract"], "fullname": "importlib.abc.ResourceReader.resource_path", "name": "resource_path", "type": {".class": "CallableType", "arg_kinds": [0, 0], "arg_names": ["self", "resource"], "arg_types": ["importlib.abc.ResourceReader", {".class": "UnionType", "items": ["builtins.bytes", "builtins.str", {".class": "Instance", "args": [{".class": "AnyType", "missing_import_name": null, "source_any": null, "type_of_any": 6}], "type_ref": "builtins._PathLike"}]}], "bound_args": [], "def_extras": {"first_arg": "self"}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "resource_path of ResourceReader", "ret_type": "builtins.str", "variables": []}}, "is_overload": false, "var": {".class": "Var", "flags": ["is_initialized_in_class"], "fullname": null, "name": "resource_path", "type": {".class": "CallableType", "arg_kinds": [0, 0], "arg_names": ["self", "resource"], "arg_types": ["importlib.abc.ResourceReader", {".class": "UnionType", "items": ["builtins.bytes", "builtins.str", {".class": "Instance", "args": [{".class": "AnyType", "missing_import_name": null, "source_any": null, "type_of_any": 6}], "type_ref": "builtins._PathLike"}]}], "bound_args": [], "def_extras": {"first_arg": "self"}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "resource_path of ResourceReader", "ret_type": "builtins.str", "variables": []}}}}}, "tuple_type": null, "type_vars": [], "typeddict_type": null}}, "Sequence": {".class": "SymbolTableNode", "cross_ref": "typing.Sequence", "kind": "Gdef", "module_hidden": true, "module_public": false}, "SourceLoader": {".class": "SymbolTableNode", "kind": "Gdef", "node": {".class": "TypeInfo", "_promote": null, "abstract_attributes": ["get_data", "get_filename"], "bases": ["importlib.abc.ResourceLoader", "importlib.abc.ExecutionLoader"], "declared_metaclass": "abc.ABCMeta", "defn": {".class": "ClassDef", "fullname": "importlib.abc.SourceLoader", "name": "SourceLoader", "type_vars": []}, "flags": ["is_abstract"], "fullname": "importlib.abc.SourceLoader", "metaclass_type": "abc.ABCMeta", "metadata": {}, "module_name": "importlib.abc", "mro": ["importlib.abc.SourceLoader", "importlib.abc.ResourceLoader", "importlib.abc.ExecutionLoader", "importlib.abc.InspectLoader", "_importlib_modulespec.Loader", "builtins.object"], "names": {".class": "SymbolTable", "get_source": {".class": "SymbolTableNode", "kind": "Mdef", "node": {".class": "FuncDef", "arg_kinds": [0, 0], "arg_names": ["self", "fullname"], "flags": [], "fullname": "importlib.abc.SourceLoader.get_source", "name": "get_source", "type": {".class": "CallableType", "arg_kinds": [0, 0], "arg_names": ["self", "fullname"], "arg_types": ["importlib.abc.SourceLoader", "builtins.str"], "bound_args": [], "def_extras": {"first_arg": "self"}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "get_source of SourceLoader", "ret_type": {".class": "UnionType", "items": ["builtins.str", {".class": "NoneTyp"}]}, "variables": []}}}, "path_mtime": {".class": "SymbolTableNode", "kind": "Mdef", "node": {".class": "FuncDef", "arg_kinds": [0, 0], "arg_names": ["self", "path"], "flags": [], "fullname": "importlib.abc.SourceLoader.path_mtime", "name": "path_mtime", "type": {".class": "CallableType", "arg_kinds": [0, 0], "arg_names": ["self", "path"], "arg_types": ["importlib.abc.SourceLoader", {".class": "UnionType", "items": ["builtins.bytes", "builtins.str"]}], "bound_args": [], "def_extras": {"first_arg": "self"}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "path_mtime of SourceLoader", "ret_type": "builtins.float", "variables": []}}}, "path_stats": {".class": "SymbolTableNode", "kind": "Mdef", "node": {".class": "FuncDef", "arg_kinds": [0, 0], "arg_names": ["self", "path"], "flags": [], "fullname": "importlib.abc.SourceLoader.path_stats", "name": "path_stats", "type": {".class": "CallableType", "arg_kinds": [0, 0], "arg_names": ["self", "path"], "arg_types": ["importlib.abc.SourceLoader", {".class": "UnionType", "items": ["builtins.bytes", "builtins.str"]}], "bound_args": [], "def_extras": {"first_arg": "self"}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "path_stats of SourceLoader", "ret_type": {".class": "Instance", "args": ["builtins.str", {".class": "AnyType", "missing_import_name": null, "source_any": null, "type_of_any": 2}], "type_ref": "typing.Mapping"}, "variables": []}}}, "set_data": {".class": "SymbolTableNode", "kind": "Mdef", "node": {".class": "FuncDef", "arg_kinds": [0, 0, 0], "arg_names": ["self", "path", "data"], "flags": [], "fullname": "importlib.abc.SourceLoader.set_data", "name": "set_data", "type": {".class": "CallableType", "arg_kinds": [0, 0, 0], "arg_names": ["self", "path", "data"], "arg_types": ["importlib.abc.SourceLoader", {".class": "UnionType", "items": ["builtins.bytes", "builtins.str"]}, "builtins.bytes"], "bound_args": [], "def_extras": {"first_arg": "self"}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "set_data of SourceLoader", "ret_type": {".class": "NoneTyp"}, "variables": []}}}}, "tuple_type": null, "type_vars": [], "typeddict_type": null}}, "Tuple": {".class": "SymbolTableNode", "cross_ref": "typing.Tuple", "kind": "Gdef", "module_hidden": true, "module_public": false}, "Union": {".class": "SymbolTableNode", "cross_ref": "typing.Union", "kind": "Gdef", "module_hidden": true, "module_public": false}, "_Path": {".class": "SymbolTableNode", "kind": "Gdef", "node": {".class": "TypeAlias", "alias_tvars": [], "column": 0, "fullname": "importlib.abc._Path", "line": 13, "no_args": false, "normalized": false, "target": {".class": "UnionType", "items": ["builtins.bytes", "builtins.str"]}}}, "_PathLike": {".class": "SymbolTableNode", "kind": "Gdef", "node": {".class": "TypeAlias", "alias_tvars": [], "column": 4, "fullname": "importlib.abc._PathLike", "line": 87, "no_args": false, "normalized": false, "target": {".class": "UnionType", "items": ["builtins.bytes", "builtins.str", {".class": "Instance", "args": [{".class": "AnyType", "missing_import_name": null, "source_any": null, "type_of_any": 6}], "type_ref": "builtins._PathLike"}]}}}, "__doc__": {".class": "SymbolTableNode", "kind": "Gdef", "node": {".class": "Var", "flags": [], "fullname": "importlib.abc.__doc__", "name": "__doc__", "type": "builtins.str"}}, "__file__": {".class": "SymbolTableNode", "kind": "Gdef", "node": {".class": "Var", "flags": [], "fullname": "importlib.abc.__file__", "name": "__file__", "type": "builtins.str"}}, "__name__": {".class": "SymbolTableNode", "kind": "Gdef", "node": {".class": "Var", "flags": [], "fullname": "importlib.abc.__name__", "name": "__name__", "type": "builtins.str"}}, "__package__": {".class": "SymbolTableNode", "kind": "Gdef", "node": {".class": "Var", "flags": [], "fullname": "importlib.abc.__package__", "name": "__package__", "type": "builtins.str"}}, "abstractmethod": {".class": "SymbolTableNode", "cross_ref": "abc.abstractmethod", "kind": "Gdef", "module_hidden": true, "module_public": false}, "os": {".class": "SymbolTableNode", "cross_ref": "os", "kind": "Gdef", "module_hidden": true, "module_public": false}, "sys": {".class": "SymbolTableNode", "cross_ref": "sys", "kind": "Gdef", "module_hidden": true, "module_public": false}, "types": {".class": "SymbolTableNode", "cross_ref": "types", "kind": "Gdef", "module_hidden": true, "module_public": false}}, "path": "/usr/lib/python3/dist-packages/mypy/typeshed/stdlib/3/importlib/abc.pyi"}
\ No newline at end of file
diff --git a/Postgres/StressTests/.mypy_cache/3.7/importlib/abc.meta.json b/Postgres/StressTests/.mypy_cache/3.7/importlib/abc.meta.json
deleted file mode 100644
index eac0aa8..0000000
--- a/Postgres/StressTests/.mypy_cache/3.7/importlib/abc.meta.json
+++ /dev/null
@@ -1 +0,0 @@
-{"child_modules": [], "data_mtime": 1553688971, "dep_lines": [1, 2, 3, 4, 5, 9, 1], "dep_prios": [5, 10, 10, 10, 5, 5, 5], "dependencies": ["abc", "os", "sys", "types", "typing", "_importlib_modulespec", "builtins"], "hash": "7cc03285de04bb194f3ca097fc436c62", "id": "importlib.abc", "ignore_all": true, "interface_hash": "ef5f22eea727b286ccebd3ea18096ae7", "mtime": 1549659920, "options": {"allow_redefinition": false, "allow_untyped_globals": false, "always_false": [], "always_true": [], "bazel": false, "check_untyped_defs": false, "disallow_any_decorated": false, "disallow_any_explicit": false, "disallow_any_expr": false, "disallow_any_generics": false, "disallow_any_unimported": false, "disallow_incomplete_defs": false, "disallow_subclassing_any": false, "disallow_untyped_calls": false, "disallow_untyped_decorators": false, "disallow_untyped_defs": false, "follow_imports": "normal", "follow_imports_for_stubs": false, "ignore_errors": false, "ignore_missing_imports": false, "local_partial_types": false, "mypyc": false, "new_semantic_analyzer": false, "no_implicit_optional": false, "platform": "linux", "plugins": [], "show_none_errors": true, "strict_optional": true, "strict_optional_whitelist": null, "warn_no_return": true, "warn_return_any": false, "warn_unused_ignores": false}, "path": "/usr/lib/python3/dist-packages/mypy/typeshed/stdlib/3/importlib/abc.pyi", "size": 3754, "suppressed": [], "version_id": "0.670"}
\ No newline at end of file
diff --git a/Postgres/StressTests/.mypy_cache/3.7/importlib/machinery.data.json b/Postgres/StressTests/.mypy_cache/3.7/importlib/machinery.data.json
deleted file mode 100644
index 693db5e..0000000
--- a/Postgres/StressTests/.mypy_cache/3.7/importlib/machinery.data.json
+++ /dev/null
@@ -1 +0,0 @@
-{".class": "MypyFile", "_fullname": "importlib.machinery", "is_partial_stub_package": false, "is_stub": true, "names": {".class": "SymbolTable", "Any": {".class": "SymbolTableNode", "cross_ref": "typing.Any", "kind": "Gdef", "module_hidden": true, "module_public": false}, "BYTECODE_SUFFIXES": {".class": "SymbolTableNode", "kind": "Gdef", "node": {".class": "Var", "flags": [], "fullname": "importlib.machinery.BYTECODE_SUFFIXES", "name": "BYTECODE_SUFFIXES", "type": {".class": "Instance", "args": ["builtins.str"], "type_ref": "builtins.list"}}}, "BuiltinImporter": {".class": "SymbolTableNode", "kind": "Gdef", "node": {".class": "TypeInfo", "_promote": null, "abstract_attributes": [], "bases": ["importlib.abc.MetaPathFinder", "importlib.abc.InspectLoader"], "declared_metaclass": null, "defn": {".class": "ClassDef", "fullname": "importlib.machinery.BuiltinImporter", "name": "BuiltinImporter", "type_vars": []}, "flags": [], "fullname": "importlib.machinery.BuiltinImporter", "metaclass_type": "abc.ABCMeta", "metadata": {}, "module_name": "importlib.machinery", "mro": ["importlib.machinery.BuiltinImporter", "importlib.abc.MetaPathFinder", "importlib.abc.Finder", "importlib.abc.InspectLoader", "_importlib_modulespec.Loader", "builtins.object"], "names": {".class": "SymbolTable", "create_module": {".class": "SymbolTableNode", "kind": "Mdef", "node": {".class": "Decorator", "func": {".class": "FuncDef", "arg_kinds": [0, 0], "arg_names": ["cls", "spec"], "flags": ["is_class", "is_decorated"], "fullname": "importlib.machinery.BuiltinImporter.create_module", "name": "create_module", "type": {".class": "CallableType", "arg_kinds": [0, 0], "arg_names": ["cls", "spec"], "arg_types": [{".class": "TypeType", "item": "importlib.machinery.BuiltinImporter"}, "_importlib_modulespec.ModuleSpec"], "bound_args": [], "def_extras": {"first_arg": "cls"}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "create_module of BuiltinImporter", "ret_type": {".class": "UnionType", "items": ["_importlib_modulespec.ModuleType", {".class": "NoneTyp"}]}, "variables": []}}, "is_overload": false, "var": {".class": "Var", "flags": ["is_initialized_in_class", "is_classmethod"], "fullname": null, "name": "create_module", "type": {".class": "CallableType", "arg_kinds": [0, 0], "arg_names": ["cls", "spec"], "arg_types": [{".class": "TypeType", "item": "importlib.machinery.BuiltinImporter"}, "_importlib_modulespec.ModuleSpec"], "bound_args": [], "def_extras": {"first_arg": "cls"}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "create_module of BuiltinImporter", "ret_type": {".class": "UnionType", "items": ["_importlib_modulespec.ModuleType", {".class": "NoneTyp"}]}, "variables": []}}}}, "exec_module": {".class": "SymbolTableNode", "kind": "Mdef", "node": {".class": "Decorator", "func": {".class": "FuncDef", "arg_kinds": [0, 0], "arg_names": ["cls", "module"], "flags": ["is_class", "is_decorated"], "fullname": "importlib.machinery.BuiltinImporter.exec_module", "name": "exec_module", "type": {".class": "CallableType", "arg_kinds": [0, 0], "arg_names": ["cls", "module"], "arg_types": [{".class": "TypeType", "item": "importlib.machinery.BuiltinImporter"}, "_importlib_modulespec.ModuleType"], "bound_args": [], "def_extras": {"first_arg": "cls"}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "exec_module of BuiltinImporter", "ret_type": {".class": "NoneTyp"}, "variables": []}}, "is_overload": false, "var": {".class": "Var", "flags": ["is_initialized_in_class", "is_classmethod"], "fullname": null, "name": "exec_module", "type": {".class": "CallableType", "arg_kinds": [0, 0], "arg_names": ["cls", "module"], "arg_types": [{".class": "TypeType", "item": "importlib.machinery.BuiltinImporter"}, "_importlib_modulespec.ModuleType"], "bound_args": [], "def_extras": {"first_arg": "cls"}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "exec_module of BuiltinImporter", "ret_type": {".class": "NoneTyp"}, "variables": []}}}}, "find_module": {".class": "SymbolTableNode", "kind": "Mdef", "node": {".class": "Decorator", "func": {".class": "FuncDef", "arg_kinds": [0, 0, 0], "arg_names": ["cls", "fullname", "path"], "flags": ["is_class", "is_decorated"], "fullname": "importlib.machinery.BuiltinImporter.find_module", "name": "find_module", "type": {".class": "CallableType", "arg_kinds": [0, 0, 0], "arg_names": ["cls", "fullname", "path"], "arg_types": [{".class": "TypeType", "item": "importlib.machinery.BuiltinImporter"}, "builtins.str", {".class": "UnionType", "items": [{".class": "Instance", "args": [{".class": "UnionType", "items": ["builtins.bytes", "builtins.str"]}], "type_ref": "typing.Sequence"}, {".class": "NoneTyp"}]}], "bound_args": [], "def_extras": {"first_arg": "cls"}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "find_module of BuiltinImporter", "ret_type": {".class": "UnionType", "items": ["_importlib_modulespec.Loader", {".class": "NoneTyp"}]}, "variables": []}}, "is_overload": false, "var": {".class": "Var", "flags": ["is_initialized_in_class", "is_classmethod"], "fullname": null, "name": "find_module", "type": {".class": "CallableType", "arg_kinds": [0, 0, 0], "arg_names": ["cls", "fullname", "path"], "arg_types": [{".class": "TypeType", "item": "importlib.machinery.BuiltinImporter"}, "builtins.str", {".class": "UnionType", "items": [{".class": "Instance", "args": [{".class": "UnionType", "items": ["builtins.bytes", "builtins.str"]}], "type_ref": "typing.Sequence"}, {".class": "NoneTyp"}]}], "bound_args": [], "def_extras": {"first_arg": "cls"}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "find_module of BuiltinImporter", "ret_type": {".class": "UnionType", "items": ["_importlib_modulespec.Loader", {".class": "NoneTyp"}]}, "variables": []}}}}, "find_spec": {".class": "SymbolTableNode", "kind": "Mdef", "node": {".class": "Decorator", "func": {".class": "FuncDef", "arg_kinds": [0, 0, 0, 1], "arg_names": ["cls", "fullname", "path", "target"], "flags": ["is_class", "is_decorated"], "fullname": "importlib.machinery.BuiltinImporter.find_spec", "name": "find_spec", "type": {".class": "CallableType", "arg_kinds": [0, 0, 0, 1], "arg_names": ["cls", "fullname", "path", "target"], "arg_types": [{".class": "TypeType", "item": "importlib.machinery.BuiltinImporter"}, "builtins.str", {".class": "UnionType", "items": [{".class": "Instance", "args": [{".class": "UnionType", "items": ["builtins.bytes", "builtins.str"]}], "type_ref": "typing.Sequence"}, {".class": "NoneTyp"}]}, {".class": "UnionType", "items": ["_importlib_modulespec.ModuleType", {".class": "NoneTyp"}]}], "bound_args": [], "def_extras": {"first_arg": "cls"}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "find_spec of BuiltinImporter", "ret_type": {".class": "UnionType", "items": ["_importlib_modulespec.ModuleSpec", {".class": "NoneTyp"}]}, "variables": []}}, "is_overload": false, "var": {".class": "Var", "flags": ["is_initialized_in_class", "is_classmethod"], "fullname": null, "name": "find_spec", "type": {".class": "CallableType", "arg_kinds": [0, 0, 0, 1], "arg_names": ["cls", "fullname", "path", "target"], "arg_types": [{".class": "TypeType", "item": "importlib.machinery.BuiltinImporter"}, "builtins.str", {".class": "UnionType", "items": [{".class": "Instance", "args": [{".class": "UnionType", "items": ["builtins.bytes", "builtins.str"]}], "type_ref": "typing.Sequence"}, {".class": "NoneTyp"}]}, {".class": "UnionType", "items": ["_importlib_modulespec.ModuleType", {".class": "NoneTyp"}]}], "bound_args": [], "def_extras": {"first_arg": "cls"}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "find_spec of BuiltinImporter", "ret_type": {".class": "UnionType", "items": ["_importlib_modulespec.ModuleSpec", {".class": "NoneTyp"}]}, "variables": []}}}}, "get_code": {".class": "SymbolTableNode", "kind": "Mdef", "node": {".class": "Decorator", "func": {".class": "FuncDef", "arg_kinds": [0, 0], "arg_names": ["cls", "fullname"], "flags": ["is_class", "is_decorated"], "fullname": "importlib.machinery.BuiltinImporter.get_code", "name": "get_code", "type": {".class": "CallableType", "arg_kinds": [0, 0], "arg_names": ["cls", "fullname"], "arg_types": [{".class": "TypeType", "item": "importlib.machinery.BuiltinImporter"}, "builtins.str"], "bound_args": [], "def_extras": {"first_arg": "cls"}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "get_code of BuiltinImporter", "ret_type": {".class": "NoneTyp"}, "variables": []}}, "is_overload": false, "var": {".class": "Var", "flags": ["is_initialized_in_class", "is_classmethod"], "fullname": null, "name": "get_code", "type": {".class": "CallableType", "arg_kinds": [0, 0], "arg_names": ["cls", "fullname"], "arg_types": [{".class": "TypeType", "item": "importlib.machinery.BuiltinImporter"}, "builtins.str"], "bound_args": [], "def_extras": {"first_arg": "cls"}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "get_code of BuiltinImporter", "ret_type": {".class": "NoneTyp"}, "variables": []}}}}, "get_source": {".class": "SymbolTableNode", "kind": "Mdef", "node": {".class": "Decorator", "func": {".class": "FuncDef", "arg_kinds": [0, 0], "arg_names": ["cls", "fullname"], "flags": ["is_class", "is_decorated"], "fullname": "importlib.machinery.BuiltinImporter.get_source", "name": "get_source", "type": {".class": "CallableType", "arg_kinds": [0, 0], "arg_names": ["cls", "fullname"], "arg_types": [{".class": "TypeType", "item": "importlib.machinery.BuiltinImporter"}, "builtins.str"], "bound_args": [], "def_extras": {"first_arg": "cls"}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "get_source of BuiltinImporter", "ret_type": {".class": "NoneTyp"}, "variables": []}}, "is_overload": false, "var": {".class": "Var", "flags": ["is_initialized_in_class", "is_classmethod"], "fullname": null, "name": "get_source", "type": {".class": "CallableType", "arg_kinds": [0, 0], "arg_names": ["cls", "fullname"], "arg_types": [{".class": "TypeType", "item": "importlib.machinery.BuiltinImporter"}, "builtins.str"], "bound_args": [], "def_extras": {"first_arg": "cls"}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "get_source of BuiltinImporter", "ret_type": {".class": "NoneTyp"}, "variables": []}}}}, "is_package": {".class": "SymbolTableNode", "kind": "Mdef", "node": {".class": "Decorator", "func": {".class": "FuncDef", "arg_kinds": [0, 0], "arg_names": ["cls", "fullname"], "flags": ["is_class", "is_decorated"], "fullname": "importlib.machinery.BuiltinImporter.is_package", "name": "is_package", "type": {".class": "CallableType", "arg_kinds": [0, 0], "arg_names": ["cls", "fullname"], "arg_types": [{".class": "TypeType", "item": "importlib.machinery.BuiltinImporter"}, "builtins.str"], "bound_args": [], "def_extras": {"first_arg": "cls"}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "is_package of BuiltinImporter", "ret_type": "builtins.bool", "variables": []}}, "is_overload": false, "var": {".class": "Var", "flags": ["is_initialized_in_class", "is_classmethod"], "fullname": null, "name": "is_package", "type": {".class": "CallableType", "arg_kinds": [0, 0], "arg_names": ["cls", "fullname"], "arg_types": [{".class": "TypeType", "item": "importlib.machinery.BuiltinImporter"}, "builtins.str"], "bound_args": [], "def_extras": {"first_arg": "cls"}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "is_package of BuiltinImporter", "ret_type": "builtins.bool", "variables": []}}}}, "load_module": {".class": "SymbolTableNode", "kind": "Mdef", "node": {".class": "Decorator", "func": {".class": "FuncDef", "arg_kinds": [0, 0], "arg_names": ["cls", "fullname"], "flags": ["is_class", "is_decorated"], "fullname": "importlib.machinery.BuiltinImporter.load_module", "name": "load_module", "type": {".class": "CallableType", "arg_kinds": [0, 0], "arg_names": ["cls", "fullname"], "arg_types": [{".class": "TypeType", "item": "importlib.machinery.BuiltinImporter"}, "builtins.str"], "bound_args": [], "def_extras": {"first_arg": "cls"}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "load_module of BuiltinImporter", "ret_type": "_importlib_modulespec.ModuleType", "variables": []}}, "is_overload": false, "var": {".class": "Var", "flags": ["is_initialized_in_class", "is_classmethod"], "fullname": null, "name": "load_module", "type": {".class": "CallableType", "arg_kinds": [0, 0], "arg_names": ["cls", "fullname"], "arg_types": [{".class": "TypeType", "item": "importlib.machinery.BuiltinImporter"}, "builtins.str"], "bound_args": [], "def_extras": {"first_arg": "cls"}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "load_module of BuiltinImporter", "ret_type": "_importlib_modulespec.ModuleType", "variables": []}}}}, "module_repr": {".class": "SymbolTableNode", "kind": "Mdef", "node": {".class": "Decorator", "func": {".class": "FuncDef", "arg_kinds": [0], "arg_names": ["module"], "flags": ["is_static", "is_decorated"], "fullname": "importlib.machinery.BuiltinImporter.module_repr", "name": "module_repr", "type": {".class": "CallableType", "arg_kinds": [0], "arg_names": ["module"], "arg_types": ["_importlib_modulespec.ModuleType"], "bound_args": [], "def_extras": {"first_arg": null}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "module_repr of BuiltinImporter", "ret_type": "builtins.str", "variables": []}}, "is_overload": false, "var": {".class": "Var", "flags": ["is_initialized_in_class", "is_staticmethod"], "fullname": null, "name": "module_repr", "type": {".class": "CallableType", "arg_kinds": [0], "arg_names": ["module"], "arg_types": ["_importlib_modulespec.ModuleType"], "bound_args": [], "def_extras": {"first_arg": null}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "module_repr of BuiltinImporter", "ret_type": "builtins.str", "variables": []}}}}}, "tuple_type": null, "type_vars": [], "typeddict_type": null}}, "Callable": {".class": "SymbolTableNode", "cross_ref": "typing.Callable", "kind": "Gdef", "module_hidden": true, "module_public": false}, "DEBUG_BYTECODE_SUFFIXES": {".class": "SymbolTableNode", "kind": "Gdef", "node": {".class": "Var", "flags": [], "fullname": "importlib.machinery.DEBUG_BYTECODE_SUFFIXES", "name": "DEBUG_BYTECODE_SUFFIXES", "type": {".class": "Instance", "args": ["builtins.str"], "type_ref": "builtins.list"}}}, "EXTENSION_SUFFIXES": {".class": "SymbolTableNode", "kind": "Gdef", "node": {".class": "Var", "flags": [], "fullname": "importlib.machinery.EXTENSION_SUFFIXES", "name": "EXTENSION_SUFFIXES", "type": {".class": "Instance", "args": ["builtins.str"], "type_ref": "builtins.list"}}}, "ExtensionFileLoader": {".class": "SymbolTableNode", "kind": "Gdef", "node": {".class": "TypeInfo", "_promote": null, "abstract_attributes": [], "bases": ["importlib.abc.ExecutionLoader"], "declared_metaclass": null, "defn": {".class": "ClassDef", "fullname": "importlib.machinery.ExtensionFileLoader", "name": "ExtensionFileLoader", "type_vars": []}, "flags": [], "fullname": "importlib.machinery.ExtensionFileLoader", "metaclass_type": "abc.ABCMeta", "metadata": {}, "module_name": "importlib.machinery", "mro": ["importlib.machinery.ExtensionFileLoader", "importlib.abc.ExecutionLoader", "importlib.abc.InspectLoader", "_importlib_modulespec.Loader", "builtins.object"], "names": {".class": "SymbolTable", "get_filename": {".class": "SymbolTableNode", "kind": "Mdef", "node": {".class": "FuncDef", "arg_kinds": [0, 0], "arg_names": ["self", "fullname"], "flags": [], "fullname": "importlib.machinery.ExtensionFileLoader.get_filename", "name": "get_filename", "type": {".class": "CallableType", "arg_kinds": [0, 0], "arg_names": ["self", "fullname"], "arg_types": ["importlib.machinery.ExtensionFileLoader", "builtins.str"], "bound_args": [], "def_extras": {"first_arg": "self"}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "get_filename of ExtensionFileLoader", "ret_type": {".class": "UnionType", "items": ["builtins.bytes", "builtins.str"]}, "variables": []}}}, "get_source": {".class": "SymbolTableNode", "kind": "Mdef", "node": {".class": "FuncDef", "arg_kinds": [0, 0], "arg_names": ["self", "fullname"], "flags": [], "fullname": "importlib.machinery.ExtensionFileLoader.get_source", "name": "get_source", "type": {".class": "CallableType", "arg_kinds": [0, 0], "arg_names": ["self", "fullname"], "arg_types": ["importlib.machinery.ExtensionFileLoader", "builtins.str"], "bound_args": [], "def_extras": {"first_arg": "self"}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "get_source of ExtensionFileLoader", "ret_type": {".class": "NoneTyp"}, "variables": []}}}}, "tuple_type": null, "type_vars": [], "typeddict_type": null}}, "FileFinder": {".class": "SymbolTableNode", "kind": "Gdef", "node": {".class": "TypeInfo", "_promote": null, "abstract_attributes": [], "bases": ["importlib.abc.PathEntryFinder"], "declared_metaclass": null, "defn": {".class": "ClassDef", "fullname": "importlib.machinery.FileFinder", "name": "FileFinder", "type_vars": []}, "flags": [], "fullname": "importlib.machinery.FileFinder", "metaclass_type": "abc.ABCMeta", "metadata": {}, "module_name": "importlib.machinery", "mro": ["importlib.machinery.FileFinder", "importlib.abc.PathEntryFinder", "importlib.abc.Finder", "builtins.object"], "names": {".class": "SymbolTable", "__init__": {".class": "SymbolTableNode", "kind": "Mdef", "node": {".class": "FuncDef", "arg_kinds": [0, 0, 2], "arg_names": ["self", "path", "loader_details"], "flags": [], "fullname": "importlib.machinery.FileFinder.__init__", "name": "__init__", "type": {".class": "CallableType", "arg_kinds": [0, 0, 2], "arg_names": ["self", "path", "loader_details"], "arg_types": ["importlib.machinery.FileFinder", "builtins.str", {".class": "TupleType", "fallback": {".class": "Instance", "args": [{".class": "AnyType", "missing_import_name": null, "source_any": null, "type_of_any": 6}], "type_ref": "builtins.tuple"}, "implicit": false, "items": ["_importlib_modulespec.Loader", {".class": "Instance", "args": ["builtins.str"], "type_ref": "builtins.list"}]}], "bound_args": [], "def_extras": {"first_arg": "self"}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "__init__ of FileFinder", "ret_type": {".class": "NoneTyp"}, "variables": []}}}, "path": {".class": "SymbolTableNode", "kind": "Mdef", "node": {".class": "Var", "flags": ["is_initialized_in_class"], "fullname": "importlib.machinery.FileFinder.path", "name": "path", "type": "builtins.str"}}, "path_hook": {".class": "SymbolTableNode", "kind": "Mdef", "node": {".class": "Decorator", "func": {".class": "FuncDef", "arg_kinds": [0, 2], "arg_names": ["cls", "loader_details"], "flags": ["is_class", "is_decorated"], "fullname": "importlib.machinery.FileFinder.path_hook", "name": "path_hook", "type": {".class": "CallableType", "arg_kinds": [0, 2], "arg_names": ["cls", "loader_details"], "arg_types": [{".class": "TypeType", "item": "importlib.machinery.FileFinder"}, {".class": "TupleType", "fallback": {".class": "Instance", "args": [{".class": "AnyType", "missing_import_name": null, "source_any": null, "type_of_any": 6}], "type_ref": "builtins.tuple"}, "implicit": false, "items": ["_importlib_modulespec.Loader", {".class": "Instance", "args": ["builtins.str"], "type_ref": "builtins.list"}]}], "bound_args": [], "def_extras": {"first_arg": "cls"}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "path_hook of FileFinder", "ret_type": {".class": "CallableType", "arg_kinds": [0], "arg_names": [null], "arg_types": ["builtins.str"], "bound_args": [], "def_extras": {}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": null, "ret_type": "importlib.abc.PathEntryFinder", "variables": []}, "variables": []}}, "is_overload": false, "var": {".class": "Var", "flags": ["is_initialized_in_class", "is_classmethod"], "fullname": null, "name": "path_hook", "type": {".class": "CallableType", "arg_kinds": [0, 2], "arg_names": ["cls", "loader_details"], "arg_types": [{".class": "TypeType", "item": "importlib.machinery.FileFinder"}, {".class": "TupleType", "fallback": {".class": "Instance", "args": [{".class": "AnyType", "missing_import_name": null, "source_any": null, "type_of_any": 6}], "type_ref": "builtins.tuple"}, "implicit": false, "items": ["_importlib_modulespec.Loader", {".class": "Instance", "args": ["builtins.str"], "type_ref": "builtins.list"}]}], "bound_args": [], "def_extras": {"first_arg": "cls"}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "path_hook of FileFinder", "ret_type": {".class": "CallableType", "arg_kinds": [0], "arg_names": [null], "arg_types": ["builtins.str"], "bound_args": [], "def_extras": {}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": null, "ret_type": "importlib.abc.PathEntryFinder", "variables": []}, "variables": []}}}}}, "tuple_type": null, "type_vars": [], "typeddict_type": null}}, "FrozenImporter": {".class": "SymbolTableNode", "kind": "Gdef", "node": {".class": "TypeInfo", "_promote": null, "abstract_attributes": [], "bases": ["importlib.abc.MetaPathFinder", "importlib.abc.InspectLoader"], "declared_metaclass": null, "defn": {".class": "ClassDef", "fullname": "importlib.machinery.FrozenImporter", "name": "FrozenImporter", "type_vars": []}, "flags": [], "fullname": "importlib.machinery.FrozenImporter", "metaclass_type": "abc.ABCMeta", "metadata": {}, "module_name": "importlib.machinery", "mro": ["importlib.machinery.FrozenImporter", "importlib.abc.MetaPathFinder", "importlib.abc.Finder", "importlib.abc.InspectLoader", "_importlib_modulespec.Loader", "builtins.object"], "names": {".class": "SymbolTable", "create_module": {".class": "SymbolTableNode", "kind": "Mdef", "node": {".class": "Decorator", "func": {".class": "FuncDef", "arg_kinds": [0, 0], "arg_names": ["cls", "spec"], "flags": ["is_class", "is_decorated"], "fullname": "importlib.machinery.FrozenImporter.create_module", "name": "create_module", "type": {".class": "CallableType", "arg_kinds": [0, 0], "arg_names": ["cls", "spec"], "arg_types": [{".class": "TypeType", "item": "importlib.machinery.FrozenImporter"}, "_importlib_modulespec.ModuleSpec"], "bound_args": [], "def_extras": {"first_arg": "cls"}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "create_module of FrozenImporter", "ret_type": {".class": "UnionType", "items": ["_importlib_modulespec.ModuleType", {".class": "NoneTyp"}]}, "variables": []}}, "is_overload": false, "var": {".class": "Var", "flags": ["is_initialized_in_class", "is_classmethod"], "fullname": null, "name": "create_module", "type": {".class": "CallableType", "arg_kinds": [0, 0], "arg_names": ["cls", "spec"], "arg_types": [{".class": "TypeType", "item": "importlib.machinery.FrozenImporter"}, "_importlib_modulespec.ModuleSpec"], "bound_args": [], "def_extras": {"first_arg": "cls"}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "create_module of FrozenImporter", "ret_type": {".class": "UnionType", "items": ["_importlib_modulespec.ModuleType", {".class": "NoneTyp"}]}, "variables": []}}}}, "exec_module": {".class": "SymbolTableNode", "kind": "Mdef", "node": {".class": "Decorator", "func": {".class": "FuncDef", "arg_kinds": [0], "arg_names": ["module"], "flags": ["is_static", "is_decorated"], "fullname": "importlib.machinery.FrozenImporter.exec_module", "name": "exec_module", "type": {".class": "CallableType", "arg_kinds": [0], "arg_names": ["module"], "arg_types": ["_importlib_modulespec.ModuleType"], "bound_args": [], "def_extras": {"first_arg": null}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "exec_module of FrozenImporter", "ret_type": {".class": "NoneTyp"}, "variables": []}}, "is_overload": false, "var": {".class": "Var", "flags": ["is_initialized_in_class", "is_staticmethod"], "fullname": null, "name": "exec_module", "type": {".class": "CallableType", "arg_kinds": [0], "arg_names": ["module"], "arg_types": ["_importlib_modulespec.ModuleType"], "bound_args": [], "def_extras": {"first_arg": null}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "exec_module of FrozenImporter", "ret_type": {".class": "NoneTyp"}, "variables": []}}}}, "find_module": {".class": "SymbolTableNode", "kind": "Mdef", "node": {".class": "Decorator", "func": {".class": "FuncDef", "arg_kinds": [0, 0, 0], "arg_names": ["cls", "fullname", "path"], "flags": ["is_class", "is_decorated"], "fullname": "importlib.machinery.FrozenImporter.find_module", "name": "find_module", "type": {".class": "CallableType", "arg_kinds": [0, 0, 0], "arg_names": ["cls", "fullname", "path"], "arg_types": [{".class": "TypeType", "item": "importlib.machinery.FrozenImporter"}, "builtins.str", {".class": "UnionType", "items": [{".class": "Instance", "args": [{".class": "UnionType", "items": ["builtins.bytes", "builtins.str"]}], "type_ref": "typing.Sequence"}, {".class": "NoneTyp"}]}], "bound_args": [], "def_extras": {"first_arg": "cls"}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "find_module of FrozenImporter", "ret_type": {".class": "UnionType", "items": ["_importlib_modulespec.Loader", {".class": "NoneTyp"}]}, "variables": []}}, "is_overload": false, "var": {".class": "Var", "flags": ["is_initialized_in_class", "is_classmethod"], "fullname": null, "name": "find_module", "type": {".class": "CallableType", "arg_kinds": [0, 0, 0], "arg_names": ["cls", "fullname", "path"], "arg_types": [{".class": "TypeType", "item": "importlib.machinery.FrozenImporter"}, "builtins.str", {".class": "UnionType", "items": [{".class": "Instance", "args": [{".class": "UnionType", "items": ["builtins.bytes", "builtins.str"]}], "type_ref": "typing.Sequence"}, {".class": "NoneTyp"}]}], "bound_args": [], "def_extras": {"first_arg": "cls"}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "find_module of FrozenImporter", "ret_type": {".class": "UnionType", "items": ["_importlib_modulespec.Loader", {".class": "NoneTyp"}]}, "variables": []}}}}, "find_spec": {".class": "SymbolTableNode", "kind": "Mdef", "node": {".class": "Decorator", "func": {".class": "FuncDef", "arg_kinds": [0, 0, 0, 1], "arg_names": ["cls", "fullname", "path", "target"], "flags": ["is_class", "is_decorated"], "fullname": "importlib.machinery.FrozenImporter.find_spec", "name": "find_spec", "type": {".class": "CallableType", "arg_kinds": [0, 0, 0, 1], "arg_names": ["cls", "fullname", "path", "target"], "arg_types": [{".class": "TypeType", "item": "importlib.machinery.FrozenImporter"}, "builtins.str", {".class": "UnionType", "items": [{".class": "Instance", "args": [{".class": "UnionType", "items": ["builtins.bytes", "builtins.str"]}], "type_ref": "typing.Sequence"}, {".class": "NoneTyp"}]}, {".class": "UnionType", "items": ["_importlib_modulespec.ModuleType", {".class": "NoneTyp"}]}], "bound_args": [], "def_extras": {"first_arg": "cls"}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "find_spec of FrozenImporter", "ret_type": {".class": "UnionType", "items": ["_importlib_modulespec.ModuleSpec", {".class": "NoneTyp"}]}, "variables": []}}, "is_overload": false, "var": {".class": "Var", "flags": ["is_initialized_in_class", "is_classmethod"], "fullname": null, "name": "find_spec", "type": {".class": "CallableType", "arg_kinds": [0, 0, 0, 1], "arg_names": ["cls", "fullname", "path", "target"], "arg_types": [{".class": "TypeType", "item": "importlib.machinery.FrozenImporter"}, "builtins.str", {".class": "UnionType", "items": [{".class": "Instance", "args": [{".class": "UnionType", "items": ["builtins.bytes", "builtins.str"]}], "type_ref": "typing.Sequence"}, {".class": "NoneTyp"}]}, {".class": "UnionType", "items": ["_importlib_modulespec.ModuleType", {".class": "NoneTyp"}]}], "bound_args": [], "def_extras": {"first_arg": "cls"}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "find_spec of FrozenImporter", "ret_type": {".class": "UnionType", "items": ["_importlib_modulespec.ModuleSpec", {".class": "NoneTyp"}]}, "variables": []}}}}, "get_code": {".class": "SymbolTableNode", "kind": "Mdef", "node": {".class": "Decorator", "func": {".class": "FuncDef", "arg_kinds": [0, 0], "arg_names": ["cls", "fullname"], "flags": ["is_class", "is_decorated"], "fullname": "importlib.machinery.FrozenImporter.get_code", "name": "get_code", "type": {".class": "CallableType", "arg_kinds": [0, 0], "arg_names": ["cls", "fullname"], "arg_types": [{".class": "TypeType", "item": "importlib.machinery.FrozenImporter"}, "builtins.str"], "bound_args": [], "def_extras": {"first_arg": "cls"}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "get_code of FrozenImporter", "ret_type": {".class": "NoneTyp"}, "variables": []}}, "is_overload": false, "var": {".class": "Var", "flags": ["is_initialized_in_class", "is_classmethod"], "fullname": null, "name": "get_code", "type": {".class": "CallableType", "arg_kinds": [0, 0], "arg_names": ["cls", "fullname"], "arg_types": [{".class": "TypeType", "item": "importlib.machinery.FrozenImporter"}, "builtins.str"], "bound_args": [], "def_extras": {"first_arg": "cls"}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "get_code of FrozenImporter", "ret_type": {".class": "NoneTyp"}, "variables": []}}}}, "get_source": {".class": "SymbolTableNode", "kind": "Mdef", "node": {".class": "Decorator", "func": {".class": "FuncDef", "arg_kinds": [0, 0], "arg_names": ["cls", "fullname"], "flags": ["is_class", "is_decorated"], "fullname": "importlib.machinery.FrozenImporter.get_source", "name": "get_source", "type": {".class": "CallableType", "arg_kinds": [0, 0], "arg_names": ["cls", "fullname"], "arg_types": [{".class": "TypeType", "item": "importlib.machinery.FrozenImporter"}, "builtins.str"], "bound_args": [], "def_extras": {"first_arg": "cls"}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "get_source of FrozenImporter", "ret_type": {".class": "NoneTyp"}, "variables": []}}, "is_overload": false, "var": {".class": "Var", "flags": ["is_initialized_in_class", "is_classmethod"], "fullname": null, "name": "get_source", "type": {".class": "CallableType", "arg_kinds": [0, 0], "arg_names": ["cls", "fullname"], "arg_types": [{".class": "TypeType", "item": "importlib.machinery.FrozenImporter"}, "builtins.str"], "bound_args": [], "def_extras": {"first_arg": "cls"}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "get_source of FrozenImporter", "ret_type": {".class": "NoneTyp"}, "variables": []}}}}, "is_package": {".class": "SymbolTableNode", "kind": "Mdef", "node": {".class": "Decorator", "func": {".class": "FuncDef", "arg_kinds": [0, 0], "arg_names": ["cls", "fullname"], "flags": ["is_class", "is_decorated"], "fullname": "importlib.machinery.FrozenImporter.is_package", "name": "is_package", "type": {".class": "CallableType", "arg_kinds": [0, 0], "arg_names": ["cls", "fullname"], "arg_types": [{".class": "TypeType", "item": "importlib.machinery.FrozenImporter"}, "builtins.str"], "bound_args": [], "def_extras": {"first_arg": "cls"}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "is_package of FrozenImporter", "ret_type": "builtins.bool", "variables": []}}, "is_overload": false, "var": {".class": "Var", "flags": ["is_initialized_in_class", "is_classmethod"], "fullname": null, "name": "is_package", "type": {".class": "CallableType", "arg_kinds": [0, 0], "arg_names": ["cls", "fullname"], "arg_types": [{".class": "TypeType", "item": "importlib.machinery.FrozenImporter"}, "builtins.str"], "bound_args": [], "def_extras": {"first_arg": "cls"}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "is_package of FrozenImporter", "ret_type": "builtins.bool", "variables": []}}}}, "load_module": {".class": "SymbolTableNode", "kind": "Mdef", "node": {".class": "Decorator", "func": {".class": "FuncDef", "arg_kinds": [0, 0], "arg_names": ["cls", "fullname"], "flags": ["is_class", "is_decorated"], "fullname": "importlib.machinery.FrozenImporter.load_module", "name": "load_module", "type": {".class": "CallableType", "arg_kinds": [0, 0], "arg_names": ["cls", "fullname"], "arg_types": [{".class": "TypeType", "item": "importlib.machinery.FrozenImporter"}, "builtins.str"], "bound_args": [], "def_extras": {"first_arg": "cls"}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "load_module of FrozenImporter", "ret_type": "_importlib_modulespec.ModuleType", "variables": []}}, "is_overload": false, "var": {".class": "Var", "flags": ["is_initialized_in_class", "is_classmethod"], "fullname": null, "name": "load_module", "type": {".class": "CallableType", "arg_kinds": [0, 0], "arg_names": ["cls", "fullname"], "arg_types": [{".class": "TypeType", "item": "importlib.machinery.FrozenImporter"}, "builtins.str"], "bound_args": [], "def_extras": {"first_arg": "cls"}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "load_module of FrozenImporter", "ret_type": "_importlib_modulespec.ModuleType", "variables": []}}}}, "module_repr": {".class": "SymbolTableNode", "kind": "Mdef", "node": {".class": "Decorator", "func": {".class": "FuncDef", "arg_kinds": [0], "arg_names": ["module"], "flags": ["is_static", "is_decorated"], "fullname": "importlib.machinery.FrozenImporter.module_repr", "name": "module_repr", "type": {".class": "CallableType", "arg_kinds": [0], "arg_names": ["module"], "arg_types": ["_importlib_modulespec.ModuleType"], "bound_args": [], "def_extras": {"first_arg": null}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "module_repr of FrozenImporter", "ret_type": "builtins.str", "variables": []}}, "is_overload": false, "var": {".class": "Var", "flags": ["is_initialized_in_class", "is_staticmethod"], "fullname": null, "name": "module_repr", "type": {".class": "CallableType", "arg_kinds": [0], "arg_names": ["module"], "arg_types": ["_importlib_modulespec.ModuleType"], "bound_args": [], "def_extras": {"first_arg": null}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "module_repr of FrozenImporter", "ret_type": "builtins.str", "variables": []}}}}}, "tuple_type": null, "type_vars": [], "typeddict_type": null}}, "List": {".class": "SymbolTableNode", "cross_ref": "typing.List", "kind": "Gdef", "module_hidden": true, "module_public": false}, "ModuleSpec": {".class": "SymbolTableNode", "cross_ref": "_importlib_modulespec.ModuleSpec", "kind": "Gdef"}, "OPTIMIZED_BYTECODE_SUFFIXES": {".class": "SymbolTableNode", "kind": "Gdef", "node": {".class": "Var", "flags": [], "fullname": "importlib.machinery.OPTIMIZED_BYTECODE_SUFFIXES", "name": "OPTIMIZED_BYTECODE_SUFFIXES", "type": {".class": "Instance", "args": ["builtins.str"], "type_ref": "builtins.list"}}}, "Optional": {".class": "SymbolTableNode", "cross_ref": "typing.Optional", "kind": "Gdef", "module_hidden": true, "module_public": false}, "PathFinder": {".class": "SymbolTableNode", "kind": "Gdef", "node": {".class": "TypeInfo", "_promote": null, "abstract_attributes": [], "bases": ["importlib.abc.MetaPathFinder"], "declared_metaclass": null, "defn": {".class": "ClassDef", "fullname": "importlib.machinery.PathFinder", "name": "PathFinder", "type_vars": []}, "flags": [], "fullname": "importlib.machinery.PathFinder", "metaclass_type": "abc.ABCMeta", "metadata": {}, "module_name": "importlib.machinery", "mro": ["importlib.machinery.PathFinder", "importlib.abc.MetaPathFinder", "importlib.abc.Finder", "builtins.object"], "names": {".class": "SymbolTable"}, "tuple_type": null, "type_vars": [], "typeddict_type": null}}, "SOURCE_SUFFIXES": {".class": "SymbolTableNode", "kind": "Gdef", "node": {".class": "Var", "flags": [], "fullname": "importlib.machinery.SOURCE_SUFFIXES", "name": "SOURCE_SUFFIXES", "type": {".class": "Instance", "args": ["builtins.str"], "type_ref": "builtins.list"}}}, "Sequence": {".class": "SymbolTableNode", "cross_ref": "typing.Sequence", "kind": "Gdef", "module_hidden": true, "module_public": false}, "SourceFileLoader": {".class": "SymbolTableNode", "kind": "Gdef", "node": {".class": "TypeInfo", "_promote": null, "abstract_attributes": [], "bases": ["importlib.abc.FileLoader", "importlib.abc.SourceLoader"], "declared_metaclass": null, "defn": {".class": "ClassDef", "fullname": "importlib.machinery.SourceFileLoader", "name": "SourceFileLoader", "type_vars": []}, "flags": [], "fullname": "importlib.machinery.SourceFileLoader", "metaclass_type": "abc.ABCMeta", "metadata": {}, "module_name": "importlib.machinery", "mro": ["importlib.machinery.SourceFileLoader", "importlib.abc.FileLoader", "importlib.abc.SourceLoader", "importlib.abc.ResourceLoader", "importlib.abc.ExecutionLoader", "importlib.abc.InspectLoader", "_importlib_modulespec.Loader", "builtins.object"], "names": {".class": "SymbolTable"}, "tuple_type": null, "type_vars": [], "typeddict_type": null}}, "SourcelessFileLoader": {".class": "SymbolTableNode", "kind": "Gdef", "node": {".class": "TypeInfo", "_promote": null, "abstract_attributes": [], "bases": ["importlib.abc.FileLoader", "importlib.abc.SourceLoader"], "declared_metaclass": null, "defn": {".class": "ClassDef", "fullname": "importlib.machinery.SourcelessFileLoader", "name": "SourcelessFileLoader", "type_vars": []}, "flags": [], "fullname": "importlib.machinery.SourcelessFileLoader", "metaclass_type": "abc.ABCMeta", "metadata": {}, "module_name": "importlib.machinery", "mro": ["importlib.machinery.SourcelessFileLoader", "importlib.abc.FileLoader", "importlib.abc.SourceLoader", "importlib.abc.ResourceLoader", "importlib.abc.ExecutionLoader", "importlib.abc.InspectLoader", "_importlib_modulespec.Loader", "builtins.object"], "names": {".class": "SymbolTable"}, "tuple_type": null, "type_vars": [], "typeddict_type": null}}, "Tuple": {".class": "SymbolTableNode", "cross_ref": "typing.Tuple", "kind": "Gdef", "module_hidden": true, "module_public": false}, "Union": {".class": "SymbolTableNode", "cross_ref": "typing.Union", "kind": "Gdef", "module_hidden": true, "module_public": false}, "WindowsRegistryFinder": {".class": "SymbolTableNode", "kind": "Gdef", "node": {".class": "TypeInfo", "_promote": null, "abstract_attributes": [], "bases": ["importlib.abc.MetaPathFinder"], "declared_metaclass": null, "defn": {".class": "ClassDef", "fullname": "importlib.machinery.WindowsRegistryFinder", "name": "WindowsRegistryFinder", "type_vars": []}, "flags": [], "fullname": "importlib.machinery.WindowsRegistryFinder", "metaclass_type": "abc.ABCMeta", "metadata": {}, "module_name": "importlib.machinery", "mro": ["importlib.machinery.WindowsRegistryFinder", "importlib.abc.MetaPathFinder", "importlib.abc.Finder", "builtins.object"], "names": {".class": "SymbolTable", "find_module": {".class": "SymbolTableNode", "kind": "Mdef", "node": {".class": "Decorator", "func": {".class": "FuncDef", "arg_kinds": [0, 0, 0], "arg_names": ["cls", "fullname", "path"], "flags": ["is_class", "is_decorated"], "fullname": "importlib.machinery.WindowsRegistryFinder.find_module", "name": "find_module", "type": {".class": "CallableType", "arg_kinds": [0, 0, 0], "arg_names": ["cls", "fullname", "path"], "arg_types": [{".class": "TypeType", "item": "importlib.machinery.WindowsRegistryFinder"}, "builtins.str", {".class": "UnionType", "items": [{".class": "Instance", "args": [{".class": "UnionType", "items": ["builtins.bytes", "builtins.str"]}], "type_ref": "typing.Sequence"}, {".class": "NoneTyp"}]}], "bound_args": [], "def_extras": {"first_arg": "cls"}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "find_module of WindowsRegistryFinder", "ret_type": {".class": "UnionType", "items": ["_importlib_modulespec.Loader", {".class": "NoneTyp"}]}, "variables": []}}, "is_overload": false, "var": {".class": "Var", "flags": ["is_initialized_in_class", "is_classmethod"], "fullname": null, "name": "find_module", "type": {".class": "CallableType", "arg_kinds": [0, 0, 0], "arg_names": ["cls", "fullname", "path"], "arg_types": [{".class": "TypeType", "item": "importlib.machinery.WindowsRegistryFinder"}, "builtins.str", {".class": "UnionType", "items": [{".class": "Instance", "args": [{".class": "UnionType", "items": ["builtins.bytes", "builtins.str"]}], "type_ref": "typing.Sequence"}, {".class": "NoneTyp"}]}], "bound_args": [], "def_extras": {"first_arg": "cls"}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "find_module of WindowsRegistryFinder", "ret_type": {".class": "UnionType", "items": ["_importlib_modulespec.Loader", {".class": "NoneTyp"}]}, "variables": []}}}}, "find_spec": {".class": "SymbolTableNode", "kind": "Mdef", "node": {".class": "Decorator", "func": {".class": "FuncDef", "arg_kinds": [0, 0, 0, 1], "arg_names": ["cls", "fullname", "path", "target"], "flags": ["is_class", "is_decorated"], "fullname": "importlib.machinery.WindowsRegistryFinder.find_spec", "name": "find_spec", "type": {".class": "CallableType", "arg_kinds": [0, 0, 0, 1], "arg_names": ["cls", "fullname", "path", "target"], "arg_types": [{".class": "TypeType", "item": "importlib.machinery.WindowsRegistryFinder"}, "builtins.str", {".class": "UnionType", "items": [{".class": "Instance", "args": [{".class": "UnionType", "items": ["builtins.bytes", "builtins.str"]}], "type_ref": "typing.Sequence"}, {".class": "NoneTyp"}]}, {".class": "UnionType", "items": ["_importlib_modulespec.ModuleType", {".class": "NoneTyp"}]}], "bound_args": [], "def_extras": {"first_arg": "cls"}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "find_spec of WindowsRegistryFinder", "ret_type": {".class": "UnionType", "items": ["_importlib_modulespec.ModuleSpec", {".class": "NoneTyp"}]}, "variables": []}}, "is_overload": false, "var": {".class": "Var", "flags": ["is_initialized_in_class", "is_classmethod"], "fullname": null, "name": "find_spec", "type": {".class": "CallableType", "arg_kinds": [0, 0, 0, 1], "arg_names": ["cls", "fullname", "path", "target"], "arg_types": [{".class": "TypeType", "item": "importlib.machinery.WindowsRegistryFinder"}, "builtins.str", {".class": "UnionType", "items": [{".class": "Instance", "args": [{".class": "UnionType", "items": ["builtins.bytes", "builtins.str"]}], "type_ref": "typing.Sequence"}, {".class": "NoneTyp"}]}, {".class": "UnionType", "items": ["_importlib_modulespec.ModuleType", {".class": "NoneTyp"}]}], "bound_args": [], "def_extras": {"first_arg": "cls"}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "find_spec of WindowsRegistryFinder", "ret_type": {".class": "UnionType", "items": ["_importlib_modulespec.ModuleSpec", {".class": "NoneTyp"}]}, "variables": []}}}}}, "tuple_type": null, "type_vars": [], "typeddict_type": null}}, "__doc__": {".class": "SymbolTableNode", "kind": "Gdef", "node": {".class": "Var", "flags": [], "fullname": "importlib.machinery.__doc__", "name": "__doc__", "type": "builtins.str"}}, "__file__": {".class": "SymbolTableNode", "kind": "Gdef", "node": {".class": "Var", "flags": [], "fullname": "importlib.machinery.__file__", "name": "__file__", "type": "builtins.str"}}, "__name__": {".class": "SymbolTableNode", "kind": "Gdef", "node": {".class": "Var", "flags": [], "fullname": "importlib.machinery.__name__", "name": "__name__", "type": "builtins.str"}}, "__package__": {".class": "SymbolTableNode", "kind": "Gdef", "node": {".class": "Var", "flags": [], "fullname": "importlib.machinery.__package__", "name": "__package__", "type": "builtins.str"}}, "all_suffixes": {".class": "SymbolTableNode", "kind": "Gdef", "node": {".class": "FuncDef", "arg_kinds": [], "arg_names": [], "flags": [], "fullname": "importlib.machinery.all_suffixes", "name": "all_suffixes", "type": {".class": "CallableType", "arg_kinds": [], "arg_names": [], "arg_types": [], "bound_args": [], "def_extras": {"first_arg": null}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "all_suffixes", "ret_type": {".class": "Instance", "args": ["builtins.str"], "type_ref": "builtins.list"}, "variables": []}}}, "importlib": {".class": "SymbolTableNode", "cross_ref": "importlib", "kind": "Gdef", "module_hidden": true, "module_public": false}, "sys": {".class": "SymbolTableNode", "cross_ref": "sys", "kind": "Gdef", "module_hidden": true, "module_public": false}, "types": {".class": "SymbolTableNode", "cross_ref": "types", "kind": "Gdef", "module_hidden": true, "module_public": false}}, "path": "/usr/lib/python3/dist-packages/mypy/typeshed/stdlib/3/importlib/machinery.pyi"}
\ No newline at end of file
diff --git a/Postgres/StressTests/.mypy_cache/3.7/importlib/machinery.meta.json b/Postgres/StressTests/.mypy_cache/3.7/importlib/machinery.meta.json
deleted file mode 100644
index 853d26f..0000000
--- a/Postgres/StressTests/.mypy_cache/3.7/importlib/machinery.meta.json
+++ /dev/null
@@ -1 +0,0 @@
-{"child_modules": [], "data_mtime": 1553688972, "dep_lines": [1, 1, 2, 3, 4, 8, 1, 1], "dep_prios": [10, 20, 10, 10, 5, 5, 5, 30], "dependencies": ["importlib.abc", "importlib", "sys", "types", "typing", "_importlib_modulespec", "builtins", "abc"], "hash": "9bea5ebfb2c54fc55c8326d1f2ffbf4b", "id": "importlib.machinery", "ignore_all": true, "interface_hash": "4730c4ea59f442a95c6ab1b377c60d94", "mtime": 1549659920, "options": {"allow_redefinition": false, "allow_untyped_globals": false, "always_false": [], "always_true": [], "bazel": false, "check_untyped_defs": false, "disallow_any_decorated": false, "disallow_any_explicit": false, "disallow_any_expr": false, "disallow_any_generics": false, "disallow_any_unimported": false, "disallow_incomplete_defs": false, "disallow_subclassing_any": false, "disallow_untyped_calls": false, "disallow_untyped_decorators": false, "disallow_untyped_defs": false, "follow_imports": "normal", "follow_imports_for_stubs": false, "ignore_errors": false, "ignore_missing_imports": false, "local_partial_types": false, "mypyc": false, "new_semantic_analyzer": false, "no_implicit_optional": false, "platform": "linux", "plugins": [], "show_none_errors": true, "strict_optional": true, "strict_optional_whitelist": null, "warn_no_return": true, "warn_return_any": false, "warn_unused_ignores": false}, "path": "/usr/lib/python3/dist-packages/mypy/typeshed/stdlib/3/importlib/machinery.pyi", "size": 4042, "suppressed": [], "version_id": "0.670"}
\ No newline at end of file
diff --git a/Postgres/StressTests/.mypy_cache/3.7/importlib/util.data.json b/Postgres/StressTests/.mypy_cache/3.7/importlib/util.data.json
deleted file mode 100644
index 9cb2f1f..0000000
--- a/Postgres/StressTests/.mypy_cache/3.7/importlib/util.data.json
+++ /dev/null
@@ -1 +0,0 @@
-{".class": "MypyFile", "_fullname": "importlib.util", "is_partial_stub_package": false, "is_stub": true, "names": {".class": "SymbolTable", "Any": {".class": "SymbolTableNode", "cross_ref": "typing.Any", "kind": "Gdef", "module_hidden": true, "module_public": false}, "Callable": {".class": "SymbolTableNode", "cross_ref": "typing.Callable", "kind": "Gdef", "module_hidden": true, "module_public": false}, "LazyLoader": {".class": "SymbolTableNode", "kind": "Gdef", "node": {".class": "TypeInfo", "_promote": null, "abstract_attributes": [], "bases": ["_importlib_modulespec.Loader"], "declared_metaclass": null, "defn": {".class": "ClassDef", "fullname": "importlib.util.LazyLoader", "name": "LazyLoader", "type_vars": []}, "flags": [], "fullname": "importlib.util.LazyLoader", "metaclass_type": "abc.ABCMeta", "metadata": {}, "module_name": "importlib.util", "mro": ["importlib.util.LazyLoader", "_importlib_modulespec.Loader", "builtins.object"], "names": {".class": "SymbolTable", "__init__": {".class": "SymbolTableNode", "kind": "Mdef", "node": {".class": "FuncDef", "arg_kinds": [0, 0], "arg_names": ["self", "loader"], "flags": [], "fullname": "importlib.util.LazyLoader.__init__", "name": "__init__", "type": {".class": "CallableType", "arg_kinds": [0, 0], "arg_names": ["self", "loader"], "arg_types": ["importlib.util.LazyLoader", "_importlib_modulespec.Loader"], "bound_args": [], "def_extras": {"first_arg": "self"}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "__init__ of LazyLoader", "ret_type": {".class": "NoneTyp"}, "variables": []}}}, "create_module": {".class": "SymbolTableNode", "kind": "Mdef", "node": {".class": "FuncDef", "arg_kinds": [0, 0], "arg_names": ["self", "spec"], "flags": [], "fullname": "importlib.util.LazyLoader.create_module", "name": "create_module", "type": {".class": "CallableType", "arg_kinds": [0, 0], "arg_names": ["self", "spec"], "arg_types": ["importlib.util.LazyLoader", "_importlib_modulespec.ModuleSpec"], "bound_args": [], "def_extras": {"first_arg": "self"}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "create_module of LazyLoader", "ret_type": {".class": "UnionType", "items": ["_importlib_modulespec.ModuleType", {".class": "NoneTyp"}]}, "variables": []}}}, "exec_module": {".class": "SymbolTableNode", "kind": "Mdef", "node": {".class": "FuncDef", "arg_kinds": [0, 0], "arg_names": ["self", "module"], "flags": [], "fullname": "importlib.util.LazyLoader.exec_module", "name": "exec_module", "type": {".class": "CallableType", "arg_kinds": [0, 0], "arg_names": ["self", "module"], "arg_types": ["importlib.util.LazyLoader", "_importlib_modulespec.ModuleType"], "bound_args": [], "def_extras": {"first_arg": "self"}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "exec_module of LazyLoader", "ret_type": {".class": "NoneTyp"}, "variables": []}}}, "factory": {".class": "SymbolTableNode", "kind": "Mdef", "node": {".class": "Decorator", "func": {".class": "FuncDef", "arg_kinds": [0, 0], "arg_names": ["cls", "loader"], "flags": ["is_class", "is_decorated"], "fullname": "importlib.util.LazyLoader.factory", "name": "factory", "type": {".class": "CallableType", "arg_kinds": [0, 0], "arg_names": ["cls", "loader"], "arg_types": [{".class": "TypeType", "item": "importlib.util.LazyLoader"}, "_importlib_modulespec.Loader"], "bound_args": [], "def_extras": {"first_arg": "cls"}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "factory of LazyLoader", "ret_type": {".class": "CallableType", "arg_kinds": [2, 4], "arg_names": [null, null], "arg_types": [{".class": "AnyType", "missing_import_name": null, "source_any": null, "type_of_any": 2}, {".class": "AnyType", "missing_import_name": null, "source_any": null, "type_of_any": 2}], "bound_args": [], "def_extras": {}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": true, "name": null, "ret_type": "importlib.util.LazyLoader", "variables": []}, "variables": []}}, "is_overload": false, "var": {".class": "Var", "flags": ["is_initialized_in_class", "is_classmethod"], "fullname": null, "name": "factory", "type": {".class": "CallableType", "arg_kinds": [0, 0], "arg_names": ["cls", "loader"], "arg_types": [{".class": "TypeType", "item": "importlib.util.LazyLoader"}, "_importlib_modulespec.Loader"], "bound_args": [], "def_extras": {"first_arg": "cls"}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "factory of LazyLoader", "ret_type": {".class": "CallableType", "arg_kinds": [2, 4], "arg_names": [null, null], "arg_types": [{".class": "AnyType", "missing_import_name": null, "source_any": null, "type_of_any": 2}, {".class": "AnyType", "missing_import_name": null, "source_any": null, "type_of_any": 2}], "bound_args": [], "def_extras": {}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": true, "name": null, "ret_type": "importlib.util.LazyLoader", "variables": []}, "variables": []}}}}}, "tuple_type": null, "type_vars": [], "typeddict_type": null}}, "List": {".class": "SymbolTableNode", "cross_ref": "typing.List", "kind": "Gdef", "module_hidden": true, "module_public": false}, "MAGIC_NUMBER": {".class": "SymbolTableNode", "kind": "Gdef", "node": {".class": "Var", "flags": [], "fullname": "importlib.util.MAGIC_NUMBER", "name": "MAGIC_NUMBER", "type": "builtins.bytes"}}, "Optional": {".class": "SymbolTableNode", "cross_ref": "typing.Optional", "kind": "Gdef", "module_hidden": true, "module_public": false}, "__doc__": {".class": "SymbolTableNode", "kind": "Gdef", "node": {".class": "Var", "flags": [], "fullname": "importlib.util.__doc__", "name": "__doc__", "type": "builtins.str"}}, "__file__": {".class": "SymbolTableNode", "kind": "Gdef", "node": {".class": "Var", "flags": [], "fullname": "importlib.util.__file__", "name": "__file__", "type": "builtins.str"}}, "__name__": {".class": "SymbolTableNode", "kind": "Gdef", "node": {".class": "Var", "flags": [], "fullname": "importlib.util.__name__", "name": "__name__", "type": "builtins.str"}}, "__package__": {".class": "SymbolTableNode", "kind": "Gdef", "node": {".class": "Var", "flags": [], "fullname": "importlib.util.__package__", "name": "__package__", "type": "builtins.str"}}, "cache_from_source": {".class": "SymbolTableNode", "kind": "Gdef", "node": {".class": "FuncDef", "arg_kinds": [0, 1, 5], "arg_names": ["path", "debug_override", "optimization"], "flags": [], "fullname": "importlib.util.cache_from_source", "name": "cache_from_source", "type": {".class": "CallableType", "arg_kinds": [0, 1, 5], "arg_names": ["path", "debug_override", "optimization"], "arg_types": ["builtins.str", {".class": "UnionType", "items": ["builtins.bool", {".class": "NoneTyp"}]}, {".class": "UnionType", "items": [{".class": "AnyType", "missing_import_name": null, "source_any": null, "type_of_any": 2}, {".class": "NoneTyp"}]}], "bound_args": [], "def_extras": {"first_arg": null}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "cache_from_source", "ret_type": "builtins.str", "variables": []}}}, "decode_source": {".class": "SymbolTableNode", "kind": "Gdef", "node": {".class": "FuncDef", "arg_kinds": [0], "arg_names": ["source_bytes"], "flags": [], "fullname": "importlib.util.decode_source", "name": "decode_source", "type": {".class": "CallableType", "arg_kinds": [0], "arg_names": ["source_bytes"], "arg_types": ["builtins.bytes"], "bound_args": [], "def_extras": {"first_arg": null}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "decode_source", "ret_type": "builtins.str", "variables": []}}}, "find_spec": {".class": "SymbolTableNode", "kind": "Gdef", "node": {".class": "FuncDef", "arg_kinds": [0, 1], "arg_names": ["name", "package"], "flags": [], "fullname": "importlib.util.find_spec", "name": "find_spec", "type": {".class": "CallableType", "arg_kinds": [0, 1], "arg_names": ["name", "package"], "arg_types": ["builtins.str", {".class": "UnionType", "items": ["builtins.str", {".class": "NoneTyp"}]}], "bound_args": [], "def_extras": {"first_arg": null}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "find_spec", "ret_type": {".class": "UnionType", "items": ["_importlib_modulespec.ModuleSpec", {".class": "NoneTyp"}]}, "variables": []}}}, "importlib": {".class": "SymbolTableNode", "cross_ref": "importlib", "kind": "Gdef", "module_hidden": true, "module_public": false}, "module_for_loader": {".class": "SymbolTableNode", "kind": "Gdef", "node": {".class": "FuncDef", "arg_kinds": [0], "arg_names": ["fxn"], "flags": [], "fullname": "importlib.util.module_for_loader", "name": "module_for_loader", "type": {".class": "CallableType", "arg_kinds": [0], "arg_names": ["fxn"], "arg_types": [{".class": "CallableType", "arg_kinds": [2, 4], "arg_names": [null, null], "arg_types": [{".class": "AnyType", "missing_import_name": null, "source_any": null, "type_of_any": 2}, {".class": "AnyType", "missing_import_name": null, "source_any": null, "type_of_any": 2}], "bound_args": [], "def_extras": {}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": true, "name": null, "ret_type": "_importlib_modulespec.ModuleType", "variables": []}], "bound_args": [], "def_extras": {"first_arg": null}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "module_for_loader", "ret_type": {".class": "CallableType", "arg_kinds": [2, 4], "arg_names": [null, null], "arg_types": [{".class": "AnyType", "missing_import_name": null, "source_any": null, "type_of_any": 2}, {".class": "AnyType", "missing_import_name": null, "source_any": null, "type_of_any": 2}], "bound_args": [], "def_extras": {}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": true, "name": null, "ret_type": "_importlib_modulespec.ModuleType", "variables": []}, "variables": []}}}, "module_from_spec": {".class": "SymbolTableNode", "kind": "Gdef", "node": {".class": "FuncDef", "arg_kinds": [0], "arg_names": ["spec"], "flags": ["is_conditional"], "fullname": "importlib.util.module_from_spec", "name": "module_from_spec", "type": {".class": "CallableType", "arg_kinds": [0], "arg_names": ["spec"], "arg_types": ["_importlib_modulespec.ModuleSpec"], "bound_args": [], "def_extras": {"first_arg": null}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "module_from_spec", "ret_type": "_importlib_modulespec.ModuleType", "variables": []}}}, "resolve_name": {".class": "SymbolTableNode", "kind": "Gdef", "node": {".class": "FuncDef", "arg_kinds": [0, 0], "arg_names": ["name", "package"], "flags": [], "fullname": "importlib.util.resolve_name", "name": "resolve_name", "type": {".class": "CallableType", "arg_kinds": [0, 0], "arg_names": ["name", "package"], "arg_types": ["builtins.str", "builtins.str"], "bound_args": [], "def_extras": {"first_arg": null}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "resolve_name", "ret_type": "builtins.str", "variables": []}}}, "set_loader": {".class": "SymbolTableNode", "kind": "Gdef", "node": {".class": "FuncDef", "arg_kinds": [0], "arg_names": ["fxn"], "flags": [], "fullname": "importlib.util.set_loader", "name": "set_loader", "type": {".class": "CallableType", "arg_kinds": [0], "arg_names": ["fxn"], "arg_types": [{".class": "CallableType", "arg_kinds": [2, 4], "arg_names": [null, null], "arg_types": [{".class": "AnyType", "missing_import_name": null, "source_any": null, "type_of_any": 2}, {".class": "AnyType", "missing_import_name": null, "source_any": null, "type_of_any": 2}], "bound_args": [], "def_extras": {}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": true, "name": null, "ret_type": "_importlib_modulespec.ModuleType", "variables": []}], "bound_args": [], "def_extras": {"first_arg": null}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "set_loader", "ret_type": {".class": "CallableType", "arg_kinds": [2, 4], "arg_names": [null, null], "arg_types": [{".class": "AnyType", "missing_import_name": null, "source_any": null, "type_of_any": 2}, {".class": "AnyType", "missing_import_name": null, "source_any": null, "type_of_any": 2}], "bound_args": [], "def_extras": {}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": true, "name": null, "ret_type": "_importlib_modulespec.ModuleType", "variables": []}, "variables": []}}}, "set_package": {".class": "SymbolTableNode", "kind": "Gdef", "node": {".class": "FuncDef", "arg_kinds": [0], "arg_names": ["fxn"], "flags": [], "fullname": "importlib.util.set_package", "name": "set_package", "type": {".class": "CallableType", "arg_kinds": [0], "arg_names": ["fxn"], "arg_types": [{".class": "CallableType", "arg_kinds": [2, 4], "arg_names": [null, null], "arg_types": [{".class": "AnyType", "missing_import_name": null, "source_any": null, "type_of_any": 2}, {".class": "AnyType", "missing_import_name": null, "source_any": null, "type_of_any": 2}], "bound_args": [], "def_extras": {}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": true, "name": null, "ret_type": "_importlib_modulespec.ModuleType", "variables": []}], "bound_args": [], "def_extras": {"first_arg": null}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "set_package", "ret_type": {".class": "CallableType", "arg_kinds": [2, 4], "arg_names": [null, null], "arg_types": [{".class": "AnyType", "missing_import_name": null, "source_any": null, "type_of_any": 2}, {".class": "AnyType", "missing_import_name": null, "source_any": null, "type_of_any": 2}], "bound_args": [], "def_extras": {}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": true, "name": null, "ret_type": "_importlib_modulespec.ModuleType", "variables": []}, "variables": []}}}, "source_from_cache": {".class": "SymbolTableNode", "kind": "Gdef", "node": {".class": "FuncDef", "arg_kinds": [0], "arg_names": ["path"], "flags": [], "fullname": "importlib.util.source_from_cache", "name": "source_from_cache", "type": {".class": "CallableType", "arg_kinds": [0], "arg_names": ["path"], "arg_types": ["builtins.str"], "bound_args": [], "def_extras": {"first_arg": null}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "source_from_cache", "ret_type": "builtins.str", "variables": []}}}, "spec_from_file_location": {".class": "SymbolTableNode", "kind": "Gdef", "node": {".class": "FuncDef", "arg_kinds": [0, 0, 5, 5], "arg_names": ["name", "location", "loader", "submodule_search_locations"], "flags": [], "fullname": "importlib.util.spec_from_file_location", "name": "spec_from_file_location", "type": {".class": "CallableType", "arg_kinds": [0, 0, 5, 5], "arg_names": ["name", "location", "loader", "submodule_search_locations"], "arg_types": ["builtins.str", "builtins.str", {".class": "UnionType", "items": ["_importlib_modulespec.Loader", {".class": "NoneTyp"}]}, {".class": "UnionType", "items": [{".class": "Instance", "args": ["builtins.str"], "type_ref": "builtins.list"}, {".class": "NoneTyp"}]}], "bound_args": [], "def_extras": {"first_arg": null}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "spec_from_file_location", "ret_type": "_importlib_modulespec.ModuleSpec", "variables": []}}}, "spec_from_loader": {".class": "SymbolTableNode", "kind": "Gdef", "node": {".class": "FuncDef", "arg_kinds": [0, 0, 5, 5, 5], "arg_names": ["name", "loader", "origin", "loader_state", "is_package"], "flags": [], "fullname": "importlib.util.spec_from_loader", "name": "spec_from_loader", "type": {".class": "CallableType", "arg_kinds": [0, 0, 5, 5, 5], "arg_names": ["name", "loader", "origin", "loader_state", "is_package"], "arg_types": ["builtins.str", {".class": "UnionType", "items": ["_importlib_modulespec.Loader", {".class": "NoneTyp"}]}, {".class": "UnionType", "items": ["builtins.str", {".class": "NoneTyp"}]}, {".class": "UnionType", "items": [{".class": "AnyType", "missing_import_name": null, "source_any": null, "type_of_any": 2}, {".class": "NoneTyp"}]}, {".class": "UnionType", "items": ["builtins.bool", {".class": "NoneTyp"}]}], "bound_args": [], "def_extras": {"first_arg": null}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "spec_from_loader", "ret_type": "_importlib_modulespec.ModuleSpec", "variables": []}}}, "sys": {".class": "SymbolTableNode", "cross_ref": "sys", "kind": "Gdef", "module_hidden": true, "module_public": false}, "types": {".class": "SymbolTableNode", "cross_ref": "types", "kind": "Gdef", "module_hidden": true, "module_public": false}}, "path": "/usr/lib/python3/dist-packages/mypy/typeshed/stdlib/3/importlib/util.pyi"}
\ No newline at end of file
diff --git a/Postgres/StressTests/.mypy_cache/3.7/importlib/util.meta.json b/Postgres/StressTests/.mypy_cache/3.7/importlib/util.meta.json
deleted file mode 100644
index f88cf09..0000000
--- a/Postgres/StressTests/.mypy_cache/3.7/importlib/util.meta.json
+++ /dev/null
@@ -1 +0,0 @@
-{"child_modules": [], "data_mtime": 1553688972, "dep_lines": [1, 1, 2, 3, 4, 5, 1, 1], "dep_prios": [10, 20, 10, 10, 10, 5, 5, 30], "dependencies": ["importlib.abc", "importlib", "importlib.machinery", "sys", "types", "typing", "builtins", "abc"], "hash": "55cfa44b22eaf5725a6b468278fe1a25", "id": "importlib.util", "ignore_all": true, "interface_hash": "2df6020715c50b3ed69d3b9dfdae3310", "mtime": 1549659920, "options": {"allow_redefinition": false, "allow_untyped_globals": false, "always_false": [], "always_true": [], "bazel": false, "check_untyped_defs": false, "disallow_any_decorated": false, "disallow_any_explicit": false, "disallow_any_expr": false, "disallow_any_generics": false, "disallow_any_unimported": false, "disallow_incomplete_defs": false, "disallow_subclassing_any": false, "disallow_untyped_calls": false, "disallow_untyped_decorators": false, "disallow_untyped_defs": false, "follow_imports": "normal", "follow_imports_for_stubs": false, "ignore_errors": false, "ignore_missing_imports": false, "local_partial_types": false, "mypyc": false, "new_semantic_analyzer": false, "no_implicit_optional": false, "platform": "linux", "plugins": [], "show_none_errors": true, "strict_optional": true, "strict_optional_whitelist": null, "warn_no_return": true, "warn_return_any": false, "warn_unused_ignores": false}, "path": "/usr/lib/python3/dist-packages/mypy/typeshed/stdlib/3/importlib/util.pyi", "size": 1881, "suppressed": [], "version_id": "0.670"}
\ No newline at end of file
diff --git a/Postgres/StressTests/.mypy_cache/3.7/io.data.json b/Postgres/StressTests/.mypy_cache/3.7/io.data.json
deleted file mode 100644
index f319a74..0000000
--- a/Postgres/StressTests/.mypy_cache/3.7/io.data.json
+++ /dev/null
@@ -1 +0,0 @@
-{".class": "MypyFile", "_fullname": "io", "is_partial_stub_package": false, "is_stub": true, "names": {".class": "SymbolTable", "Any": {".class": "SymbolTableNode", "cross_ref": "typing.Any", "kind": "Gdef", "module_hidden": true, "module_public": false}, "BinaryIO": {".class": "SymbolTableNode", "cross_ref": "typing.BinaryIO", "kind": "Gdef", "module_hidden": true, "module_public": false}, "BlockingIOError": {".class": "SymbolTableNode", "kind": "Gdef", "node": {".class": "TypeAlias", "alias_tvars": [], "column": 0, "fullname": "io.BlockingIOError", "line": 23, "no_args": true, "normalized": false, "target": "builtins.BlockingIOError"}}, "BufferedIOBase": {".class": "SymbolTableNode", "kind": "Gdef", "node": {".class": "TypeInfo", "_promote": null, "abstract_attributes": [], "bases": ["io.IOBase"], "declared_metaclass": null, "defn": {".class": "ClassDef", "fullname": "io.BufferedIOBase", "name": "BufferedIOBase", "type_vars": []}, "flags": [], "fullname": "io.BufferedIOBase", "metaclass_type": null, "metadata": {}, "module_name": "io", "mro": ["io.BufferedIOBase", "io.IOBase", "builtins.object"], "names": {".class": "SymbolTable", "detach": {".class": "SymbolTableNode", "kind": "Mdef", "node": {".class": "FuncDef", "arg_kinds": [0], "arg_names": ["self"], "flags": [], "fullname": "io.BufferedIOBase.detach", "name": "detach", "type": {".class": "CallableType", "arg_kinds": [0], "arg_names": ["self"], "arg_types": ["io.BufferedIOBase"], "bound_args": [], "def_extras": {"first_arg": "self"}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "detach of BufferedIOBase", "ret_type": "io.RawIOBase", "variables": []}}}, "read": {".class": "SymbolTableNode", "kind": "Mdef", "node": {".class": "FuncDef", "arg_kinds": [0, 1], "arg_names": ["self", "size"], "flags": [], "fullname": "io.BufferedIOBase.read", "name": "read", "type": {".class": "CallableType", "arg_kinds": [0, 1], "arg_names": ["self", "size"], "arg_types": ["io.BufferedIOBase", {".class": "UnionType", "items": ["builtins.int", {".class": "NoneTyp"}]}], "bound_args": [], "def_extras": {"first_arg": "self"}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "read of BufferedIOBase", "ret_type": "builtins.bytes", "variables": []}}}, "read1": {".class": "SymbolTableNode", "kind": "Mdef", "node": {".class": "FuncDef", "arg_kinds": [0, 1], "arg_names": ["self", "size"], "flags": [], "fullname": "io.BufferedIOBase.read1", "name": "read1", "type": {".class": "CallableType", "arg_kinds": [0, 1], "arg_names": ["self", "size"], "arg_types": ["io.BufferedIOBase", "builtins.int"], "bound_args": [], "def_extras": {"first_arg": "self"}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "read1 of BufferedIOBase", "ret_type": "builtins.bytes", "variables": []}}}, "readinto": {".class": "SymbolTableNode", "kind": "Mdef", "node": {".class": "FuncDef", "arg_kinds": [0, 0], "arg_names": ["self", "b"], "flags": [], "fullname": "io.BufferedIOBase.readinto", "name": "readinto", "type": {".class": "CallableType", "arg_kinds": [0, 0], "arg_names": ["self", "b"], "arg_types": ["io.BufferedIOBase", {".class": "UnionType", "items": ["builtins.bytearray", "mmap.mmap"]}], "bound_args": [], "def_extras": {"first_arg": "self"}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "readinto of BufferedIOBase", "ret_type": "builtins.int", "variables": []}}}, "readinto1": {".class": "SymbolTableNode", "kind": "Mdef", "node": {".class": "FuncDef", "arg_kinds": [0, 0], "arg_names": ["self", "b"], "flags": ["is_conditional"], "fullname": "io.BufferedIOBase.readinto1", "name": "readinto1", "type": {".class": "CallableType", "arg_kinds": [0, 0], "arg_names": ["self", "b"], "arg_types": ["io.BufferedIOBase", {".class": "UnionType", "items": ["builtins.bytearray", "mmap.mmap"]}], "bound_args": [], "def_extras": {"first_arg": "self"}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "readinto1 of BufferedIOBase", "ret_type": "builtins.int", "variables": []}}}, "write": {".class": "SymbolTableNode", "kind": "Mdef", "node": {".class": "FuncDef", "arg_kinds": [0, 0], "arg_names": ["self", "b"], "flags": [], "fullname": "io.BufferedIOBase.write", "name": "write", "type": {".class": "CallableType", "arg_kinds": [0, 0], "arg_names": ["self", "b"], "arg_types": ["io.BufferedIOBase", {".class": "UnionType", "items": ["builtins.bytes", "builtins.bytearray"]}], "bound_args": [], "def_extras": {"first_arg": "self"}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "write of BufferedIOBase", "ret_type": "builtins.int", "variables": []}}}}, "tuple_type": null, "type_vars": [], "typeddict_type": null}}, "BufferedRWPair": {".class": "SymbolTableNode", "kind": "Gdef", "node": {".class": "TypeInfo", "_promote": null, "abstract_attributes": [], "bases": ["io.BufferedIOBase"], "declared_metaclass": null, "defn": {".class": "ClassDef", "fullname": "io.BufferedRWPair", "name": "BufferedRWPair", "type_vars": []}, "flags": [], "fullname": "io.BufferedRWPair", "metaclass_type": null, "metadata": {}, "module_name": "io", "mro": ["io.BufferedRWPair", "io.BufferedIOBase", "io.IOBase", "builtins.object"], "names": {".class": "SymbolTable", "__init__": {".class": "SymbolTableNode", "kind": "Mdef", "node": {".class": "FuncDef", "arg_kinds": [0, 0, 0, 1], "arg_names": ["self", "reader", "writer", "buffer_size"], "flags": [], "fullname": "io.BufferedRWPair.__init__", "name": "__init__", "type": {".class": "CallableType", "arg_kinds": [0, 0, 0, 1], "arg_names": ["self", "reader", "writer", "buffer_size"], "arg_types": ["io.BufferedRWPair", "io.RawIOBase", "io.RawIOBase", "builtins.int"], "bound_args": [], "def_extras": {"first_arg": "self"}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "__init__ of BufferedRWPair", "ret_type": {".class": "NoneTyp"}, "variables": []}}}}, "tuple_type": null, "type_vars": [], "typeddict_type": null}}, "BufferedRandom": {".class": "SymbolTableNode", "kind": "Gdef", "node": {".class": "TypeInfo", "_promote": null, "abstract_attributes": [], "bases": ["io.BufferedReader", "io.BufferedWriter"], "declared_metaclass": null, "defn": {".class": "ClassDef", "fullname": "io.BufferedRandom", "name": "BufferedRandom", "type_vars": []}, "flags": [], "fullname": "io.BufferedRandom", "metaclass_type": null, "metadata": {}, "module_name": "io", "mro": ["io.BufferedRandom", "io.BufferedReader", "io.BufferedWriter", "io.BufferedIOBase", "io.IOBase", "builtins.object"], "names": {".class": "SymbolTable", "__init__": {".class": "SymbolTableNode", "kind": "Mdef", "node": {".class": "FuncDef", "arg_kinds": [0, 0, 1], "arg_names": ["self", "raw", "buffer_size"], "flags": [], "fullname": "io.BufferedRandom.__init__", "name": "__init__", "type": {".class": "CallableType", "arg_kinds": [0, 0, 1], "arg_names": ["self", "raw", "buffer_size"], "arg_types": ["io.BufferedRandom", "io.RawIOBase", "builtins.int"], "bound_args": [], "def_extras": {"first_arg": "self"}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "__init__ of BufferedRandom", "ret_type": {".class": "NoneTyp"}, "variables": []}}}, "seek": {".class": "SymbolTableNode", "kind": "Mdef", "node": {".class": "FuncDef", "arg_kinds": [0, 0, 1], "arg_names": ["self", "offset", "whence"], "flags": [], "fullname": "io.BufferedRandom.seek", "name": "seek", "type": {".class": "CallableType", "arg_kinds": [0, 0, 1], "arg_names": ["self", "offset", "whence"], "arg_types": ["io.BufferedRandom", "builtins.int", "builtins.int"], "bound_args": [], "def_extras": {"first_arg": "self"}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "seek of BufferedRandom", "ret_type": "builtins.int", "variables": []}}}, "tell": {".class": "SymbolTableNode", "kind": "Mdef", "node": {".class": "FuncDef", "arg_kinds": [0], "arg_names": ["self"], "flags": [], "fullname": "io.BufferedRandom.tell", "name": "tell", "type": {".class": "CallableType", "arg_kinds": [0], "arg_names": ["self"], "arg_types": ["io.BufferedRandom"], "bound_args": [], "def_extras": {"first_arg": "self"}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "tell of BufferedRandom", "ret_type": "builtins.int", "variables": []}}}}, "tuple_type": null, "type_vars": [], "typeddict_type": null}}, "BufferedReader": {".class": "SymbolTableNode", "kind": "Gdef", "node": {".class": "TypeInfo", "_promote": null, "abstract_attributes": [], "bases": ["io.BufferedIOBase"], "declared_metaclass": null, "defn": {".class": "ClassDef", "fullname": "io.BufferedReader", "name": "BufferedReader", "type_vars": []}, "flags": [], "fullname": "io.BufferedReader", "metaclass_type": null, "metadata": {}, "module_name": "io", "mro": ["io.BufferedReader", "io.BufferedIOBase", "io.IOBase", "builtins.object"], "names": {".class": "SymbolTable", "__init__": {".class": "SymbolTableNode", "kind": "Mdef", "node": {".class": "FuncDef", "arg_kinds": [0, 0, 1], "arg_names": ["self", "raw", "buffer_size"], "flags": [], "fullname": "io.BufferedReader.__init__", "name": "__init__", "type": {".class": "CallableType", "arg_kinds": [0, 0, 1], "arg_names": ["self", "raw", "buffer_size"], "arg_types": ["io.BufferedReader", "io.RawIOBase", "builtins.int"], "bound_args": [], "def_extras": {"first_arg": "self"}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "__init__ of BufferedReader", "ret_type": {".class": "NoneTyp"}, "variables": []}}}, "peek": {".class": "SymbolTableNode", "kind": "Mdef", "node": {".class": "FuncDef", "arg_kinds": [0, 1], "arg_names": ["self", "size"], "flags": [], "fullname": "io.BufferedReader.peek", "name": "peek", "type": {".class": "CallableType", "arg_kinds": [0, 1], "arg_names": ["self", "size"], "arg_types": ["io.BufferedReader", "builtins.int"], "bound_args": [], "def_extras": {"first_arg": "self"}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "peek of BufferedReader", "ret_type": "builtins.bytes", "variables": []}}}}, "tuple_type": null, "type_vars": [], "typeddict_type": null}}, "BufferedWriter": {".class": "SymbolTableNode", "kind": "Gdef", "node": {".class": "TypeInfo", "_promote": null, "abstract_attributes": [], "bases": ["io.BufferedIOBase"], "declared_metaclass": null, "defn": {".class": "ClassDef", "fullname": "io.BufferedWriter", "name": "BufferedWriter", "type_vars": []}, "flags": [], "fullname": "io.BufferedWriter", "metaclass_type": null, "metadata": {}, "module_name": "io", "mro": ["io.BufferedWriter", "io.BufferedIOBase", "io.IOBase", "builtins.object"], "names": {".class": "SymbolTable", "__init__": {".class": "SymbolTableNode", "kind": "Mdef", "node": {".class": "FuncDef", "arg_kinds": [0, 0, 1], "arg_names": ["self", "raw", "buffer_size"], "flags": [], "fullname": "io.BufferedWriter.__init__", "name": "__init__", "type": {".class": "CallableType", "arg_kinds": [0, 0, 1], "arg_names": ["self", "raw", "buffer_size"], "arg_types": ["io.BufferedWriter", "io.RawIOBase", "builtins.int"], "bound_args": [], "def_extras": {"first_arg": "self"}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "__init__ of BufferedWriter", "ret_type": {".class": "NoneTyp"}, "variables": []}}}, "flush": {".class": "SymbolTableNode", "kind": "Mdef", "node": {".class": "FuncDef", "arg_kinds": [0], "arg_names": ["self"], "flags": [], "fullname": "io.BufferedWriter.flush", "name": "flush", "type": {".class": "CallableType", "arg_kinds": [0], "arg_names": ["self"], "arg_types": ["io.BufferedWriter"], "bound_args": [], "def_extras": {"first_arg": "self"}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "flush of BufferedWriter", "ret_type": {".class": "NoneTyp"}, "variables": []}}}, "write": {".class": "SymbolTableNode", "kind": "Mdef", "node": {".class": "FuncDef", "arg_kinds": [0, 0], "arg_names": ["self", "b"], "flags": [], "fullname": "io.BufferedWriter.write", "name": "write", "type": {".class": "CallableType", "arg_kinds": [0, 0], "arg_names": ["self", "b"], "arg_types": ["io.BufferedWriter", {".class": "UnionType", "items": ["builtins.bytes", "builtins.bytearray"]}], "bound_args": [], "def_extras": {"first_arg": "self"}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "write of BufferedWriter", "ret_type": "builtins.int", "variables": []}}}}, "tuple_type": null, "type_vars": [], "typeddict_type": null}}, "BytesIO": {".class": "SymbolTableNode", "kind": "Gdef", "node": {".class": "TypeInfo", "_promote": null, "abstract_attributes": [], "bases": ["typing.BinaryIO"], "declared_metaclass": null, "defn": {".class": "ClassDef", "fullname": "io.BytesIO", "name": "BytesIO", "type_vars": []}, "flags": [], "fullname": "io.BytesIO", "metaclass_type": "abc.ABCMeta", "metadata": {}, "module_name": "io", "mro": ["io.BytesIO", "typing.BinaryIO", "typing.IO", "typing.Iterator", "typing.Iterable", "builtins.object"], "names": {".class": "SymbolTable", "__del__": {".class": "SymbolTableNode", "kind": "Mdef", "node": {".class": "FuncDef", "arg_kinds": [0], "arg_names": ["self"], "flags": [], "fullname": "io.BytesIO.__del__", "name": "__del__", "type": {".class": "CallableType", "arg_kinds": [0], "arg_names": [null], "arg_types": ["io.BytesIO"], "bound_args": [], "def_extras": {"first_arg": "self"}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "__del__ of BytesIO", "ret_type": {".class": "NoneTyp"}, "variables": []}}}, "__enter__": {".class": "SymbolTableNode", "kind": "Mdef", "node": {".class": "FuncDef", "arg_kinds": [0], "arg_names": ["self"], "flags": [], "fullname": "io.BytesIO.__enter__", "name": "__enter__", "type": {".class": "CallableType", "arg_kinds": [0], "arg_names": [null], "arg_types": ["io.BytesIO"], "bound_args": [], "def_extras": {"first_arg": "self"}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "__enter__ of BytesIO", "ret_type": "io.BytesIO", "variables": []}}}, "__exit__": {".class": "SymbolTableNode", "kind": "Mdef", "node": {".class": "FuncDef", "arg_kinds": [0, 1, 1, 1], "arg_names": ["self", "t", "value", "traceback"], "flags": [], "fullname": "io.BytesIO.__exit__", "name": "__exit__", "type": {".class": "CallableType", "arg_kinds": [0, 1, 1, 1], "arg_names": [null, null, null, null], "arg_types": ["io.BytesIO", {".class": "UnionType", "items": [{".class": "TypeType", "item": "builtins.BaseException"}, {".class": "NoneTyp"}]}, {".class": "UnionType", "items": ["builtins.BaseException", {".class": "NoneTyp"}]}, {".class": "UnionType", "items": ["types.TracebackType", {".class": "NoneTyp"}]}], "bound_args": [], "def_extras": {"first_arg": "self"}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "__exit__ of BytesIO", "ret_type": "builtins.bool", "variables": []}}}, "__init__": {".class": "SymbolTableNode", "kind": "Mdef", "node": {".class": "FuncDef", "arg_kinds": [0, 1], "arg_names": ["self", "initial_bytes"], "flags": [], "fullname": "io.BytesIO.__init__", "name": "__init__", "type": {".class": "CallableType", "arg_kinds": [0, 1], "arg_names": ["self", "initial_bytes"], "arg_types": ["io.BytesIO", "builtins.bytes"], "bound_args": [], "def_extras": {"first_arg": "self"}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "__init__ of BytesIO", "ret_type": {".class": "NoneTyp"}, "variables": []}}}, "__iter__": {".class": "SymbolTableNode", "kind": "Mdef", "node": {".class": "FuncDef", "arg_kinds": [0], "arg_names": ["self"], "flags": [], "fullname": "io.BytesIO.__iter__", "name": "__iter__", "type": {".class": "CallableType", "arg_kinds": [0], "arg_names": [null], "arg_types": ["io.BytesIO"], "bound_args": [], "def_extras": {"first_arg": "self"}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "__iter__ of BytesIO", "ret_type": {".class": "Instance", "args": ["builtins.bytes"], "type_ref": "typing.Iterator"}, "variables": []}}}, "__next__": {".class": "SymbolTableNode", "kind": "Mdef", "node": {".class": "FuncDef", "arg_kinds": [0], "arg_names": ["self"], "flags": [], "fullname": "io.BytesIO.__next__", "name": "__next__", "type": {".class": "CallableType", "arg_kinds": [0], "arg_names": ["self"], "arg_types": ["io.BytesIO"], "bound_args": [], "def_extras": {"first_arg": "self"}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "__next__ of BytesIO", "ret_type": "builtins.bytes", "variables": []}}}, "close": {".class": "SymbolTableNode", "kind": "Mdef", "node": {".class": "FuncDef", "arg_kinds": [0], "arg_names": ["self"], "flags": [], "fullname": "io.BytesIO.close", "name": "close", "type": {".class": "CallableType", "arg_kinds": [0], "arg_names": ["self"], "arg_types": ["io.BytesIO"], "bound_args": [], "def_extras": {"first_arg": "self"}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "close of BytesIO", "ret_type": {".class": "NoneTyp"}, "variables": []}}}, "closed": {".class": "SymbolTableNode", "kind": "Mdef", "node": {".class": "Var", "flags": ["is_initialized_in_class"], "fullname": "io.BytesIO.closed", "name": "closed", "type": "builtins.bool"}}, "detach": {".class": "SymbolTableNode", "kind": "Mdef", "node": {".class": "FuncDef", "arg_kinds": [0], "arg_names": ["self"], "flags": [], "fullname": "io.BytesIO.detach", "name": "detach", "type": {".class": "CallableType", "arg_kinds": [0], "arg_names": ["self"], "arg_types": ["io.BytesIO"], "bound_args": [], "def_extras": {"first_arg": "self"}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "detach of BytesIO", "ret_type": "io.RawIOBase", "variables": []}}}, "fileno": {".class": "SymbolTableNode", "kind": "Mdef", "node": {".class": "FuncDef", "arg_kinds": [0], "arg_names": ["self"], "flags": [], "fullname": "io.BytesIO.fileno", "name": "fileno", "type": {".class": "CallableType", "arg_kinds": [0], "arg_names": ["self"], "arg_types": ["io.BytesIO"], "bound_args": [], "def_extras": {"first_arg": "self"}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "fileno of BytesIO", "ret_type": "builtins.int", "variables": []}}}, "flush": {".class": "SymbolTableNode", "kind": "Mdef", "node": {".class": "FuncDef", "arg_kinds": [0], "arg_names": ["self"], "flags": [], "fullname": "io.BytesIO.flush", "name": "flush", "type": {".class": "CallableType", "arg_kinds": [0], "arg_names": ["self"], "arg_types": ["io.BytesIO"], "bound_args": [], "def_extras": {"first_arg": "self"}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "flush of BytesIO", "ret_type": {".class": "NoneTyp"}, "variables": []}}}, "getbuffer": {".class": "SymbolTableNode", "kind": "Mdef", "node": {".class": "FuncDef", "arg_kinds": [0], "arg_names": ["self"], "flags": [], "fullname": "io.BytesIO.getbuffer", "name": "getbuffer", "type": {".class": "CallableType", "arg_kinds": [0], "arg_names": ["self"], "arg_types": ["io.BytesIO"], "bound_args": [], "def_extras": {"first_arg": "self"}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "getbuffer of BytesIO", "ret_type": "builtins.memoryview", "variables": []}}}, "getvalue": {".class": "SymbolTableNode", "kind": "Mdef", "node": {".class": "FuncDef", "arg_kinds": [0], "arg_names": ["self"], "flags": [], "fullname": "io.BytesIO.getvalue", "name": "getvalue", "type": {".class": "CallableType", "arg_kinds": [0], "arg_names": ["self"], "arg_types": ["io.BytesIO"], "bound_args": [], "def_extras": {"first_arg": "self"}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "getvalue of BytesIO", "ret_type": "builtins.bytes", "variables": []}}}, "isatty": {".class": "SymbolTableNode", "kind": "Mdef", "node": {".class": "FuncDef", "arg_kinds": [0], "arg_names": ["self"], "flags": [], "fullname": "io.BytesIO.isatty", "name": "isatty", "type": {".class": "CallableType", "arg_kinds": [0], "arg_names": ["self"], "arg_types": ["io.BytesIO"], "bound_args": [], "def_extras": {"first_arg": "self"}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "isatty of BytesIO", "ret_type": "builtins.bool", "variables": []}}}, "name": {".class": "SymbolTableNode", "kind": "Mdef", "node": {".class": "Var", "flags": ["is_initialized_in_class"], "fullname": "io.BytesIO.name", "name": "name", "type": {".class": "AnyType", "missing_import_name": null, "source_any": null, "type_of_any": 2}}}, "read": {".class": "SymbolTableNode", "kind": "Mdef", "node": {".class": "FuncDef", "arg_kinds": [0, 1], "arg_names": ["self", "size"], "flags": [], "fullname": "io.BytesIO.read", "name": "read", "type": {".class": "CallableType", "arg_kinds": [0, 1], "arg_names": ["self", "size"], "arg_types": ["io.BytesIO", {".class": "UnionType", "items": ["builtins.int", {".class": "NoneTyp"}]}], "bound_args": [], "def_extras": {"first_arg": "self"}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "read of BytesIO", "ret_type": "builtins.bytes", "variables": []}}}, "read1": {".class": "SymbolTableNode", "kind": "Mdef", "node": {".class": "FuncDef", "arg_kinds": [0, 1], "arg_names": ["self", "size"], "flags": [], "fullname": "io.BytesIO.read1", "name": "read1", "type": {".class": "CallableType", "arg_kinds": [0, 1], "arg_names": ["self", "size"], "arg_types": ["io.BytesIO", "builtins.int"], "bound_args": [], "def_extras": {"first_arg": "self"}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "read1 of BytesIO", "ret_type": "builtins.bytes", "variables": []}}}, "readable": {".class": "SymbolTableNode", "kind": "Mdef", "node": {".class": "FuncDef", "arg_kinds": [0], "arg_names": ["self"], "flags": [], "fullname": "io.BytesIO.readable", "name": "readable", "type": {".class": "CallableType", "arg_kinds": [0], "arg_names": ["self"], "arg_types": ["io.BytesIO"], "bound_args": [], "def_extras": {"first_arg": "self"}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "readable of BytesIO", "ret_type": "builtins.bool", "variables": []}}}, "readinto": {".class": "SymbolTableNode", "kind": "Mdef", "node": {".class": "FuncDef", "arg_kinds": [0, 0], "arg_names": ["self", "b"], "flags": [], "fullname": "io.BytesIO.readinto", "name": "readinto", "type": {".class": "CallableType", "arg_kinds": [0, 0], "arg_names": ["self", "b"], "arg_types": ["io.BytesIO", {".class": "UnionType", "items": ["builtins.bytearray", "mmap.mmap"]}], "bound_args": [], "def_extras": {"first_arg": "self"}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "readinto of BytesIO", "ret_type": "builtins.int", "variables": []}}}, "readinto1": {".class": "SymbolTableNode", "kind": "Mdef", "node": {".class": "FuncDef", "arg_kinds": [0, 0], "arg_names": ["self", "b"], "flags": ["is_conditional"], "fullname": "io.BytesIO.readinto1", "name": "readinto1", "type": {".class": "CallableType", "arg_kinds": [0, 0], "arg_names": ["self", "b"], "arg_types": ["io.BytesIO", {".class": "UnionType", "items": ["builtins.bytearray", "mmap.mmap"]}], "bound_args": [], "def_extras": {"first_arg": "self"}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "readinto1 of BytesIO", "ret_type": "builtins.int", "variables": []}}}, "readline": {".class": "SymbolTableNode", "kind": "Mdef", "node": {".class": "FuncDef", "arg_kinds": [0, 1], "arg_names": ["self", "size"], "flags": [], "fullname": "io.BytesIO.readline", "name": "readline", "type": {".class": "CallableType", "arg_kinds": [0, 1], "arg_names": ["self", "size"], "arg_types": ["io.BytesIO", "builtins.int"], "bound_args": [], "def_extras": {"first_arg": "self"}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "readline of BytesIO", "ret_type": "builtins.bytes", "variables": []}}}, "readlines": {".class": "SymbolTableNode", "kind": "Mdef", "node": {".class": "FuncDef", "arg_kinds": [0, 1], "arg_names": ["self", "hint"], "flags": [], "fullname": "io.BytesIO.readlines", "name": "readlines", "type": {".class": "CallableType", "arg_kinds": [0, 1], "arg_names": ["self", "hint"], "arg_types": ["io.BytesIO", "builtins.int"], "bound_args": [], "def_extras": {"first_arg": "self"}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "readlines of BytesIO", "ret_type": {".class": "Instance", "args": ["builtins.bytes"], "type_ref": "builtins.list"}, "variables": []}}}, "seek": {".class": "SymbolTableNode", "kind": "Mdef", "node": {".class": "FuncDef", "arg_kinds": [0, 0, 1], "arg_names": ["self", "offset", "whence"], "flags": [], "fullname": "io.BytesIO.seek", "name": "seek", "type": {".class": "CallableType", "arg_kinds": [0, 0, 1], "arg_names": ["self", "offset", "whence"], "arg_types": ["io.BytesIO", "builtins.int", "builtins.int"], "bound_args": [], "def_extras": {"first_arg": "self"}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "seek of BytesIO", "ret_type": "builtins.int", "variables": []}}}, "seekable": {".class": "SymbolTableNode", "kind": "Mdef", "node": {".class": "FuncDef", "arg_kinds": [0], "arg_names": ["self"], "flags": [], "fullname": "io.BytesIO.seekable", "name": "seekable", "type": {".class": "CallableType", "arg_kinds": [0], "arg_names": ["self"], "arg_types": ["io.BytesIO"], "bound_args": [], "def_extras": {"first_arg": "self"}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "seekable of BytesIO", "ret_type": "builtins.bool", "variables": []}}}, "tell": {".class": "SymbolTableNode", "kind": "Mdef", "node": {".class": "FuncDef", "arg_kinds": [0], "arg_names": ["self"], "flags": [], "fullname": "io.BytesIO.tell", "name": "tell", "type": {".class": "CallableType", "arg_kinds": [0], "arg_names": ["self"], "arg_types": ["io.BytesIO"], "bound_args": [], "def_extras": {"first_arg": "self"}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "tell of BytesIO", "ret_type": "builtins.int", "variables": []}}}, "truncate": {".class": "SymbolTableNode", "kind": "Mdef", "node": {".class": "FuncDef", "arg_kinds": [0, 1], "arg_names": ["self", "size"], "flags": [], "fullname": "io.BytesIO.truncate", "name": "truncate", "type": {".class": "CallableType", "arg_kinds": [0, 1], "arg_names": ["self", "size"], "arg_types": ["io.BytesIO", {".class": "UnionType", "items": ["builtins.int", {".class": "NoneTyp"}]}], "bound_args": [], "def_extras": {"first_arg": "self"}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "truncate of BytesIO", "ret_type": "builtins.int", "variables": []}}}, "writable": {".class": "SymbolTableNode", "kind": "Mdef", "node": {".class": "FuncDef", "arg_kinds": [0], "arg_names": ["self"], "flags": [], "fullname": "io.BytesIO.writable", "name": "writable", "type": {".class": "CallableType", "arg_kinds": [0], "arg_names": ["self"], "arg_types": ["io.BytesIO"], "bound_args": [], "def_extras": {"first_arg": "self"}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "writable of BytesIO", "ret_type": "builtins.bool", "variables": []}}}, "write": {".class": "SymbolTableNode", "kind": "Mdef", "node": {".class": "FuncDef", "arg_kinds": [0, 0], "arg_names": ["self", "b"], "flags": [], "fullname": "io.BytesIO.write", "name": "write", "type": {".class": "CallableType", "arg_kinds": [0, 0], "arg_names": ["self", "b"], "arg_types": ["io.BytesIO", {".class": "UnionType", "items": ["builtins.bytes", "builtins.bytearray"]}], "bound_args": [], "def_extras": {"first_arg": "self"}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "write of BytesIO", "ret_type": "builtins.int", "variables": []}}}, "writelines": {".class": "SymbolTableNode", "kind": "Mdef", "node": {".class": "FuncDef", "arg_kinds": [0, 0], "arg_names": ["self", "lines"], "flags": [], "fullname": "io.BytesIO.writelines", "name": "writelines", "type": {".class": "CallableType", "arg_kinds": [0, 0], "arg_names": ["self", "lines"], "arg_types": ["io.BytesIO", {".class": "AnyType", "missing_import_name": null, "source_any": null, "type_of_any": 2}], "bound_args": [], "def_extras": {"first_arg": "self"}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "writelines of BytesIO", "ret_type": {".class": "NoneTyp"}, "variables": []}}}}, "tuple_type": null, "type_vars": [], "typeddict_type": null}}, "Callable": {".class": "SymbolTableNode", "cross_ref": "typing.Callable", "kind": "Gdef", "module_hidden": true, "module_public": false}, "DEFAULT_BUFFER_SIZE": {".class": "SymbolTableNode", "kind": "Gdef", "node": {".class": "Var", "flags": [], "fullname": "io.DEFAULT_BUFFER_SIZE", "name": "DEFAULT_BUFFER_SIZE", "type": "builtins.int"}}, "FileIO": {".class": "SymbolTableNode", "kind": "Gdef", "node": {".class": "TypeInfo", "_promote": null, "abstract_attributes": [], "bases": ["io.RawIOBase"], "declared_metaclass": null, "defn": {".class": "ClassDef", "fullname": "io.FileIO", "name": "FileIO", "type_vars": []}, "flags": [], "fullname": "io.FileIO", "metaclass_type": null, "metadata": {}, "module_name": "io", "mro": ["io.FileIO", "io.RawIOBase", "io.IOBase", "builtins.object"], "names": {".class": "SymbolTable", "__init__": {".class": "SymbolTableNode", "kind": "Mdef", "node": {".class": "FuncDef", "arg_kinds": [0, 0, 1, 1, 1], "arg_names": ["self", "name", "mode", "closefd", "opener"], "flags": [], "fullname": "io.FileIO.__init__", "name": "__init__", "type": {".class": "CallableType", "arg_kinds": [0, 0, 1, 1, 1], "arg_names": ["self", "name", "mode", "closefd", "opener"], "arg_types": ["io.FileIO", {".class": "UnionType", "items": ["builtins.str", "builtins.bytes", "builtins.int"]}, "builtins.str", "builtins.bool", {".class": "UnionType", "items": [{".class": "CallableType", "arg_kinds": [0, 0], "arg_names": [null, null], "arg_types": [{".class": "UnionType", "items": ["builtins.int", "builtins.str"]}, "builtins.str"], "bound_args": [], "def_extras": {}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": null, "ret_type": "builtins.int", "variables": []}, {".class": "NoneTyp"}]}], "bound_args": [], "def_extras": {"first_arg": "self"}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "__init__ of FileIO", "ret_type": {".class": "NoneTyp"}, "variables": []}}}, "mode": {".class": "SymbolTableNode", "kind": "Mdef", "node": {".class": "Var", "flags": ["is_initialized_in_class"], "fullname": "io.FileIO.mode", "name": "mode", "type": "builtins.str"}}, "name": {".class": "SymbolTableNode", "kind": "Mdef", "node": {".class": "Var", "flags": ["is_initialized_in_class"], "fullname": "io.FileIO.name", "name": "name", "type": {".class": "UnionType", "items": ["builtins.int", "builtins.str"]}}}}, "tuple_type": null, "type_vars": [], "typeddict_type": null}}, "IO": {".class": "SymbolTableNode", "cross_ref": "typing.IO", "kind": "Gdef", "module_hidden": true, "module_public": false}, "IOBase": {".class": "SymbolTableNode", "kind": "Gdef", "node": {".class": "TypeInfo", "_promote": null, "abstract_attributes": [], "bases": ["builtins.object"], "declared_metaclass": null, "defn": {".class": "ClassDef", "fullname": "io.IOBase", "name": "IOBase", "type_vars": []}, "flags": [], "fullname": "io.IOBase", "metaclass_type": null, "metadata": {}, "module_name": "io", "mro": ["io.IOBase", "builtins.object"], "names": {".class": "SymbolTable", "__del__": {".class": "SymbolTableNode", "kind": "Mdef", "node": {".class": "FuncDef", "arg_kinds": [0], "arg_names": ["self"], "flags": [], "fullname": "io.IOBase.__del__", "name": "__del__", "type": {".class": "CallableType", "arg_kinds": [0], "arg_names": [null], "arg_types": ["io.IOBase"], "bound_args": [], "def_extras": {"first_arg": "self"}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "__del__ of IOBase", "ret_type": {".class": "NoneTyp"}, "variables": []}}}, "__enter__": {".class": "SymbolTableNode", "kind": "Mdef", "node": {".class": "FuncDef", "arg_kinds": [0], "arg_names": ["self"], "flags": [], "fullname": "io.IOBase.__enter__", "name": "__enter__", "type": {".class": "CallableType", "arg_kinds": [0], "arg_names": [null], "arg_types": [{".class": "TypeVarType", "fullname": "io._T", "id": -1, "name": "_T", "upper_bound": "io.IOBase", "values": [], "variance": 0}], "bound_args": [], "def_extras": {"first_arg": "self"}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "__enter__ of IOBase", "ret_type": {".class": "TypeVarType", "fullname": "io._T", "id": -1, "name": "_T", "upper_bound": "io.IOBase", "values": [], "variance": 0}, "variables": [{".class": "TypeVarDef", "fullname": "io._T", "id": -1, "name": "_T", "upper_bound": "io.IOBase", "values": [], "variance": 0}]}}}, "__exit__": {".class": "SymbolTableNode", "kind": "Mdef", "node": {".class": "FuncDef", "arg_kinds": [0, 0, 0, 0], "arg_names": ["self", "exc_type", "exc_val", "exc_tb"], "flags": [], "fullname": "io.IOBase.__exit__", "name": "__exit__", "type": {".class": "CallableType", "arg_kinds": [0, 0, 0, 0], "arg_names": [null, null, null, null], "arg_types": ["io.IOBase", {".class": "UnionType", "items": [{".class": "TypeType", "item": "builtins.BaseException"}, {".class": "NoneTyp"}]}, {".class": "UnionType", "items": ["builtins.BaseException", {".class": "NoneTyp"}]}, {".class": "UnionType", "items": ["types.TracebackType", {".class": "NoneTyp"}]}], "bound_args": [], "def_extras": {"first_arg": "self"}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "__exit__ of IOBase", "ret_type": "builtins.bool", "variables": []}}}, "__iter__": {".class": "SymbolTableNode", "kind": "Mdef", "node": {".class": "FuncDef", "arg_kinds": [0], "arg_names": ["self"], "flags": [], "fullname": "io.IOBase.__iter__", "name": "__iter__", "type": {".class": "CallableType", "arg_kinds": [0], "arg_names": [null], "arg_types": ["io.IOBase"], "bound_args": [], "def_extras": {"first_arg": "self"}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "__iter__ of IOBase", "ret_type": {".class": "Instance", "args": ["builtins.bytes"], "type_ref": "typing.Iterator"}, "variables": []}}}, "__next__": {".class": "SymbolTableNode", "kind": "Mdef", "node": {".class": "FuncDef", "arg_kinds": [0], "arg_names": ["self"], "flags": [], "fullname": "io.IOBase.__next__", "name": "__next__", "type": {".class": "CallableType", "arg_kinds": [0], "arg_names": ["self"], "arg_types": ["io.IOBase"], "bound_args": [], "def_extras": {"first_arg": "self"}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "__next__ of IOBase", "ret_type": "builtins.bytes", "variables": []}}}, "close": {".class": "SymbolTableNode", "kind": "Mdef", "node": {".class": "FuncDef", "arg_kinds": [0], "arg_names": ["self"], "flags": [], "fullname": "io.IOBase.close", "name": "close", "type": {".class": "CallableType", "arg_kinds": [0], "arg_names": ["self"], "arg_types": ["io.IOBase"], "bound_args": [], "def_extras": {"first_arg": "self"}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "close of IOBase", "ret_type": {".class": "NoneTyp"}, "variables": []}}}, "closed": {".class": "SymbolTableNode", "kind": "Mdef", "node": {".class": "Decorator", "func": {".class": "FuncDef", "arg_kinds": [0], "arg_names": ["self"], "flags": ["is_property", "is_decorated"], "fullname": "io.IOBase.closed", "name": "closed", "type": {".class": "CallableType", "arg_kinds": [0], "arg_names": ["self"], "arg_types": ["io.IOBase"], "bound_args": [], "def_extras": {"first_arg": "self"}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "closed of IOBase", "ret_type": "builtins.bool", "variables": []}}, "is_overload": false, "var": {".class": "Var", "flags": ["is_initialized_in_class", "is_property"], "fullname": null, "name": "closed", "type": {".class": "CallableType", "arg_kinds": [0], "arg_names": ["self"], "arg_types": ["io.IOBase"], "bound_args": [], "def_extras": {"first_arg": "self"}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "closed of IOBase", "ret_type": "builtins.bool", "variables": []}}}}, "fileno": {".class": "SymbolTableNode", "kind": "Mdef", "node": {".class": "FuncDef", "arg_kinds": [0], "arg_names": ["self"], "flags": [], "fullname": "io.IOBase.fileno", "name": "fileno", "type": {".class": "CallableType", "arg_kinds": [0], "arg_names": ["self"], "arg_types": ["io.IOBase"], "bound_args": [], "def_extras": {"first_arg": "self"}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "fileno of IOBase", "ret_type": "builtins.int", "variables": []}}}, "flush": {".class": "SymbolTableNode", "kind": "Mdef", "node": {".class": "FuncDef", "arg_kinds": [0], "arg_names": ["self"], "flags": [], "fullname": "io.IOBase.flush", "name": "flush", "type": {".class": "CallableType", "arg_kinds": [0], "arg_names": ["self"], "arg_types": ["io.IOBase"], "bound_args": [], "def_extras": {"first_arg": "self"}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "flush of IOBase", "ret_type": {".class": "NoneTyp"}, "variables": []}}}, "isatty": {".class": "SymbolTableNode", "kind": "Mdef", "node": {".class": "FuncDef", "arg_kinds": [0], "arg_names": ["self"], "flags": [], "fullname": "io.IOBase.isatty", "name": "isatty", "type": {".class": "CallableType", "arg_kinds": [0], "arg_names": ["self"], "arg_types": ["io.IOBase"], "bound_args": [], "def_extras": {"first_arg": "self"}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "isatty of IOBase", "ret_type": "builtins.bool", "variables": []}}}, "readable": {".class": "SymbolTableNode", "kind": "Mdef", "node": {".class": "FuncDef", "arg_kinds": [0], "arg_names": ["self"], "flags": [], "fullname": "io.IOBase.readable", "name": "readable", "type": {".class": "CallableType", "arg_kinds": [0], "arg_names": ["self"], "arg_types": ["io.IOBase"], "bound_args": [], "def_extras": {"first_arg": "self"}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "readable of IOBase", "ret_type": "builtins.bool", "variables": []}}}, "readline": {".class": "SymbolTableNode", "kind": "Mdef", "node": {".class": "FuncDef", "arg_kinds": [0, 1], "arg_names": ["self", "size"], "flags": [], "fullname": "io.IOBase.readline", "name": "readline", "type": {".class": "CallableType", "arg_kinds": [0, 1], "arg_names": ["self", "size"], "arg_types": ["io.IOBase", "builtins.int"], "bound_args": [], "def_extras": {"first_arg": "self"}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "readline of IOBase", "ret_type": "builtins.bytes", "variables": []}}}, "readlines": {".class": "SymbolTableNode", "kind": "Mdef", "node": {".class": "FuncDef", "arg_kinds": [0, 1], "arg_names": ["self", "hint"], "flags": [], "fullname": "io.IOBase.readlines", "name": "readlines", "type": {".class": "CallableType", "arg_kinds": [0, 1], "arg_names": ["self", "hint"], "arg_types": ["io.IOBase", "builtins.int"], "bound_args": [], "def_extras": {"first_arg": "self"}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "readlines of IOBase", "ret_type": {".class": "Instance", "args": ["builtins.bytes"], "type_ref": "builtins.list"}, "variables": []}}}, "seek": {".class": "SymbolTableNode", "kind": "Mdef", "node": {".class": "FuncDef", "arg_kinds": [0, 0, 1], "arg_names": ["self", "offset", "whence"], "flags": [], "fullname": "io.IOBase.seek", "name": "seek", "type": {".class": "CallableType", "arg_kinds": [0, 0, 1], "arg_names": ["self", "offset", "whence"], "arg_types": ["io.IOBase", "builtins.int", "builtins.int"], "bound_args": [], "def_extras": {"first_arg": "self"}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "seek of IOBase", "ret_type": "builtins.int", "variables": []}}}, "seekable": {".class": "SymbolTableNode", "kind": "Mdef", "node": {".class": "FuncDef", "arg_kinds": [0], "arg_names": ["self"], "flags": [], "fullname": "io.IOBase.seekable", "name": "seekable", "type": {".class": "CallableType", "arg_kinds": [0], "arg_names": ["self"], "arg_types": ["io.IOBase"], "bound_args": [], "def_extras": {"first_arg": "self"}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "seekable of IOBase", "ret_type": "builtins.bool", "variables": []}}}, "tell": {".class": "SymbolTableNode", "kind": "Mdef", "node": {".class": "FuncDef", "arg_kinds": [0], "arg_names": ["self"], "flags": [], "fullname": "io.IOBase.tell", "name": "tell", "type": {".class": "CallableType", "arg_kinds": [0], "arg_names": ["self"], "arg_types": ["io.IOBase"], "bound_args": [], "def_extras": {"first_arg": "self"}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "tell of IOBase", "ret_type": "builtins.int", "variables": []}}}, "truncate": {".class": "SymbolTableNode", "kind": "Mdef", "node": {".class": "FuncDef", "arg_kinds": [0, 1], "arg_names": ["self", "size"], "flags": [], "fullname": "io.IOBase.truncate", "name": "truncate", "type": {".class": "CallableType", "arg_kinds": [0, 1], "arg_names": ["self", "size"], "arg_types": ["io.IOBase", {".class": "UnionType", "items": ["builtins.int", {".class": "NoneTyp"}]}], "bound_args": [], "def_extras": {"first_arg": "self"}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "truncate of IOBase", "ret_type": "builtins.int", "variables": []}}}, "writable": {".class": "SymbolTableNode", "kind": "Mdef", "node": {".class": "FuncDef", "arg_kinds": [0], "arg_names": ["self"], "flags": [], "fullname": "io.IOBase.writable", "name": "writable", "type": {".class": "CallableType", "arg_kinds": [0], "arg_names": ["self"], "arg_types": ["io.IOBase"], "bound_args": [], "def_extras": {"first_arg": "self"}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "writable of IOBase", "ret_type": "builtins.bool", "variables": []}}}, "writelines": {".class": "SymbolTableNode", "kind": "Mdef", "node": {".class": "FuncDef", "arg_kinds": [0, 0], "arg_names": ["self", "lines"], "flags": [], "fullname": "io.IOBase.writelines", "name": "writelines", "type": {".class": "CallableType", "arg_kinds": [0, 0], "arg_names": ["self", "lines"], "arg_types": ["io.IOBase", {".class": "Instance", "args": [{".class": "UnionType", "items": ["builtins.bytes", "builtins.bytearray"]}], "type_ref": "typing.Iterable"}], "bound_args": [], "def_extras": {"first_arg": "self"}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "writelines of IOBase", "ret_type": {".class": "NoneTyp"}, "variables": []}}}}, "tuple_type": null, "type_vars": [], "typeddict_type": null}}, "IncrementalNewlineDecoder": {".class": "SymbolTableNode", "kind": "Gdef", "node": {".class": "TypeInfo", "_promote": null, "abstract_attributes": [], "bases": ["codecs.IncrementalDecoder"], "declared_metaclass": null, "defn": {".class": "ClassDef", "fullname": "io.IncrementalNewlineDecoder", "name": "IncrementalNewlineDecoder", "type_vars": []}, "flags": [], "fullname": "io.IncrementalNewlineDecoder", "metaclass_type": null, "metadata": {}, "module_name": "io", "mro": ["io.IncrementalNewlineDecoder", "codecs.IncrementalDecoder", "builtins.object"], "names": {".class": "SymbolTable", "decode": {".class": "SymbolTableNode", "kind": "Mdef", "node": {".class": "FuncDef", "arg_kinds": [0, 0, 1], "arg_names": ["self", "input", "final"], "flags": [], "fullname": "io.IncrementalNewlineDecoder.decode", "name": "decode", "type": {".class": "CallableType", "arg_kinds": [0, 0, 1], "arg_names": ["self", "input", "final"], "arg_types": ["io.IncrementalNewlineDecoder", "builtins.bytes", "builtins.bool"], "bound_args": [], "def_extras": {"first_arg": "self"}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "decode of IncrementalNewlineDecoder", "ret_type": "builtins.str", "variables": []}}}}, "tuple_type": null, "type_vars": [], "typeddict_type": null}}, "Iterable": {".class": "SymbolTableNode", "cross_ref": "typing.Iterable", "kind": "Gdef", "module_hidden": true, "module_public": false}, "Iterator": {".class": "SymbolTableNode", "cross_ref": "typing.Iterator", "kind": "Gdef", "module_hidden": true, "module_public": false}, "List": {".class": "SymbolTableNode", "cross_ref": "typing.List", "kind": "Gdef", "module_hidden": true, "module_public": false}, "Optional": {".class": "SymbolTableNode", "cross_ref": "typing.Optional", "kind": "Gdef", "module_hidden": true, "module_public": false}, "RawIOBase": {".class": "SymbolTableNode", "kind": "Gdef", "node": {".class": "TypeInfo", "_promote": null, "abstract_attributes": [], "bases": ["io.IOBase"], "declared_metaclass": null, "defn": {".class": "ClassDef", "fullname": "io.RawIOBase", "name": "RawIOBase", "type_vars": []}, "flags": [], "fullname": "io.RawIOBase", "metaclass_type": null, "metadata": {}, "module_name": "io", "mro": ["io.RawIOBase", "io.IOBase", "builtins.object"], "names": {".class": "SymbolTable", "read": {".class": "SymbolTableNode", "kind": "Mdef", "node": {".class": "FuncDef", "arg_kinds": [0, 1], "arg_names": ["self", "size"], "flags": [], "fullname": "io.RawIOBase.read", "name": "read", "type": {".class": "CallableType", "arg_kinds": [0, 1], "arg_names": ["self", "size"], "arg_types": ["io.RawIOBase", "builtins.int"], "bound_args": [], "def_extras": {"first_arg": "self"}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "read of RawIOBase", "ret_type": {".class": "UnionType", "items": ["builtins.bytes", {".class": "NoneTyp"}]}, "variables": []}}}, "readall": {".class": "SymbolTableNode", "kind": "Mdef", "node": {".class": "FuncDef", "arg_kinds": [0], "arg_names": ["self"], "flags": [], "fullname": "io.RawIOBase.readall", "name": "readall", "type": {".class": "CallableType", "arg_kinds": [0], "arg_names": ["self"], "arg_types": ["io.RawIOBase"], "bound_args": [], "def_extras": {"first_arg": "self"}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "readall of RawIOBase", "ret_type": "builtins.bytes", "variables": []}}}, "readinto": {".class": "SymbolTableNode", "kind": "Mdef", "node": {".class": "FuncDef", "arg_kinds": [0, 0], "arg_names": ["self", "b"], "flags": [], "fullname": "io.RawIOBase.readinto", "name": "readinto", "type": {".class": "CallableType", "arg_kinds": [0, 0], "arg_names": ["self", "b"], "arg_types": ["io.RawIOBase", "builtins.bytearray"], "bound_args": [], "def_extras": {"first_arg": "self"}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "readinto of RawIOBase", "ret_type": {".class": "UnionType", "items": ["builtins.int", {".class": "NoneTyp"}]}, "variables": []}}}, "write": {".class": "SymbolTableNode", "kind": "Mdef", "node": {".class": "FuncDef", "arg_kinds": [0, 0], "arg_names": ["self", "b"], "flags": [], "fullname": "io.RawIOBase.write", "name": "write", "type": {".class": "CallableType", "arg_kinds": [0, 0], "arg_names": ["self", "b"], "arg_types": ["io.RawIOBase", {".class": "UnionType", "items": ["builtins.bytes", "builtins.bytearray"]}], "bound_args": [], "def_extras": {"first_arg": "self"}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "write of RawIOBase", "ret_type": {".class": "UnionType", "items": ["builtins.int", {".class": "NoneTyp"}]}, "variables": []}}}}, "tuple_type": null, "type_vars": [], "typeddict_type": null}}, "SEEK_CUR": {".class": "SymbolTableNode", "kind": "Gdef", "node": {".class": "Var", "flags": [], "fullname": "io.SEEK_CUR", "name": "SEEK_CUR", "type": "builtins.int"}}, "SEEK_END": {".class": "SymbolTableNode", "kind": "Gdef", "node": {".class": "Var", "flags": [], "fullname": "io.SEEK_END", "name": "SEEK_END", "type": "builtins.int"}}, "SEEK_SET": {".class": "SymbolTableNode", "kind": "Gdef", "node": {".class": "Var", "flags": [], "fullname": "io.SEEK_SET", "name": "SEEK_SET", "type": "builtins.int"}}, "StringIO": {".class": "SymbolTableNode", "kind": "Gdef", "node": {".class": "TypeInfo", "_promote": null, "abstract_attributes": [], "bases": ["io.TextIOWrapper"], "declared_metaclass": null, "defn": {".class": "ClassDef", "fullname": "io.StringIO", "name": "StringIO", "type_vars": []}, "flags": [], "fullname": "io.StringIO", "metaclass_type": "abc.ABCMeta", "metadata": {}, "module_name": "io", "mro": ["io.StringIO", "io.TextIOWrapper", "typing.TextIO", "typing.IO", "typing.Iterator", "typing.Iterable", "builtins.object"], "names": {".class": "SymbolTable", "__enter__": {".class": "SymbolTableNode", "kind": "Mdef", "node": {".class": "FuncDef", "arg_kinds": [0], "arg_names": ["self"], "flags": [], "fullname": "io.StringIO.__enter__", "name": "__enter__", "type": {".class": "CallableType", "arg_kinds": [0], "arg_names": [null], "arg_types": ["io.StringIO"], "bound_args": [], "def_extras": {"first_arg": "self"}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "__enter__ of StringIO", "ret_type": "io.StringIO", "variables": []}}}, "__init__": {".class": "SymbolTableNode", "kind": "Mdef", "node": {".class": "FuncDef", "arg_kinds": [0, 1, 1], "arg_names": ["self", "initial_value", "newline"], "flags": [], "fullname": "io.StringIO.__init__", "name": "__init__", "type": {".class": "CallableType", "arg_kinds": [0, 1, 1], "arg_names": ["self", "initial_value", "newline"], "arg_types": ["io.StringIO", "builtins.str", {".class": "UnionType", "items": ["builtins.str", {".class": "NoneTyp"}]}], "bound_args": [], "def_extras": {"first_arg": "self"}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "__init__ of StringIO", "ret_type": {".class": "NoneTyp"}, "variables": []}}}, "getvalue": {".class": "SymbolTableNode", "kind": "Mdef", "node": {".class": "FuncDef", "arg_kinds": [0], "arg_names": ["self"], "flags": [], "fullname": "io.StringIO.getvalue", "name": "getvalue", "type": {".class": "CallableType", "arg_kinds": [0], "arg_names": ["self"], "arg_types": ["io.StringIO"], "bound_args": [], "def_extras": {"first_arg": "self"}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "getvalue of StringIO", "ret_type": "builtins.str", "variables": []}}}, "name": {".class": "SymbolTableNode", "kind": "Mdef", "node": {".class": "Var", "flags": ["is_initialized_in_class"], "fullname": "io.StringIO.name", "name": "name", "type": {".class": "AnyType", "missing_import_name": null, "source_any": null, "type_of_any": 2}}}}, "tuple_type": null, "type_vars": [], "typeddict_type": null}}, "TextIO": {".class": "SymbolTableNode", "cross_ref": "typing.TextIO", "kind": "Gdef", "module_hidden": true, "module_public": false}, "TextIOBase": {".class": "SymbolTableNode", "kind": "Gdef", "node": {".class": "TypeInfo", "_promote": null, "abstract_attributes": [], "bases": ["io.IOBase"], "declared_metaclass": null, "defn": {".class": "ClassDef", "fullname": "io.TextIOBase", "name": "TextIOBase", "type_vars": []}, "flags": [], "fullname": "io.TextIOBase", "metaclass_type": null, "metadata": {}, "module_name": "io", "mro": ["io.TextIOBase", "io.IOBase", "builtins.object"], "names": {".class": "SymbolTable", "__iter__": {".class": "SymbolTableNode", "kind": "Mdef", "node": {".class": "FuncDef", "arg_kinds": [0], "arg_names": ["self"], "flags": [], "fullname": "io.TextIOBase.__iter__", "name": "__iter__", "type": {".class": "CallableType", "arg_kinds": [0], "arg_names": [null], "arg_types": ["io.TextIOBase"], "bound_args": [], "def_extras": {"first_arg": "self"}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "__iter__ of TextIOBase", "ret_type": {".class": "Instance", "args": ["builtins.str"], "type_ref": "typing.Iterator"}, "variables": []}}}, "__next__": {".class": "SymbolTableNode", "kind": "Mdef", "node": {".class": "FuncDef", "arg_kinds": [0], "arg_names": ["self"], "flags": [], "fullname": "io.TextIOBase.__next__", "name": "__next__", "type": {".class": "CallableType", "arg_kinds": [0], "arg_names": ["self"], "arg_types": ["io.TextIOBase"], "bound_args": [], "def_extras": {"first_arg": "self"}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "__next__ of TextIOBase", "ret_type": "builtins.str", "variables": []}}}, "detach": {".class": "SymbolTableNode", "kind": "Mdef", "node": {".class": "FuncDef", "arg_kinds": [0], "arg_names": ["self"], "flags": [], "fullname": "io.TextIOBase.detach", "name": "detach", "type": {".class": "CallableType", "arg_kinds": [0], "arg_names": ["self"], "arg_types": ["io.TextIOBase"], "bound_args": [], "def_extras": {"first_arg": "self"}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "detach of TextIOBase", "ret_type": "io.IOBase", "variables": []}}}, "encoding": {".class": "SymbolTableNode", "kind": "Mdef", "node": {".class": "Var", "flags": ["is_initialized_in_class"], "fullname": "io.TextIOBase.encoding", "name": "encoding", "type": "builtins.str"}}, "errors": {".class": "SymbolTableNode", "kind": "Mdef", "node": {".class": "Var", "flags": ["is_initialized_in_class"], "fullname": "io.TextIOBase.errors", "name": "errors", "type": {".class": "UnionType", "items": ["builtins.str", {".class": "NoneTyp"}]}}}, "newlines": {".class": "SymbolTableNode", "kind": "Mdef", "node": {".class": "Var", "flags": ["is_initialized_in_class"], "fullname": "io.TextIOBase.newlines", "name": "newlines", "type": {".class": "UnionType", "items": ["builtins.str", {".class": "Instance", "args": ["builtins.str"], "type_ref": "builtins.tuple"}, {".class": "NoneTyp"}]}}}, "read": {".class": "SymbolTableNode", "kind": "Mdef", "node": {".class": "FuncDef", "arg_kinds": [0, 1], "arg_names": ["self", "size"], "flags": [], "fullname": "io.TextIOBase.read", "name": "read", "type": {".class": "CallableType", "arg_kinds": [0, 1], "arg_names": ["self", "size"], "arg_types": ["io.TextIOBase", {".class": "UnionType", "items": ["builtins.int", {".class": "NoneTyp"}]}], "bound_args": [], "def_extras": {"first_arg": "self"}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "read of TextIOBase", "ret_type": "builtins.str", "variables": []}}}, "readline": {".class": "SymbolTableNode", "kind": "Mdef", "node": {".class": "FuncDef", "arg_kinds": [0, 1], "arg_names": ["self", "size"], "flags": [], "fullname": "io.TextIOBase.readline", "name": "readline", "type": {".class": "CallableType", "arg_kinds": [0, 1], "arg_names": ["self", "size"], "arg_types": ["io.TextIOBase", "builtins.int"], "bound_args": [], "def_extras": {"first_arg": "self"}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "readline of TextIOBase", "ret_type": "builtins.str", "variables": []}}}, "readlines": {".class": "SymbolTableNode", "kind": "Mdef", "node": {".class": "FuncDef", "arg_kinds": [0, 1], "arg_names": ["self", "hint"], "flags": [], "fullname": "io.TextIOBase.readlines", "name": "readlines", "type": {".class": "CallableType", "arg_kinds": [0, 1], "arg_names": ["self", "hint"], "arg_types": ["io.TextIOBase", "builtins.int"], "bound_args": [], "def_extras": {"first_arg": "self"}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "readlines of TextIOBase", "ret_type": {".class": "Instance", "args": ["builtins.str"], "type_ref": "builtins.list"}, "variables": []}}}, "seek": {".class": "SymbolTableNode", "kind": "Mdef", "node": {".class": "FuncDef", "arg_kinds": [0, 0, 1], "arg_names": ["self", "offset", "whence"], "flags": [], "fullname": "io.TextIOBase.seek", "name": "seek", "type": {".class": "CallableType", "arg_kinds": [0, 0, 1], "arg_names": ["self", "offset", "whence"], "arg_types": ["io.TextIOBase", "builtins.int", "builtins.int"], "bound_args": [], "def_extras": {"first_arg": "self"}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "seek of TextIOBase", "ret_type": "builtins.int", "variables": []}}}, "tell": {".class": "SymbolTableNode", "kind": "Mdef", "node": {".class": "FuncDef", "arg_kinds": [0], "arg_names": ["self"], "flags": [], "fullname": "io.TextIOBase.tell", "name": "tell", "type": {".class": "CallableType", "arg_kinds": [0], "arg_names": ["self"], "arg_types": ["io.TextIOBase"], "bound_args": [], "def_extras": {"first_arg": "self"}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "tell of TextIOBase", "ret_type": "builtins.int", "variables": []}}}, "write": {".class": "SymbolTableNode", "kind": "Mdef", "node": {".class": "FuncDef", "arg_kinds": [0, 0], "arg_names": ["self", "s"], "flags": [], "fullname": "io.TextIOBase.write", "name": "write", "type": {".class": "CallableType", "arg_kinds": [0, 0], "arg_names": ["self", "s"], "arg_types": ["io.TextIOBase", "builtins.str"], "bound_args": [], "def_extras": {"first_arg": "self"}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "write of TextIOBase", "ret_type": "builtins.int", "variables": []}}}, "writelines": {".class": "SymbolTableNode", "kind": "Mdef", "node": {".class": "FuncDef", "arg_kinds": [0, 0], "arg_names": ["self", "lines"], "flags": [], "fullname": "io.TextIOBase.writelines", "name": "writelines", "type": {".class": "CallableType", "arg_kinds": [0, 0], "arg_names": ["self", "lines"], "arg_types": ["io.TextIOBase", {".class": "Instance", "args": ["builtins.str"], "type_ref": "builtins.list"}], "bound_args": [], "def_extras": {"first_arg": "self"}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "writelines of TextIOBase", "ret_type": {".class": "NoneTyp"}, "variables": []}}}}, "tuple_type": null, "type_vars": [], "typeddict_type": null}}, "TextIOWrapper": {".class": "SymbolTableNode", "kind": "Gdef", "node": {".class": "TypeInfo", "_promote": null, "abstract_attributes": [], "bases": ["typing.TextIO"], "declared_metaclass": null, "defn": {".class": "ClassDef", "fullname": "io.TextIOWrapper", "name": "TextIOWrapper", "type_vars": []}, "flags": [], "fullname": "io.TextIOWrapper", "metaclass_type": "abc.ABCMeta", "metadata": {}, "module_name": "io", "mro": ["io.TextIOWrapper", "typing.TextIO", "typing.IO", "typing.Iterator", "typing.Iterable", "builtins.object"], "names": {".class": "SymbolTable", "__del__": {".class": "SymbolTableNode", "kind": "Mdef", "node": {".class": "FuncDef", "arg_kinds": [0], "arg_names": ["self"], "flags": [], "fullname": "io.TextIOWrapper.__del__", "name": "__del__", "type": {".class": "CallableType", "arg_kinds": [0], "arg_names": [null], "arg_types": ["io.TextIOWrapper"], "bound_args": [], "def_extras": {"first_arg": "self"}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "__del__ of TextIOWrapper", "ret_type": {".class": "NoneTyp"}, "variables": []}}}, "__enter__": {".class": "SymbolTableNode", "kind": "Mdef", "node": {".class": "FuncDef", "arg_kinds": [0], "arg_names": ["self"], "flags": [], "fullname": "io.TextIOWrapper.__enter__", "name": "__enter__", "type": {".class": "CallableType", "arg_kinds": [0], "arg_names": [null], "arg_types": ["io.TextIOWrapper"], "bound_args": [], "def_extras": {"first_arg": "self"}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "__enter__ of TextIOWrapper", "ret_type": "typing.TextIO", "variables": []}}}, "__exit__": {".class": "SymbolTableNode", "kind": "Mdef", "node": {".class": "FuncDef", "arg_kinds": [0, 1, 1, 1], "arg_names": ["self", "t", "value", "traceback"], "flags": [], "fullname": "io.TextIOWrapper.__exit__", "name": "__exit__", "type": {".class": "CallableType", "arg_kinds": [0, 1, 1, 1], "arg_names": [null, null, null, null], "arg_types": ["io.TextIOWrapper", {".class": "UnionType", "items": [{".class": "TypeType", "item": "builtins.BaseException"}, {".class": "NoneTyp"}]}, {".class": "UnionType", "items": ["builtins.BaseException", {".class": "NoneTyp"}]}, {".class": "UnionType", "items": ["types.TracebackType", {".class": "NoneTyp"}]}], "bound_args": [], "def_extras": {"first_arg": "self"}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "__exit__ of TextIOWrapper", "ret_type": "builtins.bool", "variables": []}}}, "__init__": {".class": "SymbolTableNode", "kind": "Mdef", "node": {".class": "FuncDef", "arg_kinds": [0, 0, 1, 1, 1, 1, 1], "arg_names": ["self", "buffer", "encoding", "errors", "newline", "line_buffering", "write_through"], "flags": [], "fullname": "io.TextIOWrapper.__init__", "name": "__init__", "type": {".class": "CallableType", "arg_kinds": [0, 0, 1, 1, 1, 1, 1], "arg_names": ["self", "buffer", "encoding", "errors", "newline", "line_buffering", "write_through"], "arg_types": ["io.TextIOWrapper", {".class": "Instance", "args": ["builtins.bytes"], "type_ref": "typing.IO"}, "builtins.str", {".class": "UnionType", "items": ["builtins.str", {".class": "NoneTyp"}]}, {".class": "UnionType", "items": ["builtins.str", {".class": "NoneTyp"}]}, "builtins.bool", "builtins.bool"], "bound_args": [], "def_extras": {"first_arg": "self"}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "__init__ of TextIOWrapper", "ret_type": {".class": "NoneTyp"}, "variables": []}}}, "__iter__": {".class": "SymbolTableNode", "kind": "Mdef", "node": {".class": "FuncDef", "arg_kinds": [0], "arg_names": ["self"], "flags": [], "fullname": "io.TextIOWrapper.__iter__", "name": "__iter__", "type": {".class": "CallableType", "arg_kinds": [0], "arg_names": [null], "arg_types": ["io.TextIOWrapper"], "bound_args": [], "def_extras": {"first_arg": "self"}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "__iter__ of TextIOWrapper", "ret_type": {".class": "Instance", "args": ["builtins.str"], "type_ref": "typing.Iterator"}, "variables": []}}}, "__next__": {".class": "SymbolTableNode", "kind": "Mdef", "node": {".class": "FuncDef", "arg_kinds": [0], "arg_names": ["self"], "flags": [], "fullname": "io.TextIOWrapper.__next__", "name": "__next__", "type": {".class": "CallableType", "arg_kinds": [0], "arg_names": ["self"], "arg_types": ["io.TextIOWrapper"], "bound_args": [], "def_extras": {"first_arg": "self"}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "__next__ of TextIOWrapper", "ret_type": "builtins.str", "variables": []}}}, "close": {".class": "SymbolTableNode", "kind": "Mdef", "node": {".class": "FuncDef", "arg_kinds": [0], "arg_names": ["self"], "flags": [], "fullname": "io.TextIOWrapper.close", "name": "close", "type": {".class": "CallableType", "arg_kinds": [0], "arg_names": ["self"], "arg_types": ["io.TextIOWrapper"], "bound_args": [], "def_extras": {"first_arg": "self"}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "close of TextIOWrapper", "ret_type": {".class": "NoneTyp"}, "variables": []}}}, "closed": {".class": "SymbolTableNode", "kind": "Mdef", "node": {".class": "Var", "flags": ["is_initialized_in_class"], "fullname": "io.TextIOWrapper.closed", "name": "closed", "type": "builtins.bool"}}, "detach": {".class": "SymbolTableNode", "kind": "Mdef", "node": {".class": "FuncDef", "arg_kinds": [0], "arg_names": ["self"], "flags": [], "fullname": "io.TextIOWrapper.detach", "name": "detach", "type": {".class": "CallableType", "arg_kinds": [0], "arg_names": ["self"], "arg_types": ["io.TextIOWrapper"], "bound_args": [], "def_extras": {"first_arg": "self"}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "detach of TextIOWrapper", "ret_type": "io.IOBase", "variables": []}}}, "encoding": {".class": "SymbolTableNode", "kind": "Mdef", "node": {".class": "Var", "flags": ["is_initialized_in_class"], "fullname": "io.TextIOWrapper.encoding", "name": "encoding", "type": "builtins.str"}}, "errors": {".class": "SymbolTableNode", "kind": "Mdef", "node": {".class": "Var", "flags": ["is_initialized_in_class"], "fullname": "io.TextIOWrapper.errors", "name": "errors", "type": {".class": "UnionType", "items": ["builtins.str", {".class": "NoneTyp"}]}}}, "fileno": {".class": "SymbolTableNode", "kind": "Mdef", "node": {".class": "FuncDef", "arg_kinds": [0], "arg_names": ["self"], "flags": [], "fullname": "io.TextIOWrapper.fileno", "name": "fileno", "type": {".class": "CallableType", "arg_kinds": [0], "arg_names": ["self"], "arg_types": ["io.TextIOWrapper"], "bound_args": [], "def_extras": {"first_arg": "self"}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "fileno of TextIOWrapper", "ret_type": "builtins.int", "variables": []}}}, "flush": {".class": "SymbolTableNode", "kind": "Mdef", "node": {".class": "FuncDef", "arg_kinds": [0], "arg_names": ["self"], "flags": [], "fullname": "io.TextIOWrapper.flush", "name": "flush", "type": {".class": "CallableType", "arg_kinds": [0], "arg_names": ["self"], "arg_types": ["io.TextIOWrapper"], "bound_args": [], "def_extras": {"first_arg": "self"}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "flush of TextIOWrapper", "ret_type": {".class": "NoneTyp"}, "variables": []}}}, "isatty": {".class": "SymbolTableNode", "kind": "Mdef", "node": {".class": "FuncDef", "arg_kinds": [0], "arg_names": ["self"], "flags": [], "fullname": "io.TextIOWrapper.isatty", "name": "isatty", "type": {".class": "CallableType", "arg_kinds": [0], "arg_names": ["self"], "arg_types": ["io.TextIOWrapper"], "bound_args": [], "def_extras": {"first_arg": "self"}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "isatty of TextIOWrapper", "ret_type": "builtins.bool", "variables": []}}}, "line_buffering": {".class": "SymbolTableNode", "kind": "Mdef", "node": {".class": "Var", "flags": ["is_initialized_in_class"], "fullname": "io.TextIOWrapper.line_buffering", "name": "line_buffering", "type": "builtins.bool"}}, "newlines": {".class": "SymbolTableNode", "kind": "Mdef", "node": {".class": "Var", "flags": ["is_initialized_in_class"], "fullname": "io.TextIOWrapper.newlines", "name": "newlines", "type": {".class": "UnionType", "items": ["builtins.str", {".class": "Instance", "args": ["builtins.str"], "type_ref": "builtins.tuple"}, {".class": "NoneTyp"}]}}}, "read": {".class": "SymbolTableNode", "kind": "Mdef", "node": {".class": "FuncDef", "arg_kinds": [0, 1], "arg_names": ["self", "size"], "flags": [], "fullname": "io.TextIOWrapper.read", "name": "read", "type": {".class": "CallableType", "arg_kinds": [0, 1], "arg_names": ["self", "size"], "arg_types": ["io.TextIOWrapper", {".class": "UnionType", "items": ["builtins.int", {".class": "NoneTyp"}]}], "bound_args": [], "def_extras": {"first_arg": "self"}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "read of TextIOWrapper", "ret_type": "builtins.str", "variables": []}}}, "readable": {".class": "SymbolTableNode", "kind": "Mdef", "node": {".class": "FuncDef", "arg_kinds": [0], "arg_names": ["self"], "flags": [], "fullname": "io.TextIOWrapper.readable", "name": "readable", "type": {".class": "CallableType", "arg_kinds": [0], "arg_names": ["self"], "arg_types": ["io.TextIOWrapper"], "bound_args": [], "def_extras": {"first_arg": "self"}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "readable of TextIOWrapper", "ret_type": "builtins.bool", "variables": []}}}, "readline": {".class": "SymbolTableNode", "kind": "Mdef", "node": {".class": "FuncDef", "arg_kinds": [0, 1], "arg_names": ["self", "size"], "flags": [], "fullname": "io.TextIOWrapper.readline", "name": "readline", "type": {".class": "CallableType", "arg_kinds": [0, 1], "arg_names": ["self", "size"], "arg_types": ["io.TextIOWrapper", "builtins.int"], "bound_args": [], "def_extras": {"first_arg": "self"}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "readline of TextIOWrapper", "ret_type": "builtins.str", "variables": []}}}, "readlines": {".class": "SymbolTableNode", "kind": "Mdef", "node": {".class": "FuncDef", "arg_kinds": [0, 1], "arg_names": ["self", "hint"], "flags": [], "fullname": "io.TextIOWrapper.readlines", "name": "readlines", "type": {".class": "CallableType", "arg_kinds": [0, 1], "arg_names": ["self", "hint"], "arg_types": ["io.TextIOWrapper", "builtins.int"], "bound_args": [], "def_extras": {"first_arg": "self"}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "readlines of TextIOWrapper", "ret_type": {".class": "Instance", "args": ["builtins.str"], "type_ref": "builtins.list"}, "variables": []}}}, "seek": {".class": "SymbolTableNode", "kind": "Mdef", "node": {".class": "FuncDef", "arg_kinds": [0, 0, 1], "arg_names": ["self", "offset", "whence"], "flags": [], "fullname": "io.TextIOWrapper.seek", "name": "seek", "type": {".class": "CallableType", "arg_kinds": [0, 0, 1], "arg_names": ["self", "offset", "whence"], "arg_types": ["io.TextIOWrapper", "builtins.int", "builtins.int"], "bound_args": [], "def_extras": {"first_arg": "self"}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "seek of TextIOWrapper", "ret_type": "builtins.int", "variables": []}}}, "seekable": {".class": "SymbolTableNode", "kind": "Mdef", "node": {".class": "FuncDef", "arg_kinds": [0], "arg_names": ["self"], "flags": [], "fullname": "io.TextIOWrapper.seekable", "name": "seekable", "type": {".class": "CallableType", "arg_kinds": [0], "arg_names": ["self"], "arg_types": ["io.TextIOWrapper"], "bound_args": [], "def_extras": {"first_arg": "self"}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "seekable of TextIOWrapper", "ret_type": "builtins.bool", "variables": []}}}, "tell": {".class": "SymbolTableNode", "kind": "Mdef", "node": {".class": "FuncDef", "arg_kinds": [0], "arg_names": ["self"], "flags": [], "fullname": "io.TextIOWrapper.tell", "name": "tell", "type": {".class": "CallableType", "arg_kinds": [0], "arg_names": ["self"], "arg_types": ["io.TextIOWrapper"], "bound_args": [], "def_extras": {"first_arg": "self"}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "tell of TextIOWrapper", "ret_type": "builtins.int", "variables": []}}}, "truncate": {".class": "SymbolTableNode", "kind": "Mdef", "node": {".class": "FuncDef", "arg_kinds": [0, 1], "arg_names": ["self", "size"], "flags": [], "fullname": "io.TextIOWrapper.truncate", "name": "truncate", "type": {".class": "CallableType", "arg_kinds": [0, 1], "arg_names": ["self", "size"], "arg_types": ["io.TextIOWrapper", {".class": "UnionType", "items": ["builtins.int", {".class": "NoneTyp"}]}], "bound_args": [], "def_extras": {"first_arg": "self"}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "truncate of TextIOWrapper", "ret_type": "builtins.int", "variables": []}}}, "writable": {".class": "SymbolTableNode", "kind": "Mdef", "node": {".class": "FuncDef", "arg_kinds": [0], "arg_names": ["self"], "flags": [], "fullname": "io.TextIOWrapper.writable", "name": "writable", "type": {".class": "CallableType", "arg_kinds": [0], "arg_names": ["self"], "arg_types": ["io.TextIOWrapper"], "bound_args": [], "def_extras": {"first_arg": "self"}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "writable of TextIOWrapper", "ret_type": "builtins.bool", "variables": []}}}, "write": {".class": "SymbolTableNode", "kind": "Mdef", "node": {".class": "FuncDef", "arg_kinds": [0, 0], "arg_names": ["self", "s"], "flags": [], "fullname": "io.TextIOWrapper.write", "name": "write", "type": {".class": "CallableType", "arg_kinds": [0, 0], "arg_names": ["self", "s"], "arg_types": ["io.TextIOWrapper", "builtins.str"], "bound_args": [], "def_extras": {"first_arg": "self"}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "write of TextIOWrapper", "ret_type": "builtins.int", "variables": []}}}, "writelines": {".class": "SymbolTableNode", "kind": "Mdef", "node": {".class": "FuncDef", "arg_kinds": [0, 0], "arg_names": ["self", "lines"], "flags": [], "fullname": "io.TextIOWrapper.writelines", "name": "writelines", "type": {".class": "CallableType", "arg_kinds": [0, 0], "arg_names": ["self", "lines"], "arg_types": ["io.TextIOWrapper", {".class": "AnyType", "missing_import_name": null, "source_any": null, "type_of_any": 2}], "bound_args": [], "def_extras": {"first_arg": "self"}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "writelines of TextIOWrapper", "ret_type": {".class": "NoneTyp"}, "variables": []}}}}, "tuple_type": null, "type_vars": [], "typeddict_type": null}}, "TracebackType": {".class": "SymbolTableNode", "cross_ref": "types.TracebackType", "kind": "Gdef", "module_hidden": true, "module_public": false}, "Tuple": {".class": "SymbolTableNode", "cross_ref": "typing.Tuple", "kind": "Gdef", "module_hidden": true, "module_public": false}, "Type": {".class": "SymbolTableNode", "cross_ref": "typing.Type", "kind": "Gdef", "module_hidden": true, "module_public": false}, "TypeVar": {".class": "SymbolTableNode", "cross_ref": "typing.TypeVar", "kind": "Gdef", "module_hidden": true, "module_public": false}, "Union": {".class": "SymbolTableNode", "cross_ref": "typing.Union", "kind": "Gdef", "module_hidden": true, "module_public": false}, "UnsupportedOperation": {".class": "SymbolTableNode", "kind": "Gdef", "node": {".class": "TypeInfo", "_promote": null, "abstract_attributes": [], "bases": ["builtins.OSError", "builtins.ValueError"], "declared_metaclass": null, "defn": {".class": "ClassDef", "fullname": "io.UnsupportedOperation", "name": "UnsupportedOperation", "type_vars": []}, "flags": [], "fullname": "io.UnsupportedOperation", "metaclass_type": null, "metadata": {}, "module_name": "io", "mro": ["io.UnsupportedOperation", "builtins.OSError", "builtins.ValueError", "builtins.Exception", "builtins.BaseException", "builtins.object"], "names": {".class": "SymbolTable"}, "tuple_type": null, "type_vars": [], "typeddict_type": null}}, "_T": {".class": "SymbolTableNode", "kind": "Gdef", "node": {".class": "TypeVarExpr", "fullname": "io._T", "name": "_T", "upper_bound": "io.IOBase", "values": [], "variance": 0}}, "__doc__": {".class": "SymbolTableNode", "kind": "Gdef", "node": {".class": "Var", "flags": [], "fullname": "io.__doc__", "name": "__doc__", "type": "builtins.str"}}, "__file__": {".class": "SymbolTableNode", "kind": "Gdef", "node": {".class": "Var", "flags": [], "fullname": "io.__file__", "name": "__file__", "type": "builtins.str"}}, "__name__": {".class": "SymbolTableNode", "kind": "Gdef", "node": {".class": "Var", "flags": [], "fullname": "io.__name__", "name": "__name__", "type": "builtins.str"}}, "__package__": {".class": "SymbolTableNode", "kind": "Gdef", "node": {".class": "Var", "flags": [], "fullname": "io.__package__", "name": "__package__", "type": "builtins.str"}}, "_bytearray_like": {".class": "SymbolTableNode", "kind": "Gdef", "node": {".class": "TypeAlias", "alias_tvars": [], "column": 0, "fullname": "io._bytearray_like", "line": 11, "no_args": false, "normalized": false, "target": {".class": "UnionType", "items": ["builtins.bytearray", "mmap.mmap"]}}}, "builtins": {".class": "SymbolTableNode", "cross_ref": "builtins", "kind": "Gdef", "module_hidden": true, "module_public": false}, "codecs": {".class": "SymbolTableNode", "cross_ref": "codecs", "kind": "Gdef", "module_hidden": true, "module_public": false}, "mmap": {".class": "SymbolTableNode", "cross_ref": "mmap.mmap", "kind": "Gdef", "module_hidden": true, "module_public": false}, "open": {".class": "SymbolTableNode", "kind": "Gdef", "node": {".class": "Var", "flags": [], "fullname": "io.open", "name": "open", "type": {".class": "CallableType", "arg_kinds": [0, 1, 1, 1, 1, 1, 1], "arg_names": ["file", "mode", "buffering", "encoding", "errors", "newline", "closefd"], "arg_types": [{".class": "UnionType", "items": ["builtins.str", "builtins.bytes", "builtins.int", {".class": "Instance", "args": [{".class": "AnyType", "missing_import_name": null, "source_any": null, "type_of_any": 4}], "type_ref": "builtins._PathLike"}]}, "builtins.str", "builtins.int", {".class": "UnionType", "items": ["builtins.str", {".class": "NoneTyp"}]}, {".class": "UnionType", "items": ["builtins.str", {".class": "NoneTyp"}]}, {".class": "UnionType", "items": ["builtins.str", {".class": "NoneTyp"}]}, "builtins.bool"], "bound_args": [], "def_extras": {"first_arg": null}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": null, "ret_type": {".class": "Instance", "args": [{".class": "AnyType", "missing_import_name": null, "source_any": null, "type_of_any": 2}], "type_ref": "typing.IO"}, "variables": []}}}, "sys": {".class": "SymbolTableNode", "cross_ref": "sys", "kind": "Gdef", "module_hidden": true, "module_public": false}}, "path": "/usr/lib/python3/dist-packages/mypy/typeshed/stdlib/3/io.pyi"}
\ No newline at end of file
diff --git a/Postgres/StressTests/.mypy_cache/3.7/io.meta.json b/Postgres/StressTests/.mypy_cache/3.7/io.meta.json
deleted file mode 100644
index 6a623cb..0000000
--- a/Postgres/StressTests/.mypy_cache/3.7/io.meta.json
+++ /dev/null
@@ -1 +0,0 @@
-{"child_modules": [], "data_mtime": 1553688971, "dep_lines": [1, 4, 5, 6, 7, 8, 1], "dep_prios": [5, 10, 10, 5, 10, 5, 30], "dependencies": ["typing", "builtins", "codecs", "mmap", "sys", "types", "abc"], "hash": "9c21bf44c37d1b8b811d83d7a3f07d2c", "id": "io", "ignore_all": true, "interface_hash": "b1472b02b781d113d90477d5cc75b94a", "mtime": 1549659920, "options": {"allow_redefinition": false, "allow_untyped_globals": false, "always_false": [], "always_true": [], "bazel": false, "check_untyped_defs": false, "disallow_any_decorated": false, "disallow_any_explicit": false, "disallow_any_expr": false, "disallow_any_generics": false, "disallow_any_unimported": false, "disallow_incomplete_defs": false, "disallow_subclassing_any": false, "disallow_untyped_calls": false, "disallow_untyped_decorators": false, "disallow_untyped_defs": false, "follow_imports": "normal", "follow_imports_for_stubs": false, "ignore_errors": false, "ignore_missing_imports": false, "local_partial_types": false, "mypyc": false, "new_semantic_analyzer": false, "no_implicit_optional": false, "platform": "linux", "plugins": [], "show_none_errors": true, "strict_optional": true, "strict_optional_whitelist": null, "warn_no_return": true, "warn_return_any": false, "warn_unused_ignores": false}, "path": "/usr/lib/python3/dist-packages/mypy/typeshed/stdlib/3/io.pyi", "size": 8390, "suppressed": [], "version_id": "0.670"}
\ No newline at end of file
diff --git a/Postgres/StressTests/.mypy_cache/3.7/mmap.data.json b/Postgres/StressTests/.mypy_cache/3.7/mmap.data.json
deleted file mode 100644
index ab0d5ff..0000000
--- a/Postgres/StressTests/.mypy_cache/3.7/mmap.data.json
+++ /dev/null
@@ -1 +0,0 @@
-{".class": "MypyFile", "_fullname": "mmap", "is_partial_stub_package": false, "is_stub": true, "names": {".class": "SymbolTable", "ACCESS_COPY": {".class": "SymbolTableNode", "kind": "Gdef", "node": {".class": "Var", "flags": [], "fullname": "mmap.ACCESS_COPY", "name": "ACCESS_COPY", "type": "builtins.int"}}, "ACCESS_DEFAULT": {".class": "SymbolTableNode", "kind": "Gdef", "node": {".class": "Var", "flags": [], "fullname": "mmap.ACCESS_DEFAULT", "name": "ACCESS_DEFAULT", "type": "builtins.int"}}, "ACCESS_READ": {".class": "SymbolTableNode", "kind": "Gdef", "node": {".class": "Var", "flags": [], "fullname": "mmap.ACCESS_READ", "name": "ACCESS_READ", "type": "builtins.int"}}, "ACCESS_WRITE": {".class": "SymbolTableNode", "kind": "Gdef", "node": {".class": "Var", "flags": [], "fullname": "mmap.ACCESS_WRITE", "name": "ACCESS_WRITE", "type": "builtins.int"}}, "ALLOCATIONGRANULARITY": {".class": "SymbolTableNode", "kind": "Gdef", "node": {".class": "Var", "flags": [], "fullname": "mmap.ALLOCATIONGRANULARITY", "name": "ALLOCATIONGRANULARITY", "type": "builtins.int"}}, "AnyStr": {".class": "SymbolTableNode", "cross_ref": "typing.AnyStr", "kind": "Gdef", "module_hidden": true, "module_public": false}, "ContextManager": {".class": "SymbolTableNode", "cross_ref": "typing.ContextManager", "kind": "Gdef", "module_hidden": true, "module_public": false}, "Generic": {".class": "SymbolTableNode", "cross_ref": "typing.Generic", "kind": "Gdef", "module_hidden": true, "module_public": false}, "Iterable": {".class": "SymbolTableNode", "cross_ref": "typing.Iterable", "kind": "Gdef", "module_hidden": true, "module_public": false}, "Iterator": {".class": "SymbolTableNode", "cross_ref": "typing.Iterator", "kind": "Gdef", "module_hidden": true, "module_public": false}, "MAP_ANON": {".class": "SymbolTableNode", "kind": "Gdef", "node": {".class": "Var", "flags": [], "fullname": "mmap.MAP_ANON", "name": "MAP_ANON", "type": "builtins.int"}}, "MAP_ANONYMOUS": {".class": "SymbolTableNode", "kind": "Gdef", "node": {".class": "Var", "flags": [], "fullname": "mmap.MAP_ANONYMOUS", "name": "MAP_ANONYMOUS", "type": "builtins.int"}}, "MAP_DENYWRITE": {".class": "SymbolTableNode", "kind": "Gdef", "node": {".class": "Var", "flags": [], "fullname": "mmap.MAP_DENYWRITE", "name": "MAP_DENYWRITE", "type": "builtins.int"}}, "MAP_EXECUTABLE": {".class": "SymbolTableNode", "kind": "Gdef", "node": {".class": "Var", "flags": [], "fullname": "mmap.MAP_EXECUTABLE", "name": "MAP_EXECUTABLE", "type": "builtins.int"}}, "MAP_PRIVATE": {".class": "SymbolTableNode", "kind": "Gdef", "node": {".class": "Var", "flags": [], "fullname": "mmap.MAP_PRIVATE", "name": "MAP_PRIVATE", "type": "builtins.int"}}, "MAP_SHARED": {".class": "SymbolTableNode", "kind": "Gdef", "node": {".class": "Var", "flags": [], "fullname": "mmap.MAP_SHARED", "name": "MAP_SHARED", "type": "builtins.int"}}, "Optional": {".class": "SymbolTableNode", "cross_ref": "typing.Optional", "kind": "Gdef", "module_hidden": true, "module_public": false}, "PAGESIZE": {".class": "SymbolTableNode", "kind": "Gdef", "node": {".class": "Var", "flags": [], "fullname": "mmap.PAGESIZE", "name": "PAGESIZE", "type": "builtins.int"}}, "PROT_EXEC": {".class": "SymbolTableNode", "kind": "Gdef", "node": {".class": "Var", "flags": [], "fullname": "mmap.PROT_EXEC", "name": "PROT_EXEC", "type": "builtins.int"}}, "PROT_READ": {".class": "SymbolTableNode", "kind": "Gdef", "node": {".class": "Var", "flags": [], "fullname": "mmap.PROT_READ", "name": "PROT_READ", "type": "builtins.int"}}, "PROT_WRITE": {".class": "SymbolTableNode", "kind": "Gdef", "node": {".class": "Var", "flags": [], "fullname": "mmap.PROT_WRITE", "name": "PROT_WRITE", "type": "builtins.int"}}, "Sequence": {".class": "SymbolTableNode", "cross_ref": "typing.Sequence", "kind": "Gdef", "module_hidden": true, "module_public": false}, "Sized": {".class": "SymbolTableNode", "cross_ref": "typing.Sized", "kind": "Gdef", "module_hidden": true, "module_public": false}, "Union": {".class": "SymbolTableNode", "cross_ref": "typing.Union", "kind": "Gdef", "module_hidden": true, "module_public": false}, "__doc__": {".class": "SymbolTableNode", "kind": "Gdef", "node": {".class": "Var", "flags": [], "fullname": "mmap.__doc__", "name": "__doc__", "type": "builtins.str"}}, "__file__": {".class": "SymbolTableNode", "kind": "Gdef", "node": {".class": "Var", "flags": [], "fullname": "mmap.__file__", "name": "__file__", "type": "builtins.str"}}, "__name__": {".class": "SymbolTableNode", "kind": "Gdef", "node": {".class": "Var", "flags": [], "fullname": "mmap.__name__", "name": "__name__", "type": "builtins.str"}}, "__package__": {".class": "SymbolTableNode", "kind": "Gdef", "node": {".class": "Var", "flags": [], "fullname": "mmap.__package__", "name": "__package__", "type": "builtins.str"}}, "_mmap": {".class": "SymbolTableNode", "kind": "Gdef", "node": {".class": "TypeInfo", "_promote": null, "abstract_attributes": [], "bases": ["builtins.object"], "declared_metaclass": null, "defn": {".class": "ClassDef", "fullname": "mmap._mmap", "name": "_mmap", "type_vars": [{".class": "TypeVarDef", "fullname": "typing.AnyStr", "id": 1, "name": "AnyStr", "upper_bound": "builtins.object", "values": ["builtins.str", "builtins.bytes"], "variance": 0}]}, "flags": [], "fullname": "mmap._mmap", "metaclass_type": null, "metadata": {}, "module_name": "mmap", "mro": ["mmap._mmap", "builtins.object"], "names": {".class": "SymbolTable", "__init__": {".class": "SymbolTableNode", "kind": "Mdef", "node": {".class": "FuncDef", "arg_kinds": [0, 0, 0, 1, 1, 1, 1], "arg_names": ["self", "fileno", "length", "flags", "prot", "access", "offset"], "flags": ["is_conditional"], "fullname": "mmap._mmap.__init__", "name": "__init__", "type": {".class": "CallableType", "arg_kinds": [0, 0, 0, 1, 1, 1, 1], "arg_names": ["self", "fileno", "length", "flags", "prot", "access", "offset"], "arg_types": [{".class": "Instance", "args": [{".class": "TypeVarType", "fullname": "typing.AnyStr", "id": 1, "name": "AnyStr", "upper_bound": "builtins.object", "values": ["builtins.str", "builtins.bytes"], "variance": 0}], "type_ref": "mmap._mmap"}, "builtins.int", "builtins.int", "builtins.int", "builtins.int", "builtins.int", "builtins.int"], "bound_args": [], "def_extras": {"first_arg": "self"}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "__init__ of _mmap", "ret_type": {".class": "NoneTyp"}, "variables": []}}}, "__len__": {".class": "SymbolTableNode", "kind": "Mdef", "node": {".class": "FuncDef", "arg_kinds": [0], "arg_names": ["self"], "flags": [], "fullname": "mmap._mmap.__len__", "name": "__len__", "type": {".class": "CallableType", "arg_kinds": [0], "arg_names": [null], "arg_types": [{".class": "Instance", "args": [{".class": "TypeVarType", "fullname": "typing.AnyStr", "id": 1, "name": "AnyStr", "upper_bound": "builtins.object", "values": ["builtins.str", "builtins.bytes"], "variance": 0}], "type_ref": "mmap._mmap"}], "bound_args": [], "def_extras": {"first_arg": "self"}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "__len__ of _mmap", "ret_type": "builtins.int", "variables": []}}}, "close": {".class": "SymbolTableNode", "kind": "Mdef", "node": {".class": "FuncDef", "arg_kinds": [0], "arg_names": ["self"], "flags": [], "fullname": "mmap._mmap.close", "name": "close", "type": {".class": "CallableType", "arg_kinds": [0], "arg_names": ["self"], "arg_types": [{".class": "Instance", "args": [{".class": "TypeVarType", "fullname": "typing.AnyStr", "id": 1, "name": "AnyStr", "upper_bound": "builtins.object", "values": ["builtins.str", "builtins.bytes"], "variance": 0}], "type_ref": "mmap._mmap"}], "bound_args": [], "def_extras": {"first_arg": "self"}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "close of _mmap", "ret_type": {".class": "NoneTyp"}, "variables": []}}}, "find": {".class": "SymbolTableNode", "kind": "Mdef", "node": {".class": "FuncDef", "arg_kinds": [0, 0, 1, 1], "arg_names": ["self", "sub", "start", "end"], "flags": [], "fullname": "mmap._mmap.find", "name": "find", "type": {".class": "CallableType", "arg_kinds": [0, 0, 1, 1], "arg_names": ["self", "sub", "start", "end"], "arg_types": [{".class": "Instance", "args": [{".class": "TypeVarType", "fullname": "typing.AnyStr", "id": 1, "name": "AnyStr", "upper_bound": "builtins.object", "values": ["builtins.str", "builtins.bytes"], "variance": 0}], "type_ref": "mmap._mmap"}, {".class": "TypeVarType", "fullname": "typing.AnyStr", "id": 1, "name": "AnyStr", "upper_bound": "builtins.object", "values": ["builtins.str", "builtins.bytes"], "variance": 0}, "builtins.int", "builtins.int"], "bound_args": [], "def_extras": {"first_arg": "self"}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "find of _mmap", "ret_type": "builtins.int", "variables": []}}}, "flush": {".class": "SymbolTableNode", "kind": "Mdef", "node": {".class": "FuncDef", "arg_kinds": [0, 1, 1], "arg_names": ["self", "offset", "size"], "flags": [], "fullname": "mmap._mmap.flush", "name": "flush", "type": {".class": "CallableType", "arg_kinds": [0, 1, 1], "arg_names": ["self", "offset", "size"], "arg_types": [{".class": "Instance", "args": [{".class": "TypeVarType", "fullname": "typing.AnyStr", "id": 1, "name": "AnyStr", "upper_bound": "builtins.object", "values": ["builtins.str", "builtins.bytes"], "variance": 0}], "type_ref": "mmap._mmap"}, "builtins.int", "builtins.int"], "bound_args": [], "def_extras": {"first_arg": "self"}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "flush of _mmap", "ret_type": "builtins.int", "variables": []}}}, "move": {".class": "SymbolTableNode", "kind": "Mdef", "node": {".class": "FuncDef", "arg_kinds": [0, 0, 0, 0], "arg_names": ["self", "dest", "src", "count"], "flags": [], "fullname": "mmap._mmap.move", "name": "move", "type": {".class": "CallableType", "arg_kinds": [0, 0, 0, 0], "arg_names": ["self", "dest", "src", "count"], "arg_types": [{".class": "Instance", "args": [{".class": "TypeVarType", "fullname": "typing.AnyStr", "id": 1, "name": "AnyStr", "upper_bound": "builtins.object", "values": ["builtins.str", "builtins.bytes"], "variance": 0}], "type_ref": "mmap._mmap"}, "builtins.int", "builtins.int", "builtins.int"], "bound_args": [], "def_extras": {"first_arg": "self"}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "move of _mmap", "ret_type": {".class": "NoneTyp"}, "variables": []}}}, "read": {".class": "SymbolTableNode", "kind": "Mdef", "node": {".class": "FuncDef", "arg_kinds": [0, 1], "arg_names": ["self", "n"], "flags": [], "fullname": "mmap._mmap.read", "name": "read", "type": {".class": "CallableType", "arg_kinds": [0, 1], "arg_names": ["self", "n"], "arg_types": [{".class": "Instance", "args": [{".class": "TypeVarType", "fullname": "typing.AnyStr", "id": 1, "name": "AnyStr", "upper_bound": "builtins.object", "values": ["builtins.str", "builtins.bytes"], "variance": 0}], "type_ref": "mmap._mmap"}, "builtins.int"], "bound_args": [], "def_extras": {"first_arg": "self"}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "read of _mmap", "ret_type": {".class": "TypeVarType", "fullname": "typing.AnyStr", "id": 1, "name": "AnyStr", "upper_bound": "builtins.object", "values": ["builtins.str", "builtins.bytes"], "variance": 0}, "variables": []}}}, "read_byte": {".class": "SymbolTableNode", "kind": "Mdef", "node": {".class": "FuncDef", "arg_kinds": [0], "arg_names": ["self"], "flags": [], "fullname": "mmap._mmap.read_byte", "name": "read_byte", "type": {".class": "CallableType", "arg_kinds": [0], "arg_names": ["self"], "arg_types": [{".class": "Instance", "args": [{".class": "TypeVarType", "fullname": "typing.AnyStr", "id": 1, "name": "AnyStr", "upper_bound": "builtins.object", "values": ["builtins.str", "builtins.bytes"], "variance": 0}], "type_ref": "mmap._mmap"}], "bound_args": [], "def_extras": {"first_arg": "self"}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "read_byte of _mmap", "ret_type": {".class": "TypeVarType", "fullname": "typing.AnyStr", "id": 1, "name": "AnyStr", "upper_bound": "builtins.object", "values": ["builtins.str", "builtins.bytes"], "variance": 0}, "variables": []}}}, "readline": {".class": "SymbolTableNode", "kind": "Mdef", "node": {".class": "FuncDef", "arg_kinds": [0], "arg_names": ["self"], "flags": [], "fullname": "mmap._mmap.readline", "name": "readline", "type": {".class": "CallableType", "arg_kinds": [0], "arg_names": ["self"], "arg_types": [{".class": "Instance", "args": [{".class": "TypeVarType", "fullname": "typing.AnyStr", "id": 1, "name": "AnyStr", "upper_bound": "builtins.object", "values": ["builtins.str", "builtins.bytes"], "variance": 0}], "type_ref": "mmap._mmap"}], "bound_args": [], "def_extras": {"first_arg": "self"}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "readline of _mmap", "ret_type": {".class": "TypeVarType", "fullname": "typing.AnyStr", "id": 1, "name": "AnyStr", "upper_bound": "builtins.object", "values": ["builtins.str", "builtins.bytes"], "variance": 0}, "variables": []}}}, "resize": {".class": "SymbolTableNode", "kind": "Mdef", "node": {".class": "FuncDef", "arg_kinds": [0, 0], "arg_names": ["self", "newsize"], "flags": [], "fullname": "mmap._mmap.resize", "name": "resize", "type": {".class": "CallableType", "arg_kinds": [0, 0], "arg_names": ["self", "newsize"], "arg_types": [{".class": "Instance", "args": [{".class": "TypeVarType", "fullname": "typing.AnyStr", "id": 1, "name": "AnyStr", "upper_bound": "builtins.object", "values": ["builtins.str", "builtins.bytes"], "variance": 0}], "type_ref": "mmap._mmap"}, "builtins.int"], "bound_args": [], "def_extras": {"first_arg": "self"}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "resize of _mmap", "ret_type": {".class": "NoneTyp"}, "variables": []}}}, "seek": {".class": "SymbolTableNode", "kind": "Mdef", "node": {".class": "FuncDef", "arg_kinds": [0, 0, 1], "arg_names": ["self", "pos", "whence"], "flags": [], "fullname": "mmap._mmap.seek", "name": "seek", "type": {".class": "CallableType", "arg_kinds": [0, 0, 1], "arg_names": ["self", "pos", "whence"], "arg_types": [{".class": "Instance", "args": [{".class": "TypeVarType", "fullname": "typing.AnyStr", "id": 1, "name": "AnyStr", "upper_bound": "builtins.object", "values": ["builtins.str", "builtins.bytes"], "variance": 0}], "type_ref": "mmap._mmap"}, "builtins.int", "builtins.int"], "bound_args": [], "def_extras": {"first_arg": "self"}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "seek of _mmap", "ret_type": {".class": "NoneTyp"}, "variables": []}}}, "size": {".class": "SymbolTableNode", "kind": "Mdef", "node": {".class": "FuncDef", "arg_kinds": [0], "arg_names": ["self"], "flags": [], "fullname": "mmap._mmap.size", "name": "size", "type": {".class": "CallableType", "arg_kinds": [0], "arg_names": ["self"], "arg_types": [{".class": "Instance", "args": [{".class": "TypeVarType", "fullname": "typing.AnyStr", "id": 1, "name": "AnyStr", "upper_bound": "builtins.object", "values": ["builtins.str", "builtins.bytes"], "variance": 0}], "type_ref": "mmap._mmap"}], "bound_args": [], "def_extras": {"first_arg": "self"}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "size of _mmap", "ret_type": "builtins.int", "variables": []}}}, "tell": {".class": "SymbolTableNode", "kind": "Mdef", "node": {".class": "FuncDef", "arg_kinds": [0], "arg_names": ["self"], "flags": [], "fullname": "mmap._mmap.tell", "name": "tell", "type": {".class": "CallableType", "arg_kinds": [0], "arg_names": ["self"], "arg_types": [{".class": "Instance", "args": [{".class": "TypeVarType", "fullname": "typing.AnyStr", "id": 1, "name": "AnyStr", "upper_bound": "builtins.object", "values": ["builtins.str", "builtins.bytes"], "variance": 0}], "type_ref": "mmap._mmap"}], "bound_args": [], "def_extras": {"first_arg": "self"}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "tell of _mmap", "ret_type": "builtins.int", "variables": []}}}, "write": {".class": "SymbolTableNode", "kind": "Mdef", "node": {".class": "FuncDef", "arg_kinds": [0, 0], "arg_names": ["self", "bytes"], "flags": [], "fullname": "mmap._mmap.write", "name": "write", "type": {".class": "CallableType", "arg_kinds": [0, 0], "arg_names": ["self", "bytes"], "arg_types": [{".class": "Instance", "args": [{".class": "TypeVarType", "fullname": "typing.AnyStr", "id": 1, "name": "AnyStr", "upper_bound": "builtins.object", "values": ["builtins.str", "builtins.bytes"], "variance": 0}], "type_ref": "mmap._mmap"}, {".class": "TypeVarType", "fullname": "typing.AnyStr", "id": 1, "name": "AnyStr", "upper_bound": "builtins.object", "values": ["builtins.str", "builtins.bytes"], "variance": 0}], "bound_args": [], "def_extras": {"first_arg": "self"}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "write of _mmap", "ret_type": {".class": "NoneTyp"}, "variables": []}}}, "write_byte": {".class": "SymbolTableNode", "kind": "Mdef", "node": {".class": "FuncDef", "arg_kinds": [0, 0], "arg_names": ["self", "byte"], "flags": [], "fullname": "mmap._mmap.write_byte", "name": "write_byte", "type": {".class": "CallableType", "arg_kinds": [0, 0], "arg_names": ["self", "byte"], "arg_types": [{".class": "Instance", "args": [{".class": "TypeVarType", "fullname": "typing.AnyStr", "id": 1, "name": "AnyStr", "upper_bound": "builtins.object", "values": ["builtins.str", "builtins.bytes"], "variance": 0}], "type_ref": "mmap._mmap"}, {".class": "TypeVarType", "fullname": "typing.AnyStr", "id": 1, "name": "AnyStr", "upper_bound": "builtins.object", "values": ["builtins.str", "builtins.bytes"], "variance": 0}], "bound_args": [], "def_extras": {"first_arg": "self"}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "write_byte of _mmap", "ret_type": {".class": "NoneTyp"}, "variables": []}}}}, "tuple_type": null, "type_vars": ["AnyStr"], "typeddict_type": null}}, "mmap": {".class": "SymbolTableNode", "kind": "Gdef", "node": {".class": "TypeInfo", "_promote": null, "abstract_attributes": [], "bases": [{".class": "Instance", "args": [{".class": "AnyType", "missing_import_name": null, "source_any": null, "type_of_any": 4}], "type_ref": "mmap._mmap"}, {".class": "Instance", "args": ["mmap.mmap"], "type_ref": "typing.ContextManager"}, {".class": "Instance", "args": ["builtins.bytes"], "type_ref": "typing.Iterable"}, "typing.Sized"], "declared_metaclass": null, "defn": {".class": "ClassDef", "fullname": "mmap.mmap", "name": "mmap", "type_vars": []}, "flags": [], "fullname": "mmap.mmap", "metaclass_type": "abc.ABCMeta", "metadata": {}, "module_name": "mmap", "mro": ["mmap.mmap", "mmap._mmap", "typing.ContextManager", "typing.Iterable", "typing.Sized", "builtins.object"], "names": {".class": "SymbolTable", "__delitem__": {".class": "SymbolTableNode", "kind": "Mdef", "node": {".class": "FuncDef", "arg_kinds": [0, 0], "arg_names": ["self", "index"], "flags": [], "fullname": "mmap.mmap.__delitem__", "name": "__delitem__", "type": {".class": "CallableType", "arg_kinds": [0, 0], "arg_names": [null, null], "arg_types": ["mmap.mmap", {".class": "UnionType", "items": ["builtins.int", "builtins.slice"]}], "bound_args": [], "def_extras": {"first_arg": "self"}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "__delitem__ of mmap", "ret_type": {".class": "NoneTyp"}, "variables": []}}}, "__getitem__": {".class": "SymbolTableNode", "kind": "Mdef", "node": {".class": "OverloadedFuncDef", "flags": [], "fullname": "mmap.mmap.__getitem__", "impl": null, "items": [{".class": "Decorator", "func": {".class": "FuncDef", "arg_kinds": [0, 0], "arg_names": ["self", "index"], "flags": ["is_overload", "is_decorated"], "fullname": "mmap.mmap.__getitem__", "name": "__getitem__", "type": {".class": "CallableType", "arg_kinds": [0, 0], "arg_names": [null, null], "arg_types": ["mmap.mmap", "builtins.int"], "bound_args": [], "def_extras": {"first_arg": "self"}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "__getitem__ of mmap", "ret_type": "builtins.int", "variables": []}}, "is_overload": true, "var": {".class": "Var", "flags": [], "fullname": null, "name": "__getitem__", "type": null}}, {".class": "Decorator", "func": {".class": "FuncDef", "arg_kinds": [0, 0], "arg_names": ["self", "index"], "flags": ["is_overload", "is_decorated"], "fullname": "mmap.mmap.__getitem__", "name": "__getitem__", "type": {".class": "CallableType", "arg_kinds": [0, 0], "arg_names": [null, null], "arg_types": ["mmap.mmap", "builtins.slice"], "bound_args": [], "def_extras": {"first_arg": "self"}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "__getitem__ of mmap", "ret_type": "builtins.bytes", "variables": []}}, "is_overload": true, "var": {".class": "Var", "flags": [], "fullname": null, "name": "__getitem__", "type": null}}], "type": {".class": "Overloaded", "items": [{".class": "CallableType", "arg_kinds": [0, 0], "arg_names": [null, null], "arg_types": ["mmap.mmap", "builtins.int"], "bound_args": [], "def_extras": {"first_arg": "self"}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "__getitem__ of mmap", "ret_type": "builtins.int", "variables": []}, {".class": "CallableType", "arg_kinds": [0, 0], "arg_names": [null, null], "arg_types": ["mmap.mmap", "builtins.slice"], "bound_args": [], "def_extras": {"first_arg": "self"}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "__getitem__ of mmap", "ret_type": "builtins.bytes", "variables": []}]}}}, "__iter__": {".class": "SymbolTableNode", "kind": "Mdef", "node": {".class": "FuncDef", "arg_kinds": [0], "arg_names": ["self"], "flags": [], "fullname": "mmap.mmap.__iter__", "name": "__iter__", "type": {".class": "CallableType", "arg_kinds": [0], "arg_names": [null], "arg_types": ["mmap.mmap"], "bound_args": [], "def_extras": {"first_arg": "self"}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "__iter__ of mmap", "ret_type": {".class": "Instance", "args": ["builtins.bytes"], "type_ref": "typing.Iterator"}, "variables": []}}}, "__setitem__": {".class": "SymbolTableNode", "kind": "Mdef", "node": {".class": "OverloadedFuncDef", "flags": [], "fullname": "mmap.mmap.__setitem__", "impl": null, "items": [{".class": "Decorator", "func": {".class": "FuncDef", "arg_kinds": [0, 0, 0], "arg_names": ["self", "index", "object"], "flags": ["is_overload", "is_decorated"], "fullname": "mmap.mmap.__setitem__", "name": "__setitem__", "type": {".class": "CallableType", "arg_kinds": [0, 0, 0], "arg_names": [null, null, null], "arg_types": ["mmap.mmap", "builtins.int", "builtins.int"], "bound_args": [], "def_extras": {"first_arg": "self"}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "__setitem__ of mmap", "ret_type": {".class": "NoneTyp"}, "variables": []}}, "is_overload": true, "var": {".class": "Var", "flags": [], "fullname": null, "name": "__setitem__", "type": null}}, {".class": "Decorator", "func": {".class": "FuncDef", "arg_kinds": [0, 0, 0], "arg_names": ["self", "index", "object"], "flags": ["is_overload", "is_decorated"], "fullname": "mmap.mmap.__setitem__", "name": "__setitem__", "type": {".class": "CallableType", "arg_kinds": [0, 0, 0], "arg_names": [null, null, null], "arg_types": ["mmap.mmap", "builtins.slice", "builtins.bytes"], "bound_args": [], "def_extras": {"first_arg": "self"}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "__setitem__ of mmap", "ret_type": {".class": "NoneTyp"}, "variables": []}}, "is_overload": true, "var": {".class": "Var", "flags": [], "fullname": null, "name": "__setitem__", "type": null}}], "type": {".class": "Overloaded", "items": [{".class": "CallableType", "arg_kinds": [0, 0, 0], "arg_names": [null, null, null], "arg_types": ["mmap.mmap", "builtins.int", "builtins.int"], "bound_args": [], "def_extras": {"first_arg": "self"}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "__setitem__ of mmap", "ret_type": {".class": "NoneTyp"}, "variables": []}, {".class": "CallableType", "arg_kinds": [0, 0, 0], "arg_names": [null, null, null], "arg_types": ["mmap.mmap", "builtins.slice", "builtins.bytes"], "bound_args": [], "def_extras": {"first_arg": "self"}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "__setitem__ of mmap", "ret_type": {".class": "NoneTyp"}, "variables": []}]}}}, "closed": {".class": "SymbolTableNode", "kind": "Mdef", "node": {".class": "Var", "flags": ["is_initialized_in_class"], "fullname": "mmap.mmap.closed", "name": "closed", "type": "builtins.bool"}}, "rfind": {".class": "SymbolTableNode", "kind": "Mdef", "node": {".class": "FuncDef", "arg_kinds": [0, 0, 1, 1], "arg_names": ["self", "sub", "start", "stop"], "flags": [], "fullname": "mmap.mmap.rfind", "name": "rfind", "type": {".class": "CallableType", "arg_kinds": [0, 0, 1, 1], "arg_names": ["self", "sub", "start", "stop"], "arg_types": ["mmap.mmap", "builtins.bytes", "builtins.int", "builtins.int"], "bound_args": [], "def_extras": {"first_arg": "self"}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "rfind of mmap", "ret_type": "builtins.int", "variables": []}}}}, "tuple_type": null, "type_vars": [], "typeddict_type": null}}, "overload": {".class": "SymbolTableNode", "cross_ref": "typing.overload", "kind": "Gdef", "module_hidden": true, "module_public": false}, "sys": {".class": "SymbolTableNode", "cross_ref": "sys", "kind": "Gdef", "module_hidden": true, "module_public": false}}, "path": "/usr/lib/python3/dist-packages/mypy/typeshed/stdlib/2and3/mmap.pyi"}
\ No newline at end of file
diff --git a/Postgres/StressTests/.mypy_cache/3.7/mmap.meta.json b/Postgres/StressTests/.mypy_cache/3.7/mmap.meta.json
deleted file mode 100644
index 003aafe..0000000
--- a/Postgres/StressTests/.mypy_cache/3.7/mmap.meta.json
+++ /dev/null
@@ -1 +0,0 @@
-{"child_modules": [], "data_mtime": 1553688971, "dep_lines": [1, 2, 1, 1], "dep_prios": [10, 5, 5, 30], "dependencies": ["sys", "typing", "builtins", "abc"], "hash": "a527e2c242313095d9dc614864bfe399", "id": "mmap", "ignore_all": true, "interface_hash": "ba45a849db3e37fbf3939ccc9a9c001b", "mtime": 1549659920, "options": {"allow_redefinition": false, "allow_untyped_globals": false, "always_false": [], "always_true": [], "bazel": false, "check_untyped_defs": false, "disallow_any_decorated": false, "disallow_any_explicit": false, "disallow_any_expr": false, "disallow_any_generics": false, "disallow_any_unimported": false, "disallow_incomplete_defs": false, "disallow_subclassing_any": false, "disallow_untyped_calls": false, "disallow_untyped_decorators": false, "disallow_untyped_defs": false, "follow_imports": "normal", "follow_imports_for_stubs": false, "ignore_errors": false, "ignore_missing_imports": false, "local_partial_types": false, "mypyc": false, "new_semantic_analyzer": false, "no_implicit_optional": false, "platform": "linux", "plugins": [], "show_none_errors": true, "strict_optional": true, "strict_optional_whitelist": null, "warn_no_return": true, "warn_return_any": false, "warn_unused_ignores": false}, "path": "/usr/lib/python3/dist-packages/mypy/typeshed/stdlib/2and3/mmap.pyi", "size": 3115, "suppressed": [], "version_id": "0.670"}
\ No newline at end of file
diff --git a/Postgres/StressTests/.mypy_cache/3.7/os/__init__.data.json b/Postgres/StressTests/.mypy_cache/3.7/os/__init__.data.json
deleted file mode 100644
index 6d6ddab..0000000
--- a/Postgres/StressTests/.mypy_cache/3.7/os/__init__.data.json
+++ /dev/null
@@ -1 +0,0 @@
-{".class": "MypyFile", "_fullname": "os", "is_partial_stub_package": false, "is_stub": true, "names": {".class": "SymbolTable", "Any": {".class": "SymbolTableNode", "cross_ref": "typing.Any", "kind": "Gdef", "module_hidden": true, "module_public": false}, "AnyStr": {".class": "SymbolTableNode", "cross_ref": "typing.AnyStr", "kind": "Gdef", "module_hidden": true, "module_public": false}, "CLD_CONTINUED": {".class": "SymbolTableNode", "kind": "Gdef", "node": {".class": "Var", "flags": [], "fullname": "os.CLD_CONTINUED", "name": "CLD_CONTINUED", "type": "builtins.int"}}, "CLD_DUMPED": {".class": "SymbolTableNode", "kind": "Gdef", "node": {".class": "Var", "flags": [], "fullname": "os.CLD_DUMPED", "name": "CLD_DUMPED", "type": "builtins.int"}}, "CLD_EXITED": {".class": "SymbolTableNode", "kind": "Gdef", "node": {".class": "Var", "flags": [], "fullname": "os.CLD_EXITED", "name": "CLD_EXITED", "type": "builtins.int"}}, "CLD_TRAPPED": {".class": "SymbolTableNode", "kind": "Gdef", "node": {".class": "Var", "flags": [], "fullname": "os.CLD_TRAPPED", "name": "CLD_TRAPPED", "type": "builtins.int"}}, "Callable": {".class": "SymbolTableNode", "cross_ref": "typing.Callable", "kind": "Gdef", "module_hidden": true, "module_public": false}, "ContextManager": {".class": "SymbolTableNode", "cross_ref": "typing.ContextManager", "kind": "Gdef", "module_hidden": true, "module_public": false}, "Dict": {".class": "SymbolTableNode", "cross_ref": "typing.Dict", "kind": "Gdef", "module_hidden": true, "module_public": false}, "DirEntry": {".class": "SymbolTableNode", "kind": "Gdef", "node": {".class": "TypeInfo", "_promote": null, "abstract_attributes": [], "bases": [{".class": "Instance", "args": [{".class": "TypeVarType", "fullname": "typing.AnyStr", "id": 1, "name": "AnyStr", "upper_bound": "builtins.object", "values": ["builtins.str", "builtins.bytes"], "variance": 0}], "type_ref": "builtins._PathLike"}], "declared_metaclass": null, "defn": {".class": "ClassDef", "fullname": "os.DirEntry", "name": "DirEntry", "type_vars": [{".class": "TypeVarDef", "fullname": "typing.AnyStr", "id": 1, "name": "AnyStr", "upper_bound": "builtins.object", "values": ["builtins.str", "builtins.bytes"], "variance": 0}]}, "flags": [], "fullname": "os.DirEntry", "metaclass_type": null, "metadata": {}, "module_name": "os", "mro": ["os.DirEntry", "builtins._PathLike", "builtins.object"], "names": {".class": "SymbolTable", "__fspath__": {".class": "SymbolTableNode", "kind": "Mdef", "node": {".class": "FuncDef", "arg_kinds": [0], "arg_names": ["self"], "flags": [], "fullname": "os.DirEntry.__fspath__", "name": "__fspath__", "type": {".class": "CallableType", "arg_kinds": [0], "arg_names": ["self"], "arg_types": [{".class": "Instance", "args": [{".class": "TypeVarType", "fullname": "typing.AnyStr", "id": 1, "name": "AnyStr", "upper_bound": "builtins.object", "values": ["builtins.str", "builtins.bytes"], "variance": 0}], "type_ref": "os.DirEntry"}], "bound_args": [], "def_extras": {"first_arg": "self"}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "__fspath__ of DirEntry", "ret_type": {".class": "TypeVarType", "fullname": "typing.AnyStr", "id": 1, "name": "AnyStr", "upper_bound": "builtins.object", "values": ["builtins.str", "builtins.bytes"], "variance": 0}, "variables": []}}}, "inode": {".class": "SymbolTableNode", "kind": "Mdef", "node": {".class": "FuncDef", "arg_kinds": [0], "arg_names": ["self"], "flags": [], "fullname": "os.DirEntry.inode", "name": "inode", "type": {".class": "CallableType", "arg_kinds": [0], "arg_names": ["self"], "arg_types": [{".class": "Instance", "args": [{".class": "TypeVarType", "fullname": "typing.AnyStr", "id": 1, "name": "AnyStr", "upper_bound": "builtins.object", "values": ["builtins.str", "builtins.bytes"], "variance": 0}], "type_ref": "os.DirEntry"}], "bound_args": [], "def_extras": {"first_arg": "self"}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "inode of DirEntry", "ret_type": "builtins.int", "variables": []}}}, "is_dir": {".class": "SymbolTableNode", "kind": "Mdef", "node": {".class": "FuncDef", "arg_kinds": [0, 5], "arg_names": ["self", "follow_symlinks"], "flags": [], "fullname": "os.DirEntry.is_dir", "name": "is_dir", "type": {".class": "CallableType", "arg_kinds": [0, 5], "arg_names": ["self", "follow_symlinks"], "arg_types": [{".class": "Instance", "args": [{".class": "TypeVarType", "fullname": "typing.AnyStr", "id": 1, "name": "AnyStr", "upper_bound": "builtins.object", "values": ["builtins.str", "builtins.bytes"], "variance": 0}], "type_ref": "os.DirEntry"}, "builtins.bool"], "bound_args": [], "def_extras": {"first_arg": "self"}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "is_dir of DirEntry", "ret_type": "builtins.bool", "variables": []}}}, "is_file": {".class": "SymbolTableNode", "kind": "Mdef", "node": {".class": "FuncDef", "arg_kinds": [0, 5], "arg_names": ["self", "follow_symlinks"], "flags": [], "fullname": "os.DirEntry.is_file", "name": "is_file", "type": {".class": "CallableType", "arg_kinds": [0, 5], "arg_names": ["self", "follow_symlinks"], "arg_types": [{".class": "Instance", "args": [{".class": "TypeVarType", "fullname": "typing.AnyStr", "id": 1, "name": "AnyStr", "upper_bound": "builtins.object", "values": ["builtins.str", "builtins.bytes"], "variance": 0}], "type_ref": "os.DirEntry"}, "builtins.bool"], "bound_args": [], "def_extras": {"first_arg": "self"}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "is_file of DirEntry", "ret_type": "builtins.bool", "variables": []}}}, "is_symlink": {".class": "SymbolTableNode", "kind": "Mdef", "node": {".class": "FuncDef", "arg_kinds": [0], "arg_names": ["self"], "flags": [], "fullname": "os.DirEntry.is_symlink", "name": "is_symlink", "type": {".class": "CallableType", "arg_kinds": [0], "arg_names": ["self"], "arg_types": [{".class": "Instance", "args": [{".class": "TypeVarType", "fullname": "typing.AnyStr", "id": 1, "name": "AnyStr", "upper_bound": "builtins.object", "values": ["builtins.str", "builtins.bytes"], "variance": 0}], "type_ref": "os.DirEntry"}], "bound_args": [], "def_extras": {"first_arg": "self"}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "is_symlink of DirEntry", "ret_type": "builtins.bool", "variables": []}}}, "name": {".class": "SymbolTableNode", "kind": "Mdef", "node": {".class": "Var", "flags": ["is_initialized_in_class"], "fullname": "os.DirEntry.name", "name": "name", "type": {".class": "TypeVarType", "fullname": "typing.AnyStr", "id": 1, "name": "AnyStr", "upper_bound": "builtins.object", "values": ["builtins.str", "builtins.bytes"], "variance": 0}}}, "path": {".class": "SymbolTableNode", "kind": "Mdef", "node": {".class": "Var", "flags": ["is_initialized_in_class"], "fullname": "os.DirEntry.path", "name": "path", "type": {".class": "TypeVarType", "fullname": "typing.AnyStr", "id": 1, "name": "AnyStr", "upper_bound": "builtins.object", "values": ["builtins.str", "builtins.bytes"], "variance": 0}}}, "stat": {".class": "SymbolTableNode", "kind": "Mdef", "node": {".class": "FuncDef", "arg_kinds": [0, 5], "arg_names": ["self", "follow_symlinks"], "flags": [], "fullname": "os.DirEntry.stat", "name": "stat", "type": {".class": "CallableType", "arg_kinds": [0, 5], "arg_names": ["self", "follow_symlinks"], "arg_types": [{".class": "Instance", "args": [{".class": "TypeVarType", "fullname": "typing.AnyStr", "id": 1, "name": "AnyStr", "upper_bound": "builtins.object", "values": ["builtins.str", "builtins.bytes"], "variance": 0}], "type_ref": "os.DirEntry"}, "builtins.bool"], "bound_args": [], "def_extras": {"first_arg": "self"}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "stat of DirEntry", "ret_type": "os.stat_result", "variables": []}}}}, "tuple_type": null, "type_vars": ["AnyStr"], "typeddict_type": null}}, "EX_CANTCREAT": {".class": "SymbolTableNode", "kind": "Gdef", "node": {".class": "Var", "flags": [], "fullname": "os.EX_CANTCREAT", "name": "EX_CANTCREAT", "type": "builtins.int"}}, "EX_CONFIG": {".class": "SymbolTableNode", "kind": "Gdef", "node": {".class": "Var", "flags": [], "fullname": "os.EX_CONFIG", "name": "EX_CONFIG", "type": "builtins.int"}}, "EX_DATAERR": {".class": "SymbolTableNode", "kind": "Gdef", "node": {".class": "Var", "flags": [], "fullname": "os.EX_DATAERR", "name": "EX_DATAERR", "type": "builtins.int"}}, "EX_IOERR": {".class": "SymbolTableNode", "kind": "Gdef", "node": {".class": "Var", "flags": [], "fullname": "os.EX_IOERR", "name": "EX_IOERR", "type": "builtins.int"}}, "EX_NOHOST": {".class": "SymbolTableNode", "kind": "Gdef", "node": {".class": "Var", "flags": [], "fullname": "os.EX_NOHOST", "name": "EX_NOHOST", "type": "builtins.int"}}, "EX_NOINPUT": {".class": "SymbolTableNode", "kind": "Gdef", "node": {".class": "Var", "flags": [], "fullname": "os.EX_NOINPUT", "name": "EX_NOINPUT", "type": "builtins.int"}}, "EX_NOPERM": {".class": "SymbolTableNode", "kind": "Gdef", "node": {".class": "Var", "flags": [], "fullname": "os.EX_NOPERM", "name": "EX_NOPERM", "type": "builtins.int"}}, "EX_NOTFOUND": {".class": "SymbolTableNode", "kind": "Gdef", "node": {".class": "Var", "flags": [], "fullname": "os.EX_NOTFOUND", "name": "EX_NOTFOUND", "type": "builtins.int"}}, "EX_NOUSER": {".class": "SymbolTableNode", "kind": "Gdef", "node": {".class": "Var", "flags": [], "fullname": "os.EX_NOUSER", "name": "EX_NOUSER", "type": "builtins.int"}}, "EX_OK": {".class": "SymbolTableNode", "kind": "Gdef", "node": {".class": "Var", "flags": [], "fullname": "os.EX_OK", "name": "EX_OK", "type": "builtins.int"}}, "EX_OSERR": {".class": "SymbolTableNode", "kind": "Gdef", "node": {".class": "Var", "flags": [], "fullname": "os.EX_OSERR", "name": "EX_OSERR", "type": "builtins.int"}}, "EX_OSFILE": {".class": "SymbolTableNode", "kind": "Gdef", "node": {".class": "Var", "flags": [], "fullname": "os.EX_OSFILE", "name": "EX_OSFILE", "type": "builtins.int"}}, "EX_PROTOCOL": {".class": "SymbolTableNode", "kind": "Gdef", "node": {".class": "Var", "flags": [], "fullname": "os.EX_PROTOCOL", "name": "EX_PROTOCOL", "type": "builtins.int"}}, "EX_SOFTWARE": {".class": "SymbolTableNode", "kind": "Gdef", "node": {".class": "Var", "flags": [], "fullname": "os.EX_SOFTWARE", "name": "EX_SOFTWARE", "type": "builtins.int"}}, "EX_TEMPFAIL": {".class": "SymbolTableNode", "kind": "Gdef", "node": {".class": "Var", "flags": [], "fullname": "os.EX_TEMPFAIL", "name": "EX_TEMPFAIL", "type": "builtins.int"}}, "EX_UNAVAILABLE": {".class": "SymbolTableNode", "kind": "Gdef", "node": {".class": "Var", "flags": [], "fullname": "os.EX_UNAVAILABLE", "name": "EX_UNAVAILABLE", "type": "builtins.int"}}, "EX_USAGE": {".class": "SymbolTableNode", "kind": "Gdef", "node": {".class": "Var", "flags": [], "fullname": "os.EX_USAGE", "name": "EX_USAGE", "type": "builtins.int"}}, "F_LOCK": {".class": "SymbolTableNode", "kind": "Gdef", "node": {".class": "Var", "flags": [], "fullname": "os.F_LOCK", "name": "F_LOCK", "type": "builtins.int"}}, "F_OK": {".class": "SymbolTableNode", "kind": "Gdef", "node": {".class": "Var", "flags": [], "fullname": "os.F_OK", "name": "F_OK", "type": "builtins.int"}}, "F_TEST": {".class": "SymbolTableNode", "kind": "Gdef", "node": {".class": "Var", "flags": [], "fullname": "os.F_TEST", "name": "F_TEST", "type": "builtins.int"}}, "F_TLOCK": {".class": "SymbolTableNode", "kind": "Gdef", "node": {".class": "Var", "flags": [], "fullname": "os.F_TLOCK", "name": "F_TLOCK", "type": "builtins.int"}}, "F_ULOCK": {".class": "SymbolTableNode", "kind": "Gdef", "node": {".class": "Var", "flags": [], "fullname": "os.F_ULOCK", "name": "F_ULOCK", "type": "builtins.int"}}, "Generic": {".class": "SymbolTableNode", "cross_ref": "typing.Generic", "kind": "Gdef", "module_hidden": true, "module_public": false}, "IO": {".class": "SymbolTableNode", "cross_ref": "typing.IO", "kind": "Gdef", "module_hidden": true, "module_public": false}, "Iterable": {".class": "SymbolTableNode", "cross_ref": "typing.Iterable", "kind": "Gdef", "module_hidden": true, "module_public": false}, "Iterator": {".class": "SymbolTableNode", "cross_ref": "typing.Iterator", "kind": "Gdef", "module_hidden": true, "module_public": false}, "List": {".class": "SymbolTableNode", "cross_ref": "typing.List", "kind": "Gdef", "module_hidden": true, "module_public": false}, "Mapping": {".class": "SymbolTableNode", "cross_ref": "typing.Mapping", "kind": "Gdef", "module_hidden": true, "module_public": false}, "MutableMapping": {".class": "SymbolTableNode", "cross_ref": "typing.MutableMapping", "kind": "Gdef", "module_hidden": true, "module_public": false}, "NamedTuple": {".class": "SymbolTableNode", "cross_ref": "typing.NamedTuple", "kind": "Gdef", "module_hidden": true, "module_public": false}, "NoReturn": {".class": "SymbolTableNode", "cross_ref": "typing.NoReturn", "kind": "Gdef", "module_hidden": true, "module_public": false}, "O_APPEND": {".class": "SymbolTableNode", "kind": "Gdef", "node": {".class": "Var", "flags": [], "fullname": "os.O_APPEND", "name": "O_APPEND", "type": "builtins.int"}}, "O_ASYNC": {".class": "SymbolTableNode", "kind": "Gdef", "node": {".class": "Var", "flags": [], "fullname": "os.O_ASYNC", "name": "O_ASYNC", "type": "builtins.int"}}, "O_BINARY": {".class": "SymbolTableNode", "kind": "Gdef", "node": {".class": "Var", "flags": [], "fullname": "os.O_BINARY", "name": "O_BINARY", "type": "builtins.int"}}, "O_CLOEXEC": {".class": "SymbolTableNode", "kind": "Gdef", "node": {".class": "Var", "flags": [], "fullname": "os.O_CLOEXEC", "name": "O_CLOEXEC", "type": "builtins.int"}}, "O_CREAT": {".class": "SymbolTableNode", "kind": "Gdef", "node": {".class": "Var", "flags": [], "fullname": "os.O_CREAT", "name": "O_CREAT", "type": "builtins.int"}}, "O_DIRECT": {".class": "SymbolTableNode", "kind": "Gdef", "node": {".class": "Var", "flags": [], "fullname": "os.O_DIRECT", "name": "O_DIRECT", "type": "builtins.int"}}, "O_DIRECTORY": {".class": "SymbolTableNode", "kind": "Gdef", "node": {".class": "Var", "flags": [], "fullname": "os.O_DIRECTORY", "name": "O_DIRECTORY", "type": "builtins.int"}}, "O_DSYNC": {".class": "SymbolTableNode", "kind": "Gdef", "node": {".class": "Var", "flags": [], "fullname": "os.O_DSYNC", "name": "O_DSYNC", "type": "builtins.int"}}, "O_EXCL": {".class": "SymbolTableNode", "kind": "Gdef", "node": {".class": "Var", "flags": [], "fullname": "os.O_EXCL", "name": "O_EXCL", "type": "builtins.int"}}, "O_EXLOCK": {".class": "SymbolTableNode", "kind": "Gdef", "node": {".class": "Var", "flags": [], "fullname": "os.O_EXLOCK", "name": "O_EXLOCK", "type": "builtins.int"}}, "O_LARGEFILE": {".class": "SymbolTableNode", "kind": "Gdef", "node": {".class": "Var", "flags": [], "fullname": "os.O_LARGEFILE", "name": "O_LARGEFILE", "type": "builtins.int"}}, "O_NDELAY": {".class": "SymbolTableNode", "kind": "Gdef", "node": {".class": "Var", "flags": [], "fullname": "os.O_NDELAY", "name": "O_NDELAY", "type": "builtins.int"}}, "O_NOATIME": {".class": "SymbolTableNode", "kind": "Gdef", "node": {".class": "Var", "flags": [], "fullname": "os.O_NOATIME", "name": "O_NOATIME", "type": "builtins.int"}}, "O_NOCTTY": {".class": "SymbolTableNode", "kind": "Gdef", "node": {".class": "Var", "flags": [], "fullname": "os.O_NOCTTY", "name": "O_NOCTTY", "type": "builtins.int"}}, "O_NOFOLLOW": {".class": "SymbolTableNode", "kind": "Gdef", "node": {".class": "Var", "flags": [], "fullname": "os.O_NOFOLLOW", "name": "O_NOFOLLOW", "type": "builtins.int"}}, "O_NOINHERIT": {".class": "SymbolTableNode", "kind": "Gdef", "node": {".class": "Var", "flags": [], "fullname": "os.O_NOINHERIT", "name": "O_NOINHERIT", "type": "builtins.int"}}, "O_NONBLOCK": {".class": "SymbolTableNode", "kind": "Gdef", "node": {".class": "Var", "flags": [], "fullname": "os.O_NONBLOCK", "name": "O_NONBLOCK", "type": "builtins.int"}}, "O_PATH": {".class": "SymbolTableNode", "kind": "Gdef", "node": {".class": "Var", "flags": [], "fullname": "os.O_PATH", "name": "O_PATH", "type": "builtins.int"}}, "O_RANDOM": {".class": "SymbolTableNode", "kind": "Gdef", "node": {".class": "Var", "flags": [], "fullname": "os.O_RANDOM", "name": "O_RANDOM", "type": "builtins.int"}}, "O_RDONLY": {".class": "SymbolTableNode", "kind": "Gdef", "node": {".class": "Var", "flags": [], "fullname": "os.O_RDONLY", "name": "O_RDONLY", "type": "builtins.int"}}, "O_RDWR": {".class": "SymbolTableNode", "kind": "Gdef", "node": {".class": "Var", "flags": [], "fullname": "os.O_RDWR", "name": "O_RDWR", "type": "builtins.int"}}, "O_RSYNC": {".class": "SymbolTableNode", "kind": "Gdef", "node": {".class": "Var", "flags": [], "fullname": "os.O_RSYNC", "name": "O_RSYNC", "type": "builtins.int"}}, "O_SEQUENTIAL": {".class": "SymbolTableNode", "kind": "Gdef", "node": {".class": "Var", "flags": [], "fullname": "os.O_SEQUENTIAL", "name": "O_SEQUENTIAL", "type": "builtins.int"}}, "O_SHLOCK": {".class": "SymbolTableNode", "kind": "Gdef", "node": {".class": "Var", "flags": [], "fullname": "os.O_SHLOCK", "name": "O_SHLOCK", "type": "builtins.int"}}, "O_SHORT_LIVED": {".class": "SymbolTableNode", "kind": "Gdef", "node": {".class": "Var", "flags": [], "fullname": "os.O_SHORT_LIVED", "name": "O_SHORT_LIVED", "type": "builtins.int"}}, "O_SYNC": {".class": "SymbolTableNode", "kind": "Gdef", "node": {".class": "Var", "flags": [], "fullname": "os.O_SYNC", "name": "O_SYNC", "type": "builtins.int"}}, "O_TEMPORARY": {".class": "SymbolTableNode", "kind": "Gdef", "node": {".class": "Var", "flags": [], "fullname": "os.O_TEMPORARY", "name": "O_TEMPORARY", "type": "builtins.int"}}, "O_TEXT": {".class": "SymbolTableNode", "kind": "Gdef", "node": {".class": "Var", "flags": [], "fullname": "os.O_TEXT", "name": "O_TEXT", "type": "builtins.int"}}, "O_TMPFILE": {".class": "SymbolTableNode", "kind": "Gdef", "node": {".class": "Var", "flags": [], "fullname": "os.O_TMPFILE", "name": "O_TMPFILE", "type": "builtins.int"}}, "O_TRUNC": {".class": "SymbolTableNode", "kind": "Gdef", "node": {".class": "Var", "flags": [], "fullname": "os.O_TRUNC", "name": "O_TRUNC", "type": "builtins.int"}}, "O_WRONLY": {".class": "SymbolTableNode", "kind": "Gdef", "node": {".class": "Var", "flags": [], "fullname": "os.O_WRONLY", "name": "O_WRONLY", "type": "builtins.int"}}, "Optional": {".class": "SymbolTableNode", "cross_ref": "typing.Optional", "kind": "Gdef", "module_hidden": true, "module_public": false}, "POSIX_FADV_DONTNEED": {".class": "SymbolTableNode", "kind": "Gdef", "node": {".class": "Var", "flags": [], "fullname": "os.POSIX_FADV_DONTNEED", "name": "POSIX_FADV_DONTNEED", "type": "builtins.int"}}, "POSIX_FADV_NOREUSE": {".class": "SymbolTableNode", "kind": "Gdef", "node": {".class": "Var", "flags": [], "fullname": "os.POSIX_FADV_NOREUSE", "name": "POSIX_FADV_NOREUSE", "type": "builtins.int"}}, "POSIX_FADV_NORMAL": {".class": "SymbolTableNode", "kind": "Gdef", "node": {".class": "Var", "flags": [], "fullname": "os.POSIX_FADV_NORMAL", "name": "POSIX_FADV_NORMAL", "type": "builtins.int"}}, "POSIX_FADV_RANDOM": {".class": "SymbolTableNode", "kind": "Gdef", "node": {".class": "Var", "flags": [], "fullname": "os.POSIX_FADV_RANDOM", "name": "POSIX_FADV_RANDOM", "type": "builtins.int"}}, "POSIX_FADV_SEQUENTIAL": {".class": "SymbolTableNode", "kind": "Gdef", "node": {".class": "Var", "flags": [], "fullname": "os.POSIX_FADV_SEQUENTIAL", "name": "POSIX_FADV_SEQUENTIAL", "type": "builtins.int"}}, "POSIX_FADV_WILLNEED": {".class": "SymbolTableNode", "kind": "Gdef", "node": {".class": "Var", "flags": [], "fullname": "os.POSIX_FADV_WILLNEED", "name": "POSIX_FADV_WILLNEED", "type": "builtins.int"}}, "PRIO_PGRP": {".class": "SymbolTableNode", "kind": "Gdef", "node": {".class": "Var", "flags": [], "fullname": "os.PRIO_PGRP", "name": "PRIO_PGRP", "type": "builtins.int"}}, "PRIO_PROCESS": {".class": "SymbolTableNode", "kind": "Gdef", "node": {".class": "Var", "flags": [], "fullname": "os.PRIO_PROCESS", "name": "PRIO_PROCESS", "type": "builtins.int"}}, "PRIO_USER": {".class": "SymbolTableNode", "kind": "Gdef", "node": {".class": "Var", "flags": [], "fullname": "os.PRIO_USER", "name": "PRIO_USER", "type": "builtins.int"}}, "P_ALL": {".class": "SymbolTableNode", "kind": "Gdef", "node": {".class": "Var", "flags": [], "fullname": "os.P_ALL", "name": "P_ALL", "type": "builtins.int"}}, "P_NOWAIT": {".class": "SymbolTableNode", "kind": "Gdef", "node": {".class": "Var", "flags": [], "fullname": "os.P_NOWAIT", "name": "P_NOWAIT", "type": "builtins.int"}}, "P_NOWAITO": {".class": "SymbolTableNode", "kind": "Gdef", "node": {".class": "Var", "flags": [], "fullname": "os.P_NOWAITO", "name": "P_NOWAITO", "type": "builtins.int"}}, "P_PGID": {".class": "SymbolTableNode", "kind": "Gdef", "node": {".class": "Var", "flags": [], "fullname": "os.P_PGID", "name": "P_PGID", "type": "builtins.int"}}, "P_PID": {".class": "SymbolTableNode", "kind": "Gdef", "node": {".class": "Var", "flags": [], "fullname": "os.P_PID", "name": "P_PID", "type": "builtins.int"}}, "P_WAIT": {".class": "SymbolTableNode", "kind": "Gdef", "node": {".class": "Var", "flags": [], "fullname": "os.P_WAIT", "name": "P_WAIT", "type": "builtins.int"}}, "PathLike": {".class": "SymbolTableNode", "cross_ref": "builtins._PathLike", "kind": "Gdef"}, "RTLD_DEEPBIND": {".class": "SymbolTableNode", "kind": "Gdef", "node": {".class": "Var", "flags": [], "fullname": "os.RTLD_DEEPBIND", "name": "RTLD_DEEPBIND", "type": "builtins.int"}}, "RTLD_GLOBAL": {".class": "SymbolTableNode", "kind": "Gdef", "node": {".class": "Var", "flags": [], "fullname": "os.RTLD_GLOBAL", "name": "RTLD_GLOBAL", "type": "builtins.int"}}, "RTLD_LAZY": {".class": "SymbolTableNode", "kind": "Gdef", "node": {".class": "Var", "flags": [], "fullname": "os.RTLD_LAZY", "name": "RTLD_LAZY", "type": "builtins.int"}}, "RTLD_LOCAL": {".class": "SymbolTableNode", "kind": "Gdef", "node": {".class": "Var", "flags": [], "fullname": "os.RTLD_LOCAL", "name": "RTLD_LOCAL", "type": "builtins.int"}}, "RTLD_NODELETE": {".class": "SymbolTableNode", "kind": "Gdef", "node": {".class": "Var", "flags": [], "fullname": "os.RTLD_NODELETE", "name": "RTLD_NODELETE", "type": "builtins.int"}}, "RTLD_NOLOAD": {".class": "SymbolTableNode", "kind": "Gdef", "node": {".class": "Var", "flags": [], "fullname": "os.RTLD_NOLOAD", "name": "RTLD_NOLOAD", "type": "builtins.int"}}, "RTLD_NOW": {".class": "SymbolTableNode", "kind": "Gdef", "node": {".class": "Var", "flags": [], "fullname": "os.RTLD_NOW", "name": "RTLD_NOW", "type": "builtins.int"}}, "R_OK": {".class": "SymbolTableNode", "kind": "Gdef", "node": {".class": "Var", "flags": [], "fullname": "os.R_OK", "name": "R_OK", "type": "builtins.int"}}, "SCHED_BATCH": {".class": "SymbolTableNode", "kind": "Gdef", "node": {".class": "Var", "flags": [], "fullname": "os.SCHED_BATCH", "name": "SCHED_BATCH", "type": "builtins.int"}}, "SCHED_FIFO": {".class": "SymbolTableNode", "kind": "Gdef", "node": {".class": "Var", "flags": [], "fullname": "os.SCHED_FIFO", "name": "SCHED_FIFO", "type": "builtins.int"}}, "SCHED_IDLE": {".class": "SymbolTableNode", "kind": "Gdef", "node": {".class": "Var", "flags": [], "fullname": "os.SCHED_IDLE", "name": "SCHED_IDLE", "type": "builtins.int"}}, "SCHED_OTHER": {".class": "SymbolTableNode", "kind": "Gdef", "node": {".class": "Var", "flags": [], "fullname": "os.SCHED_OTHER", "name": "SCHED_OTHER", "type": "builtins.int"}}, "SCHED_RESET_ON_FORK": {".class": "SymbolTableNode", "kind": "Gdef", "node": {".class": "Var", "flags": [], "fullname": "os.SCHED_RESET_ON_FORK", "name": "SCHED_RESET_ON_FORK", "type": "builtins.int"}}, "SCHED_RR": {".class": "SymbolTableNode", "kind": "Gdef", "node": {".class": "Var", "flags": [], "fullname": "os.SCHED_RR", "name": "SCHED_RR", "type": "builtins.int"}}, "SCHED_SPORADIC": {".class": "SymbolTableNode", "kind": "Gdef", "node": {".class": "Var", "flags": [], "fullname": "os.SCHED_SPORADIC", "name": "SCHED_SPORADIC", "type": "builtins.int"}}, "SEEK_CUR": {".class": "SymbolTableNode", "kind": "Gdef", "node": {".class": "Var", "flags": [], "fullname": "os.SEEK_CUR", "name": "SEEK_CUR", "type": "builtins.int"}}, "SEEK_DATA": {".class": "SymbolTableNode", "kind": "Gdef", "node": {".class": "Var", "flags": [], "fullname": "os.SEEK_DATA", "name": "SEEK_DATA", "type": "builtins.int"}}, "SEEK_END": {".class": "SymbolTableNode", "kind": "Gdef", "node": {".class": "Var", "flags": [], "fullname": "os.SEEK_END", "name": "SEEK_END", "type": "builtins.int"}}, "SEEK_HOLE": {".class": "SymbolTableNode", "kind": "Gdef", "node": {".class": "Var", "flags": [], "fullname": "os.SEEK_HOLE", "name": "SEEK_HOLE", "type": "builtins.int"}}, "SEEK_SET": {".class": "SymbolTableNode", "kind": "Gdef", "node": {".class": "Var", "flags": [], "fullname": "os.SEEK_SET", "name": "SEEK_SET", "type": "builtins.int"}}, "SF_MNOWAIT": {".class": "SymbolTableNode", "kind": "Gdef", "node": {".class": "Var", "flags": [], "fullname": "os.SF_MNOWAIT", "name": "SF_MNOWAIT", "type": "builtins.int"}}, "SF_NODISKIO": {".class": "SymbolTableNode", "kind": "Gdef", "node": {".class": "Var", "flags": [], "fullname": "os.SF_NODISKIO", "name": "SF_NODISKIO", "type": "builtins.int"}}, "SF_SYNC": {".class": "SymbolTableNode", "kind": "Gdef", "node": {".class": "Var", "flags": [], "fullname": "os.SF_SYNC", "name": "SF_SYNC", "type": "builtins.int"}}, "Sequence": {".class": "SymbolTableNode", "cross_ref": "typing.Sequence", "kind": "Gdef", "module_hidden": true, "module_public": false}, "Set": {".class": "SymbolTableNode", "cross_ref": "typing.Set", "kind": "Gdef", "module_hidden": true, "module_public": false}, "TMP_MAX": {".class": "SymbolTableNode", "kind": "Gdef", "node": {".class": "Var", "flags": [], "fullname": "os.TMP_MAX", "name": "TMP_MAX", "type": "builtins.int"}}, "Text": {".class": "SymbolTableNode", "cross_ref": "typing.Text", "kind": "Gdef", "module_hidden": true, "module_public": false}, "Tuple": {".class": "SymbolTableNode", "cross_ref": "typing.Tuple", "kind": "Gdef", "module_hidden": true, "module_public": false}, "TypeVar": {".class": "SymbolTableNode", "cross_ref": "typing.TypeVar", "kind": "Gdef", "module_hidden": true, "module_public": false}, "Union": {".class": "SymbolTableNode", "cross_ref": "typing.Union", "kind": "Gdef", "module_hidden": true, "module_public": false}, "WCONTINUED": {".class": "SymbolTableNode", "kind": "Gdef", "node": {".class": "Var", "flags": [], "fullname": "os.WCONTINUED", "name": "WCONTINUED", "type": "builtins.int"}}, "WCOREDUMP": {".class": "SymbolTableNode", "kind": "Gdef", "node": {".class": "FuncDef", "arg_kinds": [0], "arg_names": ["status"], "flags": ["is_conditional"], "fullname": "os.WCOREDUMP", "name": "WCOREDUMP", "type": {".class": "CallableType", "arg_kinds": [0], "arg_names": ["status"], "arg_types": ["builtins.int"], "bound_args": [], "def_extras": {"first_arg": null}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "WCOREDUMP", "ret_type": "builtins.bool", "variables": []}}}, "WEXITED": {".class": "SymbolTableNode", "kind": "Gdef", "node": {".class": "Var", "flags": [], "fullname": "os.WEXITED", "name": "WEXITED", "type": "builtins.int"}}, "WEXITSTATUS": {".class": "SymbolTableNode", "kind": "Gdef", "node": {".class": "FuncDef", "arg_kinds": [0], "arg_names": ["status"], "flags": ["is_conditional"], "fullname": "os.WEXITSTATUS", "name": "WEXITSTATUS", "type": {".class": "CallableType", "arg_kinds": [0], "arg_names": ["status"], "arg_types": ["builtins.int"], "bound_args": [], "def_extras": {"first_arg": null}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "WEXITSTATUS", "ret_type": "builtins.int", "variables": []}}}, "WIFCONTINUED": {".class": "SymbolTableNode", "kind": "Gdef", "node": {".class": "FuncDef", "arg_kinds": [0], "arg_names": ["status"], "flags": ["is_conditional"], "fullname": "os.WIFCONTINUED", "name": "WIFCONTINUED", "type": {".class": "CallableType", "arg_kinds": [0], "arg_names": ["status"], "arg_types": ["builtins.int"], "bound_args": [], "def_extras": {"first_arg": null}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "WIFCONTINUED", "ret_type": "builtins.bool", "variables": []}}}, "WIFEXITED": {".class": "SymbolTableNode", "kind": "Gdef", "node": {".class": "FuncDef", "arg_kinds": [0], "arg_names": ["status"], "flags": ["is_conditional"], "fullname": "os.WIFEXITED", "name": "WIFEXITED", "type": {".class": "CallableType", "arg_kinds": [0], "arg_names": ["status"], "arg_types": ["builtins.int"], "bound_args": [], "def_extras": {"first_arg": null}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "WIFEXITED", "ret_type": "builtins.bool", "variables": []}}}, "WIFSIGNALED": {".class": "SymbolTableNode", "kind": "Gdef", "node": {".class": "FuncDef", "arg_kinds": [0], "arg_names": ["status"], "flags": ["is_conditional"], "fullname": "os.WIFSIGNALED", "name": "WIFSIGNALED", "type": {".class": "CallableType", "arg_kinds": [0], "arg_names": ["status"], "arg_types": ["builtins.int"], "bound_args": [], "def_extras": {"first_arg": null}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "WIFSIGNALED", "ret_type": "builtins.bool", "variables": []}}}, "WIFSTOPPED": {".class": "SymbolTableNode", "kind": "Gdef", "node": {".class": "FuncDef", "arg_kinds": [0], "arg_names": ["status"], "flags": ["is_conditional"], "fullname": "os.WIFSTOPPED", "name": "WIFSTOPPED", "type": {".class": "CallableType", "arg_kinds": [0], "arg_names": ["status"], "arg_types": ["builtins.int"], "bound_args": [], "def_extras": {"first_arg": null}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "WIFSTOPPED", "ret_type": "builtins.bool", "variables": []}}}, "WNOHANG": {".class": "SymbolTableNode", "kind": "Gdef", "node": {".class": "Var", "flags": [], "fullname": "os.WNOHANG", "name": "WNOHANG", "type": "builtins.int"}}, "WNOWAIT": {".class": "SymbolTableNode", "kind": "Gdef", "node": {".class": "Var", "flags": [], "fullname": "os.WNOWAIT", "name": "WNOWAIT", "type": "builtins.int"}}, "WSTOPPED": {".class": "SymbolTableNode", "kind": "Gdef", "node": {".class": "Var", "flags": [], "fullname": "os.WSTOPPED", "name": "WSTOPPED", "type": "builtins.int"}}, "WSTOPSIG": {".class": "SymbolTableNode", "kind": "Gdef", "node": {".class": "FuncDef", "arg_kinds": [0], "arg_names": ["status"], "flags": ["is_conditional"], "fullname": "os.WSTOPSIG", "name": "WSTOPSIG", "type": {".class": "CallableType", "arg_kinds": [0], "arg_names": ["status"], "arg_types": ["builtins.int"], "bound_args": [], "def_extras": {"first_arg": null}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "WSTOPSIG", "ret_type": "builtins.int", "variables": []}}}, "WTERMSIG": {".class": "SymbolTableNode", "kind": "Gdef", "node": {".class": "FuncDef", "arg_kinds": [0], "arg_names": ["status"], "flags": ["is_conditional"], "fullname": "os.WTERMSIG", "name": "WTERMSIG", "type": {".class": "CallableType", "arg_kinds": [0], "arg_names": ["status"], "arg_types": ["builtins.int"], "bound_args": [], "def_extras": {"first_arg": null}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "WTERMSIG", "ret_type": "builtins.int", "variables": []}}}, "WUNTRACED": {".class": "SymbolTableNode", "kind": "Gdef", "node": {".class": "Var", "flags": [], "fullname": "os.WUNTRACED", "name": "WUNTRACED", "type": "builtins.int"}}, "W_OK": {".class": "SymbolTableNode", "kind": "Gdef", "node": {".class": "Var", "flags": [], "fullname": "os.W_OK", "name": "W_OK", "type": "builtins.int"}}, "XATTR_CREATE": {".class": "SymbolTableNode", "kind": "Gdef", "node": {".class": "Var", "flags": [], "fullname": "os.XATTR_CREATE", "name": "XATTR_CREATE", "type": "builtins.int"}}, "XATTR_REPLACE": {".class": "SymbolTableNode", "kind": "Gdef", "node": {".class": "Var", "flags": [], "fullname": "os.XATTR_REPLACE", "name": "XATTR_REPLACE", "type": "builtins.int"}}, "XATTR_SIZE_MAX": {".class": "SymbolTableNode", "kind": "Gdef", "node": {".class": "Var", "flags": [], "fullname": "os.XATTR_SIZE_MAX", "name": "XATTR_SIZE_MAX", "type": "builtins.int"}}, "X_OK": {".class": "SymbolTableNode", "kind": "Gdef", "node": {".class": "Var", "flags": [], "fullname": "os.X_OK", "name": "X_OK", "type": "builtins.int"}}, "_Environ": {".class": "SymbolTableNode", "kind": "Gdef", "node": {".class": "TypeInfo", "_promote": null, "abstract_attributes": [], "bases": [{".class": "Instance", "args": [{".class": "TypeVarType", "fullname": "typing.AnyStr", "id": 1, "name": "AnyStr", "upper_bound": "builtins.object", "values": ["builtins.str", "builtins.bytes"], "variance": 0}, {".class": "TypeVarType", "fullname": "typing.AnyStr", "id": 1, "name": "AnyStr", "upper_bound": "builtins.object", "values": ["builtins.str", "builtins.bytes"], "variance": 0}], "type_ref": "typing.MutableMapping"}], "declared_metaclass": null, "defn": {".class": "ClassDef", "fullname": "os._Environ", "name": "_Environ", "type_vars": [{".class": "TypeVarDef", "fullname": "typing.AnyStr", "id": 1, "name": "AnyStr", "upper_bound": "builtins.object", "values": ["builtins.str", "builtins.bytes"], "variance": 0}]}, "flags": [], "fullname": "os._Environ", "metaclass_type": "abc.ABCMeta", "metadata": {}, "module_name": "os", "mro": ["os._Environ", "typing.MutableMapping", "typing.Mapping", "typing.Collection", "typing.Iterable", "typing.Container", "builtins.object"], "names": {".class": "SymbolTable", "__delitem__": {".class": "SymbolTableNode", "kind": "Mdef", "node": {".class": "FuncDef", "arg_kinds": [0, 0], "arg_names": ["self", "key"], "flags": [], "fullname": "os._Environ.__delitem__", "name": "__delitem__", "type": {".class": "CallableType", "arg_kinds": [0, 0], "arg_names": [null, null], "arg_types": [{".class": "Instance", "args": [{".class": "TypeVarType", "fullname": "typing.AnyStr", "id": 1, "name": "AnyStr", "upper_bound": "builtins.object", "values": ["builtins.str", "builtins.bytes"], "variance": 0}], "type_ref": "os._Environ"}, {".class": "TypeVarType", "fullname": "typing.AnyStr", "id": 1, "name": "AnyStr", "upper_bound": "builtins.object", "values": ["builtins.str", "builtins.bytes"], "variance": 0}], "bound_args": [], "def_extras": {"first_arg": "self"}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "__delitem__ of _Environ", "ret_type": {".class": "NoneTyp"}, "variables": []}}}, "__getitem__": {".class": "SymbolTableNode", "kind": "Mdef", "node": {".class": "FuncDef", "arg_kinds": [0, 0], "arg_names": ["self", "key"], "flags": [], "fullname": "os._Environ.__getitem__", "name": "__getitem__", "type": {".class": "CallableType", "arg_kinds": [0, 0], "arg_names": [null, null], "arg_types": [{".class": "Instance", "args": [{".class": "TypeVarType", "fullname": "typing.AnyStr", "id": 1, "name": "AnyStr", "upper_bound": "builtins.object", "values": ["builtins.str", "builtins.bytes"], "variance": 0}], "type_ref": "os._Environ"}, {".class": "TypeVarType", "fullname": "typing.AnyStr", "id": 1, "name": "AnyStr", "upper_bound": "builtins.object", "values": ["builtins.str", "builtins.bytes"], "variance": 0}], "bound_args": [], "def_extras": {"first_arg": "self"}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "__getitem__ of _Environ", "ret_type": {".class": "TypeVarType", "fullname": "typing.AnyStr", "id": 1, "name": "AnyStr", "upper_bound": "builtins.object", "values": ["builtins.str", "builtins.bytes"], "variance": 0}, "variables": []}}}, "__iter__": {".class": "SymbolTableNode", "kind": "Mdef", "node": {".class": "FuncDef", "arg_kinds": [0], "arg_names": ["self"], "flags": [], "fullname": "os._Environ.__iter__", "name": "__iter__", "type": {".class": "CallableType", "arg_kinds": [0], "arg_names": [null], "arg_types": [{".class": "Instance", "args": [{".class": "TypeVarType", "fullname": "typing.AnyStr", "id": 1, "name": "AnyStr", "upper_bound": "builtins.object", "values": ["builtins.str", "builtins.bytes"], "variance": 0}], "type_ref": "os._Environ"}], "bound_args": [], "def_extras": {"first_arg": "self"}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "__iter__ of _Environ", "ret_type": {".class": "Instance", "args": [{".class": "TypeVarType", "fullname": "typing.AnyStr", "id": 1, "name": "AnyStr", "upper_bound": "builtins.object", "values": ["builtins.str", "builtins.bytes"], "variance": 0}], "type_ref": "typing.Iterator"}, "variables": []}}}, "__len__": {".class": "SymbolTableNode", "kind": "Mdef", "node": {".class": "FuncDef", "arg_kinds": [0], "arg_names": ["self"], "flags": [], "fullname": "os._Environ.__len__", "name": "__len__", "type": {".class": "CallableType", "arg_kinds": [0], "arg_names": [null], "arg_types": [{".class": "Instance", "args": [{".class": "TypeVarType", "fullname": "typing.AnyStr", "id": 1, "name": "AnyStr", "upper_bound": "builtins.object", "values": ["builtins.str", "builtins.bytes"], "variance": 0}], "type_ref": "os._Environ"}], "bound_args": [], "def_extras": {"first_arg": "self"}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "__len__ of _Environ", "ret_type": "builtins.int", "variables": []}}}, "__setitem__": {".class": "SymbolTableNode", "kind": "Mdef", "node": {".class": "FuncDef", "arg_kinds": [0, 0, 0], "arg_names": ["self", "key", "value"], "flags": [], "fullname": "os._Environ.__setitem__", "name": "__setitem__", "type": {".class": "CallableType", "arg_kinds": [0, 0, 0], "arg_names": [null, null, null], "arg_types": [{".class": "Instance", "args": [{".class": "TypeVarType", "fullname": "typing.AnyStr", "id": 1, "name": "AnyStr", "upper_bound": "builtins.object", "values": ["builtins.str", "builtins.bytes"], "variance": 0}], "type_ref": "os._Environ"}, {".class": "TypeVarType", "fullname": "typing.AnyStr", "id": 1, "name": "AnyStr", "upper_bound": "builtins.object", "values": ["builtins.str", "builtins.bytes"], "variance": 0}, {".class": "TypeVarType", "fullname": "typing.AnyStr", "id": 1, "name": "AnyStr", "upper_bound": "builtins.object", "values": ["builtins.str", "builtins.bytes"], "variance": 0}], "bound_args": [], "def_extras": {"first_arg": "self"}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "__setitem__ of _Environ", "ret_type": {".class": "NoneTyp"}, "variables": []}}}, "copy": {".class": "SymbolTableNode", "kind": "Mdef", "node": {".class": "FuncDef", "arg_kinds": [0], "arg_names": ["self"], "flags": [], "fullname": "os._Environ.copy", "name": "copy", "type": {".class": "CallableType", "arg_kinds": [0], "arg_names": ["self"], "arg_types": [{".class": "Instance", "args": [{".class": "TypeVarType", "fullname": "typing.AnyStr", "id": 1, "name": "AnyStr", "upper_bound": "builtins.object", "values": ["builtins.str", "builtins.bytes"], "variance": 0}], "type_ref": "os._Environ"}], "bound_args": [], "def_extras": {"first_arg": "self"}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "copy of _Environ", "ret_type": {".class": "Instance", "args": [{".class": "TypeVarType", "fullname": "typing.AnyStr", "id": 1, "name": "AnyStr", "upper_bound": "builtins.object", "values": ["builtins.str", "builtins.bytes"], "variance": 0}, {".class": "TypeVarType", "fullname": "typing.AnyStr", "id": 1, "name": "AnyStr", "upper_bound": "builtins.object", "values": ["builtins.str", "builtins.bytes"], "variance": 0}], "type_ref": "builtins.dict"}, "variables": []}}}}, "tuple_type": null, "type_vars": ["AnyStr"], "typeddict_type": null}}, "_ExecVArgs": {".class": "SymbolTableNode", "kind": "Gdef", "node": {".class": "TypeAlias", "alias_tvars": [], "column": 0, "fullname": "os._ExecVArgs", "line": 628, "no_args": false, "normalized": false, "target": {".class": "UnionType", "items": [{".class": "Instance", "args": [{".class": "UnionType", "items": ["builtins.bytes", "builtins.str"]}], "type_ref": "builtins.tuple"}, {".class": "Instance", "args": ["builtins.bytes"], "type_ref": "builtins.list"}, {".class": "Instance", "args": ["builtins.str"], "type_ref": "builtins.list"}, {".class": "Instance", "args": [{".class": "UnionType", "items": ["builtins.bytes", "builtins.str"]}], "type_ref": "builtins.list"}]}}}, "_FdOrPathType": {".class": "SymbolTableNode", "kind": "Gdef", "node": {".class": "TypeAlias", "alias_tvars": [], "column": 4, "fullname": "os._FdOrPathType", "line": 244, "no_args": false, "normalized": false, "target": {".class": "UnionType", "items": ["builtins.int", "builtins.bytes", "builtins.str", {".class": "Instance", "args": [{".class": "AnyType", "missing_import_name": null, "source_any": null, "type_of_any": 4}], "type_ref": "builtins._PathLike"}]}}}, "_PathType": {".class": "SymbolTableNode", "kind": "Gdef", "node": {".class": "TypeAlias", "alias_tvars": [], "column": 0, "fullname": "os._PathType", "line": 242, "no_args": false, "normalized": false, "target": {".class": "UnionType", "items": ["builtins.bytes", "builtins.str", {".class": "Instance", "args": [{".class": "AnyType", "missing_import_name": null, "source_any": null, "type_of_any": 4}], "type_ref": "builtins._PathLike"}]}}}, "_ScandirIterator": {".class": "SymbolTableNode", "kind": "Gdef", "node": {".class": "TypeInfo", "_promote": null, "abstract_attributes": [], "bases": [{".class": "Instance", "args": [{".class": "Instance", "args": [{".class": "TypeVarType", "fullname": "typing.AnyStr", "id": 1, "name": "AnyStr", "upper_bound": "builtins.object", "values": ["builtins.str", "builtins.bytes"], "variance": 0}], "type_ref": "os.DirEntry"}], "type_ref": "typing.Iterator"}, {".class": "Instance", "args": [{".class": "Instance", "args": [{".class": "TypeVarType", "fullname": "typing.AnyStr", "id": 1, "name": "AnyStr", "upper_bound": "builtins.object", "values": ["builtins.str", "builtins.bytes"], "variance": 0}], "type_ref": "os._ScandirIterator"}], "type_ref": "typing.ContextManager"}], "declared_metaclass": null, "defn": {".class": "ClassDef", "fullname": "os._ScandirIterator", "name": "_ScandirIterator", "type_vars": [{".class": "TypeVarDef", "fullname": "typing.AnyStr", "id": 1, "name": "AnyStr", "upper_bound": "builtins.object", "values": ["builtins.str", "builtins.bytes"], "variance": 0}]}, "flags": [], "fullname": "os._ScandirIterator", "metaclass_type": "abc.ABCMeta", "metadata": {}, "module_name": "os", "mro": ["os._ScandirIterator", "typing.Iterator", "typing.Iterable", "typing.ContextManager", "builtins.object"], "names": {".class": "SymbolTable", "__next__": {".class": "SymbolTableNode", "kind": "Mdef", "node": {".class": "FuncDef", "arg_kinds": [0], "arg_names": ["self"], "flags": [], "fullname": "os._ScandirIterator.__next__", "name": "__next__", "type": {".class": "CallableType", "arg_kinds": [0], "arg_names": ["self"], "arg_types": [{".class": "Instance", "args": [{".class": "TypeVarType", "fullname": "typing.AnyStr", "id": 1, "name": "AnyStr", "upper_bound": "builtins.object", "values": ["builtins.str", "builtins.bytes"], "variance": 0}], "type_ref": "os._ScandirIterator"}], "bound_args": [], "def_extras": {"first_arg": "self"}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "__next__ of _ScandirIterator", "ret_type": {".class": "Instance", "args": [{".class": "TypeVarType", "fullname": "typing.AnyStr", "id": 1, "name": "AnyStr", "upper_bound": "builtins.object", "values": ["builtins.str", "builtins.bytes"], "variance": 0}], "type_ref": "os.DirEntry"}, "variables": []}}}, "close": {".class": "SymbolTableNode", "kind": "Mdef", "node": {".class": "FuncDef", "arg_kinds": [0], "arg_names": ["self"], "flags": [], "fullname": "os._ScandirIterator.close", "name": "close", "type": {".class": "CallableType", "arg_kinds": [0], "arg_names": ["self"], "arg_types": [{".class": "Instance", "args": [{".class": "TypeVarType", "fullname": "typing.AnyStr", "id": 1, "name": "AnyStr", "upper_bound": "builtins.object", "values": ["builtins.str", "builtins.bytes"], "variance": 0}], "type_ref": "os._ScandirIterator"}], "bound_args": [], "def_extras": {"first_arg": "self"}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "close of _ScandirIterator", "ret_type": {".class": "NoneTyp"}, "variables": []}}}}, "tuple_type": null, "type_vars": ["AnyStr"], "typeddict_type": null}}, "_T": {".class": "SymbolTableNode", "kind": "Gdef", "node": {".class": "TypeVarExpr", "fullname": "os._T", "name": "_T", "upper_bound": "builtins.object", "values": [], "variance": 0}}, "_TextIOWrapper": {".class": "SymbolTableNode", "cross_ref": "io.TextIOWrapper", "kind": "Gdef"}, "__doc__": {".class": "SymbolTableNode", "kind": "Gdef", "node": {".class": "Var", "flags": [], "fullname": "os.__doc__", "name": "__doc__", "type": "builtins.str"}}, "__file__": {".class": "SymbolTableNode", "kind": "Gdef", "node": {".class": "Var", "flags": [], "fullname": "os.__file__", "name": "__file__", "type": "builtins.str"}}, "__name__": {".class": "SymbolTableNode", "kind": "Gdef", "node": {".class": "Var", "flags": [], "fullname": "os.__name__", "name": "__name__", "type": "builtins.str"}}, "__package__": {".class": "SymbolTableNode", "kind": "Gdef", "node": {".class": "Var", "flags": [], "fullname": "os.__package__", "name": "__package__", "type": "builtins.str"}}, "_exit": {".class": "SymbolTableNode", "kind": "Gdef", "node": {".class": "FuncDef", "arg_kinds": [0], "arg_names": ["n"], "flags": [], "fullname": "os._exit", "name": "_exit", "type": {".class": "CallableType", "arg_kinds": [0], "arg_names": ["n"], "arg_types": ["builtins.int"], "bound_args": [], "def_extras": {"first_arg": null}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "_exit", "ret_type": {".class": "UninhabitedType", "is_noreturn": true}, "variables": []}}}, "_wrap_close": {".class": "SymbolTableNode", "kind": "Gdef", "node": {".class": "TypeInfo", "_promote": null, "abstract_attributes": [], "bases": ["io.TextIOWrapper"], "declared_metaclass": null, "defn": {".class": "ClassDef", "fullname": "os._wrap_close", "name": "_wrap_close", "type_vars": []}, "flags": [], "fullname": "os._wrap_close", "metaclass_type": "abc.ABCMeta", "metadata": {}, "module_name": "os", "mro": ["os._wrap_close", "io.TextIOWrapper", "typing.TextIO", "typing.IO", "typing.Iterator", "typing.Iterable", "builtins.object"], "names": {".class": "SymbolTable", "close": {".class": "SymbolTableNode", "kind": "Mdef", "node": {".class": "FuncDef", "arg_kinds": [0], "arg_names": ["self"], "flags": [], "fullname": "os._wrap_close.close", "name": "close", "type": {".class": "CallableType", "arg_kinds": [0], "arg_names": ["self"], "arg_types": ["os._wrap_close"], "bound_args": [], "def_extras": {"first_arg": "self"}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "close of _wrap_close", "ret_type": {".class": "UnionType", "items": ["builtins.int", {".class": "NoneTyp"}]}, "variables": []}}}}, "tuple_type": null, "type_vars": [], "typeddict_type": null}}, "abort": {".class": "SymbolTableNode", "kind": "Gdef", "node": {".class": "FuncDef", "arg_kinds": [], "arg_names": [], "flags": [], "fullname": "os.abort", "name": "abort", "type": {".class": "CallableType", "arg_kinds": [], "arg_names": [], "arg_types": [], "bound_args": [], "def_extras": {"first_arg": null}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "abort", "ret_type": {".class": "UninhabitedType", "is_noreturn": true}, "variables": []}}}, "access": {".class": "SymbolTableNode", "kind": "Gdef", "node": {".class": "FuncDef", "arg_kinds": [0, 0, 5, 5, 5], "arg_names": ["path", "mode", "dir_fd", "effective_ids", "follow_symlinks"], "flags": ["is_conditional"], "fullname": "os.access", "name": "access", "type": {".class": "CallableType", "arg_kinds": [0, 0, 5, 5, 5], "arg_names": ["path", "mode", "dir_fd", "effective_ids", "follow_symlinks"], "arg_types": [{".class": "UnionType", "items": ["builtins.int", "builtins.bytes", "builtins.str", {".class": "Instance", "args": [{".class": "AnyType", "missing_import_name": null, "source_any": null, "type_of_any": 4}], "type_ref": "builtins._PathLike"}]}, "builtins.int", {".class": "UnionType", "items": ["builtins.int", {".class": "NoneTyp"}]}, "builtins.bool", "builtins.bool"], "bound_args": [], "def_extras": {"first_arg": null}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "access", "ret_type": "builtins.bool", "variables": []}}}, "altsep": {".class": "SymbolTableNode", "kind": "Gdef", "node": {".class": "Var", "flags": [], "fullname": "os.altsep", "name": "altsep", "type": "builtins.str"}}, "bytes": {".class": "SymbolTableNode", "cross_ref": "builtins.bytes", "kind": "Gdef", "module_hidden": true, "module_public": false}, "chdir": {".class": "SymbolTableNode", "kind": "Gdef", "node": {".class": "FuncDef", "arg_kinds": [0], "arg_names": ["path"], "flags": [], "fullname": "os.chdir", "name": "chdir", "type": {".class": "CallableType", "arg_kinds": [0], "arg_names": ["path"], "arg_types": [{".class": "UnionType", "items": ["builtins.int", "builtins.bytes", "builtins.str", {".class": "Instance", "args": [{".class": "AnyType", "missing_import_name": null, "source_any": null, "type_of_any": 4}], "type_ref": "builtins._PathLike"}]}], "bound_args": [], "def_extras": {"first_arg": null}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "chdir", "ret_type": {".class": "NoneTyp"}, "variables": []}}}, "chflags": {".class": "SymbolTableNode", "kind": "Gdef", "node": {".class": "FuncDef", "arg_kinds": [0, 0, 1], "arg_names": ["path", "flags", "follow_symlinks"], "flags": ["is_conditional"], "fullname": "os.chflags", "name": "chflags", "type": {".class": "CallableType", "arg_kinds": [0, 0, 1], "arg_names": ["path", "flags", "follow_symlinks"], "arg_types": [{".class": "UnionType", "items": ["builtins.bytes", "builtins.str", {".class": "Instance", "args": [{".class": "AnyType", "missing_import_name": null, "source_any": null, "type_of_any": 4}], "type_ref": "builtins._PathLike"}]}, "builtins.int", "builtins.bool"], "bound_args": [], "def_extras": {"first_arg": null}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "chflags", "ret_type": {".class": "NoneTyp"}, "variables": []}}}, "chmod": {".class": "SymbolTableNode", "kind": "Gdef", "node": {".class": "FuncDef", "arg_kinds": [0, 0, 5, 5], "arg_names": ["path", "mode", "dir_fd", "follow_symlinks"], "flags": ["is_conditional"], "fullname": "os.chmod", "name": "chmod", "type": {".class": "CallableType", "arg_kinds": [0, 0, 5, 5], "arg_names": ["path", "mode", "dir_fd", "follow_symlinks"], "arg_types": [{".class": "UnionType", "items": ["builtins.int", "builtins.bytes", "builtins.str", {".class": "Instance", "args": [{".class": "AnyType", "missing_import_name": null, "source_any": null, "type_of_any": 4}], "type_ref": "builtins._PathLike"}]}, "builtins.int", {".class": "UnionType", "items": ["builtins.int", {".class": "NoneTyp"}]}, "builtins.bool"], "bound_args": [], "def_extras": {"first_arg": null}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "chmod", "ret_type": {".class": "NoneTyp"}, "variables": []}}}, "chown": {".class": "SymbolTableNode", "kind": "Gdef", "node": {".class": "FuncDef", "arg_kinds": [0, 0, 0, 5, 5], "arg_names": ["path", "uid", "gid", "dir_fd", "follow_symlinks"], "flags": ["is_conditional"], "fullname": "os.chown", "name": "chown", "type": {".class": "CallableType", "arg_kinds": [0, 0, 0, 5, 5], "arg_names": ["path", "uid", "gid", "dir_fd", "follow_symlinks"], "arg_types": [{".class": "UnionType", "items": ["builtins.int", "builtins.bytes", "builtins.str", {".class": "Instance", "args": [{".class": "AnyType", "missing_import_name": null, "source_any": null, "type_of_any": 4}], "type_ref": "builtins._PathLike"}]}, "builtins.int", "builtins.int", {".class": "UnionType", "items": ["builtins.int", {".class": "NoneTyp"}]}, "builtins.bool"], "bound_args": [], "def_extras": {"first_arg": null}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "chown", "ret_type": {".class": "NoneTyp"}, "variables": []}}}, "chroot": {".class": "SymbolTableNode", "kind": "Gdef", "node": {".class": "FuncDef", "arg_kinds": [0], "arg_names": ["path"], "flags": ["is_conditional"], "fullname": "os.chroot", "name": "chroot", "type": {".class": "CallableType", "arg_kinds": [0], "arg_names": ["path"], "arg_types": [{".class": "UnionType", "items": ["builtins.bytes", "builtins.str", {".class": "Instance", "args": [{".class": "AnyType", "missing_import_name": null, "source_any": null, "type_of_any": 4}], "type_ref": "builtins._PathLike"}]}], "bound_args": [], "def_extras": {"first_arg": null}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "chroot", "ret_type": {".class": "NoneTyp"}, "variables": []}}}, "close": {".class": "SymbolTableNode", "kind": "Gdef", "node": {".class": "FuncDef", "arg_kinds": [0], "arg_names": ["fd"], "flags": [], "fullname": "os.close", "name": "close", "type": {".class": "CallableType", "arg_kinds": [0], "arg_names": ["fd"], "arg_types": ["builtins.int"], "bound_args": [], "def_extras": {"first_arg": null}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "close", "ret_type": {".class": "NoneTyp"}, "variables": []}}}, "closerange": {".class": "SymbolTableNode", "kind": "Gdef", "node": {".class": "FuncDef", "arg_kinds": [0, 0], "arg_names": ["fd_low", "fd_high"], "flags": [], "fullname": "os.closerange", "name": "closerange", "type": {".class": "CallableType", "arg_kinds": [0, 0], "arg_names": ["fd_low", "fd_high"], "arg_types": ["builtins.int", "builtins.int"], "bound_args": [], "def_extras": {"first_arg": null}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "closerange", "ret_type": {".class": "NoneTyp"}, "variables": []}}}, "confstr": {".class": "SymbolTableNode", "kind": "Gdef", "node": {".class": "FuncDef", "arg_kinds": [0], "arg_names": ["name"], "flags": ["is_conditional"], "fullname": "os.confstr", "name": "confstr", "type": {".class": "CallableType", "arg_kinds": [0], "arg_names": ["name"], "arg_types": [{".class": "UnionType", "items": ["builtins.str", "builtins.int"]}], "bound_args": [], "def_extras": {"first_arg": null}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "confstr", "ret_type": {".class": "UnionType", "items": ["builtins.str", {".class": "NoneTyp"}]}, "variables": []}}}, "confstr_names": {".class": "SymbolTableNode", "kind": "Gdef", "node": {".class": "Var", "flags": [], "fullname": "os.confstr_names", "name": "confstr_names", "type": {".class": "Instance", "args": ["builtins.str", "builtins.int"], "type_ref": "builtins.dict"}}}, "cpu_count": {".class": "SymbolTableNode", "kind": "Gdef", "node": {".class": "FuncDef", "arg_kinds": [], "arg_names": [], "flags": ["is_conditional"], "fullname": "os.cpu_count", "name": "cpu_count", "type": {".class": "CallableType", "arg_kinds": [], "arg_names": [], "arg_types": [], "bound_args": [], "def_extras": {"first_arg": null}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "cpu_count", "ret_type": {".class": "UnionType", "items": ["builtins.int", {".class": "NoneTyp"}]}, "variables": []}}}, "ctermid": {".class": "SymbolTableNode", "kind": "Gdef", "node": {".class": "FuncDef", "arg_kinds": [], "arg_names": [], "flags": ["is_conditional"], "fullname": "os.ctermid", "name": "ctermid", "type": {".class": "CallableType", "arg_kinds": [], "arg_names": [], "arg_types": [], "bound_args": [], "def_extras": {"first_arg": null}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "ctermid", "ret_type": "builtins.str", "variables": []}}}, "curdir": {".class": "SymbolTableNode", "kind": "Gdef", "node": {".class": "Var", "flags": [], "fullname": "os.curdir", "name": "curdir", "type": "builtins.str"}}, "defpath": {".class": "SymbolTableNode", "kind": "Gdef", "node": {".class": "Var", "flags": [], "fullname": "os.defpath", "name": "defpath", "type": "builtins.str"}}, "device_encoding": {".class": "SymbolTableNode", "kind": "Gdef", "node": {".class": "FuncDef", "arg_kinds": [0], "arg_names": ["fd"], "flags": [], "fullname": "os.device_encoding", "name": "device_encoding", "type": {".class": "CallableType", "arg_kinds": [0], "arg_names": ["fd"], "arg_types": ["builtins.int"], "bound_args": [], "def_extras": {"first_arg": null}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "device_encoding", "ret_type": {".class": "UnionType", "items": ["builtins.str", {".class": "NoneTyp"}]}, "variables": []}}}, "devnull": {".class": "SymbolTableNode", "kind": "Gdef", "node": {".class": "Var", "flags": [], "fullname": "os.devnull", "name": "devnull", "type": "builtins.str"}}, "dup": {".class": "SymbolTableNode", "kind": "Gdef", "node": {".class": "FuncDef", "arg_kinds": [0], "arg_names": ["fd"], "flags": [], "fullname": "os.dup", "name": "dup", "type": {".class": "CallableType", "arg_kinds": [0], "arg_names": ["fd"], "arg_types": ["builtins.int"], "bound_args": [], "def_extras": {"first_arg": null}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "dup", "ret_type": "builtins.int", "variables": []}}}, "dup2": {".class": "SymbolTableNode", "kind": "Gdef", "node": {".class": "FuncDef", "arg_kinds": [0, 0, 1], "arg_names": ["fd", "fd2", "inheritable"], "flags": ["is_conditional"], "fullname": "os.dup2", "name": "dup2", "type": {".class": "CallableType", "arg_kinds": [0, 0, 1], "arg_names": ["fd", "fd2", "inheritable"], "arg_types": ["builtins.int", "builtins.int", "builtins.bool"], "bound_args": [], "def_extras": {"first_arg": null}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "dup2", "ret_type": "builtins.int", "variables": []}}}, "environ": {".class": "SymbolTableNode", "kind": "Gdef", "node": {".class": "Var", "flags": [], "fullname": "os.environ", "name": "environ", "type": {".class": "Instance", "args": ["builtins.str"], "type_ref": "os._Environ"}}}, "environb": {".class": "SymbolTableNode", "kind": "Gdef", "node": {".class": "Var", "flags": [], "fullname": "os.environb", "name": "environb", "type": {".class": "Instance", "args": ["builtins.bytes"], "type_ref": "os._Environ"}}}, "error": {".class": "SymbolTableNode", "cross_ref": "builtins.OSError", "kind": "Gdef"}, "execl": {".class": "SymbolTableNode", "kind": "Gdef", "node": {".class": "FuncDef", "arg_kinds": [0, 0, 2], "arg_names": ["file", "__arg0", "args"], "flags": [], "fullname": "os.execl", "name": "execl", "type": {".class": "CallableType", "arg_kinds": [0, 0, 2], "arg_names": ["file", null, "args"], "arg_types": [{".class": "UnionType", "items": ["builtins.bytes", "builtins.str", {".class": "Instance", "args": [{".class": "AnyType", "missing_import_name": null, "source_any": null, "type_of_any": 4}], "type_ref": "builtins._PathLike"}]}, {".class": "UnionType", "items": ["builtins.bytes", "builtins.str"]}, {".class": "UnionType", "items": ["builtins.bytes", "builtins.str"]}], "bound_args": [], "def_extras": {"first_arg": null}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "execl", "ret_type": {".class": "UninhabitedType", "is_noreturn": true}, "variables": []}}}, "execle": {".class": "SymbolTableNode", "kind": "Gdef", "node": {".class": "FuncDef", "arg_kinds": [0, 0, 2], "arg_names": ["file", "__arg0", "args"], "flags": [], "fullname": "os.execle", "name": "execle", "type": {".class": "CallableType", "arg_kinds": [0, 0, 2], "arg_names": ["file", null, "args"], "arg_types": [{".class": "UnionType", "items": ["builtins.bytes", "builtins.str", {".class": "Instance", "args": [{".class": "AnyType", "missing_import_name": null, "source_any": null, "type_of_any": 4}], "type_ref": "builtins._PathLike"}]}, {".class": "UnionType", "items": ["builtins.bytes", "builtins.str"]}, {".class": "AnyType", "missing_import_name": null, "source_any": null, "type_of_any": 2}], "bound_args": [], "def_extras": {"first_arg": null}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "execle", "ret_type": {".class": "UninhabitedType", "is_noreturn": true}, "variables": []}}}, "execlp": {".class": "SymbolTableNode", "kind": "Gdef", "node": {".class": "FuncDef", "arg_kinds": [0, 0, 2], "arg_names": ["file", "__arg0", "args"], "flags": [], "fullname": "os.execlp", "name": "execlp", "type": {".class": "CallableType", "arg_kinds": [0, 0, 2], "arg_names": ["file", null, "args"], "arg_types": [{".class": "UnionType", "items": ["builtins.bytes", "builtins.str", {".class": "Instance", "args": [{".class": "AnyType", "missing_import_name": null, "source_any": null, "type_of_any": 4}], "type_ref": "builtins._PathLike"}]}, {".class": "UnionType", "items": ["builtins.bytes", "builtins.str"]}, {".class": "UnionType", "items": ["builtins.bytes", "builtins.str"]}], "bound_args": [], "def_extras": {"first_arg": null}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "execlp", "ret_type": {".class": "UninhabitedType", "is_noreturn": true}, "variables": []}}}, "execlpe": {".class": "SymbolTableNode", "kind": "Gdef", "node": {".class": "FuncDef", "arg_kinds": [0, 0, 2], "arg_names": ["file", "__arg0", "args"], "flags": [], "fullname": "os.execlpe", "name": "execlpe", "type": {".class": "CallableType", "arg_kinds": [0, 0, 2], "arg_names": ["file", null, "args"], "arg_types": [{".class": "UnionType", "items": ["builtins.bytes", "builtins.str", {".class": "Instance", "args": [{".class": "AnyType", "missing_import_name": null, "source_any": null, "type_of_any": 4}], "type_ref": "builtins._PathLike"}]}, {".class": "UnionType", "items": ["builtins.bytes", "builtins.str"]}, {".class": "AnyType", "missing_import_name": null, "source_any": null, "type_of_any": 2}], "bound_args": [], "def_extras": {"first_arg": null}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "execlpe", "ret_type": {".class": "UninhabitedType", "is_noreturn": true}, "variables": []}}}, "execv": {".class": "SymbolTableNode", "kind": "Gdef", "node": {".class": "FuncDef", "arg_kinds": [0, 0], "arg_names": ["path", "args"], "flags": [], "fullname": "os.execv", "name": "execv", "type": {".class": "CallableType", "arg_kinds": [0, 0], "arg_names": ["path", "args"], "arg_types": [{".class": "UnionType", "items": ["builtins.bytes", "builtins.str", {".class": "Instance", "args": [{".class": "AnyType", "missing_import_name": null, "source_any": null, "type_of_any": 4}], "type_ref": "builtins._PathLike"}]}, {".class": "UnionType", "items": [{".class": "Instance", "args": [{".class": "UnionType", "items": ["builtins.bytes", "builtins.str"]}], "type_ref": "builtins.tuple"}, {".class": "Instance", "args": ["builtins.bytes"], "type_ref": "builtins.list"}, {".class": "Instance", "args": ["builtins.str"], "type_ref": "builtins.list"}, {".class": "Instance", "args": [{".class": "UnionType", "items": ["builtins.bytes", "builtins.str"]}], "type_ref": "builtins.list"}]}], "bound_args": [], "def_extras": {"first_arg": null}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "execv", "ret_type": {".class": "UninhabitedType", "is_noreturn": true}, "variables": []}}}, "execve": {".class": "SymbolTableNode", "kind": "Gdef", "node": {".class": "FuncDef", "arg_kinds": [0, 0, 0], "arg_names": ["path", "args", "env"], "flags": [], "fullname": "os.execve", "name": "execve", "type": {".class": "CallableType", "arg_kinds": [0, 0, 0], "arg_names": ["path", "args", "env"], "arg_types": [{".class": "UnionType", "items": ["builtins.int", "builtins.bytes", "builtins.str", {".class": "Instance", "args": [{".class": "AnyType", "missing_import_name": null, "source_any": null, "type_of_any": 4}], "type_ref": "builtins._PathLike"}]}, {".class": "UnionType", "items": [{".class": "Instance", "args": [{".class": "UnionType", "items": ["builtins.bytes", "builtins.str"]}], "type_ref": "builtins.tuple"}, {".class": "Instance", "args": ["builtins.bytes"], "type_ref": "builtins.list"}, {".class": "Instance", "args": ["builtins.str"], "type_ref": "builtins.list"}, {".class": "Instance", "args": [{".class": "UnionType", "items": ["builtins.bytes", "builtins.str"]}], "type_ref": "builtins.list"}]}, {".class": "Instance", "args": ["builtins.str", "builtins.str"], "type_ref": "typing.Mapping"}], "bound_args": [], "def_extras": {"first_arg": null}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "execve", "ret_type": {".class": "UninhabitedType", "is_noreturn": true}, "variables": []}}}, "execvp": {".class": "SymbolTableNode", "kind": "Gdef", "node": {".class": "FuncDef", "arg_kinds": [0, 0], "arg_names": ["file", "args"], "flags": [], "fullname": "os.execvp", "name": "execvp", "type": {".class": "CallableType", "arg_kinds": [0, 0], "arg_names": ["file", "args"], "arg_types": [{".class": "UnionType", "items": ["builtins.bytes", "builtins.str", {".class": "Instance", "args": [{".class": "AnyType", "missing_import_name": null, "source_any": null, "type_of_any": 4}], "type_ref": "builtins._PathLike"}]}, {".class": "UnionType", "items": [{".class": "Instance", "args": [{".class": "UnionType", "items": ["builtins.bytes", "builtins.str"]}], "type_ref": "builtins.tuple"}, {".class": "Instance", "args": ["builtins.bytes"], "type_ref": "builtins.list"}, {".class": "Instance", "args": ["builtins.str"], "type_ref": "builtins.list"}, {".class": "Instance", "args": [{".class": "UnionType", "items": ["builtins.bytes", "builtins.str"]}], "type_ref": "builtins.list"}]}], "bound_args": [], "def_extras": {"first_arg": null}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "execvp", "ret_type": {".class": "UninhabitedType", "is_noreturn": true}, "variables": []}}}, "execvpe": {".class": "SymbolTableNode", "kind": "Gdef", "node": {".class": "FuncDef", "arg_kinds": [0, 0, 0], "arg_names": ["file", "args", "env"], "flags": [], "fullname": "os.execvpe", "name": "execvpe", "type": {".class": "CallableType", "arg_kinds": [0, 0, 0], "arg_names": ["file", "args", "env"], "arg_types": [{".class": "UnionType", "items": ["builtins.bytes", "builtins.str", {".class": "Instance", "args": [{".class": "AnyType", "missing_import_name": null, "source_any": null, "type_of_any": 4}], "type_ref": "builtins._PathLike"}]}, {".class": "UnionType", "items": [{".class": "Instance", "args": [{".class": "UnionType", "items": ["builtins.bytes", "builtins.str"]}], "type_ref": "builtins.tuple"}, {".class": "Instance", "args": ["builtins.bytes"], "type_ref": "builtins.list"}, {".class": "Instance", "args": ["builtins.str"], "type_ref": "builtins.list"}, {".class": "Instance", "args": [{".class": "UnionType", "items": ["builtins.bytes", "builtins.str"]}], "type_ref": "builtins.list"}]}, {".class": "Instance", "args": ["builtins.str", "builtins.str"], "type_ref": "typing.Mapping"}], "bound_args": [], "def_extras": {"first_arg": null}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "execvpe", "ret_type": {".class": "UninhabitedType", "is_noreturn": true}, "variables": []}}}, "extsep": {".class": "SymbolTableNode", "kind": "Gdef", "node": {".class": "Var", "flags": [], "fullname": "os.extsep", "name": "extsep", "type": "builtins.str"}}, "fchdir": {".class": "SymbolTableNode", "kind": "Gdef", "node": {".class": "FuncDef", "arg_kinds": [0], "arg_names": ["fd"], "flags": [], "fullname": "os.fchdir", "name": "fchdir", "type": {".class": "CallableType", "arg_kinds": [0], "arg_names": ["fd"], "arg_types": ["builtins.int"], "bound_args": [], "def_extras": {"first_arg": null}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "fchdir", "ret_type": {".class": "NoneTyp"}, "variables": []}}}, "fchmod": {".class": "SymbolTableNode", "kind": "Gdef", "node": {".class": "FuncDef", "arg_kinds": [0, 0], "arg_names": ["fd", "mode"], "flags": ["is_conditional"], "fullname": "os.fchmod", "name": "fchmod", "type": {".class": "CallableType", "arg_kinds": [0, 0], "arg_names": ["fd", "mode"], "arg_types": ["builtins.int", "builtins.int"], "bound_args": [], "def_extras": {"first_arg": null}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "fchmod", "ret_type": {".class": "NoneTyp"}, "variables": []}}}, "fchown": {".class": "SymbolTableNode", "kind": "Gdef", "node": {".class": "FuncDef", "arg_kinds": [0, 0, 0], "arg_names": ["fd", "uid", "gid"], "flags": ["is_conditional"], "fullname": "os.fchown", "name": "fchown", "type": {".class": "CallableType", "arg_kinds": [0, 0, 0], "arg_names": ["fd", "uid", "gid"], "arg_types": ["builtins.int", "builtins.int", "builtins.int"], "bound_args": [], "def_extras": {"first_arg": null}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "fchown", "ret_type": {".class": "NoneTyp"}, "variables": []}}}, "fdatasync": {".class": "SymbolTableNode", "kind": "Gdef", "node": {".class": "FuncDef", "arg_kinds": [0], "arg_names": ["fd"], "flags": ["is_conditional"], "fullname": "os.fdatasync", "name": "fdatasync", "type": {".class": "CallableType", "arg_kinds": [0], "arg_names": ["fd"], "arg_types": ["builtins.int"], "bound_args": [], "def_extras": {"first_arg": null}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "fdatasync", "ret_type": {".class": "NoneTyp"}, "variables": []}}}, "fdopen": {".class": "SymbolTableNode", "kind": "Gdef", "node": {".class": "FuncDef", "arg_kinds": [0, 1, 1, 1, 1, 1, 1], "arg_names": ["fd", "mode", "buffering", "encoding", "errors", "newline", "closefd"], "flags": [], "fullname": "os.fdopen", "name": "fdopen", "type": {".class": "CallableType", "arg_kinds": [0, 1, 1, 1, 1, 1, 1], "arg_names": ["fd", "mode", "buffering", "encoding", "errors", "newline", "closefd"], "arg_types": ["builtins.int", "builtins.str", "builtins.int", {".class": "UnionType", "items": ["builtins.str", {".class": "NoneTyp"}]}, "builtins.str", "builtins.str", "builtins.bool"], "bound_args": [], "def_extras": {"first_arg": null}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "fdopen", "ret_type": {".class": "AnyType", "missing_import_name": null, "source_any": null, "type_of_any": 2}, "variables": []}}}, "fork": {".class": "SymbolTableNode", "kind": "Gdef", "node": {".class": "FuncDef", "arg_kinds": [], "arg_names": [], "flags": ["is_conditional"], "fullname": "os.fork", "name": "fork", "type": {".class": "CallableType", "arg_kinds": [], "arg_names": [], "arg_types": [], "bound_args": [], "def_extras": {"first_arg": null}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "fork", "ret_type": "builtins.int", "variables": []}}}, "forkpty": {".class": "SymbolTableNode", "kind": "Gdef", "node": {".class": "FuncDef", "arg_kinds": [], "arg_names": [], "flags": ["is_conditional"], "fullname": "os.forkpty", "name": "forkpty", "type": {".class": "CallableType", "arg_kinds": [], "arg_names": [], "arg_types": [], "bound_args": [], "def_extras": {"first_arg": null}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "forkpty", "ret_type": {".class": "TupleType", "fallback": {".class": "Instance", "args": [{".class": "AnyType", "missing_import_name": null, "source_any": null, "type_of_any": 6}], "type_ref": "builtins.tuple"}, "implicit": false, "items": ["builtins.int", "builtins.int"]}, "variables": []}}}, "fpathconf": {".class": "SymbolTableNode", "kind": "Gdef", "node": {".class": "FuncDef", "arg_kinds": [0, 0], "arg_names": ["fd", "name"], "flags": ["is_conditional"], "fullname": "os.fpathconf", "name": "fpathconf", "type": {".class": "CallableType", "arg_kinds": [0, 0], "arg_names": ["fd", "name"], "arg_types": ["builtins.int", {".class": "UnionType", "items": ["builtins.str", "builtins.int"]}], "bound_args": [], "def_extras": {"first_arg": null}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "fpathconf", "ret_type": "builtins.int", "variables": []}}}, "fsdecode": {".class": "SymbolTableNode", "kind": "Gdef", "node": {".class": "FuncDef", "arg_kinds": [0], "arg_names": ["filename"], "flags": ["is_conditional"], "fullname": "os.fsdecode", "name": "fsdecode", "type": {".class": "CallableType", "arg_kinds": [0], "arg_names": ["filename"], "arg_types": [{".class": "UnionType", "items": ["builtins.str", "builtins.bytes", {".class": "Instance", "args": [{".class": "AnyType", "missing_import_name": null, "source_any": null, "type_of_any": 4}], "type_ref": "builtins._PathLike"}]}], "bound_args": [], "def_extras": {"first_arg": null}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "fsdecode", "ret_type": "builtins.str", "variables": []}}}, "fsencode": {".class": "SymbolTableNode", "kind": "Gdef", "node": {".class": "FuncDef", "arg_kinds": [0], "arg_names": ["filename"], "flags": ["is_conditional"], "fullname": "os.fsencode", "name": "fsencode", "type": {".class": "CallableType", "arg_kinds": [0], "arg_names": ["filename"], "arg_types": [{".class": "UnionType", "items": ["builtins.str", "builtins.bytes", {".class": "Instance", "args": [{".class": "AnyType", "missing_import_name": null, "source_any": null, "type_of_any": 4}], "type_ref": "builtins._PathLike"}]}], "bound_args": [], "def_extras": {"first_arg": null}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "fsencode", "ret_type": "builtins.bytes", "variables": []}}}, "fspath": {".class": "SymbolTableNode", "kind": "Gdef", "node": {".class": "OverloadedFuncDef", "flags": [], "fullname": "os.fspath", "impl": null, "items": [{".class": "Decorator", "func": {".class": "FuncDef", "arg_kinds": [0], "arg_names": ["path"], "flags": ["is_overload", "is_decorated", "is_conditional"], "fullname": "os.fspath", "name": "fspath", "type": {".class": "CallableType", "arg_kinds": [0], "arg_names": ["path"], "arg_types": ["builtins.str"], "bound_args": [], "def_extras": {"first_arg": null}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "fspath", "ret_type": "builtins.str", "variables": []}}, "is_overload": true, "var": {".class": "Var", "flags": [], "fullname": null, "name": "fspath", "type": null}}, {".class": "Decorator", "func": {".class": "FuncDef", "arg_kinds": [0], "arg_names": ["path"], "flags": ["is_overload", "is_decorated", "is_conditional"], "fullname": "os.fspath", "name": "fspath", "type": {".class": "CallableType", "arg_kinds": [0], "arg_names": ["path"], "arg_types": ["builtins.bytes"], "bound_args": [], "def_extras": {"first_arg": null}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "fspath", "ret_type": "builtins.bytes", "variables": []}}, "is_overload": true, "var": {".class": "Var", "flags": [], "fullname": null, "name": "fspath", "type": null}}, {".class": "Decorator", "func": {".class": "FuncDef", "arg_kinds": [0], "arg_names": ["path"], "flags": ["is_overload", "is_decorated", "is_conditional"], "fullname": "os.fspath", "name": "fspath", "type": {".class": "CallableType", "arg_kinds": [0], "arg_names": ["path"], "arg_types": [{".class": "Instance", "args": [{".class": "AnyType", "missing_import_name": null, "source_any": null, "type_of_any": 4}], "type_ref": "builtins._PathLike"}], "bound_args": [], "def_extras": {"first_arg": null}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "fspath", "ret_type": {".class": "AnyType", "missing_import_name": null, "source_any": null, "type_of_any": 2}, "variables": []}}, "is_overload": true, "var": {".class": "Var", "flags": [], "fullname": null, "name": "fspath", "type": null}}], "type": {".class": "Overloaded", "items": [{".class": "CallableType", "arg_kinds": [0], "arg_names": ["path"], "arg_types": ["builtins.str"], "bound_args": [], "def_extras": {"first_arg": null}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "fspath", "ret_type": "builtins.str", "variables": []}, {".class": "CallableType", "arg_kinds": [0], "arg_names": ["path"], "arg_types": ["builtins.bytes"], "bound_args": [], "def_extras": {"first_arg": null}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "fspath", "ret_type": "builtins.bytes", "variables": []}, {".class": "CallableType", "arg_kinds": [0], "arg_names": ["path"], "arg_types": [{".class": "Instance", "args": [{".class": "AnyType", "missing_import_name": null, "source_any": null, "type_of_any": 4}], "type_ref": "builtins._PathLike"}], "bound_args": [], "def_extras": {"first_arg": null}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "fspath", "ret_type": {".class": "AnyType", "missing_import_name": null, "source_any": null, "type_of_any": 2}, "variables": []}]}}}, "fstat": {".class": "SymbolTableNode", "kind": "Gdef", "node": {".class": "FuncDef", "arg_kinds": [0], "arg_names": ["fd"], "flags": [], "fullname": "os.fstat", "name": "fstat", "type": {".class": "CallableType", "arg_kinds": [0], "arg_names": ["fd"], "arg_types": ["builtins.int"], "bound_args": [], "def_extras": {"first_arg": null}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "fstat", "ret_type": "os.stat_result", "variables": []}}}, "fstatvfs": {".class": "SymbolTableNode", "kind": "Gdef", "node": {".class": "FuncDef", "arg_kinds": [0], "arg_names": ["fd"], "flags": ["is_conditional"], "fullname": "os.fstatvfs", "name": "fstatvfs", "type": {".class": "CallableType", "arg_kinds": [0], "arg_names": ["fd"], "arg_types": ["builtins.int"], "bound_args": [], "def_extras": {"first_arg": null}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "fstatvfs", "ret_type": "os.statvfs_result", "variables": []}}}, "fsync": {".class": "SymbolTableNode", "kind": "Gdef", "node": {".class": "FuncDef", "arg_kinds": [0], "arg_names": ["fd"], "flags": [], "fullname": "os.fsync", "name": "fsync", "type": {".class": "CallableType", "arg_kinds": [0], "arg_names": ["fd"], "arg_types": ["builtins.int"], "bound_args": [], "def_extras": {"first_arg": null}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "fsync", "ret_type": {".class": "NoneTyp"}, "variables": []}}}, "ftruncate": {".class": "SymbolTableNode", "kind": "Gdef", "node": {".class": "FuncDef", "arg_kinds": [0, 0], "arg_names": ["fd", "length"], "flags": ["is_conditional"], "fullname": "os.ftruncate", "name": "ftruncate", "type": {".class": "CallableType", "arg_kinds": [0, 0], "arg_names": ["fd", "length"], "arg_types": ["builtins.int", "builtins.int"], "bound_args": [], "def_extras": {"first_arg": null}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "ftruncate", "ret_type": {".class": "NoneTyp"}, "variables": []}}}, "fwalk": {".class": "SymbolTableNode", "kind": "Gdef", "node": {".class": "OverloadedFuncDef", "flags": [], "fullname": "os.fwalk", "impl": null, "items": [{".class": "Decorator", "func": {".class": "FuncDef", "arg_kinds": [1, 1, 1, 5, 5], "arg_names": ["top", "topdown", "onerror", "follow_symlinks", "dir_fd"], "flags": ["is_overload", "is_decorated", "is_conditional"], "fullname": "os.fwalk", "name": "fwalk", "type": {".class": "CallableType", "arg_kinds": [1, 1, 1, 5, 5], "arg_names": ["top", "topdown", "onerror", "follow_symlinks", "dir_fd"], "arg_types": [{".class": "UnionType", "items": ["builtins.str", {".class": "Instance", "args": ["builtins.str"], "type_ref": "builtins._PathLike"}]}, "builtins.bool", {".class": "UnionType", "items": [{".class": "CallableType", "arg_kinds": [2, 4], "arg_names": [null, null], "arg_types": [{".class": "AnyType", "missing_import_name": null, "source_any": null, "type_of_any": 4}, {".class": "AnyType", "missing_import_name": null, "source_any": null, "type_of_any": 4}], "bound_args": [], "def_extras": {}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": true, "name": null, "ret_type": {".class": "AnyType", "missing_import_name": null, "source_any": null, "type_of_any": 4}, "variables": []}, {".class": "NoneTyp"}]}, "builtins.bool", {".class": "UnionType", "items": ["builtins.int", {".class": "NoneTyp"}]}], "bound_args": [], "def_extras": {"first_arg": null}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "fwalk", "ret_type": {".class": "Instance", "args": [{".class": "TupleType", "fallback": {".class": "Instance", "args": [{".class": "AnyType", "missing_import_name": null, "source_any": null, "type_of_any": 6}], "type_ref": "builtins.tuple"}, "implicit": false, "items": ["builtins.str", {".class": "Instance", "args": ["builtins.str"], "type_ref": "builtins.list"}, {".class": "Instance", "args": ["builtins.str"], "type_ref": "builtins.list"}, "builtins.int"]}], "type_ref": "typing.Iterator"}, "variables": []}}, "is_overload": true, "var": {".class": "Var", "flags": [], "fullname": null, "name": "fwalk", "type": null}}, {".class": "Decorator", "func": {".class": "FuncDef", "arg_kinds": [0, 1, 1, 5, 5], "arg_names": ["top", "topdown", "onerror", "follow_symlinks", "dir_fd"], "flags": ["is_overload", "is_decorated", "is_conditional"], "fullname": "os.fwalk", "name": "fwalk", "type": {".class": "CallableType", "arg_kinds": [0, 1, 1, 5, 5], "arg_names": ["top", "topdown", "onerror", "follow_symlinks", "dir_fd"], "arg_types": ["builtins.bytes", "builtins.bool", {".class": "UnionType", "items": [{".class": "CallableType", "arg_kinds": [2, 4], "arg_names": [null, null], "arg_types": [{".class": "AnyType", "missing_import_name": null, "source_any": null, "type_of_any": 4}, {".class": "AnyType", "missing_import_name": null, "source_any": null, "type_of_any": 4}], "bound_args": [], "def_extras": {}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": true, "name": null, "ret_type": {".class": "AnyType", "missing_import_name": null, "source_any": null, "type_of_any": 4}, "variables": []}, {".class": "NoneTyp"}]}, "builtins.bool", {".class": "UnionType", "items": ["builtins.int", {".class": "NoneTyp"}]}], "bound_args": [], "def_extras": {"first_arg": null}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "fwalk", "ret_type": {".class": "Instance", "args": [{".class": "TupleType", "fallback": {".class": "Instance", "args": [{".class": "AnyType", "missing_import_name": null, "source_any": null, "type_of_any": 6}], "type_ref": "builtins.tuple"}, "implicit": false, "items": ["builtins.bytes", {".class": "Instance", "args": ["builtins.bytes"], "type_ref": "builtins.list"}, {".class": "Instance", "args": ["builtins.bytes"], "type_ref": "builtins.list"}, "builtins.int"]}], "type_ref": "typing.Iterator"}, "variables": []}}, "is_overload": true, "var": {".class": "Var", "flags": [], "fullname": null, "name": "fwalk", "type": null}}], "type": {".class": "Overloaded", "items": [{".class": "CallableType", "arg_kinds": [1, 1, 1, 5, 5], "arg_names": ["top", "topdown", "onerror", "follow_symlinks", "dir_fd"], "arg_types": [{".class": "UnionType", "items": ["builtins.str", {".class": "Instance", "args": ["builtins.str"], "type_ref": "builtins._PathLike"}]}, "builtins.bool", {".class": "UnionType", "items": [{".class": "CallableType", "arg_kinds": [2, 4], "arg_names": [null, null], "arg_types": [{".class": "AnyType", "missing_import_name": null, "source_any": null, "type_of_any": 4}, {".class": "AnyType", "missing_import_name": null, "source_any": null, "type_of_any": 4}], "bound_args": [], "def_extras": {}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": true, "name": null, "ret_type": {".class": "AnyType", "missing_import_name": null, "source_any": null, "type_of_any": 4}, "variables": []}, {".class": "NoneTyp"}]}, "builtins.bool", {".class": "UnionType", "items": ["builtins.int", {".class": "NoneTyp"}]}], "bound_args": [], "def_extras": {"first_arg": null}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "fwalk", "ret_type": {".class": "Instance", "args": [{".class": "TupleType", "fallback": {".class": "Instance", "args": [{".class": "AnyType", "missing_import_name": null, "source_any": null, "type_of_any": 6}], "type_ref": "builtins.tuple"}, "implicit": false, "items": ["builtins.str", {".class": "Instance", "args": ["builtins.str"], "type_ref": "builtins.list"}, {".class": "Instance", "args": ["builtins.str"], "type_ref": "builtins.list"}, "builtins.int"]}], "type_ref": "typing.Iterator"}, "variables": []}, {".class": "CallableType", "arg_kinds": [0, 1, 1, 5, 5], "arg_names": ["top", "topdown", "onerror", "follow_symlinks", "dir_fd"], "arg_types": ["builtins.bytes", "builtins.bool", {".class": "UnionType", "items": [{".class": "CallableType", "arg_kinds": [2, 4], "arg_names": [null, null], "arg_types": [{".class": "AnyType", "missing_import_name": null, "source_any": null, "type_of_any": 4}, {".class": "AnyType", "missing_import_name": null, "source_any": null, "type_of_any": 4}], "bound_args": [], "def_extras": {}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": true, "name": null, "ret_type": {".class": "AnyType", "missing_import_name": null, "source_any": null, "type_of_any": 4}, "variables": []}, {".class": "NoneTyp"}]}, "builtins.bool", {".class": "UnionType", "items": ["builtins.int", {".class": "NoneTyp"}]}], "bound_args": [], "def_extras": {"first_arg": null}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "fwalk", "ret_type": {".class": "Instance", "args": [{".class": "TupleType", "fallback": {".class": "Instance", "args": [{".class": "AnyType", "missing_import_name": null, "source_any": null, "type_of_any": 6}], "type_ref": "builtins.tuple"}, "implicit": false, "items": ["builtins.bytes", {".class": "Instance", "args": ["builtins.bytes"], "type_ref": "builtins.list"}, {".class": "Instance", "args": ["builtins.bytes"], "type_ref": "builtins.list"}, "builtins.int"]}], "type_ref": "typing.Iterator"}, "variables": []}]}}}, "get_blocking": {".class": "SymbolTableNode", "kind": "Gdef", "node": {".class": "FuncDef", "arg_kinds": [0], "arg_names": ["fd"], "flags": ["is_conditional"], "fullname": "os.get_blocking", "name": "get_blocking", "type": {".class": "CallableType", "arg_kinds": [0], "arg_names": ["fd"], "arg_types": ["builtins.int"], "bound_args": [], "def_extras": {"first_arg": null}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "get_blocking", "ret_type": "builtins.bool", "variables": []}}}, "get_exec_path": {".class": "SymbolTableNode", "kind": "Gdef", "node": {".class": "FuncDef", "arg_kinds": [1], "arg_names": ["env"], "flags": [], "fullname": "os.get_exec_path", "name": "get_exec_path", "type": {".class": "CallableType", "arg_kinds": [1], "arg_names": ["env"], "arg_types": [{".class": "UnionType", "items": [{".class": "Instance", "args": ["builtins.str", "builtins.str"], "type_ref": "typing.Mapping"}, {".class": "NoneTyp"}]}], "bound_args": [], "def_extras": {"first_arg": null}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "get_exec_path", "ret_type": {".class": "Instance", "args": ["builtins.str"], "type_ref": "builtins.list"}, "variables": []}}}, "get_inheritable": {".class": "SymbolTableNode", "kind": "Gdef", "node": {".class": "FuncDef", "arg_kinds": [0], "arg_names": ["fd"], "flags": ["is_conditional"], "fullname": "os.get_inheritable", "name": "get_inheritable", "type": {".class": "CallableType", "arg_kinds": [0], "arg_names": ["fd"], "arg_types": ["builtins.int"], "bound_args": [], "def_extras": {"first_arg": null}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "get_inheritable", "ret_type": "builtins.bool", "variables": []}}}, "get_terminal_size": {".class": "SymbolTableNode", "kind": "Gdef", "node": {".class": "FuncDef", "arg_kinds": [1], "arg_names": ["fd"], "flags": [], "fullname": "os.get_terminal_size", "name": "get_terminal_size", "type": {".class": "CallableType", "arg_kinds": [1], "arg_names": ["fd"], "arg_types": ["builtins.int"], "bound_args": [], "def_extras": {"first_arg": null}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "get_terminal_size", "ret_type": {".class": "TupleType", "fallback": "os.terminal_size", "implicit": false, "items": ["builtins.int", "builtins.int"]}, "variables": []}}}, "getcwd": {".class": "SymbolTableNode", "kind": "Gdef", "node": {".class": "FuncDef", "arg_kinds": [], "arg_names": [], "flags": [], "fullname": "os.getcwd", "name": "getcwd", "type": {".class": "CallableType", "arg_kinds": [], "arg_names": [], "arg_types": [], "bound_args": [], "def_extras": {"first_arg": null}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "getcwd", "ret_type": "builtins.str", "variables": []}}}, "getcwdb": {".class": "SymbolTableNode", "kind": "Gdef", "node": {".class": "FuncDef", "arg_kinds": [], "arg_names": [], "flags": [], "fullname": "os.getcwdb", "name": "getcwdb", "type": {".class": "CallableType", "arg_kinds": [], "arg_names": [], "arg_types": [], "bound_args": [], "def_extras": {"first_arg": null}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "getcwdb", "ret_type": "builtins.bytes", "variables": []}}}, "getegid": {".class": "SymbolTableNode", "kind": "Gdef", "node": {".class": "FuncDef", "arg_kinds": [], "arg_names": [], "flags": ["is_conditional"], "fullname": "os.getegid", "name": "getegid", "type": {".class": "CallableType", "arg_kinds": [], "arg_names": [], "arg_types": [], "bound_args": [], "def_extras": {"first_arg": null}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "getegid", "ret_type": "builtins.int", "variables": []}}}, "getenv": {".class": "SymbolTableNode", "kind": "Gdef", "node": {".class": "OverloadedFuncDef", "flags": [], "fullname": "os.getenv", "impl": null, "items": [{".class": "Decorator", "func": {".class": "FuncDef", "arg_kinds": [0], "arg_names": ["key"], "flags": ["is_overload", "is_decorated"], "fullname": "os.getenv", "name": "getenv", "type": {".class": "CallableType", "arg_kinds": [0], "arg_names": ["key"], "arg_types": ["builtins.str"], "bound_args": [], "def_extras": {"first_arg": null}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "getenv", "ret_type": {".class": "UnionType", "items": ["builtins.str", {".class": "NoneTyp"}]}, "variables": []}}, "is_overload": true, "var": {".class": "Var", "flags": [], "fullname": null, "name": "getenv", "type": null}}, {".class": "Decorator", "func": {".class": "FuncDef", "arg_kinds": [0, 0], "arg_names": ["key", "default"], "flags": ["is_overload", "is_decorated"], "fullname": "os.getenv", "name": "getenv", "type": {".class": "CallableType", "arg_kinds": [0, 0], "arg_names": ["key", "default"], "arg_types": ["builtins.str", {".class": "TypeVarType", "fullname": "os._T", "id": -1, "name": "_T", "upper_bound": "builtins.object", "values": [], "variance": 0}], "bound_args": [], "def_extras": {"first_arg": null}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "getenv", "ret_type": {".class": "UnionType", "items": ["builtins.str", {".class": "TypeVarType", "fullname": "os._T", "id": -1, "name": "_T", "upper_bound": "builtins.object", "values": [], "variance": 0}]}, "variables": [{".class": "TypeVarDef", "fullname": "os._T", "id": -1, "name": "_T", "upper_bound": "builtins.object", "values": [], "variance": 0}]}}, "is_overload": true, "var": {".class": "Var", "flags": [], "fullname": null, "name": "getenv", "type": null}}], "type": {".class": "Overloaded", "items": [{".class": "CallableType", "arg_kinds": [0], "arg_names": ["key"], "arg_types": ["builtins.str"], "bound_args": [], "def_extras": {"first_arg": null}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "getenv", "ret_type": {".class": "UnionType", "items": ["builtins.str", {".class": "NoneTyp"}]}, "variables": []}, {".class": "CallableType", "arg_kinds": [0, 0], "arg_names": ["key", "default"], "arg_types": ["builtins.str", {".class": "TypeVarType", "fullname": "os._T", "id": -1, "name": "_T", "upper_bound": "builtins.object", "values": [], "variance": 0}], "bound_args": [], "def_extras": {"first_arg": null}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "getenv", "ret_type": {".class": "UnionType", "items": ["builtins.str", {".class": "TypeVarType", "fullname": "os._T", "id": -1, "name": "_T", "upper_bound": "builtins.object", "values": [], "variance": 0}]}, "variables": [{".class": "TypeVarDef", "fullname": "os._T", "id": -1, "name": "_T", "upper_bound": "builtins.object", "values": [], "variance": 0}]}]}}}, "getenvb": {".class": "SymbolTableNode", "kind": "Gdef", "node": {".class": "FuncDef", "arg_kinds": [0, 1], "arg_names": ["key", "default"], "flags": [], "fullname": "os.getenvb", "name": "getenvb", "type": {".class": "CallableType", "arg_kinds": [0, 1], "arg_names": ["key", "default"], "arg_types": ["builtins.bytes", "builtins.bytes"], "bound_args": [], "def_extras": {"first_arg": null}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "getenvb", "ret_type": "builtins.bytes", "variables": []}}}, "geteuid": {".class": "SymbolTableNode", "kind": "Gdef", "node": {".class": "FuncDef", "arg_kinds": [], "arg_names": [], "flags": ["is_conditional"], "fullname": "os.geteuid", "name": "geteuid", "type": {".class": "CallableType", "arg_kinds": [], "arg_names": [], "arg_types": [], "bound_args": [], "def_extras": {"first_arg": null}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "geteuid", "ret_type": "builtins.int", "variables": []}}}, "getgid": {".class": "SymbolTableNode", "kind": "Gdef", "node": {".class": "FuncDef", "arg_kinds": [], "arg_names": [], "flags": ["is_conditional"], "fullname": "os.getgid", "name": "getgid", "type": {".class": "CallableType", "arg_kinds": [], "arg_names": [], "arg_types": [], "bound_args": [], "def_extras": {"first_arg": null}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "getgid", "ret_type": "builtins.int", "variables": []}}}, "getgrouplist": {".class": "SymbolTableNode", "kind": "Gdef", "node": {".class": "FuncDef", "arg_kinds": [0, 0], "arg_names": ["user", "gid"], "flags": ["is_conditional"], "fullname": "os.getgrouplist", "name": "getgrouplist", "type": {".class": "CallableType", "arg_kinds": [0, 0], "arg_names": ["user", "gid"], "arg_types": ["builtins.str", "builtins.int"], "bound_args": [], "def_extras": {"first_arg": null}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "getgrouplist", "ret_type": {".class": "Instance", "args": ["builtins.int"], "type_ref": "builtins.list"}, "variables": []}}}, "getgroups": {".class": "SymbolTableNode", "kind": "Gdef", "node": {".class": "FuncDef", "arg_kinds": [], "arg_names": [], "flags": ["is_conditional"], "fullname": "os.getgroups", "name": "getgroups", "type": {".class": "CallableType", "arg_kinds": [], "arg_names": [], "arg_types": [], "bound_args": [], "def_extras": {"first_arg": null}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "getgroups", "ret_type": {".class": "Instance", "args": ["builtins.int"], "type_ref": "builtins.list"}, "variables": []}}}, "getloadavg": {".class": "SymbolTableNode", "kind": "Gdef", "node": {".class": "FuncDef", "arg_kinds": [], "arg_names": [], "flags": ["is_conditional"], "fullname": "os.getloadavg", "name": "getloadavg", "type": {".class": "CallableType", "arg_kinds": [], "arg_names": [], "arg_types": [], "bound_args": [], "def_extras": {"first_arg": null}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "getloadavg", "ret_type": {".class": "TupleType", "fallback": {".class": "Instance", "args": [{".class": "AnyType", "missing_import_name": null, "source_any": null, "type_of_any": 6}], "type_ref": "builtins.tuple"}, "implicit": false, "items": ["builtins.float", "builtins.float", "builtins.float"]}, "variables": []}}}, "getlogin": {".class": "SymbolTableNode", "kind": "Gdef", "node": {".class": "FuncDef", "arg_kinds": [], "arg_names": [], "flags": [], "fullname": "os.getlogin", "name": "getlogin", "type": {".class": "CallableType", "arg_kinds": [], "arg_names": [], "arg_types": [], "bound_args": [], "def_extras": {"first_arg": null}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "getlogin", "ret_type": "builtins.str", "variables": []}}}, "getpgid": {".class": "SymbolTableNode", "kind": "Gdef", "node": {".class": "FuncDef", "arg_kinds": [0], "arg_names": ["pid"], "flags": ["is_conditional"], "fullname": "os.getpgid", "name": "getpgid", "type": {".class": "CallableType", "arg_kinds": [0], "arg_names": ["pid"], "arg_types": ["builtins.int"], "bound_args": [], "def_extras": {"first_arg": null}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "getpgid", "ret_type": "builtins.int", "variables": []}}}, "getpgrp": {".class": "SymbolTableNode", "kind": "Gdef", "node": {".class": "FuncDef", "arg_kinds": [], "arg_names": [], "flags": ["is_conditional"], "fullname": "os.getpgrp", "name": "getpgrp", "type": {".class": "CallableType", "arg_kinds": [], "arg_names": [], "arg_types": [], "bound_args": [], "def_extras": {"first_arg": null}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "getpgrp", "ret_type": "builtins.int", "variables": []}}}, "getpid": {".class": "SymbolTableNode", "kind": "Gdef", "node": {".class": "FuncDef", "arg_kinds": [], "arg_names": [], "flags": [], "fullname": "os.getpid", "name": "getpid", "type": {".class": "CallableType", "arg_kinds": [], "arg_names": [], "arg_types": [], "bound_args": [], "def_extras": {"first_arg": null}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "getpid", "ret_type": "builtins.int", "variables": []}}}, "getppid": {".class": "SymbolTableNode", "kind": "Gdef", "node": {".class": "FuncDef", "arg_kinds": [], "arg_names": [], "flags": [], "fullname": "os.getppid", "name": "getppid", "type": {".class": "CallableType", "arg_kinds": [], "arg_names": [], "arg_types": [], "bound_args": [], "def_extras": {"first_arg": null}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "getppid", "ret_type": "builtins.int", "variables": []}}}, "getpriority": {".class": "SymbolTableNode", "kind": "Gdef", "node": {".class": "FuncDef", "arg_kinds": [0, 0], "arg_names": ["which", "who"], "flags": ["is_conditional"], "fullname": "os.getpriority", "name": "getpriority", "type": {".class": "CallableType", "arg_kinds": [0, 0], "arg_names": ["which", "who"], "arg_types": ["builtins.int", "builtins.int"], "bound_args": [], "def_extras": {"first_arg": null}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "getpriority", "ret_type": "builtins.int", "variables": []}}}, "getrandom": {".class": "SymbolTableNode", "kind": "Gdef", "node": {".class": "FuncDef", "arg_kinds": [0, 1], "arg_names": ["size", "flags"], "flags": ["is_conditional"], "fullname": "os.getrandom", "name": "getrandom", "type": {".class": "CallableType", "arg_kinds": [0, 1], "arg_names": ["size", "flags"], "arg_types": ["builtins.int", "builtins.int"], "bound_args": [], "def_extras": {"first_arg": null}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "getrandom", "ret_type": "builtins.bytes", "variables": []}}}, "getresgid": {".class": "SymbolTableNode", "kind": "Gdef", "node": {".class": "FuncDef", "arg_kinds": [], "arg_names": [], "flags": ["is_conditional"], "fullname": "os.getresgid", "name": "getresgid", "type": {".class": "CallableType", "arg_kinds": [], "arg_names": [], "arg_types": [], "bound_args": [], "def_extras": {"first_arg": null}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "getresgid", "ret_type": {".class": "TupleType", "fallback": {".class": "Instance", "args": [{".class": "AnyType", "missing_import_name": null, "source_any": null, "type_of_any": 6}], "type_ref": "builtins.tuple"}, "implicit": false, "items": ["builtins.int", "builtins.int", "builtins.int"]}, "variables": []}}}, "getresuid": {".class": "SymbolTableNode", "kind": "Gdef", "node": {".class": "FuncDef", "arg_kinds": [], "arg_names": [], "flags": ["is_conditional"], "fullname": "os.getresuid", "name": "getresuid", "type": {".class": "CallableType", "arg_kinds": [], "arg_names": [], "arg_types": [], "bound_args": [], "def_extras": {"first_arg": null}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "getresuid", "ret_type": {".class": "TupleType", "fallback": {".class": "Instance", "args": [{".class": "AnyType", "missing_import_name": null, "source_any": null, "type_of_any": 6}], "type_ref": "builtins.tuple"}, "implicit": false, "items": ["builtins.int", "builtins.int", "builtins.int"]}, "variables": []}}}, "getsid": {".class": "SymbolTableNode", "kind": "Gdef", "node": {".class": "FuncDef", "arg_kinds": [0], "arg_names": ["pid"], "flags": ["is_conditional"], "fullname": "os.getsid", "name": "getsid", "type": {".class": "CallableType", "arg_kinds": [0], "arg_names": ["pid"], "arg_types": ["builtins.int"], "bound_args": [], "def_extras": {"first_arg": null}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "getsid", "ret_type": "builtins.int", "variables": []}}}, "getuid": {".class": "SymbolTableNode", "kind": "Gdef", "node": {".class": "FuncDef", "arg_kinds": [], "arg_names": [], "flags": ["is_conditional"], "fullname": "os.getuid", "name": "getuid", "type": {".class": "CallableType", "arg_kinds": [], "arg_names": [], "arg_types": [], "bound_args": [], "def_extras": {"first_arg": null}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "getuid", "ret_type": "builtins.int", "variables": []}}}, "getxattr": {".class": "SymbolTableNode", "kind": "Gdef", "node": {".class": "FuncDef", "arg_kinds": [0, 0, 5], "arg_names": ["path", "attribute", "follow_symlinks"], "flags": ["is_conditional"], "fullname": "os.getxattr", "name": "getxattr", "type": {".class": "CallableType", "arg_kinds": [0, 0, 5], "arg_names": ["path", "attribute", "follow_symlinks"], "arg_types": [{".class": "UnionType", "items": ["builtins.int", "builtins.bytes", "builtins.str", {".class": "Instance", "args": [{".class": "AnyType", "missing_import_name": null, "source_any": null, "type_of_any": 4}], "type_ref": "builtins._PathLike"}]}, {".class": "UnionType", "items": ["builtins.bytes", "builtins.str", {".class": "Instance", "args": [{".class": "AnyType", "missing_import_name": null, "source_any": null, "type_of_any": 4}], "type_ref": "builtins._PathLike"}]}, "builtins.bool"], "bound_args": [], "def_extras": {"first_arg": null}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "getxattr", "ret_type": "builtins.bytes", "variables": []}}}, "initgroups": {".class": "SymbolTableNode", "kind": "Gdef", "node": {".class": "FuncDef", "arg_kinds": [0, 0], "arg_names": ["username", "gid"], "flags": ["is_conditional"], "fullname": "os.initgroups", "name": "initgroups", "type": {".class": "CallableType", "arg_kinds": [0, 0], "arg_names": ["username", "gid"], "arg_types": ["builtins.str", "builtins.int"], "bound_args": [], "def_extras": {"first_arg": null}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "initgroups", "ret_type": {".class": "NoneTyp"}, "variables": []}}}, "isatty": {".class": "SymbolTableNode", "kind": "Gdef", "node": {".class": "FuncDef", "arg_kinds": [0], "arg_names": ["fd"], "flags": ["is_conditional"], "fullname": "os.isatty", "name": "isatty", "type": {".class": "CallableType", "arg_kinds": [0], "arg_names": ["fd"], "arg_types": ["builtins.int"], "bound_args": [], "def_extras": {"first_arg": null}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "isatty", "ret_type": "builtins.bool", "variables": []}}}, "kill": {".class": "SymbolTableNode", "kind": "Gdef", "node": {".class": "FuncDef", "arg_kinds": [0, 0], "arg_names": ["pid", "sig"], "flags": [], "fullname": "os.kill", "name": "kill", "type": {".class": "CallableType", "arg_kinds": [0, 0], "arg_names": ["pid", "sig"], "arg_types": ["builtins.int", "builtins.int"], "bound_args": [], "def_extras": {"first_arg": null}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "kill", "ret_type": {".class": "NoneTyp"}, "variables": []}}}, "killpg": {".class": "SymbolTableNode", "kind": "Gdef", "node": {".class": "FuncDef", "arg_kinds": [0, 0], "arg_names": ["pgid", "sig"], "flags": ["is_conditional"], "fullname": "os.killpg", "name": "killpg", "type": {".class": "CallableType", "arg_kinds": [0, 0], "arg_names": ["pgid", "sig"], "arg_types": ["builtins.int", "builtins.int"], "bound_args": [], "def_extras": {"first_arg": null}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "killpg", "ret_type": {".class": "NoneTyp"}, "variables": []}}}, "lchflags": {".class": "SymbolTableNode", "kind": "Gdef", "node": {".class": "FuncDef", "arg_kinds": [0, 0], "arg_names": ["path", "flags"], "flags": ["is_conditional"], "fullname": "os.lchflags", "name": "lchflags", "type": {".class": "CallableType", "arg_kinds": [0, 0], "arg_names": ["path", "flags"], "arg_types": [{".class": "UnionType", "items": ["builtins.bytes", "builtins.str", {".class": "Instance", "args": [{".class": "AnyType", "missing_import_name": null, "source_any": null, "type_of_any": 4}], "type_ref": "builtins._PathLike"}]}, "builtins.int"], "bound_args": [], "def_extras": {"first_arg": null}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "lchflags", "ret_type": {".class": "NoneTyp"}, "variables": []}}}, "lchmod": {".class": "SymbolTableNode", "kind": "Gdef", "node": {".class": "FuncDef", "arg_kinds": [0, 0], "arg_names": ["path", "mode"], "flags": ["is_conditional"], "fullname": "os.lchmod", "name": "lchmod", "type": {".class": "CallableType", "arg_kinds": [0, 0], "arg_names": ["path", "mode"], "arg_types": [{".class": "UnionType", "items": ["builtins.bytes", "builtins.str", {".class": "Instance", "args": [{".class": "AnyType", "missing_import_name": null, "source_any": null, "type_of_any": 4}], "type_ref": "builtins._PathLike"}]}, "builtins.int"], "bound_args": [], "def_extras": {"first_arg": null}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "lchmod", "ret_type": {".class": "NoneTyp"}, "variables": []}}}, "lchown": {".class": "SymbolTableNode", "kind": "Gdef", "node": {".class": "FuncDef", "arg_kinds": [0, 0, 0], "arg_names": ["path", "uid", "gid"], "flags": ["is_conditional"], "fullname": "os.lchown", "name": "lchown", "type": {".class": "CallableType", "arg_kinds": [0, 0, 0], "arg_names": ["path", "uid", "gid"], "arg_types": [{".class": "UnionType", "items": ["builtins.bytes", "builtins.str", {".class": "Instance", "args": [{".class": "AnyType", "missing_import_name": null, "source_any": null, "type_of_any": 4}], "type_ref": "builtins._PathLike"}]}, "builtins.int", "builtins.int"], "bound_args": [], "def_extras": {"first_arg": null}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "lchown", "ret_type": {".class": "NoneTyp"}, "variables": []}}}, "linesep": {".class": "SymbolTableNode", "kind": "Gdef", "node": {".class": "Var", "flags": [], "fullname": "os.linesep", "name": "linesep", "type": "builtins.str"}}, "link": {".class": "SymbolTableNode", "kind": "Gdef", "node": {".class": "FuncDef", "arg_kinds": [0, 0, 5, 5, 5], "arg_names": ["src", "link_name", "src_dir_fd", "dst_dir_fd", "follow_symlinks"], "flags": ["is_conditional"], "fullname": "os.link", "name": "link", "type": {".class": "CallableType", "arg_kinds": [0, 0, 5, 5, 5], "arg_names": ["src", "link_name", "src_dir_fd", "dst_dir_fd", "follow_symlinks"], "arg_types": [{".class": "UnionType", "items": ["builtins.bytes", "builtins.str", {".class": "Instance", "args": [{".class": "AnyType", "missing_import_name": null, "source_any": null, "type_of_any": 4}], "type_ref": "builtins._PathLike"}]}, {".class": "UnionType", "items": ["builtins.bytes", "builtins.str", {".class": "Instance", "args": [{".class": "AnyType", "missing_import_name": null, "source_any": null, "type_of_any": 4}], "type_ref": "builtins._PathLike"}]}, {".class": "UnionType", "items": ["builtins.int", {".class": "NoneTyp"}]}, {".class": "UnionType", "items": ["builtins.int", {".class": "NoneTyp"}]}, "builtins.bool"], "bound_args": [], "def_extras": {"first_arg": null}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "link", "ret_type": {".class": "NoneTyp"}, "variables": []}}}, "listdir": {".class": "SymbolTableNode", "kind": "Gdef", "node": {".class": "OverloadedFuncDef", "flags": [], "fullname": "os.listdir", "impl": null, "items": [{".class": "Decorator", "func": {".class": "FuncDef", "arg_kinds": [1], "arg_names": ["path"], "flags": ["is_overload", "is_decorated", "is_conditional"], "fullname": "os.listdir", "name": "listdir", "type": {".class": "CallableType", "arg_kinds": [1], "arg_names": ["path"], "arg_types": [{".class": "UnionType", "items": ["builtins.str", {".class": "NoneTyp"}]}], "bound_args": [], "def_extras": {"first_arg": null}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "listdir", "ret_type": {".class": "Instance", "args": ["builtins.str"], "type_ref": "builtins.list"}, "variables": []}}, "is_overload": true, "var": {".class": "Var", "flags": [], "fullname": null, "name": "listdir", "type": null}}, {".class": "Decorator", "func": {".class": "FuncDef", "arg_kinds": [0], "arg_names": ["path"], "flags": ["is_overload", "is_decorated", "is_conditional"], "fullname": "os.listdir", "name": "listdir", "type": {".class": "CallableType", "arg_kinds": [0], "arg_names": ["path"], "arg_types": ["builtins.bytes"], "bound_args": [], "def_extras": {"first_arg": null}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "listdir", "ret_type": {".class": "Instance", "args": ["builtins.bytes"], "type_ref": "builtins.list"}, "variables": []}}, "is_overload": true, "var": {".class": "Var", "flags": [], "fullname": null, "name": "listdir", "type": null}}, {".class": "Decorator", "func": {".class": "FuncDef", "arg_kinds": [0], "arg_names": ["path"], "flags": ["is_overload", "is_decorated", "is_conditional"], "fullname": "os.listdir", "name": "listdir", "type": {".class": "CallableType", "arg_kinds": [0], "arg_names": ["path"], "arg_types": ["builtins.int"], "bound_args": [], "def_extras": {"first_arg": null}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "listdir", "ret_type": {".class": "Instance", "args": ["builtins.str"], "type_ref": "builtins.list"}, "variables": []}}, "is_overload": true, "var": {".class": "Var", "flags": [], "fullname": null, "name": "listdir", "type": null}}, {".class": "Decorator", "func": {".class": "FuncDef", "arg_kinds": [0], "arg_names": ["path"], "flags": ["is_overload", "is_decorated", "is_conditional"], "fullname": "os.listdir", "name": "listdir", "type": {".class": "CallableType", "arg_kinds": [0], "arg_names": ["path"], "arg_types": [{".class": "Instance", "args": ["builtins.str"], "type_ref": "builtins._PathLike"}], "bound_args": [], "def_extras": {"first_arg": null}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "listdir", "ret_type": {".class": "Instance", "args": ["builtins.str"], "type_ref": "builtins.list"}, "variables": []}}, "is_overload": true, "var": {".class": "Var", "flags": [], "fullname": null, "name": "listdir", "type": null}}], "type": {".class": "Overloaded", "items": [{".class": "CallableType", "arg_kinds": [1], "arg_names": ["path"], "arg_types": [{".class": "UnionType", "items": ["builtins.str", {".class": "NoneTyp"}]}], "bound_args": [], "def_extras": {"first_arg": null}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "listdir", "ret_type": {".class": "Instance", "args": ["builtins.str"], "type_ref": "builtins.list"}, "variables": []}, {".class": "CallableType", "arg_kinds": [0], "arg_names": ["path"], "arg_types": ["builtins.bytes"], "bound_args": [], "def_extras": {"first_arg": null}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "listdir", "ret_type": {".class": "Instance", "args": ["builtins.bytes"], "type_ref": "builtins.list"}, "variables": []}, {".class": "CallableType", "arg_kinds": [0], "arg_names": ["path"], "arg_types": ["builtins.int"], "bound_args": [], "def_extras": {"first_arg": null}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "listdir", "ret_type": {".class": "Instance", "args": ["builtins.str"], "type_ref": "builtins.list"}, "variables": []}, {".class": "CallableType", "arg_kinds": [0], "arg_names": ["path"], "arg_types": [{".class": "Instance", "args": ["builtins.str"], "type_ref": "builtins._PathLike"}], "bound_args": [], "def_extras": {"first_arg": null}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "listdir", "ret_type": {".class": "Instance", "args": ["builtins.str"], "type_ref": "builtins.list"}, "variables": []}]}}}, "listxattr": {".class": "SymbolTableNode", "kind": "Gdef", "node": {".class": "FuncDef", "arg_kinds": [0, 5], "arg_names": ["path", "follow_symlinks"], "flags": ["is_conditional"], "fullname": "os.listxattr", "name": "listxattr", "type": {".class": "CallableType", "arg_kinds": [0, 5], "arg_names": ["path", "follow_symlinks"], "arg_types": [{".class": "UnionType", "items": ["builtins.int", "builtins.bytes", "builtins.str", {".class": "Instance", "args": [{".class": "AnyType", "missing_import_name": null, "source_any": null, "type_of_any": 4}], "type_ref": "builtins._PathLike"}]}, "builtins.bool"], "bound_args": [], "def_extras": {"first_arg": null}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "listxattr", "ret_type": {".class": "Instance", "args": ["builtins.str"], "type_ref": "builtins.list"}, "variables": []}}}, "lockf": {".class": "SymbolTableNode", "kind": "Gdef", "node": {".class": "FuncDef", "arg_kinds": [0, 0, 0], "arg_names": ["__fd", "__cmd", "__length"], "flags": ["is_conditional"], "fullname": "os.lockf", "name": "lockf", "type": {".class": "CallableType", "arg_kinds": [0, 0, 0], "arg_names": [null, null, null], "arg_types": ["builtins.int", "builtins.int", "builtins.int"], "bound_args": [], "def_extras": {"first_arg": null}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "lockf", "ret_type": {".class": "NoneTyp"}, "variables": []}}}, "lseek": {".class": "SymbolTableNode", "kind": "Gdef", "node": {".class": "FuncDef", "arg_kinds": [0, 0, 0], "arg_names": ["fd", "pos", "how"], "flags": [], "fullname": "os.lseek", "name": "lseek", "type": {".class": "CallableType", "arg_kinds": [0, 0, 0], "arg_names": ["fd", "pos", "how"], "arg_types": ["builtins.int", "builtins.int", "builtins.int"], "bound_args": [], "def_extras": {"first_arg": null}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "lseek", "ret_type": "builtins.int", "variables": []}}}, "lstat": {".class": "SymbolTableNode", "kind": "Gdef", "node": {".class": "FuncDef", "arg_kinds": [0, 5], "arg_names": ["path", "dir_fd"], "flags": ["is_conditional"], "fullname": "os.lstat", "name": "lstat", "type": {".class": "CallableType", "arg_kinds": [0, 5], "arg_names": ["path", "dir_fd"], "arg_types": [{".class": "UnionType", "items": ["builtins.bytes", "builtins.str", {".class": "Instance", "args": [{".class": "AnyType", "missing_import_name": null, "source_any": null, "type_of_any": 4}], "type_ref": "builtins._PathLike"}]}, {".class": "UnionType", "items": ["builtins.int", {".class": "NoneTyp"}]}], "bound_args": [], "def_extras": {"first_arg": null}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "lstat", "ret_type": "os.stat_result", "variables": []}}}, "major": {".class": "SymbolTableNode", "kind": "Gdef", "node": {".class": "FuncDef", "arg_kinds": [0], "arg_names": ["device"], "flags": [], "fullname": "os.major", "name": "major", "type": {".class": "CallableType", "arg_kinds": [0], "arg_names": ["device"], "arg_types": ["builtins.int"], "bound_args": [], "def_extras": {"first_arg": null}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "major", "ret_type": "builtins.int", "variables": []}}}, "makedev": {".class": "SymbolTableNode", "kind": "Gdef", "node": {".class": "FuncDef", "arg_kinds": [0, 0], "arg_names": ["major", "minor"], "flags": [], "fullname": "os.makedev", "name": "makedev", "type": {".class": "CallableType", "arg_kinds": [0, 0], "arg_names": ["major", "minor"], "arg_types": ["builtins.int", "builtins.int"], "bound_args": [], "def_extras": {"first_arg": null}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "makedev", "ret_type": "builtins.int", "variables": []}}}, "makedirs": {".class": "SymbolTableNode", "kind": "Gdef", "node": {".class": "FuncDef", "arg_kinds": [0, 1, 1], "arg_names": ["name", "mode", "exist_ok"], "flags": ["is_conditional"], "fullname": "os.makedirs", "name": "makedirs", "type": {".class": "CallableType", "arg_kinds": [0, 1, 1], "arg_names": ["name", "mode", "exist_ok"], "arg_types": [{".class": "UnionType", "items": ["builtins.bytes", "builtins.str", {".class": "Instance", "args": [{".class": "AnyType", "missing_import_name": null, "source_any": null, "type_of_any": 4}], "type_ref": "builtins._PathLike"}]}, "builtins.int", "builtins.bool"], "bound_args": [], "def_extras": {"first_arg": null}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "makedirs", "ret_type": {".class": "NoneTyp"}, "variables": []}}}, "minor": {".class": "SymbolTableNode", "kind": "Gdef", "node": {".class": "FuncDef", "arg_kinds": [0], "arg_names": ["device"], "flags": [], "fullname": "os.minor", "name": "minor", "type": {".class": "CallableType", "arg_kinds": [0], "arg_names": ["device"], "arg_types": ["builtins.int"], "bound_args": [], "def_extras": {"first_arg": null}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "minor", "ret_type": "builtins.int", "variables": []}}}, "mkdir": {".class": "SymbolTableNode", "kind": "Gdef", "node": {".class": "FuncDef", "arg_kinds": [0, 1, 5], "arg_names": ["path", "mode", "dir_fd"], "flags": ["is_conditional"], "fullname": "os.mkdir", "name": "mkdir", "type": {".class": "CallableType", "arg_kinds": [0, 1, 5], "arg_names": ["path", "mode", "dir_fd"], "arg_types": [{".class": "UnionType", "items": ["builtins.bytes", "builtins.str", {".class": "Instance", "args": [{".class": "AnyType", "missing_import_name": null, "source_any": null, "type_of_any": 4}], "type_ref": "builtins._PathLike"}]}, "builtins.int", {".class": "UnionType", "items": ["builtins.int", {".class": "NoneTyp"}]}], "bound_args": [], "def_extras": {"first_arg": null}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "mkdir", "ret_type": {".class": "NoneTyp"}, "variables": []}}}, "mkfifo": {".class": "SymbolTableNode", "kind": "Gdef", "node": {".class": "FuncDef", "arg_kinds": [0, 1, 5], "arg_names": ["path", "mode", "dir_fd"], "flags": ["is_conditional"], "fullname": "os.mkfifo", "name": "mkfifo", "type": {".class": "CallableType", "arg_kinds": [0, 1, 5], "arg_names": ["path", "mode", "dir_fd"], "arg_types": [{".class": "UnionType", "items": ["builtins.bytes", "builtins.str", {".class": "Instance", "args": [{".class": "AnyType", "missing_import_name": null, "source_any": null, "type_of_any": 4}], "type_ref": "builtins._PathLike"}]}, "builtins.int", {".class": "UnionType", "items": ["builtins.int", {".class": "NoneTyp"}]}], "bound_args": [], "def_extras": {"first_arg": null}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "mkfifo", "ret_type": {".class": "NoneTyp"}, "variables": []}}}, "mknod": {".class": "SymbolTableNode", "kind": "Gdef", "node": {".class": "FuncDef", "arg_kinds": [0, 1, 1, 5], "arg_names": ["path", "mode", "device", "dir_fd"], "flags": ["is_conditional"], "fullname": "os.mknod", "name": "mknod", "type": {".class": "CallableType", "arg_kinds": [0, 1, 1, 5], "arg_names": ["path", "mode", "device", "dir_fd"], "arg_types": [{".class": "UnionType", "items": ["builtins.bytes", "builtins.str", {".class": "Instance", "args": [{".class": "AnyType", "missing_import_name": null, "source_any": null, "type_of_any": 4}], "type_ref": "builtins._PathLike"}]}, "builtins.int", "builtins.int", {".class": "UnionType", "items": ["builtins.int", {".class": "NoneTyp"}]}], "bound_args": [], "def_extras": {"first_arg": null}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "mknod", "ret_type": {".class": "NoneTyp"}, "variables": []}}}, "name": {".class": "SymbolTableNode", "kind": "Gdef", "node": {".class": "Var", "flags": [], "fullname": "os.name", "name": "name", "type": "builtins.str"}}, "nice": {".class": "SymbolTableNode", "kind": "Gdef", "node": {".class": "FuncDef", "arg_kinds": [0], "arg_names": ["increment"], "flags": ["is_conditional"], "fullname": "os.nice", "name": "nice", "type": {".class": "CallableType", "arg_kinds": [0], "arg_names": ["increment"], "arg_types": ["builtins.int"], "bound_args": [], "def_extras": {"first_arg": null}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "nice", "ret_type": "builtins.int", "variables": []}}}, "open": {".class": "SymbolTableNode", "kind": "Gdef", "node": {".class": "FuncDef", "arg_kinds": [0, 0, 1, 5], "arg_names": ["file", "flags", "mode", "dir_fd"], "flags": ["is_conditional"], "fullname": "os.open", "name": "open", "type": {".class": "CallableType", "arg_kinds": [0, 0, 1, 5], "arg_names": ["file", "flags", "mode", "dir_fd"], "arg_types": [{".class": "UnionType", "items": ["builtins.bytes", "builtins.str", {".class": "Instance", "args": [{".class": "AnyType", "missing_import_name": null, "source_any": null, "type_of_any": 4}], "type_ref": "builtins._PathLike"}]}, "builtins.int", "builtins.int", {".class": "UnionType", "items": ["builtins.int", {".class": "NoneTyp"}]}], "bound_args": [], "def_extras": {"first_arg": null}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "open", "ret_type": "builtins.int", "variables": []}}}, "openpty": {".class": "SymbolTableNode", "kind": "Gdef", "node": {".class": "FuncDef", "arg_kinds": [], "arg_names": [], "flags": ["is_conditional"], "fullname": "os.openpty", "name": "openpty", "type": {".class": "CallableType", "arg_kinds": [], "arg_names": [], "arg_types": [], "bound_args": [], "def_extras": {"first_arg": null}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "openpty", "ret_type": {".class": "TupleType", "fallback": {".class": "Instance", "args": [{".class": "AnyType", "missing_import_name": null, "source_any": null, "type_of_any": 6}], "type_ref": "builtins.tuple"}, "implicit": false, "items": ["builtins.int", "builtins.int"]}, "variables": []}}}, "overload": {".class": "SymbolTableNode", "cross_ref": "typing.overload", "kind": "Gdef", "module_hidden": true, "module_public": false}, "pardir": {".class": "SymbolTableNode", "kind": "Gdef", "node": {".class": "Var", "flags": [], "fullname": "os.pardir", "name": "pardir", "type": "builtins.str"}}, "path": {".class": "SymbolTableNode", "cross_ref": "os.path", "kind": "Gdef"}, "pathconf": {".class": "SymbolTableNode", "kind": "Gdef", "node": {".class": "FuncDef", "arg_kinds": [0, 0], "arg_names": ["path", "name"], "flags": ["is_conditional"], "fullname": "os.pathconf", "name": "pathconf", "type": {".class": "CallableType", "arg_kinds": [0, 0], "arg_names": ["path", "name"], "arg_types": [{".class": "UnionType", "items": ["builtins.int", "builtins.bytes", "builtins.str", {".class": "Instance", "args": [{".class": "AnyType", "missing_import_name": null, "source_any": null, "type_of_any": 4}], "type_ref": "builtins._PathLike"}]}, {".class": "UnionType", "items": ["builtins.str", "builtins.int"]}], "bound_args": [], "def_extras": {"first_arg": null}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "pathconf", "ret_type": "builtins.int", "variables": []}}}, "pathconf_names": {".class": "SymbolTableNode", "kind": "Gdef", "node": {".class": "Var", "flags": [], "fullname": "os.pathconf_names", "name": "pathconf_names", "type": {".class": "Instance", "args": ["builtins.str", "builtins.int"], "type_ref": "builtins.dict"}}}, "pathsep": {".class": "SymbolTableNode", "kind": "Gdef", "node": {".class": "Var", "flags": [], "fullname": "os.pathsep", "name": "pathsep", "type": "builtins.str"}}, "pipe": {".class": "SymbolTableNode", "kind": "Gdef", "node": {".class": "FuncDef", "arg_kinds": [], "arg_names": [], "flags": [], "fullname": "os.pipe", "name": "pipe", "type": {".class": "CallableType", "arg_kinds": [], "arg_names": [], "arg_types": [], "bound_args": [], "def_extras": {"first_arg": null}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "pipe", "ret_type": {".class": "TupleType", "fallback": {".class": "Instance", "args": [{".class": "AnyType", "missing_import_name": null, "source_any": null, "type_of_any": 6}], "type_ref": "builtins.tuple"}, "implicit": false, "items": ["builtins.int", "builtins.int"]}, "variables": []}}}, "pipe2": {".class": "SymbolTableNode", "kind": "Gdef", "node": {".class": "FuncDef", "arg_kinds": [0], "arg_names": ["flags"], "flags": ["is_conditional"], "fullname": "os.pipe2", "name": "pipe2", "type": {".class": "CallableType", "arg_kinds": [0], "arg_names": ["flags"], "arg_types": ["builtins.int"], "bound_args": [], "def_extras": {"first_arg": null}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "pipe2", "ret_type": {".class": "TupleType", "fallback": {".class": "Instance", "args": [{".class": "AnyType", "missing_import_name": null, "source_any": null, "type_of_any": 6}], "type_ref": "builtins.tuple"}, "implicit": false, "items": ["builtins.int", "builtins.int"]}, "variables": []}}}, "plock": {".class": "SymbolTableNode", "kind": "Gdef", "node": {".class": "FuncDef", "arg_kinds": [0], "arg_names": ["op"], "flags": ["is_conditional"], "fullname": "os.plock", "name": "plock", "type": {".class": "CallableType", "arg_kinds": [0], "arg_names": ["op"], "arg_types": ["builtins.int"], "bound_args": [], "def_extras": {"first_arg": null}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "plock", "ret_type": {".class": "NoneTyp"}, "variables": []}}}, "popen": {".class": "SymbolTableNode", "kind": "Gdef", "node": {".class": "FuncDef", "arg_kinds": [0, 1, 1], "arg_names": ["command", "mode", "buffering"], "flags": ["is_conditional"], "fullname": "os.popen", "name": "popen", "type": {".class": "CallableType", "arg_kinds": [0, 1, 1], "arg_names": ["command", "mode", "buffering"], "arg_types": ["builtins.str", "builtins.str", "builtins.int"], "bound_args": [], "def_extras": {"first_arg": null}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "popen", "ret_type": "os._wrap_close", "variables": []}}}, "posix_fadvise": {".class": "SymbolTableNode", "kind": "Gdef", "node": {".class": "FuncDef", "arg_kinds": [0, 0, 0, 0], "arg_names": ["fd", "offset", "length", "advice"], "flags": ["is_conditional"], "fullname": "os.posix_fadvise", "name": "posix_fadvise", "type": {".class": "CallableType", "arg_kinds": [0, 0, 0, 0], "arg_names": ["fd", "offset", "length", "advice"], "arg_types": ["builtins.int", "builtins.int", "builtins.int", "builtins.int"], "bound_args": [], "def_extras": {"first_arg": null}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "posix_fadvise", "ret_type": {".class": "NoneTyp"}, "variables": []}}}, "posix_fallocate": {".class": "SymbolTableNode", "kind": "Gdef", "node": {".class": "FuncDef", "arg_kinds": [0, 0, 0], "arg_names": ["fd", "offset", "length"], "flags": ["is_conditional"], "fullname": "os.posix_fallocate", "name": "posix_fallocate", "type": {".class": "CallableType", "arg_kinds": [0, 0, 0], "arg_names": ["fd", "offset", "length"], "arg_types": ["builtins.int", "builtins.int", "builtins.int"], "bound_args": [], "def_extras": {"first_arg": null}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "posix_fallocate", "ret_type": {".class": "NoneTyp"}, "variables": []}}}, "pread": {".class": "SymbolTableNode", "kind": "Gdef", "node": {".class": "FuncDef", "arg_kinds": [0, 0, 0], "arg_names": ["fd", "buffersize", "offset"], "flags": ["is_conditional"], "fullname": "os.pread", "name": "pread", "type": {".class": "CallableType", "arg_kinds": [0, 0, 0], "arg_names": ["fd", "buffersize", "offset"], "arg_types": ["builtins.int", "builtins.int", "builtins.int"], "bound_args": [], "def_extras": {"first_arg": null}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "pread", "ret_type": "builtins.bytes", "variables": []}}}, "putenv": {".class": "SymbolTableNode", "kind": "Gdef", "node": {".class": "FuncDef", "arg_kinds": [0, 0], "arg_names": ["key", "value"], "flags": [], "fullname": "os.putenv", "name": "putenv", "type": {".class": "CallableType", "arg_kinds": [0, 0], "arg_names": ["key", "value"], "arg_types": [{".class": "UnionType", "items": ["builtins.bytes", "builtins.str"]}, {".class": "UnionType", "items": ["builtins.bytes", "builtins.str"]}], "bound_args": [], "def_extras": {"first_arg": null}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "putenv", "ret_type": {".class": "NoneTyp"}, "variables": []}}}, "pwrite": {".class": "SymbolTableNode", "kind": "Gdef", "node": {".class": "FuncDef", "arg_kinds": [0, 0, 0], "arg_names": ["fd", "string", "offset"], "flags": ["is_conditional"], "fullname": "os.pwrite", "name": "pwrite", "type": {".class": "CallableType", "arg_kinds": [0, 0, 0], "arg_names": ["fd", "string", "offset"], "arg_types": ["builtins.int", "builtins.bytes", "builtins.int"], "bound_args": [], "def_extras": {"first_arg": null}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "pwrite", "ret_type": "builtins.int", "variables": []}}}, "read": {".class": "SymbolTableNode", "kind": "Gdef", "node": {".class": "FuncDef", "arg_kinds": [0, 0], "arg_names": ["fd", "n"], "flags": [], "fullname": "os.read", "name": "read", "type": {".class": "CallableType", "arg_kinds": [0, 0], "arg_names": ["fd", "n"], "arg_types": ["builtins.int", "builtins.int"], "bound_args": [], "def_extras": {"first_arg": null}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "read", "ret_type": "builtins.bytes", "variables": []}}}, "readlink": {".class": "SymbolTableNode", "kind": "Gdef", "node": {".class": "FuncDef", "arg_kinds": [0, 5], "arg_names": ["path", "dir_fd"], "flags": ["is_conditional"], "fullname": "os.readlink", "name": "readlink", "type": {".class": "CallableType", "arg_kinds": [0, 5], "arg_names": ["path", "dir_fd"], "arg_types": [{".class": "UnionType", "items": [{".class": "TypeVarType", "fullname": "typing.AnyStr", "id": -1, "name": "AnyStr", "upper_bound": "builtins.object", "values": ["builtins.str", "builtins.bytes"], "variance": 0}, {".class": "Instance", "args": [{".class": "TypeVarType", "fullname": "typing.AnyStr", "id": -1, "name": "AnyStr", "upper_bound": "builtins.object", "values": ["builtins.str", "builtins.bytes"], "variance": 0}], "type_ref": "builtins._PathLike"}]}, {".class": "UnionType", "items": ["builtins.int", {".class": "NoneTyp"}]}], "bound_args": [], "def_extras": {"first_arg": null}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "readlink", "ret_type": {".class": "TypeVarType", "fullname": "typing.AnyStr", "id": -1, "name": "AnyStr", "upper_bound": "builtins.object", "values": ["builtins.str", "builtins.bytes"], "variance": 0}, "variables": [{".class": "TypeVarDef", "fullname": "typing.AnyStr", "id": -1, "name": "AnyStr", "upper_bound": "builtins.object", "values": ["builtins.str", "builtins.bytes"], "variance": 0}]}}}, "readv": {".class": "SymbolTableNode", "kind": "Gdef", "node": {".class": "FuncDef", "arg_kinds": [0, 0], "arg_names": ["fd", "buffers"], "flags": ["is_conditional"], "fullname": "os.readv", "name": "readv", "type": {".class": "CallableType", "arg_kinds": [0, 0], "arg_names": ["fd", "buffers"], "arg_types": ["builtins.int", {".class": "Instance", "args": ["builtins.bytearray"], "type_ref": "typing.Sequence"}], "bound_args": [], "def_extras": {"first_arg": null}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "readv", "ret_type": "builtins.int", "variables": []}}}, "register_at_fork": {".class": "SymbolTableNode", "kind": "Gdef", "node": {".class": "FuncDef", "arg_kinds": [0, 0], "arg_names": ["func", "when"], "flags": ["is_conditional"], "fullname": "os.register_at_fork", "name": "register_at_fork", "type": {".class": "CallableType", "arg_kinds": [0, 0], "arg_names": ["func", "when"], "arg_types": [{".class": "CallableType", "arg_kinds": [2, 4], "arg_names": [null, null], "arg_types": [{".class": "AnyType", "missing_import_name": null, "source_any": null, "type_of_any": 2}, {".class": "AnyType", "missing_import_name": null, "source_any": null, "type_of_any": 2}], "bound_args": [], "def_extras": {}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": true, "name": null, "ret_type": "builtins.object", "variables": []}, "builtins.str"], "bound_args": [], "def_extras": {"first_arg": null}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "register_at_fork", "ret_type": {".class": "NoneTyp"}, "variables": []}}}, "remove": {".class": "SymbolTableNode", "kind": "Gdef", "node": {".class": "FuncDef", "arg_kinds": [0, 5], "arg_names": ["path", "dir_fd"], "flags": ["is_conditional"], "fullname": "os.remove", "name": "remove", "type": {".class": "CallableType", "arg_kinds": [0, 5], "arg_names": ["path", "dir_fd"], "arg_types": [{".class": "UnionType", "items": ["builtins.bytes", "builtins.str", {".class": "Instance", "args": [{".class": "AnyType", "missing_import_name": null, "source_any": null, "type_of_any": 4}], "type_ref": "builtins._PathLike"}]}, {".class": "UnionType", "items": ["builtins.int", {".class": "NoneTyp"}]}], "bound_args": [], "def_extras": {"first_arg": null}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "remove", "ret_type": {".class": "NoneTyp"}, "variables": []}}}, "removedirs": {".class": "SymbolTableNode", "kind": "Gdef", "node": {".class": "FuncDef", "arg_kinds": [0], "arg_names": ["name"], "flags": ["is_conditional"], "fullname": "os.removedirs", "name": "removedirs", "type": {".class": "CallableType", "arg_kinds": [0], "arg_names": ["name"], "arg_types": [{".class": "UnionType", "items": ["builtins.bytes", "builtins.str", {".class": "Instance", "args": [{".class": "AnyType", "missing_import_name": null, "source_any": null, "type_of_any": 4}], "type_ref": "builtins._PathLike"}]}], "bound_args": [], "def_extras": {"first_arg": null}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "removedirs", "ret_type": {".class": "NoneTyp"}, "variables": []}}}, "removexattr": {".class": "SymbolTableNode", "kind": "Gdef", "node": {".class": "FuncDef", "arg_kinds": [0, 0, 5], "arg_names": ["path", "attribute", "follow_symlinks"], "flags": ["is_conditional"], "fullname": "os.removexattr", "name": "removexattr", "type": {".class": "CallableType", "arg_kinds": [0, 0, 5], "arg_names": ["path", "attribute", "follow_symlinks"], "arg_types": [{".class": "UnionType", "items": ["builtins.int", "builtins.bytes", "builtins.str", {".class": "Instance", "args": [{".class": "AnyType", "missing_import_name": null, "source_any": null, "type_of_any": 4}], "type_ref": "builtins._PathLike"}]}, {".class": "UnionType", "items": ["builtins.bytes", "builtins.str", {".class": "Instance", "args": [{".class": "AnyType", "missing_import_name": null, "source_any": null, "type_of_any": 4}], "type_ref": "builtins._PathLike"}]}, "builtins.bool"], "bound_args": [], "def_extras": {"first_arg": null}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "removexattr", "ret_type": {".class": "NoneTyp"}, "variables": []}}}, "rename": {".class": "SymbolTableNode", "kind": "Gdef", "node": {".class": "FuncDef", "arg_kinds": [0, 0, 5, 5], "arg_names": ["src", "dst", "src_dir_fd", "dst_dir_fd"], "flags": ["is_conditional"], "fullname": "os.rename", "name": "rename", "type": {".class": "CallableType", "arg_kinds": [0, 0, 5, 5], "arg_names": ["src", "dst", "src_dir_fd", "dst_dir_fd"], "arg_types": [{".class": "UnionType", "items": ["builtins.bytes", "builtins.str", {".class": "Instance", "args": [{".class": "AnyType", "missing_import_name": null, "source_any": null, "type_of_any": 4}], "type_ref": "builtins._PathLike"}]}, {".class": "UnionType", "items": ["builtins.bytes", "builtins.str", {".class": "Instance", "args": [{".class": "AnyType", "missing_import_name": null, "source_any": null, "type_of_any": 4}], "type_ref": "builtins._PathLike"}]}, {".class": "UnionType", "items": ["builtins.int", {".class": "NoneTyp"}]}, {".class": "UnionType", "items": ["builtins.int", {".class": "NoneTyp"}]}], "bound_args": [], "def_extras": {"first_arg": null}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "rename", "ret_type": {".class": "NoneTyp"}, "variables": []}}}, "renames": {".class": "SymbolTableNode", "kind": "Gdef", "node": {".class": "FuncDef", "arg_kinds": [0, 0], "arg_names": ["old", "new"], "flags": [], "fullname": "os.renames", "name": "renames", "type": {".class": "CallableType", "arg_kinds": [0, 0], "arg_names": ["old", "new"], "arg_types": [{".class": "UnionType", "items": ["builtins.bytes", "builtins.str", {".class": "Instance", "args": [{".class": "AnyType", "missing_import_name": null, "source_any": null, "type_of_any": 4}], "type_ref": "builtins._PathLike"}]}, {".class": "UnionType", "items": ["builtins.bytes", "builtins.str", {".class": "Instance", "args": [{".class": "AnyType", "missing_import_name": null, "source_any": null, "type_of_any": 4}], "type_ref": "builtins._PathLike"}]}], "bound_args": [], "def_extras": {"first_arg": null}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "renames", "ret_type": {".class": "NoneTyp"}, "variables": []}}}, "replace": {".class": "SymbolTableNode", "kind": "Gdef", "node": {".class": "FuncDef", "arg_kinds": [0, 0, 5, 5], "arg_names": ["src", "dst", "src_dir_fd", "dst_dir_fd"], "flags": ["is_conditional"], "fullname": "os.replace", "name": "replace", "type": {".class": "CallableType", "arg_kinds": [0, 0, 5, 5], "arg_names": ["src", "dst", "src_dir_fd", "dst_dir_fd"], "arg_types": [{".class": "UnionType", "items": ["builtins.bytes", "builtins.str", {".class": "Instance", "args": [{".class": "AnyType", "missing_import_name": null, "source_any": null, "type_of_any": 4}], "type_ref": "builtins._PathLike"}]}, {".class": "UnionType", "items": ["builtins.bytes", "builtins.str", {".class": "Instance", "args": [{".class": "AnyType", "missing_import_name": null, "source_any": null, "type_of_any": 4}], "type_ref": "builtins._PathLike"}]}, {".class": "UnionType", "items": ["builtins.int", {".class": "NoneTyp"}]}, {".class": "UnionType", "items": ["builtins.int", {".class": "NoneTyp"}]}], "bound_args": [], "def_extras": {"first_arg": null}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "replace", "ret_type": {".class": "NoneTyp"}, "variables": []}}}, "rmdir": {".class": "SymbolTableNode", "kind": "Gdef", "node": {".class": "FuncDef", "arg_kinds": [0, 5], "arg_names": ["path", "dir_fd"], "flags": ["is_conditional"], "fullname": "os.rmdir", "name": "rmdir", "type": {".class": "CallableType", "arg_kinds": [0, 5], "arg_names": ["path", "dir_fd"], "arg_types": [{".class": "UnionType", "items": ["builtins.bytes", "builtins.str", {".class": "Instance", "args": [{".class": "AnyType", "missing_import_name": null, "source_any": null, "type_of_any": 4}], "type_ref": "builtins._PathLike"}]}, {".class": "UnionType", "items": ["builtins.int", {".class": "NoneTyp"}]}], "bound_args": [], "def_extras": {"first_arg": null}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "rmdir", "ret_type": {".class": "NoneTyp"}, "variables": []}}}, "scandir": {".class": "SymbolTableNode", "kind": "Gdef", "node": {".class": "OverloadedFuncDef", "flags": [], "fullname": "os.scandir", "impl": null, "items": [{".class": "Decorator", "func": {".class": "FuncDef", "arg_kinds": [], "arg_names": [], "flags": ["is_overload", "is_decorated", "is_conditional"], "fullname": "os.scandir", "name": "scandir", "type": {".class": "CallableType", "arg_kinds": [], "arg_names": [], "arg_types": [], "bound_args": [], "def_extras": {"first_arg": null}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "scandir", "ret_type": {".class": "Instance", "args": ["builtins.str"], "type_ref": "os._ScandirIterator"}, "variables": []}}, "is_overload": true, "var": {".class": "Var", "flags": [], "fullname": null, "name": "scandir", "type": null}}, {".class": "Decorator", "func": {".class": "FuncDef", "arg_kinds": [0], "arg_names": ["path"], "flags": ["is_overload", "is_decorated", "is_conditional"], "fullname": "os.scandir", "name": "scandir", "type": {".class": "CallableType", "arg_kinds": [0], "arg_names": ["path"], "arg_types": ["builtins.int"], "bound_args": [], "def_extras": {"first_arg": null}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "scandir", "ret_type": {".class": "Instance", "args": ["builtins.str"], "type_ref": "os._ScandirIterator"}, "variables": []}}, "is_overload": true, "var": {".class": "Var", "flags": [], "fullname": null, "name": "scandir", "type": null}}, {".class": "Decorator", "func": {".class": "FuncDef", "arg_kinds": [0], "arg_names": ["path"], "flags": ["is_overload", "is_decorated", "is_conditional"], "fullname": "os.scandir", "name": "scandir", "type": {".class": "CallableType", "arg_kinds": [0], "arg_names": ["path"], "arg_types": [{".class": "UnionType", "items": [{".class": "TypeVarType", "fullname": "typing.AnyStr", "id": -1, "name": "AnyStr", "upper_bound": "builtins.object", "values": ["builtins.str", "builtins.bytes"], "variance": 0}, {".class": "Instance", "args": [{".class": "TypeVarType", "fullname": "typing.AnyStr", "id": -1, "name": "AnyStr", "upper_bound": "builtins.object", "values": ["builtins.str", "builtins.bytes"], "variance": 0}], "type_ref": "builtins._PathLike"}]}], "bound_args": [], "def_extras": {"first_arg": null}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "scandir", "ret_type": {".class": "Instance", "args": [{".class": "TypeVarType", "fullname": "typing.AnyStr", "id": -1, "name": "AnyStr", "upper_bound": "builtins.object", "values": ["builtins.str", "builtins.bytes"], "variance": 0}], "type_ref": "os._ScandirIterator"}, "variables": [{".class": "TypeVarDef", "fullname": "typing.AnyStr", "id": -1, "name": "AnyStr", "upper_bound": "builtins.object", "values": ["builtins.str", "builtins.bytes"], "variance": 0}]}}, "is_overload": true, "var": {".class": "Var", "flags": [], "fullname": null, "name": "scandir", "type": null}}], "type": {".class": "Overloaded", "items": [{".class": "CallableType", "arg_kinds": [], "arg_names": [], "arg_types": [], "bound_args": [], "def_extras": {"first_arg": null}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "scandir", "ret_type": {".class": "Instance", "args": ["builtins.str"], "type_ref": "os._ScandirIterator"}, "variables": []}, {".class": "CallableType", "arg_kinds": [0], "arg_names": ["path"], "arg_types": ["builtins.int"], "bound_args": [], "def_extras": {"first_arg": null}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "scandir", "ret_type": {".class": "Instance", "args": ["builtins.str"], "type_ref": "os._ScandirIterator"}, "variables": []}, {".class": "CallableType", "arg_kinds": [0], "arg_names": ["path"], "arg_types": [{".class": "UnionType", "items": [{".class": "TypeVarType", "fullname": "typing.AnyStr", "id": -1, "name": "AnyStr", "upper_bound": "builtins.object", "values": ["builtins.str", "builtins.bytes"], "variance": 0}, {".class": "Instance", "args": [{".class": "TypeVarType", "fullname": "typing.AnyStr", "id": -1, "name": "AnyStr", "upper_bound": "builtins.object", "values": ["builtins.str", "builtins.bytes"], "variance": 0}], "type_ref": "builtins._PathLike"}]}], "bound_args": [], "def_extras": {"first_arg": null}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "scandir", "ret_type": {".class": "Instance", "args": [{".class": "TypeVarType", "fullname": "typing.AnyStr", "id": -1, "name": "AnyStr", "upper_bound": "builtins.object", "values": ["builtins.str", "builtins.bytes"], "variance": 0}], "type_ref": "os._ScandirIterator"}, "variables": [{".class": "TypeVarDef", "fullname": "typing.AnyStr", "id": -1, "name": "AnyStr", "upper_bound": "builtins.object", "values": ["builtins.str", "builtins.bytes"], "variance": 0}]}]}}}, "sched_get_priority_max": {".class": "SymbolTableNode", "kind": "Gdef", "node": {".class": "FuncDef", "arg_kinds": [0], "arg_names": ["policy"], "flags": ["is_conditional"], "fullname": "os.sched_get_priority_max", "name": "sched_get_priority_max", "type": {".class": "CallableType", "arg_kinds": [0], "arg_names": ["policy"], "arg_types": ["builtins.int"], "bound_args": [], "def_extras": {"first_arg": null}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "sched_get_priority_max", "ret_type": "builtins.int", "variables": []}}}, "sched_get_priority_min": {".class": "SymbolTableNode", "kind": "Gdef", "node": {".class": "FuncDef", "arg_kinds": [0], "arg_names": ["policy"], "flags": ["is_conditional"], "fullname": "os.sched_get_priority_min", "name": "sched_get_priority_min", "type": {".class": "CallableType", "arg_kinds": [0], "arg_names": ["policy"], "arg_types": ["builtins.int"], "bound_args": [], "def_extras": {"first_arg": null}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "sched_get_priority_min", "ret_type": "builtins.int", "variables": []}}}, "sched_getaffinity": {".class": "SymbolTableNode", "kind": "Gdef", "node": {".class": "FuncDef", "arg_kinds": [0], "arg_names": ["pid"], "flags": ["is_conditional"], "fullname": "os.sched_getaffinity", "name": "sched_getaffinity", "type": {".class": "CallableType", "arg_kinds": [0], "arg_names": ["pid"], "arg_types": ["builtins.int"], "bound_args": [], "def_extras": {"first_arg": null}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "sched_getaffinity", "ret_type": {".class": "Instance", "args": ["builtins.int"], "type_ref": "builtins.set"}, "variables": []}}}, "sched_getparam": {".class": "SymbolTableNode", "kind": "Gdef", "node": {".class": "FuncDef", "arg_kinds": [0], "arg_names": ["pid"], "flags": ["is_conditional"], "fullname": "os.sched_getparam", "name": "sched_getparam", "type": {".class": "CallableType", "arg_kinds": [0], "arg_names": ["pid"], "arg_types": ["builtins.int"], "bound_args": [], "def_extras": {"first_arg": null}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "sched_getparam", "ret_type": {".class": "TupleType", "fallback": "posix.sched_priority@34", "implicit": false, "items": ["builtins.int"]}, "variables": []}}}, "sched_getscheduler": {".class": "SymbolTableNode", "kind": "Gdef", "node": {".class": "FuncDef", "arg_kinds": [0], "arg_names": ["pid"], "flags": ["is_conditional"], "fullname": "os.sched_getscheduler", "name": "sched_getscheduler", "type": {".class": "CallableType", "arg_kinds": [0], "arg_names": ["pid"], "arg_types": ["builtins.int"], "bound_args": [], "def_extras": {"first_arg": null}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "sched_getscheduler", "ret_type": "builtins.int", "variables": []}}}, "sched_param": {".class": "SymbolTableNode", "cross_ref": "posix.sched_priority@34", "kind": "Gdef", "module_hidden": true, "module_public": false}, "sched_rr_get_interval": {".class": "SymbolTableNode", "kind": "Gdef", "node": {".class": "FuncDef", "arg_kinds": [0], "arg_names": ["pid"], "flags": ["is_conditional"], "fullname": "os.sched_rr_get_interval", "name": "sched_rr_get_interval", "type": {".class": "CallableType", "arg_kinds": [0], "arg_names": ["pid"], "arg_types": ["builtins.int"], "bound_args": [], "def_extras": {"first_arg": null}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "sched_rr_get_interval", "ret_type": "builtins.float", "variables": []}}}, "sched_setaffinity": {".class": "SymbolTableNode", "kind": "Gdef", "node": {".class": "FuncDef", "arg_kinds": [0, 0], "arg_names": ["pid", "mask"], "flags": ["is_conditional"], "fullname": "os.sched_setaffinity", "name": "sched_setaffinity", "type": {".class": "CallableType", "arg_kinds": [0, 0], "arg_names": ["pid", "mask"], "arg_types": ["builtins.int", {".class": "Instance", "args": ["builtins.int"], "type_ref": "typing.Iterable"}], "bound_args": [], "def_extras": {"first_arg": null}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "sched_setaffinity", "ret_type": {".class": "NoneTyp"}, "variables": []}}}, "sched_setparam": {".class": "SymbolTableNode", "kind": "Gdef", "node": {".class": "FuncDef", "arg_kinds": [0, 0], "arg_names": ["pid", "param"], "flags": ["is_conditional"], "fullname": "os.sched_setparam", "name": "sched_setparam", "type": {".class": "CallableType", "arg_kinds": [0, 0], "arg_names": ["pid", "param"], "arg_types": ["builtins.int", {".class": "TupleType", "fallback": "posix.sched_priority@34", "implicit": false, "items": ["builtins.int"]}], "bound_args": [], "def_extras": {"first_arg": null}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "sched_setparam", "ret_type": {".class": "NoneTyp"}, "variables": []}}}, "sched_setscheduler": {".class": "SymbolTableNode", "kind": "Gdef", "node": {".class": "FuncDef", "arg_kinds": [0, 0, 0], "arg_names": ["pid", "policy", "param"], "flags": ["is_conditional"], "fullname": "os.sched_setscheduler", "name": "sched_setscheduler", "type": {".class": "CallableType", "arg_kinds": [0, 0, 0], "arg_names": ["pid", "policy", "param"], "arg_types": ["builtins.int", "builtins.int", {".class": "TupleType", "fallback": "posix.sched_priority@34", "implicit": false, "items": ["builtins.int"]}], "bound_args": [], "def_extras": {"first_arg": null}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "sched_setscheduler", "ret_type": {".class": "NoneTyp"}, "variables": []}}}, "sched_yield": {".class": "SymbolTableNode", "kind": "Gdef", "node": {".class": "FuncDef", "arg_kinds": [], "arg_names": [], "flags": ["is_conditional"], "fullname": "os.sched_yield", "name": "sched_yield", "type": {".class": "CallableType", "arg_kinds": [], "arg_names": [], "arg_types": [], "bound_args": [], "def_extras": {"first_arg": null}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "sched_yield", "ret_type": {".class": "NoneTyp"}, "variables": []}}}, "sendfile": {".class": "SymbolTableNode", "kind": "Gdef", "node": {".class": "OverloadedFuncDef", "flags": [], "fullname": "os.sendfile", "impl": null, "items": [{".class": "Decorator", "func": {".class": "FuncDef", "arg_kinds": [0, 0, 0, 0], "arg_names": ["__out_fd", "__in_fd", "offset", "count"], "flags": ["is_overload", "is_decorated", "is_conditional"], "fullname": "os.sendfile", "name": "sendfile", "type": {".class": "CallableType", "arg_kinds": [0, 0, 0, 0], "arg_names": [null, null, "offset", "count"], "arg_types": ["builtins.int", "builtins.int", {".class": "UnionType", "items": ["builtins.int", {".class": "NoneTyp"}]}, "builtins.int"], "bound_args": [], "def_extras": {"first_arg": null}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "sendfile", "ret_type": "builtins.int", "variables": []}}, "is_overload": true, "var": {".class": "Var", "flags": [], "fullname": null, "name": "sendfile", "type": null}}, {".class": "Decorator", "func": {".class": "FuncDef", "arg_kinds": [0, 0, 0, 0, 1, 1, 1], "arg_names": ["__out_fd", "__in_fd", "offset", "count", "headers", "trailers", "flags"], "flags": ["is_overload", "is_decorated", "is_conditional"], "fullname": "os.sendfile", "name": "sendfile", "type": {".class": "CallableType", "arg_kinds": [0, 0, 0, 0, 1, 1, 1], "arg_names": [null, null, "offset", "count", "headers", "trailers", "flags"], "arg_types": ["builtins.int", "builtins.int", "builtins.int", "builtins.int", {".class": "Instance", "args": ["builtins.bytes"], "type_ref": "typing.Sequence"}, {".class": "Instance", "args": ["builtins.bytes"], "type_ref": "typing.Sequence"}, "builtins.int"], "bound_args": [], "def_extras": {"first_arg": null}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "sendfile", "ret_type": "builtins.int", "variables": []}}, "is_overload": true, "var": {".class": "Var", "flags": [], "fullname": null, "name": "sendfile", "type": null}}], "type": {".class": "Overloaded", "items": [{".class": "CallableType", "arg_kinds": [0, 0, 0, 0], "arg_names": [null, null, "offset", "count"], "arg_types": ["builtins.int", "builtins.int", {".class": "UnionType", "items": ["builtins.int", {".class": "NoneTyp"}]}, "builtins.int"], "bound_args": [], "def_extras": {"first_arg": null}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "sendfile", "ret_type": "builtins.int", "variables": []}, {".class": "CallableType", "arg_kinds": [0, 0, 0, 0, 1, 1, 1], "arg_names": [null, null, "offset", "count", "headers", "trailers", "flags"], "arg_types": ["builtins.int", "builtins.int", "builtins.int", "builtins.int", {".class": "Instance", "args": ["builtins.bytes"], "type_ref": "typing.Sequence"}, {".class": "Instance", "args": ["builtins.bytes"], "type_ref": "typing.Sequence"}, "builtins.int"], "bound_args": [], "def_extras": {"first_arg": null}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "sendfile", "ret_type": "builtins.int", "variables": []}]}}}, "sep": {".class": "SymbolTableNode", "kind": "Gdef", "node": {".class": "Var", "flags": [], "fullname": "os.sep", "name": "sep", "type": "builtins.str"}}, "set_blocking": {".class": "SymbolTableNode", "kind": "Gdef", "node": {".class": "FuncDef", "arg_kinds": [0, 0], "arg_names": ["fd", "blocking"], "flags": ["is_conditional"], "fullname": "os.set_blocking", "name": "set_blocking", "type": {".class": "CallableType", "arg_kinds": [0, 0], "arg_names": ["fd", "blocking"], "arg_types": ["builtins.int", "builtins.bool"], "bound_args": [], "def_extras": {"first_arg": null}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "set_blocking", "ret_type": {".class": "NoneTyp"}, "variables": []}}}, "set_inheritable": {".class": "SymbolTableNode", "kind": "Gdef", "node": {".class": "FuncDef", "arg_kinds": [0, 0], "arg_names": ["fd", "inheritable"], "flags": ["is_conditional"], "fullname": "os.set_inheritable", "name": "set_inheritable", "type": {".class": "CallableType", "arg_kinds": [0, 0], "arg_names": ["fd", "inheritable"], "arg_types": ["builtins.int", "builtins.bool"], "bound_args": [], "def_extras": {"first_arg": null}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "set_inheritable", "ret_type": {".class": "NoneTyp"}, "variables": []}}}, "setegid": {".class": "SymbolTableNode", "kind": "Gdef", "node": {".class": "FuncDef", "arg_kinds": [0], "arg_names": ["egid"], "flags": ["is_conditional"], "fullname": "os.setegid", "name": "setegid", "type": {".class": "CallableType", "arg_kinds": [0], "arg_names": ["egid"], "arg_types": ["builtins.int"], "bound_args": [], "def_extras": {"first_arg": null}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "setegid", "ret_type": {".class": "NoneTyp"}, "variables": []}}}, "seteuid": {".class": "SymbolTableNode", "kind": "Gdef", "node": {".class": "FuncDef", "arg_kinds": [0], "arg_names": ["euid"], "flags": ["is_conditional"], "fullname": "os.seteuid", "name": "seteuid", "type": {".class": "CallableType", "arg_kinds": [0], "arg_names": ["euid"], "arg_types": ["builtins.int"], "bound_args": [], "def_extras": {"first_arg": null}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "seteuid", "ret_type": {".class": "NoneTyp"}, "variables": []}}}, "setgid": {".class": "SymbolTableNode", "kind": "Gdef", "node": {".class": "FuncDef", "arg_kinds": [0], "arg_names": ["gid"], "flags": ["is_conditional"], "fullname": "os.setgid", "name": "setgid", "type": {".class": "CallableType", "arg_kinds": [0], "arg_names": ["gid"], "arg_types": ["builtins.int"], "bound_args": [], "def_extras": {"first_arg": null}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "setgid", "ret_type": {".class": "NoneTyp"}, "variables": []}}}, "setgroups": {".class": "SymbolTableNode", "kind": "Gdef", "node": {".class": "FuncDef", "arg_kinds": [0], "arg_names": ["groups"], "flags": ["is_conditional"], "fullname": "os.setgroups", "name": "setgroups", "type": {".class": "CallableType", "arg_kinds": [0], "arg_names": ["groups"], "arg_types": [{".class": "Instance", "args": ["builtins.int"], "type_ref": "typing.Sequence"}], "bound_args": [], "def_extras": {"first_arg": null}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "setgroups", "ret_type": {".class": "NoneTyp"}, "variables": []}}}, "setpgid": {".class": "SymbolTableNode", "kind": "Gdef", "node": {".class": "FuncDef", "arg_kinds": [0, 0], "arg_names": ["pid", "pgrp"], "flags": ["is_conditional"], "fullname": "os.setpgid", "name": "setpgid", "type": {".class": "CallableType", "arg_kinds": [0, 0], "arg_names": ["pid", "pgrp"], "arg_types": ["builtins.int", "builtins.int"], "bound_args": [], "def_extras": {"first_arg": null}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "setpgid", "ret_type": {".class": "NoneTyp"}, "variables": []}}}, "setpgrp": {".class": "SymbolTableNode", "kind": "Gdef", "node": {".class": "FuncDef", "arg_kinds": [], "arg_names": [], "flags": ["is_conditional"], "fullname": "os.setpgrp", "name": "setpgrp", "type": {".class": "CallableType", "arg_kinds": [], "arg_names": [], "arg_types": [], "bound_args": [], "def_extras": {"first_arg": null}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "setpgrp", "ret_type": {".class": "NoneTyp"}, "variables": []}}}, "setpriority": {".class": "SymbolTableNode", "kind": "Gdef", "node": {".class": "FuncDef", "arg_kinds": [0, 0, 0], "arg_names": ["which", "who", "priority"], "flags": ["is_conditional"], "fullname": "os.setpriority", "name": "setpriority", "type": {".class": "CallableType", "arg_kinds": [0, 0, 0], "arg_names": ["which", "who", "priority"], "arg_types": ["builtins.int", "builtins.int", "builtins.int"], "bound_args": [], "def_extras": {"first_arg": null}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "setpriority", "ret_type": {".class": "NoneTyp"}, "variables": []}}}, "setregid": {".class": "SymbolTableNode", "kind": "Gdef", "node": {".class": "FuncDef", "arg_kinds": [0, 0], "arg_names": ["rgid", "egid"], "flags": ["is_conditional"], "fullname": "os.setregid", "name": "setregid", "type": {".class": "CallableType", "arg_kinds": [0, 0], "arg_names": ["rgid", "egid"], "arg_types": ["builtins.int", "builtins.int"], "bound_args": [], "def_extras": {"first_arg": null}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "setregid", "ret_type": {".class": "NoneTyp"}, "variables": []}}}, "setresgid": {".class": "SymbolTableNode", "kind": "Gdef", "node": {".class": "FuncDef", "arg_kinds": [0, 0, 0], "arg_names": ["rgid", "egid", "sgid"], "flags": ["is_conditional"], "fullname": "os.setresgid", "name": "setresgid", "type": {".class": "CallableType", "arg_kinds": [0, 0, 0], "arg_names": ["rgid", "egid", "sgid"], "arg_types": ["builtins.int", "builtins.int", "builtins.int"], "bound_args": [], "def_extras": {"first_arg": null}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "setresgid", "ret_type": {".class": "NoneTyp"}, "variables": []}}}, "setresuid": {".class": "SymbolTableNode", "kind": "Gdef", "node": {".class": "FuncDef", "arg_kinds": [0, 0, 0], "arg_names": ["ruid", "euid", "suid"], "flags": ["is_conditional"], "fullname": "os.setresuid", "name": "setresuid", "type": {".class": "CallableType", "arg_kinds": [0, 0, 0], "arg_names": ["ruid", "euid", "suid"], "arg_types": ["builtins.int", "builtins.int", "builtins.int"], "bound_args": [], "def_extras": {"first_arg": null}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "setresuid", "ret_type": {".class": "NoneTyp"}, "variables": []}}}, "setreuid": {".class": "SymbolTableNode", "kind": "Gdef", "node": {".class": "FuncDef", "arg_kinds": [0, 0], "arg_names": ["ruid", "euid"], "flags": ["is_conditional"], "fullname": "os.setreuid", "name": "setreuid", "type": {".class": "CallableType", "arg_kinds": [0, 0], "arg_names": ["ruid", "euid"], "arg_types": ["builtins.int", "builtins.int"], "bound_args": [], "def_extras": {"first_arg": null}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "setreuid", "ret_type": {".class": "NoneTyp"}, "variables": []}}}, "setsid": {".class": "SymbolTableNode", "kind": "Gdef", "node": {".class": "FuncDef", "arg_kinds": [], "arg_names": [], "flags": ["is_conditional"], "fullname": "os.setsid", "name": "setsid", "type": {".class": "CallableType", "arg_kinds": [], "arg_names": [], "arg_types": [], "bound_args": [], "def_extras": {"first_arg": null}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "setsid", "ret_type": {".class": "NoneTyp"}, "variables": []}}}, "setuid": {".class": "SymbolTableNode", "kind": "Gdef", "node": {".class": "FuncDef", "arg_kinds": [0], "arg_names": ["uid"], "flags": ["is_conditional"], "fullname": "os.setuid", "name": "setuid", "type": {".class": "CallableType", "arg_kinds": [0], "arg_names": ["uid"], "arg_types": ["builtins.int"], "bound_args": [], "def_extras": {"first_arg": null}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "setuid", "ret_type": {".class": "NoneTyp"}, "variables": []}}}, "setxattr": {".class": "SymbolTableNode", "kind": "Gdef", "node": {".class": "FuncDef", "arg_kinds": [0, 0, 0, 1, 5], "arg_names": ["path", "attribute", "value", "flags", "follow_symlinks"], "flags": ["is_conditional"], "fullname": "os.setxattr", "name": "setxattr", "type": {".class": "CallableType", "arg_kinds": [0, 0, 0, 1, 5], "arg_names": ["path", "attribute", "value", "flags", "follow_symlinks"], "arg_types": [{".class": "UnionType", "items": ["builtins.int", "builtins.bytes", "builtins.str", {".class": "Instance", "args": [{".class": "AnyType", "missing_import_name": null, "source_any": null, "type_of_any": 4}], "type_ref": "builtins._PathLike"}]}, {".class": "UnionType", "items": ["builtins.bytes", "builtins.str", {".class": "Instance", "args": [{".class": "AnyType", "missing_import_name": null, "source_any": null, "type_of_any": 4}], "type_ref": "builtins._PathLike"}]}, "builtins.bytes", "builtins.int", "builtins.bool"], "bound_args": [], "def_extras": {"first_arg": null}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "setxattr", "ret_type": {".class": "NoneTyp"}, "variables": []}}}, "spawnl": {".class": "SymbolTableNode", "kind": "Gdef", "node": {".class": "FuncDef", "arg_kinds": [0, 0, 0, 2], "arg_names": ["mode", "path", "arg0", "args"], "flags": [], "fullname": "os.spawnl", "name": "spawnl", "type": {".class": "CallableType", "arg_kinds": [0, 0, 0, 2], "arg_names": ["mode", "path", "arg0", "args"], "arg_types": ["builtins.int", {".class": "UnionType", "items": ["builtins.bytes", "builtins.str", {".class": "Instance", "args": [{".class": "AnyType", "missing_import_name": null, "source_any": null, "type_of_any": 4}], "type_ref": "builtins._PathLike"}]}, {".class": "UnionType", "items": ["builtins.bytes", "builtins.str"]}, {".class": "UnionType", "items": ["builtins.bytes", "builtins.str"]}], "bound_args": [], "def_extras": {"first_arg": null}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "spawnl", "ret_type": "builtins.int", "variables": []}}}, "spawnle": {".class": "SymbolTableNode", "kind": "Gdef", "node": {".class": "FuncDef", "arg_kinds": [0, 0, 0, 2], "arg_names": ["mode", "path", "arg0", "args"], "flags": [], "fullname": "os.spawnle", "name": "spawnle", "type": {".class": "CallableType", "arg_kinds": [0, 0, 0, 2], "arg_names": ["mode", "path", "arg0", "args"], "arg_types": ["builtins.int", {".class": "UnionType", "items": ["builtins.bytes", "builtins.str", {".class": "Instance", "args": [{".class": "AnyType", "missing_import_name": null, "source_any": null, "type_of_any": 4}], "type_ref": "builtins._PathLike"}]}, {".class": "UnionType", "items": ["builtins.bytes", "builtins.str"]}, {".class": "AnyType", "missing_import_name": null, "source_any": null, "type_of_any": 2}], "bound_args": [], "def_extras": {"first_arg": null}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "spawnle", "ret_type": "builtins.int", "variables": []}}}, "spawnlp": {".class": "SymbolTableNode", "kind": "Gdef", "node": {".class": "FuncDef", "arg_kinds": [0, 0, 0, 2], "arg_names": ["mode", "file", "arg0", "args"], "flags": ["is_conditional"], "fullname": "os.spawnlp", "name": "spawnlp", "type": {".class": "CallableType", "arg_kinds": [0, 0, 0, 2], "arg_names": ["mode", "file", "arg0", "args"], "arg_types": ["builtins.int", {".class": "UnionType", "items": ["builtins.bytes", "builtins.str", {".class": "Instance", "args": [{".class": "AnyType", "missing_import_name": null, "source_any": null, "type_of_any": 4}], "type_ref": "builtins._PathLike"}]}, {".class": "UnionType", "items": ["builtins.bytes", "builtins.str"]}, {".class": "UnionType", "items": ["builtins.bytes", "builtins.str"]}], "bound_args": [], "def_extras": {"first_arg": null}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "spawnlp", "ret_type": "builtins.int", "variables": []}}}, "spawnlpe": {".class": "SymbolTableNode", "kind": "Gdef", "node": {".class": "FuncDef", "arg_kinds": [0, 0, 0, 2], "arg_names": ["mode", "file", "arg0", "args"], "flags": ["is_conditional"], "fullname": "os.spawnlpe", "name": "spawnlpe", "type": {".class": "CallableType", "arg_kinds": [0, 0, 0, 2], "arg_names": ["mode", "file", "arg0", "args"], "arg_types": ["builtins.int", {".class": "UnionType", "items": ["builtins.bytes", "builtins.str", {".class": "Instance", "args": [{".class": "AnyType", "missing_import_name": null, "source_any": null, "type_of_any": 4}], "type_ref": "builtins._PathLike"}]}, {".class": "UnionType", "items": ["builtins.bytes", "builtins.str"]}, {".class": "AnyType", "missing_import_name": null, "source_any": null, "type_of_any": 2}], "bound_args": [], "def_extras": {"first_arg": null}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "spawnlpe", "ret_type": "builtins.int", "variables": []}}}, "spawnv": {".class": "SymbolTableNode", "kind": "Gdef", "node": {".class": "FuncDef", "arg_kinds": [0, 0, 0], "arg_names": ["mode", "path", "args"], "flags": [], "fullname": "os.spawnv", "name": "spawnv", "type": {".class": "CallableType", "arg_kinds": [0, 0, 0], "arg_names": ["mode", "path", "args"], "arg_types": ["builtins.int", {".class": "UnionType", "items": ["builtins.bytes", "builtins.str", {".class": "Instance", "args": [{".class": "AnyType", "missing_import_name": null, "source_any": null, "type_of_any": 4}], "type_ref": "builtins._PathLike"}]}, {".class": "Instance", "args": [{".class": "UnionType", "items": ["builtins.bytes", "builtins.str"]}], "type_ref": "builtins.list"}], "bound_args": [], "def_extras": {"first_arg": null}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "spawnv", "ret_type": "builtins.int", "variables": []}}}, "spawnve": {".class": "SymbolTableNode", "kind": "Gdef", "node": {".class": "FuncDef", "arg_kinds": [0, 0, 0, 0], "arg_names": ["mode", "path", "args", "env"], "flags": [], "fullname": "os.spawnve", "name": "spawnve", "type": {".class": "CallableType", "arg_kinds": [0, 0, 0, 0], "arg_names": ["mode", "path", "args", "env"], "arg_types": ["builtins.int", {".class": "UnionType", "items": ["builtins.bytes", "builtins.str", {".class": "Instance", "args": [{".class": "AnyType", "missing_import_name": null, "source_any": null, "type_of_any": 4}], "type_ref": "builtins._PathLike"}]}, {".class": "Instance", "args": [{".class": "UnionType", "items": ["builtins.bytes", "builtins.str"]}], "type_ref": "builtins.list"}, {".class": "Instance", "args": ["builtins.str", "builtins.str"], "type_ref": "typing.Mapping"}], "bound_args": [], "def_extras": {"first_arg": null}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "spawnve", "ret_type": "builtins.int", "variables": []}}}, "spawnvp": {".class": "SymbolTableNode", "kind": "Gdef", "node": {".class": "FuncDef", "arg_kinds": [0, 0, 0], "arg_names": ["mode", "file", "args"], "flags": ["is_conditional"], "fullname": "os.spawnvp", "name": "spawnvp", "type": {".class": "CallableType", "arg_kinds": [0, 0, 0], "arg_names": ["mode", "file", "args"], "arg_types": ["builtins.int", {".class": "UnionType", "items": ["builtins.bytes", "builtins.str", {".class": "Instance", "args": [{".class": "AnyType", "missing_import_name": null, "source_any": null, "type_of_any": 4}], "type_ref": "builtins._PathLike"}]}, {".class": "Instance", "args": [{".class": "UnionType", "items": ["builtins.bytes", "builtins.str"]}], "type_ref": "builtins.list"}], "bound_args": [], "def_extras": {"first_arg": null}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "spawnvp", "ret_type": "builtins.int", "variables": []}}}, "spawnvpe": {".class": "SymbolTableNode", "kind": "Gdef", "node": {".class": "FuncDef", "arg_kinds": [0, 0, 0, 0], "arg_names": ["mode", "file", "args", "env"], "flags": ["is_conditional"], "fullname": "os.spawnvpe", "name": "spawnvpe", "type": {".class": "CallableType", "arg_kinds": [0, 0, 0, 0], "arg_names": ["mode", "file", "args", "env"], "arg_types": ["builtins.int", {".class": "UnionType", "items": ["builtins.bytes", "builtins.str", {".class": "Instance", "args": [{".class": "AnyType", "missing_import_name": null, "source_any": null, "type_of_any": 4}], "type_ref": "builtins._PathLike"}]}, {".class": "Instance", "args": [{".class": "UnionType", "items": ["builtins.bytes", "builtins.str"]}], "type_ref": "builtins.list"}, {".class": "Instance", "args": ["builtins.str", "builtins.str"], "type_ref": "typing.Mapping"}], "bound_args": [], "def_extras": {"first_arg": null}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "spawnvpe", "ret_type": "builtins.int", "variables": []}}}, "stat": {".class": "SymbolTableNode", "kind": "Gdef", "node": {".class": "FuncDef", "arg_kinds": [0, 5, 5], "arg_names": ["path", "dir_fd", "follow_symlinks"], "flags": ["is_conditional"], "fullname": "os.stat", "name": "stat", "type": {".class": "CallableType", "arg_kinds": [0, 5, 5], "arg_names": ["path", "dir_fd", "follow_symlinks"], "arg_types": [{".class": "UnionType", "items": ["builtins.int", "builtins.bytes", "builtins.str", {".class": "Instance", "args": [{".class": "AnyType", "missing_import_name": null, "source_any": null, "type_of_any": 4}], "type_ref": "builtins._PathLike"}]}, {".class": "UnionType", "items": ["builtins.int", {".class": "NoneTyp"}]}, "builtins.bool"], "bound_args": [], "def_extras": {"first_arg": null}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "stat", "ret_type": "os.stat_result", "variables": []}}}, "stat_result": {".class": "SymbolTableNode", "kind": "Gdef", "node": {".class": "TypeInfo", "_promote": null, "abstract_attributes": [], "bases": ["builtins.object"], "declared_metaclass": null, "defn": {".class": "ClassDef", "fullname": "os.stat_result", "name": "stat_result", "type_vars": []}, "flags": [], "fullname": "os.stat_result", "metaclass_type": null, "metadata": {}, "module_name": "os", "mro": ["os.stat_result", "builtins.object"], "names": {".class": "SymbolTable", "__init__": {".class": "SymbolTableNode", "kind": "Mdef", "node": {".class": "FuncDef", "arg_kinds": [0, 0], "arg_names": ["self", "tuple"], "flags": [], "fullname": "os.stat_result.__init__", "name": "__init__", "type": {".class": "CallableType", "arg_kinds": [0, 0], "arg_names": ["self", "tuple"], "arg_types": ["os.stat_result", {".class": "Instance", "args": ["builtins.int"], "type_ref": "builtins.tuple"}], "bound_args": [], "def_extras": {"first_arg": "self"}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "__init__ of stat_result", "ret_type": {".class": "NoneTyp"}, "variables": []}}}, "st_atime": {".class": "SymbolTableNode", "kind": "Mdef", "node": {".class": "Var", "flags": ["is_initialized_in_class"], "fullname": "os.stat_result.st_atime", "name": "st_atime", "type": "builtins.float"}}, "st_atime_ns": {".class": "SymbolTableNode", "kind": "Mdef", "node": {".class": "Var", "flags": ["is_initialized_in_class"], "fullname": "os.stat_result.st_atime_ns", "name": "st_atime_ns", "type": "builtins.int"}}, "st_birthtime": {".class": "SymbolTableNode", "kind": "Mdef", "node": {".class": "Var", "flags": ["is_initialized_in_class"], "fullname": "os.stat_result.st_birthtime", "name": "st_birthtime", "type": "builtins.int"}}, "st_blksize": {".class": "SymbolTableNode", "kind": "Mdef", "node": {".class": "Var", "flags": ["is_initialized_in_class"], "fullname": "os.stat_result.st_blksize", "name": "st_blksize", "type": "builtins.int"}}, "st_blocks": {".class": "SymbolTableNode", "kind": "Mdef", "node": {".class": "Var", "flags": ["is_initialized_in_class"], "fullname": "os.stat_result.st_blocks", "name": "st_blocks", "type": "builtins.int"}}, "st_creator": {".class": "SymbolTableNode", "kind": "Mdef", "node": {".class": "Var", "flags": ["is_initialized_in_class"], "fullname": "os.stat_result.st_creator", "name": "st_creator", "type": "builtins.int"}}, "st_ctime": {".class": "SymbolTableNode", "kind": "Mdef", "node": {".class": "Var", "flags": ["is_initialized_in_class"], "fullname": "os.stat_result.st_ctime", "name": "st_ctime", "type": "builtins.float"}}, "st_ctime_ns": {".class": "SymbolTableNode", "kind": "Mdef", "node": {".class": "Var", "flags": ["is_initialized_in_class"], "fullname": "os.stat_result.st_ctime_ns", "name": "st_ctime_ns", "type": "builtins.int"}}, "st_dev": {".class": "SymbolTableNode", "kind": "Mdef", "node": {".class": "Var", "flags": ["is_initialized_in_class"], "fullname": "os.stat_result.st_dev", "name": "st_dev", "type": "builtins.int"}}, "st_flags": {".class": "SymbolTableNode", "kind": "Mdef", "node": {".class": "Var", "flags": ["is_initialized_in_class"], "fullname": "os.stat_result.st_flags", "name": "st_flags", "type": "builtins.int"}}, "st_gen": {".class": "SymbolTableNode", "kind": "Mdef", "node": {".class": "Var", "flags": ["is_initialized_in_class"], "fullname": "os.stat_result.st_gen", "name": "st_gen", "type": "builtins.int"}}, "st_gid": {".class": "SymbolTableNode", "kind": "Mdef", "node": {".class": "Var", "flags": ["is_initialized_in_class"], "fullname": "os.stat_result.st_gid", "name": "st_gid", "type": "builtins.int"}}, "st_ino": {".class": "SymbolTableNode", "kind": "Mdef", "node": {".class": "Var", "flags": ["is_initialized_in_class"], "fullname": "os.stat_result.st_ino", "name": "st_ino", "type": "builtins.int"}}, "st_mode": {".class": "SymbolTableNode", "kind": "Mdef", "node": {".class": "Var", "flags": ["is_initialized_in_class"], "fullname": "os.stat_result.st_mode", "name": "st_mode", "type": "builtins.int"}}, "st_mtime": {".class": "SymbolTableNode", "kind": "Mdef", "node": {".class": "Var", "flags": ["is_initialized_in_class"], "fullname": "os.stat_result.st_mtime", "name": "st_mtime", "type": "builtins.float"}}, "st_mtime_ns": {".class": "SymbolTableNode", "kind": "Mdef", "node": {".class": "Var", "flags": ["is_initialized_in_class"], "fullname": "os.stat_result.st_mtime_ns", "name": "st_mtime_ns", "type": "builtins.int"}}, "st_nlink": {".class": "SymbolTableNode", "kind": "Mdef", "node": {".class": "Var", "flags": ["is_initialized_in_class"], "fullname": "os.stat_result.st_nlink", "name": "st_nlink", "type": "builtins.int"}}, "st_rdev": {".class": "SymbolTableNode", "kind": "Mdef", "node": {".class": "Var", "flags": ["is_initialized_in_class"], "fullname": "os.stat_result.st_rdev", "name": "st_rdev", "type": "builtins.int"}}, "st_rsize": {".class": "SymbolTableNode", "kind": "Mdef", "node": {".class": "Var", "flags": ["is_initialized_in_class"], "fullname": "os.stat_result.st_rsize", "name": "st_rsize", "type": "builtins.int"}}, "st_size": {".class": "SymbolTableNode", "kind": "Mdef", "node": {".class": "Var", "flags": ["is_initialized_in_class"], "fullname": "os.stat_result.st_size", "name": "st_size", "type": "builtins.int"}}, "st_type": {".class": "SymbolTableNode", "kind": "Mdef", "node": {".class": "Var", "flags": ["is_initialized_in_class"], "fullname": "os.stat_result.st_type", "name": "st_type", "type": "builtins.int"}}, "st_uid": {".class": "SymbolTableNode", "kind": "Mdef", "node": {".class": "Var", "flags": ["is_initialized_in_class"], "fullname": "os.stat_result.st_uid", "name": "st_uid", "type": "builtins.int"}}}, "tuple_type": null, "type_vars": [], "typeddict_type": null}}, "statvfs": {".class": "SymbolTableNode", "kind": "Gdef", "node": {".class": "FuncDef", "arg_kinds": [0], "arg_names": ["path"], "flags": ["is_conditional"], "fullname": "os.statvfs", "name": "statvfs", "type": {".class": "CallableType", "arg_kinds": [0], "arg_names": ["path"], "arg_types": [{".class": "UnionType", "items": ["builtins.int", "builtins.bytes", "builtins.str", {".class": "Instance", "args": [{".class": "AnyType", "missing_import_name": null, "source_any": null, "type_of_any": 4}], "type_ref": "builtins._PathLike"}]}], "bound_args": [], "def_extras": {"first_arg": null}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "statvfs", "ret_type": "os.statvfs_result", "variables": []}}}, "statvfs_result": {".class": "SymbolTableNode", "kind": "Gdef", "node": {".class": "TypeInfo", "_promote": null, "abstract_attributes": [], "bases": ["builtins.object"], "declared_metaclass": null, "defn": {".class": "ClassDef", "fullname": "os.statvfs_result", "name": "statvfs_result", "type_vars": []}, "flags": [], "fullname": "os.statvfs_result", "metaclass_type": null, "metadata": {}, "module_name": "os", "mro": ["os.statvfs_result", "builtins.object"], "names": {".class": "SymbolTable", "f_bavail": {".class": "SymbolTableNode", "kind": "Mdef", "node": {".class": "Var", "flags": ["is_initialized_in_class"], "fullname": "os.statvfs_result.f_bavail", "name": "f_bavail", "type": "builtins.int"}}, "f_bfree": {".class": "SymbolTableNode", "kind": "Mdef", "node": {".class": "Var", "flags": ["is_initialized_in_class"], "fullname": "os.statvfs_result.f_bfree", "name": "f_bfree", "type": "builtins.int"}}, "f_blocks": {".class": "SymbolTableNode", "kind": "Mdef", "node": {".class": "Var", "flags": ["is_initialized_in_class"], "fullname": "os.statvfs_result.f_blocks", "name": "f_blocks", "type": "builtins.int"}}, "f_bsize": {".class": "SymbolTableNode", "kind": "Mdef", "node": {".class": "Var", "flags": ["is_initialized_in_class"], "fullname": "os.statvfs_result.f_bsize", "name": "f_bsize", "type": "builtins.int"}}, "f_favail": {".class": "SymbolTableNode", "kind": "Mdef", "node": {".class": "Var", "flags": ["is_initialized_in_class"], "fullname": "os.statvfs_result.f_favail", "name": "f_favail", "type": "builtins.int"}}, "f_ffree": {".class": "SymbolTableNode", "kind": "Mdef", "node": {".class": "Var", "flags": ["is_initialized_in_class"], "fullname": "os.statvfs_result.f_ffree", "name": "f_ffree", "type": "builtins.int"}}, "f_files": {".class": "SymbolTableNode", "kind": "Mdef", "node": {".class": "Var", "flags": ["is_initialized_in_class"], "fullname": "os.statvfs_result.f_files", "name": "f_files", "type": "builtins.int"}}, "f_flag": {".class": "SymbolTableNode", "kind": "Mdef", "node": {".class": "Var", "flags": ["is_initialized_in_class"], "fullname": "os.statvfs_result.f_flag", "name": "f_flag", "type": "builtins.int"}}, "f_frsize": {".class": "SymbolTableNode", "kind": "Mdef", "node": {".class": "Var", "flags": ["is_initialized_in_class"], "fullname": "os.statvfs_result.f_frsize", "name": "f_frsize", "type": "builtins.int"}}, "f_namemax": {".class": "SymbolTableNode", "kind": "Mdef", "node": {".class": "Var", "flags": ["is_initialized_in_class"], "fullname": "os.statvfs_result.f_namemax", "name": "f_namemax", "type": "builtins.int"}}}, "tuple_type": null, "type_vars": [], "typeddict_type": null}}, "strerror": {".class": "SymbolTableNode", "kind": "Gdef", "node": {".class": "FuncDef", "arg_kinds": [0], "arg_names": ["code"], "flags": [], "fullname": "os.strerror", "name": "strerror", "type": {".class": "CallableType", "arg_kinds": [0], "arg_names": ["code"], "arg_types": ["builtins.int"], "bound_args": [], "def_extras": {"first_arg": null}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "strerror", "ret_type": "builtins.str", "variables": []}}}, "supports_bytes_environ": {".class": "SymbolTableNode", "kind": "Gdef", "node": {".class": "Var", "flags": [], "fullname": "os.supports_bytes_environ", "name": "supports_bytes_environ", "type": "builtins.bool"}}, "supports_dir_fd": {".class": "SymbolTableNode", "kind": "Gdef", "node": {".class": "Var", "flags": [], "fullname": "os.supports_dir_fd", "name": "supports_dir_fd", "type": {".class": "Instance", "args": [{".class": "CallableType", "arg_kinds": [2, 4], "arg_names": [null, null], "arg_types": [{".class": "AnyType", "missing_import_name": null, "source_any": null, "type_of_any": 2}, {".class": "AnyType", "missing_import_name": null, "source_any": null, "type_of_any": 2}], "bound_args": [], "def_extras": {}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": true, "name": null, "ret_type": {".class": "AnyType", "missing_import_name": null, "source_any": null, "type_of_any": 2}, "variables": []}], "type_ref": "builtins.set"}}}, "supports_effective_ids": {".class": "SymbolTableNode", "kind": "Gdef", "node": {".class": "Var", "flags": [], "fullname": "os.supports_effective_ids", "name": "supports_effective_ids", "type": {".class": "Instance", "args": [{".class": "CallableType", "arg_kinds": [2, 4], "arg_names": [null, null], "arg_types": [{".class": "AnyType", "missing_import_name": null, "source_any": null, "type_of_any": 2}, {".class": "AnyType", "missing_import_name": null, "source_any": null, "type_of_any": 2}], "bound_args": [], "def_extras": {}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": true, "name": null, "ret_type": {".class": "AnyType", "missing_import_name": null, "source_any": null, "type_of_any": 2}, "variables": []}], "type_ref": "builtins.set"}}}, "supports_fd": {".class": "SymbolTableNode", "kind": "Gdef", "node": {".class": "Var", "flags": [], "fullname": "os.supports_fd", "name": "supports_fd", "type": {".class": "Instance", "args": [{".class": "CallableType", "arg_kinds": [2, 4], "arg_names": [null, null], "arg_types": [{".class": "AnyType", "missing_import_name": null, "source_any": null, "type_of_any": 2}, {".class": "AnyType", "missing_import_name": null, "source_any": null, "type_of_any": 2}], "bound_args": [], "def_extras": {}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": true, "name": null, "ret_type": {".class": "AnyType", "missing_import_name": null, "source_any": null, "type_of_any": 2}, "variables": []}], "type_ref": "builtins.set"}}}, "supports_follow_symlinks": {".class": "SymbolTableNode", "kind": "Gdef", "node": {".class": "Var", "flags": [], "fullname": "os.supports_follow_symlinks", "name": "supports_follow_symlinks", "type": {".class": "Instance", "args": [{".class": "CallableType", "arg_kinds": [2, 4], "arg_names": [null, null], "arg_types": [{".class": "AnyType", "missing_import_name": null, "source_any": null, "type_of_any": 2}, {".class": "AnyType", "missing_import_name": null, "source_any": null, "type_of_any": 2}], "bound_args": [], "def_extras": {}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": true, "name": null, "ret_type": {".class": "AnyType", "missing_import_name": null, "source_any": null, "type_of_any": 2}, "variables": []}], "type_ref": "builtins.set"}}}, "symlink": {".class": "SymbolTableNode", "kind": "Gdef", "node": {".class": "FuncDef", "arg_kinds": [0, 0, 1, 5], "arg_names": ["source", "link_name", "target_is_directory", "dir_fd"], "flags": ["is_conditional"], "fullname": "os.symlink", "name": "symlink", "type": {".class": "CallableType", "arg_kinds": [0, 0, 1, 5], "arg_names": ["source", "link_name", "target_is_directory", "dir_fd"], "arg_types": [{".class": "UnionType", "items": ["builtins.bytes", "builtins.str", {".class": "Instance", "args": [{".class": "AnyType", "missing_import_name": null, "source_any": null, "type_of_any": 4}], "type_ref": "builtins._PathLike"}]}, {".class": "UnionType", "items": ["builtins.bytes", "builtins.str", {".class": "Instance", "args": [{".class": "AnyType", "missing_import_name": null, "source_any": null, "type_of_any": 4}], "type_ref": "builtins._PathLike"}]}, "builtins.bool", {".class": "UnionType", "items": ["builtins.int", {".class": "NoneTyp"}]}], "bound_args": [], "def_extras": {"first_arg": null}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "symlink", "ret_type": {".class": "NoneTyp"}, "variables": []}}}, "sync": {".class": "SymbolTableNode", "kind": "Gdef", "node": {".class": "FuncDef", "arg_kinds": [], "arg_names": [], "flags": ["is_conditional"], "fullname": "os.sync", "name": "sync", "type": {".class": "CallableType", "arg_kinds": [], "arg_names": [], "arg_types": [], "bound_args": [], "def_extras": {"first_arg": null}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "sync", "ret_type": {".class": "NoneTyp"}, "variables": []}}}, "sys": {".class": "SymbolTableNode", "cross_ref": "sys", "kind": "Gdef", "module_hidden": true, "module_public": false}, "sysconf": {".class": "SymbolTableNode", "kind": "Gdef", "node": {".class": "FuncDef", "arg_kinds": [0], "arg_names": ["name"], "flags": ["is_conditional"], "fullname": "os.sysconf", "name": "sysconf", "type": {".class": "CallableType", "arg_kinds": [0], "arg_names": ["name"], "arg_types": [{".class": "UnionType", "items": ["builtins.str", "builtins.int"]}], "bound_args": [], "def_extras": {"first_arg": null}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "sysconf", "ret_type": "builtins.int", "variables": []}}}, "sysconf_names": {".class": "SymbolTableNode", "kind": "Gdef", "node": {".class": "Var", "flags": [], "fullname": "os.sysconf_names", "name": "sysconf_names", "type": {".class": "Instance", "args": ["builtins.str", "builtins.int"], "type_ref": "builtins.dict"}}}, "system": {".class": "SymbolTableNode", "kind": "Gdef", "node": {".class": "FuncDef", "arg_kinds": [0], "arg_names": ["command"], "flags": [], "fullname": "os.system", "name": "system", "type": {".class": "CallableType", "arg_kinds": [0], "arg_names": ["command"], "arg_types": [{".class": "UnionType", "items": ["builtins.bytes", "builtins.str", {".class": "Instance", "args": [{".class": "AnyType", "missing_import_name": null, "source_any": null, "type_of_any": 4}], "type_ref": "builtins._PathLike"}]}], "bound_args": [], "def_extras": {"first_arg": null}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "system", "ret_type": "builtins.int", "variables": []}}}, "tcgetpgrp": {".class": "SymbolTableNode", "kind": "Gdef", "node": {".class": "FuncDef", "arg_kinds": [0], "arg_names": ["fd"], "flags": ["is_conditional"], "fullname": "os.tcgetpgrp", "name": "tcgetpgrp", "type": {".class": "CallableType", "arg_kinds": [0], "arg_names": ["fd"], "arg_types": ["builtins.int"], "bound_args": [], "def_extras": {"first_arg": null}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "tcgetpgrp", "ret_type": "builtins.int", "variables": []}}}, "tcsetpgrp": {".class": "SymbolTableNode", "kind": "Gdef", "node": {".class": "FuncDef", "arg_kinds": [0, 0], "arg_names": ["fd", "pg"], "flags": ["is_conditional"], "fullname": "os.tcsetpgrp", "name": "tcsetpgrp", "type": {".class": "CallableType", "arg_kinds": [0, 0], "arg_names": ["fd", "pg"], "arg_types": ["builtins.int", "builtins.int"], "bound_args": [], "def_extras": {"first_arg": null}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "tcsetpgrp", "ret_type": {".class": "NoneTyp"}, "variables": []}}}, "terminal_size": {".class": "SymbolTableNode", "kind": "Gdef", "node": {".class": "TypeInfo", "_promote": null, "abstract_attributes": [], "bases": [{".class": "Instance", "args": ["builtins.int"], "type_ref": "builtins.tuple"}], "declared_metaclass": null, "defn": {".class": "ClassDef", "fullname": "os.terminal_size", "name": "terminal_size", "type_vars": []}, "flags": ["is_named_tuple"], "fullname": "os.terminal_size", "metaclass_type": null, "metadata": {}, "module_name": "os", "mro": ["os.terminal_size", "builtins.tuple", "builtins.object"], "names": {".class": "SymbolTable", "__annotations__": {".class": "SymbolTableNode", "kind": "Mdef", "node": {".class": "Var", "flags": ["is_initialized_in_class"], "fullname": "os.terminal_size.__annotations__", "name": "__annotations__", "type": {".class": "Instance", "args": ["builtins.str", {".class": "AnyType", "missing_import_name": null, "source_any": null, "type_of_any": 6}], "type_ref": "builtins.dict"}}}, "__doc__": {".class": "SymbolTableNode", "kind": "Mdef", "node": {".class": "Var", "flags": ["is_initialized_in_class"], "fullname": "os.terminal_size.__doc__", "name": "__doc__", "type": "builtins.str"}}, "__new__": {".class": "SymbolTableNode", "kind": "Mdef", "node": {".class": "FuncDef", "arg_kinds": [0, 0, 0], "arg_names": ["cls", "columns", "lines"], "flags": [], "fullname": "os.terminal_size.__new__", "name": "__new__", "type": {".class": "CallableType", "arg_kinds": [0, 0, 0], "arg_names": ["cls", "columns", "lines"], "arg_types": [{".class": "TypeType", "item": {".class": "TypeVarType", "fullname": "NT", "id": -1, "name": "NT", "upper_bound": {".class": "TupleType", "fallback": {".class": "Instance", "args": ["builtins.int"], "type_ref": "builtins.tuple"}, "implicit": false, "items": ["builtins.int", "builtins.int"]}, "values": [], "variance": 0}}, "builtins.int", "builtins.int"], "bound_args": [], "def_extras": {}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "__new__ of terminal_size", "ret_type": {".class": "TypeVarType", "fullname": "NT", "id": -1, "name": "NT", "upper_bound": {".class": "TupleType", "fallback": {".class": "Instance", "args": ["builtins.int"], "type_ref": "builtins.tuple"}, "implicit": false, "items": ["builtins.int", "builtins.int"]}, "values": [], "variance": 0}, "variables": [{".class": "TypeVarDef", "fullname": "NT", "id": -1, "name": "NT", "upper_bound": {".class": "TupleType", "fallback": {".class": "Instance", "args": ["builtins.int"], "type_ref": "builtins.tuple"}, "implicit": false, "items": ["builtins.int", "builtins.int"]}, "values": [], "variance": 0}]}}}, "_asdict": {".class": "SymbolTableNode", "kind": "Mdef", "node": {".class": "FuncDef", "arg_kinds": [0], "arg_names": ["self"], "flags": [], "fullname": "os.terminal_size._asdict", "name": "_asdict", "type": {".class": "CallableType", "arg_kinds": [0], "arg_names": ["self"], "arg_types": [{".class": "TypeVarType", "fullname": "NT", "id": -1, "name": "NT", "upper_bound": {".class": "TupleType", "fallback": {".class": "Instance", "args": ["builtins.int"], "type_ref": "builtins.tuple"}, "implicit": false, "items": ["builtins.int", "builtins.int"]}, "values": [], "variance": 0}], "bound_args": [], "def_extras": {}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "_asdict of terminal_size", "ret_type": {".class": "Instance", "args": ["builtins.str", {".class": "AnyType", "missing_import_name": null, "source_any": null, "type_of_any": 6}], "type_ref": "builtins.dict"}, "variables": [{".class": "TypeVarDef", "fullname": "NT", "id": -1, "name": "NT", "upper_bound": {".class": "TupleType", "fallback": {".class": "Instance", "args": ["builtins.int"], "type_ref": "builtins.tuple"}, "implicit": false, "items": ["builtins.int", "builtins.int"]}, "values": [], "variance": 0}]}}}, "_field_defaults": {".class": "SymbolTableNode", "kind": "Mdef", "node": {".class": "Var", "flags": ["is_initialized_in_class"], "fullname": "os.terminal_size._field_defaults", "name": "_field_defaults", "type": {".class": "Instance", "args": ["builtins.str", {".class": "AnyType", "missing_import_name": null, "source_any": null, "type_of_any": 6}], "type_ref": "builtins.dict"}}}, "_field_types": {".class": "SymbolTableNode", "kind": "Mdef", "node": {".class": "Var", "flags": ["is_initialized_in_class"], "fullname": "os.terminal_size._field_types", "name": "_field_types", "type": {".class": "Instance", "args": ["builtins.str", {".class": "AnyType", "missing_import_name": null, "source_any": null, "type_of_any": 6}], "type_ref": "builtins.dict"}}}, "_fields": {".class": "SymbolTableNode", "kind": "Mdef", "node": {".class": "Var", "flags": ["is_initialized_in_class"], "fullname": "os.terminal_size._fields", "name": "_fields", "type": {".class": "TupleType", "fallback": {".class": "Instance", "args": [{".class": "AnyType", "missing_import_name": null, "source_any": null, "type_of_any": 6}], "type_ref": "builtins.tuple"}, "implicit": false, "items": ["builtins.str", "builtins.str"]}}}, "_make": {".class": "SymbolTableNode", "kind": "Mdef", "node": {".class": "Decorator", "func": {".class": "FuncDef", "arg_kinds": [0, 0, 5, 5], "arg_names": ["cls", "iterable", "new", "len"], "flags": ["is_class"], "fullname": "os.terminal_size._make", "name": "_make", "type": {".class": "CallableType", "arg_kinds": [0, 0, 5, 5], "arg_names": ["cls", "iterable", "new", "len"], "arg_types": [{".class": "TypeType", "item": {".class": "TypeVarType", "fullname": "NT", "id": -1, "name": "NT", "upper_bound": {".class": "TupleType", "fallback": {".class": "Instance", "args": ["builtins.int"], "type_ref": "builtins.tuple"}, "implicit": false, "items": ["builtins.int", "builtins.int"]}, "values": [], "variance": 0}}, {".class": "Instance", "args": [{".class": "AnyType", "missing_import_name": null, "source_any": null, "type_of_any": 6}], "type_ref": "typing.Iterable"}, {".class": "AnyType", "missing_import_name": null, "source_any": null, "type_of_any": 6}, {".class": "AnyType", "missing_import_name": null, "source_any": null, "type_of_any": 6}], "bound_args": [], "def_extras": {}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "_make of terminal_size", "ret_type": {".class": "TypeVarType", "fullname": "NT", "id": -1, "name": "NT", "upper_bound": {".class": "TupleType", "fallback": {".class": "Instance", "args": ["builtins.int"], "type_ref": "builtins.tuple"}, "implicit": false, "items": ["builtins.int", "builtins.int"]}, "values": [], "variance": 0}, "variables": [{".class": "TypeVarDef", "fullname": "NT", "id": -1, "name": "NT", "upper_bound": {".class": "TupleType", "fallback": {".class": "Instance", "args": ["builtins.int"], "type_ref": "builtins.tuple"}, "implicit": false, "items": ["builtins.int", "builtins.int"]}, "values": [], "variance": 0}]}}, "is_overload": false, "var": {".class": "Var", "flags": ["is_classmethod"], "fullname": "os.terminal_size._make", "name": "_make", "type": {".class": "CallableType", "arg_kinds": [0, 0, 5, 5], "arg_names": ["cls", "iterable", "new", "len"], "arg_types": [{".class": "TypeType", "item": {".class": "TypeVarType", "fullname": "NT", "id": -1, "name": "NT", "upper_bound": {".class": "TupleType", "fallback": {".class": "Instance", "args": ["builtins.int"], "type_ref": "builtins.tuple"}, "implicit": false, "items": ["builtins.int", "builtins.int"]}, "values": [], "variance": 0}}, {".class": "Instance", "args": [{".class": "AnyType", "missing_import_name": null, "source_any": null, "type_of_any": 6}], "type_ref": "typing.Iterable"}, {".class": "AnyType", "missing_import_name": null, "source_any": null, "type_of_any": 6}, {".class": "AnyType", "missing_import_name": null, "source_any": null, "type_of_any": 6}], "bound_args": [], "def_extras": {}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "_make of terminal_size", "ret_type": {".class": "TypeVarType", "fullname": "NT", "id": -1, "name": "NT", "upper_bound": {".class": "TupleType", "fallback": {".class": "Instance", "args": ["builtins.int"], "type_ref": "builtins.tuple"}, "implicit": false, "items": ["builtins.int", "builtins.int"]}, "values": [], "variance": 0}, "variables": [{".class": "TypeVarDef", "fullname": "NT", "id": -1, "name": "NT", "upper_bound": {".class": "TupleType", "fallback": {".class": "Instance", "args": ["builtins.int"], "type_ref": "builtins.tuple"}, "implicit": false, "items": ["builtins.int", "builtins.int"]}, "values": [], "variance": 0}]}}}}, "_replace": {".class": "SymbolTableNode", "kind": "Mdef", "node": {".class": "FuncDef", "arg_kinds": [0, 5, 5], "arg_names": ["self", "columns", "lines"], "flags": [], "fullname": "os.terminal_size._replace", "name": "_replace", "type": {".class": "CallableType", "arg_kinds": [0, 5, 5], "arg_names": ["self", "columns", "lines"], "arg_types": [{".class": "TypeVarType", "fullname": "NT", "id": -1, "name": "NT", "upper_bound": {".class": "TupleType", "fallback": {".class": "Instance", "args": ["builtins.int"], "type_ref": "builtins.tuple"}, "implicit": false, "items": ["builtins.int", "builtins.int"]}, "values": [], "variance": 0}, "builtins.int", "builtins.int"], "bound_args": [], "def_extras": {}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "_replace of terminal_size", "ret_type": {".class": "TypeVarType", "fullname": "NT", "id": -1, "name": "NT", "upper_bound": {".class": "TupleType", "fallback": {".class": "Instance", "args": ["builtins.int"], "type_ref": "builtins.tuple"}, "implicit": false, "items": ["builtins.int", "builtins.int"]}, "values": [], "variance": 0}, "variables": [{".class": "TypeVarDef", "fullname": "NT", "id": -1, "name": "NT", "upper_bound": {".class": "TupleType", "fallback": {".class": "Instance", "args": ["builtins.int"], "type_ref": "builtins.tuple"}, "implicit": false, "items": ["builtins.int", "builtins.int"]}, "values": [], "variance": 0}]}}}, "_source": {".class": "SymbolTableNode", "kind": "Mdef", "node": {".class": "Var", "flags": ["is_initialized_in_class"], "fullname": "os.terminal_size._source", "name": "_source", "type": "builtins.str"}}, "columns": {".class": "SymbolTableNode", "kind": "Mdef", "node": {".class": "Var", "flags": ["is_property"], "fullname": "os.terminal_size.columns", "name": "columns", "type": "builtins.int"}}, "lines": {".class": "SymbolTableNode", "kind": "Mdef", "node": {".class": "Var", "flags": ["is_property"], "fullname": "os.terminal_size.lines", "name": "lines", "type": "builtins.int"}}}, "tuple_type": {".class": "TupleType", "fallback": {".class": "Instance", "args": ["builtins.int"], "type_ref": "builtins.tuple"}, "implicit": false, "items": ["builtins.int", "builtins.int"]}, "type_vars": [], "typeddict_type": null}}, "times": {".class": "SymbolTableNode", "kind": "Gdef", "node": {".class": "FuncDef", "arg_kinds": [], "arg_names": [], "flags": ["is_conditional"], "fullname": "os.times", "name": "times", "type": {".class": "CallableType", "arg_kinds": [], "arg_names": [], "arg_types": [], "bound_args": [], "def_extras": {"first_arg": null}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "times", "ret_type": {".class": "TupleType", "fallback": "posix.times_result", "implicit": false, "items": ["builtins.float", "builtins.float", "builtins.float", "builtins.float", "builtins.float"]}, "variables": []}}}, "times_result": {".class": "SymbolTableNode", "cross_ref": "posix.times_result", "kind": "Gdef", "module_hidden": true, "module_public": false}, "truncate": {".class": "SymbolTableNode", "kind": "Gdef", "node": {".class": "FuncDef", "arg_kinds": [0, 0], "arg_names": ["path", "length"], "flags": ["is_conditional"], "fullname": "os.truncate", "name": "truncate", "type": {".class": "CallableType", "arg_kinds": [0, 0], "arg_names": ["path", "length"], "arg_types": [{".class": "UnionType", "items": ["builtins.int", "builtins.bytes", "builtins.str", {".class": "Instance", "args": [{".class": "AnyType", "missing_import_name": null, "source_any": null, "type_of_any": 4}], "type_ref": "builtins._PathLike"}]}, "builtins.int"], "bound_args": [], "def_extras": {"first_arg": null}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "truncate", "ret_type": {".class": "NoneTyp"}, "variables": []}}}, "ttyname": {".class": "SymbolTableNode", "kind": "Gdef", "node": {".class": "FuncDef", "arg_kinds": [0], "arg_names": ["fd"], "flags": ["is_conditional"], "fullname": "os.ttyname", "name": "ttyname", "type": {".class": "CallableType", "arg_kinds": [0], "arg_names": ["fd"], "arg_types": ["builtins.int"], "bound_args": [], "def_extras": {"first_arg": null}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "ttyname", "ret_type": "builtins.str", "variables": []}}}, "umask": {".class": "SymbolTableNode", "kind": "Gdef", "node": {".class": "FuncDef", "arg_kinds": [0], "arg_names": ["mask"], "flags": [], "fullname": "os.umask", "name": "umask", "type": {".class": "CallableType", "arg_kinds": [0], "arg_names": ["mask"], "arg_types": ["builtins.int"], "bound_args": [], "def_extras": {"first_arg": null}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "umask", "ret_type": "builtins.int", "variables": []}}}, "uname": {".class": "SymbolTableNode", "kind": "Gdef", "node": {".class": "FuncDef", "arg_kinds": [], "arg_names": [], "flags": ["is_conditional"], "fullname": "os.uname", "name": "uname", "type": {".class": "CallableType", "arg_kinds": [], "arg_names": [], "arg_types": [], "bound_args": [], "def_extras": {"first_arg": null}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "uname", "ret_type": {".class": "TupleType", "fallback": "posix.uname_result", "implicit": false, "items": ["builtins.str", "builtins.str", "builtins.str", "builtins.str", "builtins.str"]}, "variables": []}}}, "uname_result": {".class": "SymbolTableNode", "cross_ref": "posix.uname_result", "kind": "Gdef", "module_hidden": true, "module_public": false}, "unlink": {".class": "SymbolTableNode", "kind": "Gdef", "node": {".class": "FuncDef", "arg_kinds": [0, 5], "arg_names": ["path", "dir_fd"], "flags": ["is_conditional"], "fullname": "os.unlink", "name": "unlink", "type": {".class": "CallableType", "arg_kinds": [0, 5], "arg_names": ["path", "dir_fd"], "arg_types": [{".class": "UnionType", "items": ["builtins.bytes", "builtins.str", {".class": "Instance", "args": [{".class": "AnyType", "missing_import_name": null, "source_any": null, "type_of_any": 4}], "type_ref": "builtins._PathLike"}]}, {".class": "UnionType", "items": ["builtins.int", {".class": "NoneTyp"}]}], "bound_args": [], "def_extras": {"first_arg": null}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "unlink", "ret_type": {".class": "NoneTyp"}, "variables": []}}}, "unsetenv": {".class": "SymbolTableNode", "kind": "Gdef", "node": {".class": "FuncDef", "arg_kinds": [0], "arg_names": ["key"], "flags": [], "fullname": "os.unsetenv", "name": "unsetenv", "type": {".class": "CallableType", "arg_kinds": [0], "arg_names": ["key"], "arg_types": [{".class": "UnionType", "items": ["builtins.bytes", "builtins.str"]}], "bound_args": [], "def_extras": {"first_arg": null}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "unsetenv", "ret_type": {".class": "NoneTyp"}, "variables": []}}}, "urandom": {".class": "SymbolTableNode", "kind": "Gdef", "node": {".class": "FuncDef", "arg_kinds": [0], "arg_names": ["size"], "flags": ["is_conditional"], "fullname": "os.urandom", "name": "urandom", "type": {".class": "CallableType", "arg_kinds": [0], "arg_names": ["size"], "arg_types": ["builtins.int"], "bound_args": [], "def_extras": {"first_arg": null}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "urandom", "ret_type": "builtins.bytes", "variables": []}}}, "utime": {".class": "SymbolTableNode", "kind": "Gdef", "node": {".class": "FuncDef", "arg_kinds": [0, 1, 5, 5, 5], "arg_names": ["path", "times", "ns", "dir_fd", "follow_symlinks"], "flags": ["is_conditional"], "fullname": "os.utime", "name": "utime", "type": {".class": "CallableType", "arg_kinds": [0, 1, 5, 5, 5], "arg_names": ["path", "times", "ns", "dir_fd", "follow_symlinks"], "arg_types": [{".class": "UnionType", "items": ["builtins.int", "builtins.bytes", "builtins.str", {".class": "Instance", "args": [{".class": "AnyType", "missing_import_name": null, "source_any": null, "type_of_any": 4}], "type_ref": "builtins._PathLike"}]}, {".class": "UnionType", "items": [{".class": "TupleType", "fallback": {".class": "Instance", "args": [{".class": "AnyType", "missing_import_name": null, "source_any": null, "type_of_any": 6}], "type_ref": "builtins.tuple"}, "implicit": false, "items": ["builtins.int", "builtins.int"]}, {".class": "TupleType", "fallback": {".class": "Instance", "args": [{".class": "AnyType", "missing_import_name": null, "source_any": null, "type_of_any": 6}], "type_ref": "builtins.tuple"}, "implicit": false, "items": ["builtins.float", "builtins.float"]}, {".class": "NoneTyp"}]}, {".class": "TupleType", "fallback": {".class": "Instance", "args": [{".class": "AnyType", "missing_import_name": null, "source_any": null, "type_of_any": 6}], "type_ref": "builtins.tuple"}, "implicit": false, "items": ["builtins.int", "builtins.int"]}, {".class": "UnionType", "items": ["builtins.int", {".class": "NoneTyp"}]}, "builtins.bool"], "bound_args": [], "def_extras": {"first_arg": null}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "utime", "ret_type": {".class": "NoneTyp"}, "variables": []}}}, "wait": {".class": "SymbolTableNode", "kind": "Gdef", "node": {".class": "FuncDef", "arg_kinds": [], "arg_names": [], "flags": ["is_conditional"], "fullname": "os.wait", "name": "wait", "type": {".class": "CallableType", "arg_kinds": [], "arg_names": [], "arg_types": [], "bound_args": [], "def_extras": {"first_arg": null}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "wait", "ret_type": {".class": "TupleType", "fallback": {".class": "Instance", "args": [{".class": "AnyType", "missing_import_name": null, "source_any": null, "type_of_any": 6}], "type_ref": "builtins.tuple"}, "implicit": false, "items": ["builtins.int", "builtins.int"]}, "variables": []}}}, "wait3": {".class": "SymbolTableNode", "kind": "Gdef", "node": {".class": "FuncDef", "arg_kinds": [0], "arg_names": ["options"], "flags": ["is_conditional"], "fullname": "os.wait3", "name": "wait3", "type": {".class": "CallableType", "arg_kinds": [0], "arg_names": ["options"], "arg_types": ["builtins.int"], "bound_args": [], "def_extras": {"first_arg": null}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "wait3", "ret_type": {".class": "TupleType", "fallback": {".class": "Instance", "args": [{".class": "AnyType", "missing_import_name": null, "source_any": null, "type_of_any": 6}], "type_ref": "builtins.tuple"}, "implicit": false, "items": ["builtins.int", "builtins.int", {".class": "AnyType", "missing_import_name": null, "source_any": null, "type_of_any": 2}]}, "variables": []}}}, "wait4": {".class": "SymbolTableNode", "kind": "Gdef", "node": {".class": "FuncDef", "arg_kinds": [0, 0], "arg_names": ["pid", "options"], "flags": ["is_conditional"], "fullname": "os.wait4", "name": "wait4", "type": {".class": "CallableType", "arg_kinds": [0, 0], "arg_names": ["pid", "options"], "arg_types": ["builtins.int", "builtins.int"], "bound_args": [], "def_extras": {"first_arg": null}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "wait4", "ret_type": {".class": "TupleType", "fallback": {".class": "Instance", "args": [{".class": "AnyType", "missing_import_name": null, "source_any": null, "type_of_any": 6}], "type_ref": "builtins.tuple"}, "implicit": false, "items": ["builtins.int", "builtins.int", {".class": "AnyType", "missing_import_name": null, "source_any": null, "type_of_any": 2}]}, "variables": []}}}, "waitid": {".class": "SymbolTableNode", "kind": "Gdef", "node": {".class": "FuncDef", "arg_kinds": [0, 0, 0], "arg_names": ["idtype", "ident", "options"], "flags": ["is_conditional"], "fullname": "os.waitid", "name": "waitid", "type": {".class": "CallableType", "arg_kinds": [0, 0, 0], "arg_names": ["idtype", "ident", "options"], "arg_types": ["builtins.int", "builtins.int", "builtins.int"], "bound_args": [], "def_extras": {"first_arg": null}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "waitid", "ret_type": {".class": "TupleType", "fallback": "posix.waitid_result", "implicit": false, "items": ["builtins.int", "builtins.int", "builtins.int", "builtins.int", "builtins.int"]}, "variables": []}}}, "waitid_result": {".class": "SymbolTableNode", "cross_ref": "posix.waitid_result", "kind": "Gdef", "module_hidden": true, "module_public": false}, "waitpid": {".class": "SymbolTableNode", "kind": "Gdef", "node": {".class": "FuncDef", "arg_kinds": [0, 0], "arg_names": ["pid", "options"], "flags": [], "fullname": "os.waitpid", "name": "waitpid", "type": {".class": "CallableType", "arg_kinds": [0, 0], "arg_names": ["pid", "options"], "arg_types": ["builtins.int", "builtins.int"], "bound_args": [], "def_extras": {"first_arg": null}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "waitpid", "ret_type": {".class": "TupleType", "fallback": {".class": "Instance", "args": [{".class": "AnyType", "missing_import_name": null, "source_any": null, "type_of_any": 6}], "type_ref": "builtins.tuple"}, "implicit": false, "items": ["builtins.int", "builtins.int"]}, "variables": []}}}, "walk": {".class": "SymbolTableNode", "kind": "Gdef", "node": {".class": "FuncDef", "arg_kinds": [0, 1, 1, 1], "arg_names": ["top", "topdown", "onerror", "followlinks"], "flags": ["is_conditional"], "fullname": "os.walk", "name": "walk", "type": {".class": "CallableType", "arg_kinds": [0, 1, 1, 1], "arg_names": ["top", "topdown", "onerror", "followlinks"], "arg_types": [{".class": "UnionType", "items": [{".class": "TypeVarType", "fullname": "typing.AnyStr", "id": -1, "name": "AnyStr", "upper_bound": "builtins.object", "values": ["builtins.str", "builtins.bytes"], "variance": 0}, {".class": "Instance", "args": [{".class": "TypeVarType", "fullname": "typing.AnyStr", "id": -1, "name": "AnyStr", "upper_bound": "builtins.object", "values": ["builtins.str", "builtins.bytes"], "variance": 0}], "type_ref": "builtins._PathLike"}]}, "builtins.bool", {".class": "UnionType", "items": [{".class": "CallableType", "arg_kinds": [0], "arg_names": [null], "arg_types": ["builtins.OSError"], "bound_args": [], "def_extras": {}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": null, "ret_type": {".class": "AnyType", "missing_import_name": null, "source_any": null, "type_of_any": 2}, "variables": []}, {".class": "NoneTyp"}]}, "builtins.bool"], "bound_args": [], "def_extras": {"first_arg": null}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "walk", "ret_type": {".class": "Instance", "args": [{".class": "TupleType", "fallback": {".class": "Instance", "args": [{".class": "AnyType", "missing_import_name": null, "source_any": null, "type_of_any": 6}], "type_ref": "builtins.tuple"}, "implicit": false, "items": [{".class": "TypeVarType", "fullname": "typing.AnyStr", "id": -1, "name": "AnyStr", "upper_bound": "builtins.object", "values": ["builtins.str", "builtins.bytes"], "variance": 0}, {".class": "Instance", "args": [{".class": "TypeVarType", "fullname": "typing.AnyStr", "id": -1, "name": "AnyStr", "upper_bound": "builtins.object", "values": ["builtins.str", "builtins.bytes"], "variance": 0}], "type_ref": "builtins.list"}, {".class": "Instance", "args": [{".class": "TypeVarType", "fullname": "typing.AnyStr", "id": -1, "name": "AnyStr", "upper_bound": "builtins.object", "values": ["builtins.str", "builtins.bytes"], "variance": 0}], "type_ref": "builtins.list"}]}], "type_ref": "typing.Iterator"}, "variables": [{".class": "TypeVarDef", "fullname": "typing.AnyStr", "id": -1, "name": "AnyStr", "upper_bound": "builtins.object", "values": ["builtins.str", "builtins.bytes"], "variance": 0}]}}}, "write": {".class": "SymbolTableNode", "kind": "Gdef", "node": {".class": "FuncDef", "arg_kinds": [0, 0], "arg_names": ["fd", "string"], "flags": [], "fullname": "os.write", "name": "write", "type": {".class": "CallableType", "arg_kinds": [0, 0], "arg_names": ["fd", "string"], "arg_types": ["builtins.int", "builtins.bytes"], "bound_args": [], "def_extras": {"first_arg": null}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "write", "ret_type": "builtins.int", "variables": []}}}, "writev": {".class": "SymbolTableNode", "kind": "Gdef", "node": {".class": "FuncDef", "arg_kinds": [0, 0], "arg_names": ["fd", "buffers"], "flags": ["is_conditional"], "fullname": "os.writev", "name": "writev", "type": {".class": "CallableType", "arg_kinds": [0, 0], "arg_names": ["fd", "buffers"], "arg_types": ["builtins.int", {".class": "Instance", "args": ["builtins.bytes"], "type_ref": "typing.Sequence"}], "bound_args": [], "def_extras": {"first_arg": null}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "writev", "ret_type": "builtins.int", "variables": []}}}}, "path": "/usr/lib/python3/dist-packages/mypy/typeshed/stdlib/3/os/__init__.pyi"}
\ No newline at end of file
diff --git a/Postgres/StressTests/.mypy_cache/3.7/os/__init__.meta.json b/Postgres/StressTests/.mypy_cache/3.7/os/__init__.meta.json
deleted file mode 100644
index ead1f7b..0000000
--- a/Postgres/StressTests/.mypy_cache/3.7/os/__init__.meta.json
+++ /dev/null
@@ -1 +0,0 @@
-{"child_modules": ["os.path"], "data_mtime": 1553688971, "dep_lines": [4, 5, 6, 12, 13, 348, 1], "dep_prios": [5, 10, 5, 5, 10, 5, 30], "dependencies": ["io", "sys", "typing", "builtins", "os.path", "posix", "abc"], "hash": "9a8307ab134d15b82390545dd2e07dba", "id": "os", "ignore_all": true, "interface_hash": "9bae1169bc613c00eb1998d3a50b862f", "mtime": 1549659920, "options": {"allow_redefinition": false, "allow_untyped_globals": false, "always_false": [], "always_true": [], "bazel": false, "check_untyped_defs": false, "disallow_any_decorated": false, "disallow_any_explicit": false, "disallow_any_expr": false, "disallow_any_generics": false, "disallow_any_unimported": false, "disallow_incomplete_defs": false, "disallow_subclassing_any": false, "disallow_untyped_calls": false, "disallow_untyped_decorators": false, "disallow_untyped_defs": false, "follow_imports": "normal", "follow_imports_for_stubs": false, "ignore_errors": false, "ignore_missing_imports": false, "local_partial_types": false, "mypyc": false, "new_semantic_analyzer": false, "no_implicit_optional": false, "platform": "linux", "plugins": [], "show_none_errors": true, "strict_optional": true, "strict_optional_whitelist": null, "warn_no_return": true, "warn_return_any": false, "warn_unused_ignores": false}, "path": "/usr/lib/python3/dist-packages/mypy/typeshed/stdlib/3/os/__init__.pyi", "size": 29698, "suppressed": [], "version_id": "0.670"}
\ No newline at end of file
diff --git a/Postgres/StressTests/.mypy_cache/3.7/os/path.data.json b/Postgres/StressTests/.mypy_cache/3.7/os/path.data.json
deleted file mode 100644
index 3718b12..0000000
--- a/Postgres/StressTests/.mypy_cache/3.7/os/path.data.json
+++ /dev/null
@@ -1 +0,0 @@
-{".class": "MypyFile", "_fullname": "os.path", "is_partial_stub_package": false, "is_stub": true, "names": {".class": "SymbolTable", "Any": {".class": "SymbolTableNode", "cross_ref": "typing.Any", "kind": "Gdef", "module_hidden": true, "module_public": false}, "AnyStr": {".class": "SymbolTableNode", "cross_ref": "typing.AnyStr", "kind": "Gdef", "module_hidden": true, "module_public": false}, "BinaryIO": {".class": "SymbolTableNode", "cross_ref": "typing.BinaryIO", "kind": "Gdef", "module_hidden": true, "module_public": false}, "Callable": {".class": "SymbolTableNode", "cross_ref": "typing.Callable", "kind": "Gdef", "module_hidden": true, "module_public": false}, "List": {".class": "SymbolTableNode", "cross_ref": "typing.List", "kind": "Gdef", "module_hidden": true, "module_public": false}, "Optional": {".class": "SymbolTableNode", "cross_ref": "typing.Optional", "kind": "Gdef", "module_hidden": true, "module_public": false}, "Sequence": {".class": "SymbolTableNode", "cross_ref": "typing.Sequence", "kind": "Gdef", "module_hidden": true, "module_public": false}, "Text": {".class": "SymbolTableNode", "cross_ref": "typing.Text", "kind": "Gdef", "module_hidden": true, "module_public": false}, "TextIO": {".class": "SymbolTableNode", "cross_ref": "typing.TextIO", "kind": "Gdef", "module_hidden": true, "module_public": false}, "Tuple": {".class": "SymbolTableNode", "cross_ref": "typing.Tuple", "kind": "Gdef", "module_hidden": true, "module_public": false}, "TypeVar": {".class": "SymbolTableNode", "cross_ref": "typing.TypeVar", "kind": "Gdef", "module_hidden": true, "module_public": false}, "Union": {".class": "SymbolTableNode", "cross_ref": "typing.Union", "kind": "Gdef", "module_hidden": true, "module_public": false}, "_BytesPath": {".class": "SymbolTableNode", "kind": "Gdef", "node": {".class": "TypeAlias", "alias_tvars": [], "column": 4, "fullname": "os.path._BytesPath", "line": 18, "no_args": false, "normalized": false, "target": {".class": "UnionType", "items": ["builtins.bytes", {".class": "Instance", "args": ["builtins.bytes"], "type_ref": "builtins._PathLike"}]}}}, "_PathLike": {".class": "SymbolTableNode", "cross_ref": "builtins._PathLike", "kind": "Gdef", "module_hidden": true, "module_public": false}, "_PathType": {".class": "SymbolTableNode", "kind": "Gdef", "node": {".class": "TypeAlias", "alias_tvars": [], "column": 4, "fullname": "os.path._PathType", "line": 16, "no_args": false, "normalized": false, "target": {".class": "UnionType", "items": ["builtins.bytes", "builtins.str", {".class": "Instance", "args": [{".class": "AnyType", "missing_import_name": null, "source_any": null, "type_of_any": 4}], "type_ref": "builtins._PathLike"}]}}}, "_StrPath": {".class": "SymbolTableNode", "kind": "Gdef", "node": {".class": "TypeAlias", "alias_tvars": [], "column": 4, "fullname": "os.path._StrPath", "line": 17, "no_args": false, "normalized": false, "target": {".class": "UnionType", "items": ["builtins.str", {".class": "Instance", "args": ["builtins.str"], "type_ref": "builtins._PathLike"}]}}}, "_T": {".class": "SymbolTableNode", "kind": "Gdef", "node": {".class": "TypeVarExpr", "fullname": "os.path._T", "name": "_T", "upper_bound": "builtins.object", "values": [], "variance": 0}}, "__doc__": {".class": "SymbolTableNode", "kind": "Gdef", "node": {".class": "Var", "flags": [], "fullname": "os.path.__doc__", "name": "__doc__", "type": "builtins.str"}}, "__file__": {".class": "SymbolTableNode", "kind": "Gdef", "node": {".class": "Var", "flags": [], "fullname": "os.path.__file__", "name": "__file__", "type": "builtins.str"}}, "__name__": {".class": "SymbolTableNode", "kind": "Gdef", "node": {".class": "Var", "flags": [], "fullname": "os.path.__name__", "name": "__name__", "type": "builtins.str"}}, "__package__": {".class": "SymbolTableNode", "kind": "Gdef", "node": {".class": "Var", "flags": [], "fullname": "os.path.__package__", "name": "__package__", "type": "builtins.str"}}, "abspath": {".class": "SymbolTableNode", "kind": "Gdef", "node": {".class": "OverloadedFuncDef", "flags": [], "fullname": "os.path.abspath", "impl": null, "items": [{".class": "Decorator", "func": {".class": "FuncDef", "arg_kinds": [0], "arg_names": ["path"], "flags": ["is_overload", "is_decorated", "is_conditional"], "fullname": "os.path.abspath", "name": "abspath", "type": {".class": "CallableType", "arg_kinds": [0], "arg_names": ["path"], "arg_types": [{".class": "Instance", "args": [{".class": "TypeVarType", "fullname": "typing.AnyStr", "id": -1, "name": "AnyStr", "upper_bound": "builtins.object", "values": ["builtins.str", "builtins.bytes"], "variance": 0}], "type_ref": "builtins._PathLike"}], "bound_args": [], "def_extras": {"first_arg": null}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "abspath", "ret_type": {".class": "TypeVarType", "fullname": "typing.AnyStr", "id": -1, "name": "AnyStr", "upper_bound": "builtins.object", "values": ["builtins.str", "builtins.bytes"], "variance": 0}, "variables": [{".class": "TypeVarDef", "fullname": "typing.AnyStr", "id": -1, "name": "AnyStr", "upper_bound": "builtins.object", "values": ["builtins.str", "builtins.bytes"], "variance": 0}]}}, "is_overload": true, "var": {".class": "Var", "flags": [], "fullname": null, "name": "abspath", "type": null}}, {".class": "Decorator", "func": {".class": "FuncDef", "arg_kinds": [0], "arg_names": ["path"], "flags": ["is_overload", "is_decorated", "is_conditional"], "fullname": "os.path.abspath", "name": "abspath", "type": {".class": "CallableType", "arg_kinds": [0], "arg_names": ["path"], "arg_types": [{".class": "TypeVarType", "fullname": "typing.AnyStr", "id": -1, "name": "AnyStr", "upper_bound": "builtins.object", "values": ["builtins.str", "builtins.bytes"], "variance": 0}], "bound_args": [], "def_extras": {"first_arg": null}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "abspath", "ret_type": {".class": "TypeVarType", "fullname": "typing.AnyStr", "id": -1, "name": "AnyStr", "upper_bound": "builtins.object", "values": ["builtins.str", "builtins.bytes"], "variance": 0}, "variables": [{".class": "TypeVarDef", "fullname": "typing.AnyStr", "id": -1, "name": "AnyStr", "upper_bound": "builtins.object", "values": ["builtins.str", "builtins.bytes"], "variance": 0}]}}, "is_overload": true, "var": {".class": "Var", "flags": [], "fullname": null, "name": "abspath", "type": null}}], "type": {".class": "Overloaded", "items": [{".class": "CallableType", "arg_kinds": [0], "arg_names": ["path"], "arg_types": [{".class": "Instance", "args": [{".class": "TypeVarType", "fullname": "typing.AnyStr", "id": -1, "name": "AnyStr", "upper_bound": "builtins.object", "values": ["builtins.str", "builtins.bytes"], "variance": 0}], "type_ref": "builtins._PathLike"}], "bound_args": [], "def_extras": {"first_arg": null}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "abspath", "ret_type": {".class": "TypeVarType", "fullname": "typing.AnyStr", "id": -1, "name": "AnyStr", "upper_bound": "builtins.object", "values": ["builtins.str", "builtins.bytes"], "variance": 0}, "variables": [{".class": "TypeVarDef", "fullname": "typing.AnyStr", "id": -1, "name": "AnyStr", "upper_bound": "builtins.object", "values": ["builtins.str", "builtins.bytes"], "variance": 0}]}, {".class": "CallableType", "arg_kinds": [0], "arg_names": ["path"], "arg_types": [{".class": "TypeVarType", "fullname": "typing.AnyStr", "id": -1, "name": "AnyStr", "upper_bound": "builtins.object", "values": ["builtins.str", "builtins.bytes"], "variance": 0}], "bound_args": [], "def_extras": {"first_arg": null}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "abspath", "ret_type": {".class": "TypeVarType", "fullname": "typing.AnyStr", "id": -1, "name": "AnyStr", "upper_bound": "builtins.object", "values": ["builtins.str", "builtins.bytes"], "variance": 0}, "variables": [{".class": "TypeVarDef", "fullname": "typing.AnyStr", "id": -1, "name": "AnyStr", "upper_bound": "builtins.object", "values": ["builtins.str", "builtins.bytes"], "variance": 0}]}]}}}, "altsep": {".class": "SymbolTableNode", "kind": "Gdef", "node": {".class": "Var", "flags": [], "fullname": "os.path.altsep", "name": "altsep", "type": "builtins.str"}}, "basename": {".class": "SymbolTableNode", "kind": "Gdef", "node": {".class": "OverloadedFuncDef", "flags": [], "fullname": "os.path.basename", "impl": null, "items": [{".class": "Decorator", "func": {".class": "FuncDef", "arg_kinds": [0], "arg_names": ["path"], "flags": ["is_overload", "is_decorated", "is_conditional"], "fullname": "os.path.basename", "name": "basename", "type": {".class": "CallableType", "arg_kinds": [0], "arg_names": ["path"], "arg_types": [{".class": "Instance", "args": [{".class": "TypeVarType", "fullname": "typing.AnyStr", "id": -1, "name": "AnyStr", "upper_bound": "builtins.object", "values": ["builtins.str", "builtins.bytes"], "variance": 0}], "type_ref": "builtins._PathLike"}], "bound_args": [], "def_extras": {"first_arg": null}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "basename", "ret_type": {".class": "TypeVarType", "fullname": "typing.AnyStr", "id": -1, "name": "AnyStr", "upper_bound": "builtins.object", "values": ["builtins.str", "builtins.bytes"], "variance": 0}, "variables": [{".class": "TypeVarDef", "fullname": "typing.AnyStr", "id": -1, "name": "AnyStr", "upper_bound": "builtins.object", "values": ["builtins.str", "builtins.bytes"], "variance": 0}]}}, "is_overload": true, "var": {".class": "Var", "flags": [], "fullname": null, "name": "basename", "type": null}}, {".class": "Decorator", "func": {".class": "FuncDef", "arg_kinds": [0], "arg_names": ["path"], "flags": ["is_overload", "is_decorated", "is_conditional"], "fullname": "os.path.basename", "name": "basename", "type": {".class": "CallableType", "arg_kinds": [0], "arg_names": ["path"], "arg_types": [{".class": "TypeVarType", "fullname": "typing.AnyStr", "id": -1, "name": "AnyStr", "upper_bound": "builtins.object", "values": ["builtins.str", "builtins.bytes"], "variance": 0}], "bound_args": [], "def_extras": {"first_arg": null}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "basename", "ret_type": {".class": "TypeVarType", "fullname": "typing.AnyStr", "id": -1, "name": "AnyStr", "upper_bound": "builtins.object", "values": ["builtins.str", "builtins.bytes"], "variance": 0}, "variables": [{".class": "TypeVarDef", "fullname": "typing.AnyStr", "id": -1, "name": "AnyStr", "upper_bound": "builtins.object", "values": ["builtins.str", "builtins.bytes"], "variance": 0}]}}, "is_overload": true, "var": {".class": "Var", "flags": [], "fullname": null, "name": "basename", "type": null}}], "type": {".class": "Overloaded", "items": [{".class": "CallableType", "arg_kinds": [0], "arg_names": ["path"], "arg_types": [{".class": "Instance", "args": [{".class": "TypeVarType", "fullname": "typing.AnyStr", "id": -1, "name": "AnyStr", "upper_bound": "builtins.object", "values": ["builtins.str", "builtins.bytes"], "variance": 0}], "type_ref": "builtins._PathLike"}], "bound_args": [], "def_extras": {"first_arg": null}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "basename", "ret_type": {".class": "TypeVarType", "fullname": "typing.AnyStr", "id": -1, "name": "AnyStr", "upper_bound": "builtins.object", "values": ["builtins.str", "builtins.bytes"], "variance": 0}, "variables": [{".class": "TypeVarDef", "fullname": "typing.AnyStr", "id": -1, "name": "AnyStr", "upper_bound": "builtins.object", "values": ["builtins.str", "builtins.bytes"], "variance": 0}]}, {".class": "CallableType", "arg_kinds": [0], "arg_names": ["path"], "arg_types": [{".class": "TypeVarType", "fullname": "typing.AnyStr", "id": -1, "name": "AnyStr", "upper_bound": "builtins.object", "values": ["builtins.str", "builtins.bytes"], "variance": 0}], "bound_args": [], "def_extras": {"first_arg": null}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "basename", "ret_type": {".class": "TypeVarType", "fullname": "typing.AnyStr", "id": -1, "name": "AnyStr", "upper_bound": "builtins.object", "values": ["builtins.str", "builtins.bytes"], "variance": 0}, "variables": [{".class": "TypeVarDef", "fullname": "typing.AnyStr", "id": -1, "name": "AnyStr", "upper_bound": "builtins.object", "values": ["builtins.str", "builtins.bytes"], "variance": 0}]}]}}}, "commonpath": {".class": "SymbolTableNode", "kind": "Gdef", "node": {".class": "FuncDef", "arg_kinds": [0], "arg_names": ["paths"], "flags": ["is_conditional"], "fullname": "os.path.commonpath", "name": "commonpath", "type": {".class": "CallableType", "arg_kinds": [0], "arg_names": ["paths"], "arg_types": [{".class": "Instance", "args": [{".class": "UnionType", "items": ["builtins.bytes", "builtins.str", {".class": "Instance", "args": [{".class": "AnyType", "missing_import_name": null, "source_any": null, "type_of_any": 4}], "type_ref": "builtins._PathLike"}]}], "type_ref": "typing.Sequence"}], "bound_args": [], "def_extras": {"first_arg": null}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "commonpath", "ret_type": {".class": "AnyType", "missing_import_name": null, "source_any": null, "type_of_any": 2}, "variables": []}}}, "commonprefix": {".class": "SymbolTableNode", "kind": "Gdef", "node": {".class": "FuncDef", "arg_kinds": [0], "arg_names": ["list"], "flags": [], "fullname": "os.path.commonprefix", "name": "commonprefix", "type": {".class": "CallableType", "arg_kinds": [0], "arg_names": ["list"], "arg_types": [{".class": "Instance", "args": [{".class": "UnionType", "items": ["builtins.bytes", "builtins.str", {".class": "Instance", "args": [{".class": "AnyType", "missing_import_name": null, "source_any": null, "type_of_any": 4}], "type_ref": "builtins._PathLike"}]}], "type_ref": "typing.Sequence"}], "bound_args": [], "def_extras": {"first_arg": null}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "commonprefix", "ret_type": {".class": "AnyType", "missing_import_name": null, "source_any": null, "type_of_any": 2}, "variables": []}}}, "curdir": {".class": "SymbolTableNode", "kind": "Gdef", "node": {".class": "Var", "flags": [], "fullname": "os.path.curdir", "name": "curdir", "type": "builtins.str"}}, "defpath": {".class": "SymbolTableNode", "kind": "Gdef", "node": {".class": "Var", "flags": [], "fullname": "os.path.defpath", "name": "defpath", "type": "builtins.str"}}, "devnull": {".class": "SymbolTableNode", "kind": "Gdef", "node": {".class": "Var", "flags": [], "fullname": "os.path.devnull", "name": "devnull", "type": "builtins.str"}}, "dirname": {".class": "SymbolTableNode", "kind": "Gdef", "node": {".class": "OverloadedFuncDef", "flags": [], "fullname": "os.path.dirname", "impl": null, "items": [{".class": "Decorator", "func": {".class": "FuncDef", "arg_kinds": [0], "arg_names": ["path"], "flags": ["is_overload", "is_decorated", "is_conditional"], "fullname": "os.path.dirname", "name": "dirname", "type": {".class": "CallableType", "arg_kinds": [0], "arg_names": ["path"], "arg_types": [{".class": "Instance", "args": [{".class": "TypeVarType", "fullname": "typing.AnyStr", "id": -1, "name": "AnyStr", "upper_bound": "builtins.object", "values": ["builtins.str", "builtins.bytes"], "variance": 0}], "type_ref": "builtins._PathLike"}], "bound_args": [], "def_extras": {"first_arg": null}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "dirname", "ret_type": {".class": "TypeVarType", "fullname": "typing.AnyStr", "id": -1, "name": "AnyStr", "upper_bound": "builtins.object", "values": ["builtins.str", "builtins.bytes"], "variance": 0}, "variables": [{".class": "TypeVarDef", "fullname": "typing.AnyStr", "id": -1, "name": "AnyStr", "upper_bound": "builtins.object", "values": ["builtins.str", "builtins.bytes"], "variance": 0}]}}, "is_overload": true, "var": {".class": "Var", "flags": [], "fullname": null, "name": "dirname", "type": null}}, {".class": "Decorator", "func": {".class": "FuncDef", "arg_kinds": [0], "arg_names": ["path"], "flags": ["is_overload", "is_decorated", "is_conditional"], "fullname": "os.path.dirname", "name": "dirname", "type": {".class": "CallableType", "arg_kinds": [0], "arg_names": ["path"], "arg_types": [{".class": "TypeVarType", "fullname": "typing.AnyStr", "id": -1, "name": "AnyStr", "upper_bound": "builtins.object", "values": ["builtins.str", "builtins.bytes"], "variance": 0}], "bound_args": [], "def_extras": {"first_arg": null}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "dirname", "ret_type": {".class": "TypeVarType", "fullname": "typing.AnyStr", "id": -1, "name": "AnyStr", "upper_bound": "builtins.object", "values": ["builtins.str", "builtins.bytes"], "variance": 0}, "variables": [{".class": "TypeVarDef", "fullname": "typing.AnyStr", "id": -1, "name": "AnyStr", "upper_bound": "builtins.object", "values": ["builtins.str", "builtins.bytes"], "variance": 0}]}}, "is_overload": true, "var": {".class": "Var", "flags": [], "fullname": null, "name": "dirname", "type": null}}], "type": {".class": "Overloaded", "items": [{".class": "CallableType", "arg_kinds": [0], "arg_names": ["path"], "arg_types": [{".class": "Instance", "args": [{".class": "TypeVarType", "fullname": "typing.AnyStr", "id": -1, "name": "AnyStr", "upper_bound": "builtins.object", "values": ["builtins.str", "builtins.bytes"], "variance": 0}], "type_ref": "builtins._PathLike"}], "bound_args": [], "def_extras": {"first_arg": null}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "dirname", "ret_type": {".class": "TypeVarType", "fullname": "typing.AnyStr", "id": -1, "name": "AnyStr", "upper_bound": "builtins.object", "values": ["builtins.str", "builtins.bytes"], "variance": 0}, "variables": [{".class": "TypeVarDef", "fullname": "typing.AnyStr", "id": -1, "name": "AnyStr", "upper_bound": "builtins.object", "values": ["builtins.str", "builtins.bytes"], "variance": 0}]}, {".class": "CallableType", "arg_kinds": [0], "arg_names": ["path"], "arg_types": [{".class": "TypeVarType", "fullname": "typing.AnyStr", "id": -1, "name": "AnyStr", "upper_bound": "builtins.object", "values": ["builtins.str", "builtins.bytes"], "variance": 0}], "bound_args": [], "def_extras": {"first_arg": null}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "dirname", "ret_type": {".class": "TypeVarType", "fullname": "typing.AnyStr", "id": -1, "name": "AnyStr", "upper_bound": "builtins.object", "values": ["builtins.str", "builtins.bytes"], "variance": 0}, "variables": [{".class": "TypeVarDef", "fullname": "typing.AnyStr", "id": -1, "name": "AnyStr", "upper_bound": "builtins.object", "values": ["builtins.str", "builtins.bytes"], "variance": 0}]}]}}}, "exists": {".class": "SymbolTableNode", "kind": "Gdef", "node": {".class": "FuncDef", "arg_kinds": [0], "arg_names": ["path"], "flags": ["is_conditional"], "fullname": "os.path.exists", "name": "exists", "type": {".class": "CallableType", "arg_kinds": [0], "arg_names": ["path"], "arg_types": [{".class": "UnionType", "items": ["builtins.bytes", "builtins.str", {".class": "Instance", "args": [{".class": "AnyType", "missing_import_name": null, "source_any": null, "type_of_any": 4}], "type_ref": "builtins._PathLike"}, "builtins.int"]}], "bound_args": [], "def_extras": {"first_arg": null}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "exists", "ret_type": "builtins.bool", "variables": []}}}, "expanduser": {".class": "SymbolTableNode", "kind": "Gdef", "node": {".class": "OverloadedFuncDef", "flags": [], "fullname": "os.path.expanduser", "impl": null, "items": [{".class": "Decorator", "func": {".class": "FuncDef", "arg_kinds": [0], "arg_names": ["path"], "flags": ["is_overload", "is_decorated", "is_conditional"], "fullname": "os.path.expanduser", "name": "expanduser", "type": {".class": "CallableType", "arg_kinds": [0], "arg_names": ["path"], "arg_types": [{".class": "Instance", "args": [{".class": "TypeVarType", "fullname": "typing.AnyStr", "id": -1, "name": "AnyStr", "upper_bound": "builtins.object", "values": ["builtins.str", "builtins.bytes"], "variance": 0}], "type_ref": "builtins._PathLike"}], "bound_args": [], "def_extras": {"first_arg": null}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "expanduser", "ret_type": {".class": "TypeVarType", "fullname": "typing.AnyStr", "id": -1, "name": "AnyStr", "upper_bound": "builtins.object", "values": ["builtins.str", "builtins.bytes"], "variance": 0}, "variables": [{".class": "TypeVarDef", "fullname": "typing.AnyStr", "id": -1, "name": "AnyStr", "upper_bound": "builtins.object", "values": ["builtins.str", "builtins.bytes"], "variance": 0}]}}, "is_overload": true, "var": {".class": "Var", "flags": [], "fullname": null, "name": "expanduser", "type": null}}, {".class": "Decorator", "func": {".class": "FuncDef", "arg_kinds": [0], "arg_names": ["path"], "flags": ["is_overload", "is_decorated", "is_conditional"], "fullname": "os.path.expanduser", "name": "expanduser", "type": {".class": "CallableType", "arg_kinds": [0], "arg_names": ["path"], "arg_types": [{".class": "TypeVarType", "fullname": "typing.AnyStr", "id": -1, "name": "AnyStr", "upper_bound": "builtins.object", "values": ["builtins.str", "builtins.bytes"], "variance": 0}], "bound_args": [], "def_extras": {"first_arg": null}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "expanduser", "ret_type": {".class": "TypeVarType", "fullname": "typing.AnyStr", "id": -1, "name": "AnyStr", "upper_bound": "builtins.object", "values": ["builtins.str", "builtins.bytes"], "variance": 0}, "variables": [{".class": "TypeVarDef", "fullname": "typing.AnyStr", "id": -1, "name": "AnyStr", "upper_bound": "builtins.object", "values": ["builtins.str", "builtins.bytes"], "variance": 0}]}}, "is_overload": true, "var": {".class": "Var", "flags": [], "fullname": null, "name": "expanduser", "type": null}}], "type": {".class": "Overloaded", "items": [{".class": "CallableType", "arg_kinds": [0], "arg_names": ["path"], "arg_types": [{".class": "Instance", "args": [{".class": "TypeVarType", "fullname": "typing.AnyStr", "id": -1, "name": "AnyStr", "upper_bound": "builtins.object", "values": ["builtins.str", "builtins.bytes"], "variance": 0}], "type_ref": "builtins._PathLike"}], "bound_args": [], "def_extras": {"first_arg": null}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "expanduser", "ret_type": {".class": "TypeVarType", "fullname": "typing.AnyStr", "id": -1, "name": "AnyStr", "upper_bound": "builtins.object", "values": ["builtins.str", "builtins.bytes"], "variance": 0}, "variables": [{".class": "TypeVarDef", "fullname": "typing.AnyStr", "id": -1, "name": "AnyStr", "upper_bound": "builtins.object", "values": ["builtins.str", "builtins.bytes"], "variance": 0}]}, {".class": "CallableType", "arg_kinds": [0], "arg_names": ["path"], "arg_types": [{".class": "TypeVarType", "fullname": "typing.AnyStr", "id": -1, "name": "AnyStr", "upper_bound": "builtins.object", "values": ["builtins.str", "builtins.bytes"], "variance": 0}], "bound_args": [], "def_extras": {"first_arg": null}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "expanduser", "ret_type": {".class": "TypeVarType", "fullname": "typing.AnyStr", "id": -1, "name": "AnyStr", "upper_bound": "builtins.object", "values": ["builtins.str", "builtins.bytes"], "variance": 0}, "variables": [{".class": "TypeVarDef", "fullname": "typing.AnyStr", "id": -1, "name": "AnyStr", "upper_bound": "builtins.object", "values": ["builtins.str", "builtins.bytes"], "variance": 0}]}]}}}, "expandvars": {".class": "SymbolTableNode", "kind": "Gdef", "node": {".class": "OverloadedFuncDef", "flags": [], "fullname": "os.path.expandvars", "impl": null, "items": [{".class": "Decorator", "func": {".class": "FuncDef", "arg_kinds": [0], "arg_names": ["path"], "flags": ["is_overload", "is_decorated", "is_conditional"], "fullname": "os.path.expandvars", "name": "expandvars", "type": {".class": "CallableType", "arg_kinds": [0], "arg_names": ["path"], "arg_types": [{".class": "Instance", "args": [{".class": "TypeVarType", "fullname": "typing.AnyStr", "id": -1, "name": "AnyStr", "upper_bound": "builtins.object", "values": ["builtins.str", "builtins.bytes"], "variance": 0}], "type_ref": "builtins._PathLike"}], "bound_args": [], "def_extras": {"first_arg": null}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "expandvars", "ret_type": {".class": "TypeVarType", "fullname": "typing.AnyStr", "id": -1, "name": "AnyStr", "upper_bound": "builtins.object", "values": ["builtins.str", "builtins.bytes"], "variance": 0}, "variables": [{".class": "TypeVarDef", "fullname": "typing.AnyStr", "id": -1, "name": "AnyStr", "upper_bound": "builtins.object", "values": ["builtins.str", "builtins.bytes"], "variance": 0}]}}, "is_overload": true, "var": {".class": "Var", "flags": [], "fullname": null, "name": "expandvars", "type": null}}, {".class": "Decorator", "func": {".class": "FuncDef", "arg_kinds": [0], "arg_names": ["path"], "flags": ["is_overload", "is_decorated", "is_conditional"], "fullname": "os.path.expandvars", "name": "expandvars", "type": {".class": "CallableType", "arg_kinds": [0], "arg_names": ["path"], "arg_types": [{".class": "TypeVarType", "fullname": "typing.AnyStr", "id": -1, "name": "AnyStr", "upper_bound": "builtins.object", "values": ["builtins.str", "builtins.bytes"], "variance": 0}], "bound_args": [], "def_extras": {"first_arg": null}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "expandvars", "ret_type": {".class": "TypeVarType", "fullname": "typing.AnyStr", "id": -1, "name": "AnyStr", "upper_bound": "builtins.object", "values": ["builtins.str", "builtins.bytes"], "variance": 0}, "variables": [{".class": "TypeVarDef", "fullname": "typing.AnyStr", "id": -1, "name": "AnyStr", "upper_bound": "builtins.object", "values": ["builtins.str", "builtins.bytes"], "variance": 0}]}}, "is_overload": true, "var": {".class": "Var", "flags": [], "fullname": null, "name": "expandvars", "type": null}}], "type": {".class": "Overloaded", "items": [{".class": "CallableType", "arg_kinds": [0], "arg_names": ["path"], "arg_types": [{".class": "Instance", "args": [{".class": "TypeVarType", "fullname": "typing.AnyStr", "id": -1, "name": "AnyStr", "upper_bound": "builtins.object", "values": ["builtins.str", "builtins.bytes"], "variance": 0}], "type_ref": "builtins._PathLike"}], "bound_args": [], "def_extras": {"first_arg": null}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "expandvars", "ret_type": {".class": "TypeVarType", "fullname": "typing.AnyStr", "id": -1, "name": "AnyStr", "upper_bound": "builtins.object", "values": ["builtins.str", "builtins.bytes"], "variance": 0}, "variables": [{".class": "TypeVarDef", "fullname": "typing.AnyStr", "id": -1, "name": "AnyStr", "upper_bound": "builtins.object", "values": ["builtins.str", "builtins.bytes"], "variance": 0}]}, {".class": "CallableType", "arg_kinds": [0], "arg_names": ["path"], "arg_types": [{".class": "TypeVarType", "fullname": "typing.AnyStr", "id": -1, "name": "AnyStr", "upper_bound": "builtins.object", "values": ["builtins.str", "builtins.bytes"], "variance": 0}], "bound_args": [], "def_extras": {"first_arg": null}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "expandvars", "ret_type": {".class": "TypeVarType", "fullname": "typing.AnyStr", "id": -1, "name": "AnyStr", "upper_bound": "builtins.object", "values": ["builtins.str", "builtins.bytes"], "variance": 0}, "variables": [{".class": "TypeVarDef", "fullname": "typing.AnyStr", "id": -1, "name": "AnyStr", "upper_bound": "builtins.object", "values": ["builtins.str", "builtins.bytes"], "variance": 0}]}]}}}, "extsep": {".class": "SymbolTableNode", "kind": "Gdef", "node": {".class": "Var", "flags": [], "fullname": "os.path.extsep", "name": "extsep", "type": "builtins.str"}}, "getatime": {".class": "SymbolTableNode", "kind": "Gdef", "node": {".class": "FuncDef", "arg_kinds": [0], "arg_names": ["path"], "flags": [], "fullname": "os.path.getatime", "name": "getatime", "type": {".class": "CallableType", "arg_kinds": [0], "arg_names": ["path"], "arg_types": [{".class": "UnionType", "items": ["builtins.bytes", "builtins.str", {".class": "Instance", "args": [{".class": "AnyType", "missing_import_name": null, "source_any": null, "type_of_any": 4}], "type_ref": "builtins._PathLike"}]}], "bound_args": [], "def_extras": {"first_arg": null}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "getatime", "ret_type": "builtins.float", "variables": []}}}, "getctime": {".class": "SymbolTableNode", "kind": "Gdef", "node": {".class": "FuncDef", "arg_kinds": [0], "arg_names": ["path"], "flags": [], "fullname": "os.path.getctime", "name": "getctime", "type": {".class": "CallableType", "arg_kinds": [0], "arg_names": ["path"], "arg_types": [{".class": "UnionType", "items": ["builtins.bytes", "builtins.str", {".class": "Instance", "args": [{".class": "AnyType", "missing_import_name": null, "source_any": null, "type_of_any": 4}], "type_ref": "builtins._PathLike"}]}], "bound_args": [], "def_extras": {"first_arg": null}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "getctime", "ret_type": "builtins.float", "variables": []}}}, "getmtime": {".class": "SymbolTableNode", "kind": "Gdef", "node": {".class": "FuncDef", "arg_kinds": [0], "arg_names": ["path"], "flags": [], "fullname": "os.path.getmtime", "name": "getmtime", "type": {".class": "CallableType", "arg_kinds": [0], "arg_names": ["path"], "arg_types": [{".class": "UnionType", "items": ["builtins.bytes", "builtins.str", {".class": "Instance", "args": [{".class": "AnyType", "missing_import_name": null, "source_any": null, "type_of_any": 4}], "type_ref": "builtins._PathLike"}]}], "bound_args": [], "def_extras": {"first_arg": null}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "getmtime", "ret_type": "builtins.float", "variables": []}}}, "getsize": {".class": "SymbolTableNode", "kind": "Gdef", "node": {".class": "FuncDef", "arg_kinds": [0], "arg_names": ["path"], "flags": [], "fullname": "os.path.getsize", "name": "getsize", "type": {".class": "CallableType", "arg_kinds": [0], "arg_names": ["path"], "arg_types": [{".class": "UnionType", "items": ["builtins.bytes", "builtins.str", {".class": "Instance", "args": [{".class": "AnyType", "missing_import_name": null, "source_any": null, "type_of_any": 4}], "type_ref": "builtins._PathLike"}]}], "bound_args": [], "def_extras": {"first_arg": null}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "getsize", "ret_type": "builtins.int", "variables": []}}}, "isabs": {".class": "SymbolTableNode", "kind": "Gdef", "node": {".class": "FuncDef", "arg_kinds": [0], "arg_names": ["path"], "flags": [], "fullname": "os.path.isabs", "name": "isabs", "type": {".class": "CallableType", "arg_kinds": [0], "arg_names": ["path"], "arg_types": [{".class": "UnionType", "items": ["builtins.bytes", "builtins.str", {".class": "Instance", "args": [{".class": "AnyType", "missing_import_name": null, "source_any": null, "type_of_any": 4}], "type_ref": "builtins._PathLike"}]}], "bound_args": [], "def_extras": {"first_arg": null}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "isabs", "ret_type": "builtins.bool", "variables": []}}}, "isdir": {".class": "SymbolTableNode", "kind": "Gdef", "node": {".class": "FuncDef", "arg_kinds": [0], "arg_names": ["path"], "flags": [], "fullname": "os.path.isdir", "name": "isdir", "type": {".class": "CallableType", "arg_kinds": [0], "arg_names": ["path"], "arg_types": [{".class": "UnionType", "items": ["builtins.bytes", "builtins.str", {".class": "Instance", "args": [{".class": "AnyType", "missing_import_name": null, "source_any": null, "type_of_any": 4}], "type_ref": "builtins._PathLike"}]}], "bound_args": [], "def_extras": {"first_arg": null}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "isdir", "ret_type": "builtins.bool", "variables": []}}}, "isfile": {".class": "SymbolTableNode", "kind": "Gdef", "node": {".class": "FuncDef", "arg_kinds": [0], "arg_names": ["path"], "flags": [], "fullname": "os.path.isfile", "name": "isfile", "type": {".class": "CallableType", "arg_kinds": [0], "arg_names": ["path"], "arg_types": [{".class": "UnionType", "items": ["builtins.bytes", "builtins.str", {".class": "Instance", "args": [{".class": "AnyType", "missing_import_name": null, "source_any": null, "type_of_any": 4}], "type_ref": "builtins._PathLike"}]}], "bound_args": [], "def_extras": {"first_arg": null}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "isfile", "ret_type": "builtins.bool", "variables": []}}}, "islink": {".class": "SymbolTableNode", "kind": "Gdef", "node": {".class": "FuncDef", "arg_kinds": [0], "arg_names": ["path"], "flags": [], "fullname": "os.path.islink", "name": "islink", "type": {".class": "CallableType", "arg_kinds": [0], "arg_names": ["path"], "arg_types": [{".class": "UnionType", "items": ["builtins.bytes", "builtins.str", {".class": "Instance", "args": [{".class": "AnyType", "missing_import_name": null, "source_any": null, "type_of_any": 4}], "type_ref": "builtins._PathLike"}]}], "bound_args": [], "def_extras": {"first_arg": null}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "islink", "ret_type": "builtins.bool", "variables": []}}}, "ismount": {".class": "SymbolTableNode", "kind": "Gdef", "node": {".class": "FuncDef", "arg_kinds": [0], "arg_names": ["path"], "flags": [], "fullname": "os.path.ismount", "name": "ismount", "type": {".class": "CallableType", "arg_kinds": [0], "arg_names": ["path"], "arg_types": [{".class": "UnionType", "items": ["builtins.bytes", "builtins.str", {".class": "Instance", "args": [{".class": "AnyType", "missing_import_name": null, "source_any": null, "type_of_any": 4}], "type_ref": "builtins._PathLike"}]}], "bound_args": [], "def_extras": {"first_arg": null}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "ismount", "ret_type": "builtins.bool", "variables": []}}}, "join": {".class": "SymbolTableNode", "kind": "Gdef", "node": {".class": "OverloadedFuncDef", "flags": [], "fullname": "os.path.join", "impl": null, "items": [{".class": "Decorator", "func": {".class": "FuncDef", "arg_kinds": [0, 2], "arg_names": ["path", "paths"], "flags": ["is_overload", "is_decorated", "is_conditional"], "fullname": "os.path.join", "name": "join", "type": {".class": "CallableType", "arg_kinds": [0, 2], "arg_names": ["path", "paths"], "arg_types": [{".class": "UnionType", "items": ["builtins.str", {".class": "Instance", "args": ["builtins.str"], "type_ref": "builtins._PathLike"}]}, {".class": "UnionType", "items": ["builtins.str", {".class": "Instance", "args": ["builtins.str"], "type_ref": "builtins._PathLike"}]}], "bound_args": [], "def_extras": {"first_arg": null}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "join", "ret_type": "builtins.str", "variables": []}}, "is_overload": true, "var": {".class": "Var", "flags": [], "fullname": null, "name": "join", "type": null}}, {".class": "Decorator", "func": {".class": "FuncDef", "arg_kinds": [0, 2], "arg_names": ["path", "paths"], "flags": ["is_overload", "is_decorated", "is_conditional"], "fullname": "os.path.join", "name": "join", "type": {".class": "CallableType", "arg_kinds": [0, 2], "arg_names": ["path", "paths"], "arg_types": [{".class": "UnionType", "items": ["builtins.bytes", {".class": "Instance", "args": ["builtins.bytes"], "type_ref": "builtins._PathLike"}]}, {".class": "UnionType", "items": ["builtins.bytes", {".class": "Instance", "args": ["builtins.bytes"], "type_ref": "builtins._PathLike"}]}], "bound_args": [], "def_extras": {"first_arg": null}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "join", "ret_type": "builtins.bytes", "variables": []}}, "is_overload": true, "var": {".class": "Var", "flags": [], "fullname": null, "name": "join", "type": null}}], "type": {".class": "Overloaded", "items": [{".class": "CallableType", "arg_kinds": [0, 2], "arg_names": ["path", "paths"], "arg_types": [{".class": "UnionType", "items": ["builtins.str", {".class": "Instance", "args": ["builtins.str"], "type_ref": "builtins._PathLike"}]}, {".class": "UnionType", "items": ["builtins.str", {".class": "Instance", "args": ["builtins.str"], "type_ref": "builtins._PathLike"}]}], "bound_args": [], "def_extras": {"first_arg": null}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "join", "ret_type": "builtins.str", "variables": []}, {".class": "CallableType", "arg_kinds": [0, 2], "arg_names": ["path", "paths"], "arg_types": [{".class": "UnionType", "items": ["builtins.bytes", {".class": "Instance", "args": ["builtins.bytes"], "type_ref": "builtins._PathLike"}]}, {".class": "UnionType", "items": ["builtins.bytes", {".class": "Instance", "args": ["builtins.bytes"], "type_ref": "builtins._PathLike"}]}], "bound_args": [], "def_extras": {"first_arg": null}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "join", "ret_type": "builtins.bytes", "variables": []}]}}}, "lexists": {".class": "SymbolTableNode", "kind": "Gdef", "node": {".class": "FuncDef", "arg_kinds": [0], "arg_names": ["path"], "flags": [], "fullname": "os.path.lexists", "name": "lexists", "type": {".class": "CallableType", "arg_kinds": [0], "arg_names": ["path"], "arg_types": [{".class": "UnionType", "items": ["builtins.bytes", "builtins.str", {".class": "Instance", "args": [{".class": "AnyType", "missing_import_name": null, "source_any": null, "type_of_any": 4}], "type_ref": "builtins._PathLike"}]}], "bound_args": [], "def_extras": {"first_arg": null}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "lexists", "ret_type": "builtins.bool", "variables": []}}}, "normcase": {".class": "SymbolTableNode", "kind": "Gdef", "node": {".class": "OverloadedFuncDef", "flags": [], "fullname": "os.path.normcase", "impl": null, "items": [{".class": "Decorator", "func": {".class": "FuncDef", "arg_kinds": [0], "arg_names": ["path"], "flags": ["is_overload", "is_decorated", "is_conditional"], "fullname": "os.path.normcase", "name": "normcase", "type": {".class": "CallableType", "arg_kinds": [0], "arg_names": ["path"], "arg_types": [{".class": "Instance", "args": [{".class": "TypeVarType", "fullname": "typing.AnyStr", "id": -1, "name": "AnyStr", "upper_bound": "builtins.object", "values": ["builtins.str", "builtins.bytes"], "variance": 0}], "type_ref": "builtins._PathLike"}], "bound_args": [], "def_extras": {"first_arg": null}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "normcase", "ret_type": {".class": "TypeVarType", "fullname": "typing.AnyStr", "id": -1, "name": "AnyStr", "upper_bound": "builtins.object", "values": ["builtins.str", "builtins.bytes"], "variance": 0}, "variables": [{".class": "TypeVarDef", "fullname": "typing.AnyStr", "id": -1, "name": "AnyStr", "upper_bound": "builtins.object", "values": ["builtins.str", "builtins.bytes"], "variance": 0}]}}, "is_overload": true, "var": {".class": "Var", "flags": [], "fullname": null, "name": "normcase", "type": null}}, {".class": "Decorator", "func": {".class": "FuncDef", "arg_kinds": [0], "arg_names": ["path"], "flags": ["is_overload", "is_decorated", "is_conditional"], "fullname": "os.path.normcase", "name": "normcase", "type": {".class": "CallableType", "arg_kinds": [0], "arg_names": ["path"], "arg_types": [{".class": "TypeVarType", "fullname": "typing.AnyStr", "id": -1, "name": "AnyStr", "upper_bound": "builtins.object", "values": ["builtins.str", "builtins.bytes"], "variance": 0}], "bound_args": [], "def_extras": {"first_arg": null}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "normcase", "ret_type": {".class": "TypeVarType", "fullname": "typing.AnyStr", "id": -1, "name": "AnyStr", "upper_bound": "builtins.object", "values": ["builtins.str", "builtins.bytes"], "variance": 0}, "variables": [{".class": "TypeVarDef", "fullname": "typing.AnyStr", "id": -1, "name": "AnyStr", "upper_bound": "builtins.object", "values": ["builtins.str", "builtins.bytes"], "variance": 0}]}}, "is_overload": true, "var": {".class": "Var", "flags": [], "fullname": null, "name": "normcase", "type": null}}], "type": {".class": "Overloaded", "items": [{".class": "CallableType", "arg_kinds": [0], "arg_names": ["path"], "arg_types": [{".class": "Instance", "args": [{".class": "TypeVarType", "fullname": "typing.AnyStr", "id": -1, "name": "AnyStr", "upper_bound": "builtins.object", "values": ["builtins.str", "builtins.bytes"], "variance": 0}], "type_ref": "builtins._PathLike"}], "bound_args": [], "def_extras": {"first_arg": null}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "normcase", "ret_type": {".class": "TypeVarType", "fullname": "typing.AnyStr", "id": -1, "name": "AnyStr", "upper_bound": "builtins.object", "values": ["builtins.str", "builtins.bytes"], "variance": 0}, "variables": [{".class": "TypeVarDef", "fullname": "typing.AnyStr", "id": -1, "name": "AnyStr", "upper_bound": "builtins.object", "values": ["builtins.str", "builtins.bytes"], "variance": 0}]}, {".class": "CallableType", "arg_kinds": [0], "arg_names": ["path"], "arg_types": [{".class": "TypeVarType", "fullname": "typing.AnyStr", "id": -1, "name": "AnyStr", "upper_bound": "builtins.object", "values": ["builtins.str", "builtins.bytes"], "variance": 0}], "bound_args": [], "def_extras": {"first_arg": null}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "normcase", "ret_type": {".class": "TypeVarType", "fullname": "typing.AnyStr", "id": -1, "name": "AnyStr", "upper_bound": "builtins.object", "values": ["builtins.str", "builtins.bytes"], "variance": 0}, "variables": [{".class": "TypeVarDef", "fullname": "typing.AnyStr", "id": -1, "name": "AnyStr", "upper_bound": "builtins.object", "values": ["builtins.str", "builtins.bytes"], "variance": 0}]}]}}}, "normpath": {".class": "SymbolTableNode", "kind": "Gdef", "node": {".class": "OverloadedFuncDef", "flags": [], "fullname": "os.path.normpath", "impl": null, "items": [{".class": "Decorator", "func": {".class": "FuncDef", "arg_kinds": [0], "arg_names": ["path"], "flags": ["is_overload", "is_decorated", "is_conditional"], "fullname": "os.path.normpath", "name": "normpath", "type": {".class": "CallableType", "arg_kinds": [0], "arg_names": ["path"], "arg_types": [{".class": "Instance", "args": [{".class": "TypeVarType", "fullname": "typing.AnyStr", "id": -1, "name": "AnyStr", "upper_bound": "builtins.object", "values": ["builtins.str", "builtins.bytes"], "variance": 0}], "type_ref": "builtins._PathLike"}], "bound_args": [], "def_extras": {"first_arg": null}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "normpath", "ret_type": {".class": "TypeVarType", "fullname": "typing.AnyStr", "id": -1, "name": "AnyStr", "upper_bound": "builtins.object", "values": ["builtins.str", "builtins.bytes"], "variance": 0}, "variables": [{".class": "TypeVarDef", "fullname": "typing.AnyStr", "id": -1, "name": "AnyStr", "upper_bound": "builtins.object", "values": ["builtins.str", "builtins.bytes"], "variance": 0}]}}, "is_overload": true, "var": {".class": "Var", "flags": [], "fullname": null, "name": "normpath", "type": null}}, {".class": "Decorator", "func": {".class": "FuncDef", "arg_kinds": [0], "arg_names": ["path"], "flags": ["is_overload", "is_decorated", "is_conditional"], "fullname": "os.path.normpath", "name": "normpath", "type": {".class": "CallableType", "arg_kinds": [0], "arg_names": ["path"], "arg_types": [{".class": "TypeVarType", "fullname": "typing.AnyStr", "id": -1, "name": "AnyStr", "upper_bound": "builtins.object", "values": ["builtins.str", "builtins.bytes"], "variance": 0}], "bound_args": [], "def_extras": {"first_arg": null}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "normpath", "ret_type": {".class": "TypeVarType", "fullname": "typing.AnyStr", "id": -1, "name": "AnyStr", "upper_bound": "builtins.object", "values": ["builtins.str", "builtins.bytes"], "variance": 0}, "variables": [{".class": "TypeVarDef", "fullname": "typing.AnyStr", "id": -1, "name": "AnyStr", "upper_bound": "builtins.object", "values": ["builtins.str", "builtins.bytes"], "variance": 0}]}}, "is_overload": true, "var": {".class": "Var", "flags": [], "fullname": null, "name": "normpath", "type": null}}], "type": {".class": "Overloaded", "items": [{".class": "CallableType", "arg_kinds": [0], "arg_names": ["path"], "arg_types": [{".class": "Instance", "args": [{".class": "TypeVarType", "fullname": "typing.AnyStr", "id": -1, "name": "AnyStr", "upper_bound": "builtins.object", "values": ["builtins.str", "builtins.bytes"], "variance": 0}], "type_ref": "builtins._PathLike"}], "bound_args": [], "def_extras": {"first_arg": null}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "normpath", "ret_type": {".class": "TypeVarType", "fullname": "typing.AnyStr", "id": -1, "name": "AnyStr", "upper_bound": "builtins.object", "values": ["builtins.str", "builtins.bytes"], "variance": 0}, "variables": [{".class": "TypeVarDef", "fullname": "typing.AnyStr", "id": -1, "name": "AnyStr", "upper_bound": "builtins.object", "values": ["builtins.str", "builtins.bytes"], "variance": 0}]}, {".class": "CallableType", "arg_kinds": [0], "arg_names": ["path"], "arg_types": [{".class": "TypeVarType", "fullname": "typing.AnyStr", "id": -1, "name": "AnyStr", "upper_bound": "builtins.object", "values": ["builtins.str", "builtins.bytes"], "variance": 0}], "bound_args": [], "def_extras": {"first_arg": null}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "normpath", "ret_type": {".class": "TypeVarType", "fullname": "typing.AnyStr", "id": -1, "name": "AnyStr", "upper_bound": "builtins.object", "values": ["builtins.str", "builtins.bytes"], "variance": 0}, "variables": [{".class": "TypeVarDef", "fullname": "typing.AnyStr", "id": -1, "name": "AnyStr", "upper_bound": "builtins.object", "values": ["builtins.str", "builtins.bytes"], "variance": 0}]}]}}}, "os": {".class": "SymbolTableNode", "cross_ref": "os", "kind": "Gdef", "module_hidden": true, "module_public": false}, "overload": {".class": "SymbolTableNode", "cross_ref": "typing.overload", "kind": "Gdef", "module_hidden": true, "module_public": false}, "pardir": {".class": "SymbolTableNode", "kind": "Gdef", "node": {".class": "Var", "flags": [], "fullname": "os.path.pardir", "name": "pardir", "type": "builtins.str"}}, "pathsep": {".class": "SymbolTableNode", "kind": "Gdef", "node": {".class": "Var", "flags": [], "fullname": "os.path.pathsep", "name": "pathsep", "type": "builtins.str"}}, "realpath": {".class": "SymbolTableNode", "kind": "Gdef", "node": {".class": "OverloadedFuncDef", "flags": [], "fullname": "os.path.realpath", "impl": null, "items": [{".class": "Decorator", "func": {".class": "FuncDef", "arg_kinds": [0], "arg_names": ["filename"], "flags": ["is_overload", "is_decorated", "is_conditional"], "fullname": "os.path.realpath", "name": "realpath", "type": {".class": "CallableType", "arg_kinds": [0], "arg_names": ["filename"], "arg_types": [{".class": "Instance", "args": [{".class": "TypeVarType", "fullname": "typing.AnyStr", "id": -1, "name": "AnyStr", "upper_bound": "builtins.object", "values": ["builtins.str", "builtins.bytes"], "variance": 0}], "type_ref": "builtins._PathLike"}], "bound_args": [], "def_extras": {"first_arg": null}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "realpath", "ret_type": {".class": "TypeVarType", "fullname": "typing.AnyStr", "id": -1, "name": "AnyStr", "upper_bound": "builtins.object", "values": ["builtins.str", "builtins.bytes"], "variance": 0}, "variables": [{".class": "TypeVarDef", "fullname": "typing.AnyStr", "id": -1, "name": "AnyStr", "upper_bound": "builtins.object", "values": ["builtins.str", "builtins.bytes"], "variance": 0}]}}, "is_overload": true, "var": {".class": "Var", "flags": [], "fullname": null, "name": "realpath", "type": null}}, {".class": "Decorator", "func": {".class": "FuncDef", "arg_kinds": [0], "arg_names": ["filename"], "flags": ["is_overload", "is_decorated", "is_conditional"], "fullname": "os.path.realpath", "name": "realpath", "type": {".class": "CallableType", "arg_kinds": [0], "arg_names": ["filename"], "arg_types": [{".class": "TypeVarType", "fullname": "typing.AnyStr", "id": -1, "name": "AnyStr", "upper_bound": "builtins.object", "values": ["builtins.str", "builtins.bytes"], "variance": 0}], "bound_args": [], "def_extras": {"first_arg": null}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "realpath", "ret_type": {".class": "TypeVarType", "fullname": "typing.AnyStr", "id": -1, "name": "AnyStr", "upper_bound": "builtins.object", "values": ["builtins.str", "builtins.bytes"], "variance": 0}, "variables": [{".class": "TypeVarDef", "fullname": "typing.AnyStr", "id": -1, "name": "AnyStr", "upper_bound": "builtins.object", "values": ["builtins.str", "builtins.bytes"], "variance": 0}]}}, "is_overload": true, "var": {".class": "Var", "flags": [], "fullname": null, "name": "realpath", "type": null}}], "type": {".class": "Overloaded", "items": [{".class": "CallableType", "arg_kinds": [0], "arg_names": ["filename"], "arg_types": [{".class": "Instance", "args": [{".class": "TypeVarType", "fullname": "typing.AnyStr", "id": -1, "name": "AnyStr", "upper_bound": "builtins.object", "values": ["builtins.str", "builtins.bytes"], "variance": 0}], "type_ref": "builtins._PathLike"}], "bound_args": [], "def_extras": {"first_arg": null}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "realpath", "ret_type": {".class": "TypeVarType", "fullname": "typing.AnyStr", "id": -1, "name": "AnyStr", "upper_bound": "builtins.object", "values": ["builtins.str", "builtins.bytes"], "variance": 0}, "variables": [{".class": "TypeVarDef", "fullname": "typing.AnyStr", "id": -1, "name": "AnyStr", "upper_bound": "builtins.object", "values": ["builtins.str", "builtins.bytes"], "variance": 0}]}, {".class": "CallableType", "arg_kinds": [0], "arg_names": ["filename"], "arg_types": [{".class": "TypeVarType", "fullname": "typing.AnyStr", "id": -1, "name": "AnyStr", "upper_bound": "builtins.object", "values": ["builtins.str", "builtins.bytes"], "variance": 0}], "bound_args": [], "def_extras": {"first_arg": null}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "realpath", "ret_type": {".class": "TypeVarType", "fullname": "typing.AnyStr", "id": -1, "name": "AnyStr", "upper_bound": "builtins.object", "values": ["builtins.str", "builtins.bytes"], "variance": 0}, "variables": [{".class": "TypeVarDef", "fullname": "typing.AnyStr", "id": -1, "name": "AnyStr", "upper_bound": "builtins.object", "values": ["builtins.str", "builtins.bytes"], "variance": 0}]}]}}}, "relpath": {".class": "SymbolTableNode", "kind": "Gdef", "node": {".class": "OverloadedFuncDef", "flags": [], "fullname": "os.path.relpath", "impl": null, "items": [{".class": "Decorator", "func": {".class": "FuncDef", "arg_kinds": [0, 1], "arg_names": ["path", "start"], "flags": ["is_overload", "is_decorated"], "fullname": "os.path.relpath", "name": "relpath", "type": {".class": "CallableType", "arg_kinds": [0, 1], "arg_names": ["path", "start"], "arg_types": [{".class": "UnionType", "items": ["builtins.bytes", {".class": "Instance", "args": ["builtins.bytes"], "type_ref": "builtins._PathLike"}]}, {".class": "UnionType", "items": ["builtins.bytes", {".class": "Instance", "args": ["builtins.bytes"], "type_ref": "builtins._PathLike"}, {".class": "NoneTyp"}]}], "bound_args": [], "def_extras": {"first_arg": null}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "relpath", "ret_type": "builtins.bytes", "variables": []}}, "is_overload": true, "var": {".class": "Var", "flags": [], "fullname": null, "name": "relpath", "type": null}}, {".class": "Decorator", "func": {".class": "FuncDef", "arg_kinds": [0, 1], "arg_names": ["path", "start"], "flags": ["is_overload", "is_decorated"], "fullname": "os.path.relpath", "name": "relpath", "type": {".class": "CallableType", "arg_kinds": [0, 1], "arg_names": ["path", "start"], "arg_types": [{".class": "UnionType", "items": ["builtins.str", {".class": "Instance", "args": ["builtins.str"], "type_ref": "builtins._PathLike"}]}, {".class": "UnionType", "items": ["builtins.str", {".class": "Instance", "args": ["builtins.str"], "type_ref": "builtins._PathLike"}, {".class": "NoneTyp"}]}], "bound_args": [], "def_extras": {"first_arg": null}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "relpath", "ret_type": "builtins.str", "variables": []}}, "is_overload": true, "var": {".class": "Var", "flags": [], "fullname": null, "name": "relpath", "type": null}}], "type": {".class": "Overloaded", "items": [{".class": "CallableType", "arg_kinds": [0, 1], "arg_names": ["path", "start"], "arg_types": [{".class": "UnionType", "items": ["builtins.bytes", {".class": "Instance", "args": ["builtins.bytes"], "type_ref": "builtins._PathLike"}]}, {".class": "UnionType", "items": ["builtins.bytes", {".class": "Instance", "args": ["builtins.bytes"], "type_ref": "builtins._PathLike"}, {".class": "NoneTyp"}]}], "bound_args": [], "def_extras": {"first_arg": null}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "relpath", "ret_type": "builtins.bytes", "variables": []}, {".class": "CallableType", "arg_kinds": [0, 1], "arg_names": ["path", "start"], "arg_types": [{".class": "UnionType", "items": ["builtins.str", {".class": "Instance", "args": ["builtins.str"], "type_ref": "builtins._PathLike"}]}, {".class": "UnionType", "items": ["builtins.str", {".class": "Instance", "args": ["builtins.str"], "type_ref": "builtins._PathLike"}, {".class": "NoneTyp"}]}], "bound_args": [], "def_extras": {"first_arg": null}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "relpath", "ret_type": "builtins.str", "variables": []}]}}}, "samefile": {".class": "SymbolTableNode", "kind": "Gdef", "node": {".class": "FuncDef", "arg_kinds": [0, 0], "arg_names": ["path1", "path2"], "flags": [], "fullname": "os.path.samefile", "name": "samefile", "type": {".class": "CallableType", "arg_kinds": [0, 0], "arg_names": ["path1", "path2"], "arg_types": [{".class": "UnionType", "items": ["builtins.bytes", "builtins.str", {".class": "Instance", "args": [{".class": "AnyType", "missing_import_name": null, "source_any": null, "type_of_any": 4}], "type_ref": "builtins._PathLike"}]}, {".class": "UnionType", "items": ["builtins.bytes", "builtins.str", {".class": "Instance", "args": [{".class": "AnyType", "missing_import_name": null, "source_any": null, "type_of_any": 4}], "type_ref": "builtins._PathLike"}]}], "bound_args": [], "def_extras": {"first_arg": null}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "samefile", "ret_type": "builtins.bool", "variables": []}}}, "sameopenfile": {".class": "SymbolTableNode", "kind": "Gdef", "node": {".class": "FuncDef", "arg_kinds": [0, 0], "arg_names": ["fp1", "fp2"], "flags": [], "fullname": "os.path.sameopenfile", "name": "sameopenfile", "type": {".class": "CallableType", "arg_kinds": [0, 0], "arg_names": ["fp1", "fp2"], "arg_types": ["builtins.int", "builtins.int"], "bound_args": [], "def_extras": {"first_arg": null}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "sameopenfile", "ret_type": "builtins.bool", "variables": []}}}, "samestat": {".class": "SymbolTableNode", "kind": "Gdef", "node": {".class": "FuncDef", "arg_kinds": [0, 0], "arg_names": ["stat1", "stat2"], "flags": [], "fullname": "os.path.samestat", "name": "samestat", "type": {".class": "CallableType", "arg_kinds": [0, 0], "arg_names": ["stat1", "stat2"], "arg_types": ["os.stat_result", "os.stat_result"], "bound_args": [], "def_extras": {"first_arg": null}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "samestat", "ret_type": "builtins.bool", "variables": []}}}, "sep": {".class": "SymbolTableNode", "kind": "Gdef", "node": {".class": "Var", "flags": [], "fullname": "os.path.sep", "name": "sep", "type": "builtins.str"}}, "split": {".class": "SymbolTableNode", "kind": "Gdef", "node": {".class": "OverloadedFuncDef", "flags": [], "fullname": "os.path.split", "impl": null, "items": [{".class": "Decorator", "func": {".class": "FuncDef", "arg_kinds": [0], "arg_names": ["path"], "flags": ["is_overload", "is_decorated", "is_conditional"], "fullname": "os.path.split", "name": "split", "type": {".class": "CallableType", "arg_kinds": [0], "arg_names": ["path"], "arg_types": [{".class": "Instance", "args": [{".class": "TypeVarType", "fullname": "typing.AnyStr", "id": -1, "name": "AnyStr", "upper_bound": "builtins.object", "values": ["builtins.str", "builtins.bytes"], "variance": 0}], "type_ref": "builtins._PathLike"}], "bound_args": [], "def_extras": {"first_arg": null}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "split", "ret_type": {".class": "TupleType", "fallback": {".class": "Instance", "args": [{".class": "AnyType", "missing_import_name": null, "source_any": null, "type_of_any": 6}], "type_ref": "builtins.tuple"}, "implicit": false, "items": [{".class": "TypeVarType", "fullname": "typing.AnyStr", "id": -1, "name": "AnyStr", "upper_bound": "builtins.object", "values": ["builtins.str", "builtins.bytes"], "variance": 0}, {".class": "TypeVarType", "fullname": "typing.AnyStr", "id": -1, "name": "AnyStr", "upper_bound": "builtins.object", "values": ["builtins.str", "builtins.bytes"], "variance": 0}]}, "variables": [{".class": "TypeVarDef", "fullname": "typing.AnyStr", "id": -1, "name": "AnyStr", "upper_bound": "builtins.object", "values": ["builtins.str", "builtins.bytes"], "variance": 0}]}}, "is_overload": true, "var": {".class": "Var", "flags": [], "fullname": null, "name": "split", "type": null}}, {".class": "Decorator", "func": {".class": "FuncDef", "arg_kinds": [0], "arg_names": ["path"], "flags": ["is_overload", "is_decorated", "is_conditional"], "fullname": "os.path.split", "name": "split", "type": {".class": "CallableType", "arg_kinds": [0], "arg_names": ["path"], "arg_types": [{".class": "TypeVarType", "fullname": "typing.AnyStr", "id": -1, "name": "AnyStr", "upper_bound": "builtins.object", "values": ["builtins.str", "builtins.bytes"], "variance": 0}], "bound_args": [], "def_extras": {"first_arg": null}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "split", "ret_type": {".class": "TupleType", "fallback": {".class": "Instance", "args": [{".class": "AnyType", "missing_import_name": null, "source_any": null, "type_of_any": 6}], "type_ref": "builtins.tuple"}, "implicit": false, "items": [{".class": "TypeVarType", "fullname": "typing.AnyStr", "id": -1, "name": "AnyStr", "upper_bound": "builtins.object", "values": ["builtins.str", "builtins.bytes"], "variance": 0}, {".class": "TypeVarType", "fullname": "typing.AnyStr", "id": -1, "name": "AnyStr", "upper_bound": "builtins.object", "values": ["builtins.str", "builtins.bytes"], "variance": 0}]}, "variables": [{".class": "TypeVarDef", "fullname": "typing.AnyStr", "id": -1, "name": "AnyStr", "upper_bound": "builtins.object", "values": ["builtins.str", "builtins.bytes"], "variance": 0}]}}, "is_overload": true, "var": {".class": "Var", "flags": [], "fullname": null, "name": "split", "type": null}}], "type": {".class": "Overloaded", "items": [{".class": "CallableType", "arg_kinds": [0], "arg_names": ["path"], "arg_types": [{".class": "Instance", "args": [{".class": "TypeVarType", "fullname": "typing.AnyStr", "id": -1, "name": "AnyStr", "upper_bound": "builtins.object", "values": ["builtins.str", "builtins.bytes"], "variance": 0}], "type_ref": "builtins._PathLike"}], "bound_args": [], "def_extras": {"first_arg": null}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "split", "ret_type": {".class": "TupleType", "fallback": {".class": "Instance", "args": [{".class": "AnyType", "missing_import_name": null, "source_any": null, "type_of_any": 6}], "type_ref": "builtins.tuple"}, "implicit": false, "items": [{".class": "TypeVarType", "fullname": "typing.AnyStr", "id": -1, "name": "AnyStr", "upper_bound": "builtins.object", "values": ["builtins.str", "builtins.bytes"], "variance": 0}, {".class": "TypeVarType", "fullname": "typing.AnyStr", "id": -1, "name": "AnyStr", "upper_bound": "builtins.object", "values": ["builtins.str", "builtins.bytes"], "variance": 0}]}, "variables": [{".class": "TypeVarDef", "fullname": "typing.AnyStr", "id": -1, "name": "AnyStr", "upper_bound": "builtins.object", "values": ["builtins.str", "builtins.bytes"], "variance": 0}]}, {".class": "CallableType", "arg_kinds": [0], "arg_names": ["path"], "arg_types": [{".class": "TypeVarType", "fullname": "typing.AnyStr", "id": -1, "name": "AnyStr", "upper_bound": "builtins.object", "values": ["builtins.str", "builtins.bytes"], "variance": 0}], "bound_args": [], "def_extras": {"first_arg": null}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "split", "ret_type": {".class": "TupleType", "fallback": {".class": "Instance", "args": [{".class": "AnyType", "missing_import_name": null, "source_any": null, "type_of_any": 6}], "type_ref": "builtins.tuple"}, "implicit": false, "items": [{".class": "TypeVarType", "fullname": "typing.AnyStr", "id": -1, "name": "AnyStr", "upper_bound": "builtins.object", "values": ["builtins.str", "builtins.bytes"], "variance": 0}, {".class": "TypeVarType", "fullname": "typing.AnyStr", "id": -1, "name": "AnyStr", "upper_bound": "builtins.object", "values": ["builtins.str", "builtins.bytes"], "variance": 0}]}, "variables": [{".class": "TypeVarDef", "fullname": "typing.AnyStr", "id": -1, "name": "AnyStr", "upper_bound": "builtins.object", "values": ["builtins.str", "builtins.bytes"], "variance": 0}]}]}}}, "splitdrive": {".class": "SymbolTableNode", "kind": "Gdef", "node": {".class": "OverloadedFuncDef", "flags": [], "fullname": "os.path.splitdrive", "impl": null, "items": [{".class": "Decorator", "func": {".class": "FuncDef", "arg_kinds": [0], "arg_names": ["path"], "flags": ["is_overload", "is_decorated", "is_conditional"], "fullname": "os.path.splitdrive", "name": "splitdrive", "type": {".class": "CallableType", "arg_kinds": [0], "arg_names": ["path"], "arg_types": [{".class": "Instance", "args": [{".class": "TypeVarType", "fullname": "typing.AnyStr", "id": -1, "name": "AnyStr", "upper_bound": "builtins.object", "values": ["builtins.str", "builtins.bytes"], "variance": 0}], "type_ref": "builtins._PathLike"}], "bound_args": [], "def_extras": {"first_arg": null}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "splitdrive", "ret_type": {".class": "TupleType", "fallback": {".class": "Instance", "args": [{".class": "AnyType", "missing_import_name": null, "source_any": null, "type_of_any": 6}], "type_ref": "builtins.tuple"}, "implicit": false, "items": [{".class": "TypeVarType", "fullname": "typing.AnyStr", "id": -1, "name": "AnyStr", "upper_bound": "builtins.object", "values": ["builtins.str", "builtins.bytes"], "variance": 0}, {".class": "TypeVarType", "fullname": "typing.AnyStr", "id": -1, "name": "AnyStr", "upper_bound": "builtins.object", "values": ["builtins.str", "builtins.bytes"], "variance": 0}]}, "variables": [{".class": "TypeVarDef", "fullname": "typing.AnyStr", "id": -1, "name": "AnyStr", "upper_bound": "builtins.object", "values": ["builtins.str", "builtins.bytes"], "variance": 0}]}}, "is_overload": true, "var": {".class": "Var", "flags": [], "fullname": null, "name": "splitdrive", "type": null}}, {".class": "Decorator", "func": {".class": "FuncDef", "arg_kinds": [0], "arg_names": ["path"], "flags": ["is_overload", "is_decorated", "is_conditional"], "fullname": "os.path.splitdrive", "name": "splitdrive", "type": {".class": "CallableType", "arg_kinds": [0], "arg_names": ["path"], "arg_types": [{".class": "TypeVarType", "fullname": "typing.AnyStr", "id": -1, "name": "AnyStr", "upper_bound": "builtins.object", "values": ["builtins.str", "builtins.bytes"], "variance": 0}], "bound_args": [], "def_extras": {"first_arg": null}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "splitdrive", "ret_type": {".class": "TupleType", "fallback": {".class": "Instance", "args": [{".class": "AnyType", "missing_import_name": null, "source_any": null, "type_of_any": 6}], "type_ref": "builtins.tuple"}, "implicit": false, "items": [{".class": "TypeVarType", "fullname": "typing.AnyStr", "id": -1, "name": "AnyStr", "upper_bound": "builtins.object", "values": ["builtins.str", "builtins.bytes"], "variance": 0}, {".class": "TypeVarType", "fullname": "typing.AnyStr", "id": -1, "name": "AnyStr", "upper_bound": "builtins.object", "values": ["builtins.str", "builtins.bytes"], "variance": 0}]}, "variables": [{".class": "TypeVarDef", "fullname": "typing.AnyStr", "id": -1, "name": "AnyStr", "upper_bound": "builtins.object", "values": ["builtins.str", "builtins.bytes"], "variance": 0}]}}, "is_overload": true, "var": {".class": "Var", "flags": [], "fullname": null, "name": "splitdrive", "type": null}}], "type": {".class": "Overloaded", "items": [{".class": "CallableType", "arg_kinds": [0], "arg_names": ["path"], "arg_types": [{".class": "Instance", "args": [{".class": "TypeVarType", "fullname": "typing.AnyStr", "id": -1, "name": "AnyStr", "upper_bound": "builtins.object", "values": ["builtins.str", "builtins.bytes"], "variance": 0}], "type_ref": "builtins._PathLike"}], "bound_args": [], "def_extras": {"first_arg": null}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "splitdrive", "ret_type": {".class": "TupleType", "fallback": {".class": "Instance", "args": [{".class": "AnyType", "missing_import_name": null, "source_any": null, "type_of_any": 6}], "type_ref": "builtins.tuple"}, "implicit": false, "items": [{".class": "TypeVarType", "fullname": "typing.AnyStr", "id": -1, "name": "AnyStr", "upper_bound": "builtins.object", "values": ["builtins.str", "builtins.bytes"], "variance": 0}, {".class": "TypeVarType", "fullname": "typing.AnyStr", "id": -1, "name": "AnyStr", "upper_bound": "builtins.object", "values": ["builtins.str", "builtins.bytes"], "variance": 0}]}, "variables": [{".class": "TypeVarDef", "fullname": "typing.AnyStr", "id": -1, "name": "AnyStr", "upper_bound": "builtins.object", "values": ["builtins.str", "builtins.bytes"], "variance": 0}]}, {".class": "CallableType", "arg_kinds": [0], "arg_names": ["path"], "arg_types": [{".class": "TypeVarType", "fullname": "typing.AnyStr", "id": -1, "name": "AnyStr", "upper_bound": "builtins.object", "values": ["builtins.str", "builtins.bytes"], "variance": 0}], "bound_args": [], "def_extras": {"first_arg": null}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "splitdrive", "ret_type": {".class": "TupleType", "fallback": {".class": "Instance", "args": [{".class": "AnyType", "missing_import_name": null, "source_any": null, "type_of_any": 6}], "type_ref": "builtins.tuple"}, "implicit": false, "items": [{".class": "TypeVarType", "fullname": "typing.AnyStr", "id": -1, "name": "AnyStr", "upper_bound": "builtins.object", "values": ["builtins.str", "builtins.bytes"], "variance": 0}, {".class": "TypeVarType", "fullname": "typing.AnyStr", "id": -1, "name": "AnyStr", "upper_bound": "builtins.object", "values": ["builtins.str", "builtins.bytes"], "variance": 0}]}, "variables": [{".class": "TypeVarDef", "fullname": "typing.AnyStr", "id": -1, "name": "AnyStr", "upper_bound": "builtins.object", "values": ["builtins.str", "builtins.bytes"], "variance": 0}]}]}}}, "splitext": {".class": "SymbolTableNode", "kind": "Gdef", "node": {".class": "OverloadedFuncDef", "flags": [], "fullname": "os.path.splitext", "impl": null, "items": [{".class": "Decorator", "func": {".class": "FuncDef", "arg_kinds": [0], "arg_names": ["path"], "flags": ["is_overload", "is_decorated", "is_conditional"], "fullname": "os.path.splitext", "name": "splitext", "type": {".class": "CallableType", "arg_kinds": [0], "arg_names": ["path"], "arg_types": [{".class": "Instance", "args": [{".class": "TypeVarType", "fullname": "typing.AnyStr", "id": -1, "name": "AnyStr", "upper_bound": "builtins.object", "values": ["builtins.str", "builtins.bytes"], "variance": 0}], "type_ref": "builtins._PathLike"}], "bound_args": [], "def_extras": {"first_arg": null}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "splitext", "ret_type": {".class": "TupleType", "fallback": {".class": "Instance", "args": [{".class": "AnyType", "missing_import_name": null, "source_any": null, "type_of_any": 6}], "type_ref": "builtins.tuple"}, "implicit": false, "items": [{".class": "TypeVarType", "fullname": "typing.AnyStr", "id": -1, "name": "AnyStr", "upper_bound": "builtins.object", "values": ["builtins.str", "builtins.bytes"], "variance": 0}, {".class": "TypeVarType", "fullname": "typing.AnyStr", "id": -1, "name": "AnyStr", "upper_bound": "builtins.object", "values": ["builtins.str", "builtins.bytes"], "variance": 0}]}, "variables": [{".class": "TypeVarDef", "fullname": "typing.AnyStr", "id": -1, "name": "AnyStr", "upper_bound": "builtins.object", "values": ["builtins.str", "builtins.bytes"], "variance": 0}]}}, "is_overload": true, "var": {".class": "Var", "flags": [], "fullname": null, "name": "splitext", "type": null}}, {".class": "Decorator", "func": {".class": "FuncDef", "arg_kinds": [0], "arg_names": ["path"], "flags": ["is_overload", "is_decorated", "is_conditional"], "fullname": "os.path.splitext", "name": "splitext", "type": {".class": "CallableType", "arg_kinds": [0], "arg_names": ["path"], "arg_types": [{".class": "TypeVarType", "fullname": "typing.AnyStr", "id": -1, "name": "AnyStr", "upper_bound": "builtins.object", "values": ["builtins.str", "builtins.bytes"], "variance": 0}], "bound_args": [], "def_extras": {"first_arg": null}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "splitext", "ret_type": {".class": "TupleType", "fallback": {".class": "Instance", "args": [{".class": "AnyType", "missing_import_name": null, "source_any": null, "type_of_any": 6}], "type_ref": "builtins.tuple"}, "implicit": false, "items": [{".class": "TypeVarType", "fullname": "typing.AnyStr", "id": -1, "name": "AnyStr", "upper_bound": "builtins.object", "values": ["builtins.str", "builtins.bytes"], "variance": 0}, {".class": "TypeVarType", "fullname": "typing.AnyStr", "id": -1, "name": "AnyStr", "upper_bound": "builtins.object", "values": ["builtins.str", "builtins.bytes"], "variance": 0}]}, "variables": [{".class": "TypeVarDef", "fullname": "typing.AnyStr", "id": -1, "name": "AnyStr", "upper_bound": "builtins.object", "values": ["builtins.str", "builtins.bytes"], "variance": 0}]}}, "is_overload": true, "var": {".class": "Var", "flags": [], "fullname": null, "name": "splitext", "type": null}}], "type": {".class": "Overloaded", "items": [{".class": "CallableType", "arg_kinds": [0], "arg_names": ["path"], "arg_types": [{".class": "Instance", "args": [{".class": "TypeVarType", "fullname": "typing.AnyStr", "id": -1, "name": "AnyStr", "upper_bound": "builtins.object", "values": ["builtins.str", "builtins.bytes"], "variance": 0}], "type_ref": "builtins._PathLike"}], "bound_args": [], "def_extras": {"first_arg": null}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "splitext", "ret_type": {".class": "TupleType", "fallback": {".class": "Instance", "args": [{".class": "AnyType", "missing_import_name": null, "source_any": null, "type_of_any": 6}], "type_ref": "builtins.tuple"}, "implicit": false, "items": [{".class": "TypeVarType", "fullname": "typing.AnyStr", "id": -1, "name": "AnyStr", "upper_bound": "builtins.object", "values": ["builtins.str", "builtins.bytes"], "variance": 0}, {".class": "TypeVarType", "fullname": "typing.AnyStr", "id": -1, "name": "AnyStr", "upper_bound": "builtins.object", "values": ["builtins.str", "builtins.bytes"], "variance": 0}]}, "variables": [{".class": "TypeVarDef", "fullname": "typing.AnyStr", "id": -1, "name": "AnyStr", "upper_bound": "builtins.object", "values": ["builtins.str", "builtins.bytes"], "variance": 0}]}, {".class": "CallableType", "arg_kinds": [0], "arg_names": ["path"], "arg_types": [{".class": "TypeVarType", "fullname": "typing.AnyStr", "id": -1, "name": "AnyStr", "upper_bound": "builtins.object", "values": ["builtins.str", "builtins.bytes"], "variance": 0}], "bound_args": [], "def_extras": {"first_arg": null}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "splitext", "ret_type": {".class": "TupleType", "fallback": {".class": "Instance", "args": [{".class": "AnyType", "missing_import_name": null, "source_any": null, "type_of_any": 6}], "type_ref": "builtins.tuple"}, "implicit": false, "items": [{".class": "TypeVarType", "fullname": "typing.AnyStr", "id": -1, "name": "AnyStr", "upper_bound": "builtins.object", "values": ["builtins.str", "builtins.bytes"], "variance": 0}, {".class": "TypeVarType", "fullname": "typing.AnyStr", "id": -1, "name": "AnyStr", "upper_bound": "builtins.object", "values": ["builtins.str", "builtins.bytes"], "variance": 0}]}, "variables": [{".class": "TypeVarDef", "fullname": "typing.AnyStr", "id": -1, "name": "AnyStr", "upper_bound": "builtins.object", "values": ["builtins.str", "builtins.bytes"], "variance": 0}]}]}}}, "supports_unicode_filenames": {".class": "SymbolTableNode", "kind": "Gdef", "node": {".class": "Var", "flags": [], "fullname": "os.path.supports_unicode_filenames", "name": "supports_unicode_filenames", "type": "builtins.bool"}}, "sys": {".class": "SymbolTableNode", "cross_ref": "sys", "kind": "Gdef", "module_hidden": true, "module_public": false}}, "path": "/usr/lib/python3/dist-packages/mypy/typeshed/stdlib/3/os/path.pyi"}
\ No newline at end of file
diff --git a/Postgres/StressTests/.mypy_cache/3.7/os/path.meta.json b/Postgres/StressTests/.mypy_cache/3.7/os/path.meta.json
deleted file mode 100644
index 68278eb..0000000
--- a/Postgres/StressTests/.mypy_cache/3.7/os/path.meta.json
+++ /dev/null
@@ -1 +0,0 @@
-{"child_modules": [], "data_mtime": 1553688971, "dep_lines": [5, 6, 7, 15, 1], "dep_prios": [10, 10, 5, 5, 30], "dependencies": ["os", "sys", "typing", "builtins", "abc"], "hash": "5d39840f32e3d0c15304c87316a5d570", "id": "os.path", "ignore_all": true, "interface_hash": "4d1c8ae35123c7991bba050de1a0d27f", "mtime": 1549659920, "options": {"allow_redefinition": false, "allow_untyped_globals": false, "always_false": [], "always_true": [], "bazel": false, "check_untyped_defs": false, "disallow_any_decorated": false, "disallow_any_explicit": false, "disallow_any_expr": false, "disallow_any_generics": false, "disallow_any_unimported": false, "disallow_incomplete_defs": false, "disallow_subclassing_any": false, "disallow_untyped_calls": false, "disallow_untyped_decorators": false, "disallow_untyped_defs": false, "follow_imports": "normal", "follow_imports_for_stubs": false, "ignore_errors": false, "ignore_missing_imports": false, "local_partial_types": false, "mypyc": false, "new_semantic_analyzer": false, "no_implicit_optional": false, "platform": "linux", "plugins": [], "show_none_errors": true, "strict_optional": true, "strict_optional_whitelist": null, "warn_no_return": true, "warn_return_any": false, "warn_unused_ignores": false}, "path": "/usr/lib/python3/dist-packages/mypy/typeshed/stdlib/3/os/path.pyi", "size": 6194, "suppressed": [], "version_id": "0.670"}
\ No newline at end of file
diff --git a/Postgres/StressTests/.mypy_cache/3.7/posix.data.json b/Postgres/StressTests/.mypy_cache/3.7/posix.data.json
deleted file mode 100644
index fefb812..0000000
--- a/Postgres/StressTests/.mypy_cache/3.7/posix.data.json
+++ /dev/null
@@ -1 +0,0 @@
-{".class": "MypyFile", "_fullname": "posix", "is_partial_stub_package": false, "is_stub": true, "names": {".class": "SymbolTable", "EX_CANTCREAT": {".class": "SymbolTableNode", "kind": "Gdef", "node": {".class": "Var", "flags": [], "fullname": "posix.EX_CANTCREAT", "name": "EX_CANTCREAT", "type": "builtins.int"}}, "EX_CONFIG": {".class": "SymbolTableNode", "kind": "Gdef", "node": {".class": "Var", "flags": [], "fullname": "posix.EX_CONFIG", "name": "EX_CONFIG", "type": "builtins.int"}}, "EX_DATAERR": {".class": "SymbolTableNode", "kind": "Gdef", "node": {".class": "Var", "flags": [], "fullname": "posix.EX_DATAERR", "name": "EX_DATAERR", "type": "builtins.int"}}, "EX_IOERR": {".class": "SymbolTableNode", "kind": "Gdef", "node": {".class": "Var", "flags": [], "fullname": "posix.EX_IOERR", "name": "EX_IOERR", "type": "builtins.int"}}, "EX_NOHOST": {".class": "SymbolTableNode", "kind": "Gdef", "node": {".class": "Var", "flags": [], "fullname": "posix.EX_NOHOST", "name": "EX_NOHOST", "type": "builtins.int"}}, "EX_NOINPUT": {".class": "SymbolTableNode", "kind": "Gdef", "node": {".class": "Var", "flags": [], "fullname": "posix.EX_NOINPUT", "name": "EX_NOINPUT", "type": "builtins.int"}}, "EX_NOPERM": {".class": "SymbolTableNode", "kind": "Gdef", "node": {".class": "Var", "flags": [], "fullname": "posix.EX_NOPERM", "name": "EX_NOPERM", "type": "builtins.int"}}, "EX_NOTFOUND": {".class": "SymbolTableNode", "kind": "Gdef", "node": {".class": "Var", "flags": [], "fullname": "posix.EX_NOTFOUND", "name": "EX_NOTFOUND", "type": "builtins.int"}}, "EX_NOUSER": {".class": "SymbolTableNode", "kind": "Gdef", "node": {".class": "Var", "flags": [], "fullname": "posix.EX_NOUSER", "name": "EX_NOUSER", "type": "builtins.int"}}, "EX_OK": {".class": "SymbolTableNode", "kind": "Gdef", "node": {".class": "Var", "flags": [], "fullname": "posix.EX_OK", "name": "EX_OK", "type": "builtins.int"}}, "EX_OSERR": {".class": "SymbolTableNode", "kind": "Gdef", "node": {".class": "Var", "flags": [], "fullname": "posix.EX_OSERR", "name": "EX_OSERR", "type": "builtins.int"}}, "EX_OSFILE": {".class": "SymbolTableNode", "kind": "Gdef", "node": {".class": "Var", "flags": [], "fullname": "posix.EX_OSFILE", "name": "EX_OSFILE", "type": "builtins.int"}}, "EX_PROTOCOL": {".class": "SymbolTableNode", "kind": "Gdef", "node": {".class": "Var", "flags": [], "fullname": "posix.EX_PROTOCOL", "name": "EX_PROTOCOL", "type": "builtins.int"}}, "EX_SOFTWARE": {".class": "SymbolTableNode", "kind": "Gdef", "node": {".class": "Var", "flags": [], "fullname": "posix.EX_SOFTWARE", "name": "EX_SOFTWARE", "type": "builtins.int"}}, "EX_TEMPFAIL": {".class": "SymbolTableNode", "kind": "Gdef", "node": {".class": "Var", "flags": [], "fullname": "posix.EX_TEMPFAIL", "name": "EX_TEMPFAIL", "type": "builtins.int"}}, "EX_UNAVAILABLE": {".class": "SymbolTableNode", "kind": "Gdef", "node": {".class": "Var", "flags": [], "fullname": "posix.EX_UNAVAILABLE", "name": "EX_UNAVAILABLE", "type": "builtins.int"}}, "EX_USAGE": {".class": "SymbolTableNode", "kind": "Gdef", "node": {".class": "Var", "flags": [], "fullname": "posix.EX_USAGE", "name": "EX_USAGE", "type": "builtins.int"}}, "F_OK": {".class": "SymbolTableNode", "kind": "Gdef", "node": {".class": "Var", "flags": [], "fullname": "posix.F_OK", "name": "F_OK", "type": "builtins.int"}}, "GRND_NONBLOCK": {".class": "SymbolTableNode", "kind": "Gdef", "node": {".class": "Var", "flags": [], "fullname": "posix.GRND_NONBLOCK", "name": "GRND_NONBLOCK", "type": "builtins.int"}}, "GRND_RANDOM": {".class": "SymbolTableNode", "kind": "Gdef", "node": {".class": "Var", "flags": [], "fullname": "posix.GRND_RANDOM", "name": "GRND_RANDOM", "type": "builtins.int"}}, "NGROUPS_MAX": {".class": "SymbolTableNode", "kind": "Gdef", "node": {".class": "Var", "flags": [], "fullname": "posix.NGROUPS_MAX", "name": "NGROUPS_MAX", "type": "builtins.int"}}, "NamedTuple": {".class": "SymbolTableNode", "cross_ref": "typing.NamedTuple", "kind": "Gdef", "module_hidden": true, "module_public": false}, "O_ACCMODE": {".class": "SymbolTableNode", "kind": "Gdef", "node": {".class": "Var", "flags": [], "fullname": "posix.O_ACCMODE", "name": "O_ACCMODE", "type": "builtins.int"}}, "O_APPEND": {".class": "SymbolTableNode", "kind": "Gdef", "node": {".class": "Var", "flags": [], "fullname": "posix.O_APPEND", "name": "O_APPEND", "type": "builtins.int"}}, "O_ASYNC": {".class": "SymbolTableNode", "kind": "Gdef", "node": {".class": "Var", "flags": [], "fullname": "posix.O_ASYNC", "name": "O_ASYNC", "type": "builtins.int"}}, "O_CREAT": {".class": "SymbolTableNode", "kind": "Gdef", "node": {".class": "Var", "flags": [], "fullname": "posix.O_CREAT", "name": "O_CREAT", "type": "builtins.int"}}, "O_DIRECT": {".class": "SymbolTableNode", "kind": "Gdef", "node": {".class": "Var", "flags": [], "fullname": "posix.O_DIRECT", "name": "O_DIRECT", "type": "builtins.int"}}, "O_DIRECTORY": {".class": "SymbolTableNode", "kind": "Gdef", "node": {".class": "Var", "flags": [], "fullname": "posix.O_DIRECTORY", "name": "O_DIRECTORY", "type": "builtins.int"}}, "O_DSYNC": {".class": "SymbolTableNode", "kind": "Gdef", "node": {".class": "Var", "flags": [], "fullname": "posix.O_DSYNC", "name": "O_DSYNC", "type": "builtins.int"}}, "O_EXCL": {".class": "SymbolTableNode", "kind": "Gdef", "node": {".class": "Var", "flags": [], "fullname": "posix.O_EXCL", "name": "O_EXCL", "type": "builtins.int"}}, "O_LARGEFILE": {".class": "SymbolTableNode", "kind": "Gdef", "node": {".class": "Var", "flags": [], "fullname": "posix.O_LARGEFILE", "name": "O_LARGEFILE", "type": "builtins.int"}}, "O_NDELAY": {".class": "SymbolTableNode", "kind": "Gdef", "node": {".class": "Var", "flags": [], "fullname": "posix.O_NDELAY", "name": "O_NDELAY", "type": "builtins.int"}}, "O_NOATIME": {".class": "SymbolTableNode", "kind": "Gdef", "node": {".class": "Var", "flags": [], "fullname": "posix.O_NOATIME", "name": "O_NOATIME", "type": "builtins.int"}}, "O_NOCTTY": {".class": "SymbolTableNode", "kind": "Gdef", "node": {".class": "Var", "flags": [], "fullname": "posix.O_NOCTTY", "name": "O_NOCTTY", "type": "builtins.int"}}, "O_NOFOLLOW": {".class": "SymbolTableNode", "kind": "Gdef", "node": {".class": "Var", "flags": [], "fullname": "posix.O_NOFOLLOW", "name": "O_NOFOLLOW", "type": "builtins.int"}}, "O_NONBLOCK": {".class": "SymbolTableNode", "kind": "Gdef", "node": {".class": "Var", "flags": [], "fullname": "posix.O_NONBLOCK", "name": "O_NONBLOCK", "type": "builtins.int"}}, "O_RDONLY": {".class": "SymbolTableNode", "kind": "Gdef", "node": {".class": "Var", "flags": [], "fullname": "posix.O_RDONLY", "name": "O_RDONLY", "type": "builtins.int"}}, "O_RDWR": {".class": "SymbolTableNode", "kind": "Gdef", "node": {".class": "Var", "flags": [], "fullname": "posix.O_RDWR", "name": "O_RDWR", "type": "builtins.int"}}, "O_RSYNC": {".class": "SymbolTableNode", "kind": "Gdef", "node": {".class": "Var", "flags": [], "fullname": "posix.O_RSYNC", "name": "O_RSYNC", "type": "builtins.int"}}, "O_SYNC": {".class": "SymbolTableNode", "kind": "Gdef", "node": {".class": "Var", "flags": [], "fullname": "posix.O_SYNC", "name": "O_SYNC", "type": "builtins.int"}}, "O_TRUNC": {".class": "SymbolTableNode", "kind": "Gdef", "node": {".class": "Var", "flags": [], "fullname": "posix.O_TRUNC", "name": "O_TRUNC", "type": "builtins.int"}}, "O_WRONLY": {".class": "SymbolTableNode", "kind": "Gdef", "node": {".class": "Var", "flags": [], "fullname": "posix.O_WRONLY", "name": "O_WRONLY", "type": "builtins.int"}}, "R_OK": {".class": "SymbolTableNode", "kind": "Gdef", "node": {".class": "Var", "flags": [], "fullname": "posix.R_OK", "name": "R_OK", "type": "builtins.int"}}, "ST_APPEND": {".class": "SymbolTableNode", "kind": "Gdef", "node": {".class": "Var", "flags": [], "fullname": "posix.ST_APPEND", "name": "ST_APPEND", "type": "builtins.int"}}, "ST_MANDLOCK": {".class": "SymbolTableNode", "kind": "Gdef", "node": {".class": "Var", "flags": [], "fullname": "posix.ST_MANDLOCK", "name": "ST_MANDLOCK", "type": "builtins.int"}}, "ST_NOATIME": {".class": "SymbolTableNode", "kind": "Gdef", "node": {".class": "Var", "flags": [], "fullname": "posix.ST_NOATIME", "name": "ST_NOATIME", "type": "builtins.int"}}, "ST_NODEV": {".class": "SymbolTableNode", "kind": "Gdef", "node": {".class": "Var", "flags": [], "fullname": "posix.ST_NODEV", "name": "ST_NODEV", "type": "builtins.int"}}, "ST_NODIRATIME": {".class": "SymbolTableNode", "kind": "Gdef", "node": {".class": "Var", "flags": [], "fullname": "posix.ST_NODIRATIME", "name": "ST_NODIRATIME", "type": "builtins.int"}}, "ST_NOEXEC": {".class": "SymbolTableNode", "kind": "Gdef", "node": {".class": "Var", "flags": [], "fullname": "posix.ST_NOEXEC", "name": "ST_NOEXEC", "type": "builtins.int"}}, "ST_NOSUID": {".class": "SymbolTableNode", "kind": "Gdef", "node": {".class": "Var", "flags": [], "fullname": "posix.ST_NOSUID", "name": "ST_NOSUID", "type": "builtins.int"}}, "ST_RDONLY": {".class": "SymbolTableNode", "kind": "Gdef", "node": {".class": "Var", "flags": [], "fullname": "posix.ST_RDONLY", "name": "ST_RDONLY", "type": "builtins.int"}}, "ST_RELATIME": {".class": "SymbolTableNode", "kind": "Gdef", "node": {".class": "Var", "flags": [], "fullname": "posix.ST_RELATIME", "name": "ST_RELATIME", "type": "builtins.int"}}, "ST_SYNCHRONOUS": {".class": "SymbolTableNode", "kind": "Gdef", "node": {".class": "Var", "flags": [], "fullname": "posix.ST_SYNCHRONOUS", "name": "ST_SYNCHRONOUS", "type": "builtins.int"}}, "ST_WRITE": {".class": "SymbolTableNode", "kind": "Gdef", "node": {".class": "Var", "flags": [], "fullname": "posix.ST_WRITE", "name": "ST_WRITE", "type": "builtins.int"}}, "TMP_MAX": {".class": "SymbolTableNode", "kind": "Gdef", "node": {".class": "Var", "flags": [], "fullname": "posix.TMP_MAX", "name": "TMP_MAX", "type": "builtins.int"}}, "Tuple": {".class": "SymbolTableNode", "cross_ref": "typing.Tuple", "kind": "Gdef", "module_hidden": true, "module_public": false}, "WCONTINUED": {".class": "SymbolTableNode", "kind": "Gdef", "node": {".class": "Var", "flags": [], "fullname": "posix.WCONTINUED", "name": "WCONTINUED", "type": "builtins.int"}}, "WCOREDUMP": {".class": "SymbolTableNode", "kind": "Gdef", "node": {".class": "Var", "flags": [], "fullname": "posix.WCOREDUMP", "name": "WCOREDUMP", "type": "builtins.int"}}, "WEXITSTATUS": {".class": "SymbolTableNode", "kind": "Gdef", "node": {".class": "Var", "flags": [], "fullname": "posix.WEXITSTATUS", "name": "WEXITSTATUS", "type": "builtins.int"}}, "WIFCONTINUED": {".class": "SymbolTableNode", "kind": "Gdef", "node": {".class": "Var", "flags": [], "fullname": "posix.WIFCONTINUED", "name": "WIFCONTINUED", "type": "builtins.int"}}, "WIFEXITED": {".class": "SymbolTableNode", "kind": "Gdef", "node": {".class": "Var", "flags": [], "fullname": "posix.WIFEXITED", "name": "WIFEXITED", "type": "builtins.int"}}, "WIFSIGNALED": {".class": "SymbolTableNode", "kind": "Gdef", "node": {".class": "Var", "flags": [], "fullname": "posix.WIFSIGNALED", "name": "WIFSIGNALED", "type": "builtins.int"}}, "WIFSTOPPED": {".class": "SymbolTableNode", "kind": "Gdef", "node": {".class": "Var", "flags": [], "fullname": "posix.WIFSTOPPED", "name": "WIFSTOPPED", "type": "builtins.int"}}, "WNOHANG": {".class": "SymbolTableNode", "kind": "Gdef", "node": {".class": "Var", "flags": [], "fullname": "posix.WNOHANG", "name": "WNOHANG", "type": "builtins.int"}}, "WSTOPSIG": {".class": "SymbolTableNode", "kind": "Gdef", "node": {".class": "Var", "flags": [], "fullname": "posix.WSTOPSIG", "name": "WSTOPSIG", "type": "builtins.int"}}, "WTERMSIG": {".class": "SymbolTableNode", "kind": "Gdef", "node": {".class": "Var", "flags": [], "fullname": "posix.WTERMSIG", "name": "WTERMSIG", "type": "builtins.int"}}, "WUNTRACED": {".class": "SymbolTableNode", "kind": "Gdef", "node": {".class": "Var", "flags": [], "fullname": "posix.WUNTRACED", "name": "WUNTRACED", "type": "builtins.int"}}, "W_OK": {".class": "SymbolTableNode", "kind": "Gdef", "node": {".class": "Var", "flags": [], "fullname": "posix.W_OK", "name": "W_OK", "type": "builtins.int"}}, "X_OK": {".class": "SymbolTableNode", "kind": "Gdef", "node": {".class": "Var", "flags": [], "fullname": "posix.X_OK", "name": "X_OK", "type": "builtins.int"}}, "__doc__": {".class": "SymbolTableNode", "kind": "Gdef", "node": {".class": "Var", "flags": [], "fullname": "posix.__doc__", "name": "__doc__", "type": "builtins.str"}}, "__file__": {".class": "SymbolTableNode", "kind": "Gdef", "node": {".class": "Var", "flags": [], "fullname": "posix.__file__", "name": "__file__", "type": "builtins.str"}}, "__name__": {".class": "SymbolTableNode", "kind": "Gdef", "node": {".class": "Var", "flags": [], "fullname": "posix.__name__", "name": "__name__", "type": "builtins.str"}}, "__package__": {".class": "SymbolTableNode", "kind": "Gdef", "node": {".class": "Var", "flags": [], "fullname": "posix.__package__", "name": "__package__", "type": "builtins.str"}}, "sched_param": {".class": "SymbolTableNode", "cross_ref": "posix.sched_priority@34", "kind": "Gdef"}, "sched_priority@34": {".class": "SymbolTableNode", "kind": "Gdef", "node": {".class": "TypeInfo", "_promote": null, "abstract_attributes": [], "bases": [{".class": "Instance", "args": ["builtins.int"], "type_ref": "builtins.tuple"}], "declared_metaclass": null, "defn": {".class": "ClassDef", "fullname": "posix.sched_priority@34", "name": "sched_priority@34", "type_vars": []}, "flags": ["is_named_tuple"], "fullname": "posix.sched_priority@34", "metaclass_type": null, "metadata": {}, "module_name": "posix", "mro": ["posix.sched_priority@34", "builtins.tuple", "builtins.object"], "names": {".class": "SymbolTable", "__annotations__": {".class": "SymbolTableNode", "kind": "Mdef", "node": {".class": "Var", "flags": ["is_initialized_in_class"], "fullname": "posix.sched_priority@34.__annotations__", "name": "__annotations__", "type": {".class": "Instance", "args": ["builtins.str", {".class": "AnyType", "missing_import_name": null, "source_any": null, "type_of_any": 6}], "type_ref": "builtins.dict"}}}, "__doc__": {".class": "SymbolTableNode", "kind": "Mdef", "node": {".class": "Var", "flags": ["is_initialized_in_class"], "fullname": "posix.sched_priority@34.__doc__", "name": "__doc__", "type": "builtins.str"}}, "__new__": {".class": "SymbolTableNode", "kind": "Mdef", "node": {".class": "FuncDef", "arg_kinds": [0, 0], "arg_names": ["cls", "sched_priority"], "flags": [], "fullname": "posix.sched_priority@34.__new__", "name": "__new__", "type": {".class": "CallableType", "arg_kinds": [0, 0], "arg_names": ["cls", "sched_priority"], "arg_types": [{".class": "TypeType", "item": {".class": "TypeVarType", "fullname": "NT", "id": -1, "name": "NT", "upper_bound": {".class": "TupleType", "fallback": {".class": "Instance", "args": ["builtins.int"], "type_ref": "builtins.tuple"}, "implicit": false, "items": ["builtins.int"]}, "values": [], "variance": 0}}, "builtins.int"], "bound_args": [], "def_extras": {}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "__new__ of sched_priority@34", "ret_type": {".class": "TypeVarType", "fullname": "NT", "id": -1, "name": "NT", "upper_bound": {".class": "TupleType", "fallback": {".class": "Instance", "args": ["builtins.int"], "type_ref": "builtins.tuple"}, "implicit": false, "items": ["builtins.int"]}, "values": [], "variance": 0}, "variables": [{".class": "TypeVarDef", "fullname": "NT", "id": -1, "name": "NT", "upper_bound": {".class": "TupleType", "fallback": {".class": "Instance", "args": ["builtins.int"], "type_ref": "builtins.tuple"}, "implicit": false, "items": ["builtins.int"]}, "values": [], "variance": 0}]}}}, "_asdict": {".class": "SymbolTableNode", "kind": "Mdef", "node": {".class": "FuncDef", "arg_kinds": [0], "arg_names": ["self"], "flags": [], "fullname": "posix.sched_priority@34._asdict", "name": "_asdict", "type": {".class": "CallableType", "arg_kinds": [0], "arg_names": ["self"], "arg_types": [{".class": "TypeVarType", "fullname": "NT", "id": -1, "name": "NT", "upper_bound": {".class": "TupleType", "fallback": {".class": "Instance", "args": ["builtins.int"], "type_ref": "builtins.tuple"}, "implicit": false, "items": ["builtins.int"]}, "values": [], "variance": 0}], "bound_args": [], "def_extras": {}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "_asdict of sched_priority@34", "ret_type": {".class": "Instance", "args": ["builtins.str", {".class": "AnyType", "missing_import_name": null, "source_any": null, "type_of_any": 6}], "type_ref": "builtins.dict"}, "variables": [{".class": "TypeVarDef", "fullname": "NT", "id": -1, "name": "NT", "upper_bound": {".class": "TupleType", "fallback": {".class": "Instance", "args": ["builtins.int"], "type_ref": "builtins.tuple"}, "implicit": false, "items": ["builtins.int"]}, "values": [], "variance": 0}]}}}, "_field_defaults": {".class": "SymbolTableNode", "kind": "Mdef", "node": {".class": "Var", "flags": ["is_initialized_in_class"], "fullname": "posix.sched_priority@34._field_defaults", "name": "_field_defaults", "type": {".class": "Instance", "args": ["builtins.str", {".class": "AnyType", "missing_import_name": null, "source_any": null, "type_of_any": 6}], "type_ref": "builtins.dict"}}}, "_field_types": {".class": "SymbolTableNode", "kind": "Mdef", "node": {".class": "Var", "flags": ["is_initialized_in_class"], "fullname": "posix.sched_priority@34._field_types", "name": "_field_types", "type": {".class": "Instance", "args": ["builtins.str", {".class": "AnyType", "missing_import_name": null, "source_any": null, "type_of_any": 6}], "type_ref": "builtins.dict"}}}, "_fields": {".class": "SymbolTableNode", "kind": "Mdef", "node": {".class": "Var", "flags": ["is_initialized_in_class"], "fullname": "posix.sched_priority@34._fields", "name": "_fields", "type": {".class": "TupleType", "fallback": {".class": "Instance", "args": [{".class": "AnyType", "missing_import_name": null, "source_any": null, "type_of_any": 6}], "type_ref": "builtins.tuple"}, "implicit": false, "items": ["builtins.str"]}}}, "_make": {".class": "SymbolTableNode", "kind": "Mdef", "node": {".class": "Decorator", "func": {".class": "FuncDef", "arg_kinds": [0, 0, 5, 5], "arg_names": ["cls", "iterable", "new", "len"], "flags": ["is_class"], "fullname": "posix.sched_priority@34._make", "name": "_make", "type": {".class": "CallableType", "arg_kinds": [0, 0, 5, 5], "arg_names": ["cls", "iterable", "new", "len"], "arg_types": [{".class": "TypeType", "item": {".class": "TypeVarType", "fullname": "NT", "id": -1, "name": "NT", "upper_bound": {".class": "TupleType", "fallback": {".class": "Instance", "args": ["builtins.int"], "type_ref": "builtins.tuple"}, "implicit": false, "items": ["builtins.int"]}, "values": [], "variance": 0}}, {".class": "Instance", "args": [{".class": "AnyType", "missing_import_name": null, "source_any": null, "type_of_any": 6}], "type_ref": "typing.Iterable"}, {".class": "AnyType", "missing_import_name": null, "source_any": null, "type_of_any": 6}, {".class": "AnyType", "missing_import_name": null, "source_any": null, "type_of_any": 6}], "bound_args": [], "def_extras": {}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "_make of sched_priority@34", "ret_type": {".class": "TypeVarType", "fullname": "NT", "id": -1, "name": "NT", "upper_bound": {".class": "TupleType", "fallback": {".class": "Instance", "args": ["builtins.int"], "type_ref": "builtins.tuple"}, "implicit": false, "items": ["builtins.int"]}, "values": [], "variance": 0}, "variables": [{".class": "TypeVarDef", "fullname": "NT", "id": -1, "name": "NT", "upper_bound": {".class": "TupleType", "fallback": {".class": "Instance", "args": ["builtins.int"], "type_ref": "builtins.tuple"}, "implicit": false, "items": ["builtins.int"]}, "values": [], "variance": 0}]}}, "is_overload": false, "var": {".class": "Var", "flags": ["is_classmethod"], "fullname": "posix.sched_priority@34._make", "name": "_make", "type": {".class": "CallableType", "arg_kinds": [0, 0, 5, 5], "arg_names": ["cls", "iterable", "new", "len"], "arg_types": [{".class": "TypeType", "item": {".class": "TypeVarType", "fullname": "NT", "id": -1, "name": "NT", "upper_bound": {".class": "TupleType", "fallback": {".class": "Instance", "args": ["builtins.int"], "type_ref": "builtins.tuple"}, "implicit": false, "items": ["builtins.int"]}, "values": [], "variance": 0}}, {".class": "Instance", "args": [{".class": "AnyType", "missing_import_name": null, "source_any": null, "type_of_any": 6}], "type_ref": "typing.Iterable"}, {".class": "AnyType", "missing_import_name": null, "source_any": null, "type_of_any": 6}, {".class": "AnyType", "missing_import_name": null, "source_any": null, "type_of_any": 6}], "bound_args": [], "def_extras": {}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "_make of sched_priority@34", "ret_type": {".class": "TypeVarType", "fullname": "NT", "id": -1, "name": "NT", "upper_bound": {".class": "TupleType", "fallback": {".class": "Instance", "args": ["builtins.int"], "type_ref": "builtins.tuple"}, "implicit": false, "items": ["builtins.int"]}, "values": [], "variance": 0}, "variables": [{".class": "TypeVarDef", "fullname": "NT", "id": -1, "name": "NT", "upper_bound": {".class": "TupleType", "fallback": {".class": "Instance", "args": ["builtins.int"], "type_ref": "builtins.tuple"}, "implicit": false, "items": ["builtins.int"]}, "values": [], "variance": 0}]}}}}, "_replace": {".class": "SymbolTableNode", "kind": "Mdef", "node": {".class": "FuncDef", "arg_kinds": [0, 5], "arg_names": ["self", "sched_priority"], "flags": [], "fullname": "posix.sched_priority@34._replace", "name": "_replace", "type": {".class": "CallableType", "arg_kinds": [0, 5], "arg_names": ["self", "sched_priority"], "arg_types": [{".class": "TypeVarType", "fullname": "NT", "id": -1, "name": "NT", "upper_bound": {".class": "TupleType", "fallback": {".class": "Instance", "args": ["builtins.int"], "type_ref": "builtins.tuple"}, "implicit": false, "items": ["builtins.int"]}, "values": [], "variance": 0}, "builtins.int"], "bound_args": [], "def_extras": {}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "_replace of sched_priority@34", "ret_type": {".class": "TypeVarType", "fullname": "NT", "id": -1, "name": "NT", "upper_bound": {".class": "TupleType", "fallback": {".class": "Instance", "args": ["builtins.int"], "type_ref": "builtins.tuple"}, "implicit": false, "items": ["builtins.int"]}, "values": [], "variance": 0}, "variables": [{".class": "TypeVarDef", "fullname": "NT", "id": -1, "name": "NT", "upper_bound": {".class": "TupleType", "fallback": {".class": "Instance", "args": ["builtins.int"], "type_ref": "builtins.tuple"}, "implicit": false, "items": ["builtins.int"]}, "values": [], "variance": 0}]}}}, "_source": {".class": "SymbolTableNode", "kind": "Mdef", "node": {".class": "Var", "flags": ["is_initialized_in_class"], "fullname": "posix.sched_priority@34._source", "name": "_source", "type": "builtins.str"}}, "sched_priority": {".class": "SymbolTableNode", "kind": "Mdef", "node": {".class": "Var", "flags": ["is_property"], "fullname": "posix.sched_priority@34.sched_priority", "name": "sched_priority", "type": "builtins.int"}}}, "tuple_type": {".class": "TupleType", "fallback": {".class": "Instance", "args": ["builtins.int"], "type_ref": "builtins.tuple"}, "implicit": false, "items": ["builtins.int"]}, "type_vars": [], "typeddict_type": null}}, "stat_result": {".class": "SymbolTableNode", "cross_ref": "os.stat_result", "kind": "Gdef"}, "sys": {".class": "SymbolTableNode", "cross_ref": "sys", "kind": "Gdef", "module_hidden": true, "module_public": false}, "times_result": {".class": "SymbolTableNode", "kind": "Gdef", "node": {".class": "TypeInfo", "_promote": null, "abstract_attributes": [], "bases": [{".class": "Instance", "args": ["builtins.float"], "type_ref": "builtins.tuple"}], "declared_metaclass": null, "defn": {".class": "ClassDef", "fullname": "posix.times_result", "name": "times_result", "type_vars": []}, "flags": ["is_named_tuple"], "fullname": "posix.times_result", "metaclass_type": null, "metadata": {}, "module_name": "posix", "mro": ["posix.times_result", "builtins.tuple", "builtins.object"], "names": {".class": "SymbolTable", "__annotations__": {".class": "SymbolTableNode", "kind": "Mdef", "node": {".class": "Var", "flags": ["is_initialized_in_class"], "fullname": "posix.times_result.__annotations__", "name": "__annotations__", "type": {".class": "Instance", "args": ["builtins.str", {".class": "AnyType", "missing_import_name": null, "source_any": null, "type_of_any": 6}], "type_ref": "builtins.dict"}}}, "__doc__": {".class": "SymbolTableNode", "kind": "Mdef", "node": {".class": "Var", "flags": ["is_initialized_in_class"], "fullname": "posix.times_result.__doc__", "name": "__doc__", "type": "builtins.str"}}, "__new__": {".class": "SymbolTableNode", "kind": "Mdef", "node": {".class": "FuncDef", "arg_kinds": [0, 0, 0, 0, 0, 0], "arg_names": ["cls", "user", "system", "children_user", "children_system", "elapsed"], "flags": [], "fullname": "posix.times_result.__new__", "name": "__new__", "type": {".class": "CallableType", "arg_kinds": [0, 0, 0, 0, 0, 0], "arg_names": ["cls", "user", "system", "children_user", "children_system", "elapsed"], "arg_types": [{".class": "TypeType", "item": {".class": "TypeVarType", "fullname": "NT", "id": -1, "name": "NT", "upper_bound": {".class": "TupleType", "fallback": {".class": "Instance", "args": ["builtins.float"], "type_ref": "builtins.tuple"}, "implicit": false, "items": ["builtins.float", "builtins.float", "builtins.float", "builtins.float", "builtins.float"]}, "values": [], "variance": 0}}, "builtins.float", "builtins.float", "builtins.float", "builtins.float", "builtins.float"], "bound_args": [], "def_extras": {}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "__new__ of times_result", "ret_type": {".class": "TypeVarType", "fullname": "NT", "id": -1, "name": "NT", "upper_bound": {".class": "TupleType", "fallback": {".class": "Instance", "args": ["builtins.float"], "type_ref": "builtins.tuple"}, "implicit": false, "items": ["builtins.float", "builtins.float", "builtins.float", "builtins.float", "builtins.float"]}, "values": [], "variance": 0}, "variables": [{".class": "TypeVarDef", "fullname": "NT", "id": -1, "name": "NT", "upper_bound": {".class": "TupleType", "fallback": {".class": "Instance", "args": ["builtins.float"], "type_ref": "builtins.tuple"}, "implicit": false, "items": ["builtins.float", "builtins.float", "builtins.float", "builtins.float", "builtins.float"]}, "values": [], "variance": 0}]}}}, "_asdict": {".class": "SymbolTableNode", "kind": "Mdef", "node": {".class": "FuncDef", "arg_kinds": [0], "arg_names": ["self"], "flags": [], "fullname": "posix.times_result._asdict", "name": "_asdict", "type": {".class": "CallableType", "arg_kinds": [0], "arg_names": ["self"], "arg_types": [{".class": "TypeVarType", "fullname": "NT", "id": -1, "name": "NT", "upper_bound": {".class": "TupleType", "fallback": {".class": "Instance", "args": ["builtins.float"], "type_ref": "builtins.tuple"}, "implicit": false, "items": ["builtins.float", "builtins.float", "builtins.float", "builtins.float", "builtins.float"]}, "values": [], "variance": 0}], "bound_args": [], "def_extras": {}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "_asdict of times_result", "ret_type": {".class": "Instance", "args": ["builtins.str", {".class": "AnyType", "missing_import_name": null, "source_any": null, "type_of_any": 6}], "type_ref": "builtins.dict"}, "variables": [{".class": "TypeVarDef", "fullname": "NT", "id": -1, "name": "NT", "upper_bound": {".class": "TupleType", "fallback": {".class": "Instance", "args": ["builtins.float"], "type_ref": "builtins.tuple"}, "implicit": false, "items": ["builtins.float", "builtins.float", "builtins.float", "builtins.float", "builtins.float"]}, "values": [], "variance": 0}]}}}, "_field_defaults": {".class": "SymbolTableNode", "kind": "Mdef", "node": {".class": "Var", "flags": ["is_initialized_in_class"], "fullname": "posix.times_result._field_defaults", "name": "_field_defaults", "type": {".class": "Instance", "args": ["builtins.str", {".class": "AnyType", "missing_import_name": null, "source_any": null, "type_of_any": 6}], "type_ref": "builtins.dict"}}}, "_field_types": {".class": "SymbolTableNode", "kind": "Mdef", "node": {".class": "Var", "flags": ["is_initialized_in_class"], "fullname": "posix.times_result._field_types", "name": "_field_types", "type": {".class": "Instance", "args": ["builtins.str", {".class": "AnyType", "missing_import_name": null, "source_any": null, "type_of_any": 6}], "type_ref": "builtins.dict"}}}, "_fields": {".class": "SymbolTableNode", "kind": "Mdef", "node": {".class": "Var", "flags": ["is_initialized_in_class"], "fullname": "posix.times_result._fields", "name": "_fields", "type": {".class": "TupleType", "fallback": {".class": "Instance", "args": [{".class": "AnyType", "missing_import_name": null, "source_any": null, "type_of_any": 6}], "type_ref": "builtins.tuple"}, "implicit": false, "items": ["builtins.str", "builtins.str", "builtins.str", "builtins.str", "builtins.str"]}}}, "_make": {".class": "SymbolTableNode", "kind": "Mdef", "node": {".class": "Decorator", "func": {".class": "FuncDef", "arg_kinds": [0, 0, 5, 5], "arg_names": ["cls", "iterable", "new", "len"], "flags": ["is_class"], "fullname": "posix.times_result._make", "name": "_make", "type": {".class": "CallableType", "arg_kinds": [0, 0, 5, 5], "arg_names": ["cls", "iterable", "new", "len"], "arg_types": [{".class": "TypeType", "item": {".class": "TypeVarType", "fullname": "NT", "id": -1, "name": "NT", "upper_bound": {".class": "TupleType", "fallback": {".class": "Instance", "args": ["builtins.float"], "type_ref": "builtins.tuple"}, "implicit": false, "items": ["builtins.float", "builtins.float", "builtins.float", "builtins.float", "builtins.float"]}, "values": [], "variance": 0}}, {".class": "Instance", "args": [{".class": "AnyType", "missing_import_name": null, "source_any": null, "type_of_any": 6}], "type_ref": "typing.Iterable"}, {".class": "AnyType", "missing_import_name": null, "source_any": null, "type_of_any": 6}, {".class": "AnyType", "missing_import_name": null, "source_any": null, "type_of_any": 6}], "bound_args": [], "def_extras": {}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "_make of times_result", "ret_type": {".class": "TypeVarType", "fullname": "NT", "id": -1, "name": "NT", "upper_bound": {".class": "TupleType", "fallback": {".class": "Instance", "args": ["builtins.float"], "type_ref": "builtins.tuple"}, "implicit": false, "items": ["builtins.float", "builtins.float", "builtins.float", "builtins.float", "builtins.float"]}, "values": [], "variance": 0}, "variables": [{".class": "TypeVarDef", "fullname": "NT", "id": -1, "name": "NT", "upper_bound": {".class": "TupleType", "fallback": {".class": "Instance", "args": ["builtins.float"], "type_ref": "builtins.tuple"}, "implicit": false, "items": ["builtins.float", "builtins.float", "builtins.float", "builtins.float", "builtins.float"]}, "values": [], "variance": 0}]}}, "is_overload": false, "var": {".class": "Var", "flags": ["is_classmethod"], "fullname": "posix.times_result._make", "name": "_make", "type": {".class": "CallableType", "arg_kinds": [0, 0, 5, 5], "arg_names": ["cls", "iterable", "new", "len"], "arg_types": [{".class": "TypeType", "item": {".class": "TypeVarType", "fullname": "NT", "id": -1, "name": "NT", "upper_bound": {".class": "TupleType", "fallback": {".class": "Instance", "args": ["builtins.float"], "type_ref": "builtins.tuple"}, "implicit": false, "items": ["builtins.float", "builtins.float", "builtins.float", "builtins.float", "builtins.float"]}, "values": [], "variance": 0}}, {".class": "Instance", "args": [{".class": "AnyType", "missing_import_name": null, "source_any": null, "type_of_any": 6}], "type_ref": "typing.Iterable"}, {".class": "AnyType", "missing_import_name": null, "source_any": null, "type_of_any": 6}, {".class": "AnyType", "missing_import_name": null, "source_any": null, "type_of_any": 6}], "bound_args": [], "def_extras": {}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "_make of times_result", "ret_type": {".class": "TypeVarType", "fullname": "NT", "id": -1, "name": "NT", "upper_bound": {".class": "TupleType", "fallback": {".class": "Instance", "args": ["builtins.float"], "type_ref": "builtins.tuple"}, "implicit": false, "items": ["builtins.float", "builtins.float", "builtins.float", "builtins.float", "builtins.float"]}, "values": [], "variance": 0}, "variables": [{".class": "TypeVarDef", "fullname": "NT", "id": -1, "name": "NT", "upper_bound": {".class": "TupleType", "fallback": {".class": "Instance", "args": ["builtins.float"], "type_ref": "builtins.tuple"}, "implicit": false, "items": ["builtins.float", "builtins.float", "builtins.float", "builtins.float", "builtins.float"]}, "values": [], "variance": 0}]}}}}, "_replace": {".class": "SymbolTableNode", "kind": "Mdef", "node": {".class": "FuncDef", "arg_kinds": [0, 5, 5, 5, 5, 5], "arg_names": ["self", "user", "system", "children_user", "children_system", "elapsed"], "flags": [], "fullname": "posix.times_result._replace", "name": "_replace", "type": {".class": "CallableType", "arg_kinds": [0, 5, 5, 5, 5, 5], "arg_names": ["self", "user", "system", "children_user", "children_system", "elapsed"], "arg_types": [{".class": "TypeVarType", "fullname": "NT", "id": -1, "name": "NT", "upper_bound": {".class": "TupleType", "fallback": {".class": "Instance", "args": ["builtins.float"], "type_ref": "builtins.tuple"}, "implicit": false, "items": ["builtins.float", "builtins.float", "builtins.float", "builtins.float", "builtins.float"]}, "values": [], "variance": 0}, "builtins.float", "builtins.float", "builtins.float", "builtins.float", "builtins.float"], "bound_args": [], "def_extras": {}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "_replace of times_result", "ret_type": {".class": "TypeVarType", "fullname": "NT", "id": -1, "name": "NT", "upper_bound": {".class": "TupleType", "fallback": {".class": "Instance", "args": ["builtins.float"], "type_ref": "builtins.tuple"}, "implicit": false, "items": ["builtins.float", "builtins.float", "builtins.float", "builtins.float", "builtins.float"]}, "values": [], "variance": 0}, "variables": [{".class": "TypeVarDef", "fullname": "NT", "id": -1, "name": "NT", "upper_bound": {".class": "TupleType", "fallback": {".class": "Instance", "args": ["builtins.float"], "type_ref": "builtins.tuple"}, "implicit": false, "items": ["builtins.float", "builtins.float", "builtins.float", "builtins.float", "builtins.float"]}, "values": [], "variance": 0}]}}}, "_source": {".class": "SymbolTableNode", "kind": "Mdef", "node": {".class": "Var", "flags": ["is_initialized_in_class"], "fullname": "posix.times_result._source", "name": "_source", "type": "builtins.str"}}, "children_system": {".class": "SymbolTableNode", "kind": "Mdef", "node": {".class": "Var", "flags": ["is_property"], "fullname": "posix.times_result.children_system", "name": "children_system", "type": "builtins.float"}}, "children_user": {".class": "SymbolTableNode", "kind": "Mdef", "node": {".class": "Var", "flags": ["is_property"], "fullname": "posix.times_result.children_user", "name": "children_user", "type": "builtins.float"}}, "elapsed": {".class": "SymbolTableNode", "kind": "Mdef", "node": {".class": "Var", "flags": ["is_property"], "fullname": "posix.times_result.elapsed", "name": "elapsed", "type": "builtins.float"}}, "system": {".class": "SymbolTableNode", "kind": "Mdef", "node": {".class": "Var", "flags": ["is_property"], "fullname": "posix.times_result.system", "name": "system", "type": "builtins.float"}}, "user": {".class": "SymbolTableNode", "kind": "Mdef", "node": {".class": "Var", "flags": ["is_property"], "fullname": "posix.times_result.user", "name": "user", "type": "builtins.float"}}}, "tuple_type": {".class": "TupleType", "fallback": {".class": "Instance", "args": ["builtins.float"], "type_ref": "builtins.tuple"}, "implicit": false, "items": ["builtins.float", "builtins.float", "builtins.float", "builtins.float", "builtins.float"]}, "type_vars": [], "typeddict_type": null}}, "uname_result": {".class": "SymbolTableNode", "kind": "Gdef", "node": {".class": "TypeInfo", "_promote": null, "abstract_attributes": [], "bases": [{".class": "Instance", "args": ["builtins.str"], "type_ref": "builtins.tuple"}], "declared_metaclass": null, "defn": {".class": "ClassDef", "fullname": "posix.uname_result", "name": "uname_result", "type_vars": []}, "flags": ["is_named_tuple"], "fullname": "posix.uname_result", "metaclass_type": null, "metadata": {}, "module_name": "posix", "mro": ["posix.uname_result", "builtins.tuple", "builtins.object"], "names": {".class": "SymbolTable", "__annotations__": {".class": "SymbolTableNode", "kind": "Mdef", "node": {".class": "Var", "flags": ["is_initialized_in_class"], "fullname": "posix.uname_result.__annotations__", "name": "__annotations__", "type": {".class": "Instance", "args": ["builtins.str", {".class": "AnyType", "missing_import_name": null, "source_any": null, "type_of_any": 6}], "type_ref": "builtins.dict"}}}, "__doc__": {".class": "SymbolTableNode", "kind": "Mdef", "node": {".class": "Var", "flags": ["is_initialized_in_class"], "fullname": "posix.uname_result.__doc__", "name": "__doc__", "type": "builtins.str"}}, "__new__": {".class": "SymbolTableNode", "kind": "Mdef", "node": {".class": "FuncDef", "arg_kinds": [0, 0, 0, 0, 0, 0], "arg_names": ["cls", "sysname", "nodename", "release", "version", "machine"], "flags": [], "fullname": "posix.uname_result.__new__", "name": "__new__", "type": {".class": "CallableType", "arg_kinds": [0, 0, 0, 0, 0, 0], "arg_names": ["cls", "sysname", "nodename", "release", "version", "machine"], "arg_types": [{".class": "TypeType", "item": {".class": "TypeVarType", "fullname": "NT", "id": -1, "name": "NT", "upper_bound": {".class": "TupleType", "fallback": {".class": "Instance", "args": ["builtins.str"], "type_ref": "builtins.tuple"}, "implicit": false, "items": ["builtins.str", "builtins.str", "builtins.str", "builtins.str", "builtins.str"]}, "values": [], "variance": 0}}, "builtins.str", "builtins.str", "builtins.str", "builtins.str", "builtins.str"], "bound_args": [], "def_extras": {}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "__new__ of uname_result", "ret_type": {".class": "TypeVarType", "fullname": "NT", "id": -1, "name": "NT", "upper_bound": {".class": "TupleType", "fallback": {".class": "Instance", "args": ["builtins.str"], "type_ref": "builtins.tuple"}, "implicit": false, "items": ["builtins.str", "builtins.str", "builtins.str", "builtins.str", "builtins.str"]}, "values": [], "variance": 0}, "variables": [{".class": "TypeVarDef", "fullname": "NT", "id": -1, "name": "NT", "upper_bound": {".class": "TupleType", "fallback": {".class": "Instance", "args": ["builtins.str"], "type_ref": "builtins.tuple"}, "implicit": false, "items": ["builtins.str", "builtins.str", "builtins.str", "builtins.str", "builtins.str"]}, "values": [], "variance": 0}]}}}, "_asdict": {".class": "SymbolTableNode", "kind": "Mdef", "node": {".class": "FuncDef", "arg_kinds": [0], "arg_names": ["self"], "flags": [], "fullname": "posix.uname_result._asdict", "name": "_asdict", "type": {".class": "CallableType", "arg_kinds": [0], "arg_names": ["self"], "arg_types": [{".class": "TypeVarType", "fullname": "NT", "id": -1, "name": "NT", "upper_bound": {".class": "TupleType", "fallback": {".class": "Instance", "args": ["builtins.str"], "type_ref": "builtins.tuple"}, "implicit": false, "items": ["builtins.str", "builtins.str", "builtins.str", "builtins.str", "builtins.str"]}, "values": [], "variance": 0}], "bound_args": [], "def_extras": {}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "_asdict of uname_result", "ret_type": {".class": "Instance", "args": ["builtins.str", {".class": "AnyType", "missing_import_name": null, "source_any": null, "type_of_any": 6}], "type_ref": "builtins.dict"}, "variables": [{".class": "TypeVarDef", "fullname": "NT", "id": -1, "name": "NT", "upper_bound": {".class": "TupleType", "fallback": {".class": "Instance", "args": ["builtins.str"], "type_ref": "builtins.tuple"}, "implicit": false, "items": ["builtins.str", "builtins.str", "builtins.str", "builtins.str", "builtins.str"]}, "values": [], "variance": 0}]}}}, "_field_defaults": {".class": "SymbolTableNode", "kind": "Mdef", "node": {".class": "Var", "flags": ["is_initialized_in_class"], "fullname": "posix.uname_result._field_defaults", "name": "_field_defaults", "type": {".class": "Instance", "args": ["builtins.str", {".class": "AnyType", "missing_import_name": null, "source_any": null, "type_of_any": 6}], "type_ref": "builtins.dict"}}}, "_field_types": {".class": "SymbolTableNode", "kind": "Mdef", "node": {".class": "Var", "flags": ["is_initialized_in_class"], "fullname": "posix.uname_result._field_types", "name": "_field_types", "type": {".class": "Instance", "args": ["builtins.str", {".class": "AnyType", "missing_import_name": null, "source_any": null, "type_of_any": 6}], "type_ref": "builtins.dict"}}}, "_fields": {".class": "SymbolTableNode", "kind": "Mdef", "node": {".class": "Var", "flags": ["is_initialized_in_class"], "fullname": "posix.uname_result._fields", "name": "_fields", "type": {".class": "TupleType", "fallback": {".class": "Instance", "args": [{".class": "AnyType", "missing_import_name": null, "source_any": null, "type_of_any": 6}], "type_ref": "builtins.tuple"}, "implicit": false, "items": ["builtins.str", "builtins.str", "builtins.str", "builtins.str", "builtins.str"]}}}, "_make": {".class": "SymbolTableNode", "kind": "Mdef", "node": {".class": "Decorator", "func": {".class": "FuncDef", "arg_kinds": [0, 0, 5, 5], "arg_names": ["cls", "iterable", "new", "len"], "flags": ["is_class"], "fullname": "posix.uname_result._make", "name": "_make", "type": {".class": "CallableType", "arg_kinds": [0, 0, 5, 5], "arg_names": ["cls", "iterable", "new", "len"], "arg_types": [{".class": "TypeType", "item": {".class": "TypeVarType", "fullname": "NT", "id": -1, "name": "NT", "upper_bound": {".class": "TupleType", "fallback": {".class": "Instance", "args": ["builtins.str"], "type_ref": "builtins.tuple"}, "implicit": false, "items": ["builtins.str", "builtins.str", "builtins.str", "builtins.str", "builtins.str"]}, "values": [], "variance": 0}}, {".class": "Instance", "args": [{".class": "AnyType", "missing_import_name": null, "source_any": null, "type_of_any": 6}], "type_ref": "typing.Iterable"}, {".class": "AnyType", "missing_import_name": null, "source_any": null, "type_of_any": 6}, {".class": "AnyType", "missing_import_name": null, "source_any": null, "type_of_any": 6}], "bound_args": [], "def_extras": {}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "_make of uname_result", "ret_type": {".class": "TypeVarType", "fullname": "NT", "id": -1, "name": "NT", "upper_bound": {".class": "TupleType", "fallback": {".class": "Instance", "args": ["builtins.str"], "type_ref": "builtins.tuple"}, "implicit": false, "items": ["builtins.str", "builtins.str", "builtins.str", "builtins.str", "builtins.str"]}, "values": [], "variance": 0}, "variables": [{".class": "TypeVarDef", "fullname": "NT", "id": -1, "name": "NT", "upper_bound": {".class": "TupleType", "fallback": {".class": "Instance", "args": ["builtins.str"], "type_ref": "builtins.tuple"}, "implicit": false, "items": ["builtins.str", "builtins.str", "builtins.str", "builtins.str", "builtins.str"]}, "values": [], "variance": 0}]}}, "is_overload": false, "var": {".class": "Var", "flags": ["is_classmethod"], "fullname": "posix.uname_result._make", "name": "_make", "type": {".class": "CallableType", "arg_kinds": [0, 0, 5, 5], "arg_names": ["cls", "iterable", "new", "len"], "arg_types": [{".class": "TypeType", "item": {".class": "TypeVarType", "fullname": "NT", "id": -1, "name": "NT", "upper_bound": {".class": "TupleType", "fallback": {".class": "Instance", "args": ["builtins.str"], "type_ref": "builtins.tuple"}, "implicit": false, "items": ["builtins.str", "builtins.str", "builtins.str", "builtins.str", "builtins.str"]}, "values": [], "variance": 0}}, {".class": "Instance", "args": [{".class": "AnyType", "missing_import_name": null, "source_any": null, "type_of_any": 6}], "type_ref": "typing.Iterable"}, {".class": "AnyType", "missing_import_name": null, "source_any": null, "type_of_any": 6}, {".class": "AnyType", "missing_import_name": null, "source_any": null, "type_of_any": 6}], "bound_args": [], "def_extras": {}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "_make of uname_result", "ret_type": {".class": "TypeVarType", "fullname": "NT", "id": -1, "name": "NT", "upper_bound": {".class": "TupleType", "fallback": {".class": "Instance", "args": ["builtins.str"], "type_ref": "builtins.tuple"}, "implicit": false, "items": ["builtins.str", "builtins.str", "builtins.str", "builtins.str", "builtins.str"]}, "values": [], "variance": 0}, "variables": [{".class": "TypeVarDef", "fullname": "NT", "id": -1, "name": "NT", "upper_bound": {".class": "TupleType", "fallback": {".class": "Instance", "args": ["builtins.str"], "type_ref": "builtins.tuple"}, "implicit": false, "items": ["builtins.str", "builtins.str", "builtins.str", "builtins.str", "builtins.str"]}, "values": [], "variance": 0}]}}}}, "_replace": {".class": "SymbolTableNode", "kind": "Mdef", "node": {".class": "FuncDef", "arg_kinds": [0, 5, 5, 5, 5, 5], "arg_names": ["self", "sysname", "nodename", "release", "version", "machine"], "flags": [], "fullname": "posix.uname_result._replace", "name": "_replace", "type": {".class": "CallableType", "arg_kinds": [0, 5, 5, 5, 5, 5], "arg_names": ["self", "sysname", "nodename", "release", "version", "machine"], "arg_types": [{".class": "TypeVarType", "fullname": "NT", "id": -1, "name": "NT", "upper_bound": {".class": "TupleType", "fallback": {".class": "Instance", "args": ["builtins.str"], "type_ref": "builtins.tuple"}, "implicit": false, "items": ["builtins.str", "builtins.str", "builtins.str", "builtins.str", "builtins.str"]}, "values": [], "variance": 0}, "builtins.str", "builtins.str", "builtins.str", "builtins.str", "builtins.str"], "bound_args": [], "def_extras": {}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "_replace of uname_result", "ret_type": {".class": "TypeVarType", "fullname": "NT", "id": -1, "name": "NT", "upper_bound": {".class": "TupleType", "fallback": {".class": "Instance", "args": ["builtins.str"], "type_ref": "builtins.tuple"}, "implicit": false, "items": ["builtins.str", "builtins.str", "builtins.str", "builtins.str", "builtins.str"]}, "values": [], "variance": 0}, "variables": [{".class": "TypeVarDef", "fullname": "NT", "id": -1, "name": "NT", "upper_bound": {".class": "TupleType", "fallback": {".class": "Instance", "args": ["builtins.str"], "type_ref": "builtins.tuple"}, "implicit": false, "items": ["builtins.str", "builtins.str", "builtins.str", "builtins.str", "builtins.str"]}, "values": [], "variance": 0}]}}}, "_source": {".class": "SymbolTableNode", "kind": "Mdef", "node": {".class": "Var", "flags": ["is_initialized_in_class"], "fullname": "posix.uname_result._source", "name": "_source", "type": "builtins.str"}}, "machine": {".class": "SymbolTableNode", "kind": "Mdef", "node": {".class": "Var", "flags": ["is_property"], "fullname": "posix.uname_result.machine", "name": "machine", "type": "builtins.str"}}, "nodename": {".class": "SymbolTableNode", "kind": "Mdef", "node": {".class": "Var", "flags": ["is_property"], "fullname": "posix.uname_result.nodename", "name": "nodename", "type": "builtins.str"}}, "release": {".class": "SymbolTableNode", "kind": "Mdef", "node": {".class": "Var", "flags": ["is_property"], "fullname": "posix.uname_result.release", "name": "release", "type": "builtins.str"}}, "sysname": {".class": "SymbolTableNode", "kind": "Mdef", "node": {".class": "Var", "flags": ["is_property"], "fullname": "posix.uname_result.sysname", "name": "sysname", "type": "builtins.str"}}, "version": {".class": "SymbolTableNode", "kind": "Mdef", "node": {".class": "Var", "flags": ["is_property"], "fullname": "posix.uname_result.version", "name": "version", "type": "builtins.str"}}}, "tuple_type": {".class": "TupleType", "fallback": {".class": "Instance", "args": ["builtins.str"], "type_ref": "builtins.tuple"}, "implicit": false, "items": ["builtins.str", "builtins.str", "builtins.str", "builtins.str", "builtins.str"]}, "type_vars": [], "typeddict_type": null}}, "waitid_result": {".class": "SymbolTableNode", "kind": "Gdef", "node": {".class": "TypeInfo", "_promote": null, "abstract_attributes": [], "bases": [{".class": "Instance", "args": ["builtins.int"], "type_ref": "builtins.tuple"}], "declared_metaclass": null, "defn": {".class": "ClassDef", "fullname": "posix.waitid_result", "name": "waitid_result", "type_vars": []}, "flags": ["is_named_tuple"], "fullname": "posix.waitid_result", "metaclass_type": null, "metadata": {}, "module_name": "posix", "mro": ["posix.waitid_result", "builtins.tuple", "builtins.object"], "names": {".class": "SymbolTable", "__annotations__": {".class": "SymbolTableNode", "kind": "Mdef", "node": {".class": "Var", "flags": ["is_initialized_in_class"], "fullname": "posix.waitid_result.__annotations__", "name": "__annotations__", "type": {".class": "Instance", "args": ["builtins.str", {".class": "AnyType", "missing_import_name": null, "source_any": null, "type_of_any": 6}], "type_ref": "builtins.dict"}}}, "__doc__": {".class": "SymbolTableNode", "kind": "Mdef", "node": {".class": "Var", "flags": ["is_initialized_in_class"], "fullname": "posix.waitid_result.__doc__", "name": "__doc__", "type": "builtins.str"}}, "__new__": {".class": "SymbolTableNode", "kind": "Mdef", "node": {".class": "FuncDef", "arg_kinds": [0, 0, 0, 0, 0, 0], "arg_names": ["cls", "si_pid", "si_uid", "si_signo", "si_status", "si_code"], "flags": [], "fullname": "posix.waitid_result.__new__", "name": "__new__", "type": {".class": "CallableType", "arg_kinds": [0, 0, 0, 0, 0, 0], "arg_names": ["cls", "si_pid", "si_uid", "si_signo", "si_status", "si_code"], "arg_types": [{".class": "TypeType", "item": {".class": "TypeVarType", "fullname": "NT", "id": -1, "name": "NT", "upper_bound": {".class": "TupleType", "fallback": {".class": "Instance", "args": ["builtins.int"], "type_ref": "builtins.tuple"}, "implicit": false, "items": ["builtins.int", "builtins.int", "builtins.int", "builtins.int", "builtins.int"]}, "values": [], "variance": 0}}, "builtins.int", "builtins.int", "builtins.int", "builtins.int", "builtins.int"], "bound_args": [], "def_extras": {}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "__new__ of waitid_result", "ret_type": {".class": "TypeVarType", "fullname": "NT", "id": -1, "name": "NT", "upper_bound": {".class": "TupleType", "fallback": {".class": "Instance", "args": ["builtins.int"], "type_ref": "builtins.tuple"}, "implicit": false, "items": ["builtins.int", "builtins.int", "builtins.int", "builtins.int", "builtins.int"]}, "values": [], "variance": 0}, "variables": [{".class": "TypeVarDef", "fullname": "NT", "id": -1, "name": "NT", "upper_bound": {".class": "TupleType", "fallback": {".class": "Instance", "args": ["builtins.int"], "type_ref": "builtins.tuple"}, "implicit": false, "items": ["builtins.int", "builtins.int", "builtins.int", "builtins.int", "builtins.int"]}, "values": [], "variance": 0}]}}}, "_asdict": {".class": "SymbolTableNode", "kind": "Mdef", "node": {".class": "FuncDef", "arg_kinds": [0], "arg_names": ["self"], "flags": [], "fullname": "posix.waitid_result._asdict", "name": "_asdict", "type": {".class": "CallableType", "arg_kinds": [0], "arg_names": ["self"], "arg_types": [{".class": "TypeVarType", "fullname": "NT", "id": -1, "name": "NT", "upper_bound": {".class": "TupleType", "fallback": {".class": "Instance", "args": ["builtins.int"], "type_ref": "builtins.tuple"}, "implicit": false, "items": ["builtins.int", "builtins.int", "builtins.int", "builtins.int", "builtins.int"]}, "values": [], "variance": 0}], "bound_args": [], "def_extras": {}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "_asdict of waitid_result", "ret_type": {".class": "Instance", "args": ["builtins.str", {".class": "AnyType", "missing_import_name": null, "source_any": null, "type_of_any": 6}], "type_ref": "builtins.dict"}, "variables": [{".class": "TypeVarDef", "fullname": "NT", "id": -1, "name": "NT", "upper_bound": {".class": "TupleType", "fallback": {".class": "Instance", "args": ["builtins.int"], "type_ref": "builtins.tuple"}, "implicit": false, "items": ["builtins.int", "builtins.int", "builtins.int", "builtins.int", "builtins.int"]}, "values": [], "variance": 0}]}}}, "_field_defaults": {".class": "SymbolTableNode", "kind": "Mdef", "node": {".class": "Var", "flags": ["is_initialized_in_class"], "fullname": "posix.waitid_result._field_defaults", "name": "_field_defaults", "type": {".class": "Instance", "args": ["builtins.str", {".class": "AnyType", "missing_import_name": null, "source_any": null, "type_of_any": 6}], "type_ref": "builtins.dict"}}}, "_field_types": {".class": "SymbolTableNode", "kind": "Mdef", "node": {".class": "Var", "flags": ["is_initialized_in_class"], "fullname": "posix.waitid_result._field_types", "name": "_field_types", "type": {".class": "Instance", "args": ["builtins.str", {".class": "AnyType", "missing_import_name": null, "source_any": null, "type_of_any": 6}], "type_ref": "builtins.dict"}}}, "_fields": {".class": "SymbolTableNode", "kind": "Mdef", "node": {".class": "Var", "flags": ["is_initialized_in_class"], "fullname": "posix.waitid_result._fields", "name": "_fields", "type": {".class": "TupleType", "fallback": {".class": "Instance", "args": [{".class": "AnyType", "missing_import_name": null, "source_any": null, "type_of_any": 6}], "type_ref": "builtins.tuple"}, "implicit": false, "items": ["builtins.str", "builtins.str", "builtins.str", "builtins.str", "builtins.str"]}}}, "_make": {".class": "SymbolTableNode", "kind": "Mdef", "node": {".class": "Decorator", "func": {".class": "FuncDef", "arg_kinds": [0, 0, 5, 5], "arg_names": ["cls", "iterable", "new", "len"], "flags": ["is_class"], "fullname": "posix.waitid_result._make", "name": "_make", "type": {".class": "CallableType", "arg_kinds": [0, 0, 5, 5], "arg_names": ["cls", "iterable", "new", "len"], "arg_types": [{".class": "TypeType", "item": {".class": "TypeVarType", "fullname": "NT", "id": -1, "name": "NT", "upper_bound": {".class": "TupleType", "fallback": {".class": "Instance", "args": ["builtins.int"], "type_ref": "builtins.tuple"}, "implicit": false, "items": ["builtins.int", "builtins.int", "builtins.int", "builtins.int", "builtins.int"]}, "values": [], "variance": 0}}, {".class": "Instance", "args": [{".class": "AnyType", "missing_import_name": null, "source_any": null, "type_of_any": 6}], "type_ref": "typing.Iterable"}, {".class": "AnyType", "missing_import_name": null, "source_any": null, "type_of_any": 6}, {".class": "AnyType", "missing_import_name": null, "source_any": null, "type_of_any": 6}], "bound_args": [], "def_extras": {}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "_make of waitid_result", "ret_type": {".class": "TypeVarType", "fullname": "NT", "id": -1, "name": "NT", "upper_bound": {".class": "TupleType", "fallback": {".class": "Instance", "args": ["builtins.int"], "type_ref": "builtins.tuple"}, "implicit": false, "items": ["builtins.int", "builtins.int", "builtins.int", "builtins.int", "builtins.int"]}, "values": [], "variance": 0}, "variables": [{".class": "TypeVarDef", "fullname": "NT", "id": -1, "name": "NT", "upper_bound": {".class": "TupleType", "fallback": {".class": "Instance", "args": ["builtins.int"], "type_ref": "builtins.tuple"}, "implicit": false, "items": ["builtins.int", "builtins.int", "builtins.int", "builtins.int", "builtins.int"]}, "values": [], "variance": 0}]}}, "is_overload": false, "var": {".class": "Var", "flags": ["is_classmethod"], "fullname": "posix.waitid_result._make", "name": "_make", "type": {".class": "CallableType", "arg_kinds": [0, 0, 5, 5], "arg_names": ["cls", "iterable", "new", "len"], "arg_types": [{".class": "TypeType", "item": {".class": "TypeVarType", "fullname": "NT", "id": -1, "name": "NT", "upper_bound": {".class": "TupleType", "fallback": {".class": "Instance", "args": ["builtins.int"], "type_ref": "builtins.tuple"}, "implicit": false, "items": ["builtins.int", "builtins.int", "builtins.int", "builtins.int", "builtins.int"]}, "values": [], "variance": 0}}, {".class": "Instance", "args": [{".class": "AnyType", "missing_import_name": null, "source_any": null, "type_of_any": 6}], "type_ref": "typing.Iterable"}, {".class": "AnyType", "missing_import_name": null, "source_any": null, "type_of_any": 6}, {".class": "AnyType", "missing_import_name": null, "source_any": null, "type_of_any": 6}], "bound_args": [], "def_extras": {}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "_make of waitid_result", "ret_type": {".class": "TypeVarType", "fullname": "NT", "id": -1, "name": "NT", "upper_bound": {".class": "TupleType", "fallback": {".class": "Instance", "args": ["builtins.int"], "type_ref": "builtins.tuple"}, "implicit": false, "items": ["builtins.int", "builtins.int", "builtins.int", "builtins.int", "builtins.int"]}, "values": [], "variance": 0}, "variables": [{".class": "TypeVarDef", "fullname": "NT", "id": -1, "name": "NT", "upper_bound": {".class": "TupleType", "fallback": {".class": "Instance", "args": ["builtins.int"], "type_ref": "builtins.tuple"}, "implicit": false, "items": ["builtins.int", "builtins.int", "builtins.int", "builtins.int", "builtins.int"]}, "values": [], "variance": 0}]}}}}, "_replace": {".class": "SymbolTableNode", "kind": "Mdef", "node": {".class": "FuncDef", "arg_kinds": [0, 5, 5, 5, 5, 5], "arg_names": ["self", "si_pid", "si_uid", "si_signo", "si_status", "si_code"], "flags": [], "fullname": "posix.waitid_result._replace", "name": "_replace", "type": {".class": "CallableType", "arg_kinds": [0, 5, 5, 5, 5, 5], "arg_names": ["self", "si_pid", "si_uid", "si_signo", "si_status", "si_code"], "arg_types": [{".class": "TypeVarType", "fullname": "NT", "id": -1, "name": "NT", "upper_bound": {".class": "TupleType", "fallback": {".class": "Instance", "args": ["builtins.int"], "type_ref": "builtins.tuple"}, "implicit": false, "items": ["builtins.int", "builtins.int", "builtins.int", "builtins.int", "builtins.int"]}, "values": [], "variance": 0}, "builtins.int", "builtins.int", "builtins.int", "builtins.int", "builtins.int"], "bound_args": [], "def_extras": {}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "_replace of waitid_result", "ret_type": {".class": "TypeVarType", "fullname": "NT", "id": -1, "name": "NT", "upper_bound": {".class": "TupleType", "fallback": {".class": "Instance", "args": ["builtins.int"], "type_ref": "builtins.tuple"}, "implicit": false, "items": ["builtins.int", "builtins.int", "builtins.int", "builtins.int", "builtins.int"]}, "values": [], "variance": 0}, "variables": [{".class": "TypeVarDef", "fullname": "NT", "id": -1, "name": "NT", "upper_bound": {".class": "TupleType", "fallback": {".class": "Instance", "args": ["builtins.int"], "type_ref": "builtins.tuple"}, "implicit": false, "items": ["builtins.int", "builtins.int", "builtins.int", "builtins.int", "builtins.int"]}, "values": [], "variance": 0}]}}}, "_source": {".class": "SymbolTableNode", "kind": "Mdef", "node": {".class": "Var", "flags": ["is_initialized_in_class"], "fullname": "posix.waitid_result._source", "name": "_source", "type": "builtins.str"}}, "si_code": {".class": "SymbolTableNode", "kind": "Mdef", "node": {".class": "Var", "flags": ["is_property"], "fullname": "posix.waitid_result.si_code", "name": "si_code", "type": "builtins.int"}}, "si_pid": {".class": "SymbolTableNode", "kind": "Mdef", "node": {".class": "Var", "flags": ["is_property"], "fullname": "posix.waitid_result.si_pid", "name": "si_pid", "type": "builtins.int"}}, "si_signo": {".class": "SymbolTableNode", "kind": "Mdef", "node": {".class": "Var", "flags": ["is_property"], "fullname": "posix.waitid_result.si_signo", "name": "si_signo", "type": "builtins.int"}}, "si_status": {".class": "SymbolTableNode", "kind": "Mdef", "node": {".class": "Var", "flags": ["is_property"], "fullname": "posix.waitid_result.si_status", "name": "si_status", "type": "builtins.int"}}, "si_uid": {".class": "SymbolTableNode", "kind": "Mdef", "node": {".class": "Var", "flags": ["is_property"], "fullname": "posix.waitid_result.si_uid", "name": "si_uid", "type": "builtins.int"}}}, "tuple_type": {".class": "TupleType", "fallback": {".class": "Instance", "args": ["builtins.int"], "type_ref": "builtins.tuple"}, "implicit": false, "items": ["builtins.int", "builtins.int", "builtins.int", "builtins.int", "builtins.int"]}, "type_vars": [], "typeddict_type": null}}}, "path": "/usr/lib/python3/dist-packages/mypy/typeshed/stdlib/3/posix.pyi"}
\ No newline at end of file
diff --git a/Postgres/StressTests/.mypy_cache/3.7/posix.meta.json b/Postgres/StressTests/.mypy_cache/3.7/posix.meta.json
deleted file mode 100644
index edcab69..0000000
--- a/Postgres/StressTests/.mypy_cache/3.7/posix.meta.json
+++ /dev/null
@@ -1 +0,0 @@
-{"child_modules": [], "data_mtime": 1553688971, "dep_lines": [5, 6, 8, 1, 1], "dep_prios": [10, 5, 5, 5, 30], "dependencies": ["sys", "typing", "os", "builtins", "abc"], "hash": "af8fd8737899ef190f0acb1ff376fbc2", "id": "posix", "ignore_all": true, "interface_hash": "c395fa14d56d83c0431ae35212f89bbf", "mtime": 1549659920, "options": {"allow_redefinition": false, "allow_untyped_globals": false, "always_false": [], "always_true": [], "bazel": false, "check_untyped_defs": false, "disallow_any_decorated": false, "disallow_any_explicit": false, "disallow_any_expr": false, "disallow_any_generics": false, "disallow_any_unimported": false, "disallow_incomplete_defs": false, "disallow_subclassing_any": false, "disallow_untyped_calls": false, "disallow_untyped_decorators": false, "disallow_untyped_defs": false, "follow_imports": "normal", "follow_imports_for_stubs": false, "ignore_errors": false, "ignore_missing_imports": false, "local_partial_types": false, "mypyc": false, "new_semantic_analyzer": false, "no_implicit_optional": false, "platform": "linux", "plugins": [], "show_none_errors": true, "strict_optional": true, "strict_optional_whitelist": null, "warn_no_return": true, "warn_return_any": false, "warn_unused_ignores": false}, "path": "/usr/lib/python3/dist-packages/mypy/typeshed/stdlib/3/posix.pyi", "size": 1798, "suppressed": [], "version_id": "0.670"}
\ No newline at end of file
diff --git a/Postgres/StressTests/.mypy_cache/3.7/sys.data.json b/Postgres/StressTests/.mypy_cache/3.7/sys.data.json
deleted file mode 100644
index 3c85ef9..0000000
--- a/Postgres/StressTests/.mypy_cache/3.7/sys.data.json
+++ /dev/null
@@ -1 +0,0 @@
-{".class": "MypyFile", "_fullname": "sys", "is_partial_stub_package": false, "is_stub": true, "names": {".class": "SymbolTable", "Any": {".class": "SymbolTableNode", "cross_ref": "typing.Any", "kind": "Gdef", "module_hidden": true, "module_public": false}, "Callable": {".class": "SymbolTableNode", "cross_ref": "typing.Callable", "kind": "Gdef", "module_hidden": true, "module_public": false}, "Dict": {".class": "SymbolTableNode", "cross_ref": "typing.Dict", "kind": "Gdef", "module_hidden": true, "module_public": false}, "FrameType": {".class": "SymbolTableNode", "cross_ref": "types.FrameType", "kind": "Gdef", "module_hidden": true, "module_public": false}, "List": {".class": "SymbolTableNode", "cross_ref": "typing.List", "kind": "Gdef", "module_hidden": true, "module_public": false}, "MetaPathFinder": {".class": "SymbolTableNode", "cross_ref": "importlib.abc.MetaPathFinder", "kind": "Gdef", "module_hidden": true, "module_public": false}, "ModuleType": {".class": "SymbolTableNode", "cross_ref": "_importlib_modulespec.ModuleType", "kind": "Gdef", "module_hidden": true, "module_public": false}, "NoReturn": {".class": "SymbolTableNode", "cross_ref": "typing.NoReturn", "kind": "Gdef", "module_hidden": true, "module_public": false}, "Optional": {".class": "SymbolTableNode", "cross_ref": "typing.Optional", "kind": "Gdef", "module_hidden": true, "module_public": false}, "Sequence": {".class": "SymbolTableNode", "cross_ref": "typing.Sequence", "kind": "Gdef", "module_hidden": true, "module_public": false}, "TextIO": {".class": "SymbolTableNode", "cross_ref": "typing.TextIO", "kind": "Gdef", "module_hidden": true, "module_public": false}, "TracebackType": {".class": "SymbolTableNode", "cross_ref": "types.TracebackType", "kind": "Gdef", "module_hidden": true, "module_public": false}, "Tuple": {".class": "SymbolTableNode", "cross_ref": "typing.Tuple", "kind": "Gdef", "module_hidden": true, "module_public": false}, "Type": {".class": "SymbolTableNode", "cross_ref": "typing.Type", "kind": "Gdef", "module_hidden": true, "module_public": false}, "TypeVar": {".class": "SymbolTableNode", "cross_ref": "typing.TypeVar", "kind": "Gdef", "module_hidden": true, "module_public": false}, "Union": {".class": "SymbolTableNode", "cross_ref": "typing.Union", "kind": "Gdef", "module_hidden": true, "module_public": false}, "_ExcInfo": {".class": "SymbolTableNode", "kind": "Gdef", "node": {".class": "TypeAlias", "alias_tvars": [], "column": 0, "fullname": "sys._ExcInfo", "line": 18, "no_args": false, "normalized": false, "target": {".class": "TupleType", "fallback": {".class": "Instance", "args": [{".class": "AnyType", "missing_import_name": null, "source_any": null, "type_of_any": 6}], "type_ref": "builtins.tuple"}, "implicit": false, "items": [{".class": "TypeType", "item": "builtins.BaseException"}, "builtins.BaseException", "types.TracebackType"]}}}, "_OptExcInfo": {".class": "SymbolTableNode", "kind": "Gdef", "node": {".class": "TypeAlias", "alias_tvars": [], "column": 0, "fullname": "sys._OptExcInfo", "line": 19, "no_args": false, "normalized": false, "target": {".class": "TupleType", "fallback": {".class": "Instance", "args": [{".class": "AnyType", "missing_import_name": null, "source_any": null, "type_of_any": 6}], "type_ref": "builtins.tuple"}, "implicit": false, "items": [{".class": "UnionType", "items": [{".class": "TypeType", "item": "builtins.BaseException"}, {".class": "NoneTyp"}]}, {".class": "UnionType", "items": ["builtins.BaseException", {".class": "NoneTyp"}]}, {".class": "UnionType", "items": ["types.TracebackType", {".class": "NoneTyp"}]}]}}}, "_ProfileFunc": {".class": "SymbolTableNode", "kind": "Gdef", "node": {".class": "TypeAlias", "alias_tvars": [], "column": 0, "fullname": "sys._ProfileFunc", "line": 160, "no_args": false, "normalized": false, "target": {".class": "CallableType", "arg_kinds": [0, 0, 0], "arg_names": [null, null, null], "arg_types": ["types.FrameType", "builtins.str", {".class": "AnyType", "missing_import_name": null, "source_any": null, "type_of_any": 6}], "bound_args": [], "def_extras": {}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": null, "ret_type": {".class": "AnyType", "missing_import_name": null, "source_any": null, "type_of_any": 6}, "variables": []}}}, "_T": {".class": "SymbolTableNode", "kind": "Gdef", "node": {".class": "TypeVarExpr", "fullname": "sys._T", "name": "_T", "upper_bound": "builtins.object", "values": [], "variance": 0}}, "_TraceFunc": {".class": "SymbolTableNode", "kind": "Gdef", "node": {".class": "TypeAlias", "alias_tvars": [], "column": 0, "fullname": "sys._TraceFunc", "line": 164, "no_args": false, "normalized": false, "target": {".class": "CallableType", "arg_kinds": [0, 0, 0], "arg_names": [null, null, null], "arg_types": ["types.FrameType", "builtins.str", {".class": "AnyType", "missing_import_name": null, "source_any": null, "type_of_any": 6}], "bound_args": [], "def_extras": {}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": null, "ret_type": {".class": "UnionType", "items": [{".class": "CallableType", "arg_kinds": [0, 0, 0], "arg_names": [null, null, null], "arg_types": ["types.FrameType", "builtins.str", {".class": "AnyType", "missing_import_name": null, "source_any": null, "type_of_any": 6}], "bound_args": [], "def_extras": {}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": null, "ret_type": {".class": "AnyType", "missing_import_name": null, "source_any": null, "type_of_any": 6}, "variables": []}, {".class": "NoneTyp"}]}, "variables": []}}}, "_WinVersion": {".class": "SymbolTableNode", "kind": "Gdef", "node": {".class": "TypeInfo", "_promote": null, "abstract_attributes": [], "bases": [{".class": "Instance", "args": [{".class": "AnyType", "missing_import_name": null, "source_any": null, "type_of_any": 6}], "type_ref": "builtins.tuple"}], "declared_metaclass": null, "defn": {".class": "ClassDef", "fullname": "sys._WinVersion", "name": "_WinVersion", "type_vars": []}, "flags": [], "fullname": "sys._WinVersion", "metaclass_type": null, "metadata": {}, "module_name": "sys", "mro": ["sys._WinVersion", "builtins.tuple", "typing.Sequence", "typing.Collection", "typing.Iterable", "typing.Container", "typing.Reversible", "builtins.object"], "names": {".class": "SymbolTable", "build": {".class": "SymbolTableNode", "kind": "Mdef", "node": {".class": "Var", "flags": ["is_initialized_in_class"], "fullname": "sys._WinVersion.build", "name": "build", "type": "builtins.int"}}, "major": {".class": "SymbolTableNode", "kind": "Mdef", "node": {".class": "Var", "flags": ["is_initialized_in_class"], "fullname": "sys._WinVersion.major", "name": "major", "type": "builtins.int"}}, "minor": {".class": "SymbolTableNode", "kind": "Mdef", "node": {".class": "Var", "flags": ["is_initialized_in_class"], "fullname": "sys._WinVersion.minor", "name": "minor", "type": "builtins.int"}}, "platform": {".class": "SymbolTableNode", "kind": "Mdef", "node": {".class": "Var", "flags": ["is_initialized_in_class"], "fullname": "sys._WinVersion.platform", "name": "platform", "type": "builtins.int"}}, "platform_version": {".class": "SymbolTableNode", "kind": "Mdef", "node": {".class": "Var", "flags": ["is_initialized_in_class"], "fullname": "sys._WinVersion.platform_version", "name": "platform_version", "type": {".class": "TupleType", "fallback": {".class": "Instance", "args": [{".class": "AnyType", "missing_import_name": null, "source_any": null, "type_of_any": 6}], "type_ref": "builtins.tuple"}, "implicit": false, "items": ["builtins.int", "builtins.int", "builtins.int"]}}}, "product_type": {".class": "SymbolTableNode", "kind": "Mdef", "node": {".class": "Var", "flags": ["is_initialized_in_class"], "fullname": "sys._WinVersion.product_type", "name": "product_type", "type": "builtins.int"}}, "service_pack": {".class": "SymbolTableNode", "kind": "Mdef", "node": {".class": "Var", "flags": ["is_initialized_in_class"], "fullname": "sys._WinVersion.service_pack", "name": "service_pack", "type": "builtins.str"}}, "service_pack_major": {".class": "SymbolTableNode", "kind": "Mdef", "node": {".class": "Var", "flags": ["is_initialized_in_class"], "fullname": "sys._WinVersion.service_pack_major", "name": "service_pack_major", "type": "builtins.int"}}, "service_pack_minor": {".class": "SymbolTableNode", "kind": "Mdef", "node": {".class": "Var", "flags": ["is_initialized_in_class"], "fullname": "sys._WinVersion.service_pack_minor", "name": "service_pack_minor", "type": "builtins.int"}}, "suite_mast": {".class": "SymbolTableNode", "kind": "Mdef", "node": {".class": "Var", "flags": ["is_initialized_in_class"], "fullname": "sys._WinVersion.suite_mast", "name": "suite_mast", "type": "builtins.int"}}}, "tuple_type": {".class": "TupleType", "fallback": {".class": "Instance", "args": [{".class": "AnyType", "missing_import_name": null, "source_any": null, "type_of_any": 6}], "type_ref": "builtins.tuple"}, "implicit": false, "items": ["builtins.int", "builtins.int", "builtins.int", "builtins.int", "builtins.str", "builtins.int", "builtins.int", "builtins.int", "builtins.int", {".class": "TupleType", "fallback": {".class": "Instance", "args": [{".class": "AnyType", "missing_import_name": null, "source_any": null, "type_of_any": 6}], "type_ref": "builtins.tuple"}, "implicit": false, "items": ["builtins.int", "builtins.int", "builtins.int"]}]}, "type_vars": [], "typeddict_type": null}}, "__displayhook__": {".class": "SymbolTableNode", "kind": "Gdef", "node": {".class": "Var", "flags": [], "fullname": "sys.__displayhook__", "name": "__displayhook__", "type": {".class": "AnyType", "missing_import_name": null, "source_any": null, "type_of_any": 2}}}, "__doc__": {".class": "SymbolTableNode", "kind": "Gdef", "node": {".class": "Var", "flags": [], "fullname": "sys.__doc__", "name": "__doc__", "type": "builtins.str"}}, "__excepthook__": {".class": "SymbolTableNode", "kind": "Gdef", "node": {".class": "Var", "flags": [], "fullname": "sys.__excepthook__", "name": "__excepthook__", "type": {".class": "AnyType", "missing_import_name": null, "source_any": null, "type_of_any": 2}}}, "__file__": {".class": "SymbolTableNode", "kind": "Gdef", "node": {".class": "Var", "flags": [], "fullname": "sys.__file__", "name": "__file__", "type": "builtins.str"}}, "__name__": {".class": "SymbolTableNode", "kind": "Gdef", "node": {".class": "Var", "flags": [], "fullname": "sys.__name__", "name": "__name__", "type": "builtins.str"}}, "__package__": {".class": "SymbolTableNode", "kind": "Gdef", "node": {".class": "Var", "flags": [], "fullname": "sys.__package__", "name": "__package__", "type": "builtins.str"}}, "__stderr__": {".class": "SymbolTableNode", "kind": "Gdef", "node": {".class": "Var", "flags": [], "fullname": "sys.__stderr__", "name": "__stderr__", "type": "typing.TextIO"}}, "__stdin__": {".class": "SymbolTableNode", "kind": "Gdef", "node": {".class": "Var", "flags": [], "fullname": "sys.__stdin__", "name": "__stdin__", "type": "typing.TextIO"}}, "__stdout__": {".class": "SymbolTableNode", "kind": "Gdef", "node": {".class": "Var", "flags": [], "fullname": "sys.__stdout__", "name": "__stdout__", "type": "typing.TextIO"}}, "_clear_type_cache": {".class": "SymbolTableNode", "kind": "Gdef", "node": {".class": "FuncDef", "arg_kinds": [], "arg_names": [], "flags": [], "fullname": "sys._clear_type_cache", "name": "_clear_type_cache", "type": {".class": "CallableType", "arg_kinds": [], "arg_names": [], "arg_types": [], "bound_args": [], "def_extras": {"first_arg": null}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "_clear_type_cache", "ret_type": {".class": "NoneTyp"}, "variables": []}}}, "_current_frames": {".class": "SymbolTableNode", "kind": "Gdef", "node": {".class": "FuncDef", "arg_kinds": [], "arg_names": [], "flags": [], "fullname": "sys._current_frames", "name": "_current_frames", "type": {".class": "CallableType", "arg_kinds": [], "arg_names": [], "arg_types": [], "bound_args": [], "def_extras": {"first_arg": null}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "_current_frames", "ret_type": {".class": "Instance", "args": ["builtins.int", {".class": "AnyType", "missing_import_name": null, "source_any": null, "type_of_any": 2}], "type_ref": "builtins.dict"}, "variables": []}}}, "_flags": {".class": "SymbolTableNode", "kind": "Gdef", "node": {".class": "TypeInfo", "_promote": null, "abstract_attributes": [], "bases": ["builtins.object"], "declared_metaclass": null, "defn": {".class": "ClassDef", "fullname": "sys._flags", "name": "_flags", "type_vars": []}, "flags": [], "fullname": "sys._flags", "metaclass_type": null, "metadata": {}, "module_name": "sys", "mro": ["sys._flags", "builtins.object"], "names": {".class": "SymbolTable", "bytes_warning": {".class": "SymbolTableNode", "kind": "Mdef", "node": {".class": "Var", "flags": ["is_initialized_in_class"], "fullname": "sys._flags.bytes_warning", "name": "bytes_warning", "type": "builtins.int"}}, "debug": {".class": "SymbolTableNode", "kind": "Mdef", "node": {".class": "Var", "flags": ["is_initialized_in_class"], "fullname": "sys._flags.debug", "name": "debug", "type": "builtins.int"}}, "dev_mode": {".class": "SymbolTableNode", "kind": "Mdef", "node": {".class": "Var", "flags": ["is_initialized_in_class"], "fullname": "sys._flags.dev_mode", "name": "dev_mode", "type": "builtins.int"}}, "division_warning": {".class": "SymbolTableNode", "kind": "Mdef", "node": {".class": "Var", "flags": ["is_initialized_in_class"], "fullname": "sys._flags.division_warning", "name": "division_warning", "type": "builtins.int"}}, "dont_write_bytecode": {".class": "SymbolTableNode", "kind": "Mdef", "node": {".class": "Var", "flags": ["is_initialized_in_class"], "fullname": "sys._flags.dont_write_bytecode", "name": "dont_write_bytecode", "type": "builtins.int"}}, "hash_randomization": {".class": "SymbolTableNode", "kind": "Mdef", "node": {".class": "Var", "flags": ["is_initialized_in_class"], "fullname": "sys._flags.hash_randomization", "name": "hash_randomization", "type": "builtins.int"}}, "ignore_environment": {".class": "SymbolTableNode", "kind": "Mdef", "node": {".class": "Var", "flags": ["is_initialized_in_class"], "fullname": "sys._flags.ignore_environment", "name": "ignore_environment", "type": "builtins.int"}}, "inspect": {".class": "SymbolTableNode", "kind": "Mdef", "node": {".class": "Var", "flags": ["is_initialized_in_class"], "fullname": "sys._flags.inspect", "name": "inspect", "type": "builtins.int"}}, "interactive": {".class": "SymbolTableNode", "kind": "Mdef", "node": {".class": "Var", "flags": ["is_initialized_in_class"], "fullname": "sys._flags.interactive", "name": "interactive", "type": "builtins.int"}}, "no_site": {".class": "SymbolTableNode", "kind": "Mdef", "node": {".class": "Var", "flags": ["is_initialized_in_class"], "fullname": "sys._flags.no_site", "name": "no_site", "type": "builtins.int"}}, "no_user_site": {".class": "SymbolTableNode", "kind": "Mdef", "node": {".class": "Var", "flags": ["is_initialized_in_class"], "fullname": "sys._flags.no_user_site", "name": "no_user_site", "type": "builtins.int"}}, "optimize": {".class": "SymbolTableNode", "kind": "Mdef", "node": {".class": "Var", "flags": ["is_initialized_in_class"], "fullname": "sys._flags.optimize", "name": "optimize", "type": "builtins.int"}}, "quiet": {".class": "SymbolTableNode", "kind": "Mdef", "node": {".class": "Var", "flags": ["is_initialized_in_class"], "fullname": "sys._flags.quiet", "name": "quiet", "type": "builtins.int"}}, "verbose": {".class": "SymbolTableNode", "kind": "Mdef", "node": {".class": "Var", "flags": ["is_initialized_in_class"], "fullname": "sys._flags.verbose", "name": "verbose", "type": "builtins.int"}}}, "tuple_type": null, "type_vars": [], "typeddict_type": null}}, "_float_info": {".class": "SymbolTableNode", "kind": "Gdef", "node": {".class": "TypeInfo", "_promote": null, "abstract_attributes": [], "bases": ["builtins.object"], "declared_metaclass": null, "defn": {".class": "ClassDef", "fullname": "sys._float_info", "name": "_float_info", "type_vars": []}, "flags": [], "fullname": "sys._float_info", "metaclass_type": null, "metadata": {}, "module_name": "sys", "mro": ["sys._float_info", "builtins.object"], "names": {".class": "SymbolTable", "dig": {".class": "SymbolTableNode", "kind": "Mdef", "node": {".class": "Var", "flags": ["is_initialized_in_class"], "fullname": "sys._float_info.dig", "name": "dig", "type": "builtins.int"}}, "epsilon": {".class": "SymbolTableNode", "kind": "Mdef", "node": {".class": "Var", "flags": ["is_initialized_in_class"], "fullname": "sys._float_info.epsilon", "name": "epsilon", "type": "builtins.float"}}, "mant_dig": {".class": "SymbolTableNode", "kind": "Mdef", "node": {".class": "Var", "flags": ["is_initialized_in_class"], "fullname": "sys._float_info.mant_dig", "name": "mant_dig", "type": "builtins.int"}}, "max": {".class": "SymbolTableNode", "kind": "Mdef", "node": {".class": "Var", "flags": ["is_initialized_in_class"], "fullname": "sys._float_info.max", "name": "max", "type": "builtins.float"}}, "max_10_exp": {".class": "SymbolTableNode", "kind": "Mdef", "node": {".class": "Var", "flags": ["is_initialized_in_class"], "fullname": "sys._float_info.max_10_exp", "name": "max_10_exp", "type": "builtins.int"}}, "max_exp": {".class": "SymbolTableNode", "kind": "Mdef", "node": {".class": "Var", "flags": ["is_initialized_in_class"], "fullname": "sys._float_info.max_exp", "name": "max_exp", "type": "builtins.int"}}, "min": {".class": "SymbolTableNode", "kind": "Mdef", "node": {".class": "Var", "flags": ["is_initialized_in_class"], "fullname": "sys._float_info.min", "name": "min", "type": "builtins.float"}}, "min_10_exp": {".class": "SymbolTableNode", "kind": "Mdef", "node": {".class": "Var", "flags": ["is_initialized_in_class"], "fullname": "sys._float_info.min_10_exp", "name": "min_10_exp", "type": "builtins.int"}}, "min_exp": {".class": "SymbolTableNode", "kind": "Mdef", "node": {".class": "Var", "flags": ["is_initialized_in_class"], "fullname": "sys._float_info.min_exp", "name": "min_exp", "type": "builtins.int"}}, "radix": {".class": "SymbolTableNode", "kind": "Mdef", "node": {".class": "Var", "flags": ["is_initialized_in_class"], "fullname": "sys._float_info.radix", "name": "radix", "type": "builtins.int"}}, "rounds": {".class": "SymbolTableNode", "kind": "Mdef", "node": {".class": "Var", "flags": ["is_initialized_in_class"], "fullname": "sys._float_info.rounds", "name": "rounds", "type": "builtins.int"}}}, "tuple_type": null, "type_vars": [], "typeddict_type": null}}, "_getframe": {".class": "SymbolTableNode", "kind": "Gdef", "node": {".class": "OverloadedFuncDef", "flags": [], "fullname": "sys._getframe", "impl": null, "items": [{".class": "Decorator", "func": {".class": "FuncDef", "arg_kinds": [], "arg_names": [], "flags": ["is_overload", "is_decorated"], "fullname": "sys._getframe", "name": "_getframe", "type": {".class": "CallableType", "arg_kinds": [], "arg_names": [], "arg_types": [], "bound_args": [], "def_extras": {"first_arg": null}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "_getframe", "ret_type": "types.FrameType", "variables": []}}, "is_overload": true, "var": {".class": "Var", "flags": [], "fullname": null, "name": "_getframe", "type": null}}, {".class": "Decorator", "func": {".class": "FuncDef", "arg_kinds": [0], "arg_names": ["depth"], "flags": ["is_overload", "is_decorated"], "fullname": "sys._getframe", "name": "_getframe", "type": {".class": "CallableType", "arg_kinds": [0], "arg_names": ["depth"], "arg_types": ["builtins.int"], "bound_args": [], "def_extras": {"first_arg": null}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "_getframe", "ret_type": "types.FrameType", "variables": []}}, "is_overload": true, "var": {".class": "Var", "flags": [], "fullname": null, "name": "_getframe", "type": null}}], "type": {".class": "Overloaded", "items": [{".class": "CallableType", "arg_kinds": [], "arg_names": [], "arg_types": [], "bound_args": [], "def_extras": {"first_arg": null}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "_getframe", "ret_type": "types.FrameType", "variables": []}, {".class": "CallableType", "arg_kinds": [0], "arg_names": ["depth"], "arg_types": ["builtins.int"], "bound_args": [], "def_extras": {"first_arg": null}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "_getframe", "ret_type": "types.FrameType", "variables": []}]}}}, "_hash_info": {".class": "SymbolTableNode", "kind": "Gdef", "node": {".class": "TypeInfo", "_promote": null, "abstract_attributes": [], "bases": ["builtins.object"], "declared_metaclass": null, "defn": {".class": "ClassDef", "fullname": "sys._hash_info", "name": "_hash_info", "type_vars": []}, "flags": [], "fullname": "sys._hash_info", "metaclass_type": null, "metadata": {}, "module_name": "sys", "mro": ["sys._hash_info", "builtins.object"], "names": {".class": "SymbolTable", "imag": {".class": "SymbolTableNode", "kind": "Mdef", "node": {".class": "Var", "flags": ["is_initialized_in_class"], "fullname": "sys._hash_info.imag", "name": "imag", "type": "builtins.int"}}, "inf": {".class": "SymbolTableNode", "kind": "Mdef", "node": {".class": "Var", "flags": ["is_initialized_in_class"], "fullname": "sys._hash_info.inf", "name": "inf", "type": "builtins.int"}}, "modulus": {".class": "SymbolTableNode", "kind": "Mdef", "node": {".class": "Var", "flags": ["is_initialized_in_class"], "fullname": "sys._hash_info.modulus", "name": "modulus", "type": "builtins.int"}}, "nan": {".class": "SymbolTableNode", "kind": "Mdef", "node": {".class": "Var", "flags": ["is_initialized_in_class"], "fullname": "sys._hash_info.nan", "name": "nan", "type": "builtins.int"}}, "width": {".class": "SymbolTableNode", "kind": "Mdef", "node": {".class": "Var", "flags": ["is_initialized_in_class"], "fullname": "sys._hash_info.width", "name": "width", "type": "builtins.int"}}}, "tuple_type": null, "type_vars": [], "typeddict_type": null}}, "_implementation": {".class": "SymbolTableNode", "kind": "Gdef", "node": {".class": "TypeInfo", "_promote": null, "abstract_attributes": [], "bases": ["builtins.object"], "declared_metaclass": null, "defn": {".class": "ClassDef", "fullname": "sys._implementation", "name": "_implementation", "type_vars": []}, "flags": [], "fullname": "sys._implementation", "metaclass_type": null, "metadata": {}, "module_name": "sys", "mro": ["sys._implementation", "builtins.object"], "names": {".class": "SymbolTable", "cache_tag": {".class": "SymbolTableNode", "kind": "Mdef", "node": {".class": "Var", "flags": ["is_initialized_in_class"], "fullname": "sys._implementation.cache_tag", "name": "cache_tag", "type": "builtins.str"}}, "hexversion": {".class": "SymbolTableNode", "kind": "Mdef", "node": {".class": "Var", "flags": ["is_initialized_in_class"], "fullname": "sys._implementation.hexversion", "name": "hexversion", "type": "builtins.int"}}, "name": {".class": "SymbolTableNode", "kind": "Mdef", "node": {".class": "Var", "flags": ["is_initialized_in_class"], "fullname": "sys._implementation.name", "name": "name", "type": "builtins.str"}}, "version": {".class": "SymbolTableNode", "kind": "Mdef", "node": {".class": "Var", "flags": ["is_initialized_in_class"], "fullname": "sys._implementation.version", "name": "version", "type": {".class": "TupleType", "fallback": "sys._version_info", "implicit": false, "items": ["builtins.int", "builtins.int", "builtins.int", "builtins.str", "builtins.int"]}}}}, "tuple_type": null, "type_vars": [], "typeddict_type": null}}, "_int_info": {".class": "SymbolTableNode", "kind": "Gdef", "node": {".class": "TypeInfo", "_promote": null, "abstract_attributes": [], "bases": ["builtins.object"], "declared_metaclass": null, "defn": {".class": "ClassDef", "fullname": "sys._int_info", "name": "_int_info", "type_vars": []}, "flags": [], "fullname": "sys._int_info", "metaclass_type": null, "metadata": {}, "module_name": "sys", "mro": ["sys._int_info", "builtins.object"], "names": {".class": "SymbolTable", "bits_per_digit": {".class": "SymbolTableNode", "kind": "Mdef", "node": {".class": "Var", "flags": ["is_initialized_in_class"], "fullname": "sys._int_info.bits_per_digit", "name": "bits_per_digit", "type": "builtins.int"}}, "sizeof_digit": {".class": "SymbolTableNode", "kind": "Mdef", "node": {".class": "Var", "flags": ["is_initialized_in_class"], "fullname": "sys._int_info.sizeof_digit", "name": "sizeof_digit", "type": "builtins.int"}}}, "tuple_type": null, "type_vars": [], "typeddict_type": null}}, "_version_info": {".class": "SymbolTableNode", "kind": "Gdef", "node": {".class": "TypeInfo", "_promote": null, "abstract_attributes": [], "bases": [{".class": "Instance", "args": [{".class": "AnyType", "missing_import_name": null, "source_any": null, "type_of_any": 6}], "type_ref": "builtins.tuple"}], "declared_metaclass": null, "defn": {".class": "ClassDef", "fullname": "sys._version_info", "name": "_version_info", "type_vars": []}, "flags": [], "fullname": "sys._version_info", "metaclass_type": null, "metadata": {}, "module_name": "sys", "mro": ["sys._version_info", "builtins.tuple", "typing.Sequence", "typing.Collection", "typing.Iterable", "typing.Container", "typing.Reversible", "builtins.object"], "names": {".class": "SymbolTable", "major": {".class": "SymbolTableNode", "kind": "Mdef", "node": {".class": "Var", "flags": ["is_initialized_in_class"], "fullname": "sys._version_info.major", "name": "major", "type": "builtins.int"}}, "micro": {".class": "SymbolTableNode", "kind": "Mdef", "node": {".class": "Var", "flags": ["is_initialized_in_class"], "fullname": "sys._version_info.micro", "name": "micro", "type": "builtins.int"}}, "minor": {".class": "SymbolTableNode", "kind": "Mdef", "node": {".class": "Var", "flags": ["is_initialized_in_class"], "fullname": "sys._version_info.minor", "name": "minor", "type": "builtins.int"}}, "releaselevel": {".class": "SymbolTableNode", "kind": "Mdef", "node": {".class": "Var", "flags": ["is_initialized_in_class"], "fullname": "sys._version_info.releaselevel", "name": "releaselevel", "type": "builtins.str"}}, "serial": {".class": "SymbolTableNode", "kind": "Mdef", "node": {".class": "Var", "flags": ["is_initialized_in_class"], "fullname": "sys._version_info.serial", "name": "serial", "type": "builtins.int"}}}, "tuple_type": {".class": "TupleType", "fallback": {".class": "Instance", "args": [{".class": "AnyType", "missing_import_name": null, "source_any": null, "type_of_any": 6}], "type_ref": "builtins.tuple"}, "implicit": false, "items": ["builtins.int", "builtins.int", "builtins.int", "builtins.str", "builtins.int"]}, "type_vars": [], "typeddict_type": null}}, "_xoptions": {".class": "SymbolTableNode", "kind": "Gdef", "node": {".class": "Var", "flags": [], "fullname": "sys._xoptions", "name": "_xoptions", "type": {".class": "Instance", "args": [{".class": "AnyType", "missing_import_name": null, "source_any": null, "type_of_any": 2}, {".class": "AnyType", "missing_import_name": null, "source_any": null, "type_of_any": 2}], "type_ref": "builtins.dict"}}}, "abiflags": {".class": "SymbolTableNode", "kind": "Gdef", "node": {".class": "Var", "flags": [], "fullname": "sys.abiflags", "name": "abiflags", "type": "builtins.str"}}, "api_version": {".class": "SymbolTableNode", "kind": "Gdef", "node": {".class": "Var", "flags": [], "fullname": "sys.api_version", "name": "api_version", "type": "builtins.int"}}, "argv": {".class": "SymbolTableNode", "kind": "Gdef", "node": {".class": "Var", "flags": [], "fullname": "sys.argv", "name": "argv", "type": {".class": "Instance", "args": ["builtins.str"], "type_ref": "builtins.list"}}}, "base_exec_prefix": {".class": "SymbolTableNode", "kind": "Gdef", "node": {".class": "Var", "flags": [], "fullname": "sys.base_exec_prefix", "name": "base_exec_prefix", "type": "builtins.str"}}, "base_prefix": {".class": "SymbolTableNode", "kind": "Gdef", "node": {".class": "Var", "flags": [], "fullname": "sys.base_prefix", "name": "base_prefix", "type": "builtins.str"}}, "builtin_module_names": {".class": "SymbolTableNode", "kind": "Gdef", "node": {".class": "Var", "flags": [], "fullname": "sys.builtin_module_names", "name": "builtin_module_names", "type": {".class": "Instance", "args": ["builtins.str"], "type_ref": "typing.Sequence"}}}, "byteorder": {".class": "SymbolTableNode", "kind": "Gdef", "node": {".class": "Var", "flags": [], "fullname": "sys.byteorder", "name": "byteorder", "type": "builtins.str"}}, "call_tracing": {".class": "SymbolTableNode", "kind": "Gdef", "node": {".class": "FuncDef", "arg_kinds": [0, 0], "arg_names": ["fn", "args"], "flags": [], "fullname": "sys.call_tracing", "name": "call_tracing", "type": {".class": "CallableType", "arg_kinds": [0, 0], "arg_names": ["fn", "args"], "arg_types": [{".class": "CallableType", "arg_kinds": [2, 4], "arg_names": [null, null], "arg_types": [{".class": "AnyType", "missing_import_name": null, "source_any": null, "type_of_any": 2}, {".class": "AnyType", "missing_import_name": null, "source_any": null, "type_of_any": 2}], "bound_args": [], "def_extras": {}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": true, "name": null, "ret_type": {".class": "TypeVarType", "fullname": "sys._T", "id": -1, "name": "_T", "upper_bound": "builtins.object", "values": [], "variance": 0}, "variables": []}, {".class": "AnyType", "missing_import_name": null, "source_any": null, "type_of_any": 2}], "bound_args": [], "def_extras": {"first_arg": null}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "call_tracing", "ret_type": {".class": "TypeVarType", "fullname": "sys._T", "id": -1, "name": "_T", "upper_bound": "builtins.object", "values": [], "variance": 0}, "variables": [{".class": "TypeVarDef", "fullname": "sys._T", "id": -1, "name": "_T", "upper_bound": "builtins.object", "values": [], "variance": 0}]}}}, "copyright": {".class": "SymbolTableNode", "kind": "Gdef", "node": {".class": "Var", "flags": [], "fullname": "sys.copyright", "name": "copyright", "type": "builtins.str"}}, "displayhook": {".class": "SymbolTableNode", "kind": "Gdef", "node": {".class": "FuncDef", "arg_kinds": [0], "arg_names": ["value"], "flags": [], "fullname": "sys.displayhook", "name": "displayhook", "type": {".class": "CallableType", "arg_kinds": [0], "arg_names": ["value"], "arg_types": [{".class": "UnionType", "items": ["builtins.int", {".class": "NoneTyp"}]}], "bound_args": [], "def_extras": {"first_arg": null}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "displayhook", "ret_type": {".class": "NoneTyp"}, "variables": []}}}, "dont_write_bytecode": {".class": "SymbolTableNode", "kind": "Gdef", "node": {".class": "Var", "flags": [], "fullname": "sys.dont_write_bytecode", "name": "dont_write_bytecode", "type": "builtins.bool"}}, "exc_info": {".class": "SymbolTableNode", "kind": "Gdef", "node": {".class": "FuncDef", "arg_kinds": [], "arg_names": [], "flags": [], "fullname": "sys.exc_info", "name": "exc_info", "type": {".class": "CallableType", "arg_kinds": [], "arg_names": [], "arg_types": [], "bound_args": [], "def_extras": {"first_arg": null}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "exc_info", "ret_type": {".class": "TupleType", "fallback": {".class": "Instance", "args": [{".class": "AnyType", "missing_import_name": null, "source_any": null, "type_of_any": 6}], "type_ref": "builtins.tuple"}, "implicit": false, "items": [{".class": "UnionType", "items": [{".class": "TypeType", "item": "builtins.BaseException"}, {".class": "NoneTyp"}]}, {".class": "UnionType", "items": ["builtins.BaseException", {".class": "NoneTyp"}]}, {".class": "UnionType", "items": ["types.TracebackType", {".class": "NoneTyp"}]}]}, "variables": []}}}, "excepthook": {".class": "SymbolTableNode", "kind": "Gdef", "node": {".class": "FuncDef", "arg_kinds": [0, 0, 0], "arg_names": ["type_", "value", "traceback"], "flags": [], "fullname": "sys.excepthook", "name": "excepthook", "type": {".class": "CallableType", "arg_kinds": [0, 0, 0], "arg_names": ["type_", "value", "traceback"], "arg_types": [{".class": "TypeType", "item": "builtins.BaseException"}, "builtins.BaseException", "types.TracebackType"], "bound_args": [], "def_extras": {"first_arg": null}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "excepthook", "ret_type": {".class": "NoneTyp"}, "variables": []}}}, "exec_prefix": {".class": "SymbolTableNode", "kind": "Gdef", "node": {".class": "Var", "flags": [], "fullname": "sys.exec_prefix", "name": "exec_prefix", "type": "builtins.str"}}, "executable": {".class": "SymbolTableNode", "kind": "Gdef", "node": {".class": "Var", "flags": [], "fullname": "sys.executable", "name": "executable", "type": "builtins.str"}}, "exit": {".class": "SymbolTableNode", "kind": "Gdef", "node": {".class": "FuncDef", "arg_kinds": [1], "arg_names": ["arg"], "flags": [], "fullname": "sys.exit", "name": "exit", "type": {".class": "CallableType", "arg_kinds": [1], "arg_names": ["arg"], "arg_types": ["builtins.object"], "bound_args": [], "def_extras": {"first_arg": null}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "exit", "ret_type": {".class": "UninhabitedType", "is_noreturn": true}, "variables": []}}}, "flags": {".class": "SymbolTableNode", "kind": "Gdef", "node": {".class": "Var", "flags": [], "fullname": "sys.flags", "name": "flags", "type": "sys._flags"}}, "float_info": {".class": "SymbolTableNode", "kind": "Gdef", "node": {".class": "Var", "flags": [], "fullname": "sys.float_info", "name": "float_info", "type": "sys._float_info"}}, "float_repr_style": {".class": "SymbolTableNode", "kind": "Gdef", "node": {".class": "Var", "flags": [], "fullname": "sys.float_repr_style", "name": "float_repr_style", "type": "builtins.str"}}, "getcheckinterval": {".class": "SymbolTableNode", "kind": "Gdef", "node": {".class": "FuncDef", "arg_kinds": [], "arg_names": [], "flags": [], "fullname": "sys.getcheckinterval", "name": "getcheckinterval", "type": {".class": "CallableType", "arg_kinds": [], "arg_names": [], "arg_types": [], "bound_args": [], "def_extras": {"first_arg": null}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "getcheckinterval", "ret_type": "builtins.int", "variables": []}}}, "getdefaultencoding": {".class": "SymbolTableNode", "kind": "Gdef", "node": {".class": "FuncDef", "arg_kinds": [], "arg_names": [], "flags": [], "fullname": "sys.getdefaultencoding", "name": "getdefaultencoding", "type": {".class": "CallableType", "arg_kinds": [], "arg_names": [], "arg_types": [], "bound_args": [], "def_extras": {"first_arg": null}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "getdefaultencoding", "ret_type": "builtins.str", "variables": []}}}, "getdlopenflags": {".class": "SymbolTableNode", "kind": "Gdef", "node": {".class": "FuncDef", "arg_kinds": [], "arg_names": [], "flags": ["is_conditional"], "fullname": "sys.getdlopenflags", "name": "getdlopenflags", "type": {".class": "CallableType", "arg_kinds": [], "arg_names": [], "arg_types": [], "bound_args": [], "def_extras": {"first_arg": null}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "getdlopenflags", "ret_type": "builtins.int", "variables": []}}}, "getfilesystemencoding": {".class": "SymbolTableNode", "kind": "Gdef", "node": {".class": "FuncDef", "arg_kinds": [], "arg_names": [], "flags": [], "fullname": "sys.getfilesystemencoding", "name": "getfilesystemencoding", "type": {".class": "CallableType", "arg_kinds": [], "arg_names": [], "arg_types": [], "bound_args": [], "def_extras": {"first_arg": null}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "getfilesystemencoding", "ret_type": "builtins.str", "variables": []}}}, "getprofile": {".class": "SymbolTableNode", "kind": "Gdef", "node": {".class": "FuncDef", "arg_kinds": [], "arg_names": [], "flags": [], "fullname": "sys.getprofile", "name": "getprofile", "type": {".class": "CallableType", "arg_kinds": [], "arg_names": [], "arg_types": [], "bound_args": [], "def_extras": {"first_arg": null}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "getprofile", "ret_type": {".class": "UnionType", "items": [{".class": "CallableType", "arg_kinds": [0, 0, 0], "arg_names": [null, null, null], "arg_types": ["types.FrameType", "builtins.str", {".class": "AnyType", "missing_import_name": null, "source_any": null, "type_of_any": 6}], "bound_args": [], "def_extras": {}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": null, "ret_type": {".class": "AnyType", "missing_import_name": null, "source_any": null, "type_of_any": 6}, "variables": []}, {".class": "NoneTyp"}]}, "variables": []}}}, "getrecursionlimit": {".class": "SymbolTableNode", "kind": "Gdef", "node": {".class": "FuncDef", "arg_kinds": [], "arg_names": [], "flags": [], "fullname": "sys.getrecursionlimit", "name": "getrecursionlimit", "type": {".class": "CallableType", "arg_kinds": [], "arg_names": [], "arg_types": [], "bound_args": [], "def_extras": {"first_arg": null}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "getrecursionlimit", "ret_type": "builtins.int", "variables": []}}}, "getrefcount": {".class": "SymbolTableNode", "kind": "Gdef", "node": {".class": "FuncDef", "arg_kinds": [0], "arg_names": ["arg"], "flags": [], "fullname": "sys.getrefcount", "name": "getrefcount", "type": {".class": "CallableType", "arg_kinds": [0], "arg_names": ["arg"], "arg_types": [{".class": "AnyType", "missing_import_name": null, "source_any": null, "type_of_any": 2}], "bound_args": [], "def_extras": {"first_arg": null}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "getrefcount", "ret_type": "builtins.int", "variables": []}}}, "getsizeof": {".class": "SymbolTableNode", "kind": "Gdef", "node": {".class": "OverloadedFuncDef", "flags": [], "fullname": "sys.getsizeof", "impl": null, "items": [{".class": "Decorator", "func": {".class": "FuncDef", "arg_kinds": [0], "arg_names": ["obj"], "flags": ["is_overload", "is_decorated"], "fullname": "sys.getsizeof", "name": "getsizeof", "type": {".class": "CallableType", "arg_kinds": [0], "arg_names": ["obj"], "arg_types": ["builtins.object"], "bound_args": [], "def_extras": {"first_arg": null}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "getsizeof", "ret_type": "builtins.int", "variables": []}}, "is_overload": true, "var": {".class": "Var", "flags": [], "fullname": null, "name": "getsizeof", "type": null}}, {".class": "Decorator", "func": {".class": "FuncDef", "arg_kinds": [0, 0], "arg_names": ["obj", "default"], "flags": ["is_overload", "is_decorated"], "fullname": "sys.getsizeof", "name": "getsizeof", "type": {".class": "CallableType", "arg_kinds": [0, 0], "arg_names": ["obj", "default"], "arg_types": ["builtins.object", "builtins.int"], "bound_args": [], "def_extras": {"first_arg": null}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "getsizeof", "ret_type": "builtins.int", "variables": []}}, "is_overload": true, "var": {".class": "Var", "flags": [], "fullname": null, "name": "getsizeof", "type": null}}], "type": {".class": "Overloaded", "items": [{".class": "CallableType", "arg_kinds": [0], "arg_names": ["obj"], "arg_types": ["builtins.object"], "bound_args": [], "def_extras": {"first_arg": null}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "getsizeof", "ret_type": "builtins.int", "variables": []}, {".class": "CallableType", "arg_kinds": [0, 0], "arg_names": ["obj", "default"], "arg_types": ["builtins.object", "builtins.int"], "bound_args": [], "def_extras": {"first_arg": null}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "getsizeof", "ret_type": "builtins.int", "variables": []}]}}}, "getswitchinterval": {".class": "SymbolTableNode", "kind": "Gdef", "node": {".class": "FuncDef", "arg_kinds": [], "arg_names": [], "flags": [], "fullname": "sys.getswitchinterval", "name": "getswitchinterval", "type": {".class": "CallableType", "arg_kinds": [], "arg_names": [], "arg_types": [], "bound_args": [], "def_extras": {"first_arg": null}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "getswitchinterval", "ret_type": "builtins.float", "variables": []}}}, "gettotalrefcount": {".class": "SymbolTableNode", "kind": "Gdef", "node": {".class": "FuncDef", "arg_kinds": [], "arg_names": [], "flags": [], "fullname": "sys.gettotalrefcount", "name": "gettotalrefcount", "type": {".class": "CallableType", "arg_kinds": [], "arg_names": [], "arg_types": [], "bound_args": [], "def_extras": {"first_arg": null}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "gettotalrefcount", "ret_type": "builtins.int", "variables": []}}}, "gettrace": {".class": "SymbolTableNode", "kind": "Gdef", "node": {".class": "FuncDef", "arg_kinds": [], "arg_names": [], "flags": [], "fullname": "sys.gettrace", "name": "gettrace", "type": {".class": "CallableType", "arg_kinds": [], "arg_names": [], "arg_types": [], "bound_args": [], "def_extras": {"first_arg": null}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "gettrace", "ret_type": {".class": "UnionType", "items": [{".class": "CallableType", "arg_kinds": [0, 0, 0], "arg_names": [null, null, null], "arg_types": ["types.FrameType", "builtins.str", {".class": "AnyType", "missing_import_name": null, "source_any": null, "type_of_any": 6}], "bound_args": [], "def_extras": {}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": null, "ret_type": {".class": "UnionType", "items": [{".class": "CallableType", "arg_kinds": [0, 0, 0], "arg_names": [null, null, null], "arg_types": ["types.FrameType", "builtins.str", {".class": "AnyType", "missing_import_name": null, "source_any": null, "type_of_any": 6}], "bound_args": [], "def_extras": {}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": null, "ret_type": {".class": "AnyType", "missing_import_name": null, "source_any": null, "type_of_any": 6}, "variables": []}, {".class": "NoneTyp"}]}, "variables": []}, {".class": "NoneTyp"}]}, "variables": []}}}, "getwindowsversion": {".class": "SymbolTableNode", "kind": "Gdef", "node": {".class": "FuncDef", "arg_kinds": [], "arg_names": [], "flags": [], "fullname": "sys.getwindowsversion", "name": "getwindowsversion", "type": {".class": "CallableType", "arg_kinds": [], "arg_names": [], "arg_types": [], "bound_args": [], "def_extras": {"first_arg": null}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "getwindowsversion", "ret_type": {".class": "TupleType", "fallback": "sys._WinVersion", "implicit": false, "items": ["builtins.int", "builtins.int", "builtins.int", "builtins.int", "builtins.str", "builtins.int", "builtins.int", "builtins.int", "builtins.int", {".class": "TupleType", "fallback": {".class": "Instance", "args": [{".class": "AnyType", "missing_import_name": null, "source_any": null, "type_of_any": 6}], "type_ref": "builtins.tuple"}, "implicit": false, "items": ["builtins.int", "builtins.int", "builtins.int"]}]}, "variables": []}}}, "hash_info": {".class": "SymbolTableNode", "kind": "Gdef", "node": {".class": "Var", "flags": [], "fullname": "sys.hash_info", "name": "hash_info", "type": "sys._hash_info"}}, "hexversion": {".class": "SymbolTableNode", "kind": "Gdef", "node": {".class": "Var", "flags": [], "fullname": "sys.hexversion", "name": "hexversion", "type": "builtins.int"}}, "implementation": {".class": "SymbolTableNode", "kind": "Gdef", "node": {".class": "Var", "flags": [], "fullname": "sys.implementation", "name": "implementation", "type": "sys._implementation"}}, "int_info": {".class": "SymbolTableNode", "kind": "Gdef", "node": {".class": "Var", "flags": [], "fullname": "sys.int_info", "name": "int_info", "type": "sys._int_info"}}, "intern": {".class": "SymbolTableNode", "kind": "Gdef", "node": {".class": "FuncDef", "arg_kinds": [0], "arg_names": ["string"], "flags": [], "fullname": "sys.intern", "name": "intern", "type": {".class": "CallableType", "arg_kinds": [0], "arg_names": ["string"], "arg_types": ["builtins.str"], "bound_args": [], "def_extras": {"first_arg": null}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "intern", "ret_type": "builtins.str", "variables": []}}}, "is_finalizing": {".class": "SymbolTableNode", "kind": "Gdef", "node": {".class": "FuncDef", "arg_kinds": [], "arg_names": [], "flags": ["is_conditional"], "fullname": "sys.is_finalizing", "name": "is_finalizing", "type": {".class": "CallableType", "arg_kinds": [], "arg_names": [], "arg_types": [], "bound_args": [], "def_extras": {"first_arg": null}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "is_finalizing", "ret_type": "builtins.bool", "variables": []}}}, "last_traceback": {".class": "SymbolTableNode", "kind": "Gdef", "node": {".class": "Var", "flags": [], "fullname": "sys.last_traceback", "name": "last_traceback", "type": {".class": "UnionType", "items": ["types.TracebackType", {".class": "NoneTyp"}]}}}, "last_type": {".class": "SymbolTableNode", "kind": "Gdef", "node": {".class": "Var", "flags": [], "fullname": "sys.last_type", "name": "last_type", "type": {".class": "UnionType", "items": [{".class": "TypeType", "item": "builtins.BaseException"}, {".class": "NoneTyp"}]}}}, "last_value": {".class": "SymbolTableNode", "kind": "Gdef", "node": {".class": "Var", "flags": [], "fullname": "sys.last_value", "name": "last_value", "type": {".class": "UnionType", "items": ["builtins.BaseException", {".class": "NoneTyp"}]}}}, "maxsize": {".class": "SymbolTableNode", "kind": "Gdef", "node": {".class": "Var", "flags": [], "fullname": "sys.maxsize", "name": "maxsize", "type": "builtins.int"}}, "maxunicode": {".class": "SymbolTableNode", "kind": "Gdef", "node": {".class": "Var", "flags": [], "fullname": "sys.maxunicode", "name": "maxunicode", "type": "builtins.int"}}, "meta_path": {".class": "SymbolTableNode", "kind": "Gdef", "node": {".class": "Var", "flags": [], "fullname": "sys.meta_path", "name": "meta_path", "type": {".class": "Instance", "args": ["importlib.abc.MetaPathFinder"], "type_ref": "builtins.list"}}}, "modules": {".class": "SymbolTableNode", "kind": "Gdef", "node": {".class": "Var", "flags": [], "fullname": "sys.modules", "name": "modules", "type": {".class": "Instance", "args": ["builtins.str", "_importlib_modulespec.ModuleType"], "type_ref": "builtins.dict"}}}, "overload": {".class": "SymbolTableNode", "cross_ref": "typing.overload", "kind": "Gdef", "module_hidden": true, "module_public": false}, "path": {".class": "SymbolTableNode", "kind": "Gdef", "node": {".class": "Var", "flags": [], "fullname": "sys.path", "name": "path", "type": {".class": "Instance", "args": ["builtins.str"], "type_ref": "builtins.list"}}}, "path_hooks": {".class": "SymbolTableNode", "kind": "Gdef", "node": {".class": "Var", "flags": [], "fullname": "sys.path_hooks", "name": "path_hooks", "type": {".class": "Instance", "args": [{".class": "AnyType", "missing_import_name": null, "source_any": null, "type_of_any": 2}], "type_ref": "builtins.list"}}}, "path_importer_cache": {".class": "SymbolTableNode", "kind": "Gdef", "node": {".class": "Var", "flags": [], "fullname": "sys.path_importer_cache", "name": "path_importer_cache", "type": {".class": "Instance", "args": ["builtins.str", {".class": "AnyType", "missing_import_name": null, "source_any": null, "type_of_any": 2}], "type_ref": "builtins.dict"}}}, "platform": {".class": "SymbolTableNode", "kind": "Gdef", "node": {".class": "Var", "flags": [], "fullname": "sys.platform", "name": "platform", "type": "builtins.str"}}, "prefix": {".class": "SymbolTableNode", "kind": "Gdef", "node": {".class": "Var", "flags": [], "fullname": "sys.prefix", "name": "prefix", "type": "builtins.str"}}, "ps1": {".class": "SymbolTableNode", "kind": "Gdef", "node": {".class": "Var", "flags": [], "fullname": "sys.ps1", "name": "ps1", "type": "builtins.str"}}, "ps2": {".class": "SymbolTableNode", "kind": "Gdef", "node": {".class": "Var", "flags": [], "fullname": "sys.ps2", "name": "ps2", "type": "builtins.str"}}, "setcheckinterval": {".class": "SymbolTableNode", "kind": "Gdef", "node": {".class": "FuncDef", "arg_kinds": [0], "arg_names": ["interval"], "flags": [], "fullname": "sys.setcheckinterval", "name": "setcheckinterval", "type": {".class": "CallableType", "arg_kinds": [0], "arg_names": ["interval"], "arg_types": ["builtins.int"], "bound_args": [], "def_extras": {"first_arg": null}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "setcheckinterval", "ret_type": {".class": "NoneTyp"}, "variables": []}}}, "setdlopenflags": {".class": "SymbolTableNode", "kind": "Gdef", "node": {".class": "FuncDef", "arg_kinds": [0], "arg_names": ["n"], "flags": [], "fullname": "sys.setdlopenflags", "name": "setdlopenflags", "type": {".class": "CallableType", "arg_kinds": [0], "arg_names": ["n"], "arg_types": ["builtins.int"], "bound_args": [], "def_extras": {"first_arg": null}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "setdlopenflags", "ret_type": {".class": "NoneTyp"}, "variables": []}}}, "setprofile": {".class": "SymbolTableNode", "kind": "Gdef", "node": {".class": "FuncDef", "arg_kinds": [0], "arg_names": ["profilefunc"], "flags": [], "fullname": "sys.setprofile", "name": "setprofile", "type": {".class": "CallableType", "arg_kinds": [0], "arg_names": ["profilefunc"], "arg_types": [{".class": "UnionType", "items": [{".class": "CallableType", "arg_kinds": [0, 0, 0], "arg_names": [null, null, null], "arg_types": ["types.FrameType", "builtins.str", {".class": "AnyType", "missing_import_name": null, "source_any": null, "type_of_any": 6}], "bound_args": [], "def_extras": {}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": null, "ret_type": {".class": "AnyType", "missing_import_name": null, "source_any": null, "type_of_any": 6}, "variables": []}, {".class": "NoneTyp"}]}], "bound_args": [], "def_extras": {"first_arg": null}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "setprofile", "ret_type": {".class": "NoneTyp"}, "variables": []}}}, "setrecursionlimit": {".class": "SymbolTableNode", "kind": "Gdef", "node": {".class": "FuncDef", "arg_kinds": [0], "arg_names": ["limit"], "flags": [], "fullname": "sys.setrecursionlimit", "name": "setrecursionlimit", "type": {".class": "CallableType", "arg_kinds": [0], "arg_names": ["limit"], "arg_types": ["builtins.int"], "bound_args": [], "def_extras": {"first_arg": null}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "setrecursionlimit", "ret_type": {".class": "NoneTyp"}, "variables": []}}}, "setswitchinterval": {".class": "SymbolTableNode", "kind": "Gdef", "node": {".class": "FuncDef", "arg_kinds": [0], "arg_names": ["interval"], "flags": [], "fullname": "sys.setswitchinterval", "name": "setswitchinterval", "type": {".class": "CallableType", "arg_kinds": [0], "arg_names": ["interval"], "arg_types": ["builtins.float"], "bound_args": [], "def_extras": {"first_arg": null}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "setswitchinterval", "ret_type": {".class": "NoneTyp"}, "variables": []}}}, "settrace": {".class": "SymbolTableNode", "kind": "Gdef", "node": {".class": "FuncDef", "arg_kinds": [0], "arg_names": ["tracefunc"], "flags": [], "fullname": "sys.settrace", "name": "settrace", "type": {".class": "CallableType", "arg_kinds": [0], "arg_names": ["tracefunc"], "arg_types": [{".class": "UnionType", "items": [{".class": "CallableType", "arg_kinds": [0, 0, 0], "arg_names": [null, null, null], "arg_types": ["types.FrameType", "builtins.str", {".class": "AnyType", "missing_import_name": null, "source_any": null, "type_of_any": 6}], "bound_args": [], "def_extras": {}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": null, "ret_type": {".class": "UnionType", "items": [{".class": "CallableType", "arg_kinds": [0, 0, 0], "arg_names": [null, null, null], "arg_types": ["types.FrameType", "builtins.str", {".class": "AnyType", "missing_import_name": null, "source_any": null, "type_of_any": 6}], "bound_args": [], "def_extras": {}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": null, "ret_type": {".class": "AnyType", "missing_import_name": null, "source_any": null, "type_of_any": 6}, "variables": []}, {".class": "NoneTyp"}]}, "variables": []}, {".class": "NoneTyp"}]}], "bound_args": [], "def_extras": {"first_arg": null}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "settrace", "ret_type": {".class": "NoneTyp"}, "variables": []}}}, "settscdump": {".class": "SymbolTableNode", "kind": "Gdef", "node": {".class": "FuncDef", "arg_kinds": [0], "arg_names": ["on_flag"], "flags": [], "fullname": "sys.settscdump", "name": "settscdump", "type": {".class": "CallableType", "arg_kinds": [0], "arg_names": ["on_flag"], "arg_types": ["builtins.bool"], "bound_args": [], "def_extras": {"first_arg": null}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "settscdump", "ret_type": {".class": "NoneTyp"}, "variables": []}}}, "stderr": {".class": "SymbolTableNode", "kind": "Gdef", "node": {".class": "Var", "flags": [], "fullname": "sys.stderr", "name": "stderr", "type": "typing.TextIO"}}, "stdin": {".class": "SymbolTableNode", "kind": "Gdef", "node": {".class": "Var", "flags": [], "fullname": "sys.stdin", "name": "stdin", "type": "typing.TextIO"}}, "stdout": {".class": "SymbolTableNode", "kind": "Gdef", "node": {".class": "Var", "flags": [], "fullname": "sys.stdout", "name": "stdout", "type": "typing.TextIO"}}, "subversion": {".class": "SymbolTableNode", "kind": "Gdef", "node": {".class": "Var", "flags": [], "fullname": "sys.subversion", "name": "subversion", "type": {".class": "TupleType", "fallback": {".class": "Instance", "args": [{".class": "AnyType", "missing_import_name": null, "source_any": null, "type_of_any": 6}], "type_ref": "builtins.tuple"}, "implicit": false, "items": ["builtins.str", "builtins.str", "builtins.str"]}}}, "sys": {".class": "SymbolTableNode", "cross_ref": "sys", "kind": "Gdef", "module_hidden": true, "module_public": false}, "tracebacklimit": {".class": "SymbolTableNode", "kind": "Gdef", "node": {".class": "Var", "flags": [], "fullname": "sys.tracebacklimit", "name": "tracebacklimit", "type": "builtins.int"}}, "version": {".class": "SymbolTableNode", "kind": "Gdef", "node": {".class": "Var", "flags": [], "fullname": "sys.version", "name": "version", "type": "builtins.str"}}, "version_info": {".class": "SymbolTableNode", "kind": "Gdef", "node": {".class": "Var", "flags": [], "fullname": "sys.version_info", "name": "version_info", "type": {".class": "TupleType", "fallback": "sys._version_info", "implicit": false, "items": ["builtins.int", "builtins.int", "builtins.int", "builtins.str", "builtins.int"]}}}, "warnoptions": {".class": "SymbolTableNode", "kind": "Gdef", "node": {".class": "Var", "flags": [], "fullname": "sys.warnoptions", "name": "warnoptions", "type": {".class": "AnyType", "missing_import_name": null, "source_any": null, "type_of_any": 2}}}}, "path": "/usr/lib/python3/dist-packages/mypy/typeshed/stdlib/3/sys.pyi"}
\ No newline at end of file
diff --git a/Postgres/StressTests/.mypy_cache/3.7/sys.meta.json b/Postgres/StressTests/.mypy_cache/3.7/sys.meta.json
deleted file mode 100644
index 45a8523..0000000
--- a/Postgres/StressTests/.mypy_cache/3.7/sys.meta.json
+++ /dev/null
@@ -1 +0,0 @@
-{"child_modules": [], "data_mtime": 1553688971, "dep_lines": [6, 11, 13, 1, 1, 1, 1], "dep_prios": [5, 5, 5, 5, 30, 30, 30], "dependencies": ["typing", "types", "importlib.abc", "builtins", "_importlib_modulespec", "abc", "importlib"], "hash": "2fbd4a190997681df16c2af57da73313", "id": "sys", "ignore_all": true, "interface_hash": "9eae05c40e8ca146e3bc30d3ba4b9f31", "mtime": 1549659920, "options": {"allow_redefinition": false, "allow_untyped_globals": false, "always_false": [], "always_true": [], "bazel": false, "check_untyped_defs": false, "disallow_any_decorated": false, "disallow_any_explicit": false, "disallow_any_expr": false, "disallow_any_generics": false, "disallow_any_unimported": false, "disallow_incomplete_defs": false, "disallow_subclassing_any": false, "disallow_untyped_calls": false, "disallow_untyped_decorators": false, "disallow_untyped_defs": false, "follow_imports": "normal", "follow_imports_for_stubs": false, "ignore_errors": false, "ignore_missing_imports": false, "local_partial_types": false, "mypyc": false, "new_semantic_analyzer": false, "no_implicit_optional": false, "platform": "linux", "plugins": [], "show_none_errors": true, "strict_optional": true, "strict_optional_whitelist": null, "warn_no_return": true, "warn_return_any": false, "warn_unused_ignores": false}, "path": "/usr/lib/python3/dist-packages/mypy/typeshed/stdlib/3/sys.pyi", "size": 5358, "suppressed": [], "version_id": "0.670"}
\ No newline at end of file
diff --git a/Postgres/StressTests/.mypy_cache/3.7/time.data.json b/Postgres/StressTests/.mypy_cache/3.7/time.data.json
deleted file mode 100644
index 37a14bb..0000000
--- a/Postgres/StressTests/.mypy_cache/3.7/time.data.json
+++ /dev/null
@@ -1 +0,0 @@
-{".class": "MypyFile", "_fullname": "time", "is_partial_stub_package": false, "is_stub": true, "names": {".class": "SymbolTable", "Any": {".class": "SymbolTableNode", "cross_ref": "typing.Any", "kind": "Gdef", "module_hidden": true, "module_public": false}, "CLOCK_BOOTTIME": {".class": "SymbolTableNode", "kind": "Gdef", "node": {".class": "Var", "flags": [], "fullname": "time.CLOCK_BOOTTIME", "name": "CLOCK_BOOTTIME", "type": "builtins.int"}}, "CLOCK_HIGHRES": {".class": "SymbolTableNode", "kind": "Gdef", "node": {".class": "Var", "flags": [], "fullname": "time.CLOCK_HIGHRES", "name": "CLOCK_HIGHRES", "type": "builtins.int"}}, "CLOCK_MONOTONIC": {".class": "SymbolTableNode", "kind": "Gdef", "node": {".class": "Var", "flags": [], "fullname": "time.CLOCK_MONOTONIC", "name": "CLOCK_MONOTONIC", "type": "builtins.int"}}, "CLOCK_MONOTONIC_RAW": {".class": "SymbolTableNode", "kind": "Gdef", "node": {".class": "Var", "flags": [], "fullname": "time.CLOCK_MONOTONIC_RAW", "name": "CLOCK_MONOTONIC_RAW", "type": "builtins.int"}}, "CLOCK_PROCESS_CPUTIME_ID": {".class": "SymbolTableNode", "kind": "Gdef", "node": {".class": "Var", "flags": [], "fullname": "time.CLOCK_PROCESS_CPUTIME_ID", "name": "CLOCK_PROCESS_CPUTIME_ID", "type": "builtins.int"}}, "CLOCK_PROF": {".class": "SymbolTableNode", "kind": "Gdef", "node": {".class": "Var", "flags": [], "fullname": "time.CLOCK_PROF", "name": "CLOCK_PROF", "type": "builtins.int"}}, "CLOCK_REALTIME": {".class": "SymbolTableNode", "kind": "Gdef", "node": {".class": "Var", "flags": [], "fullname": "time.CLOCK_REALTIME", "name": "CLOCK_REALTIME", "type": "builtins.int"}}, "CLOCK_THREAD_CPUTIME_ID": {".class": "SymbolTableNode", "kind": "Gdef", "node": {".class": "Var", "flags": [], "fullname": "time.CLOCK_THREAD_CPUTIME_ID", "name": "CLOCK_THREAD_CPUTIME_ID", "type": "builtins.int"}}, "CLOCK_UPTIME": {".class": "SymbolTableNode", "kind": "Gdef", "node": {".class": "Var", "flags": [], "fullname": "time.CLOCK_UPTIME", "name": "CLOCK_UPTIME", "type": "builtins.int"}}, "NamedTuple": {".class": "SymbolTableNode", "cross_ref": "typing.NamedTuple", "kind": "Gdef", "module_hidden": true, "module_public": false}, "Optional": {".class": "SymbolTableNode", "cross_ref": "typing.Optional", "kind": "Gdef", "module_hidden": true, "module_public": false}, "SimpleNamespace": {".class": "SymbolTableNode", "cross_ref": "types.SimpleNamespace", "kind": "Gdef", "module_hidden": true, "module_public": false}, "Tuple": {".class": "SymbolTableNode", "cross_ref": "typing.Tuple", "kind": "Gdef", "module_hidden": true, "module_public": false}, "Union": {".class": "SymbolTableNode", "cross_ref": "typing.Union", "kind": "Gdef", "module_hidden": true, "module_public": false}, "_TimeTuple": {".class": "SymbolTableNode", "kind": "Gdef", "node": {".class": "TypeAlias", "alias_tvars": [], "column": 0, "fullname": "time._TimeTuple", "line": 9, "no_args": false, "normalized": false, "target": {".class": "TupleType", "fallback": {".class": "Instance", "args": [{".class": "AnyType", "missing_import_name": null, "source_any": null, "type_of_any": 6}], "type_ref": "builtins.tuple"}, "implicit": false, "items": ["builtins.int", "builtins.int", "builtins.int", "builtins.int", "builtins.int", "builtins.int", "builtins.int", "builtins.int", "builtins.int"]}}}, "__doc__": {".class": "SymbolTableNode", "kind": "Gdef", "node": {".class": "Var", "flags": [], "fullname": "time.__doc__", "name": "__doc__", "type": "builtins.str"}}, "__file__": {".class": "SymbolTableNode", "kind": "Gdef", "node": {".class": "Var", "flags": [], "fullname": "time.__file__", "name": "__file__", "type": "builtins.str"}}, "__name__": {".class": "SymbolTableNode", "kind": "Gdef", "node": {".class": "Var", "flags": [], "fullname": "time.__name__", "name": "__name__", "type": "builtins.str"}}, "__package__": {".class": "SymbolTableNode", "kind": "Gdef", "node": {".class": "Var", "flags": [], "fullname": "time.__package__", "name": "__package__", "type": "builtins.str"}}, "_struct_time@34": {".class": "SymbolTableNode", "kind": "Gdef", "node": {".class": "TypeInfo", "_promote": null, "abstract_attributes": [], "bases": [{".class": "Instance", "args": ["builtins.object"], "type_ref": "builtins.tuple"}], "declared_metaclass": null, "defn": {".class": "ClassDef", "fullname": "time._struct_time@34", "name": "_struct_time@34", "type_vars": []}, "flags": ["is_named_tuple"], "fullname": "time._struct_time@34", "metaclass_type": null, "metadata": {}, "module_name": "time", "mro": ["time._struct_time@34", "builtins.tuple", "typing.Sequence", "typing.Collection", "typing.Iterable", "typing.Container", "typing.Reversible", "builtins.object"], "names": {".class": "SymbolTable", "__annotations__": {".class": "SymbolTableNode", "kind": "Mdef", "node": {".class": "Var", "flags": ["is_initialized_in_class"], "fullname": "time._struct_time@34.__annotations__", "name": "__annotations__", "type": {".class": "Instance", "args": ["builtins.str", {".class": "AnyType", "missing_import_name": null, "source_any": null, "type_of_any": 6}], "type_ref": "builtins.dict"}}}, "__doc__": {".class": "SymbolTableNode", "kind": "Mdef", "node": {".class": "Var", "flags": ["is_initialized_in_class"], "fullname": "time._struct_time@34.__doc__", "name": "__doc__", "type": "builtins.str"}}, "__new__": {".class": "SymbolTableNode", "kind": "Mdef", "node": {".class": "FuncDef", "arg_kinds": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "arg_names": ["cls", "tm_year", "tm_mon", "tm_mday", "tm_hour", "tm_min", "tm_sec", "tm_wday", "tm_yday", "tm_isdst", "tm_zone", "tm_gmtoff"], "flags": [], "fullname": "time._struct_time@34.__new__", "name": "__new__", "type": {".class": "CallableType", "arg_kinds": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "arg_names": ["cls", "tm_year", "tm_mon", "tm_mday", "tm_hour", "tm_min", "tm_sec", "tm_wday", "tm_yday", "tm_isdst", "tm_zone", "tm_gmtoff"], "arg_types": [{".class": "TypeType", "item": {".class": "TypeVarType", "fullname": "NT", "id": -1, "name": "NT", "upper_bound": {".class": "TupleType", "fallback": {".class": "Instance", "args": ["builtins.object"], "type_ref": "builtins.tuple"}, "implicit": false, "items": ["builtins.int", "builtins.int", "builtins.int", "builtins.int", "builtins.int", "builtins.int", "builtins.int", "builtins.int", "builtins.int", "builtins.str", "builtins.int"]}, "values": [], "variance": 0}}, "builtins.int", "builtins.int", "builtins.int", "builtins.int", "builtins.int", "builtins.int", "builtins.int", "builtins.int", "builtins.int", "builtins.str", "builtins.int"], "bound_args": [], "def_extras": {}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "__new__ of _struct_time@34", "ret_type": {".class": "TypeVarType", "fullname": "NT", "id": -1, "name": "NT", "upper_bound": {".class": "TupleType", "fallback": {".class": "Instance", "args": ["builtins.object"], "type_ref": "builtins.tuple"}, "implicit": false, "items": ["builtins.int", "builtins.int", "builtins.int", "builtins.int", "builtins.int", "builtins.int", "builtins.int", "builtins.int", "builtins.int", "builtins.str", "builtins.int"]}, "values": [], "variance": 0}, "variables": [{".class": "TypeVarDef", "fullname": "NT", "id": -1, "name": "NT", "upper_bound": {".class": "TupleType", "fallback": {".class": "Instance", "args": ["builtins.object"], "type_ref": "builtins.tuple"}, "implicit": false, "items": ["builtins.int", "builtins.int", "builtins.int", "builtins.int", "builtins.int", "builtins.int", "builtins.int", "builtins.int", "builtins.int", "builtins.str", "builtins.int"]}, "values": [], "variance": 0}]}}}, "_asdict": {".class": "SymbolTableNode", "kind": "Mdef", "node": {".class": "FuncDef", "arg_kinds": [0], "arg_names": ["self"], "flags": [], "fullname": "time._struct_time@34._asdict", "name": "_asdict", "type": {".class": "CallableType", "arg_kinds": [0], "arg_names": ["self"], "arg_types": [{".class": "TypeVarType", "fullname": "NT", "id": -1, "name": "NT", "upper_bound": {".class": "TupleType", "fallback": {".class": "Instance", "args": ["builtins.object"], "type_ref": "builtins.tuple"}, "implicit": false, "items": ["builtins.int", "builtins.int", "builtins.int", "builtins.int", "builtins.int", "builtins.int", "builtins.int", "builtins.int", "builtins.int", "builtins.str", "builtins.int"]}, "values": [], "variance": 0}], "bound_args": [], "def_extras": {}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "_asdict of _struct_time@34", "ret_type": {".class": "Instance", "args": ["builtins.str", {".class": "AnyType", "missing_import_name": null, "source_any": null, "type_of_any": 6}], "type_ref": "builtins.dict"}, "variables": [{".class": "TypeVarDef", "fullname": "NT", "id": -1, "name": "NT", "upper_bound": {".class": "TupleType", "fallback": {".class": "Instance", "args": ["builtins.object"], "type_ref": "builtins.tuple"}, "implicit": false, "items": ["builtins.int", "builtins.int", "builtins.int", "builtins.int", "builtins.int", "builtins.int", "builtins.int", "builtins.int", "builtins.int", "builtins.str", "builtins.int"]}, "values": [], "variance": 0}]}}}, "_field_defaults": {".class": "SymbolTableNode", "kind": "Mdef", "node": {".class": "Var", "flags": ["is_initialized_in_class"], "fullname": "time._struct_time@34._field_defaults", "name": "_field_defaults", "type": {".class": "Instance", "args": ["builtins.str", {".class": "AnyType", "missing_import_name": null, "source_any": null, "type_of_any": 6}], "type_ref": "builtins.dict"}}}, "_field_types": {".class": "SymbolTableNode", "kind": "Mdef", "node": {".class": "Var", "flags": ["is_initialized_in_class"], "fullname": "time._struct_time@34._field_types", "name": "_field_types", "type": {".class": "Instance", "args": ["builtins.str", {".class": "AnyType", "missing_import_name": null, "source_any": null, "type_of_any": 6}], "type_ref": "builtins.dict"}}}, "_fields": {".class": "SymbolTableNode", "kind": "Mdef", "node": {".class": "Var", "flags": ["is_initialized_in_class"], "fullname": "time._struct_time@34._fields", "name": "_fields", "type": {".class": "TupleType", "fallback": {".class": "Instance", "args": [{".class": "AnyType", "missing_import_name": null, "source_any": null, "type_of_any": 6}], "type_ref": "builtins.tuple"}, "implicit": false, "items": ["builtins.str", "builtins.str", "builtins.str", "builtins.str", "builtins.str", "builtins.str", "builtins.str", "builtins.str", "builtins.str", "builtins.str", "builtins.str"]}}}, "_make": {".class": "SymbolTableNode", "kind": "Mdef", "node": {".class": "Decorator", "func": {".class": "FuncDef", "arg_kinds": [0, 0, 5, 5], "arg_names": ["cls", "iterable", "new", "len"], "flags": ["is_class"], "fullname": "time._struct_time@34._make", "name": "_make", "type": {".class": "CallableType", "arg_kinds": [0, 0, 5, 5], "arg_names": ["cls", "iterable", "new", "len"], "arg_types": [{".class": "TypeType", "item": {".class": "TypeVarType", "fullname": "NT", "id": -1, "name": "NT", "upper_bound": {".class": "TupleType", "fallback": {".class": "Instance", "args": ["builtins.object"], "type_ref": "builtins.tuple"}, "implicit": false, "items": ["builtins.int", "builtins.int", "builtins.int", "builtins.int", "builtins.int", "builtins.int", "builtins.int", "builtins.int", "builtins.int", "builtins.str", "builtins.int"]}, "values": [], "variance": 0}}, {".class": "Instance", "args": [{".class": "AnyType", "missing_import_name": null, "source_any": null, "type_of_any": 6}], "type_ref": "typing.Iterable"}, {".class": "AnyType", "missing_import_name": null, "source_any": null, "type_of_any": 6}, {".class": "AnyType", "missing_import_name": null, "source_any": null, "type_of_any": 6}], "bound_args": [], "def_extras": {}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "_make of _struct_time@34", "ret_type": {".class": "TypeVarType", "fullname": "NT", "id": -1, "name": "NT", "upper_bound": {".class": "TupleType", "fallback": {".class": "Instance", "args": ["builtins.object"], "type_ref": "builtins.tuple"}, "implicit": false, "items": ["builtins.int", "builtins.int", "builtins.int", "builtins.int", "builtins.int", "builtins.int", "builtins.int", "builtins.int", "builtins.int", "builtins.str", "builtins.int"]}, "values": [], "variance": 0}, "variables": [{".class": "TypeVarDef", "fullname": "NT", "id": -1, "name": "NT", "upper_bound": {".class": "TupleType", "fallback": {".class": "Instance", "args": ["builtins.object"], "type_ref": "builtins.tuple"}, "implicit": false, "items": ["builtins.int", "builtins.int", "builtins.int", "builtins.int", "builtins.int", "builtins.int", "builtins.int", "builtins.int", "builtins.int", "builtins.str", "builtins.int"]}, "values": [], "variance": 0}]}}, "is_overload": false, "var": {".class": "Var", "flags": ["is_classmethod"], "fullname": "time._struct_time@34._make", "name": "_make", "type": {".class": "CallableType", "arg_kinds": [0, 0, 5, 5], "arg_names": ["cls", "iterable", "new", "len"], "arg_types": [{".class": "TypeType", "item": {".class": "TypeVarType", "fullname": "NT", "id": -1, "name": "NT", "upper_bound": {".class": "TupleType", "fallback": {".class": "Instance", "args": ["builtins.object"], "type_ref": "builtins.tuple"}, "implicit": false, "items": ["builtins.int", "builtins.int", "builtins.int", "builtins.int", "builtins.int", "builtins.int", "builtins.int", "builtins.int", "builtins.int", "builtins.str", "builtins.int"]}, "values": [], "variance": 0}}, {".class": "Instance", "args": [{".class": "AnyType", "missing_import_name": null, "source_any": null, "type_of_any": 6}], "type_ref": "typing.Iterable"}, {".class": "AnyType", "missing_import_name": null, "source_any": null, "type_of_any": 6}, {".class": "AnyType", "missing_import_name": null, "source_any": null, "type_of_any": 6}], "bound_args": [], "def_extras": {}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "_make of _struct_time@34", "ret_type": {".class": "TypeVarType", "fullname": "NT", "id": -1, "name": "NT", "upper_bound": {".class": "TupleType", "fallback": {".class": "Instance", "args": ["builtins.object"], "type_ref": "builtins.tuple"}, "implicit": false, "items": ["builtins.int", "builtins.int", "builtins.int", "builtins.int", "builtins.int", "builtins.int", "builtins.int", "builtins.int", "builtins.int", "builtins.str", "builtins.int"]}, "values": [], "variance": 0}, "variables": [{".class": "TypeVarDef", "fullname": "NT", "id": -1, "name": "NT", "upper_bound": {".class": "TupleType", "fallback": {".class": "Instance", "args": ["builtins.object"], "type_ref": "builtins.tuple"}, "implicit": false, "items": ["builtins.int", "builtins.int", "builtins.int", "builtins.int", "builtins.int", "builtins.int", "builtins.int", "builtins.int", "builtins.int", "builtins.str", "builtins.int"]}, "values": [], "variance": 0}]}}}}, "_replace": {".class": "SymbolTableNode", "kind": "Mdef", "node": {".class": "FuncDef", "arg_kinds": [0, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5], "arg_names": ["self", "tm_year", "tm_mon", "tm_mday", "tm_hour", "tm_min", "tm_sec", "tm_wday", "tm_yday", "tm_isdst", "tm_zone", "tm_gmtoff"], "flags": [], "fullname": "time._struct_time@34._replace", "name": "_replace", "type": {".class": "CallableType", "arg_kinds": [0, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5], "arg_names": ["self", "tm_year", "tm_mon", "tm_mday", "tm_hour", "tm_min", "tm_sec", "tm_wday", "tm_yday", "tm_isdst", "tm_zone", "tm_gmtoff"], "arg_types": [{".class": "TypeVarType", "fullname": "NT", "id": -1, "name": "NT", "upper_bound": {".class": "TupleType", "fallback": {".class": "Instance", "args": ["builtins.object"], "type_ref": "builtins.tuple"}, "implicit": false, "items": ["builtins.int", "builtins.int", "builtins.int", "builtins.int", "builtins.int", "builtins.int", "builtins.int", "builtins.int", "builtins.int", "builtins.str", "builtins.int"]}, "values": [], "variance": 0}, "builtins.int", "builtins.int", "builtins.int", "builtins.int", "builtins.int", "builtins.int", "builtins.int", "builtins.int", "builtins.int", "builtins.str", "builtins.int"], "bound_args": [], "def_extras": {}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "_replace of _struct_time@34", "ret_type": {".class": "TypeVarType", "fullname": "NT", "id": -1, "name": "NT", "upper_bound": {".class": "TupleType", "fallback": {".class": "Instance", "args": ["builtins.object"], "type_ref": "builtins.tuple"}, "implicit": false, "items": ["builtins.int", "builtins.int", "builtins.int", "builtins.int", "builtins.int", "builtins.int", "builtins.int", "builtins.int", "builtins.int", "builtins.str", "builtins.int"]}, "values": [], "variance": 0}, "variables": [{".class": "TypeVarDef", "fullname": "NT", "id": -1, "name": "NT", "upper_bound": {".class": "TupleType", "fallback": {".class": "Instance", "args": ["builtins.object"], "type_ref": "builtins.tuple"}, "implicit": false, "items": ["builtins.int", "builtins.int", "builtins.int", "builtins.int", "builtins.int", "builtins.int", "builtins.int", "builtins.int", "builtins.int", "builtins.str", "builtins.int"]}, "values": [], "variance": 0}]}}}, "_source": {".class": "SymbolTableNode", "kind": "Mdef", "node": {".class": "Var", "flags": ["is_initialized_in_class"], "fullname": "time._struct_time@34._source", "name": "_source", "type": "builtins.str"}}, "tm_gmtoff": {".class": "SymbolTableNode", "kind": "Mdef", "node": {".class": "Var", "flags": ["is_property"], "fullname": "time._struct_time@34.tm_gmtoff", "name": "tm_gmtoff", "type": "builtins.int"}}, "tm_hour": {".class": "SymbolTableNode", "kind": "Mdef", "node": {".class": "Var", "flags": ["is_property"], "fullname": "time._struct_time@34.tm_hour", "name": "tm_hour", "type": "builtins.int"}}, "tm_isdst": {".class": "SymbolTableNode", "kind": "Mdef", "node": {".class": "Var", "flags": ["is_property"], "fullname": "time._struct_time@34.tm_isdst", "name": "tm_isdst", "type": "builtins.int"}}, "tm_mday": {".class": "SymbolTableNode", "kind": "Mdef", "node": {".class": "Var", "flags": ["is_property"], "fullname": "time._struct_time@34.tm_mday", "name": "tm_mday", "type": "builtins.int"}}, "tm_min": {".class": "SymbolTableNode", "kind": "Mdef", "node": {".class": "Var", "flags": ["is_property"], "fullname": "time._struct_time@34.tm_min", "name": "tm_min", "type": "builtins.int"}}, "tm_mon": {".class": "SymbolTableNode", "kind": "Mdef", "node": {".class": "Var", "flags": ["is_property"], "fullname": "time._struct_time@34.tm_mon", "name": "tm_mon", "type": "builtins.int"}}, "tm_sec": {".class": "SymbolTableNode", "kind": "Mdef", "node": {".class": "Var", "flags": ["is_property"], "fullname": "time._struct_time@34.tm_sec", "name": "tm_sec", "type": "builtins.int"}}, "tm_wday": {".class": "SymbolTableNode", "kind": "Mdef", "node": {".class": "Var", "flags": ["is_property"], "fullname": "time._struct_time@34.tm_wday", "name": "tm_wday", "type": "builtins.int"}}, "tm_yday": {".class": "SymbolTableNode", "kind": "Mdef", "node": {".class": "Var", "flags": ["is_property"], "fullname": "time._struct_time@34.tm_yday", "name": "tm_yday", "type": "builtins.int"}}, "tm_year": {".class": "SymbolTableNode", "kind": "Mdef", "node": {".class": "Var", "flags": ["is_property"], "fullname": "time._struct_time@34.tm_year", "name": "tm_year", "type": "builtins.int"}}, "tm_zone": {".class": "SymbolTableNode", "kind": "Mdef", "node": {".class": "Var", "flags": ["is_property"], "fullname": "time._struct_time@34.tm_zone", "name": "tm_zone", "type": "builtins.str"}}}, "tuple_type": {".class": "TupleType", "fallback": {".class": "Instance", "args": ["builtins.object"], "type_ref": "builtins.tuple"}, "implicit": false, "items": ["builtins.int", "builtins.int", "builtins.int", "builtins.int", "builtins.int", "builtins.int", "builtins.int", "builtins.int", "builtins.int", "builtins.str", "builtins.int"]}, "type_vars": [], "typeddict_type": null}}, "altzone": {".class": "SymbolTableNode", "kind": "Gdef", "node": {".class": "Var", "flags": [], "fullname": "time.altzone", "name": "altzone", "type": "builtins.int"}}, "asctime": {".class": "SymbolTableNode", "kind": "Gdef", "node": {".class": "FuncDef", "arg_kinds": [1], "arg_names": ["t"], "flags": [], "fullname": "time.asctime", "name": "asctime", "type": {".class": "CallableType", "arg_kinds": [1], "arg_names": ["t"], "arg_types": [{".class": "UnionType", "items": [{".class": "TupleType", "fallback": {".class": "Instance", "args": [{".class": "AnyType", "missing_import_name": null, "source_any": null, "type_of_any": 6}], "type_ref": "builtins.tuple"}, "implicit": false, "items": ["builtins.int", "builtins.int", "builtins.int", "builtins.int", "builtins.int", "builtins.int", "builtins.int", "builtins.int", "builtins.int"]}, {".class": "TupleType", "fallback": "time.struct_time", "implicit": false, "items": ["builtins.int", "builtins.int", "builtins.int", "builtins.int", "builtins.int", "builtins.int", "builtins.int", "builtins.int", "builtins.int", "builtins.str", "builtins.int"]}]}], "bound_args": [], "def_extras": {"first_arg": null}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "asctime", "ret_type": "builtins.str", "variables": []}}}, "clock": {".class": "SymbolTableNode", "kind": "Gdef", "node": {".class": "FuncDef", "arg_kinds": [], "arg_names": [], "flags": [], "fullname": "time.clock", "name": "clock", "type": {".class": "CallableType", "arg_kinds": [], "arg_names": [], "arg_types": [], "bound_args": [], "def_extras": {"first_arg": null}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "clock", "ret_type": "builtins.float", "variables": []}}}, "clock_getres": {".class": "SymbolTableNode", "kind": "Gdef", "node": {".class": "FuncDef", "arg_kinds": [0], "arg_names": ["clk_id"], "flags": ["is_conditional"], "fullname": "time.clock_getres", "name": "clock_getres", "type": {".class": "CallableType", "arg_kinds": [0], "arg_names": ["clk_id"], "arg_types": ["builtins.int"], "bound_args": [], "def_extras": {"first_arg": null}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "clock_getres", "ret_type": "builtins.float", "variables": []}}}, "clock_gettime": {".class": "SymbolTableNode", "kind": "Gdef", "node": {".class": "FuncDef", "arg_kinds": [0], "arg_names": ["clk_id"], "flags": ["is_conditional"], "fullname": "time.clock_gettime", "name": "clock_gettime", "type": {".class": "CallableType", "arg_kinds": [0], "arg_names": ["clk_id"], "arg_types": ["builtins.int"], "bound_args": [], "def_extras": {"first_arg": null}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "clock_gettime", "ret_type": "builtins.float", "variables": []}}}, "clock_gettime_ns": {".class": "SymbolTableNode", "kind": "Gdef", "node": {".class": "FuncDef", "arg_kinds": [0], "arg_names": ["clock_id"], "flags": ["is_conditional"], "fullname": "time.clock_gettime_ns", "name": "clock_gettime_ns", "type": {".class": "CallableType", "arg_kinds": [0], "arg_names": ["clock_id"], "arg_types": ["builtins.int"], "bound_args": [], "def_extras": {"first_arg": null}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "clock_gettime_ns", "ret_type": "builtins.int", "variables": []}}}, "clock_settime": {".class": "SymbolTableNode", "kind": "Gdef", "node": {".class": "FuncDef", "arg_kinds": [0, 0], "arg_names": ["clk_id", "time"], "flags": ["is_conditional"], "fullname": "time.clock_settime", "name": "clock_settime", "type": {".class": "CallableType", "arg_kinds": [0, 0], "arg_names": ["clk_id", "time"], "arg_types": ["builtins.int", "builtins.float"], "bound_args": [], "def_extras": {"first_arg": null}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "clock_settime", "ret_type": {".class": "NoneTyp"}, "variables": []}}}, "clock_settime_ns": {".class": "SymbolTableNode", "kind": "Gdef", "node": {".class": "FuncDef", "arg_kinds": [0, 0], "arg_names": ["clock_id", "time"], "flags": ["is_conditional"], "fullname": "time.clock_settime_ns", "name": "clock_settime_ns", "type": {".class": "CallableType", "arg_kinds": [0, 0], "arg_names": ["clock_id", "time"], "arg_types": ["builtins.int", "builtins.int"], "bound_args": [], "def_extras": {"first_arg": null}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "clock_settime_ns", "ret_type": "builtins.int", "variables": []}}}, "ctime": {".class": "SymbolTableNode", "kind": "Gdef", "node": {".class": "FuncDef", "arg_kinds": [1], "arg_names": ["secs"], "flags": [], "fullname": "time.ctime", "name": "ctime", "type": {".class": "CallableType", "arg_kinds": [1], "arg_names": ["secs"], "arg_types": [{".class": "UnionType", "items": ["builtins.float", {".class": "NoneTyp"}]}], "bound_args": [], "def_extras": {"first_arg": null}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "ctime", "ret_type": "builtins.str", "variables": []}}}, "daylight": {".class": "SymbolTableNode", "kind": "Gdef", "node": {".class": "Var", "flags": [], "fullname": "time.daylight", "name": "daylight", "type": "builtins.int"}}, "get_clock_info": {".class": "SymbolTableNode", "kind": "Gdef", "node": {".class": "FuncDef", "arg_kinds": [0], "arg_names": ["name"], "flags": ["is_conditional"], "fullname": "time.get_clock_info", "name": "get_clock_info", "type": {".class": "CallableType", "arg_kinds": [0], "arg_names": ["name"], "arg_types": ["builtins.str"], "bound_args": [], "def_extras": {"first_arg": null}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "get_clock_info", "ret_type": "types.SimpleNamespace", "variables": []}}}, "gmtime": {".class": "SymbolTableNode", "kind": "Gdef", "node": {".class": "FuncDef", "arg_kinds": [1], "arg_names": ["secs"], "flags": [], "fullname": "time.gmtime", "name": "gmtime", "type": {".class": "CallableType", "arg_kinds": [1], "arg_names": ["secs"], "arg_types": [{".class": "UnionType", "items": ["builtins.float", {".class": "NoneTyp"}]}], "bound_args": [], "def_extras": {"first_arg": null}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "gmtime", "ret_type": {".class": "TupleType", "fallback": "time.struct_time", "implicit": false, "items": ["builtins.int", "builtins.int", "builtins.int", "builtins.int", "builtins.int", "builtins.int", "builtins.int", "builtins.int", "builtins.int", "builtins.str", "builtins.int"]}, "variables": []}}}, "localtime": {".class": "SymbolTableNode", "kind": "Gdef", "node": {".class": "FuncDef", "arg_kinds": [1], "arg_names": ["secs"], "flags": [], "fullname": "time.localtime", "name": "localtime", "type": {".class": "CallableType", "arg_kinds": [1], "arg_names": ["secs"], "arg_types": [{".class": "UnionType", "items": ["builtins.float", {".class": "NoneTyp"}]}], "bound_args": [], "def_extras": {"first_arg": null}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "localtime", "ret_type": {".class": "TupleType", "fallback": "time.struct_time", "implicit": false, "items": ["builtins.int", "builtins.int", "builtins.int", "builtins.int", "builtins.int", "builtins.int", "builtins.int", "builtins.int", "builtins.int", "builtins.str", "builtins.int"]}, "variables": []}}}, "mktime": {".class": "SymbolTableNode", "kind": "Gdef", "node": {".class": "FuncDef", "arg_kinds": [0], "arg_names": ["t"], "flags": [], "fullname": "time.mktime", "name": "mktime", "type": {".class": "CallableType", "arg_kinds": [0], "arg_names": ["t"], "arg_types": [{".class": "UnionType", "items": [{".class": "TupleType", "fallback": {".class": "Instance", "args": [{".class": "AnyType", "missing_import_name": null, "source_any": null, "type_of_any": 6}], "type_ref": "builtins.tuple"}, "implicit": false, "items": ["builtins.int", "builtins.int", "builtins.int", "builtins.int", "builtins.int", "builtins.int", "builtins.int", "builtins.int", "builtins.int"]}, {".class": "TupleType", "fallback": "time.struct_time", "implicit": false, "items": ["builtins.int", "builtins.int", "builtins.int", "builtins.int", "builtins.int", "builtins.int", "builtins.int", "builtins.int", "builtins.int", "builtins.str", "builtins.int"]}]}], "bound_args": [], "def_extras": {"first_arg": null}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "mktime", "ret_type": "builtins.float", "variables": []}}}, "monotonic": {".class": "SymbolTableNode", "kind": "Gdef", "node": {".class": "FuncDef", "arg_kinds": [], "arg_names": [], "flags": ["is_conditional"], "fullname": "time.monotonic", "name": "monotonic", "type": {".class": "CallableType", "arg_kinds": [], "arg_names": [], "arg_types": [], "bound_args": [], "def_extras": {"first_arg": null}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "monotonic", "ret_type": "builtins.float", "variables": []}}}, "monotonic_ns": {".class": "SymbolTableNode", "kind": "Gdef", "node": {".class": "FuncDef", "arg_kinds": [], "arg_names": [], "flags": ["is_conditional"], "fullname": "time.monotonic_ns", "name": "monotonic_ns", "type": {".class": "CallableType", "arg_kinds": [], "arg_names": [], "arg_types": [], "bound_args": [], "def_extras": {"first_arg": null}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "monotonic_ns", "ret_type": "builtins.int", "variables": []}}}, "perf_counter": {".class": "SymbolTableNode", "kind": "Gdef", "node": {".class": "FuncDef", "arg_kinds": [], "arg_names": [], "flags": ["is_conditional"], "fullname": "time.perf_counter", "name": "perf_counter", "type": {".class": "CallableType", "arg_kinds": [], "arg_names": [], "arg_types": [], "bound_args": [], "def_extras": {"first_arg": null}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "perf_counter", "ret_type": "builtins.float", "variables": []}}}, "perf_counter_ns": {".class": "SymbolTableNode", "kind": "Gdef", "node": {".class": "FuncDef", "arg_kinds": [], "arg_names": [], "flags": ["is_conditional"], "fullname": "time.perf_counter_ns", "name": "perf_counter_ns", "type": {".class": "CallableType", "arg_kinds": [], "arg_names": [], "arg_types": [], "bound_args": [], "def_extras": {"first_arg": null}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "perf_counter_ns", "ret_type": "builtins.int", "variables": []}}}, "process_time": {".class": "SymbolTableNode", "kind": "Gdef", "node": {".class": "FuncDef", "arg_kinds": [], "arg_names": [], "flags": ["is_conditional"], "fullname": "time.process_time", "name": "process_time", "type": {".class": "CallableType", "arg_kinds": [], "arg_names": [], "arg_types": [], "bound_args": [], "def_extras": {"first_arg": null}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "process_time", "ret_type": "builtins.float", "variables": []}}}, "process_time_ns": {".class": "SymbolTableNode", "kind": "Gdef", "node": {".class": "FuncDef", "arg_kinds": [], "arg_names": [], "flags": ["is_conditional"], "fullname": "time.process_time_ns", "name": "process_time_ns", "type": {".class": "CallableType", "arg_kinds": [], "arg_names": [], "arg_types": [], "bound_args": [], "def_extras": {"first_arg": null}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "process_time_ns", "ret_type": "builtins.int", "variables": []}}}, "sleep": {".class": "SymbolTableNode", "kind": "Gdef", "node": {".class": "FuncDef", "arg_kinds": [0], "arg_names": ["secs"], "flags": [], "fullname": "time.sleep", "name": "sleep", "type": {".class": "CallableType", "arg_kinds": [0], "arg_names": ["secs"], "arg_types": ["builtins.float"], "bound_args": [], "def_extras": {"first_arg": null}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "sleep", "ret_type": {".class": "NoneTyp"}, "variables": []}}}, "strftime": {".class": "SymbolTableNode", "kind": "Gdef", "node": {".class": "FuncDef", "arg_kinds": [0, 1], "arg_names": ["format", "t"], "flags": [], "fullname": "time.strftime", "name": "strftime", "type": {".class": "CallableType", "arg_kinds": [0, 1], "arg_names": ["format", "t"], "arg_types": ["builtins.str", {".class": "UnionType", "items": [{".class": "TupleType", "fallback": {".class": "Instance", "args": [{".class": "AnyType", "missing_import_name": null, "source_any": null, "type_of_any": 6}], "type_ref": "builtins.tuple"}, "implicit": false, "items": ["builtins.int", "builtins.int", "builtins.int", "builtins.int", "builtins.int", "builtins.int", "builtins.int", "builtins.int", "builtins.int"]}, {".class": "TupleType", "fallback": "time.struct_time", "implicit": false, "items": ["builtins.int", "builtins.int", "builtins.int", "builtins.int", "builtins.int", "builtins.int", "builtins.int", "builtins.int", "builtins.int", "builtins.str", "builtins.int"]}]}], "bound_args": [], "def_extras": {"first_arg": null}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "strftime", "ret_type": "builtins.str", "variables": []}}}, "strptime": {".class": "SymbolTableNode", "kind": "Gdef", "node": {".class": "FuncDef", "arg_kinds": [0, 1], "arg_names": ["string", "format"], "flags": [], "fullname": "time.strptime", "name": "strptime", "type": {".class": "CallableType", "arg_kinds": [0, 1], "arg_names": ["string", "format"], "arg_types": ["builtins.str", "builtins.str"], "bound_args": [], "def_extras": {"first_arg": null}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "strptime", "ret_type": {".class": "TupleType", "fallback": "time.struct_time", "implicit": false, "items": ["builtins.int", "builtins.int", "builtins.int", "builtins.int", "builtins.int", "builtins.int", "builtins.int", "builtins.int", "builtins.int", "builtins.str", "builtins.int"]}, "variables": []}}}, "struct_time": {".class": "SymbolTableNode", "kind": "Gdef", "node": {".class": "TypeInfo", "_promote": null, "abstract_attributes": [], "bases": ["time._struct_time@34"], "declared_metaclass": null, "defn": {".class": "ClassDef", "fullname": "time.struct_time", "name": "struct_time", "type_vars": []}, "flags": [], "fullname": "time.struct_time", "metaclass_type": "abc.ABCMeta", "metadata": {}, "module_name": "time", "mro": ["time.struct_time", "time._struct_time@34", "builtins.tuple", "typing.Sequence", "typing.Collection", "typing.Iterable", "typing.Container", "typing.Reversible", "builtins.object"], "names": {".class": "SymbolTable", "__init__": {".class": "SymbolTableNode", "kind": "Mdef", "node": {".class": "FuncDef", "arg_kinds": [0, 0, 1], "arg_names": ["self", "o", "_arg"], "flags": [], "fullname": "time.struct_time.__init__", "name": "__init__", "type": {".class": "CallableType", "arg_kinds": [0, 0, 1], "arg_names": ["self", "o", "_arg"], "arg_types": [{".class": "TupleType", "fallback": "time.struct_time", "implicit": false, "items": ["builtins.int", "builtins.int", "builtins.int", "builtins.int", "builtins.int", "builtins.int", "builtins.int", "builtins.int", "builtins.int", "builtins.str", "builtins.int"]}, {".class": "UnionType", "items": [{".class": "TupleType", "fallback": {".class": "Instance", "args": [{".class": "AnyType", "missing_import_name": null, "source_any": null, "type_of_any": 6}], "type_ref": "builtins.tuple"}, "implicit": false, "items": ["builtins.int", "builtins.int", "builtins.int", "builtins.int", "builtins.int", "builtins.int", "builtins.int", "builtins.int", "builtins.int"]}, {".class": "TupleType", "fallback": {".class": "Instance", "args": [{".class": "AnyType", "missing_import_name": null, "source_any": null, "type_of_any": 6}], "type_ref": "builtins.tuple"}, "implicit": false, "items": ["builtins.int", "builtins.int", "builtins.int", "builtins.int", "builtins.int", "builtins.int", "builtins.int", "builtins.int", "builtins.int", "builtins.str"]}, {".class": "TupleType", "fallback": {".class": "Instance", "args": [{".class": "AnyType", "missing_import_name": null, "source_any": null, "type_of_any": 6}], "type_ref": "builtins.tuple"}, "implicit": false, "items": ["builtins.int", "builtins.int", "builtins.int", "builtins.int", "builtins.int", "builtins.int", "builtins.int", "builtins.int", "builtins.int", "builtins.str", "builtins.int"]}]}, {".class": "AnyType", "missing_import_name": null, "source_any": null, "type_of_any": 2}], "bound_args": [], "def_extras": {"first_arg": "self"}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "__init__ of struct_time", "ret_type": {".class": "NoneTyp"}, "variables": []}}}, "__new__": {".class": "SymbolTableNode", "kind": "Mdef", "node": {".class": "FuncDef", "arg_kinds": [0, 0, 1], "arg_names": ["cls", "o", "_arg"], "flags": [], "fullname": "time.struct_time.__new__", "name": "__new__", "type": {".class": "CallableType", "arg_kinds": [0, 0, 1], "arg_names": ["cls", "o", "_arg"], "arg_types": [{".class": "TypeType", "item": {".class": "TupleType", "fallback": "time.struct_time", "implicit": false, "items": ["builtins.int", "builtins.int", "builtins.int", "builtins.int", "builtins.int", "builtins.int", "builtins.int", "builtins.int", "builtins.int", "builtins.str", "builtins.int"]}}, {".class": "UnionType", "items": [{".class": "TupleType", "fallback": {".class": "Instance", "args": [{".class": "AnyType", "missing_import_name": null, "source_any": null, "type_of_any": 6}], "type_ref": "builtins.tuple"}, "implicit": false, "items": ["builtins.int", "builtins.int", "builtins.int", "builtins.int", "builtins.int", "builtins.int", "builtins.int", "builtins.int", "builtins.int"]}, {".class": "TupleType", "fallback": {".class": "Instance", "args": [{".class": "AnyType", "missing_import_name": null, "source_any": null, "type_of_any": 6}], "type_ref": "builtins.tuple"}, "implicit": false, "items": ["builtins.int", "builtins.int", "builtins.int", "builtins.int", "builtins.int", "builtins.int", "builtins.int", "builtins.int", "builtins.int", "builtins.str"]}, {".class": "TupleType", "fallback": {".class": "Instance", "args": [{".class": "AnyType", "missing_import_name": null, "source_any": null, "type_of_any": 6}], "type_ref": "builtins.tuple"}, "implicit": false, "items": ["builtins.int", "builtins.int", "builtins.int", "builtins.int", "builtins.int", "builtins.int", "builtins.int", "builtins.int", "builtins.int", "builtins.str", "builtins.int"]}]}, {".class": "AnyType", "missing_import_name": null, "source_any": null, "type_of_any": 2}], "bound_args": [], "def_extras": {"first_arg": "cls"}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "__new__ of struct_time", "ret_type": {".class": "TupleType", "fallback": "time.struct_time", "implicit": false, "items": ["builtins.int", "builtins.int", "builtins.int", "builtins.int", "builtins.int", "builtins.int", "builtins.int", "builtins.int", "builtins.int", "builtins.str", "builtins.int"]}, "variables": []}}}}, "tuple_type": {".class": "TupleType", "fallback": "time._struct_time@34", "implicit": false, "items": ["builtins.int", "builtins.int", "builtins.int", "builtins.int", "builtins.int", "builtins.int", "builtins.int", "builtins.int", "builtins.int", "builtins.str", "builtins.int"]}, "type_vars": [], "typeddict_type": null}}, "sys": {".class": "SymbolTableNode", "cross_ref": "sys", "kind": "Gdef", "module_hidden": true, "module_public": false}, "thread_time": {".class": "SymbolTableNode", "kind": "Gdef", "node": {".class": "FuncDef", "arg_kinds": [], "arg_names": [], "flags": ["is_conditional"], "fullname": "time.thread_time", "name": "thread_time", "type": {".class": "CallableType", "arg_kinds": [], "arg_names": [], "arg_types": [], "bound_args": [], "def_extras": {"first_arg": null}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "thread_time", "ret_type": "builtins.float", "variables": []}}}, "thread_time_ns": {".class": "SymbolTableNode", "kind": "Gdef", "node": {".class": "FuncDef", "arg_kinds": [], "arg_names": [], "flags": ["is_conditional"], "fullname": "time.thread_time_ns", "name": "thread_time_ns", "type": {".class": "CallableType", "arg_kinds": [], "arg_names": [], "arg_types": [], "bound_args": [], "def_extras": {"first_arg": null}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "thread_time_ns", "ret_type": "builtins.int", "variables": []}}}, "time": {".class": "SymbolTableNode", "kind": "Gdef", "node": {".class": "FuncDef", "arg_kinds": [], "arg_names": [], "flags": [], "fullname": "time.time", "name": "time", "type": {".class": "CallableType", "arg_kinds": [], "arg_names": [], "arg_types": [], "bound_args": [], "def_extras": {"first_arg": null}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "time", "ret_type": "builtins.float", "variables": []}}}, "time_ns": {".class": "SymbolTableNode", "kind": "Gdef", "node": {".class": "FuncDef", "arg_kinds": [], "arg_names": [], "flags": ["is_conditional"], "fullname": "time.time_ns", "name": "time_ns", "type": {".class": "CallableType", "arg_kinds": [], "arg_names": [], "arg_types": [], "bound_args": [], "def_extras": {"first_arg": null}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "time_ns", "ret_type": "builtins.int", "variables": []}}}, "timezone": {".class": "SymbolTableNode", "kind": "Gdef", "node": {".class": "Var", "flags": [], "fullname": "time.timezone", "name": "timezone", "type": "builtins.int"}}, "tzname": {".class": "SymbolTableNode", "kind": "Gdef", "node": {".class": "Var", "flags": [], "fullname": "time.tzname", "name": "tzname", "type": {".class": "TupleType", "fallback": {".class": "Instance", "args": [{".class": "AnyType", "missing_import_name": null, "source_any": null, "type_of_any": 6}], "type_ref": "builtins.tuple"}, "implicit": false, "items": ["builtins.str", "builtins.str"]}}}, "tzset": {".class": "SymbolTableNode", "kind": "Gdef", "node": {".class": "FuncDef", "arg_kinds": [], "arg_names": [], "flags": ["is_conditional"], "fullname": "time.tzset", "name": "tzset", "type": {".class": "CallableType", "arg_kinds": [], "arg_names": [], "arg_types": [], "bound_args": [], "def_extras": {"first_arg": null}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "tzset", "ret_type": {".class": "NoneTyp"}, "variables": []}}}}, "path": "/usr/lib/python3/dist-packages/mypy/typeshed/stdlib/2and3/time.pyi"}
\ No newline at end of file
diff --git a/Postgres/StressTests/.mypy_cache/3.7/time.meta.json b/Postgres/StressTests/.mypy_cache/3.7/time.meta.json
deleted file mode 100644
index 911ae95..0000000
--- a/Postgres/StressTests/.mypy_cache/3.7/time.meta.json
+++ /dev/null
@@ -1 +0,0 @@
-{"child_modules": [], "data_mtime": 1553688972, "dep_lines": [4, 5, 7, 1, 1], "dep_prios": [10, 5, 5, 5, 30], "dependencies": ["sys", "typing", "types", "builtins", "abc"], "hash": "d0848c9c98081f61adce6cdcd1ea12f5", "id": "time", "ignore_all": true, "interface_hash": "1d9238f8ee2f32b817254cca8e7b42c6", "mtime": 1549659920, "options": {"allow_redefinition": false, "allow_untyped_globals": false, "always_false": [], "always_true": [], "bazel": false, "check_untyped_defs": false, "disallow_any_decorated": false, "disallow_any_explicit": false, "disallow_any_expr": false, "disallow_any_generics": false, "disallow_any_unimported": false, "disallow_incomplete_defs": false, "disallow_subclassing_any": false, "disallow_untyped_calls": false, "disallow_untyped_decorators": false, "disallow_untyped_defs": false, "follow_imports": "normal", "follow_imports_for_stubs": false, "ignore_errors": false, "ignore_missing_imports": false, "local_partial_types": false, "mypyc": false, "new_semantic_analyzer": false, "no_implicit_optional": false, "platform": "linux", "plugins": [], "show_none_errors": true, "strict_optional": true, "strict_optional_whitelist": null, "warn_no_return": true, "warn_return_any": false, "warn_unused_ignores": false}, "path": "/usr/lib/python3/dist-packages/mypy/typeshed/stdlib/2and3/time.pyi", "size": 3866, "suppressed": [], "version_id": "0.670"}
\ No newline at end of file
diff --git a/Postgres/StressTests/.mypy_cache/3.7/types.data.json b/Postgres/StressTests/.mypy_cache/3.7/types.data.json
deleted file mode 100644
index df26f8b..0000000
--- a/Postgres/StressTests/.mypy_cache/3.7/types.data.json
+++ /dev/null
@@ -1 +0,0 @@
-{".class": "MypyFile", "_fullname": "types", "is_partial_stub_package": false, "is_stub": true, "names": {".class": "SymbolTable", "Any": {".class": "SymbolTableNode", "cross_ref": "typing.Any", "kind": "Gdef", "module_hidden": true, "module_public": false}, "AsyncGeneratorType": {".class": "SymbolTableNode", "kind": "Gdef", "node": {".class": "TypeInfo", "_promote": null, "abstract_attributes": [], "bases": ["builtins.object"], "declared_metaclass": null, "defn": {".class": "ClassDef", "fullname": "types.AsyncGeneratorType", "name": "AsyncGeneratorType", "type_vars": [{".class": "TypeVarDef", "fullname": "types._T_co", "id": 1, "name": "_T_co", "upper_bound": "builtins.object", "values": [], "variance": 1}, {".class": "TypeVarDef", "fullname": "types._T_contra", "id": 2, "name": "_T_contra", "upper_bound": "builtins.object", "values": [], "variance": 2}]}, "flags": [], "fullname": "types.AsyncGeneratorType", "metaclass_type": null, "metadata": {}, "module_name": "types", "mro": ["types.AsyncGeneratorType", "builtins.object"], "names": {".class": "SymbolTable", "__aiter__": {".class": "SymbolTableNode", "kind": "Mdef", "node": {".class": "FuncDef", "arg_kinds": [0], "arg_names": ["self"], "flags": [], "fullname": "types.AsyncGeneratorType.__aiter__", "name": "__aiter__", "type": {".class": "CallableType", "arg_kinds": [0], "arg_names": ["self"], "arg_types": [{".class": "Instance", "args": [{".class": "TypeVarType", "fullname": "types._T_co", "id": 1, "name": "_T_co", "upper_bound": "builtins.object", "values": [], "variance": 1}, {".class": "TypeVarType", "fullname": "types._T_contra", "id": 2, "name": "_T_contra", "upper_bound": "builtins.object", "values": [], "variance": 2}], "type_ref": "types.AsyncGeneratorType"}], "bound_args": [], "def_extras": {"first_arg": "self"}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "__aiter__ of AsyncGeneratorType", "ret_type": {".class": "Instance", "args": [{".class": "Instance", "args": [{".class": "TypeVarType", "fullname": "types._T_co", "id": 1, "name": "_T_co", "upper_bound": "builtins.object", "values": [], "variance": 1}, {".class": "TypeVarType", "fullname": "types._T_contra", "id": 2, "name": "_T_contra", "upper_bound": "builtins.object", "values": [], "variance": 2}], "type_ref": "types.AsyncGeneratorType"}], "type_ref": "typing.Awaitable"}, "variables": []}}}, "__anext__": {".class": "SymbolTableNode", "kind": "Mdef", "node": {".class": "FuncDef", "arg_kinds": [0], "arg_names": ["self"], "flags": [], "fullname": "types.AsyncGeneratorType.__anext__", "name": "__anext__", "type": {".class": "CallableType", "arg_kinds": [0], "arg_names": ["self"], "arg_types": [{".class": "Instance", "args": [{".class": "TypeVarType", "fullname": "types._T_co", "id": 1, "name": "_T_co", "upper_bound": "builtins.object", "values": [], "variance": 1}, {".class": "TypeVarType", "fullname": "types._T_contra", "id": 2, "name": "_T_contra", "upper_bound": "builtins.object", "values": [], "variance": 2}], "type_ref": "types.AsyncGeneratorType"}], "bound_args": [], "def_extras": {"first_arg": "self"}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "__anext__ of AsyncGeneratorType", "ret_type": {".class": "Instance", "args": [{".class": "TypeVarType", "fullname": "types._T_co", "id": 1, "name": "_T_co", "upper_bound": "builtins.object", "values": [], "variance": 1}], "type_ref": "typing.Awaitable"}, "variables": []}}}, "aclose": {".class": "SymbolTableNode", "kind": "Mdef", "node": {".class": "FuncDef", "arg_kinds": [0], "arg_names": ["self"], "flags": [], "fullname": "types.AsyncGeneratorType.aclose", "name": "aclose", "type": {".class": "CallableType", "arg_kinds": [0], "arg_names": ["self"], "arg_types": [{".class": "Instance", "args": [{".class": "TypeVarType", "fullname": "types._T_co", "id": 1, "name": "_T_co", "upper_bound": "builtins.object", "values": [], "variance": 1}, {".class": "TypeVarType", "fullname": "types._T_contra", "id": 2, "name": "_T_contra", "upper_bound": "builtins.object", "values": [], "variance": 2}], "type_ref": "types.AsyncGeneratorType"}], "bound_args": [], "def_extras": {"first_arg": "self"}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "aclose of AsyncGeneratorType", "ret_type": {".class": "Instance", "args": [{".class": "TypeVarType", "fullname": "types._T_co", "id": 1, "name": "_T_co", "upper_bound": "builtins.object", "values": [], "variance": 1}], "type_ref": "typing.Awaitable"}, "variables": []}}}, "ag_await": {".class": "SymbolTableNode", "kind": "Mdef", "node": {".class": "Var", "flags": ["is_initialized_in_class"], "fullname": "types.AsyncGeneratorType.ag_await", "name": "ag_await", "type": {".class": "UnionType", "items": [{".class": "Instance", "args": [{".class": "AnyType", "missing_import_name": null, "source_any": null, "type_of_any": 2}], "type_ref": "typing.Awaitable"}, {".class": "NoneTyp"}]}}}, "ag_code": {".class": "SymbolTableNode", "kind": "Mdef", "node": {".class": "Var", "flags": ["is_initialized_in_class"], "fullname": "types.AsyncGeneratorType.ag_code", "name": "ag_code", "type": "types.CodeType"}}, "ag_frame": {".class": "SymbolTableNode", "kind": "Mdef", "node": {".class": "Var", "flags": ["is_initialized_in_class"], "fullname": "types.AsyncGeneratorType.ag_frame", "name": "ag_frame", "type": "types.FrameType"}}, "ag_running": {".class": "SymbolTableNode", "kind": "Mdef", "node": {".class": "Var", "flags": ["is_initialized_in_class"], "fullname": "types.AsyncGeneratorType.ag_running", "name": "ag_running", "type": "builtins.bool"}}, "asend": {".class": "SymbolTableNode", "kind": "Mdef", "node": {".class": "FuncDef", "arg_kinds": [0, 0], "arg_names": ["self", "val"], "flags": [], "fullname": "types.AsyncGeneratorType.asend", "name": "asend", "type": {".class": "CallableType", "arg_kinds": [0, 0], "arg_names": ["self", "val"], "arg_types": [{".class": "Instance", "args": [{".class": "TypeVarType", "fullname": "types._T_co", "id": 1, "name": "_T_co", "upper_bound": "builtins.object", "values": [], "variance": 1}, {".class": "TypeVarType", "fullname": "types._T_contra", "id": 2, "name": "_T_contra", "upper_bound": "builtins.object", "values": [], "variance": 2}], "type_ref": "types.AsyncGeneratorType"}, {".class": "TypeVarType", "fullname": "types._T_contra", "id": 2, "name": "_T_contra", "upper_bound": "builtins.object", "values": [], "variance": 2}], "bound_args": [], "def_extras": {"first_arg": "self"}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "asend of AsyncGeneratorType", "ret_type": {".class": "Instance", "args": [{".class": "TypeVarType", "fullname": "types._T_co", "id": 1, "name": "_T_co", "upper_bound": "builtins.object", "values": [], "variance": 1}], "type_ref": "typing.Awaitable"}, "variables": []}}}, "athrow": {".class": "SymbolTableNode", "kind": "Mdef", "node": {".class": "OverloadedFuncDef", "flags": [], "fullname": "types.AsyncGeneratorType.athrow", "impl": null, "items": [{".class": "Decorator", "func": {".class": "FuncDef", "arg_kinds": [0, 0], "arg_names": ["self", "val"], "flags": ["is_overload", "is_decorated"], "fullname": "types.AsyncGeneratorType.athrow", "name": "athrow", "type": {".class": "CallableType", "arg_kinds": [0, 0], "arg_names": ["self", "val"], "arg_types": [{".class": "Instance", "args": [{".class": "TypeVarType", "fullname": "types._T_co", "id": 1, "name": "_T_co", "upper_bound": "builtins.object", "values": [], "variance": 1}, {".class": "TypeVarType", "fullname": "types._T_contra", "id": 2, "name": "_T_contra", "upper_bound": "builtins.object", "values": [], "variance": 2}], "type_ref": "types.AsyncGeneratorType"}, "builtins.BaseException"], "bound_args": [], "def_extras": {"first_arg": "self"}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "athrow of AsyncGeneratorType", "ret_type": {".class": "Instance", "args": [{".class": "TypeVarType", "fullname": "types._T_co", "id": 1, "name": "_T_co", "upper_bound": "builtins.object", "values": [], "variance": 1}], "type_ref": "typing.Awaitable"}, "variables": []}}, "is_overload": true, "var": {".class": "Var", "flags": [], "fullname": null, "name": "athrow", "type": null}}, {".class": "Decorator", "func": {".class": "FuncDef", "arg_kinds": [0, 0, 0, 1], "arg_names": ["self", "typ", "val", "tb"], "flags": ["is_overload", "is_decorated"], "fullname": "types.AsyncGeneratorType.athrow", "name": "athrow", "type": {".class": "CallableType", "arg_kinds": [0, 0, 0, 1], "arg_names": ["self", "typ", "val", "tb"], "arg_types": [{".class": "Instance", "args": [{".class": "TypeVarType", "fullname": "types._T_co", "id": 1, "name": "_T_co", "upper_bound": "builtins.object", "values": [], "variance": 1}, {".class": "TypeVarType", "fullname": "types._T_contra", "id": 2, "name": "_T_contra", "upper_bound": "builtins.object", "values": [], "variance": 2}], "type_ref": "types.AsyncGeneratorType"}, {".class": "TypeType", "item": "builtins.BaseException"}, "builtins.BaseException", "types.TracebackType"], "bound_args": [], "def_extras": {"first_arg": "self"}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "athrow of AsyncGeneratorType", "ret_type": {".class": "Instance", "args": [{".class": "TypeVarType", "fullname": "types._T_co", "id": 1, "name": "_T_co", "upper_bound": "builtins.object", "values": [], "variance": 1}], "type_ref": "typing.Awaitable"}, "variables": []}}, "is_overload": true, "var": {".class": "Var", "flags": [], "fullname": null, "name": "athrow", "type": null}}], "type": {".class": "Overloaded", "items": [{".class": "CallableType", "arg_kinds": [0, 0], "arg_names": ["self", "val"], "arg_types": [{".class": "Instance", "args": [{".class": "TypeVarType", "fullname": "types._T_co", "id": 1, "name": "_T_co", "upper_bound": "builtins.object", "values": [], "variance": 1}, {".class": "TypeVarType", "fullname": "types._T_contra", "id": 2, "name": "_T_contra", "upper_bound": "builtins.object", "values": [], "variance": 2}], "type_ref": "types.AsyncGeneratorType"}, "builtins.BaseException"], "bound_args": [], "def_extras": {"first_arg": "self"}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "athrow of AsyncGeneratorType", "ret_type": {".class": "Instance", "args": [{".class": "TypeVarType", "fullname": "types._T_co", "id": 1, "name": "_T_co", "upper_bound": "builtins.object", "values": [], "variance": 1}], "type_ref": "typing.Awaitable"}, "variables": []}, {".class": "CallableType", "arg_kinds": [0, 0, 0, 1], "arg_names": ["self", "typ", "val", "tb"], "arg_types": [{".class": "Instance", "args": [{".class": "TypeVarType", "fullname": "types._T_co", "id": 1, "name": "_T_co", "upper_bound": "builtins.object", "values": [], "variance": 1}, {".class": "TypeVarType", "fullname": "types._T_contra", "id": 2, "name": "_T_contra", "upper_bound": "builtins.object", "values": [], "variance": 2}], "type_ref": "types.AsyncGeneratorType"}, {".class": "TypeType", "item": "builtins.BaseException"}, "builtins.BaseException", "types.TracebackType"], "bound_args": [], "def_extras": {"first_arg": "self"}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "athrow of AsyncGeneratorType", "ret_type": {".class": "Instance", "args": [{".class": "TypeVarType", "fullname": "types._T_co", "id": 1, "name": "_T_co", "upper_bound": "builtins.object", "values": [], "variance": 1}], "type_ref": "typing.Awaitable"}, "variables": []}]}}}}, "tuple_type": null, "type_vars": ["_T_co", "_T_contra"], "typeddict_type": null}}, "Awaitable": {".class": "SymbolTableNode", "cross_ref": "typing.Awaitable", "kind": "Gdef", "module_hidden": true, "module_public": false}, "BuiltinFunctionType": {".class": "SymbolTableNode", "kind": "Gdef", "node": {".class": "TypeInfo", "_promote": null, "abstract_attributes": [], "bases": ["builtins.object"], "declared_metaclass": null, "defn": {".class": "ClassDef", "fullname": "types.BuiltinFunctionType", "name": "BuiltinFunctionType", "type_vars": []}, "flags": [], "fullname": "types.BuiltinFunctionType", "metaclass_type": null, "metadata": {}, "module_name": "types", "mro": ["types.BuiltinFunctionType", "builtins.object"], "names": {".class": "SymbolTable", "__call__": {".class": "SymbolTableNode", "kind": "Mdef", "node": {".class": "FuncDef", "arg_kinds": [0, 2, 4], "arg_names": ["self", "args", "kwargs"], "flags": [], "fullname": "types.BuiltinFunctionType.__call__", "name": "__call__", "type": {".class": "CallableType", "arg_kinds": [0, 2, 4], "arg_names": ["self", "args", "kwargs"], "arg_types": ["types.BuiltinFunctionType", {".class": "AnyType", "missing_import_name": null, "source_any": null, "type_of_any": 2}, {".class": "AnyType", "missing_import_name": null, "source_any": null, "type_of_any": 2}], "bound_args": [], "def_extras": {"first_arg": "self"}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "__call__ of BuiltinFunctionType", "ret_type": {".class": "AnyType", "missing_import_name": null, "source_any": null, "type_of_any": 2}, "variables": []}}}, "__name__": {".class": "SymbolTableNode", "kind": "Mdef", "node": {".class": "Var", "flags": ["is_initialized_in_class"], "fullname": "types.BuiltinFunctionType.__name__", "name": "__name__", "type": "builtins.str"}}, "__qualname__": {".class": "SymbolTableNode", "kind": "Mdef", "node": {".class": "Var", "flags": ["is_initialized_in_class"], "fullname": "types.BuiltinFunctionType.__qualname__", "name": "__qualname__", "type": "builtins.str"}}, "__self__": {".class": "SymbolTableNode", "kind": "Mdef", "node": {".class": "Var", "flags": ["is_initialized_in_class"], "fullname": "types.BuiltinFunctionType.__self__", "name": "__self__", "type": {".class": "UnionType", "items": ["builtins.object", "_importlib_modulespec.ModuleType"]}}}}, "tuple_type": null, "type_vars": [], "typeddict_type": null}}, "BuiltinMethodType": {".class": "SymbolTableNode", "kind": "Gdef", "node": {".class": "TypeAlias", "alias_tvars": [], "column": 0, "fullname": "types.BuiltinMethodType", "line": 155, "no_args": true, "normalized": false, "target": "types.BuiltinFunctionType"}}, "Callable": {".class": "SymbolTableNode", "cross_ref": "typing.Callable", "kind": "Gdef", "module_hidden": true, "module_public": false}, "CodeType": {".class": "SymbolTableNode", "kind": "Gdef", "node": {".class": "TypeInfo", "_promote": null, "abstract_attributes": [], "bases": ["builtins.object"], "declared_metaclass": null, "defn": {".class": "ClassDef", "fullname": "types.CodeType", "name": "CodeType", "type_vars": []}, "flags": [], "fullname": "types.CodeType", "metaclass_type": null, "metadata": {}, "module_name": "types", "mro": ["types.CodeType", "builtins.object"], "names": {".class": "SymbolTable", "__init__": {".class": "SymbolTableNode", "kind": "Mdef", "node": {".class": "FuncDef", "arg_kinds": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1], "arg_names": ["self", "argcount", "kwonlyargcount", "nlocals", "stacksize", "flags", "codestring", "constants", "names", "varnames", "filename", "name", "firstlineno", "lnotab", "freevars", "cellvars"], "flags": [], "fullname": "types.CodeType.__init__", "name": "__init__", "type": {".class": "CallableType", "arg_kinds": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1], "arg_names": ["self", "argcount", "kwonlyargcount", "nlocals", "stacksize", "flags", "codestring", "constants", "names", "varnames", "filename", "name", "firstlineno", "lnotab", "freevars", "cellvars"], "arg_types": ["types.CodeType", "builtins.int", "builtins.int", "builtins.int", "builtins.int", "builtins.int", "builtins.bytes", {".class": "Instance", "args": [{".class": "AnyType", "missing_import_name": null, "source_any": null, "type_of_any": 2}], "type_ref": "builtins.tuple"}, {".class": "Instance", "args": ["builtins.str"], "type_ref": "builtins.tuple"}, {".class": "Instance", "args": ["builtins.str"], "type_ref": "builtins.tuple"}, "builtins.str", "builtins.str", "builtins.int", "builtins.bytes", {".class": "Instance", "args": ["builtins.str"], "type_ref": "builtins.tuple"}, {".class": "Instance", "args": ["builtins.str"], "type_ref": "builtins.tuple"}], "bound_args": [], "def_extras": {"first_arg": "self"}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "__init__ of CodeType", "ret_type": {".class": "NoneTyp"}, "variables": []}}}, "co_argcount": {".class": "SymbolTableNode", "kind": "Mdef", "node": {".class": "Var", "flags": ["is_initialized_in_class"], "fullname": "types.CodeType.co_argcount", "name": "co_argcount", "type": "builtins.int"}}, "co_cellvars": {".class": "SymbolTableNode", "kind": "Mdef", "node": {".class": "Var", "flags": ["is_initialized_in_class"], "fullname": "types.CodeType.co_cellvars", "name": "co_cellvars", "type": {".class": "Instance", "args": ["builtins.str"], "type_ref": "builtins.tuple"}}}, "co_code": {".class": "SymbolTableNode", "kind": "Mdef", "node": {".class": "Var", "flags": ["is_initialized_in_class"], "fullname": "types.CodeType.co_code", "name": "co_code", "type": "builtins.bytes"}}, "co_consts": {".class": "SymbolTableNode", "kind": "Mdef", "node": {".class": "Var", "flags": ["is_initialized_in_class"], "fullname": "types.CodeType.co_consts", "name": "co_consts", "type": {".class": "Instance", "args": [{".class": "AnyType", "missing_import_name": null, "source_any": null, "type_of_any": 2}], "type_ref": "builtins.tuple"}}}, "co_filename": {".class": "SymbolTableNode", "kind": "Mdef", "node": {".class": "Var", "flags": ["is_initialized_in_class"], "fullname": "types.CodeType.co_filename", "name": "co_filename", "type": "builtins.str"}}, "co_firstlineno": {".class": "SymbolTableNode", "kind": "Mdef", "node": {".class": "Var", "flags": ["is_initialized_in_class"], "fullname": "types.CodeType.co_firstlineno", "name": "co_firstlineno", "type": "builtins.int"}}, "co_flags": {".class": "SymbolTableNode", "kind": "Mdef", "node": {".class": "Var", "flags": ["is_initialized_in_class"], "fullname": "types.CodeType.co_flags", "name": "co_flags", "type": "builtins.int"}}, "co_freevars": {".class": "SymbolTableNode", "kind": "Mdef", "node": {".class": "Var", "flags": ["is_initialized_in_class"], "fullname": "types.CodeType.co_freevars", "name": "co_freevars", "type": {".class": "Instance", "args": ["builtins.str"], "type_ref": "builtins.tuple"}}}, "co_kwonlyargcount": {".class": "SymbolTableNode", "kind": "Mdef", "node": {".class": "Var", "flags": ["is_initialized_in_class"], "fullname": "types.CodeType.co_kwonlyargcount", "name": "co_kwonlyargcount", "type": "builtins.int"}}, "co_lnotab": {".class": "SymbolTableNode", "kind": "Mdef", "node": {".class": "Var", "flags": ["is_initialized_in_class"], "fullname": "types.CodeType.co_lnotab", "name": "co_lnotab", "type": "builtins.bytes"}}, "co_name": {".class": "SymbolTableNode", "kind": "Mdef", "node": {".class": "Var", "flags": ["is_initialized_in_class"], "fullname": "types.CodeType.co_name", "name": "co_name", "type": "builtins.str"}}, "co_names": {".class": "SymbolTableNode", "kind": "Mdef", "node": {".class": "Var", "flags": ["is_initialized_in_class"], "fullname": "types.CodeType.co_names", "name": "co_names", "type": {".class": "Instance", "args": ["builtins.str"], "type_ref": "builtins.tuple"}}}, "co_nlocals": {".class": "SymbolTableNode", "kind": "Mdef", "node": {".class": "Var", "flags": ["is_initialized_in_class"], "fullname": "types.CodeType.co_nlocals", "name": "co_nlocals", "type": "builtins.int"}}, "co_stacksize": {".class": "SymbolTableNode", "kind": "Mdef", "node": {".class": "Var", "flags": ["is_initialized_in_class"], "fullname": "types.CodeType.co_stacksize", "name": "co_stacksize", "type": "builtins.int"}}, "co_varnames": {".class": "SymbolTableNode", "kind": "Mdef", "node": {".class": "Var", "flags": ["is_initialized_in_class"], "fullname": "types.CodeType.co_varnames", "name": "co_varnames", "type": {".class": "Instance", "args": ["builtins.str"], "type_ref": "builtins.tuple"}}}}, "tuple_type": null, "type_vars": [], "typeddict_type": null}}, "CoroutineType": {".class": "SymbolTableNode", "kind": "Gdef", "node": {".class": "TypeInfo", "_promote": null, "abstract_attributes": [], "bases": ["builtins.object"], "declared_metaclass": null, "defn": {".class": "ClassDef", "fullname": "types.CoroutineType", "name": "CoroutineType", "type_vars": []}, "flags": [], "fullname": "types.CoroutineType", "metaclass_type": null, "metadata": {}, "module_name": "types", "mro": ["types.CoroutineType", "builtins.object"], "names": {".class": "SymbolTable", "close": {".class": "SymbolTableNode", "kind": "Mdef", "node": {".class": "FuncDef", "arg_kinds": [0], "arg_names": ["self"], "flags": [], "fullname": "types.CoroutineType.close", "name": "close", "type": {".class": "CallableType", "arg_kinds": [0], "arg_names": ["self"], "arg_types": ["types.CoroutineType"], "bound_args": [], "def_extras": {"first_arg": "self"}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "close of CoroutineType", "ret_type": {".class": "NoneTyp"}, "variables": []}}}, "cr_await": {".class": "SymbolTableNode", "kind": "Mdef", "node": {".class": "Var", "flags": ["is_initialized_in_class"], "fullname": "types.CoroutineType.cr_await", "name": "cr_await", "type": {".class": "UnionType", "items": [{".class": "AnyType", "missing_import_name": null, "source_any": null, "type_of_any": 2}, {".class": "NoneTyp"}]}}}, "cr_code": {".class": "SymbolTableNode", "kind": "Mdef", "node": {".class": "Var", "flags": ["is_initialized_in_class"], "fullname": "types.CoroutineType.cr_code", "name": "cr_code", "type": "types.CodeType"}}, "cr_frame": {".class": "SymbolTableNode", "kind": "Mdef", "node": {".class": "Var", "flags": ["is_initialized_in_class"], "fullname": "types.CoroutineType.cr_frame", "name": "cr_frame", "type": "types.FrameType"}}, "cr_running": {".class": "SymbolTableNode", "kind": "Mdef", "node": {".class": "Var", "flags": ["is_initialized_in_class"], "fullname": "types.CoroutineType.cr_running", "name": "cr_running", "type": "builtins.bool"}}, "send": {".class": "SymbolTableNode", "kind": "Mdef", "node": {".class": "FuncDef", "arg_kinds": [0, 0], "arg_names": ["self", "arg"], "flags": [], "fullname": "types.CoroutineType.send", "name": "send", "type": {".class": "CallableType", "arg_kinds": [0, 0], "arg_names": ["self", "arg"], "arg_types": ["types.CoroutineType", {".class": "AnyType", "missing_import_name": null, "source_any": null, "type_of_any": 2}], "bound_args": [], "def_extras": {"first_arg": "self"}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "send of CoroutineType", "ret_type": {".class": "AnyType", "missing_import_name": null, "source_any": null, "type_of_any": 2}, "variables": []}}}, "throw": {".class": "SymbolTableNode", "kind": "Mdef", "node": {".class": "OverloadedFuncDef", "flags": [], "fullname": "types.CoroutineType.throw", "impl": null, "items": [{".class": "Decorator", "func": {".class": "FuncDef", "arg_kinds": [0, 0], "arg_names": ["self", "val"], "flags": ["is_overload", "is_decorated"], "fullname": "types.CoroutineType.throw", "name": "throw", "type": {".class": "CallableType", "arg_kinds": [0, 0], "arg_names": ["self", "val"], "arg_types": ["types.CoroutineType", "builtins.BaseException"], "bound_args": [], "def_extras": {"first_arg": "self"}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "throw of CoroutineType", "ret_type": {".class": "AnyType", "missing_import_name": null, "source_any": null, "type_of_any": 2}, "variables": []}}, "is_overload": true, "var": {".class": "Var", "flags": [], "fullname": null, "name": "throw", "type": null}}, {".class": "Decorator", "func": {".class": "FuncDef", "arg_kinds": [0, 0, 1, 1], "arg_names": ["self", "typ", "val", "tb"], "flags": ["is_overload", "is_decorated"], "fullname": "types.CoroutineType.throw", "name": "throw", "type": {".class": "CallableType", "arg_kinds": [0, 0, 1, 1], "arg_names": ["self", "typ", "val", "tb"], "arg_types": ["types.CoroutineType", "builtins.type", "builtins.BaseException", "types.TracebackType"], "bound_args": [], "def_extras": {"first_arg": "self"}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "throw of CoroutineType", "ret_type": {".class": "AnyType", "missing_import_name": null, "source_any": null, "type_of_any": 2}, "variables": []}}, "is_overload": true, "var": {".class": "Var", "flags": [], "fullname": null, "name": "throw", "type": null}}], "type": {".class": "Overloaded", "items": [{".class": "CallableType", "arg_kinds": [0, 0], "arg_names": ["self", "val"], "arg_types": ["types.CoroutineType", "builtins.BaseException"], "bound_args": [], "def_extras": {"first_arg": "self"}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "throw of CoroutineType", "ret_type": {".class": "AnyType", "missing_import_name": null, "source_any": null, "type_of_any": 2}, "variables": []}, {".class": "CallableType", "arg_kinds": [0, 0, 1, 1], "arg_names": ["self", "typ", "val", "tb"], "arg_types": ["types.CoroutineType", "builtins.type", "builtins.BaseException", "types.TracebackType"], "bound_args": [], "def_extras": {"first_arg": "self"}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "throw of CoroutineType", "ret_type": {".class": "AnyType", "missing_import_name": null, "source_any": null, "type_of_any": 2}, "variables": []}]}}}}, "tuple_type": null, "type_vars": [], "typeddict_type": null}}, "Dict": {".class": "SymbolTableNode", "cross_ref": "typing.Dict", "kind": "Gdef", "module_hidden": true, "module_public": false}, "DynamicClassAttribute": {".class": "SymbolTableNode", "kind": "Gdef", "node": {".class": "TypeAlias", "alias_tvars": [], "column": 0, "fullname": "types.DynamicClassAttribute", "line": 204, "no_args": true, "normalized": false, "target": "builtins.property"}}, "FrameType": {".class": "SymbolTableNode", "kind": "Gdef", "node": {".class": "TypeInfo", "_promote": null, "abstract_attributes": [], "bases": ["builtins.object"], "declared_metaclass": null, "defn": {".class": "ClassDef", "fullname": "types.FrameType", "name": "FrameType", "type_vars": []}, "flags": [], "fullname": "types.FrameType", "metaclass_type": null, "metadata": {}, "module_name": "types", "mro": ["types.FrameType", "builtins.object"], "names": {".class": "SymbolTable", "clear": {".class": "SymbolTableNode", "kind": "Mdef", "node": {".class": "FuncDef", "arg_kinds": [0], "arg_names": ["self"], "flags": [], "fullname": "types.FrameType.clear", "name": "clear", "type": {".class": "CallableType", "arg_kinds": [0], "arg_names": ["self"], "arg_types": ["types.FrameType"], "bound_args": [], "def_extras": {"first_arg": "self"}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "clear of FrameType", "ret_type": {".class": "NoneTyp"}, "variables": []}}}, "f_back": {".class": "SymbolTableNode", "kind": "Mdef", "node": {".class": "Var", "flags": ["is_initialized_in_class"], "fullname": "types.FrameType.f_back", "name": "f_back", "type": "types.FrameType"}}, "f_builtins": {".class": "SymbolTableNode", "kind": "Mdef", "node": {".class": "Var", "flags": ["is_initialized_in_class"], "fullname": "types.FrameType.f_builtins", "name": "f_builtins", "type": {".class": "Instance", "args": ["builtins.str", {".class": "AnyType", "missing_import_name": null, "source_any": null, "type_of_any": 2}], "type_ref": "builtins.dict"}}}, "f_code": {".class": "SymbolTableNode", "kind": "Mdef", "node": {".class": "Var", "flags": ["is_initialized_in_class"], "fullname": "types.FrameType.f_code", "name": "f_code", "type": "types.CodeType"}}, "f_frace_lines": {".class": "SymbolTableNode", "kind": "Mdef", "node": {".class": "Var", "flags": ["is_initialized_in_class"], "fullname": "types.FrameType.f_frace_lines", "name": "f_frace_lines", "type": "builtins.bool"}}, "f_globals": {".class": "SymbolTableNode", "kind": "Mdef", "node": {".class": "Var", "flags": ["is_initialized_in_class"], "fullname": "types.FrameType.f_globals", "name": "f_globals", "type": {".class": "Instance", "args": ["builtins.str", {".class": "AnyType", "missing_import_name": null, "source_any": null, "type_of_any": 2}], "type_ref": "builtins.dict"}}}, "f_lasti": {".class": "SymbolTableNode", "kind": "Mdef", "node": {".class": "Var", "flags": ["is_initialized_in_class"], "fullname": "types.FrameType.f_lasti", "name": "f_lasti", "type": "builtins.int"}}, "f_lineno": {".class": "SymbolTableNode", "kind": "Mdef", "node": {".class": "Var", "flags": ["is_initialized_in_class"], "fullname": "types.FrameType.f_lineno", "name": "f_lineno", "type": "builtins.int"}}, "f_locals": {".class": "SymbolTableNode", "kind": "Mdef", "node": {".class": "Var", "flags": ["is_initialized_in_class"], "fullname": "types.FrameType.f_locals", "name": "f_locals", "type": {".class": "Instance", "args": ["builtins.str", {".class": "AnyType", "missing_import_name": null, "source_any": null, "type_of_any": 2}], "type_ref": "builtins.dict"}}}, "f_trace": {".class": "SymbolTableNode", "kind": "Mdef", "node": {".class": "Var", "flags": ["is_initialized_in_class"], "fullname": "types.FrameType.f_trace", "name": "f_trace", "type": {".class": "CallableType", "arg_kinds": [], "arg_names": [], "arg_types": [], "bound_args": [], "def_extras": {}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": null, "ret_type": {".class": "NoneTyp"}, "variables": []}}}, "f_trace_opcodes": {".class": "SymbolTableNode", "kind": "Mdef", "node": {".class": "Var", "flags": ["is_initialized_in_class"], "fullname": "types.FrameType.f_trace_opcodes", "name": "f_trace_opcodes", "type": "builtins.bool"}}}, "tuple_type": null, "type_vars": [], "typeddict_type": null}}, "FunctionType": {".class": "SymbolTableNode", "kind": "Gdef", "node": {".class": "TypeInfo", "_promote": null, "abstract_attributes": [], "bases": ["builtins.object"], "declared_metaclass": null, "defn": {".class": "ClassDef", "fullname": "types.FunctionType", "name": "FunctionType", "type_vars": []}, "flags": [], "fullname": "types.FunctionType", "metaclass_type": null, "metadata": {}, "module_name": "types", "mro": ["types.FunctionType", "builtins.object"], "names": {".class": "SymbolTable", "__annotations__": {".class": "SymbolTableNode", "kind": "Mdef", "node": {".class": "Var", "flags": ["is_initialized_in_class"], "fullname": "types.FunctionType.__annotations__", "name": "__annotations__", "type": {".class": "Instance", "args": ["builtins.str", {".class": "AnyType", "missing_import_name": null, "source_any": null, "type_of_any": 2}], "type_ref": "builtins.dict"}}}, "__call__": {".class": "SymbolTableNode", "kind": "Mdef", "node": {".class": "FuncDef", "arg_kinds": [0, 2, 4], "arg_names": ["self", "args", "kwargs"], "flags": [], "fullname": "types.FunctionType.__call__", "name": "__call__", "type": {".class": "CallableType", "arg_kinds": [0, 2, 4], "arg_names": ["self", "args", "kwargs"], "arg_types": ["types.FunctionType", {".class": "AnyType", "missing_import_name": null, "source_any": null, "type_of_any": 2}, {".class": "AnyType", "missing_import_name": null, "source_any": null, "type_of_any": 2}], "bound_args": [], "def_extras": {"first_arg": "self"}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "__call__ of FunctionType", "ret_type": {".class": "AnyType", "missing_import_name": null, "source_any": null, "type_of_any": 2}, "variables": []}}}, "__closure__": {".class": "SymbolTableNode", "kind": "Mdef", "node": {".class": "Var", "flags": ["is_initialized_in_class"], "fullname": "types.FunctionType.__closure__", "name": "__closure__", "type": {".class": "UnionType", "items": [{".class": "Instance", "args": ["types._Cell"], "type_ref": "builtins.tuple"}, {".class": "NoneTyp"}]}}}, "__code__": {".class": "SymbolTableNode", "kind": "Mdef", "node": {".class": "Var", "flags": ["is_initialized_in_class"], "fullname": "types.FunctionType.__code__", "name": "__code__", "type": "types.CodeType"}}, "__defaults__": {".class": "SymbolTableNode", "kind": "Mdef", "node": {".class": "Var", "flags": ["is_initialized_in_class"], "fullname": "types.FunctionType.__defaults__", "name": "__defaults__", "type": {".class": "UnionType", "items": [{".class": "Instance", "args": [{".class": "AnyType", "missing_import_name": null, "source_any": null, "type_of_any": 2}], "type_ref": "builtins.tuple"}, {".class": "NoneTyp"}]}}}, "__dict__": {".class": "SymbolTableNode", "kind": "Mdef", "node": {".class": "Var", "flags": ["is_initialized_in_class"], "fullname": "types.FunctionType.__dict__", "name": "__dict__", "type": {".class": "Instance", "args": ["builtins.str", {".class": "AnyType", "missing_import_name": null, "source_any": null, "type_of_any": 2}], "type_ref": "builtins.dict"}}}, "__get__": {".class": "SymbolTableNode", "kind": "Mdef", "node": {".class": "FuncDef", "arg_kinds": [0, 0, 0], "arg_names": ["self", "obj", "type"], "flags": [], "fullname": "types.FunctionType.__get__", "name": "__get__", "type": {".class": "CallableType", "arg_kinds": [0, 0, 0], "arg_names": ["self", "obj", "type"], "arg_types": ["types.FunctionType", {".class": "UnionType", "items": ["builtins.object", {".class": "NoneTyp"}]}, {".class": "UnionType", "items": ["builtins.type", {".class": "NoneTyp"}]}], "bound_args": [], "def_extras": {"first_arg": "self"}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "__get__ of FunctionType", "ret_type": "types.MethodType", "variables": []}}}, "__globals__": {".class": "SymbolTableNode", "kind": "Mdef", "node": {".class": "Var", "flags": ["is_initialized_in_class"], "fullname": "types.FunctionType.__globals__", "name": "__globals__", "type": {".class": "Instance", "args": ["builtins.str", {".class": "AnyType", "missing_import_name": null, "source_any": null, "type_of_any": 2}], "type_ref": "builtins.dict"}}}, "__kwdefaults__": {".class": "SymbolTableNode", "kind": "Mdef", "node": {".class": "Var", "flags": ["is_initialized_in_class"], "fullname": "types.FunctionType.__kwdefaults__", "name": "__kwdefaults__", "type": {".class": "Instance", "args": ["builtins.str", {".class": "AnyType", "missing_import_name": null, "source_any": null, "type_of_any": 2}], "type_ref": "builtins.dict"}}}, "__name__": {".class": "SymbolTableNode", "kind": "Mdef", "node": {".class": "Var", "flags": ["is_initialized_in_class"], "fullname": "types.FunctionType.__name__", "name": "__name__", "type": "builtins.str"}}, "__qualname__": {".class": "SymbolTableNode", "kind": "Mdef", "node": {".class": "Var", "flags": ["is_initialized_in_class"], "fullname": "types.FunctionType.__qualname__", "name": "__qualname__", "type": "builtins.str"}}}, "tuple_type": null, "type_vars": [], "typeddict_type": null}}, "GeneratorType": {".class": "SymbolTableNode", "kind": "Gdef", "node": {".class": "TypeInfo", "_promote": null, "abstract_attributes": [], "bases": ["builtins.object"], "declared_metaclass": null, "defn": {".class": "ClassDef", "fullname": "types.GeneratorType", "name": "GeneratorType", "type_vars": []}, "flags": [], "fullname": "types.GeneratorType", "metaclass_type": null, "metadata": {}, "module_name": "types", "mro": ["types.GeneratorType", "builtins.object"], "names": {".class": "SymbolTable", "__iter__": {".class": "SymbolTableNode", "kind": "Mdef", "node": {".class": "FuncDef", "arg_kinds": [0], "arg_names": ["self"], "flags": [], "fullname": "types.GeneratorType.__iter__", "name": "__iter__", "type": {".class": "CallableType", "arg_kinds": [0], "arg_names": [null], "arg_types": ["types.GeneratorType"], "bound_args": [], "def_extras": {"first_arg": "self"}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "__iter__ of GeneratorType", "ret_type": "types.GeneratorType", "variables": []}}}, "__next__": {".class": "SymbolTableNode", "kind": "Mdef", "node": {".class": "FuncDef", "arg_kinds": [0], "arg_names": ["self"], "flags": [], "fullname": "types.GeneratorType.__next__", "name": "__next__", "type": {".class": "CallableType", "arg_kinds": [0], "arg_names": ["self"], "arg_types": ["types.GeneratorType"], "bound_args": [], "def_extras": {"first_arg": "self"}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "__next__ of GeneratorType", "ret_type": {".class": "AnyType", "missing_import_name": null, "source_any": null, "type_of_any": 2}, "variables": []}}}, "close": {".class": "SymbolTableNode", "kind": "Mdef", "node": {".class": "FuncDef", "arg_kinds": [0], "arg_names": ["self"], "flags": [], "fullname": "types.GeneratorType.close", "name": "close", "type": {".class": "CallableType", "arg_kinds": [0], "arg_names": ["self"], "arg_types": ["types.GeneratorType"], "bound_args": [], "def_extras": {"first_arg": "self"}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "close of GeneratorType", "ret_type": {".class": "NoneTyp"}, "variables": []}}}, "gi_code": {".class": "SymbolTableNode", "kind": "Mdef", "node": {".class": "Var", "flags": ["is_initialized_in_class"], "fullname": "types.GeneratorType.gi_code", "name": "gi_code", "type": "types.CodeType"}}, "gi_frame": {".class": "SymbolTableNode", "kind": "Mdef", "node": {".class": "Var", "flags": ["is_initialized_in_class"], "fullname": "types.GeneratorType.gi_frame", "name": "gi_frame", "type": "types.FrameType"}}, "gi_running": {".class": "SymbolTableNode", "kind": "Mdef", "node": {".class": "Var", "flags": ["is_initialized_in_class"], "fullname": "types.GeneratorType.gi_running", "name": "gi_running", "type": "builtins.bool"}}, "gi_yieldfrom": {".class": "SymbolTableNode", "kind": "Mdef", "node": {".class": "Var", "flags": ["is_initialized_in_class"], "fullname": "types.GeneratorType.gi_yieldfrom", "name": "gi_yieldfrom", "type": {".class": "UnionType", "items": ["types.GeneratorType", {".class": "NoneTyp"}]}}}, "send": {".class": "SymbolTableNode", "kind": "Mdef", "node": {".class": "FuncDef", "arg_kinds": [0, 0], "arg_names": ["self", "arg"], "flags": [], "fullname": "types.GeneratorType.send", "name": "send", "type": {".class": "CallableType", "arg_kinds": [0, 0], "arg_names": ["self", "arg"], "arg_types": ["types.GeneratorType", {".class": "AnyType", "missing_import_name": null, "source_any": null, "type_of_any": 2}], "bound_args": [], "def_extras": {"first_arg": "self"}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "send of GeneratorType", "ret_type": {".class": "AnyType", "missing_import_name": null, "source_any": null, "type_of_any": 2}, "variables": []}}}, "throw": {".class": "SymbolTableNode", "kind": "Mdef", "node": {".class": "OverloadedFuncDef", "flags": [], "fullname": "types.GeneratorType.throw", "impl": null, "items": [{".class": "Decorator", "func": {".class": "FuncDef", "arg_kinds": [0, 0], "arg_names": ["self", "val"], "flags": ["is_overload", "is_decorated"], "fullname": "types.GeneratorType.throw", "name": "throw", "type": {".class": "CallableType", "arg_kinds": [0, 0], "arg_names": ["self", "val"], "arg_types": ["types.GeneratorType", "builtins.BaseException"], "bound_args": [], "def_extras": {"first_arg": "self"}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "throw of GeneratorType", "ret_type": {".class": "AnyType", "missing_import_name": null, "source_any": null, "type_of_any": 2}, "variables": []}}, "is_overload": true, "var": {".class": "Var", "flags": [], "fullname": null, "name": "throw", "type": null}}, {".class": "Decorator", "func": {".class": "FuncDef", "arg_kinds": [0, 0, 1, 1], "arg_names": ["self", "typ", "val", "tb"], "flags": ["is_overload", "is_decorated"], "fullname": "types.GeneratorType.throw", "name": "throw", "type": {".class": "CallableType", "arg_kinds": [0, 0, 1, 1], "arg_names": ["self", "typ", "val", "tb"], "arg_types": ["types.GeneratorType", "builtins.type", "builtins.BaseException", "types.TracebackType"], "bound_args": [], "def_extras": {"first_arg": "self"}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "throw of GeneratorType", "ret_type": {".class": "AnyType", "missing_import_name": null, "source_any": null, "type_of_any": 2}, "variables": []}}, "is_overload": true, "var": {".class": "Var", "flags": [], "fullname": null, "name": "throw", "type": null}}], "type": {".class": "Overloaded", "items": [{".class": "CallableType", "arg_kinds": [0, 0], "arg_names": ["self", "val"], "arg_types": ["types.GeneratorType", "builtins.BaseException"], "bound_args": [], "def_extras": {"first_arg": "self"}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "throw of GeneratorType", "ret_type": {".class": "AnyType", "missing_import_name": null, "source_any": null, "type_of_any": 2}, "variables": []}, {".class": "CallableType", "arg_kinds": [0, 0, 1, 1], "arg_names": ["self", "typ", "val", "tb"], "arg_types": ["types.GeneratorType", "builtins.type", "builtins.BaseException", "types.TracebackType"], "bound_args": [], "def_extras": {"first_arg": "self"}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "throw of GeneratorType", "ret_type": {".class": "AnyType", "missing_import_name": null, "source_any": null, "type_of_any": 2}, "variables": []}]}}}}, "tuple_type": null, "type_vars": [], "typeddict_type": null}}, "Generic": {".class": "SymbolTableNode", "cross_ref": "typing.Generic", "kind": "Gdef", "module_hidden": true, "module_public": false}, "GetSetDescriptorType": {".class": "SymbolTableNode", "kind": "Gdef", "node": {".class": "TypeInfo", "_promote": null, "abstract_attributes": [], "bases": ["builtins.object"], "declared_metaclass": null, "defn": {".class": "ClassDef", "fullname": "types.GetSetDescriptorType", "name": "GetSetDescriptorType", "type_vars": []}, "flags": [], "fullname": "types.GetSetDescriptorType", "metaclass_type": null, "metadata": {}, "module_name": "types", "mro": ["types.GetSetDescriptorType", "builtins.object"], "names": {".class": "SymbolTable", "__delete__": {".class": "SymbolTableNode", "kind": "Mdef", "node": {".class": "FuncDef", "arg_kinds": [0, 0], "arg_names": ["self", "obj"], "flags": [], "fullname": "types.GetSetDescriptorType.__delete__", "name": "__delete__", "type": {".class": "CallableType", "arg_kinds": [0, 0], "arg_names": ["self", "obj"], "arg_types": ["types.GetSetDescriptorType", {".class": "AnyType", "missing_import_name": null, "source_any": null, "type_of_any": 2}], "bound_args": [], "def_extras": {"first_arg": "self"}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "__delete__ of GetSetDescriptorType", "ret_type": {".class": "NoneTyp"}, "variables": []}}}, "__get__": {".class": "SymbolTableNode", "kind": "Mdef", "node": {".class": "FuncDef", "arg_kinds": [0, 0, 1], "arg_names": ["self", "obj", "type"], "flags": [], "fullname": "types.GetSetDescriptorType.__get__", "name": "__get__", "type": {".class": "CallableType", "arg_kinds": [0, 0, 1], "arg_names": ["self", "obj", "type"], "arg_types": ["types.GetSetDescriptorType", {".class": "AnyType", "missing_import_name": null, "source_any": null, "type_of_any": 2}, "builtins.type"], "bound_args": [], "def_extras": {"first_arg": "self"}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "__get__ of GetSetDescriptorType", "ret_type": {".class": "AnyType", "missing_import_name": null, "source_any": null, "type_of_any": 2}, "variables": []}}}, "__name__": {".class": "SymbolTableNode", "kind": "Mdef", "node": {".class": "Var", "flags": ["is_initialized_in_class"], "fullname": "types.GetSetDescriptorType.__name__", "name": "__name__", "type": "builtins.str"}}, "__objclass__": {".class": "SymbolTableNode", "kind": "Mdef", "node": {".class": "Var", "flags": ["is_initialized_in_class"], "fullname": "types.GetSetDescriptorType.__objclass__", "name": "__objclass__", "type": "builtins.type"}}, "__set__": {".class": "SymbolTableNode", "kind": "Mdef", "node": {".class": "FuncDef", "arg_kinds": [0, 0], "arg_names": ["self", "obj"], "flags": [], "fullname": "types.GetSetDescriptorType.__set__", "name": "__set__", "type": {".class": "CallableType", "arg_kinds": [0, 0], "arg_names": ["self", "obj"], "arg_types": ["types.GetSetDescriptorType", {".class": "AnyType", "missing_import_name": null, "source_any": null, "type_of_any": 2}], "bound_args": [], "def_extras": {"first_arg": "self"}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "__set__ of GetSetDescriptorType", "ret_type": {".class": "NoneTyp"}, "variables": []}}}}, "tuple_type": null, "type_vars": [], "typeddict_type": null}}, "Iterator": {".class": "SymbolTableNode", "cross_ref": "typing.Iterator", "kind": "Gdef", "module_hidden": true, "module_public": false}, "LambdaType": {".class": "SymbolTableNode", "kind": "Gdef", "node": {".class": "TypeAlias", "alias_tvars": [], "column": 0, "fullname": "types.LambdaType", "line": 37, "no_args": true, "normalized": false, "target": "types.FunctionType"}}, "Mapping": {".class": "SymbolTableNode", "cross_ref": "typing.Mapping", "kind": "Gdef", "module_hidden": true, "module_public": false}, "MappingProxyType": {".class": "SymbolTableNode", "kind": "Gdef", "node": {".class": "TypeInfo", "_promote": null, "abstract_attributes": [], "bases": [{".class": "Instance", "args": [{".class": "TypeVarType", "fullname": "types._KT", "id": 1, "name": "_KT", "upper_bound": "builtins.object", "values": [], "variance": 0}, {".class": "TypeVarType", "fullname": "types._VT", "id": 2, "name": "_VT", "upper_bound": "builtins.object", "values": [], "variance": 0}], "type_ref": "typing.Mapping"}], "declared_metaclass": null, "defn": {".class": "ClassDef", "fullname": "types.MappingProxyType", "name": "MappingProxyType", "type_vars": [{".class": "TypeVarDef", "fullname": "types._KT", "id": 1, "name": "_KT", "upper_bound": "builtins.object", "values": [], "variance": 0}, {".class": "TypeVarDef", "fullname": "types._VT", "id": 2, "name": "_VT", "upper_bound": "builtins.object", "values": [], "variance": 0}]}, "flags": [], "fullname": "types.MappingProxyType", "metaclass_type": null, "metadata": {}, "module_name": "types", "mro": ["types.MappingProxyType", "typing.Mapping", "typing.Collection", "typing.Iterable", "typing.Container", "builtins.object"], "names": {".class": "SymbolTable", "__getitem__": {".class": "SymbolTableNode", "kind": "Mdef", "node": {".class": "FuncDef", "arg_kinds": [0, 0], "arg_names": ["self", "k"], "flags": [], "fullname": "types.MappingProxyType.__getitem__", "name": "__getitem__", "type": {".class": "CallableType", "arg_kinds": [0, 0], "arg_names": [null, null], "arg_types": [{".class": "Instance", "args": [{".class": "TypeVarType", "fullname": "types._KT", "id": 1, "name": "_KT", "upper_bound": "builtins.object", "values": [], "variance": 0}, {".class": "TypeVarType", "fullname": "types._VT", "id": 2, "name": "_VT", "upper_bound": "builtins.object", "values": [], "variance": 0}], "type_ref": "types.MappingProxyType"}, {".class": "TypeVarType", "fullname": "types._KT", "id": 1, "name": "_KT", "upper_bound": "builtins.object", "values": [], "variance": 0}], "bound_args": [], "def_extras": {"first_arg": "self"}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "__getitem__ of MappingProxyType", "ret_type": {".class": "TypeVarType", "fullname": "types._VT", "id": 2, "name": "_VT", "upper_bound": "builtins.object", "values": [], "variance": 0}, "variables": []}}}, "__init__": {".class": "SymbolTableNode", "kind": "Mdef", "node": {".class": "FuncDef", "arg_kinds": [0, 0], "arg_names": ["self", "mapping"], "flags": [], "fullname": "types.MappingProxyType.__init__", "name": "__init__", "type": {".class": "CallableType", "arg_kinds": [0, 0], "arg_names": ["self", "mapping"], "arg_types": [{".class": "Instance", "args": [{".class": "TypeVarType", "fullname": "types._KT", "id": 1, "name": "_KT", "upper_bound": "builtins.object", "values": [], "variance": 0}, {".class": "TypeVarType", "fullname": "types._VT", "id": 2, "name": "_VT", "upper_bound": "builtins.object", "values": [], "variance": 0}], "type_ref": "types.MappingProxyType"}, {".class": "Instance", "args": [{".class": "TypeVarType", "fullname": "types._KT", "id": 1, "name": "_KT", "upper_bound": "builtins.object", "values": [], "variance": 0}, {".class": "TypeVarType", "fullname": "types._VT", "id": 2, "name": "_VT", "upper_bound": "builtins.object", "values": [], "variance": 0}], "type_ref": "typing.Mapping"}], "bound_args": [], "def_extras": {"first_arg": "self"}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "__init__ of MappingProxyType", "ret_type": {".class": "NoneTyp"}, "variables": []}}}, "__iter__": {".class": "SymbolTableNode", "kind": "Mdef", "node": {".class": "FuncDef", "arg_kinds": [0], "arg_names": ["self"], "flags": [], "fullname": "types.MappingProxyType.__iter__", "name": "__iter__", "type": {".class": "CallableType", "arg_kinds": [0], "arg_names": [null], "arg_types": [{".class": "Instance", "args": [{".class": "TypeVarType", "fullname": "types._KT", "id": 1, "name": "_KT", "upper_bound": "builtins.object", "values": [], "variance": 0}, {".class": "TypeVarType", "fullname": "types._VT", "id": 2, "name": "_VT", "upper_bound": "builtins.object", "values": [], "variance": 0}], "type_ref": "types.MappingProxyType"}], "bound_args": [], "def_extras": {"first_arg": "self"}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "__iter__ of MappingProxyType", "ret_type": {".class": "Instance", "args": [{".class": "TypeVarType", "fullname": "types._KT", "id": 1, "name": "_KT", "upper_bound": "builtins.object", "values": [], "variance": 0}], "type_ref": "typing.Iterator"}, "variables": []}}}, "__len__": {".class": "SymbolTableNode", "kind": "Mdef", "node": {".class": "FuncDef", "arg_kinds": [0], "arg_names": ["self"], "flags": [], "fullname": "types.MappingProxyType.__len__", "name": "__len__", "type": {".class": "CallableType", "arg_kinds": [0], "arg_names": [null], "arg_types": [{".class": "Instance", "args": [{".class": "TypeVarType", "fullname": "types._KT", "id": 1, "name": "_KT", "upper_bound": "builtins.object", "values": [], "variance": 0}, {".class": "TypeVarType", "fullname": "types._VT", "id": 2, "name": "_VT", "upper_bound": "builtins.object", "values": [], "variance": 0}], "type_ref": "types.MappingProxyType"}], "bound_args": [], "def_extras": {"first_arg": "self"}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "__len__ of MappingProxyType", "ret_type": "builtins.int", "variables": []}}}}, "tuple_type": null, "type_vars": ["_KT", "_VT"], "typeddict_type": null}}, "MemberDescriptorType": {".class": "SymbolTableNode", "kind": "Gdef", "node": {".class": "TypeInfo", "_promote": null, "abstract_attributes": [], "bases": ["builtins.object"], "declared_metaclass": null, "defn": {".class": "ClassDef", "fullname": "types.MemberDescriptorType", "name": "MemberDescriptorType", "type_vars": []}, "flags": [], "fullname": "types.MemberDescriptorType", "metaclass_type": null, "metadata": {}, "module_name": "types", "mro": ["types.MemberDescriptorType", "builtins.object"], "names": {".class": "SymbolTable", "__delete__": {".class": "SymbolTableNode", "kind": "Mdef", "node": {".class": "FuncDef", "arg_kinds": [0, 0], "arg_names": ["self", "obj"], "flags": [], "fullname": "types.MemberDescriptorType.__delete__", "name": "__delete__", "type": {".class": "CallableType", "arg_kinds": [0, 0], "arg_names": ["self", "obj"], "arg_types": ["types.MemberDescriptorType", {".class": "AnyType", "missing_import_name": null, "source_any": null, "type_of_any": 2}], "bound_args": [], "def_extras": {"first_arg": "self"}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "__delete__ of MemberDescriptorType", "ret_type": {".class": "NoneTyp"}, "variables": []}}}, "__get__": {".class": "SymbolTableNode", "kind": "Mdef", "node": {".class": "FuncDef", "arg_kinds": [0, 0, 1], "arg_names": ["self", "obj", "type"], "flags": [], "fullname": "types.MemberDescriptorType.__get__", "name": "__get__", "type": {".class": "CallableType", "arg_kinds": [0, 0, 1], "arg_names": ["self", "obj", "type"], "arg_types": ["types.MemberDescriptorType", {".class": "AnyType", "missing_import_name": null, "source_any": null, "type_of_any": 2}, "builtins.type"], "bound_args": [], "def_extras": {"first_arg": "self"}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "__get__ of MemberDescriptorType", "ret_type": {".class": "AnyType", "missing_import_name": null, "source_any": null, "type_of_any": 2}, "variables": []}}}, "__name__": {".class": "SymbolTableNode", "kind": "Mdef", "node": {".class": "Var", "flags": ["is_initialized_in_class"], "fullname": "types.MemberDescriptorType.__name__", "name": "__name__", "type": "builtins.str"}}, "__objclass__": {".class": "SymbolTableNode", "kind": "Mdef", "node": {".class": "Var", "flags": ["is_initialized_in_class"], "fullname": "types.MemberDescriptorType.__objclass__", "name": "__objclass__", "type": "builtins.type"}}, "__set__": {".class": "SymbolTableNode", "kind": "Mdef", "node": {".class": "FuncDef", "arg_kinds": [0, 0], "arg_names": ["self", "obj"], "flags": [], "fullname": "types.MemberDescriptorType.__set__", "name": "__set__", "type": {".class": "CallableType", "arg_kinds": [0, 0], "arg_names": ["self", "obj"], "arg_types": ["types.MemberDescriptorType", {".class": "AnyType", "missing_import_name": null, "source_any": null, "type_of_any": 2}], "bound_args": [], "def_extras": {"first_arg": "self"}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "__set__ of MemberDescriptorType", "ret_type": {".class": "NoneTyp"}, "variables": []}}}}, "tuple_type": null, "type_vars": [], "typeddict_type": null}}, "MethodType": {".class": "SymbolTableNode", "kind": "Gdef", "node": {".class": "TypeInfo", "_promote": null, "abstract_attributes": [], "bases": ["builtins.object"], "declared_metaclass": null, "defn": {".class": "ClassDef", "fullname": "types.MethodType", "name": "MethodType", "type_vars": []}, "flags": [], "fullname": "types.MethodType", "metaclass_type": null, "metadata": {}, "module_name": "types", "mro": ["types.MethodType", "builtins.object"], "names": {".class": "SymbolTable", "__call__": {".class": "SymbolTableNode", "kind": "Mdef", "node": {".class": "FuncDef", "arg_kinds": [0, 2, 4], "arg_names": ["self", "args", "kwargs"], "flags": [], "fullname": "types.MethodType.__call__", "name": "__call__", "type": {".class": "CallableType", "arg_kinds": [0, 2, 4], "arg_names": ["self", "args", "kwargs"], "arg_types": ["types.MethodType", {".class": "AnyType", "missing_import_name": null, "source_any": null, "type_of_any": 2}, {".class": "AnyType", "missing_import_name": null, "source_any": null, "type_of_any": 2}], "bound_args": [], "def_extras": {"first_arg": "self"}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "__call__ of MethodType", "ret_type": {".class": "AnyType", "missing_import_name": null, "source_any": null, "type_of_any": 2}, "variables": []}}}, "__func__": {".class": "SymbolTableNode", "kind": "Mdef", "node": {".class": "Var", "flags": ["is_initialized_in_class"], "fullname": "types.MethodType.__func__", "name": "__func__", "type": "types._StaticFunctionType"}}, "__init__": {".class": "SymbolTableNode", "kind": "Mdef", "node": {".class": "FuncDef", "arg_kinds": [0, 0, 0], "arg_names": ["self", "func", "obj"], "flags": [], "fullname": "types.MethodType.__init__", "name": "__init__", "type": {".class": "CallableType", "arg_kinds": [0, 0, 0], "arg_names": ["self", "func", "obj"], "arg_types": ["types.MethodType", {".class": "CallableType", "arg_kinds": [2, 4], "arg_names": [null, null], "arg_types": [{".class": "AnyType", "missing_import_name": null, "source_any": null, "type_of_any": 4}, {".class": "AnyType", "missing_import_name": null, "source_any": null, "type_of_any": 4}], "bound_args": [], "def_extras": {}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": true, "name": null, "ret_type": {".class": "AnyType", "missing_import_name": null, "source_any": null, "type_of_any": 4}, "variables": []}, "builtins.object"], "bound_args": [], "def_extras": {"first_arg": "self"}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "__init__ of MethodType", "ret_type": {".class": "NoneTyp"}, "variables": []}}}, "__name__": {".class": "SymbolTableNode", "kind": "Mdef", "node": {".class": "Var", "flags": ["is_initialized_in_class"], "fullname": "types.MethodType.__name__", "name": "__name__", "type": "builtins.str"}}, "__qualname__": {".class": "SymbolTableNode", "kind": "Mdef", "node": {".class": "Var", "flags": ["is_initialized_in_class"], "fullname": "types.MethodType.__qualname__", "name": "__qualname__", "type": "builtins.str"}}, "__self__": {".class": "SymbolTableNode", "kind": "Mdef", "node": {".class": "Var", "flags": ["is_initialized_in_class"], "fullname": "types.MethodType.__self__", "name": "__self__", "type": "builtins.object"}}}, "tuple_type": null, "type_vars": [], "typeddict_type": null}}, "ModuleType": {".class": "SymbolTableNode", "cross_ref": "_importlib_modulespec.ModuleType", "kind": "Gdef"}, "Optional": {".class": "SymbolTableNode", "cross_ref": "typing.Optional", "kind": "Gdef", "module_hidden": true, "module_public": false}, "SimpleNamespace": {".class": "SymbolTableNode", "kind": "Gdef", "node": {".class": "TypeInfo", "_promote": null, "abstract_attributes": [], "bases": ["builtins.object"], "declared_metaclass": null, "defn": {".class": "ClassDef", "fullname": "types.SimpleNamespace", "name": "SimpleNamespace", "type_vars": []}, "flags": [], "fullname": "types.SimpleNamespace", "metaclass_type": null, "metadata": {}, "module_name": "types", "mro": ["types.SimpleNamespace", "builtins.object"], "names": {".class": "SymbolTable", "__delattr__": {".class": "SymbolTableNode", "kind": "Mdef", "node": {".class": "FuncDef", "arg_kinds": [0, 0], "arg_names": ["self", "name"], "flags": [], "fullname": "types.SimpleNamespace.__delattr__", "name": "__delattr__", "type": {".class": "CallableType", "arg_kinds": [0, 0], "arg_names": [null, null], "arg_types": ["types.SimpleNamespace", "builtins.str"], "bound_args": [], "def_extras": {"first_arg": "self"}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "__delattr__ of SimpleNamespace", "ret_type": {".class": "NoneTyp"}, "variables": []}}}, "__getattribute__": {".class": "SymbolTableNode", "kind": "Mdef", "node": {".class": "FuncDef", "arg_kinds": [0, 0], "arg_names": ["self", "name"], "flags": [], "fullname": "types.SimpleNamespace.__getattribute__", "name": "__getattribute__", "type": {".class": "CallableType", "arg_kinds": [0, 0], "arg_names": [null, null], "arg_types": ["types.SimpleNamespace", "builtins.str"], "bound_args": [], "def_extras": {"first_arg": "self"}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "__getattribute__ of SimpleNamespace", "ret_type": {".class": "AnyType", "missing_import_name": null, "source_any": null, "type_of_any": 2}, "variables": []}}}, "__init__": {".class": "SymbolTableNode", "kind": "Mdef", "node": {".class": "FuncDef", "arg_kinds": [0, 4], "arg_names": ["self", "kwargs"], "flags": [], "fullname": "types.SimpleNamespace.__init__", "name": "__init__", "type": {".class": "CallableType", "arg_kinds": [0, 4], "arg_names": ["self", "kwargs"], "arg_types": ["types.SimpleNamespace", {".class": "AnyType", "missing_import_name": null, "source_any": null, "type_of_any": 2}], "bound_args": [], "def_extras": {"first_arg": "self"}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "__init__ of SimpleNamespace", "ret_type": {".class": "NoneTyp"}, "variables": []}}}, "__setattr__": {".class": "SymbolTableNode", "kind": "Mdef", "node": {".class": "FuncDef", "arg_kinds": [0, 0, 0], "arg_names": ["self", "name", "value"], "flags": [], "fullname": "types.SimpleNamespace.__setattr__", "name": "__setattr__", "type": {".class": "CallableType", "arg_kinds": [0, 0, 0], "arg_names": [null, null, null], "arg_types": ["types.SimpleNamespace", "builtins.str", {".class": "AnyType", "missing_import_name": null, "source_any": null, "type_of_any": 2}], "bound_args": [], "def_extras": {"first_arg": "self"}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "__setattr__ of SimpleNamespace", "ret_type": {".class": "NoneTyp"}, "variables": []}}}}, "tuple_type": null, "type_vars": [], "typeddict_type": null}}, "TracebackType": {".class": "SymbolTableNode", "kind": "Gdef", "node": {".class": "TypeInfo", "_promote": null, "abstract_attributes": [], "bases": ["builtins.object"], "declared_metaclass": null, "defn": {".class": "ClassDef", "fullname": "types.TracebackType", "name": "TracebackType", "type_vars": []}, "flags": [], "fullname": "types.TracebackType", "metaclass_type": null, "metadata": {}, "module_name": "types", "mro": ["types.TracebackType", "builtins.object"], "names": {".class": "SymbolTable", "__init__": {".class": "SymbolTableNode", "kind": "Mdef", "node": {".class": "FuncDef", "arg_kinds": [0, 0, 0, 0, 0], "arg_names": ["self", "tb_next", "tb_frame", "tb_lasti", "tb_lineno"], "flags": ["is_conditional"], "fullname": "types.TracebackType.__init__", "name": "__init__", "type": {".class": "CallableType", "arg_kinds": [0, 0, 0, 0, 0], "arg_names": ["self", "tb_next", "tb_frame", "tb_lasti", "tb_lineno"], "arg_types": ["types.TracebackType", {".class": "UnionType", "items": ["types.TracebackType", {".class": "NoneTyp"}]}, "types.FrameType", "builtins.int", "builtins.int"], "bound_args": [], "def_extras": {"first_arg": "self"}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "__init__ of TracebackType", "ret_type": {".class": "NoneTyp"}, "variables": []}}}, "tb_frame": {".class": "SymbolTableNode", "kind": "Mdef", "node": {".class": "Decorator", "func": {".class": "FuncDef", "arg_kinds": [0], "arg_names": ["self"], "flags": ["is_property", "is_decorated"], "fullname": "types.TracebackType.tb_frame", "name": "tb_frame", "type": {".class": "CallableType", "arg_kinds": [0], "arg_names": ["self"], "arg_types": ["types.TracebackType"], "bound_args": [], "def_extras": {"first_arg": "self"}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "tb_frame of TracebackType", "ret_type": "types.FrameType", "variables": []}}, "is_overload": false, "var": {".class": "Var", "flags": ["is_initialized_in_class", "is_property"], "fullname": null, "name": "tb_frame", "type": {".class": "CallableType", "arg_kinds": [0], "arg_names": ["self"], "arg_types": ["types.TracebackType"], "bound_args": [], "def_extras": {"first_arg": "self"}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "tb_frame of TracebackType", "ret_type": "types.FrameType", "variables": []}}}}, "tb_lasti": {".class": "SymbolTableNode", "kind": "Mdef", "node": {".class": "Decorator", "func": {".class": "FuncDef", "arg_kinds": [0], "arg_names": ["self"], "flags": ["is_property", "is_decorated"], "fullname": "types.TracebackType.tb_lasti", "name": "tb_lasti", "type": {".class": "CallableType", "arg_kinds": [0], "arg_names": ["self"], "arg_types": ["types.TracebackType"], "bound_args": [], "def_extras": {"first_arg": "self"}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "tb_lasti of TracebackType", "ret_type": "builtins.int", "variables": []}}, "is_overload": false, "var": {".class": "Var", "flags": ["is_initialized_in_class", "is_property"], "fullname": null, "name": "tb_lasti", "type": {".class": "CallableType", "arg_kinds": [0], "arg_names": ["self"], "arg_types": ["types.TracebackType"], "bound_args": [], "def_extras": {"first_arg": "self"}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "tb_lasti of TracebackType", "ret_type": "builtins.int", "variables": []}}}}, "tb_lineno": {".class": "SymbolTableNode", "kind": "Mdef", "node": {".class": "Decorator", "func": {".class": "FuncDef", "arg_kinds": [0], "arg_names": ["self"], "flags": ["is_property", "is_decorated"], "fullname": "types.TracebackType.tb_lineno", "name": "tb_lineno", "type": {".class": "CallableType", "arg_kinds": [0], "arg_names": ["self"], "arg_types": ["types.TracebackType"], "bound_args": [], "def_extras": {"first_arg": "self"}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "tb_lineno of TracebackType", "ret_type": "builtins.int", "variables": []}}, "is_overload": false, "var": {".class": "Var", "flags": ["is_initialized_in_class", "is_property"], "fullname": null, "name": "tb_lineno", "type": {".class": "CallableType", "arg_kinds": [0], "arg_names": ["self"], "arg_types": ["types.TracebackType"], "bound_args": [], "def_extras": {"first_arg": "self"}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "tb_lineno of TracebackType", "ret_type": "builtins.int", "variables": []}}}}, "tb_next": {".class": "SymbolTableNode", "kind": "Mdef", "node": {".class": "Var", "flags": ["is_initialized_in_class"], "fullname": "types.TracebackType.tb_next", "name": "tb_next", "type": {".class": "UnionType", "items": ["types.TracebackType", {".class": "NoneTyp"}]}}}}, "tuple_type": null, "type_vars": [], "typeddict_type": null}}, "Tuple": {".class": "SymbolTableNode", "cross_ref": "typing.Tuple", "kind": "Gdef", "module_hidden": true, "module_public": false}, "Type": {".class": "SymbolTableNode", "cross_ref": "typing.Type", "kind": "Gdef", "module_hidden": true, "module_public": false}, "TypeVar": {".class": "SymbolTableNode", "cross_ref": "typing.TypeVar", "kind": "Gdef", "module_hidden": true, "module_public": false}, "Union": {".class": "SymbolTableNode", "cross_ref": "typing.Union", "kind": "Gdef", "module_hidden": true, "module_public": false}, "_Cell": {".class": "SymbolTableNode", "kind": "Gdef", "node": {".class": "TypeInfo", "_promote": null, "abstract_attributes": [], "bases": ["builtins.object"], "declared_metaclass": null, "defn": {".class": "ClassDef", "fullname": "types._Cell", "name": "_Cell", "type_vars": []}, "flags": [], "fullname": "types._Cell", "metaclass_type": null, "metadata": {}, "module_name": "types", "mro": ["types._Cell", "builtins.object"], "names": {".class": "SymbolTable", "cell_contents": {".class": "SymbolTableNode", "kind": "Mdef", "node": {".class": "Var", "flags": ["is_initialized_in_class"], "fullname": "types._Cell.cell_contents", "name": "cell_contents", "type": {".class": "AnyType", "missing_import_name": null, "source_any": null, "type_of_any": 2}}}}, "tuple_type": null, "type_vars": [], "typeddict_type": null}}, "_KT": {".class": "SymbolTableNode", "kind": "Gdef", "node": {".class": "TypeVarExpr", "fullname": "types._KT", "name": "_KT", "upper_bound": "builtins.object", "values": [], "variance": 0}}, "_StaticFunctionType": {".class": "SymbolTableNode", "kind": "Gdef", "node": {".class": "TypeInfo", "_promote": null, "abstract_attributes": [], "bases": ["builtins.object"], "declared_metaclass": null, "defn": {".class": "ClassDef", "fullname": "types._StaticFunctionType", "name": "_StaticFunctionType", "type_vars": []}, "flags": [], "fullname": "types._StaticFunctionType", "metaclass_type": null, "metadata": {}, "module_name": "types", "mro": ["types._StaticFunctionType", "builtins.object"], "names": {".class": "SymbolTable", "__get__": {".class": "SymbolTableNode", "kind": "Mdef", "node": {".class": "FuncDef", "arg_kinds": [0, 0, 0], "arg_names": ["self", "obj", "type"], "flags": [], "fullname": "types._StaticFunctionType.__get__", "name": "__get__", "type": {".class": "CallableType", "arg_kinds": [0, 0, 0], "arg_names": ["self", "obj", "type"], "arg_types": ["types._StaticFunctionType", {".class": "UnionType", "items": ["builtins.object", {".class": "NoneTyp"}]}, {".class": "UnionType", "items": ["builtins.type", {".class": "NoneTyp"}]}], "bound_args": [], "def_extras": {"first_arg": "self"}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "__get__ of _StaticFunctionType", "ret_type": "types.FunctionType", "variables": []}}}}, "tuple_type": null, "type_vars": [], "typeddict_type": null}}, "_T": {".class": "SymbolTableNode", "kind": "Gdef", "node": {".class": "TypeVarExpr", "fullname": "types._T", "name": "_T", "upper_bound": "builtins.object", "values": [], "variance": 0}}, "_T_co": {".class": "SymbolTableNode", "kind": "Gdef", "node": {".class": "TypeVarExpr", "fullname": "types._T_co", "name": "_T_co", "upper_bound": "builtins.object", "values": [], "variance": 1}}, "_T_contra": {".class": "SymbolTableNode", "kind": "Gdef", "node": {".class": "TypeVarExpr", "fullname": "types._T_contra", "name": "_T_contra", "upper_bound": "builtins.object", "values": [], "variance": 2}}, "_VT": {".class": "SymbolTableNode", "kind": "Gdef", "node": {".class": "TypeVarExpr", "fullname": "types._VT", "name": "_VT", "upper_bound": "builtins.object", "values": [], "variance": 0}}, "__doc__": {".class": "SymbolTableNode", "kind": "Gdef", "node": {".class": "Var", "flags": [], "fullname": "types.__doc__", "name": "__doc__", "type": "builtins.str"}}, "__file__": {".class": "SymbolTableNode", "kind": "Gdef", "node": {".class": "Var", "flags": [], "fullname": "types.__file__", "name": "__file__", "type": "builtins.str"}}, "__name__": {".class": "SymbolTableNode", "kind": "Gdef", "node": {".class": "Var", "flags": [], "fullname": "types.__name__", "name": "__name__", "type": "builtins.str"}}, "__package__": {".class": "SymbolTableNode", "kind": "Gdef", "node": {".class": "Var", "flags": [], "fullname": "types.__package__", "name": "__package__", "type": "builtins.str"}}, "coroutine": {".class": "SymbolTableNode", "kind": "Gdef", "node": {".class": "FuncDef", "arg_kinds": [0], "arg_names": ["f"], "flags": [], "fullname": "types.coroutine", "name": "coroutine", "type": {".class": "CallableType", "arg_kinds": [0], "arg_names": ["f"], "arg_types": [{".class": "CallableType", "arg_kinds": [2, 4], "arg_names": [null, null], "arg_types": [{".class": "AnyType", "missing_import_name": null, "source_any": null, "type_of_any": 2}, {".class": "AnyType", "missing_import_name": null, "source_any": null, "type_of_any": 2}], "bound_args": [], "def_extras": {}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": true, "name": null, "ret_type": {".class": "AnyType", "missing_import_name": null, "source_any": null, "type_of_any": 2}, "variables": []}], "bound_args": [], "def_extras": {"first_arg": null}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "coroutine", "ret_type": "types.CoroutineType", "variables": []}}}, "new_class": {".class": "SymbolTableNode", "kind": "Gdef", "node": {".class": "FuncDef", "arg_kinds": [0, 1, 1, 1], "arg_names": ["name", "bases", "kwds", "exec_body"], "flags": [], "fullname": "types.new_class", "name": "new_class", "type": {".class": "CallableType", "arg_kinds": [0, 1, 1, 1], "arg_names": ["name", "bases", "kwds", "exec_body"], "arg_types": ["builtins.str", {".class": "Instance", "args": ["builtins.type"], "type_ref": "builtins.tuple"}, {".class": "Instance", "args": ["builtins.str", {".class": "AnyType", "missing_import_name": null, "source_any": null, "type_of_any": 2}], "type_ref": "builtins.dict"}, {".class": "CallableType", "arg_kinds": [0], "arg_names": [null], "arg_types": [{".class": "Instance", "args": ["builtins.str", {".class": "AnyType", "missing_import_name": null, "source_any": null, "type_of_any": 2}], "type_ref": "builtins.dict"}], "bound_args": [], "def_extras": {}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": null, "ret_type": {".class": "NoneTyp"}, "variables": []}], "bound_args": [], "def_extras": {"first_arg": null}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "new_class", "ret_type": "builtins.type", "variables": []}}}, "overload": {".class": "SymbolTableNode", "cross_ref": "typing.overload", "kind": "Gdef", "module_hidden": true, "module_public": false}, "prepare_class": {".class": "SymbolTableNode", "kind": "Gdef", "node": {".class": "FuncDef", "arg_kinds": [0, 1, 1], "arg_names": ["name", "bases", "kwds"], "flags": [], "fullname": "types.prepare_class", "name": "prepare_class", "type": {".class": "CallableType", "arg_kinds": [0, 1, 1], "arg_names": ["name", "bases", "kwds"], "arg_types": ["builtins.str", {".class": "Instance", "args": ["builtins.type"], "type_ref": "builtins.tuple"}, {".class": "Instance", "args": ["builtins.str", {".class": "AnyType", "missing_import_name": null, "source_any": null, "type_of_any": 2}], "type_ref": "builtins.dict"}], "bound_args": [], "def_extras": {"first_arg": null}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "prepare_class", "ret_type": {".class": "TupleType", "fallback": {".class": "Instance", "args": [{".class": "AnyType", "missing_import_name": null, "source_any": null, "type_of_any": 6}], "type_ref": "builtins.tuple"}, "implicit": false, "items": ["builtins.type", {".class": "Instance", "args": ["builtins.str", {".class": "AnyType", "missing_import_name": null, "source_any": null, "type_of_any": 2}], "type_ref": "builtins.dict"}, {".class": "Instance", "args": ["builtins.str", {".class": "AnyType", "missing_import_name": null, "source_any": null, "type_of_any": 2}], "type_ref": "builtins.dict"}]}, "variables": []}}}, "sys": {".class": "SymbolTableNode", "cross_ref": "sys", "kind": "Gdef", "module_hidden": true, "module_public": false}}, "path": "/usr/lib/python3/dist-packages/mypy/typeshed/stdlib/3/types.pyi"}
\ No newline at end of file
diff --git a/Postgres/StressTests/.mypy_cache/3.7/types.meta.json b/Postgres/StressTests/.mypy_cache/3.7/types.meta.json
deleted file mode 100644
index 8e76d52..0000000
--- a/Postgres/StressTests/.mypy_cache/3.7/types.meta.json
+++ /dev/null
@@ -1 +0,0 @@
-{"child_modules": [], "data_mtime": 1553688971, "dep_lines": [6, 7, 14, 1, 1], "dep_prios": [10, 5, 5, 5, 30], "dependencies": ["sys", "typing", "_importlib_modulespec", "builtins", "abc"], "hash": "efcd9940ea0dcd0f3fc75f7350316864", "id": "types", "ignore_all": true, "interface_hash": "813a602d04d2cca5f7e32b6f596bdd12", "mtime": 1549659920, "options": {"allow_redefinition": false, "allow_untyped_globals": false, "always_false": [], "always_true": [], "bazel": false, "check_untyped_defs": false, "disallow_any_decorated": false, "disallow_any_explicit": false, "disallow_any_expr": false, "disallow_any_generics": false, "disallow_any_unimported": false, "disallow_incomplete_defs": false, "disallow_subclassing_any": false, "disallow_untyped_calls": false, "disallow_untyped_decorators": false, "disallow_untyped_defs": false, "follow_imports": "normal", "follow_imports_for_stubs": false, "ignore_errors": false, "ignore_missing_imports": false, "local_partial_types": false, "mypyc": false, "new_semantic_analyzer": false, "no_implicit_optional": false, "platform": "linux", "plugins": [], "show_none_errors": true, "strict_optional": true, "strict_optional_whitelist": null, "warn_no_return": true, "warn_return_any": false, "warn_unused_ignores": false}, "path": "/usr/lib/python3/dist-packages/mypy/typeshed/stdlib/3/types.pyi", "size": 7720, "suppressed": [], "version_id": "0.670"}
\ No newline at end of file
diff --git a/Postgres/StressTests/.mypy_cache/3.7/typing.data.json b/Postgres/StressTests/.mypy_cache/3.7/typing.data.json
deleted file mode 100644
index 05616da..0000000
--- a/Postgres/StressTests/.mypy_cache/3.7/typing.data.json
+++ /dev/null
@@ -1 +0,0 @@
-{".class": "MypyFile", "_fullname": "typing", "is_partial_stub_package": false, "is_stub": true, "names": {".class": "SymbolTable", "ABCMeta": {".class": "SymbolTableNode", "cross_ref": "abc.ABCMeta", "kind": "Gdef", "module_hidden": true, "module_public": false}, "AbstractSet": {".class": "SymbolTableNode", "kind": "Gdef", "node": {".class": "TypeInfo", "_promote": null, "abstract_attributes": ["__contains__", "__iter__", "__len__"], "bases": [{".class": "Instance", "args": [{".class": "TypeVarType", "fullname": "typing._T_co", "id": 1, "name": "_T_co", "upper_bound": "builtins.object", "values": [], "variance": 1}], "type_ref": "typing.Collection"}], "declared_metaclass": null, "defn": {".class": "ClassDef", "fullname": "typing.AbstractSet", "name": "AbstractSet", "type_vars": [{".class": "TypeVarDef", "fullname": "typing._T_co", "id": 1, "name": "_T_co", "upper_bound": "builtins.object", "values": [], "variance": 1}]}, "flags": ["is_abstract"], "fullname": "typing.AbstractSet", "metaclass_type": "abc.ABCMeta", "metadata": {}, "module_name": "typing", "mro": ["typing.AbstractSet", "typing.Collection", "typing.Iterable", "typing.Container", "builtins.object"], "names": {".class": "SymbolTable", "__and__": {".class": "SymbolTableNode", "kind": "Mdef", "node": {".class": "FuncDef", "arg_kinds": [0, 0], "arg_names": ["self", "s"], "flags": [], "fullname": "typing.AbstractSet.__and__", "name": "__and__", "type": {".class": "CallableType", "arg_kinds": [0, 0], "arg_names": [null, null], "arg_types": [{".class": "Instance", "args": [{".class": "TypeVarType", "fullname": "typing._T_co", "id": 1, "name": "_T_co", "upper_bound": "builtins.object", "values": [], "variance": 1}], "type_ref": "typing.AbstractSet"}, {".class": "Instance", "args": [{".class": "AnyType", "missing_import_name": null, "source_any": null, "type_of_any": 2}], "type_ref": "typing.AbstractSet"}], "bound_args": [], "def_extras": {"first_arg": "self"}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "__and__ of AbstractSet", "ret_type": {".class": "Instance", "args": [{".class": "TypeVarType", "fullname": "typing._T_co", "id": 1, "name": "_T_co", "upper_bound": "builtins.object", "values": [], "variance": 1}], "type_ref": "typing.AbstractSet"}, "variables": []}}}, "__contains__": {".class": "SymbolTableNode", "kind": "Mdef", "node": {".class": "Decorator", "func": {".class": "FuncDef", "arg_kinds": [0, 0], "arg_names": ["self", "x"], "flags": ["is_decorated", "is_abstract"], "fullname": "typing.AbstractSet.__contains__", "name": "__contains__", "type": {".class": "CallableType", "arg_kinds": [0, 0], "arg_names": [null, null], "arg_types": [{".class": "Instance", "args": [{".class": "TypeVarType", "fullname": "typing._T_co", "id": 1, "name": "_T_co", "upper_bound": "builtins.object", "values": [], "variance": 1}], "type_ref": "typing.AbstractSet"}, "builtins.object"], "bound_args": [], "def_extras": {"first_arg": "self"}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "__contains__ of AbstractSet", "ret_type": "builtins.bool", "variables": []}}, "is_overload": false, "var": {".class": "Var", "flags": ["is_initialized_in_class"], "fullname": null, "name": "__contains__", "type": {".class": "CallableType", "arg_kinds": [0, 0], "arg_names": [null, null], "arg_types": [{".class": "Instance", "args": [{".class": "TypeVarType", "fullname": "typing._T_co", "id": 1, "name": "_T_co", "upper_bound": "builtins.object", "values": [], "variance": 1}], "type_ref": "typing.AbstractSet"}, "builtins.object"], "bound_args": [], "def_extras": {"first_arg": "self"}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "__contains__ of AbstractSet", "ret_type": "builtins.bool", "variables": []}}}}, "__ge__": {".class": "SymbolTableNode", "kind": "Mdef", "node": {".class": "FuncDef", "arg_kinds": [0, 0], "arg_names": ["self", "s"], "flags": [], "fullname": "typing.AbstractSet.__ge__", "name": "__ge__", "type": {".class": "CallableType", "arg_kinds": [0, 0], "arg_names": [null, null], "arg_types": [{".class": "Instance", "args": [{".class": "TypeVarType", "fullname": "typing._T_co", "id": 1, "name": "_T_co", "upper_bound": "builtins.object", "values": [], "variance": 1}], "type_ref": "typing.AbstractSet"}, {".class": "Instance", "args": [{".class": "AnyType", "missing_import_name": null, "source_any": null, "type_of_any": 2}], "type_ref": "typing.AbstractSet"}], "bound_args": [], "def_extras": {"first_arg": "self"}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "__ge__ of AbstractSet", "ret_type": "builtins.bool", "variables": []}}}, "__gt__": {".class": "SymbolTableNode", "kind": "Mdef", "node": {".class": "FuncDef", "arg_kinds": [0, 0], "arg_names": ["self", "s"], "flags": [], "fullname": "typing.AbstractSet.__gt__", "name": "__gt__", "type": {".class": "CallableType", "arg_kinds": [0, 0], "arg_names": [null, null], "arg_types": [{".class": "Instance", "args": [{".class": "TypeVarType", "fullname": "typing._T_co", "id": 1, "name": "_T_co", "upper_bound": "builtins.object", "values": [], "variance": 1}], "type_ref": "typing.AbstractSet"}, {".class": "Instance", "args": [{".class": "AnyType", "missing_import_name": null, "source_any": null, "type_of_any": 2}], "type_ref": "typing.AbstractSet"}], "bound_args": [], "def_extras": {"first_arg": "self"}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "__gt__ of AbstractSet", "ret_type": "builtins.bool", "variables": []}}}, "__le__": {".class": "SymbolTableNode", "kind": "Mdef", "node": {".class": "FuncDef", "arg_kinds": [0, 0], "arg_names": ["self", "s"], "flags": [], "fullname": "typing.AbstractSet.__le__", "name": "__le__", "type": {".class": "CallableType", "arg_kinds": [0, 0], "arg_names": [null, null], "arg_types": [{".class": "Instance", "args": [{".class": "TypeVarType", "fullname": "typing._T_co", "id": 1, "name": "_T_co", "upper_bound": "builtins.object", "values": [], "variance": 1}], "type_ref": "typing.AbstractSet"}, {".class": "Instance", "args": [{".class": "AnyType", "missing_import_name": null, "source_any": null, "type_of_any": 2}], "type_ref": "typing.AbstractSet"}], "bound_args": [], "def_extras": {"first_arg": "self"}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "__le__ of AbstractSet", "ret_type": "builtins.bool", "variables": []}}}, "__lt__": {".class": "SymbolTableNode", "kind": "Mdef", "node": {".class": "FuncDef", "arg_kinds": [0, 0], "arg_names": ["self", "s"], "flags": [], "fullname": "typing.AbstractSet.__lt__", "name": "__lt__", "type": {".class": "CallableType", "arg_kinds": [0, 0], "arg_names": [null, null], "arg_types": [{".class": "Instance", "args": [{".class": "TypeVarType", "fullname": "typing._T_co", "id": 1, "name": "_T_co", "upper_bound": "builtins.object", "values": [], "variance": 1}], "type_ref": "typing.AbstractSet"}, {".class": "Instance", "args": [{".class": "AnyType", "missing_import_name": null, "source_any": null, "type_of_any": 2}], "type_ref": "typing.AbstractSet"}], "bound_args": [], "def_extras": {"first_arg": "self"}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "__lt__ of AbstractSet", "ret_type": "builtins.bool", "variables": []}}}, "__or__": {".class": "SymbolTableNode", "kind": "Mdef", "node": {".class": "FuncDef", "arg_kinds": [0, 0], "arg_names": ["self", "s"], "flags": [], "fullname": "typing.AbstractSet.__or__", "name": "__or__", "type": {".class": "CallableType", "arg_kinds": [0, 0], "arg_names": [null, null], "arg_types": [{".class": "Instance", "args": [{".class": "TypeVarType", "fullname": "typing._T_co", "id": 1, "name": "_T_co", "upper_bound": "builtins.object", "values": [], "variance": 1}], "type_ref": "typing.AbstractSet"}, {".class": "Instance", "args": [{".class": "TypeVarType", "fullname": "typing._T", "id": -1, "name": "_T", "upper_bound": "builtins.object", "values": [], "variance": 0}], "type_ref": "typing.AbstractSet"}], "bound_args": [], "def_extras": {"first_arg": "self"}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "__or__ of AbstractSet", "ret_type": {".class": "Instance", "args": [{".class": "UnionType", "items": [{".class": "TypeVarType", "fullname": "typing._T_co", "id": 1, "name": "_T_co", "upper_bound": "builtins.object", "values": [], "variance": 1}, {".class": "TypeVarType", "fullname": "typing._T", "id": -1, "name": "_T", "upper_bound": "builtins.object", "values": [], "variance": 0}]}], "type_ref": "typing.AbstractSet"}, "variables": [{".class": "TypeVarDef", "fullname": "typing._T", "id": -1, "name": "_T", "upper_bound": "builtins.object", "values": [], "variance": 0}]}}}, "__sub__": {".class": "SymbolTableNode", "kind": "Mdef", "node": {".class": "FuncDef", "arg_kinds": [0, 0], "arg_names": ["self", "s"], "flags": [], "fullname": "typing.AbstractSet.__sub__", "name": "__sub__", "type": {".class": "CallableType", "arg_kinds": [0, 0], "arg_names": [null, null], "arg_types": [{".class": "Instance", "args": [{".class": "TypeVarType", "fullname": "typing._T_co", "id": 1, "name": "_T_co", "upper_bound": "builtins.object", "values": [], "variance": 1}], "type_ref": "typing.AbstractSet"}, {".class": "Instance", "args": [{".class": "AnyType", "missing_import_name": null, "source_any": null, "type_of_any": 2}], "type_ref": "typing.AbstractSet"}], "bound_args": [], "def_extras": {"first_arg": "self"}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "__sub__ of AbstractSet", "ret_type": {".class": "Instance", "args": [{".class": "TypeVarType", "fullname": "typing._T_co", "id": 1, "name": "_T_co", "upper_bound": "builtins.object", "values": [], "variance": 1}], "type_ref": "typing.AbstractSet"}, "variables": []}}}, "__xor__": {".class": "SymbolTableNode", "kind": "Mdef", "node": {".class": "FuncDef", "arg_kinds": [0, 0], "arg_names": ["self", "s"], "flags": [], "fullname": "typing.AbstractSet.__xor__", "name": "__xor__", "type": {".class": "CallableType", "arg_kinds": [0, 0], "arg_names": [null, null], "arg_types": [{".class": "Instance", "args": [{".class": "TypeVarType", "fullname": "typing._T_co", "id": 1, "name": "_T_co", "upper_bound": "builtins.object", "values": [], "variance": 1}], "type_ref": "typing.AbstractSet"}, {".class": "Instance", "args": [{".class": "TypeVarType", "fullname": "typing._T", "id": -1, "name": "_T", "upper_bound": "builtins.object", "values": [], "variance": 0}], "type_ref": "typing.AbstractSet"}], "bound_args": [], "def_extras": {"first_arg": "self"}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "__xor__ of AbstractSet", "ret_type": {".class": "Instance", "args": [{".class": "UnionType", "items": [{".class": "TypeVarType", "fullname": "typing._T_co", "id": 1, "name": "_T_co", "upper_bound": "builtins.object", "values": [], "variance": 1}, {".class": "TypeVarType", "fullname": "typing._T", "id": -1, "name": "_T", "upper_bound": "builtins.object", "values": [], "variance": 0}]}], "type_ref": "typing.AbstractSet"}, "variables": [{".class": "TypeVarDef", "fullname": "typing._T", "id": -1, "name": "_T", "upper_bound": "builtins.object", "values": [], "variance": 0}]}}}, "isdisjoint": {".class": "SymbolTableNode", "kind": "Mdef", "node": {".class": "FuncDef", "arg_kinds": [0, 0], "arg_names": ["self", "s"], "flags": [], "fullname": "typing.AbstractSet.isdisjoint", "name": "isdisjoint", "type": {".class": "CallableType", "arg_kinds": [0, 0], "arg_names": ["self", "s"], "arg_types": [{".class": "Instance", "args": [{".class": "TypeVarType", "fullname": "typing._T_co", "id": 1, "name": "_T_co", "upper_bound": "builtins.object", "values": [], "variance": 1}], "type_ref": "typing.AbstractSet"}, {".class": "Instance", "args": [{".class": "AnyType", "missing_import_name": null, "source_any": null, "type_of_any": 2}], "type_ref": "typing.AbstractSet"}], "bound_args": [], "def_extras": {"first_arg": "self"}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "isdisjoint of AbstractSet", "ret_type": "builtins.bool", "variables": []}}}}, "tuple_type": null, "type_vars": ["_T_co"], "typeddict_type": null}}, "Any": {".class": "SymbolTableNode", "kind": "Gdef", "node": {".class": "Var", "flags": [], "fullname": "typing.Any", "name": "Any", "type": "builtins.object"}}, "AnyStr": {".class": "SymbolTableNode", "kind": "Gdef", "node": {".class": "TypeVarExpr", "fullname": "typing.AnyStr", "name": "AnyStr", "upper_bound": "builtins.object", "values": ["builtins.str", "builtins.bytes"], "variance": 0}}, "AsyncContextManager": {".class": "SymbolTableNode", "kind": "Gdef", "node": {".class": "TypeInfo", "_promote": null, "abstract_attributes": [], "bases": ["builtins.object"], "declared_metaclass": null, "defn": {".class": "ClassDef", "fullname": "typing.AsyncContextManager", "name": "AsyncContextManager", "type_vars": [{".class": "TypeVarDef", "fullname": "typing._T_co", "id": 1, "name": "_T_co", "upper_bound": "builtins.object", "values": [], "variance": 1}]}, "flags": ["is_protocol", "runtime_protocol"], "fullname": "typing.AsyncContextManager", "metaclass_type": "abc.ABCMeta", "metadata": {}, "module_name": "typing", "mro": ["typing.AsyncContextManager", "builtins.object"], "names": {".class": "SymbolTable", "__aenter__": {".class": "SymbolTableNode", "kind": "Mdef", "node": {".class": "FuncDef", "arg_kinds": [0], "arg_names": ["self"], "flags": [], "fullname": "typing.AsyncContextManager.__aenter__", "name": "__aenter__", "type": {".class": "CallableType", "arg_kinds": [0], "arg_names": ["self"], "arg_types": [{".class": "Instance", "args": [{".class": "TypeVarType", "fullname": "typing._T_co", "id": 1, "name": "_T_co", "upper_bound": "builtins.object", "values": [], "variance": 1}], "type_ref": "typing.AsyncContextManager"}], "bound_args": [], "def_extras": {"first_arg": "self"}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "__aenter__ of AsyncContextManager", "ret_type": {".class": "Instance", "args": [{".class": "TypeVarType", "fullname": "typing._T_co", "id": 1, "name": "_T_co", "upper_bound": "builtins.object", "values": [], "variance": 1}], "type_ref": "typing.Awaitable"}, "variables": []}}}, "__aexit__": {".class": "SymbolTableNode", "kind": "Mdef", "node": {".class": "FuncDef", "arg_kinds": [0, 0, 0, 0], "arg_names": ["self", "exc_type", "exc_value", "traceback"], "flags": [], "fullname": "typing.AsyncContextManager.__aexit__", "name": "__aexit__", "type": {".class": "CallableType", "arg_kinds": [0, 0, 0, 0], "arg_names": ["self", "exc_type", "exc_value", "traceback"], "arg_types": [{".class": "Instance", "args": [{".class": "TypeVarType", "fullname": "typing._T_co", "id": 1, "name": "_T_co", "upper_bound": "builtins.object", "values": [], "variance": 1}], "type_ref": "typing.AsyncContextManager"}, {".class": "UnionType", "items": [{".class": "TypeType", "item": "builtins.BaseException"}, {".class": "NoneTyp"}]}, {".class": "UnionType", "items": ["builtins.BaseException", {".class": "NoneTyp"}]}, {".class": "UnionType", "items": ["types.TracebackType", {".class": "NoneTyp"}]}], "bound_args": [], "def_extras": {"first_arg": "self"}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "__aexit__ of AsyncContextManager", "ret_type": {".class": "Instance", "args": [{".class": "UnionType", "items": ["builtins.bool", {".class": "NoneTyp"}]}], "type_ref": "typing.Awaitable"}, "variables": []}}}}, "tuple_type": null, "type_vars": ["_T_co"], "typeddict_type": null}}, "AsyncGenerator": {".class": "SymbolTableNode", "kind": "Gdef", "node": {".class": "TypeInfo", "_promote": null, "abstract_attributes": ["__aiter__", "__anext__", "aclose", "asend", "athrow"], "bases": [{".class": "Instance", "args": [{".class": "TypeVarType", "fullname": "typing._T_co", "id": 1, "name": "_T_co", "upper_bound": "builtins.object", "values": [], "variance": 1}], "type_ref": "typing.AsyncIterator"}], "declared_metaclass": null, "defn": {".class": "ClassDef", "fullname": "typing.AsyncGenerator", "name": "AsyncGenerator", "type_vars": [{".class": "TypeVarDef", "fullname": "typing._T_co", "id": 1, "name": "_T_co", "upper_bound": "builtins.object", "values": [], "variance": 1}, {".class": "TypeVarDef", "fullname": "typing._T_contra", "id": 2, "name": "_T_contra", "upper_bound": "builtins.object", "values": [], "variance": 2}]}, "flags": ["is_abstract"], "fullname": "typing.AsyncGenerator", "metaclass_type": "abc.ABCMeta", "metadata": {}, "module_name": "typing", "mro": ["typing.AsyncGenerator", "typing.AsyncIterator", "typing.AsyncIterable", "builtins.object"], "names": {".class": "SymbolTable", "__aiter__": {".class": "SymbolTableNode", "kind": "Mdef", "node": {".class": "Decorator", "func": {".class": "FuncDef", "arg_kinds": [0], "arg_names": ["self"], "flags": ["is_decorated", "is_abstract"], "fullname": "typing.AsyncGenerator.__aiter__", "name": "__aiter__", "type": {".class": "CallableType", "arg_kinds": [0], "arg_names": ["self"], "arg_types": [{".class": "Instance", "args": [{".class": "TypeVarType", "fullname": "typing._T_co", "id": 1, "name": "_T_co", "upper_bound": "builtins.object", "values": [], "variance": 1}, {".class": "TypeVarType", "fullname": "typing._T_contra", "id": 2, "name": "_T_contra", "upper_bound": "builtins.object", "values": [], "variance": 2}], "type_ref": "typing.AsyncGenerator"}], "bound_args": [], "def_extras": {"first_arg": "self"}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "__aiter__ of AsyncGenerator", "ret_type": {".class": "Instance", "args": [{".class": "TypeVarType", "fullname": "typing._T_co", "id": 1, "name": "_T_co", "upper_bound": "builtins.object", "values": [], "variance": 1}, {".class": "TypeVarType", "fullname": "typing._T_contra", "id": 2, "name": "_T_contra", "upper_bound": "builtins.object", "values": [], "variance": 2}], "type_ref": "typing.AsyncGenerator"}, "variables": []}}, "is_overload": false, "var": {".class": "Var", "flags": ["is_initialized_in_class"], "fullname": null, "name": "__aiter__", "type": {".class": "CallableType", "arg_kinds": [0], "arg_names": ["self"], "arg_types": [{".class": "Instance", "args": [{".class": "TypeVarType", "fullname": "typing._T_co", "id": 1, "name": "_T_co", "upper_bound": "builtins.object", "values": [], "variance": 1}, {".class": "TypeVarType", "fullname": "typing._T_contra", "id": 2, "name": "_T_contra", "upper_bound": "builtins.object", "values": [], "variance": 2}], "type_ref": "typing.AsyncGenerator"}], "bound_args": [], "def_extras": {"first_arg": "self"}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "__aiter__ of AsyncGenerator", "ret_type": {".class": "Instance", "args": [{".class": "TypeVarType", "fullname": "typing._T_co", "id": 1, "name": "_T_co", "upper_bound": "builtins.object", "values": [], "variance": 1}, {".class": "TypeVarType", "fullname": "typing._T_contra", "id": 2, "name": "_T_contra", "upper_bound": "builtins.object", "values": [], "variance": 2}], "type_ref": "typing.AsyncGenerator"}, "variables": []}}}}, "__anext__": {".class": "SymbolTableNode", "kind": "Mdef", "node": {".class": "Decorator", "func": {".class": "FuncDef", "arg_kinds": [0], "arg_names": ["self"], "flags": ["is_decorated", "is_abstract"], "fullname": "typing.AsyncGenerator.__anext__", "name": "__anext__", "type": {".class": "CallableType", "arg_kinds": [0], "arg_names": ["self"], "arg_types": [{".class": "Instance", "args": [{".class": "TypeVarType", "fullname": "typing._T_co", "id": 1, "name": "_T_co", "upper_bound": "builtins.object", "values": [], "variance": 1}, {".class": "TypeVarType", "fullname": "typing._T_contra", "id": 2, "name": "_T_contra", "upper_bound": "builtins.object", "values": [], "variance": 2}], "type_ref": "typing.AsyncGenerator"}], "bound_args": [], "def_extras": {"first_arg": "self"}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "__anext__ of AsyncGenerator", "ret_type": {".class": "Instance", "args": [{".class": "TypeVarType", "fullname": "typing._T_co", "id": 1, "name": "_T_co", "upper_bound": "builtins.object", "values": [], "variance": 1}], "type_ref": "typing.Awaitable"}, "variables": []}}, "is_overload": false, "var": {".class": "Var", "flags": ["is_initialized_in_class"], "fullname": null, "name": "__anext__", "type": {".class": "CallableType", "arg_kinds": [0], "arg_names": ["self"], "arg_types": [{".class": "Instance", "args": [{".class": "TypeVarType", "fullname": "typing._T_co", "id": 1, "name": "_T_co", "upper_bound": "builtins.object", "values": [], "variance": 1}, {".class": "TypeVarType", "fullname": "typing._T_contra", "id": 2, "name": "_T_contra", "upper_bound": "builtins.object", "values": [], "variance": 2}], "type_ref": "typing.AsyncGenerator"}], "bound_args": [], "def_extras": {"first_arg": "self"}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "__anext__ of AsyncGenerator", "ret_type": {".class": "Instance", "args": [{".class": "TypeVarType", "fullname": "typing._T_co", "id": 1, "name": "_T_co", "upper_bound": "builtins.object", "values": [], "variance": 1}], "type_ref": "typing.Awaitable"}, "variables": []}}}}, "aclose": {".class": "SymbolTableNode", "kind": "Mdef", "node": {".class": "Decorator", "func": {".class": "FuncDef", "arg_kinds": [0], "arg_names": ["self"], "flags": ["is_decorated", "is_abstract"], "fullname": "typing.AsyncGenerator.aclose", "name": "aclose", "type": {".class": "CallableType", "arg_kinds": [0], "arg_names": ["self"], "arg_types": [{".class": "Instance", "args": [{".class": "TypeVarType", "fullname": "typing._T_co", "id": 1, "name": "_T_co", "upper_bound": "builtins.object", "values": [], "variance": 1}, {".class": "TypeVarType", "fullname": "typing._T_contra", "id": 2, "name": "_T_contra", "upper_bound": "builtins.object", "values": [], "variance": 2}], "type_ref": "typing.AsyncGenerator"}], "bound_args": [], "def_extras": {"first_arg": "self"}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "aclose of AsyncGenerator", "ret_type": {".class": "Instance", "args": [{".class": "TypeVarType", "fullname": "typing._T_co", "id": 1, "name": "_T_co", "upper_bound": "builtins.object", "values": [], "variance": 1}], "type_ref": "typing.Awaitable"}, "variables": []}}, "is_overload": false, "var": {".class": "Var", "flags": ["is_initialized_in_class"], "fullname": null, "name": "aclose", "type": {".class": "CallableType", "arg_kinds": [0], "arg_names": ["self"], "arg_types": [{".class": "Instance", "args": [{".class": "TypeVarType", "fullname": "typing._T_co", "id": 1, "name": "_T_co", "upper_bound": "builtins.object", "values": [], "variance": 1}, {".class": "TypeVarType", "fullname": "typing._T_contra", "id": 2, "name": "_T_contra", "upper_bound": "builtins.object", "values": [], "variance": 2}], "type_ref": "typing.AsyncGenerator"}], "bound_args": [], "def_extras": {"first_arg": "self"}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "aclose of AsyncGenerator", "ret_type": {".class": "Instance", "args": [{".class": "TypeVarType", "fullname": "typing._T_co", "id": 1, "name": "_T_co", "upper_bound": "builtins.object", "values": [], "variance": 1}], "type_ref": "typing.Awaitable"}, "variables": []}}}}, "ag_await": {".class": "SymbolTableNode", "kind": "Mdef", "node": {".class": "Decorator", "func": {".class": "FuncDef", "arg_kinds": [0], "arg_names": ["self"], "flags": ["is_property", "is_decorated"], "fullname": "typing.AsyncGenerator.ag_await", "name": "ag_await", "type": {".class": "CallableType", "arg_kinds": [0], "arg_names": ["self"], "arg_types": [{".class": "Instance", "args": [{".class": "TypeVarType", "fullname": "typing._T_co", "id": 1, "name": "_T_co", "upper_bound": "builtins.object", "values": [], "variance": 1}, {".class": "TypeVarType", "fullname": "typing._T_contra", "id": 2, "name": "_T_contra", "upper_bound": "builtins.object", "values": [], "variance": 2}], "type_ref": "typing.AsyncGenerator"}], "bound_args": [], "def_extras": {"first_arg": "self"}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "ag_await of AsyncGenerator", "ret_type": {".class": "AnyType", "missing_import_name": null, "source_any": null, "type_of_any": 2}, "variables": []}}, "is_overload": false, "var": {".class": "Var", "flags": ["is_initialized_in_class", "is_property"], "fullname": null, "name": "ag_await", "type": {".class": "CallableType", "arg_kinds": [0], "arg_names": ["self"], "arg_types": [{".class": "Instance", "args": [{".class": "TypeVarType", "fullname": "typing._T_co", "id": 1, "name": "_T_co", "upper_bound": "builtins.object", "values": [], "variance": 1}, {".class": "TypeVarType", "fullname": "typing._T_contra", "id": 2, "name": "_T_contra", "upper_bound": "builtins.object", "values": [], "variance": 2}], "type_ref": "typing.AsyncGenerator"}], "bound_args": [], "def_extras": {"first_arg": "self"}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "ag_await of AsyncGenerator", "ret_type": {".class": "AnyType", "missing_import_name": null, "source_any": null, "type_of_any": 2}, "variables": []}}}}, "ag_code": {".class": "SymbolTableNode", "kind": "Mdef", "node": {".class": "Decorator", "func": {".class": "FuncDef", "arg_kinds": [0], "arg_names": ["self"], "flags": ["is_property", "is_decorated"], "fullname": "typing.AsyncGenerator.ag_code", "name": "ag_code", "type": {".class": "CallableType", "arg_kinds": [0], "arg_names": ["self"], "arg_types": [{".class": "Instance", "args": [{".class": "TypeVarType", "fullname": "typing._T_co", "id": 1, "name": "_T_co", "upper_bound": "builtins.object", "values": [], "variance": 1}, {".class": "TypeVarType", "fullname": "typing._T_contra", "id": 2, "name": "_T_contra", "upper_bound": "builtins.object", "values": [], "variance": 2}], "type_ref": "typing.AsyncGenerator"}], "bound_args": [], "def_extras": {"first_arg": "self"}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "ag_code of AsyncGenerator", "ret_type": "types.CodeType", "variables": []}}, "is_overload": false, "var": {".class": "Var", "flags": ["is_initialized_in_class", "is_property"], "fullname": null, "name": "ag_code", "type": {".class": "CallableType", "arg_kinds": [0], "arg_names": ["self"], "arg_types": [{".class": "Instance", "args": [{".class": "TypeVarType", "fullname": "typing._T_co", "id": 1, "name": "_T_co", "upper_bound": "builtins.object", "values": [], "variance": 1}, {".class": "TypeVarType", "fullname": "typing._T_contra", "id": 2, "name": "_T_contra", "upper_bound": "builtins.object", "values": [], "variance": 2}], "type_ref": "typing.AsyncGenerator"}], "bound_args": [], "def_extras": {"first_arg": "self"}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "ag_code of AsyncGenerator", "ret_type": "types.CodeType", "variables": []}}}}, "ag_frame": {".class": "SymbolTableNode", "kind": "Mdef", "node": {".class": "Decorator", "func": {".class": "FuncDef", "arg_kinds": [0], "arg_names": ["self"], "flags": ["is_property", "is_decorated"], "fullname": "typing.AsyncGenerator.ag_frame", "name": "ag_frame", "type": {".class": "CallableType", "arg_kinds": [0], "arg_names": ["self"], "arg_types": [{".class": "Instance", "args": [{".class": "TypeVarType", "fullname": "typing._T_co", "id": 1, "name": "_T_co", "upper_bound": "builtins.object", "values": [], "variance": 1}, {".class": "TypeVarType", "fullname": "typing._T_contra", "id": 2, "name": "_T_contra", "upper_bound": "builtins.object", "values": [], "variance": 2}], "type_ref": "typing.AsyncGenerator"}], "bound_args": [], "def_extras": {"first_arg": "self"}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "ag_frame of AsyncGenerator", "ret_type": "types.FrameType", "variables": []}}, "is_overload": false, "var": {".class": "Var", "flags": ["is_initialized_in_class", "is_property"], "fullname": null, "name": "ag_frame", "type": {".class": "CallableType", "arg_kinds": [0], "arg_names": ["self"], "arg_types": [{".class": "Instance", "args": [{".class": "TypeVarType", "fullname": "typing._T_co", "id": 1, "name": "_T_co", "upper_bound": "builtins.object", "values": [], "variance": 1}, {".class": "TypeVarType", "fullname": "typing._T_contra", "id": 2, "name": "_T_contra", "upper_bound": "builtins.object", "values": [], "variance": 2}], "type_ref": "typing.AsyncGenerator"}], "bound_args": [], "def_extras": {"first_arg": "self"}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "ag_frame of AsyncGenerator", "ret_type": "types.FrameType", "variables": []}}}}, "ag_running": {".class": "SymbolTableNode", "kind": "Mdef", "node": {".class": "Decorator", "func": {".class": "FuncDef", "arg_kinds": [0], "arg_names": ["self"], "flags": ["is_property", "is_decorated"], "fullname": "typing.AsyncGenerator.ag_running", "name": "ag_running", "type": {".class": "CallableType", "arg_kinds": [0], "arg_names": ["self"], "arg_types": [{".class": "Instance", "args": [{".class": "TypeVarType", "fullname": "typing._T_co", "id": 1, "name": "_T_co", "upper_bound": "builtins.object", "values": [], "variance": 1}, {".class": "TypeVarType", "fullname": "typing._T_contra", "id": 2, "name": "_T_contra", "upper_bound": "builtins.object", "values": [], "variance": 2}], "type_ref": "typing.AsyncGenerator"}], "bound_args": [], "def_extras": {"first_arg": "self"}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "ag_running of AsyncGenerator", "ret_type": "builtins.bool", "variables": []}}, "is_overload": false, "var": {".class": "Var", "flags": ["is_initialized_in_class", "is_property"], "fullname": null, "name": "ag_running", "type": {".class": "CallableType", "arg_kinds": [0], "arg_names": ["self"], "arg_types": [{".class": "Instance", "args": [{".class": "TypeVarType", "fullname": "typing._T_co", "id": 1, "name": "_T_co", "upper_bound": "builtins.object", "values": [], "variance": 1}, {".class": "TypeVarType", "fullname": "typing._T_contra", "id": 2, "name": "_T_contra", "upper_bound": "builtins.object", "values": [], "variance": 2}], "type_ref": "typing.AsyncGenerator"}], "bound_args": [], "def_extras": {"first_arg": "self"}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "ag_running of AsyncGenerator", "ret_type": "builtins.bool", "variables": []}}}}, "asend": {".class": "SymbolTableNode", "kind": "Mdef", "node": {".class": "Decorator", "func": {".class": "FuncDef", "arg_kinds": [0, 0], "arg_names": ["self", "value"], "flags": ["is_decorated", "is_abstract"], "fullname": "typing.AsyncGenerator.asend", "name": "asend", "type": {".class": "CallableType", "arg_kinds": [0, 0], "arg_names": ["self", "value"], "arg_types": [{".class": "Instance", "args": [{".class": "TypeVarType", "fullname": "typing._T_co", "id": 1, "name": "_T_co", "upper_bound": "builtins.object", "values": [], "variance": 1}, {".class": "TypeVarType", "fullname": "typing._T_contra", "id": 2, "name": "_T_contra", "upper_bound": "builtins.object", "values": [], "variance": 2}], "type_ref": "typing.AsyncGenerator"}, {".class": "TypeVarType", "fullname": "typing._T_contra", "id": 2, "name": "_T_contra", "upper_bound": "builtins.object", "values": [], "variance": 2}], "bound_args": [], "def_extras": {"first_arg": "self"}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "asend of AsyncGenerator", "ret_type": {".class": "Instance", "args": [{".class": "TypeVarType", "fullname": "typing._T_co", "id": 1, "name": "_T_co", "upper_bound": "builtins.object", "values": [], "variance": 1}], "type_ref": "typing.Awaitable"}, "variables": []}}, "is_overload": false, "var": {".class": "Var", "flags": ["is_initialized_in_class"], "fullname": null, "name": "asend", "type": {".class": "CallableType", "arg_kinds": [0, 0], "arg_names": ["self", "value"], "arg_types": [{".class": "Instance", "args": [{".class": "TypeVarType", "fullname": "typing._T_co", "id": 1, "name": "_T_co", "upper_bound": "builtins.object", "values": [], "variance": 1}, {".class": "TypeVarType", "fullname": "typing._T_contra", "id": 2, "name": "_T_contra", "upper_bound": "builtins.object", "values": [], "variance": 2}], "type_ref": "typing.AsyncGenerator"}, {".class": "TypeVarType", "fullname": "typing._T_contra", "id": 2, "name": "_T_contra", "upper_bound": "builtins.object", "values": [], "variance": 2}], "bound_args": [], "def_extras": {"first_arg": "self"}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "asend of AsyncGenerator", "ret_type": {".class": "Instance", "args": [{".class": "TypeVarType", "fullname": "typing._T_co", "id": 1, "name": "_T_co", "upper_bound": "builtins.object", "values": [], "variance": 1}], "type_ref": "typing.Awaitable"}, "variables": []}}}}, "athrow": {".class": "SymbolTableNode", "kind": "Mdef", "node": {".class": "Decorator", "func": {".class": "FuncDef", "arg_kinds": [0, 0, 1, 1], "arg_names": ["self", "typ", "val", "tb"], "flags": ["is_decorated", "is_abstract"], "fullname": "typing.AsyncGenerator.athrow", "name": "athrow", "type": {".class": "CallableType", "arg_kinds": [0, 0, 1, 1], "arg_names": ["self", "typ", "val", "tb"], "arg_types": [{".class": "Instance", "args": [{".class": "TypeVarType", "fullname": "typing._T_co", "id": 1, "name": "_T_co", "upper_bound": "builtins.object", "values": [], "variance": 1}, {".class": "TypeVarType", "fullname": "typing._T_contra", "id": 2, "name": "_T_contra", "upper_bound": "builtins.object", "values": [], "variance": 2}], "type_ref": "typing.AsyncGenerator"}, {".class": "TypeType", "item": "builtins.BaseException"}, {".class": "UnionType", "items": ["builtins.BaseException", {".class": "NoneTyp"}]}, {".class": "AnyType", "missing_import_name": null, "source_any": null, "type_of_any": 2}], "bound_args": [], "def_extras": {"first_arg": "self"}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "athrow of AsyncGenerator", "ret_type": {".class": "Instance", "args": [{".class": "TypeVarType", "fullname": "typing._T_co", "id": 1, "name": "_T_co", "upper_bound": "builtins.object", "values": [], "variance": 1}], "type_ref": "typing.Awaitable"}, "variables": []}}, "is_overload": false, "var": {".class": "Var", "flags": ["is_initialized_in_class"], "fullname": null, "name": "athrow", "type": {".class": "CallableType", "arg_kinds": [0, 0, 1, 1], "arg_names": ["self", "typ", "val", "tb"], "arg_types": [{".class": "Instance", "args": [{".class": "TypeVarType", "fullname": "typing._T_co", "id": 1, "name": "_T_co", "upper_bound": "builtins.object", "values": [], "variance": 1}, {".class": "TypeVarType", "fullname": "typing._T_contra", "id": 2, "name": "_T_contra", "upper_bound": "builtins.object", "values": [], "variance": 2}], "type_ref": "typing.AsyncGenerator"}, {".class": "TypeType", "item": "builtins.BaseException"}, {".class": "UnionType", "items": ["builtins.BaseException", {".class": "NoneTyp"}]}, {".class": "AnyType", "missing_import_name": null, "source_any": null, "type_of_any": 2}], "bound_args": [], "def_extras": {"first_arg": "self"}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "athrow of AsyncGenerator", "ret_type": {".class": "Instance", "args": [{".class": "TypeVarType", "fullname": "typing._T_co", "id": 1, "name": "_T_co", "upper_bound": "builtins.object", "values": [], "variance": 1}], "type_ref": "typing.Awaitable"}, "variables": []}}}}}, "tuple_type": null, "type_vars": ["_T_co", "_T_contra"], "typeddict_type": null}}, "AsyncIterable": {".class": "SymbolTableNode", "kind": "Gdef", "node": {".class": "TypeInfo", "_promote": null, "abstract_attributes": ["__aiter__"], "bases": ["builtins.object"], "declared_metaclass": null, "defn": {".class": "ClassDef", "fullname": "typing.AsyncIterable", "name": "AsyncIterable", "type_vars": [{".class": "TypeVarDef", "fullname": "typing._T_co", "id": 1, "name": "_T_co", "upper_bound": "builtins.object", "values": [], "variance": 1}]}, "flags": ["is_abstract", "is_protocol", "runtime_protocol"], "fullname": "typing.AsyncIterable", "metaclass_type": "abc.ABCMeta", "metadata": {}, "module_name": "typing", "mro": ["typing.AsyncIterable", "builtins.object"], "names": {".class": "SymbolTable", "__aiter__": {".class": "SymbolTableNode", "kind": "Mdef", "node": {".class": "Decorator", "func": {".class": "FuncDef", "arg_kinds": [0], "arg_names": ["self"], "flags": ["is_decorated", "is_abstract"], "fullname": "typing.AsyncIterable.__aiter__", "name": "__aiter__", "type": {".class": "CallableType", "arg_kinds": [0], "arg_names": ["self"], "arg_types": [{".class": "Instance", "args": [{".class": "TypeVarType", "fullname": "typing._T_co", "id": 1, "name": "_T_co", "upper_bound": "builtins.object", "values": [], "variance": 1}], "type_ref": "typing.AsyncIterable"}], "bound_args": [], "def_extras": {"first_arg": "self"}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "__aiter__ of AsyncIterable", "ret_type": {".class": "Instance", "args": [{".class": "TypeVarType", "fullname": "typing._T_co", "id": 1, "name": "_T_co", "upper_bound": "builtins.object", "values": [], "variance": 1}], "type_ref": "typing.AsyncIterator"}, "variables": []}}, "is_overload": false, "var": {".class": "Var", "flags": ["is_initialized_in_class"], "fullname": null, "name": "__aiter__", "type": {".class": "CallableType", "arg_kinds": [0], "arg_names": ["self"], "arg_types": [{".class": "Instance", "args": [{".class": "TypeVarType", "fullname": "typing._T_co", "id": 1, "name": "_T_co", "upper_bound": "builtins.object", "values": [], "variance": 1}], "type_ref": "typing.AsyncIterable"}], "bound_args": [], "def_extras": {"first_arg": "self"}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "__aiter__ of AsyncIterable", "ret_type": {".class": "Instance", "args": [{".class": "TypeVarType", "fullname": "typing._T_co", "id": 1, "name": "_T_co", "upper_bound": "builtins.object", "values": [], "variance": 1}], "type_ref": "typing.AsyncIterator"}, "variables": []}}}}}, "tuple_type": null, "type_vars": ["_T_co"], "typeddict_type": null}}, "AsyncIterator": {".class": "SymbolTableNode", "kind": "Gdef", "node": {".class": "TypeInfo", "_promote": null, "abstract_attributes": ["__anext__"], "bases": [{".class": "Instance", "args": [{".class": "TypeVarType", "fullname": "typing._T_co", "id": 1, "name": "_T_co", "upper_bound": "builtins.object", "values": [], "variance": 1}], "type_ref": "typing.AsyncIterable"}], "declared_metaclass": null, "defn": {".class": "ClassDef", "fullname": "typing.AsyncIterator", "name": "AsyncIterator", "type_vars": [{".class": "TypeVarDef", "fullname": "typing._T_co", "id": 1, "name": "_T_co", "upper_bound": "builtins.object", "values": [], "variance": 1}]}, "flags": ["is_abstract", "is_protocol", "runtime_protocol"], "fullname": "typing.AsyncIterator", "metaclass_type": "abc.ABCMeta", "metadata": {}, "module_name": "typing", "mro": ["typing.AsyncIterator", "typing.AsyncIterable", "builtins.object"], "names": {".class": "SymbolTable", "__aiter__": {".class": "SymbolTableNode", "kind": "Mdef", "node": {".class": "FuncDef", "arg_kinds": [0], "arg_names": ["self"], "flags": [], "fullname": "typing.AsyncIterator.__aiter__", "name": "__aiter__", "type": {".class": "CallableType", "arg_kinds": [0], "arg_names": ["self"], "arg_types": [{".class": "Instance", "args": [{".class": "TypeVarType", "fullname": "typing._T_co", "id": 1, "name": "_T_co", "upper_bound": "builtins.object", "values": [], "variance": 1}], "type_ref": "typing.AsyncIterator"}], "bound_args": [], "def_extras": {"first_arg": "self"}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "__aiter__ of AsyncIterator", "ret_type": {".class": "Instance", "args": [{".class": "TypeVarType", "fullname": "typing._T_co", "id": 1, "name": "_T_co", "upper_bound": "builtins.object", "values": [], "variance": 1}], "type_ref": "typing.AsyncIterator"}, "variables": []}}}, "__anext__": {".class": "SymbolTableNode", "kind": "Mdef", "node": {".class": "Decorator", "func": {".class": "FuncDef", "arg_kinds": [0], "arg_names": ["self"], "flags": ["is_decorated", "is_abstract"], "fullname": "typing.AsyncIterator.__anext__", "name": "__anext__", "type": {".class": "CallableType", "arg_kinds": [0], "arg_names": ["self"], "arg_types": [{".class": "Instance", "args": [{".class": "TypeVarType", "fullname": "typing._T_co", "id": 1, "name": "_T_co", "upper_bound": "builtins.object", "values": [], "variance": 1}], "type_ref": "typing.AsyncIterator"}], "bound_args": [], "def_extras": {"first_arg": "self"}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "__anext__ of AsyncIterator", "ret_type": {".class": "Instance", "args": [{".class": "TypeVarType", "fullname": "typing._T_co", "id": 1, "name": "_T_co", "upper_bound": "builtins.object", "values": [], "variance": 1}], "type_ref": "typing.Awaitable"}, "variables": []}}, "is_overload": false, "var": {".class": "Var", "flags": ["is_initialized_in_class"], "fullname": null, "name": "__anext__", "type": {".class": "CallableType", "arg_kinds": [0], "arg_names": ["self"], "arg_types": [{".class": "Instance", "args": [{".class": "TypeVarType", "fullname": "typing._T_co", "id": 1, "name": "_T_co", "upper_bound": "builtins.object", "values": [], "variance": 1}], "type_ref": "typing.AsyncIterator"}], "bound_args": [], "def_extras": {"first_arg": "self"}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "__anext__ of AsyncIterator", "ret_type": {".class": "Instance", "args": [{".class": "TypeVarType", "fullname": "typing._T_co", "id": 1, "name": "_T_co", "upper_bound": "builtins.object", "values": [], "variance": 1}], "type_ref": "typing.Awaitable"}, "variables": []}}}}}, "tuple_type": null, "type_vars": ["_T_co"], "typeddict_type": null}}, "Awaitable": {".class": "SymbolTableNode", "kind": "Gdef", "node": {".class": "TypeInfo", "_promote": null, "abstract_attributes": ["__await__"], "bases": ["builtins.object"], "declared_metaclass": null, "defn": {".class": "ClassDef", "fullname": "typing.Awaitable", "name": "Awaitable", "type_vars": [{".class": "TypeVarDef", "fullname": "typing._T_co", "id": 1, "name": "_T_co", "upper_bound": "builtins.object", "values": [], "variance": 1}]}, "flags": ["is_abstract", "is_protocol", "runtime_protocol"], "fullname": "typing.Awaitable", "metaclass_type": "abc.ABCMeta", "metadata": {}, "module_name": "typing", "mro": ["typing.Awaitable", "builtins.object"], "names": {".class": "SymbolTable", "__await__": {".class": "SymbolTableNode", "kind": "Mdef", "node": {".class": "Decorator", "func": {".class": "FuncDef", "arg_kinds": [0], "arg_names": ["self"], "flags": ["is_decorated", "is_abstract"], "fullname": "typing.Awaitable.__await__", "name": "__await__", "type": {".class": "CallableType", "arg_kinds": [0], "arg_names": ["self"], "arg_types": [{".class": "Instance", "args": [{".class": "TypeVarType", "fullname": "typing._T_co", "id": 1, "name": "_T_co", "upper_bound": "builtins.object", "values": [], "variance": 1}], "type_ref": "typing.Awaitable"}], "bound_args": [], "def_extras": {"first_arg": "self"}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "__await__ of Awaitable", "ret_type": {".class": "Instance", "args": [{".class": "AnyType", "missing_import_name": null, "source_any": null, "type_of_any": 2}, {".class": "NoneTyp"}, {".class": "TypeVarType", "fullname": "typing._T_co", "id": 1, "name": "_T_co", "upper_bound": "builtins.object", "values": [], "variance": 1}], "type_ref": "typing.Generator"}, "variables": []}}, "is_overload": false, "var": {".class": "Var", "flags": ["is_initialized_in_class"], "fullname": null, "name": "__await__", "type": {".class": "CallableType", "arg_kinds": [0], "arg_names": ["self"], "arg_types": [{".class": "Instance", "args": [{".class": "TypeVarType", "fullname": "typing._T_co", "id": 1, "name": "_T_co", "upper_bound": "builtins.object", "values": [], "variance": 1}], "type_ref": "typing.Awaitable"}], "bound_args": [], "def_extras": {"first_arg": "self"}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "__await__ of Awaitable", "ret_type": {".class": "Instance", "args": [{".class": "AnyType", "missing_import_name": null, "source_any": null, "type_of_any": 2}, {".class": "NoneTyp"}, {".class": "TypeVarType", "fullname": "typing._T_co", "id": 1, "name": "_T_co", "upper_bound": "builtins.object", "values": [], "variance": 1}], "type_ref": "typing.Generator"}, "variables": []}}}}}, "tuple_type": null, "type_vars": ["_T_co"], "typeddict_type": null}}, "AwaitableGenerator": {".class": "SymbolTableNode", "kind": "Gdef", "node": {".class": "TypeInfo", "_promote": null, "abstract_attributes": ["__await__", "__iter__", "__next__", "close", "send", "throw"], "bases": [{".class": "Instance", "args": [{".class": "TypeVarType", "fullname": "typing._V_co", "id": 3, "name": "_V_co", "upper_bound": "builtins.object", "values": [], "variance": 1}], "type_ref": "typing.Awaitable"}, {".class": "Instance", "args": [{".class": "TypeVarType", "fullname": "typing._T_co", "id": 1, "name": "_T_co", "upper_bound": "builtins.object", "values": [], "variance": 1}, {".class": "TypeVarType", "fullname": "typing._T_contra", "id": 2, "name": "_T_contra", "upper_bound": "builtins.object", "values": [], "variance": 2}, {".class": "TypeVarType", "fullname": "typing._V_co", "id": 3, "name": "_V_co", "upper_bound": "builtins.object", "values": [], "variance": 1}], "type_ref": "typing.Generator"}], "declared_metaclass": "abc.ABCMeta", "defn": {".class": "ClassDef", "fullname": "typing.AwaitableGenerator", "name": "AwaitableGenerator", "type_vars": [{".class": "TypeVarDef", "fullname": "typing._T_co", "id": 1, "name": "_T_co", "upper_bound": "builtins.object", "values": [], "variance": 1}, {".class": "TypeVarDef", "fullname": "typing._T_contra", "id": 2, "name": "_T_contra", "upper_bound": "builtins.object", "values": [], "variance": 2}, {".class": "TypeVarDef", "fullname": "typing._V_co", "id": 3, "name": "_V_co", "upper_bound": "builtins.object", "values": [], "variance": 1}, {".class": "TypeVarDef", "fullname": "typing._S", "id": 4, "name": "_S", "upper_bound": "builtins.object", "values": [], "variance": 0}]}, "flags": ["is_abstract"], "fullname": "typing.AwaitableGenerator", "metaclass_type": "abc.ABCMeta", "metadata": {}, "module_name": "typing", "mro": ["typing.AwaitableGenerator", "typing.Awaitable", "typing.Generator", "typing.Iterator", "typing.Iterable", "builtins.object"], "names": {".class": "SymbolTable"}, "tuple_type": null, "type_vars": ["_T_co", "_T_contra", "_V_co", "_S"], "typeddict_type": null}}, "BinaryIO": {".class": "SymbolTableNode", "kind": "Gdef", "node": {".class": "TypeInfo", "_promote": null, "abstract_attributes": ["__enter__", "__exit__", "__iter__", "__next__", "close", "fileno", "flush", "isatty", "read", "readable", "readline", "readlines", "seek", "seekable", "tell", "truncate", "writable", "write", "writelines"], "bases": [{".class": "Instance", "args": ["builtins.bytes"], "type_ref": "typing.IO"}], "declared_metaclass": null, "defn": {".class": "ClassDef", "fullname": "typing.BinaryIO", "name": "BinaryIO", "type_vars": []}, "flags": ["is_abstract"], "fullname": "typing.BinaryIO", "metaclass_type": "abc.ABCMeta", "metadata": {}, "module_name": "typing", "mro": ["typing.BinaryIO", "typing.IO", "typing.Iterator", "typing.Iterable", "builtins.object"], "names": {".class": "SymbolTable", "__enter__": {".class": "SymbolTableNode", "kind": "Mdef", "node": {".class": "Decorator", "func": {".class": "FuncDef", "arg_kinds": [0], "arg_names": ["self"], "flags": ["is_decorated", "is_abstract"], "fullname": "typing.BinaryIO.__enter__", "name": "__enter__", "type": {".class": "CallableType", "arg_kinds": [0], "arg_names": [null], "arg_types": ["typing.BinaryIO"], "bound_args": [], "def_extras": {"first_arg": "self"}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "__enter__ of BinaryIO", "ret_type": "typing.BinaryIO", "variables": []}}, "is_overload": false, "var": {".class": "Var", "flags": ["is_initialized_in_class"], "fullname": null, "name": "__enter__", "type": {".class": "CallableType", "arg_kinds": [0], "arg_names": [null], "arg_types": ["typing.BinaryIO"], "bound_args": [], "def_extras": {"first_arg": "self"}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "__enter__ of BinaryIO", "ret_type": "typing.BinaryIO", "variables": []}}}}, "write": {".class": "SymbolTableNode", "kind": "Mdef", "node": {".class": "OverloadedFuncDef", "flags": [], "fullname": "typing.BinaryIO.write", "impl": null, "items": [{".class": "Decorator", "func": {".class": "FuncDef", "arg_kinds": [0, 0], "arg_names": ["self", "s"], "flags": ["is_overload", "is_decorated", "is_abstract"], "fullname": "typing.BinaryIO.write", "name": "write", "type": {".class": "CallableType", "arg_kinds": [0, 0], "arg_names": ["self", "s"], "arg_types": ["typing.BinaryIO", "builtins.bytearray"], "bound_args": [], "def_extras": {"first_arg": "self"}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "write of BinaryIO", "ret_type": "builtins.int", "variables": []}}, "is_overload": true, "var": {".class": "Var", "flags": [], "fullname": null, "name": "write", "type": null}}, {".class": "Decorator", "func": {".class": "FuncDef", "arg_kinds": [0, 0], "arg_names": ["self", "s"], "flags": ["is_overload", "is_decorated", "is_abstract"], "fullname": "typing.BinaryIO.write", "name": "write", "type": {".class": "CallableType", "arg_kinds": [0, 0], "arg_names": ["self", "s"], "arg_types": ["typing.BinaryIO", "builtins.bytes"], "bound_args": [], "def_extras": {"first_arg": "self"}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "write of BinaryIO", "ret_type": "builtins.int", "variables": []}}, "is_overload": true, "var": {".class": "Var", "flags": [], "fullname": null, "name": "write", "type": null}}], "type": {".class": "Overloaded", "items": [{".class": "CallableType", "arg_kinds": [0, 0], "arg_names": ["self", "s"], "arg_types": ["typing.BinaryIO", "builtins.bytearray"], "bound_args": [], "def_extras": {"first_arg": "self"}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "write of BinaryIO", "ret_type": "builtins.int", "variables": []}, {".class": "CallableType", "arg_kinds": [0, 0], "arg_names": ["self", "s"], "arg_types": ["typing.BinaryIO", "builtins.bytes"], "bound_args": [], "def_extras": {"first_arg": "self"}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "write of BinaryIO", "ret_type": "builtins.int", "variables": []}]}}}}, "tuple_type": null, "type_vars": [], "typeddict_type": null}}, "ByteString": {".class": "SymbolTableNode", "kind": "Gdef", "node": {".class": "TypeInfo", "_promote": null, "abstract_attributes": ["__getitem__", "__len__"], "bases": [{".class": "Instance", "args": ["builtins.int"], "type_ref": "typing.Sequence"}], "declared_metaclass": "abc.ABCMeta", "defn": {".class": "ClassDef", "fullname": "typing.ByteString", "name": "ByteString", "type_vars": []}, "flags": ["is_abstract"], "fullname": "typing.ByteString", "metaclass_type": "abc.ABCMeta", "metadata": {}, "module_name": "typing", "mro": ["typing.ByteString", "typing.Sequence", "typing.Collection", "typing.Iterable", "typing.Container", "typing.Reversible", "builtins.object"], "names": {".class": "SymbolTable"}, "tuple_type": null, "type_vars": [], "typeddict_type": null}}, "Callable": {".class": "SymbolTableNode", "kind": "Gdef", "node": {".class": "Var", "flags": [], "fullname": "typing.Callable", "name": "Callable", "type": "typing._SpecialForm"}}, "ChainMap": {".class": "SymbolTableNode", "kind": "Gdef", "node": {".class": "TypeAlias", "alias_tvars": [], "column": -1, "fullname": "typing.ChainMap", "line": -1, "no_args": true, "normalized": true, "target": {".class": "Instance", "args": [{".class": "AnyType", "missing_import_name": null, "source_any": null, "type_of_any": 4}, {".class": "AnyType", "missing_import_name": null, "source_any": null, "type_of_any": 4}], "type_ref": "collections.ChainMap"}}}, "ClassVar": {".class": "SymbolTableNode", "kind": "Gdef", "node": {".class": "Var", "flags": [], "fullname": "typing.ClassVar", "name": "ClassVar", "type": "typing._SpecialForm"}}, "CodeType": {".class": "SymbolTableNode", "cross_ref": "types.CodeType", "kind": "Gdef", "module_hidden": true, "module_public": false}, "Collection": {".class": "SymbolTableNode", "kind": "Gdef", "node": {".class": "TypeInfo", "_promote": null, "abstract_attributes": ["__contains__", "__iter__", "__len__"], "bases": [{".class": "Instance", "args": [{".class": "TypeVarType", "fullname": "typing._T_co", "id": 1, "name": "_T_co", "upper_bound": "builtins.object", "values": [], "variance": 1}], "type_ref": "typing.Iterable"}, {".class": "Instance", "args": [{".class": "TypeVarType", "fullname": "typing._T_co", "id": 1, "name": "_T_co", "upper_bound": "builtins.object", "values": [], "variance": 1}], "type_ref": "typing.Container"}], "declared_metaclass": null, "defn": {".class": "ClassDef", "fullname": "typing.Collection", "name": "Collection", "type_vars": [{".class": "TypeVarDef", "fullname": "typing._T_co", "id": 1, "name": "_T_co", "upper_bound": "builtins.object", "values": [], "variance": 1}]}, "flags": ["is_abstract", "is_protocol", "runtime_protocol"], "fullname": "typing.Collection", "metaclass_type": "abc.ABCMeta", "metadata": {}, "module_name": "typing", "mro": ["typing.Collection", "typing.Iterable", "typing.Container", "builtins.object"], "names": {".class": "SymbolTable", "__len__": {".class": "SymbolTableNode", "kind": "Mdef", "node": {".class": "Decorator", "func": {".class": "FuncDef", "arg_kinds": [0], "arg_names": ["self"], "flags": ["is_decorated", "is_abstract"], "fullname": "typing.Collection.__len__", "name": "__len__", "type": {".class": "CallableType", "arg_kinds": [0], "arg_names": [null], "arg_types": [{".class": "Instance", "args": [{".class": "TypeVarType", "fullname": "typing._T_co", "id": 1, "name": "_T_co", "upper_bound": "builtins.object", "values": [], "variance": 1}], "type_ref": "typing.Collection"}], "bound_args": [], "def_extras": {"first_arg": "self"}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "__len__ of Collection", "ret_type": "builtins.int", "variables": []}}, "is_overload": false, "var": {".class": "Var", "flags": ["is_initialized_in_class"], "fullname": null, "name": "__len__", "type": {".class": "CallableType", "arg_kinds": [0], "arg_names": [null], "arg_types": [{".class": "Instance", "args": [{".class": "TypeVarType", "fullname": "typing._T_co", "id": 1, "name": "_T_co", "upper_bound": "builtins.object", "values": [], "variance": 1}], "type_ref": "typing.Collection"}], "bound_args": [], "def_extras": {"first_arg": "self"}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "__len__ of Collection", "ret_type": "builtins.int", "variables": []}}}}}, "tuple_type": null, "type_vars": ["_T_co"], "typeddict_type": null}}, "Container": {".class": "SymbolTableNode", "kind": "Gdef", "node": {".class": "TypeInfo", "_promote": null, "abstract_attributes": ["__contains__"], "bases": ["builtins.object"], "declared_metaclass": null, "defn": {".class": "ClassDef", "fullname": "typing.Container", "name": "Container", "type_vars": [{".class": "TypeVarDef", "fullname": "typing._T_co", "id": 1, "name": "_T_co", "upper_bound": "builtins.object", "values": [], "variance": 1}]}, "flags": ["is_abstract", "is_protocol", "runtime_protocol"], "fullname": "typing.Container", "metaclass_type": "abc.ABCMeta", "metadata": {}, "module_name": "typing", "mro": ["typing.Container", "builtins.object"], "names": {".class": "SymbolTable", "__contains__": {".class": "SymbolTableNode", "kind": "Mdef", "node": {".class": "Decorator", "func": {".class": "FuncDef", "arg_kinds": [0, 0], "arg_names": ["self", "x"], "flags": ["is_decorated", "is_abstract"], "fullname": "typing.Container.__contains__", "name": "__contains__", "type": {".class": "CallableType", "arg_kinds": [0, 0], "arg_names": [null, null], "arg_types": [{".class": "Instance", "args": [{".class": "TypeVarType", "fullname": "typing._T_co", "id": 1, "name": "_T_co", "upper_bound": "builtins.object", "values": [], "variance": 1}], "type_ref": "typing.Container"}, "builtins.object"], "bound_args": [], "def_extras": {"first_arg": "self"}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "__contains__ of Container", "ret_type": "builtins.bool", "variables": []}}, "is_overload": false, "var": {".class": "Var", "flags": ["is_initialized_in_class"], "fullname": null, "name": "__contains__", "type": {".class": "CallableType", "arg_kinds": [0, 0], "arg_names": [null, null], "arg_types": [{".class": "Instance", "args": [{".class": "TypeVarType", "fullname": "typing._T_co", "id": 1, "name": "_T_co", "upper_bound": "builtins.object", "values": [], "variance": 1}], "type_ref": "typing.Container"}, "builtins.object"], "bound_args": [], "def_extras": {"first_arg": "self"}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "__contains__ of Container", "ret_type": "builtins.bool", "variables": []}}}}}, "tuple_type": null, "type_vars": ["_T_co"], "typeddict_type": null}}, "ContextManager": {".class": "SymbolTableNode", "kind": "Gdef", "node": {".class": "TypeInfo", "_promote": null, "abstract_attributes": [], "bases": ["builtins.object"], "declared_metaclass": null, "defn": {".class": "ClassDef", "fullname": "typing.ContextManager", "name": "ContextManager", "type_vars": [{".class": "TypeVarDef", "fullname": "typing._T_co", "id": 1, "name": "_T_co", "upper_bound": "builtins.object", "values": [], "variance": 1}]}, "flags": ["is_protocol", "runtime_protocol"], "fullname": "typing.ContextManager", "metaclass_type": "abc.ABCMeta", "metadata": {}, "module_name": "typing", "mro": ["typing.ContextManager", "builtins.object"], "names": {".class": "SymbolTable", "__enter__": {".class": "SymbolTableNode", "kind": "Mdef", "node": {".class": "FuncDef", "arg_kinds": [0], "arg_names": ["self"], "flags": [], "fullname": "typing.ContextManager.__enter__", "name": "__enter__", "type": {".class": "CallableType", "arg_kinds": [0], "arg_names": [null], "arg_types": [{".class": "Instance", "args": [{".class": "TypeVarType", "fullname": "typing._T_co", "id": 1, "name": "_T_co", "upper_bound": "builtins.object", "values": [], "variance": 1}], "type_ref": "typing.ContextManager"}], "bound_args": [], "def_extras": {"first_arg": "self"}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "__enter__ of ContextManager", "ret_type": {".class": "TypeVarType", "fullname": "typing._T_co", "id": 1, "name": "_T_co", "upper_bound": "builtins.object", "values": [], "variance": 1}, "variables": []}}}, "__exit__": {".class": "SymbolTableNode", "kind": "Mdef", "node": {".class": "FuncDef", "arg_kinds": [0, 0, 0, 0], "arg_names": ["self", "exc_type", "exc_value", "traceback"], "flags": [], "fullname": "typing.ContextManager.__exit__", "name": "__exit__", "type": {".class": "CallableType", "arg_kinds": [0, 0, 0, 0], "arg_names": [null, null, null, null], "arg_types": [{".class": "Instance", "args": [{".class": "TypeVarType", "fullname": "typing._T_co", "id": 1, "name": "_T_co", "upper_bound": "builtins.object", "values": [], "variance": 1}], "type_ref": "typing.ContextManager"}, {".class": "UnionType", "items": [{".class": "TypeType", "item": "builtins.BaseException"}, {".class": "NoneTyp"}]}, {".class": "UnionType", "items": ["builtins.BaseException", {".class": "NoneTyp"}]}, {".class": "UnionType", "items": ["types.TracebackType", {".class": "NoneTyp"}]}], "bound_args": [], "def_extras": {"first_arg": "self"}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "__exit__ of ContextManager", "ret_type": {".class": "UnionType", "items": ["builtins.bool", {".class": "NoneTyp"}]}, "variables": []}}}}, "tuple_type": null, "type_vars": ["_T_co"], "typeddict_type": null}}, "Coroutine": {".class": "SymbolTableNode", "kind": "Gdef", "node": {".class": "TypeInfo", "_promote": null, "abstract_attributes": ["__await__", "close", "send", "throw"], "bases": [{".class": "Instance", "args": [{".class": "TypeVarType", "fullname": "typing._V_co", "id": 3, "name": "_V_co", "upper_bound": "builtins.object", "values": [], "variance": 1}], "type_ref": "typing.Awaitable"}], "declared_metaclass": null, "defn": {".class": "ClassDef", "fullname": "typing.Coroutine", "name": "Coroutine", "type_vars": [{".class": "TypeVarDef", "fullname": "typing._T_co", "id": 1, "name": "_T_co", "upper_bound": "builtins.object", "values": [], "variance": 1}, {".class": "TypeVarDef", "fullname": "typing._T_contra", "id": 2, "name": "_T_contra", "upper_bound": "builtins.object", "values": [], "variance": 2}, {".class": "TypeVarDef", "fullname": "typing._V_co", "id": 3, "name": "_V_co", "upper_bound": "builtins.object", "values": [], "variance": 1}]}, "flags": ["is_abstract"], "fullname": "typing.Coroutine", "metaclass_type": "abc.ABCMeta", "metadata": {}, "module_name": "typing", "mro": ["typing.Coroutine", "typing.Awaitable", "builtins.object"], "names": {".class": "SymbolTable", "close": {".class": "SymbolTableNode", "kind": "Mdef", "node": {".class": "Decorator", "func": {".class": "FuncDef", "arg_kinds": [0], "arg_names": ["self"], "flags": ["is_decorated", "is_abstract"], "fullname": "typing.Coroutine.close", "name": "close", "type": {".class": "CallableType", "arg_kinds": [0], "arg_names": ["self"], "arg_types": [{".class": "Instance", "args": [{".class": "TypeVarType", "fullname": "typing._T_co", "id": 1, "name": "_T_co", "upper_bound": "builtins.object", "values": [], "variance": 1}, {".class": "TypeVarType", "fullname": "typing._T_contra", "id": 2, "name": "_T_contra", "upper_bound": "builtins.object", "values": [], "variance": 2}, {".class": "TypeVarType", "fullname": "typing._V_co", "id": 3, "name": "_V_co", "upper_bound": "builtins.object", "values": [], "variance": 1}], "type_ref": "typing.Coroutine"}], "bound_args": [], "def_extras": {"first_arg": "self"}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "close of Coroutine", "ret_type": {".class": "NoneTyp"}, "variables": []}}, "is_overload": false, "var": {".class": "Var", "flags": ["is_initialized_in_class"], "fullname": null, "name": "close", "type": {".class": "CallableType", "arg_kinds": [0], "arg_names": ["self"], "arg_types": [{".class": "Instance", "args": [{".class": "TypeVarType", "fullname": "typing._T_co", "id": 1, "name": "_T_co", "upper_bound": "builtins.object", "values": [], "variance": 1}, {".class": "TypeVarType", "fullname": "typing._T_contra", "id": 2, "name": "_T_contra", "upper_bound": "builtins.object", "values": [], "variance": 2}, {".class": "TypeVarType", "fullname": "typing._V_co", "id": 3, "name": "_V_co", "upper_bound": "builtins.object", "values": [], "variance": 1}], "type_ref": "typing.Coroutine"}], "bound_args": [], "def_extras": {"first_arg": "self"}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "close of Coroutine", "ret_type": {".class": "NoneTyp"}, "variables": []}}}}, "cr_await": {".class": "SymbolTableNode", "kind": "Mdef", "node": {".class": "Decorator", "func": {".class": "FuncDef", "arg_kinds": [0], "arg_names": ["self"], "flags": ["is_property", "is_decorated"], "fullname": "typing.Coroutine.cr_await", "name": "cr_await", "type": {".class": "CallableType", "arg_kinds": [0], "arg_names": ["self"], "arg_types": [{".class": "Instance", "args": [{".class": "TypeVarType", "fullname": "typing._T_co", "id": 1, "name": "_T_co", "upper_bound": "builtins.object", "values": [], "variance": 1}, {".class": "TypeVarType", "fullname": "typing._T_contra", "id": 2, "name": "_T_contra", "upper_bound": "builtins.object", "values": [], "variance": 2}, {".class": "TypeVarType", "fullname": "typing._V_co", "id": 3, "name": "_V_co", "upper_bound": "builtins.object", "values": [], "variance": 1}], "type_ref": "typing.Coroutine"}], "bound_args": [], "def_extras": {"first_arg": "self"}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "cr_await of Coroutine", "ret_type": {".class": "UnionType", "items": [{".class": "AnyType", "missing_import_name": null, "source_any": null, "type_of_any": 2}, {".class": "NoneTyp"}]}, "variables": []}}, "is_overload": false, "var": {".class": "Var", "flags": ["is_initialized_in_class", "is_property"], "fullname": null, "name": "cr_await", "type": {".class": "CallableType", "arg_kinds": [0], "arg_names": ["self"], "arg_types": [{".class": "Instance", "args": [{".class": "TypeVarType", "fullname": "typing._T_co", "id": 1, "name": "_T_co", "upper_bound": "builtins.object", "values": [], "variance": 1}, {".class": "TypeVarType", "fullname": "typing._T_contra", "id": 2, "name": "_T_contra", "upper_bound": "builtins.object", "values": [], "variance": 2}, {".class": "TypeVarType", "fullname": "typing._V_co", "id": 3, "name": "_V_co", "upper_bound": "builtins.object", "values": [], "variance": 1}], "type_ref": "typing.Coroutine"}], "bound_args": [], "def_extras": {"first_arg": "self"}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "cr_await of Coroutine", "ret_type": {".class": "UnionType", "items": [{".class": "AnyType", "missing_import_name": null, "source_any": null, "type_of_any": 2}, {".class": "NoneTyp"}]}, "variables": []}}}}, "cr_code": {".class": "SymbolTableNode", "kind": "Mdef", "node": {".class": "Decorator", "func": {".class": "FuncDef", "arg_kinds": [0], "arg_names": ["self"], "flags": ["is_property", "is_decorated"], "fullname": "typing.Coroutine.cr_code", "name": "cr_code", "type": {".class": "CallableType", "arg_kinds": [0], "arg_names": ["self"], "arg_types": [{".class": "Instance", "args": [{".class": "TypeVarType", "fullname": "typing._T_co", "id": 1, "name": "_T_co", "upper_bound": "builtins.object", "values": [], "variance": 1}, {".class": "TypeVarType", "fullname": "typing._T_contra", "id": 2, "name": "_T_contra", "upper_bound": "builtins.object", "values": [], "variance": 2}, {".class": "TypeVarType", "fullname": "typing._V_co", "id": 3, "name": "_V_co", "upper_bound": "builtins.object", "values": [], "variance": 1}], "type_ref": "typing.Coroutine"}], "bound_args": [], "def_extras": {"first_arg": "self"}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "cr_code of Coroutine", "ret_type": "types.CodeType", "variables": []}}, "is_overload": false, "var": {".class": "Var", "flags": ["is_initialized_in_class", "is_property"], "fullname": null, "name": "cr_code", "type": {".class": "CallableType", "arg_kinds": [0], "arg_names": ["self"], "arg_types": [{".class": "Instance", "args": [{".class": "TypeVarType", "fullname": "typing._T_co", "id": 1, "name": "_T_co", "upper_bound": "builtins.object", "values": [], "variance": 1}, {".class": "TypeVarType", "fullname": "typing._T_contra", "id": 2, "name": "_T_contra", "upper_bound": "builtins.object", "values": [], "variance": 2}, {".class": "TypeVarType", "fullname": "typing._V_co", "id": 3, "name": "_V_co", "upper_bound": "builtins.object", "values": [], "variance": 1}], "type_ref": "typing.Coroutine"}], "bound_args": [], "def_extras": {"first_arg": "self"}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "cr_code of Coroutine", "ret_type": "types.CodeType", "variables": []}}}}, "cr_frame": {".class": "SymbolTableNode", "kind": "Mdef", "node": {".class": "Decorator", "func": {".class": "FuncDef", "arg_kinds": [0], "arg_names": ["self"], "flags": ["is_property", "is_decorated"], "fullname": "typing.Coroutine.cr_frame", "name": "cr_frame", "type": {".class": "CallableType", "arg_kinds": [0], "arg_names": ["self"], "arg_types": [{".class": "Instance", "args": [{".class": "TypeVarType", "fullname": "typing._T_co", "id": 1, "name": "_T_co", "upper_bound": "builtins.object", "values": [], "variance": 1}, {".class": "TypeVarType", "fullname": "typing._T_contra", "id": 2, "name": "_T_contra", "upper_bound": "builtins.object", "values": [], "variance": 2}, {".class": "TypeVarType", "fullname": "typing._V_co", "id": 3, "name": "_V_co", "upper_bound": "builtins.object", "values": [], "variance": 1}], "type_ref": "typing.Coroutine"}], "bound_args": [], "def_extras": {"first_arg": "self"}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "cr_frame of Coroutine", "ret_type": "types.FrameType", "variables": []}}, "is_overload": false, "var": {".class": "Var", "flags": ["is_initialized_in_class", "is_property"], "fullname": null, "name": "cr_frame", "type": {".class": "CallableType", "arg_kinds": [0], "arg_names": ["self"], "arg_types": [{".class": "Instance", "args": [{".class": "TypeVarType", "fullname": "typing._T_co", "id": 1, "name": "_T_co", "upper_bound": "builtins.object", "values": [], "variance": 1}, {".class": "TypeVarType", "fullname": "typing._T_contra", "id": 2, "name": "_T_contra", "upper_bound": "builtins.object", "values": [], "variance": 2}, {".class": "TypeVarType", "fullname": "typing._V_co", "id": 3, "name": "_V_co", "upper_bound": "builtins.object", "values": [], "variance": 1}], "type_ref": "typing.Coroutine"}], "bound_args": [], "def_extras": {"first_arg": "self"}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "cr_frame of Coroutine", "ret_type": "types.FrameType", "variables": []}}}}, "cr_running": {".class": "SymbolTableNode", "kind": "Mdef", "node": {".class": "Decorator", "func": {".class": "FuncDef", "arg_kinds": [0], "arg_names": ["self"], "flags": ["is_property", "is_decorated"], "fullname": "typing.Coroutine.cr_running", "name": "cr_running", "type": {".class": "CallableType", "arg_kinds": [0], "arg_names": ["self"], "arg_types": [{".class": "Instance", "args": [{".class": "TypeVarType", "fullname": "typing._T_co", "id": 1, "name": "_T_co", "upper_bound": "builtins.object", "values": [], "variance": 1}, {".class": "TypeVarType", "fullname": "typing._T_contra", "id": 2, "name": "_T_contra", "upper_bound": "builtins.object", "values": [], "variance": 2}, {".class": "TypeVarType", "fullname": "typing._V_co", "id": 3, "name": "_V_co", "upper_bound": "builtins.object", "values": [], "variance": 1}], "type_ref": "typing.Coroutine"}], "bound_args": [], "def_extras": {"first_arg": "self"}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "cr_running of Coroutine", "ret_type": "builtins.bool", "variables": []}}, "is_overload": false, "var": {".class": "Var", "flags": ["is_initialized_in_class", "is_property"], "fullname": null, "name": "cr_running", "type": {".class": "CallableType", "arg_kinds": [0], "arg_names": ["self"], "arg_types": [{".class": "Instance", "args": [{".class": "TypeVarType", "fullname": "typing._T_co", "id": 1, "name": "_T_co", "upper_bound": "builtins.object", "values": [], "variance": 1}, {".class": "TypeVarType", "fullname": "typing._T_contra", "id": 2, "name": "_T_contra", "upper_bound": "builtins.object", "values": [], "variance": 2}, {".class": "TypeVarType", "fullname": "typing._V_co", "id": 3, "name": "_V_co", "upper_bound": "builtins.object", "values": [], "variance": 1}], "type_ref": "typing.Coroutine"}], "bound_args": [], "def_extras": {"first_arg": "self"}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "cr_running of Coroutine", "ret_type": "builtins.bool", "variables": []}}}}, "send": {".class": "SymbolTableNode", "kind": "Mdef", "node": {".class": "Decorator", "func": {".class": "FuncDef", "arg_kinds": [0, 0], "arg_names": ["self", "value"], "flags": ["is_decorated", "is_abstract"], "fullname": "typing.Coroutine.send", "name": "send", "type": {".class": "CallableType", "arg_kinds": [0, 0], "arg_names": ["self", "value"], "arg_types": [{".class": "Instance", "args": [{".class": "TypeVarType", "fullname": "typing._T_co", "id": 1, "name": "_T_co", "upper_bound": "builtins.object", "values": [], "variance": 1}, {".class": "TypeVarType", "fullname": "typing._T_contra", "id": 2, "name": "_T_contra", "upper_bound": "builtins.object", "values": [], "variance": 2}, {".class": "TypeVarType", "fullname": "typing._V_co", "id": 3, "name": "_V_co", "upper_bound": "builtins.object", "values": [], "variance": 1}], "type_ref": "typing.Coroutine"}, {".class": "TypeVarType", "fullname": "typing._T_contra", "id": 2, "name": "_T_contra", "upper_bound": "builtins.object", "values": [], "variance": 2}], "bound_args": [], "def_extras": {"first_arg": "self"}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "send of Coroutine", "ret_type": {".class": "TypeVarType", "fullname": "typing._T_co", "id": 1, "name": "_T_co", "upper_bound": "builtins.object", "values": [], "variance": 1}, "variables": []}}, "is_overload": false, "var": {".class": "Var", "flags": ["is_initialized_in_class"], "fullname": null, "name": "send", "type": {".class": "CallableType", "arg_kinds": [0, 0], "arg_names": ["self", "value"], "arg_types": [{".class": "Instance", "args": [{".class": "TypeVarType", "fullname": "typing._T_co", "id": 1, "name": "_T_co", "upper_bound": "builtins.object", "values": [], "variance": 1}, {".class": "TypeVarType", "fullname": "typing._T_contra", "id": 2, "name": "_T_contra", "upper_bound": "builtins.object", "values": [], "variance": 2}, {".class": "TypeVarType", "fullname": "typing._V_co", "id": 3, "name": "_V_co", "upper_bound": "builtins.object", "values": [], "variance": 1}], "type_ref": "typing.Coroutine"}, {".class": "TypeVarType", "fullname": "typing._T_contra", "id": 2, "name": "_T_contra", "upper_bound": "builtins.object", "values": [], "variance": 2}], "bound_args": [], "def_extras": {"first_arg": "self"}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "send of Coroutine", "ret_type": {".class": "TypeVarType", "fullname": "typing._T_co", "id": 1, "name": "_T_co", "upper_bound": "builtins.object", "values": [], "variance": 1}, "variables": []}}}}, "throw": {".class": "SymbolTableNode", "kind": "Mdef", "node": {".class": "Decorator", "func": {".class": "FuncDef", "arg_kinds": [0, 0, 1, 1], "arg_names": ["self", "typ", "val", "tb"], "flags": ["is_decorated", "is_abstract"], "fullname": "typing.Coroutine.throw", "name": "throw", "type": {".class": "CallableType", "arg_kinds": [0, 0, 1, 1], "arg_names": ["self", "typ", "val", "tb"], "arg_types": [{".class": "Instance", "args": [{".class": "TypeVarType", "fullname": "typing._T_co", "id": 1, "name": "_T_co", "upper_bound": "builtins.object", "values": [], "variance": 1}, {".class": "TypeVarType", "fullname": "typing._T_contra", "id": 2, "name": "_T_contra", "upper_bound": "builtins.object", "values": [], "variance": 2}, {".class": "TypeVarType", "fullname": "typing._V_co", "id": 3, "name": "_V_co", "upper_bound": "builtins.object", "values": [], "variance": 1}], "type_ref": "typing.Coroutine"}, {".class": "TypeType", "item": "builtins.BaseException"}, {".class": "UnionType", "items": ["builtins.BaseException", {".class": "NoneTyp"}]}, {".class": "UnionType", "items": ["types.TracebackType", {".class": "NoneTyp"}]}], "bound_args": [], "def_extras": {"first_arg": "self"}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "throw of Coroutine", "ret_type": {".class": "TypeVarType", "fullname": "typing._T_co", "id": 1, "name": "_T_co", "upper_bound": "builtins.object", "values": [], "variance": 1}, "variables": []}}, "is_overload": false, "var": {".class": "Var", "flags": ["is_initialized_in_class"], "fullname": null, "name": "throw", "type": {".class": "CallableType", "arg_kinds": [0, 0, 1, 1], "arg_names": ["self", "typ", "val", "tb"], "arg_types": [{".class": "Instance", "args": [{".class": "TypeVarType", "fullname": "typing._T_co", "id": 1, "name": "_T_co", "upper_bound": "builtins.object", "values": [], "variance": 1}, {".class": "TypeVarType", "fullname": "typing._T_contra", "id": 2, "name": "_T_contra", "upper_bound": "builtins.object", "values": [], "variance": 2}, {".class": "TypeVarType", "fullname": "typing._V_co", "id": 3, "name": "_V_co", "upper_bound": "builtins.object", "values": [], "variance": 1}], "type_ref": "typing.Coroutine"}, {".class": "TypeType", "item": "builtins.BaseException"}, {".class": "UnionType", "items": ["builtins.BaseException", {".class": "NoneTyp"}]}, {".class": "UnionType", "items": ["types.TracebackType", {".class": "NoneTyp"}]}], "bound_args": [], "def_extras": {"first_arg": "self"}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "throw of Coroutine", "ret_type": {".class": "TypeVarType", "fullname": "typing._T_co", "id": 1, "name": "_T_co", "upper_bound": "builtins.object", "values": [], "variance": 1}, "variables": []}}}}}, "tuple_type": null, "type_vars": ["_T_co", "_T_contra", "_V_co"], "typeddict_type": null}}, "Counter": {".class": "SymbolTableNode", "kind": "Gdef", "node": {".class": "TypeAlias", "alias_tvars": [], "column": -1, "fullname": "typing.Counter", "line": -1, "no_args": true, "normalized": true, "target": {".class": "Instance", "args": [{".class": "AnyType", "missing_import_name": null, "source_any": null, "type_of_any": 4}], "type_ref": "collections.Counter"}}}, "DefaultDict": {".class": "SymbolTableNode", "kind": "Gdef", "node": {".class": "TypeAlias", "alias_tvars": [], "column": -1, "fullname": "typing.DefaultDict", "line": -1, "no_args": true, "normalized": true, "target": {".class": "Instance", "args": [{".class": "AnyType", "missing_import_name": null, "source_any": null, "type_of_any": 4}, {".class": "AnyType", "missing_import_name": null, "source_any": null, "type_of_any": 4}], "type_ref": "collections.defaultdict"}}}, "Deque": {".class": "SymbolTableNode", "kind": "Gdef", "node": {".class": "TypeAlias", "alias_tvars": [], "column": -1, "fullname": "typing.Deque", "line": -1, "no_args": true, "normalized": true, "target": {".class": "Instance", "args": [{".class": "AnyType", "missing_import_name": null, "source_any": null, "type_of_any": 4}], "type_ref": "collections.deque"}}}, "Dict": {".class": "SymbolTableNode", "kind": "Gdef", "node": {".class": "TypeAlias", "alias_tvars": [], "column": -1, "fullname": "typing.Dict", "line": -1, "no_args": true, "normalized": true, "target": {".class": "Instance", "args": [{".class": "AnyType", "missing_import_name": null, "source_any": null, "type_of_any": 4}, {".class": "AnyType", "missing_import_name": null, "source_any": null, "type_of_any": 4}], "type_ref": "builtins.dict"}}}, "FrameType": {".class": "SymbolTableNode", "cross_ref": "types.FrameType", "kind": "Gdef", "module_hidden": true, "module_public": false}, "FrozenSet": {".class": "SymbolTableNode", "kind": "Gdef", "node": {".class": "TypeAlias", "alias_tvars": [], "column": -1, "fullname": "typing.FrozenSet", "line": -1, "no_args": true, "normalized": true, "target": {".class": "Instance", "args": [{".class": "AnyType", "missing_import_name": null, "source_any": null, "type_of_any": 4}], "type_ref": "builtins.frozenset"}}}, "Generator": {".class": "SymbolTableNode", "kind": "Gdef", "node": {".class": "TypeInfo", "_promote": null, "abstract_attributes": ["__iter__", "__next__", "close", "send", "throw"], "bases": [{".class": "Instance", "args": [{".class": "TypeVarType", "fullname": "typing._T_co", "id": 1, "name": "_T_co", "upper_bound": "builtins.object", "values": [], "variance": 1}], "type_ref": "typing.Iterator"}], "declared_metaclass": null, "defn": {".class": "ClassDef", "fullname": "typing.Generator", "name": "Generator", "type_vars": [{".class": "TypeVarDef", "fullname": "typing._T_co", "id": 1, "name": "_T_co", "upper_bound": "builtins.object", "values": [], "variance": 1}, {".class": "TypeVarDef", "fullname": "typing._T_contra", "id": 2, "name": "_T_contra", "upper_bound": "builtins.object", "values": [], "variance": 2}, {".class": "TypeVarDef", "fullname": "typing._V_co", "id": 3, "name": "_V_co", "upper_bound": "builtins.object", "values": [], "variance": 1}]}, "flags": ["is_abstract"], "fullname": "typing.Generator", "metaclass_type": "abc.ABCMeta", "metadata": {}, "module_name": "typing", "mro": ["typing.Generator", "typing.Iterator", "typing.Iterable", "builtins.object"], "names": {".class": "SymbolTable", "__iter__": {".class": "SymbolTableNode", "kind": "Mdef", "node": {".class": "Decorator", "func": {".class": "FuncDef", "arg_kinds": [0], "arg_names": ["self"], "flags": ["is_decorated", "is_abstract"], "fullname": "typing.Generator.__iter__", "name": "__iter__", "type": {".class": "CallableType", "arg_kinds": [0], "arg_names": [null], "arg_types": [{".class": "Instance", "args": [{".class": "TypeVarType", "fullname": "typing._T_co", "id": 1, "name": "_T_co", "upper_bound": "builtins.object", "values": [], "variance": 1}, {".class": "TypeVarType", "fullname": "typing._T_contra", "id": 2, "name": "_T_contra", "upper_bound": "builtins.object", "values": [], "variance": 2}, {".class": "TypeVarType", "fullname": "typing._V_co", "id": 3, "name": "_V_co", "upper_bound": "builtins.object", "values": [], "variance": 1}], "type_ref": "typing.Generator"}], "bound_args": [], "def_extras": {"first_arg": "self"}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "__iter__ of Generator", "ret_type": {".class": "Instance", "args": [{".class": "TypeVarType", "fullname": "typing._T_co", "id": 1, "name": "_T_co", "upper_bound": "builtins.object", "values": [], "variance": 1}, {".class": "TypeVarType", "fullname": "typing._T_contra", "id": 2, "name": "_T_contra", "upper_bound": "builtins.object", "values": [], "variance": 2}, {".class": "TypeVarType", "fullname": "typing._V_co", "id": 3, "name": "_V_co", "upper_bound": "builtins.object", "values": [], "variance": 1}], "type_ref": "typing.Generator"}, "variables": []}}, "is_overload": false, "var": {".class": "Var", "flags": ["is_initialized_in_class"], "fullname": null, "name": "__iter__", "type": {".class": "CallableType", "arg_kinds": [0], "arg_names": [null], "arg_types": [{".class": "Instance", "args": [{".class": "TypeVarType", "fullname": "typing._T_co", "id": 1, "name": "_T_co", "upper_bound": "builtins.object", "values": [], "variance": 1}, {".class": "TypeVarType", "fullname": "typing._T_contra", "id": 2, "name": "_T_contra", "upper_bound": "builtins.object", "values": [], "variance": 2}, {".class": "TypeVarType", "fullname": "typing._V_co", "id": 3, "name": "_V_co", "upper_bound": "builtins.object", "values": [], "variance": 1}], "type_ref": "typing.Generator"}], "bound_args": [], "def_extras": {"first_arg": "self"}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "__iter__ of Generator", "ret_type": {".class": "Instance", "args": [{".class": "TypeVarType", "fullname": "typing._T_co", "id": 1, "name": "_T_co", "upper_bound": "builtins.object", "values": [], "variance": 1}, {".class": "TypeVarType", "fullname": "typing._T_contra", "id": 2, "name": "_T_contra", "upper_bound": "builtins.object", "values": [], "variance": 2}, {".class": "TypeVarType", "fullname": "typing._V_co", "id": 3, "name": "_V_co", "upper_bound": "builtins.object", "values": [], "variance": 1}], "type_ref": "typing.Generator"}, "variables": []}}}}, "__next__": {".class": "SymbolTableNode", "kind": "Mdef", "node": {".class": "Decorator", "func": {".class": "FuncDef", "arg_kinds": [0], "arg_names": ["self"], "flags": ["is_decorated", "is_abstract"], "fullname": "typing.Generator.__next__", "name": "__next__", "type": {".class": "CallableType", "arg_kinds": [0], "arg_names": ["self"], "arg_types": [{".class": "Instance", "args": [{".class": "TypeVarType", "fullname": "typing._T_co", "id": 1, "name": "_T_co", "upper_bound": "builtins.object", "values": [], "variance": 1}, {".class": "TypeVarType", "fullname": "typing._T_contra", "id": 2, "name": "_T_contra", "upper_bound": "builtins.object", "values": [], "variance": 2}, {".class": "TypeVarType", "fullname": "typing._V_co", "id": 3, "name": "_V_co", "upper_bound": "builtins.object", "values": [], "variance": 1}], "type_ref": "typing.Generator"}], "bound_args": [], "def_extras": {"first_arg": "self"}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "__next__ of Generator", "ret_type": {".class": "TypeVarType", "fullname": "typing._T_co", "id": 1, "name": "_T_co", "upper_bound": "builtins.object", "values": [], "variance": 1}, "variables": []}}, "is_overload": false, "var": {".class": "Var", "flags": ["is_initialized_in_class"], "fullname": null, "name": "__next__", "type": {".class": "CallableType", "arg_kinds": [0], "arg_names": ["self"], "arg_types": [{".class": "Instance", "args": [{".class": "TypeVarType", "fullname": "typing._T_co", "id": 1, "name": "_T_co", "upper_bound": "builtins.object", "values": [], "variance": 1}, {".class": "TypeVarType", "fullname": "typing._T_contra", "id": 2, "name": "_T_contra", "upper_bound": "builtins.object", "values": [], "variance": 2}, {".class": "TypeVarType", "fullname": "typing._V_co", "id": 3, "name": "_V_co", "upper_bound": "builtins.object", "values": [], "variance": 1}], "type_ref": "typing.Generator"}], "bound_args": [], "def_extras": {"first_arg": "self"}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "__next__ of Generator", "ret_type": {".class": "TypeVarType", "fullname": "typing._T_co", "id": 1, "name": "_T_co", "upper_bound": "builtins.object", "values": [], "variance": 1}, "variables": []}}}}, "close": {".class": "SymbolTableNode", "kind": "Mdef", "node": {".class": "Decorator", "func": {".class": "FuncDef", "arg_kinds": [0], "arg_names": ["self"], "flags": ["is_decorated", "is_abstract"], "fullname": "typing.Generator.close", "name": "close", "type": {".class": "CallableType", "arg_kinds": [0], "arg_names": ["self"], "arg_types": [{".class": "Instance", "args": [{".class": "TypeVarType", "fullname": "typing._T_co", "id": 1, "name": "_T_co", "upper_bound": "builtins.object", "values": [], "variance": 1}, {".class": "TypeVarType", "fullname": "typing._T_contra", "id": 2, "name": "_T_contra", "upper_bound": "builtins.object", "values": [], "variance": 2}, {".class": "TypeVarType", "fullname": "typing._V_co", "id": 3, "name": "_V_co", "upper_bound": "builtins.object", "values": [], "variance": 1}], "type_ref": "typing.Generator"}], "bound_args": [], "def_extras": {"first_arg": "self"}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "close of Generator", "ret_type": {".class": "NoneTyp"}, "variables": []}}, "is_overload": false, "var": {".class": "Var", "flags": ["is_initialized_in_class"], "fullname": null, "name": "close", "type": {".class": "CallableType", "arg_kinds": [0], "arg_names": ["self"], "arg_types": [{".class": "Instance", "args": [{".class": "TypeVarType", "fullname": "typing._T_co", "id": 1, "name": "_T_co", "upper_bound": "builtins.object", "values": [], "variance": 1}, {".class": "TypeVarType", "fullname": "typing._T_contra", "id": 2, "name": "_T_contra", "upper_bound": "builtins.object", "values": [], "variance": 2}, {".class": "TypeVarType", "fullname": "typing._V_co", "id": 3, "name": "_V_co", "upper_bound": "builtins.object", "values": [], "variance": 1}], "type_ref": "typing.Generator"}], "bound_args": [], "def_extras": {"first_arg": "self"}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "close of Generator", "ret_type": {".class": "NoneTyp"}, "variables": []}}}}, "gi_code": {".class": "SymbolTableNode", "kind": "Mdef", "node": {".class": "Decorator", "func": {".class": "FuncDef", "arg_kinds": [0], "arg_names": ["self"], "flags": ["is_property", "is_decorated"], "fullname": "typing.Generator.gi_code", "name": "gi_code", "type": {".class": "CallableType", "arg_kinds": [0], "arg_names": ["self"], "arg_types": [{".class": "Instance", "args": [{".class": "TypeVarType", "fullname": "typing._T_co", "id": 1, "name": "_T_co", "upper_bound": "builtins.object", "values": [], "variance": 1}, {".class": "TypeVarType", "fullname": "typing._T_contra", "id": 2, "name": "_T_contra", "upper_bound": "builtins.object", "values": [], "variance": 2}, {".class": "TypeVarType", "fullname": "typing._V_co", "id": 3, "name": "_V_co", "upper_bound": "builtins.object", "values": [], "variance": 1}], "type_ref": "typing.Generator"}], "bound_args": [], "def_extras": {"first_arg": "self"}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "gi_code of Generator", "ret_type": "types.CodeType", "variables": []}}, "is_overload": false, "var": {".class": "Var", "flags": ["is_initialized_in_class", "is_property"], "fullname": null, "name": "gi_code", "type": {".class": "CallableType", "arg_kinds": [0], "arg_names": ["self"], "arg_types": [{".class": "Instance", "args": [{".class": "TypeVarType", "fullname": "typing._T_co", "id": 1, "name": "_T_co", "upper_bound": "builtins.object", "values": [], "variance": 1}, {".class": "TypeVarType", "fullname": "typing._T_contra", "id": 2, "name": "_T_contra", "upper_bound": "builtins.object", "values": [], "variance": 2}, {".class": "TypeVarType", "fullname": "typing._V_co", "id": 3, "name": "_V_co", "upper_bound": "builtins.object", "values": [], "variance": 1}], "type_ref": "typing.Generator"}], "bound_args": [], "def_extras": {"first_arg": "self"}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "gi_code of Generator", "ret_type": "types.CodeType", "variables": []}}}}, "gi_frame": {".class": "SymbolTableNode", "kind": "Mdef", "node": {".class": "Decorator", "func": {".class": "FuncDef", "arg_kinds": [0], "arg_names": ["self"], "flags": ["is_property", "is_decorated"], "fullname": "typing.Generator.gi_frame", "name": "gi_frame", "type": {".class": "CallableType", "arg_kinds": [0], "arg_names": ["self"], "arg_types": [{".class": "Instance", "args": [{".class": "TypeVarType", "fullname": "typing._T_co", "id": 1, "name": "_T_co", "upper_bound": "builtins.object", "values": [], "variance": 1}, {".class": "TypeVarType", "fullname": "typing._T_contra", "id": 2, "name": "_T_contra", "upper_bound": "builtins.object", "values": [], "variance": 2}, {".class": "TypeVarType", "fullname": "typing._V_co", "id": 3, "name": "_V_co", "upper_bound": "builtins.object", "values": [], "variance": 1}], "type_ref": "typing.Generator"}], "bound_args": [], "def_extras": {"first_arg": "self"}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "gi_frame of Generator", "ret_type": "types.FrameType", "variables": []}}, "is_overload": false, "var": {".class": "Var", "flags": ["is_initialized_in_class", "is_property"], "fullname": null, "name": "gi_frame", "type": {".class": "CallableType", "arg_kinds": [0], "arg_names": ["self"], "arg_types": [{".class": "Instance", "args": [{".class": "TypeVarType", "fullname": "typing._T_co", "id": 1, "name": "_T_co", "upper_bound": "builtins.object", "values": [], "variance": 1}, {".class": "TypeVarType", "fullname": "typing._T_contra", "id": 2, "name": "_T_contra", "upper_bound": "builtins.object", "values": [], "variance": 2}, {".class": "TypeVarType", "fullname": "typing._V_co", "id": 3, "name": "_V_co", "upper_bound": "builtins.object", "values": [], "variance": 1}], "type_ref": "typing.Generator"}], "bound_args": [], "def_extras": {"first_arg": "self"}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "gi_frame of Generator", "ret_type": "types.FrameType", "variables": []}}}}, "gi_running": {".class": "SymbolTableNode", "kind": "Mdef", "node": {".class": "Decorator", "func": {".class": "FuncDef", "arg_kinds": [0], "arg_names": ["self"], "flags": ["is_property", "is_decorated"], "fullname": "typing.Generator.gi_running", "name": "gi_running", "type": {".class": "CallableType", "arg_kinds": [0], "arg_names": ["self"], "arg_types": [{".class": "Instance", "args": [{".class": "TypeVarType", "fullname": "typing._T_co", "id": 1, "name": "_T_co", "upper_bound": "builtins.object", "values": [], "variance": 1}, {".class": "TypeVarType", "fullname": "typing._T_contra", "id": 2, "name": "_T_contra", "upper_bound": "builtins.object", "values": [], "variance": 2}, {".class": "TypeVarType", "fullname": "typing._V_co", "id": 3, "name": "_V_co", "upper_bound": "builtins.object", "values": [], "variance": 1}], "type_ref": "typing.Generator"}], "bound_args": [], "def_extras": {"first_arg": "self"}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "gi_running of Generator", "ret_type": "builtins.bool", "variables": []}}, "is_overload": false, "var": {".class": "Var", "flags": ["is_initialized_in_class", "is_property"], "fullname": null, "name": "gi_running", "type": {".class": "CallableType", "arg_kinds": [0], "arg_names": ["self"], "arg_types": [{".class": "Instance", "args": [{".class": "TypeVarType", "fullname": "typing._T_co", "id": 1, "name": "_T_co", "upper_bound": "builtins.object", "values": [], "variance": 1}, {".class": "TypeVarType", "fullname": "typing._T_contra", "id": 2, "name": "_T_contra", "upper_bound": "builtins.object", "values": [], "variance": 2}, {".class": "TypeVarType", "fullname": "typing._V_co", "id": 3, "name": "_V_co", "upper_bound": "builtins.object", "values": [], "variance": 1}], "type_ref": "typing.Generator"}], "bound_args": [], "def_extras": {"first_arg": "self"}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "gi_running of Generator", "ret_type": "builtins.bool", "variables": []}}}}, "gi_yieldfrom": {".class": "SymbolTableNode", "kind": "Mdef", "node": {".class": "Decorator", "func": {".class": "FuncDef", "arg_kinds": [0], "arg_names": ["self"], "flags": ["is_property", "is_decorated"], "fullname": "typing.Generator.gi_yieldfrom", "name": "gi_yieldfrom", "type": {".class": "CallableType", "arg_kinds": [0], "arg_names": ["self"], "arg_types": [{".class": "Instance", "args": [{".class": "TypeVarType", "fullname": "typing._T_co", "id": 1, "name": "_T_co", "upper_bound": "builtins.object", "values": [], "variance": 1}, {".class": "TypeVarType", "fullname": "typing._T_contra", "id": 2, "name": "_T_contra", "upper_bound": "builtins.object", "values": [], "variance": 2}, {".class": "TypeVarType", "fullname": "typing._V_co", "id": 3, "name": "_V_co", "upper_bound": "builtins.object", "values": [], "variance": 1}], "type_ref": "typing.Generator"}], "bound_args": [], "def_extras": {"first_arg": "self"}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "gi_yieldfrom of Generator", "ret_type": {".class": "UnionType", "items": [{".class": "Instance", "args": [{".class": "AnyType", "missing_import_name": null, "source_any": null, "type_of_any": 4}, {".class": "AnyType", "missing_import_name": null, "source_any": null, "type_of_any": 4}, {".class": "AnyType", "missing_import_name": null, "source_any": null, "type_of_any": 4}], "type_ref": "typing.Generator"}, {".class": "NoneTyp"}]}, "variables": []}}, "is_overload": false, "var": {".class": "Var", "flags": ["is_initialized_in_class", "is_property"], "fullname": null, "name": "gi_yieldfrom", "type": {".class": "CallableType", "arg_kinds": [0], "arg_names": ["self"], "arg_types": [{".class": "Instance", "args": [{".class": "TypeVarType", "fullname": "typing._T_co", "id": 1, "name": "_T_co", "upper_bound": "builtins.object", "values": [], "variance": 1}, {".class": "TypeVarType", "fullname": "typing._T_contra", "id": 2, "name": "_T_contra", "upper_bound": "builtins.object", "values": [], "variance": 2}, {".class": "TypeVarType", "fullname": "typing._V_co", "id": 3, "name": "_V_co", "upper_bound": "builtins.object", "values": [], "variance": 1}], "type_ref": "typing.Generator"}], "bound_args": [], "def_extras": {"first_arg": "self"}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "gi_yieldfrom of Generator", "ret_type": {".class": "UnionType", "items": [{".class": "Instance", "args": [{".class": "AnyType", "missing_import_name": null, "source_any": null, "type_of_any": 4}, {".class": "AnyType", "missing_import_name": null, "source_any": null, "type_of_any": 4}, {".class": "AnyType", "missing_import_name": null, "source_any": null, "type_of_any": 4}], "type_ref": "typing.Generator"}, {".class": "NoneTyp"}]}, "variables": []}}}}, "send": {".class": "SymbolTableNode", "kind": "Mdef", "node": {".class": "Decorator", "func": {".class": "FuncDef", "arg_kinds": [0, 0], "arg_names": ["self", "value"], "flags": ["is_decorated", "is_abstract"], "fullname": "typing.Generator.send", "name": "send", "type": {".class": "CallableType", "arg_kinds": [0, 0], "arg_names": ["self", "value"], "arg_types": [{".class": "Instance", "args": [{".class": "TypeVarType", "fullname": "typing._T_co", "id": 1, "name": "_T_co", "upper_bound": "builtins.object", "values": [], "variance": 1}, {".class": "TypeVarType", "fullname": "typing._T_contra", "id": 2, "name": "_T_contra", "upper_bound": "builtins.object", "values": [], "variance": 2}, {".class": "TypeVarType", "fullname": "typing._V_co", "id": 3, "name": "_V_co", "upper_bound": "builtins.object", "values": [], "variance": 1}], "type_ref": "typing.Generator"}, {".class": "TypeVarType", "fullname": "typing._T_contra", "id": 2, "name": "_T_contra", "upper_bound": "builtins.object", "values": [], "variance": 2}], "bound_args": [], "def_extras": {"first_arg": "self"}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "send of Generator", "ret_type": {".class": "TypeVarType", "fullname": "typing._T_co", "id": 1, "name": "_T_co", "upper_bound": "builtins.object", "values": [], "variance": 1}, "variables": []}}, "is_overload": false, "var": {".class": "Var", "flags": ["is_initialized_in_class"], "fullname": null, "name": "send", "type": {".class": "CallableType", "arg_kinds": [0, 0], "arg_names": ["self", "value"], "arg_types": [{".class": "Instance", "args": [{".class": "TypeVarType", "fullname": "typing._T_co", "id": 1, "name": "_T_co", "upper_bound": "builtins.object", "values": [], "variance": 1}, {".class": "TypeVarType", "fullname": "typing._T_contra", "id": 2, "name": "_T_contra", "upper_bound": "builtins.object", "values": [], "variance": 2}, {".class": "TypeVarType", "fullname": "typing._V_co", "id": 3, "name": "_V_co", "upper_bound": "builtins.object", "values": [], "variance": 1}], "type_ref": "typing.Generator"}, {".class": "TypeVarType", "fullname": "typing._T_contra", "id": 2, "name": "_T_contra", "upper_bound": "builtins.object", "values": [], "variance": 2}], "bound_args": [], "def_extras": {"first_arg": "self"}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "send of Generator", "ret_type": {".class": "TypeVarType", "fullname": "typing._T_co", "id": 1, "name": "_T_co", "upper_bound": "builtins.object", "values": [], "variance": 1}, "variables": []}}}}, "throw": {".class": "SymbolTableNode", "kind": "Mdef", "node": {".class": "Decorator", "func": {".class": "FuncDef", "arg_kinds": [0, 0, 1, 1], "arg_names": ["self", "typ", "val", "tb"], "flags": ["is_decorated", "is_abstract"], "fullname": "typing.Generator.throw", "name": "throw", "type": {".class": "CallableType", "arg_kinds": [0, 0, 1, 1], "arg_names": ["self", "typ", "val", "tb"], "arg_types": [{".class": "Instance", "args": [{".class": "TypeVarType", "fullname": "typing._T_co", "id": 1, "name": "_T_co", "upper_bound": "builtins.object", "values": [], "variance": 1}, {".class": "TypeVarType", "fullname": "typing._T_contra", "id": 2, "name": "_T_contra", "upper_bound": "builtins.object", "values": [], "variance": 2}, {".class": "TypeVarType", "fullname": "typing._V_co", "id": 3, "name": "_V_co", "upper_bound": "builtins.object", "values": [], "variance": 1}], "type_ref": "typing.Generator"}, {".class": "TypeType", "item": "builtins.BaseException"}, {".class": "UnionType", "items": ["builtins.BaseException", {".class": "NoneTyp"}]}, {".class": "UnionType", "items": ["types.TracebackType", {".class": "NoneTyp"}]}], "bound_args": [], "def_extras": {"first_arg": "self"}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "throw of Generator", "ret_type": {".class": "TypeVarType", "fullname": "typing._T_co", "id": 1, "name": "_T_co", "upper_bound": "builtins.object", "values": [], "variance": 1}, "variables": []}}, "is_overload": false, "var": {".class": "Var", "flags": ["is_initialized_in_class"], "fullname": null, "name": "throw", "type": {".class": "CallableType", "arg_kinds": [0, 0, 1, 1], "arg_names": ["self", "typ", "val", "tb"], "arg_types": [{".class": "Instance", "args": [{".class": "TypeVarType", "fullname": "typing._T_co", "id": 1, "name": "_T_co", "upper_bound": "builtins.object", "values": [], "variance": 1}, {".class": "TypeVarType", "fullname": "typing._T_contra", "id": 2, "name": "_T_contra", "upper_bound": "builtins.object", "values": [], "variance": 2}, {".class": "TypeVarType", "fullname": "typing._V_co", "id": 3, "name": "_V_co", "upper_bound": "builtins.object", "values": [], "variance": 1}], "type_ref": "typing.Generator"}, {".class": "TypeType", "item": "builtins.BaseException"}, {".class": "UnionType", "items": ["builtins.BaseException", {".class": "NoneTyp"}]}, {".class": "UnionType", "items": ["types.TracebackType", {".class": "NoneTyp"}]}], "bound_args": [], "def_extras": {"first_arg": "self"}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "throw of Generator", "ret_type": {".class": "TypeVarType", "fullname": "typing._T_co", "id": 1, "name": "_T_co", "upper_bound": "builtins.object", "values": [], "variance": 1}, "variables": []}}}}}, "tuple_type": null, "type_vars": ["_T_co", "_T_contra", "_V_co"], "typeddict_type": null}}, "Generic": {".class": "SymbolTableNode", "kind": "Gdef", "node": {".class": "Var", "flags": [], "fullname": "typing.Generic", "name": "Generic", "type": "typing._SpecialForm"}}, "GenericMeta": {".class": "SymbolTableNode", "kind": "Gdef", "node": {".class": "TypeInfo", "_promote": null, "abstract_attributes": [], "bases": ["builtins.type"], "declared_metaclass": null, "defn": {".class": "ClassDef", "fullname": "typing.GenericMeta", "name": "GenericMeta", "type_vars": []}, "flags": [], "fullname": "typing.GenericMeta", "metaclass_type": null, "metadata": {}, "module_name": "typing", "mro": ["typing.GenericMeta", "builtins.type", "builtins.object"], "names": {".class": "SymbolTable"}, "tuple_type": null, "type_vars": [], "typeddict_type": null}}, "Hashable": {".class": "SymbolTableNode", "kind": "Gdef", "node": {".class": "TypeInfo", "_promote": null, "abstract_attributes": ["__hash__"], "bases": ["builtins.object"], "declared_metaclass": "abc.ABCMeta", "defn": {".class": "ClassDef", "fullname": "typing.Hashable", "name": "Hashable", "type_vars": []}, "flags": ["is_abstract", "is_protocol", "runtime_protocol"], "fullname": "typing.Hashable", "metaclass_type": "abc.ABCMeta", "metadata": {}, "module_name": "typing", "mro": ["typing.Hashable", "builtins.object"], "names": {".class": "SymbolTable", "__hash__": {".class": "SymbolTableNode", "kind": "Mdef", "node": {".class": "Decorator", "func": {".class": "FuncDef", "arg_kinds": [0], "arg_names": ["self"], "flags": ["is_decorated", "is_abstract"], "fullname": "typing.Hashable.__hash__", "name": "__hash__", "type": {".class": "CallableType", "arg_kinds": [0], "arg_names": ["self"], "arg_types": ["typing.Hashable"], "bound_args": [], "def_extras": {"first_arg": "self"}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "__hash__ of Hashable", "ret_type": "builtins.int", "variables": []}}, "is_overload": false, "var": {".class": "Var", "flags": ["is_initialized_in_class"], "fullname": null, "name": "__hash__", "type": {".class": "CallableType", "arg_kinds": [0], "arg_names": ["self"], "arg_types": ["typing.Hashable"], "bound_args": [], "def_extras": {"first_arg": "self"}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "__hash__ of Hashable", "ret_type": "builtins.int", "variables": []}}}}}, "tuple_type": null, "type_vars": [], "typeddict_type": null}}, "IO": {".class": "SymbolTableNode", "kind": "Gdef", "node": {".class": "TypeInfo", "_promote": null, "abstract_attributes": ["__enter__", "__exit__", "__iter__", "__next__", "close", "fileno", "flush", "isatty", "read", "readable", "readline", "readlines", "seek", "seekable", "tell", "truncate", "writable", "write", "writelines"], "bases": [{".class": "Instance", "args": [{".class": "TypeVarType", "fullname": "typing.AnyStr", "id": 1, "name": "AnyStr", "upper_bound": "builtins.object", "values": ["builtins.str", "builtins.bytes"], "variance": 0}], "type_ref": "typing.Iterator"}], "declared_metaclass": null, "defn": {".class": "ClassDef", "fullname": "typing.IO", "name": "IO", "type_vars": [{".class": "TypeVarDef", "fullname": "typing.AnyStr", "id": 1, "name": "AnyStr", "upper_bound": "builtins.object", "values": ["builtins.str", "builtins.bytes"], "variance": 0}]}, "flags": ["is_abstract"], "fullname": "typing.IO", "metaclass_type": "abc.ABCMeta", "metadata": {}, "module_name": "typing", "mro": ["typing.IO", "typing.Iterator", "typing.Iterable", "builtins.object"], "names": {".class": "SymbolTable", "__enter__": {".class": "SymbolTableNode", "kind": "Mdef", "node": {".class": "Decorator", "func": {".class": "FuncDef", "arg_kinds": [0], "arg_names": ["self"], "flags": ["is_decorated", "is_abstract"], "fullname": "typing.IO.__enter__", "name": "__enter__", "type": {".class": "CallableType", "arg_kinds": [0], "arg_names": [null], "arg_types": [{".class": "Instance", "args": [{".class": "TypeVarType", "fullname": "typing.AnyStr", "id": 1, "name": "AnyStr", "upper_bound": "builtins.object", "values": ["builtins.str", "builtins.bytes"], "variance": 0}], "type_ref": "typing.IO"}], "bound_args": [], "def_extras": {"first_arg": "self"}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "__enter__ of IO", "ret_type": {".class": "Instance", "args": [{".class": "TypeVarType", "fullname": "typing.AnyStr", "id": 1, "name": "AnyStr", "upper_bound": "builtins.object", "values": ["builtins.str", "builtins.bytes"], "variance": 0}], "type_ref": "typing.IO"}, "variables": []}}, "is_overload": false, "var": {".class": "Var", "flags": ["is_initialized_in_class"], "fullname": null, "name": "__enter__", "type": {".class": "CallableType", "arg_kinds": [0], "arg_names": [null], "arg_types": [{".class": "Instance", "args": [{".class": "TypeVarType", "fullname": "typing.AnyStr", "id": 1, "name": "AnyStr", "upper_bound": "builtins.object", "values": ["builtins.str", "builtins.bytes"], "variance": 0}], "type_ref": "typing.IO"}], "bound_args": [], "def_extras": {"first_arg": "self"}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "__enter__ of IO", "ret_type": {".class": "Instance", "args": [{".class": "TypeVarType", "fullname": "typing.AnyStr", "id": 1, "name": "AnyStr", "upper_bound": "builtins.object", "values": ["builtins.str", "builtins.bytes"], "variance": 0}], "type_ref": "typing.IO"}, "variables": []}}}}, "__exit__": {".class": "SymbolTableNode", "kind": "Mdef", "node": {".class": "Decorator", "func": {".class": "FuncDef", "arg_kinds": [0, 0, 0, 0], "arg_names": ["self", "t", "value", "traceback"], "flags": ["is_decorated", "is_abstract"], "fullname": "typing.IO.__exit__", "name": "__exit__", "type": {".class": "CallableType", "arg_kinds": [0, 0, 0, 0], "arg_names": [null, null, null, null], "arg_types": [{".class": "Instance", "args": [{".class": "TypeVarType", "fullname": "typing.AnyStr", "id": 1, "name": "AnyStr", "upper_bound": "builtins.object", "values": ["builtins.str", "builtins.bytes"], "variance": 0}], "type_ref": "typing.IO"}, {".class": "UnionType", "items": [{".class": "TypeType", "item": "builtins.BaseException"}, {".class": "NoneTyp"}]}, {".class": "UnionType", "items": ["builtins.BaseException", {".class": "NoneTyp"}]}, {".class": "UnionType", "items": ["types.TracebackType", {".class": "NoneTyp"}]}], "bound_args": [], "def_extras": {"first_arg": "self"}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "__exit__ of IO", "ret_type": "builtins.bool", "variables": []}}, "is_overload": false, "var": {".class": "Var", "flags": ["is_initialized_in_class"], "fullname": null, "name": "__exit__", "type": {".class": "CallableType", "arg_kinds": [0, 0, 0, 0], "arg_names": [null, null, null, null], "arg_types": [{".class": "Instance", "args": [{".class": "TypeVarType", "fullname": "typing.AnyStr", "id": 1, "name": "AnyStr", "upper_bound": "builtins.object", "values": ["builtins.str", "builtins.bytes"], "variance": 0}], "type_ref": "typing.IO"}, {".class": "UnionType", "items": [{".class": "TypeType", "item": "builtins.BaseException"}, {".class": "NoneTyp"}]}, {".class": "UnionType", "items": ["builtins.BaseException", {".class": "NoneTyp"}]}, {".class": "UnionType", "items": ["types.TracebackType", {".class": "NoneTyp"}]}], "bound_args": [], "def_extras": {"first_arg": "self"}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "__exit__ of IO", "ret_type": "builtins.bool", "variables": []}}}}, "__iter__": {".class": "SymbolTableNode", "kind": "Mdef", "node": {".class": "Decorator", "func": {".class": "FuncDef", "arg_kinds": [0], "arg_names": ["self"], "flags": ["is_decorated", "is_abstract"], "fullname": "typing.IO.__iter__", "name": "__iter__", "type": {".class": "CallableType", "arg_kinds": [0], "arg_names": [null], "arg_types": [{".class": "Instance", "args": [{".class": "TypeVarType", "fullname": "typing.AnyStr", "id": 1, "name": "AnyStr", "upper_bound": "builtins.object", "values": ["builtins.str", "builtins.bytes"], "variance": 0}], "type_ref": "typing.IO"}], "bound_args": [], "def_extras": {"first_arg": "self"}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "__iter__ of IO", "ret_type": {".class": "Instance", "args": [{".class": "TypeVarType", "fullname": "typing.AnyStr", "id": 1, "name": "AnyStr", "upper_bound": "builtins.object", "values": ["builtins.str", "builtins.bytes"], "variance": 0}], "type_ref": "typing.Iterator"}, "variables": []}}, "is_overload": false, "var": {".class": "Var", "flags": ["is_initialized_in_class"], "fullname": null, "name": "__iter__", "type": {".class": "CallableType", "arg_kinds": [0], "arg_names": [null], "arg_types": [{".class": "Instance", "args": [{".class": "TypeVarType", "fullname": "typing.AnyStr", "id": 1, "name": "AnyStr", "upper_bound": "builtins.object", "values": ["builtins.str", "builtins.bytes"], "variance": 0}], "type_ref": "typing.IO"}], "bound_args": [], "def_extras": {"first_arg": "self"}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "__iter__ of IO", "ret_type": {".class": "Instance", "args": [{".class": "TypeVarType", "fullname": "typing.AnyStr", "id": 1, "name": "AnyStr", "upper_bound": "builtins.object", "values": ["builtins.str", "builtins.bytes"], "variance": 0}], "type_ref": "typing.Iterator"}, "variables": []}}}}, "__next__": {".class": "SymbolTableNode", "kind": "Mdef", "node": {".class": "Decorator", "func": {".class": "FuncDef", "arg_kinds": [0], "arg_names": ["self"], "flags": ["is_decorated", "is_abstract"], "fullname": "typing.IO.__next__", "name": "__next__", "type": {".class": "CallableType", "arg_kinds": [0], "arg_names": ["self"], "arg_types": [{".class": "Instance", "args": [{".class": "TypeVarType", "fullname": "typing.AnyStr", "id": 1, "name": "AnyStr", "upper_bound": "builtins.object", "values": ["builtins.str", "builtins.bytes"], "variance": 0}], "type_ref": "typing.IO"}], "bound_args": [], "def_extras": {"first_arg": "self"}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "__next__ of IO", "ret_type": {".class": "TypeVarType", "fullname": "typing.AnyStr", "id": 1, "name": "AnyStr", "upper_bound": "builtins.object", "values": ["builtins.str", "builtins.bytes"], "variance": 0}, "variables": []}}, "is_overload": false, "var": {".class": "Var", "flags": ["is_initialized_in_class"], "fullname": null, "name": "__next__", "type": {".class": "CallableType", "arg_kinds": [0], "arg_names": ["self"], "arg_types": [{".class": "Instance", "args": [{".class": "TypeVarType", "fullname": "typing.AnyStr", "id": 1, "name": "AnyStr", "upper_bound": "builtins.object", "values": ["builtins.str", "builtins.bytes"], "variance": 0}], "type_ref": "typing.IO"}], "bound_args": [], "def_extras": {"first_arg": "self"}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "__next__ of IO", "ret_type": {".class": "TypeVarType", "fullname": "typing.AnyStr", "id": 1, "name": "AnyStr", "upper_bound": "builtins.object", "values": ["builtins.str", "builtins.bytes"], "variance": 0}, "variables": []}}}}, "close": {".class": "SymbolTableNode", "kind": "Mdef", "node": {".class": "Decorator", "func": {".class": "FuncDef", "arg_kinds": [0], "arg_names": ["self"], "flags": ["is_decorated", "is_abstract"], "fullname": "typing.IO.close", "name": "close", "type": {".class": "CallableType", "arg_kinds": [0], "arg_names": ["self"], "arg_types": [{".class": "Instance", "args": [{".class": "TypeVarType", "fullname": "typing.AnyStr", "id": 1, "name": "AnyStr", "upper_bound": "builtins.object", "values": ["builtins.str", "builtins.bytes"], "variance": 0}], "type_ref": "typing.IO"}], "bound_args": [], "def_extras": {"first_arg": "self"}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "close of IO", "ret_type": {".class": "NoneTyp"}, "variables": []}}, "is_overload": false, "var": {".class": "Var", "flags": ["is_initialized_in_class"], "fullname": null, "name": "close", "type": {".class": "CallableType", "arg_kinds": [0], "arg_names": ["self"], "arg_types": [{".class": "Instance", "args": [{".class": "TypeVarType", "fullname": "typing.AnyStr", "id": 1, "name": "AnyStr", "upper_bound": "builtins.object", "values": ["builtins.str", "builtins.bytes"], "variance": 0}], "type_ref": "typing.IO"}], "bound_args": [], "def_extras": {"first_arg": "self"}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "close of IO", "ret_type": {".class": "NoneTyp"}, "variables": []}}}}, "closed": {".class": "SymbolTableNode", "kind": "Mdef", "node": {".class": "Decorator", "func": {".class": "FuncDef", "arg_kinds": [0], "arg_names": ["self"], "flags": ["is_property", "is_decorated"], "fullname": "typing.IO.closed", "name": "closed", "type": {".class": "CallableType", "arg_kinds": [0], "arg_names": ["self"], "arg_types": [{".class": "Instance", "args": [{".class": "TypeVarType", "fullname": "typing.AnyStr", "id": 1, "name": "AnyStr", "upper_bound": "builtins.object", "values": ["builtins.str", "builtins.bytes"], "variance": 0}], "type_ref": "typing.IO"}], "bound_args": [], "def_extras": {"first_arg": "self"}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "closed of IO", "ret_type": "builtins.bool", "variables": []}}, "is_overload": false, "var": {".class": "Var", "flags": ["is_initialized_in_class", "is_property"], "fullname": null, "name": "closed", "type": {".class": "CallableType", "arg_kinds": [0], "arg_names": ["self"], "arg_types": [{".class": "Instance", "args": [{".class": "TypeVarType", "fullname": "typing.AnyStr", "id": 1, "name": "AnyStr", "upper_bound": "builtins.object", "values": ["builtins.str", "builtins.bytes"], "variance": 0}], "type_ref": "typing.IO"}], "bound_args": [], "def_extras": {"first_arg": "self"}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "closed of IO", "ret_type": "builtins.bool", "variables": []}}}}, "fileno": {".class": "SymbolTableNode", "kind": "Mdef", "node": {".class": "Decorator", "func": {".class": "FuncDef", "arg_kinds": [0], "arg_names": ["self"], "flags": ["is_decorated", "is_abstract"], "fullname": "typing.IO.fileno", "name": "fileno", "type": {".class": "CallableType", "arg_kinds": [0], "arg_names": ["self"], "arg_types": [{".class": "Instance", "args": [{".class": "TypeVarType", "fullname": "typing.AnyStr", "id": 1, "name": "AnyStr", "upper_bound": "builtins.object", "values": ["builtins.str", "builtins.bytes"], "variance": 0}], "type_ref": "typing.IO"}], "bound_args": [], "def_extras": {"first_arg": "self"}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "fileno of IO", "ret_type": "builtins.int", "variables": []}}, "is_overload": false, "var": {".class": "Var", "flags": ["is_initialized_in_class"], "fullname": null, "name": "fileno", "type": {".class": "CallableType", "arg_kinds": [0], "arg_names": ["self"], "arg_types": [{".class": "Instance", "args": [{".class": "TypeVarType", "fullname": "typing.AnyStr", "id": 1, "name": "AnyStr", "upper_bound": "builtins.object", "values": ["builtins.str", "builtins.bytes"], "variance": 0}], "type_ref": "typing.IO"}], "bound_args": [], "def_extras": {"first_arg": "self"}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "fileno of IO", "ret_type": "builtins.int", "variables": []}}}}, "flush": {".class": "SymbolTableNode", "kind": "Mdef", "node": {".class": "Decorator", "func": {".class": "FuncDef", "arg_kinds": [0], "arg_names": ["self"], "flags": ["is_decorated", "is_abstract"], "fullname": "typing.IO.flush", "name": "flush", "type": {".class": "CallableType", "arg_kinds": [0], "arg_names": ["self"], "arg_types": [{".class": "Instance", "args": [{".class": "TypeVarType", "fullname": "typing.AnyStr", "id": 1, "name": "AnyStr", "upper_bound": "builtins.object", "values": ["builtins.str", "builtins.bytes"], "variance": 0}], "type_ref": "typing.IO"}], "bound_args": [], "def_extras": {"first_arg": "self"}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "flush of IO", "ret_type": {".class": "NoneTyp"}, "variables": []}}, "is_overload": false, "var": {".class": "Var", "flags": ["is_initialized_in_class"], "fullname": null, "name": "flush", "type": {".class": "CallableType", "arg_kinds": [0], "arg_names": ["self"], "arg_types": [{".class": "Instance", "args": [{".class": "TypeVarType", "fullname": "typing.AnyStr", "id": 1, "name": "AnyStr", "upper_bound": "builtins.object", "values": ["builtins.str", "builtins.bytes"], "variance": 0}], "type_ref": "typing.IO"}], "bound_args": [], "def_extras": {"first_arg": "self"}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "flush of IO", "ret_type": {".class": "NoneTyp"}, "variables": []}}}}, "isatty": {".class": "SymbolTableNode", "kind": "Mdef", "node": {".class": "Decorator", "func": {".class": "FuncDef", "arg_kinds": [0], "arg_names": ["self"], "flags": ["is_decorated", "is_abstract"], "fullname": "typing.IO.isatty", "name": "isatty", "type": {".class": "CallableType", "arg_kinds": [0], "arg_names": ["self"], "arg_types": [{".class": "Instance", "args": [{".class": "TypeVarType", "fullname": "typing.AnyStr", "id": 1, "name": "AnyStr", "upper_bound": "builtins.object", "values": ["builtins.str", "builtins.bytes"], "variance": 0}], "type_ref": "typing.IO"}], "bound_args": [], "def_extras": {"first_arg": "self"}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "isatty of IO", "ret_type": "builtins.bool", "variables": []}}, "is_overload": false, "var": {".class": "Var", "flags": ["is_initialized_in_class"], "fullname": null, "name": "isatty", "type": {".class": "CallableType", "arg_kinds": [0], "arg_names": ["self"], "arg_types": [{".class": "Instance", "args": [{".class": "TypeVarType", "fullname": "typing.AnyStr", "id": 1, "name": "AnyStr", "upper_bound": "builtins.object", "values": ["builtins.str", "builtins.bytes"], "variance": 0}], "type_ref": "typing.IO"}], "bound_args": [], "def_extras": {"first_arg": "self"}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "isatty of IO", "ret_type": "builtins.bool", "variables": []}}}}, "mode": {".class": "SymbolTableNode", "kind": "Mdef", "node": {".class": "Decorator", "func": {".class": "FuncDef", "arg_kinds": [0], "arg_names": ["self"], "flags": ["is_property", "is_decorated"], "fullname": "typing.IO.mode", "name": "mode", "type": {".class": "CallableType", "arg_kinds": [0], "arg_names": ["self"], "arg_types": [{".class": "Instance", "args": [{".class": "TypeVarType", "fullname": "typing.AnyStr", "id": 1, "name": "AnyStr", "upper_bound": "builtins.object", "values": ["builtins.str", "builtins.bytes"], "variance": 0}], "type_ref": "typing.IO"}], "bound_args": [], "def_extras": {"first_arg": "self"}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "mode of IO", "ret_type": "builtins.str", "variables": []}}, "is_overload": false, "var": {".class": "Var", "flags": ["is_initialized_in_class", "is_property"], "fullname": null, "name": "mode", "type": {".class": "CallableType", "arg_kinds": [0], "arg_names": ["self"], "arg_types": [{".class": "Instance", "args": [{".class": "TypeVarType", "fullname": "typing.AnyStr", "id": 1, "name": "AnyStr", "upper_bound": "builtins.object", "values": ["builtins.str", "builtins.bytes"], "variance": 0}], "type_ref": "typing.IO"}], "bound_args": [], "def_extras": {"first_arg": "self"}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "mode of IO", "ret_type": "builtins.str", "variables": []}}}}, "name": {".class": "SymbolTableNode", "kind": "Mdef", "node": {".class": "Decorator", "func": {".class": "FuncDef", "arg_kinds": [0], "arg_names": ["self"], "flags": ["is_property", "is_decorated"], "fullname": "typing.IO.name", "name": "name", "type": {".class": "CallableType", "arg_kinds": [0], "arg_names": ["self"], "arg_types": [{".class": "Instance", "args": [{".class": "TypeVarType", "fullname": "typing.AnyStr", "id": 1, "name": "AnyStr", "upper_bound": "builtins.object", "values": ["builtins.str", "builtins.bytes"], "variance": 0}], "type_ref": "typing.IO"}], "bound_args": [], "def_extras": {"first_arg": "self"}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "name of IO", "ret_type": "builtins.str", "variables": []}}, "is_overload": false, "var": {".class": "Var", "flags": ["is_initialized_in_class", "is_property"], "fullname": null, "name": "name", "type": {".class": "CallableType", "arg_kinds": [0], "arg_names": ["self"], "arg_types": [{".class": "Instance", "args": [{".class": "TypeVarType", "fullname": "typing.AnyStr", "id": 1, "name": "AnyStr", "upper_bound": "builtins.object", "values": ["builtins.str", "builtins.bytes"], "variance": 0}], "type_ref": "typing.IO"}], "bound_args": [], "def_extras": {"first_arg": "self"}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "name of IO", "ret_type": "builtins.str", "variables": []}}}}, "read": {".class": "SymbolTableNode", "kind": "Mdef", "node": {".class": "Decorator", "func": {".class": "FuncDef", "arg_kinds": [0, 1], "arg_names": ["self", "n"], "flags": ["is_decorated", "is_abstract"], "fullname": "typing.IO.read", "name": "read", "type": {".class": "CallableType", "arg_kinds": [0, 1], "arg_names": ["self", "n"], "arg_types": [{".class": "Instance", "args": [{".class": "TypeVarType", "fullname": "typing.AnyStr", "id": 1, "name": "AnyStr", "upper_bound": "builtins.object", "values": ["builtins.str", "builtins.bytes"], "variance": 0}], "type_ref": "typing.IO"}, "builtins.int"], "bound_args": [], "def_extras": {"first_arg": "self"}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "read of IO", "ret_type": {".class": "TypeVarType", "fullname": "typing.AnyStr", "id": 1, "name": "AnyStr", "upper_bound": "builtins.object", "values": ["builtins.str", "builtins.bytes"], "variance": 0}, "variables": []}}, "is_overload": false, "var": {".class": "Var", "flags": ["is_initialized_in_class"], "fullname": null, "name": "read", "type": {".class": "CallableType", "arg_kinds": [0, 1], "arg_names": ["self", "n"], "arg_types": [{".class": "Instance", "args": [{".class": "TypeVarType", "fullname": "typing.AnyStr", "id": 1, "name": "AnyStr", "upper_bound": "builtins.object", "values": ["builtins.str", "builtins.bytes"], "variance": 0}], "type_ref": "typing.IO"}, "builtins.int"], "bound_args": [], "def_extras": {"first_arg": "self"}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "read of IO", "ret_type": {".class": "TypeVarType", "fullname": "typing.AnyStr", "id": 1, "name": "AnyStr", "upper_bound": "builtins.object", "values": ["builtins.str", "builtins.bytes"], "variance": 0}, "variables": []}}}}, "readable": {".class": "SymbolTableNode", "kind": "Mdef", "node": {".class": "Decorator", "func": {".class": "FuncDef", "arg_kinds": [0], "arg_names": ["self"], "flags": ["is_decorated", "is_abstract"], "fullname": "typing.IO.readable", "name": "readable", "type": {".class": "CallableType", "arg_kinds": [0], "arg_names": ["self"], "arg_types": [{".class": "Instance", "args": [{".class": "TypeVarType", "fullname": "typing.AnyStr", "id": 1, "name": "AnyStr", "upper_bound": "builtins.object", "values": ["builtins.str", "builtins.bytes"], "variance": 0}], "type_ref": "typing.IO"}], "bound_args": [], "def_extras": {"first_arg": "self"}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "readable of IO", "ret_type": "builtins.bool", "variables": []}}, "is_overload": false, "var": {".class": "Var", "flags": ["is_initialized_in_class"], "fullname": null, "name": "readable", "type": {".class": "CallableType", "arg_kinds": [0], "arg_names": ["self"], "arg_types": [{".class": "Instance", "args": [{".class": "TypeVarType", "fullname": "typing.AnyStr", "id": 1, "name": "AnyStr", "upper_bound": "builtins.object", "values": ["builtins.str", "builtins.bytes"], "variance": 0}], "type_ref": "typing.IO"}], "bound_args": [], "def_extras": {"first_arg": "self"}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "readable of IO", "ret_type": "builtins.bool", "variables": []}}}}, "readline": {".class": "SymbolTableNode", "kind": "Mdef", "node": {".class": "Decorator", "func": {".class": "FuncDef", "arg_kinds": [0, 1], "arg_names": ["self", "limit"], "flags": ["is_decorated", "is_abstract"], "fullname": "typing.IO.readline", "name": "readline", "type": {".class": "CallableType", "arg_kinds": [0, 1], "arg_names": ["self", "limit"], "arg_types": [{".class": "Instance", "args": [{".class": "TypeVarType", "fullname": "typing.AnyStr", "id": 1, "name": "AnyStr", "upper_bound": "builtins.object", "values": ["builtins.str", "builtins.bytes"], "variance": 0}], "type_ref": "typing.IO"}, "builtins.int"], "bound_args": [], "def_extras": {"first_arg": "self"}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "readline of IO", "ret_type": {".class": "TypeVarType", "fullname": "typing.AnyStr", "id": 1, "name": "AnyStr", "upper_bound": "builtins.object", "values": ["builtins.str", "builtins.bytes"], "variance": 0}, "variables": []}}, "is_overload": false, "var": {".class": "Var", "flags": ["is_initialized_in_class"], "fullname": null, "name": "readline", "type": {".class": "CallableType", "arg_kinds": [0, 1], "arg_names": ["self", "limit"], "arg_types": [{".class": "Instance", "args": [{".class": "TypeVarType", "fullname": "typing.AnyStr", "id": 1, "name": "AnyStr", "upper_bound": "builtins.object", "values": ["builtins.str", "builtins.bytes"], "variance": 0}], "type_ref": "typing.IO"}, "builtins.int"], "bound_args": [], "def_extras": {"first_arg": "self"}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "readline of IO", "ret_type": {".class": "TypeVarType", "fullname": "typing.AnyStr", "id": 1, "name": "AnyStr", "upper_bound": "builtins.object", "values": ["builtins.str", "builtins.bytes"], "variance": 0}, "variables": []}}}}, "readlines": {".class": "SymbolTableNode", "kind": "Mdef", "node": {".class": "Decorator", "func": {".class": "FuncDef", "arg_kinds": [0, 1], "arg_names": ["self", "hint"], "flags": ["is_decorated", "is_abstract"], "fullname": "typing.IO.readlines", "name": "readlines", "type": {".class": "CallableType", "arg_kinds": [0, 1], "arg_names": ["self", "hint"], "arg_types": [{".class": "Instance", "args": [{".class": "TypeVarType", "fullname": "typing.AnyStr", "id": 1, "name": "AnyStr", "upper_bound": "builtins.object", "values": ["builtins.str", "builtins.bytes"], "variance": 0}], "type_ref": "typing.IO"}, "builtins.int"], "bound_args": [], "def_extras": {"first_arg": "self"}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "readlines of IO", "ret_type": {".class": "Instance", "args": [{".class": "TypeVarType", "fullname": "typing.AnyStr", "id": 1, "name": "AnyStr", "upper_bound": "builtins.object", "values": ["builtins.str", "builtins.bytes"], "variance": 0}], "type_ref": "builtins.list"}, "variables": []}}, "is_overload": false, "var": {".class": "Var", "flags": ["is_initialized_in_class"], "fullname": null, "name": "readlines", "type": {".class": "CallableType", "arg_kinds": [0, 1], "arg_names": ["self", "hint"], "arg_types": [{".class": "Instance", "args": [{".class": "TypeVarType", "fullname": "typing.AnyStr", "id": 1, "name": "AnyStr", "upper_bound": "builtins.object", "values": ["builtins.str", "builtins.bytes"], "variance": 0}], "type_ref": "typing.IO"}, "builtins.int"], "bound_args": [], "def_extras": {"first_arg": "self"}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "readlines of IO", "ret_type": {".class": "Instance", "args": [{".class": "TypeVarType", "fullname": "typing.AnyStr", "id": 1, "name": "AnyStr", "upper_bound": "builtins.object", "values": ["builtins.str", "builtins.bytes"], "variance": 0}], "type_ref": "builtins.list"}, "variables": []}}}}, "seek": {".class": "SymbolTableNode", "kind": "Mdef", "node": {".class": "Decorator", "func": {".class": "FuncDef", "arg_kinds": [0, 0, 1], "arg_names": ["self", "offset", "whence"], "flags": ["is_decorated", "is_abstract"], "fullname": "typing.IO.seek", "name": "seek", "type": {".class": "CallableType", "arg_kinds": [0, 0, 1], "arg_names": ["self", "offset", "whence"], "arg_types": [{".class": "Instance", "args": [{".class": "TypeVarType", "fullname": "typing.AnyStr", "id": 1, "name": "AnyStr", "upper_bound": "builtins.object", "values": ["builtins.str", "builtins.bytes"], "variance": 0}], "type_ref": "typing.IO"}, "builtins.int", "builtins.int"], "bound_args": [], "def_extras": {"first_arg": "self"}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "seek of IO", "ret_type": "builtins.int", "variables": []}}, "is_overload": false, "var": {".class": "Var", "flags": ["is_initialized_in_class"], "fullname": null, "name": "seek", "type": {".class": "CallableType", "arg_kinds": [0, 0, 1], "arg_names": ["self", "offset", "whence"], "arg_types": [{".class": "Instance", "args": [{".class": "TypeVarType", "fullname": "typing.AnyStr", "id": 1, "name": "AnyStr", "upper_bound": "builtins.object", "values": ["builtins.str", "builtins.bytes"], "variance": 0}], "type_ref": "typing.IO"}, "builtins.int", "builtins.int"], "bound_args": [], "def_extras": {"first_arg": "self"}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "seek of IO", "ret_type": "builtins.int", "variables": []}}}}, "seekable": {".class": "SymbolTableNode", "kind": "Mdef", "node": {".class": "Decorator", "func": {".class": "FuncDef", "arg_kinds": [0], "arg_names": ["self"], "flags": ["is_decorated", "is_abstract"], "fullname": "typing.IO.seekable", "name": "seekable", "type": {".class": "CallableType", "arg_kinds": [0], "arg_names": ["self"], "arg_types": [{".class": "Instance", "args": [{".class": "TypeVarType", "fullname": "typing.AnyStr", "id": 1, "name": "AnyStr", "upper_bound": "builtins.object", "values": ["builtins.str", "builtins.bytes"], "variance": 0}], "type_ref": "typing.IO"}], "bound_args": [], "def_extras": {"first_arg": "self"}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "seekable of IO", "ret_type": "builtins.bool", "variables": []}}, "is_overload": false, "var": {".class": "Var", "flags": ["is_initialized_in_class"], "fullname": null, "name": "seekable", "type": {".class": "CallableType", "arg_kinds": [0], "arg_names": ["self"], "arg_types": [{".class": "Instance", "args": [{".class": "TypeVarType", "fullname": "typing.AnyStr", "id": 1, "name": "AnyStr", "upper_bound": "builtins.object", "values": ["builtins.str", "builtins.bytes"], "variance": 0}], "type_ref": "typing.IO"}], "bound_args": [], "def_extras": {"first_arg": "self"}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "seekable of IO", "ret_type": "builtins.bool", "variables": []}}}}, "tell": {".class": "SymbolTableNode", "kind": "Mdef", "node": {".class": "Decorator", "func": {".class": "FuncDef", "arg_kinds": [0], "arg_names": ["self"], "flags": ["is_decorated", "is_abstract"], "fullname": "typing.IO.tell", "name": "tell", "type": {".class": "CallableType", "arg_kinds": [0], "arg_names": ["self"], "arg_types": [{".class": "Instance", "args": [{".class": "TypeVarType", "fullname": "typing.AnyStr", "id": 1, "name": "AnyStr", "upper_bound": "builtins.object", "values": ["builtins.str", "builtins.bytes"], "variance": 0}], "type_ref": "typing.IO"}], "bound_args": [], "def_extras": {"first_arg": "self"}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "tell of IO", "ret_type": "builtins.int", "variables": []}}, "is_overload": false, "var": {".class": "Var", "flags": ["is_initialized_in_class"], "fullname": null, "name": "tell", "type": {".class": "CallableType", "arg_kinds": [0], "arg_names": ["self"], "arg_types": [{".class": "Instance", "args": [{".class": "TypeVarType", "fullname": "typing.AnyStr", "id": 1, "name": "AnyStr", "upper_bound": "builtins.object", "values": ["builtins.str", "builtins.bytes"], "variance": 0}], "type_ref": "typing.IO"}], "bound_args": [], "def_extras": {"first_arg": "self"}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "tell of IO", "ret_type": "builtins.int", "variables": []}}}}, "truncate": {".class": "SymbolTableNode", "kind": "Mdef", "node": {".class": "Decorator", "func": {".class": "FuncDef", "arg_kinds": [0, 1], "arg_names": ["self", "size"], "flags": ["is_decorated", "is_abstract"], "fullname": "typing.IO.truncate", "name": "truncate", "type": {".class": "CallableType", "arg_kinds": [0, 1], "arg_names": ["self", "size"], "arg_types": [{".class": "Instance", "args": [{".class": "TypeVarType", "fullname": "typing.AnyStr", "id": 1, "name": "AnyStr", "upper_bound": "builtins.object", "values": ["builtins.str", "builtins.bytes"], "variance": 0}], "type_ref": "typing.IO"}, {".class": "UnionType", "items": ["builtins.int", {".class": "NoneTyp"}]}], "bound_args": [], "def_extras": {"first_arg": "self"}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "truncate of IO", "ret_type": "builtins.int", "variables": []}}, "is_overload": false, "var": {".class": "Var", "flags": ["is_initialized_in_class"], "fullname": null, "name": "truncate", "type": {".class": "CallableType", "arg_kinds": [0, 1], "arg_names": ["self", "size"], "arg_types": [{".class": "Instance", "args": [{".class": "TypeVarType", "fullname": "typing.AnyStr", "id": 1, "name": "AnyStr", "upper_bound": "builtins.object", "values": ["builtins.str", "builtins.bytes"], "variance": 0}], "type_ref": "typing.IO"}, {".class": "UnionType", "items": ["builtins.int", {".class": "NoneTyp"}]}], "bound_args": [], "def_extras": {"first_arg": "self"}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "truncate of IO", "ret_type": "builtins.int", "variables": []}}}}, "writable": {".class": "SymbolTableNode", "kind": "Mdef", "node": {".class": "Decorator", "func": {".class": "FuncDef", "arg_kinds": [0], "arg_names": ["self"], "flags": ["is_decorated", "is_abstract"], "fullname": "typing.IO.writable", "name": "writable", "type": {".class": "CallableType", "arg_kinds": [0], "arg_names": ["self"], "arg_types": [{".class": "Instance", "args": [{".class": "TypeVarType", "fullname": "typing.AnyStr", "id": 1, "name": "AnyStr", "upper_bound": "builtins.object", "values": ["builtins.str", "builtins.bytes"], "variance": 0}], "type_ref": "typing.IO"}], "bound_args": [], "def_extras": {"first_arg": "self"}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "writable of IO", "ret_type": "builtins.bool", "variables": []}}, "is_overload": false, "var": {".class": "Var", "flags": ["is_initialized_in_class"], "fullname": null, "name": "writable", "type": {".class": "CallableType", "arg_kinds": [0], "arg_names": ["self"], "arg_types": [{".class": "Instance", "args": [{".class": "TypeVarType", "fullname": "typing.AnyStr", "id": 1, "name": "AnyStr", "upper_bound": "builtins.object", "values": ["builtins.str", "builtins.bytes"], "variance": 0}], "type_ref": "typing.IO"}], "bound_args": [], "def_extras": {"first_arg": "self"}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "writable of IO", "ret_type": "builtins.bool", "variables": []}}}}, "write": {".class": "SymbolTableNode", "kind": "Mdef", "node": {".class": "Decorator", "func": {".class": "FuncDef", "arg_kinds": [0, 0], "arg_names": ["self", "s"], "flags": ["is_decorated", "is_abstract"], "fullname": "typing.IO.write", "name": "write", "type": {".class": "CallableType", "arg_kinds": [0, 0], "arg_names": ["self", "s"], "arg_types": [{".class": "Instance", "args": [{".class": "TypeVarType", "fullname": "typing.AnyStr", "id": 1, "name": "AnyStr", "upper_bound": "builtins.object", "values": ["builtins.str", "builtins.bytes"], "variance": 0}], "type_ref": "typing.IO"}, {".class": "TypeVarType", "fullname": "typing.AnyStr", "id": 1, "name": "AnyStr", "upper_bound": "builtins.object", "values": ["builtins.str", "builtins.bytes"], "variance": 0}], "bound_args": [], "def_extras": {"first_arg": "self"}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "write of IO", "ret_type": "builtins.int", "variables": []}}, "is_overload": false, "var": {".class": "Var", "flags": ["is_initialized_in_class"], "fullname": null, "name": "write", "type": {".class": "CallableType", "arg_kinds": [0, 0], "arg_names": ["self", "s"], "arg_types": [{".class": "Instance", "args": [{".class": "TypeVarType", "fullname": "typing.AnyStr", "id": 1, "name": "AnyStr", "upper_bound": "builtins.object", "values": ["builtins.str", "builtins.bytes"], "variance": 0}], "type_ref": "typing.IO"}, {".class": "TypeVarType", "fullname": "typing.AnyStr", "id": 1, "name": "AnyStr", "upper_bound": "builtins.object", "values": ["builtins.str", "builtins.bytes"], "variance": 0}], "bound_args": [], "def_extras": {"first_arg": "self"}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "write of IO", "ret_type": "builtins.int", "variables": []}}}}, "writelines": {".class": "SymbolTableNode", "kind": "Mdef", "node": {".class": "Decorator", "func": {".class": "FuncDef", "arg_kinds": [0, 0], "arg_names": ["self", "lines"], "flags": ["is_decorated", "is_abstract"], "fullname": "typing.IO.writelines", "name": "writelines", "type": {".class": "CallableType", "arg_kinds": [0, 0], "arg_names": ["self", "lines"], "arg_types": [{".class": "Instance", "args": [{".class": "TypeVarType", "fullname": "typing.AnyStr", "id": 1, "name": "AnyStr", "upper_bound": "builtins.object", "values": ["builtins.str", "builtins.bytes"], "variance": 0}], "type_ref": "typing.IO"}, {".class": "Instance", "args": [{".class": "TypeVarType", "fullname": "typing.AnyStr", "id": 1, "name": "AnyStr", "upper_bound": "builtins.object", "values": ["builtins.str", "builtins.bytes"], "variance": 0}], "type_ref": "typing.Iterable"}], "bound_args": [], "def_extras": {"first_arg": "self"}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "writelines of IO", "ret_type": {".class": "NoneTyp"}, "variables": []}}, "is_overload": false, "var": {".class": "Var", "flags": ["is_initialized_in_class"], "fullname": null, "name": "writelines", "type": {".class": "CallableType", "arg_kinds": [0, 0], "arg_names": ["self", "lines"], "arg_types": [{".class": "Instance", "args": [{".class": "TypeVarType", "fullname": "typing.AnyStr", "id": 1, "name": "AnyStr", "upper_bound": "builtins.object", "values": ["builtins.str", "builtins.bytes"], "variance": 0}], "type_ref": "typing.IO"}, {".class": "Instance", "args": [{".class": "TypeVarType", "fullname": "typing.AnyStr", "id": 1, "name": "AnyStr", "upper_bound": "builtins.object", "values": ["builtins.str", "builtins.bytes"], "variance": 0}], "type_ref": "typing.Iterable"}], "bound_args": [], "def_extras": {"first_arg": "self"}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "writelines of IO", "ret_type": {".class": "NoneTyp"}, "variables": []}}}}}, "tuple_type": null, "type_vars": ["AnyStr"], "typeddict_type": null}}, "ItemsView": {".class": "SymbolTableNode", "kind": "Gdef", "node": {".class": "TypeInfo", "_promote": null, "abstract_attributes": [], "bases": ["typing.MappingView", {".class": "Instance", "args": [{".class": "TupleType", "fallback": {".class": "Instance", "args": [{".class": "AnyType", "missing_import_name": null, "source_any": null, "type_of_any": 6}], "type_ref": "builtins.tuple"}, "implicit": false, "items": [{".class": "TypeVarType", "fullname": "typing._KT_co", "id": 1, "name": "_KT_co", "upper_bound": "builtins.object", "values": [], "variance": 1}, {".class": "TypeVarType", "fullname": "typing._VT_co", "id": 2, "name": "_VT_co", "upper_bound": "builtins.object", "values": [], "variance": 1}]}], "type_ref": "typing.AbstractSet"}], "declared_metaclass": null, "defn": {".class": "ClassDef", "fullname": "typing.ItemsView", "name": "ItemsView", "type_vars": [{".class": "TypeVarDef", "fullname": "typing._KT_co", "id": 1, "name": "_KT_co", "upper_bound": "builtins.object", "values": [], "variance": 1}, {".class": "TypeVarDef", "fullname": "typing._VT_co", "id": 2, "name": "_VT_co", "upper_bound": "builtins.object", "values": [], "variance": 1}]}, "flags": [], "fullname": "typing.ItemsView", "metaclass_type": "abc.ABCMeta", "metadata": {}, "module_name": "typing", "mro": ["typing.ItemsView", "typing.MappingView", "typing.AbstractSet", "typing.Collection", "typing.Iterable", "typing.Container", "builtins.object"], "names": {".class": "SymbolTable", "__contains__": {".class": "SymbolTableNode", "kind": "Mdef", "node": {".class": "FuncDef", "arg_kinds": [0, 0], "arg_names": ["self", "o"], "flags": [], "fullname": "typing.ItemsView.__contains__", "name": "__contains__", "type": {".class": "CallableType", "arg_kinds": [0, 0], "arg_names": [null, null], "arg_types": [{".class": "Instance", "args": [{".class": "TypeVarType", "fullname": "typing._KT_co", "id": 1, "name": "_KT_co", "upper_bound": "builtins.object", "values": [], "variance": 1}, {".class": "TypeVarType", "fullname": "typing._VT_co", "id": 2, "name": "_VT_co", "upper_bound": "builtins.object", "values": [], "variance": 1}], "type_ref": "typing.ItemsView"}, "builtins.object"], "bound_args": [], "def_extras": {"first_arg": "self"}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "__contains__ of ItemsView", "ret_type": "builtins.bool", "variables": []}}}, "__iter__": {".class": "SymbolTableNode", "kind": "Mdef", "node": {".class": "FuncDef", "arg_kinds": [0], "arg_names": ["self"], "flags": [], "fullname": "typing.ItemsView.__iter__", "name": "__iter__", "type": {".class": "CallableType", "arg_kinds": [0], "arg_names": [null], "arg_types": [{".class": "Instance", "args": [{".class": "TypeVarType", "fullname": "typing._KT_co", "id": 1, "name": "_KT_co", "upper_bound": "builtins.object", "values": [], "variance": 1}, {".class": "TypeVarType", "fullname": "typing._VT_co", "id": 2, "name": "_VT_co", "upper_bound": "builtins.object", "values": [], "variance": 1}], "type_ref": "typing.ItemsView"}], "bound_args": [], "def_extras": {"first_arg": "self"}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "__iter__ of ItemsView", "ret_type": {".class": "Instance", "args": [{".class": "TupleType", "fallback": {".class": "Instance", "args": [{".class": "AnyType", "missing_import_name": null, "source_any": null, "type_of_any": 6}], "type_ref": "builtins.tuple"}, "implicit": false, "items": [{".class": "TypeVarType", "fullname": "typing._KT_co", "id": 1, "name": "_KT_co", "upper_bound": "builtins.object", "values": [], "variance": 1}, {".class": "TypeVarType", "fullname": "typing._VT_co", "id": 2, "name": "_VT_co", "upper_bound": "builtins.object", "values": [], "variance": 1}]}], "type_ref": "typing.Iterator"}, "variables": []}}}}, "tuple_type": null, "type_vars": ["_KT_co", "_VT_co"], "typeddict_type": null}}, "Iterable": {".class": "SymbolTableNode", "kind": "Gdef", "node": {".class": "TypeInfo", "_promote": null, "abstract_attributes": ["__iter__"], "bases": ["builtins.object"], "declared_metaclass": null, "defn": {".class": "ClassDef", "fullname": "typing.Iterable", "name": "Iterable", "type_vars": [{".class": "TypeVarDef", "fullname": "typing._T_co", "id": 1, "name": "_T_co", "upper_bound": "builtins.object", "values": [], "variance": 1}]}, "flags": ["is_abstract", "is_protocol", "runtime_protocol"], "fullname": "typing.Iterable", "metaclass_type": "abc.ABCMeta", "metadata": {}, "module_name": "typing", "mro": ["typing.Iterable", "builtins.object"], "names": {".class": "SymbolTable", "__iter__": {".class": "SymbolTableNode", "kind": "Mdef", "node": {".class": "Decorator", "func": {".class": "FuncDef", "arg_kinds": [0], "arg_names": ["self"], "flags": ["is_decorated", "is_abstract"], "fullname": "typing.Iterable.__iter__", "name": "__iter__", "type": {".class": "CallableType", "arg_kinds": [0], "arg_names": [null], "arg_types": [{".class": "Instance", "args": [{".class": "TypeVarType", "fullname": "typing._T_co", "id": 1, "name": "_T_co", "upper_bound": "builtins.object", "values": [], "variance": 1}], "type_ref": "typing.Iterable"}], "bound_args": [], "def_extras": {"first_arg": "self"}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "__iter__ of Iterable", "ret_type": {".class": "Instance", "args": [{".class": "TypeVarType", "fullname": "typing._T_co", "id": 1, "name": "_T_co", "upper_bound": "builtins.object", "values": [], "variance": 1}], "type_ref": "typing.Iterator"}, "variables": []}}, "is_overload": false, "var": {".class": "Var", "flags": ["is_initialized_in_class"], "fullname": null, "name": "__iter__", "type": {".class": "CallableType", "arg_kinds": [0], "arg_names": [null], "arg_types": [{".class": "Instance", "args": [{".class": "TypeVarType", "fullname": "typing._T_co", "id": 1, "name": "_T_co", "upper_bound": "builtins.object", "values": [], "variance": 1}], "type_ref": "typing.Iterable"}], "bound_args": [], "def_extras": {"first_arg": "self"}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "__iter__ of Iterable", "ret_type": {".class": "Instance", "args": [{".class": "TypeVarType", "fullname": "typing._T_co", "id": 1, "name": "_T_co", "upper_bound": "builtins.object", "values": [], "variance": 1}], "type_ref": "typing.Iterator"}, "variables": []}}}}}, "tuple_type": null, "type_vars": ["_T_co"], "typeddict_type": null}}, "Iterator": {".class": "SymbolTableNode", "kind": "Gdef", "node": {".class": "TypeInfo", "_promote": null, "abstract_attributes": ["__next__"], "bases": [{".class": "Instance", "args": [{".class": "TypeVarType", "fullname": "typing._T_co", "id": 1, "name": "_T_co", "upper_bound": "builtins.object", "values": [], "variance": 1}], "type_ref": "typing.Iterable"}], "declared_metaclass": null, "defn": {".class": "ClassDef", "fullname": "typing.Iterator", "name": "Iterator", "type_vars": [{".class": "TypeVarDef", "fullname": "typing._T_co", "id": 1, "name": "_T_co", "upper_bound": "builtins.object", "values": [], "variance": 1}]}, "flags": ["is_abstract", "is_protocol", "runtime_protocol"], "fullname": "typing.Iterator", "metaclass_type": "abc.ABCMeta", "metadata": {}, "module_name": "typing", "mro": ["typing.Iterator", "typing.Iterable", "builtins.object"], "names": {".class": "SymbolTable", "__iter__": {".class": "SymbolTableNode", "kind": "Mdef", "node": {".class": "FuncDef", "arg_kinds": [0], "arg_names": ["self"], "flags": [], "fullname": "typing.Iterator.__iter__", "name": "__iter__", "type": {".class": "CallableType", "arg_kinds": [0], "arg_names": [null], "arg_types": [{".class": "Instance", "args": [{".class": "TypeVarType", "fullname": "typing._T_co", "id": 1, "name": "_T_co", "upper_bound": "builtins.object", "values": [], "variance": 1}], "type_ref": "typing.Iterator"}], "bound_args": [], "def_extras": {"first_arg": "self"}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "__iter__ of Iterator", "ret_type": {".class": "Instance", "args": [{".class": "TypeVarType", "fullname": "typing._T_co", "id": 1, "name": "_T_co", "upper_bound": "builtins.object", "values": [], "variance": 1}], "type_ref": "typing.Iterator"}, "variables": []}}}, "__next__": {".class": "SymbolTableNode", "kind": "Mdef", "node": {".class": "Decorator", "func": {".class": "FuncDef", "arg_kinds": [0], "arg_names": ["self"], "flags": ["is_decorated", "is_abstract"], "fullname": "typing.Iterator.__next__", "name": "__next__", "type": {".class": "CallableType", "arg_kinds": [0], "arg_names": ["self"], "arg_types": [{".class": "Instance", "args": [{".class": "TypeVarType", "fullname": "typing._T_co", "id": 1, "name": "_T_co", "upper_bound": "builtins.object", "values": [], "variance": 1}], "type_ref": "typing.Iterator"}], "bound_args": [], "def_extras": {"first_arg": "self"}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "__next__ of Iterator", "ret_type": {".class": "TypeVarType", "fullname": "typing._T_co", "id": 1, "name": "_T_co", "upper_bound": "builtins.object", "values": [], "variance": 1}, "variables": []}}, "is_overload": false, "var": {".class": "Var", "flags": ["is_initialized_in_class"], "fullname": null, "name": "__next__", "type": {".class": "CallableType", "arg_kinds": [0], "arg_names": ["self"], "arg_types": [{".class": "Instance", "args": [{".class": "TypeVarType", "fullname": "typing._T_co", "id": 1, "name": "_T_co", "upper_bound": "builtins.object", "values": [], "variance": 1}], "type_ref": "typing.Iterator"}], "bound_args": [], "def_extras": {"first_arg": "self"}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "__next__ of Iterator", "ret_type": {".class": "TypeVarType", "fullname": "typing._T_co", "id": 1, "name": "_T_co", "upper_bound": "builtins.object", "values": [], "variance": 1}, "variables": []}}}}}, "tuple_type": null, "type_vars": ["_T_co"], "typeddict_type": null}}, "KeysView": {".class": "SymbolTableNode", "kind": "Gdef", "node": {".class": "TypeInfo", "_promote": null, "abstract_attributes": [], "bases": ["typing.MappingView", {".class": "Instance", "args": [{".class": "TypeVarType", "fullname": "typing._KT_co", "id": 1, "name": "_KT_co", "upper_bound": "builtins.object", "values": [], "variance": 1}], "type_ref": "typing.AbstractSet"}], "declared_metaclass": null, "defn": {".class": "ClassDef", "fullname": "typing.KeysView", "name": "KeysView", "type_vars": [{".class": "TypeVarDef", "fullname": "typing._KT_co", "id": 1, "name": "_KT_co", "upper_bound": "builtins.object", "values": [], "variance": 1}]}, "flags": [], "fullname": "typing.KeysView", "metaclass_type": "abc.ABCMeta", "metadata": {}, "module_name": "typing", "mro": ["typing.KeysView", "typing.MappingView", "typing.AbstractSet", "typing.Collection", "typing.Iterable", "typing.Container", "builtins.object"], "names": {".class": "SymbolTable", "__contains__": {".class": "SymbolTableNode", "kind": "Mdef", "node": {".class": "FuncDef", "arg_kinds": [0, 0], "arg_names": ["self", "o"], "flags": [], "fullname": "typing.KeysView.__contains__", "name": "__contains__", "type": {".class": "CallableType", "arg_kinds": [0, 0], "arg_names": [null, null], "arg_types": [{".class": "Instance", "args": [{".class": "TypeVarType", "fullname": "typing._KT_co", "id": 1, "name": "_KT_co", "upper_bound": "builtins.object", "values": [], "variance": 1}], "type_ref": "typing.KeysView"}, "builtins.object"], "bound_args": [], "def_extras": {"first_arg": "self"}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "__contains__ of KeysView", "ret_type": "builtins.bool", "variables": []}}}, "__iter__": {".class": "SymbolTableNode", "kind": "Mdef", "node": {".class": "FuncDef", "arg_kinds": [0], "arg_names": ["self"], "flags": [], "fullname": "typing.KeysView.__iter__", "name": "__iter__", "type": {".class": "CallableType", "arg_kinds": [0], "arg_names": [null], "arg_types": [{".class": "Instance", "args": [{".class": "TypeVarType", "fullname": "typing._KT_co", "id": 1, "name": "_KT_co", "upper_bound": "builtins.object", "values": [], "variance": 1}], "type_ref": "typing.KeysView"}], "bound_args": [], "def_extras": {"first_arg": "self"}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "__iter__ of KeysView", "ret_type": {".class": "Instance", "args": [{".class": "TypeVarType", "fullname": "typing._KT_co", "id": 1, "name": "_KT_co", "upper_bound": "builtins.object", "values": [], "variance": 1}], "type_ref": "typing.Iterator"}, "variables": []}}}}, "tuple_type": null, "type_vars": ["_KT_co"], "typeddict_type": null}}, "List": {".class": "SymbolTableNode", "kind": "Gdef", "node": {".class": "TypeAlias", "alias_tvars": [], "column": -1, "fullname": "typing.List", "line": -1, "no_args": true, "normalized": true, "target": {".class": "Instance", "args": [{".class": "AnyType", "missing_import_name": null, "source_any": null, "type_of_any": 4}], "type_ref": "builtins.list"}}}, "Mapping": {".class": "SymbolTableNode", "kind": "Gdef", "node": {".class": "TypeInfo", "_promote": null, "abstract_attributes": ["__getitem__", "__iter__", "__len__"], "bases": [{".class": "Instance", "args": [{".class": "TypeVarType", "fullname": "typing._KT", "id": 1, "name": "_KT", "upper_bound": "builtins.object", "values": [], "variance": 0}], "type_ref": "typing.Collection"}], "declared_metaclass": null, "defn": {".class": "ClassDef", "fullname": "typing.Mapping", "name": "Mapping", "type_vars": [{".class": "TypeVarDef", "fullname": "typing._KT", "id": 1, "name": "_KT", "upper_bound": "builtins.object", "values": [], "variance": 0}, {".class": "TypeVarDef", "fullname": "typing._VT_co", "id": 2, "name": "_VT_co", "upper_bound": "builtins.object", "values": [], "variance": 1}]}, "flags": ["is_abstract"], "fullname": "typing.Mapping", "metaclass_type": "abc.ABCMeta", "metadata": {}, "module_name": "typing", "mro": ["typing.Mapping", "typing.Collection", "typing.Iterable", "typing.Container", "builtins.object"], "names": {".class": "SymbolTable", "__contains__": {".class": "SymbolTableNode", "kind": "Mdef", "node": {".class": "FuncDef", "arg_kinds": [0, 0], "arg_names": ["self", "o"], "flags": [], "fullname": "typing.Mapping.__contains__", "name": "__contains__", "type": {".class": "CallableType", "arg_kinds": [0, 0], "arg_names": [null, null], "arg_types": [{".class": "Instance", "args": [{".class": "TypeVarType", "fullname": "typing._KT", "id": 1, "name": "_KT", "upper_bound": "builtins.object", "values": [], "variance": 0}, {".class": "TypeVarType", "fullname": "typing._VT_co", "id": 2, "name": "_VT_co", "upper_bound": "builtins.object", "values": [], "variance": 1}], "type_ref": "typing.Mapping"}, "builtins.object"], "bound_args": [], "def_extras": {"first_arg": "self"}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "__contains__ of Mapping", "ret_type": "builtins.bool", "variables": []}}}, "__getitem__": {".class": "SymbolTableNode", "kind": "Mdef", "node": {".class": "Decorator", "func": {".class": "FuncDef", "arg_kinds": [0, 0], "arg_names": ["self", "k"], "flags": ["is_decorated", "is_abstract"], "fullname": "typing.Mapping.__getitem__", "name": "__getitem__", "type": {".class": "CallableType", "arg_kinds": [0, 0], "arg_names": [null, null], "arg_types": [{".class": "Instance", "args": [{".class": "TypeVarType", "fullname": "typing._KT", "id": 1, "name": "_KT", "upper_bound": "builtins.object", "values": [], "variance": 0}, {".class": "TypeVarType", "fullname": "typing._VT_co", "id": 2, "name": "_VT_co", "upper_bound": "builtins.object", "values": [], "variance": 1}], "type_ref": "typing.Mapping"}, {".class": "TypeVarType", "fullname": "typing._KT", "id": 1, "name": "_KT", "upper_bound": "builtins.object", "values": [], "variance": 0}], "bound_args": [], "def_extras": {"first_arg": "self"}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "__getitem__ of Mapping", "ret_type": {".class": "TypeVarType", "fullname": "typing._VT_co", "id": 2, "name": "_VT_co", "upper_bound": "builtins.object", "values": [], "variance": 1}, "variables": []}}, "is_overload": false, "var": {".class": "Var", "flags": ["is_initialized_in_class"], "fullname": null, "name": "__getitem__", "type": {".class": "CallableType", "arg_kinds": [0, 0], "arg_names": [null, null], "arg_types": [{".class": "Instance", "args": [{".class": "TypeVarType", "fullname": "typing._KT", "id": 1, "name": "_KT", "upper_bound": "builtins.object", "values": [], "variance": 0}, {".class": "TypeVarType", "fullname": "typing._VT_co", "id": 2, "name": "_VT_co", "upper_bound": "builtins.object", "values": [], "variance": 1}], "type_ref": "typing.Mapping"}, {".class": "TypeVarType", "fullname": "typing._KT", "id": 1, "name": "_KT", "upper_bound": "builtins.object", "values": [], "variance": 0}], "bound_args": [], "def_extras": {"first_arg": "self"}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "__getitem__ of Mapping", "ret_type": {".class": "TypeVarType", "fullname": "typing._VT_co", "id": 2, "name": "_VT_co", "upper_bound": "builtins.object", "values": [], "variance": 1}, "variables": []}}}}, "get": {".class": "SymbolTableNode", "kind": "Mdef", "node": {".class": "OverloadedFuncDef", "flags": [], "fullname": "typing.Mapping.get", "impl": null, "items": [{".class": "Decorator", "func": {".class": "FuncDef", "arg_kinds": [0, 0], "arg_names": ["self", "k"], "flags": ["is_overload", "is_decorated"], "fullname": "typing.Mapping.get", "name": "get", "type": {".class": "CallableType", "arg_kinds": [0, 0], "arg_names": ["self", "k"], "arg_types": [{".class": "Instance", "args": [{".class": "TypeVarType", "fullname": "typing._KT", "id": 1, "name": "_KT", "upper_bound": "builtins.object", "values": [], "variance": 0}, {".class": "TypeVarType", "fullname": "typing._VT_co", "id": 2, "name": "_VT_co", "upper_bound": "builtins.object", "values": [], "variance": 1}], "type_ref": "typing.Mapping"}, {".class": "TypeVarType", "fullname": "typing._KT", "id": 1, "name": "_KT", "upper_bound": "builtins.object", "values": [], "variance": 0}], "bound_args": [], "def_extras": {"first_arg": "self"}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "get of Mapping", "ret_type": {".class": "UnionType", "items": [{".class": "TypeVarType", "fullname": "typing._VT_co", "id": 2, "name": "_VT_co", "upper_bound": "builtins.object", "values": [], "variance": 1}, {".class": "NoneTyp"}]}, "variables": []}}, "is_overload": true, "var": {".class": "Var", "flags": [], "fullname": null, "name": "get", "type": null}}, {".class": "Decorator", "func": {".class": "FuncDef", "arg_kinds": [0, 0, 0], "arg_names": ["self", "k", "default"], "flags": ["is_overload", "is_decorated"], "fullname": "typing.Mapping.get", "name": "get", "type": {".class": "CallableType", "arg_kinds": [0, 0, 0], "arg_names": ["self", "k", "default"], "arg_types": [{".class": "Instance", "args": [{".class": "TypeVarType", "fullname": "typing._KT", "id": 1, "name": "_KT", "upper_bound": "builtins.object", "values": [], "variance": 0}, {".class": "TypeVarType", "fullname": "typing._VT_co", "id": 2, "name": "_VT_co", "upper_bound": "builtins.object", "values": [], "variance": 1}], "type_ref": "typing.Mapping"}, {".class": "TypeVarType", "fullname": "typing._KT", "id": 1, "name": "_KT", "upper_bound": "builtins.object", "values": [], "variance": 0}, {".class": "UnionType", "items": [{".class": "TypeVarType", "fullname": "typing._VT_co", "id": 2, "name": "_VT_co", "upper_bound": "builtins.object", "values": [], "variance": 1}, {".class": "TypeVarType", "fullname": "typing._T", "id": -1, "name": "_T", "upper_bound": "builtins.object", "values": [], "variance": 0}]}], "bound_args": [], "def_extras": {"first_arg": "self"}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "get of Mapping", "ret_type": {".class": "UnionType", "items": [{".class": "TypeVarType", "fullname": "typing._VT_co", "id": 2, "name": "_VT_co", "upper_bound": "builtins.object", "values": [], "variance": 1}, {".class": "TypeVarType", "fullname": "typing._T", "id": -1, "name": "_T", "upper_bound": "builtins.object", "values": [], "variance": 0}]}, "variables": [{".class": "TypeVarDef", "fullname": "typing._T", "id": -1, "name": "_T", "upper_bound": "builtins.object", "values": [], "variance": 0}]}}, "is_overload": true, "var": {".class": "Var", "flags": [], "fullname": null, "name": "get", "type": null}}], "type": {".class": "Overloaded", "items": [{".class": "CallableType", "arg_kinds": [0, 0], "arg_names": ["self", "k"], "arg_types": [{".class": "Instance", "args": [{".class": "TypeVarType", "fullname": "typing._KT", "id": 1, "name": "_KT", "upper_bound": "builtins.object", "values": [], "variance": 0}, {".class": "TypeVarType", "fullname": "typing._VT_co", "id": 2, "name": "_VT_co", "upper_bound": "builtins.object", "values": [], "variance": 1}], "type_ref": "typing.Mapping"}, {".class": "TypeVarType", "fullname": "typing._KT", "id": 1, "name": "_KT", "upper_bound": "builtins.object", "values": [], "variance": 0}], "bound_args": [], "def_extras": {"first_arg": "self"}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "get of Mapping", "ret_type": {".class": "UnionType", "items": [{".class": "TypeVarType", "fullname": "typing._VT_co", "id": 2, "name": "_VT_co", "upper_bound": "builtins.object", "values": [], "variance": 1}, {".class": "NoneTyp"}]}, "variables": []}, {".class": "CallableType", "arg_kinds": [0, 0, 0], "arg_names": ["self", "k", "default"], "arg_types": [{".class": "Instance", "args": [{".class": "TypeVarType", "fullname": "typing._KT", "id": 1, "name": "_KT", "upper_bound": "builtins.object", "values": [], "variance": 0}, {".class": "TypeVarType", "fullname": "typing._VT_co", "id": 2, "name": "_VT_co", "upper_bound": "builtins.object", "values": [], "variance": 1}], "type_ref": "typing.Mapping"}, {".class": "TypeVarType", "fullname": "typing._KT", "id": 1, "name": "_KT", "upper_bound": "builtins.object", "values": [], "variance": 0}, {".class": "UnionType", "items": [{".class": "TypeVarType", "fullname": "typing._VT_co", "id": 2, "name": "_VT_co", "upper_bound": "builtins.object", "values": [], "variance": 1}, {".class": "TypeVarType", "fullname": "typing._T", "id": -1, "name": "_T", "upper_bound": "builtins.object", "values": [], "variance": 0}]}], "bound_args": [], "def_extras": {"first_arg": "self"}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "get of Mapping", "ret_type": {".class": "UnionType", "items": [{".class": "TypeVarType", "fullname": "typing._VT_co", "id": 2, "name": "_VT_co", "upper_bound": "builtins.object", "values": [], "variance": 1}, {".class": "TypeVarType", "fullname": "typing._T", "id": -1, "name": "_T", "upper_bound": "builtins.object", "values": [], "variance": 0}]}, "variables": [{".class": "TypeVarDef", "fullname": "typing._T", "id": -1, "name": "_T", "upper_bound": "builtins.object", "values": [], "variance": 0}]}]}}}, "items": {".class": "SymbolTableNode", "kind": "Mdef", "node": {".class": "FuncDef", "arg_kinds": [0], "arg_names": ["self"], "flags": [], "fullname": "typing.Mapping.items", "name": "items", "type": {".class": "CallableType", "arg_kinds": [0], "arg_names": ["self"], "arg_types": [{".class": "Instance", "args": [{".class": "TypeVarType", "fullname": "typing._KT", "id": 1, "name": "_KT", "upper_bound": "builtins.object", "values": [], "variance": 0}, {".class": "TypeVarType", "fullname": "typing._VT_co", "id": 2, "name": "_VT_co", "upper_bound": "builtins.object", "values": [], "variance": 1}], "type_ref": "typing.Mapping"}], "bound_args": [], "def_extras": {"first_arg": "self"}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "items of Mapping", "ret_type": {".class": "Instance", "args": [{".class": "TupleType", "fallback": {".class": "Instance", "args": [{".class": "AnyType", "missing_import_name": null, "source_any": null, "type_of_any": 6}], "type_ref": "builtins.tuple"}, "implicit": false, "items": [{".class": "TypeVarType", "fullname": "typing._KT", "id": 1, "name": "_KT", "upper_bound": "builtins.object", "values": [], "variance": 0}, {".class": "TypeVarType", "fullname": "typing._VT_co", "id": 2, "name": "_VT_co", "upper_bound": "builtins.object", "values": [], "variance": 1}]}], "type_ref": "typing.AbstractSet"}, "variables": []}}}, "keys": {".class": "SymbolTableNode", "kind": "Mdef", "node": {".class": "FuncDef", "arg_kinds": [0], "arg_names": ["self"], "flags": [], "fullname": "typing.Mapping.keys", "name": "keys", "type": {".class": "CallableType", "arg_kinds": [0], "arg_names": ["self"], "arg_types": [{".class": "Instance", "args": [{".class": "TypeVarType", "fullname": "typing._KT", "id": 1, "name": "_KT", "upper_bound": "builtins.object", "values": [], "variance": 0}, {".class": "TypeVarType", "fullname": "typing._VT_co", "id": 2, "name": "_VT_co", "upper_bound": "builtins.object", "values": [], "variance": 1}], "type_ref": "typing.Mapping"}], "bound_args": [], "def_extras": {"first_arg": "self"}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "keys of Mapping", "ret_type": {".class": "Instance", "args": [{".class": "TypeVarType", "fullname": "typing._KT", "id": 1, "name": "_KT", "upper_bound": "builtins.object", "values": [], "variance": 0}], "type_ref": "typing.AbstractSet"}, "variables": []}}}, "values": {".class": "SymbolTableNode", "kind": "Mdef", "node": {".class": "FuncDef", "arg_kinds": [0], "arg_names": ["self"], "flags": [], "fullname": "typing.Mapping.values", "name": "values", "type": {".class": "CallableType", "arg_kinds": [0], "arg_names": ["self"], "arg_types": [{".class": "Instance", "args": [{".class": "TypeVarType", "fullname": "typing._KT", "id": 1, "name": "_KT", "upper_bound": "builtins.object", "values": [], "variance": 0}, {".class": "TypeVarType", "fullname": "typing._VT_co", "id": 2, "name": "_VT_co", "upper_bound": "builtins.object", "values": [], "variance": 1}], "type_ref": "typing.Mapping"}], "bound_args": [], "def_extras": {"first_arg": "self"}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "values of Mapping", "ret_type": {".class": "Instance", "args": [{".class": "TypeVarType", "fullname": "typing._VT_co", "id": 2, "name": "_VT_co", "upper_bound": "builtins.object", "values": [], "variance": 1}], "type_ref": "typing.ValuesView"}, "variables": []}}}}, "tuple_type": null, "type_vars": ["_KT", "_VT_co"], "typeddict_type": null}}, "MappingView": {".class": "SymbolTableNode", "kind": "Gdef", "node": {".class": "TypeInfo", "_promote": null, "abstract_attributes": [], "bases": ["builtins.object"], "declared_metaclass": null, "defn": {".class": "ClassDef", "fullname": "typing.MappingView", "name": "MappingView", "type_vars": []}, "flags": [], "fullname": "typing.MappingView", "metaclass_type": null, "metadata": {}, "module_name": "typing", "mro": ["typing.MappingView", "builtins.object"], "names": {".class": "SymbolTable", "__len__": {".class": "SymbolTableNode", "kind": "Mdef", "node": {".class": "FuncDef", "arg_kinds": [0], "arg_names": ["self"], "flags": [], "fullname": "typing.MappingView.__len__", "name": "__len__", "type": {".class": "CallableType", "arg_kinds": [0], "arg_names": [null], "arg_types": ["typing.MappingView"], "bound_args": [], "def_extras": {"first_arg": "self"}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "__len__ of MappingView", "ret_type": "builtins.int", "variables": []}}}}, "tuple_type": null, "type_vars": [], "typeddict_type": null}}, "Match": {".class": "SymbolTableNode", "kind": "Gdef", "node": {".class": "TypeInfo", "_promote": null, "abstract_attributes": [], "bases": ["builtins.object"], "declared_metaclass": null, "defn": {".class": "ClassDef", "fullname": "typing.Match", "name": "Match", "type_vars": [{".class": "TypeVarDef", "fullname": "typing.AnyStr", "id": 1, "name": "AnyStr", "upper_bound": "builtins.object", "values": ["builtins.str", "builtins.bytes"], "variance": 0}]}, "flags": [], "fullname": "typing.Match", "metaclass_type": null, "metadata": {}, "module_name": "typing", "mro": ["typing.Match", "builtins.object"], "names": {".class": "SymbolTable", "__getitem__": {".class": "SymbolTableNode", "kind": "Mdef", "node": {".class": "FuncDef", "arg_kinds": [0, 0], "arg_names": ["self", "g"], "flags": ["is_conditional"], "fullname": "typing.Match.__getitem__", "name": "__getitem__", "type": {".class": "CallableType", "arg_kinds": [0, 0], "arg_names": [null, null], "arg_types": [{".class": "Instance", "args": [{".class": "TypeVarType", "fullname": "typing.AnyStr", "id": 1, "name": "AnyStr", "upper_bound": "builtins.object", "values": ["builtins.str", "builtins.bytes"], "variance": 0}], "type_ref": "typing.Match"}, {".class": "UnionType", "items": ["builtins.int", "builtins.str"]}], "bound_args": [], "def_extras": {"first_arg": "self"}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "__getitem__ of Match", "ret_type": {".class": "TypeVarType", "fullname": "typing.AnyStr", "id": 1, "name": "AnyStr", "upper_bound": "builtins.object", "values": ["builtins.str", "builtins.bytes"], "variance": 0}, "variables": []}}}, "end": {".class": "SymbolTableNode", "kind": "Mdef", "node": {".class": "FuncDef", "arg_kinds": [0, 1], "arg_names": ["self", "group"], "flags": [], "fullname": "typing.Match.end", "name": "end", "type": {".class": "CallableType", "arg_kinds": [0, 1], "arg_names": ["self", "group"], "arg_types": [{".class": "Instance", "args": [{".class": "TypeVarType", "fullname": "typing.AnyStr", "id": 1, "name": "AnyStr", "upper_bound": "builtins.object", "values": ["builtins.str", "builtins.bytes"], "variance": 0}], "type_ref": "typing.Match"}, {".class": "UnionType", "items": ["builtins.int", "builtins.str"]}], "bound_args": [], "def_extras": {"first_arg": "self"}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "end of Match", "ret_type": "builtins.int", "variables": []}}}, "endpos": {".class": "SymbolTableNode", "kind": "Mdef", "node": {".class": "Var", "flags": ["is_initialized_in_class"], "fullname": "typing.Match.endpos", "name": "endpos", "type": "builtins.int"}}, "expand": {".class": "SymbolTableNode", "kind": "Mdef", "node": {".class": "FuncDef", "arg_kinds": [0, 0], "arg_names": ["self", "template"], "flags": [], "fullname": "typing.Match.expand", "name": "expand", "type": {".class": "CallableType", "arg_kinds": [0, 0], "arg_names": ["self", "template"], "arg_types": [{".class": "Instance", "args": [{".class": "TypeVarType", "fullname": "typing.AnyStr", "id": 1, "name": "AnyStr", "upper_bound": "builtins.object", "values": ["builtins.str", "builtins.bytes"], "variance": 0}], "type_ref": "typing.Match"}, {".class": "TypeVarType", "fullname": "typing.AnyStr", "id": 1, "name": "AnyStr", "upper_bound": "builtins.object", "values": ["builtins.str", "builtins.bytes"], "variance": 0}], "bound_args": [], "def_extras": {"first_arg": "self"}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "expand of Match", "ret_type": {".class": "TypeVarType", "fullname": "typing.AnyStr", "id": 1, "name": "AnyStr", "upper_bound": "builtins.object", "values": ["builtins.str", "builtins.bytes"], "variance": 0}, "variables": []}}}, "group": {".class": "SymbolTableNode", "kind": "Mdef", "node": {".class": "OverloadedFuncDef", "flags": [], "fullname": "typing.Match.group", "impl": null, "items": [{".class": "Decorator", "func": {".class": "FuncDef", "arg_kinds": [0, 1], "arg_names": ["self", "group1"], "flags": ["is_overload", "is_decorated"], "fullname": "typing.Match.group", "name": "group", "type": {".class": "CallableType", "arg_kinds": [0, 1], "arg_names": ["self", "group1"], "arg_types": [{".class": "Instance", "args": [{".class": "TypeVarType", "fullname": "typing.AnyStr", "id": 1, "name": "AnyStr", "upper_bound": "builtins.object", "values": ["builtins.str", "builtins.bytes"], "variance": 0}], "type_ref": "typing.Match"}, "builtins.int"], "bound_args": [], "def_extras": {"first_arg": "self"}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "group of Match", "ret_type": {".class": "TypeVarType", "fullname": "typing.AnyStr", "id": 1, "name": "AnyStr", "upper_bound": "builtins.object", "values": ["builtins.str", "builtins.bytes"], "variance": 0}, "variables": []}}, "is_overload": true, "var": {".class": "Var", "flags": [], "fullname": null, "name": "group", "type": null}}, {".class": "Decorator", "func": {".class": "FuncDef", "arg_kinds": [0, 0], "arg_names": ["self", "group1"], "flags": ["is_overload", "is_decorated"], "fullname": "typing.Match.group", "name": "group", "type": {".class": "CallableType", "arg_kinds": [0, 0], "arg_names": ["self", "group1"], "arg_types": [{".class": "Instance", "args": [{".class": "TypeVarType", "fullname": "typing.AnyStr", "id": 1, "name": "AnyStr", "upper_bound": "builtins.object", "values": ["builtins.str", "builtins.bytes"], "variance": 0}], "type_ref": "typing.Match"}, "builtins.str"], "bound_args": [], "def_extras": {"first_arg": "self"}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "group of Match", "ret_type": {".class": "TypeVarType", "fullname": "typing.AnyStr", "id": 1, "name": "AnyStr", "upper_bound": "builtins.object", "values": ["builtins.str", "builtins.bytes"], "variance": 0}, "variables": []}}, "is_overload": true, "var": {".class": "Var", "flags": [], "fullname": null, "name": "group", "type": null}}, {".class": "Decorator", "func": {".class": "FuncDef", "arg_kinds": [0, 0, 0, 2], "arg_names": ["self", "group1", "group2", "groups"], "flags": ["is_overload", "is_decorated"], "fullname": "typing.Match.group", "name": "group", "type": {".class": "CallableType", "arg_kinds": [0, 0, 0, 2], "arg_names": ["self", "group1", "group2", "groups"], "arg_types": [{".class": "Instance", "args": [{".class": "TypeVarType", "fullname": "typing.AnyStr", "id": 1, "name": "AnyStr", "upper_bound": "builtins.object", "values": ["builtins.str", "builtins.bytes"], "variance": 0}], "type_ref": "typing.Match"}, "builtins.int", "builtins.int", "builtins.int"], "bound_args": [], "def_extras": {"first_arg": "self"}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "group of Match", "ret_type": {".class": "Instance", "args": [{".class": "TypeVarType", "fullname": "typing.AnyStr", "id": 1, "name": "AnyStr", "upper_bound": "builtins.object", "values": ["builtins.str", "builtins.bytes"], "variance": 0}], "type_ref": "typing.Sequence"}, "variables": []}}, "is_overload": true, "var": {".class": "Var", "flags": [], "fullname": null, "name": "group", "type": null}}, {".class": "Decorator", "func": {".class": "FuncDef", "arg_kinds": [0, 0, 0, 2], "arg_names": ["self", "group1", "group2", "groups"], "flags": ["is_overload", "is_decorated"], "fullname": "typing.Match.group", "name": "group", "type": {".class": "CallableType", "arg_kinds": [0, 0, 0, 2], "arg_names": ["self", "group1", "group2", "groups"], "arg_types": [{".class": "Instance", "args": [{".class": "TypeVarType", "fullname": "typing.AnyStr", "id": 1, "name": "AnyStr", "upper_bound": "builtins.object", "values": ["builtins.str", "builtins.bytes"], "variance": 0}], "type_ref": "typing.Match"}, "builtins.str", "builtins.str", "builtins.str"], "bound_args": [], "def_extras": {"first_arg": "self"}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "group of Match", "ret_type": {".class": "Instance", "args": [{".class": "TypeVarType", "fullname": "typing.AnyStr", "id": 1, "name": "AnyStr", "upper_bound": "builtins.object", "values": ["builtins.str", "builtins.bytes"], "variance": 0}], "type_ref": "typing.Sequence"}, "variables": []}}, "is_overload": true, "var": {".class": "Var", "flags": [], "fullname": null, "name": "group", "type": null}}], "type": {".class": "Overloaded", "items": [{".class": "CallableType", "arg_kinds": [0, 1], "arg_names": ["self", "group1"], "arg_types": [{".class": "Instance", "args": [{".class": "TypeVarType", "fullname": "typing.AnyStr", "id": 1, "name": "AnyStr", "upper_bound": "builtins.object", "values": ["builtins.str", "builtins.bytes"], "variance": 0}], "type_ref": "typing.Match"}, "builtins.int"], "bound_args": [], "def_extras": {"first_arg": "self"}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "group of Match", "ret_type": {".class": "TypeVarType", "fullname": "typing.AnyStr", "id": 1, "name": "AnyStr", "upper_bound": "builtins.object", "values": ["builtins.str", "builtins.bytes"], "variance": 0}, "variables": []}, {".class": "CallableType", "arg_kinds": [0, 0], "arg_names": ["self", "group1"], "arg_types": [{".class": "Instance", "args": [{".class": "TypeVarType", "fullname": "typing.AnyStr", "id": 1, "name": "AnyStr", "upper_bound": "builtins.object", "values": ["builtins.str", "builtins.bytes"], "variance": 0}], "type_ref": "typing.Match"}, "builtins.str"], "bound_args": [], "def_extras": {"first_arg": "self"}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "group of Match", "ret_type": {".class": "TypeVarType", "fullname": "typing.AnyStr", "id": 1, "name": "AnyStr", "upper_bound": "builtins.object", "values": ["builtins.str", "builtins.bytes"], "variance": 0}, "variables": []}, {".class": "CallableType", "arg_kinds": [0, 0, 0, 2], "arg_names": ["self", "group1", "group2", "groups"], "arg_types": [{".class": "Instance", "args": [{".class": "TypeVarType", "fullname": "typing.AnyStr", "id": 1, "name": "AnyStr", "upper_bound": "builtins.object", "values": ["builtins.str", "builtins.bytes"], "variance": 0}], "type_ref": "typing.Match"}, "builtins.int", "builtins.int", "builtins.int"], "bound_args": [], "def_extras": {"first_arg": "self"}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "group of Match", "ret_type": {".class": "Instance", "args": [{".class": "TypeVarType", "fullname": "typing.AnyStr", "id": 1, "name": "AnyStr", "upper_bound": "builtins.object", "values": ["builtins.str", "builtins.bytes"], "variance": 0}], "type_ref": "typing.Sequence"}, "variables": []}, {".class": "CallableType", "arg_kinds": [0, 0, 0, 2], "arg_names": ["self", "group1", "group2", "groups"], "arg_types": [{".class": "Instance", "args": [{".class": "TypeVarType", "fullname": "typing.AnyStr", "id": 1, "name": "AnyStr", "upper_bound": "builtins.object", "values": ["builtins.str", "builtins.bytes"], "variance": 0}], "type_ref": "typing.Match"}, "builtins.str", "builtins.str", "builtins.str"], "bound_args": [], "def_extras": {"first_arg": "self"}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "group of Match", "ret_type": {".class": "Instance", "args": [{".class": "TypeVarType", "fullname": "typing.AnyStr", "id": 1, "name": "AnyStr", "upper_bound": "builtins.object", "values": ["builtins.str", "builtins.bytes"], "variance": 0}], "type_ref": "typing.Sequence"}, "variables": []}]}}}, "groupdict": {".class": "SymbolTableNode", "kind": "Mdef", "node": {".class": "FuncDef", "arg_kinds": [0, 1], "arg_names": ["self", "default"], "flags": [], "fullname": "typing.Match.groupdict", "name": "groupdict", "type": {".class": "CallableType", "arg_kinds": [0, 1], "arg_names": ["self", "default"], "arg_types": [{".class": "Instance", "args": [{".class": "TypeVarType", "fullname": "typing.AnyStr", "id": 1, "name": "AnyStr", "upper_bound": "builtins.object", "values": ["builtins.str", "builtins.bytes"], "variance": 0}], "type_ref": "typing.Match"}, {".class": "TypeVarType", "fullname": "typing.AnyStr", "id": 1, "name": "AnyStr", "upper_bound": "builtins.object", "values": ["builtins.str", "builtins.bytes"], "variance": 0}], "bound_args": [], "def_extras": {"first_arg": "self"}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "groupdict of Match", "ret_type": {".class": "Instance", "args": ["builtins.str", {".class": "TypeVarType", "fullname": "typing.AnyStr", "id": 1, "name": "AnyStr", "upper_bound": "builtins.object", "values": ["builtins.str", "builtins.bytes"], "variance": 0}], "type_ref": "builtins.dict"}, "variables": []}}}, "groups": {".class": "SymbolTableNode", "kind": "Mdef", "node": {".class": "FuncDef", "arg_kinds": [0, 1], "arg_names": ["self", "default"], "flags": [], "fullname": "typing.Match.groups", "name": "groups", "type": {".class": "CallableType", "arg_kinds": [0, 1], "arg_names": ["self", "default"], "arg_types": [{".class": "Instance", "args": [{".class": "TypeVarType", "fullname": "typing.AnyStr", "id": 1, "name": "AnyStr", "upper_bound": "builtins.object", "values": ["builtins.str", "builtins.bytes"], "variance": 0}], "type_ref": "typing.Match"}, {".class": "TypeVarType", "fullname": "typing.AnyStr", "id": 1, "name": "AnyStr", "upper_bound": "builtins.object", "values": ["builtins.str", "builtins.bytes"], "variance": 0}], "bound_args": [], "def_extras": {"first_arg": "self"}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "groups of Match", "ret_type": {".class": "Instance", "args": [{".class": "TypeVarType", "fullname": "typing.AnyStr", "id": 1, "name": "AnyStr", "upper_bound": "builtins.object", "values": ["builtins.str", "builtins.bytes"], "variance": 0}], "type_ref": "typing.Sequence"}, "variables": []}}}, "lastgroup": {".class": "SymbolTableNode", "kind": "Mdef", "node": {".class": "Var", "flags": ["is_initialized_in_class"], "fullname": "typing.Match.lastgroup", "name": "lastgroup", "type": {".class": "TypeVarType", "fullname": "typing.AnyStr", "id": 1, "name": "AnyStr", "upper_bound": "builtins.object", "values": ["builtins.str", "builtins.bytes"], "variance": 0}}}, "lastindex": {".class": "SymbolTableNode", "kind": "Mdef", "node": {".class": "Var", "flags": ["is_initialized_in_class"], "fullname": "typing.Match.lastindex", "name": "lastindex", "type": "builtins.int"}}, "pos": {".class": "SymbolTableNode", "kind": "Mdef", "node": {".class": "Var", "flags": ["is_initialized_in_class"], "fullname": "typing.Match.pos", "name": "pos", "type": "builtins.int"}}, "re": {".class": "SymbolTableNode", "kind": "Mdef", "node": {".class": "Var", "flags": ["is_initialized_in_class"], "fullname": "typing.Match.re", "name": "re", "type": {".class": "Instance", "args": [{".class": "TypeVarType", "fullname": "typing.AnyStr", "id": 1, "name": "AnyStr", "upper_bound": "builtins.object", "values": ["builtins.str", "builtins.bytes"], "variance": 0}], "type_ref": "typing.Pattern"}}}, "span": {".class": "SymbolTableNode", "kind": "Mdef", "node": {".class": "FuncDef", "arg_kinds": [0, 1], "arg_names": ["self", "group"], "flags": [], "fullname": "typing.Match.span", "name": "span", "type": {".class": "CallableType", "arg_kinds": [0, 1], "arg_names": ["self", "group"], "arg_types": [{".class": "Instance", "args": [{".class": "TypeVarType", "fullname": "typing.AnyStr", "id": 1, "name": "AnyStr", "upper_bound": "builtins.object", "values": ["builtins.str", "builtins.bytes"], "variance": 0}], "type_ref": "typing.Match"}, {".class": "UnionType", "items": ["builtins.int", "builtins.str"]}], "bound_args": [], "def_extras": {"first_arg": "self"}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "span of Match", "ret_type": {".class": "TupleType", "fallback": {".class": "Instance", "args": [{".class": "AnyType", "missing_import_name": null, "source_any": null, "type_of_any": 6}], "type_ref": "builtins.tuple"}, "implicit": false, "items": ["builtins.int", "builtins.int"]}, "variables": []}}}, "start": {".class": "SymbolTableNode", "kind": "Mdef", "node": {".class": "FuncDef", "arg_kinds": [0, 1], "arg_names": ["self", "group"], "flags": [], "fullname": "typing.Match.start", "name": "start", "type": {".class": "CallableType", "arg_kinds": [0, 1], "arg_names": ["self", "group"], "arg_types": [{".class": "Instance", "args": [{".class": "TypeVarType", "fullname": "typing.AnyStr", "id": 1, "name": "AnyStr", "upper_bound": "builtins.object", "values": ["builtins.str", "builtins.bytes"], "variance": 0}], "type_ref": "typing.Match"}, {".class": "UnionType", "items": ["builtins.int", "builtins.str"]}], "bound_args": [], "def_extras": {"first_arg": "self"}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "start of Match", "ret_type": "builtins.int", "variables": []}}}, "string": {".class": "SymbolTableNode", "kind": "Mdef", "node": {".class": "Var", "flags": ["is_initialized_in_class"], "fullname": "typing.Match.string", "name": "string", "type": {".class": "TypeVarType", "fullname": "typing.AnyStr", "id": 1, "name": "AnyStr", "upper_bound": "builtins.object", "values": ["builtins.str", "builtins.bytes"], "variance": 0}}}}, "tuple_type": null, "type_vars": ["AnyStr"], "typeddict_type": null}}, "MutableMapping": {".class": "SymbolTableNode", "kind": "Gdef", "node": {".class": "TypeInfo", "_promote": null, "abstract_attributes": ["__delitem__", "__getitem__", "__iter__", "__len__", "__setitem__"], "bases": [{".class": "Instance", "args": [{".class": "TypeVarType", "fullname": "typing._KT", "id": 1, "name": "_KT", "upper_bound": "builtins.object", "values": [], "variance": 0}, {".class": "TypeVarType", "fullname": "typing._VT", "id": 2, "name": "_VT", "upper_bound": "builtins.object", "values": [], "variance": 0}], "type_ref": "typing.Mapping"}], "declared_metaclass": null, "defn": {".class": "ClassDef", "fullname": "typing.MutableMapping", "name": "MutableMapping", "type_vars": [{".class": "TypeVarDef", "fullname": "typing._KT", "id": 1, "name": "_KT", "upper_bound": "builtins.object", "values": [], "variance": 0}, {".class": "TypeVarDef", "fullname": "typing._VT", "id": 2, "name": "_VT", "upper_bound": "builtins.object", "values": [], "variance": 0}]}, "flags": ["is_abstract"], "fullname": "typing.MutableMapping", "metaclass_type": "abc.ABCMeta", "metadata": {}, "module_name": "typing", "mro": ["typing.MutableMapping", "typing.Mapping", "typing.Collection", "typing.Iterable", "typing.Container", "builtins.object"], "names": {".class": "SymbolTable", "__delitem__": {".class": "SymbolTableNode", "kind": "Mdef", "node": {".class": "Decorator", "func": {".class": "FuncDef", "arg_kinds": [0, 0], "arg_names": ["self", "v"], "flags": ["is_decorated", "is_abstract"], "fullname": "typing.MutableMapping.__delitem__", "name": "__delitem__", "type": {".class": "CallableType", "arg_kinds": [0, 0], "arg_names": [null, null], "arg_types": [{".class": "Instance", "args": [{".class": "TypeVarType", "fullname": "typing._KT", "id": 1, "name": "_KT", "upper_bound": "builtins.object", "values": [], "variance": 0}, {".class": "TypeVarType", "fullname": "typing._VT", "id": 2, "name": "_VT", "upper_bound": "builtins.object", "values": [], "variance": 0}], "type_ref": "typing.MutableMapping"}, {".class": "TypeVarType", "fullname": "typing._KT", "id": 1, "name": "_KT", "upper_bound": "builtins.object", "values": [], "variance": 0}], "bound_args": [], "def_extras": {"first_arg": "self"}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "__delitem__ of MutableMapping", "ret_type": {".class": "NoneTyp"}, "variables": []}}, "is_overload": false, "var": {".class": "Var", "flags": ["is_initialized_in_class"], "fullname": null, "name": "__delitem__", "type": {".class": "CallableType", "arg_kinds": [0, 0], "arg_names": [null, null], "arg_types": [{".class": "Instance", "args": [{".class": "TypeVarType", "fullname": "typing._KT", "id": 1, "name": "_KT", "upper_bound": "builtins.object", "values": [], "variance": 0}, {".class": "TypeVarType", "fullname": "typing._VT", "id": 2, "name": "_VT", "upper_bound": "builtins.object", "values": [], "variance": 0}], "type_ref": "typing.MutableMapping"}, {".class": "TypeVarType", "fullname": "typing._KT", "id": 1, "name": "_KT", "upper_bound": "builtins.object", "values": [], "variance": 0}], "bound_args": [], "def_extras": {"first_arg": "self"}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "__delitem__ of MutableMapping", "ret_type": {".class": "NoneTyp"}, "variables": []}}}}, "__setitem__": {".class": "SymbolTableNode", "kind": "Mdef", "node": {".class": "Decorator", "func": {".class": "FuncDef", "arg_kinds": [0, 0, 0], "arg_names": ["self", "k", "v"], "flags": ["is_decorated", "is_abstract"], "fullname": "typing.MutableMapping.__setitem__", "name": "__setitem__", "type": {".class": "CallableType", "arg_kinds": [0, 0, 0], "arg_names": [null, null, null], "arg_types": [{".class": "Instance", "args": [{".class": "TypeVarType", "fullname": "typing._KT", "id": 1, "name": "_KT", "upper_bound": "builtins.object", "values": [], "variance": 0}, {".class": "TypeVarType", "fullname": "typing._VT", "id": 2, "name": "_VT", "upper_bound": "builtins.object", "values": [], "variance": 0}], "type_ref": "typing.MutableMapping"}, {".class": "TypeVarType", "fullname": "typing._KT", "id": 1, "name": "_KT", "upper_bound": "builtins.object", "values": [], "variance": 0}, {".class": "TypeVarType", "fullname": "typing._VT", "id": 2, "name": "_VT", "upper_bound": "builtins.object", "values": [], "variance": 0}], "bound_args": [], "def_extras": {"first_arg": "self"}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "__setitem__ of MutableMapping", "ret_type": {".class": "NoneTyp"}, "variables": []}}, "is_overload": false, "var": {".class": "Var", "flags": ["is_initialized_in_class"], "fullname": null, "name": "__setitem__", "type": {".class": "CallableType", "arg_kinds": [0, 0, 0], "arg_names": [null, null, null], "arg_types": [{".class": "Instance", "args": [{".class": "TypeVarType", "fullname": "typing._KT", "id": 1, "name": "_KT", "upper_bound": "builtins.object", "values": [], "variance": 0}, {".class": "TypeVarType", "fullname": "typing._VT", "id": 2, "name": "_VT", "upper_bound": "builtins.object", "values": [], "variance": 0}], "type_ref": "typing.MutableMapping"}, {".class": "TypeVarType", "fullname": "typing._KT", "id": 1, "name": "_KT", "upper_bound": "builtins.object", "values": [], "variance": 0}, {".class": "TypeVarType", "fullname": "typing._VT", "id": 2, "name": "_VT", "upper_bound": "builtins.object", "values": [], "variance": 0}], "bound_args": [], "def_extras": {"first_arg": "self"}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "__setitem__ of MutableMapping", "ret_type": {".class": "NoneTyp"}, "variables": []}}}}, "clear": {".class": "SymbolTableNode", "kind": "Mdef", "node": {".class": "FuncDef", "arg_kinds": [0], "arg_names": ["self"], "flags": [], "fullname": "typing.MutableMapping.clear", "name": "clear", "type": {".class": "CallableType", "arg_kinds": [0], "arg_names": ["self"], "arg_types": [{".class": "Instance", "args": [{".class": "TypeVarType", "fullname": "typing._KT", "id": 1, "name": "_KT", "upper_bound": "builtins.object", "values": [], "variance": 0}, {".class": "TypeVarType", "fullname": "typing._VT", "id": 2, "name": "_VT", "upper_bound": "builtins.object", "values": [], "variance": 0}], "type_ref": "typing.MutableMapping"}], "bound_args": [], "def_extras": {"first_arg": "self"}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "clear of MutableMapping", "ret_type": {".class": "NoneTyp"}, "variables": []}}}, "pop": {".class": "SymbolTableNode", "kind": "Mdef", "node": {".class": "OverloadedFuncDef", "flags": [], "fullname": "typing.MutableMapping.pop", "impl": null, "items": [{".class": "Decorator", "func": {".class": "FuncDef", "arg_kinds": [0, 0], "arg_names": ["self", "k"], "flags": ["is_overload", "is_decorated"], "fullname": "typing.MutableMapping.pop", "name": "pop", "type": {".class": "CallableType", "arg_kinds": [0, 0], "arg_names": ["self", "k"], "arg_types": [{".class": "Instance", "args": [{".class": "TypeVarType", "fullname": "typing._KT", "id": 1, "name": "_KT", "upper_bound": "builtins.object", "values": [], "variance": 0}, {".class": "TypeVarType", "fullname": "typing._VT", "id": 2, "name": "_VT", "upper_bound": "builtins.object", "values": [], "variance": 0}], "type_ref": "typing.MutableMapping"}, {".class": "TypeVarType", "fullname": "typing._KT", "id": 1, "name": "_KT", "upper_bound": "builtins.object", "values": [], "variance": 0}], "bound_args": [], "def_extras": {"first_arg": "self"}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "pop of MutableMapping", "ret_type": {".class": "TypeVarType", "fullname": "typing._VT", "id": 2, "name": "_VT", "upper_bound": "builtins.object", "values": [], "variance": 0}, "variables": []}}, "is_overload": true, "var": {".class": "Var", "flags": [], "fullname": null, "name": "pop", "type": null}}, {".class": "Decorator", "func": {".class": "FuncDef", "arg_kinds": [0, 0, 1], "arg_names": ["self", "k", "default"], "flags": ["is_overload", "is_decorated"], "fullname": "typing.MutableMapping.pop", "name": "pop", "type": {".class": "CallableType", "arg_kinds": [0, 0, 1], "arg_names": ["self", "k", "default"], "arg_types": [{".class": "Instance", "args": [{".class": "TypeVarType", "fullname": "typing._KT", "id": 1, "name": "_KT", "upper_bound": "builtins.object", "values": [], "variance": 0}, {".class": "TypeVarType", "fullname": "typing._VT", "id": 2, "name": "_VT", "upper_bound": "builtins.object", "values": [], "variance": 0}], "type_ref": "typing.MutableMapping"}, {".class": "TypeVarType", "fullname": "typing._KT", "id": 1, "name": "_KT", "upper_bound": "builtins.object", "values": [], "variance": 0}, {".class": "UnionType", "items": [{".class": "TypeVarType", "fullname": "typing._VT", "id": 2, "name": "_VT", "upper_bound": "builtins.object", "values": [], "variance": 0}, {".class": "TypeVarType", "fullname": "typing._T", "id": -1, "name": "_T", "upper_bound": "builtins.object", "values": [], "variance": 0}]}], "bound_args": [], "def_extras": {"first_arg": "self"}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "pop of MutableMapping", "ret_type": {".class": "UnionType", "items": [{".class": "TypeVarType", "fullname": "typing._VT", "id": 2, "name": "_VT", "upper_bound": "builtins.object", "values": [], "variance": 0}, {".class": "TypeVarType", "fullname": "typing._T", "id": -1, "name": "_T", "upper_bound": "builtins.object", "values": [], "variance": 0}]}, "variables": [{".class": "TypeVarDef", "fullname": "typing._T", "id": -1, "name": "_T", "upper_bound": "builtins.object", "values": [], "variance": 0}]}}, "is_overload": true, "var": {".class": "Var", "flags": [], "fullname": null, "name": "pop", "type": null}}], "type": {".class": "Overloaded", "items": [{".class": "CallableType", "arg_kinds": [0, 0], "arg_names": ["self", "k"], "arg_types": [{".class": "Instance", "args": [{".class": "TypeVarType", "fullname": "typing._KT", "id": 1, "name": "_KT", "upper_bound": "builtins.object", "values": [], "variance": 0}, {".class": "TypeVarType", "fullname": "typing._VT", "id": 2, "name": "_VT", "upper_bound": "builtins.object", "values": [], "variance": 0}], "type_ref": "typing.MutableMapping"}, {".class": "TypeVarType", "fullname": "typing._KT", "id": 1, "name": "_KT", "upper_bound": "builtins.object", "values": [], "variance": 0}], "bound_args": [], "def_extras": {"first_arg": "self"}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "pop of MutableMapping", "ret_type": {".class": "TypeVarType", "fullname": "typing._VT", "id": 2, "name": "_VT", "upper_bound": "builtins.object", "values": [], "variance": 0}, "variables": []}, {".class": "CallableType", "arg_kinds": [0, 0, 1], "arg_names": ["self", "k", "default"], "arg_types": [{".class": "Instance", "args": [{".class": "TypeVarType", "fullname": "typing._KT", "id": 1, "name": "_KT", "upper_bound": "builtins.object", "values": [], "variance": 0}, {".class": "TypeVarType", "fullname": "typing._VT", "id": 2, "name": "_VT", "upper_bound": "builtins.object", "values": [], "variance": 0}], "type_ref": "typing.MutableMapping"}, {".class": "TypeVarType", "fullname": "typing._KT", "id": 1, "name": "_KT", "upper_bound": "builtins.object", "values": [], "variance": 0}, {".class": "UnionType", "items": [{".class": "TypeVarType", "fullname": "typing._VT", "id": 2, "name": "_VT", "upper_bound": "builtins.object", "values": [], "variance": 0}, {".class": "TypeVarType", "fullname": "typing._T", "id": -1, "name": "_T", "upper_bound": "builtins.object", "values": [], "variance": 0}]}], "bound_args": [], "def_extras": {"first_arg": "self"}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "pop of MutableMapping", "ret_type": {".class": "UnionType", "items": [{".class": "TypeVarType", "fullname": "typing._VT", "id": 2, "name": "_VT", "upper_bound": "builtins.object", "values": [], "variance": 0}, {".class": "TypeVarType", "fullname": "typing._T", "id": -1, "name": "_T", "upper_bound": "builtins.object", "values": [], "variance": 0}]}, "variables": [{".class": "TypeVarDef", "fullname": "typing._T", "id": -1, "name": "_T", "upper_bound": "builtins.object", "values": [], "variance": 0}]}]}}}, "popitem": {".class": "SymbolTableNode", "kind": "Mdef", "node": {".class": "FuncDef", "arg_kinds": [0], "arg_names": ["self"], "flags": [], "fullname": "typing.MutableMapping.popitem", "name": "popitem", "type": {".class": "CallableType", "arg_kinds": [0], "arg_names": ["self"], "arg_types": [{".class": "Instance", "args": [{".class": "TypeVarType", "fullname": "typing._KT", "id": 1, "name": "_KT", "upper_bound": "builtins.object", "values": [], "variance": 0}, {".class": "TypeVarType", "fullname": "typing._VT", "id": 2, "name": "_VT", "upper_bound": "builtins.object", "values": [], "variance": 0}], "type_ref": "typing.MutableMapping"}], "bound_args": [], "def_extras": {"first_arg": "self"}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "popitem of MutableMapping", "ret_type": {".class": "TupleType", "fallback": {".class": "Instance", "args": [{".class": "AnyType", "missing_import_name": null, "source_any": null, "type_of_any": 6}], "type_ref": "builtins.tuple"}, "implicit": false, "items": [{".class": "TypeVarType", "fullname": "typing._KT", "id": 1, "name": "_KT", "upper_bound": "builtins.object", "values": [], "variance": 0}, {".class": "TypeVarType", "fullname": "typing._VT", "id": 2, "name": "_VT", "upper_bound": "builtins.object", "values": [], "variance": 0}]}, "variables": []}}}, "setdefault": {".class": "SymbolTableNode", "kind": "Mdef", "node": {".class": "FuncDef", "arg_kinds": [0, 0, 1], "arg_names": ["self", "k", "default"], "flags": [], "fullname": "typing.MutableMapping.setdefault", "name": "setdefault", "type": {".class": "CallableType", "arg_kinds": [0, 0, 1], "arg_names": ["self", "k", "default"], "arg_types": [{".class": "Instance", "args": [{".class": "TypeVarType", "fullname": "typing._KT", "id": 1, "name": "_KT", "upper_bound": "builtins.object", "values": [], "variance": 0}, {".class": "TypeVarType", "fullname": "typing._VT", "id": 2, "name": "_VT", "upper_bound": "builtins.object", "values": [], "variance": 0}], "type_ref": "typing.MutableMapping"}, {".class": "TypeVarType", "fullname": "typing._KT", "id": 1, "name": "_KT", "upper_bound": "builtins.object", "values": [], "variance": 0}, {".class": "TypeVarType", "fullname": "typing._VT", "id": 2, "name": "_VT", "upper_bound": "builtins.object", "values": [], "variance": 0}], "bound_args": [], "def_extras": {"first_arg": "self"}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "setdefault of MutableMapping", "ret_type": {".class": "TypeVarType", "fullname": "typing._VT", "id": 2, "name": "_VT", "upper_bound": "builtins.object", "values": [], "variance": 0}, "variables": []}}}, "update": {".class": "SymbolTableNode", "kind": "Mdef", "node": {".class": "OverloadedFuncDef", "flags": [], "fullname": "typing.MutableMapping.update", "impl": null, "items": [{".class": "Decorator", "func": {".class": "FuncDef", "arg_kinds": [0, 0, 4], "arg_names": ["self", "__m", "kwargs"], "flags": ["is_overload", "is_decorated"], "fullname": "typing.MutableMapping.update", "name": "update", "type": {".class": "CallableType", "arg_kinds": [0, 0, 4], "arg_names": ["self", null, "kwargs"], "arg_types": [{".class": "Instance", "args": [{".class": "TypeVarType", "fullname": "typing._KT", "id": 1, "name": "_KT", "upper_bound": "builtins.object", "values": [], "variance": 0}, {".class": "TypeVarType", "fullname": "typing._VT", "id": 2, "name": "_VT", "upper_bound": "builtins.object", "values": [], "variance": 0}], "type_ref": "typing.MutableMapping"}, {".class": "Instance", "args": [{".class": "TypeVarType", "fullname": "typing._KT", "id": 1, "name": "_KT", "upper_bound": "builtins.object", "values": [], "variance": 0}, {".class": "TypeVarType", "fullname": "typing._VT", "id": 2, "name": "_VT", "upper_bound": "builtins.object", "values": [], "variance": 0}], "type_ref": "typing.Mapping"}, {".class": "TypeVarType", "fullname": "typing._VT", "id": 2, "name": "_VT", "upper_bound": "builtins.object", "values": [], "variance": 0}], "bound_args": [], "def_extras": {"first_arg": "self"}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "update of MutableMapping", "ret_type": {".class": "NoneTyp"}, "variables": []}}, "is_overload": true, "var": {".class": "Var", "flags": [], "fullname": null, "name": "update", "type": null}}, {".class": "Decorator", "func": {".class": "FuncDef", "arg_kinds": [0, 0, 4], "arg_names": ["self", "__m", "kwargs"], "flags": ["is_overload", "is_decorated"], "fullname": "typing.MutableMapping.update", "name": "update", "type": {".class": "CallableType", "arg_kinds": [0, 0, 4], "arg_names": ["self", null, "kwargs"], "arg_types": [{".class": "Instance", "args": [{".class": "TypeVarType", "fullname": "typing._KT", "id": 1, "name": "_KT", "upper_bound": "builtins.object", "values": [], "variance": 0}, {".class": "TypeVarType", "fullname": "typing._VT", "id": 2, "name": "_VT", "upper_bound": "builtins.object", "values": [], "variance": 0}], "type_ref": "typing.MutableMapping"}, {".class": "Instance", "args": [{".class": "TupleType", "fallback": {".class": "Instance", "args": [{".class": "AnyType", "missing_import_name": null, "source_any": null, "type_of_any": 6}], "type_ref": "builtins.tuple"}, "implicit": false, "items": [{".class": "TypeVarType", "fullname": "typing._KT", "id": 1, "name": "_KT", "upper_bound": "builtins.object", "values": [], "variance": 0}, {".class": "TypeVarType", "fullname": "typing._VT", "id": 2, "name": "_VT", "upper_bound": "builtins.object", "values": [], "variance": 0}]}], "type_ref": "typing.Iterable"}, {".class": "TypeVarType", "fullname": "typing._VT", "id": 2, "name": "_VT", "upper_bound": "builtins.object", "values": [], "variance": 0}], "bound_args": [], "def_extras": {"first_arg": "self"}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "update of MutableMapping", "ret_type": {".class": "NoneTyp"}, "variables": []}}, "is_overload": true, "var": {".class": "Var", "flags": [], "fullname": null, "name": "update", "type": null}}, {".class": "Decorator", "func": {".class": "FuncDef", "arg_kinds": [0, 4], "arg_names": ["self", "kwargs"], "flags": ["is_overload", "is_decorated"], "fullname": "typing.MutableMapping.update", "name": "update", "type": {".class": "CallableType", "arg_kinds": [0, 4], "arg_names": ["self", "kwargs"], "arg_types": [{".class": "Instance", "args": [{".class": "TypeVarType", "fullname": "typing._KT", "id": 1, "name": "_KT", "upper_bound": "builtins.object", "values": [], "variance": 0}, {".class": "TypeVarType", "fullname": "typing._VT", "id": 2, "name": "_VT", "upper_bound": "builtins.object", "values": [], "variance": 0}], "type_ref": "typing.MutableMapping"}, {".class": "TypeVarType", "fullname": "typing._VT", "id": 2, "name": "_VT", "upper_bound": "builtins.object", "values": [], "variance": 0}], "bound_args": [], "def_extras": {"first_arg": "self"}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "update of MutableMapping", "ret_type": {".class": "NoneTyp"}, "variables": []}}, "is_overload": true, "var": {".class": "Var", "flags": [], "fullname": null, "name": "update", "type": null}}], "type": {".class": "Overloaded", "items": [{".class": "CallableType", "arg_kinds": [0, 0, 4], "arg_names": ["self", null, "kwargs"], "arg_types": [{".class": "Instance", "args": [{".class": "TypeVarType", "fullname": "typing._KT", "id": 1, "name": "_KT", "upper_bound": "builtins.object", "values": [], "variance": 0}, {".class": "TypeVarType", "fullname": "typing._VT", "id": 2, "name": "_VT", "upper_bound": "builtins.object", "values": [], "variance": 0}], "type_ref": "typing.MutableMapping"}, {".class": "Instance", "args": [{".class": "TypeVarType", "fullname": "typing._KT", "id": 1, "name": "_KT", "upper_bound": "builtins.object", "values": [], "variance": 0}, {".class": "TypeVarType", "fullname": "typing._VT", "id": 2, "name": "_VT", "upper_bound": "builtins.object", "values": [], "variance": 0}], "type_ref": "typing.Mapping"}, {".class": "TypeVarType", "fullname": "typing._VT", "id": 2, "name": "_VT", "upper_bound": "builtins.object", "values": [], "variance": 0}], "bound_args": [], "def_extras": {"first_arg": "self"}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "update of MutableMapping", "ret_type": {".class": "NoneTyp"}, "variables": []}, {".class": "CallableType", "arg_kinds": [0, 0, 4], "arg_names": ["self", null, "kwargs"], "arg_types": [{".class": "Instance", "args": [{".class": "TypeVarType", "fullname": "typing._KT", "id": 1, "name": "_KT", "upper_bound": "builtins.object", "values": [], "variance": 0}, {".class": "TypeVarType", "fullname": "typing._VT", "id": 2, "name": "_VT", "upper_bound": "builtins.object", "values": [], "variance": 0}], "type_ref": "typing.MutableMapping"}, {".class": "Instance", "args": [{".class": "TupleType", "fallback": {".class": "Instance", "args": [{".class": "AnyType", "missing_import_name": null, "source_any": null, "type_of_any": 6}], "type_ref": "builtins.tuple"}, "implicit": false, "items": [{".class": "TypeVarType", "fullname": "typing._KT", "id": 1, "name": "_KT", "upper_bound": "builtins.object", "values": [], "variance": 0}, {".class": "TypeVarType", "fullname": "typing._VT", "id": 2, "name": "_VT", "upper_bound": "builtins.object", "values": [], "variance": 0}]}], "type_ref": "typing.Iterable"}, {".class": "TypeVarType", "fullname": "typing._VT", "id": 2, "name": "_VT", "upper_bound": "builtins.object", "values": [], "variance": 0}], "bound_args": [], "def_extras": {"first_arg": "self"}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "update of MutableMapping", "ret_type": {".class": "NoneTyp"}, "variables": []}, {".class": "CallableType", "arg_kinds": [0, 4], "arg_names": ["self", "kwargs"], "arg_types": [{".class": "Instance", "args": [{".class": "TypeVarType", "fullname": "typing._KT", "id": 1, "name": "_KT", "upper_bound": "builtins.object", "values": [], "variance": 0}, {".class": "TypeVarType", "fullname": "typing._VT", "id": 2, "name": "_VT", "upper_bound": "builtins.object", "values": [], "variance": 0}], "type_ref": "typing.MutableMapping"}, {".class": "TypeVarType", "fullname": "typing._VT", "id": 2, "name": "_VT", "upper_bound": "builtins.object", "values": [], "variance": 0}], "bound_args": [], "def_extras": {"first_arg": "self"}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "update of MutableMapping", "ret_type": {".class": "NoneTyp"}, "variables": []}]}}}}, "tuple_type": null, "type_vars": ["_KT", "_VT"], "typeddict_type": null}}, "MutableSequence": {".class": "SymbolTableNode", "kind": "Gdef", "node": {".class": "TypeInfo", "_promote": null, "abstract_attributes": ["__delitem__", "__getitem__", "__len__", "__setitem__", "insert"], "bases": [{".class": "Instance", "args": [{".class": "TypeVarType", "fullname": "typing._T", "id": 1, "name": "_T", "upper_bound": "builtins.object", "values": [], "variance": 0}], "type_ref": "typing.Sequence"}], "declared_metaclass": null, "defn": {".class": "ClassDef", "fullname": "typing.MutableSequence", "name": "MutableSequence", "type_vars": [{".class": "TypeVarDef", "fullname": "typing._T", "id": 1, "name": "_T", "upper_bound": "builtins.object", "values": [], "variance": 0}]}, "flags": ["is_abstract"], "fullname": "typing.MutableSequence", "metaclass_type": "abc.ABCMeta", "metadata": {}, "module_name": "typing", "mro": ["typing.MutableSequence", "typing.Sequence", "typing.Collection", "typing.Iterable", "typing.Container", "typing.Reversible", "builtins.object"], "names": {".class": "SymbolTable", "__delitem__": {".class": "SymbolTableNode", "kind": "Mdef", "node": {".class": "OverloadedFuncDef", "flags": [], "fullname": "typing.MutableSequence.__delitem__", "impl": null, "items": [{".class": "Decorator", "func": {".class": "FuncDef", "arg_kinds": [0, 0], "arg_names": ["self", "i"], "flags": ["is_overload", "is_decorated", "is_abstract"], "fullname": "typing.MutableSequence.__delitem__", "name": "__delitem__", "type": {".class": "CallableType", "arg_kinds": [0, 0], "arg_names": [null, null], "arg_types": [{".class": "Instance", "args": [{".class": "TypeVarType", "fullname": "typing._T", "id": 1, "name": "_T", "upper_bound": "builtins.object", "values": [], "variance": 0}], "type_ref": "typing.MutableSequence"}, "builtins.int"], "bound_args": [], "def_extras": {"first_arg": "self"}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "__delitem__ of MutableSequence", "ret_type": {".class": "NoneTyp"}, "variables": []}}, "is_overload": true, "var": {".class": "Var", "flags": [], "fullname": null, "name": "__delitem__", "type": null}}, {".class": "Decorator", "func": {".class": "FuncDef", "arg_kinds": [0, 0], "arg_names": ["self", "i"], "flags": ["is_overload", "is_decorated", "is_abstract"], "fullname": "typing.MutableSequence.__delitem__", "name": "__delitem__", "type": {".class": "CallableType", "arg_kinds": [0, 0], "arg_names": [null, null], "arg_types": [{".class": "Instance", "args": [{".class": "TypeVarType", "fullname": "typing._T", "id": 1, "name": "_T", "upper_bound": "builtins.object", "values": [], "variance": 0}], "type_ref": "typing.MutableSequence"}, "builtins.slice"], "bound_args": [], "def_extras": {"first_arg": "self"}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "__delitem__ of MutableSequence", "ret_type": {".class": "NoneTyp"}, "variables": []}}, "is_overload": true, "var": {".class": "Var", "flags": [], "fullname": null, "name": "__delitem__", "type": null}}], "type": {".class": "Overloaded", "items": [{".class": "CallableType", "arg_kinds": [0, 0], "arg_names": [null, null], "arg_types": [{".class": "Instance", "args": [{".class": "TypeVarType", "fullname": "typing._T", "id": 1, "name": "_T", "upper_bound": "builtins.object", "values": [], "variance": 0}], "type_ref": "typing.MutableSequence"}, "builtins.int"], "bound_args": [], "def_extras": {"first_arg": "self"}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "__delitem__ of MutableSequence", "ret_type": {".class": "NoneTyp"}, "variables": []}, {".class": "CallableType", "arg_kinds": [0, 0], "arg_names": [null, null], "arg_types": [{".class": "Instance", "args": [{".class": "TypeVarType", "fullname": "typing._T", "id": 1, "name": "_T", "upper_bound": "builtins.object", "values": [], "variance": 0}], "type_ref": "typing.MutableSequence"}, "builtins.slice"], "bound_args": [], "def_extras": {"first_arg": "self"}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "__delitem__ of MutableSequence", "ret_type": {".class": "NoneTyp"}, "variables": []}]}}}, "__getitem__": {".class": "SymbolTableNode", "kind": "Mdef", "node": {".class": "OverloadedFuncDef", "flags": [], "fullname": "typing.MutableSequence.__getitem__", "impl": null, "items": [{".class": "Decorator", "func": {".class": "FuncDef", "arg_kinds": [0, 0], "arg_names": ["self", "i"], "flags": ["is_overload", "is_decorated", "is_abstract"], "fullname": "typing.MutableSequence.__getitem__", "name": "__getitem__", "type": {".class": "CallableType", "arg_kinds": [0, 0], "arg_names": [null, null], "arg_types": [{".class": "Instance", "args": [{".class": "TypeVarType", "fullname": "typing._T", "id": 1, "name": "_T", "upper_bound": "builtins.object", "values": [], "variance": 0}], "type_ref": "typing.MutableSequence"}, "builtins.int"], "bound_args": [], "def_extras": {"first_arg": "self"}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "__getitem__ of MutableSequence", "ret_type": {".class": "TypeVarType", "fullname": "typing._T", "id": 1, "name": "_T", "upper_bound": "builtins.object", "values": [], "variance": 0}, "variables": []}}, "is_overload": true, "var": {".class": "Var", "flags": [], "fullname": null, "name": "__getitem__", "type": null}}, {".class": "Decorator", "func": {".class": "FuncDef", "arg_kinds": [0, 0], "arg_names": ["self", "s"], "flags": ["is_overload", "is_decorated", "is_abstract"], "fullname": "typing.MutableSequence.__getitem__", "name": "__getitem__", "type": {".class": "CallableType", "arg_kinds": [0, 0], "arg_names": [null, null], "arg_types": [{".class": "Instance", "args": [{".class": "TypeVarType", "fullname": "typing._T", "id": 1, "name": "_T", "upper_bound": "builtins.object", "values": [], "variance": 0}], "type_ref": "typing.MutableSequence"}, "builtins.slice"], "bound_args": [], "def_extras": {"first_arg": "self"}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "__getitem__ of MutableSequence", "ret_type": {".class": "Instance", "args": [{".class": "TypeVarType", "fullname": "typing._T", "id": 1, "name": "_T", "upper_bound": "builtins.object", "values": [], "variance": 0}], "type_ref": "typing.MutableSequence"}, "variables": []}}, "is_overload": true, "var": {".class": "Var", "flags": [], "fullname": null, "name": "__getitem__", "type": null}}], "type": {".class": "Overloaded", "items": [{".class": "CallableType", "arg_kinds": [0, 0], "arg_names": [null, null], "arg_types": [{".class": "Instance", "args": [{".class": "TypeVarType", "fullname": "typing._T", "id": 1, "name": "_T", "upper_bound": "builtins.object", "values": [], "variance": 0}], "type_ref": "typing.MutableSequence"}, "builtins.int"], "bound_args": [], "def_extras": {"first_arg": "self"}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "__getitem__ of MutableSequence", "ret_type": {".class": "TypeVarType", "fullname": "typing._T", "id": 1, "name": "_T", "upper_bound": "builtins.object", "values": [], "variance": 0}, "variables": []}, {".class": "CallableType", "arg_kinds": [0, 0], "arg_names": [null, null], "arg_types": [{".class": "Instance", "args": [{".class": "TypeVarType", "fullname": "typing._T", "id": 1, "name": "_T", "upper_bound": "builtins.object", "values": [], "variance": 0}], "type_ref": "typing.MutableSequence"}, "builtins.slice"], "bound_args": [], "def_extras": {"first_arg": "self"}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "__getitem__ of MutableSequence", "ret_type": {".class": "Instance", "args": [{".class": "TypeVarType", "fullname": "typing._T", "id": 1, "name": "_T", "upper_bound": "builtins.object", "values": [], "variance": 0}], "type_ref": "typing.MutableSequence"}, "variables": []}]}}}, "__iadd__": {".class": "SymbolTableNode", "kind": "Mdef", "node": {".class": "FuncDef", "arg_kinds": [0, 0], "arg_names": ["self", "x"], "flags": [], "fullname": "typing.MutableSequence.__iadd__", "name": "__iadd__", "type": {".class": "CallableType", "arg_kinds": [0, 0], "arg_names": [null, null], "arg_types": [{".class": "Instance", "args": [{".class": "TypeVarType", "fullname": "typing._T", "id": 1, "name": "_T", "upper_bound": "builtins.object", "values": [], "variance": 0}], "type_ref": "typing.MutableSequence"}, {".class": "Instance", "args": [{".class": "TypeVarType", "fullname": "typing._T", "id": 1, "name": "_T", "upper_bound": "builtins.object", "values": [], "variance": 0}], "type_ref": "typing.Iterable"}], "bound_args": [], "def_extras": {"first_arg": "self"}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "__iadd__ of MutableSequence", "ret_type": {".class": "Instance", "args": [{".class": "TypeVarType", "fullname": "typing._T", "id": 1, "name": "_T", "upper_bound": "builtins.object", "values": [], "variance": 0}], "type_ref": "typing.MutableSequence"}, "variables": []}}}, "__setitem__": {".class": "SymbolTableNode", "kind": "Mdef", "node": {".class": "OverloadedFuncDef", "flags": [], "fullname": "typing.MutableSequence.__setitem__", "impl": null, "items": [{".class": "Decorator", "func": {".class": "FuncDef", "arg_kinds": [0, 0, 0], "arg_names": ["self", "i", "o"], "flags": ["is_overload", "is_decorated", "is_abstract"], "fullname": "typing.MutableSequence.__setitem__", "name": "__setitem__", "type": {".class": "CallableType", "arg_kinds": [0, 0, 0], "arg_names": [null, null, null], "arg_types": [{".class": "Instance", "args": [{".class": "TypeVarType", "fullname": "typing._T", "id": 1, "name": "_T", "upper_bound": "builtins.object", "values": [], "variance": 0}], "type_ref": "typing.MutableSequence"}, "builtins.int", {".class": "TypeVarType", "fullname": "typing._T", "id": 1, "name": "_T", "upper_bound": "builtins.object", "values": [], "variance": 0}], "bound_args": [], "def_extras": {"first_arg": "self"}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "__setitem__ of MutableSequence", "ret_type": {".class": "NoneTyp"}, "variables": []}}, "is_overload": true, "var": {".class": "Var", "flags": [], "fullname": null, "name": "__setitem__", "type": null}}, {".class": "Decorator", "func": {".class": "FuncDef", "arg_kinds": [0, 0, 0], "arg_names": ["self", "s", "o"], "flags": ["is_overload", "is_decorated", "is_abstract"], "fullname": "typing.MutableSequence.__setitem__", "name": "__setitem__", "type": {".class": "CallableType", "arg_kinds": [0, 0, 0], "arg_names": [null, null, null], "arg_types": [{".class": "Instance", "args": [{".class": "TypeVarType", "fullname": "typing._T", "id": 1, "name": "_T", "upper_bound": "builtins.object", "values": [], "variance": 0}], "type_ref": "typing.MutableSequence"}, "builtins.slice", {".class": "Instance", "args": [{".class": "TypeVarType", "fullname": "typing._T", "id": 1, "name": "_T", "upper_bound": "builtins.object", "values": [], "variance": 0}], "type_ref": "typing.Iterable"}], "bound_args": [], "def_extras": {"first_arg": "self"}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "__setitem__ of MutableSequence", "ret_type": {".class": "NoneTyp"}, "variables": []}}, "is_overload": true, "var": {".class": "Var", "flags": [], "fullname": null, "name": "__setitem__", "type": null}}], "type": {".class": "Overloaded", "items": [{".class": "CallableType", "arg_kinds": [0, 0, 0], "arg_names": [null, null, null], "arg_types": [{".class": "Instance", "args": [{".class": "TypeVarType", "fullname": "typing._T", "id": 1, "name": "_T", "upper_bound": "builtins.object", "values": [], "variance": 0}], "type_ref": "typing.MutableSequence"}, "builtins.int", {".class": "TypeVarType", "fullname": "typing._T", "id": 1, "name": "_T", "upper_bound": "builtins.object", "values": [], "variance": 0}], "bound_args": [], "def_extras": {"first_arg": "self"}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "__setitem__ of MutableSequence", "ret_type": {".class": "NoneTyp"}, "variables": []}, {".class": "CallableType", "arg_kinds": [0, 0, 0], "arg_names": [null, null, null], "arg_types": [{".class": "Instance", "args": [{".class": "TypeVarType", "fullname": "typing._T", "id": 1, "name": "_T", "upper_bound": "builtins.object", "values": [], "variance": 0}], "type_ref": "typing.MutableSequence"}, "builtins.slice", {".class": "Instance", "args": [{".class": "TypeVarType", "fullname": "typing._T", "id": 1, "name": "_T", "upper_bound": "builtins.object", "values": [], "variance": 0}], "type_ref": "typing.Iterable"}], "bound_args": [], "def_extras": {"first_arg": "self"}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "__setitem__ of MutableSequence", "ret_type": {".class": "NoneTyp"}, "variables": []}]}}}, "append": {".class": "SymbolTableNode", "kind": "Mdef", "node": {".class": "FuncDef", "arg_kinds": [0, 0], "arg_names": ["self", "object"], "flags": [], "fullname": "typing.MutableSequence.append", "name": "append", "type": {".class": "CallableType", "arg_kinds": [0, 0], "arg_names": ["self", "object"], "arg_types": [{".class": "Instance", "args": [{".class": "TypeVarType", "fullname": "typing._T", "id": 1, "name": "_T", "upper_bound": "builtins.object", "values": [], "variance": 0}], "type_ref": "typing.MutableSequence"}, {".class": "TypeVarType", "fullname": "typing._T", "id": 1, "name": "_T", "upper_bound": "builtins.object", "values": [], "variance": 0}], "bound_args": [], "def_extras": {"first_arg": "self"}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "append of MutableSequence", "ret_type": {".class": "NoneTyp"}, "variables": []}}}, "clear": {".class": "SymbolTableNode", "kind": "Mdef", "node": {".class": "FuncDef", "arg_kinds": [0], "arg_names": ["self"], "flags": [], "fullname": "typing.MutableSequence.clear", "name": "clear", "type": {".class": "CallableType", "arg_kinds": [0], "arg_names": ["self"], "arg_types": [{".class": "Instance", "args": [{".class": "TypeVarType", "fullname": "typing._T", "id": 1, "name": "_T", "upper_bound": "builtins.object", "values": [], "variance": 0}], "type_ref": "typing.MutableSequence"}], "bound_args": [], "def_extras": {"first_arg": "self"}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "clear of MutableSequence", "ret_type": {".class": "NoneTyp"}, "variables": []}}}, "extend": {".class": "SymbolTableNode", "kind": "Mdef", "node": {".class": "FuncDef", "arg_kinds": [0, 0], "arg_names": ["self", "iterable"], "flags": [], "fullname": "typing.MutableSequence.extend", "name": "extend", "type": {".class": "CallableType", "arg_kinds": [0, 0], "arg_names": ["self", "iterable"], "arg_types": [{".class": "Instance", "args": [{".class": "TypeVarType", "fullname": "typing._T", "id": 1, "name": "_T", "upper_bound": "builtins.object", "values": [], "variance": 0}], "type_ref": "typing.MutableSequence"}, {".class": "Instance", "args": [{".class": "TypeVarType", "fullname": "typing._T", "id": 1, "name": "_T", "upper_bound": "builtins.object", "values": [], "variance": 0}], "type_ref": "typing.Iterable"}], "bound_args": [], "def_extras": {"first_arg": "self"}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "extend of MutableSequence", "ret_type": {".class": "NoneTyp"}, "variables": []}}}, "insert": {".class": "SymbolTableNode", "kind": "Mdef", "node": {".class": "Decorator", "func": {".class": "FuncDef", "arg_kinds": [0, 0, 0], "arg_names": ["self", "index", "object"], "flags": ["is_decorated", "is_abstract"], "fullname": "typing.MutableSequence.insert", "name": "insert", "type": {".class": "CallableType", "arg_kinds": [0, 0, 0], "arg_names": ["self", "index", "object"], "arg_types": [{".class": "Instance", "args": [{".class": "TypeVarType", "fullname": "typing._T", "id": 1, "name": "_T", "upper_bound": "builtins.object", "values": [], "variance": 0}], "type_ref": "typing.MutableSequence"}, "builtins.int", {".class": "TypeVarType", "fullname": "typing._T", "id": 1, "name": "_T", "upper_bound": "builtins.object", "values": [], "variance": 0}], "bound_args": [], "def_extras": {"first_arg": "self"}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "insert of MutableSequence", "ret_type": {".class": "NoneTyp"}, "variables": []}}, "is_overload": false, "var": {".class": "Var", "flags": ["is_initialized_in_class"], "fullname": null, "name": "insert", "type": {".class": "CallableType", "arg_kinds": [0, 0, 0], "arg_names": ["self", "index", "object"], "arg_types": [{".class": "Instance", "args": [{".class": "TypeVarType", "fullname": "typing._T", "id": 1, "name": "_T", "upper_bound": "builtins.object", "values": [], "variance": 0}], "type_ref": "typing.MutableSequence"}, "builtins.int", {".class": "TypeVarType", "fullname": "typing._T", "id": 1, "name": "_T", "upper_bound": "builtins.object", "values": [], "variance": 0}], "bound_args": [], "def_extras": {"first_arg": "self"}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "insert of MutableSequence", "ret_type": {".class": "NoneTyp"}, "variables": []}}}}, "pop": {".class": "SymbolTableNode", "kind": "Mdef", "node": {".class": "FuncDef", "arg_kinds": [0, 1], "arg_names": ["self", "index"], "flags": [], "fullname": "typing.MutableSequence.pop", "name": "pop", "type": {".class": "CallableType", "arg_kinds": [0, 1], "arg_names": ["self", "index"], "arg_types": [{".class": "Instance", "args": [{".class": "TypeVarType", "fullname": "typing._T", "id": 1, "name": "_T", "upper_bound": "builtins.object", "values": [], "variance": 0}], "type_ref": "typing.MutableSequence"}, "builtins.int"], "bound_args": [], "def_extras": {"first_arg": "self"}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "pop of MutableSequence", "ret_type": {".class": "TypeVarType", "fullname": "typing._T", "id": 1, "name": "_T", "upper_bound": "builtins.object", "values": [], "variance": 0}, "variables": []}}}, "remove": {".class": "SymbolTableNode", "kind": "Mdef", "node": {".class": "FuncDef", "arg_kinds": [0, 0], "arg_names": ["self", "object"], "flags": [], "fullname": "typing.MutableSequence.remove", "name": "remove", "type": {".class": "CallableType", "arg_kinds": [0, 0], "arg_names": ["self", "object"], "arg_types": [{".class": "Instance", "args": [{".class": "TypeVarType", "fullname": "typing._T", "id": 1, "name": "_T", "upper_bound": "builtins.object", "values": [], "variance": 0}], "type_ref": "typing.MutableSequence"}, {".class": "TypeVarType", "fullname": "typing._T", "id": 1, "name": "_T", "upper_bound": "builtins.object", "values": [], "variance": 0}], "bound_args": [], "def_extras": {"first_arg": "self"}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "remove of MutableSequence", "ret_type": {".class": "NoneTyp"}, "variables": []}}}, "reverse": {".class": "SymbolTableNode", "kind": "Mdef", "node": {".class": "FuncDef", "arg_kinds": [0], "arg_names": ["self"], "flags": [], "fullname": "typing.MutableSequence.reverse", "name": "reverse", "type": {".class": "CallableType", "arg_kinds": [0], "arg_names": ["self"], "arg_types": [{".class": "Instance", "args": [{".class": "TypeVarType", "fullname": "typing._T", "id": 1, "name": "_T", "upper_bound": "builtins.object", "values": [], "variance": 0}], "type_ref": "typing.MutableSequence"}], "bound_args": [], "def_extras": {"first_arg": "self"}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "reverse of MutableSequence", "ret_type": {".class": "NoneTyp"}, "variables": []}}}}, "tuple_type": null, "type_vars": ["_T"], "typeddict_type": null}}, "MutableSet": {".class": "SymbolTableNode", "kind": "Gdef", "node": {".class": "TypeInfo", "_promote": null, "abstract_attributes": ["__contains__", "__iter__", "__len__", "add", "discard"], "bases": [{".class": "Instance", "args": [{".class": "TypeVarType", "fullname": "typing._T", "id": 1, "name": "_T", "upper_bound": "builtins.object", "values": [], "variance": 0}], "type_ref": "typing.AbstractSet"}], "declared_metaclass": null, "defn": {".class": "ClassDef", "fullname": "typing.MutableSet", "name": "MutableSet", "type_vars": [{".class": "TypeVarDef", "fullname": "typing._T", "id": 1, "name": "_T", "upper_bound": "builtins.object", "values": [], "variance": 0}]}, "flags": ["is_abstract"], "fullname": "typing.MutableSet", "metaclass_type": "abc.ABCMeta", "metadata": {}, "module_name": "typing", "mro": ["typing.MutableSet", "typing.AbstractSet", "typing.Collection", "typing.Iterable", "typing.Container", "builtins.object"], "names": {".class": "SymbolTable", "__iand__": {".class": "SymbolTableNode", "kind": "Mdef", "node": {".class": "FuncDef", "arg_kinds": [0, 0], "arg_names": ["self", "s"], "flags": [], "fullname": "typing.MutableSet.__iand__", "name": "__iand__", "type": {".class": "CallableType", "arg_kinds": [0, 0], "arg_names": [null, null], "arg_types": [{".class": "Instance", "args": [{".class": "TypeVarType", "fullname": "typing._T", "id": 1, "name": "_T", "upper_bound": "builtins.object", "values": [], "variance": 0}], "type_ref": "typing.MutableSet"}, {".class": "Instance", "args": [{".class": "AnyType", "missing_import_name": null, "source_any": null, "type_of_any": 2}], "type_ref": "typing.AbstractSet"}], "bound_args": [], "def_extras": {"first_arg": "self"}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "__iand__ of MutableSet", "ret_type": {".class": "Instance", "args": [{".class": "TypeVarType", "fullname": "typing._T", "id": 1, "name": "_T", "upper_bound": "builtins.object", "values": [], "variance": 0}], "type_ref": "typing.MutableSet"}, "variables": []}}}, "__ior__": {".class": "SymbolTableNode", "kind": "Mdef", "node": {".class": "FuncDef", "arg_kinds": [0, 0], "arg_names": ["self", "s"], "flags": [], "fullname": "typing.MutableSet.__ior__", "name": "__ior__", "type": {".class": "CallableType", "arg_kinds": [0, 0], "arg_names": [null, null], "arg_types": [{".class": "Instance", "args": [{".class": "TypeVarType", "fullname": "typing._T", "id": 1, "name": "_T", "upper_bound": "builtins.object", "values": [], "variance": 0}], "type_ref": "typing.MutableSet"}, {".class": "Instance", "args": [{".class": "TypeVarType", "fullname": "typing._S", "id": -1, "name": "_S", "upper_bound": "builtins.object", "values": [], "variance": 0}], "type_ref": "typing.AbstractSet"}], "bound_args": [], "def_extras": {"first_arg": "self"}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "__ior__ of MutableSet", "ret_type": {".class": "Instance", "args": [{".class": "UnionType", "items": [{".class": "TypeVarType", "fullname": "typing._T", "id": 1, "name": "_T", "upper_bound": "builtins.object", "values": [], "variance": 0}, {".class": "TypeVarType", "fullname": "typing._S", "id": -1, "name": "_S", "upper_bound": "builtins.object", "values": [], "variance": 0}]}], "type_ref": "typing.MutableSet"}, "variables": [{".class": "TypeVarDef", "fullname": "typing._S", "id": -1, "name": "_S", "upper_bound": "builtins.object", "values": [], "variance": 0}]}}}, "__isub__": {".class": "SymbolTableNode", "kind": "Mdef", "node": {".class": "FuncDef", "arg_kinds": [0, 0], "arg_names": ["self", "s"], "flags": [], "fullname": "typing.MutableSet.__isub__", "name": "__isub__", "type": {".class": "CallableType", "arg_kinds": [0, 0], "arg_names": [null, null], "arg_types": [{".class": "Instance", "args": [{".class": "TypeVarType", "fullname": "typing._T", "id": 1, "name": "_T", "upper_bound": "builtins.object", "values": [], "variance": 0}], "type_ref": "typing.MutableSet"}, {".class": "Instance", "args": [{".class": "AnyType", "missing_import_name": null, "source_any": null, "type_of_any": 2}], "type_ref": "typing.AbstractSet"}], "bound_args": [], "def_extras": {"first_arg": "self"}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "__isub__ of MutableSet", "ret_type": {".class": "Instance", "args": [{".class": "TypeVarType", "fullname": "typing._T", "id": 1, "name": "_T", "upper_bound": "builtins.object", "values": [], "variance": 0}], "type_ref": "typing.MutableSet"}, "variables": []}}}, "__ixor__": {".class": "SymbolTableNode", "kind": "Mdef", "node": {".class": "FuncDef", "arg_kinds": [0, 0], "arg_names": ["self", "s"], "flags": [], "fullname": "typing.MutableSet.__ixor__", "name": "__ixor__", "type": {".class": "CallableType", "arg_kinds": [0, 0], "arg_names": [null, null], "arg_types": [{".class": "Instance", "args": [{".class": "TypeVarType", "fullname": "typing._T", "id": 1, "name": "_T", "upper_bound": "builtins.object", "values": [], "variance": 0}], "type_ref": "typing.MutableSet"}, {".class": "Instance", "args": [{".class": "TypeVarType", "fullname": "typing._S", "id": -1, "name": "_S", "upper_bound": "builtins.object", "values": [], "variance": 0}], "type_ref": "typing.AbstractSet"}], "bound_args": [], "def_extras": {"first_arg": "self"}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "__ixor__ of MutableSet", "ret_type": {".class": "Instance", "args": [{".class": "UnionType", "items": [{".class": "TypeVarType", "fullname": "typing._T", "id": 1, "name": "_T", "upper_bound": "builtins.object", "values": [], "variance": 0}, {".class": "TypeVarType", "fullname": "typing._S", "id": -1, "name": "_S", "upper_bound": "builtins.object", "values": [], "variance": 0}]}], "type_ref": "typing.MutableSet"}, "variables": [{".class": "TypeVarDef", "fullname": "typing._S", "id": -1, "name": "_S", "upper_bound": "builtins.object", "values": [], "variance": 0}]}}}, "add": {".class": "SymbolTableNode", "kind": "Mdef", "node": {".class": "Decorator", "func": {".class": "FuncDef", "arg_kinds": [0, 0], "arg_names": ["self", "x"], "flags": ["is_decorated", "is_abstract"], "fullname": "typing.MutableSet.add", "name": "add", "type": {".class": "CallableType", "arg_kinds": [0, 0], "arg_names": ["self", "x"], "arg_types": [{".class": "Instance", "args": [{".class": "TypeVarType", "fullname": "typing._T", "id": 1, "name": "_T", "upper_bound": "builtins.object", "values": [], "variance": 0}], "type_ref": "typing.MutableSet"}, {".class": "TypeVarType", "fullname": "typing._T", "id": 1, "name": "_T", "upper_bound": "builtins.object", "values": [], "variance": 0}], "bound_args": [], "def_extras": {"first_arg": "self"}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "add of MutableSet", "ret_type": {".class": "NoneTyp"}, "variables": []}}, "is_overload": false, "var": {".class": "Var", "flags": ["is_initialized_in_class"], "fullname": null, "name": "add", "type": {".class": "CallableType", "arg_kinds": [0, 0], "arg_names": ["self", "x"], "arg_types": [{".class": "Instance", "args": [{".class": "TypeVarType", "fullname": "typing._T", "id": 1, "name": "_T", "upper_bound": "builtins.object", "values": [], "variance": 0}], "type_ref": "typing.MutableSet"}, {".class": "TypeVarType", "fullname": "typing._T", "id": 1, "name": "_T", "upper_bound": "builtins.object", "values": [], "variance": 0}], "bound_args": [], "def_extras": {"first_arg": "self"}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "add of MutableSet", "ret_type": {".class": "NoneTyp"}, "variables": []}}}}, "clear": {".class": "SymbolTableNode", "kind": "Mdef", "node": {".class": "FuncDef", "arg_kinds": [0], "arg_names": ["self"], "flags": [], "fullname": "typing.MutableSet.clear", "name": "clear", "type": {".class": "CallableType", "arg_kinds": [0], "arg_names": ["self"], "arg_types": [{".class": "Instance", "args": [{".class": "TypeVarType", "fullname": "typing._T", "id": 1, "name": "_T", "upper_bound": "builtins.object", "values": [], "variance": 0}], "type_ref": "typing.MutableSet"}], "bound_args": [], "def_extras": {"first_arg": "self"}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "clear of MutableSet", "ret_type": {".class": "NoneTyp"}, "variables": []}}}, "discard": {".class": "SymbolTableNode", "kind": "Mdef", "node": {".class": "Decorator", "func": {".class": "FuncDef", "arg_kinds": [0, 0], "arg_names": ["self", "x"], "flags": ["is_decorated", "is_abstract"], "fullname": "typing.MutableSet.discard", "name": "discard", "type": {".class": "CallableType", "arg_kinds": [0, 0], "arg_names": ["self", "x"], "arg_types": [{".class": "Instance", "args": [{".class": "TypeVarType", "fullname": "typing._T", "id": 1, "name": "_T", "upper_bound": "builtins.object", "values": [], "variance": 0}], "type_ref": "typing.MutableSet"}, {".class": "TypeVarType", "fullname": "typing._T", "id": 1, "name": "_T", "upper_bound": "builtins.object", "values": [], "variance": 0}], "bound_args": [], "def_extras": {"first_arg": "self"}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "discard of MutableSet", "ret_type": {".class": "NoneTyp"}, "variables": []}}, "is_overload": false, "var": {".class": "Var", "flags": ["is_initialized_in_class"], "fullname": null, "name": "discard", "type": {".class": "CallableType", "arg_kinds": [0, 0], "arg_names": ["self", "x"], "arg_types": [{".class": "Instance", "args": [{".class": "TypeVarType", "fullname": "typing._T", "id": 1, "name": "_T", "upper_bound": "builtins.object", "values": [], "variance": 0}], "type_ref": "typing.MutableSet"}, {".class": "TypeVarType", "fullname": "typing._T", "id": 1, "name": "_T", "upper_bound": "builtins.object", "values": [], "variance": 0}], "bound_args": [], "def_extras": {"first_arg": "self"}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "discard of MutableSet", "ret_type": {".class": "NoneTyp"}, "variables": []}}}}, "pop": {".class": "SymbolTableNode", "kind": "Mdef", "node": {".class": "FuncDef", "arg_kinds": [0], "arg_names": ["self"], "flags": [], "fullname": "typing.MutableSet.pop", "name": "pop", "type": {".class": "CallableType", "arg_kinds": [0], "arg_names": ["self"], "arg_types": [{".class": "Instance", "args": [{".class": "TypeVarType", "fullname": "typing._T", "id": 1, "name": "_T", "upper_bound": "builtins.object", "values": [], "variance": 0}], "type_ref": "typing.MutableSet"}], "bound_args": [], "def_extras": {"first_arg": "self"}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "pop of MutableSet", "ret_type": {".class": "TypeVarType", "fullname": "typing._T", "id": 1, "name": "_T", "upper_bound": "builtins.object", "values": [], "variance": 0}, "variables": []}}}, "remove": {".class": "SymbolTableNode", "kind": "Mdef", "node": {".class": "FuncDef", "arg_kinds": [0, 0], "arg_names": ["self", "element"], "flags": [], "fullname": "typing.MutableSet.remove", "name": "remove", "type": {".class": "CallableType", "arg_kinds": [0, 0], "arg_names": ["self", "element"], "arg_types": [{".class": "Instance", "args": [{".class": "TypeVarType", "fullname": "typing._T", "id": 1, "name": "_T", "upper_bound": "builtins.object", "values": [], "variance": 0}], "type_ref": "typing.MutableSet"}, {".class": "TypeVarType", "fullname": "typing._T", "id": 1, "name": "_T", "upper_bound": "builtins.object", "values": [], "variance": 0}], "bound_args": [], "def_extras": {"first_arg": "self"}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "remove of MutableSet", "ret_type": {".class": "NoneTyp"}, "variables": []}}}}, "tuple_type": null, "type_vars": ["_T"], "typeddict_type": null}}, "NamedTuple": {".class": "SymbolTableNode", "kind": "Gdef", "node": {".class": "TypeInfo", "_promote": null, "abstract_attributes": [], "bases": [{".class": "Instance", "args": [{".class": "AnyType", "missing_import_name": null, "source_any": null, "type_of_any": 4}], "type_ref": "builtins.tuple"}], "declared_metaclass": null, "defn": {".class": "ClassDef", "fullname": "typing.NamedTuple", "name": "NamedTuple", "type_vars": []}, "flags": [], "fullname": "typing.NamedTuple", "metaclass_type": null, "metadata": {}, "module_name": "typing", "mro": ["typing.NamedTuple", "builtins.tuple", "typing.Sequence", "typing.Collection", "typing.Iterable", "typing.Container", "typing.Reversible", "builtins.object"], "names": {".class": "SymbolTable", "__init__": {".class": "SymbolTableNode", "kind": "Mdef", "node": {".class": "FuncDef", "arg_kinds": [0, 0, 1, 5, 5, 4], "arg_names": ["self", "typename", "fields", "verbose", "rename", "kwargs"], "flags": [], "fullname": "typing.NamedTuple.__init__", "name": "__init__", "type": {".class": "CallableType", "arg_kinds": [0, 0, 1, 5, 5, 4], "arg_names": ["self", "typename", "fields", "verbose", "rename", "kwargs"], "arg_types": ["typing.NamedTuple", "builtins.str", {".class": "Instance", "args": [{".class": "TupleType", "fallback": {".class": "Instance", "args": [{".class": "AnyType", "missing_import_name": null, "source_any": null, "type_of_any": 6}], "type_ref": "builtins.tuple"}, "implicit": false, "items": ["builtins.str", {".class": "AnyType", "missing_import_name": null, "source_any": null, "type_of_any": 2}]}], "type_ref": "typing.Iterable"}, "builtins.bool", "builtins.bool", {".class": "AnyType", "missing_import_name": null, "source_any": null, "type_of_any": 2}], "bound_args": [], "def_extras": {"first_arg": "self"}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "__init__ of NamedTuple", "ret_type": {".class": "NoneTyp"}, "variables": []}}}, "_asdict": {".class": "SymbolTableNode", "kind": "Mdef", "node": {".class": "FuncDef", "arg_kinds": [0], "arg_names": ["self"], "flags": [], "fullname": "typing.NamedTuple._asdict", "name": "_asdict", "type": {".class": "CallableType", "arg_kinds": [0], "arg_names": ["self"], "arg_types": ["typing.NamedTuple"], "bound_args": [], "def_extras": {"first_arg": "self"}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "_asdict of NamedTuple", "ret_type": {".class": "Instance", "args": ["builtins.str", {".class": "AnyType", "missing_import_name": null, "source_any": null, "type_of_any": 2}], "type_ref": "collections.OrderedDict"}, "variables": []}}}, "_field_defaults": {".class": "SymbolTableNode", "kind": "Mdef", "node": {".class": "Var", "flags": ["is_initialized_in_class"], "fullname": "typing.NamedTuple._field_defaults", "name": "_field_defaults", "type": {".class": "Instance", "args": ["builtins.str", {".class": "AnyType", "missing_import_name": null, "source_any": null, "type_of_any": 2}], "type_ref": "builtins.dict"}}}, "_field_types": {".class": "SymbolTableNode", "kind": "Mdef", "node": {".class": "Var", "flags": ["is_initialized_in_class"], "fullname": "typing.NamedTuple._field_types", "name": "_field_types", "type": {".class": "Instance", "args": ["builtins.str", {".class": "TypeType", "item": {".class": "AnyType", "missing_import_name": null, "source_any": null, "type_of_any": 2}}], "type_ref": "collections.OrderedDict"}}}, "_fields": {".class": "SymbolTableNode", "kind": "Mdef", "node": {".class": "Var", "flags": ["is_initialized_in_class"], "fullname": "typing.NamedTuple._fields", "name": "_fields", "type": {".class": "Instance", "args": ["builtins.str"], "type_ref": "builtins.tuple"}}}, "_make": {".class": "SymbolTableNode", "kind": "Mdef", "node": {".class": "Decorator", "func": {".class": "FuncDef", "arg_kinds": [0, 0], "arg_names": ["cls", "iterable"], "flags": ["is_class", "is_decorated"], "fullname": "typing.NamedTuple._make", "name": "_make", "type": {".class": "CallableType", "arg_kinds": [0, 0], "arg_names": ["cls", "iterable"], "arg_types": [{".class": "TypeType", "item": {".class": "TypeVarType", "fullname": "typing._T", "id": -1, "name": "_T", "upper_bound": "builtins.object", "values": [], "variance": 0}}, {".class": "Instance", "args": [{".class": "AnyType", "missing_import_name": null, "source_any": null, "type_of_any": 2}], "type_ref": "typing.Iterable"}], "bound_args": [], "def_extras": {"first_arg": "cls"}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "_make of NamedTuple", "ret_type": {".class": "TypeVarType", "fullname": "typing._T", "id": -1, "name": "_T", "upper_bound": "builtins.object", "values": [], "variance": 0}, "variables": [{".class": "TypeVarDef", "fullname": "typing._T", "id": -1, "name": "_T", "upper_bound": "builtins.object", "values": [], "variance": 0}]}}, "is_overload": false, "var": {".class": "Var", "flags": ["is_initialized_in_class", "is_classmethod"], "fullname": null, "name": "_make", "type": {".class": "CallableType", "arg_kinds": [0, 0], "arg_names": ["cls", "iterable"], "arg_types": [{".class": "TypeType", "item": {".class": "TypeVarType", "fullname": "typing._T", "id": -1, "name": "_T", "upper_bound": "builtins.object", "values": [], "variance": 0}}, {".class": "Instance", "args": [{".class": "AnyType", "missing_import_name": null, "source_any": null, "type_of_any": 2}], "type_ref": "typing.Iterable"}], "bound_args": [], "def_extras": {"first_arg": "cls"}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "_make of NamedTuple", "ret_type": {".class": "TypeVarType", "fullname": "typing._T", "id": -1, "name": "_T", "upper_bound": "builtins.object", "values": [], "variance": 0}, "variables": [{".class": "TypeVarDef", "fullname": "typing._T", "id": -1, "name": "_T", "upper_bound": "builtins.object", "values": [], "variance": 0}]}}}}, "_replace": {".class": "SymbolTableNode", "kind": "Mdef", "node": {".class": "FuncDef", "arg_kinds": [0, 4], "arg_names": ["self", "kwargs"], "flags": [], "fullname": "typing.NamedTuple._replace", "name": "_replace", "type": {".class": "CallableType", "arg_kinds": [0, 4], "arg_names": ["self", "kwargs"], "arg_types": [{".class": "TypeVarType", "fullname": "typing._T", "id": -1, "name": "_T", "upper_bound": "builtins.object", "values": [], "variance": 0}, {".class": "AnyType", "missing_import_name": null, "source_any": null, "type_of_any": 2}], "bound_args": [], "def_extras": {"first_arg": "self"}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "_replace of NamedTuple", "ret_type": {".class": "TypeVarType", "fullname": "typing._T", "id": -1, "name": "_T", "upper_bound": "builtins.object", "values": [], "variance": 0}, "variables": [{".class": "TypeVarDef", "fullname": "typing._T", "id": -1, "name": "_T", "upper_bound": "builtins.object", "values": [], "variance": 0}]}}}, "_source": {".class": "SymbolTableNode", "kind": "Mdef", "node": {".class": "Var", "flags": ["is_initialized_in_class"], "fullname": "typing.NamedTuple._source", "name": "_source", "type": "builtins.str"}}}, "tuple_type": null, "type_vars": [], "typeddict_type": null}}, "NewType": {".class": "SymbolTableNode", "kind": "Gdef", "node": {".class": "FuncDef", "arg_kinds": [0, 0], "arg_names": ["name", "tp"], "flags": [], "fullname": "typing.NewType", "name": "NewType", "type": {".class": "CallableType", "arg_kinds": [0, 0], "arg_names": ["name", "tp"], "arg_types": ["builtins.str", {".class": "TypeType", "item": {".class": "TypeVarType", "fullname": "typing._T", "id": -1, "name": "_T", "upper_bound": "builtins.object", "values": [], "variance": 0}}], "bound_args": [], "def_extras": {"first_arg": null}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "NewType", "ret_type": {".class": "TypeType", "item": {".class": "TypeVarType", "fullname": "typing._T", "id": -1, "name": "_T", "upper_bound": "builtins.object", "values": [], "variance": 0}}, "variables": [{".class": "TypeVarDef", "fullname": "typing._T", "id": -1, "name": "_T", "upper_bound": "builtins.object", "values": [], "variance": 0}]}}}, "NoReturn": {".class": "SymbolTableNode", "kind": "Gdef", "node": {".class": "TypeAlias", "alias_tvars": [], "column": 0, "fullname": "typing.NoReturn", "line": 32, "no_args": false, "normalized": false, "target": {".class": "NoneTyp"}}}, "Optional": {".class": "SymbolTableNode", "kind": "Gdef", "node": {".class": "Var", "flags": [], "fullname": "typing.Optional", "name": "Optional", "type": "typing.TypeAlias"}}, "Pattern": {".class": "SymbolTableNode", "kind": "Gdef", "node": {".class": "TypeInfo", "_promote": null, "abstract_attributes": [], "bases": ["builtins.object"], "declared_metaclass": null, "defn": {".class": "ClassDef", "fullname": "typing.Pattern", "name": "Pattern", "type_vars": [{".class": "TypeVarDef", "fullname": "typing.AnyStr", "id": 1, "name": "AnyStr", "upper_bound": "builtins.object", "values": ["builtins.str", "builtins.bytes"], "variance": 0}]}, "flags": [], "fullname": "typing.Pattern", "metaclass_type": null, "metadata": {}, "module_name": "typing", "mro": ["typing.Pattern", "builtins.object"], "names": {".class": "SymbolTable", "findall": {".class": "SymbolTableNode", "kind": "Mdef", "node": {".class": "FuncDef", "arg_kinds": [0, 0, 1, 1], "arg_names": ["self", "string", "pos", "endpos"], "flags": [], "fullname": "typing.Pattern.findall", "name": "findall", "type": {".class": "CallableType", "arg_kinds": [0, 0, 1, 1], "arg_names": ["self", "string", "pos", "endpos"], "arg_types": [{".class": "Instance", "args": [{".class": "TypeVarType", "fullname": "typing.AnyStr", "id": 1, "name": "AnyStr", "upper_bound": "builtins.object", "values": ["builtins.str", "builtins.bytes"], "variance": 0}], "type_ref": "typing.Pattern"}, {".class": "TypeVarType", "fullname": "typing.AnyStr", "id": 1, "name": "AnyStr", "upper_bound": "builtins.object", "values": ["builtins.str", "builtins.bytes"], "variance": 0}, "builtins.int", "builtins.int"], "bound_args": [], "def_extras": {"first_arg": "self"}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "findall of Pattern", "ret_type": {".class": "Instance", "args": [{".class": "AnyType", "missing_import_name": null, "source_any": null, "type_of_any": 2}], "type_ref": "builtins.list"}, "variables": []}}}, "finditer": {".class": "SymbolTableNode", "kind": "Mdef", "node": {".class": "FuncDef", "arg_kinds": [0, 0, 1, 1], "arg_names": ["self", "string", "pos", "endpos"], "flags": [], "fullname": "typing.Pattern.finditer", "name": "finditer", "type": {".class": "CallableType", "arg_kinds": [0, 0, 1, 1], "arg_names": ["self", "string", "pos", "endpos"], "arg_types": [{".class": "Instance", "args": [{".class": "TypeVarType", "fullname": "typing.AnyStr", "id": 1, "name": "AnyStr", "upper_bound": "builtins.object", "values": ["builtins.str", "builtins.bytes"], "variance": 0}], "type_ref": "typing.Pattern"}, {".class": "TypeVarType", "fullname": "typing.AnyStr", "id": 1, "name": "AnyStr", "upper_bound": "builtins.object", "values": ["builtins.str", "builtins.bytes"], "variance": 0}, "builtins.int", "builtins.int"], "bound_args": [], "def_extras": {"first_arg": "self"}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "finditer of Pattern", "ret_type": {".class": "Instance", "args": [{".class": "Instance", "args": [{".class": "TypeVarType", "fullname": "typing.AnyStr", "id": 1, "name": "AnyStr", "upper_bound": "builtins.object", "values": ["builtins.str", "builtins.bytes"], "variance": 0}], "type_ref": "typing.Match"}], "type_ref": "typing.Iterator"}, "variables": []}}}, "flags": {".class": "SymbolTableNode", "kind": "Mdef", "node": {".class": "Var", "flags": ["is_initialized_in_class"], "fullname": "typing.Pattern.flags", "name": "flags", "type": "builtins.int"}}, "fullmatch": {".class": "SymbolTableNode", "kind": "Mdef", "node": {".class": "FuncDef", "arg_kinds": [0, 0, 1, 1], "arg_names": ["self", "string", "pos", "endpos"], "flags": [], "fullname": "typing.Pattern.fullmatch", "name": "fullmatch", "type": {".class": "CallableType", "arg_kinds": [0, 0, 1, 1], "arg_names": ["self", "string", "pos", "endpos"], "arg_types": [{".class": "Instance", "args": [{".class": "TypeVarType", "fullname": "typing.AnyStr", "id": 1, "name": "AnyStr", "upper_bound": "builtins.object", "values": ["builtins.str", "builtins.bytes"], "variance": 0}], "type_ref": "typing.Pattern"}, {".class": "TypeVarType", "fullname": "typing.AnyStr", "id": 1, "name": "AnyStr", "upper_bound": "builtins.object", "values": ["builtins.str", "builtins.bytes"], "variance": 0}, "builtins.int", "builtins.int"], "bound_args": [], "def_extras": {"first_arg": "self"}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "fullmatch of Pattern", "ret_type": {".class": "UnionType", "items": [{".class": "Instance", "args": [{".class": "TypeVarType", "fullname": "typing.AnyStr", "id": 1, "name": "AnyStr", "upper_bound": "builtins.object", "values": ["builtins.str", "builtins.bytes"], "variance": 0}], "type_ref": "typing.Match"}, {".class": "NoneTyp"}]}, "variables": []}}}, "groupindex": {".class": "SymbolTableNode", "kind": "Mdef", "node": {".class": "Var", "flags": ["is_initialized_in_class"], "fullname": "typing.Pattern.groupindex", "name": "groupindex", "type": {".class": "Instance", "args": ["builtins.str", "builtins.int"], "type_ref": "typing.Mapping"}}}, "groups": {".class": "SymbolTableNode", "kind": "Mdef", "node": {".class": "Var", "flags": ["is_initialized_in_class"], "fullname": "typing.Pattern.groups", "name": "groups", "type": "builtins.int"}}, "match": {".class": "SymbolTableNode", "kind": "Mdef", "node": {".class": "FuncDef", "arg_kinds": [0, 0, 1, 1], "arg_names": ["self", "string", "pos", "endpos"], "flags": [], "fullname": "typing.Pattern.match", "name": "match", "type": {".class": "CallableType", "arg_kinds": [0, 0, 1, 1], "arg_names": ["self", "string", "pos", "endpos"], "arg_types": [{".class": "Instance", "args": [{".class": "TypeVarType", "fullname": "typing.AnyStr", "id": 1, "name": "AnyStr", "upper_bound": "builtins.object", "values": ["builtins.str", "builtins.bytes"], "variance": 0}], "type_ref": "typing.Pattern"}, {".class": "TypeVarType", "fullname": "typing.AnyStr", "id": 1, "name": "AnyStr", "upper_bound": "builtins.object", "values": ["builtins.str", "builtins.bytes"], "variance": 0}, "builtins.int", "builtins.int"], "bound_args": [], "def_extras": {"first_arg": "self"}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "match of Pattern", "ret_type": {".class": "UnionType", "items": [{".class": "Instance", "args": [{".class": "TypeVarType", "fullname": "typing.AnyStr", "id": 1, "name": "AnyStr", "upper_bound": "builtins.object", "values": ["builtins.str", "builtins.bytes"], "variance": 0}], "type_ref": "typing.Match"}, {".class": "NoneTyp"}]}, "variables": []}}}, "pattern": {".class": "SymbolTableNode", "kind": "Mdef", "node": {".class": "Var", "flags": ["is_initialized_in_class"], "fullname": "typing.Pattern.pattern", "name": "pattern", "type": {".class": "TypeVarType", "fullname": "typing.AnyStr", "id": 1, "name": "AnyStr", "upper_bound": "builtins.object", "values": ["builtins.str", "builtins.bytes"], "variance": 0}}}, "search": {".class": "SymbolTableNode", "kind": "Mdef", "node": {".class": "FuncDef", "arg_kinds": [0, 0, 1, 1], "arg_names": ["self", "string", "pos", "endpos"], "flags": [], "fullname": "typing.Pattern.search", "name": "search", "type": {".class": "CallableType", "arg_kinds": [0, 0, 1, 1], "arg_names": ["self", "string", "pos", "endpos"], "arg_types": [{".class": "Instance", "args": [{".class": "TypeVarType", "fullname": "typing.AnyStr", "id": 1, "name": "AnyStr", "upper_bound": "builtins.object", "values": ["builtins.str", "builtins.bytes"], "variance": 0}], "type_ref": "typing.Pattern"}, {".class": "TypeVarType", "fullname": "typing.AnyStr", "id": 1, "name": "AnyStr", "upper_bound": "builtins.object", "values": ["builtins.str", "builtins.bytes"], "variance": 0}, "builtins.int", "builtins.int"], "bound_args": [], "def_extras": {"first_arg": "self"}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "search of Pattern", "ret_type": {".class": "UnionType", "items": [{".class": "Instance", "args": [{".class": "TypeVarType", "fullname": "typing.AnyStr", "id": 1, "name": "AnyStr", "upper_bound": "builtins.object", "values": ["builtins.str", "builtins.bytes"], "variance": 0}], "type_ref": "typing.Match"}, {".class": "NoneTyp"}]}, "variables": []}}}, "split": {".class": "SymbolTableNode", "kind": "Mdef", "node": {".class": "FuncDef", "arg_kinds": [0, 0, 1], "arg_names": ["self", "string", "maxsplit"], "flags": [], "fullname": "typing.Pattern.split", "name": "split", "type": {".class": "CallableType", "arg_kinds": [0, 0, 1], "arg_names": ["self", "string", "maxsplit"], "arg_types": [{".class": "Instance", "args": [{".class": "TypeVarType", "fullname": "typing.AnyStr", "id": 1, "name": "AnyStr", "upper_bound": "builtins.object", "values": ["builtins.str", "builtins.bytes"], "variance": 0}], "type_ref": "typing.Pattern"}, {".class": "TypeVarType", "fullname": "typing.AnyStr", "id": 1, "name": "AnyStr", "upper_bound": "builtins.object", "values": ["builtins.str", "builtins.bytes"], "variance": 0}, "builtins.int"], "bound_args": [], "def_extras": {"first_arg": "self"}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "split of Pattern", "ret_type": {".class": "Instance", "args": [{".class": "TypeVarType", "fullname": "typing.AnyStr", "id": 1, "name": "AnyStr", "upper_bound": "builtins.object", "values": ["builtins.str", "builtins.bytes"], "variance": 0}], "type_ref": "builtins.list"}, "variables": []}}}, "sub": {".class": "SymbolTableNode", "kind": "Mdef", "node": {".class": "OverloadedFuncDef", "flags": [], "fullname": "typing.Pattern.sub", "impl": null, "items": [{".class": "Decorator", "func": {".class": "FuncDef", "arg_kinds": [0, 0, 0, 1], "arg_names": ["self", "repl", "string", "count"], "flags": ["is_overload", "is_decorated"], "fullname": "typing.Pattern.sub", "name": "sub", "type": {".class": "CallableType", "arg_kinds": [0, 0, 0, 1], "arg_names": ["self", "repl", "string", "count"], "arg_types": [{".class": "Instance", "args": [{".class": "TypeVarType", "fullname": "typing.AnyStr", "id": 1, "name": "AnyStr", "upper_bound": "builtins.object", "values": ["builtins.str", "builtins.bytes"], "variance": 0}], "type_ref": "typing.Pattern"}, {".class": "TypeVarType", "fullname": "typing.AnyStr", "id": 1, "name": "AnyStr", "upper_bound": "builtins.object", "values": ["builtins.str", "builtins.bytes"], "variance": 0}, {".class": "TypeVarType", "fullname": "typing.AnyStr", "id": 1, "name": "AnyStr", "upper_bound": "builtins.object", "values": ["builtins.str", "builtins.bytes"], "variance": 0}, "builtins.int"], "bound_args": [], "def_extras": {"first_arg": "self"}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "sub of Pattern", "ret_type": {".class": "TypeVarType", "fullname": "typing.AnyStr", "id": 1, "name": "AnyStr", "upper_bound": "builtins.object", "values": ["builtins.str", "builtins.bytes"], "variance": 0}, "variables": []}}, "is_overload": true, "var": {".class": "Var", "flags": [], "fullname": null, "name": "sub", "type": null}}, {".class": "Decorator", "func": {".class": "FuncDef", "arg_kinds": [0, 0, 0, 1], "arg_names": ["self", "repl", "string", "count"], "flags": ["is_overload", "is_decorated"], "fullname": "typing.Pattern.sub", "name": "sub", "type": {".class": "CallableType", "arg_kinds": [0, 0, 0, 1], "arg_names": ["self", "repl", "string", "count"], "arg_types": [{".class": "Instance", "args": [{".class": "TypeVarType", "fullname": "typing.AnyStr", "id": 1, "name": "AnyStr", "upper_bound": "builtins.object", "values": ["builtins.str", "builtins.bytes"], "variance": 0}], "type_ref": "typing.Pattern"}, {".class": "CallableType", "arg_kinds": [0], "arg_names": [null], "arg_types": [{".class": "Instance", "args": [{".class": "TypeVarType", "fullname": "typing.AnyStr", "id": 1, "name": "AnyStr", "upper_bound": "builtins.object", "values": ["builtins.str", "builtins.bytes"], "variance": 0}], "type_ref": "typing.Match"}], "bound_args": [], "def_extras": {}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": null, "ret_type": {".class": "TypeVarType", "fullname": "typing.AnyStr", "id": 1, "name": "AnyStr", "upper_bound": "builtins.object", "values": ["builtins.str", "builtins.bytes"], "variance": 0}, "variables": []}, {".class": "TypeVarType", "fullname": "typing.AnyStr", "id": 1, "name": "AnyStr", "upper_bound": "builtins.object", "values": ["builtins.str", "builtins.bytes"], "variance": 0}, "builtins.int"], "bound_args": [], "def_extras": {"first_arg": "self"}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "sub of Pattern", "ret_type": {".class": "TypeVarType", "fullname": "typing.AnyStr", "id": 1, "name": "AnyStr", "upper_bound": "builtins.object", "values": ["builtins.str", "builtins.bytes"], "variance": 0}, "variables": []}}, "is_overload": true, "var": {".class": "Var", "flags": [], "fullname": null, "name": "sub", "type": null}}], "type": {".class": "Overloaded", "items": [{".class": "CallableType", "arg_kinds": [0, 0, 0, 1], "arg_names": ["self", "repl", "string", "count"], "arg_types": [{".class": "Instance", "args": [{".class": "TypeVarType", "fullname": "typing.AnyStr", "id": 1, "name": "AnyStr", "upper_bound": "builtins.object", "values": ["builtins.str", "builtins.bytes"], "variance": 0}], "type_ref": "typing.Pattern"}, {".class": "TypeVarType", "fullname": "typing.AnyStr", "id": 1, "name": "AnyStr", "upper_bound": "builtins.object", "values": ["builtins.str", "builtins.bytes"], "variance": 0}, {".class": "TypeVarType", "fullname": "typing.AnyStr", "id": 1, "name": "AnyStr", "upper_bound": "builtins.object", "values": ["builtins.str", "builtins.bytes"], "variance": 0}, "builtins.int"], "bound_args": [], "def_extras": {"first_arg": "self"}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "sub of Pattern", "ret_type": {".class": "TypeVarType", "fullname": "typing.AnyStr", "id": 1, "name": "AnyStr", "upper_bound": "builtins.object", "values": ["builtins.str", "builtins.bytes"], "variance": 0}, "variables": []}, {".class": "CallableType", "arg_kinds": [0, 0, 0, 1], "arg_names": ["self", "repl", "string", "count"], "arg_types": [{".class": "Instance", "args": [{".class": "TypeVarType", "fullname": "typing.AnyStr", "id": 1, "name": "AnyStr", "upper_bound": "builtins.object", "values": ["builtins.str", "builtins.bytes"], "variance": 0}], "type_ref": "typing.Pattern"}, {".class": "CallableType", "arg_kinds": [0], "arg_names": [null], "arg_types": [{".class": "Instance", "args": [{".class": "TypeVarType", "fullname": "typing.AnyStr", "id": 1, "name": "AnyStr", "upper_bound": "builtins.object", "values": ["builtins.str", "builtins.bytes"], "variance": 0}], "type_ref": "typing.Match"}], "bound_args": [], "def_extras": {}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": null, "ret_type": {".class": "TypeVarType", "fullname": "typing.AnyStr", "id": 1, "name": "AnyStr", "upper_bound": "builtins.object", "values": ["builtins.str", "builtins.bytes"], "variance": 0}, "variables": []}, {".class": "TypeVarType", "fullname": "typing.AnyStr", "id": 1, "name": "AnyStr", "upper_bound": "builtins.object", "values": ["builtins.str", "builtins.bytes"], "variance": 0}, "builtins.int"], "bound_args": [], "def_extras": {"first_arg": "self"}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "sub of Pattern", "ret_type": {".class": "TypeVarType", "fullname": "typing.AnyStr", "id": 1, "name": "AnyStr", "upper_bound": "builtins.object", "values": ["builtins.str", "builtins.bytes"], "variance": 0}, "variables": []}]}}}, "subn": {".class": "SymbolTableNode", "kind": "Mdef", "node": {".class": "OverloadedFuncDef", "flags": [], "fullname": "typing.Pattern.subn", "impl": null, "items": [{".class": "Decorator", "func": {".class": "FuncDef", "arg_kinds": [0, 0, 0, 1], "arg_names": ["self", "repl", "string", "count"], "flags": ["is_overload", "is_decorated"], "fullname": "typing.Pattern.subn", "name": "subn", "type": {".class": "CallableType", "arg_kinds": [0, 0, 0, 1], "arg_names": ["self", "repl", "string", "count"], "arg_types": [{".class": "Instance", "args": [{".class": "TypeVarType", "fullname": "typing.AnyStr", "id": 1, "name": "AnyStr", "upper_bound": "builtins.object", "values": ["builtins.str", "builtins.bytes"], "variance": 0}], "type_ref": "typing.Pattern"}, {".class": "TypeVarType", "fullname": "typing.AnyStr", "id": 1, "name": "AnyStr", "upper_bound": "builtins.object", "values": ["builtins.str", "builtins.bytes"], "variance": 0}, {".class": "TypeVarType", "fullname": "typing.AnyStr", "id": 1, "name": "AnyStr", "upper_bound": "builtins.object", "values": ["builtins.str", "builtins.bytes"], "variance": 0}, "builtins.int"], "bound_args": [], "def_extras": {"first_arg": "self"}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "subn of Pattern", "ret_type": {".class": "TupleType", "fallback": {".class": "Instance", "args": [{".class": "AnyType", "missing_import_name": null, "source_any": null, "type_of_any": 6}], "type_ref": "builtins.tuple"}, "implicit": false, "items": [{".class": "TypeVarType", "fullname": "typing.AnyStr", "id": 1, "name": "AnyStr", "upper_bound": "builtins.object", "values": ["builtins.str", "builtins.bytes"], "variance": 0}, "builtins.int"]}, "variables": []}}, "is_overload": true, "var": {".class": "Var", "flags": [], "fullname": null, "name": "subn", "type": null}}, {".class": "Decorator", "func": {".class": "FuncDef", "arg_kinds": [0, 0, 0, 1], "arg_names": ["self", "repl", "string", "count"], "flags": ["is_overload", "is_decorated"], "fullname": "typing.Pattern.subn", "name": "subn", "type": {".class": "CallableType", "arg_kinds": [0, 0, 0, 1], "arg_names": ["self", "repl", "string", "count"], "arg_types": [{".class": "Instance", "args": [{".class": "TypeVarType", "fullname": "typing.AnyStr", "id": 1, "name": "AnyStr", "upper_bound": "builtins.object", "values": ["builtins.str", "builtins.bytes"], "variance": 0}], "type_ref": "typing.Pattern"}, {".class": "CallableType", "arg_kinds": [0], "arg_names": [null], "arg_types": [{".class": "Instance", "args": [{".class": "TypeVarType", "fullname": "typing.AnyStr", "id": 1, "name": "AnyStr", "upper_bound": "builtins.object", "values": ["builtins.str", "builtins.bytes"], "variance": 0}], "type_ref": "typing.Match"}], "bound_args": [], "def_extras": {}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": null, "ret_type": {".class": "TypeVarType", "fullname": "typing.AnyStr", "id": 1, "name": "AnyStr", "upper_bound": "builtins.object", "values": ["builtins.str", "builtins.bytes"], "variance": 0}, "variables": []}, {".class": "TypeVarType", "fullname": "typing.AnyStr", "id": 1, "name": "AnyStr", "upper_bound": "builtins.object", "values": ["builtins.str", "builtins.bytes"], "variance": 0}, "builtins.int"], "bound_args": [], "def_extras": {"first_arg": "self"}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "subn of Pattern", "ret_type": {".class": "TupleType", "fallback": {".class": "Instance", "args": [{".class": "AnyType", "missing_import_name": null, "source_any": null, "type_of_any": 6}], "type_ref": "builtins.tuple"}, "implicit": false, "items": [{".class": "TypeVarType", "fullname": "typing.AnyStr", "id": 1, "name": "AnyStr", "upper_bound": "builtins.object", "values": ["builtins.str", "builtins.bytes"], "variance": 0}, "builtins.int"]}, "variables": []}}, "is_overload": true, "var": {".class": "Var", "flags": [], "fullname": null, "name": "subn", "type": null}}], "type": {".class": "Overloaded", "items": [{".class": "CallableType", "arg_kinds": [0, 0, 0, 1], "arg_names": ["self", "repl", "string", "count"], "arg_types": [{".class": "Instance", "args": [{".class": "TypeVarType", "fullname": "typing.AnyStr", "id": 1, "name": "AnyStr", "upper_bound": "builtins.object", "values": ["builtins.str", "builtins.bytes"], "variance": 0}], "type_ref": "typing.Pattern"}, {".class": "TypeVarType", "fullname": "typing.AnyStr", "id": 1, "name": "AnyStr", "upper_bound": "builtins.object", "values": ["builtins.str", "builtins.bytes"], "variance": 0}, {".class": "TypeVarType", "fullname": "typing.AnyStr", "id": 1, "name": "AnyStr", "upper_bound": "builtins.object", "values": ["builtins.str", "builtins.bytes"], "variance": 0}, "builtins.int"], "bound_args": [], "def_extras": {"first_arg": "self"}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "subn of Pattern", "ret_type": {".class": "TupleType", "fallback": {".class": "Instance", "args": [{".class": "AnyType", "missing_import_name": null, "source_any": null, "type_of_any": 6}], "type_ref": "builtins.tuple"}, "implicit": false, "items": [{".class": "TypeVarType", "fullname": "typing.AnyStr", "id": 1, "name": "AnyStr", "upper_bound": "builtins.object", "values": ["builtins.str", "builtins.bytes"], "variance": 0}, "builtins.int"]}, "variables": []}, {".class": "CallableType", "arg_kinds": [0, 0, 0, 1], "arg_names": ["self", "repl", "string", "count"], "arg_types": [{".class": "Instance", "args": [{".class": "TypeVarType", "fullname": "typing.AnyStr", "id": 1, "name": "AnyStr", "upper_bound": "builtins.object", "values": ["builtins.str", "builtins.bytes"], "variance": 0}], "type_ref": "typing.Pattern"}, {".class": "CallableType", "arg_kinds": [0], "arg_names": [null], "arg_types": [{".class": "Instance", "args": [{".class": "TypeVarType", "fullname": "typing.AnyStr", "id": 1, "name": "AnyStr", "upper_bound": "builtins.object", "values": ["builtins.str", "builtins.bytes"], "variance": 0}], "type_ref": "typing.Match"}], "bound_args": [], "def_extras": {}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": null, "ret_type": {".class": "TypeVarType", "fullname": "typing.AnyStr", "id": 1, "name": "AnyStr", "upper_bound": "builtins.object", "values": ["builtins.str", "builtins.bytes"], "variance": 0}, "variables": []}, {".class": "TypeVarType", "fullname": "typing.AnyStr", "id": 1, "name": "AnyStr", "upper_bound": "builtins.object", "values": ["builtins.str", "builtins.bytes"], "variance": 0}, "builtins.int"], "bound_args": [], "def_extras": {"first_arg": "self"}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "subn of Pattern", "ret_type": {".class": "TupleType", "fallback": {".class": "Instance", "args": [{".class": "AnyType", "missing_import_name": null, "source_any": null, "type_of_any": 6}], "type_ref": "builtins.tuple"}, "implicit": false, "items": [{".class": "TypeVarType", "fullname": "typing.AnyStr", "id": 1, "name": "AnyStr", "upper_bound": "builtins.object", "values": ["builtins.str", "builtins.bytes"], "variance": 0}, "builtins.int"]}, "variables": []}]}}}}, "tuple_type": null, "type_vars": ["AnyStr"], "typeddict_type": null}}, "Protocol": {".class": "SymbolTableNode", "kind": "Gdef", "node": {".class": "Var", "flags": [], "fullname": "typing.Protocol", "name": "Protocol", "type": "typing._SpecialForm"}}, "Reversible": {".class": "SymbolTableNode", "kind": "Gdef", "node": {".class": "TypeInfo", "_promote": null, "abstract_attributes": ["__reversed__"], "bases": ["builtins.object"], "declared_metaclass": null, "defn": {".class": "ClassDef", "fullname": "typing.Reversible", "name": "Reversible", "type_vars": [{".class": "TypeVarDef", "fullname": "typing._T_co", "id": 1, "name": "_T_co", "upper_bound": "builtins.object", "values": [], "variance": 1}]}, "flags": ["is_abstract", "is_protocol", "runtime_protocol"], "fullname": "typing.Reversible", "metaclass_type": "abc.ABCMeta", "metadata": {}, "module_name": "typing", "mro": ["typing.Reversible", "builtins.object"], "names": {".class": "SymbolTable", "__reversed__": {".class": "SymbolTableNode", "kind": "Mdef", "node": {".class": "Decorator", "func": {".class": "FuncDef", "arg_kinds": [0], "arg_names": ["self"], "flags": ["is_decorated", "is_abstract"], "fullname": "typing.Reversible.__reversed__", "name": "__reversed__", "type": {".class": "CallableType", "arg_kinds": [0], "arg_names": [null], "arg_types": [{".class": "Instance", "args": [{".class": "TypeVarType", "fullname": "typing._T_co", "id": 1, "name": "_T_co", "upper_bound": "builtins.object", "values": [], "variance": 1}], "type_ref": "typing.Reversible"}], "bound_args": [], "def_extras": {"first_arg": "self"}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "__reversed__ of Reversible", "ret_type": {".class": "Instance", "args": [{".class": "TypeVarType", "fullname": "typing._T_co", "id": 1, "name": "_T_co", "upper_bound": "builtins.object", "values": [], "variance": 1}], "type_ref": "typing.Iterator"}, "variables": []}}, "is_overload": false, "var": {".class": "Var", "flags": ["is_initialized_in_class"], "fullname": null, "name": "__reversed__", "type": {".class": "CallableType", "arg_kinds": [0], "arg_names": [null], "arg_types": [{".class": "Instance", "args": [{".class": "TypeVarType", "fullname": "typing._T_co", "id": 1, "name": "_T_co", "upper_bound": "builtins.object", "values": [], "variance": 1}], "type_ref": "typing.Reversible"}], "bound_args": [], "def_extras": {"first_arg": "self"}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "__reversed__ of Reversible", "ret_type": {".class": "Instance", "args": [{".class": "TypeVarType", "fullname": "typing._T_co", "id": 1, "name": "_T_co", "upper_bound": "builtins.object", "values": [], "variance": 1}], "type_ref": "typing.Iterator"}, "variables": []}}}}}, "tuple_type": null, "type_vars": ["_T_co"], "typeddict_type": null}}, "Sequence": {".class": "SymbolTableNode", "kind": "Gdef", "node": {".class": "TypeInfo", "_promote": null, "abstract_attributes": ["__getitem__", "__len__"], "bases": [{".class": "Instance", "args": [{".class": "TypeVarType", "fullname": "typing._T_co", "id": 1, "name": "_T_co", "upper_bound": "builtins.object", "values": [], "variance": 1}], "type_ref": "typing.Collection"}, {".class": "Instance", "args": [{".class": "TypeVarType", "fullname": "typing._T_co", "id": 1, "name": "_T_co", "upper_bound": "builtins.object", "values": [], "variance": 1}], "type_ref": "typing.Reversible"}], "declared_metaclass": null, "defn": {".class": "ClassDef", "fullname": "typing.Sequence", "name": "Sequence", "type_vars": [{".class": "TypeVarDef", "fullname": "typing._T_co", "id": 1, "name": "_T_co", "upper_bound": "builtins.object", "values": [], "variance": 1}]}, "flags": ["is_abstract"], "fullname": "typing.Sequence", "metaclass_type": "abc.ABCMeta", "metadata": {}, "module_name": "typing", "mro": ["typing.Sequence", "typing.Collection", "typing.Iterable", "typing.Container", "typing.Reversible", "builtins.object"], "names": {".class": "SymbolTable", "__contains__": {".class": "SymbolTableNode", "kind": "Mdef", "node": {".class": "FuncDef", "arg_kinds": [0, 0], "arg_names": ["self", "x"], "flags": [], "fullname": "typing.Sequence.__contains__", "name": "__contains__", "type": {".class": "CallableType", "arg_kinds": [0, 0], "arg_names": [null, null], "arg_types": [{".class": "Instance", "args": [{".class": "TypeVarType", "fullname": "typing._T_co", "id": 1, "name": "_T_co", "upper_bound": "builtins.object", "values": [], "variance": 1}], "type_ref": "typing.Sequence"}, "builtins.object"], "bound_args": [], "def_extras": {"first_arg": "self"}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "__contains__ of Sequence", "ret_type": "builtins.bool", "variables": []}}}, "__getitem__": {".class": "SymbolTableNode", "kind": "Mdef", "node": {".class": "OverloadedFuncDef", "flags": [], "fullname": "typing.Sequence.__getitem__", "impl": null, "items": [{".class": "Decorator", "func": {".class": "FuncDef", "arg_kinds": [0, 0], "arg_names": ["self", "i"], "flags": ["is_overload", "is_decorated", "is_abstract"], "fullname": "typing.Sequence.__getitem__", "name": "__getitem__", "type": {".class": "CallableType", "arg_kinds": [0, 0], "arg_names": [null, null], "arg_types": [{".class": "Instance", "args": [{".class": "TypeVarType", "fullname": "typing._T_co", "id": 1, "name": "_T_co", "upper_bound": "builtins.object", "values": [], "variance": 1}], "type_ref": "typing.Sequence"}, "builtins.int"], "bound_args": [], "def_extras": {"first_arg": "self"}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "__getitem__ of Sequence", "ret_type": {".class": "TypeVarType", "fullname": "typing._T_co", "id": 1, "name": "_T_co", "upper_bound": "builtins.object", "values": [], "variance": 1}, "variables": []}}, "is_overload": true, "var": {".class": "Var", "flags": [], "fullname": null, "name": "__getitem__", "type": null}}, {".class": "Decorator", "func": {".class": "FuncDef", "arg_kinds": [0, 0], "arg_names": ["self", "s"], "flags": ["is_overload", "is_decorated", "is_abstract"], "fullname": "typing.Sequence.__getitem__", "name": "__getitem__", "type": {".class": "CallableType", "arg_kinds": [0, 0], "arg_names": [null, null], "arg_types": [{".class": "Instance", "args": [{".class": "TypeVarType", "fullname": "typing._T_co", "id": 1, "name": "_T_co", "upper_bound": "builtins.object", "values": [], "variance": 1}], "type_ref": "typing.Sequence"}, "builtins.slice"], "bound_args": [], "def_extras": {"first_arg": "self"}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "__getitem__ of Sequence", "ret_type": {".class": "Instance", "args": [{".class": "TypeVarType", "fullname": "typing._T_co", "id": 1, "name": "_T_co", "upper_bound": "builtins.object", "values": [], "variance": 1}], "type_ref": "typing.Sequence"}, "variables": []}}, "is_overload": true, "var": {".class": "Var", "flags": [], "fullname": null, "name": "__getitem__", "type": null}}], "type": {".class": "Overloaded", "items": [{".class": "CallableType", "arg_kinds": [0, 0], "arg_names": [null, null], "arg_types": [{".class": "Instance", "args": [{".class": "TypeVarType", "fullname": "typing._T_co", "id": 1, "name": "_T_co", "upper_bound": "builtins.object", "values": [], "variance": 1}], "type_ref": "typing.Sequence"}, "builtins.int"], "bound_args": [], "def_extras": {"first_arg": "self"}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "__getitem__ of Sequence", "ret_type": {".class": "TypeVarType", "fullname": "typing._T_co", "id": 1, "name": "_T_co", "upper_bound": "builtins.object", "values": [], "variance": 1}, "variables": []}, {".class": "CallableType", "arg_kinds": [0, 0], "arg_names": [null, null], "arg_types": [{".class": "Instance", "args": [{".class": "TypeVarType", "fullname": "typing._T_co", "id": 1, "name": "_T_co", "upper_bound": "builtins.object", "values": [], "variance": 1}], "type_ref": "typing.Sequence"}, "builtins.slice"], "bound_args": [], "def_extras": {"first_arg": "self"}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "__getitem__ of Sequence", "ret_type": {".class": "Instance", "args": [{".class": "TypeVarType", "fullname": "typing._T_co", "id": 1, "name": "_T_co", "upper_bound": "builtins.object", "values": [], "variance": 1}], "type_ref": "typing.Sequence"}, "variables": []}]}}}, "__iter__": {".class": "SymbolTableNode", "kind": "Mdef", "node": {".class": "FuncDef", "arg_kinds": [0], "arg_names": ["self"], "flags": [], "fullname": "typing.Sequence.__iter__", "name": "__iter__", "type": {".class": "CallableType", "arg_kinds": [0], "arg_names": [null], "arg_types": [{".class": "Instance", "args": [{".class": "TypeVarType", "fullname": "typing._T_co", "id": 1, "name": "_T_co", "upper_bound": "builtins.object", "values": [], "variance": 1}], "type_ref": "typing.Sequence"}], "bound_args": [], "def_extras": {"first_arg": "self"}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "__iter__ of Sequence", "ret_type": {".class": "Instance", "args": [{".class": "TypeVarType", "fullname": "typing._T_co", "id": 1, "name": "_T_co", "upper_bound": "builtins.object", "values": [], "variance": 1}], "type_ref": "typing.Iterator"}, "variables": []}}}, "__reversed__": {".class": "SymbolTableNode", "kind": "Mdef", "node": {".class": "FuncDef", "arg_kinds": [0], "arg_names": ["self"], "flags": [], "fullname": "typing.Sequence.__reversed__", "name": "__reversed__", "type": {".class": "CallableType", "arg_kinds": [0], "arg_names": [null], "arg_types": [{".class": "Instance", "args": [{".class": "TypeVarType", "fullname": "typing._T_co", "id": 1, "name": "_T_co", "upper_bound": "builtins.object", "values": [], "variance": 1}], "type_ref": "typing.Sequence"}], "bound_args": [], "def_extras": {"first_arg": "self"}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "__reversed__ of Sequence", "ret_type": {".class": "Instance", "args": [{".class": "TypeVarType", "fullname": "typing._T_co", "id": 1, "name": "_T_co", "upper_bound": "builtins.object", "values": [], "variance": 1}], "type_ref": "typing.Iterator"}, "variables": []}}}, "count": {".class": "SymbolTableNode", "kind": "Mdef", "node": {".class": "FuncDef", "arg_kinds": [0, 0], "arg_names": ["self", "x"], "flags": [], "fullname": "typing.Sequence.count", "name": "count", "type": {".class": "CallableType", "arg_kinds": [0, 0], "arg_names": ["self", "x"], "arg_types": [{".class": "Instance", "args": [{".class": "TypeVarType", "fullname": "typing._T_co", "id": 1, "name": "_T_co", "upper_bound": "builtins.object", "values": [], "variance": 1}], "type_ref": "typing.Sequence"}, {".class": "AnyType", "missing_import_name": null, "source_any": null, "type_of_any": 2}], "bound_args": [], "def_extras": {"first_arg": "self"}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "count of Sequence", "ret_type": "builtins.int", "variables": []}}}, "index": {".class": "SymbolTableNode", "kind": "Mdef", "node": {".class": "FuncDef", "arg_kinds": [0, 0, 1, 1], "arg_names": ["self", "x", "start", "end"], "flags": ["is_conditional"], "fullname": "typing.Sequence.index", "name": "index", "type": {".class": "CallableType", "arg_kinds": [0, 0, 1, 1], "arg_names": ["self", "x", "start", "end"], "arg_types": [{".class": "Instance", "args": [{".class": "TypeVarType", "fullname": "typing._T_co", "id": 1, "name": "_T_co", "upper_bound": "builtins.object", "values": [], "variance": 1}], "type_ref": "typing.Sequence"}, {".class": "AnyType", "missing_import_name": null, "source_any": null, "type_of_any": 2}, "builtins.int", "builtins.int"], "bound_args": [], "def_extras": {"first_arg": "self"}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "index of Sequence", "ret_type": "builtins.int", "variables": []}}}}, "tuple_type": null, "type_vars": ["_T_co"], "typeddict_type": null}}, "Set": {".class": "SymbolTableNode", "kind": "Gdef", "node": {".class": "TypeAlias", "alias_tvars": [], "column": -1, "fullname": "typing.Set", "line": -1, "no_args": true, "normalized": true, "target": {".class": "Instance", "args": [{".class": "AnyType", "missing_import_name": null, "source_any": null, "type_of_any": 4}], "type_ref": "builtins.set"}}}, "Sized": {".class": "SymbolTableNode", "kind": "Gdef", "node": {".class": "TypeInfo", "_promote": null, "abstract_attributes": ["__len__"], "bases": ["builtins.object"], "declared_metaclass": "abc.ABCMeta", "defn": {".class": "ClassDef", "fullname": "typing.Sized", "name": "Sized", "type_vars": []}, "flags": ["is_abstract", "is_protocol", "runtime_protocol"], "fullname": "typing.Sized", "metaclass_type": "abc.ABCMeta", "metadata": {}, "module_name": "typing", "mro": ["typing.Sized", "builtins.object"], "names": {".class": "SymbolTable", "__len__": {".class": "SymbolTableNode", "kind": "Mdef", "node": {".class": "Decorator", "func": {".class": "FuncDef", "arg_kinds": [0], "arg_names": ["self"], "flags": ["is_decorated", "is_abstract"], "fullname": "typing.Sized.__len__", "name": "__len__", "type": {".class": "CallableType", "arg_kinds": [0], "arg_names": [null], "arg_types": ["typing.Sized"], "bound_args": [], "def_extras": {"first_arg": "self"}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "__len__ of Sized", "ret_type": "builtins.int", "variables": []}}, "is_overload": false, "var": {".class": "Var", "flags": ["is_initialized_in_class"], "fullname": null, "name": "__len__", "type": {".class": "CallableType", "arg_kinds": [0], "arg_names": [null], "arg_types": ["typing.Sized"], "bound_args": [], "def_extras": {"first_arg": "self"}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "__len__ of Sized", "ret_type": "builtins.int", "variables": []}}}}}, "tuple_type": null, "type_vars": [], "typeddict_type": null}}, "SupportsAbs": {".class": "SymbolTableNode", "kind": "Gdef", "node": {".class": "TypeInfo", "_promote": null, "abstract_attributes": ["__abs__"], "bases": ["builtins.object"], "declared_metaclass": null, "defn": {".class": "ClassDef", "fullname": "typing.SupportsAbs", "name": "SupportsAbs", "type_vars": [{".class": "TypeVarDef", "fullname": "typing._T_co", "id": 1, "name": "_T_co", "upper_bound": "builtins.object", "values": [], "variance": 1}]}, "flags": ["is_abstract", "is_protocol", "runtime_protocol"], "fullname": "typing.SupportsAbs", "metaclass_type": "abc.ABCMeta", "metadata": {}, "module_name": "typing", "mro": ["typing.SupportsAbs", "builtins.object"], "names": {".class": "SymbolTable", "__abs__": {".class": "SymbolTableNode", "kind": "Mdef", "node": {".class": "Decorator", "func": {".class": "FuncDef", "arg_kinds": [0], "arg_names": ["self"], "flags": ["is_decorated", "is_abstract"], "fullname": "typing.SupportsAbs.__abs__", "name": "__abs__", "type": {".class": "CallableType", "arg_kinds": [0], "arg_names": [null], "arg_types": [{".class": "Instance", "args": [{".class": "TypeVarType", "fullname": "typing._T_co", "id": 1, "name": "_T_co", "upper_bound": "builtins.object", "values": [], "variance": 1}], "type_ref": "typing.SupportsAbs"}], "bound_args": [], "def_extras": {"first_arg": "self"}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "__abs__ of SupportsAbs", "ret_type": {".class": "TypeVarType", "fullname": "typing._T_co", "id": 1, "name": "_T_co", "upper_bound": "builtins.object", "values": [], "variance": 1}, "variables": []}}, "is_overload": false, "var": {".class": "Var", "flags": ["is_initialized_in_class"], "fullname": null, "name": "__abs__", "type": {".class": "CallableType", "arg_kinds": [0], "arg_names": [null], "arg_types": [{".class": "Instance", "args": [{".class": "TypeVarType", "fullname": "typing._T_co", "id": 1, "name": "_T_co", "upper_bound": "builtins.object", "values": [], "variance": 1}], "type_ref": "typing.SupportsAbs"}], "bound_args": [], "def_extras": {"first_arg": "self"}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "__abs__ of SupportsAbs", "ret_type": {".class": "TypeVarType", "fullname": "typing._T_co", "id": 1, "name": "_T_co", "upper_bound": "builtins.object", "values": [], "variance": 1}, "variables": []}}}}}, "tuple_type": null, "type_vars": ["_T_co"], "typeddict_type": null}}, "SupportsBytes": {".class": "SymbolTableNode", "kind": "Gdef", "node": {".class": "TypeInfo", "_promote": null, "abstract_attributes": ["__bytes__"], "bases": ["builtins.object"], "declared_metaclass": "abc.ABCMeta", "defn": {".class": "ClassDef", "fullname": "typing.SupportsBytes", "name": "SupportsBytes", "type_vars": []}, "flags": ["is_abstract", "is_protocol", "runtime_protocol"], "fullname": "typing.SupportsBytes", "metaclass_type": "abc.ABCMeta", "metadata": {}, "module_name": "typing", "mro": ["typing.SupportsBytes", "builtins.object"], "names": {".class": "SymbolTable", "__bytes__": {".class": "SymbolTableNode", "kind": "Mdef", "node": {".class": "Decorator", "func": {".class": "FuncDef", "arg_kinds": [0], "arg_names": ["self"], "flags": ["is_decorated", "is_abstract"], "fullname": "typing.SupportsBytes.__bytes__", "name": "__bytes__", "type": {".class": "CallableType", "arg_kinds": [0], "arg_names": ["self"], "arg_types": ["typing.SupportsBytes"], "bound_args": [], "def_extras": {"first_arg": "self"}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "__bytes__ of SupportsBytes", "ret_type": "builtins.bytes", "variables": []}}, "is_overload": false, "var": {".class": "Var", "flags": ["is_initialized_in_class"], "fullname": null, "name": "__bytes__", "type": {".class": "CallableType", "arg_kinds": [0], "arg_names": ["self"], "arg_types": ["typing.SupportsBytes"], "bound_args": [], "def_extras": {"first_arg": "self"}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "__bytes__ of SupportsBytes", "ret_type": "builtins.bytes", "variables": []}}}}}, "tuple_type": null, "type_vars": [], "typeddict_type": null}}, "SupportsComplex": {".class": "SymbolTableNode", "kind": "Gdef", "node": {".class": "TypeInfo", "_promote": null, "abstract_attributes": ["__complex__"], "bases": ["builtins.object"], "declared_metaclass": "abc.ABCMeta", "defn": {".class": "ClassDef", "fullname": "typing.SupportsComplex", "name": "SupportsComplex", "type_vars": []}, "flags": ["is_abstract", "is_protocol", "runtime_protocol"], "fullname": "typing.SupportsComplex", "metaclass_type": "abc.ABCMeta", "metadata": {}, "module_name": "typing", "mro": ["typing.SupportsComplex", "builtins.object"], "names": {".class": "SymbolTable", "__complex__": {".class": "SymbolTableNode", "kind": "Mdef", "node": {".class": "Decorator", "func": {".class": "FuncDef", "arg_kinds": [0], "arg_names": ["self"], "flags": ["is_decorated", "is_abstract"], "fullname": "typing.SupportsComplex.__complex__", "name": "__complex__", "type": {".class": "CallableType", "arg_kinds": [0], "arg_names": [null], "arg_types": ["typing.SupportsComplex"], "bound_args": [], "def_extras": {"first_arg": "self"}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "__complex__ of SupportsComplex", "ret_type": "builtins.complex", "variables": []}}, "is_overload": false, "var": {".class": "Var", "flags": ["is_initialized_in_class"], "fullname": null, "name": "__complex__", "type": {".class": "CallableType", "arg_kinds": [0], "arg_names": [null], "arg_types": ["typing.SupportsComplex"], "bound_args": [], "def_extras": {"first_arg": "self"}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "__complex__ of SupportsComplex", "ret_type": "builtins.complex", "variables": []}}}}}, "tuple_type": null, "type_vars": [], "typeddict_type": null}}, "SupportsFloat": {".class": "SymbolTableNode", "kind": "Gdef", "node": {".class": "TypeInfo", "_promote": null, "abstract_attributes": ["__float__"], "bases": ["builtins.object"], "declared_metaclass": "abc.ABCMeta", "defn": {".class": "ClassDef", "fullname": "typing.SupportsFloat", "name": "SupportsFloat", "type_vars": []}, "flags": ["is_abstract", "is_protocol", "runtime_protocol"], "fullname": "typing.SupportsFloat", "metaclass_type": "abc.ABCMeta", "metadata": {}, "module_name": "typing", "mro": ["typing.SupportsFloat", "builtins.object"], "names": {".class": "SymbolTable", "__float__": {".class": "SymbolTableNode", "kind": "Mdef", "node": {".class": "Decorator", "func": {".class": "FuncDef", "arg_kinds": [0], "arg_names": ["self"], "flags": ["is_decorated", "is_abstract"], "fullname": "typing.SupportsFloat.__float__", "name": "__float__", "type": {".class": "CallableType", "arg_kinds": [0], "arg_names": [null], "arg_types": ["typing.SupportsFloat"], "bound_args": [], "def_extras": {"first_arg": "self"}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "__float__ of SupportsFloat", "ret_type": "builtins.float", "variables": []}}, "is_overload": false, "var": {".class": "Var", "flags": ["is_initialized_in_class"], "fullname": null, "name": "__float__", "type": {".class": "CallableType", "arg_kinds": [0], "arg_names": [null], "arg_types": ["typing.SupportsFloat"], "bound_args": [], "def_extras": {"first_arg": "self"}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "__float__ of SupportsFloat", "ret_type": "builtins.float", "variables": []}}}}}, "tuple_type": null, "type_vars": [], "typeddict_type": null}}, "SupportsInt": {".class": "SymbolTableNode", "kind": "Gdef", "node": {".class": "TypeInfo", "_promote": null, "abstract_attributes": ["__int__"], "bases": ["builtins.object"], "declared_metaclass": "abc.ABCMeta", "defn": {".class": "ClassDef", "fullname": "typing.SupportsInt", "name": "SupportsInt", "type_vars": []}, "flags": ["is_abstract", "is_protocol", "runtime_protocol"], "fullname": "typing.SupportsInt", "metaclass_type": "abc.ABCMeta", "metadata": {}, "module_name": "typing", "mro": ["typing.SupportsInt", "builtins.object"], "names": {".class": "SymbolTable", "__int__": {".class": "SymbolTableNode", "kind": "Mdef", "node": {".class": "Decorator", "func": {".class": "FuncDef", "arg_kinds": [0], "arg_names": ["self"], "flags": ["is_decorated", "is_abstract"], "fullname": "typing.SupportsInt.__int__", "name": "__int__", "type": {".class": "CallableType", "arg_kinds": [0], "arg_names": [null], "arg_types": ["typing.SupportsInt"], "bound_args": [], "def_extras": {"first_arg": "self"}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "__int__ of SupportsInt", "ret_type": "builtins.int", "variables": []}}, "is_overload": false, "var": {".class": "Var", "flags": ["is_initialized_in_class"], "fullname": null, "name": "__int__", "type": {".class": "CallableType", "arg_kinds": [0], "arg_names": [null], "arg_types": ["typing.SupportsInt"], "bound_args": [], "def_extras": {"first_arg": "self"}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "__int__ of SupportsInt", "ret_type": "builtins.int", "variables": []}}}}}, "tuple_type": null, "type_vars": [], "typeddict_type": null}}, "SupportsRound": {".class": "SymbolTableNode", "kind": "Gdef", "node": {".class": "TypeInfo", "_promote": null, "abstract_attributes": ["__round__"], "bases": ["builtins.object"], "declared_metaclass": null, "defn": {".class": "ClassDef", "fullname": "typing.SupportsRound", "name": "SupportsRound", "type_vars": [{".class": "TypeVarDef", "fullname": "typing._T_co", "id": 1, "name": "_T_co", "upper_bound": "builtins.object", "values": [], "variance": 1}]}, "flags": ["is_abstract", "is_protocol", "runtime_protocol"], "fullname": "typing.SupportsRound", "metaclass_type": "abc.ABCMeta", "metadata": {}, "module_name": "typing", "mro": ["typing.SupportsRound", "builtins.object"], "names": {".class": "SymbolTable", "__round__": {".class": "SymbolTableNode", "kind": "Mdef", "node": {".class": "Decorator", "func": {".class": "FuncDef", "arg_kinds": [0, 1], "arg_names": ["self", "ndigits"], "flags": ["is_decorated", "is_abstract"], "fullname": "typing.SupportsRound.__round__", "name": "__round__", "type": {".class": "CallableType", "arg_kinds": [0, 1], "arg_names": ["self", "ndigits"], "arg_types": [{".class": "Instance", "args": [{".class": "TypeVarType", "fullname": "typing._T_co", "id": 1, "name": "_T_co", "upper_bound": "builtins.object", "values": [], "variance": 1}], "type_ref": "typing.SupportsRound"}, "builtins.int"], "bound_args": [], "def_extras": {"first_arg": "self"}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "__round__ of SupportsRound", "ret_type": {".class": "TypeVarType", "fullname": "typing._T_co", "id": 1, "name": "_T_co", "upper_bound": "builtins.object", "values": [], "variance": 1}, "variables": []}}, "is_overload": false, "var": {".class": "Var", "flags": ["is_initialized_in_class"], "fullname": null, "name": "__round__", "type": {".class": "CallableType", "arg_kinds": [0, 1], "arg_names": ["self", "ndigits"], "arg_types": [{".class": "Instance", "args": [{".class": "TypeVarType", "fullname": "typing._T_co", "id": 1, "name": "_T_co", "upper_bound": "builtins.object", "values": [], "variance": 1}], "type_ref": "typing.SupportsRound"}, "builtins.int"], "bound_args": [], "def_extras": {"first_arg": "self"}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "__round__ of SupportsRound", "ret_type": {".class": "TypeVarType", "fullname": "typing._T_co", "id": 1, "name": "_T_co", "upper_bound": "builtins.object", "values": [], "variance": 1}, "variables": []}}}}}, "tuple_type": null, "type_vars": ["_T_co"], "typeddict_type": null}}, "TYPE_CHECKING": {".class": "SymbolTableNode", "kind": "Gdef", "node": {".class": "Var", "flags": [], "fullname": "typing.TYPE_CHECKING", "name": "TYPE_CHECKING", "type": "builtins.bool"}}, "Text": {".class": "SymbolTableNode", "kind": "Gdef", "node": {".class": "TypeAlias", "alias_tvars": [], "column": 0, "fullname": "typing.Text", "line": 403, "no_args": true, "normalized": false, "target": "builtins.str"}}, "TextIO": {".class": "SymbolTableNode", "kind": "Gdef", "node": {".class": "TypeInfo", "_promote": null, "abstract_attributes": ["__enter__", "__exit__", "__iter__", "__next__", "close", "fileno", "flush", "isatty", "read", "readable", "readline", "readlines", "seek", "seekable", "tell", "truncate", "writable", "write", "writelines"], "bases": [{".class": "Instance", "args": ["builtins.str"], "type_ref": "typing.IO"}], "declared_metaclass": null, "defn": {".class": "ClassDef", "fullname": "typing.TextIO", "name": "TextIO", "type_vars": []}, "flags": ["is_abstract"], "fullname": "typing.TextIO", "metaclass_type": "abc.ABCMeta", "metadata": {}, "module_name": "typing", "mro": ["typing.TextIO", "typing.IO", "typing.Iterator", "typing.Iterable", "builtins.object"], "names": {".class": "SymbolTable", "__enter__": {".class": "SymbolTableNode", "kind": "Mdef", "node": {".class": "Decorator", "func": {".class": "FuncDef", "arg_kinds": [0], "arg_names": ["self"], "flags": ["is_decorated", "is_abstract"], "fullname": "typing.TextIO.__enter__", "name": "__enter__", "type": {".class": "CallableType", "arg_kinds": [0], "arg_names": [null], "arg_types": ["typing.TextIO"], "bound_args": [], "def_extras": {"first_arg": "self"}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "__enter__ of TextIO", "ret_type": "typing.TextIO", "variables": []}}, "is_overload": false, "var": {".class": "Var", "flags": ["is_initialized_in_class"], "fullname": null, "name": "__enter__", "type": {".class": "CallableType", "arg_kinds": [0], "arg_names": [null], "arg_types": ["typing.TextIO"], "bound_args": [], "def_extras": {"first_arg": "self"}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "__enter__ of TextIO", "ret_type": "typing.TextIO", "variables": []}}}}, "buffer": {".class": "SymbolTableNode", "kind": "Mdef", "node": {".class": "Decorator", "func": {".class": "FuncDef", "arg_kinds": [0], "arg_names": ["self"], "flags": ["is_property", "is_decorated"], "fullname": "typing.TextIO.buffer", "name": "buffer", "type": {".class": "CallableType", "arg_kinds": [0], "arg_names": ["self"], "arg_types": ["typing.TextIO"], "bound_args": [], "def_extras": {"first_arg": "self"}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "buffer of TextIO", "ret_type": "typing.BinaryIO", "variables": []}}, "is_overload": false, "var": {".class": "Var", "flags": ["is_initialized_in_class", "is_property"], "fullname": null, "name": "buffer", "type": {".class": "CallableType", "arg_kinds": [0], "arg_names": ["self"], "arg_types": ["typing.TextIO"], "bound_args": [], "def_extras": {"first_arg": "self"}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "buffer of TextIO", "ret_type": "typing.BinaryIO", "variables": []}}}}, "encoding": {".class": "SymbolTableNode", "kind": "Mdef", "node": {".class": "Decorator", "func": {".class": "FuncDef", "arg_kinds": [0], "arg_names": ["self"], "flags": ["is_property", "is_decorated"], "fullname": "typing.TextIO.encoding", "name": "encoding", "type": {".class": "CallableType", "arg_kinds": [0], "arg_names": ["self"], "arg_types": ["typing.TextIO"], "bound_args": [], "def_extras": {"first_arg": "self"}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "encoding of TextIO", "ret_type": "builtins.str", "variables": []}}, "is_overload": false, "var": {".class": "Var", "flags": ["is_initialized_in_class", "is_property"], "fullname": null, "name": "encoding", "type": {".class": "CallableType", "arg_kinds": [0], "arg_names": ["self"], "arg_types": ["typing.TextIO"], "bound_args": [], "def_extras": {"first_arg": "self"}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "encoding of TextIO", "ret_type": "builtins.str", "variables": []}}}}, "errors": {".class": "SymbolTableNode", "kind": "Mdef", "node": {".class": "Decorator", "func": {".class": "FuncDef", "arg_kinds": [0], "arg_names": ["self"], "flags": ["is_property", "is_decorated"], "fullname": "typing.TextIO.errors", "name": "errors", "type": {".class": "CallableType", "arg_kinds": [0], "arg_names": ["self"], "arg_types": ["typing.TextIO"], "bound_args": [], "def_extras": {"first_arg": "self"}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "errors of TextIO", "ret_type": {".class": "UnionType", "items": ["builtins.str", {".class": "NoneTyp"}]}, "variables": []}}, "is_overload": false, "var": {".class": "Var", "flags": ["is_initialized_in_class", "is_property"], "fullname": null, "name": "errors", "type": {".class": "CallableType", "arg_kinds": [0], "arg_names": ["self"], "arg_types": ["typing.TextIO"], "bound_args": [], "def_extras": {"first_arg": "self"}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "errors of TextIO", "ret_type": {".class": "UnionType", "items": ["builtins.str", {".class": "NoneTyp"}]}, "variables": []}}}}, "line_buffering": {".class": "SymbolTableNode", "kind": "Mdef", "node": {".class": "Decorator", "func": {".class": "FuncDef", "arg_kinds": [0], "arg_names": ["self"], "flags": ["is_property", "is_decorated"], "fullname": "typing.TextIO.line_buffering", "name": "line_buffering", "type": {".class": "CallableType", "arg_kinds": [0], "arg_names": ["self"], "arg_types": ["typing.TextIO"], "bound_args": [], "def_extras": {"first_arg": "self"}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "line_buffering of TextIO", "ret_type": "builtins.int", "variables": []}}, "is_overload": false, "var": {".class": "Var", "flags": ["is_initialized_in_class", "is_property"], "fullname": null, "name": "line_buffering", "type": {".class": "CallableType", "arg_kinds": [0], "arg_names": ["self"], "arg_types": ["typing.TextIO"], "bound_args": [], "def_extras": {"first_arg": "self"}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "line_buffering of TextIO", "ret_type": "builtins.int", "variables": []}}}}, "newlines": {".class": "SymbolTableNode", "kind": "Mdef", "node": {".class": "Decorator", "func": {".class": "FuncDef", "arg_kinds": [0], "arg_names": ["self"], "flags": ["is_property", "is_decorated"], "fullname": "typing.TextIO.newlines", "name": "newlines", "type": {".class": "CallableType", "arg_kinds": [0], "arg_names": ["self"], "arg_types": ["typing.TextIO"], "bound_args": [], "def_extras": {"first_arg": "self"}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "newlines of TextIO", "ret_type": {".class": "AnyType", "missing_import_name": null, "source_any": null, "type_of_any": 2}, "variables": []}}, "is_overload": false, "var": {".class": "Var", "flags": ["is_initialized_in_class", "is_property"], "fullname": null, "name": "newlines", "type": {".class": "CallableType", "arg_kinds": [0], "arg_names": ["self"], "arg_types": ["typing.TextIO"], "bound_args": [], "def_extras": {"first_arg": "self"}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "newlines of TextIO", "ret_type": {".class": "AnyType", "missing_import_name": null, "source_any": null, "type_of_any": 2}, "variables": []}}}}}, "tuple_type": null, "type_vars": [], "typeddict_type": null}}, "TracebackType": {".class": "SymbolTableNode", "cross_ref": "types.TracebackType", "kind": "Gdef", "module_hidden": true, "module_public": false}, "Tuple": {".class": "SymbolTableNode", "kind": "Gdef", "node": {".class": "Var", "flags": [], "fullname": "typing.Tuple", "name": "Tuple", "type": "typing._SpecialForm"}}, "Type": {".class": "SymbolTableNode", "kind": "Gdef", "node": {".class": "Var", "flags": [], "fullname": "typing.Type", "name": "Type", "type": "typing._SpecialForm"}}, "TypeAlias": {".class": "SymbolTableNode", "kind": "Gdef", "node": {".class": "TypeInfo", "_promote": null, "abstract_attributes": [], "bases": ["builtins.object"], "declared_metaclass": null, "defn": {".class": "ClassDef", "fullname": "typing.TypeAlias", "name": "TypeAlias", "type_vars": []}, "flags": [], "fullname": "typing.TypeAlias", "metaclass_type": null, "metadata": {}, "module_name": "typing", "mro": ["typing.TypeAlias", "builtins.object"], "names": {".class": "SymbolTable", "__getitem__": {".class": "SymbolTableNode", "kind": "Mdef", "node": {".class": "FuncDef", "arg_kinds": [0, 0], "arg_names": ["self", "typeargs"], "flags": [], "fullname": "typing.TypeAlias.__getitem__", "name": "__getitem__", "type": {".class": "CallableType", "arg_kinds": [0, 0], "arg_names": [null, null], "arg_types": ["typing.TypeAlias", {".class": "AnyType", "missing_import_name": null, "source_any": null, "type_of_any": 2}], "bound_args": [], "def_extras": {"first_arg": "self"}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "__getitem__ of TypeAlias", "ret_type": {".class": "AnyType", "missing_import_name": null, "source_any": null, "type_of_any": 2}, "variables": []}}}, "__init__": {".class": "SymbolTableNode", "kind": "Mdef", "node": {".class": "FuncDef", "arg_kinds": [0, 0], "arg_names": ["self", "target_type"], "flags": [], "fullname": "typing.TypeAlias.__init__", "name": "__init__", "type": {".class": "CallableType", "arg_kinds": [0, 0], "arg_names": ["self", "target_type"], "arg_types": ["typing.TypeAlias", "builtins.type"], "bound_args": [], "def_extras": {"first_arg": "self"}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "__init__ of TypeAlias", "ret_type": {".class": "NoneTyp"}, "variables": []}}}}, "tuple_type": null, "type_vars": [], "typeddict_type": null}}, "TypeVar": {".class": "SymbolTableNode", "kind": "Gdef", "node": {".class": "Var", "flags": [], "fullname": "typing.TypeVar", "name": "TypeVar", "type": "builtins.object"}}, "Union": {".class": "SymbolTableNode", "kind": "Gdef", "node": {".class": "Var", "flags": [], "fullname": "typing.Union", "name": "Union", "type": "typing.TypeAlias"}}, "ValuesView": {".class": "SymbolTableNode", "kind": "Gdef", "node": {".class": "TypeInfo", "_promote": null, "abstract_attributes": [], "bases": ["typing.MappingView", {".class": "Instance", "args": [{".class": "TypeVarType", "fullname": "typing._VT_co", "id": 1, "name": "_VT_co", "upper_bound": "builtins.object", "values": [], "variance": 1}], "type_ref": "typing.Iterable"}], "declared_metaclass": null, "defn": {".class": "ClassDef", "fullname": "typing.ValuesView", "name": "ValuesView", "type_vars": [{".class": "TypeVarDef", "fullname": "typing._VT_co", "id": 1, "name": "_VT_co", "upper_bound": "builtins.object", "values": [], "variance": 1}]}, "flags": [], "fullname": "typing.ValuesView", "metaclass_type": "abc.ABCMeta", "metadata": {}, "module_name": "typing", "mro": ["typing.ValuesView", "typing.MappingView", "typing.Iterable", "builtins.object"], "names": {".class": "SymbolTable", "__contains__": {".class": "SymbolTableNode", "kind": "Mdef", "node": {".class": "FuncDef", "arg_kinds": [0, 0], "arg_names": ["self", "o"], "flags": [], "fullname": "typing.ValuesView.__contains__", "name": "__contains__", "type": {".class": "CallableType", "arg_kinds": [0, 0], "arg_names": [null, null], "arg_types": [{".class": "Instance", "args": [{".class": "TypeVarType", "fullname": "typing._VT_co", "id": 1, "name": "_VT_co", "upper_bound": "builtins.object", "values": [], "variance": 1}], "type_ref": "typing.ValuesView"}, "builtins.object"], "bound_args": [], "def_extras": {"first_arg": "self"}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "__contains__ of ValuesView", "ret_type": "builtins.bool", "variables": []}}}, "__iter__": {".class": "SymbolTableNode", "kind": "Mdef", "node": {".class": "FuncDef", "arg_kinds": [0], "arg_names": ["self"], "flags": [], "fullname": "typing.ValuesView.__iter__", "name": "__iter__", "type": {".class": "CallableType", "arg_kinds": [0], "arg_names": [null], "arg_types": [{".class": "Instance", "args": [{".class": "TypeVarType", "fullname": "typing._VT_co", "id": 1, "name": "_VT_co", "upper_bound": "builtins.object", "values": [], "variance": 1}], "type_ref": "typing.ValuesView"}], "bound_args": [], "def_extras": {"first_arg": "self"}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "__iter__ of ValuesView", "ret_type": {".class": "Instance", "args": [{".class": "TypeVarType", "fullname": "typing._VT_co", "id": 1, "name": "_VT_co", "upper_bound": "builtins.object", "values": [], "variance": 1}], "type_ref": "typing.Iterator"}, "variables": []}}}}, "tuple_type": null, "type_vars": ["_VT_co"], "typeddict_type": null}}, "_Collection": {".class": "SymbolTableNode", "kind": "Gdef", "node": {".class": "TypeAlias", "alias_tvars": [], "column": 4, "fullname": "typing._Collection", "line": 243, "no_args": true, "normalized": false, "target": {".class": "Instance", "args": [{".class": "AnyType", "missing_import_name": null, "source_any": null, "type_of_any": 4}], "type_ref": "typing.Collection"}}}, "_KT": {".class": "SymbolTableNode", "kind": "Gdef", "node": {".class": "TypeVarExpr", "fullname": "typing._KT", "name": "_KT", "upper_bound": "builtins.object", "values": [], "variance": 0}}, "_KT_co": {".class": "SymbolTableNode", "kind": "Gdef", "node": {".class": "TypeVarExpr", "fullname": "typing._KT_co", "name": "_KT_co", "upper_bound": "builtins.object", "values": [], "variance": 1}}, "_S": {".class": "SymbolTableNode", "kind": "Gdef", "node": {".class": "TypeVarExpr", "fullname": "typing._S", "name": "_S", "upper_bound": "builtins.object", "values": [], "variance": 0}}, "_SpecialForm": {".class": "SymbolTableNode", "kind": "Gdef", "node": {".class": "TypeInfo", "_promote": null, "abstract_attributes": [], "bases": ["builtins.object"], "declared_metaclass": null, "defn": {".class": "ClassDef", "fullname": "typing._SpecialForm", "name": "_SpecialForm", "type_vars": []}, "flags": [], "fullname": "typing._SpecialForm", "metaclass_type": null, "metadata": {}, "module_name": "typing", "mro": ["typing._SpecialForm", "builtins.object"], "names": {".class": "SymbolTable", "__getitem__": {".class": "SymbolTableNode", "kind": "Mdef", "node": {".class": "FuncDef", "arg_kinds": [0, 0], "arg_names": ["self", "typeargs"], "flags": [], "fullname": "typing._SpecialForm.__getitem__", "name": "__getitem__", "type": {".class": "CallableType", "arg_kinds": [0, 0], "arg_names": [null, null], "arg_types": ["typing._SpecialForm", {".class": "AnyType", "missing_import_name": null, "source_any": null, "type_of_any": 2}], "bound_args": [], "def_extras": {"first_arg": "self"}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "__getitem__ of _SpecialForm", "ret_type": {".class": "AnyType", "missing_import_name": null, "source_any": null, "type_of_any": 2}, "variables": []}}}}, "tuple_type": null, "type_vars": [], "typeddict_type": null}}, "_T": {".class": "SymbolTableNode", "kind": "Gdef", "node": {".class": "TypeVarExpr", "fullname": "typing._T", "name": "_T", "upper_bound": "builtins.object", "values": [], "variance": 0}}, "_TC": {".class": "SymbolTableNode", "kind": "Gdef", "node": {".class": "TypeVarExpr", "fullname": "typing._TC", "name": "_TC", "upper_bound": {".class": "TypeType", "item": "builtins.object"}, "values": [], "variance": 0}}, "_T_co": {".class": "SymbolTableNode", "kind": "Gdef", "node": {".class": "TypeVarExpr", "fullname": "typing._T_co", "name": "_T_co", "upper_bound": "builtins.object", "values": [], "variance": 1}}, "_T_contra": {".class": "SymbolTableNode", "kind": "Gdef", "node": {".class": "TypeVarExpr", "fullname": "typing._T_contra", "name": "_T_contra", "upper_bound": "builtins.object", "values": [], "variance": 2}}, "_VT": {".class": "SymbolTableNode", "kind": "Gdef", "node": {".class": "TypeVarExpr", "fullname": "typing._VT", "name": "_VT", "upper_bound": "builtins.object", "values": [], "variance": 0}}, "_VT_co": {".class": "SymbolTableNode", "kind": "Gdef", "node": {".class": "TypeVarExpr", "fullname": "typing._VT_co", "name": "_VT_co", "upper_bound": "builtins.object", "values": [], "variance": 1}}, "_V_co": {".class": "SymbolTableNode", "kind": "Gdef", "node": {".class": "TypeVarExpr", "fullname": "typing._V_co", "name": "_V_co", "upper_bound": "builtins.object", "values": [], "variance": 1}}, "__doc__": {".class": "SymbolTableNode", "kind": "Gdef", "node": {".class": "Var", "flags": [], "fullname": "typing.__doc__", "name": "__doc__", "type": "builtins.str"}}, "__file__": {".class": "SymbolTableNode", "kind": "Gdef", "node": {".class": "Var", "flags": [], "fullname": "typing.__file__", "name": "__file__", "type": "builtins.str"}}, "__name__": {".class": "SymbolTableNode", "kind": "Gdef", "node": {".class": "Var", "flags": [], "fullname": "typing.__name__", "name": "__name__", "type": "builtins.str"}}, "__package__": {".class": "SymbolTableNode", "kind": "Gdef", "node": {".class": "Var", "flags": [], "fullname": "typing.__package__", "name": "__package__", "type": "builtins.str"}}, "_promote": {".class": "SymbolTableNode", "kind": "Gdef", "node": {".class": "Var", "flags": [], "fullname": "typing._promote", "name": "_promote", "type": "builtins.object"}}, "abstractmethod": {".class": "SymbolTableNode", "cross_ref": "abc.abstractmethod", "kind": "Gdef", "module_hidden": true, "module_public": false}, "cast": {".class": "SymbolTableNode", "kind": "Gdef", "node": {".class": "OverloadedFuncDef", "flags": [], "fullname": "typing.cast", "impl": null, "items": [{".class": "Decorator", "func": {".class": "FuncDef", "arg_kinds": [0, 0], "arg_names": ["tp", "obj"], "flags": ["is_overload", "is_decorated"], "fullname": "typing.cast", "name": "cast", "type": {".class": "CallableType", "arg_kinds": [0, 0], "arg_names": ["tp", "obj"], "arg_types": [{".class": "TypeType", "item": {".class": "TypeVarType", "fullname": "typing._T", "id": -1, "name": "_T", "upper_bound": "builtins.object", "values": [], "variance": 0}}, {".class": "AnyType", "missing_import_name": null, "source_any": null, "type_of_any": 2}], "bound_args": [], "def_extras": {"first_arg": null}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "cast", "ret_type": {".class": "TypeVarType", "fullname": "typing._T", "id": -1, "name": "_T", "upper_bound": "builtins.object", "values": [], "variance": 0}, "variables": [{".class": "TypeVarDef", "fullname": "typing._T", "id": -1, "name": "_T", "upper_bound": "builtins.object", "values": [], "variance": 0}]}}, "is_overload": true, "var": {".class": "Var", "flags": [], "fullname": null, "name": "cast", "type": null}}, {".class": "Decorator", "func": {".class": "FuncDef", "arg_kinds": [0, 0], "arg_names": ["tp", "obj"], "flags": ["is_overload", "is_decorated"], "fullname": "typing.cast", "name": "cast", "type": {".class": "CallableType", "arg_kinds": [0, 0], "arg_names": ["tp", "obj"], "arg_types": ["builtins.str", {".class": "AnyType", "missing_import_name": null, "source_any": null, "type_of_any": 2}], "bound_args": [], "def_extras": {"first_arg": null}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "cast", "ret_type": {".class": "AnyType", "missing_import_name": null, "source_any": null, "type_of_any": 2}, "variables": []}}, "is_overload": true, "var": {".class": "Var", "flags": [], "fullname": null, "name": "cast", "type": null}}], "type": {".class": "Overloaded", "items": [{".class": "CallableType", "arg_kinds": [0, 0], "arg_names": ["tp", "obj"], "arg_types": [{".class": "TypeType", "item": {".class": "TypeVarType", "fullname": "typing._T", "id": -1, "name": "_T", "upper_bound": "builtins.object", "values": [], "variance": 0}}, {".class": "AnyType", "missing_import_name": null, "source_any": null, "type_of_any": 2}], "bound_args": [], "def_extras": {"first_arg": null}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "cast", "ret_type": {".class": "TypeVarType", "fullname": "typing._T", "id": -1, "name": "_T", "upper_bound": "builtins.object", "values": [], "variance": 0}, "variables": [{".class": "TypeVarDef", "fullname": "typing._T", "id": -1, "name": "_T", "upper_bound": "builtins.object", "values": [], "variance": 0}]}, {".class": "CallableType", "arg_kinds": [0, 0], "arg_names": ["tp", "obj"], "arg_types": ["builtins.str", {".class": "AnyType", "missing_import_name": null, "source_any": null, "type_of_any": 2}], "bound_args": [], "def_extras": {"first_arg": null}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "cast", "ret_type": {".class": "AnyType", "missing_import_name": null, "source_any": null, "type_of_any": 2}, "variables": []}]}}}, "collections": {".class": "SymbolTableNode", "cross_ref": "collections", "kind": "Gdef", "module_hidden": true, "module_public": false}, "get_type_hints": {".class": "SymbolTableNode", "kind": "Gdef", "node": {".class": "FuncDef", "arg_kinds": [0, 1, 1], "arg_names": ["obj", "globalns", "localns"], "flags": [], "fullname": "typing.get_type_hints", "name": "get_type_hints", "type": {".class": "CallableType", "arg_kinds": [0, 1, 1], "arg_names": ["obj", "globalns", "localns"], "arg_types": [{".class": "CallableType", "arg_kinds": [2, 4], "arg_names": [null, null], "arg_types": [{".class": "AnyType", "missing_import_name": null, "source_any": null, "type_of_any": 4}, {".class": "AnyType", "missing_import_name": null, "source_any": null, "type_of_any": 4}], "bound_args": [], "def_extras": {}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": true, "name": null, "ret_type": {".class": "AnyType", "missing_import_name": null, "source_any": null, "type_of_any": 4}, "variables": []}, {".class": "UnionType", "items": [{".class": "Instance", "args": ["builtins.str", {".class": "AnyType", "missing_import_name": null, "source_any": null, "type_of_any": 2}], "type_ref": "builtins.dict"}, {".class": "NoneTyp"}]}, {".class": "UnionType", "items": [{".class": "Instance", "args": ["builtins.str", {".class": "AnyType", "missing_import_name": null, "source_any": null, "type_of_any": 2}], "type_ref": "builtins.dict"}, {".class": "NoneTyp"}]}], "bound_args": [], "def_extras": {"first_arg": null}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "get_type_hints", "ret_type": {".class": "Instance", "args": ["builtins.str", {".class": "AnyType", "missing_import_name": null, "source_any": null, "type_of_any": 2}], "type_ref": "builtins.dict"}, "variables": []}}}, "no_type_check": {".class": "SymbolTableNode", "kind": "Gdef", "node": {".class": "Var", "flags": [], "fullname": "typing.no_type_check", "name": "no_type_check", "type": "builtins.object"}}, "overload": {".class": "SymbolTableNode", "kind": "Gdef", "node": {".class": "Var", "flags": [], "fullname": "typing.overload", "name": "overload", "type": "builtins.object"}}, "runtime": {".class": "SymbolTableNode", "kind": "Gdef", "node": {".class": "FuncDef", "arg_kinds": [0], "arg_names": ["cls"], "flags": [], "fullname": "typing.runtime", "name": "runtime", "type": {".class": "CallableType", "arg_kinds": [0], "arg_names": ["cls"], "arg_types": [{".class": "TypeVarType", "fullname": "typing._TC", "id": -1, "name": "_TC", "upper_bound": {".class": "TypeType", "item": "builtins.object"}, "values": [], "variance": 0}], "bound_args": [], "def_extras": {"first_arg": null}, "fallback": "builtins.function", "implicit": false, "is_ellipsis_args": false, "name": "runtime", "ret_type": {".class": "TypeVarType", "fullname": "typing._TC", "id": -1, "name": "_TC", "upper_bound": {".class": "TypeType", "item": "builtins.object"}, "values": [], "variance": 0}, "variables": [{".class": "TypeVarDef", "fullname": "typing._TC", "id": -1, "name": "_TC", "upper_bound": {".class": "TypeType", "item": "builtins.object"}, "values": [], "variance": 0}]}}}, "sys": {".class": "SymbolTableNode", "cross_ref": "sys", "kind": "Gdef", "module_hidden": true, "module_public": false}}, "path": "/usr/lib/python3/dist-packages/mypy/typeshed/stdlib/3/typing.pyi"}
\ No newline at end of file
diff --git a/Postgres/StressTests/.mypy_cache/3.7/typing.meta.json b/Postgres/StressTests/.mypy_cache/3.7/typing.meta.json
deleted file mode 100644
index a2a3fca..0000000
--- a/Postgres/StressTests/.mypy_cache/3.7/typing.meta.json
+++ /dev/null
@@ -1 +0,0 @@
-{"child_modules": [], "data_mtime": 1553688971, "dep_lines": [3, 4, 5, 6, 1], "dep_prios": [10, 5, 5, 10, 5], "dependencies": ["sys", "abc", "types", "collections", "builtins"], "hash": "8dd936f5690118fa18838ff93a8d228e", "id": "typing", "ignore_all": true, "interface_hash": "e17900a525f21dc1adb6b1f5de654569", "mtime": 1549659920, "options": {"allow_redefinition": false, "allow_untyped_globals": false, "always_false": [], "always_true": [], "bazel": false, "check_untyped_defs": false, "disallow_any_decorated": false, "disallow_any_explicit": false, "disallow_any_expr": false, "disallow_any_generics": false, "disallow_any_unimported": false, "disallow_incomplete_defs": false, "disallow_subclassing_any": false, "disallow_untyped_calls": false, "disallow_untyped_decorators": false, "disallow_untyped_defs": false, "follow_imports": "normal", "follow_imports_for_stubs": false, "ignore_errors": false, "ignore_missing_imports": false, "local_partial_types": false, "mypyc": false, "new_semantic_analyzer": false, "no_implicit_optional": false, "platform": "linux", "plugins": [], "show_none_errors": true, "strict_optional": true, "strict_optional_whitelist": null, "warn_no_return": true, "warn_return_any": false, "warn_unused_ignores": false}, "path": "/usr/lib/python3/dist-packages/mypy/typeshed/stdlib/3/typing.pyi", "size": 19700, "suppressed": [], "version_id": "0.670"}
\ No newline at end of file
diff --git a/Postgres/StressTests/ingredientidstress b/Postgres/StressTests/ingredientidstress
deleted file mode 100755
index d0ceb01..0000000
--- a/Postgres/StressTests/ingredientidstress
+++ /dev/null
@@ -1,16 +0,0 @@
-#!/usr/bin/env python3
-import psycopg2
-import datetime
-import sys
-
-
-connection = psycopg2.connect("dbname=ingredientguru user=abuchholz")
-cur = connection.cursor()
-print("Connection successful")
-print("Start Time\t",datetime.datetime.now())
-
-for x in range(int(sys.argv[1])):
- cur.execute("SELECT * FROM ingredient_nutrient WHERE ingredient_id=21021;")
-
-print("End Time\t",datetime.datetime.now())
-
diff --git a/Postgres/StressTests/longdescstress b/Postgres/StressTests/longdescstress
deleted file mode 100755
index 66d2b30..0000000
--- a/Postgres/StressTests/longdescstress
+++ /dev/null
@@ -1,19 +0,0 @@
-#!/usr/bin/env python3
-import psycopg2
-import datetime
-import sys
-
-
-connection = psycopg2.connect("dbname=ingredientguru user=abuchholz")
-cur = connection.cursor()
-print("Connection successful")
-print("Start Time\t",datetime.datetime.now())
-
-for x in range(int(sys.argv[1])):
- cur.execute("SELECT long_description FROM ingredient WHERE long_description like '%banana%';")
-# for i,row in enumerate(cur.fetchall()):
-# print(i,"|",row[0])
-
-print("End Time\t",datetime.datetime.now())
-
-
diff --git a/Postgres/import.sql b/Postgres/import.sql
deleted file mode 100644
index d6a7836..0000000
--- a/Postgres/import.sql
+++ /dev/null
@@ -1,77 +0,0 @@
-DROP TABLE IF EXISTS ingredient;
-DROP TABLE IF EXISTS groups;
-DROP TABLE IF EXISTS nutrient;
-DROP TABLE IF EXISTS ingredient_nutrient;
---CREATE EXTENSION pg_trgm;
---DROP TABLE IF EXISTS import.food_groups;
---DROP TABLE IF EXISTS import.food_desc;
---DROP TABLE IF EXISTS import.food_nutr;
-
-CREATE TABLE groups (
- fdgrp_cd TEXT,
- fdgrp_desc TEXT
-);
-CREATE TABLE ingredient (
- id INT NULL,
- group_id SMALLINT NULL,
- long_description VARCHAR (200) NOT NULL,
- short_description VARCHAR (85) NOT NULL,
- common_name VARCHAR (100),
- manufacturer_name VARCHAR (65),
- is_in_fndds_survey VARCHAR (3),
- inedible_parts VARCHAR (135),
- percent_being_refuse SMALLINT,
- scientific_name VARCHAR (65),
- nitrogen_to_protein_factor NUMERIC (4,2),
- calories_from_protein_factor NUMERIC (4,2),
- calories_from_fat_factor NUMERIC (4,2),
- calories_from_carb_factor NUMERIC (4,2)
-);
-
-CREATE TABLE nutrient (
- nutrient_id SMALLINT NOT NULL,
- units_of_measurement VARCHAR (7) NOT NULL,
- tag_name VARCHAR (20),
- name VARCHAR (60) NOT NULL,
- decimal_places_rounded VARCHAR (1) NOT NULL,
- sort_order SMALLINT NOT NULL
-);
-
-CREATE TABLE ingredient_nutrient (
- ingredient_id INT NOT NULL,
- nutrient_id SMALLINT NOT NULL,
- nutrient_value NUMERIC (10,2),
- number_of_analyses SMALLINT NOT NULL,
- standard_error NUMERIC (8,3),
- type_of_data VARCHAR(2) NOT NULL,
- derivation VARCHAR(4),
- alternative_ingredient_id VARCHAR(5),
- has_been_fortified VARCHAR(1),
- number_of_studies SMALLINT,
- minimum_value NUMERIC(10,3),
- maximum_value NUMERIC(10,3),
- degrees_of_freedom SMALLINT,
- lower_error_bound NUMERIC(10,3),
- upper_error_bound NUMERIC(10,3),
- statistical_comment VARCHAR(10),
- last_update DATE
-);
-
-COPY groups
-FROM '$PWD/raw_data/FD_GROUP.txt'
-WITH DELIMITER '^' QUOTE '~' HEADER CSV ENCODING 'LATIN1';
-
-COPY ingredient
-FROM '$PWD/raw_data/new_desc.csv'
-WITH DELIMITER ',' HEADER CSV ENCODING 'LATIN1';
-
-COPY nutrient
-FROM '$PWD/raw_data/NUTR_DEF.txt'
-WITH DELIMITER '^' QUOTE '~' HEADER CSV ENCODING 'LATIN1';
-
-COPY ingredient_nutrient
-FROM '$PWD/raw_data/NUT_DATA.txt'
-WITH DELIMITER '^' QUOTE '~' HEADER CSV ENCODING 'LATIN1';
-
-CREATE INDEX first_index ON ingredient_nutrient(ingredient_id);
-CREATE INDEX second_index ON ingredient USING gin (long_description gin_trgm_ops);
diff --git a/Postgres/normalize.sql b/Postgres/normalize.sql
deleted file mode 100644
index 9458f46..0000000
--- a/Postgres/normalize.sql
+++ /dev/null
@@ -1,167 +0,0 @@
-DELETE FROM ingredient
-WHERE group_id in (0300,2100,2200,2500,3600);
-
---Delete Brand Names
-DELETE FROM ingredient
- WHERE long_description ~ '[A-Z]{2,}'
- AND NOT long_description ~ 'USDA';
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
---Authorized Group Table
-
-
-
-
-/*
-CREATE TABLE authorized_groups(groupid INT,groupdesc TEXT);
-
-INSERT INTO authorized_groups(groupid,groupdesc)
-SELECT DISTINCT fdgrp_cd::int, fdgrp_desc
-FROM import.food_groups
-WHERE fdgrp_cd::int != 0300
-and fdgrp_cd::int != 2200
-and fdgrp_cd::int != 2100
-and fdgrp_cd::int != 2500
-and fdgrp_cd::int != 3600
-ORDER BY fdgrp_cd::int;
-
-ALTER TABLE authorized_groups
-ADD id serial primary key;
-
-
---Authorized Food Name/Desc
-DROP TABLE IF EXISTS authorized_foods CASCADE;
-
-CREATE TABLE authorized_foods(
- foodid SERIAL PRIMARY KEY,
- groupid INT,
- long_desc TEXT,
- shrt_desc TEXT,
- commonname TEXT,
- manufacname TEXT,
- survey TEXT,
- ref_desc TEXT,
- refuse TEXT,
- sciname TEXT,
- n_factor TEXT,
- pro_factor TEXT,
- fat_factor TEXT,
- cho_factor TEXT
-);
-
-
-INSERT INTO authorized_foods(groupid, long_desc, shrt_desc)
-SELECT DISTINCT fdgrp_cd::int, long_desc, shrt_desc
-FROM import.food_desc;
-DELETE FROM authorized_foods
-WHERE groupid in (0300,2100,2200,2500,3600);
-
---Delete Brand Names
-DELETE FROM authorized_foods
- WHERE long_desc ~ '[A-Z]{2,}'
- AND NOT long_desc ~ 'USDA';
-
-
-SELECT * FROM authorized_groups
-JOIN authorized_foods
-ON authorized_groups.groupdesc = authorized_foods.long_desc;
- three=two.replace(b"~",b"'")
-
-
-
-CREATE TABLE ingredient (
- id SMALLINT NULL,
- group_id SMALLINT NULL,
- long_description VARCHAR (200) NOT NULL,
- short_description VARCHAR (60) NOT NULL,
- common_name VARCHAR (100),
- manufacturer_name VARCHAR (65),
- is_in_fndds_survey VARCHAR (1),
- inedible_parts VARCHAR (135),
- percent_being_refuse SMALLINT,
- scientific_name VARCHAR (65),
- nitrogen_to_protein_factor NUMERIC (4,2),
- calories_from_protein_factor NUMERIC (4,2),
- calories_from_fat_factor NUMERIC (4,2),
- calories_from_carb_factor NUMERIC (4,2)
-);
-
-CREATE TABLE nutrient (
- nutrient_id SMALLINT NOT NULL,
- units_of_measurement VARCHAR (7) NOT NULL,
- tag_name VARCHAR (20),
- name VARCHAR (60) NOT NULL,
- decimal_places_rounded VARCHAR (1) NOT NULL,
- sort_order SMALLINT NOT NULL
-);
-
-CREATE TABLE ingredient_nutrients (
- ingredient_id SMALLINT NOT NULL,
- nutrient_id SMALLINT NOT NULL,
- nutrient_value NUMERIC (10,2),
- number_of_analyses SMALLINT NOT NULL,
- standard_error NUMERIC (8,3),
- type_of_data VARCHAR(2) NOT NULL,
- derivation VARCHAR(4),
- alternative_ingredient_id VARCHAR(5),
- has_been_fortified VARCHAR(1),
- number_of_studies SMALLINT,
- minimum_value NUMERIC(10,3),
- maximum_value NUMERIC(10,3),
- degrees_of_freedom SMALLINT,
- lower_error_bound NUMERIC(10,3),
- upper_error_bound NUMERIC(10,3),
- statistical_comment VARCHAR(10),
- last_update DATE
-);*/
diff --git a/Postgres/raw_data/FD_GROUP.txt b/Postgres/raw_data/FD_GROUP.txt
deleted file mode 100755
index b49e89c..0000000
--- a/Postgres/raw_data/FD_GROUP.txt
+++ /dev/null
@@ -1,25 +0,0 @@
-~0100~^~Dairy and Egg Products~
-~0200~^~Spices and Herbs~
-~0300~^~Baby Foods~
-~0400~^~Fats and Oils~
-~0500~^~Poultry Products~
-~0600~^~Soups, Sauces, and Gravies~
-~0700~^~Sausages and Luncheon Meats~
-~0800~^~Breakfast Cereals~
-~0900~^~Fruits and Fruit Juices~
-~1000~^~Pork Products~
-~1100~^~Vegetables and Vegetable Products~
-~1200~^~Nut and Seed Products~
-~1300~^~Beef Products~
-~1400~^~Beverages~
-~1500~^~Finfish and Shellfish Products~
-~1600~^~Legumes and Legume Products~
-~1700~^~Lamb, Veal, and Game Products~
-~1800~^~Baked Products~
-~1900~^~Sweets~
-~2000~^~Cereal Grains and Pasta~
-~2100~^~Fast Foods~
-~2200~^~Meals, Entrees, and Side Dishes~
-~2500~^~Snacks~
-~3500~^~American Indian/Alaska Native Foods~
-~3600~^~Restaurant Foods~
diff --git a/Postgres/raw_data/FOOD_DES.txt b/Postgres/raw_data/FOOD_DES.txt
deleted file mode 100755
index db33226..0000000
--- a/Postgres/raw_data/FOOD_DES.txt
+++ /dev/null
@@ -1,7794 +0,0 @@
-food_id~^~group_id~^~food_name~^~food_desc
-~01001~^~0100~^~Butter, salted~^~BUTTER,WITH SALT~^^^~Y~^^0^^6.38^4.27^8.79^3.87
-~01002~^~0100~^~Butter, whipped, with salt~^~BUTTER,WHIPPED,W/ SALT~^^^~Y~^^0^^6.38^^^
-~01003~^~0100~^~Butter oil, anhydrous~^~BUTTER OIL,ANHYDROUS~^^^~Y~^^0^^6.38^4.27^8.79^3.87
-~01004~^~0100~^~Cheese, blue~^~CHEESE,BLUE~^^^~Y~^^0^^6.38^4.27^8.79^3.87
-~01005~^~0100~^~Cheese, brick~^~CHEESE,BRICK~^^^~Y~^^0^^6.38^4.27^8.79^3.87
-~01006~^~0100~^~Cheese, brie~^~CHEESE,BRIE~^^^~Y~^^0^^6.38^4.27^8.79^3.87
-~01007~^~0100~^~Cheese, camembert~^~CHEESE,CAMEMBERT~^^^~Y~^^0^^6.38^4.27^8.79^3.87
-~01008~^~0100~^~Cheese, caraway~^~CHEESE,CARAWAY~^^^^^0^^6.38^4.27^8.79^3.87
-~01009~^~0100~^~Cheese, cheddar (Includes foods for USDA's Food Distribution Program)~^~CHEESE,CHEDDAR~^^^~Y~^^0^^^^^
-~01010~^~0100~^~Cheese, cheshire~^~CHEESE,CHESHIRE~^^^^^0^^6.38^4.27^8.79^3.87
-~01011~^~0100~^~Cheese, colby~^~CHEESE,COLBY~^^^~Y~^^0^^6.38^4.27^8.79^3.87
-~01012~^~0100~^~Cheese, cottage, creamed, large or small curd~^~CHEESE,COTTAGE,CRMD,LRG OR SML CURD~^^^~Y~^^0^^6.38^4.27^8.79^3.87
-~01013~^~0100~^~Cheese, cottage, creamed, with fruit~^~CHEESE,COTTAGE,CRMD,W/FRUIT~^^^~Y~^^0^^6.38^4.27^8.79^3.87
-~01014~^~0100~^~Cheese, cottage, nonfat, uncreamed, dry, large or small curd~^~CHEESE,COTTAGE,NONFAT,UNCRMD,DRY,LRG OR SML CURD~^^^~Y~^^0^^6.38^4.27^8.79^3.87
-~01015~^~0100~^~Cheese, cottage, lowfat, 2% milkfat~^~CHEESE,COTTAGE,LOWFAT,2% MILKFAT~^^^~Y~^^0^^6.38^^^
-~01016~^~0100~^~Cheese, cottage, lowfat, 1% milkfat~^~CHEESE,COTTAGE,LOWFAT,1% MILKFAT~^^^~Y~^^0^^6.38^4.27^8.79^3.87
-~01017~^~0100~^~Cheese, cream~^~CHEESE,CREAM~^^^~Y~^^0^^6.38^4.27^8.79^3.87
-~01018~^~0100~^~Cheese, edam~^~CHEESE,EDAM~^^^~Y~^^0^^6.38^4.27^8.79^3.87
-~01019~^~0100~^~Cheese, feta~^~CHEESE,FETA~^^^~Y~^^0^^6.38^4.27^8.79^3.87
-~01020~^~0100~^~Cheese, fontina~^~CHEESE,FONTINA~^^^~Y~^^0^^6.38^4.27^8.79^3.87
-~01021~^~0100~^~Cheese, gjetost~^~CHEESE,GJETOST~^^^^^0^^6.38^4.27^8.79^3.87
-~01022~^~0100~^~Cheese, gouda~^~CHEESE,GOUDA~^^^~Y~^^0^^6.38^4.27^8.79^3.87
-~01023~^~0100~^~Cheese, gruyere~^~CHEESE,GRUYERE~^^^~Y~^^0^^6.38^4.27^8.79^3.87
-~01024~^~0100~^~Cheese, limburger~^~CHEESE,LIMBURGER~^^^~Y~^^0^^6.38^4.27^8.79^3.87
-~01025~^~0100~^~Cheese, monterey~^~CHEESE,MONTEREY~^^^~Y~^^0^^6.38^4.27^8.79^3.87
-~01026~^~0100~^~Cheese, mozzarella, whole milk~^~CHEESE,MOZZARELLA,WHL MILK~^^^~Y~^^0^^6.38^4.27^8.79^3.87
-~01027~^~0100~^~Cheese, mozzarella, whole milk, low moisture~^~CHEESE,MOZZARELLA,WHL MILK,LO MOIST~^^^~Y~^^0^^6.38^4.27^8.79^3.87
-~01028~^~0100~^~Cheese, mozzarella, part skim milk~^~CHEESE,MOZZARELLA,PART SKIM MILK~^^^~Y~^^0^^6.38^4.27^8.79^3.87
-~01029~^~0100~^~Cheese, mozzarella, low moisture, part-skim~^~CHEESE,MOZZARELLA,LO MOIST,PART-SKIM~^^^~Y~^^0^^6.38^^^
-~01030~^~0100~^~Cheese, muenster~^~CHEESE,MUENSTER~^^^~Y~^^0^^6.38^4.27^8.79^3.87
-~01031~^~0100~^~Cheese, neufchatel~^~CHEESE,NEUFCHATEL~^^^^^0^^6.38^4.27^8.79^3.87
-~01032~^~0100~^~Cheese, parmesan, grated~^~CHEESE,PARMESAN,GRATED~^^^~Y~^^0^^6.38^4.27^8.79^3.87
-~01033~^~0100~^~Cheese, parmesan, hard~^~CHEESE,PARMESAN,HARD~^^^~Y~^^0^^6.38^4.27^8.79^3.87
-~01034~^~0100~^~Cheese, port de salut~^~CHEESE,PORT DE SALUT~^^^~Y~^^0^^6.38^4.27^8.79^3.87
-~01035~^~0100~^~Cheese, provolone~^~CHEESE,PROVOLONE~^^^~Y~^^0^^6.38^4.27^8.79^3.87
-~01036~^~0100~^~Cheese, ricotta, whole milk~^~CHEESE,RICOTTA,WHOLE MILK~^^^~Y~^^0^^6.38^4.27^8.79^3.87
-~01037~^~0100~^~Cheese, ricotta, part skim milk~^~CHEESE,RICOTTA,PART SKIM MILK~^^^~Y~^^0^^6.38^4.27^8.79^3.87
-~01038~^~0100~^~Cheese, romano~^~CHEESE,ROMANO~^^^~Y~^^0^^6.38^4.27^8.79^3.87
-~01039~^~0100~^~Cheese, roquefort~^~CHEESE,ROQUEFORT~^^^^^0^^6.38^4.27^8.79^3.87
-~01040~^~0100~^~Cheese, swiss~^~CHEESE,SWISS~^^^~Y~^^0^^6.38^4.27^8.79^3.87
-~01041~^~0100~^~Cheese, tilsit~^~CHEESE,TILSIT~^^^^^0^^6.38^4.27^8.79^3.87
-~01042~^~0100~^~Cheese, pasteurized process, American, fortified with vitamin D~^~CHEESE,PAST PROCESS,AMERICAN,FORT W/ VITAMIN D~^^^~Y~^^0^^6.38^4.27^8.79^3.87
-~01043~^~0100~^~Cheese, pasteurized process, pimento~^~CHEESE,PAST PROCESS,PIMENTO~^^^~Y~^^0^^6.38^4.27^8.79^3.87
-~01044~^~0100~^~Cheese, pasteurized process, swiss~^~CHEESE,PAST PROCESS,SWISS~^^^~Y~^^0^^6.38^4.27^8.79^3.87
-~01045~^~0100~^~Cheese food, cold pack, American~^~CHEESE FD,COLD PK,AMERICAN~^^^^^0^^6.38^4.27^8.79^3.87
-~01046~^~0100~^~Cheese food, pasteurized process, American, vitamin D fortified~^~CHEESE FD,PAST PROCESS,AMERICAN,VITAMIN D FORT~^^^~Y~^^0^^6.38^4.27^8.79^3.87
-~01047~^~0100~^~Cheese food, pasteurized process, swiss~^~CHEESE FD,PAST PROCESS,SWISS~^^^^^0^^6.38^4.27^8.79^3.87
-~01048~^~0100~^~Cheese spread, pasteurized process, American~^~CHEESE SPRD,PAST PROCESS,AMERICAN~^^^~Y~^^0^^6.38^4.27^8.79^3.87
-~01049~^~0100~^~Cream, fluid, half and half~^~CREAM,FLUID,HALF AND HALF~^^^~Y~^^0^^6.38^4.27^8.79^3.87
-~01050~^~0100~^~Cream, fluid, light (coffee cream or table cream)~^~CREAM,FLUID,LT (COFFEE CRM OR TABLE CRM)~^^^~Y~^^0^^6.38^4.27^8.79^3.87
-~01052~^~0100~^~Cream, fluid, light whipping~^~CREAM,FLUID,LT WHIPPING~^^^~Y~^^0^^6.38^4.27^8.79^3.87
-~01053~^~0100~^~Cream, fluid, heavy whipping~^~CREAM,FLUID,HVY WHIPPING~^^^~Y~^^0^^6.38^4.27^8.79^3.87
-~01054~^~0100~^~Cream, whipped, cream topping, pressurized~^~CREAM,WHIPPED,CRM TOPPING,PRESSURIZED~^^^~Y~^^0^^6.38^4.27^8.79^3.87
-~01055~^~0100~^~Cream, sour, reduced fat, cultured~^~CREAM,SOUR,RED FAT,CULTURED~^^^~Y~^^0^^6.38^4.27^8.79^3.87
-~01056~^~0100~^~Cream, sour, cultured~^~CREAM,SOUR,CULTURED~^^^~Y~^^0^^6.38^4.27^8.79^3.87
-~01057~^~0100~^~Eggnog~^~EGGNOG~^^^~Y~^^0^^6.37^4.27^8.79^3.90
-~01058~^~0100~^~Sour dressing, non-butterfat, cultured, filled cream-type~^~SOUR DRSNG,NON-BUTTERFAT,CULTURED,FILLED CREAM-TYPE~^^^~Y~^^0^^6.38^4.27^8.79^3.87
-~01059~^~0100~^~Milk, filled, fluid, with blend of hydrogenated vegetable oils~^~MILK,FILLED,FLUID,W/BLEND OF HYDR VEG OILS~^^^^^0^^6.38^4.27^8.79^3.87
-~01060~^~0100~^~Milk, filled, fluid, with lauric acid oil~^~MILK,FILLED,FLUID,W/LAURIC ACID OIL~^^^^^0^^6.38^4.27^8.79^3.87
-~01061~^~0100~^~Cheese, American, nonfat or fat free~^~CHEESE,AMERICAN,NONFAT OR FAT FREE~^^^~Y~^^0^^6.25^^^
-~01064~^~0100~^~Yogurt, Greek, 2% fat, apricot, CHOBANI~^~YOGURT,GREEK,2% FAT,APRICOT,CHOBANI~^^~Chobani~^^^0^^3.68^^^
-~01065~^~0100~^~Yogurt, Greek, 2%fat, coconut blend, CHOBANI~^~YOGURT,GREEK,2%FAT,COCNT BLEND,CHOBANI~^^~Chobani~^^^0^^6.38^^^
-~01067~^~0100~^~Cream substitute, liquid, with hydrogenated vegetable oil and soy protein~^~CREAM SUB,LIQ,W/HYDR VEG OIL&SOY PROT~^^^~Y~^^0^^5.71^4.27^8.79^3.87
-~01068~^~0100~^~Cream substitute, liquid, with lauric acid oil and sodium caseinate~^~CREAM SUB,LIQ,W/LAURIC ACID OIL&NA CASEINATE~^^^^^0^^6.29^4.27^8.79^3.87
-~01069~^~0100~^~Cream substitute, powdered~^~CREAM SUBSTITUTE,POWDERED~^^^~Y~^^0^^6.29^4.27^8.79^3.87
-~01070~^~0100~^~Dessert topping, powdered~^~DESSERT TOPPING,POWDERED~^^^^^0^^6.29^4.27^8.79^3.87
-~01071~^~0100~^~Dessert topping, powdered, 1.5 ounce prepared with 1/2 cup milk~^~DESSERT TOPPING,PDR,1.5 OZ PREP W/1/2 CUP MILK~^^^~Y~^^0^^6.35^4.27^8.79^3.87
-~01072~^~0100~^~Dessert topping, pressurized~^~DESSERT TOPPING,PRESSURIZED~^^^~Y~^^0^^6.29^4.27^8.79^3.87
-~01073~^~0100~^~Dessert topping, semi solid, frozen~^~DESSERT TOPPING,SEMI SOLID,FRZ~^^^~Y~^^0^^6.29^4.27^8.84^3.87
-~01074~^~0100~^~Sour cream, imitation, cultured~^~SOUR CRM,IMITN,CULTURED~^^^~Y~^^0^^6.29^4.27^8.79^3.87
-~01076~^~0100~^~Milk substitutes, fluid, with lauric acid oil~^~MILK SUBSTITUTES,FLUID,W/LAURIC ACID OIL~^^^^^0^^6.29^4.27^8.79^3.87
-~01077~^~0100~^~Milk, whole, 3.25% milkfat, with added vitamin D~^~MILK,WHL,3.25% MILKFAT,W/ ADDED VITAMIN D~^^^~Y~^^0^^6.38^4.27^8.79^3.87
-~01078~^~0100~^~Milk, producer, fluid, 3.7% milkfat~^~MILK,PRODUCER,FLUID,3.7% MILKFAT~^^^^^0^^6.38^4.27^8.79^3.87
-~01079~^~0100~^~Milk, reduced fat, fluid, 2% milkfat, with added vitamin A and vitamin D~^~MILK,RED FAT,FLUID,2% MILKFAT,W/ ADDED VIT A & VITAMIN D~^^^~Y~^^0^^6.38^4.27^8.79^3.87
-~01080~^~0100~^~Milk, reduced fat, fluid, 2% milkfat, with added nonfat milk solids and vitamin A and vitamin D~^~MILK,RED FAT,FLUID,2% MILKFAT,W/ ADDED NFMS, VIT A & VIT D~^^^^^0^^6.38^4.27^8.79^3.87
-~01081~^~0100~^~Milk, reduced fat, fluid, 2% milkfat, protein fortified, with added vitamin A and vitamin D~^~MILK,RED FAT,FLUID,2% MILKFAT,PROT FORT,W/ ADDED VIT A & D~^^^^^0^^6.38^4.27^8.79^3.87
-~01082~^~0100~^~Milk, lowfat, fluid, 1% milkfat, with added vitamin A and vitamin D~^~MILK,LOWFAT,FLUID,1% MILKFAT,W/ ADDED VIT A & VITAMIN D~^^^~Y~^^0^^6.38^4.27^8.79^3.87
-~01083~^~0100~^~Milk, lowfat, fluid, 1% milkfat, with added nonfat milk solids, vitamin A and vitamin D~^~MILK,LOWFAT,FLUID,1% MILKFAT,W/ ADD NONFAT MILK SOL,VIT A/ D~^^^^^0^^6.38^4.27^8.79^3.87
-~01084~^~0100~^~Milk, lowfat, fluid, 1% milkfat, protein fortified, with added vitamin A and vitamin D~^~MILK,LOWFAT,FLUID,1% MILKFAT,PROT FORT,W/ ADDED VIT A & D~^^^^^0^^6.38^4.27^8.79^3.87
-~01085~^~0100~^~Milk, nonfat, fluid, with added vitamin A and vitamin D (fat free or skim)~^~MILK,NONFAT,FLUID,W/ ADDED VIT A & VIT D (FAT FREE OR SKIM)~^^^~Y~^^0^^6.38^4.27^8.79^3.87
-~01086~^~0100~^~Milk, nonfat, fluid, with added nonfat milk solids, vitamin A and vitamin D (fat free or skim)~^~MILK,NONFAT,FLUID,W/ ADDED NONFAT MILK SOL,VIT A & VIT D~^^^^^0^^6.38^4.27^8.79^3.87
-~01087~^~0100~^~Milk, nonfat, fluid, protein fortified, with added vitamin A and vitamin D (fat free and skim)~^~MILK,NONFAT,FLUID,PROT FORT,W/ ADD VIT A & D (FAT FREE/SKIM)~^^^^^0^^6.38^4.27^8.79^3.87
-~01088~^~0100~^~Milk, buttermilk, fluid, cultured, lowfat~^~MILK,BTTRMLK,FLUID,CULTURED,LOWFAT~^^^~Y~^^0^^6.38^4.27^8.79^3.87
-~01089~^~0100~^~Milk, low sodium, fluid~^~MILK,LO NA,FLUID~^^^~Y~^^0^^6.38^4.27^8.79^3.87
-~01090~^~0100~^~Milk, dry, whole, with added vitamin D~^~MILK,DRY,WHL,W/ ADDED VITAMIN D~^^^~Y~^^0^^6.38^4.27^8.79^3.87
-~01091~^~0100~^~Milk, dry, nonfat, regular, without added vitamin A and vitamin D~^~MILK,DRY,NONFAT,REG,WO/ ADDED VIT A & VITAMIN D~^^^~Y~^^0^^6.38^4.27^8.79^3.87
-~01092~^~0100~^~Milk, dry, nonfat, instant, with added vitamin A and vitamin D~^~MILK,DRY,NONFAT,INST,W/ ADDED VIT A & VITAMIN D~^^^~Y~^^0^^6.38^4.27^8.79^3.87
-~01093~^~0100~^~Milk, dry, nonfat, calcium reduced~^~MILK,DRY,NONFAT,CA RED~^^^^^0^^6.38^4.27^8.79^3.87
-~01094~^~0100~^~Milk, buttermilk, dried~^~MILK,BUTTERMILK,DRIED~^^^~Y~^^0^^6.38^4.27^8.79^3.87
-~01095~^~0100~^~Milk, canned, condensed, sweetened~^~MILK,CND,COND,SWTND~^^^~Y~^^0^^6.38^4.27^8.79^3.87
-~01096~^~0100~^~Milk, canned, evaporated, with added vitamin D and without added vitamin A~^~MILK,CND,EVAP,W/ ADDED VITAMIN D & WO/ ADDED VIT A~^^^~Y~^^0^^6.38^4.27^8.79^3.87
-~01097~^~0100~^~Milk, canned, evaporated, nonfat, with added vitamin A and vitamin D~^~MILK,CND,EVAP,NONFAT,W/ ADDED VIT A & VITAMIN D~^^^~Y~^^0^^6.38^4.27^8.79^3.87
-~01102~^~0100~^~Milk, chocolate, fluid, commercial, whole, with added vitamin A and vitamin D~^~MILK,CHOC,FLUID,COMM,WHL,W/ ADDED VIT A & VITAMIN D~^^^~Y~^^0^^6.38^4.27^8.79^3.87
-~01103~^~0100~^~Milk, chocolate, fluid, commercial, reduced fat, with added vitamin A and vitamin D~^~MILK,CHOC,FLUID,COMM,RED FAT~^^^~Y~^^0^^6.38^4.27^8.79^3.87
-~01104~^~0100~^~Milk, chocolate, lowfat, with added vitamin A and vitamin D~^~MILK,CHOC,LOWFAT,W/ ADDED VIT A & VITAMIN D~^^^~Y~^^0^^6.38^4.27^8.79^3.87
-~01105~^~0100~^~Milk, chocolate beverage, hot cocoa, homemade~^~MILK,CHOC BEV,HOT COCOA,HOMEMADE~^^^^^0^^6.38^^^
-~01106~^~0100~^~Milk, goat, fluid, with added vitamin D~^~MILK,GOAT,FLUID,W/ ADDED VITAMIN D~^^^~Y~^^0^^6.38^4.27^8.79^3.87
-~01107~^~0100~^~Milk, human, mature, fluid~^~MILK,HUMAN,MATURE,FLUID~^^^~Y~^^0^^6.38^4.27^8.79^3.87
-~01108~^~0100~^~Milk, indian buffalo, fluid~^~MILK,INDIAN BUFFALO,FLUID~^^^^^0^^6.38^4.27^8.79^3.87
-~01109~^~0100~^~Milk, sheep, fluid~^~MILK,SHEEP,FLUID~^^^^^0^^6.38^4.27^8.79^3.87
-~01110~^~0100~^~Milk shakes, thick chocolate~^~MILK SHAKES,THICK CHOC~^^^^^0^^6.38^4.27^8.79^3.87
-~01111~^~0100~^~Milk shakes, thick vanilla~^~MILK SHAKES,THICK VANILLA~^^^^^0^^6.38^4.27^8.79^3.87
-~01112~^~0100~^~Whey, acid, fluid~^~WHEY,ACID,FLUID~^^^^^0^^6.38^4.27^8.79^3.87
-~01113~^~0100~^~Whey, acid, dried~^~WHEY,ACID,DRIED~^^^~Y~^^0^^6.38^4.27^8.79^3.87
-~01114~^~0100~^~Whey, sweet, fluid~^~WHEY,SWEET,FLUID~^^^^^0^^6.38^4.27^8.79^3.87
-~01115~^~0100~^~Whey, sweet, dried~^~WHEY,SWEET,DRIED~^^^~Y~^^0^^6.38^4.27^8.79^3.87
-~01116~^~0100~^~Yogurt, plain, whole milk~^~YOGURT,PLN,WHL MILK~^^^~Y~^^0^^6.38^4.27^8.79^3.87
-~01117~^~0100~^~Yogurt, plain, low fat~^~YOGURT,PLN,LOFAT~^^^~Y~^^0^^6.38^4.27^8.79^3.87
-~01118~^~0100~^~Yogurt, plain, skim milk~^~YOGURT,PLN,SKIM MILK.~^^^~Y~^^0^^6.38^4.27^8.79^3.87
-~01119~^~0100~^~Yogurt, vanilla, low fat.~^~YOGURT,VANILLA,LOFAT.~^^^~Y~^^0^^6.38^4.27^8.79^3.87
-~01120~^~0100~^~Yogurt, fruit, low fat,9 g protein/8 oz~^~YOGURT,FRUIT,LOFAT,9 G PROTEIN/8 OZ~^^^~Y~^^0^^6.38^4.27^8.79^3.87
-~01121~^~0100~^~Yogurt, fruit, low fat, 10 grams protein per 8 ounce~^~YOGURT,FRUIT,LOFAT,10 GRAMS PROT PER 8 OUNCE~^^^~Y~^^0^^6.38^4.27^8.79^3.87
-~01122~^~0100~^~Yogurt, fruit, low fat, 11g protein/8 oz~^~YOGURT,FRUIT,LOFAT,11G PROTEIN/8 OZ~^^^^^0^^6.38^4.27^8.79^3.87
-~01123~^~0100~^~Egg, whole, raw, fresh~^~EGG,WHL,RAW,FRSH~^^^~Y~^~Shell~^12^^6.25^4.36^9.02^3.68
-~01124~^~0100~^~Egg, white, raw, fresh~^~EGG,WHITE,RAW,FRESH~^^^~Y~^^0^^6.25^4.36^9.02^3.68
-~01125~^~0100~^~Egg, yolk, raw, fresh~^~EGG,YOLK,RAW,FRSH~^^^~Y~^^0^^6.25^4.36^9.02^3.68
-~01126~^~0100~^~Egg, yolk, raw, frozen, pasteurized~^~EGG,YOLK,RAW,FRZ,PAST~^^^^^0^^6.25^^^
-~01127~^~0100~^~Egg, yolk, raw, frozen, sugared, pasteurized~^~EGG,YOLK,RAW,FRZ,SUGARED,PAST~^^^^^0^^6.25^4.36^9.02^3.68
-~01128~^~0100~^~Egg, whole, cooked, fried~^~EGG,WHL,CKD,FRIED~^^^~Y~^^0^^6.25^4.36^9.02^3.68
-~01129~^~0100~^~Egg, whole, cooked, hard-boiled~^~EGG,WHL,CKD,HARD-BOILED~^^^~Y~^~Shell~^12^^6.25^4.36^9.02^3.68
-~01130~^~0100~^~Egg, whole, cooked, omelet~^~EGG,WHOLE,COOKED,OMELET~^^^~Y~^^0^^6.25^4.36^9.02^3.68
-~01131~^~0100~^~Egg, whole, cooked, poached~^~EGG,WHL,CKD,POACHED~^^^~Y~^^0^^6.25^4.36^9.02^3.68
-~01132~^~0100~^~Egg, whole, cooked, scrambled~^~EGG,WHL,CKD,SCRMBLD~^^^~Y~^^0^^6.25^4.36^9.02^3.68
-~01133~^~0100~^~Egg, whole, dried~^~EGG,WHL,DRIED~^^^~Y~^^0^^6.25^^^
-~01134~^~0100~^~Egg, whole, dried, stabilized, glucose reduced~^~EGG,WHL,DRIED,STABILIZED,GLUCOSE RED~^^^^^0^^6.25^4.36^9.02^3.68
-~01135~^~0100~^~Egg, white, dried, flakes, stabilized, glucose reduced~^~EGG,WHITE,DRIED,FLAKES,STABILIZED,GLUCOSE RED~^^^^^0^^6.25^4.36^9.02^3.68
-~01136~^~0100~^~Egg, white, dried, powder, stabilized, glucose reduced~^~EGG,WHITE,DRIED,PDR,STABILIZED,GLUCOSE RED~^^^~Y~^^0^^6.25^4.36^9.02^3.68
-~01137~^~0100~^~Egg, yolk, dried~^~EGG,YOLK,DRIED~^^^~Y~^^0^^6.25^^^
-~01138~^~0100~^~Egg, duck, whole, fresh, raw~^~EGG,DUCK,WHOLE,FRESH,RAW~^^^~Y~^~Shell~^12^^6.25^4.36^9.02^3.68
-~01139~^~0100~^~Egg, goose, whole, fresh, raw~^~EGG,GOOSE,WHOLE,FRESH,RAW~^^^~Y~^~Shell~^13^^6.25^4.36^9.02^3.68
-~01140~^~0100~^~Egg, quail, whole, fresh, raw~^~EGG,QUAIL,WHOLE,FRESH,RAW~^^^~Y~^~Shell~^8^^6.25^4.36^9.02^3.68
-~01141~^~0100~^~Egg, turkey, whole, fresh, raw~^~EGG,TURKEY,WHL,FRSH,RAW~^^^^~Shell~^12^^6.25^4.36^9.02^3.68
-~01144~^~0100~^~Egg substitute, powder~^~EGG SUBSTITUTE,POWDER~^^^~Y~^^0^^6.25^4.36^9.02^3.87
-~01145~^~0100~^~Butter, without salt~^~BUTTER,WITHOUT SALT~^^^~Y~^^0^^6.38^4.27^8.79^3.87
-~01146~^~0100~^~Cheese, parmesan, shredded~^~CHEESE,PARMESAN,SHREDDED~^^^^^0^^6.38^4.27^8.79^3.87
-~01151~^~0100~^~Milk, nonfat, fluid, without added vitamin A and vitamin D (fat free or skim)~^~MILK,NONFAT,FLUID,WO/ ADDED VIT A & VIT D (FAT FREE OR SKIM)~^^^~Y~^^0^^6.38^^^
-~01152~^~0100~^~Milk, reduced fat, fluid, 2% milkfat, with added nonfat milk solids, without added vitamin A~^~MILK,RED FAT,FLUID,2% MILKFAT,W/ NONFAT MILK SOL,WO/ VIT A~^^^^^0^^6.38^4.27^8.79^3.87
-~01153~^~0100~^~Milk, canned, evaporated, with added vitamin A~^~MILK,CND,EVAP,W/ VIT A~^^^^^0^^6.38^4.27^8.79^3.87
-~01154~^~0100~^~Milk, dry, nonfat, regular, with added vitamin A and vitamin D~^~MILK,DRY,NONFAT,REG,W/ ADDED VIT A & VITAMIN D~^^^~Y~^^0^^6.38^4.27^8.79^3.87
-~01155~^~0100~^~Milk, dry, nonfat, instant, without added vitamin A and vitamin D~^~MILK,DRY,NONFAT,INST,WO/ ADDED VIT A & VITAMIN D~^^^~Y~^^0^^6.38^4.27^8.79^3.87
-~01156~^~0100~^~Cheese, goat, hard type~^~CHEESE,GOAT,HARD TYPE~^^^~Y~^^0^^6.38^4.27^8.79^3.87
-~01157~^~0100~^~Cheese, goat, semisoft type~^~CHEESE,GOAT,SEMISOFT TYPE~^^^~Y~^^0^^6.38^4.27^8.79^3.87
-~01158~^~0100~^~Yogurt, Greek, 2% fat, key lime blend, CHOBANI~^~YOGURT,GREEK,2% FAT,KEY LIME BLEND,CHOBANI~^^~Chobani~^^^0^^6.38^^^
-~01159~^~0100~^~Cheese, goat, soft type~^~CHEESE,GOAT,SOFT TYPE~^^^~Y~^^0^^6.38^4.27^8.79^3.87
-~01160~^~0100~^~Egg, yolk, raw, frozen, salted, pasteurized~^~EGG,YOLK,RAW,FRZ,SALTED,PAST~^^^^^0^^6.25^4.36^9.02^3.68
-~01161~^~0100~^~Cheese substitute, mozzarella~^~CHEESE SUB,MOZZARELLA~^^^~Y~^^0^^6.38^4.27^8.79^3.87
-~01162~^~0100~^~Yogurt, Greek, 2% fat, mango, CHOBANI~^~YOGURT,GREEK,2% FAT,MANGO,CHOBANI~^^~Chobani~^^^0^^6.38^^^
-~01164~^~0100~^~Cheese sauce, prepared from recipe~^~CHEESE SAU,PREP FROM RECIPE~^^^~Y~^^0^^6.38^4.08^8.92^3.95
-~01165~^~0100~^~Cheese, mexican, queso anejo~^~CHEESE,MEXICAN,QUESO ANEJO~^^^~Y~^^0^^6.38^4.27^8.79^3.87
-~01166~^~0100~^~Cheese, mexican, queso asadero~^~CHEESE,MEXICAN,QUESO ASADERO~^^^~Y~^^0^^6.38^4.27^8.79^3.87
-~01167~^~0100~^~Cheese, mexican, queso chihuahua~^~CHEESE,MEXICAN,QUESO CHIHUAHUA~^^^~Y~^^0^^6.38^4.27^8.79^3.87
-~01168~^~0100~^~Cheese, low fat, cheddar or colby~^~CHEESE,LOFAT,CHEDDAR OR COLBY~^^^~Y~^^0^^6.38^4.27^8.79^3.87
-~01169~^~0100~^~Cheese, low-sodium, cheddar or colby~^~CHEESE,LOW-SODIUM,CHEDDAR OR COLBY~^^^~Y~^^0^^6.38^4.27^8.79^3.87
-~01171~^~0100~^~Egg, whole, raw, frozen, pasteurized (Includes foods for USDA's Food Distribution Program)~^~EGG,WHL,RAW,FRZ,PAST~^^^^^0^^6.25^4.36^9.02^3.68
-~01172~^~0100~^~Egg, white, raw, frozen, pasteurized~^~EGG,WHITE,RAW,FRZ,PAST~^^^^^0^^6.25^4.36^9.02^3.68
-~01173~^~0100~^~Egg, white, dried~^~EGG,WHITE,DRIED~^^^^^0^^6.25^4.36^9.02^3.68
-~01174~^~0100~^~Milk, reduced fat, fluid, 2% milkfat, without added vitamin A and vitamin D~^~MILK,RED FAT,FLUID,2% MILKFAT,WO/ ADDED VIT A & VIT D~^^^~Y~^^0^^0.00^4.27^8.79^3.87
-~01175~^~0100~^~Milk, fluid, 1% fat, without added vitamin A and vitamin D~^~MILK,FLUID,1% FAT,WO/ ADDED VIT A & VIT D~^^^~Y~^^0^^0.00^4.27^8.79^3.87
-~01178~^~0100~^~Sour cream, reduced fat~^~SOUR CREAM,REDUCED FAT~^^^~Y~^^0^^6.38^^^
-~01179~^~0100~^~Sour cream, light~^~SOUR CREAM,LIGHT~^^^~Y~^^0^^6.38^^^
-~01180~^~0100~^~Sour cream, fat free~^~SOUR CREAM,FAT FREE~^^^~Y~^^0^^6.38^^^
-~01184~^~0100~^~Yogurt, vanilla or lemon flavor, nonfat milk, sweetened with low-calorie sweetener~^~YOGURT,VAN OR LEM FLAV,NONFAT MILK,SWTND W/LOW-CALORIE SWTNR~^^^~Y~^^0^^6.38^^^
-~01185~^~0100~^~Parmesan cheese topping, fat free~^~PARMESAN CHS TOPPING,FAT FREE~^^^~Y~^^0^^6.38^4.27^8.79^3.87
-~01186~^~0100~^~Cheese, cream, fat free~^~CHEESE,CREAM,FAT FREE~^^^~Y~^^0^^6.38^4.27^8.79^3.87
-~01187~^~0100~^~Yogurt, chocolate, nonfat milk~^~YOGURT,CHOC,NONFAT MILK~^^^~Y~^^0^^6.38^^^
-~01188~^~0100~^~KRAFT CHEEZ WHIZ Pasteurized Process Cheese Sauce~^~KRAFT CHEEZ WHIZ PAST PROCESS CHS SAU~^^~Kraft Foods, Inc.~^^^0^^6.38^^^
-~01189~^~0100~^~KRAFT CHEEZ WHIZ LIGHT Pasteurized Process Cheese Product~^~KRAFT CHEEZ WHIZ LT PAST PROCESS CHS PRODUCT~^^~Kraft Foods, Inc.~^^^0^^6.38^^^
-~01190~^~0100~^~KRAFT FREE Singles American Nonfat Pasteurized Process Cheese Product~^~KRAFT FREE SINGLES AMERICAN NONFAT PAST PROCESS CHS PRODUCT~^^~Kraft Foods, Inc.~^^^0^^6.38^^^
-~01191~^~0100~^~KRAFT VELVEETA Pasteurized Process Cheese Spread~^~KRAFT VELVEETA PAST PROCESS CHS SPRD~^^~Kraft Foods, Inc.~^^^0^^6.38^^^
-~01192~^~0100~^~KRAFT VELVEETA LIGHT Reduced Fat Pasteurized Process Cheese Product~^~KRAFT VELVEETA LT RED FAT PAST PROCESS CHS PRODUCT~^^~Kraft Foods, Inc.~^^^0^^6.38^^^
-~01193~^~0100~^~KRAFT BREAKSTONE'S Reduced Fat Sour Cream~^~KRAFT BREAKSTONE'S RED FAT SOUR CRM~^^~Kraft Foods, Inc.~^^^0^^6.38^^^
-~01194~^~0100~^~KRAFT BREAKSTONE'S FREE Fat Free Sour Cream~^~KRAFT BREAKSTONE'S FREE FAT FREE SOUR CRM~^^~Kraft Foods, Inc.~^^^0^^6.38^^^
-~01199~^~0100~^~Cream, half and half, fat free~^~CREAM,HALF & HALF,FAT FREE~^^^~Y~^^0^^6.38^^^
-~01200~^~0100~^~Reddi Wip Fat Free Whipped Topping~^~REDDI WIP FAT FREE WHIPPED TOPPING~^^^~Y~^^0^^6.38^^^
-~01202~^~0100~^~Milk, chocolate, fluid, commercial, reduced fat, with added calcium~^~MILK,CHOC,FLUID,COMM,RED FAT,W/ ADDED CA~^^^^^0^^6.38^^^
-~01203~^~0100~^~Yogurt, fruit, lowfat, with low calorie sweetener~^~YOGURT,FRUIT,LOFAT,W/LO CAL SWEETENER~^^^~Y~^^0^^6.38^4.27^8.79^3.87
-~01204~^~0100~^~Cheese, parmesan, dry grated, reduced fat~^~CHEESE,PARMESAN,DRY GRATED,RED FAT~^^^~Y~^^0^^6.38^^^
-~01205~^~0100~^~Cream substitute, flavored, liquid~^~CREAM SUB,FLAV,LIQ~^^^~Y~^^0^^6.29^^^
-~01206~^~0100~^~Cream substitute, flavored, powdered~^~CREAM SUB,FLAV,PDR~^^^~Y~^^0^^6.38^^^
-~01208~^~0100~^~Cheese, provolone, reduced fat~^~CHEESE,PROVOLONE,RED FAT~^^^~Y~^^0^^6.38^4.27^8.79^3.87
-~01209~^~0100~^~Cheese, Mexican, blend, reduced fat~^~CHEESE,MEXICAN,BLEND,RED FAT~^^^~Y~^^0^^6.38^^^
-~01211~^~0100~^~Milk, whole, 3.25% milkfat, without added vitamin A and vitamin D~^~MILK,WHL,3.25% MILKFAT,WO/ ADDED VIT A & VITAMIN D~^^^~Y~^^0^^6.38^^^
-~01212~^~0100~^~Milk, dry, whole, without added vitamin D~^~MILK,DRY,WHL,WO/ ADDED VITAMIN D~^^^~Y~^^0^^6.38^4.27^8.79^3.87
-~01215~^~0100~^~Cheese product, pasteurized process, American, reduced fat, fortified with vitamin D~^~CHEESE PRODUCT,PAST PROCESS,AMERICAN,RED FAT,FORT W/ VIT D~^^^~Y~^^0^^6.38^^^
-~01216~^~0100~^~Yogurt, fruit, low fat, 9 grams protein per 8 ounce, fortified with vitamin D~^~YOGURT,FRUIT,LOFAT,9 GRAMS PROT PER 8 OZ,FORT W/ VITAMIN D~^^^~Y~^^0^^6.38^4.27^8.79^3.87
-~01217~^~0100~^~Yogurt, fruit, low fat, 10 grams protein per 8 ounce, fortified with vitamin D~^~YOGURT,FRUIT,LOFAT,10 GRAMS PROT PER 8 OZ,FORT W/ VITAMIN D~^^^~Y~^^0^^6.38^4.27^8.79^3.87
-~01218~^~0100~^~Yogurt, fruit variety, nonfat, fortified with vitamin D~^~YOGURT,FRUIT VAR,NONFAT,FORT W/ VITAMIN D~^^^~Y~^^0^^6.38^^^
-~01219~^~0100~^~Yogurt, fruit, lowfat, with low calorie sweetener, fortified with vitamin D~^~YOGURT,FRUIT,LOWFAT,W/ LO CAL SWTNR,FORT W/ VITAMIN D~^^^~Y~^^0^^6.38^4.27^8.79^3.87
-~01220~^~0100~^~Yogurt, vanilla, low fat, fortified with vitamin D~^~YOGURT,VANILLA,LOFAT,FORT W/ VITAMIN D~^^^~Y~^^0^^6.38^4.27^8.79^3.87
-~01221~^~0100~^~Yogurt, vanilla or lemon flavor, nonfat milk, sweetened with low-calorie sweetener, fortified with vitamin D~^~YOGURT,VAN/LEM FLAV,NONFAT MILK,W/ LO-CAL SWTNR,FORT W/VIT D~^^^~Y~^^0^^6.38^^^
-~01222~^~0100~^~Yogurt, chocolate, nonfat milk, fortified with vitamin D~^~YOGURT,CHOC,NONFAT MILK,FORT W/ VITAMIN D~^^^~Y~^^0^^6.38^^^
-~01223~^~0100~^~Protein supplement, milk based, Muscle Milk, powder~^~PROTEIN SUPP,MILK BSD,MUSCLE MILK,PDR~^^^~Y~^^0^^6.38^^^
-~01224~^~0100~^~Protein supplement, milk based, Muscle Milk Light, powder~^~PROTEIN SUPP,MILK BSD,MUSCLE MILK LT,PDR~^^^~Y~^^0^^6.38^^^
-~01225~^~0100~^~Dulce de Leche~^~DULCE DE LECHE~^^^~Y~^^0^^6.38^^^
-~01226~^~0100~^~Egg substitute, liquid or frozen, fat free~^~EGG SUB,LIQ OR FRZ,FAT FREE~^^^~Y~^^0^^6.25^4.36^8.84^3.68
-~01227~^~0100~^~Cheese, dry white, queso seco~^~CHEESE,DRY WHITE,QUESO SECO~^^^^^0^^6.38^^^
-~01228~^~0100~^~Cheese, fresh, queso fresco~^~CHEESE,FRSH,QUESO FRESCO~^^^~Y~^^0^^6.38^^^
-~01229~^~0100~^~Cheese, white, queso blanco~^~CHEESE,WHITE,QUESO BLANCO~^^^^^0^^6.38^^^
-~01230~^~0100~^~Milk, buttermilk, fluid, whole~^~MILK,BTTRMLK,FLUID,WHL~^^^~Y~^^0^^6.38^^^
-~01231~^~0100~^~Yogurt, vanilla flavor, lowfat milk, sweetened with low calorie sweetener~^~YOGURT,VANILLA FLAVOR,LOWFAT MILK,SWTND W/ LO CAL SWTNR~^^^~Y~^^0^^6.38^^^
-~01235~^~0100~^~Yogurt, frozen, flavors not chocolate, nonfat milk, with low-calorie sweetener~^~YOGURT,FRZ,FLAVORS NOT CHOC,NONFAT MILK,W/ LOW-CALORIE SWTNR~^^^~Y~^^0^^6.38^^^
-~01236~^~0100~^~Ice cream, soft serve, chocolate~^~ICE CRM,SOFT SERVE,CHOC~^^^~Y~^^0^^6.38^^^
-~01237~^~0100~^~Ice cream, bar or stick, chocolate covered~^~ICE CRM,BAR OR STK,CHOC COVERED~^^^~Y~^^0^^6.38^^^
-~01238~^~0100~^~Ice cream sandwich~^~ICE CRM SNDWCH~^^^~Y~^^0^^6.38^^^
-~01239~^~0100~^~Ice cream cookie sandwich~^~ICE CRM COOKIE SNDWCH~^^^~Y~^^0^^6.38^^^
-~01240~^~0100~^~Ice cream cone, chocolate covered, with nuts, flavors other than chocolate~^~ICE CRM CONE,CHOC COVERED,W/ NUTS,FLAVORS OTHER THAN CHOC~^^^~Y~^^0^^6.25^^^
-~01241~^~0100~^~Ice cream sandwich, made with light ice cream, vanilla~^~ICE CRM SNDWCH,MADE W/ LT ICE CRM,VANILLA~^^^~Y~^^0^^6.25^^^
-~01242~^~0100~^~Ice cream sandwich, vanilla, light, no sugar added~^~ICE CRM SNDWCH,VANILLA,LT,NO SUGAR ADDED~^^^~Y~^^0^^6.38^^^
-~01243~^~0100~^~Fat free ice cream, no sugar added, flavors other than chocolate~^~FAT FREE ICE CRM,NO SUGAR ADDED,FLAVORS OTHER THAN CHOC~^^^~Y~^^0^^6.38^^^
-~01244~^~0100~^~Milk dessert bar, frozen, made from lowfat milk~^~MILK DSSRT BAR,FRZ,MADE FROM LOWFAT MILK~^^^~Y~^^0^^6.38^^^
-~01249~^~0100~^~Yogurt, Greek, 2% fat,mixed berry blend, CHOBANI~^~YOGURT,GREEK,2% FAT,MXD BERRY BLEND,CHOBANI~^^~Chobani~^^^0^^6.38^^^
-~01250~^~0100~^~Nutritional supplement for people with diabetes, liquid~^~NUTRITIONAL SUPP FOR PEOPLE W/ DIABETES,LIQ~^^^~Y~^^0^^6.38^^^
-~01251~^~0100~^~Cheese, Mexican blend~^~CHEESE,MEXICAN BLEND~^^^~Y~^^0^^6.38^^^
-~01252~^~0100~^~Cheese product, pasteurized process, American, vitamin D fortified~^~CHEESE PRODUCT,PAST PROCESS,AMERICAN,VITAMIN D FORT~^^^~Y~^^0^^6.38^^^
-~01253~^~0100~^~Cheese, pasteurized process, American, without added vitamin D~^~CHEESE,PAST PROCESS,AMERICAN,WO/ ADDED VITAMIN D~^^^~Y~^^0^^6.38^4.27^8.79^3.87
-~01254~^~0100~^~Cheese food, pasteurized process, American, without added vitamin D~^~CHEESE FD,PAST PROCESS,AMERICAN,WO/ ADDED VITAMIN D~^^^~Y~^^0^^6.38^4.27^8.79^3.87
-~01255~^~0100~^~Egg, whole, raw, frozen, salted, pasteurized~^~EGG,WHL,RAW,FRZ,SALTED,PAST~^^^^^0^^6.25^^^
-~01256~^~0100~^~Yogurt, Greek, plain, nonfat (Includes foods for USDA's Food Distribution Program)~^~YOGURT,GREEK,PLN,NONFAT~^^^~Y~^^0^^6.38^^^
-~01258~^~0100~^~Egg, white, dried, stabilized, glucose reduced~^~EGG,WHITE,DRIED,STABILIZED,GLUCOSE RED~^^^^^0^^6.25^^^
-~01259~^~0100~^~Cheese spread, American or Cheddar cheese base, reduced fat~^~CHEESE SPRD,AMERICAN OR CHEDDAR CHS BASE,RED FAT~^^^~Y~^^0^^6.38^^^
-~01260~^~0100~^~Cheese, cheddar, reduced fat (Includes foods for USDA's Food Distribution Program)~^~CHEESE,CHEDDAR,RED FAT~^^^~Y~^^0^^6.38^^^
-~01263~^~0100~^~Ice cream, light, soft serve, chocolate~^~ICE CRM,LT,SOFT SERVE,CHOC~^^^~Y~^^0^^6.25^^^
-~01264~^~0100~^~Ice cream bar, stick or nugget, with crunch coating~^~ICE CRM BAR,STK OR NUGGET,W/ CRUNCH COATING~^^^~Y~^^0^^6.38^^^
-~01265~^~0100~^~Cheese, cheddar, nonfat or fat free~^~CHEESE,CHEDDAR,NONFAT OR FAT FREE~^^^~Y~^^0^^6.25^^^
-~01266~^~0100~^~Cheese, Swiss, nonfat or fat free~^~CHEESE,SWISS,NONFAT OR FAT FREE~^^^~Y~^^0^^6.38^^^
-~01267~^~0100~^~Cheese, mexican, queso cotija~^~CHEESE,MEXICAN,QUESO COTIJA~^^^~Y~^^0^^6.25^^^
-~01270~^~0100~^~Cheese, cheddar, sharp, sliced~^~CHEESE,CHEDDAR,SHARP,SLICED~^^^~Y~^^0^^6.38^^^
-~01271~^~0100~^~Cheese, mozzarella, low moisture, part-skim, shredded~^~CHEESE,MOZZARELLA,LO MOIST,PART-SKIM,SHREDDED~^^^~Y~^^0^^6.38^^^
-~01275~^~0100~^~Yogurt, Greek, nonfat, vanilla, CHOBANI~^~YOGURT,GREEK,NONFAT,VANILLA,CHOBANI~^^~Chobani~^^^0^^6.38^^^
-~01276~^~0100~^~Yogurt, Greek, strawberry, DANNON OIKOS~^~YOGURT,GREEK,STRAWBERRY,DANNON OIKOS~^^~Danone~^^^0^^6.38^^^
-~01278~^~0100~^~Yogurt, Greek, nonfat, vanilla, DANNON OIKOS~^~YOGURT,GREEK,NONFAT,VANILLA,DANNON OIKOS~^^~Danone~^^^0^^6.38^^^
-~01280~^~0100~^~Yogurt, Greek, nonfat, strawberry, DANNON OIKOS~^~YOGURT,GREEK,NONFAT,STRAWBERRY,DANNON OIKOS~^^~Danone~^^^0^^6.38^^^
-~01284~^~0100~^~Yogurt, Greek, strawberry, lowfat~^~YOGURT,GREEK,STRAWBERRY,LOWFAT~^^^~Y~^^0^^6.38^^^
-~01285~^~0100~^~Yogurt, Greek, strawberry, nonfat~^~YOGURT,GREEK,STRAWBERRY,NONFAT~^^^~Y~^^0^^6.38^^^
-~01286~^~0100~^~Yogurt, Greek, vanilla, nonfat~^~YOGURT,GREEK,VANILLA,NONFAT~^^^~Y~^^0^^6.38^^^
-~01287~^~0100~^~Yogurt, Greek, plain, lowfat~^~YOGURT,GREEK,PLN,LOWFAT~^^^~Y~^^0^^6.38^^^
-~01289~^~0100~^~Kefir, lowfat, plain, LIFEWAY~^~KEFIR,LOWFAT,PLN,LIFEWAY~^^~Lifeway~^~Y~^^0^^6.38^^^
-~01290~^~0100~^~Kefir, lowfat, strawberry, LIFEWAY~^~KEFIR,LOWFAT,STRAWBERRY,LIFEWAY~^^^~Y~^^0^^6.38^^^
-~01291~^~0100~^~Milk, evaporated, 2% fat, with added vitamin A and vitamin D~^~MILK,CND,EVAP,WO/ VIT A~^^^~Y~^^0^^6.38^4.27^8.79^3.87
-~01292~^~0100~^~Milk, chocolate, fat free, with added vitamin A and vitamin D~^~MILK,CHOC,FAT FREE,W/ ADDED VIT A & VITAMIN D~^^^~Y~^^0^^6.25^^^
-~01293~^~0100~^~Yogurt, Greek, plain, whole milk~^~YOGURT,GREEK,PLN,WHL MILK~^^^~Y~^^0^^6.25^^^
-~01294~^~0100~^~Yogurt, Greek, fruit, whole milk~^~YOGURT,GREEK,FRUIT,WHL MILK~^^^~Y~^^0^^6.38^^^
-~01295~^~0100~^~Yogurt, vanilla, non-fat~^~YOGURT,VANILLA,NON-FAT~^^^~Y~^^0^^6.38^4.27^8.79^3.87
-~01297~^~0100~^~Yogurt, Greek, vanilla, lowfat~^~YOGURT,GREEK,VANILLA,LOWFAT~^^^~Y~^^0^^6.38^^^
-~01298~^~0100~^~Yogurt, frozen, flavors other than chocolate, lowfat~^~YOGURT,FRZ,FLAVORS OTHER THAN CHOC,LOWFAT~^^^~Y~^^0^^6.38^^^
-~01300~^~0100~^~Ice cream bar, covered with chocolate and nuts~^~ICE CRM BAR,COVERED W/ CHOC & NUTS~^^^~Y~^^0^^6.38^^^
-~01301~^~0100~^~Ice cream sundae cone~^~ICE CRM SUNDAE CONE~^^^~Y~^^0^^6.38^^^
-~01302~^~0100~^~Light ice cream, Creamsicle~^~LIGHT ICE CRM,CREAMSICLE~^^^~Y~^^0^^6.25^^^
-~01303~^~0100~^~Cream, half and half, lowfat~^~CREAM,HALF & HALF,LOWFAT~^^^~Y~^^0^^6.25^^^
-~01304~^~0100~^~Yogurt, Greek, 2% fat, pineapple, CHOBANI~^~YOGURT,GREEK,2% FAT,PNAPPL,CHOBANI~^^~Chobani~^^^0^^6.38^^^
-~01305~^~0100~^~Milk, chocolate, lowfat, reduced sugar~^~MILK,CHOC,LOWFAT,RED SUGAR~^^^~Y~^^0^^6.38^^^
-~01306~^~0100~^~Ice cream, lowfat, no sugar added, cone, added peanuts and chocolate sauce~^~ICE CRM,LOWFAT,NO SUGAR ADDED,CONE,ADDED PNUTS & CHOC SAU~^^^~Y~^^0^^6.25^^^
-~01307~^~0100~^~Yogurt, Greek, 2% fat, strawberry banana, CHOBANI~^~YOGURT,GREEK,2% FAT,STRAWBERRY BANANA,CHOBANI~^^~Chobani~^^^0^^^^^
-~01308~^~0100~^~Yogurt, Greek, whole, plain, CHOBANI~^~YOGURT,GREEK,WHL,PLN,CHOBANI~^^~Chobani~^^^0^^6.38^^^
-~01312~^~0100~^~Yogurt, Greek, nonfat, lemon blend, CHOBANI~^~YOGURT,GREEK,NONFAT,LEMON BLEND,CHOBANI~^^~Chobani~^^^0^^6.38^^^
-~01313~^~0100~^~Yogurt, Greek, nonfat, peach, CHOBANI~^~YOGURT,GREEK,NONFAT,PEACH,CHOBANI~^^~Chobani~^^^0^^6.38^^^
-~01314~^~0100~^~Yogurt, Greek, nonfat, plain, CHOBANI~^~YOGURT,GREEK,NONFAT,PLN,CHOBANI~^^~Chobani~^^^0^^6.38^^^
-~01316~^~0100~^~Yogurt, Greek, nonfat, raspberry, CHOBANI~^~YOGURT,GREEK,NONFAT,RASPBERRY,CHOBANI~^^~Chobani~^^^0^^6.38^^^
-~01319~^~0100~^~Yogurt, Greek, nonfat, Fruit on Bottom, Pomegranate, CHOBANI~^~YOGURT,GREEK,NONFAT,FRUIT ON BTTM,POMEGRANATE,CHOBANI~^^~Chobani~^^^0^^6.38^^^
-~01320~^~0100~^~Yogurt, Greek, Blueberry, CHOBANI~^~YOGURT,GREEK,BLUEBERRY,CHOBANI~^^~Chobani~^^^0^^6.38^^^
-~01321~^~0100~^~Yogurt, Greek, nonfat, Fruit on Bottom, Strawberry, CHOBANI~^~YOGURT,GREEK,NONFAT,FRUIT ON BTTM,STRAWBERRY,CHOBANI~^^~Chobani~^^^0^^6.38^^^
-~01322~^~0100~^~Yogurt, Greek, nonfat, Fruit on Bottom, Blackberry, CHOBANI~^~YOGURT,GREEK,NONFAT,FRUIT ON BTTM,BLACKBERRY,CHOBANI~^^~Chobani~^^^0^^6.38^^^
-~01323~^~0100~^~Butter, Clarified butter (ghee)~^~BUTTER,CLARIFIED BUTTER (GHEE)~^^^^^0^^6.25^^^
-~02001~^~0200~^~Spices, allspice, ground~^~ALLSPICE,GROUND~^^^^^0^~Pimenta dioica~^6.25^3.36^8.37^2.35
-~02002~^~0200~^~Spices, anise seed~^~ANISE SEED~^^^^^0^~Pimpinella anisum~^6.25^3.36^8.37^2.90
-~02003~^~0200~^~Spices, basil, dried~^~SPICES,BASIL,DRIED~^^^~Y~^^0^~Ocimum basilicum~^6.25^2.44^8.37^3.00
-~02004~^~0200~^~Spices, bay leaf~^~SPICES,BAY LEAF~^^^^^0^~Laurus nobilis~^6.25^2.44^8.37^3.00
-~02005~^~0200~^~Spices, caraway seed~^~CARAWAY SEED~^^^~Y~^^0^~Carum carvi~^6.25^3.36^8.37^2.90
-~02006~^~0200~^~Spices, cardamom~^~SPICES,CARDAMOM~^^^^^0^~Elettaria cardamomum~^6.25^3.36^8.37^3.20
-~02007~^~0200~^~Spices, celery seed~^~CELERY SEED~^^^~Y~^^0^~Apium graveolens~^6.25^3.36^8.37^2.90
-~02008~^~0200~^~Spices, chervil, dried~^~CHERVIL,DRIED~^^^^^0^~Anthriscus cerefolium~^6.25^2.44^8.37^3.00
-~02009~^~0200~^~Spices, chili powder~^~CHILI POWDER~^^^~Y~^^0^^6.25^3.23^8.37^2.39
-~02010~^~0200~^~Spices, cinnamon, ground~^~CINNAMON,GROUND~^~Cassia~^^~Y~^^0^~Cinnamomum aromaticum~^6.25^1.82^8.37^2.85
-~02011~^~0200~^~Spices, cloves, ground~^~CLOVES,GROUND~^^^~Y~^^0^~Syzygium aromaticum~^6.25^1.82^8.37^2.35
-~02012~^~0200~^~Spices, coriander leaf, dried~^~CORIANDER LEAF,DRIED~^~Chinese parsley, cilantro~^^~Y~^^0^~Coriandrum sativum~^6.25^2.44^8.37^3.57
-~02013~^~0200~^~Spices, coriander seed~^~CORIANDER SEED~^^^^^0^~Coriandrum sativum~^6.25^3.36^8.37^1.95
-~02014~^~0200~^~Spices, cumin seed~^~CUMIN SEED~^^^~Y~^^0^~Cuminum cyminum~^6.25^3.36^8.37^2.90
-~02015~^~0200~^~Spices, curry powder~^~CURRY POWDER~^^^~Y~^^0^^6.18^3.12^8.37^2.92
-~02016~^~0200~^~Spices, dill seed~^~DILL SEED~^^^^^0^~Anethum graveolens~^6.25^3.36^8.37^2.35
-~02017~^~0200~^~Spices, dill weed, dried~^~DILL WEED,DRIED~^^^^^0^~Anethum graveolens~^6.25^2.44^8.37^3.00
-~02018~^~0200~^~Spices, fennel seed~^~FENNEL SEED~^^^^^0^~Foeniculum vulgare~^6.25^3.36^8.37^3.20
-~02019~^~0200~^~Spices, fenugreek seed~^~FENUGREEK SEED~^^^^^0^~Trigonella foenum-graecum~^5.30^3.47^8.37^3.25
-~02020~^~0200~^~Spices, garlic powder~^~GARLIC POWDER~^^^~Y~^^0^~Allium sativum~^6.25^2.78^8.37^3.84
-~02021~^~0200~^~Spices, ginger, ground~^~GINGER,GROUND~^^^~Y~^^0^~Zingiber officinale~^6.25^2.78^8.37^3.84
-~02022~^~0200~^~Spices, mace, ground~^~MACE,GROUND~^^^^^0^~Myristica fragrans~^6.25^3.36^8.37^3.60
-~02023~^~0200~^~Spices, marjoram, dried~^~MARJORAM,DRIED~^^^~Y~^^0^~Origanum majorana~^6.25^2.44^8.37^3.00
-~02024~^~0200~^~Spices, mustard seed, ground~^~SPICES,MUSTARD SD,GROUND~^^^~Y~^^0^~Sinapis alba and Brassica juncea~^5.40^3.47^8.37^4.07
-~02025~^~0200~^~Spices, nutmeg, ground~^~NUTMEG,GROUND~^^^~Y~^^0^~Myristica fragrans~^5.30^3.47^8.37^4.07
-~02026~^~0200~^~Spices, onion powder~^~ONION POWDER~^^^~Y~^^0^~Allium cepa~^6.25^2.78^8.37^3.84
-~02027~^~0200~^~Spices, oregano, dried~^~SPICES,OREGANO,DRIED~^^^~Y~^^0^~Origanum vulgare~^6.25^2.44^8.37^3.00
-~02028~^~0200~^~Spices, paprika~^~PAPRIKA~^^^~Y~^^0^~Capsicum annuum~^6.25^3.36^8.37^2.35
-~02029~^~0200~^~Spices, parsley, dried~^~PARSLEY,DRIED~^^^~Y~^^0^~Petroselinum crispum~^6.25^2.44^8.37^3.57
-~02030~^~0200~^~Spices, pepper, black~^~PEPPER,BLACK~^^^~Y~^^0^~Piper nigrum~^5.35^1.83^8.37^3.20
-~02031~^~0200~^~Spices, pepper, red or cayenne~^~PEPPER,RED OR CAYENNE~^^^~Y~^^0^~Capsicum frutescens or Capsicum annuum~^6.25^3.36^8.37^2.35
-~02032~^~0200~^~Spices, pepper, white~^~PEPPER,WHITE~^^^^^0^~Piper nigrum~^5.35^1.83^8.37^3.78
-~02033~^~0200~^~Spices, poppy seed~^~POPPY SEED~^^^~Y~^^0^~Papaver somniferum~^5.30^3.47^8.37^4.07
-~02034~^~0200~^~Spices, poultry seasoning~^~POULTRY SEASONING~^^^~Y~^^0^^5.89^2.36^8.37^3.38
-~02035~^~0200~^~Spices, pumpkin pie spice~^~PUMPKIN PIE SPICE~^^^~Y~^^0^^6.06^2.50^8.37^3.19
-~02036~^~0200~^~Spices, rosemary, dried~^~ROSEMARY,DRIED~^^^^^0^~Rosmarinus officinalis~^6.25^2.44^8.37^3.00
-~02037~^~0200~^~Spices, saffron~^~SAFFRON~^^^^^0^~Crocus sativus~^6.25^2.44^8.37^3.57
-~02038~^~0200~^~Spices, sage, ground~^~SAGE,GROUND~^^^~Y~^^0^~Salvia officinalis~^6.25^2.44^8.37^3.00
-~02039~^~0200~^~Spices, savory, ground~^~SAVORY,GROUND~^^^^^0^~Satureja hortensis~^6.25^2.44^8.37^3.00
-~02041~^~0200~^~Spices, tarragon, dried~^~SPICES,TARRAGON,DRIED~^^^^^0^~Artemisia dracunculus~^6.25^2.44^8.37^3.57
-~02042~^~0200~^~Spices, thyme, dried~^~SPICES,THYME,DRIED~^^^~Y~^^0^~Thymus vulgaris~^6.25^2.44^8.37^3.00
-~02043~^~0200~^~Spices, turmeric, ground~^~TURMERIC,GROUND~^^^~Y~^^0^~Curcuma longa L.~^6.25^2.78^8.37^3.84
-~02044~^~0200~^~Basil, fresh~^~BASIL,FRESH~^^^~Y~^~Tough stems, flower heads and trimmings~^36^~Ocimum basilicum~^6.25^2.44^8.37^3.57
-~02045~^~0200~^~Dill weed, fresh~^~DILL WEED,FRSH~^^^^~Tough stems and trimmings~^41^~Anethum graveolens~^6.25^2.44^8.37^3.57
-~02046~^~0200~^~Mustard, prepared, yellow~^~MUSTARD,PREPARED,YELLOW~^^^~Y~^^0^^6.25^3.47^8.37^3.34
-~02047~^~0200~^~Salt, table~^~SALT,TABLE~^^^~Y~^^0^^0.00^^^
-~02048~^~0200~^~Vinegar, cider~^~VINEGAR,CIDER~^^^~Y~^^0^^0.00^^^
-~02049~^~0200~^~Thyme, fresh~^~THYME,FRSH~^^^^~Stems~^32^~Thymus vulgaris~^6.25^2.44^8.37^3.00
-~02050~^~0200~^~Vanilla extract~^~VANILLA EXTRACT~^^^^^0^^6.25^2.44^8.37^3.90
-~02051~^~0200~^~Vanilla extract, imitation, alcohol~^~VANILLA EXTRACT,IMITN,ALCOHOL~^^^^^0^^6.25^2.44^8.37^3.90
-~02052~^~0200~^~Vanilla extract, imitation, no alcohol~^~VANILLA EXTRACT,IMITN,NO ALCOHOL~^^^~Y~^^0^^6.25^2.44^8.37^3.90
-~02053~^~0200~^~Vinegar, distilled~^~VINEGAR,DISTILLED~^^^~Y~^^0^^^^^
-~02054~^~0200~^~Capers, canned~^~CAPERS,CANNED~^^^~Y~^^0^~Capparis spinosa~^6.25^1.82^8.37^2.35
-~02055~^~0200~^~Horseradish, prepared~^~HORSERADISH,PREPARED~^^^~Y~^^0^^6.25^2.78^8.37^3.44
-~02063~^~0200~^~Rosemary, fresh~^~ROSEMARY,FRESH~^^^^~Stems~^35^~Rosmarinus officinalis~^6.25^2.44^8.37^3.57
-~02064~^~0200~^~Peppermint, fresh~^~PEPPERMINT,FRESH~^~mint~^^^~Stems~^39^~Mentha x piperita L. nothosubsp. piperita~^6.25^2.44^8.37^3.57
-~02065~^~0200~^~Spearmint, fresh~^~SPEARMINT,FRESH~^~mint~^^^~Stems~^59^~Mentha spicata~^6.25^2.44^8.37^3.57
-~02066~^~0200~^~Spearmint, dried~^~SPEARMINT,DRIED~^~mint~^^^^0^^6.25^2.44^8.37^3.57
-~02068~^~0200~^~Vinegar, red wine~^~VINEGAR,RED WINE~^^^^^0^^6.25^^^
-~02069~^~0200~^~Vinegar, balsamic~^~VINEGAR,BALSAMIC~^^^^^0^^^^^
-~02074~^~0200~^~Seasoning mix, dry, sazon, coriander & annatto~^~SEASONING MIX,DRY,SAZON,CORIANDER & ANNATTO~^^^^^0^^6.25^^^
-~02075~^~0200~^~Seasoning mix, dry, taco, original~^~SEASONING MIX,DRY,TACO,ORIGINAL~^^^^^0^^^^^
-~02076~^~0200~^~Seasoning mix, dry, chili, original~^~SEASONING MIX,DRY,CHILI,ORIGINAL~^^^^^0^^^^^
-~03000~^~0300~^~Clif Z bar~^~CLIF Z BAR~^^^~Y~^^0^^6.14^4.10^8.90^4.10
-~03001~^~0300~^~Babyfood, juice treats, fruit medley, toddler~^~BABYFOOD,JUC TREATS,FRUIT MEDLEY,TODD~^^^~Y~^^0^^6.25^^^
-~03002~^~0300~^~Babyfood, meat, beef, strained~^~BABYFOOD,MEAT,BF,STR~^^^~Y~^^0^^6.25^^^
-~03003~^~0300~^~Babyfood, meat, beef, junior~^~BABYFOOD,MEAT,BF,JR~^^^~Y~^^0^^6.25^^^
-~03005~^~0300~^~Babyfood, meat, veal, strained~^~BABYFOOD,MEAT,VEAL,STR~^^^~Y~^^0^^^^^
-~03007~^~0300~^~Babyfood, meat, pork, strained~^~BABYFOOD,MEAT,PORK,STR~^^^^^0^^6.25^4.27^9.02^
-~03008~^~0300~^~Babyfood, meat, ham, strained~^~BABYFOOD,MEAT,HAM,STR~^^^~Y~^^0^^6.25^4.27^9.02^
-~03009~^~0300~^~Babyfood, meat, ham, junior~^~BABYFOOD,MEAT,HAM,JUNIOR~^^^^^0^^6.25^4.27^9.02^
-~03010~^~0300~^~Babyfood, meat, lamb, strained~^~BABYFOOD,MEAT,LAMB,STR~^^^~Y~^^0^^6.25^4.27^9.02^3.87
-~03011~^~0300~^~Babyfood, meat, lamb, junior~^~BABYFOOD,MEAT,LAMB,JUNIOR~^^^^^0^^6.25^4.27^9.02^3.87
-~03012~^~0300~^~Babyfood, meat, chicken, strained~^~BABYFOOD,MEAT,CHICK,STR~^^^~Y~^^0^^6.25^4.27^9.02^
-~03013~^~0300~^~Babyfood, meat, chicken, junior~^~BABYFOOD,MEAT,CHICK,JR~^^^~Y~^^0^^6.25^4.27^9.02^
-~03014~^~0300~^~Babyfood, meat, chicken sticks, junior~^~BABYFOOD,MEAT,CHICK STKS,JR~^^^~Y~^^0^^6.25^4.00^8.70^2.70
-~03015~^~0300~^~Babyfood, meat, turkey, strained~^~BABYFOOD,MEAT,TURKEY,STR~^^^~Y~^^0^^6.25^4.27^9.02^
-~03016~^~0300~^~Babyfood, meat, turkey, junior~^~BABYFOOD,MEAT,TURKEY,JR~^^^~Y~^^0^^6.25^4.27^9.02^
-~03017~^~0300~^~Babyfood, meat, turkey sticks, junior~^~Babyfood, meat, turkey sticks, junior~^^^~Y~^^0^^6.25^^^
-~03019~^~0300~^~Babyfood, snack, GERBER GRADUATE FRUIT STRIPS, Real Fruit Bars~^~BABYFOOD,SNACK,GERBER GRADUATE FRUIT STRIPS,REAL FRUIT BARS~^^~GERBER~^~Y~^^0^^^^^
-~03021~^~0300~^~Babyfood, meat, meat sticks, junior~^~BABYFOOD,MEAT,MEAT STKS,JR~^^^~Y~^^0^^6.25^4.00^8.70^2.70
-~03022~^~0300~^~Babyfood, GERBER, 2nd Foods, apple, carrot and squash, organic~^~BABYFOOD,GERBER,2ND FOODS,APPL,CARROT & SQUASH,ORGANIC~^^^~Y~^^0^^6.25^^^
-~03023~^~0300~^~Babyfood, finger snacks, GERBER, GRADUATES, PUFFS, apple and cinnamon~^~BABYFOOD,FINGER SNACKS,GERBER,GRADUATES,PUFFS,APPL & CINN~^^~GERBER~^~Y~^^0^^6.25^3.36^6.37^3.60
-~03024~^~0300~^~Babyfood, water, bottled, GERBER, without added fluoride~^~BABYFOOD,H2O,BTLD,GERBER,WO/ ADDED FLUORIDE~^^~GERBER~^~Y~^^0^^^^^
-~03025~^~0300~^~Babyfood, GERBER, 3rd Foods, apple, mango and kiwi~^~BABYFOOD,GERBER,3RD FOODS,APPL,MANGO & KIWI~^^~GERBER~^~Y~^^0^^6.25^3.60^8.37^3.60
-~03026~^~0300~^~Babyfood, tropical fruit medley~^~BABYFOOD,TROPICAL FRUIT MEDLEY~^^^~Y~^^0^^6.25^3.60^8.37^3.60
-~03041~^~0300~^~Babyfood, dinner, vegetables and dumplings and beef, strained~^~BABYFOOD,DINNER,VEG&DUMPLINGS&BF,STR~^^^^^0^^6.03^4.10^8.90^4.10
-~03042~^~0300~^~Babyfood, dinner, vegetables and dumplings and beef, junior~^~BABYFOOD,DINNER,VEG&DUMPLINGS&BF,JR~^^^^^0^^6.03^4.10^8.90^4.10
-~03043~^~0300~^~Babyfood, dinner, beef lasagna, toddler~^~BABYFOOD,DINNER,BF LASAGNA,TODD~^^^^^0^^5.98^4.10^8.90^4.10
-~03044~^~0300~^~Babyfood, dinner, macaroni and tomato and beef, strained~^~BABYFOOD,DINNER,MACARONI&TOMATO&BF,STR~^^^~Y~^^0^^6.14^4.10^8.90^4.10
-~03045~^~0300~^~Babyfood, dinner, macaroni and tomato and beef, junior~^~BABYFOOD,DINNER,MACARONI&TOMATO&BF,JR~^^^~Y~^^0^^5.98^4.10^8.90^4.10
-~03046~^~0300~^~Babyfood, ravioli, cheese filled, with tomato sauce~^~BABYFOOD,RAVIOLI,CHS FILLED,W/TOMATO SAU~^^^~Y~^^0^^6.25^^^
-~03047~^~0300~^~Babyfood, dinner, beef noodle, strained~^~BABYFOOD,DINNER,BF NOODLE,STR~^^^~Y~^^0^^6.14^4.10^8.90^4.10
-~03048~^~0300~^~Babyfood, macaroni and cheese, toddler~^~BABYFOOD,MACARONI&CHS,TODD~^^^~Y~^^0^^6.25^^^
-~03049~^~0300~^~Babyfood, dinner, beef and rice, toddler~^~BABYFOOD,DINNER,BF&RICE,TODD~^^^^^0^^6.14^4.10^8.90^4.10
-~03050~^~0300~^~Babyfood, dinner, spaghetti and tomato and meat, junior~^~BABYFOOD,DINNER,SPAGHETTI&TOMATO&MEAT,JR~^^^~Y~^^0^^6.25^^^
-~03051~^~0300~^~Babyfood, dinner, spaghetti and tomato and meat, toddler~^~BABYFOOD,DINNER,SPAGHETTI&TOMATO&MEAT,TODD~^^^^^0^^5.98^4.10^8.90^4.10
-~03053~^~0300~^~Babyfood, dinner, vegetables and beef, strained~^~BABYFOOD,DINNER,VEG&BF,STR~^^^~Y~^^0^^^^^
-~03054~^~0300~^~Babyfood, dinner, vegetables and beef, junior~^~BABYFOOD,DINNER,VEG&BF,JR~^^^~Y~^^0^^^^^
-~03055~^~0300~^~Babyfood, dinner, beef with vegetables~^~BABYFOOD,DINNER,BF W/VEG~^^^~Y~^^0^^^^^
-~03067~^~0300~^~Babyfood, dinner, vegetables and lamb, junior~^~BABYFOOD,DINNER,VEG&LAMB,JR~^^^^^0^^6.25^3.70^8.90^3.90
-~03068~^~0300~^~Babyfood, dinner, chicken noodle, strained~^~BABYFOOD,DINNER,CHICK NOODLE,STR~^^^~Y~^^0^^6.25^^^
-~03069~^~0300~^~Babyfood, dinner, chicken noodle, junior~^~BABYFOOD,DINNER,CHICK NOODLE,JR~^^^~Y~^^0^^6.25^^^
-~03070~^~0300~^~Babyfood, dinner, chicken soup, strained~^~BABYFOOD,DINNER,CHICK SOUP,STR~^^^~Y~^^0^^6.25^4.27^9.02^3.84
-~03072~^~0300~^~Babyfood, dinner, chicken stew, toddler~^~BABYFOOD DINNER CHICK STEW TODD~^^^~Y~^^0^^6.25^3.70^8.90^3.90
-~03073~^~0300~^~Babyfood, dinner, vegetables chicken, strained~^~BABYFOOD,DINNER,VEG CHICK,STR~^^^~Y~^^0^^^^^
-~03075~^~0300~^~Babyfood, dinner, vegetables, noodles and chicken, strained~^~BABYFOOD,DINNER,VEG,NOODLES&CHICK,STR~^^^^^0^^5.98^4.10^8.90^4.10
-~03076~^~0300~^~Babyfood, dinner, vegetables, noodles and chicken, junior~^~BABYFOOD,DINNER,VEG,NOODLES&CHICK,JR~^^^^^0^^5.98^4.10^8.90^4.10
-~03077~^~0300~^~Babyfood, dinner, pasta with vegetables~^~BABYFOOD,DINNER,PASTA W/VEG~^^^~Y~^^0^^^^^
-~03079~^~0300~^~Babyfood, dinner, vegetables and noodles and turkey, strained~^~BABYFOOD,DINNER,VEG&NOODLES&TURKEY,STR~^^^^^0^^5.98^4.10^8.90^4.10
-~03081~^~0300~^~Babyfood, dinner, vegetables and noodles and turkey, junior~^~BABYFOOD,DINNER,VEG&NOODLES&TURKEY,JR~^^^^^0^^5.98^4.10^8.90^4.10
-~03082~^~0300~^~Babyfood, dinner, turkey and rice, strained~^~BABYFOOD,DINNER,TURKEY&RICE,STR~^^^~Y~^^0^^^^^
-~03083~^~0300~^~Babyfood, dinner, turkey and rice, junior~^~BABYFOOD,DINNER,TURKEY & RICE,JR~^^^~Y~^^0^^^^^
-~03084~^~0300~^~Babyfood, dinner, vegetables and turkey, strained~^~BABYFOOD,DINNER,VEG&TURKEY,STR~^^^~Y~^^0^^^^^
-~03085~^~0300~^~Babyfood, dinner, vegetables and turkey, junior~^~BABYFOOD,DINNER,VEG&TURKEY,JR~^^^~Y~^^0^^^^^
-~03089~^~0300~^~Babyfood, dinner, macaroni and cheese, strained~^~BABYFOOD,DINNER,MACARONI&CHS,STR~^^^~Y~^^0^^^^^
-~03090~^~0300~^~Babyfood, dinner, macaroni and cheese, junior~^~BABYFOOD,DINNER,MACARONI&CHS,JR~^^^~Y~^^0^^6.00^4.20^8.70^4.00
-~03091~^~0300~^~Babyfood, vegetables, green beans, strained~^~BABYFOOD,VEG,GRN BNS,STR~^^^~Y~^^0^^6.25^2.44^8.37^3.57
-~03092~^~0300~^~Babyfood, vegetables, green beans, junior~^~BABYFOOD,VEG,GRN BNS,JR~^^^~Y~^^0^^6.25^2.44^8.37^3.57
-~03093~^~0300~^~Babyfood, green beans, dices, toddler~^~BABYFOOD,GRN BNS,DICES,TODD~^^^~Y~^^0^^^^^
-~03096~^~0300~^~Babyfood, vegetable, green beans and potatoes~^~BABYFOOD,VEG,GRN BNS&POTATOES~^^^~Y~^^0^^^^^
-~03098~^~0300~^~Babyfood, vegetables, beets, strained~^~BABYFOOD,VEG,BEETS,STR~^^^~Y~^^0^^6.25^2.78^8.37^3.84
-~03099~^~0300~^~Babyfood, vegetables, carrots, strained~^~BABYFOOD,VEG,CARROTS,STR~^^^~Y~^^0^^6.25^2.78^8.37^3.84
-~03100~^~0300~^~Babyfood, vegetables, carrots, junior~^~BABYFOOD,VEG,CARROTS,JR~^^^~Y~^^0^^6.25^2.78^8.37^3.84
-~03104~^~0300~^~Babyfood, vegetables, squash, strained~^~BABYFOOD,VEG,SQUASH,STR~^^^~Y~^^0^^6.25^^^
-~03105~^~0300~^~Babyfood, vegetables, squash, junior~^~BABYFOOD,VEG,SQUASH,JR~^^^~Y~^^0^^6.25^2.44^8.37^3.57
-~03108~^~0300~^~Babyfood, vegetables, sweet potatoes strained~^~BABYFOOD,VEG,SWT POTATOES,STR~^^^~Y~^^0^^6.25^2.78^8.37^4.03
-~03109~^~0300~^~Babyfood, vegetables, sweet potatoes, junior~^~BABYFOOD,VEG,SWT POTATOES,JR~^^^~Y~^^0^^6.25^2.78^8.37^4.03
-~03112~^~0300~^~Babyfood, potatoes, toddler~^~BABYFOOD,POTATOES,TODDLER~^^^~Y~^^0^^^^^
-~03113~^~0300~^~Babyfood, cereal, Oatmeal, dry, GERBER, SINGLE GRAIN, fortified~^~BABYFOOD,CRL,OATMEAL,DRY,GERBER,SINGLE GRAIN,FORT~^^~GERBER~^^^0^^^^^
-~03114~^~0300~^~Babyfood, vegetable, butternut squash and corn~^~BABYFOOD,VEG,BUTTERNUT SQUASH&CORN~^^^~Y~^^0^^^^^
-~03115~^~0300~^~Babyfood, apples, dices, toddler~^~BABYFOOD,APPLS,DICES,TODD~^^^~Y~^^0^^6.25^^^
-~03116~^~0300~^~Babyfood, fruit, applesauce, strained~^~BABYFOOD,FRUIT,APPLSAUC,STR~^^^~Y~^^0^^6.25^3.36^8.37^3.60
-~03117~^~0300~^~Babyfood, fruit, applesauce, junior~^~BABYFOOD,FRUIT,APPLSAUC,JR~^^^~Y~^^0^^6.25^3.36^8.37^3.60
-~03118~^~0300~^~Babyfood, fruit, apricot with tapioca, strained~^~BABYFOOD,FRUIT,APRICOT W/TAPIOCA,STR~^^^~Y~^^0^^6.25^3.36^8.37^3.60
-~03119~^~0300~^~Babyfood, vegetables, corn, creamed, strained~^~BABYFOOD,VEG,CORN,CRMD,STR~^^^~Y~^^0^^6.25^2.44^8.37^3.57
-~03120~^~0300~^~Babyfood, vegetables, corn, creamed, junior~^~BABYFOOD,VEG,CORN,CRMD,JR~^^^~Y~^^0^^6.25^2.44^8.37^3.57
-~03121~^~0300~^~Babyfood, vegetables, peas, strained~^~BABYFOOD,VEG,PEAS,STR~^^^~Y~^^0^^^^^
-~03122~^~0300~^~Babyfood, peas, dices, toddler~^~BABYFOOD,PEAS,DICES,TODD~^^^~Y~^^0^^^^^
-~03127~^~0300~^~Babyfood, vegetables, spinach, creamed, strained~^~BABYFOOD,VEG,SPINACH,CRMD,STR~^^^~Y~^^0^^6.25^2.44^8.37^3.57
-~03128~^~0300~^~Babyfood, fruit, apricot with tapioca, junior~^~BABYFOOD,FRUIT,APRICOT W/TAPIOCA,JR~^^^~Y~^^0^^6.25^2.44^8.37^3.57
-~03129~^~0300~^~Babyfood, fruit, bananas with tapioca, strained~^~BABYFOOD,FRUIT,BANANAS W/TAPIOCA,STR~^^^~Y~^^0^^6.25^2.44^8.37^3.57
-~03130~^~0300~^~Babyfood, fruit, peaches, strained~^~BABYFOOD,FRUIT,PEACHES,STR~^^^~Y~^^0^^^^^
-~03131~^~0300~^~Babyfood, fruit, peaches, junior~^~BABYFOOD,FRUIT,PEACHES,JR~^^^~Y~^^0^^^^^
-~03132~^~0300~^~Babyfood, fruit, pears, strained~^~BABYFOOD,FRUIT,PEARS,STR~^^^~Y~^^0^^6.25^3.36^8.37^3.60
-~03133~^~0300~^~Babyfood, fruit, pears, junior~^~BABYFOOD,FRUIT,PEARS,JR~^^^~Y~^^0^^6.25^3.36^8.37^3.60
-~03134~^~0300~^~Babyfood, fruit, plums with tapioca, without ascorbic acid, strained~^~BABYFOOD,FRUIT,PLUMS W/TAPIOCA,WO/VIT C,STR~^^^~Y~^^0^^6.25^3.36^8.37^3.60
-~03135~^~0300~^~Babyfood, fruit, plums with tapioca, without ascorbic acid, junior~^~BABYFOOD,FRUIT,PLUMS W/TAPIOCA,WO/VIT C,JR~^^^~Y~^^0^^6.25^3.36^8.37^3.60
-~03136~^~0300~^~Babyfood, fruit, prunes with tapioca, without ascorbic acid, strained~^~BABYFOOD,FRUIT,PRUNES W/TAPIOCA,WO/VIT C,STR~^^^~Y~^^0^^6.25^3.36^8.37^3.60
-~03137~^~0300~^~Babyfood, fruit, prunes with tapioca, without ascorbic acid, junior~^~BABYFOOD,FRUIT,PRUNES W/TAPIOCA,WO/VIT C,JR~^^^^^0^^6.25^3.36^8.37^3.60
-~03139~^~0300~^~Babyfood, prunes, without vitamin c, strained~^~BABYFOOD,PRUNES,WO/VIT C,STR~^^^~Y~^^0^^^^^
-~03140~^~0300~^~Babyfood, fruit dessert, mango with tapioca~^~BABYFOOD,FRUIT DSSRT,MANGO W/ TAPIOCA~^^^~Y~^^0^^6.25^3.36^8.37^3.60
-~03141~^~0300~^~Babyfood, pears, dices, toddler~^~BABYFOOD,PEARS,DICES,TODD~^^^~Y~^^0^^^^^
-~03142~^~0300~^~Babyfood, fruit, applesauce and apricots, strained~^~BABYFOOD,FRUIT,APPLSAUC&APRICOTS,STR~^^^~Y~^^0^^6.25^3.36^8.37^3.60
-~03143~^~0300~^~Babyfood, fruit, applesauce and apricots, junior~^~BABYFOOD,FRUIT,APPLSAUC&APRICOTS,JR~^^^~Y~^^0^^6.25^3.36^8.37^3.60
-~03144~^~0300~^~Babyfood, fruit, applesauce and cherries, strained~^~BABYFOOD,FRUIT,APPLSAUC&CHERRIES,STR~^^^~Y~^^0^^6.25^3.36^8.37^3.60
-~03145~^~0300~^~Babyfood, fruit, applesauce and cherries, junior~^~BABYFOOD,FRUIT,APPLSAUC & CHERRIES,JR~^^^~Y~^^0^^6.25^3.36^8.37^3.60
-~03147~^~0300~^~Babyfood, fruit, applesauce with banana, junior~^~BABYFOOD,FRUIT,APPLSAUC W/BANANA,JR~^^^~Y~^^0^^^^^
-~03150~^~0300~^~Babyfood, fruit, applesauce and pineapple, strained~^~BABYFOOD,FRUIT,APPLSAUC&PNAPPL,STR~^^^^^0^^6.25^3.36^8.37^3.60
-~03151~^~0300~^~Babyfood, fruit, applesauce and pineapple, junior~^~BABYFOOD,FRUIT,APPLSAUC&PNAPPL,JR~^^^^^0^^6.25^3.36^8.37^3.60
-~03152~^~0300~^~Babyfood, fruit, apple and raspberry, strained~^~BABYFOOD,FRUIT,APPL & RASPBERRY,STR~^^^~Y~^^0^^6.25^3.36^8.37^3.60
-~03153~^~0300~^~Babyfood, fruit, apple and raspberry, junior~^~BABYFOOD,FRUIT,APPL & RASPBERRY,JR~^^^~Y~^^0^^6.25^3.36^8.37^3.60
-~03154~^~0300~^~Babyfood, fruit and vegetable, apple and sweet potato~^~BABYFOOD,FRUIT & VEG,APPL & SWT POTATO~^^^~Y~^^0^^^^^
-~03156~^~0300~^~Babyfood, fruit, bananas and pineapple with tapioca, junior~^~BABYFOOD,FRUIT,BANANAS&PNAPPL W/TAPIOCA,JR~^^^~Y~^^0^^6.25^3.36^8.37^3.60
-~03157~^~0300~^~Babyfood, fruit, bananas and pineapple with tapioca, strained~^~BABYFOOD,FRUIT,BANANAS&PNAPPL W/TAPIOCA,STR~^^^~Y~^^0^^6.25^3.36^8.37^3.60
-~03158~^~0300~^~Babyfood, fruit, pears and pineapple, strained~^~BABYFOOD,FRUIT,PEARS&PNAPPL,STR~^^^~Y~^^0^^6.25^3.36^8.37^3.60
-~03159~^~0300~^~Babyfood, fruit, pears and pineapple, junior~^~BABYFOOD,FRUIT,PEARS&PNAPPL,JR~^^^~Y~^^0^^6.25^3.36^8.37^3.60
-~03160~^~0300~^~Babyfood, fruit, guava and papaya with tapioca, strained~^~BABYFOOD,FRUIT,GUAVA&PAPAYA W/TAPIOCA,STR~^^^^^0^^6.25^3.36^8.37^3.60
-~03161~^~0300~^~Babyfood, peaches, dices, toddler~^~BABYFOOD,PEACHES,DICES,TODD~^^^~Y~^^0^^^^^
-~03162~^~0300~^~Babyfood, fruit, papaya and applesauce with tapioca, strained~^~BABYFOOD,FRUIT,PAPAYA&APPLSAUC W/TAPIOCA,STR~^^^^^0^^6.25^3.36^8.37^3.60
-~03163~^~0300~^~Babyfood, fruit, bananas with apples and pears, strained~^~BABYFOOD,FRUIT,BANANAS W/APPLS&PEARS,STR~^^^~Y~^^0^^^^^
-~03164~^~0300~^~Babyfood, fruit, apple and blueberry, strained~^~BABYFOOD,FRUIT,APPL&BLUEBERRY,STR~^^^~Y~^^0^^6.25^3.36^8.37^3.60
-~03165~^~0300~^~Babyfood, fruit, apple and blueberry, junior~^~BABYFOOD,FRUIT,APPL&BLUEBERRY,JR~^^^~Y~^^0^^6.25^3.36^8.37^3.60
-~03166~^~0300~^~Babyfood, juice, apple~^~BABYFOOD,JUICE,APPLE~^^^~Y~^^0^^6.25^3.36^8.37^3.92
-~03167~^~0300~^~Babyfood, apple-banana juice~^~BABYFOOD,APPLE-BANANA JUC~^^^~Y~^^0^^^^^
-~03168~^~0300~^~Babyfood, juice, apple and peach~^~BABYFOOD,JUC,APPL&PEACH~^^^~Y~^^0^^6.25^3.36^8.37^3.92
-~03171~^~0300~^~Babyfood, juice, apple and prune~^~BABYFOOD,JUC,APPL&PRUNE~^^^~Y~^^0^^6.25^3.36^8.37^3.92
-~03172~^~0300~^~Babyfood, juice, orange~^~BABYFOOD,JUICE,ORANGE~^^^~Y~^^0^^6.25^3.36^8.37^3.92
-~03173~^~0300~^~Babyfood, juice, orange and apple~^~BABYFOOD,JUC,ORANGE&APPL~^^^^^0^^6.25^3.36^8.37^3.92
-~03174~^~0300~^~Babyfood, juice, orange and apple and banana~^~BABYFOOD,JUC,ORANGE&APPL&BANANA~^^^~Y~^^0^^6.25^3.36^8.37^3.92
-~03175~^~0300~^~Babyfood, juice, orange and apricot~^~BABYFOOD,JUC,ORANGE&APRICOT~^^^^^0^^6.25^3.36^8.37^3.92
-~03176~^~0300~^~Babyfood, juice, orange and banana~^~BABYFOOD,JUC,ORANGE&BANANA~^^^^^0^^6.25^3.36^8.37^3.92
-~03177~^~0300~^~Babyfood, juice, orange and pineapple~^~BABYFOOD,JUC,ORANGE&PNAPPL~^^^^^0^^6.25^3.36^8.37^3.92
-~03178~^~0300~^~Babyfood, juice, prune and orange~^~BABYFOOD,JUC,PRUNE&ORANGE~^^^^^0^^6.25^3.36^8.37^3.92
-~03179~^~0300~^~Babyfood, juice, mixed fruit~^~BABYFOOD,JUC,MXD FRUIT~^^^~Y~^^0^^6.25^3.36^8.37^3.92
-~03181~^~0300~^~Babyfood, cereal, barley, dry fortified~^~BABYFOOD,CRL,BARLEY,DRY FORT~^^^~Y~^^0^^5.83^3.55^8.37^3.95
-~03184~^~0300~^~Babyfood, cereal, whole wheat, with apples, dry fortified~^~BABYFOOD,CRL,WHL WHEAT,W/ APPLS,DRY FORT~^^^~Y~^^0^^^^^
-~03185~^~0300~^~Babyfood, cereal, mixed, dry fortified~^~BABYFOOD,CRL,MXD,DRY FORT~^^^~Y~^^0^^5.90^3.40^8.40^4.10
-~03186~^~0300~^~Babyfood, cereal, mixed, with bananas, dry~^~BABYFOOD,CRL,MXD,W/ BANANAS,DRY~^^^~Y~^^0^^6.10^3.40^8.40^4.10
-~03187~^~0300~^~Babyfood, cereal, mixed, with applesauce and bananas, strained~^~BABYFOOD,CRL,MXD,W/ APPLSAUC & BANANAS,STR~^^^~Y~^^0^^6.10^3.40^8.40^4.10
-~03188~^~0300~^~Babyfood, cereal, mixed, with applesauce and bananas, junior, fortified~^~BABYFOOD,CRL,MXD,W/ APPLSAUC & BANANAS,JR,FORT~^^^~Y~^^0^^6.10^3.40^8.40^4.10
-~03189~^~0300~^~Babyfood, cereal, oatmeal, dry fortified~^~BABYFOOD,CRL,OATMEAL,DRY FORT~^^^~Y~^^0^^5.83^3.46^8.37^4.12
-~03190~^~0300~^~Babyfood, cereal, oatmeal, with bananas, dry~^~BABYFOOD,CRL,OATMEAL,W/ BANANAS,DRY~^^^~Y~^^0^^6.04^3.50^8.40^4.10
-~03191~^~0300~^~Babyfood, cereal, oatmeal, with applesauce and bananas, strained~^~BABYFOOD,CRL,OATMEAL,W/ APPLSAUC & BANANAS,STR~^^^~Y~^^0^^6.04^3.50^8.40^4.10
-~03192~^~0300~^~Babyfood, cereal, oatmeal, with applesauce and bananas, junior, fortified~^~BABYFOOD,CRL,OATMEAL,W/ APPLSAUC & BANANAS,JR,FORT~^^^~Y~^^0^^6.04^3.50^8.40^4.10
-~03193~^~0300~^~Babyfood, cereal, oatmeal, with honey, dry~^~BABYFOOD,CRL,OATMEAL,W/HONEY,DRY~^^^^^0^^5.83^3.50^8.40^4.10
-~03194~^~0300~^~Babyfood, cereal, rice, dry fortified~^~BABYFOOD,CRL,RICE,DRY FORT~^^^~Y~^^0^^5.95^3.82^8.37^4.16
-~03195~^~0300~^~Babyfood, cereal, rice, with applesauce and bananas, strained~^~BABYFOOD,CRL,RICE,W/ APPLSAUC & BANANAS,STR~^^^~Y~^^0^^6.00^3.80^8.40^4.20
-~03197~^~0300~^~Babyfood, cereal, with egg yolks, strained~^~BABYFOOD,CRL,W/EGG YOLKS,STR~^^^^^0^^6.03^4.20^8.80^3.90
-~03198~^~0300~^~Babyfood, cereal, with egg yolks, junior~^~BABYFOOD,CRL,W/EGG YOLKS,JR~^^^^^0^^6.03^4.20^8.80^3.90
-~03199~^~0300~^~Babyfood, cereal, with eggs, strained~^~BABYFOOD,CRL,W/EGGS,STR~^^^^^0^^6.03^4.20^8.80^3.90
-~03201~^~0300~^~Babyfood, cereal, egg yolks and bacon, junior~^~BABYFOOD,CRL,EGG YOLKS&BACON,JR~^^^^^0^^6.03^4.20^8.80^3.90
-~03205~^~0300~^~Babyfood, oatmeal cereal with fruit, dry, instant, toddler fortified~^~BABYFOOD,OATMEAL CRL W/ FRUIT,DRY,INST,TODD FORT~^^^~Y~^^0^^^^^
-~03206~^~0300~^~Babyfood, cookie, baby, fruit~^~BABYFOOD,COOKIE,BABY,FRUIT~^^^~Y~^^0^^^^^
-~03209~^~0300~^~Babyfood, crackers, vegetable~^~BABYFOOD,CRACKERS,VEG~^^^~Y~^^0^^^^^
-~03211~^~0300~^~Babyfood, cereal, high protein, with apple and orange, dry~^~BABYFOOD,CRL,HI PROT,W/APPL&ORANGE,DRY~^^^^^0^^5.85^3.50^8.40^4.00
-~03212~^~0300~^~Babyfood, cereal, rice, with bananas, dry~^~BABYFOOD,CRL,RICE,W/ BANANAS,DRY~^^^~Y~^^0^^6.00^3.80^8.40^4.20
-~03213~^~0300~^~Babyfood, cookies~^~BABYFOOD,COOKIES~^^^~Y~^^0^^5.70^4.00^8.40^4.10
-~03214~^~0300~^~Babyfood, cookies, arrowroot~^~BABYFOOD,COOKIES,ARROWROOT~^^^^^0^^5.75^4.00^8.40^4.10
-~03215~^~0300~^~Babyfood, pretzels~^~BABYFOOD,PRETZELS~^^^~Y~^^0^^5.70^4.00^8.40^4.10
-~03216~^~0300~^~Babyfood, GERBER, GRADUATES Lil Biscuits Vanilla Wheat~^~BABYFOOD,GERBER,GRADUATES LIL BISCUITS VANILLA WHEAT~^^^~Y~^^0^^5.85^4.00^8.40^4.10
-~03217~^~0300~^~Zwieback~^~ZWIEBACK~^^^~Y~^^0^^5.85^4.00^8.40^4.10
-~03220~^~0300~^~Babyfood, dessert, dutch apple, strained~^~BABYFOOD,DSSRT,DUTCH APPL,STR~^^^~Y~^^0^^6.25^3.40^8.40^3.60
-~03221~^~0300~^~Babyfood, dessert, dutch apple, junior~^~BABYFOOD,DSSRT,DUTCH APPL,JR~^^^~Y~^^0^^^^^
-~03222~^~0300~^~Babyfood, cherry cobbler, junior~^~BABYFOOD,CHERRY COBBLER,JR~^^^~Y~^^0^^^^^
-~03224~^~0300~^~Babyfood, dessert, cherry vanilla pudding, strained~^~BABYFOOD,DSSRT,CHERRY VANILLA PUDD,STR~^^^~Y~^^0^^6.25^4.30^8.90^3.60
-~03225~^~0300~^~Babyfood, dessert, cherry vanilla pudding, junior~^~BABYFOOD,DSSRT,CHERRY VANILLA PUDD,JR~^^^~Y~^^0^^6.25^4.30^8.90^3.60
-~03226~^~0300~^~Babyfood, dessert, fruit pudding, orange, strained~^~BABYFOOD,DSSRT,FRUIT PUDD,ORANGE,STR~^^^^^0^^6.33^4.30^8.90^3.80
-~03227~^~0300~^~Babyfood, dessert, peach cobbler, strained~^~BABYFOOD,DSSRT,PEACH COBBLER,STR~^^^~Y~^^0^^6.20^3.40^8.40^3.60
-~03228~^~0300~^~Babyfood, dessert, peach cobbler, junior~^~BABYFOOD,DSSRT,PEACH COBBLER,JR~^^^~Y~^^0^^6.20^3.40^8.40^3.60
-~03229~^~0300~^~Babyfood, dessert, peach melba, strained~^~BABYFOOD,DSSRT,PEACH MELBA,STR~^^^^^0^^6.25^3.40^8.40^3.60
-~03230~^~0300~^~Babyfood, dessert, peach melba, junior~^~BABYFOOD,DSSRT,PEACH MELBA,JR~^^^^^0^^6.25^3.40^8.40^3.60
-~03233~^~0300~^~Babyfood, dessert, fruit pudding, pineapple, strained~^~BABYFOOD,DSSRT,FRUIT PUDD,PNAPPL,STR~^^^~Y~^^0^^6.20^4.30^8.90^3.60
-~03235~^~0300~^~Babyfood, dessert, fruit dessert, without ascorbic acid, strained~^~BABYFOOD,DSSRT,FRUIT DSSRT,WO/VIT C,STR~^^^~Y~^^0^^6.25^3.40^8.40^3.60
-~03236~^~0300~^~Babyfood, dessert, fruit dessert, without ascorbic acid, junior~^~BABYFOOD,DSSRT,FRUIT DSSRT,WO/VIT C,JR~^^^~Y~^^0^^6.25^3.40^8.40^3.60
-~03238~^~0300~^~Babyfood, dessert, tropical fruit, junior~^~BABYFOOD,DSSRT,TROPICAL FRUIT,JR~^^^^^0^^6.25^3.40^8.40^3.60
-~03245~^~0300~^~Babyfood, dessert, custard pudding, vanilla, strained~^~BABYFOOD,DSSRT,CUSTARD PUDD,VANILLA,STR~^^^~Y~^^0^^6.33^4.30^8.90^3.80
-~03246~^~0300~^~Babyfood, dessert, custard pudding, vanilla, junior~^~BABYFOOD,DSSRT,CUSTARD PUDD,VANILLA,JR~^^^~Y~^^0^^^^^
-~03265~^~0300~^~Babyfood, juice, apple and grape~^~BABYFOOD,JUC,APPL&GRAPE~^^^~Y~^^0^^6.25^3.36^8.37^3.92
-~03267~^~0300~^~Babyfood, juice, fruit punch, with calcium~^~BABYFOOD,JUC,FRUIT PUNCH,W/CA~^^^~Y~^^0^^^^^
-~03269~^~0300~^~Babyfood, juice, apple, with calcium~^~BABYFOOD,JUC,APPL,W/CA~^^^~Y~^^0^^^^^
-~03274~^~0300~^~Babyfood, dinner, vegetables and chicken, junior~^~BABYFOOD,DINNER,VEG&CHICK,JR~^^^~Y~^^0^^^^^
-~03278~^~0300~^~Babyfood, dinner, mixed vegetable, strained~^~BABYFOOD,DINNER,MXD VEG,STR~^^^^^0^^6.07^3.00^8.40^3.80
-~03279~^~0300~^~Babyfood, dinner, mixed vegetable, junior~^~BABYFOOD,DINNER,MXD VEG,JR~^^^~Y~^^0^^6.07^3.00^8.40^3.80
-~03280~^~0300~^~Babyfood, fruit, bananas with tapioca, junior~^~BABYFOOD,FRUIT,BANANAS W/TAPIOCA,JR~^^^~Y~^^0^^6.25^3.36^8.37^3.60
-~03282~^~0300~^~Babyfood, vegetables, mix vegetables junior~^~BABYFOOD,VEG,MIX VEG JR~^^^~Y~^^0^^6.25^2.44^8.37^3.57
-~03283~^~0300~^~Babyfood, vegetables, garden vegetable, strained~^~BABYFOOD,VEG,GARDEN VEG,STR~^^^~Y~^^0^^6.25^2.44^8.37^3.57
-~03286~^~0300~^~Babyfood, vegetables, mix vegetables strained~^~BABYFOOD,VEG,MIX VEG STR~^^^~Y~^^0^^6.25^2.44^8.37^3.57
-~03287~^~0300~^~Babyfood, dinner, beef noodle, junior~^~BABYFOOD,DINNER,BF NOODLE,JR~^^^~Y~^^0^^5.98^4.10^8.90^4.10
-~03289~^~0300~^~Babyfood, apples with ham, strained~^~BABYFOOD,APPLS W/HAM,STR~^^^~Y~^^0^^^^^
-~03290~^~0300~^~Babyfood, carrots and beef, strained~^~BABYFOOD,CARROTS&BF,STR~^^^~Y~^^0^^^^^
-~03293~^~0300~^~Babyfood, plums, bananas and rice, strained~^~BABYFOOD,PLUMS,BANANAS&RICE,STR~^^^~Y~^^0^^^^^
-~03296~^~0300~^~Babyfood, dinner, turkey, rice, and vegetables, toddler~^~BABYFOOD,TURKEY,RICE&VEG,TODD~^^^~Y~^^0^^^^^
-~03297~^~0300~^~Babyfood, dinner, apples and chicken, strained~^~BABYFOOD,DINNER,APPLS&CHICK,STR~^^^~Y~^^0^^^^^
-~03298~^~0300~^~Babyfood, dinner, broccoli and chicken, junior~^~BABYFOOD,DINNER,BROCCOLI & CHICK,JR~^^^~Y~^^0^^^^^
-~03301~^~0300~^~Babyfood, beverage, GERBER, GRADUATES, FRUIT SPLASHERS~^~BABYFOOD,BEV,GERBER,GRADUATES,FRUIT SPLASHERS~^^~GERBER~^~Y~^^0^^6.25^^^
-~03302~^~0300~^~Babyfood, snack, GERBER, GRADUATES, YOGURT MELTS~^~BABYFOOD,SNACK,GERBER,GRADUATES,YOGURT MELTS~^^~GERBER~^~Y~^^0^^6.25^^^
-~03303~^~0300~^~Babyfood, dinner, sweet potatoes and chicken, strained~^~BABYFOOD,DINNER,SWT POTATOES&CHICK,STR~^^^~Y~^^0^^^^^
-~03376~^~0300~^~Infant formula, MEAD JOHNSON, Enfamil 24, ready to feed, with ARA and DHA~^~INF FORMULA,MEAD JOHNSON,ENFAM 24,READY TO FE,W/ ARA & DHA~^^~MEAD JOHNSON~^^^0^^^^^
-~03381~^~0300~^~Infant formula, MEAD JOHNSON, Enfamil Enspire Powder, with ARA and DHA, not reconstituted~^~INF FORM,ME JOHN,ENFA ENSPI PDR,W/ ARA & DHA,NOT RECON~^^~MEAD JOHNSON~^^^0^^^^^
-~03382~^~0300~^~Infant formula, MEAD JOHNSON, Enfamil Premature High Protein 24 Calories, ready to feed, with ARA and DHA~^~INF FOR,ME JOH,ENFAMIL PRE HI PRO 24 CAL,RE TO FE,W/ AR & DH~^^~MEAD JOHNSON~^^^0^^^^^
-~03384~^~0300~^~Infant formula, MEAD JOHNSON, Enfamil Premature 30 Calories, ready to feed, with ARA and DHA~^~INF FORM,MEAD JOHN,ENF PREMA 30 CAL,REA TO FE,W/ ARA & DHA~^^~MEAD JOHNSON~^^^0^^^^^
-~03385~^~0300~^~Infant formula, MEAD JOHNSON, Enfamil for Supplementing, powder, with ARA and DHA, not reconstituted~^~INF FOR,M JOH,ENFA FOR SUPPL,PDR,W/ ARA & DHA,NOT RECON~^^~MEAD JOHNSON~^^^0^^^^^
-~03386~^~0300~^~Infant formula, MEAD JOHNSON, Enfamil Reguline Powder, with ARA and DHA, not reconstituted~^~INF FORMULA,ME JOH,ENFA REGUPDR,W/ ARA & DHA,NOT RECON~^^~MEAD JOHNSON~^^^0^^^^^
-~03387~^~0300~^~Infant formula, MEAD JOHNSON, Enfamil Reguline, ready to feed, with ARA and DHA~^~INF FORM,MEAD JOHN,ENFAM REGU,READY TO FEED,W/ ARA & DHA~^^~MEAD JOHNSON~^^^0^^^^^
-~03388~^~0300~^~Infant formula, MEAD JOHNSON, Gentlease, ready to feed, with ARA and DHA~^~INF FORMULA,MEAD JOHNSON,GENTLEASE,REA TO FEED,W/ ARA & DHA~^^~MEAD JOHNSON~^^^0^^^^^
-~03389~^~0300~^~Toddler formula, MEAD JOHNSON, Nutramigen Toddler with LGG Powder, with ARA and DHA, not reconstituted~^~TODD FORM,M JOHN,NUTR TODD W/ LGG PDR,W/ ARA & DHA,NOT RECON~^^^^^0^^^^^
-~03390~^~0300~^~Infant formula, MEAD JOHNSON, Pregestimil 20 Calories, ready to feed, with ARA and DHA~^~INF FORM,MEJOHN,PREGESTIM 20 CAL,RE TO FEED,W/ ARA & DHA~^^~MEAD JOHNSON~^^^0^^^^^
-~03391~^~0300~^~Infant formula, MEAD JOHNSON, Pregestimil 24 Calories, ready to feed, with ARA and DHA~^~INF FORMUMEAD JOH,PREGESTI 24 CAL,READY TO FEED,W/ ARA & DHA~^^~MEAD JOHNSON~^^^0^^^^^
-~03392~^~0300~^~Toddler drink, MEAD JOHNSON, PurAmino Toddler Powder, with ARA and DHA, not reconstituted~^~TODDLER DRK,MEAD JOH,PURA TODD PDR,W/ ARA & DHA,NOT RECON~^^^^^0^^^^^
-~03393~^~0300~^~Infant formula, MEAD JOHNSON, Enfamil for Supplementing, ready to feed, with ARA and DHA~^~INF FORM,MEAD JOHN,ENFA FO SUPPLEME,REA TO FEED,W/ ARA & DHA~^^~MEAD JOHNSON~^^^0^^^^^
-~03681~^~0300~^~Babyfood, cereal, barley, prepared with whole milk~^~BABYFOOD,CRL,BARLEY,PREP W/WHL MILK~^^^^^0^^0.00^^^
-~03682~^~0300~^~Babyfood, cereal, high protein, prepared with whole milk~^~BABYFOOD,CRL,HI PROT,PREP W/WHL MILK~^^^^^0^^0.00^^^
-~03685~^~0300~^~Babyfood, cereal, mixed, prepared with whole milk~^~BABYFOOD,CRL,MXD,PREP W/WHL MILK~^^^^^0^^0.00^^^
-~03686~^~0300~^~Babyfood, cereal, mixed, with bananas, prepared with whole milk~^~BABYFOOD,CRL,MXD,W/BANANAS,PREP W/WHL MILK~^^^^^0^^0.00^^^
-~03689~^~0300~^~Babyfood, cereal, oatmeal, prepared with whole milk~^~BABYFOOD,CRL,OATMEAL,PREP W/WHL MILK~^^^^^0^^0.00^^^
-~03690~^~0300~^~Babyfood, cereal, oatmeal, with bananas, prepared with whole milk~^~BABYFOOD,CRL,OATMEAL,W/BANANAS,PREP W/WHL MILK~^^^^^0^^0.00^^^
-~03693~^~0300~^~Babyfood, cereal, oatmeal, with honey, prepared with whole milk~^~BABYFOOD,CRL,OATMEAL,W/HONEY,PREP W/WHL MILK~^^^^^0^^0.00^^^
-~03694~^~0300~^~Babyfood, cereal, rice, prepared with whole milk~^~BABYFOOD,CRL,RICE,PREP W/WHL MILK~^^^^^0^^0.00^^^
-~03696~^~0300~^~Babyfood, cereal, rice, with honey, prepared with whole milk~^~BABYFOOD,CRL,RICE,W/HONEY,PREP W/WHL MILK~^^^^^0^^0.00^^^
-~03704~^~0300~^~Babyfood, cereal, mixed, with honey, prepared with whole milk~^~BABYFOOD,CRL,MXD,W/HONEY,PREP W/WHL MILK~^^^^^0^^0.00^^^
-~03711~^~0300~^~Babyfood, cereal, high protein, with apple and orange, prepared with whole milk~^~BABYFOOD,CRL,HI PROT,W/APPL&ORANGE,PREP W/WHL MILK~^^^^^0^^0.00^^^
-~03712~^~0300~^~Babyfood, cereal, rice, with bananas, prepared with whole milk~^~BABYFOOD,CRL,RICE,W/BANANAS,PREP W/WHL MILK~^^^^^0^^0.00^^^
-~03801~^~0300~^~Infant formula, NESTLE, GOOD START SUPREME, with iron, liquid concentrate, not reconstituted~^~INF FORMULA,NES,G START SUPR,W/ IRON,LIQ CONC,NOT RECON~^^~Nestle USA, Inc.~^~Y~^^0^^^^^
-~03802~^~0300~^~Infant formula, NESTLE, GOOD START SUPREME, with iron, powder~^~INF FORMULA,NESTLE,GOOD START SUPREME,W/ IRON,PDR~^^~Nestle USA, Inc.~^~Y~^^0^^^^^
-~03805~^~0300~^~Infant formula, MEAD JOHNSON, ENFAMIL, with iron, powder~^~INF FORMULA,MEAD JOHNSON,ENFAMIL,W/ IRON,PDR~^^~MEAD JOHNSON~^~Y~^^0^^^^^
-~03808~^~0300~^~Infant formula, MEAD JOHNSON, ENFAMIL, Infant, with iron, powder, with ARA and DHA~^~INF FORMULA,MEAD JOHNSON,ENFAMIL,INFA,W/ IR,PDR,W/ ARA & DHA~^^~MEAD JOHNSON~^~Y~^^0^^^^^
-~03812~^~0300~^~Infant formula, MEAD JOHNSON, ENFAMIL, Infant, with iron, liquid concentrate, with ARA and DHA, reconstituted~^~INF FORMU,M JOH,ENFA,INFA,W/ IRON,LIQ CO,W/ ARA & DHA,RECON~^^~MEAD JOHNSON~^~Y~^^0^^^^^
-~03815~^~0300~^~Infant formula, MEAD JOHNSON, ENFAMIL LIPIL, with iron, ready-to-feed, with ARA and DHA~^~INF FORMULA, MEAD JOHN, ENFAMIL LIPIL,W/ IRON,RTF,W/ AR & DH~^^~MEAD JOHNSON~^~Y~^^0^^^^^
-~03818~^~0300~^~Infant formula, MEAD JOHNSON, ENFAMIL, LIPIL, low iron, liquid concentrate, with ARA and DHA~^~INF FORM,ME JOHNS,ENFAM,LIP,LO IRON,LIQ CONC,W/ ARA & DHA~^^~MEAD JOHNSON~^^^0^^^^^
-~03821~^~0300~^~Infant formula, MEAD JOHNSON, PREGESTIMIL, with iron, powder, with ARA and DHA, not reconstituted~^~INF FORMU,ME JOHN,PREGESTI,W/ IRON,PDR,W/ ARA & DHA,N RE~^^~MEAD JOHNSON~^~Y~^^0^^^^^
-~03822~^~0300~^~Infant formula, MEAD JOHNSON, PREGESTIMIL, with iron, with ARA and DHA, prepared from powder~^~INF FORMU,MEAD JOH,PREGES,W/ IRON,W/ ARA & DHA,PREP FR PD~^^~MEAD JOHNSON~^~Y~^^0^^^^^
-~03823~^~0300~^~Infant formula, MEAD JOHNSON, PROSOBEE, with iron, ready-to-feed~^~INF FORMULA,MEAD JOHNSON,PROSOBEE,W/ IRON,RTF~^^^~Y~^^0^^^^^
-~03825~^~0300~^~Infant formula, MEAD JOHNSON, ENFAMIL, LIPIL, low iron, ready to feed, with ARA and DHA~^~INF FOR,ME JOHN,ENFAM,LIPIL,LO IRON,READY TO FE,W/ ARA & DHA~^^~MEAD JOHNSON~^^^0^^^^^
-~03832~^~0300~^~Infant formula, MEAD JOHNSON, ENFAMIL, Infant, ready-to-feed, with ARA and DHA~^~INF FORMULA,MEAD JOHNSON,ENFAMIL,INFANT,RTF,W/ ARA & DHA~^^~MEAD JOHNSON~^~Y~^^0^^^^^
-~03837~^~0300~^~Infant formula, ABBOTT NUTRITION, SIMILAC, PM 60/40, powder not reconstituted~^~INF FORMULA, ABBOTT NUTR, SIMILAC, PM 60/40, PDR NOT RECON~^^~ABBOT NUTRTION~^~Y~^^0^^^^^
-~03838~^~0300~^~Infant formula, MEAD JOHNSON, ENFAMIL, NUTRAMIGEN WITH LGG, with iron, powder, not reconstituted, with ARA and DHA~^~IN FOR,ME JOH,ENF,NUTRA W/ LGG,W/ IR,PDR,NOT R,W/ ARA & DHA~^^~MEAD JOHNSON~^~Y~^^0^^^^^
-~03841~^~0300~^~Infant formula, ABBOTT NUTRITION, SIMILAC, ISOMIL, with iron, ready-to-feed~^~INF FORMULA, ABBO NUTR, SIMIL,ISOMI,W/ IRON,RTF~^^~ABBOT NUTRTION~^~Y~^^0^^^^^
-~03842~^~0300~^~Infant formula, ABBOTT NUTRITION, SIMILAC, ISOMIL, with iron, liquid concentrate~^~INF FORMULA, ABBOTT NUTR, SIMILAC, ISOMIL,W/ IRON,LIQ CONC~^^~ABBOT NUTRTION~^~Y~^^0^^^^^
-~03843~^~0300~^~Infant formula, ABBOTT NUTRITION, SIMILAC, ISOMIL, with iron, powder, not reconstituted~^~INF FORMULA, ABBO NUTR, SIMILA, ISOMI, W/ IRON,PDR,NOT RECON~^^~ABBOT NUTRTION~^~Y~^^0^^^^^
-~03844~^~0300~^~Infant formula, MEAD JOHNSON, ENFAMIL, NUTRAMIGEN, with iron, liquid concentrate not reconstituted, with ARA and DHA~^~INF FOR,ME JOH,ENFA,NUTR,W/ IRON,LIQ CO NOT REC,W/ ARA & DHA~^^~MEAD JOHNSON~^~Y~^^0^^^^^
-~03845~^~0300~^~Infant formula, MEAD JOHNSON, ENFAMIL, NUTRAMIGEN, with iron, ready-to-feed, with ARA and DHA~^~INF FORMU,ME JOHNS,ENFA,NUTRAMI,W/ IRON,RTF,W/ AR & D~^^~MEAD JOHNSON~^~Y~^^0^^^^^
-~03846~^~0300~^~Infant formula, ABBOTT NUTRITION, SIMILAC, ALIMENTUM, with iron, ready-to-feed~^~INF FORMULA, ABBOTT NUTR, SIMILAC, ALIMENTUM, W/ IRON,RTF~^^~ABBOT NUTRTION~^~Y~^^0^^^^^
-~03849~^~0300~^~Infant formula, MEAD JOHNSON, ENFAMIL, ENFACARE, with iron, powder, with ARA and DHA~^~INF FORMU,MEA JOHNS,ENFAMIL,ENFACA,W/ IRON,PDR,W/ AR & D~^^~MEAD JOHNSON~^~Y~^^0^^6.38^^^
-~03851~^~0300~^~Infant formula, ABBOTT NUTRITION, SIMILAC, with iron, liquid concentrate, not reconstituted~^~INF FORM, AB NUTR, SIMILAC, W/ IRON, LIQ CONC, NOT RECON~^^~ABBOT NUTRTION~^~Y~^^0^^^^^
-~03852~^~0300~^~Infant formula, MEAD JOHNSON, ENFAMIL, PROSOBEE, with iron, powder, not reconstituted, with ARA and DHA~^~INF FOR,MEAD JOHN,ENFA,PROSO,W/ IRON,PDR,NOT RE,W/ ARA & DHA~^^~MEAD JOHNSON~^~Y~^^0^^^^^
-~03853~^~0300~^~Infant formula, ABBOTT NUTRITION, SIMILAC, with iron, powder, not reconstituted~^~INF FORMULA, ABBOTT NUTR, SIMILAC, W/ IRON, PDR, NOT RECON~^^~ABBOT NUTRTION~^~Y~^^0^^^^^
-~03854~^~0300~^~Infant formula, MEAD JOHNSON, ENFAMIL, PROSOBEE, liquid concentrate, reconstituted, with ARA and DHA~^~INF FOR,MEAD JOHNSOFAMIL,PROS,LIQ CONC,RE,W/ ARA & DHA~^^~MEAD JOHNSON~^~Y~^^0^^^^^
-~03857~^~0300~^~Infant formula, MEAD JOHNSON, PROSOBEE, with iron, ready to feed, with ARA and DHA~^~INF FORMULA,MEAD JOHNS,PROSO,W/ IR,RE TO FE,W/ ARA & DHA~^^~MEAD JOHNSON~^~Y~^^0^^^^^
-~03859~^~0300~^~Infant formula, NESTLE, GOOD START SOY, with DHA and ARA, ready-to-feed~^~INF FORMULA,NESTLE,GOOD START SOY,W/ DHA & ARA,RTF~^^~Nestle USA, Inc.~^~Y~^^0^^^^^
-~03860~^~0300~^~Child formula, ABBOTT NUTRITION, PEDIASURE, ready-to-feed~^~CHILD FORMULA,ABBOTT NUTR,PEDIASURE,RTF (FORMERLY ROSS)~^^~ABBOT NUTRTION~^~Y~^^0^^^^^
-~03861~^~0300~^~Infant formula, MEAD JOHNSON, NEXT STEP, PROSOBEE LIPIL, powder, with ARA and DHA~^~INF FORM,MEAD JOHN,NEXT STEP,PROS LIPIL,PDR,W/ ARA & DHA~^^~MEAD JOHNSON~^^^0^^^^^
-~03864~^~0300~^~Infant formula, MEAD JOHNSON, NEXT STEP, PROSOBEE, LIPIL, ready to feed, with ARA and DHA~^~INF FORM,ME JO,NEXT STEP,PROSO,LIPIL,REATO FEED,W/ ARA & DHA~^^~MEAD JOHNSON~^^^0^^^^^
-~03867~^~0300~^~Infant formula, NESTLE, GOOD START SOY, with ARA and DHA, powder~^~INF FORMULA,NESTLE,GOOD START SOY,W/ ARA & DHA,PDR~^^~Nestle USA, Inc.~^~Y~^^0^^^^^
-~03870~^~0300~^~Child formula, ABBOTT NUTRITION, PEDIASURE, ready-to-feed, with iron and fiber~^~CHI FORMU,ABBT NUTR,PEDIASU,RTF,W/ IRON & FIB (FORMER ROSS)~^^~ABBOT NUTRTION~^~Y~^^0^^^^^
-~03928~^~0300~^~Infant formula, NESTLE, GOOD START ESSENTIALS SOY, with iron, powder~^~INF FORMULA,NESTLE,GOOD START ESSENTIALS SOY,W/ IRON,PDR~^^~Nestle USA, Inc.~^~Y~^^0^^^^^
-~03929~^~0300~^~Infant formula, MEAD JOHNSON, NEXT STEP PROSOBEE, powder, not reconstituted~^~INF FORMULA, MEAD JOHNSON,NEXT STEP PROSOBEE,PDR,NOT RECON~^^~MEAD JOHNSON~^~Y~^^0^^5.71^^^
-~03930~^~0300~^~Infant formula, MEAD JOHNSON,NEXT STEP PROSOBEE, prepared from powder~^~INF FORMULA,MEAD JOHNSON,NEXT STEP PROSOBEE,PREP FROM PDR~^^~MEAD JOHNSON~^^^0^^^^^
-~03934~^~0300~^~Babyfood, corn and sweet potatoes, strained~^~BABYFOOD,CORN & SWT POTATOES,STR~^^^~Y~^^0^^^^^
-~03935~^~0300~^~Infant formula, ABBOTT NUTRITION, SIMILAC, ALIMENTUM, ADVANCE, ready-to-feed, with ARA and DHA~^~INF FORM, ABBO NUTR, SIMIL, ALIMENT, ADVAN, RTF,W/ ARA & DHA~^^~ABBOT NUTRTION~^~Y~^^0^^^^^
-~03936~^~0300~^~Infant formula, PBM PRODUCTS, store brand, ready-to-feed~^~INF FORMULA,PBM PRODUC,STO BRA,RTF (FORMERLY WYETH-AYERST)~^^~PBM~^~Y~^^0^^^^^
-~03937~^~0300~^~Infant formula, PBM PRODUCTS, store brand, liquid concentrate, not reconstituted~^~INF FORM,PBM PROD,STORE BRAND,LC,NOT REC (FORM WYETH-AYERST)~^^~PBM~^~Y~^^0^^^^^
-~03938~^~0300~^~Infant formula, PBM PRODUCTS, store brand, powder~^~INF FORMULA,PBM PRODUCTS,STORE BRAND,PDR~^^~PBM~^~Y~^^0^^^^^
-~03939~^~0300~^~Infant formula, PBM PRODUCTS, store brand, soy, ready-to-feed~^~INF FORMULA,PBM PRODUCTS,STORE BRAND,SOY,RTF~^^~PBM~^~Y~^^0^^^^^
-~03940~^~0300~^~Infant formula, PBM PRODUCTS, store brand, soy, liquid concentrate, not reconstituted~^~INF FORMU,PBM PRODU,STORE BR,SOY,LIQ CONC,NOT RECON~^^~PBM~^~Y~^^0^^^^^
-~03941~^~0300~^~Infant formula, PBM PRODUCTS, store brand, soy, powder~^~INF FORMULA,PBM PRODUCTS,STORE BRAND,SOY,PDR~^^~PBM~^~Y~^^0^^^^^
-~03942~^~0300~^~Infant formula, MEAD JOHNSON, ENFAMIL, AR, ready-to-feed, with ARA and DHA~^~INF FORMULA,MEAD JOHNSON,ENFAMIL,AR,RTF,W/ ARA & DHA~^^~MEAD JOHNSON~^~Y~^^0^^^^^
-~03943~^~0300~^~Infant formula, MEAD JOHNSON, ENFAMIL, AR, powder, with ARA and DHA~^~INF FORMULA,MEAD JOHNSON,ENFAMIL,AR,PDR,W/ ARA & DHA~^^~MEAD JOHNSON~^~Y~^^0^^^^^
-~03944~^~0300~^~Infant formula, ABBOTT NUTRITION, SIMILAC NEOSURE, ready-to-feed, with ARA and DHA~^~INF FORM,ABBOT NUT,SIMIL NEOSU,RTF,W/ ARA & DHA~^^~ABBOT NUTRTION~^~Y~^^0^^^^^
-~03945~^~0300~^~Infant formula, ABBOTT NUTRITION, SIMILAC, NEOSURE, powder, with ARA and DHA~^~INF FORMULA, ABBOTT, SIMILAC, NEOSURE, PDR, W/ ARA & DHA~^^~ABBOT NUTRTION~^~Y~^^0^^^^^
-~03946~^~0300~^~Infant formula, ABBOTT NUTRITION, SIMILAC, SENSITIVE (LACTOSE FREE) ready-to-feed, with ARA and DHA~^~INF FORMULA, ABB NUTR, SIMI,SENS (LACT FRE) RTF,W/ ARA & DHA~^^~ABBOT NUTRTION~^~Y~^^0^^^^^
-~03947~^~0300~^~Infant formula, ABBOTT NUTRITION, SIMILAC, SENSITIVE, (LACTOSE FREE), liquid concentrate, with ARA and DHA~^~INF FORMULA, ABB NUT,SIMIL,SENS,(LACT FR),LIQ CON,W/ AR & DH~^^~ABBOT NUTRTION~^~Y~^^0^^^^^
-~03948~^~0300~^~Infant formula, ABBOTT NUTRITION, SIMILAC, SENSITIVE, (LACTOSE FREE), powder, with ARA and DHA~^~INF FORMULA, ABB NUTR,SIMIL,SENS,(LACTO FR), PD, W/ ARA & DH~^^~ABBOT NUTRTION~^~Y~^^0^^^^^
-~03949~^~0300~^~Infant formula, ABBOTT NUTRITION, SIMILAC, ADVANCE, with iron, ready-to-feed~^~INF FORMULA, ABBOTT NUTR, SIMILAC, ADVANCE, W/ IRON, RTF~^^~ABBOT NUTRTION~^~Y~^^0^^^^^
-~03950~^~0300~^~Infant formula, ABBOTT NUTRITION, SIMILAC, ADVANCE, with iron, powder, not reconstituted~^~INF FORMULA,ABBOTT NUTR,SIMILAC,ADVANC,W/ IRON,PDR,NOT RECON~^^~ABBOT NUTRTION~^~Y~^^0^^^^^
-~03951~^~0300~^~Infant formula, ABBOTT NUTRITION, SIMILAC, ADVANCE, with iron, liquid concentrate, not reconstituted~^~INF FORMU,ABBO NUTR,SIMILAC,ADVAN,W/ IRON,LIQ CONC,NOT RECON~^^~ABBOT NUTRTION~^~Y~^^0^^^^^
-~03952~^~0300~^~Infant formula, ABBOTT NUTRITION, SIMILAC, ISOMIL, ADVANCE with iron, liquid concentrate~^~INF FORMULA, ABB NUTR, SIMIL, ISOMIL, ADVA W/ IRON,LIQ CONC~^^~ABBOT NUTRTION~^~Y~^^0^^^^^
-~03953~^~0300~^~Infant formula, ABBOTT NUTRITION, SIMILAC, ISOMIL, ADVANCE with iron, ready-to-feed~^~INF FORMULA, ABBO NUTR,SIMIL,ISOMIL, ADVANCE W/ IRON,RTF~^^~ABBOT NUTRTION~^~Y~^^0^^^^^
-~03954~^~0300~^~Infant formula, ABBOTT NUTRITION, SIMILAC, ISOMIL, ADVANCE with iron, powder, not reconstituted~^~INF FORMULA, ABB NUTR, SIMI, ISOMI, ADVAN W/ IRO ,PD,NOT REC~^^~ABBOT NUTRTION~^~Y~^^0^^^^^
-~03955~^~0300~^~Infant Formula, MEAD JOHNSON, ENFAMIL, ENFACARE, ready-to-feed, with ARA and DHA~^~INF FORMULA,MEAD JOHNSON,ENFAMIL,ENFACARE,RTF,W/ ARA & DHA~^^~MEAD JOHNSON~^~Y~^^0^^^^^
-~03956~^~0300~^~Babyfood, yogurt, whole milk, with fruit, multigrain cereal and added DHA fortified~^~BABYFOOD,YOG,WHL MILK,W/ FRUIT,MULTIG CRL & ADD DHA FORT~^^^~Y~^^0^^^^^
-~03957~^~0300~^~Infant formula, ABBOTT NUTRITION, ALIMENTUM ADVANCE, with iron, powder, not reconstituted, with DHA and ARA~^~INF FORM,ABBOTT,ALIMENTUM ADVANCE,IRON,PDR,NOTREC,DHA&ARA~^^~ABBOT NUTRTION~^~Y~^^0^^6.25^^^
-~03959~^~0300~^~Babyfood, mashed cheddar potatoes and broccoli, toddlers~^~BABYFOOD,MSHD CHEDDAR POTATOES&BROCCOLI,TODDLER~^^^~Y~^^0^^^^^
-~03960~^~0300~^~Infant formula, NESTLE, GOOD START SUPREME, with iron, DHA and ARA, ready-to-feed~^~INF FORMULA,NESTLE,GOOD START SUPREME,W/ IRON,DHA & ARA,RTF~^^~Nestle USA, Inc.~^~Y~^^0^^^^^
-~03961~^~0300~^~Infant formula, NESTLE, GOOD START SUPREME, with iron, DHA and ARA, prepared from liquid concentrate~^~INF FORM,NESTLE,GOOD START SUPREME,IRON,DHA&ARA,PRP FR LC~^^~Nestle USA, Inc.~^^^0^^^^^
-~03963~^~0300~^~Infant Formula, MEAD JOHNSON, ENFAMIL GENTLEASE, with iron, prepared from powder~^~INF FORM,MEAD JOHNSON,ENFA GENTL,W/ IRON,PREP FROM PDR~^^~MEAD JOHNSON~^~Y~^^0^^1.36^^^
-~03964~^~0300~^~Babyfood, fortified cereal bar, fruit filling~^~BABYFOOD,FORT CRL BAR,FRUIT FILLING~^^^~Y~^^0^^^^^
-~03965~^~0300~^~Babyfood, yogurt, whole milk, with fruit, multigrain cereal and added iron fortified~^~BABYFOOD,YOGU,WHL MILK,W/ FRUI,MULTIGRA CRL & ADD IRON FORT~^^^~Y~^^0^^^^^
-~03966~^~0300~^~Infant formula, NESTLE, GOOD START SOY, with DHA and ARA, liquid concentrate~^~INF FORMULA,NESTLE,GOOD START SOY,W/ DHA & ARA,LIQ CONC~^^~Nestle USA, Inc.~^~Y~^^0^^^^^
-~03967~^~0300~^~Toddler formula, MEAD JOHNSON, ENFAGROW, Toddler Transitions, with ARA and DHA, powder~^~TODD FOR,MEJOHN,ENFAGR,TODD TRANSITI,W/ ARA & DHA,PDR~^^^~Y~^^0^^6.25^^^
-~03968~^~0300~^~Toddler formula, MEAD JOHNSON, ENFAGROW PREMIUM (formerly ENFAMIL, LIPIL, NEXT STEP), ready-to-feed~^~TODDLER FORMULA, MEAD JOHNSON, ENFAGROW PREMIUM, RTF~^^^~Y~^^0^^^^^
-~03980~^~0300~^~Infant Formula, MEAD JOHNSON, ENFAMIL, GENTLEASE, with ARA and DHA powder not reconstituted~^~INF FORM,ME JOHN,ENF,GEN,W/ ARA & DHA PDR NOT RECON~^^~MEAD JOHNSON~^~Y~^^0^^6.38^^^
-~03982~^~0300~^~Infant formula, MEAD JOHNSON, ENFAMIL, Enfagrow, Soy, Toddler ready-to-feed~^~INF FORMULA, MEAD JOHNSON, ENFAMIL, ENFAGROW, SOY, TODD RTF~^^^~Y~^^0^^6.25^^^
-~03983~^~0300~^~Infant formula, MEAD JOHNSON, ENFAMIL, NUTRAMIGEN AA, ready-to-feed~^~INF FORMULA,MEAD JOHNSON,ENFAMIL,NUTRAMIGEN AA,RTF~^^~MEAD JOHNSON~^~Y~^^0^^6.25^^^
-~03984~^~0300~^~Infant formula, MEAD JOHNSON, ENFAMIL, Premature, with iron, 20 calories, ready-to-feed~^~INF FORMULA,ME JOHNSON,ENFAMIL,PREMATU,W/ IR,20 CAL,RTF~^^~MEAD JOHNSON~^~Y~^^0^^6.25^^^
-~03985~^~0300~^~Infant formula, MEAD JOHNSON, ENFAMIL, Premature, with iron, 24 calories, ready-to-feed~^~INF FORMULA,MEAD JOHNSON,ENFAMIL,PREMATURE,W/ IR,24 CAL,RTF~^^~MEAD JOHNSON~^~Y~^^0^^6.25^^^
-~03986~^~0300~^~Infant Formula, MEAD JOHNSON, ENFAMIL, Newborn, with DHA and ARA, ready-to-feed~^~INF FORMULA,MEAD JOHNSON,ENFAMIL,NEWBORN,W/ DHA & ARA,RTF~^^~MEAD JOHNSON~^~Y~^^0^^6.25^^^
-~03987~^~0300~^~Infant formula, GERBER, GOOD START 2 Soy, with iron, ready-to-feed~^~INF FORMULA, GERBER, GOOD START 2 SOY,W/ IRON,RTF~^^~GERBER~^~Y~^^0^^6.25^^^
-~03988~^~0300~^~Infant formula, GERBER, GOOD START, PROTECT PLUS, ready-to-feed~^~INF FORMULA,GERBER,GOOD START,PROTECT PLUS,RTF~^^~GERBER~^~Y~^^0^^6.25^^^
-~03989~^~0300~^~Infant Formula, GERBER GOOD START 2, GENTLE PLUS, ready-to-feed~^~INF FORMULA,GERBER GOOD START 2,GENTLE PLUS,RTF~^^~GERBER~^~Y~^^0^^6.25^^^
-~03990~^~0300~^~Infant formula, GERBER, GOOD START 2, PROTECT PLUS, ready-to-feed~^~INF FORMULA, GERBER, GOOD START 2,PROTECT PLUS, RTF~^^~GERBER~^~Y~^^0^^6.25^^^
-~03991~^~0300~^~Infant formula, ABBOTT NUTRITION, SIMILAC, GO AND GROW, ready-to-feed, with ARA and DHA~^~INF FORMULA, ABBO NU,SIMIL,GO & GR,RTF,W/ ARA & DHA~^^~ABBOT NUTRTION~^~Y~^^0^^6.25^^^
-~03992~^~0300~^~Infant formula, ABBOTT NUTRITION, SIMILAC, Expert Care, Diarrhea, ready- to- feed with ARA and DHA~^~INF FORMU, ABBO NUTR, SIMIL, EXPERT CARE, DIARRH RT~^^~ABBOT NUTRTION~^~Y~^^0^^6.25^^^
-~03993~^~0300~^~Infant formula, ABBOTT NUTRITION, SIMILAC, For Spit Up, ready-to-feed, with ARA and DHA~^~INF FORMULA, ABBO NUTR, SIMIL, FOR SPIT UP, RTF,W/ ARA & DHA~^^~ABBOT NUTRTION~^~Y~^^0^^6.25^^^
-~03994~^~0300~^~Babyfood, fruit, banana and strawberry, junior~^~BABYFD,FRU,BAN AND STRAW, JU~^^^~Y~^^0^^^^^
-~03995~^~0300~^~Babyfood, banana with mixed berries, strained~^~BABYFOO,BAN WI MIX BERR,ST~^^^~Y~^^0^^6.25^^^
-~03996~^~0300~^~Babyfood, Multigrain whole grain cereal, dry fortified~^~Babyfood, Multigrain whole grain cereal, dry fortified~^^^~Y~^^0^^^^^
-~03997~^~0300~^~Babyfood, Baby MUM MUM Rice Biscuits~^~BABYFOOD,BABY MUM MUM RICE BISCUITS~^^^~Y~^^0^^^^^
-~03998~^~0300~^~Babyfood, Snack, GERBER, GRADUATES, LIL CRUNCHIES, baked whole grain corn snack~^~BABYFD,SNK,GE,GRAD,LIL CRUNCH,BKD,WHLGRN,CORN SNK~^^~GERBER~^~Y~^^0^^6.25^^^
-~03999~^~0300~^~Infant formula, ABBOTT NUTRITION, SIMILAC, For Spit Up, powder, with ARA and DHA~^~INF FORMULA, ABBOTT NUTRIT, SIMILAC, FOR SPIT UP, POW~^^~ABBOT NUTRTION~^~Y~^^0^^6.25^^^
-~04001~^~0400~^~Fat, beef tallow~^~FAT,BEEF TALLOW~^^^~Y~^^0^^0.00^^9.02^
-~04002~^~0400~^~Lard~^~LARD~^^^~Y~^^0^^0.00^^9.02^
-~04011~^~0400~^~Salad dressing, KRAFT Mayo Light Mayonnaise~^~SALAD DRSNG,KRAFT MAYO LT MAYO~^^~Kraft Foods, Inc.~^^^0^^^^^
-~04013~^~0400~^~Salad dressing, KRAFT Mayo Fat Free Mayonnaise Dressing~^~SALAD DRSNG,KRAFT MAYO FAT FREE MAYO DRSNG~^^~Kraft Foods, Inc.~^~Y~^^0^^^^^
-~04014~^~0400~^~Salad dressing, KRAFT MIRACLE WHIP FREE Nonfat Dressing~^~SALAD DRSNG,KRAFT MIRACLE WHIP FREE NONFAT DRSNG~^^~Kraft Foods, Inc.~^^^0^^^^^
-~04015~^~0400~^~Salad dressing, russian dressing~^~SALAD DRSNG,RUSSIAN DRSNG~^^^~Y~^^0^^6.25^3.40^8.84^3.80
-~04016~^~0400~^~Salad dressing, sesame seed dressing, regular~^~SALAD DRSNG,SESAME SD DRSNG,REG~^^^~Y~^^0^^6.25^4.03^8.84^3.80
-~04017~^~0400~^~Salad dressing, thousand island, commercial, regular~^~SALAD DRSNG,1000 ISLAND,COMM,REG~^^^~Y~^^0^^^^^
-~04018~^~0400~^~Salad dressing, mayonnaise type, regular, with salt~^~SALAD DRSNG,MAYO TYPE,REG,W/SALT~^^^~Y~^^0^^6.25^4.36^8.84^3.80
-~04020~^~0400~^~Salad dressing, french dressing, reduced fat~^~SALAD DRSNG,FRENCH DRSNG,RED FAT~^^^~Y~^^0^^6.25^2.44^8.84^3.80
-~04021~^~0400~^~Salad dressing, italian dressing, commercial, reduced fat~^~SALAD DRSNG,ITALIAN DRSNG,COMM,RED FAT~^^^~Y~^^0^^^^^
-~04022~^~0400~^~Salad dressing, russian dressing, low calorie~^~SALAD DRSNG,RUSSIAN DRSNG,LO CAL~^^^~Y~^^0^^6.25^2.44^8.84^3.80
-~04023~^~0400~^~Salad dressing, thousand island dressing, reduced fat~^~SALAD DRSNG,1000 ISLAND DRSNG,RED FAT~^^^~Y~^^0^^6.25^3.90^8.84^3.80
-~04025~^~0400~^~Salad dressing, mayonnaise, regular~^~SALAD DRSNG,MAYO,REG~^^^~Y~^^0^^^^^
-~04026~^~0400~^~Salad dressing, mayonnaise, soybean and safflower oil, with salt~^~SALAD DRSNG,MAYO,SOYBN&SAFFLOWER OIL,W/SALT~^^^^^0^^6.25^4.36^8.84^3.80
-~04027~^~0400~^~Salad dressing, mayonnaise, imitation, soybean~^~SALAD DRSNG,MAYO,IMITN,SOYBN~^^^~Y~^^0^^6.25^4.36^8.84^3.80
-~04028~^~0400~^~Salad dressing, mayonnaise, imitation, milk cream~^~SALAD DRSNG,MAYO,IMITN,MILK CRM~^^^^^0^^6.25^4.36^8.84^3.80
-~04029~^~0400~^~Salad dressing, mayonnaise, imitation, soybean without cholesterol~^~SALAD DRSNG,MAYO,IMITN,SOYBN WO/CHOL~^^^~Y~^^0^^6.25^4.36^8.84^3.80
-~04030~^~0400~^~Sandwich spread, with chopped pickle, regular, unspecified oils~^~SANDWICH SPRD,W/CHOPD PICKLE,REG,UNSPEC OILS~^^^~Y~^^0^^6.25^3.92^8.84^3.80
-~04031~^~0400~^~Shortening, household, soybean (partially hydrogenated)-cottonseed (partially hydrogenated)~^~SHORTENING,HOUSEHOLD,PARTIALLY HYDROG SOYBN -COTTONSEED~^^^~Y~^^0^^0.00^^8.84^
-~04034~^~0400~^~Oil, soybean, salad or cooking, (partially hydrogenated)~^~OIL,SOYBN,SALAD OR COOKING,(PARTIALLY HYDROGENATED)~^^^~Y~^^0^^0.00^^8.84^
-~04037~^~0400~^~Oil, rice bran~^~OIL,RICE BRAN~^^^^^0^^0.00^^8.84^
-~04038~^~0400~^~Oil, wheat germ~^~OIL,WHEAT GERM~^^^~Y~^^0^^0.00^^8.84^
-~04042~^~0400~^~Oil, peanut, salad or cooking~^~OIL,PNUT,SALAD OR COOKING~^^^~Y~^^0^^0.00^^8.84^
-~04044~^~0400~^~Oil, soybean, salad or cooking~^~OIL,SOYBN,SALAD OR COOKING~^^^~Y~^^0^^0.00^^8.84^
-~04047~^~0400~^~Oil, coconut~^~OIL,COCNT~^^^~Y~^^0^^^^^
-~04053~^~0400~^~Oil, olive, salad or cooking~^~OIL,OLIVE,SALAD OR COOKING~^^^~Y~^^0^^0.00^^8.84^
-~04055~^~0400~^~Oil, palm~^~OIL,PALM~^^^^^0^^0.00^^8.84^
-~04058~^~0400~^~Oil, sesame, salad or cooking~^~OIL,SESAME,SALAD OR COOKING~^^^~Y~^^0^^0.00^^8.84^
-~04060~^~0400~^~Oil, sunflower, linoleic (less than 60%)~^~OIL,SUNFLOWER,LINOLEIC (LESS THAN 60%)~^^^^^0^^0.00^^8.84^
-~04073~^~0400~^~Margarine, regular, hard, soybean (hydrogenated)~^~MARGARINE,REG,HARD,SOYBN (HYDR)~^^^^^0^^6.38^4.27^8.84^3.87
-~04114~^~0400~^~Salad dressing, italian dressing, commercial, regular~^~SALAD DRSNG,ITALIAN DRSNG,COMM,REG~^^^~Y~^^0^^^^^
-~04120~^~0400~^~Salad dressing, french dressing, commercial, regular~^~SALAD DRSNG,FRENCH DRSNG,COMM,REG~^^^~Y~^^0^^6.25^2.44^8.84^3.80
-~04128~^~0400~^~Margarine,spread, 35-39% fat, tub~^~MARGARINE,SPRD,35-39% FAT,TUB~^^^~Y~^^0^^^^^
-~04133~^~0400~^~Salad dressing, french, home recipe~^~SALAD DRSNG,FRENCH,HOME RECIPE~^^^^^0^^6.25^4.36^8.84^3.80
-~04135~^~0400~^~Salad dressing, home recipe, vinegar and oil~^~SALAD DRSNG,HOME RECIPE,VINEGAR&OIL~^^^~Y~^^0^^6.25^4.36^8.84^3.80
-~04141~^~0400~^~Salad dressing, french dressing, commercial, regular, without salt~^~SALAD DRSNG,FRENCH DRSNG,COMM,REG,WO/ SALT~^^^^^0^^6.25^4.36^8.84^3.80
-~04142~^~0400~^~Salad dressing, french dressing, reduced fat, without salt~^~SALAD DRSNG,FRENCH DRSNG,RED FAT,WO/ SALT~^^^^^0^^6.25^4.36^8.84^3.80
-~04143~^~0400~^~Salad dressing, italian dressing, commercial, regular, without salt~^~SALAD DRSNG,ITALIAN DRSNG,COMM,REG,WO/ SALT~^^^^^0^^6.25^4.36^8.84^3.80
-~04144~^~0400~^~Salad dressing, italian dressing, reduced fat, without salt~^~SALAD DRSNG,ITALIAN DRSNG,RED FAT,WO/ SALT~^^^^^0^^6.25^4.36^8.84^3.80
-~04145~^~0400~^~Salad dressing, mayonnaise, soybean oil, without salt~^~SALAD DRSNG,MAYO,SOYBN OIL,WO/SALT~^^^^^0^^6.25^4.36^8.84^3.80
-~04146~^~0400~^~Salad dressing, french, cottonseed, oil, home recipe~^~SALAD DRSNG,FRENCH,CTTNSD,OIL,HOME RECIPE~^^^^^0^^6.25^4.36^8.84^3.80
-~04367~^~0400~^~Salad dressing, french dressing, fat-free~^~SALAD DRSNG,FRENCH DRSNG,FAT-FREE~^^^~Y~^^0^^^^^
-~04501~^~0400~^~Oil, cocoa butter~^~OIL,COCOA BUTTER~^^^^^0^^0.00^^8.84^
-~04502~^~0400~^~Oil, cottonseed, salad or cooking~^~OIL,CTTNSD,SALAD OR COOKING~^^^~Y~^^0^^0.00^^8.84^
-~04506~^~0400~^~Oil, sunflower, linoleic, (approx. 65%)~^~OIL,SUNFLOWER,LINOLEIC,(APPROX. 65%)~^^^~Y~^^0^^0.00^^8.84^
-~04510~^~0400~^~Oil, safflower, salad or cooking, linoleic, (over 70%)~^~OIL,SAFFLOWER,SALAD OR COOKING,LINOLEIC,(OVER 70%)~^^^^^0^^0.00^^8.84^
-~04511~^~0400~^~Oil, safflower, salad or cooking, high oleic (primary safflower oil of commerce)~^~OIL,SAFFLOWER,SALAD OR COOKING,HI OLEIC~^^^~Y~^^0^^0.00^^8.84^
-~04513~^~0400~^~Vegetable oil, palm kernel~^~VEGETABLE OIL,PALM KERNEL~^^^~Y~^^0^^0.00^^8.62^
-~04514~^~0400~^~Oil, poppyseed~^~OIL,POPPYSEED~^^^^^0^^0.00^^8.84^
-~04515~^~0400~^~Oil, tomatoseed~^~OIL,TOMATOSEED~^^^^^0^^0.00^^8.84^
-~04516~^~0400~^~Oil, teaseed~^~OIL,TEASEED~^^^^^0^^0.00^^8.84^
-~04517~^~0400~^~Oil, grapeseed~^~OIL,GRAPESEED~^^^^^0^^0.00^^8.84^
-~04518~^~0400~^~Oil, corn, industrial and retail, all purpose salad or cooking~^~OIL,CORN,INDUSTRIAL & RTL,ALLPURP SALAD OR COOKING~^^^~Y~^^0^^^^^
-~04528~^~0400~^~Oil, walnut~^~OIL,WALNUT~^^^~Y~^^0^^0.00^^8.84^
-~04529~^~0400~^~Oil, almond~^~OIL,ALMOND~^^^~Y~^^0^^0.00^^8.84^
-~04530~^~0400~^~Oil, apricot kernel~^~OIL,APRICOT KERNEL~^^^^^0^^0.00^^8.84^
-~04531~^~0400~^~Oil, soybean lecithin~^~OIL,SOYBN LECITHIN~^^^^^0^^0.00^^7.63^
-~04532~^~0400~^~Oil, hazelnut~^~OIL,HAZELNUT~^^^^^0^^0.00^^8.84^
-~04534~^~0400~^~Oil, babassu~^~OIL,BABASSU~^^^^^0^^0.00^^8.82^
-~04536~^~0400~^~Oil, sheanut~^~OIL,SHEANUT~^^^^^0^^0.00^^8.62^
-~04539~^~0400~^~Salad dressing, blue or roquefort cheese dressing, commercial, regular~^~SALAD DRSNG,BLUE OR ROQUEFORT CHS DRSNG,COMM,REG~^^^~Y~^^0^^^^^
-~04541~^~0400~^~Oil, cupu assu~^~OIL,CUPU ASSU~^^^^^0^^0.00^^8.62^
-~04542~^~0400~^~Fat, chicken~^~FAT,CHICKEN~^^^~Y~^^0^^0.00^^9.02^
-~04543~^~0400~^~Oil, soybean, salad or cooking, (partially hydrogenated) and cottonseed~^~OIL,SOYBN,SALAD OR COOKING,(PARTIALLY HYDROGENATED) & CTTNSD~^^^~Y~^^0^^0.00^^8.84^
-~04544~^~0400~^~Shortening, household, lard and vegetable oil~^~SHORTENING,HOUSEHOLD,LARD&VEG OIL~^^^^^0^^0.00^^9.02^
-~04545~^~0400~^~Oil, sunflower, linoleic, (partially hydrogenated)~^~OIL,SUNFLOWER,LINOLEIC,(PARTIALLY HYDROGENATED)~^^^^^0^^0.00^^8.84^
-~04546~^~0400~^~Shortening bread, soybean (hydrogenated) and cottonseed~^~SHORTENING BREAD,SOYBN (HYDR)&CTTNSD~^^^^^0^^0.00^^8.84^
-~04548~^~0400~^~Shortening cake mix, soybean (hydrogenated) and cottonseed (hydrogenated)~^~SHORTENING CAKE MIX,SOYBN (HYDR)&CTTNSD (HYDR)~^^^^^0^^0.00^^8.82^
-~04549~^~0400~^~Shortening industrial, lard and vegetable oil~^~SHORTENING INDUSTRIAL,LARD&VEG OIL~^^^^^0^^0.00^^9.02^
-~04550~^~0400~^~Shortening frying (heavy duty), beef tallow and cottonseed~^~SHORTENING FRYING (HVY DUTY),BF TALLOW&CTTNSD~^^^^^0^^0.00^^9.02^
-~04551~^~0400~^~Shortening confectionery, coconut (hydrogenated) and or palm kernel (hydrogenated)~^~SHORTENING CONFECTIONERY,COCNT (HYDR)&OR PALM KERNEL (HYDR)~^^^^^0^^0.00^^8.84^
-~04554~^~0400~^~Shortening industrial, soybean (hydrogenated) and cottonseed~^~SHORTENING INDUSTRIAL,SOYBN (HYDR)&CTTNSD~^^^~Y~^^0^^0.00^^8.84^
-~04556~^~0400~^~Shortening frying (heavy duty), palm (hydrogenated)~^~SHORTENING FRYING (HVY DUTY),PALM (HYDR)~^^^^^0^^0.00^^8.84^
-~04559~^~0400~^~Shortening household soybean (hydrogenated) and palm~^~SHORTENING HOUSEHOLD SOYBN (HYDR)&PALM~^^^^^0^^0.00^^8.84^
-~04560~^~0400~^~Shortening frying (heavy duty), soybean (hydrogenated), linoleic (less than 1%)~^~SHORTENING FRYING HVY DUTY,SOYBN HYDR,LINOLEIC (LESS THAN 1%~^^^^^0^^0.00^^8.84^
-~04570~^~0400~^~Shortening, confectionery, fractionated palm~^~SHORTENING,CONFECTIONERY,FRACTIONATED PALM~^^^^^0^^0.00^^8.62^
-~04572~^~0400~^~Oil, nutmeg butter~^~OIL,NUTMEG BUTTER~^^^^^0^^0.00^^8.62^
-~04573~^~0400~^~Oil, ucuhuba butter~^~OIL,UCUHUBA BUTTER~^^^^^0^^0.00^^8.84^
-~04575~^~0400~^~Fat, turkey~^~FAT,TURKEY~^^^~Y~^^0^^0.00^^8.84^
-~04576~^~0400~^~Fat, goose~^~FAT,GOOSE~^^^^^0^^0.00^^8.84^
-~04581~^~0400~^~Oil, avocado~^~OIL,AVOCADO~^^^^^0^^0.00^^8.84^
-~04582~^~0400~^~Oil, canola~^~OIL,CANOLA~^~low erucic acid rapeseed oil~^^~Y~^^0^^0.00^^8.84^
-~04583~^~0400~^~Oil, mustard~^~OIL,MUSTARD~^^^^^0^^0.00^^8.84^
-~04584~^~0400~^~Oil, sunflower, high oleic (70% and over)~^~OIL,SUNFLOWER,HI OLEIC (70% & OVER)~^^^^^0^^0.00^^8.84^
-~04585~^~0400~^~Margarine-like, margarine-butter blend, soybean oil and butter~^~MARGARINE-LIKE,MARGARINE-BUTTER BLEND,SOYBN OIL & BUTTER~^^^~Y~^^0^^6.25^^^
-~04586~^~0400~^~Shortening, special purpose for cakes and frostings, soybean (hydrogenated)~^~SHORTENING,SPL PURPOSE FOR CAKES&FROSTINGS,SOYBN (HYDR)~^^^^^0^^0.00^^8.84^
-~04587~^~0400~^~Shortening, special purpose for baking, soybean (hydrogenated) palm and cottonseed~^~SHORTENING,SPL PURPOSE FOR BAKING,SOYBN (HYDR) PALM&CTTNSD~^^^^^0^^0.00^^8.84^
-~04588~^~0400~^~Oil, oat~^~OIL,OAT~^^^^^0^^0.00^^8.84^
-~04589~^~0400~^~Fish oil, cod liver~^~FISH OIL,COD LIVER~^^^^^0^^0.00^^9.02^
-~04590~^~0400~^~Fish oil, herring~^~FISH OIL,HERRING~^^^^^0^^0.00^^9.02^
-~04591~^~0400~^~Fish oil, menhaden~^~FISH OIL,MENHADEN~^^^^^0^^0.00^^9.02^
-~04592~^~0400~^~Fish oil, menhaden, fully hydrogenated~^~FISH OIL,MENHADEN,FULLY HYDR~^^^^^0^^0.00^^9.02^
-~04593~^~0400~^~Fish oil, salmon~^~FISH OIL,SALMON~^^^^^0^^0.00^^9.02^
-~04594~^~0400~^~Fish oil, sardine~^~FISH OIL,SARDINE~^^^^^0^^0.00^^9.02^
-~04595~^~0400~^~Shortening, multipurpose, soybean (hydrogenated) and palm (hydrogenated)~^~SHORTENING,MULTIPURPOSE,SOYBN (HYDR)&PALM (HYDR)~^^^^^0^^0.00^^8.84^
-~04600~^~0400~^~Margarine-like, vegetable oil-butter spread, tub, with salt~^~MARGARINE-LIKE,VEG OIL-BUTTER SPRD,TUB,W/ SALT~^^^~Y~^^0^^^^^
-~04601~^~0400~^~Butter, light, stick, with salt~^~BUTTER,LT,STK,W/SALT~^^^~Y~^^0^^^^^
-~04602~^~0400~^~Butter, light, stick, without salt~^~BUTTER,LT,STK,WO/SALT~^^^~Y~^^0^^^^^
-~04609~^~0400~^~Animal fat, bacon grease~^~ANIMAL FAT,BACON GREASE~^^^~Y~^^0^^^^^
-~04610~^~0400~^~Margarine, regular, 80% fat, composite, stick, with salt~^~MARGARINE,REG,80% FAT,COMP,STK,W/ SALT~^^^~Y~^^0^^^4.27^8.84^3.87
-~04611~^~0400~^~Margarine, regular, 80% fat, composite, tub, with salt~^~MARGARINE,REG,80% FAT,COMP,TUB,W/ SALT~^^^~Y~^^0^^6.25^4.27^8.84^3.87
-~04612~^~0400~^~Margarine-like, vegetable oil spread, 60% fat, stick, with salt~^~MARGARINE-LIKE,VEG OIL SPRD,60% FAT,STK,W/ SALT~^^^~Y~^^0^^6.25^3.87^8.84^4.27
-~04613~^~0400~^~Margarine-like, vegetable oil spread, 60% fat, tub, with salt~^~MARGARINE-LIKE,VEG OIL SPRD,60% FAT,TUB,W/ SALT~^^^~Y~^^0^^6.25^3.87^8.84^4.27
-~04614~^~0400~^~Margarine-like, vegetable oil spread, 60% fat, stick/tub/bottle, with salt~^~MARGARINE-LIKE,VEG OIL SPRD,60% FAT,STICK/TUB/BOTTLE,W/ SALT~^^^~Y~^^0^^6.25^3.87^8.84^4.27
-~04615~^~0400~^~Shortening, vegetable, household, composite~^~SHORTENING,VEG,HOUSEHOLD,COMP~^^^~Y~^^0^^6.25^^8.84^
-~04617~^~0400~^~Margarine, regular, 80% fat, composite, stick, without salt~^~MARGARINE,REG,80% FAT,COMP,STK,WO/ SALT~^^^~Y~^^0^^^^^
-~04618~^~0400~^~Margarine, regular, 80% fat, composite, tub, without salt~^~MARGARINE,REG,80% FAT,COMP,TUB,WO/ SALT~^^^~Y~^^0^^^^^
-~04620~^~0400~^~Margarine-like, vegetable oil spread, 60% fat, stick/tub/bottle, without salt~^~VEG OIL SPRD,60% FAT,STICK/TUB/BOTTLE,WO/ SALT~^^^~Y~^^0^^6.25^3.87^8.84^4.27
-~04624~^~0400~^~Margarine-like, vegetable oil spread, fat free, liquid, with salt~^~MARGARINE-LIKE,VEG OIL SPRD,FAT FREE,LIQ,W/ SALT~^^^~Y~^^0^^^4.27^8.84^3.87
-~04626~^~0400~^~Margarine-like spread with yogurt, 70% fat, stick, with salt~^~MARGARINE-LIKE SPRD W/ YOGURT,70% FAT,STK,W/ SALT~^^^~Y~^^0^^^^^
-~04627~^~0400~^~Margarine-like spread with yogurt, approximately 40% fat, tub, with salt~^~MARGARINE-LIKE SPRD W/ YOGURT,APPROX 40% FAT,TUB,W/ SALT~^^^~Y~^^0^^^^^
-~04628~^~0400~^~Margarine, 80% fat, stick, includes regular and hydrogenated corn and soybean oils~^~MARGARINE,80% FAT,STK,INCL REG & HYDR CORN & SOYBN OILS~^^^^^0^^^4.27^8.84^3.87
-~04629~^~0400~^~Margarine, margarine-type vegetable oil spread, 70% fat, soybean and partially hydrogenated soybean, stick~^~MARGARINE, VEG OIL SPRD,70% FAT,SOYBN & PART HYDR SOYBN,STK~^^^^^0^^6.38^4.27^8.84^3.87
-~04630~^~0400~^~Margarine Spread, 40-49% fat, tub~^~Margarine 40-49% fat~^^^^^0^^^^^
-~04631~^~0400~^~Margarine-like, vegetable oil spread, fat-free, tub~^~MARGARINE-LIKE,VEG OIL SPRD,FAT-FREE,TUB~^^^~Y~^^0^^^4.27^8.84^3.87
-~04633~^~0400~^~Margarine-like, vegetable oil spread, 20% fat, with salt~^~MARGARINE-LIKE,VEG OIL SPRD,20% FAT,W/ SALT~^^^~Y~^^0^^0.00^^9.02^
-~04634~^~0400~^~Margarine-like, vegetable oil spread, 20% fat, without salt~^~MARGARINE-LIKE,VEG OIL SPRD,20% FAT,WO/ SALT~^^^~Y~^^0^^^^^
-~04635~^~0400~^~Salad dressing, thousand island dressing, fat-free~^~SALAD DRSNG,1000 ISLAND DRSNG,FAT-FREE~^^^~Y~^^0^^^^^
-~04636~^~0400~^~Salad dressing, italian dressing, fat-free~^~SALAD DRSNG,ITALIAN DRSNG,FAT-FREE~^^^~Y~^^0^^^^^
-~04638~^~0400~^~Salad dressing, ranch dressing, fat-free~^~SALAD DRSNG,RANCH DRSNG,FAT-FREE~^^^^^0^^^4.36^8.84^3.80
-~04639~^~0400~^~Salad dressing, ranch dressing, regular~^~SALAD DRSNG,RANCH DRSNG,REG~^^^~Y~^^0^^^^^
-~04640~^~0400~^~Salad dressing, ranch dressing, reduced fat~^~SALAD DRSNG,RANCH DRSNG,RED FAT~^^^^^0^^^4.36^8.84^3.80
-~04641~^~0400~^~Salad dressing, mayonnaise, light~^~SALAD DRSNG,MAYO,LT~^~lite mayonnaise~^^~Y~^^0^^^^^
-~04642~^~0400~^~Oil, industrial, mid-oleic, sunflower~^~OIL,INDUSTRIAL,MID-OLEIC,SUNFLOWER~^~NuSun~^^^^0^^^^8.84^
-~04643~^~0400~^~Oil, industrial, canola with antifoaming agent, principal uses salads, woks and light frying~^~OIL,INDUSTRIAL,CANOLA W/ ANTIFOAMING AGENT~^^^^^0^^^^8.84^
-~04644~^~0400~^~Oil, industrial, canola for salads, woks and light frying~^~OIL,INDUSTRIAL,CANOLA FOR SALADS,WOKS & LT FRYING~^^^^^0^^^^^
-~04645~^~0400~^~Oil, industrial, canola (partially hydrogenated) oil for deep fat frying~^~OIL,INDUS,CANOLA (PART HYDROG) OIL FOR DEEP FAT FRYING~^^^^^0^^^^^
-~04646~^~0400~^~Oil, industrial, coconut, principal uses candy coatings, oil sprays, roasting nuts~^~OIL,INDUSTRIAL,COCNT~^^^^^0^^^^8.84^
-~04648~^~0400~^~Oil, industrial, soy (partially hydrogenated), principal uses popcorn and flavoring vegetables~^~OIL,INDUSTRIAL,SOY (PART HYDR),FOR POPCORN & FLAVORING VEG~^^^^^0^^^^8.84^
-~04649~^~0400~^~Shortening, industrial, soy (partially hydrogenated), pourable liquid fry shortening~^~SHORTENING,INDUS,SOY (PART HYDROG),POURABLE LIQ FRY~^^^^^0^^^^8.84^
-~04650~^~0400~^~Oil, industrial, soy, refined, for woks and light frying~^~OIL,INDUSTRIAL,SOY,REFINED,FOR WOKS & LT FRYING~^^^^^0^^^^8.84^
-~04651~^~0400~^~Oil, industrial, soy (partially hydrogenated), multiuse for non-dairy butter flavor~^~OIL,INDUSTRIAL,SOY (PART HYDR),FOR NON-DAIRY BUTTER FLAVOR~^^^~Y~^^0^^^^8.84^
-~04652~^~0400~^~Oil, industrial, soy ( partially hydrogenated), all purpose~^~OIL,INDUSTRIAL,SOY ( PART HYDROGENATED),ALLPURP~^^^~Y~^^0^^6.25^^8.84^
-~04653~^~0400~^~Oil, industrial, soy (partially hydrogenated ) and soy (winterized), pourable clear fry~^~OIL,INDUSTRIAL,SOY (PART HYDR ) & SOY,POURABLE FRY~^^^^^0^^6.25^^8.84^
-~04654~^~0400~^~Oil, industrial, soy (partially hydrogenated) and cottonseed, principal use as a tortilla shortening~^~OIL,INDUS,SOY (PART HYDROG) & CTTNSD,TORTILLA SHORTENING~^^^~Y~^^0^^6.25^^8.84^
-~04655~^~0400~^~Margarine-like shortening, industrial, soy (partially hydrogenated), cottonseed, and soy, principal use flaky pastries~^~MARGARINE-LIKE SHORTENING,INDUS,SOY(PART HYDR),CTTNSD,& SOY~^^^^^0^^6.25^^8.84^
-~04656~^~0400~^~Oil, industrial, palm kernel, confection fat, uses similar to high quality cocoa butter~^~OIL,INDUSTRIAL,PALM KERNEL,CONFECTION FAT~^^^^^0^^6.25^^8.84^
-~04657~^~0400~^~Oil, industrial, palm kernel (hydrogenated), confection fat, uses similar to 95 degree hard butter~^~OIL,INDUSTRIAL,PALM KERNEL (HYDROGENATED),CONFECTION FAT~^^^^^0^^6.25^^8.84^
-~04658~^~0400~^~Oil, industrial, palm kernel (hydrogenated), confection fat, intermediate grade product~^~OIL,INDUSTRIAL,PALM KERNEL (HYDROGENATED),CONFECTION FAT~^^^^^0^^6.25^^8.84^
-~04659~^~0400~^~Oil, industrial, coconut, confection fat, typical basis for ice cream coatings~^~OIL,INDUSTRIAL,COCNT,CONFECTION FAT,ICE CRM COATINGS~^^^~Y~^^0^^6.25^^8.84^
-~04660~^~0400~^~Oil, industrial, palm kernel (hydrogenated) , used for whipped toppings, non-dairy~^~OIL,INDUSTRIAL,PALM KERNEL (HYDROG) FOR WHIPPED TOPPINGS~^^^^^0^^6.25^^8.84^
-~04661~^~0400~^~Oil, industrial, coconut (hydrogenated), used for whipped toppings and coffee whiteners~^~OIL,INDUSTRIAL,COCNT (HYDROGENATED),FOR TOPPINGS & WHITENERS~^^^^^0^^6.25^^8.84^
-~04662~^~0400~^~Oil, industrial, palm and palm kernel, filling fat (non-hydrogenated)~^~OIL,INDUSTRIAL,PALM & PALM KERNEL,FILLING FAT (NON-HYDROG)~^^^^^0^^6.25^^8.84^
-~04663~^~0400~^~Oil, industrial, palm kernel (hydrogenated), filling fat~^~OIL,INDUSTRIAL,PALM KERNEL (HYDROGENATED),FILLING FAT~^^^^^0^^6.25^^8.84^
-~04664~^~0400~^~Oil, industrial, soy (partially hydrogenated ), palm, principal uses icings and fillings~^~OIL,INDUSTRIAL,SOY (PARTHYDR ),PALM, ICINGS & FILLINGS~^^^^^0^^6.25^^8.84^
-~04665~^~0400~^~Margarine, industrial, non-dairy, cottonseed, soy oil (partially hydrogenated ), for flaky pastries~^~MARGARINE,INDUS,NON-DAIRY,CTTNSD,SOY OIL (PART HYDR )~^^^^^0^^^^^
-~04666~^~0400~^~Shortening, industrial, soy (partially hydrogenated ) and corn for frying~^~SHORTENING,INDUSTRIAL,SOY (PARTIALLY HYDR )&CORN FOR FRYING~^^^~Y~^^0^^0.00^^8.84^
-~04667~^~0400~^~Shortening, industrial, soy (partially hydrogenated ) for baking and confections~^~SHORTENING,INDUS,SOY (PART HYDR ) FOR BAKING & CONFECTIONS~^^^^^0^^0.00^^8.84^
-~04668~^~0400~^~Margarine, industrial, soy and partially hydrogenated soy oil, use for baking, sauces and candy~^~MARGARINE,INDUS,SOY & PART HYDR SOY OIL,BAKING,SAUCES,CANDY~^^^^^0^^6.38^^^
-~04669~^~0400~^~Oil, vegetable, soybean, refined~^~OIL,VEG,SOYBN,REFINED~^^^^^0^^0.00^^8.84^
-~04673~^~0400~^~Margarine-like spread, SMART BALANCE Regular Buttery Spread with flax oil~^~MARGARINE-LIKE SPRD,SMART BALANCE REG BUTTERY SPRD~^^~GFA Brands~^^^0^^^^^
-~04674~^~0400~^~Margarine-like spread, SMART BALANCE Light Buttery Spread~^~MARGARINE-LIKE SPRD,SMART BALANCE LT BUTTERY SPRD~^^~GFA Brands~^^^0^^6.38^^^
-~04675~^~0400~^~Margarine-like spread, SMART BEAT Super Light without saturated fat~^~MARGARINE-LIKE SPRD,SMART BEAT SUPER LT WO/ SATURATED FAT~^^~GFA Brands~^^^0^^6.38^^^
-~04676~^~0400~^~Margarine-like spread, SMART BEAT Smart Squeeze~^~MARGARINE-LIKE SPRD,SMART BEAT SMART SQUEEZE~^^~GFA Brands~^^^0^^6.38^^^
-~04677~^~0400~^~Margarine-like spread, SMART BALANCE Omega Plus Spread (with plant sterols & fish oil)~^~MARGARINE-LIKE SPRD,SMART BALANCE OMEGA PLUS SPRD~^^~GFA Brands~^^^0^^6.38^^^
-~04678~^~0400~^~Oil, vegetable, Natreon canola, high stability, non trans, high oleic (70%)~^~OIL,VEG,NATREON CANOLA,HI STABILITY,NON TRANS,HI OLEIC (70%)~^~trans free high stability low saturated fat non-hydrogenated canola oil~^~Dow AgroSciences, LLC~^^^0^^^^8.84^
-~04679~^~0400~^~Oil, PAM cooking spray, original~^~OIL,PAM COOKING SPRAY,ORIGINAL~^^~ConAgra, Inc.~^~Y~^^0^^6.25^^^
-~04683~^~0400~^~Margarine, margarine-like vegetable oil spread, 67-70% fat, tub~^~MARGARINE,MARGARINE-LIKE VEG OIL SPRD,67-70% FAT,TUB~^^^^^0^^^4.27^8.84^3.87
-~04684~^~0400~^~Margarine, 80% fat, tub, CANOLA HARVEST Soft Spread (canola, palm and palm kernel oils)~^~MARGARINE,80% FAT,TUB,CANOLA HARVEST SOFT SPRD~^^~richardson~^^^0^^^^^
-~04685~^~0400~^~Oil, cooking and salad, ENOVA, 80% diglycerides~^~OIL,COOKING & SALAD,ENOVA,80% DIGLYCERIDES~^^~ADM KAO LLC~^^^0^^^^8.84^
-~04686~^~0400~^~Salad dressing, honey mustard dressing, reduced calorie~^~SALAD DRSNG,HONEY MUSTARD DRSNG,RED CAL~^^^~Y~^^0^^6.25^^^
-~04687~^~0400~^~Margarine-like spread, BENECOL Light Spread~^~MARGARINE-LIKE SPRD,BENECOL LT SPRD~^^~McNeil Nutritionals, LLC~^^^0^^^^^
-~04688~^~0400~^~Salad dressing, spray-style dressing, assorted flavors~^~SALAD DRSNG,SPRAY-STYLE DRSNG,ASSORTED FLAVORS~^^^^^0^^^^^
-~04689~^~0400~^~Salad Dressing, mayonnaise, light, SMART BALANCE, Omega Plus light~^~SALAD DRSNG,MAYO,LT,SMART BALANCE,OMEGA PLUS LT~^^~Smart Balance Foods~^^^0^^^^^
-~04690~^~0400~^~Margarine-like, vegetable oil spread, approximately 37% fat, unspecified oils, with salt, with added vitamin D~^~VEG OIL SPRD,37% FAT,UNSPEC OILS,W/ SALT,W/ ADDED VITAMIN D~^^^~Y~^^0^^^4.27^8.84^3.80
-~04691~^~0400~^~Margarine, regular, 80% fat, composite, stick, with salt, with added vitamin D~^~MARGARINE,REG,80% FAT,COMP,STK,W/ SALT,W/ ADDED VITAMIN D~^^^~Y~^^0^^6.38^4.27^8.84^3.80
-~04692~^~0400~^~Margarine, regular, 80% fat, composite, tub, with salt, with added vitamin D~^~MARGARINE,REG,80% FAT,COMP,TUB,W/ SALT,W/ ADDED VITAMIN D~^^^~Y~^^0^^6.38^4.27^8.84^3.80
-~04693~^~0400~^~Margarine-like, vegetable oil spread, 60% fat, stick, with salt, with added vitamin D~^~VEG OIL SPRD,60% FAT,STK,W/ SALT,W/ ADDED VITAMIN D~^^^~Y~^^0^^6.93^4.27^8.84^3.80
-~04694~^~0400~^~Margarine-like, vegetable oil spread, 60% fat, tub, with salt, with added vitamin D~^~VEG OIL SPRD,60% FAT,TUB,W/ SALT,W/ ADDED VITAMIN D~^^^~Y~^^0^^6.93^4.27^8.84^3.84
-~04695~^~0400~^~Margarine-like vegetable-oil spread, stick/tub/bottle, 60% fat, with added vitamin D~^~VEG-OIL SPRD,STICK/TUB/BOTTLE,60% FAT,W/ ADDED VITAMIN D~^^^~Y~^^0^^^^^
-~04696~^~0400~^~Margarine, regular, 80% fat, composite, stick, without salt, with added vitamin D~^~MARGARINE,REG,80% FAT,COMP,STK,WO/ SALT,W/ ADDED VITAMIN D~^^^~Y~^^0^^6.38^4.27^8.84^3.80
-~04697~^~0400~^~Margarine-like, vegetable oil spread, 60% fat, stick/tub/bottle, without salt, with added vitamin D~^~VEG OIL SPRD,60% FAT,STICK/TUB/BOTTLE,WO/ SALT,W/VIT D~^^^~Y~^^0^^6.25^^^
-~04698~^~0400~^~Oil, industrial, canola, high oleic~^~OIL,INDUSTRIAL,CANOLA,HI OLEIC~^^^^^0^^6.25^^^
-~04699~^~0400~^~Oil, industrial, soy, low linolenic~^~OIL,INDUSTRIAL,SOY,LO LINOLENIC~^^^^^0^^^^^
-~04700~^~0400~^~Oil, industrial, soy, ultra low linolenic~^~OIL,INDUSTRIAL,SOY,ULTRA LO LINOLENIC~^^^^^0^^^^8.84^
-~04701~^~0400~^~Oil, industrial, soy, fully hydrogenated~^~OIL,INDUSTRIAL,SOY,FULLY HYDR~^^^^^0^^^^8.84^
-~04702~^~0400~^~Oil, industrial, cottonseed, fully hydrogenated~^~OIL,INDUSTRIAL,CTTNSD,FULLY HYDR~^^^^^0^^^^8.84^
-~04703~^~0400~^~Salad dressing, honey mustard, regular~^~SALAD DRSNG,HONEY MUSTARD,REG~^^^~Y~^^0^^^^^
-~04704~^~0400~^~Salad dressing, poppyseed, creamy~^~SALAD DRSNG,POPPYSEED,CREAMY~^^^~Y~^^0^^^^^
-~04705~^~0400~^~Salad dressing, caesar, fat-free~^~SALAD DRSNG,CAESAR,FAT-FREE~^^^~Y~^^0^^^^^
-~04706~^~0400~^~Dressing, honey mustard, fat-free~^~DRESSING,HONEY MUSTARD,FAT-FREE~^^^~Y~^^0^^^^^
-~04707~^~0400~^~Oil, flaxseed, contains added sliced flaxseed~^~OIL,FLAXSEED,CONTAINS ADDED SLICED FLAXSEED~^^^^^0^^5.30^^8.84^
-~04708~^~0400~^~Mayonnaise, reduced fat, with olive oil~^~MAYONNAISE,RED FAT,W/ OLIVE OIL~^^^~Y~^^0^^6.25^^^
-~04709~^~0400~^~Salad dressing, mayonnaise-type, light~^~SALAD DRSNG,MAYONNAISE-TYPE,LT~^^^~Y~^^0^^6.25^^^
-~05000~^~0500~^~Chicken, broiler, rotisserie, BBQ, breast, meat only~^~CHICK,BROILER,ROTISSERIE,BBQ,BREAST,MEAT ONLY~^^^~Y~^~Bone and connective tissue 11%, skin and separable fat 11%~^22^^^^^
-~05001~^~0500~^~Chicken, broilers or fryers, meat and skin and giblets and neck, raw~^~CHICKEN,BROILERS OR FRYERS,MEAT&SKN&GIBLETS&NECK,RAW~^^^^~Bone~^31^~Gallus gallus~^6.25^4.27^9.02^3.87
-~05002~^~0500~^~Chicken, broilers or fryers, meat and skin and giblets and neck, cooked, fried, batter~^~CHICKEN,BROILER OR FRYER,MEAT&SKN&GIBLETS&NECK,FRIED,BATTER~^^^^~Bone~^21^^6.25^4.27^9.02^3.87
-~05003~^~0500~^~Chicken, broilers or fryers, meat and skin and giblets and neck, cooked, fried, flour~^~CHICKEN,BROILERS OR FRYERS,MEAT&SKN&GIBLETS&NECK,FRIED,FLR~^^^^~Bone~^28^^6.25^4.27^9.02^3.87
-~05004~^~0500~^~Chicken, broilers or fryers, meat and skin and giblets and neck, roasted~^~CHICKEN,BROILERS OR FRYERS,MEAT&SKN&GIBLETS&NECK,RSTD~^^^~Y~^~Bone~^31^^6.25^4.27^9.02^3.87
-~05005~^~0500~^~Chicken, broilers or fryers, meat and skin and giblets and neck, stewed~^~CHICKEN,BROILERS OR FRYERS,MEAT&SKN&GIBLETS&NECK,STWD~^^^^~Bone~^33^^6.25^4.27^9.02^3.87
-~05006~^~0500~^~Chicken, broilers or fryers, meat and skin, raw~^~CHICKEN,BROILERS OR FRYERS,MEAT & SKN,RAW~^^^~Y~^~Bone~^32^^6.25^4.27^9.02^3.87
-~05007~^~0500~^~Chicken, broilers or fryers, meat and skin, cooked, fried, batter~^~CHICKEN,BROILERS OR FRYERS,MEAT&SKN,CKD,FRIED,BATTER~^^^~Y~^~Bone~^22^^6.25^4.27^9.02^3.87
-~05008~^~0500~^~Chicken, broilers or fryers, meat and skin, cooked, fried, flour~^~CHICKEN,BROILERS OR FRYERS,MEAT&SKN,CKD,FRIED,FLR~^^^~Y~^~Bone~^29^^6.25^4.27^9.02^3.87
-~05009~^~0500~^~Chicken, broilers or fryers, meat and skin, cooked, roasted~^~CHICKEN,BROILERS OR FRYERS,MEAT&SKN,CKD,RSTD~^^^~Y~^~Bone~^33^^6.25^4.27^9.02^3.87
-~05010~^~0500~^~Chicken, broilers or fryers, meat and skin, cooked, stewed~^~CHICKEN,BROILERS OR FRYERS,MEAT&SKN,CKD,STWD~^^^~Y~^~Bone~^34^^6.25^4.27^9.02^3.87
-~05011~^~0500~^~Chicken, broilers or fryers, meat only, raw~^~CHICKEN,BROILERS OR FRYERS,MEAT ONLY,RAW~^^^~Y~^~32% bone, 12% skin, 8% separable fat~^52^^6.25^4.27^9.02^3.87
-~05012~^~0500~^~Chicken, broilers or fryers, meat only, cooked, fried~^~CHICKEN,BROILERS OR FRYERS,MEAT ONLY,CKD,FRIED~^^^~Y~^~29% bone, 13% skin~^42^^6.25^4.27^9.02^3.87
-~05013~^~0500~^~Chicken, broilers or fryers, meat only, cooked, roasted~^~CHICKEN,BROILERS OR FRYERS,MEAT ONLY,CKD,RSTD~^^^~Y~^~33% bone, 13% skin~^46^^6.25^4.27^9.02^3.87
-~05014~^~0500~^~Chicken, broilers or fryers, meat only, cooked, stewed~^~CHICKEN,BROILERS OR FRYERS,MEAT ONLY,CKD,STWD~^^^~Y~^~34% bone, 14% skin~^48^^6.25^4.27^9.02^3.87
-~05015~^~0500~^~Chicken, broilers or fryers, skin only, raw~^~CHICKEN,BROILERS OR FRYERS,SKN ONLY,RAW~^^^^^0^^6.25^4.27^9.02^3.87
-~05016~^~0500~^~Chicken, broilers or fryers, skin only, cooked, fried, batter~^~CHICKEN,BROILERS OR FRYERS,SKN ONLY,CKD,FRIED,BATTER~^^^^^0^^6.25^4.27^9.02^3.87
-~05017~^~0500~^~Chicken, broilers or fryers, skin only, cooked, fried, flour~^~CHICKEN,BROILERS OR FRYERS,SKN ONLY,CKD,FRIED,FLR~^^^^^0^^6.25^4.27^9.02^3.87
-~05018~^~0500~^~Chicken, broilers or fryers, skin only, cooked, roasted~^~CHICKEN,BROILERS OR FRYERS,SKN ONLY,CKD,RSTD~^^^~Y~^^0^^6.25^4.27^9.02^3.87
-~05019~^~0500~^~Chicken, broilers or fryers, skin only, cooked, stewed~^~CHICKEN,BROILERS OR FRYERS,SKN ONLY,CKD,STWD~^^^^^0^^6.25^4.27^9.02^3.87
-~05020~^~0500~^~Chicken, broilers or fryers, giblets, raw~^~CHICKEN,BROILERS OR FRYERS,GIBLETS,RAW~^^^^^0^^6.25^4.27^9.02^3.87
-~05021~^~0500~^~Chicken, broilers or fryers, giblets, cooked, fried~^~CHICKEN,BROILERS OR FRYERS,GIBLETS,CKD,FRIED~^^^^^0^^6.25^4.27^9.02^3.87
-~05022~^~0500~^~Chicken, broilers or fryers, giblets, cooked, simmered~^~CHICKEN,BROILERS OR FRYERS,GIBLETS,CKD,SIMMRD~^^^~Y~^^0^^6.25^4.27^9.02^3.87
-~05023~^~0500~^~Chicken, gizzard, all classes, raw~^~CHICKEN,GIZZARD,ALL CLASSES,RAW~^^^^^0^^6.25^4.27^9.02^3.87
-~05024~^~0500~^~Chicken, gizzard, all classes, cooked, simmered~^~CHICKEN,GIZZARD,ALL CLASSES,CKD,SIMMRD~^^^~Y~^~Membranes 10.7%~^11^^6.25^4.27^9.02^3.87
-~05025~^~0500~^~Chicken, heart, all classes, raw~^~CHICKEN,HEART,ALL CLASSES,RAW~^^^^^0^^6.25^4.27^9.02^3.87
-~05026~^~0500~^~Chicken, heart, all classes, cooked, simmered~^~CHICKEN,HEART,ALL CLASSES,CKD,SIMMRD~^^^^^0^^6.25^4.27^9.02^3.87
-~05027~^~0500~^~Chicken, liver, all classes, raw~^~CHICKEN,LIVER,ALL CLASSES,RAW~^^^~Y~^^0^^6.25^4.27^9.02^3.87
-~05028~^~0500~^~Chicken, liver, all classes, cooked, simmered~^~CHICKEN,LIVER,ALL CLASSES,CKD,SIMMRD~^^^~Y~^^0^^6.25^4.27^9.02^3.87
-~05029~^~0500~^~Chicken, broilers or fryers, light meat, meat and skin, raw~^~CHICKEN,BROILERS OR FRYERS,LT MEAT,MEAT & SKN,RAW~^^^^~Bone~^28^^6.25^4.27^9.02^3.87
-~05030~^~0500~^~Chicken, broilers or fryers, light meat, meat and skin, cooked, fried, batter~^~CHICKEN,BROILERS OR FRYERS,LT MEAT,MEAT&SKN,CKD,FRIED,BATTER~^^^^~Bone~^21^^6.25^4.27^9.02^3.87
-~05031~^~0500~^~Chicken, broilers or fryers, light meat, meat and skin, cooked, fried, flour~^~CHICKEN,BROILERS OR FRYERS,LT MEAT,MEAT&SKN,CKD,FRIED,FLR~^^^~Y~^~Bone~^28^^6.25^4.27^9.02^3.87
-~05032~^~0500~^~Chicken, broilers or fryers, light meat, meat and skin, cooked, roasted~^~CHICKEN,BROILERS OR FRYERS,LT MEAT,MEAT&SKN,CKD,RSTD~^^^^~Bone~^29^^6.25^4.27^9.02^3.87
-~05033~^~0500~^~Chicken, broilers or fryers, light meat, meat and skin, cooked, stewed~^~CHICKEN,BROILERS OR FRYERS,LT MEAT,MEAT&SKN,CKD,STWD~^^^^~Bone~^29^^6.25^4.27^9.02^3.87
-~05034~^~0500~^~Chicken, broilers or fryers, dark meat, meat and skin, raw~^~CHICKEN,BROILERS OR FRYERS,DK MEAT,MEAT & SKN,RAW~^^^^~Bone~^35^^6.25^4.27^9.02^3.87
-~05035~^~0500~^~Chicken, broilers or fryers, dark meat, meat and skin, cooked, fried, batter~^~CHICKEN,BROILERS OR FRYERS,DK MEAT,MEAT&SKN,CKD,FRIED,BATTER~^^^^~Bone~^23^^6.25^4.27^9.02^3.87
-~05036~^~0500~^~Chicken, broilers or fryers, dark meat, meat and skin, cooked, fried, flour~^~CHICKEN,BROILERS OR FRYERS,DK MEAT,MEAT&SKN,CKD,FRIED,FLR~^^^^~Bone~^30^^6.25^4.27^9.02^3.87
-~05037~^~0500~^~Chicken, broilers or fryers, dark meat, meat and skin, cooked, roasted~^~CHICKEN,BROILERS OR FRYERS,DK MEAT,MEAT&SKN,CKD,RSTD~^^^^~Bone~^36^^6.25^4.27^9.02^3.87
-~05038~^~0500~^~Chicken, broilers or fryers, dark meat, meat and skin, cooked, stewed~^~CHICKEN,BROILERS OR FRYERS,DK MEAT,MEAT&SKN,CKD,STWD~^^^^~Bone~^38^^6.25^4.27^9.02^3.87
-~05039~^~0500~^~Chicken, broilers or fryers, light meat, meat only, raw~^~CHICKEN,BROILERS OR FRYERS,LT MEAT,MEAT ONLY,RAW~^^^^~28% bone, 13% skin, 4% separable fat~^45^^6.25^4.27^9.02^3.87
-~05040~^~0500~^~Chicken, broilers or fryers, light meat, meat only, cooked, fried~^~CHICKEN,BROILERS OR FRYERS,LT MEAT,MEAT ONLY,CKD,FRIED~^^^^~28% bone, 13% skin~^41^^6.25^4.27^9.02^3.87
-~05041~^~0500~^~Chicken, broilers or fryers, light meat, meat only, cooked, roasted~^~CHICKEN,BROILERS OR FRYERS,LT MEAT,MEAT ONLY,CKD,RSTD~^^^~Y~^~29% bone, 13% skin~^42^^6.25^4.27^9.02^3.87
-~05042~^~0500~^~Chicken, broilers or fryers, light meat, meat only, cooked, stewed~^~CHICKEN,BROILERS OR FRYERS,LT MEAT,MEAT ONLY,CKD,STWD~^^^~Y~^~29% bone, 15% skin~^44^^6.25^4.27^9.02^3.87
-~05043~^~0500~^~Chicken, broilers or fryers, dark meat, meat only, raw~^~CHICKEN,BROILERS OR FRYERS,DK MEAT,MEAT ONLY,RAW~^^^^~35% bone, 11% skin, 10% separable fat~^56^^6.25^4.27^9.02^3.87
-~05044~^~0500~^~Chicken, broilers or fryers, dark meat, meat only, cooked, fried~^~CHICKEN,BROILERS OR FRYERS,DK MEAT,MEAT ONLY,CKD,FRIED~^^^^~30% bone, 12% skin~^42^^6.25^4.27^9.02^3.87
-~05045~^~0500~^~Chicken, broilers or fryers, dark meat, meat only, cooked, roasted~^~CHICKEN,BROILERS OR FRYERS,DK MEAT,MEAT ONLY,CKD,RSTD~^^^~Y~^~36% bone, 12% skin~^48^^6.25^4.27^9.02^3.87
-~05046~^~0500~^~Chicken, broilers or fryers, dark meat, meat only, cooked, stewed~^~CHICKEN,BROILERS OR FRYERS,DK MEAT,MEAT ONLY,CKD,STWD~^^^~Y~^~38% bone, 14% skin~^52^^6.25^4.27^9.02^3.87
-~05047~^~0500~^~Chicken, broilers or fryers, separable fat, raw~^~CHICKEN,BROILERS OR FRYERS,FAT,RAW~^^^~Y~^^0^^6.25^4.27^9.02^3.87
-~05048~^~0500~^~Chicken, broilers or fryers, back, meat and skin, raw~^~CHICKEN,BROILERS OR FRYERS,BACK,MEAT&SKN,RAW~^^^^~Bone~^44^^6.25^4.27^9.02^3.87
-~05049~^~0500~^~Chicken, broilers or fryers, back, meat and skin, cooked, fried, batter~^~CHICKEN,BROILERS OR FRYERS,BACK,MEAT&SKN,CKD,FRIED,BATTER~^^^^~Bone~^23^^6.25^4.27^9.02^3.87
-~05050~^~0500~^~Chicken, broilers or fryers, back, meat and skin, cooked, fried, flour~^~CHICKEN,BROILERS OR FRYERS,BACK,MEAT&SKN,CKD,FRIED,FLR~^^^^~Bone~^33^^6.25^4.27^9.02^3.87
-~05051~^~0500~^~Chicken, broilers or fryers, back, meat and skin, cooked, roasted~^~CHICKEN,BROILERS OR FRYERS,BACK,MEAT&SKN,CKD,RSTD~^^^~Y~^~Bone~^47^^6.25^4.27^9.02^3.87
-~05052~^~0500~^~Chicken, broilers or fryers, back, meat and skin, cooked, stewed~^~CHICKEN,BROILERS OR FRYERS,BACK,MEAT&SKN,CKD,STWD~^^^~Y~^~Bone~^48^^6.25^4.27^9.02^3.87
-~05053~^~0500~^~Chicken, broilers or fryers, back, meat only, raw~^~CHICKEN,BROILERS OR FRYERS,BACK,MEAT ONLY,RAW~^^^^~44% bone, 10% skin, 17% seprable fat~^71^^6.25^4.27^9.02^3.87
-~05054~^~0500~^~Chicken, broilers or fryers, back, meat only, cooked, fried~^~CHICKEN,BROILERS OR FRYERS,BACK,MEAT ONLY,CKD,FRIED~^^^^~33% bone, 13% skin~^46^^6.25^4.27^9.02^3.87
-~05055~^~0500~^~Chicken, broilers or fryers, back, meat only, cooked, roasted~^~CHICKEN,BROILERS OR FRYERS,BACK,MEAT ONLY,CKD,RSTD~^^^^~47% bone, 13% skin~^60^^6.25^4.27^9.02^3.87
-~05056~^~0500~^~Chicken, broilers or fryers, back, meat only, cooked, stewed~^~CHICKEN,BROILERS OR FRYERS,BACK,MEAT ONLY,CKD,STWD~^^^^~48% bone, 16% skin~^64^^6.25^4.27^9.02^3.87
-~05057~^~0500~^~Chicken, broilers or fryers, breast, meat and skin, raw~^~CHICKEN,BROILERS OR FRYERS,BREAST,MEAT&SKN,RAW~^^^~Y~^~Bone~^20^^6.25^4.27^9.02^3.87
-~05058~^~0500~^~Chicken, broilers or fryers, breast, meat and skin, cooked, fried, batter~^~CHICKEN,BROILERS OR FRYERS,BREAST,MEAT&SKN,CKD,FRIED,BATTER~^^^~Y~^~Bone~^12^^6.25^4.27^9.02^3.87
-~05059~^~0500~^~Chicken, broilers or fryers, breast, meat and skin, cooked, fried, flour~^~CHICKEN,BROILERS OR FRYERS,BREAST,MEAT&SKN,CKD,FRIED,FLR~^^^^~Bone~^17^^6.25^4.27^9.02^3.87
-~05060~^~0500~^~Chicken, broilers or fryers, breast, meat and skin, cooked, roasted~^~CHICKEN,BROILERS OR FRYERS,BREAST,MEAT&SKN,CKD,RSTD~^^^~Y~^~Bone~^19^^6.25^4.27^9.02^3.87
-~05061~^~0500~^~Chicken, broilers or fryers, breast, meat and skin, cooked, stewed~^~CHICKEN,BROILERS OR FRYERS,BREAST,MEAT&SKN,CKD,STWD~^^^~Y~^~Bone~^18^^6.25^4.27^9.02^3.87
-~05062~^~0500~^~Chicken, broiler or fryers, breast, skinless, boneless, meat only, raw~^~CHICKEN,BROILER OR FRYERS,BRST,SKINLESS,BNLESS,MEAT ONLY,RAW~^^^~Y~^^0^^6.25^4.27^9.02^3.87
-~05063~^~0500~^~Chicken, broilers or fryers, breast, meat only, cooked, fried~^~CHICKEN,BROILERS OR FRYERS,BREAST,MEAT ONLY,CKD,FRIED~^^^~Y~^~17% bone, 10% skin~^27^^6.25^4.27^9.02^3.87
-~05064~^~0500~^~Chicken, broilers or fryers, breast, meat only, cooked, roasted~^~CHICKEN,BROILERS OR FRYERS,BREAST,MEAT ONLY,CKD,RSTD~^^^~Y~^~19% bone, 9% skin~^28^^6.25^4.27^9.02^3.87
-~05065~^~0500~^~Chicken, broilers or fryers, breast, meat only, cooked, stewed~^~CHICKEN,BROILERS OR FRYERS,BREAST,MEAT ONLY,CKD,STWD~^^^~Y~^~18% bone, 12% skin~^30^^6.25^4.27^9.02^3.87
-~05066~^~0500~^~Chicken, broilers or fryers, drumstick, meat and skin, raw~^~CHICKEN,BROILERS OR FRYERS,DRUMSTK,MEAT&SKN,RAW~^^^~Y~^~Bone and cartilage 33%, Bone and connective tissue 33%~^66^^6.25^4.27^9.02^3.87
-~05067~^~0500~^~Chicken, broilers or fryers, drumstick, meat and skin, cooked, fried, batter~^~CHICKEN,BROILERS OR FRYERS,DRUMSTK,MEAT&SKN,CKD,FRIED,BATTER~^^^^~Bone~^26^^6.25^4.27^9.02^3.87
-~05068~^~0500~^~Chicken, broilers or fryers, drumstick, meat and skin, cooked, fried, flour~^~CHICKEN,BROILERS OR FRYERS,DRUMSTK,MEAT&SKN,CKD,FRIED,FLR~^^^^~Bone~^34^^6.25^4.27^9.02^3.87
-~05069~^~0500~^~Chicken, broilers or fryers, drumstick, meat and skin, cooked, roasted~^~CHICKEN,BROILERS OR FRYERS,DRUMSTK,MEAT&SKN,CKD,RSTD~^^^~Y~^~Bone and cartilage 33%, Bone and connective tissue 28%~^61^^6.25^4.27^9.02^3.87
-~05070~^~0500~^~Chicken, broilers or fryers, drumstick, meat and skin, cooked, stewed~^~CHICKEN,BROILERS OR FRYERS,DRUMSTK,MEAT&SKN,CKD,STWD~^^^~Y~^~Bone~^36^^6.25^4.27^9.02^3.87
-~05071~^~0500~^~Chicken, broilers or fryers, dark meat, drumstick, meat only, raw~^~CHICKEN,BROILERS OR FRYERS,DK MEAT,DRUMSTK,MEAT ONLY,RAW~^^^~Y~^~bone and cartilage 33%, skin and separable fat 9%~^42^^6.25^4.27^9.02^3.87
-~05072~^~0500~^~Chicken, broilers or fryers, drumstick, meat only, cooked, fried~^~CHICKEN,BROILERS OR FRYERS,DRUMSTK,MEAT ONLY,CKD,FRIED~^^^^~34% bone, 10% skin~^44^^6.25^4.27^9.02^3.87
-~05073~^~0500~^~Chicken, broilers or fryers, dark meat, drumstick, meat only, cooked, roasted~^~CHICKEN,BROILERS OR FRYERS,DK MEAT,DRUMSTK,MEAT ONLY,CKD,RST~^^^~Y~^~Bone and cartilage 33%, Skin and separable fat 7%~^40^^6.25^4.27^9.02^3.87
-~05074~^~0500~^~Chicken, broilers or fryers, drumstick, meat only, cooked, stewed~^~CHICKEN,BROILERS OR FRYERS,DRUMSTK,MEAT ONLY,CKD,STWD~^^^~Y~^~36% bone, 12% skin~^48^^6.25^4.27^9.02^3.87
-~05075~^~0500~^~Chicken, broilers or fryers, leg, meat and skin, raw~^~CHICKEN,BROILERS OR FRYERS,LEG,MEAT&SKN,RAW~^^^~Y~^~Bone~^27^^6.25^4.27^9.02^3.87
-~05076~^~0500~^~Chicken, broilers or fryers, leg, meat and skin, cooked, fried, batter~^~CHICKEN,BROILERS OR FRYERS,LEG,MEAT&SKN,CKD,FRIED,BATTER~^^^^~Bone~^22^^6.25^4.27^9.02^3.87
-~05077~^~0500~^~Chicken, broilers or fryers, leg, meat and skin, cooked, fried, flour~^~CHICKEN,BROILERS OR FRYERS,LEG,MEAT&SKN,CKD,FRIED,FLR~^^^^~Bone~^28^^6.25^4.27^9.02^3.87
-~05078~^~0500~^~Chicken, broilers or fryers, leg, meat and skin, cooked, roasted~^~CHICKEN,BROILERS OR FRYERS,LEG,MEAT&SKN,CKD,RSTD~^^^~Y~^~Bone 29%~^29^^6.25^4.27^9.02^3.87
-~05079~^~0500~^~Chicken, broilers or fryers, leg, meat and skin, cooked, stewed~^~CHICKEN,BROILERS OR FRYERS,LEG,MEAT&SKN,CKD,STWD~^^^~Y~^~Bone~^30^^6.25^4.27^9.02^3.87
-~05080~^~0500~^~Chicken, broilers or fryers, leg, meat only, raw~^~CHICKEN,BROILERS OR FRYERS,LEG,MEAT ONLY,RAW~^^^~Y~^~27% bone, 11% skin, 5% separable fat~^43^^6.25^4.27^9.02^3.87
-~05081~^~0500~^~Chicken, broilers or fryers, leg, meat only, cooked, fried~^~CHICKEN,BROILERS OR FRYERS,LEG,MEAT ONLY,CKD,FRIED~^^^^~28% bone, 12% skin~^40^^6.25^4.27^9.02^3.87
-~05082~^~0500~^~Chicken, broilers or fryers, leg, meat only, cooked, roasted~^~CHICKEN,BROILERS OR FRYERS,LEG,MEAT ONLY,CKD,RSTD~^^^~Y~^~Bone 29%, skin 12%~^41^^6.25^4.27^9.02^3.87
-~05083~^~0500~^~Chicken, broilers or fryers, leg, meat only, cooked, stewed~^~CHICKEN,BROILERS OR FRYERS,LEG,MEAT ONLY,CKD,STWD~^^^~Y~^~30% bone, 13% skin~^43^^6.25^4.27^9.02^3.87
-~05084~^~0500~^~Chicken, broilers or fryers, neck, meat and skin, raw~^~CHICKEN,BROILERS OR FRYERS,NECK,MEAT&SKN,RAW~^^^^~Bone~^36^^6.25^4.27^9.02^3.87
-~05085~^~0500~^~Chicken, broilers or fryers, neck, meat and skin, cooked, fried, batter~^~CHICKEN,BROILERS OR FRYERS,NECK,MEAT&SKN,CKD,FRIED,BATTER~^^^^~Bone~^25^^6.25^4.27^9.02^3.87
-~05086~^~0500~^~Chicken, broilers or fryers, neck, meat and skin, cooked, fried, flour~^~CHICKEN,BROILERS OR FRYERS,NECK,MEAT&SKN,CKD,FRIED,FLR~^^^^~Bone~^29^^6.25^4.27^9.02^3.87
-~05087~^~0500~^~Chicken, broilers or fryers, neck, meat and skin, cooked simmered~^~CHICKEN,BROILERS OR FRYERS,NECK,MEAT&SKN,CKD SIMMRD~^^^~Y~^~Bone~^32^^6.25^4.27^9.02^3.87
-~05088~^~0500~^~Chicken, broilers or fryers, neck, meat only, raw~^~CHICKEN,BROILERS OR FRYERS,NECK,MEAT ONLY,RAW~^^^^~36% bone, 39% skin and separable fat~^75^^6.25^4.27^9.02^3.87
-~05089~^~0500~^~Chicken, broilers or fryers, neck, meat only, cooked, fried~^~CHICKEN,BROILERS OR FRYERS,NECK,MEAT ONLY,CKD,FRIED~^^^^~29% bone, 27% skin~^56^^6.25^4.27^9.02^3.87
-~05090~^~0500~^~Chicken, broilers or fryers, neck, meat only, cooked, simmered~^~CHICKEN,BROILERS OR FRYERS,NECK,MEAT ONLY,CKD,SIMMRD~^^^^~32% bone, 35% skin~^67^^6.25^4.27^9.02^3.87
-~05091~^~0500~^~Chicken, broilers or fryers, thigh, meat and skin, raw~^~CHICKEN,BROILERS OR FRYERS,THIGH,MEAT&SKN,RAW~^^^~Y~^^0^^6.25^4.27^9.02^3.87
-~05092~^~0500~^~Chicken, broilers or fryers, thigh, meat and skin, cooked, fried, batter~^~CHICKEN,BROILERS OR FRYERS,THIGH,MEAT&SKN,CKD,FRIED,BATTER~^^^^~Bone~^19^^6.25^4.27^9.02^3.87
-~05093~^~0500~^~Chicken, broilers or fryers, thigh, meat and skin, cooked, fried, flour~^~CHICKEN,BROILERS OR FRYERS,THIGH,MEAT&SKN,CKD,FRIED,FLR~^^^^~Bone~^23^^6.25^4.27^9.02^3.87
-~05094~^~0500~^~Chicken, broilers or fryers, thigh, meat and skin, cooked, roasted~^~CHICKEN,BROILERS OR FRYERS,THIGH,MEAT&SKN,CKD,RSTD~^^^~Y~^~Bone and cartilage 17%, bone and connective tissue 16%~^33^^6.25^4.27^9.02^3.87
-~05095~^~0500~^~Chicken, broilers or fryers, thigh, meat and skin, cooked, stewed~^~CHICKEN,BROILERS OR FRYERS,THIGH,MEAT&SKN,CKD,STWD~^^^~Y~^~Bone~^24^^6.25^4.27^9.02^3.87
-~05096~^~0500~^~Chicken, broilers or fryers, dark meat, thigh, meat only, raw~^~CHICKEN,BROILERS OR FRYERS,DK MEAT,THIGH,MEAT ONLY,RAW~^^^~Y~^~ Skin and separable fat 25%~^25^^6.25^4.27^9.02^3.87
-~05097~^~0500~^~Chicken, broilers or fryers, thigh, meat only, cooked, fried~^~CHICKEN,BROILERS OR FRYERS,THIGH,MEAT ONLY,CKD,FRIED~^^^^~23% bone, 13% skin~^36^^6.25^4.27^9.02^3.87
-~05098~^~0500~^~Chicken, broilers or fryers, thigh, meat only, cooked, roasted~^~CHICKEN,BROILERS OR FRYERS,THIGH,MEAT ONLY,CKD,RSTD~^^^~Y~^~Bone and cartilage 17%, skin and separable fat 15%~^48^^6.25^4.27^9.02^3.87
-~05099~^~0500~^~Chicken, broilers or fryers, thigh, meat only, cooked, stewed~^~CHICKEN,BROILERS OR FRYERS,THIGH,MEAT ONLY,CKD,STWD~^^^~Y~^~24% bone, 15% skin~^39^^6.25^4.27^9.02^3.87
-~05100~^~0500~^~Chicken, broilers or fryers, wing, meat and skin, raw~^~CHICKEN,BROILERS OR FRYERS,WING,MEAT&SKN,RAW~^^^~Y~^~Bone and connective tissue 38%~^38^^6.25^4.27^9.02^3.87
-~05101~^~0500~^~Chicken, broilers or fryers, wing, meat and skin, cooked, fried, batter~^~CHICKEN,BROILERS OR FRYERS,WING,MEAT&SKN,CKD,FRIED,BATTER~^^^^~Bone~^38^^6.25^4.27^9.02^3.87
-~05102~^~0500~^~Chicken, broilers or fryers, wing, meat and skin, cooked, fried, flour~^~CHICKEN,BROILERS OR FRYERS,WING,MEAT&SKN,CKD,FRIED,FLR~^^^^~Bone~^47^^6.25^4.27^9.02^3.87
-~05103~^~0500~^~Chicken, broilers or fryers, wing, meat and skin, cooked, roasted~^~CHICKEN,BROILERS OR FRYERS,WING,MEAT&SKN,CKD,RSTD~^^^~Y~^~Bone and connective tissue 40%~^40^^6.25^4.27^9.02^3.87
-~05104~^~0500~^~Chicken, broilers or fryers, wing, meat and skin, cooked, stewed~^~CHICKEN,BROILERS OR FRYERS,WING,MEAT&SKN,CKD,STWD~^^^~Y~^~Bone~^48^^6.25^4.27^9.02^3.87
-~05105~^~0500~^~Chicken, broilers or fryers, wing, meat only, raw~^~CHICKEN,BROILERS OR FRYERS,WING,MEAT ONLY,RAW~^^^~Y~^~46% bone, 21% skin, 1% separable fat~^68^^6.25^4.27^9.02^3.87
-~05106~^~0500~^~Chicken, broilers or fryers, wing, meat only, cooked, fried~^~CHICKEN,BROILERS OR FRYERS,WING,MEAT ONLY,CKD,FRIED~^^^^~47% bone, 19% skin~^66^^6.25^4.27^9.02^3.87
-~05107~^~0500~^~Chicken, broilers or fryers, wing, meat only, cooked, roasted~^~CHICKEN,BROILERS OR FRYERS,WING,MEAT ONLY,CKD,RSTD~^^^~Y~^~48% bone, 20% skin~^68^^6.25^4.27^9.02^3.87
-~05108~^~0500~^~Chicken, broilers or fryers, wing, meat only, cooked, stewed~^~CHICKEN,BROILERS OR FRYERS,WING,MEAT ONLY,CKD,STWD~^^^~Y~^~48% bone, 20% skin~^68^^6.25^4.27^9.02^3.87
-~05109~^~0500~^~Chicken, roasting, meat and skin and giblets and neck, raw~^~CHICKEN,ROASTING,MEAT&SKN&GIBLETS&NECK,RAW~^^^^~Bone~^27^^6.25^4.27^9.02^3.87
-~05110~^~0500~^~Chicken, roasting, meat and skin and giblets and neck, cooked, roasted~^~CHICKEN,ROASTING,MEAT&SKN&GIBLETS&NECK,CKD,RSTD~^^^^~Bone~^29^^6.25^4.27^9.02^3.87
-~05111~^~0500~^~Canada Goose, breast meat only, skinless, raw~^~CANADA GOOSE,BREAST MEAT ONLY,SKINLESS,RAW~^~Canadian geese~^^^^0^~Branta canadensis~^^^^
-~05112~^~0500~^~Chicken, roasting, meat and skin, cooked, roasted~^~CHICKEN,ROASTING,MEAT&SKN,CKD,RSTD~^^^^~Bone~^30^^6.25^4.27^9.02^3.87
-~05113~^~0500~^~Chicken, roasting, meat only, raw~^~CHICKEN,ROASTING,MEAT ONLY,RAW~^^^^~28% bone, 14% skin, 7% separable fat~^49^^6.25^4.27^9.02^3.87
-~05114~^~0500~^~Chicken, roasting, meat only, cooked, roasted~^~CHICKEN,ROASTING,MEAT ONLY,CKD,RSTD~^^^^~30% bone, 12% skin, 1% separable fat~^43^^6.25^4.27^9.02^3.87
-~05115~^~0500~^~Chicken, roasting, giblets, raw~^~CHICKEN,ROASTING,GIBLETS,RAW~^^^^^0^^6.25^4.27^9.02^3.87
-~05116~^~0500~^~Chicken, roasting, giblets, cooked, simmered~^~CHICKEN,ROASTING,GIBLETS,CKD,SIMMRD~^^^^^0^^6.25^4.27^9.02^3.87
-~05117~^~0500~^~Chicken, roasting, light meat, meat only, raw~^~CHICKEN,ROASTING,LT MEAT,MEAT ONLY,RAW~^^^^~26% bone, 13% skin, 4% separable fat~^43^^6.25^4.27^9.02^3.87
-~05118~^~0500~^~Chicken, roasting, light meat, meat only, cooked, roasted~^~CHICKEN,ROASTING,LT MEAT,MEAT ONLY,CKD,RSTD~^^^~Y~^~24% bone, 16% skin~^40^^6.25^4.27^9.02^3.87
-~05119~^~0500~^~Chicken, roasting, dark meat, meat only, raw~^~CHICKEN,ROASTING,DK MEAT,MEAT ONLY,RAW~^^^^~30% bone, 14% skin, 9% separable fat~^53^^6.25^4.27^9.02^3.87
-~05120~^~0500~^~Chicken, roasting, dark meat, meat only, cooked, roasted~^~CHICKEN,ROASTING,DK MEAT,MEAT ONLY,CKD,RSTD~^^^^~35% bone, 10% skin, 1% separable fat~^46^^6.25^4.27^9.02^3.87
-~05121~^~0500~^~Chicken, stewing, meat and skin, and giblets and neck, raw~^~CHICKEN,STEWING,MEAT&SKN,&GIBLETS&NECK,RAW~^^^^~27% bone, 5% separable fat~^32^^6.25^4.27^9.02^3.87
-~05122~^~0500~^~Chicken, stewing, meat and skin, and giblets and neck, cooked, stewed~^~CHICKEN,STEWING,MEAT & SKN,& GIBLETS & NECK,CKD,STWD~^^^~Y~^~29% bone, 2% separable fat~^31^^6.25^4.27^9.02^3.87
-~05123~^~0500~^~Chicken, stewing, meat and skin, raw~^~CHICKEN,STEWING,MEAT&SKN,RAW~^^^^~Bone~^30^^6.25^4.27^9.02^3.87
-~05124~^~0500~^~Chicken, stewing, meat and skin, cooked, stewed~^~CHICKEN,STEWING,MEAT&SKN,CKD,STWD~^^^^~Bone~^32^^6.25^4.27^9.02^3.87
-~05125~^~0500~^~Chicken, stewing, meat only, raw~^~CHICKEN,STEWING,MEAT ONLY,RAW~^^^^~Bone 30%, skin 12%, separable fat 8%~^50^^6.25^4.27^9.02^3.87
-~05126~^~0500~^~Chicken, stewing, meat only, cooked, stewed~^~CHICKEN,STEWING,MEAT ONLY,CKD,STWD~^^^^~Bone, 32%, skin, 16%~^48^^6.25^4.27^9.02^3.87
-~05127~^~0500~^~Chicken, stewing, giblets, raw~^~CHICKEN,STEWING,GIBLETS,RAW~^^^^^0^^6.25^4.27^9.02^3.87
-~05128~^~0500~^~Chicken, stewing, giblets, cooked, simmered~^~CHICKEN,STEWING,GIBLETS,CKD,SIMMRD~^^^^^0^^6.25^4.27^9.02^3.87
-~05129~^~0500~^~Chicken, stewing, light meat, meat only, raw~^~CHICKEN,STEWING,LT MEAT,MEAT ONLY,RAW~^^^^~26% bone, 14% skin, 4% separable fat~^44^^6.25^4.27^9.02^3.87
-~05130~^~0500~^~Chicken, stewing, light meat, meat only, cooked, stewed~^~CHICKEN,STEWING,LT MEAT,MEAT ONLY,CKD,STWD~^^^^~26% bone, 16% skin~^42^^6.25^4.27^9.02^3.87
-~05131~^~0500~^~Chicken, stewing, dark meat, meat only, raw~^~CHICKEN,STEWING,DK MEAT,MEAT ONLY,RAW~^^^^~33% bone, 11% skin, 10% separable fat~^54^^6.25^4.27^9.02^3.87
-~05132~^~0500~^~Chicken, stewing, dark meat, meat only, cooked, stewed~^~CHICKEN,STEWING,DK MEAT,MEAT ONLY,CKD,STWD~^^^^~36% bone, 15% skin~^51^^6.25^4.27^9.02^3.87
-~05133~^~0500~^~Chicken, capons, meat and skin and giblets and neck, raw~^~CHICKEN,CAPONS,MEAT&SKN&GIBLETS&NECK,RAW~^^^^~Bone~^27^^6.25^4.27^9.02^3.87
-~05134~^~0500~^~Chicken, capons, meat and skin and giblets and neck, cooked, roasted~^~CHICKEN,CAPONS,MEAT&SKN&GIBLETS&NECK,CKD,RSTD~^^^^~Bone~^28^^6.25^4.27^9.02^3.87
-~05135~^~0500~^~Chicken, capons, meat and skin, raw~^~CHICKEN,CAPONS,MEAT&SKN,RAW~^^^^~Bone~^28^^6.25^4.27^9.02^3.87
-~05136~^~0500~^~Chicken, capons, meat and skin, cooked, roasted~^~CHICKEN,CAPONS,MEAT&SKN,CKD,RSTD~^^^^~Bone~^29^^6.25^4.27^9.02^3.87
-~05137~^~0500~^~Chicken, capons, giblets, raw~^~CHICKEN,CAPONS,GIBLETS,RAW~^^^^^0^^6.25^4.27^9.02^3.87
-~05138~^~0500~^~Chicken, capons, giblets, cooked, simmered~^~CHICKEN,CAPONS,GIBLETS,CKD,SIMMRD~^^^^^0^^6.25^4.27^9.02^3.87
-~05139~^~0500~^~Duck, domesticated, meat and skin, raw~^~DUCK,DOMESTICATED,MEAT&SKN,RAW~^^^~Y~^~Bone~^28^~Anas platyrhynchos~^6.25^4.27^9.02^3.87
-~05140~^~0500~^~Duck, domesticated, meat and skin, cooked, roasted~^~DUCK,DOMESTICATED,MEAT&SKN,CKD,RSTD~^^^~Y~^~Bone~^35^^6.25^4.27^9.02^3.87
-~05141~^~0500~^~Duck, domesticated, meat only, raw~^~DUCK,DOMESTICATED,MEAT ONLY,RAW~^^^~Y~^~28% bone, 38% skin and separable fat~^66^^6.25^4.27^9.02^3.87
-~05142~^~0500~^~Duck, domesticated, meat only, cooked, roasted~^~DUCK,DOMESTICATED,MEAT ONLY,CKD,RSTD~^^^~Y~^~35% bone, 27% skin and separable fat~^62^^6.25^4.27^9.02^3.87
-~05143~^~0500~^~Duck, domesticated, liver, raw~^~DUCK,DOMESTICATED,LIVER,RAW~^^^^^0^^6.25^4.27^9.02^3.87
-~05144~^~0500~^~Duck, wild, meat and skin, raw~^~DUCK,WILD,MEAT&SKN,RAW~^^^^~38% bone, 2% handling loss~^40^^6.25^4.27^9.02^3.87
-~05145~^~0500~^~Duck, wild, breast, meat only, raw~^~DUCK,WILD,BREAST,MEAT ONLY,RAW~^^^^~15% bone, 31% skin and separable fat~^46^^6.25^4.27^9.02^3.87
-~05146~^~0500~^~Goose, domesticated, meat and skin, raw~^~GOOSE,DOMESTICATED,MEAT&SKN,RAW~^^^^~Bone~^19^~Anser anser~^6.25^4.27^9.02^3.87
-~05147~^~0500~^~Goose, domesticated, meat and skin, cooked, roasted~^~GOOSE,DOMESTICATED,MEAT&SKN,CKD,RSTD~^^^~Y~^~Bone~^28^^6.25^4.27^9.02^3.87
-~05148~^~0500~^~Goose, domesticated, meat only, raw~^~GOOSE,DOMESTICATED,MEAT ONLY,RAW~^^^^~19% bone, 34% skin and separable fat~^53^^6.25^4.27^9.02^3.87
-~05149~^~0500~^~Goose, domesticated, meat only, cooked, roasted~^~GOOSE,DOMESTICATED,MEAT ONLY,CKD,RSTD~^^^^~28% bone, 17% skin and separable fat~^45^^6.25^4.27^9.02^3.87
-~05150~^~0500~^~Goose, liver, raw~^~GOOSE,LIVER,RAW~^^^^^0^^6.25^4.27^9.02^3.87
-~05151~^~0500~^~Guinea hen, meat and skin, raw~^~GUINEA HEN,MEAT&SKN,RAW~^^^^~Bone~^17^~Numida meleagris~^6.25^4.27^9.02^3.87
-~05152~^~0500~^~Guinea hen, meat only, raw~^~GUINEA HEN,MEAT ONLY,RAW~^^^^~17% bone, 19% skin and separable fat~^36^^6.25^4.27^9.02^3.87
-~05153~^~0500~^~Pheasant, raw, meat and skin~^~PHEASANT,RAW,MEAT&SKN~^^^^~Bone~^14^~Phasianus colchicus~^6.25^4.27^9.02^3.87
-~05154~^~0500~^~Pheasant, raw, meat only~^~PHEASANT,RAW,MEAT ONLY~^^^^~14% bone, 10% skin~^24^^6.25^4.27^9.02^3.87
-~05155~^~0500~^~Pheasant, breast, meat only, raw~^~PHEASANT,BREAST,MEAT ONLY,RAW~^^^^^0^^6.25^4.27^9.02^3.87
-~05156~^~0500~^~Pheasant, leg, meat only, raw~^~PHEASANT,LEG,MEAT ONLY,RAW~^^^^^0^^6.25^4.27^9.02^3.87
-~05157~^~0500~^~Quail, meat and skin, raw~^~QUAIL,MEAT AND SKIN,RAW~^^^^~Bone~^10^~Coturnix spp. and Colinus spp.~^6.25^4.27^9.02^3.87
-~05158~^~0500~^~Quail, meat only, raw~^~QUAIL,MEAT ONLY,RAW~^^^^~10% bone, 14% skin~^24^^6.25^4.27^9.02^3.87
-~05159~^~0500~^~Quail, breast, meat only, raw~^~QUAIL,BREAST,MEAT ONLY,RAW~^^^^^0^^6.25^4.27^9.02^3.87
-~05160~^~0500~^~Squab, (pigeon), meat and skin, raw~^~SQUAB,(PIGEON),MEAT&SKN,RAW~^^^^~Bone~^23^~Columba spp.~^6.25^4.27^9.02^3.87
-~05161~^~0500~^~Squab, (pigeon), meat only, raw~^~SQUAB,(PIGEON),MEAT ONLY,RAW~^^^^~23% bone, 12% skin~^35^^6.25^4.27^9.02^3.87
-~05162~^~0500~^~Squab, (pigeon), light meat without skin, raw~^~SQUAB,(PIGEON),LT MEAT WO/SKN,RAW~^^^^^0^^6.25^4.27^9.02^3.87
-~05165~^~0500~^~Turkey, whole, meat and skin, raw~^~TURKEY,WHL,MEAT & SKN,RAW~^^^~Y~^~Bone and connective tissue 29%~^29^^6.25^4.27^9.02^3.87
-~05166~^~0500~^~Turkey, whole, meat and skin, cooked, roasted~^~TURKEY,WHL,MEAT & SKN,CKD,RSTD~^^^~Y~^~Bone connective tissue 31%~^31^^6.25^4.27^9.02^3.87
-~05167~^~0500~^~Turkey, whole, meat only, raw~^~TURKEY,WHL,MEAT ONLY,RAW~^^^~Y~^~Bone and connective tissue 29%, Skin and separable fat 11%~^41^^6.25^4.27^9.02^3.87
-~05168~^~0500~^~Turkey, whole, meat only, cooked, roasted~^~TURKEY,WHL,MEAT ONLY,CKD,RSTD~^^^~Y~^~Bone and connective tissue 31%, Skin and separable fat 7%~^38^^6.25^4.27^9.02^3.87
-~05169~^~0500~^~Turkey, whole, skin (light and dark), raw~^~TURKEY,WHL,SKN (LIGHT & DARK),RAW~^^^^^0^^6.25^4.27^9.02^3.87
-~05170~^~0500~^~Turkey, whole, skin (light and dark), roasted~^~TURKEY,WHL,SKN (LIGHT & DARK),RSTD~^^^^^0^^6.25^4.27^9.02^3.87
-~05171~^~0500~^~Turkey, whole, giblets, raw~^~TURKEY,WHL,GIBLETS,RAW~^^^^^0^^6.25^4.27^9.02^3.87
-~05172~^~0500~^~Turkey, whole, giblets, cooked, simmered~^~TURKEY,WHL,GIBLETS,CKD,SIMMRD~^^^~Y~^^0^^6.25^4.27^9.02^3.87
-~05173~^~0500~^~Turkey, gizzard, all classes, raw~^~TURKEY,GIZZARD,ALL CLASSES,RAW~^^^^^0^^6.25^4.27^9.02^3.87
-~05174~^~0500~^~Turkey, all classes, gizzard, cooked, simmered~^~TURKEY,ALL CLASSES,GIZZARD,CKD,SIMMRD~^^^~Y~^^0^^6.25^4.27^9.02^3.87
-~05175~^~0500~^~Turkey, all classes, heart, raw~^~TURKEY,ALL CLASSES,HEART,RAW~^^^^^0^^6.25^4.27^9.02^3.87
-~05176~^~0500~^~Turkey, all classes, heart, cooked, simmered~^~TURKEY,ALL CLASSES,HEART,CKD,SIMMRD~^^^~Y~^^0^^6.25^4.27^9.02^3.87
-~05177~^~0500~^~Turkey, all classes, liver, raw~^~TURKEY,ALL CLASSES,LIVER,RAW~^^^^^0^^6.25^4.27^9.02^3.87
-~05178~^~0500~^~Turkey, all classes, liver, cooked, simmered~^~TURKEY,ALL CLASSES,LIVER,CKD,SIMMRD~^^^^^0^^6.25^4.27^9.02^3.87
-~05179~^~0500~^~Turkey, whole, neck, meat only, raw~^~TURKEY,WHL,NECK,MEAT ONLY,RAW~^^^^~Bone and connective tissue 60%~^60^^6.25^4.27^9.02^3.87
-~05180~^~0500~^~Turkey, whole, neck, meat only, cooked, simmered~^~TURKEY,WHL,NECK,MEAT ONLY,CKD,SIMMRD~^^^~Y~^~Bone and connective tissue 53%~^53^^6.25^4.27^9.02^3.87
-~05181~^~0500~^~Turkey, whole, light meat, meat and skin, raw~^~TURKEY,WHL,LT MEAT,MEAT & SKN,RAW~^^^^~Bone and Conncetive tissue 32%~^32^^6.25^4.27^9.02^3.87
-~05182~^~0500~^~Turkey, whole, light meat, meat and skin, cooked, roasted~^~TURKEY,WHL,LT MEAT,MEAT & SKN,CKD,RSTD~^^^~Y~^~Bone and connective tissue 20%~^20^^6.25^4.27^9.02^3.87
-~05183~^~0500~^~Turkey, dark meat, meat and skin, raw~^~TURKEY,DK MEAT,MEAT & SKN,RAW~^^^^~Bone and connective tissue 38%~^48^^6.25^4.27^9.02^3.87
-~05184~^~0500~^~Turkey, whole, dark meat, meat and skin, cooked, roasted~^~TURKEY,WHL,DK MEAT,MEAT & SKN,CKD,RSTD~^^^~Y~^~Bone and connective tissue 38%~^38^^6.25^4.27^9.02^3.87
-~05185~^~0500~^~Turkey, whole, light meat, raw~^~TURKEY,WHL,LT MEAT,RAW~^^^^~Bone and connective tissue 20%, skin and separable fat 12%~^29^^6.25^4.27^9.02^3.87
-~05186~^~0500~^~Turkey, all classes, light meat, cooked, roasted~^~TURKEY,ALL CLASSES,LT MEAT,CKD,RSTD~^^^~Y~^~Bone and connective tissue 20%, Skin and separable fat 7%~^27^^6.25^4.27^9.02^3.87
-~05187~^~0500~^~Turkey, whole, dark meat, meat only, raw~^~TURKEY,WHL,DK MEAT,MEAT ONLY,RAW~^^^^~Bone and connective tissue 38%, skin and separable fat 10%~^48^^^^^
-~05188~^~0500~^~Turkey, whole, dark meat, cooked, roasted~^~TURKEY,WHL,DK MEAT,CKD,RSTD~^^^~Y~^~Bone and connective tissue 39% Skin and separable fat 7%~^46^^6.25^4.27^9.02^3.87
-~05190~^~0500~^~Turkey, all classes, back, meat and skin, cooked, roasted~^~TURKEY,ALL CLASSES,BACK,MEAT&SKN,CKD,RSTD~^^^~Y~^~Bone~^41^^6.25^4.27^9.02^3.87
-~05191~^~0500~^~Turkey, all classes, breast, meat and skin, raw~^~TURKEY,ALL CLASSES,BREAST,MEAT&SKN,RAW~^^^^~Bone~^10^^6.25^4.27^9.02^3.87
-~05192~^~0500~^~Turkey, all classes, breast, meat and skin, cooked, roasted~^~TURKEY,ALL CLASSES,BREAST,MEAT&SKN,CKD,RSTD~^^^^~Bone~^8^^6.25^4.27^9.02^3.87
-~05193~^~0500~^~Turkey, all classes, leg, meat and skin, raw~^~TURKEY,ALL CLASSES,LEG,MEAT&SKN,RAW~^^^^~Bone~^17^^6.25^4.27^9.02^3.87
-~05194~^~0500~^~Turkey, all classes, leg, meat and skin, cooked, roasted~^~TURKEY,ALL CLASSES,LEG,MEAT&SKN,CKD,RSTD~^^^~Y~^~Bone~^19^^6.25^4.27^9.02^3.87
-~05195~^~0500~^~Turkey, all classes, wing, meat and skin, raw~^~TURKEY,ALL CLASSES,WING,MEAT&SKN,RAW~^^^^~Bone~^33^^6.25^4.27^9.02^3.87
-~05196~^~0500~^~Turkey, all classes, wing, meat and skin, cooked, roasted~^~TURKEY,ALL CLASSES,WING,MEAT&SKN,CKD,RSTD~^^^~Y~^~Bone~^34^^6.25^4.27^9.02^3.87
-~05200~^~0500~^~Turkey, fryer-roasters, meat and skin, cooked, roasted~^~TURKEY,FRYER-ROASTERS,MEAT&SKN,CKD,RSTD~^^^~Y~^~Bone~^25^^6.25^4.27^9.02^3.87
-~05215~^~0500~^~Turkey, whole, back, meat only, raw~^~TURKEY,BACK FROM WHL BIRD,MEAT ONLY,RAW~^^^^~Bone and connective tissue 50%, skin and separable fat 12%~^62^^6.25^4.27^9.02^3.87
-~05216~^~0500~^~Turkey, whole, back, meat only, cooked, roasted~^~TURKEY,BACK,FROM WHL BIRD,MEAT ONLY,RSTD~^^^~Y~^~Bone and connective tissue 54%, Skin and separable fat 7%~^42^^6.25^4.27^9.02^3.87
-~05219~^~0500~^~Turkey, whole, breast, meat only, raw~^~TURKEY,BREAST,FROM WHL BIRD,MEAT ONLY,RAW~^^^^~Bone and connective tissue 12%, Skin and separable fat 10%~^22^^6.25^4.27^9.02^3.87
-~05220~^~0500~^~Turkey, whole, breast, meat only, cooked, roasted~^~TURKEY,BREAST,FROM WHL BIRD,MEAT ONLY,RSTD~^^^~Y~^~Bone and connective tissue 13%, Skin and separable fat 6%~^19^^6.25^4.27^9.02^3.87
-~05227~^~0500~^~Turkey, whole, wing, meat only, raw~^~TURKEY,WING,FROM WHL BIRD,MEAT ONLY,RAW~^^^^~Bone and connective tissue 44%, skin and separable fat 16%~^60^^6.25^4.27^9.02^3.87
-~05228~^~0500~^~Turkey, whole, wing, meat only, cooked, roasted~^~TURKEY,WING,FROM WHL BIRD,MEAT ONLY,RSTD~^^^~Y~^~Bone and connective tissue 48%, skin and separable fat 11%~^59^^6.25^4.27^9.02^3.87
-~05236~^~0500~^~Turkey, young hen, skin only, cooked, roasted~^~TURKEY,YOUNG HEN,SKN ONLY,CKD,RSTD~^^^^^0^^6.25^4.27^9.02^3.87
-~05277~^~0500~^~Chicken, canned, meat only, with broth~^~CHICKEN,CND,MEAT ONLY,W/BROTH~^^^~Y~^^0^^6.25^4.27^9.02^3.87
-~05282~^~0500~^~Pate de foie gras, canned (goose liver pate), smoked~^~PATE DE FOIE GRAS,CND (GOOSE LIVER PATE),SMOKED~^^^^^0^^6.25^4.27^9.02^3.87
-~05284~^~0500~^~Turkey, canned, meat only, with broth~^~TURKEY,CND,MEAT ONLY,W/BROTH~^^^~Y~^^0^^6.25^4.27^9.02^3.87
-~05285~^~0500~^~Turkey, diced, light and dark meat, seasoned~^~TURKEY,DICED,LT&DK MEAT,SEASONED~^^^^^0^^6.25^4.27^9.02^3.87
-~05286~^~0500~^~Turkey and gravy, frozen~^~TURKEY AND GRAVY,FROZEN~^^^^^0^^6.25^4.27^9.02^3.87
-~05293~^~0500~^~Turkey breast, pre-basted, meat and skin, cooked, roasted~^~TURKEY BREAST,PRE-BASTED,MEAT&SKN,CKD,RSTD~^^^^~Bone~^8^^6.25^4.27^9.02^3.87
-~05294~^~0500~^~Turkey thigh, pre-basted, meat and skin, cooked, roasted~^~TURKEY THIGH,PRE-BASTED,MEAT&SKN,CKD,RSTD~^^^^~Bone~^13^^6.25^4.27^9.02^3.87
-~05295~^~0500~^~Turkey roast, boneless, frozen, seasoned, light and dark meat, raw~^~TURKEY RST,BNLESS,FRZ,SEASONED,LT&DK MEAT,RAW~^^^^^0^^6.25^4.27^9.02^3.87
-~05300~^~0500~^~Turkey sticks, breaded, battered, fried~^~TURKEY STKS,BREADED,BATTERED,FRIED~^^^^^0^^6.25^4.27^9.02^3.87
-~05301~^~0500~^~Poultry, mechanically deboned, from backs and necks with skin, raw~^~POULTRY,MECHANICALLY DEBONED,FROM BACKS&NECKS W/SKN,RAW~^^^^^0^^6.25^4.27^9.02^3.87
-~05302~^~0500~^~Poultry, mechanically deboned, from backs and necks without skin, raw~^~POULTRY,MECHANICALLY DEBONED,FROM BACKS&NECKS WO/SKN,RAW~^^^^^0^^6.25^4.27^9.02^3.87
-~05303~^~0500~^~Poultry, mechanically deboned, from mature hens, raw~^~POULTRY,MECHANICALLY DEBONED,FROM MATURE HENS,RAW~^^^^^0^^6.25^4.27^9.02^3.87
-~05304~^~0500~^~Turkey, mechanically deboned, from turkey frames, raw~^~TURKEY,MECHANICALLY DEBONED,FROM TURKEY FRAMES,RAW~^^^^^0^^6.25^4.27^9.02^3.87
-~05305~^~0500~^~Turkey, Ground, raw~^~TURKEY,GROUND,RAW~^^^^^0^^^^^
-~05306~^~0500~^~Turkey, Ground, cooked~^~TURKEY,GROUND,CKD~^^^~Y~^^0^^^^^
-~05307~^~0500~^~Chicken, cornish game hens, meat and skin, raw~^~CHICKEN,CORNISH GAME HENS,MEAT&SKN,RAW~^^^^~Bone~^39^^6.25^4.27^9.02^3.87
-~05308~^~0500~^~Chicken, cornish game hens, meat and skin, cooked, roasted~^~CHICKEN,CORNISH GAME HENS,MEAT&SKN,CKD,RSTD~^^^~Y~^~Bone~^37^^6.25^4.27^9.02^3.87
-~05309~^~0500~^~Chicken, cornish game hens, meat only, raw~^~CHICKEN,CORNISH GAME HENS,MEAT ONLY,RAW~^^^^~39% bone, 13% skin, 5% separable fat~^57^^6.25^4.27^9.02^3.87
-~05310~^~0500~^~Chicken, cornish game hens, meat only, cooked, roasted~^~CHICKEN,CORNISH GAME HENS,MEAT ONLY,CKD,RSTD~^^^~Y~^~37% bone, 9% skin~^46^^6.25^4.27^9.02^3.87
-~05311~^~0500~^~Chicken, canned, no broth~^~CHICKEN,CANNED,NO BROTH~^^^~Y~^^0^^6.25^4.27^9.02^3.87
-~05312~^~0500~^~Chicken, wing, frozen, glazed, barbecue flavored~^~CHICKEN,WING,FRZ,GLAZED,BARBECUE FLAV~^^^^~Drumette: Bone 24.92%, Cartilage 9.79%, Total refuse: 34.71%; Second wing section: Bone 22.09%, Cartilage 8.51%, Total refuse: 30.65%~^33^^6.25^4.27^9.02^3.87
-~05313~^~0500~^~Chicken, wing, frozen, glazed, barbecue flavored, heated (microwave)~^~CHICKEN,WING,FRZ,GLAZED,BARBECUE FLAV,HTD (MICROWAVE)~^^^^~Drumette: Bone 24.92%, Cartilage 9.79%, Total refuse: 34.71%; Second wing section: Bone 22.09%, Cartilage 8.51%, Total refuse: 30.65%~^33^^6.25^4.27^9.02^3.87
-~05314~^~0500~^~Chicken, broilers or fryers, breast, skinless, boneless, meat only, with added solution, raw~^~CKN,BROILERS/FRYERS,BRST,SKNLS,BNLS,MEAT ONLY,W ADDED SLN,RW~^^^~Y~^^0^^6.25^^^
-~05315~^~0500~^~Duck, young duckling, domesticated, White Pekin, breast, meat and skin, boneless, cooked, roasted~^~DUCK,YNG DUCKLING,DOM,WH PEKIN,BRST,MEAT&SKN,BNLESS,CKD,RSTD~^^^^^0^~Anas platyrhynchos~^6.25^4.27^9.02^
-~05316~^~0500~^~Duck, young duckling, domesticated, White Pekin, breast, meat only, boneless, cooked without skin, broiled~^~DUCK,YNG DUCKL,DOM,WH PEKIN,BRST,MEAT,BNLESS,CKD WO/SKN,BRLD~^^^^^0^~Anas platyrhynchos~^6.25^4.27^9.02^
-~05317~^~0500~^~Duck, young duckling, domesticated, White Pekin, leg, meat and skin, bone in, cooked, roasted~^~DUCK,YNG DUCKLING,DOM,WH PEKIN,LEG,MEAT&SKN,BONE IN,CKD,RSTD~^^^^~Bone~^31^~Anas platyrhynchos~^6.25^4.27^9.02^
-~05318~^~0500~^~Duck, young duckling, domesticated, White Pekin, leg, meat only, bone in, cooked without skin, braised~^~DUCK,YNG DUCKL,DOM,WH PEKIN,LEG,MEAT,BONE IN,CKD WO/SKN,BRSD~^^^^~Bone~^34^~Anas platyrhynchos~^6.25^4.27^9.02^
-~05319~^~0500~^~Chicken, broiler, rotisserie, BBQ, drumstick, meat only~^~CHICKEN,BROILER,ROTISSERIE,BBQ,DRUMSTK,MEAT ONLY~^^^~Y~^~Bone and connective tissue 29%, skin and separable fat 12%~^41^^^^^
-~05320~^~0500~^~Chicken, wing, frozen, glazed, barbecue flavored, heated (conventional oven)~^~CHICKEN,WING,FRZ,GLAZED,BBQ FLAV,HTD (CONVENTIONAL OVEN)~^^^^~Drumette: Bone 24.92%, Cartilage 9.79%, Total refuse: 34.71%; Second wing section: Bone 22.09%, Cartilage 8.51%, Total refuse: 30.65%~^33^^6.25^4.27^9.02^3.87
-~05323~^~0500~^~Chicken patty, frozen, uncooked~^~CHICKEN PATTY,FRZ,UNCKD~^^^^^0^^^^^
-~05324~^~0500~^~Chicken patty, frozen, cooked~^~CHICKEN PATTY,FRZ,CKD~^^^~Y~^^0^^^^^
-~05326~^~0500~^~Chicken breast tenders, breaded, cooked, microwaved~^~CHICKEN BREAST TENDERS,BREADED,CKD,MICROWAVED~^^^^^0^^6.25^^^
-~05327~^~0500~^~Chicken breast tenders, breaded, uncooked~^~CHICKEN BREAST TENDERS,BREADED,UNCKD~^^^~Y~^^0^^6.25^4.27^9.02^3.87
-~05332~^~0500~^~Chicken, ground, raw~^~CHICKEN,GROUND,RAW~^^^^^0^^6.25^^^
-~05333~^~0500~^~Chicken, ground, crumbles, cooked, pan-browned~^~CHICKEN,GROUND,CRUMBLES,CKD,PAN-BROWNED~^^^^^0^^6.25^3.87^9.04^4.27
-~05334~^~0500~^~Chicken, broiler, rotisserie, BBQ, thigh, meat only~^~CHICKEN,BROILER,ROTISSERIE,BBQ,THIGH,MEAT ONLY~^^^~Y~^~Bone and connective tissue 14%, skin and separable fat 15%~^29^^^^^
-~05335~^~0500~^~Chicken, feet, boiled~^~CHICK,FEET,BOILED~^^^~Y~^^0^^6.25^4.27^9.02^3.87
-~05339~^~0500~^~Chicken, broiler, rotisserie, BBQ, wing, meat only~^~CHICKEN,BROILER,ROTISSERIE,BBQ,WING,MEAT ONLY~^^^~Y~^~Bone and connective tissue 32%, skin and separable fat 25%~^57^^6.25^^^
-~05341~^~0500~^~Chicken, broilers or fryers, rotisserie, original seasoning, back, meat only, cooked~^~CHIKN,BROLRS OR FYRS,ROTSSRIE,ORIGNL SESONG,BCK,MEAT OLY,CKD~^^^^~40.14% bone and cartilage, 16.08% skin and separable fat~^56^^^^^
-~05342~^~0500~^~Chicken, broilers or fryers, rotisserie, original seasoning, breast, meat only, cooked~^~CHKN,BRILRS OR FYRS,ROTSSRE,ORGNL SESONING,BRST,MEAT OLY,CKD~^^^~Y~^~Bone and Connective tissue 26%, skin 10%~^36^^^^^
-~05343~^~0500~^~Chicken, broilers or fryers, drumstick, rotisserie, original seasoning, meat only, cooked~^~CHKN,BRLRS OR FYRS,DRMSTK,ROISSRE,ORGNL SESONIG,MEAT OLY,CKD~^^^^~29.34% bone and cartilage, 11.75% skin and separable fat~^41^^^^^
-~05344~^~0500~^~Chicken, broilers or fryers, rotisserie, original seasoning, skin only, cooked~^~CICKN,BRILRS OR FYRS,ROTSSRE,ORGNL SEASNG,SKN ONLY,CKD~^^^^^0^^6.25^^^
-~05345~^~0500~^~Chicken, broilers or fryers, rotisserie, original seasoning, thigh, meat only, cooked~^~CHCKN,BROLRS OR FRYRS,ROTSSRIE,ORGNL SEASNG,TGH,MEAT OLY,CKD~^^^^~14.24% bone and cartilage, 14.88% skin and separable fat~^29^^^^^
-~05346~^~0500~^~Chicken, broilers or fryers, rotisserie, original seasoning, wing, meat only, cooked~^~CHCKN,BROLRS OR FRYRS,ROISSRIE,ORGNL SEASONG,WNG,MET OLY,CKD~^^^^~32.51% bone and cartilage, 24.10% skin and separable fat~^57^^^^^
-~05347~^~0500~^~Chicken, broilers or fryers, rotisserie, original seasoning, back, meat and skin, cooked~^~CHKN,BROLRS OR FRYRS,ROTSSERE,ORGNL SESONG,BCK,MET & SKN,CKD~^^^^^0^^^^^
-~05348~^~0500~^~Chicken, broilers or fryers, rotisserie, original seasoning, breast, meat and skin, cooked~^~CHKN,BROLRS OR FRYRS,ROTSSRE,ORGNL SASONG,BRST,MAT & SKN,CKD~^^^^^0^^^^^
-~05349~^~0500~^~Chicken, broilers or fryers, rotisserie, original seasoning, drumstick, meat and skin, cooked~^~CHKN,BROLRS OR FYRS,ROTSSRE,ORGNL SESONG,DRMSTK,MT & SKN,CKD~^^^^^0^^^^^
-~05351~^~0500~^~Chicken, broilers or fryers, rotisserie, original seasoning, thigh, meat and skin, cooked~^~CHKN,BROLRS OR FRYRS,ROTSSRE,ORGNL SESONG,THGH,MET & SKN,CKD~^^^^^0^^^^^
-~05352~^~0500~^~Chicken, broilers or fryers, rotisserie, original seasoning, wing, meat and skin, cooked~^~CHKN,BROLRS OR FRYRS,ROTSSRE,ORGNL SEASONG,WNG,MET & SKN,CKD~^^^^^0^^^^^
-~05356~^~0500~^~Chicken, broiler, rotisserie, BBQ, skin~^~CHICKEN,BROILER,ROTISSERIE,BBQ,SKIN~^^^~Y~^^0^^^^^
-~05357~^~0500~^~Chicken, broiler, rotisserie, BBQ, back, meat and skin~^~CHICKEN,BROILER,ROTISSERIE,BBQ,BACK,MEAT & SKN~^^^~Y~^~Bone and connective tissue 37%~^37^^^^^
-~05358~^~0500~^~Chicken, broiler, rotisserie, BBQ, breast, meat and skin~^~CHICKEN,BROILER,ROTISSERIE,BBQ,BREAST,MEAT & SKN~^^^~Y~^~Bone and connective tissue 11%~^11^^^^^
-~05359~^~0500~^~Chicken, broiler, rotisserie, BBQ, drumstick, meat and skin~^~CHICKEN,BROILER,ROTISSERIE,BBQ,DRUMSTK,MEAT & SKN~^^^~Y~^~Bone and connective tissue 29%~^29^^^^^
-~05361~^~0500~^~Chicken, broiler, rotisserie, BBQ, thigh, meat and skin~^~CHICKEN,BROILER,ROTISSERIE,BBQ,THIGH,MEAT & SKN~^^^~Y~^~Bone and connective tissue 14%~^14^^^^^
-~05362~^~0500~^~Chicken, broiler, rotisserie, BBQ, wing, meat and skin~^~CHICKEN,BROILER,ROTISSERIE,BBQ,WING,MEAT & SKN~^^^~Y~^~Bone and connective tissue 32%~^32^^^^^
-~05363~^~0500~^~Ruffed Grouse, breast meat, skinless, raw~^~RUFFED GROUSE,BREAST MEAT,SKINLESS,RAW~^~Ruffed grouse~^^^^0^~Bonasa umbellus~^^^^
-~05621~^~0500~^~Emu, ground, raw~^~EMU,GROUND,RAW~^^^^^0^~Dromaius novaehollandiae~^6.25^4.27^9.02^3.87
-~05622~^~0500~^~Emu, ground, cooked, pan-broiled~^~EMU,GROUND,CKD,PAN-BROILED~^^^^^0^~Dromaius novaehollandiae~^6.25^4.27^9.02^3.87
-~05623~^~0500~^~Emu, fan fillet, raw~^~EMU,FAN FILLET,RAW~^^^^^0^~Dromaius novaehollandiae~^6.25^4.27^9.02^3.87
-~05624~^~0500~^~Emu, fan fillet, cooked, broiled~^~EMU,FAN FILLET,CKD,BRLD~^^^^^0^~Dromaius novaehollandiae~^6.25^4.27^9.02^3.87
-~05625~^~0500~^~Emu, flat fillet, raw~^~EMU,FLAT FILLET,RAW~^^^^^0^~Dromaius novaehollandiae~^6.25^4.27^9.02^3.87
-~05626~^~0500~^~Emu, full rump, raw~^~EMU,FULL RUMP,RAW~^^^^^0^~Dromaius novaehollandiae~^6.25^4.27^9.02^3.87
-~05627~^~0500~^~Emu, full rump, cooked, broiled~^~EMU,FULL RUMP,CKD,BRLD~^^^^^0^~Dromaius novaehollandiae~^6.25^4.27^9.02^3.87
-~05628~^~0500~^~Emu, inside drum, raw~^~EMU,INSIDE DRUM,RAW~^^^^^0^~Dromaius novaehollandiae~^6.25^4.27^9.02^3.87
-~05629~^~0500~^~Emu, inside drums, cooked, broiled~^~EMU,INSIDE DRUMS,CKD,BRLD~^^^^^0^~Dromaius novaehollandiae~^6.25^4.27^9.02^3.87
-~05630~^~0500~^~Emu, outside drum, raw~^~EMU,OUTSIDE DRUM,RAW~^^^^^0^~Dromaius novaehollandiae~^6.25^4.27^9.02^3.87
-~05631~^~0500~^~Emu, oyster, raw~^~EMU,OYSTER,RAW~^^^^^0^~Dromaius novaehollandiae~^6.25^4.27^9.02^3.87
-~05632~^~0500~^~Emu, top loin, cooked, broiled~^~EMU,TOP LOIN,CKD,BRLD~^^^^^0^~Dromaius novaehollandiae~^6.25^4.27^9.02^3.87
-~05641~^~0500~^~Ostrich, ground, raw~^~OSTRICH,GROUND,RAW~^^^^^0^~Struthio camelus~^6.25^4.27^9.02^3.87
-~05642~^~0500~^~Ostrich, ground, cooked, pan-broiled~^~OSTRICH,GROUND,CKD,PAN-BROILED~^^^~Y~^^0^~Struthio camelus~^6.25^4.27^9.02^3.87
-~05643~^~0500~^~Ostrich, fan, raw~^~OSTRICH,FAN,RAW~^^^^^0^~Struthio camelus~^6.25^4.27^9.02^3.87
-~05644~^~0500~^~Ostrich, inside leg, raw~^~OSTRICH,INSIDE LEG,RAW~^^^^^0^~Struthio camelus~^6.25^4.27^9.02^3.87
-~05645~^~0500~^~Ostrich, inside leg, cooked~^~OSTRICH,INSIDE LEG,CKD~^^^^^0^~Struthio camelus~^6.25^4.27^9.02^3.87
-~05646~^~0500~^~Ostrich, inside strip, raw~^~OSTRICH,INSIDE STRIP,RAW~^^^^^0^~Struthio camelus~^6.25^4.27^9.02^3.87
-~05647~^~0500~^~Ostrich, inside strip, cooked~^~OSTRICH,INSIDE STRIP,CKD~^^^^^0^~Struthio camelus~^6.25^4.27^9.02^3.87
-~05648~^~0500~^~Ostrich, outside leg, raw~^~OSTRICH,OUTSIDE LEG,RAW~^^^^^0^~Struthio camelus~^6.25^4.27^9.02^3.87
-~05649~^~0500~^~Ostrich, outside strip, raw~^~OSTRICH,OUTSIDE STRIP,RAW~^^^^^0^~Struthio camelus~^6.25^4.27^9.02^3.87
-~05650~^~0500~^~Ostrich, outside strip, cooked~^~OSTRICH,OUTSIDE STRIP,CKD~^^^^^0^~Struthio camelus~^6.25^4.27^9.02^3.87
-~05651~^~0500~^~Ostrich, oyster, raw~^~OSTRICH,OYSTER,RAW~^^^^^0^~Struthio camelus~^6.25^4.27^9.02^3.87
-~05652~^~0500~^~Ostrich, oyster, cooked~^~OSTRICH,OYSTER,CKD~^^^^^0^~Struthio camelus~^6.25^4.27^9.02^3.87
-~05653~^~0500~^~Ostrich, round, raw~^~OSTRICH,RND,RAW~^^^^^0^~Struthio camelus~^6.25^4.27^9.02^3.87
-~05654~^~0500~^~Ostrich, tenderloin, raw~^~OSTRICH,TENDERLOIN,RAW~^^^^^0^~Struthio camelus~^6.25^4.27^9.02^3.87
-~05655~^~0500~^~Ostrich, tip trimmed, raw~^~OSTRICH,TIP RAW~^^^^^0^~Struthio camelus~^6.25^4.27^9.02^3.87
-~05656~^~0500~^~Ostrich, tip trimmed, cooked~^~OSTRICH,TIP CKD~^^^^^0^~Struthio camelus~^6.25^4.27^9.02^3.87
-~05657~^~0500~^~Ostrich, top loin, raw~^~OSTRICH,TOP LOIN,RAW~^^^^^0^~Struthio camelus~^6.25^4.27^9.02^3.87
-~05658~^~0500~^~Ostrich, top loin, cooked~^~OSTRICH,TOP LOIN,CKD~^^^^^0^~Struthio camelus~^6.25^4.27^9.02^3.87
-~05661~^~0500~^~Chicken, liver, all classes, cooked, pan-fried~^~CHICKEN,LIVER,ALL CLASSES,CKD,PAN-FRIED~^^^^^0^^6.25^4.27^9.02^3.87
-~05662~^~0500~^~Turkey, ground, fat free, raw~^~TURKEY,GROUND,FAT FREE,RAW~^^^^^0^^^^^
-~05663~^~0500~^~Turkey, ground, fat free, pan-broiled crumbles~^~TURKEY,GROUND,FAT FREE,PAN-BROILED CRUMBLES~^^^^^0^^^^^
-~05664~^~0500~^~Turkey, ground, fat free, patties, broiled~^~TURKEY,GROUND,FAT FREE,PATTIES,BRLD~^^^^^0^^^^^
-~05665~^~0500~^~Turkey, ground, 93% lean, 7% fat, raw~^~TURKEY,GROUND,93% LN,7% FAT,RAW~^^^^^0^^^^^
-~05666~^~0500~^~Turkey, ground, 93% lean, 7% fat, pan-broiled crumbles~^~TURKEY,GROUND,93% LN,7% FAT,PAN-BROILED CRUMBLES~^^^^^0^^^^^
-~05667~^~0500~^~Turkey, ground, 93% lean, 7% fat, patties, broiled~^~TURKEY,GROUND,93% LN,7% FAT,PATTIES,BRLD~^^^^^0^^^^^
-~05668~^~0500~^~Turkey, ground, 85% lean, 15% fat, raw~^~TURKEY,GROUND,85% LN,15% FAT,RAW~^^^^^0^^^^^
-~05669~^~0500~^~Turkey, ground, 85% lean, 15% fat, pan-broiled crumbles~^~TURKEY,GROUND,85% LN,15% FAT,PAN-BROILED CRUMBLES~^^^^^0^^^^^
-~05670~^~0500~^~Turkey, ground, 85% lean, 15% fat, patties, broiled~^~TURKEY,GROUND,85% LN,15% FAT,PATTIES,BRLD~^^^^^0^^^^^
-~05671~^~0500~^~Chicken, broilers or fryers, dark meat, drumstick, meat only, cooked, braised~^~CHICKEN,BROILERS OR FRYERS,DK MEAT,DRUMSTK,MEAT OLY,CKD,BRSD~^^^^~Bone and cartilage 32%, Separable fat and skin 9%~^41^^^^^
-~05672~^~0500~^~Chicken, broilers or fryers, dark meat, thigh, meat only, cooked, braised~^~CHICKEN,BROILERS OR FRYERS,DK MEAT,THIGH,MEAT ONLY,CKD,BRSD~^^^^~Bone and cartilage 16%, Skin and separable fat 16%~^32^^^^^
-~05673~^~0500~^~Chicken, skin (drumsticks and thighs), cooked, braised~^~CHICKEN,SKN (DRUMSTICKS & THIGHS),CKD,BRSD~^^^^^0^^^^^
-~05674~^~0500~^~Chicken, skin (drumsticks and thighs), raw~^~CHICKEN,SKN (DRUMSTICKS & THIGHS),RAW~^^^^^0^^^^^
-~05675~^~0500~^~Chicken, skin (drumsticks and thighs), cooked, roasted~^~CHICKEN,SKN (DRUMSTICKS & THIGHS),CKD,RSTD~^^^^^0^^^^^
-~05676~^~0500~^~Chicken, broilers or fryers, dark meat, drumstick, meat and skin, cooked, braised~^~CHICKEN,BROILERS OR FRYERS,DK MEAT,DRUMSTK,MT & SKN,CKD,BRSD~^^^^~Bone and cartilage 32%~^32^^^^^
-~05677~^~0500~^~Chicken, broilers or fryers, dark meat, thigh, meat and skin, cooked, braised~^~CHICKEN,BROILERS OR FRYERS,DK MEAT,THIGH,MEAT & SKN,CKD,BRSD~^^^^~Bone and cartilage 16%~^16^^^^^
-~05678~^~0500~^~Chicken, dark meat, drumstick, meat only, with added solution, raw~^~CHICKEN,DK MEAT,DRUMSTK,MEAT ONLY,W/ ADDED SOLN,RAW~^^^~Y~^~Bone and Cartilage 34%, Skin and separable fat 9%~^43^^^^^
-~05679~^~0500~^~Chicken, dark meat, drumstick, meat only, with added solution, cooked, roasted~^~CHICKEN,DK MEAT,DRUMSTK,MEAT ONLY,W/ ADDED SOLN,CKD,RSTD~^^^~Y~^~Bone and Cartilage 27%, Skin and separable fat 8%~^74^^6.25^^^
-~05680~^~0500~^~Chicken, dark meat, drumstick, meat only, with added solution, cooked, braised~^~CHICKEN,DK MEAT,DRUMSTK,MEAT ONLY,W/ ADDED SOLN,CKD,BRSD~^^^~Y~^~Bone and cartilage 30%, Skin and separable fat 9%~^39^^^^^
-~05681~^~0500~^~Chicken, dark meat, thigh, meat only, with added solution, cooked, braised~^~CHICKEN,DK MEAT,THIGH,MEAT ONLY,W/ ADDED SOLN,CKD,BRSD~^^^~Y~^~Bone and cartilage 15%, Skin and separable fat 18%~^33^^^^^
-~05682~^~0500~^~Chicken, dark meat, thigh, meat only, with added solution, raw~^~CHICKEN,DK MEAT,THIGH,MEAT ONLY,W/ ADDED SOLN,RAW~^^^~Y~^~Bone and cartilage 32%, skin and separable fat 24%~^56^^^^^
-~05683~^~0500~^~Chicken, dark meat, thigh, meat only, with added solution, cooked, roasted~^~CHICKEN,DK MEAT,THIGH,MEAT ONLY,W/ ADDED SOLN,CKD,RSTD~^^^~Y~^~Bone and connective tissue 16%, Skin and separable fat 15%~^31^^^^^
-~05684~^~0500~^~Chicken, skin (drumsticks and thighs), with added solution, cooked, braised~^~CHICKEN,SKN (DRUMSTICKS & THIGHS),W/ ADDED SOLN,CKD,BRSD~^^^~Y~^^0^^^^^
-~05685~^~0500~^~Chicken, skin (drumsticks and thighs), with added solution, raw~^~CHICKEN,SKN (DRUMSTICKS & THIGHS),W/ ADDED SOLN,RAW~^^^~Y~^^0^^^^^
-~05686~^~0500~^~Chicken, skin (drumsticks and thighs), with added solution, cooked, roasted~^~CHICKEN,SKN (DRUMSTICKS & THIGHS),W/ ADDED SOLN,CKD,RSTD~^^^~Y~^^0^^^^^
-~05687~^~0500~^~Chicken, dark meat, drumstick, meat and skin, with added solution, cooked, braised~^~CHICKEN,DK MEAT,DRUMSTK,MEAT & SKN,W/ ADDED SOLN,CKD,BRSD~^^^~Y~^~Bone and Cartilage 30%~^30^^^^^
-~05688~^~0500~^~Chicken, dark meat, drumstick, meat and skin, with added solution, raw~^~CHICKEN,DK MEAT,DRUMSTK,MEAT & SKN,W/ ADDED SOLN,RAW~^^^~Y~^~Bone and cartilage 34%, bone and connective tissue 34%~^68^^^^^
-~05689~^~0500~^~Chicken, dark meat, drumstick, meat and skin, with added solution, cooked, roasted~^~CHICKEN,DK MEAT,DRUMSTK,MEAT & SKN,W/ ADDED SOLN,CKD,RSTD~^^^~Y~^~Bone and Cartilage 40%, bone and connective tissue 26%~^66^^^^^
-~05690~^~0500~^~Chicken, dark meat, thigh, meat and skin, with added solution, cooked, braised~^~CHICKEN,DK MEAT,THIGH,MEAT & SKN,W/ ADDED SOLN,CKD,BRSD~^^^~Y~^~Bone and cartilage 15%~^15^^^^^
-~05691~^~0500~^~Chicken, dark meat, thigh, meat and skin, with added solution, raw~^~CHICKEN,DK MEAT,THIGH,MEAT & SKN,W/ ADDED SOLN,RAW~^^^~Y~^~Bone and cartilage 15%, bone and connective tissue 17%~^32^^^^^
-~05692~^~0500~^~Chicken, dark meat, thigh, meat and skin, with added solution, cooked, roasted~^~CHICKEN,DK MEAT,THIGH,MEAT & SKN,W/ ADDED SOLN,CKD,RSTD~^^^~Y~^~Bone and cartilage 17%, bone and connective tissue 16%~^33^^^^^
-~05693~^~0500~^~Chicken, broiler, rotisserie, BBQ, back meat only~^~CHICKEN,BROILER,ROTISSERIE,BBQ,BACK MEAT ONLY~^^^~Y~^~Bone and connective tissue 37%, skin and separable fat 14%~^51^^^^^
-~05694~^~0500~^~Turkey, dark meat from whole, meat only, with added solution, raw~^~TURKEY,DK MEAT FROM WHL,MEAT ONLY,W/ ADDED SOLN,RAW~^^^^~Bone and connective tissue 34%, Skin and separable fat 13%~^47^^^^^
-~05695~^~0500~^~Turkey, dark meat, meat only, with added solution, cooked, roasted~^~TURKEY,DK MEAT,MEAT ONLY,W/ ADDED SOLN,CKD,RSTD~^^^~Y~^~Bone and connective tissue 36%, Skin and separable fat 9%~^45^^^^^
-~05696~^~0500~^~Turkey from whole, light meat, meat only, with added solution, raw~^~TURKEY FROM WHL,LT MEAT,MEAT ONLY,W/ ADDED SOLN,RAW~^^^^~Bone and connective tissue 18%, Skin and separable fat 13%~^31^^^^^
-~05697~^~0500~^~Turkey from whole, light meat, meat only, with added solution, cooked, roasted~^~TURKEY FROM WHL,LT MEAT,MEAT ONLY,W/ ADDED SOLN,CKD,RSTD~^^^~Y~^~Bone and connective tissue 18%, Skin and separable fat 7%~^25^^^^^
-~05698~^~0500~^~Turkey, skin from whole (light and dark), with added solution, raw~^~TURKEY,SKN FROM WHL (LIGHT & DARK),W/ ADDED SOLN,RAW~^^^^^0^^^^^
-~05699~^~0500~^~Turkey, skin from whole, (light and dark), with added solution, roasted~^~TURKEY,SKN FROM WHL,(LIGHT & DARK),W/ ADDED SOLN,RSTD~^^^~Y~^^0^^^^^
-~05700~^~0500~^~Turkey, dark meat from whole, meat and skin, with added solution, raw~^~TURKEY,DK MEAT FROM WHL,MEAT & SKN,W/ ADDED SOLN,RAW~^^^^~Bone and connective tissue 34%~^34^^^^^
-~05701~^~0500~^~Turkey, dark meat from whole, meat and skin, with added solution, cooked, roasted~^~TURKEY,DK MEAT FROM WHL,MEAT & SKN,W/ ADDED SOLN,CKD,RSTD~^^^~Y~^~Bone and Connective tissue 37%~^37^^^^^
-~05702~^~0500~^~Turkey from whole, light meat, meat and skin, with added solution, raw~^~TURKEY FROM WHL,LT MEAT,MEAT & SKN,W/ ADDED SOLN,RAW~^^^^~Bone and connective tissue 18%~^18^^^^^
-~05703~^~0500~^~Turkey from whole, light meat, meat and skin, with added solution, cooked, roasted~^~TURKEY FROM WHL,LT MEAT,MEAT & SKN,W/ ADDED SOLN,CKD,RSTD~^^^~Y~^~Bone and connective tissue 18%~^18^^^^^
-~05704~^~0500~^~Turkey, whole, meat only, with added solution, raw~^~TURKEY,WHL,MEAT ONLY,W/ ADDED SOLN,RAW~^^^^~Bone and connective tissue 34%, Skin and separable fat 13%~^47^^^^^
-~05705~^~0500~^~Turkey, whole, meat only, with added solution, roasted~^~TURKEY,WHL,MEAT ONLY,W/ ADDED SOLN,RSTD~^^^~Y~^~Bone and connective tissue 36%, Skin and separable fat 9%~^45^^^^^
-~05706~^~0500~^~Turkey, whole, meat and skin, with added solution, raw~^~TURKEY,WHL,MEAT & SKN,W/ ADDED SOLN,RAW~^^^^~Bone and connective tissue 34%~^34^^^^^
-~05707~^~0500~^~Turkey, whole, meat and skin, with added solution, roasted~^~TURKEY,WHL,MEAT & SKN,W/ ADDED SOLN,RSTD~^^^~Y~^~Bone and connective tissue 36%~^36^^^^^
-~05708~^~0500~^~Turkey, retail parts, breast, meat only, with added solution, raw~^~TURKEY,RTL PARTS,BREAST,MEAT ONLY,W/ ADDED SOLN,RAW~^^^~Y~^~Bone and connective tissue 15%, Skin and separable fat 10%~^25^^^^^
-~05709~^~0500~^~Turkey, retail parts, breast, meat only, with added solution, cooked, roasted~^~TURKEY,RTL PARTS,BREAST,MEAT ONLY,W/ ADDED SOLN,CKD,RSTD~^^^~Y~^~Bone and connective tissue 17%, Skin and separable fat 7%~^24^^^^^
-~05710~^~0500~^~Turkey, retail parts, breast, meat only, raw~^~TURKEY,RTL PARTS,BREAST,MEAT ONLY,RAW~^^^^~Bone and connective tissue 14%, Skin and separable fat 11%~^25^^^^^
-~05711~^~0500~^~Turkey, retail parts, breast, meat only, cooked, roasted~^~TURKEY,RTL PARTS,BREAST,MEAT ONLY,CKD,RSTD~^^^~Y~^~Bone and connective tissue 12%, Skin and separable fat 8%~^20^^^^^
-~05712~^~0500~^~Turkey, retail parts, wing, meat only, raw~^~TURKEY,RTL PARTS,WING,MEAT ONLY,RAW~^^^^~Bone and connective tissue 37%, Skin and separable fat 18%~^55^^^^^
-~05713~^~0500~^~Turkey, retail parts, wing, meat only, cooked, roasted~^~TURKEY,RTL PARTS,WING,MEAT ONLY,CKD,RSTD~^^^~Y~^~Bone and connective tissue 38%, Skin and separable fat 14%~^52^^^^^
-~05714~^~0500~^~Turkey, skin, from retail parts, from dark meat, raw~^~TURKEY,SKN,FROM RTL PARTS,FROM DK MEAT,RAW~^^^^^0^^^^^
-~05715~^~0500~^~Turkey, skin, from retail parts, from dark meat, cooked, roasted~^~TURKEY,SKN,FROM RTL PARTS,FROM DK MEAT,CKD,RSTD~^^^^^0^^^^^
-~05716~^~0500~^~Turkey, retail parts, drumstick, meat only, raw~^~TURKEY,RTL PARTS,DRUMSTK,MEAT ONLY,RAW~^^^^~Bone and connective tissue 33%, Skin and separable fat 6%~^39^^^^^
-~05717~^~0500~^~Turkey, retail parts, thigh, meat only, raw~^~TURKEY,RTL PARTS,THIGH,MEAT ONLY,RAW~^^^^~Bone and connective tissue 19%, Skin and separable fat 13%~^32^^^^^
-~05718~^~0500~^~Turkey, breast, from whole bird, meat only, with added solution, roasted~^~TURKEY,BREAST,FROM WHL BIRD,MEAT ONLY,W/ ADDED SOLN,RSTD~^^^~Y~^~Bone and connective tissue 10%, skin and separable fat 6%~^16^^^^^
-~05719~^~0500~^~Turkey, back, from whole bird, meat only, with added solution, raw~^~TURKEY,BACK,FROM WHL BIRD,MEAT ONLY,W/ ADDED SOLN,RAW~^^^^~Bone and connective tissue 47%, Skin and separable fat 16%~^63^^^^^
-~05720~^~0500~^~Turkey, back, from whole bird, meat only, with added solution, roasted~^~TURKEY,BACK,FROM WHL BIRD,MEAT ONLY,W/ ADDED SOLN,RSTD~^^^~Y~^~Bone and connective tissue 49%, skin and separable fat 12%~^61^^^^^
-~05721~^~0500~^~Turkey, breast, from whole bird, meat only, with added solution, raw~^~TURKEY,BREAST,FROM WHL BIRD,MEAT ONLY,W/ ADDED SOLN,RAW~^^^^~Bone and connective tissue 10%, Skin and separable fat 11%~^22^^6.25^^^
-~05722~^~0500~^~Turkey, retail parts, thigh, meat only, cooked, roasted~^~TURKEY,RTL PARTS,THIGH,MEAT ONLY,CKD,RSTD~^^^~Y~^~Bone and connective tissue 14%, Skin and separable fat 9%~^23^^^^^
-~05723~^~0500~^~Turkey, retail parts, drumstick, meat only, cooked, roasted~^~TURKEY,RTL PARTS,DRUMSTK,MEAT ONLY,CKD,RSTD~^^^~Y~^~Bone and connective tissue 29%, Skin and separable fat 7%~^36^^^^^
-~05724~^~0500~^~Turkey, drumstick, from whole bird, meat only, with added solution, raw~^~TURKEY,DRUMSTK,FROM WHL BIRD,MEAT ONLY,W/ ADDED SOLN,RAW~^^^^~Bone and connective tissue 30%, Skin and separable fat 8%~^38^^^^^
-~05725~^~0500~^~Turkey, drumstick, from whole bird, meat only, with added solution, roasted~^~TURKEY,DRUMSTK,FROM WHL BIRD,MEAT ONLY,W/ ADDED SOLN,RSTD~^^^~Y~^~Bone and connective tissue 34%, Skin and separable fat 6%~^40^^^^^
-~05726~^~0500~^~Turkey, thigh, from whole bird, meat only, with added solution, raw~^~TURKEY,THIGH,FROM WHL BIRD,MEAT ONLY,W/ ADDED SOLN,RAW~^^^^~Bone and connective tissue 16%, Skin and separable fat 14%~^30^^^^^
-~05727~^~0500~^~Turkey, retail parts, breast, meat and skin, with added solution, raw~^~TURKEY,RTL PARTS,BREAST,MEAT & SKN,W/ ADDED SOLN,RAW~^^^~Y~^~Bone and connective tissue 15%~^15^^^^^
-~05728~^~0500~^~Turkey, thigh, from whole bird, meat only, with added solution, roasted~^~TURKEY,THIGH,FROM WHL BIRD,MEAT ONLY,W/ ADDED SOLN,RSTD~^^^~Y~^~Bone and connective tissue 16%, skin and separable fat 8%~^24^^^^^
-~05729~^~0500~^~Turkey, wing, from whole bird, meat only, with added solution, raw~^~TURKEY,WING,FROM WHL BIRD,MEAT ONLY,W/ ADDED SOLN,RAW~^^^^~Bone and connective tissue 36%, skin and separable fat 19%~^55^^^^^
-~05730~^~0500~^~Turkey, wing, from whole bird, meat only, with added solution, roasted~^~TURKEY,WING,FROM WHL BIRD,MEAT ONLY,W/ ADDED SOLN,RSTD~^^^~Y~^~Bone and connective tissue 47%, skin and separable fat 12%~^59^^^^^
-~05732~^~0500~^~Turkey, retail parts, breast, meat and skin, raw~^~TURKEY,RTL PARTS,BREAST,MEAT & SKN,RAW~^^^~Y~^~Bone and connective tissue 14%~^14^^^^^
-~05733~^~0500~^~Turkey, retail parts, breast, meat and skin, cooked, roasted~^~TURKEY,RTL PARTS,BREAST,MEAT & SKN,CKD,RSTD~^^^~Y~^~Bone and connective tissue 12%~^12^^^^^
-~05734~^~0500~^~Turkey, retail parts, wing, meat and skin, raw~^~TURKEY,RTL PARTS,WING,MEAT & SKN,RAW~^^^^~Bone and connective tissue 38%~^38^^^^^
-~05735~^~0500~^~Turkey, retail parts, wing, meat and skin, cooked, roasted~^~TURKEY,RTL PARTS,WING,MEAT & SKN,CKD,RSTD~^^^~Y~^~Bone and connective tissue 38%~^38^^^^^
-~05736~^~0500~^~Turkey, retail parts, drumstick, meat and skin, raw~^~TURKEY,RTL PARTS,DRUMSTK,MEAT & SKN,RAW~^^^^~Bone and connective tissue 33%~^33^^^^^
-~05737~^~0500~^~Turkey, retail parts, drumstick, meat and skin, cooked, roasted~^~TURKEY,RTL PARTS,DRUMSTK,MEAT & SKN,CKD,RSTD~^^^~Y~^~Bone and connective tissue 29%~^29^^^^^
-~05738~^~0500~^~Turkey, drumstick, from whole bird, meat only, raw~^~TURKEY,DRUMSTK,FROM WHL BIRD,MEAT ONLY,RAW~^^^^~Bone and connective tissue 38%, Skin and separable fat 6%~^44^^^^^
-~05739~^~0500~^~Turkey, drumstick, from whole bird, meat only, roasted~^~TURKEY,DRUMSTK,FROM WHL BIRD,MEAT ONLY,RSTD~^^^~Y~^~Bone and connective tissue 37%, Skin and separable fat 5%~^42^^^^^
-~05740~^~0500~^~Turkey, thigh, from whole bird, meat only, raw~^~TURKEY,THIGH,FROM WHL BIRD,MEAT ONLY,RAW~^^^^~Bone and connective tissue 20%, Skin and separable fat 10%~^30^^^^^
-~05741~^~0500~^~Turkey, thigh, from whole bird, meat only, roasted~^~TURKEY,THIGH,FROM WHL BIRD,MEAT ONLY,RSTD~^^^~Y~^~Bone and connective tissue 36%, Skin and separable fat 7%~^43^^^^^
-~05742~^~0500~^~Turkey, retail parts, thigh, meat and skin, raw~^~TURKEY,RTL PARTS,THIGH,MEAT & SKN,RAW~^^^^~Bone and connective tissue 19%~^19^^^^^
-~05743~^~0500~^~Turkey, retail parts, thigh, meat and skin, cooked, roasted~^~TURKEY,RTL PARTS,THIGH,MEAT & SKN,CKD,RSTD~^^^~Y~^~Bone and connective tissue 14%~^14^^^^^
-~05744~^~0500~^~Turkey, back, from whole bird, meat and skin, with added solution, raw~^~TURKEY,BACK,FROM WHL BIRD,MEAT & SKN,W/ ADDED SOLN,RAW~^^^^~Bone and connective tissue 47%~^47^^^^^
-~05745~^~0500~^~Turkey, back, from whole bird, meat and skin, with added solution, roasted~^~TURKEY,BACK,FROM WHL BIRD,MEAT & SKN,W/ ADDED SOLN,RSTD~^^^~Y~^~Bone and connective tissue 49%~^49^^^^^
-~05746~^~0500~^~Chicken, broiler or fryers, breast, skinless, boneless, meat only, cooked, braised~^~CHICkN,BROILR OR FRYRS,BRST,SKNLSS,BNLESS,MEAT ONLY,CKD,BRSD~^^^^^0^^^^^
-~05747~^~0500~^~Chicken, broiler or fryers, breast, skinless, boneless, meat only, cooked, grilled~^~CHCKN,BROLR OR FRYRS,BRST,SKNLSS,BNLESS,MEAT ONLY,CKD,GRILLD~^^^^^0^^^^^
-~05748~^~0500~^~Chicken, broiler or fryers, breast, skinless, boneless, meat only, with added solution, cooked, braised~^~CKN,BRLER OR FRYERS,BRST,SKNLS,BNLS,MT ONLY,W ADDED SLN,BRSD~^^^^^0^^^^^
-~05749~^~0500~^~Chicken, broiler or fryers, breast, skinless, boneless, meat only, with added solution, cooked, grilled~^~CKN,BRLER/FRYERS,BRST,SKNLS,BNLS,MT ONLY,W ADDED SLN,GRILLED~^^^^^0^^^^^
-~06001~^~0600~^~Soup, cream of asparagus, canned, condensed~^~SOUP,CRM OF ASPARAGUS,CND,COND~^^^~Y~^^0^^6.25^3.90^8.80^3.90
-~06002~^~0600~^~Soup, black bean, canned, condensed~^~SOUP,BLACK BEAN,CND,COND~^^^^^0^^6.25^3.70^8.90^4.00
-~06004~^~0600~^~Soup, bean with pork, canned, condensed~^~SOUP,BEAN W/ PORK,CND,COND~^^^~Y~^^0^^6.25^3.70^8.90^4.00
-~06006~^~0600~^~Soup, bean with frankfurters, canned, condensed~^~SOUP,BEAN W/ FRANKFURTERS,CND,COND~^^^^^0^^6.25^3.70^8.90^4.00
-~06007~^~0600~^~Soup, bean with ham, canned, chunky, ready-to-serve~^~SOUP,BEAN W/ HAM,CND,CHUNKY,RTS~^^^^^0^^6.25^3.70^8.90^4.00
-~06008~^~0600~^~Soup, beef broth or bouillon canned, ready-to-serve~^~SOUP,BF BROTH OR BOUILLON CND,RTS~^^^~Y~^^0^^6.25^4.00^9.00^4.00
-~06009~^~0600~^~Soup, beef noodle, canned, condensed~^~SOUP,BF NOODLE,CND,COND~^^^~Y~^^0^^6.25^4.10^8.90^4.10
-~06010~^~0600~^~Soup, cream of celery, canned, condensed~^~SOUP,CRM OF CELERY,CND,COND~^^^~Y~^^0^^6.25^3.90^8.80^3.90
-~06011~^~0600~^~Soup, cheese, canned, condensed~^~SOUP,CHS,CND,COND~^^^~Y~^^0^^6.25^4.10^8.80^3.90
-~06013~^~0600~^~Soup, chicken broth, canned, condensed~^~SOUP,CHICK BROTH,CND,COND~^^^~Y~^^0^^6.25^4.20^9.00^4.00
-~06015~^~0600~^~Soup, chicken, canned, chunky, ready-to-serve~^~SOUP,CHICK,CND,CHUNKY,RTS~^^^~Y~^^0^^6.25^4.10^8.80^3.90
-~06016~^~0600~^~Soup, cream of chicken, canned, condensed~^~SOUP,CRM OF CHICK,CND,COND~^^^~Y~^^0^^6.25^4.00^9.00^4.00
-~06017~^~0600~^~Soup, chicken gumbo, canned, condensed~^~SOUP,CHICK GUMBO,CND,COND~^^^^^0^^6.25^3.80^9.00^4.00
-~06018~^~0600~^~Soup, chunky chicken noodle, canned, ready-to-serve~^~SOUP,CHUNKY CHICK NOODLE,CND,RTS~^^^~Y~^^0^^6.25^4.00^9.00^4.00
-~06019~^~0600~^~Soup, chicken noodle, canned, condensed~^~SOUP,CHICK NOODLE,CND,COND~^^^~Y~^^0^^6.25^4.00^9.00^4.00
-~06022~^~0600~^~Soup, chicken rice, canned, chunky, ready-to-serve~^~SOUP,CHICK RICE,CND,CHUNKY,RTS~^^^~Y~^^0^^6.25^3.80^9.00^4.00
-~06023~^~0600~^~Soup, chicken with rice, canned, condensed~^~SOUP,CHICK W/ RICE,CND,COND~^^^~Y~^^0^^6.25^4.00^9.00^4.00
-~06024~^~0600~^~Soup, chicken and vegetable, canned, ready-to-serve~^~SOUP,CHICK & VEG,CND,RTS~^^^~Y~^^0^^6.25^4.10^8.80^3.90
-~06025~^~0600~^~Soup, chicken vegetable, canned, condensed~^~SOUP,CHICK VEG,CND,COND~^^^~Y~^^0^^6.25^4.10^8.80^3.90
-~06026~^~0600~^~Soup, chili beef, canned, condensed~^~SOUP,CHILI BF,CND,COND~^^^^^0^^6.25^3.70^8.90^4.00
-~06027~^~0600~^~Soup, clam chowder, manhattan style, canned, chunky, ready-to-serve~^~SOUP,CLAM CHOWDER,MANHATTAN STYLE,CND,CHUNKY,RTS~^^^~Y~^^0^^6.25^3.80^9.00^4.00
-~06028~^~0600~^~Soup, clam chowder, manhattan, canned, condensed~^~SOUP,CLAM CHOWDER,MANHATTAN,CND,COND~^^^^^0^^6.25^3.80^9.00^4.00
-~06030~^~0600~^~Soup, clam chowder, new england, canned, condensed~^~SOUP,CLAM CHOWDER,NEW ENGLAND,CND,COND~^^^~Y~^^0^^6.25^4.30^8.90^3.90
-~06032~^~0600~^~Soup, beef broth bouillon and consomme, canned, condensed~^~SOUP,BF BROTH BOUILLON & CONSOMME,CND,COND~^^^^^0^^6.25^4.00^9.00^4.00
-~06037~^~0600~^~Soup, lentil with ham, canned, ready-to-serve~^~SOUP,LENTIL W/HAM,CND,RTS~^^^^^0^^6.25^3.70^8.90^4.00
-~06039~^~0600~^~Soup, minestrone, canned, chunky, ready-to-serve~^~SOUP,MINESTRONE,CND,CHUNKY,RTS~^^^~Y~^^0^^6.25^3.70^8.90^4.00
-~06040~^~0600~^~Soup, minestrone, canned, condensed~^~SOUP,MINESTRONE,CND,COND~^^^~Y~^^0^^6.25^3.70^8.90^4.00
-~06042~^~0600~^~Soup, mushroom barley, canned, condensed~^~SOUP,MUSHROOM BARLEY,CND,COND~^^^^^0^^6.25^3.80^9.00^4.00
-~06043~^~0600~^~Soup, cream of mushroom, canned, condensed~^~SOUP,CRM OF MUSHROOM,CND,COND~^^^~Y~^^0^^6.25^3.90^8.80^4.00
-~06044~^~0600~^~Soup, mushroom with beef stock, canned, condensed~^~SOUP,MUSHROOM W/ BF STOCK,CND,COND~^^^~Y~^^0^^6.25^3.80^9.00^4.00
-~06045~^~0600~^~Soup, onion, canned, condensed~^~SOUP,ONION,CND,COND~^^^~Y~^^0^^6.25^2.50^8.50^4.00
-~06046~^~0600~^~Soup, cream of onion, canned, condensed~^~SOUP,CRM OF ONION,CND,COND~^^^~Y~^^0^^6.25^3.90^8.80^3.90
-~06048~^~0600~^~Soup, oyster stew, canned, condensed~^~SOUP,OYSTER STEW,CND,COND~^^^^^0^^6.25^4.30^8.90^3.90
-~06049~^~0600~^~Soup, pea, green, canned, condensed~^~SOUP,PEA,GRN,CND,COND~^^^~Y~^^0^^6.25^3.70^8.90^4.00
-~06050~^~0600~^~Soup, pea, split with ham, canned, chunky, ready-to-serve~^~SOUP,PEA,SPLIT W/HAM,CND,CHUNKY,RTS~^^^~Y~^^0^^6.25^3.70^8.90^4.00
-~06051~^~0600~^~Soup, pea, split with ham, canned, condensed~^~SOUP,PEA,SPLIT W/ HAM,CND,COND~^^^^^0^^6.25^3.70^8.90^4.00
-~06053~^~0600~^~Soup, cream of potato, canned, condensed~^~SOUP,CRM OF POTATO,CND,COND~^^^~Y~^^0^^6.25^3.90^8.80^4.00
-~06056~^~0600~^~Soup, cream of shrimp, canned, condensed~^~SOUP,CRM OF SHRIMP,CND,COND~^^^^^0^^6.25^4.30^8.90^3.90
-~06061~^~0600~^~Soup, tomato beef with noodle, canned, condensed~^~SOUP,TOMATO BF W/ NOODLE,CND,COND~^^^^^0^^6.25^3.80^9.00^4.00
-~06062~^~0600~^~CAMPBELL'S, Chicken Noodle Soup, condensed~^~CAMPBELL'S,CHICK NOODLE SOUP,COND~^^~Campbell Soup Co.~^^^0^^^^^
-~06063~^~0600~^~Soup, tomato rice, canned, condensed~^~SOUP,TOMATO RICE,CND,COND~^^^~Y~^^0^^6.25^3.70^8.90^4.00
-~06064~^~0600~^~Soup, turkey, chunky, canned, ready-to-serve~^~SOUP,TURKEY,CHUNKY,CND,RTS~^^^^^0^^6.25^4.10^8.80^3.90
-~06067~^~0600~^~Soup, chunky vegetable, canned, ready-to-serve~^~SOUP,CHUNKY VEG,CND,RTS~^^^~Y~^^0^^6.25^4.00^9.00^4.00
-~06068~^~0600~^~Soup, vegetarian vegetable, canned, condensed~^~SOUP,VEGETARIAN VEG,CND,COND~^^^~Y~^^0^^6.25^2.50^8.50^4.00
-~06070~^~0600~^~Soup, chunky beef, canned, ready-to-serve~^~SOUP,CHUNKY BF,CND,RTS~^^^~Y~^^0^^6.25^4.00^9.00^4.00
-~06071~^~0600~^~Soup, vegetable beef, canned, condensed~^~SOUP,VEG BF,CND,COND~^^^~Y~^^0^^6.25^3.80^9.00^4.00
-~06072~^~0600~^~Soup, vegetable with beef broth, canned, condensed~^~SOUP,VEG W/ BF BROTH,CND,COND~^^^~Y~^^0^^6.25^3.80^9.00^4.00
-~06075~^~0600~^~Soup, beef broth or bouillon, powder, dry~^~SOUP,BF BROTH OR BOUILLON,PDR,DRY~^^^~Y~^^0^^6.25^4.00^9.00^4.00
-~06076~^~0600~^~Soup, beef broth, cubed, dry~^~SOUP,BEEF BROTH,CUBED,DRY~^^^^^0^^6.25^4.00^9.00^4.00
-~06080~^~0600~^~Soup, chicken broth or bouillon, dry~^~SOUP,CHICK BROTH OR BOUILLON,DRY~^^^~Y~^^0^^6.25^4.20^9.00^4.00
-~06081~^~0600~^~Soup, chicken broth cubes, dry~^~SOUP,CHICK BROTH CUBES,DRY~^^^^^0^^6.25^4.20^9.00^4.00
-~06094~^~0600~^~Soup, onion, dry, mix~^~SOUP,ONION,DRY,MIX~^^^~Y~^^0^^6.25^4.00^9.00^4.00
-~06101~^~0600~^~Soup, cream of vegetable, dry, powder~^~SOUP,CRM OF VEG,DRY,PDR~^^^~Y~^^0^^6.25^3.90^8.80^3.90
-~06112~^~0600~^~Sauce, teriyaki, ready-to-serve~^~SAUCE,TERIYAKI,RTS~^^^~Y~^^0^^6.25^4.00^9.00^4.00
-~06114~^~0600~^~Gravy, au jus, canned~^~GRAVY,AU JUS,CANNED~^^^^^0^^6.25^3.50^9.00^3.90
-~06115~^~0600~^~Gravy, au jus, dry~^~GRAVY,AU JUS,DRY~^^^^^0^^^4.00^9.00^4.00
-~06116~^~0600~^~Gravy, beef, canned, ready-to-serve~^~GRAVY,BF,CND,RTS~^^^~Y~^^0^^6.25^3.50^9.00^3.90
-~06118~^~0600~^~Gravy, brown, dry~^~GRAVY,BROWN,DRY~^^^^^0^^^4.00^9.00^4.00
-~06119~^~0600~^~Gravy, chicken, canned or bottled, ready-to-serve~^~GRVY, CHCKN, CNND BTTLD, RTS~^^^~Y~^^0^^^^^
-~06120~^~0600~^~Gravy, chicken, dry~^~GRAVY,CHICKEN,DRY~^^^^^0^^^4.00^9.00^4.00
-~06121~^~0600~^~Gravy, mushroom, canned~^~GRAVY,MUSHROOM,CANNED~^^^^^0^^6.25^3.40^8.90^4.00
-~06122~^~0600~^~Gravy, mushroom, dry, powder~^~GRAVY,MUSHROOM,DRY,PDR~^^^~Y~^^0^^6.25^3.40^8.90^4.00
-~06123~^~0600~^~Gravy, onion, dry, mix~^~GRAVY,ONION,DRY,MIX~^^^^^0^^6.25^3.50^9.00^3.90
-~06124~^~0600~^~Gravy, pork, dry, powder~^~GRAVY,PORK,DRY,PDR~^^^~Y~^^0^^^4.00^9.00^4.00
-~06125~^~0600~^~Gravy, turkey, canned, ready-to-serve~^~GRAVY,TURKEY,CND,RTS~^^^~Y~^^0^^6.25^3.40^8.90^4.00
-~06126~^~0600~^~Gravy, turkey, dry~^~GRAVY,TURKEY,DRY~^^^^^0^^^4.00^9.00^4.00
-~06127~^~0600~^~Gravy, unspecified type, dry~^~GRAVY,UNSPEC TYPE,DRY~^^^^^0^^6.25^3.40^8.90^4.00
-~06128~^~0600~^~Soup, chicken noodle, dry, mix~^~SOUP,CHICK NOODLE,DRY,MIX~^^^~Y~^^0^^6.25^4.10^8.90^4.10
-~06142~^~0600~^~Sauce, sofrito, prepared from recipe~^~SAUCE,SOFRITO,PREP FROM RECIPE~^^^^^0^^^^^
-~06147~^~0600~^~Soup, beef mushroom, canned, condensed~^~SOUP,BF MUSHROOM,CND,COND~^^^^^0^^6.25^3.80^9.00^4.00
-~06149~^~0600~^~Soup, chicken mushroom, canned, condensed~^~SOUP,CHICK MUSHROOM,CND,COND~^^^~Y~^^0^^6.25^4.00^9.00^4.20
-~06150~^~0600~^~Sauce, barbecue~^~SAUCE,BARBECUE~^^^~Y~^^0^^6.25^^^
-~06151~^~0600~^~Sauce, plum, ready-to-serve~^~SAUCE,PLUM,READY-TO-SERVE~^^^^^0^^6.25^4.00^9.00^4.00
-~06152~^~0600~^~Sauce, pizza, canned, ready-to-serve~^~SAUCE,PIZZA,CND,RTS~^^^^^0^^^4.00^9.00^4.00
-~06158~^~0600~^~Soup, tomato bisque, canned, condensed~^~SOUP,TOMATO BISQUE,CND,COND~^^^^^0^^6.25^3.90^8.80^3.90
-~06159~^~0600~^~Soup, tomato, canned, condensed~^~SOUP,TOMATO,CND,COND~^^^~Y~^^0^^6.25^2.80^8.70^3.80
-~06164~^~0600~^~Sauce, salsa, ready-to-serve~^~SAUCE,SALSA,RTS~^^^~Y~^^0^^6.25^2.44^8.87^3.57
-~06166~^~0600~^~Sauce, homemade, white, medium~^~SAUCE,HOMEMADE,WHITE,MED~^^^~Y~^^0^^6.25^4.20^8.70^3.90
-~06167~^~0600~^~Sauce, homemade, white, thick~^~SAUCE,HOMEMADE,WHITE,THICK~^^^~Y~^^0^^6.25^4.20^8.70^3.90
-~06168~^~0600~^~Sauce, ready-to-serve, pepper or hot~^~SAUCE,RTS,PEPPER OR HOT~^^^^^0^^6.25^2.44^8.37^3.57
-~06169~^~0600~^~Sauce, ready-to-serve, pepper, TABASCO~^~SAUCE,RTS,PEPPER,TABASCO~^^^~Y~^^0^^6.25^2.44^8.37^3.57
-~06170~^~0600~^~Soup, stock, beef, home-prepared~^~SOUP,STOCK,BEEF,HOME-PREPARED~^^^~Y~^^0^^^^^
-~06172~^~0600~^~Soup, stock, chicken, home-prepared~^~SOUP,STOCK,CHICK,HOME-PREPARED~^^^~Y~^^0^^^^^
-~06174~^~0600~^~Soup, stock, fish, home-prepared~^~SOUP,STOCK,FISH,HOME-PREPARED~^^^~Y~^^0^^6.25^4.00^9.00^4.00
-~06175~^~0600~^~Sauce, hoisin, ready-to-serve~^~SAUCE,HOISIN,RTS~^^^~Y~^^0^^6.25^4.00^9.00^4.00
-~06176~^~0600~^~Sauce, oyster, ready-to-serve~^~SAUCE,OYSTER,RTS~^^^~Y~^^0^^6.25^4.00^9.00^4.00
-~06177~^~0600~^~Soup, minestrone, canned, reduced sodium, ready-to-serve~^~SOUP,MINESTRONE,CND,RED NA,RTS~^^^~Y~^^0^^^^^
-~06179~^~0600~^~Sauce, fish, ready-to-serve~^~SAUCE,FISH,READY-TO-SERVE~^^^~Y~^^0^^6.25^4.00^9.00^4.00
-~06180~^~0600~^~Soup, shark fin, restaurant-prepared~^~SOUP,SHARK FIN,REST-PREP~^^^^^0^^6.25^4.00^9.00^4.00
-~06182~^~0600~^~Soup, cream of mushroom, canned, condensed, reduced sodium~^~SOUP,CRM OF MUSHROOM,CND,COND,RED NA~^^^~Y~^^0^^^^^
-~06183~^~0600~^~Soup, chicken broth, less/reduced sodium, ready to serve~^~SOUP,CHICK BROTH,LESS/REDUCED NA,READY TO SERVE~^^^~Y~^^0^^^^^
-~06188~^~0600~^~Soup, beef broth, less/reduced sodium, ready to serve~^~SOUP,BF BROTH,LESS/REDUCED NA,READY TO SERVE~^^^~Y~^^0^^^^^
-~06189~^~0600~^~Sauce, teriyaki, ready-to-serve, reduced sodium~^~SAUCE,TERIYAKI,RTS,RED NA~^^^~Y~^^0^^6.25^4.00^9.00^4.00
-~06190~^~0600~^~Soup, bean & ham, canned, reduced sodium, prepared with water or ready-to-serve~^~SOUP,BEAN&HAM,CND,RED NA,PREP W/H2O OR RTS~^^^~Y~^^0^^6.25^4.00^9.00^4.00
-~06192~^~0600~^~Split pea soup, canned, reduced sodium, prepared with water or ready-to serve~^~SPLIT PEA SOUP,CND,RED NA,PREP W/ H2O OR READY-TO SERVE~^^^~Y~^^0^^^^^
-~06193~^~0600~^~Split pea with ham soup, canned, reduced sodium, prepared with water or ready-to-serve~^~SPLIT PEA W/ HAM SOUP,CND,RED NA,PREP W/ H2O OR RTS~^^^~Y~^^0^^^^^
-~06194~^~0600~^~Soup, chicken broth, ready-to-serve~^~SOUP,CHICK BROTH,RTS~^^^~Y~^^0^^^4.00^9.00^4.00
-~06201~^~0600~^~Soup, cream of asparagus, canned, prepared with equal volume milk~^~SOUP,CRM OF ASPARAGUS,CND,PREP W/ EQ VOLUME MILK~^^^^^0^^6.25^3.90^8.80^3.90
-~06208~^~0600~^~Soup, chicken vegetable with potato and cheese, chunky, ready-to-serve~^~SOUP,CHICK VEG W/POTATO&CHS,CHUNKY,RTS~^^^~Y~^^0^^^^^
-~06210~^~0600~^~Soup, cream of celery, canned, prepared with equal volume milk~^~SOUP,CRM OF CELERY,CND,PREP W/ EQ VOLUME MILK~^^^^^0^^6.25^3.90^8.80^3.90
-~06211~^~0600~^~Soup, cheese, canned, prepared with equal volume milk~^~SOUP,CHS,CND,PREP W/ EQ VOLUME MILK~^^^^^0^^6.25^4.10^8.80^3.90
-~06216~^~0600~^~Soup, cream of chicken, canned, prepared with equal volume milk~^~SOUP,CRM OF CHICK,CND,PREP W/ EQ VOLUME MILK~^^^^^0^^6.25^4.30^8.90^3.90
-~06217~^~0600~^~Soup, vegetable, canned, low sodium, condensed~^~SOUP,VEG,CND,LO NA,COND~^^^~Y~^^0^^^^^
-~06230~^~0600~^~Soup, clam chowder, new england, canned, prepared with equal volume low fat (2%) milk~^~SOUP,CLAM CHOWDER,NEW ENG,CND,PREP W/ EQ VLM LOFAT (2%) MILK~^^^~Y~^^0^^^^^
-~06243~^~0600~^~Soup, cream of mushroom, canned, prepared with equal volume low fat (2%) milk~^~SOUP,CRM OF MUSHROOM,CND,PREP W/ EQ VOLUME LOFAT (2%) MILK~^^^~Y~^^0^^^^^
-~06246~^~0600~^~Soup, cream of onion, canned, prepared with equal volume milk~^~SOUP,CRM OF ONION,CND,PREP W/ EQ VOLUME MILK~^^^^^0^^6.25^3.90^8.80^3.90
-~06248~^~0600~^~Soup, oyster stew, canned, prepared with equal volume milk~^~SOUP,OYSTER STEW,CND,PREP W/ EQ VOLUME MILK~^^^^^0^^6.25^4.30^8.90^3.90
-~06249~^~0600~^~Soup, pea, green, canned, prepared with equal volume milk~^~SOUP,PEA,GRN,CND,PREP W/ EQ VOLUME MILK~^^^^^0^^6.25^3.70^8.90^4.00
-~06253~^~0600~^~Soup, cream of potato, canned, prepared with equal volume milk~^~SOUP,CRM OF POTATO,CND,PREP W/ EQ VOLUME MILK~^^^^^0^^6.25^3.90^8.80^4.00
-~06256~^~0600~^~Soup, cream of shrimp, canned, prepared with equal volume low fat (2%) milk~^~SOUP,CRM OF SHRIMP,CND,PREP W/ EQ VOLUME LOFAT (2%) MILK~^^^~Y~^^0^^6.25^4.30^8.90^3.90
-~06264~^~0600~^~Sauce, white, thin, prepared-from-recipe, with butter~^~SAUCE,WHITE,THIN,PREPARED-FROM-RECIPE,W/ BUTTER~^~NFSMI Recipe No. G-08~^^^^0^^^^^
-~06285~^~0600~^~Sauce, sweet and sour, prepared-from-recipe~^~SAUCE,SWT & SOUR,PREPARED-FROM-RECIPE~^~NFSMI Recipe No. G-05~^^^^0^^^^^
-~06307~^~0600~^~Sauce, barbecue, KRAFT, original~^~SAUCE,BARBECUE,KRAFT,ORIGINAL~^^~Kraft Foods, Inc.~^^^0^^^^^
-~06314~^~0600~^~Soup, HEALTHY CHOICE Chicken Noodle Soup, canned~^~SOUP,HEALTHY CHOIC CHICK NOODLE SOUP,CND~^^~ConAgra, Inc.~^^^0^^^^^
-~06315~^~0600~^~Soup, HEALTHY CHOICE Chicken and Rice Soup, canned~^~SOUP,HEALTHY CHOIC CHICK & RICE SOUP,CND~^^~ConAgra, Inc.~^^^0^^^^^
-~06316~^~0600~^~Soup, HEALTHY CHOICE Garden Vegetable Soup, canned~^~SOUP,HEALTHY CHOIC GARDEN VEG SOUP,CND~^^~ConAgra, Inc.~^^^0^^^^^
-~06338~^~0600~^~CAMPBELL'S, Cream of Mushroom Soup, condensed~^~CAMPBELL'S,CRM OF MUSHROOM SOUP,COND~^^~Campbell Soup Co.~^^^0^^^^^
-~06358~^~0600~^~Soup, tomato bisque, canned, prepared with equal volume milk~^~SOUP,TOMATO BISQUE,CND,PREP W/ EQ VOLUME MILK~^^^^^0^^6.25^3.90^8.80^3.90
-~06359~^~0600~^~Soup, tomato, canned, prepared with equal volume low fat (2%) milk~^~SOUP,TOMATO,CND,PREP W/ EQ VOLUME LOFAT (2%) MILK~^^^~Y~^^0^^6.25^2.80^8.70^3.80
-~06377~^~0600~^~CAMPBELL'S, Tomato Soup, condensed~^~CAMPBELL'S,TOMATO SOUP,COND~^^~Campbell Soup Co.~^^^0^^^^^
-~06395~^~0600~^~CAMPBELL'S CHUNKY, Classic Chicken Noodle Soup~^~CAMPBELL'S CHUNKY,CLASSIC CHICK NOODLE SOUP~^^~Campbell Soup Co.~^^^0^^^^^
-~06401~^~0600~^~Soup, cream of asparagus, canned, prepared with equal volume water~^~SOUP,CRM OF ASPARAGUS,CND,PREP W/ EQ VOLUME H2O~^^^^^0^^6.25^3.90^8.80^3.90
-~06402~^~0600~^~Soup, black bean, canned, prepared with equal volume water~^~SOUP,BLACK BEAN,CND,PREP W/ EQ VOLUME H2O~^^^~Y~^^0^^^^^
-~06404~^~0600~^~Soup, bean with pork, canned, prepared with equal volume water~^~SOUP,BEAN W/ PORK,CND,PREP W/ EQ VOLUME H2O~^^^~Y~^^0^^6.25^3.70^8.90^4.00
-~06406~^~0600~^~Soup, bean with frankfurters, canned, prepared with equal volume water~^~SOUP,BEAN W/ FRANKFURTERS,CND,PREP W/ EQ VOLUME H2O~^^^^^0^^6.25^3.70^8.90^4.00
-~06409~^~0600~^~Soup, beef noodle, canned, prepared with equal volume water~^~SOUP,BF NOODLE,CND,PREP W/ EQ VOLUME H2O~^^^~Y~^^0^^6.25^4.10^8.90^4.10
-~06410~^~0600~^~Soup, cream of celery, canned, prepared with equal volume water~^~SOUP,CRM OF CELERY,CND,PREP W/ EQ VOLUME H2O~^^^^^0^^6.25^3.90^8.80^3.90
-~06411~^~0600~^~Soup, cheese, canned, prepared with equal volume water~^~SOUP,CHS,CND,PREP W/ EQ VOLUME H2O~^^^^^0^^6.25^4.10^8.80^3.90
-~06413~^~0600~^~Soup, chicken broth, canned, prepared with equal volume water~^~SOUP,CHICK BROTH,CND,PREP W/ EQ VOLUME H2O~^^^~Y~^^0^^6.25^4.20^9.00^4.00
-~06415~^~0600~^~CAMPBELL'S CHUNKY, Hearty Beef Barley Soup~^~CAMPBELL'S CHUNKY,HEARTY BF BARLEY SOUP~^^~Campbell Soup Co.~^^^0^^^^^
-~06416~^~0600~^~Soup, cream of chicken, canned, prepared with equal volume water~^~SOUP,CRM OF CHICK,CND,PREP W/ EQ VOLUME H2O~^^^^^0^^6.25^4.30^8.90^3.90
-~06417~^~0600~^~Soup, chicken gumbo, canned, prepared with equal volume water~^~SOUP,CHICK GUMBO,CND,PREP W/ EQ VOLUME H2O~^^^~Y~^^0^^6.25^3.80^9.00^4.00
-~06419~^~0600~^~Soup, chicken noodle, canned, prepared with equal volume water~^~SOUP,CHICK NOODLE,CND,PREP W/ EQ VOLUME H2O~^^^~Y~^^0^^6.25^4.10^8.90^4.10
-~06423~^~0600~^~Soup, chicken with rice, canned, prepared with equal volume water~^~SOUP,CHICK W/ RICE,CND,PREP W/ EQ VOLUME H2O~^^^~Y~^^0^^6.25^4.00^9.00^4.00
-~06426~^~0600~^~Soup, chili beef, canned, prepared with equal volume water~^~SOUP,CHILI BF,CND,PREP W/ EQ VOLUME H2O~^^^~Y~^^0^^6.25^3.70^8.90^4.00
-~06428~^~0600~^~Soup, clam chowder, manhattan, canned, prepared with equal volume water~^~SOUP,CLAM CHOWDER,MANHATTAN,CND,PREP W/EQ VOLUME H2O~^^^~Y~^^0^^6.25^3.80^9.00^4.00
-~06430~^~0600~^~Soup, clam chowder, new england, canned, prepared with equal volume water~^~SOUP,CLAM CHOWDER,NEW ENGLAND,CND,PREP W/ EQ VOLUME H2O~^^^~Y~^^0^^^^^
-~06431~^~0600~^~CAMPBELL'S CHUNKY, New England Clam Chowder~^~CAMPBELL'S CHUNKY,NEW ENGLAND CLAM CHOWDER~^^~Campbell Soup Co.~^^^0^^^^^
-~06432~^~0600~^~Soup, beef broth, bouillon, consomme, prepared with equal volume water~^~SOUP,BF BROTH,BOUILLON,CONSOMME,PREP W/ EQ VOLUME H2O~^^^^^0^^6.25^4.00^9.00^4.00
-~06434~^~0600~^~CAMPBELL'S CHUNKY, Old Fashioned Vegetable Beef Soup~^~CAMPBELL'S CHUNKY,OLD FASHIONED VEG BF SOUP~^^~Campbell Soup Co.~^^^0^^^^^
-~06440~^~0600~^~Soup, minestrone, canned, prepared with equal volume water~^~SOUP,MINESTRONE,CND,PREP W/ EQ VOLUME H2O~^^^^^0^^6.25^3.70^8.90^4.00
-~06442~^~0600~^~Soup, mushroom barley, canned, prepared with equal volume water~^~SOUP,MUSHROOM BARLEY,CND,PREP W/ EQ VOLUME H2O~^^^^^0^^6.25^3.60^8.90^4.00
-~06443~^~0600~^~Soup, cream of mushroom, canned, prepared with equal volume water~^~SOUP,CRM OF MUSHROOM,CND,PREP W/ EQ VOLUME H2O~^^^~Y~^^0^^6.25^3.90^8.80^4.00
-~06444~^~0600~^~Soup, mushroom with beef stock, canned, prepared with equal volume water~^~SOUP,MUSHROOM W/ BF STOCK,CND,PREP W/ EQ VOLUME H2O~^^^^^0^^6.25^4.00^9.00^4.00
-~06446~^~0600~^~Soup, cream of onion, canned, prepared with equal volume water~^~SOUP,CRM OF ONION,CND,PREP W/ EQ VOLUME H2O~^^^^^0^^6.25^3.90^8.80^3.90
-~06448~^~0600~^~Soup, oyster stew, canned, prepared with equal volume water~^~SOUP,OYSTER STEW,CND,PREP W/ EQ VOLUME H2O~^^^^^0^^6.25^4.30^8.90^3.90
-~06449~^~0600~^~Soup, pea, green, canned, prepared with equal volume water~^~SOUP,PEA,GRN,CND,PREP W/ EQ VOLUME H2O~^^^~Y~^^0^^6.25^3.70^8.90^4.00
-~06451~^~0600~^~Soup, pea, split with ham, canned, prepared with equal volume water~^~SOUP,PEA,SPLIT W/ HAM,CND,PREP W/ EQ VOLUME H2O~^^^^^0^^6.25^3.70^8.90^4.00
-~06453~^~0600~^~Soup, cream of potato, canned, prepared with equal volume water~^~SOUP,CRM OF POTATO,CND,PREP W/ EQ VOLUME H2O~^^^^^0^^6.25^3.90^8.80^4.00
-~06456~^~0600~^~Soup, cream of shrimp, canned, prepared with equal volume water~^~SOUP,CRM OF SHRIMP,CND,PREP W/ EQ VOLUME H2O~^^^~Y~^^0^^6.25^4.30^8.90^3.90
-~06461~^~0600~^~Soup, tomato beef with noodle, canned, prepared with equal volume water~^~SOUP,TOMATO BF W/ NOODLE,CND,PREP W/ EQ VOLUME H2O~^^^~Y~^^0^^6.25^3.80^9.00^4.00
-~06463~^~0600~^~Soup, tomato rice, canned, prepared with equal volume water~^~SOUP,TOMATO RICE,CND,PREP W/ EQ VOLUME H2O~^^^~Y~^^0^^6.25^3.70^8.90^4.00
-~06465~^~0600~^~Soup, turkey noodle, canned, prepared with equal volume water~^~SOUP,TURKEY NOODLE,CND,PREP W/ EQ VOLUME H2O~^^^^^0^^6.25^4.10^8.90^4.10
-~06466~^~0600~^~Soup, turkey vegetable, canned, prepared with equal volume water~^~SOUP,TURKEY VEG,CND,PREP W/ EQ VOLUME H2O~^^^^^0^^6.25^3.80^9.00^4.00
-~06468~^~0600~^~Soup, vegetarian vegetable, canned, prepared with equal volume water~^~SOUP,VEGETARIAN VEG,CND,PREP W/ EQ VOLUME H2O~^^^~Y~^^0^^6.25^2.50^8.50^4.00
-~06471~^~0600~^~Soup, vegetable beef, canned, prepared with equal volume water~^~SOUP,VEG BF,CND,PREP W/ EQ VOLUME H2O~^^^~Y~^^0^^6.25^3.80^9.00^4.00
-~06472~^~0600~^~Soup, vegetable with beef broth, canned, prepared with equal volume water~^~SOUP,VEG W/ BF BROTH,CND,PREP W/ EQ VOLUME H2O~^^^~Y~^^0^^6.25^3.80^9.00^4.00
-~06475~^~0600~^~Soup, beef broth or bouillon, powder, prepared with water~^~SOUP,BF BROTH OR BOUILLON,PDR,PREP W/H2O~^^^~Y~^^0^^6.25^4.00^9.00^4.00
-~06476~^~0600~^~Soup, beef broth, cubed, prepared with water~^~SOUP,BF BROTH,CUBED,PREP W/H2O~^^^^^0^^6.25^4.00^8.90^4.00
-~06480~^~0600~^~Soup, chicken broth or bouillon, dry, prepared with water~^~SOUP,CHICK BROTH OR BOUILLON,DRY,PREP W/ H2O~^^^~Y~^^0^^6.25^4.20^9.00^4.00
-~06481~^~0600~^~Soup, chicken broth cubes, dry, prepared with water~^~SOUP,CHICK BROTH CUBES,DRY,PREP W/ H2O~^^^^^0^^6.25^4.20^9.00^4.00
-~06483~^~0600~^~Soup, cream of chicken, dry, mix, prepared with water~^~SOUP,CRM OF CHICK,DRY,MIX,PREP W/ H2O~^^^~Y~^^0^^6.25^4.30^8.90^3.90
-~06494~^~0600~^~Soup, onion, dry, mix, prepared with water~^~SOUP,ONION,DRY,MIX,PREP W/ H2O~^^^~Y~^^0^^6.25^2.50^8.50^4.00
-~06498~^~0600~^~Soup, tomato, dry, mix, prepared with water~^~SOUP,TOMATO,DRY,MIX,PREP W/ H2O~^^^~Y~^^0^^6.25^2.80^8.70^3.80
-~06528~^~0600~^~Soup, chicken noodle, dry, mix, prepared with water~^~SOUP,CHICK NOODLE,DRY,MIX,PREP W/ H2O~^^^~Y~^^0^^6.25^4.10^8.90^4.10
-~06547~^~0600~^~Soup, beef mushroom, canned, prepared with equal volume water~^~SOUP,BF MUSHROOM,CND,PREP W/ EQ VOLUME H2O~^^^^^0^^6.25^3.80^9.00^4.00
-~06549~^~0600~^~Soup, chicken mushroom, canned, prepared with equal volume water~^~SOUP,CHICK MUSHROOM,CND,PREP W/ EQ VOLUME H2O~^^^^^0^^6.25^4.00^9.00^4.20
-~06558~^~0600~^~Soup, tomato bisque, canned, prepared with equal volume water~^~SOUP,TOMATO BISQUE,CND,PREP W/ EQ VOLUME H2O~^^^^^0^^6.25^3.90^8.80^3.90
-~06559~^~0600~^~Soup, tomato, canned, prepared with equal volume water, commercial~^~SOUP,TOMATO,CND,PREP W/EQ VOLUME H2O,COMM~^^^~Y~^^0^^6.25^2.80^8.70^3.80
-~06583~^~0600~^~Soup, ramen noodle, any flavor, dry~^~SOUP,RAMEN NOODLE,ANY FLAVOR,DRY~^^^~Y~^^0^^^4.00^9.00^4.00
-~06584~^~0600~^~Soup, broccoli cheese, canned, condensed, commercial~^~SOUP,BROCCOLI CHS,CND,COND,COMM~^^^~Y~^^0^^^^^
-~06611~^~0600~^~Soup, SWANSON, beef broth, lower sodium~^~SOUP,SWANSON,BF BROTH,LOWER NA~^^~Campbell Soup Co.~^^^0^^^^^
-~06615~^~0600~^~Soup, SWANSON, vegetable broth~^~SOUP,SWANSON,VEG BROTH~^^~Campbell Soup Co.~^^^0^^^^^
-~06618~^~0600~^~Sauce, peanut, made from coconut, water, sugar, peanuts~^~SAUCE,PNUT,MADE FROM COCNT,H2O,SUGAR,PNUTS~^^^~Y~^^0^^^4.00^9.00^4.00
-~06619~^~0600~^~SMART SOUP, Santa Fe Corn Chowder~^~SMART SOUP,SANTA FE CORN CHOWDER~^^~Smart Soup~^^^0^^6.25^^^
-~06620~^~0600~^~SMART SOUP, French Lentil~^~SMART SOUP,FRENCH LENTIL~^^~Smart Soup~^^^0^^6.25^^^
-~06621~^~0600~^~SMART SOUP, Greek Minestrone~^~SMART SOUP,GREEK MINESTRONE~^^~Smart Soup~^^^0^^6.25^^^
-~06622~^~0600~^~SMART SOUP, Indian Bean Masala~^~SMART SOUP,INDIAN BEAN MASALA~^^~Smart Soup~^^^0^^6.25^^^
-~06623~^~0600~^~SMART SOUP, Moroccan Chick Pea~^~SMART SOUP,MOROCCAN CHICK PEA~^^~Smart Soup~^^^0^^6.25^^^
-~06624~^~0600~^~SMART SOUP, Thai Coconut Curry~^~SMART SOUP,THAI COCNT CURRY~^^~Smart Soup~^^^0^^6.25^^^
-~06625~^~0600~^~SMART SOUP, Vietnamese Carrot Lemongrass~^~SMART SOUP,VIETNAMESE CARROT LEMONGRASS~^^~Smart Soup~^^^0^^6.25^^^
-~06626~^~0600~^~Sauce, pesto, ready-to-serve, refrigerated~^~SAUCE,PESTO,RTS,REFR~^^^^^0^^^^^
-~06627~^~0600~^~Sauce, pesto, ready-to-serve, shelf stable~^~SAUCE,PESTO,RTS,SHELF STABLE~^^^^^0^^^^^
-~06628~^~0600~^~Sauce, pesto, BUITONI, pesto with basil, ready-to-serve, refrigerated~^~SAUCE,PESTO,BUITONI,PESTO W/ BASIL,RTS,REFR~^^~Nestle USA, Inc.~^^^0^^^^^
-~06629~^~0600~^~Sauce, pesto, CLASSICO, basil pesto, ready-to-serve~^~SAUCE,PESTO,CLASSICO,BASIL PESTO,RTS~^^~Classico~^^^0^^^^^
-~06630~^~0600~^~Sauce, pesto, MEZZETTA, NAPA VALLEY BISTRO, basil pesto, ready-to-serve~^~SAUCE,PESTO,MEZZETTA,NAPA VALLEY BISTRO,BASIL PESTO,RTS~^^~Mezzetta~^^^0^^^^^
-~06631~^~0600~^~Sauce, hot chile, sriracha~^~SAUCE,HOT CHILE,SRIRACHA~^^^^^0^^^^^
-~06632~^~0600~^~Sauce, hot chile, sriracha, CHA! BY TEXAS PETE~^~SAUCE,HOT CHILE,SRIRACHA,CHA! BY TEXAS PETE~^^~TW Garner Food Company~^^^0^^^^^
-~06633~^~0600~^~Sauce, hot chile, sriracha, TUONG OT SRIRACHA~^~SAUCE,HOT CHILE,SRIRACHA,TUONG OT SRIRACHA~^^~Huy Fong Foods, Inc.~^^^0^^^^^
-~06700~^~0600~^~Soup, vegetable broth, ready to serve~^~SOUP,VEG BROTH,READY TO SERVE~^^^~Y~^^0^^^^^
-~06720~^~0600~^~Sauce, cheese sauce mix, dry~^~SAUCE,CHS SAU MIX,DRY~^^^^^0^^^^^
-~06725~^~0600~^~Soup, chicken corn chowder, chunky, ready-to-serve, single brand~^~SOUP,CHICK CORN CHOWDER,CHUNKY,RTS,SINGLE BRAND~^^^^^0^^^^^
-~06731~^~0600~^~Soup, bean with bacon, condensed, single brand~^~SOUP,BEAN W/BACON,COND,SINGLE BRAND~^^^^^0^^^^^
-~06742~^~0600~^~Soup, vegetable beef, microwavable, ready-to-serve, single brand~^~SOUP,VEG BF,MICROWAVABLE,RTS,SINGLE BRAND~^^^^^0^^^^^
-~06749~^~0600~^~Soup, beef and vegetables, canned, ready-to-serve~^~SOUP,BF & VEG,CND,RTS~^^^~Y~^^0^^6.25^4.00^9.00^4.00
-~06930~^~0600~^~Sauce, cheese, ready-to-serve~^~SAUCE,CHS,RTS~^^^^^0^^^^^
-~06931~^~0600~^~Sauce, pasta, spaghetti/marinara, ready-to-serve~^~SAUCE,PASTA,SPAGHETTI/MARINARA,RTS~^^^~Y~^^0^^^^^
-~06955~^~0600~^~Soup, cream of chicken, canned, condensed, reduced sodium~^~SOUP,CRM OF CHICK,CND,COND,RED NA~^^^~Y~^^0^^^^^
-~06956~^~0600~^~Soup, tomato, canned, condensed, reduced sodium~^~SOUP,TOMATO,CND,COND,RED NA~^^^~Y~^^0^^^^^
-~06957~^~0600~^~Gravy, brown instant, dry~^~GRAVY,BROWN INST,DRY~^^^~Y~^^0^^^^^
-~06958~^~0600~^~Gravy, instant beef, dry~^~GRAVY,INST BF,DRY~^^^~Y~^^0^^^^^
-~06959~^~0600~^~Gravy, instant turkey, dry~^~GRAVY,INST TURKEY,DRY~^^^~Y~^^0^^^^^
-~06960~^~0600~^~Sauce, alfredo mix, dry~^~SAUCE,ALFREDO MIX,DRY~^^^^^0^^^^^
-~06961~^~0600~^~Sauce, peppers, hot, chili, mature red, canned~^~SAUCE,PEPPERS,HOT,CHILI,MATURE RED,CND~^^^~Y~^^0^^^^^
-~06962~^~0600~^~Sauce, chili, peppers, hot, immature green, canned~^~SAUCE,CHILI,PEPPERS,HOT,IMMAT GRN,CND~^^^~Y~^^0^^^^^
-~06963~^~0600~^~Fish broth~^~FISH BROTH~^^^~Y~^^0^^^^^
-~06964~^~0600~^~Soup, tomato, low sodium, with water~^~SOUP,TOMATO,LO NA,W/H2O~^^^~Y~^^0^^^^^
-~06965~^~0600~^~Soup, pea, low sodium, prepared with equal volume water~^~SOUP,PEA,LO NA,PREP W/ EQ VOLUME H2O~^^^~Y~^^0^^^^^
-~06966~^~0600~^~Soup, chicken noodle, low sodium, canned, prepared with equal volume water~^~SOUP,CHICK NOODLE,LO NA,CND,PREP W/ EQ VOLUME H2O~^^^~Y~^^0^^^^^
-~06967~^~0600~^~Soup, vegetable soup, condensed, low sodium, prepared with equal volume water~^~SOUP,VEG SOUP,COND,LO NA,PREP W/ EQ VOLUME H2O~^^^~Y~^^0^^^^^
-~06968~^~0600~^~Soup, cream of mushroom, low sodium, ready-to-serve, canned~^~SOUP,CRM OF MUSHROOM,LO NA,RTS,CND~^^^~Y~^^0^^^^^
-~06969~^~0600~^~Potato soup, instant, dry mix~^~POTATO SOUP,INST,DRY MIX~^^^~Y~^^0^^^^^
-~06970~^~0600~^~Soup, chicken broth, low sodium, canned~^~SOUP,CHICK BROTH,LO NA,CND~^^^~Y~^^0^^^^^
-~06971~^~0600~^~Sauce, worcestershire~^~SAUCE,WORCESTERSHIRE~^^^~Y~^^0^^6.25^4.00^9.00^4.00
-~06972~^~0600~^~Sauce, tomato chili sauce, bottled, with salt~^~SAUCE,TOMATO CHILI SAU,BTLD,W/SALT~^^^~Y~^^0^^^^^
-~06974~^~0600~^~Soup, vegetable chicken, canned, prepared with water, low sodium~^~SOUP,VEG CHICK,CND,PREP W/ H2O,LO NA~^^^~Y~^^0^^^^^
-~06976~^~0600~^~Sauce, pasta, spaghetti/marinara, ready-to-serve, low sodium~^~SAUCE,PASTA,SPAGHETTI/MARINARA,RTS,LO NA~^^^~Y~^^0^^6.25^4.00^9.00^4.00
-~06977~^~0600~^~Gravy, meat or poultry, low sodium, prepared~^~GRAVY,MEAT OR POULTRY,LO NA,PREP~^^^~Y~^^0^^^^^
-~06978~^~0600~^~Soup, beef and mushroom, low sodium, chunk style~^~SOUP,BF & MUSHROOM,LO NA,CHUNK STYLE~^^^~Y~^^0^^^^^
-~06980~^~0600~^~Soup, beef stroganoff, canned, chunky style, ready-to-serve~^~SOUP,BF STROGANOFF,CND,CHUNKY STYLE,RTS~^^^~Y~^^0^^^^^
-~06981~^~0600~^~Soup, bouillon cubes and granules, low sodium, dry~^~SOUP,BOUILLON CUBES&GRANULES,LO NA,DRY~^^^~Y~^^0^^^^^
-~06982~^~0600~^~Soup, ramen noodle, beef flavor, dry~^~SOUP,RAMEN NOODLE,BF FLAVOR,DRY~^^^^^0^^^4.00^9.00^4.00
-~06983~^~0600~^~Soup, ramen noodle, chicken flavor, dry~^~SOUP,RAMEN NOODLE,CHICK FLAVOR,DRY~^^^^^0^^^4.00^9.00^4.00
-~06985~^~0600~^~Gravy, HEINZ Home Style, savory beef~^~GRAVY,HEINZ HOME STYLE,SAVORY BF~^^~H.J. Heinz, Co.~^^^0^^6.25^4.00^9.00^4.00
-~06999~^~0600~^~Gravy, CAMPBELL'S, chicken~^~GRAVY,CAMPBELL'S,CHICK~^^~Campbell Soup Co.~^^^0^^^^^
-~07001~^~0700~^~Barbecue loaf, pork, beef~^~BARBECUE LOAF,PORK,BEEF~^^^^^0^^6.25^4.27^9.02^3.87
-~07002~^~0700~^~Beerwurst, beer salami, pork and beef~^~BEERWURST,BEER SALAMI,PORK & BF~^^^~Y~^^0^^6.25^4.27^9.02^3.68
-~07003~^~0700~^~Beerwurst, beer salami, pork~^~BEERWURST,BEER SALAMI,PORK~^^^^^0^^6.25^4.27^9.02^3.87
-~07004~^~0700~^~Sausage, Berliner, pork, beef~^~SAUSAGE BERLINER PORK BF~^^^^^0^^6.25^4.27^9.02^3.87
-~07005~^~0700~^~Blood sausage~^~BLOOD SAUSAGE~^^^~Y~^^0^^6.25^4.27^9.02^3.87
-~07006~^~0700~^~Bockwurst, pork, veal, raw~^~BOCKWURST PORK VEAL RAW~^^^~Y~^^0^^6.25^4.00^9.00^4.00
-~07007~^~0700~^~Bologna, beef~^~BOLOGNA,BF~^^^~Y~^^0^^6.25^4.27^9.02^3.87
-~07008~^~0700~^~Bologna, beef and pork~^~BOLOGNA,BF & PORK~^^^~Y~^^0^^6.25^4.27^9.02^3.87
-~07010~^~0700~^~Bologna, pork~^~BOLOGNA,PORK~^^^~Y~^^0^^6.25^4.27^9.02^3.87
-~07011~^~0700~^~Bologna, turkey~^~BOLOGNA TURKEY~^^^~Y~^^0^^6.25^4.00^9.00^4.00
-~07013~^~0700~^~Bratwurst, pork, cooked~^~BRATWURST,PORK,CKD~^^^~Y~^^0^^6.25^4.27^9.02^3.87
-~07014~^~0700~^~Braunschweiger (a liver sausage), pork~^~BRAUNSCHWEIGER (A LIVER SAUSAGE),PORK~^^^~Y~^^0^^6.25^4.00^9.00^4.00
-~07015~^~0700~^~Bratwurst, pork, beef, link~^~BRATWURST,PORK,BF,LINK~^^^^^0^^6.25^4.27^9.02^3.87
-~07016~^~0700~^~Cheesefurter, cheese smokie, pork, beef~^~CHEESEFURTER,CHS SMOKIE,PORK,BF~^^^~Y~^^0^^6.25^4.27^9.02^3.87
-~07018~^~0700~^~Chicken spread~^~CHICKEN SPRD~^^^^^0^^6.25^4.00^4.00^4.00
-~07019~^~0700~^~Sausage, pork, chorizo, link or ground, raw~^~SAUSAGE,PORK,CHORIZO,LINK OR GROUND,RAW~^^^~Y~^^0^^^^^
-~07020~^~0700~^~Corned beef loaf, jellied~^~CORNED BEEF LOAF,JELLIED~^^^^^0^^6.25^4.27^9.02^3.87
-~07021~^~0700~^~Dutch brand loaf, chicken, pork and beef~^~DUTCH BRAND LOAF,CHICK,PORK & BF~^^^~Y~^^0^^6.25^4.27^9.02^3.87
-~07022~^~0700~^~Frankfurter, beef, unheated~^~FRANKFURTER,BF,UNHTD~^~hot dog, frank, wiener~^^~Y~^^0^^6.25^4.27^9.02^3.87
-~07024~^~0700~^~Frankfurter, chicken~^~FRANKFURTER,CHICKEN~^~hot dog, wiener, frank~^^~Y~^^0^^6.25^4.27^9.02^3.87
-~07025~^~0700~^~Frankfurter, turkey~^~FRANKFURTER,TURKEY~^~hot dog, wiener, frank~^^~Y~^^0^^6.25^4.27^9.02^3.87
-~07026~^~0700~^~Ham, chopped, canned~^~HAM,CHOPPED,CANNED~^^^~Y~^^0^^6.25^4.27^9.02^3.87
-~07027~^~0700~^~Ham, chopped, not canned~^~HAM,CHOPPED,NOT CANNED~^^^~Y~^^0^^6.25^4.27^9.02^3.87
-~07028~^~0700~^~Ham, sliced, pre-packaged, deli meat (96%fat free, water added)~^~HAM,SLICED,PRE-PACKAGED,DELI MEAT (96%FAT FREE,H2O ADDED)~^^^~Y~^^0^^^^^
-~07029~^~0700~^~Ham, sliced, regular (approximately 11% fat)~^~HAM,SLICED,REG (APPROX 11% FAT)~^^^~Y~^^0^^6.25^4.27^9.02^3.87
-~07030~^~0700~^~Ham, minced~^~HAM,MINCED~^^^~Y~^^0^^6.25^4.27^9.02^3.87
-~07031~^~0700~^~Ham salad spread~^~HAM SALAD SPREAD~^^^~Y~^^0^^6.25^4.27^9.02^3.68
-~07032~^~0700~^~Ham and cheese loaf or roll~^~HAM&CHS LOAF OR ROLL~^^^~Y~^^0^^6.25^4.27^9.02^3.68
-~07033~^~0700~^~Ham and cheese spread~^~HAM AND CHEESE SPREAD~^^^^^0^^6.25^4.27^9.02^3.87
-~07034~^~0700~^~Headcheese, pork~^~HEADCHEESE,PORK~^^^~Y~^^0^^6.25^4.27^9.02^3.68
-~07036~^~0700~^~Sausage, Italian, pork, mild, raw~^~SAUSAGE,ITALIAN,PORK,MILD,RAW~^^^^^0^^6.25^4.27^9.02^3.87
-~07038~^~0700~^~Knackwurst, knockwurst, pork, beef~^~KNACKWURST KNOCKWURST PORK BF~^^^~Y~^^0^^6.25^4.00^9.00^4.00
-~07039~^~0700~^~Lebanon bologna, beef~^~LEBANON BOLOGNA BF~^^^~Y~^^0^^6.25^4.00^9.00^4.00
-~07040~^~0700~^~Liver cheese, pork~^~LIVER CHEESE,PORK~^^^^^0^^6.25^4.27^9.02^3.87
-~07041~^~0700~^~Liver sausage, liverwurst, pork~^~LIVER SAUSAGE,LIVERWURST,PORK~^^^^^0^^6.25^4.27^9.02^3.87
-~07043~^~0700~^~Roast beef, deli style, prepackaged, sliced~^~ROAST BF,DELI STYLE,PREPACKAGED,SLICED~^^^~Y~^^0^^6.25^4.27^9.02^3.87
-~07045~^~0700~^~Luncheon meat, pork, canned~^~LUNCHEON MEAT,PORK,CANNED~^^^~Y~^^0^^6.25^4.27^9.02^3.68
-~07046~^~0700~^~Turkey breast, low salt, prepackaged or deli, luncheon meat~^~TURKEY BREAST,LO SALT,PREPACKAGED OR DELI,LUNCHEON MEAT~^^^~Y~^^0^^6.25^4.00^9.00^4.00
-~07050~^~0700~^~Mortadella, beef, pork~^~MORTADELLA,BEEF,PORK~^^^~Y~^^0^^6.25^4.27^9.02^3.87
-~07051~^~0700~^~Olive loaf, pork~^~OLIVE LOAF,PORK~^^^~Y~^^0^^6.25^4.27^9.02^3.87
-~07052~^~0700~^~Pastrami, turkey~^~PASTRAMI,TURKEY~^^^~Y~^^0^^6.25^4.27^9.02^3.87
-~07053~^~0700~^~Pate, chicken liver, canned~^~PATE,CHICKEN LIVER,CANNED~^^^~Y~^^0^^6.25^4.27^9.02^3.87
-~07054~^~0700~^~Pate, goose liver, smoked, canned~^~PATE,GOOSE LIVER,SMOKED,CND~^^^^^0^^6.25^4.27^9.02^3.87
-~07055~^~0700~^~Pate, liver, not specified, canned~^~PATE,LIVER,NOT SPECIFIED,CND~^^^^^0^^6.25^4.27^9.02^3.87
-~07056~^~0700~^~Peppered loaf, pork, beef~^~PEPPERED LOAF PORK BF~^^^~Y~^^0^^6.25^4.27^9.02^3.87
-~07057~^~0700~^~Pepperoni, beef and pork, sliced~^~PEPPERONI,BF & PORK,SLICED~^^^~Y~^^0^^6.25^4.27^9.02^3.87
-~07058~^~0700~^~Pickle and pimiento loaf, pork~^~PICKLE&PIMIENTO LOAF,PORK~^^^~Y~^^0^^6.25^4.27^9.02^3.87
-~07059~^~0700~^~Polish sausage, pork~^~POLISH SAUSAGE,PORK~^^^^^0^^6.25^4.27^9.02^3.87
-~07060~^~0700~^~Luxury loaf, pork~^~LUXURY LOAF,PORK~^^^^^0^^6.25^4.27^9.02^3.87
-~07061~^~0700~^~Mother's loaf, pork~^~MOTHER'S LOAF,PORK~^^^^^0^^6.25^4.27^9.02^3.87
-~07062~^~0700~^~Picnic loaf, pork, beef~^~PICNIC LOAF,PORK,BEEF~^^^^^0^^6.25^4.27^9.02^3.87
-~07063~^~0700~^~Pork sausage, link/patty, unprepared~^~PORK SAUSAGE,LINK/PATTY,UNPREP~^^^^^0^^^^^
-~07064~^~0700~^~Pork sausage, link/patty, cooked, pan-fried~^~PORK SAUSAGE,LINK/PATTY,CKD,PAN-FRIED~^^^~Y~^^0^^^^^
-~07065~^~0700~^~Sausage, pork and beef, fresh, cooked~^~SAUSAGE,PORK & BF,FRSH,CKD~^^^~Y~^^0^^6.25^4.27^9.02^3.87
-~07066~^~0700~^~Sausage, turkey, reduced fat, brown and serve, cooked~^~SAUSAGE,TURKEY,RED FAT,BROWN & SERVE,CKD~^^^~Y~^^0^^^^^
-~07067~^~0700~^~Poultry salad sandwich spread~^~POULTRY SALAD SNDWCH SPRD~^^^~Y~^^0^^6.25^4.27^9.02^3.87
-~07068~^~0700~^~Salami, cooked, beef~^~SALAMI CKD BF~^^^~Y~^^0^^6.25^4.27^9.02^3.87
-~07069~^~0700~^~Salami, cooked, beef and pork~^~SALAMI,CKD,BF&PORK~^^^~Y~^^0^^6.25^4.27^9.02^3.87
-~07070~^~0700~^~Salami, cooked, turkey~^~SALAMI,COOKED,TURKEY~^^^~Y~^^0^^6.25^4.27^9.02^3.87
-~07071~^~0700~^~Salami, dry or hard, pork~^~SALAMI,DRY OR HARD,PORK~^^^^^0^^6.25^4.27^9.02^3.87
-~07072~^~0700~^~Salami, dry or hard, pork, beef~^~SALAMI,DRY OR HARD,PORK,BF~^^^~Y~^^0^^6.25^4.27^9.02^3.87
-~07073~^~0700~^~Sandwich spread, pork, beef~^~SANDWICH SPREAD,PORK,BEEF~^^^~Y~^^0^^6.25^4.27^9.02^3.87
-~07074~^~0700~^~Sausage, smoked link sausage, pork~^~SAUSAGE,SMOKED LINK SAUSAGE,PORK~^^^~Y~^^0^^6.25^4.27^9.02^3.87
-~07075~^~0700~^~Sausage, smoked link sausage, pork and beef~^~SAUSAGE,SMOKED LINK SAUSAGE,PORK & BF~^^^~Y~^^0^^6.25^4.27^9.02^3.87
-~07077~^~0700~^~Sausage, smoked link sausage, pork and beef (nonfat dry milk added)~^~SAUSAGE,SMOKED LINK SAUSAGE,PORK & BF (NONFAT DRY MLK ADDED)~^^^^^0^^6.25^4.27^9.02^3.87
-~07078~^~0700~^~Thuringer, cervelat, summer sausage, beef, pork~^~THURINGER,CERVELAT,SMMR SAUSAGE,BF,PORK~^^^~Y~^^0^^6.25^4.27^9.02^3.87
-~07081~^~0700~^~Turkey breast, sliced, prepackaged~^~TURKEY BREAST,SLICED,PREPACKAGED~^^^~Y~^^0^^6.25^4.27^9.02^3.87
-~07083~^~0700~^~Sausage, Vienna, canned, chicken, beef, pork~^~SAUSAGE,VIENNA,CND,CHICK,BF,PORK~^^^~Y~^^0^^6.25^4.27^9.02^3.87
-~07088~^~0700~^~Honey roll sausage, beef~^~HONEY ROLL SAUSAGE,BEEF~^^^^^0^^6.25^4.27^9.02^3.87
-~07089~^~0700~^~Sausage, Italian, pork, mild, cooked, pan-fried~^~SAUSAGE,ITALIAN,PORK,MILD,CKD,PAN-FRIED~^^^~Y~^^0^^6.25^4.27^9.02^3.87
-~07090~^~0700~^~Luncheon sausage, pork and beef~^~LUNCHEON SAUSAGE,PORK&BF~^^^^^0^^6.25^4.27^9.02^3.87
-~07091~^~0700~^~Sausage, New england brand, pork, beef~^~SAUSAGE,NEW ENGLAND BRAND,PORK,BF~^^^^^0^^6.25^4.27^9.02^3.87
-~07201~^~0700~^~Oscar Mayer, Bologna (beef)~^~OSCAR MAYER,BOLOGNA (BEEF)~^^~Kraft Foods, Inc.~^^^0^^6.25^^^
-~07207~^~0700~^~Oscar Mayer, Braunschweiger Liver Sausage (sliced)~^~OSCAR MAYER,BRAUNSCHWEIGER LIVER SAUSAGE (SLICED)~^^~Kraft Foods, Inc.~^^^0^^6.25^4.00^9.00^4.00
-~07209~^~0700~^~Oscar Mayer, Chicken Breast (honey glazed)~^~OSCAR MAYER,CHICK BREAST (HONEY GLAZED)~^^~Kraft Foods, Inc.~^^^0^^6.25^4.00^9.00^4.00
-~07212~^~0700~^~Oscar Mayer, Ham (chopped with natural juice)~^~OSCAR MAYER,HAM (CHOPPED W/ NAT JUICE)~^^~Kraft Foods, Inc.~^^^0^^6.25^4.00^9.00^4.00
-~07230~^~0700~^~Oscar Mayer, Salami (hard)~^~OSCAR MAYER,SALAMI (HARD)~^^~Kraft Foods, Inc.~^^^0^^6.25^4.00^9.00^4.00
-~07236~^~0700~^~Oscar Mayer, Smokies Sausage Little Cheese (pork, turkey)~^~OSCAR MAYER,SMOKIES SAUSAGE LITTLE CHS (PORK,TURKEY)~^^~Kraft Foods, Inc.~^^^0^^^^^
-~07241~^~0700~^~Oscar Mayer, Wieners (beef franks)~^~OSCAR MAYER,WIENERS (BEEF FRANKS)~^~hot dog, frankfurter, hotdog, wiener~^~Kraft Foods, Inc.~^^^0^^6.25^^^
-~07254~^~0700~^~Bacon, turkey, unprepared~^~BACON,TURKEY,UNPREP~^^^^^0^^^^^
-~07278~^~0700~^~Hormel Pillow Pak Sliced Turkey Pepperoni~^~HORMEL PILLOW PAK SLICED TURKEY PEPPERONI~^^~Hormel Foods Corp.~^^^0^^6.25^4.00^9.00^4.00
-~07900~^~0700~^~Sausage, turkey, pork, and beef, low fat, smoked~^~SAUSAGE,TURKEY,PORK,& BF,LOFAT,SMOKED~^^^~Y~^^0^^6.25^4.27^9.02^3.87
-~07905~^~0700~^~Frankfurter, beef, pork, and turkey, fat free~^~FRANKFURTER,BF,PORK,& TURKEY,FAT FREE~^~hot dog, wiener, frank~^^~Y~^^0^^6.25^4.27^^3.68
-~07906~^~0700~^~Luncheon meat, pork, ham, and chicken, minced, canned, reduced sodium, added ascorbic acid, includes SPAM, 25% less sodium~^~LUNCHEON MEAT,PORK,HAM,&CHICK,MINCD,CND,RED NA,VIT C, (SPAM)~^^^~Y~^^0^^6.25^4.27^9.02^3.87
-~07908~^~0700~^~Luncheon meat, pork with ham, minced, canned, includes Spam (Hormel)~^~LUNCHEON MEAT,PORK W/ HAM,MINCED,CND,INCL SPAM (HORMEL)~^^^~Y~^^0^^6.25^4.27^9.02^3.87
-~07909~^~0700~^~Luncheon meat, pork and chicken, minced, canned, includes Spam Lite~^~LUNCHEON MEAT,PORK & CHICK,MINCED,CND,INCL SPAM LITE~^^^~Y~^^0^^6.25^4.27^9.02^3.87
-~07910~^~0700~^~Bratwurst, veal, cooked~^~BRATWURST VEAL CKD~^^^^^0^^6.25^4.00^9.00^4.00
-~07911~^~0700~^~Liverwurst spread~^~LIVERWURST SPRD~^^^^^0^^6.25^4.27^9.02^3.87
-~07912~^~0700~^~Roast beef spread~^~ROAST BF SPRD~^^^^^0^^6.25^4.00^9.00^4.00
-~07913~^~0700~^~Salami, pork, beef, less sodium~^~SALAMI PORK BF LESS NA~^^^^^0^^6.25^4.00^9.00^4.00
-~07914~^~0700~^~Sausage, Italian, sweet, links~^~SAUSAGE ITALIAN SWT LINKS~^^^^^0^^6.25^4.00^9.00^4.00
-~07915~^~0700~^~Sausage, Polish, beef with chicken, hot~^~SAUSAGE POLISH BF W/ CHICK HOT~^^^^^0^^6.25^4.00^9.00^4.00
-~07916~^~0700~^~Sausage, Polish, pork and beef, smoked~^~SAUSAGE POLISH PORK & BF SMOKED~^^^^^0^^6.25^4.27^9.02^3.87
-~07917~^~0700~^~Sausage, pork and beef, with cheddar cheese, smoked~^~SAUSAGE PORK & BF W/ CHEDDAR CHS SMOKED~^^^^^0^^6.25^4.27^9.02^3.87
-~07918~^~0700~^~Sausage, summer, pork and beef, sticks, with cheddar cheese~^~SAUSAGE SMMR PORK & BF STKS W/ CHEDDAR CHS~^^^^^0^^6.25^4.00^9.00^4.00
-~07919~^~0700~^~Sausage, turkey, breakfast links, mild, raw~^~SAUSAGE,TURKEY,BRKFST LINKS,MILD,RAW~^^^~Y~^^0^^6.25^4.27^9.02^3.87
-~07920~^~0700~^~Swisswurst, pork and beef, with swiss cheese, smoked~^~SWISSWURST PORK & BF W/ SWISS CHS SMOKED~^^^^^0^^6.25^4.27^9.02^3.87
-~07921~^~0700~^~Bacon and beef sticks~^~BACON & BF STKS~^^^^^0^^6.25^4.00^9.00^4.00
-~07922~^~0700~^~Bratwurst, beef and pork, smoked~^~BRATWURST BF & PORK SMOKED~^^^^^0^^6.25^4.27^9.02^3.87
-~07923~^~0700~^~Bratwurst, chicken, cooked~^~BRATWURST,CHICK,CKD~^^^^^0^^6.25^4.27^9.02^3.87
-~07924~^~0700~^~Bratwurst, pork, beef and turkey, lite, smoked~^~BRATWURST PORK BF & TURKEY LITE SMOKED~^^^^^0^^6.25^4.00^9.00^4.00
-~07925~^~0700~^~Pastrami, beef, 98% fat-free~^~PASTRAMI BF 98% FAT-FREE~^^^^^0^^6.25^4.00^9.00^4.00
-~07926~^~0700~^~Salami, Italian, pork~^~SALAMI ITALIAN PORK~^^^^^0^^6.25^4.00^9.00^4.00
-~07927~^~0700~^~Sausage, Italian, turkey, smoked~^~SAUSAGE ITALIAN TURKEY SMOKED~^^^^^0^^6.25^4.00^9.00^4.00
-~07928~^~0700~^~Sausage, chicken, beef, pork, skinless, smoked~^~SAUSAGE CHICK BF PORK SKINLESS SMOKED~^^^^^0^^6.25^4.00^9.00^4.00
-~07929~^~0700~^~Sausage, turkey, hot, smoked~^~SAUSAGE TURKEY HOT SMOKED~^^^~Y~^^0^^6.25^4.00^9.00^4.00
-~07930~^~0700~^~Yachtwurst, with pistachio nuts, cooked~^~YACHTWURST,W/ PISTACHIO NUTS,CKD~^^^^^0^^6.25^4.27^9.02^3.87
-~07931~^~0700~^~Beerwurst, pork and beef~^~BEERWURST PORK & BF~^^^^^0^^6.25^4.00^9.00^4.00
-~07932~^~0700~^~Chicken breast, fat-free, mesquite flavor, sliced~^~CHICKEN BREAST FAT-FREE MESQ FLAVOR SLICED~^^^^^0^^6.25^4.00^9.00^4.00
-~07933~^~0700~^~Chicken breast, oven-roasted, fat-free, sliced~^~CHICKEN BREAST OVEN-ROASTED FAT-FREE SLICED~^^^^^0^^6.25^4.00^9.00^4.00
-~07934~^~0700~^~Kielbasa, Polish, turkey and beef, smoked~^~KIELBASA,POLISH,TURKEY & BF,SMOKED~^^^^^0^^6.25^4.00^9.00^4.00
-~07935~^~0700~^~Chicken breast, roll, oven-roasted~^~CHICKEN BREAST,ROLL,OVEN-ROASTED~^^^^^0^^6.25^4.00^9.00^4.00
-~07936~^~0700~^~Bologna, pork and turkey, lite~^~BOLOGNA PORK & TURKEY LITE~^^^^^0^^6.25^4.00^9.00^4.00
-~07937~^~0700~^~Bologna, pork, turkey and beef~^~BOLOGNA PORK TURKEY & BF~^^^^^0^^6.25^4.00^9.00^4.00
-~07938~^~0700~^~Ham, honey, smoked, cooked~^~HAM HONEY SMOKED CKD~^^^^^0^^6.25^4.00^9.00^4.00
-~07939~^~0700~^~Frankfurter, pork~^~FRANKFURTER,PORK~^~hot dog, wiener, frank~^^^^0^^6.25^4.00^9.00^4.00
-~07940~^~0700~^~Macaroni and cheese loaf, chicken, pork and beef~^~MACARONI & CHS LOAF CHICK PORK & BF~^^^^^0^^6.25^4.00^9.00^4.00
-~07941~^~0700~^~Salami, Italian, pork and beef, dry, sliced, 50% less sodium~^~SALAMI ITALIAN PORK & BF DRY SLICED 50% LESS NA~^^^^^0^^6.25^4.00^9.00^4.00
-~07942~^~0700~^~Pate, truffle flavor~^~PATE TRUFFLE FLAVOR~^^^^^0^^6.25^4.00^9.00^4.00
-~07943~^~0700~^~Turkey, breast, smoked, lemon pepper flavor, 97% fat-free~^~TURKEY,BREAST,SMOKED,LEMON PEPPER FLAVOR,97% FAT-FREE~^^^^^0^^6.25^4.00^9.00^4.00
-~07944~^~0700~^~Turkey, white, rotisserie, deli cut~^~TURKEY WHITE ROTISSERIE DELI CUT~^^^^^0^^6.25^4.00^9.00^4.00
-~07945~^~0700~^~Frankfurter, beef, heated~^~FRANKFURTER BF HTD~^~hot dog, frank, wiener~^^^^0^^6.25^4.00^9.00^4.00
-~07949~^~0700~^~Frankfurter, meat, heated~^~FRANKFURTER MEAT HTD~^^^^^0^^6.25^4.00^9.00^4.00
-~07950~^~0700~^~Frankfurter, meat~^~FRANKFURTER MEAT~^^^^^0^^6.25^4.00^9.00^4.00
-~07951~^~0700~^~Scrapple, pork~^~SCRAPPLE,PORK~^^^~Y~^^0^^6.25^4.00^9.00^4.00
-~07952~^~0700~^~Bologna, chicken, turkey, pork~^~BOLOGNA,CHICK,TURKEY,PORK~^^^^^0^^6.25^4.27^9.02^3.87
-~07953~^~0700~^~Pork sausage, link/patty, fully cooked, microwaved~^~PORK SAUSAGE,LINK/PATTY,FULLY CKD,MICROWAVED~^^^~Y~^^0^^^^^
-~07954~^~0700~^~Sausage, breakfast sausage, beef, pre-cooked, unprepared~^~SAUSAGE,BRKFST SAUSAGE,BF,PRE-COOKED,UNPREP~^^^~Y~^^0^^6.25^4.27^9.02^3.87
-~07955~^~0700~^~Sausage, turkey, fresh, raw~^~SAUSAGE,TURKEY,FRSH,RAW~^^^^^0^^6.25^4.27^9.02^3.87
-~07956~^~0700~^~Sausage, beef, fresh, cooked~^~SAUSAGE,BF,FRSH,CKD~^^^~Y~^^0^^6.25^4.27^9.02^3.87
-~07957~^~0700~^~Sausage, pork and turkey, pre-cooked~^~SAUSAGE,PORK & TURKEY,PRE-COOKED~^^^^^0^^6.25^4.27^9.02^3.87
-~07958~^~0700~^~Sausage, turkey, fresh, cooked~^~SAUSAGE,TURKEY,FRSH,CKD~^^^^^0^^6.25^4.27^9.02^3.87
-~07959~^~0700~^~Bologna, chicken, pork, beef~^~BOLOGNA,CHICK,PORK,BF~^^^^^0^^6.25^4.27^9.02^3.87
-~07960~^~0700~^~Bologna, chicken, pork~^~BOLOGNA,CHICK,PORK~^^^^^0^^6.25^4.27^9.02^3.87
-~07961~^~0700~^~Chicken breast, deli, rotisserie seasoned, sliced, prepackaged~^~CHICKEN BREAST,DELI,ROTISSERIE SEASONED,SLICED,PREPACKAGED~^^^~Y~^^0^^^^^
-~07962~^~0700~^~Frankfurter, meat and poultry, unheated~^~Frankfurter, meat and poultry, unheated~^^^~Y~^^0^^^^^
-~07963~^~0700~^~Frankfurter, meat and poultry, cooked, boiled~^~Frankfurter, meat and poultry, cooked, boiled~^^^~Y~^^0^^^^^
-~07964~^~0700~^~Frankfurter, meat and poultry, cooked, grilled~^~Frankfurter, meat and poultry, cooked, grilled~^^^~Y~^^0^^^^^
-~07965~^~0700~^~Pork sausage, link/patty, reduced fat, unprepared~^~PORK SAUSAGE,LINK/PATTY,RED FAT,UNPREP~^^^~Y~^^0^^^^^
-~07966~^~0700~^~Pork sausage, link/patty, reduced fat, cooked, pan-fried~^~PORK SAUSAGE,LINK/PATTY,RED FAT,CKD,PAN-FRIED~^^^~Y~^^0^^^^^
-~07967~^~0700~^~Pork sausage, link/patty, fully cooked, unheated~^~PORK SAUSAGE,LINK/PATTY,FULLY CKD,UNHTD~^^^^^0^^^^^
-~07968~^~0700~^~Kielbasa, fully cooked, grilled~^~KIELBASA,FULLY CKD,GRILLED~^^^~Y~^^0^^^^^
-~07969~^~0700~^~Kielbasa, fully cooked, pan-fried~^~KIELBASA,FULLY CKD,PAN-FRIED~^^^~Y~^^0^^^^^
-~07970~^~0700~^~Kielbasa, fully cooked, unheated~^~KIELBASA,FULLY CKD,UNHTD~^^^~Y~^^0^^^^^
-~07971~^~0700~^~Bologna, meat and poultry~^~BOLOGNA,MEAT & POULTRY~^^^~Y~^^0^^^^^
-~07972~^~0700~^~Meatballs, frozen, Italian style~^~MEATBALLS,FRZ,ITALIAN STYLE~^^^^^0^^^^^
-~07973~^~0700~^~Bacon, turkey, microwaved~^~BACON,TURKEY,MICROWAVED~^^^~Y~^^0^^^^^
-~07974~^~0700~^~Bacon, turkey, low sodium~^~BACON,TURKEY,LO NA~^^^~Y~^^0^^6.25^^^
-~07976~^~0700~^~Sausage, chicken or turkey, Italian style, lower sodium~^~SAUSAGE,CHICK OR TURKEY,ITALIAN STYLE,LOWER NA~^^^~Y~^^0^^6.25^^^
-~07977~^~0700~^~Ham, smoked, extra lean, low sodium~^~HAM,SMOKED,EX LN,LO NA~^^^~Y~^^0^^6.25^^^
-~07978~^~0700~^~Pork sausage, reduced sodium, cooked~^~PORK SAUSAGE,RED NA,CKD~^^^~Y~^^0^^6.25^^^
-~07979~^~0700~^~Sausage, pork, turkey, and beef, reduced sodium~^~SAUSAGE,PORK,TURKEY,& BF,RED NA~^^^~Y~^^0^^^^^
-~08002~^~0800~^~Cereals ready-to-eat, POST, ALPHA-BITS~^~CEREALS RTE,POST,ALPHA-BITS~^^~Post Foods, LLC~^~Y~^^0^^^^^
-~08010~^~0800~^~Cereals ready-to-eat, QUAKER, CAP'N CRUNCH~^~CEREALS RTE,QUAKER,CAP'N CRUNCH~^^~The Quaker Oats, Co.~^~Y~^^0^^6.25^^^
-~08011~^~0800~^~Cereals ready-to-eat, QUAKER, CAP'N CRUNCH with CRUNCHBERRIES~^~CEREALS RTE,QUAKER,CAP'N CRUNCH W/ CRUNCHBERRIES~^^~The Quaker Oats, Co.~^~Y~^^0^^6.25^^^
-~08012~^~0800~^~Cereals ready-to-eat, QUAKER, CAP'N CRUNCH'S PEANUT BUTTER CRUNCH~^~CEREALS RTE,QUAKER,CAP'N CRUNCH'S PNUT BUTTER CRUNCH~^^~The Quaker Oats, Co.~^~Y~^^0^^6.25^^^
-~08013~^~0800~^~Cereals ready-to-eat, GENERAL MILLS, CHEERIOS~^~CEREALS RTE,GENERAL MILLS,CHEERIOS~^^~General Mills Inc.~^~Y~^^0^^6.25^^^
-~08015~^~0800~^~Cereals ready-to-eat, POST, COCOA PEBBLES~^~CEREALS RTE,POST,COCOA PEBBLES~^^~Post Foods, LLC~^~Y~^^0^^^^^
-~08018~^~0800~^~Cereals ready-to-eat, QUAKER, QUAKER CRUNCHY BRAN~^~CEREALS RTE,QUAKER,QUAKER CRUNCHY BRAN~^^~The Quaker Oats, Co.~^~Y~^^0^^6.25^^^
-~08025~^~0800~^~Cereals ready-to-eat, RALSTON CRISP RICE~^~CEREALS RTE,RALSTON CRISP RICE~^^~Ralston Foods~^~Y~^^0^^^^^
-~08029~^~0800~^~Cereals ready-to-eat, POST Bran Flakes~^~CEREALS RTE,POST BRAN FLAKES~^^~Post Foods, LLC~^~Y~^^0^^^^^
-~08034~^~0800~^~Cereals ready-to-eat, POST, FRUITY PEBBLES~^~CEREALS RTE,POST,FRUITY PEBBLES~^^~Post Foods, LLC~^~Y~^^0^^^^^
-~08037~^~0800~^~Cereals ready-to-eat, granola, homemade~^~CEREALS RTE,GRANOLA,HOMEMADE~^^^~Y~^^0^^5.80^^^
-~08038~^~0800~^~Cereals ready-to-eat, POST, GRAPE-NUTS Cereal~^~CEREALS RTE,POST,GRAPE-NUTS CRL~^^~Post Foods, LLC~^~Y~^^0^^^^^
-~08039~^~0800~^~Cereals ready-to-eat, POST, GRAPE-NUTS Flakes~^~CEREALS RTE,POST,GRAPE-NUTS FLAKES~^^~Post Foods, LLC~^~Y~^^0^^^^^
-~08046~^~0800~^~Cereals ready-to-eat, POST, Honeycomb Cereal~^~CEREALS RTE,POST,HONEYCOMB CRL~^^~Post Foods, LLC~^~Y~^^0^^^^^
-~08047~^~0800~^~Cereals ready-to-eat, QUAKER, KING VITAMAN~^~CEREALS RTE,QUAKER,KING VITAMAN~^^~The Quaker Oats, Co.~^~Y~^^0^^6.25^^^
-~08049~^~0800~^~Cereals ready-to-eat, QUAKER, QUAKER OAT LIFE, plain~^~CEREALS RTE,QUAKER,QUAKER OAT LIFE,PLN~^^~The Quaker Oats, Co.~^~Y~^^0^^6.25^^^
-~08054~^~0800~^~Cereals ready-to-eat, QUAKER, 100% Natural Granola, Oats, Wheat and Honey~^~CEREALS RTE,QUAKER,100% NAT GRANOLA,OATS,WHEAT & HONEY~^^~The Quaker Oats, Co.~^~Y~^^0^^6.25^^^
-~08059~^~0800~^~Cereals ready-to-eat, QUAKER, SWEET CRUNCH/QUISP~^~CEREALS RTE,QUAKER,SWT CRUNCH/QUISP~^^~The Quaker Oats, Co.~^~Y~^^0^^6.25^^^
-~08061~^~0800~^~Cereals ready-to-eat, POST Raisin Bran Cereal~^~CEREALS RTE,POST RAISIN BRAN CRL~^^~Post Foods, LLC~^~Y~^^0^^^^^
-~08066~^~0800~^~Cereals ready-to-eat, QUAKER, QUAKER Puffed Rice~^~CEREALS RTE,QUAKER,QUAKER PUFFED RICE~^^~The Quaker Oats, Co.~^~Y~^^0^^6.25^^^
-~08073~^~0800~^~Cereals ready-to-eat, POST, GOLDEN CRISP~^~CEREALS RTE,POST,GOLDEN CRISP~^^~Post Foods, LLC~^~Y~^^0^^^^^
-~08074~^~0800~^~Cereals ready-to-eat, RALSTON TASTEEOS~^~CEREALS RTE,RALSTON TASTEEOS~^^~Ralston Foods~^~Y~^^0^^^^^
-~08081~^~0800~^~Cereals ready-to-eat, POST, Honey Nut Shredded Wheat~^~CEREALS RTE,POST,HONEY NUT SHREDDED WHEAT~^^~Post Foods, LLC~^~Y~^^0^^^^^
-~08083~^~0800~^~Cereals ready-to-eat, MALT-O-MEAL, CORN BURSTS~^~CEREALS RTE,MALT-O-MEAL,CORN BURSTS~^^~MOM Brands~^~Y~^^0^^^^^
-~08084~^~0800~^~Cereals ready-to-eat, wheat germ, toasted, plain~^~CEREALS RTE,WHEAT GERM,TSTD,PLN~^^^~Y~^^0^^5.80^3.59^8.37^3.78
-~08085~^~0800~^~Cereals ready-to-eat, SUN COUNTRY, KRETSCHMER Honey Crunch Wheat Germ~^~CEREALS RTE,SUN COUNTRY,KRETSCHMER HONEY CRUNCH WHEAT GERM~^^~Sun Country Foods Inc.~^~Y~^^0^^6.25^^^
-~08090~^~0800~^~Cereals, corn grits, white, regular and quick, enriched, dry~^~CEREALS,CORN GRITS,WHITE,REG & QUICK,ENR,DRY~^^^~Y~^^0^^6.25^3.46^8.37^4.16
-~08091~^~0800~^~Cereals, corn grits, white, regular and quick, enriched, cooked with water, without salt~^~CEREALS,CORN GRITS,WHITE,REG & QUICK,ENR,CKD W/ H2O,WO/ SALT~^^^~Y~^^0^^6.25^3.46^8.37^4.16
-~08092~^~0800~^~Cereals, QUAKER, corn grits, instant, plain, dry~^~CEREALS,QUAKER,CORN GRITS,INST,PLN,DRY~^~original~^~The Quaker Oats, Co.~^~Y~^^0^^^3.46^8.37^4.16
-~08093~^~0800~^~Cereals, QUAKER, corn grits, instant, plain, prepared (microwaved or boiling water added), without salt~^~CEREALS,QUAKER,CORN GRITS,INST,PLN,PREP,WO/ SALT~^^~The Quaker Oats, Co.~^^^0^^^3.46^8.37^4.16
-~08094~^~0800~^~Cereals, QUAKER, corn grits, instant, cheddar cheese flavor, dry~^~CEREALS,QUAKER,CORN GRITS,INST,CHEDDAR CHS FLAVOR,DRY~^^~The Quaker Oats, Co.~^~Y~^^0^^^^^
-~08096~^~0800~^~Cereals, QUAKER, Instant Grits, Country Bacon flavor, dry~^~CEREALS,QUAKER,INST GRITS,COUNTRY BACON FLAVOR,DRY~^^~The Quaker Oats, Co.~^^^0^^^^^
-~08100~^~0800~^~Cereals, CREAM OF RICE, dry~^~CEREALS,CRM OF RICE,DRY~^^~B&G Foods, Inc~^~Y~^^0^^5.95^3.82^8.37^4.16
-~08102~^~0800~^~Cereals, CREAM OF WHEAT, regular, 10 minute cooking, dry~^~CEREALS,CRM OF WHEAT,REG,10 MINUTE COOKING,DRY~^^~B&G Foods, Inc~^~Y~^^0^^5.70^4.05^8.37^4.12
-~08103~^~0800~^~Cereals, CREAM OF WHEAT, regular (10 minute), cooked with water, without salt~^~CEREALS,CRM OF WHEAT,REG (10 MINUTE),CKD W/ H2O,WO/ SALT~^^~B&G Foods, Inc~^^^0^^5.70^4.05^8.37^4.12
-~08104~^~0800~^~Cereals, farina, enriched, assorted brands including CREAM OF WHEAT, quick (1-3 minutes), dry~^~CEREALS,FARINA,ENR,ASSORTED BRANDS,DRY~^^^~Y~^^0^^5.70^4.05^8.37^4.12
-~08105~^~0800~^~Cereals, farina, enriched, assorted brands including CREAM OF WHEAT, quick (1-3 minutes), cooked with water, without salt~^~CEREALS,FARINA,ENR,ASSORTED BRANDS,QUICK,CKD W/ H2O,WO/ SALT~^^^^^0^^5.70^4.05^8.37^4.12
-~08106~^~0800~^~Cereals, CREAM OF WHEAT, instant, dry~^~CEREALS,CREAM OF WHEAT,INST,DRY~^^~B&G Foods, Inc~^~Y~^^0^^5.70^4.05^8.37^4.12
-~08107~^~0800~^~Cereals, CREAM OF WHEAT, instant, prepared with water, without salt~^~CEREALS,CREAM OF WHEAT,INST,PREP W/ H2O,WO/ SALT~^^~B&G Foods, Inc~^^^0^^5.70^4.05^8.37^4.12
-~08116~^~0800~^~Cereals, MALT-O-MEAL, original, plain, dry~^~CEREALS,MALT-O-MEAL,ORIGINAL,PLN,DRY~^^~MOM Brands~^~Y~^^0^^5.70^3.60^8.37^4.10
-~08120~^~0800~^~Cereals, oats, regular and quick, not fortified, dry~^~CEREALS,OATS,REG & QUICK,NOT FORT,DRY~^~oatmeal, old-fashioned oats, rolled oats~^^~Y~^^0^^5.83^3.46^8.37^4.12
-~08121~^~0800~^~Cereals, oats, regular and quick, unenriched, cooked with water (includes boiling and microwaving), without salt~^~CEREALS,OATS,REG & QUICK,UNENR,CKD W/ H2O,WO/ SALT~^~oatmeal, cooked~^^~Y~^^0^^5.83^3.46^8.37^4.12
-~08122~^~0800~^~Cereals, oats, instant, fortified, plain, dry~^~CEREALS,OATS,INST,FORT,PLN,DRY~^~instant oatmeal, Quaker original flavor~^^~Y~^^0^^5.83^3.46^8.37^4.12
-~08123~^~0800~^~Cereals, oats, instant, fortified, plain, prepared with water (boiling water added or microwaved)~^~CEREALS,OATS,INST,FORT,PLN,PREP W/ H2O~^~instant oatmeal~^^~Y~^^0^^5.83^3.46^8.37^4.12
-~08124~^~0800~^~Cereals, QUAKER, Instant Oatmeal, apples and cinnamon, dry~^~CEREALS,QUAKER,INST OATMEAL,APPLS & CINN,DRY~^^~The Quaker Oats, Co.~^^^0^^^^^
-~08128~^~0800~^~Cereals, oats, instant, fortified, with cinnamon and spice, dry~^~CEREALS,OATS,INST,FORT,W/ CINN & SPICE,DRY~^~oatmeal~^^~Y~^^0^^5.83^^^
-~08129~^~0800~^~Cereals, oats, instant, fortified, with cinnamon and spice, prepared with water~^~CEREALS,OATS,INST,FORT,W/ CINN & SPICE,PREP W/ H2O~^^^^^0^^^^^
-~08130~^~0800~^~Cereals, QUAKER, Instant Oatmeal, maple and brown sugar, dry~^~CEREALS,QUAKER,INST OATMEAL,MAPLE & BROWN SUGAR,DRY~^^~The Quaker Oats, Co.~^^^0^^^^^
-~08133~^~0800~^~Cereals, oats, instant, fortified, with raisins and spice, prepared with water~^~CEREALS,OATS,INST,FORT,W/ RAISINS & SPICE,PREP W/ H2O~^^^^^0^^^^^
-~08138~^~0800~^~Cereals ready-to-eat, MALT-O-MEAL, MARSHMALLOW MATEYS~^~CEREALS RTE,MALT-O-MEAL,MARSHMLLW MATEYS~^^~MOM Brands~^~Y~^^0^^^^^
-~08142~^~0800~^~Cereals, WHEATENA, dry~^~CEREALS,WHEATENA,DRY~^^~Homestat Farm Ltd.~^^^0^^5.83^3.59^8.37^3.78
-~08143~^~0800~^~Cereals, WHEATENA, cooked with water~^~CEREALS,WHEATENA,CKD W/ H2O~^^~Homestat Farm Ltd.~^^^0^^5.83^3.59^8.37^3.78
-~08144~^~0800~^~Cereals, whole wheat hot natural cereal, dry~^~CEREALS,WHL WHEAT HOT NAT CRL,DRY~^^^~Y~^^0^^5.83^3.59^8.37^3.78
-~08145~^~0800~^~Cereals, whole wheat hot natural cereal, cooked with water, without salt~^~CEREALS,WHL WHEAT HOT NAT CRL,CKD W/ H2O,WO/ SALT~^^^^^0^^5.83^3.59^8.37^3.78
-~08146~^~0800~^~Cereals ready-to-eat, QUAKER, QUAKER Puffed Wheat~^~CEREALS RTE,QUAKER,QUAKER PUFFED WHEAT~^^~The Quaker Oats, Co.~^~Y~^^0^^6.25^^^
-~08147~^~0800~^~Cereals ready-to-eat, POST, Shredded Wheat, original big biscuit~^~CEREALS RTE,POST,SHREDDED WHEAT,ORIGINAL BIG BISCUIT~^^~Post Foods, LLC~^~Y~^^0^^^^^
-~08148~^~0800~^~Cereals ready-to-eat, POST, Shredded Wheat, original spoon-size~^~CEREALS RTE,POST,SHREDDED WHEAT,ORIGINAL SPOON-SIZE~^^~Post Foods, LLC~^~Y~^^0^^^^^
-~08156~^~0800~^~Cereals ready-to-eat, rice, puffed, fortified~^~CEREALS RTE,RICE,PUFFED,FORT~^^^^^0^^5.95^3.82^8.37^4.16
-~08157~^~0800~^~Cereals ready-to-eat, wheat, puffed, fortified~^~CEREALS RTE,WHEAT,PUFFED,FORT~^^^^^0^^5.83^3.59^8.37^3.78
-~08160~^~0800~^~Cereals, corn grits, yellow, regular and quick, unenriched, dry~^~CEREALS,CORN GRITS,YEL,REG & QUICK,UNENR,DRY~^^^^^0^^6.25^3.46^8.37^4.16
-~08161~^~0800~^~Cereals, corn grits, white, regular and quick, enriched, cooked with water, with salt~^~CEREALS,CORN GRITS,WHITE,REG & QUICK,ENR,CKD W/ H2O,W/ SALT~^^^^^0^^6.25^3.46^8.37^4.16
-~08164~^~0800~^~Cereals, corn grits, yellow, regular and quick, enriched, cooked with water, without salt~^~CEREALS,CORN GRITS,YEL,REG & QUICK,ENR,CKD W/ H2O,WO/ SALT~^^^^^0^^6.25^3.46^8.37^4.16
-~08165~^~0800~^~Cereals, corn grits, yellow, regular, quick, enriched, cooked with water, with salt~^~CEREALS,CORN GRITS,YEL,REG,QUICK,ENR,CKD W/ H2O,W/ SALT~^^^^^0^^6.25^3.46^8.37^4.16
-~08168~^~0800~^~Cereals, CREAM OF RICE, cooked with water, with salt~^~CEREALS,CREAM OF RICE,CKD W/ H2O,W/ SALT~^^~B&G Foods, Inc~^^^0^^5.95^3.82^8.37^4.16
-~08169~^~0800~^~Cereals, CREAM OF WHEAT, regular (10 minute), cooked with water, with salt~^~CEREALS,CRM OF WHEAT,REG (10 MINUTE),CKD W/ H2O,W/ SALT~^^~B&G Foods, Inc~^^^0^^5.70^4.05^8.37^4.12
-~08172~^~0800~^~Cereals, farina, unenriched, dry~^~CEREALS,FARINA,UNENR,DRY~^^^^^0^^5.70^4.05^8.37^4.12
-~08173~^~0800~^~Cereals, farina, enriched, cooked with water, with salt~^~CEREALS,FARINA,ENR,CKD W/ H2O,W/ SALT~^^^^^0^^5.70^4.05^8.37^4.12
-~08177~^~0800~^~Cereals, MALT-O-MEAL, chocolate, dry~^~CEREALS,MALT-O-MEAL,CHOC,DRY~^^~MOM Brands~^^^0^^5.70^^^
-~08180~^~0800~^~Cereals, oats, regular and quick and instant, unenriched, cooked with water (includes boiling and microwaving), with salt~^~CEREALS,OATS,REG & QUICK & INST,UNENR,CKD W/ H2O,W/ SALT~^^^^^0^^5.83^3.46^8.37^4.12
-~08182~^~0800~^~Cereals, WHEATENA, cooked with water, with salt~^~CEREALS,WHEATENA,CKD W/ H2O,W/ SALT~^^~Homestat Farm Ltd.~^^^0^^5.83^3.59^8.37^3.78
-~08183~^~0800~^~Cereals, whole wheat hot natural cereal, cooked with water, with salt~^~CEREALS,WHL WHEAT HOT NAT CRL,CKD W/ H2O,W/ SALT~^^^^^0^^5.83^3.59^8.37^3.78
-~08191~^~0800~^~Cereals ready-to-eat, POST, Shredded Wheat, lightly frosted, spoon-size~^~CEREALS RTE,POST,SHREDDED WHEAT,LIGHTLY FRSTD,SPOON-SIZE~^^~Post Foods, LLC~^~Y~^^0^^^^^
-~08192~^~0800~^~Cereals ready-to-eat, POST SELECTS Blueberry Morning~^~CEREALS RTE,POST SELECTS BLUEBERRY MORNING~^^~Post Foods, LLC~^~Y~^^0^^^^^
-~08200~^~0800~^~Cereals, QUAKER, QUAKER MultiGrain Oatmeal, dry~^~CEREALS,QUAKER,QUAKER MULTIGRAIN OATMEAL,DRY~^^~The Quaker Oats, Co.~^~Y~^^0^^^^^
-~08204~^~0800~^~Cereals ready-to-eat, chocolate-flavored frosted puffed corn~^~CEREALS RTE,CHOCOLATE-FLAVORED FRSTD PUFFED CORN~^^^~Y~^^0^^^^^
-~08206~^~0800~^~Cereals ready-to-eat, MALT-O-MEAL, COCO-ROOS~^~CEREALS RTE,MALT-O-MEAL,COCO-ROOS~^^~MOM Brands~^~Y~^^0^^^^^
-~08210~^~0800~^~Cereals ready-to-eat, QUAKER, QUAKER OAT CINNAMON LIFE~^~CEREALS RTE,QUAKER,QUAKER OAT CINN LIFE~^^~The Quaker Oats, Co.~^^^0^^6.25^^^
-~08211~^~0800~^~Cereals ready-to-eat, QUAKER, HONEY GRAHAM OH!S~^~CEREALS RTE,QUAKER,HONEY GRAHAM OH!S~^^~The Quaker Oats, Co.~^~Y~^^0^^6.25^^^
-~08214~^~0800~^~Cereals ready-to-eat, QUAKER, Oatmeal Squares~^~CEREALS RTE,QUAKER,OATMEAL SQUARES~^^~The Quaker Oats, Co.~^~Y~^^0^^6.25^^^
-~08215~^~0800~^~Cereals ready-to-eat, QUAKER, Oatmeal Squares, cinnamon~^~CEREALS RTE,QUAKER,OATMEAL SQUARES,CINN~^^~The Quaker Oats, Co.~^^^0^^6.25^^^
-~08216~^~0800~^~Cereals ready-to-eat, QUAKER, Toasted Multigrain Crisps~^~CEREALS RTE,QUAKER,TSTD MULTIGRAIN CRISPS~^~QUAKER Oat Bran Cereal~^~The Quaker Oats, Co.~^~Y~^^0^^6.25^^^
-~08218~^~0800~^~Cereals ready-to-eat, QUAKER, QUAKER 100% Natural Granola with Oats, Wheat, Honey, and Raisins~^~CEREALS RTE,QUAKER,QUAKER GRANOLA W/ OATS,WHEAT& RAISINS~^^~The Quaker Oats, Co.~^~Y~^^0^^6.25^^^
-~08220~^~0800~^~Cereals ready-to-eat, QUAKER, Low Fat 100% Natural Granola with Raisins~^~CEREALS RTE,QUAKER,LOFAT 100% NAT GRANOLA W/ RAISINS~^^~The Quaker Oats, Co.~^~Y~^^0^^6.25^^^
-~08221~^~0800~^~Cereals, QUAKER, Instant Grits, Butter flavor, dry~^~CEREALS,QUAKER,INST GRITS,BUTTER FLAVOR,DRY~^^~The Quaker Oats, Co.~^^^0^^^^^
-~08225~^~0800~^~Cereals, QUAKER, Instant Oatmeal, fruit and cream variety, dry~^~CEREALS,QUAKER,INST OATMEAL,FRUIT & CRM VAR,DRY~^^~The Quaker Oats, Co.~^^^0^^^^^
-~08228~^~0800~^~Cereals, QUAKER, Instant Oatmeal, raisins, dates and walnuts, dry~^~CEREALS,QUAKER,INST OATMEAL,RAISINS,DATES & WALNUTS,DRY~^^~The Quaker Oats, Co.~^^^0^^^^^
-~08231~^~0800~^~Cereals, QUAKER, Oat Bran, QUAKER/MOTHER'S Oat Bran, dry~^~CEREALS,QUAKER,OAT BRAN,QUAKER/MOTHER'S OAT BRAN,DRY~^^~The Quaker Oats, Co.~^^^0^^^^^
-~08236~^~0800~^~Cereals, QUAKER, Oat Bran, QUAKER/MOTHER'S Oat Bran, prepared with water, no salt~^~CEREALS,QKR,OAT BRAN,PREP W/H2O,NO SALT~^^~The Quaker Oats, Co.~^^^0^^^^^
-~08240~^~0800~^~Cereals, Oat Bran, QUAKER, QUAKER/MOTHER'S Oat Bran, prepared with water, salt~^~CEREALS,OAT BRAN,QKR,QKR/MOTHER'S OAT BRAN,PREP W/H2O,SALT~^^~The Quaker Oats, Co.~^^^0^^^^^
-~08249~^~0800~^~Cereals, QUAKER, QUAKER MultiGrain Oatmeal, prepared with water, no salt~^~CEREALS,QUAKER,QUAKER MULTIGRAIN OATMEAL,PREP W/H2O,NO SALT~^^~The Quaker Oats, Co.~^^^0^^^^^
-~08252~^~0800~^~Cereals, QUAKER, QUAKER MultiGrain Oatmeal, prepared with water, salt~^~CEREALS,QUAKER,QUAKER MULTIGRAIN OATMEAL,PREP W/H2O,SALT~^^~The Quaker Oats, Co.~^^^0^^^^^
-~08290~^~0800~^~Cereals ready-to-eat, HEALTH VALLEY, FIBER 7 Flakes~^~CEREALS RTE,HEALTH VALLEY,FIBER 7 FLAKES~^^~Hain Celestial Group, Inc.~^~Y~^^0^^^^^
-~08305~^~0800~^~Cereals ready-to-eat, Post, Waffle Crisp~^~CEREALS RTE,POST,WAFFLE CRISP~^^~Post Foods, LLC~^~Y~^^0^^^^^
-~08314~^~0800~^~Cereals, QUAKER, hominy grits, white, quick, dry~^~CEREALS,QUAKER,HOMINY GRITS,WHITE,QUICK,DRY~^^~The Quaker Oats, Co.~^^^0^^^^^
-~08316~^~0800~^~Cereals, QUAKER, hominy grits, white, regular, dry~^~CEREALS,QUAKER,HOMINY GRITS,WHITE,REG,DRY~^~old fashioned~^~The Quaker Oats, Co.~^^^0^^^^^
-~08346~^~0800~^~Cereals ready-to-eat, MALT-O-MEAL, COLOSSAL CRUNCH~^~CEREALS RTE,MALT-O-MEAL,COLOSSAL CRUNCH~^^~MOM Brands~^~Y~^^0^^^^^
-~08347~^~0800~^~Cereals ready-to-eat, MALT-O-MEAL, BERRY COLOSSAL CRUNCH~^~CEREALS RTE,MALT-O-MEAL,BERRY COLOSSAL CRUNCH~^^~MOM Brands~^^^0^^^^^
-~08348~^~0800~^~Cereals ready-to-eat, MALT-O-MEAL, Crispy Rice~^~CEREALS RTE,MALT-O-MEAL,CRISPY RICE~^^~MOM Brands~^^^0^^^^^
-~08349~^~0800~^~Cereals ready-to-eat, MALT-O-MEAL, TOOTIE FRUITIES~^~CEREALS RTE,MALT-O-MEAL,TOOTIE FRUITIES~^^~MOM Brands~^~Y~^^0^^^^^
-~08351~^~0800~^~Cereals ready-to-eat, QUAKER, MOTHER'S PEANUT BUTTER BUMPERS Cereal~^~CEREALS RTE,QUAKER,MOTHER'S PNUT BUTTER BUMPERS CRL~^^~The Quaker Oats, Co.~^^^0^^6.25^^^
-~08352~^~0800~^~Cereals ready-to-eat, QUAKER, MOTHER'S Toasted Oat Bran cereal~^~CEREALS RTE,QUAKER,MOTHER'S TSTD OAT BRAN CRL~^^~The Quaker Oats, Co.~^^^0^^6.25^^^
-~08353~^~0800~^~Cereals ready-to-eat, QUAKER, MOTHER'S Cinnamon Oat Crunch~^~CEREALS RTE,QUAKER,MOTHER'S CINN OAT CRUNCH~^^~The Quaker Oats, Co.~^^^0^^6.25^^^
-~08354~^~0800~^~Cereals ready-to-eat, QUAKER, MOTHER'S GRAHAM BUMPERS~^~CEREALS RTE,QUAKER,MOTHER'S GRAHAM BUMPERS~^^~The Quaker Oats, Co.~^^^0^^6.25^^^
-~08355~^~0800~^~Cereals ready-to-eat, QUAKER, MOTHER'S COCOA BUMPERS~^~CEREALS RTE,QUAKER,MOTHER'S COCOA BUMPERS~^^~The Quaker Oats, Co.~^^^0^^6.25^^^
-~08363~^~0800~^~Cereals ready-to-eat, SUN COUNTRY, KRETSCHMER Toasted Wheat Bran~^~CEREALS RTE,SUN COUNTRY,KRETSCHMER TSTD WHEAT BRAN~^^~Sun Country Foods Inc.~^^^0^^6.25^^^
-~08365~^~0800~^~Cereals ready-to-eat, QUAKER, Shredded Wheat, bagged cereal~^~CEREALS RTE,QUAKER,SHREDDED WHEAT,BAGGED CRL~^^~The Quaker Oats, Co.~^^^0^^6.25^^^
-~08366~^~0800~^~Cereals ready-to-eat, SUN COUNTRY, KRETSCHMER Wheat Germ, Regular~^~CEREALS RTE,SUN COUNTRY,KRETSCHMER WHEAT GERM,REG~^^~Sun Country Foods Inc.~^^^0^^6.25^^^
-~08402~^~0800~^~Cereals, QUAKER, Quick Oats, Dry~^~CEREALS,QUAKER,QUICK OATS,DRY~^^~The Quaker Oats, Co.~^^^0^^6.25^^^
-~08409~^~0800~^~Cereals ready-to-eat, MALT-O-MEAL, Frosted Flakes~^~CEREALS RTE,MALT-O-MEAL,FRSTD FLAKES~^^~MOM Brands~^~Y~^^0^^6.25^^^
-~08410~^~0800~^~Cereals, QUAKER, Instant Oatmeal, Cinnamon-Spice, dry~^~CEREALS,QUAKER,INST OATMEAL,CINNAMON-SPICE,DRY~^^~The Quaker Oats, Co.~^^^0^^6.25^^^
-~08411~^~0800~^~Cereals, QUAKER, Instant Oatmeal, DINOSAUR EGGS, Brown Sugar, dry~^~CEREALS,QUAKER,INST OATMEAL,DINOSAUR EGGS,BROWN SUGAR,DRY~^^~The Quaker Oats, Co.~^^^0^^^^^
-~08417~^~0800~^~Cereals, QUAKER, Instant Oatmeal, Banana Bread, dry~^~CEREALS,QUAKER,INST OATMEAL,BANANA BREAD,DRY~^^~The Quaker Oats, Co.~^^^0^^^^^
-~08435~^~0800~^~Cereals ready-to-eat, UNCLE SAM CEREAL~^~CEREALS RTE,UNCLE SAM CRL~^^~Attune Foods, Inc.~^~Y~^^0^^^^^
-~08436~^~0800~^~Cereals, QUAKER, Instant Oatmeal, Raisin and Spice, dry~^~CEREALS,QUAKER,INST OATMEAL,RAISIN & SPICE,DRY~^^~The Quaker Oats, Co.~^^^0^^^^^
-~08444~^~0800~^~Cereals, QUAKER, Instant Grits, Redeye Gravy & Country Ham flavor, dry~^~CEREALS,QUAKER,INST GRITS,REDEYE GRVY COUNTRY HAM FLAVOR,DRY~^^~The Quaker Oats, Co.~^^^0^^6.25^^^
-~08449~^~0800~^~Cereals, QUAKER, Instant Grits Product with American Cheese Flavor, dry~^~CEREALS,QUAKER,INST GRITS PRODUCT W/ AMERICAN CHS FLAVOR,DRY~^^~The Quaker Oats, Co.~^^^0^^6.25^^^
-~08450~^~0800~^~Cereals, QUAKER, Instant Grits, Ham 'n' Cheese flavor, dry~^~CEREALS,QUAKER,INST GRITS,HAM 'N' CHS FLAVOR,DRY~^^~The Quaker Oats, Co.~^^^0^^6.25^^^
-~08451~^~0800~^~Cereals, QUAKER, Quick Oats with Iron, Dry~^~CEREALS,QUAKER,QUICK OATS W/ IRON,DRY~^~quick oats with iron for WIC program~^~The Quaker Oats, Co.~^^^0^^6.25^^^
-~08452~^~0800~^~Cereals, QUAKER, Whole Wheat Natural Cereal, dry~^~CEREALS,QUAKER,WHL WHEAT NAT CRL,DRY~^^~The Quaker Oats, Co.~^^^0^^6.25^^^
-~08476~^~0800~^~Cereals ready-to-eat, MALT-O-MEAL, Honey BUZZERS~^~CEREALS RTE,MALT-O-MEAL,HONEY BUZZERS~^^~MOM Brands~^^^0^^6.25^^^
-~08478~^~0800~^~Cereals ready-to-eat, MALT-O-MEAL, GOLDEN PUFFS~^~CEREALS RTE,MALT-O-MEAL,GOLDEN PUFFS~^^~MOM Brands~^^^0^^6.25^^^
-~08481~^~0800~^~Cereals ready-to-eat, MALT-O-MEAL, HONEY GRAHAM SQUARES~^~CEREALS RTE,MALT-O-MEAL,HONEY GRAHAM SQUARES~^^~MOM Brands~^^^0^^6.25^^^
-~08484~^~0800~^~Cereals ready-to-eat, MALT-O-MEAL, Raisin Bran Cereal~^~CEREALS RTE,MALT-O-MEAL,RAISIN BRAN CRL~^^~MOM Brands~^~Y~^^0^^6.25^^^
-~08487~^~0800~^~Cereals ready-to-eat, MALT-O-MEAL, Blueberry MUFFIN TOPS Cereal~^~CEREALS RTE,MALT-O-MEAL,BLUEBERRY MUFFIN TOPS CRL~^^~MOM Brands~^^^0^^6.25^^^
-~08488~^~0800~^~Cereals, MALT-O-MEAL, Farina Hot Wheat Cereal, dry~^~CEREALS,MALT-O-MEAL,FARINA HOT WHEAT CRL,DRY~^^~MOM Brands~^^^0^^6.25^^^
-~08489~^~0800~^~Cereals, MALT-O-MEAL, Maple & Brown Sugar Hot Wheat Cereal, dry~^~CEREALS,MALT-O-MEAL,MAPLE & BROWN SUGAR HOT WHEAT CRL,DRY~^^~MOM Brands~^^^0^^6.25^^^
-~08491~^~0800~^~Cereals ready-to-eat, MOM'S BEST, Honey Nut TOASTY O'S~^~CEREALS RTE,MOM'S BEST,HONEY NUT TOASTY O'S~^^~MOM Brands~^^^0^^6.25^^^
-~08493~^~0800~^~Cereals ready-to-eat, MALT-O-MEAL, Apple ZINGS~^~CEREALS RTE,MALT-O-MEAL,APPL ZINGS~^^~MOM Brands~^^^0^^6.25^^^
-~08494~^~0800~^~Cereals ready-to-eat, MALT-O-MEAL, CINNAMON TOASTERS~^~CEREALS RTE,MALT-O-MEAL,CINN TOASTERS~^^~MOM Brands~^~Y~^^0^^6.25^^^
-~08495~^~0800~^~Cereals ready-to-eat, MALT-O-MEAL, Cocoa DYNO-BITES~^~CEREALS RTE,MALT-O-MEAL,COCOA DYNO-BITES~^^~MOM Brands~^~Y~^^0^^6.25^^^
-~08500~^~0800~^~Cereals ready-to-eat, MALT-O-MEAL, Frosted Mini SPOONERS~^~CEREALS RTE,MALT-O-MEAL,FRSTD MINI SPOONERS~^^~MOM Brands~^~Y~^^0^^6.25^^^
-~08501~^~0800~^~Cereals ready-to-eat, MALT-O-MEAL, Fruity DYNO-BITES~^~CEREALS RTE,MALT-O-MEAL,FRUITY DYNO-BITES~^^~MOM Brands~^~Y~^^0^^6.25^^^
-~08504~^~0800~^~Cereals ready-to-eat, RALSTON Enriched Wheat Bran flakes~^~CEREALS RTE,RALSTON ENR WHEAT BRAN FLAKES~^^~Ralston Foods~^^^0^^^^^
-~08505~^~0800~^~Cereals ready-to-eat, RALSTON Corn Biscuits~^~CEREALS RTE,RALSTON CORN BISCUITS~^^~Ralston Foods~^^^0^^^^^
-~08506~^~0800~^~Cereals ready-to-eat, RALSTON Corn Flakes~^~CEREALS RTE,RALSTON CORN FLAKES~^^~Ralston Foods~^^^0^^^^^
-~08507~^~0800~^~Cereals ready-to-eat, RALSTON Crispy Hexagons~^~CEREALS RTE,RALSTON CRISPY HEXAGONS~^^~Ralston Foods~^^^0^^^^^
-~08510~^~2500~^~Milk and cereal bar~^~MILK & CRL BAR~^^^~Y~^^0^^^^^
-~08511~^~0800~^~Cereals, MALT-O-MEAL, original, plain, prepared with water, without salt~^~CEREALS,MALT-O-MEAL,ORIGINAL,PLN,PREP W/ H2O,WO/ SALT~^^~MOM Brands~^^^0^^^^^
-~08512~^~0800~^~Cereals, MALT-O-MEAL, chocolate, prepared with water, without salt~^~CEREALS,MALT-O-MEAL,CHOC,PREP W/ H2O,WO/ SALT~^^~MOM Brands~^^^0^^^^^
-~08544~^~0800~^~Cereals ready-to-eat, POST GREAT GRAINS Cranberry Almond Crunch~^~CEREALS RTE,POST GREAT GRAINS CRANBERRY ALMOND CRUNCH~^^~Post Foods, LLC~^~Y~^^0^^^^^
-~08546~^~2500~^~Rice and Wheat cereal bar~^~RICE & WHEAT CRL BAR~^^^~Y~^^0^^6.25^^^
-~08549~^~0800~^~Cereals ready-to-eat, QUAKER, QUAKER Honey Graham LIFE Cereal~^~CEREALS RTE,QUAKER,QUAKER HONEY GRAHAM LIFE CRL~^^~The Quaker Oats, Co.~^^^0^^6.25^^^
-~08550~^~0800~^~Cereals ready-to-eat, QUAKER, Christmas Crunch~^~CEREALS RTE,QUAKER,CHRISTMAS CRUNCH~^^~The Quaker Oats, Co.~^~Y~^^0^^6.25^^^
-~08554~^~0800~^~Cereals ready-to-eat, POST SELECTS Maple Pecan Crunch~^~CEREALS RTE,POST SELECTS MAPLE PECAN CRUNCH~^^~Post Foods, LLC~^~Y~^^0^^^^^
-~08571~^~0800~^~Cereals ready-to-eat, NATURE'S PATH, Organic FLAX PLUS, Pumpkin Granola~^~CEREALS RTE,NATURE'S PATH,ORGANIC FLAX PLUS,PUMPKIN GRANOLA~^^~Nature's Path~^~Y~^^0^^6.25^^^
-~08573~^~0800~^~Cereals, CREAM OF WHEAT, 2 1/2 minute cook time, dry~^~CEREALS,CRM OF WHEAT,2 1/2 MINUTE COOK TIME,DRY~^^~B&G Foods, Inc~^^^0^^^4.05^8.37^4.12
-~08574~^~0800~^~Cereals, CREAM OF WHEAT, 2 1/2 minute cook time, cooked with water, stove-top, without salt~^~CEREALS,CRM OF WHT,2 1/2 MIN CK,CKD W/H2O,STOVE-TOP,WO/SALT~^^~B&G Foods, Inc~^^^0^^^4.05^8.37^4.12
-~08575~^~0800~^~Cereals, CREAM OF WHEAT, 2 1/2 minute cook time, cooked with water, microwaved, without salt~^~CEREALS,CRM OF WHT,2 1/2 MIN COOK TIME,CKD W/H2O,MW,WO/ SALT~^^~B&G Foods, Inc~^^^0^^^4.05^8.37^4.12
-~08576~^~0800~^~Cereals, CREAM OF WHEAT, 1 minute cook time, dry~^~CEREALS,CRM OF WHEAT,1 MINUTE COOK TIME,DRY~^^~B&G Foods, Inc~^^^0^^^4.05^8.37^4.12
-~08577~^~0800~^~Cereals, CREAM OF WHEAT, 1 minute cook time, cooked with water, stove-top, without salt~^~CEREALS,CRM OF WHEAT,1 MINUTE,CKD W/ H2O,STOVE-TOP,WO/ SALT~^^~B&G Foods, Inc~^^^0^^^4.05^8.37^4.12
-~08578~^~0800~^~Cereals, CREAM OF WHEAT, 1 minute cook time, cooked with water, microwaved, without salt~^~CEREALS,CRM OF WHEAT,1 MINUTE,CKD W/ H2O,MICROWAVED,WO/ SALT~^^~B&G Foods, Inc~^^^0^^^4.05^8.37^4.12
-~08580~^~0800~^~Incaparina, dry mix (corn and soy flours), unprepared~^~INCAPARINA,DRY MIX (CORN & SOY FLOURS),UNPREP~^^^^^0^^6.25^^^
-~08625~^~0800~^~Cereals ready-to-eat, QUAKER, CAP'N CRUNCH'S Halloween Crunch~^~CEREALS RTE,QUAKER,CAP'N CRUNCH'S HALLOWEEN CRUNCH~^^~The Quaker Oats, Co.~^^^0^^6.25^^^
-~08627~^~0800~^~Cereals ready-to-eat, QUAKER, Natural Granola Apple Cranberry Almond~^~CEREALS RTE,QUAKER,NAT GRANOLA APPL CRANBERRY ALMOND~^^~The Quaker Oats, Co.~^^^0^^6.25^^^
-~08628~^~0800~^~Cereals ready-to-eat, QUAKER, Maple Brown Sugar LIFE Cereal~^~CEREALS RTE,QUAKER,MAPLE BROWN SUGAR LIFE CRL~^^~The Quaker Oats, Co.~^^^0^^6.25^^^
-~08629~^~0800~^~Cereals ready-to-eat, QUAKER, Cap'n Crunch's OOPS! All Berries Cereal~^~CEREALS RTE,QUAKER,CAP'N CRUNCH'S OOPS! ALL BERRIES CRL~^^~The Quaker Oats, Co.~^^^0^^6.25^^^
-~08632~^~0800~^~Cereals ready-to-eat, QUAKER Oatmeal Squares, Golden Maple~^~CEREALS RTE,QUAKER OATMEAL SQUARES,GOLDEN MAPLE~^^~The Quaker Oats, Co.~^^^0^^6.25^^^
-~08633~^~0800~^~Cereals ready-to-eat, POST, HONEY BUNCHES OF OATS with vanilla bunches~^~CEREALS RTE,POST,HONEY BUNCHES OF OATS W/ VANILLA BUNCHES~^^~Post Foods, LLC~^~Y~^^0^^^^^
-~08639~^~0800~^~Cereals, QUAKER, Instant Oatmeal, Cinnamon Spice, reduced sugar~^~CEREALS,QUAKER,INST OATMEAL,CINN SPICE,RED SUGAR~^^~The Quaker Oats, Co.~^^^0^^6.25^^^
-~08640~^~0800~^~Cereals, QUAKER, Instant Oatmeal Organic, Regular~^~CEREALS,QUAKER,INST OATMEAL ORGANIC,REG~^~instant oatmeal, not fortified, no added salt~^~The Quaker Oats, Co.~^^^0^^6.25^^^
-~08641~^~0800~^~Cereals, QUAKER, Instant Oatmeal, fruit and cream, variety of flavors, reduced sugar~^~CEREALS,QUAKER,INST OATMEAL,FRUIT & CRM,RED SUGAR~^^~The Quaker Oats, Co.~^^^0^^^^^
-~08642~^~0800~^~Cereals, QUAKER, Instant Oatmeal, Apple and Cinnamon, reduced sugar~^~CEREALS,QUAKER,INST OATMEAL,APPL & CINN,RED SUGAR~^^~The Quaker Oats, Co.~^^^0^^6.25^^^
-~08655~^~0800~^~Cereals ready-to-eat, POST, HONEY BUNCHES OF OATS, pecan bunches~^~CEREALS RTE,POST,HONEY BUNCHES OF OATS,PECAN BUNCHES~^^~Post Foods, LLC~^~Y~^^0^^^^^
-~08656~^~0800~^~Cereals ready-to-eat, NATURE'S PATH, Organic FLAX PLUS flakes~^~CEREALS RTE,NATURE'S PATH,ORGANIC FLAX PLUS FLAKES~^^~Nature's Path~^~Y~^^0^^6.25^^^
-~08657~^~0800~^~Cereals ready-to-eat, BARBARA'S PUFFINS, original~^~CEREALS RTE,BARBARA'S PUFFINS,ORIGINAL~^^~Barbara's Bakery, Inc~^~Y~^^0^^^^^
-~08662~^~0800~^~Cereals ready-to-eat, POST, HONEY BUNCHES OF OATS, with real strawberries~^~CEREALS RTE,POST,HONEY BUNCHES OF OATS,W/ REAL STRAWBERRIES~^^~Post Foods, LLC~^^^0^^^^^
-~08665~^~0800~^~Cereals ready-to-eat, POST HONEY BUNCHES OF OATS with cinnamon bunches~^~CEREALS RTE,POST HONEY BUNCHES OF OATS W/ CINN BUNCHES~^^~Post Foods, LLC~^^^0^^6.25^^^
-~08672~^~0800~^~Cereals ready-to-eat, MALT-O-MEAL, CHOCOLATE MARSHMALLOW MATEYS~^~CEREALS RTE,MALT-O-MEAL,CHOC MARSHMLLW MATEYS~^^~MOM Brands~^^^0^^6.25^^^
-~08673~^~0800~^~Cereals, ready-to-eat, MALT-O-MEAL, Blueberry Mini SPOONERS~^~CEREALS,RTE,MALT-O-MEAL,BLUEBERRY MINI SPOONERS~^^~MOM Brands~^^^0^^6.25^^^
-~08674~^~0800~^~Cereals ready-to-eat, MALT-O-MEAL, OAT BLENDERS with honey~^~CEREALS RTE,MALT-O-MEAL,OAT BLENDERS W/ HONEY~^^~MOM Brands~^^^0^^6.25^^^
-~08675~^~0800~^~Cereals ready-to-eat, MALT-O-MEAL, OAT BLENDERS with honey & almonds~^~CEREALS RTE,MALT-O-MEAL,OAT BLENDERS W/ HONEY & ALMONDS~^^~MOM Brands~^^^0^^6.25^^^
-~08676~^~0800~^~Cereals ready-to-eat, MALT-O-MEAL, Honey Nut SCOOTERS~^~CEREALS RTE,MALT-O-MEAL,HONEY NUT SCOOTERS~^^~MOM Brands~^^^0^^6.25^^^
-~08680~^~0800~^~Cereals, oats, instant, fortified, maple and brown sugar, dry~^~CEREALS,OATS,INST,FORT,MAPLE & BROWN SUGAR,DRY~^^^~Y~^^0^^^^^
-~08685~^~0800~^~Cereals ready-to-eat, QUAKER WHOLE HEARTS oat cereal~^~CEREALS RTE,QUAKER WHL HEARTS OAT CRL~^^~The Quaker Oats, Co.~^^^0^^6.25^^^
-~08686~^~0800~^~Cereals, QUAKER, Weight Control Instant Oatmeal, maple and brown sugar~^~CEREALS,QUAKER,WT CONTROL INST OATMEAL,MAPLE & BROWN SUGAR~^^~The Quaker Oats, Co.~^^^0^^6.25^^^
-~08687~^~0800~^~Cereals, QUAKER, Weight Control Instant Oatmeal, banana bread~^~CEREALS,QUAKER,WEIGHT CONTROL INST OATMEAL,BANANA BREAD~^^~The Quaker Oats, Co.~^^^0^^6.25^^^
-~08688~^~0800~^~Cereals, QUAKER, Instant Oatmeal, Cinnamon Swirl, high fiber~^~CEREALS,QUAKER,INST OATMEAL,CINN SWIRL,HI FIBER~^^~The Quaker Oats, Co.~^^^0^^6.25^^^
-~08689~^~0800~^~Cereals, QUAKER, oatmeal, REAL MEDLEYS, blueberry hazelnut, dry~^~CEREALS,QUAKER,OATMEAL,REAL MEDLEYS,BLUEBERRY HAZELNUT,DRY~^^~The Quaker Oats, Co.~^^^0^^6.25^^^
-~08690~^~0800~^~Cereals, QUAKER, oatmeal, REAL MEDLEYS, apple walnut, dry~^~CEREALS,QUAKER,OATMEAL,REAL MEDLEYS,APPL WALNUT,DRY~^^~The Quaker Oats, Co.~^^^0^^6.25^^^
-~08691~^~0800~^~Cereals, QUAKER, oatmeal, REAL MEDLEYS, summer berry, dry~^~CEREALS,QUAKER,OATMEAL,REAL MEDLEYS,SMMR BERRY,DRY~^^~The Quaker Oats, Co.~^^^0^^6.25^^^
-~08692~^~0800~^~Cereals, QUAKER, oatmeal, REAL MEDLEYS, peach almond, dry~^~CEREALS,QUAKER,OATMEAL,REAL MEDLEYS,PEACH ALMOND,DRY~^^~The Quaker Oats, Co.~^^^0^^6.25^^^
-~08693~^~0800~^~Cereals, QUAKER, oatmeal, REAL MEDLEYS, cherry pistachio, dry~^~CEREALS,QUAKER,OATMEAL,REAL MEDLEYS,CHERRY PISTACHIO,DRY~^^~The Quaker Oats, Co.~^^^0^^6.25^^^
-~08694~^~0800~^~Cereals, QUAKER, Instant Oatmeal, weight control, cinnamon~^~CEREALS,QUAKER,INST OATMEAL,WEIGHT CONTROL,CINN~^^~The Quaker Oats, Co.~^^^0^^6.25^^^
-~08709~^~0800~^~Cereals ready-to-eat, MOM'S BEST, Sweetened WHEAT-FULS~^~CEREALS RTE,MOM'S BEST,SWTND WHEAT-FULS~^^~MOM Brands~^^^0^^6.25^^^
-~09001~^~0900~^~Acerola, (west indian cherry), raw~^~ACEROLA,(WEST INDIAN CHERRY),RAW~^^^^~18% seed, 2% stem end~^20^~Malpighia emarginata~^6.25^3.36^8.37^3.60
-~09002~^~0900~^~Acerola juice, raw~^~ACEROLA JUICE,RAW~^^^^^0^^6.25^3.36^8.37^3.92
-~09003~^~0900~^~Apples, raw, with skin (Includes foods for USDA's Food Distribution Program)~^~APPLES,RAW,WITH SKIN~^^^~Y~^~Core and stem~^10^~Malus domestica~^6.25^3.36^8.37^3.60
-~09004~^~0900~^~Apples, raw, without skin~^~APPLES,RAW,WITHOUT SKIN~^^^~Y~^~10% core and stem, 13% skin~^23^~Malus domestica~^6.25^3.36^8.37^3.60
-~09005~^~0900~^~Apples, raw, without skin, cooked, boiled~^~APPLES,RAW,WO/SKN,CKD,BLD~^^^~Y~^^0^^6.25^3.36^8.37^3.60
-~09006~^~0900~^~Apples, raw, without skin, cooked, microwave~^~APPLES,RAW,WO/ SKN,CKD,MICROWAVE~^^^~Y~^^0^^6.25^3.36^8.37^3.60
-~09008~^~0900~^~Apples, canned, sweetened, sliced, drained, heated~^~APPLES,CND,SWTND,SLICED,DRND,HTD~^^^~Y~^^0^^6.25^3.36^8.37^3.70
-~09009~^~0900~^~Apples, dehydrated (low moisture), sulfured, uncooked~^~APPLES,DEHYD (LO MOIST),SULFURED,UNCKD~^^^~Y~^^0^^6.25^3.36^8.37^3.60
-~09010~^~0900~^~Apples, dehydrated (low moisture), sulfured, stewed~^~APPLES,DEHYD (LO MOIST),SULFURED,STWD~^^^^^0^^6.25^3.36^8.37^3.60
-~09011~^~0900~^~Apples, dried, sulfured, uncooked~^~APPLES,DRIED,SULFURED,UNCKD~^^^~Y~^^0^^6.25^3.36^8.37^3.60
-~09012~^~0900~^~Apples, dried, sulfured, stewed, without added sugar~^~APPLES,DRIED,SULFURED,STWD,WO/ SUGAR~^^^~Y~^^0^^6.25^3.36^8.37^3.60
-~09013~^~0900~^~Apples, dried, sulfured, stewed, with added sugar~^~APPLES,DRIED,SULFURED,STWD,W/ SUGAR~^^^^^0^^6.25^^^
-~09014~^~0900~^~Apples, frozen, unsweetened, unheated (Includes foods for USDA's Food Distribution Program)~^~APPLES,FRZ,UNSWTND,UNHTD~^^^^^0^^6.25^3.36^8.37^3.60
-~09015~^~0900~^~Apples, frozen, unsweetened, heated (Includes foods for USDA's Food Distribution Program)~^~APPLES,FRZ,UNSWTND,HTD~^^^^^0^^6.25^3.36^8.37^3.60
-~09016~^~0900~^~Apple juice, canned or bottled, unsweetened, without added ascorbic acid~^~APPLE JUC,CND OR BTLD,UNSWTND,WO/ ADDED VIT C~^^^~Y~^^0^^6.25^3.36^8.37^3.92
-~09017~^~0900~^~Apple juice, frozen concentrate, unsweetened, undiluted, without added ascorbic acid~^~APPLE JUC,FRZ CONC,UNSWTND,UNDIL,WO/ VIT C~^^^~Y~^^0^^6.25^3.36^8.37^3.92
-~09018~^~0900~^~Apple juice, frozen concentrate, unsweetened, diluted with 3 volume water without added ascorbic acid~^~APPLE JUC,FRZ CONC,UNSWTND,DIL W/3 VOLUME H2O WO/ VIT C~^^^~Y~^^0^^6.25^3.36^8.37^3.92
-~09019~^~0900~^~Applesauce, canned, unsweetened, without added ascorbic acid (Includes foods for USDA's Food Distribution Program)~^~APPLESAUCE,CND,UNSWTND,WO/ ADDED VIT C~^^^~Y~^^0^^6.25^3.36^8.37^3.60
-~09020~^~0900~^~Applesauce, canned, sweetened, without salt~^~APPLESAUCE,CND,SWTND,WO/ SALT~^^^~Y~^^0^^6.25^3.36^8.37^3.75
-~09021~^~0900~^~Apricots, raw~^~APRICOTS,RAW~^^^~Y~^~Pits~^7^~Prunus armeniaca~^6.25^3.36^8.37^3.60
-~09022~^~0900~^~Apricots, canned, water pack, with skin, solids and liquids~^~APRICOTS,CND,H2O PK,W/SKN,SOL&LIQUIDS~^^^~Y~^^0^^6.25^3.36^8.37^3.60
-~09023~^~0900~^~Apricots, canned, water pack, without skin, solids and liquids~^~APRICOTS,CND,H2O PK,WO/SKN,SOL&LIQUIDS~^^^^~Pits~^6^^6.25^3.36^8.37^3.60
-~09024~^~0900~^~Apricots, canned, juice pack, with skin, solids and liquids~^~APRICOTS,CND,JUC PK,W/SKN,SOL&LIQUIDS~^^^~Y~^^0^^6.25^3.36^8.37^3.70
-~09025~^~0900~^~Apricots, canned, extra light syrup pack, with skin, solids and liquids (Includes foods for USDA's Food Distribution Program)~^~APRICOTS,CND,EX LT SYRUP PK,W/SKN,SOL&LIQUIDS~^^^^^0^^6.25^3.36^8.37^3.69
-~09026~^~0900~^~Apricots, canned, light syrup pack, with skin, solids and liquids~^~APRICOTS,CND,LT SYRUP PK,W/SKN,SOL&LIQUIDS~^^^~Y~^^0^^6.25^3.36^8.37^3.71
-~09027~^~0900~^~Apricots, canned, heavy syrup pack, with skin, solids and liquids~^~APRICOTS,CND,HVY SYRUP PK,W/SKN,SOL&LIQUIDS~^^^~Y~^^0^^6.25^3.36^8.37^3.75
-~09028~^~0900~^~Apricots, canned, heavy syrup pack, without skin, solids and liquids~^~APRICOTS,CND,HVY SYRUP PK,WO/SKN,SOL&LIQUIDS~^^^^~Pits~^6^^6.25^3.36^8.37^3.75
-~09029~^~0900~^~Apricots, canned, extra heavy syrup pack, without skin, solids and liquids~^~APRICOTS,CND,EX HVY SYRUP PK,WO/SKN,SOL&LIQUIDS~^^^^~Pits~^6^^6.25^3.36^8.37^3.78
-~09030~^~0900~^~Apricots, dehydrated (low-moisture), sulfured, uncooked~^~APRICOTS,DEHYD (LOW-MOISTURE),SULFURED,UNCKD~^^^^^0^^6.25^3.36^8.37^3.60
-~09031~^~0900~^~Apricots, dehydrated (low-moisture), sulfured, stewed~^~APRICOTS,DEHYD (LOW-MOISTURE),SULFURED,STWD~^^^^^0^^6.25^3.36^8.37^3.60
-~09032~^~0900~^~Apricots, dried, sulfured, uncooked~^~APRICOTS,DRIED,SULFURED,UNCKD~^^^~Y~^^0^^6.25^3.36^8.37^3.60
-~09033~^~0900~^~Apricots, dried, sulfured, stewed, without added sugar~^~APRICOTS,DRIED,SULFURED,STWD,WO/ SUGAR~^^^~Y~^^0^^6.25^3.36^8.37^3.60
-~09034~^~0900~^~Apricots, dried, sulfured, stewed, with added sugar~^~APRICOTS,DRIED,SULFURED,STWD,W/ SUGAR~^^^^^0^^6.25^3.36^8.37^3.60
-~09035~^~0900~^~Apricots, frozen, sweetened~^~APRICOTS,FROZEN,SWEETENED~^^^^^0^^6.25^3.36^8.37^3.78
-~09036~^~0900~^~Apricot nectar, canned, with added ascorbic acid~^~APRICOT NECTAR,CND,W/ ADDED VIT C~^^^~Y~^^0^^6.25^3.36^8.37^3.78
-~09037~^~0900~^~Avocados, raw, all commercial varieties~^~AVOCADOS,RAW,ALL COMM VAR~^^^~Y~^~Seed and skin~^26^~Persea americana~^6.25^3.36^8.37^3.60
-~09038~^~0900~^~Avocados, raw, California~^~AVOCADOS,RAW,CALIFORNIA~^^^^~Seed and skin~^33^~Persea americana~^6.25^3.36^8.37^3.60
-~09039~^~0900~^~Avocados, raw, Florida~^~AVOCADOS,RAW,FLORIDA~^^^^~Seed and skin~^33^~Persea americana~^6.25^3.36^8.37^3.60
-~09040~^~0900~^~Bananas, raw~^~BANANAS,RAW~^^^~Y~^~Skin~^36^~Musa acuminata Colla~^6.25^3.36^8.37^3.60
-~09041~^~0900~^~Bananas, dehydrated, or banana powder~^~BANANAS,DEHYD,OR BANANA PDR~^^^~Y~^^0^^6.25^3.36^8.37^3.60
-~09042~^~0900~^~Blackberries, raw~^~BLACKBERRIES,RAW~^^^~Y~^~Caps and spoiled berries~^4^~Rubus spp.~^6.25^3.36^8.37^3.60
-~09043~^~0900~^~Blackberry juice, canned~^~BLACKBERRY JUC,CND~^^^~Y~^^0^^^^^
-~09044~^~0900~^~Cherries, tart, dried, sweetened (Includes foods for USDA's Food Distribution Program)~^~CHERRIES,TART,DRIED,SWTND~^^^~Y~^^0^^^^^
-~09046~^~0900~^~Blackberries, canned, heavy syrup, solids and liquids~^~BLACKBERRIES,CND,HVY SYRUP,SOL&LIQUIDS~^^^~Y~^^0^^6.25^3.36^8.37^3.75
-~09048~^~0900~^~Blackberries, frozen, unsweetened~^~BLACKBERRIES,FRZ,UNSWTND~^^^~Y~^^0^^6.25^3.36^8.37^3.60
-~09050~^~0900~^~Blueberries, raw~^~BLUEBERRIES,RAW~^^^~Y~^~Stems and green or spoiled berries~^5^~Vaccinium spp.~^6.25^3.36^8.37^3.60
-~09052~^~0900~^~Blueberries, canned, heavy syrup, solids and liquids~^~BLUEBERRIES,CND,HVY SYRUP,SOL&LIQUIDS~^^^~Y~^^0^^6.25^3.36^8.37^3.75
-~09053~^~0900~^~Blueberries, wild, frozen (Includes foods for USDA's Food Distribution Program)~^~BLUEBERRIES,WILD,FRZ~^^^^^0^^6.25^^^
-~09054~^~0900~^~Blueberries, frozen, unsweetened (Includes foods for USDA's Food Distribution Program)~^~BLUEBERRIES,FRZ,UNSWTND~^^^~Y~^^0^^6.25^3.36^8.37^3.60
-~09055~^~0900~^~Blueberries, frozen, sweetened~^~BLUEBERRIES,FRZ,SWTND~^^^~Y~^^0^^6.25^3.36^8.37^3.75
-~09056~^~0900~^~Boysenberries, canned, heavy syrup~^~BOYSENBERRIES,CND,HVY SYRUP~^^^^^0^~Rubus ursinus var. loganobaccus~^6.25^3.36^8.37^3.75
-~09057~^~0900~^~Boysenberries, frozen, unsweetened~^~BOYSENBERRIES,FRZ,UNSWTND~^^^~Y~^^0^^6.25^3.36^8.37^3.60
-~09059~^~0900~^~Breadfruit, raw~^~BREADFRUIT,RAW~^^^~Y~^~9% core, 13% skin~^22^~Artocarpus altilis~^6.25^3.36^8.37^3.60
-~09060~^~0900~^~Carambola, (starfruit), raw~^~CARAMBOLA,(STARFRUIT),RAW~^^^~Y~^~Seeds and stem end~^3^~Averrhoa carambola~^6.25^3.36^8.37^3.60
-~09061~^~0900~^~Carissa, (natal-plum), raw~^~CARISSA,(NATAL-PLUM),RAW~^^^^~7% seeds, 7% skin~^14^~Carissa macrocarpa~^6.25^3.36^8.37^3.60
-~09062~^~0900~^~Cherimoya, raw~^~CHERIMOYA,RAW~^^^^~Seeds, skin and core~^31^~Annona cherimola~^6.25^3.36^8.37^3.60
-~09063~^~0900~^~Cherries, sour, red, raw~^~CHERRIES,SOUR,RED,RAW~^^^~Y~^~Pits and stems~^10^~Prunus cerasus~^6.25^3.36^8.37^3.60
-~09064~^~0900~^~Cherries, sour, red, canned, water pack, solids and liquids~^~CHERRIES,SOUR,RED,CND,H2O PK,SOL&LIQUIDS~^^^~Y~^^0^^6.25^3.36^8.37^3.60
-~09065~^~0900~^~Cherries, sour, red, canned, light syrup pack, solids and liquids~^~CHERRIES,SOUR,RED,CND,LT SYRUP PK,SOL&LIQUIDS~^^^^^0^^6.25^3.36^8.37^3.71
-~09066~^~0900~^~Cherries, sour, red, canned, heavy syrup pack, solids and liquids~^~CHERRIES,SOUR,RED,CND,HVY SYRUP PK,SOL&LIQUIDS~^^^~Y~^^0^^6.25^3.36^8.37^3.75
-~09067~^~0900~^~Cherries, sour, red, canned, extra heavy syrup pack, solids and liquids~^~CHERRIES,SOUR,RED,CND,EX HVY SYRUP PK,SOL&LIQUIDS~^^^^^0^^6.25^3.36^8.37^3.78
-~09068~^~0900~^~Cherries, sour, red, frozen, unsweetened (Includes foods for USDA's Food Distribution Program)~^~CHERRIES,SOUR,RED,FRZ,UNSWTND~^^^~Y~^^0^^6.25^3.36^8.37^3.60
-~09070~^~0900~^~Cherries, sweet, raw~^~CHERRIES,SWEET,RAW~^^^~Y~^~Pits and stems~^8^~Prunus avium~^6.25^3.36^8.37^3.60
-~09071~^~0900~^~Cherries, sweet, canned, water pack, solids and liquids~^~CHERRIES,SWT,CND,H2O PK,SOL&LIQUIDS~^^^~Y~^~Pits~^8^^6.25^3.36^8.37^3.60
-~09072~^~0900~^~Cherries, sweet, canned, juice pack, solids and liquids~^~CHERRIES,SWT,CND,JUC PK,SOL&LIQUIDS~^^^~Y~^~Pits~^8^^6.25^3.36^8.37^3.70
-~09073~^~0900~^~Cherries, sweet, canned, light syrup pack, solids and liquids~^~CHERRIES,SWT,CND,LT SYRUP PK,SOL&LIQUIDS~^^^~Y~^~Pits~^8^^6.25^3.36^8.37^3.71
-~09074~^~0900~^~Cherries, sweet, canned, pitted, heavy syrup pack, solids and liquids~^~CHERRIES,SWT,CND,PITTED,HVY SYRUP PK,SOL & LIQUIDS~^^^~Y~^^0^^6.25^3.36^8.37^3.75
-~09075~^~0900~^~Cherries, sweet, canned, extra heavy syrup pack, solids and liquids~^~CHERRIES,SWT,CND,EX HVY SYRUP PK,SOL&LIQUIDS~^^^^~Pits~^8^^6.25^3.36^8.37^3.78
-~09077~^~0900~^~Crabapples, raw~^~CRABAPPLES,RAW~^^^^~Core and stems~^8^~Malus spp.~^6.25^3.36^8.37^3.60
-~09078~^~0900~^~Cranberries, raw~^~CRANBERRIES,RAW~^^^~Y~^~Stems and spoiled berries~^2^~Vaccinium macrocarpon~^6.25^3.36^8.37^3.60
-~09079~^~0900~^~Cranberries, dried, sweetened (Includes foods for USDA's Food Distribution Program)~^~CRANBERRIES,DRIED,SWTND~^^^~Y~^^0^^^3.36^8.37^3.60
-~09081~^~0900~^~Cranberry sauce, canned, sweetened~^~CRANBERRY SAU,CND,SWTND~^^^~Y~^^0^^6.25^3.36^8.37^3.84
-~09082~^~0900~^~Cranberry-orange relish, canned~^~CRANBERRY-ORANGE RELISH,CND~^^^^^0^^6.25^3.36^8.37^3.82
-~09083~^~0900~^~Currants, european black, raw~^~CURRANTS,EUROPEAN BLACK,RAW~^^^^~Stems~^2^~Ribes nigrum~^6.25^3.36^8.37^3.60
-~09084~^~0900~^~Currants, red and white, raw~^~CURRANTS,RED&WHITE,RAW~^^^~Y~^~Stems~^2^~Ribes rubrum~^6.25^3.36^8.37^3.60
-~09085~^~0900~^~Currants, zante, dried~^~CURRANTS,ZANTE,DRIED~^~raisin~^^~Y~^^0^~Vitis vinifera~^6.25^3.36^8.37^3.60
-~09086~^~0900~^~Custard-apple, (bullock's-heart), raw~^~CUSTARD-APPLE,(BULLOCK'S-HEART),RAW~^^^^~Seeds and skin~^42^~Annona reticulata~^6.25^3.36^8.37^3.60
-~09087~^~0900~^~Dates, deglet noor~^~DATES,DEGLET NOOR~^^^~Y~^~Pits~^10^~Phoenix dactylifera~^6.25^3.36^8.37^3.60
-~09088~^~0900~^~Elderberries, raw~^~ELDERBERRIES,RAW~^^^^^0^~Sambucus spp.~^6.25^3.36^8.37^3.60
-~09089~^~0900~^~Figs, raw~^~FIGS,RAW~^^^~Y~^~Stems~^1^~Ficus carica~^6.25^3.36^8.37^3.60
-~09090~^~0900~^~Figs, canned, water pack, solids and liquids~^~FIGS,CND,H2O PK,SOL&LIQUIDS~^^^~Y~^^0^^6.25^3.36^8.37^3.60
-~09091~^~0900~^~Figs, canned, light syrup pack, solids and liquids~^~FIGS,CND,LT SYRUP PK,SOL&LIQUIDS~^^^~Y~^^0^^6.25^3.36^8.37^3.71
-~09092~^~0900~^~Figs, canned, heavy syrup pack, solids and liquids~^~FIGS,CND,HVY SYRUP PK,SOL&LIQUIDS~^^^~Y~^^0^^6.25^3.36^8.37^3.75
-~09093~^~0900~^~Figs, canned, extra heavy syrup pack, solids and liquids~^~FIGS,CND,EX HVY SYRUP PK,SOL&LIQUIDS~^^^^^0^^6.25^3.36^8.37^3.78
-~09094~^~0900~^~Figs, dried, uncooked~^~FIGS,DRIED,UNCOOKED~^^^~Y~^~Stems~^4^^6.25^3.36^8.37^3.60
-~09095~^~0900~^~Figs, dried, stewed~^~FIGS,DRIED,STEWED~^^^~Y~^^0^^6.25^3.36^8.37^3.60
-~09096~^~0900~^~Fruit cocktail, (peach and pineapple and pear and grape and cherry), canned, water pack, solids and liquids~^~FRUIT COCKTAIL,CND,H2O PK,SOL&LIQUIDS~^^^~Y~^^0^^6.25^3.36^8.37^3.60
-~09097~^~0900~^~Fruit cocktail, (peach and pineapple and pear and grape and cherry), canned, juice pack, solids and liquids~^~FRUIT COCKTAIL,CND,JUC PK,SOL&LIQUIDS~^^^~Y~^^0^^6.25^3.36^8.37^3.70
-~09098~^~0900~^~Fruit cocktail, (peach and pineapple and pear and grape and cherry), canned, extra light syrup, solids and liquids~^~FRUIT COCKTAIL,CND,EX LT SYRUP,SOL&LIQUIDS~^^^^^0^^6.25^3.36^8.37^3.69
-~09099~^~0900~^~Fruit cocktail, (peach and pineapple and pear and grape and cherry), canned, light syrup, solids and liquids~^~FRUIT COCKTAIL,CND,LT SYRUP,SOL&LIQUIDS~^^^~Y~^^0^^6.25^3.36^8.37^3.71
-~09100~^~0900~^~Fruit cocktail, (peach and pineapple and pear and grape and cherry), canned, heavy syrup, solids and liquids~^~FRUIT COCKTAIL,CND,HVY SYRUP,SOL&LIQUIDS~^^^~Y~^^0^^6.25^3.36^8.37^3.75
-~09101~^~0900~^~Fruit cocktail, (peach and pineapple and pear and grape and cherry), canned, extra heavy syrup, solids and liquids~^~FRUIT COCKTAIL,CND,EX HVY SYRUP,SOL&LIQUIDS~^^^^^0^^6.25^3.36^8.37^3.78
-~09102~^~0900~^~Fruit salad, (peach and pear and apricot and pineapple and cherry), canned, water pack, solids and liquids~^~FRUIT SALAD,CND,H2O PK,SOL&LIQUIDS~^^^^^0^^6.25^3.36^8.37^3.60
-~09103~^~0900~^~Fruit salad, (peach and pear and apricot and pineapple and cherry), canned, juice pack, solids and liquids~^~FRUIT SALAD,CND,JUC PK,SOL&LIQUIDS~^^^^^0^^6.25^3.36^8.37^3.70
-~09104~^~0900~^~Fruit salad, (peach and pear and apricot and pineapple and cherry), canned, light syrup, solids and liquids~^~FRUIT SALAD,CND,LT SYRUP,SOL&LIQUIDS~^^^^^0^^6.25^3.36^8.37^3.71
-~09106~^~0900~^~Fruit salad, (peach and pear and apricot and pineapple and cherry), canned, extra heavy syrup, solids and liquids~^~FRUIT SALAD,CND,EX HVY SYRUP,SOL&LIQUIDS~^^^^^0^^6.25^3.36^8.37^3.78
-~09107~^~0900~^~Gooseberries, raw~^~GOOSEBERRIES,RAW~^^^^^0^~Ribes spp.~^6.25^3.36^8.37^3.60
-~09109~^~0900~^~Gooseberries, canned, light syrup pack, solids and liquids~^~GOOSEBERRIES,CND,LT SYRUP PK,SOL&LIQUIDS~^^^^^0^^6.25^3.36^8.37^3.71
-~09110~^~0900~^~Goji berries, dried~^~GOJI BERRIES,DRIED~^~wolfberries~^^^^0^~Lycium barbarum L.~^^^^
-~09111~^~0900~^~Grapefruit, raw, pink and red and white, all areas~^~GRAPEFRUIT,RAW,PINK&RED&WHITE,ALL AREAS~^^^~Y~^~Peel, seeds, core, and membrane~^50^~Citrus paradisi~^6.25^3.36^8.37^3.60
-~09112~^~0900~^~Grapefruit, raw, pink and red, all areas~^~GRAPEFRUIT,RAW,PINK&RED,ALL AREAS~^^^^~Peel, seeds, core, and membrane~^49^~Citrus paradisi~^6.25^3.36^8.37^3.60
-~09113~^~0900~^~Grapefruit, raw, pink and red, California and Arizona~^~GRAPEFRUIT,RAW,PINK&RED,CALIFORNIA&ARIZONA~^^^^~Peel, seeds, core, and membrane~^49^~Citrus paradisi~^6.25^3.36^8.37^3.60
-~09114~^~0900~^~Grapefruit, raw, pink and red, Florida~^~GRAPEFRUIT,RAW,PINK & RED,FLORIDA~^^^^~Peel, seeds, core, and membrane~^49^~Citrus paradisi~^6.25^3.36^8.37^3.60
-~09116~^~0900~^~Grapefruit, raw, white, all areas~^~GRAPEFRUIT,RAW,WHITE,ALL AREAS~^^^~Y~^~Peel, seeds, core, and membrane~^51^~Citrus paradisi~^6.25^3.36^8.37^3.60
-~09117~^~0900~^~Grapefruit, raw, white, California~^~GRAPEFRUIT,RAW,WHITE,CALIFORNIA~^^^^~Peel, seeds, core, and membrane~^51^~Citrus paradisi~^6.25^3.36^8.37^3.60
-~09118~^~0900~^~Grapefruit, raw, white, Florida~^~GRAPEFRUIT,RAW,WHITE,FLORIDA~^^^^~Peel, seeds, core, and membrane~^51^~Citrus paradisi~^6.25^3.36^8.37^3.60
-~09119~^~0900~^~Grapefruit, sections, canned, water pack, solids and liquids~^~GRAPEFRUIT,SECTIONS,CND,H2O PK,SOL&LIQUIDS~^^^~Y~^^0^^6.25^3.36^8.37^3.60
-~09120~^~0900~^~Grapefruit, sections, canned, juice pack, solids and liquids~^~GRAPEFRUIT,SECTIONS,CND,JUC PK,SOL&LIQUIDS~^^^~Y~^^0^^6.25^3.36^8.37^3.70
-~09121~^~0900~^~Grapefruit, sections, canned, light syrup pack, solids and liquids~^~GRAPEFRUIT,SECTIONS,CND,LT SYRUP PK,SOL&LIQUIDS~^^^~Y~^^0^^6.25^3.36^8.37^3.71
-~09123~^~0900~^~Grapefruit juice, white, canned or bottled, unsweetened~^~GRAPEFRUIT JUC,WHITE,CND OR BTLD,UNSWTND~^^^~Y~^^0^^6.25^3.36^8.37^3.92
-~09124~^~0900~^~Grapefruit juice, white, canned, sweetened~^~GRAPEFRUIT JUC,WHITE,CND,SWTND~^^^^^0^^6.25^3.36^8.37^3.92
-~09125~^~0900~^~Grapefruit juice, white, frozen concentrate, unsweetened, undiluted~^~GRAPEFRUIT JUC,WHITE,FRZ CONC,UNSWTND,UNDIL~^^^~Y~^^0^^6.25^3.36^8.37^3.92
-~09126~^~0900~^~Grapefruit juice, white, frozen concentrate, unsweetened, diluted with 3 volume water~^~GRAPEFRUIT JUC,WHITE,FRZ CONC,UNSWTND,DIL W/ 3 VOLUME H2O~^^^~Y~^^0^^6.25^3.36^8.37^3.92
-~09127~^~0900~^~Grapefruit juice, pink or red, with added calcium~^~GRAPEFRUIT JUC,PINK OR RED,W/ ADDED CA~^^^~Y~^^0^^^^^
-~09128~^~0900~^~Grapefruit juice, white, raw~^~GRAPEFRUIT JUC,WHITE,RAW~^^^~Y~^^0^^6.25^3.36^8.37^3.92
-~09129~^~0900~^~Grapes, muscadine, raw~^~Grapes, muscadine, raw~^^^^~Seeds~^4^~Vitis rotundifolia~^6.25^3.36^8.37^3.60
-~09130~^~0900~^~Grape juice, canned or bottled, unsweetened, with added ascorbic acid~^~GRAPE JUC,CND OR BTLD,UNSWTND,W/ ADDED VIT C~^^^~Y~^^0^^6.25^3.36^8.37^3.92
-~09131~^~0900~^~Grapes, american type (slip skin), raw~^~GRAPES,AMERICAN TYPE (SLIP SKN),RAW~^^^~Y~^~6% seeds, 34% skin, 2% stems~^42^~Vitis spp.~^6.25^3.36^8.37^3.60
-~09132~^~0900~^~Grapes, red or green (European type, such as Thompson seedless), raw~^~GRAPES,RED OR GRN (EURO TYPE,SUCH AS THOMPSON SEEDLESS),RAW~^^^~Y~^~Stems~^4^~Vitis vinifera~^6.25^3.36^8.37^3.60
-~09133~^~0900~^~Grapes, canned, thompson seedless, water pack, solids and liquids~^~GRAPES,CND,THOMPSON SEEDLESS,H2O PK,SOL&LIQUIDS~^^^~Y~^^0^^6.25^3.36^8.37^3.60
-~09134~^~0900~^~Grapes, canned, thompson seedless, heavy syrup pack, solids and liquids~^~GRAPES,CND,THOMPSON SEEDLESS,HVY SYRUP PK,SOL&LIQUIDS~^^^~Y~^^0^^6.25^3.36^8.37^3.75
-~09135~^~0900~^~Grape juice, canned or bottled, unsweetened, without added ascorbic acid~^~GRAPE JUC,CND OR BTLD,UNSWTND,WO/ ADDED VIT C~^^^~Y~^^0^^6.25^3.36^8.37^3.92
-~09138~^~0900~^~Groundcherries, (cape-gooseberries or poha), raw~^~GROUNDCHERRIES,(CAPE-GOOSEBERRIES OR POHA),RAW~^^^^~Husks~^6^~Physalis spp.~^6.25^3.36^8.37^3.60
-~09139~^~0900~^~Guavas, common, raw~^~GUAVAS,COMMON,RAW~^^^~Y~^~Skin~^22^~Psidium guajava~^6.25^3.36^8.37^3.60
-~09140~^~0900~^~Guavas, strawberry, raw~^~GUAVAS,STRAWBERRY,RAW~^^^^~Seeds, stem, and blossom end~^15^~Psidium cattleianum~^6.25^3.36^8.37^3.60
-~09143~^~0900~^~Guava sauce, cooked~^~GUAVA SAUCE,COOKED~^^^~Y~^^0^^6.25^3.36^8.37^3.60
-~09144~^~0900~^~Jackfruit, raw~^~JACKFRUIT,RAW~^^^^~Seeds and skin~^72^~Artocarpus heterophyllus~^6.25^3.36^8.37^3.60
-~09145~^~0900~^~Java-plum, (jambolan), raw~^~JAVA-PLUM,(JAMBOLAN),RAW~^^^^~Seed~^19^~Syzygium cumini~^6.25^3.36^8.37^3.60
-~09146~^~0900~^~Jujube, raw~^~JUJUBE,RAW~^^^^~Seeds~^7^~Ziziphus jujuba~^6.25^3.36^8.37^3.60
-~09147~^~0900~^~Jujube, Chinese, fresh, dried~^~JUJUBE,CHINESE,FRSH,DRIED~^^^^~Seeds~^11^^6.25^3.36^8.37^3.60
-~09148~^~0900~^~Kiwifruit, green, raw~^~KIWIFRUIT,GRN,RAW~^~Chinese gooseberry~^^~Y~^~Skin~^24^~Actinidia deliciosa~^6.25^3.36^8.37^3.60
-~09149~^~0900~^~Kumquats, raw~^~KUMQUATS,RAW~^^^~Y~^~Seeds~^7^~Fortunella spp.~^6.25^3.36^8.37^3.60
-~09150~^~0900~^~Lemons, raw, without peel~^~LEMONS,RAW,WITHOUT PEEL~^^^~Y~^~45% peel, 2% seeds~^47^~Citrus limon~^6.25^3.36^8.37^2.48
-~09152~^~0900~^~Lemon juice, raw~^~LEMON JUICE,RAW~^^^~Y~^^0^^6.25^3.36^8.37^2.70
-~09153~^~0900~^~Lemon juice from concentrate, canned or bottled~^~LEMON JUC FROM CONC,CND OR BTLD~^^^~Y~^^0^^6.25^3.36^8.37^2.70
-~09156~^~0900~^~Lemon peel, raw~^~LEMON PEEL,RAW~^^^~Y~^^0^^6.25^^^
-~09159~^~0900~^~Limes, raw~^~LIMES,RAW~^^^~Y~^~Peel and seeds~^16^~Citrus latifolia~^6.25^3.36^8.37^2.48
-~09160~^~0900~^~Lime juice, raw~^~LIME JUICE,RAW~^^^~Y~^^0^^6.25^3.36^8.37^2.70
-~09161~^~0900~^~Lime juice, canned or bottled, unsweetened~^~LIME JUC,CND OR BTLD,UNSWTND~^^^~Y~^^0^^6.25^3.36^8.37^2.70
-~09163~^~0900~^~Blueberries, dried, sweetened~^~BLUEBERRIES,DRIED,SWTND~^^^~Y~^^0^^^3.36^8.37^3.60
-~09164~^~0900~^~Litchis, raw~^~LITCHIS,RAW~^~lychee~^^~Y~^~Shell and seeds~^40^~Litchi chinensis~^6.25^3.36^8.37^3.60
-~09165~^~0900~^~Litchis, dried~^~LITCHIS,DRIED~^~lychee~^^~Y~^~Shell and seeds~^46^^6.25^3.36^8.37^3.60
-~09167~^~0900~^~Loganberries, frozen~^~LOGANBERRIES,FROZEN~^^^~Y~^^0^~Rubus ursinus var. loganobaccus~^6.25^3.36^8.37^3.60
-~09172~^~0900~^~Longans, raw~^~LONGANS,RAW~^^^^~Shell and seeds~^47^~Dimocarpus longan~^6.25^3.36^8.37^3.60
-~09173~^~0900~^~Longans, dried~^~LONGANS,DRIED~^^^^~Shell and seeds~^64^^6.25^3.36^8.37^3.60
-~09174~^~0900~^~Loquats, raw~^~LOQUATS,RAW~^^^^~Seeds and skin~^35^~Eriobotrya japonica~^6.25^3.36^8.37^3.60
-~09175~^~0900~^~Mammy-apple, (mamey), raw~^~MAMMY-APPLE,(MAMEY),RAW~^^^^~Seeds and skin~^40^~Mammea americana~^6.25^3.36^8.37^3.60
-~09176~^~0900~^~Mangos, raw~^~MANGOS,RAW~^^^~Y~^~Seeds and skin~^29^~Mangifera indica~^6.25^3.36^8.37^3.60
-~09177~^~0900~^~Mangosteen, canned, syrup pack~^~MANGOSTEEN,CND,SYRUP PK~^^^^^0^~Garcinia mangostana~^6.25^3.36^8.37^3.75
-~09178~^~0900~^~Mango, dried, sweetened~^~MANGO,DRIED,SWTND~^^^~Y~^^0^^^^^
-~09181~^~0900~^~Melons, cantaloupe, raw~^~MELONS,CANTALOUPE,RAW~^^^~Y~^~9% cavity contents, 1% cutting loss, 39% rind~^49^~Cucumis melo~^6.25^3.36^8.37^3.60
-~09183~^~0900~^~Melons, casaba, raw~^~MELONS,CASABA,RAW~^^^~Y~^~11% cavity contents, 29% rind~^40^~Cucumis melo~^6.25^3.36^8.37^3.60
-~09184~^~0900~^~Melons, honeydew, raw~^~MELONS,HONEYDEW,RAW~^^^~Y~^~5% cavity contents, rind 49%~^54^~Cucumis melo~^6.25^3.36^8.37^3.60
-~09185~^~0900~^~Melon balls, frozen~^~MELON BALLS,FROZEN~^^^^^0^^6.25^3.36^8.37^3.60
-~09190~^~0900~^~Mulberries, raw~^~MULBERRIES,RAW~^^^~Y~^^0^~Morus nigra~^6.25^3.36^8.37^3.60
-~09191~^~0900~^~Nectarines, raw~^~NECTARINES,RAW~^^^~Y~^~Pit~^9^~Prunus persica var. nucipersica~^6.25^3.36^8.37^3.60
-~09192~^~0900~^~Oheloberries, raw~^~OHELOBERRIES,RAW~^^^^^0^~Vaccinium reticulatum~^6.25^3.36^8.37^3.60
-~09193~^~0900~^~Olives, ripe, canned (small-extra large)~^~OLIVES,RIPE,CND (SMALL-EXTRA LRG)~^^^~Y~^^0^~Olea europaea~^6.25^3.36^8.37^3.60
-~09194~^~0900~^~Olives, ripe, canned (jumbo-super colossal)~^~OLIVES,RIPE,CND (JUMBO-SUPER COLOSSAL)~^^^~Y~^^0^^6.25^3.36^8.37^3.60
-~09195~^~0900~^~Olives, pickled, canned or bottled, green~^~OLIVES,PICKLED,CND OR BTLD,GRN~^^^~Y~^^0^^6.25^3.36^8.37^3.60
-~09200~^~0900~^~Oranges, raw, all commercial varieties~^~ORANGES,RAW,ALL COMM VAR~^^^~Y~^~Peel and seeds~^27^~Citrus sinensis~^6.25^3.36^8.37^3.60
-~09201~^~0900~^~Oranges, raw, California, valencias~^~ORANGES,RAW,CALIFORNIA,VALENCIAS~^^^^~Peel and seeds~^25^~Citrus sinensis~^6.25^3.36^8.37^3.60
-~09202~^~0900~^~Oranges, raw, navels (Includes foods for USDA's Food Distribution Program)~^~ORANGES,RAW,NAVELS~^^^^~Peel and navel~^32^~Citrus sinensis~^6.25^3.36^8.37^3.60
-~09203~^~0900~^~Oranges, raw, Florida~^~ORANGES,RAW,FLORIDA~^^^^~Peel and seeds~^26^~Citrus sinensis~^6.25^3.36^8.37^3.60
-~09205~^~0900~^~Oranges, raw, with peel~^~ORANGES,RAW,WITH PEEL~^^^^~Seeds~^1^~Citrus sinensis~^6.25^3.36^8.37^3.60
-~09206~^~0900~^~Orange juice, raw (Includes foods for USDA's Food Distribution Program)~^~ORANGE JUICE,RAW~^^^~Y~^^0^^6.25^3.36^8.37^3.92
-~09207~^~0900~^~Orange juice, canned, unsweetened~^~ORANGE JUC,CND,UNSWTND~^^^~Y~^^0^^6.25^3.36^8.37^3.92
-~09209~^~0900~^~Orange juice, chilled, includes from concentrate~^~ORANGE JUC,CHILLED,INCL FROM CONC~^^^~Y~^^0^^6.25^3.36^8.37^3.92
-~09210~^~0900~^~Orange juice, chilled, includes from concentrate, with added calcium and vitamin D~^~ORANGE JUC,CHILLED,INCL FROM CONC,W/ ADDED CA & VITAMIN D~^^^~Y~^^0^^6.25^3.36^8.37^3.92
-~09211~^~0900~^~Orange juice, chilled, includes from concentrate, with added calcium~^~ORANGE JUC,CHILLED,INCL FROM CONC,W/ ADDED CA~^^^~Y~^^0^^6.25^3.36^8.37^3.92
-~09212~^~0900~^~Orange juice, frozen concentrate, unsweetened, diluted with 3 volume water, with added calcium~^~ORANGE JUC,FRZ CONC,UNSWTND,DIL W/ 3 VOLUME H2O,W/ ADDED CA~^^^^^0^^^^^
-~09213~^~0900~^~Orange juice, frozen concentrate, unsweetened, undiluted, with added calcium~^~ORANGE JUC,FRZ CONC,UNSWTND,UNDIL,W/ ADDED CA~^^^~Y~^^0^^^^^
-~09214~^~0900~^~Orange juice, frozen concentrate, unsweetened, undiluted~^~ORANGE JUC,FRZ CONC,UNSWTND,UNDIL~^^^~Y~^^0^^6.25^3.36^8.37^3.92
-~09215~^~0900~^~Orange juice, frozen concentrate, unsweetened, diluted with 3 volume water~^~ORANGE JUC,FRZ CONC,UNSWTND,DIL W/3 VOLUME H2O~^^^~Y~^^0^^6.25^3.36^8.37^3.92
-~09216~^~0900~^~Orange peel, raw~^~ORANGE PEEL,RAW~^^^^^0^^6.25^3.36^8.37^3.60
-~09217~^~0900~^~Orange-grapefruit juice, canned or bottled, unsweetened~^~ORANGE-GRAPEFRUIT JUC,CND OR BTLD,UNSWTND~^^^^^0^^6.25^3.36^8.37^3.92
-~09218~^~0900~^~Tangerines, (mandarin oranges), raw~^~TANGERINES,(MANDARIN ORANGES),RAW~^^^~Y~^~Peel and seeds~^26^~Citrus reticulata~^6.25^3.36^8.37^3.60
-~09219~^~0900~^~Tangerines, (mandarin oranges), canned, juice pack~^~TANGERINES,(MANDARIN ORANGES),CND,JUC PK~^^^~Y~^^0^^6.25^3.36^8.37^3.70
-~09220~^~0900~^~Tangerines, (mandarin oranges), canned, light syrup pack~^~TANGERINES,(MANDARIN ORANGES),CND,LT SYRUP PK~^^^~Y~^^0^^6.25^3.36^8.37^3.71
-~09221~^~0900~^~Tangerine juice, raw~^~TANGERINE JUICE,RAW~^^^~Y~^^0^^6.25^3.36^8.37^3.92
-~09226~^~0900~^~Papayas, raw~^~PAPAYAS,RAW~^^^~Y~^~Seeds and skin~^38^~Carica papaya~^6.25^3.36^8.37^3.60
-~09228~^~0900~^~Papaya, canned, heavy syrup, drained~^~PAPAYA,CND,HVY SYRUP,DRND~^^^^^0^^6.25^3.36^8.37^3.60
-~09229~^~0900~^~Papaya nectar, canned~^~PAPAYA NECTAR,CANNED~^^^~Y~^^0^^6.25^3.36^8.37^3.80
-~09231~^~0900~^~Passion-fruit, (granadilla), purple, raw~^~PASSION-FRUIT,(GRANADILLA),PURPLE,RAW~^^^~Y~^~Shell~^48^~Passiflora edulis~^6.25^3.36^8.37^3.60
-~09232~^~0900~^~Passion-fruit juice, purple, raw~^~PASSION-FRUIT JUC,PURPLE,RAW~^^^~Y~^^0^^6.25^3.36^8.37^3.60
-~09233~^~0900~^~Passion-fruit juice, yellow, raw~^~PASSION-FRUIT JUC,YEL,RAW~^^^~Y~^^0^~Passiflora edulis f. flavicarpa~^6.25^3.36^8.37^3.92
-~09236~^~0900~^~Peaches, yellow, raw~^~PEACHES,YEL,RAW~^^^~Y~^~Pit~^4^~Prunus persica~^6.25^3.36^8.37^3.60
-~09237~^~0900~^~Peaches, canned, water pack, solids and liquids~^~PEACHES,CND,H2O PK,SOL&LIQUIDS~^^^~Y~^^0^^6.25^3.36^8.37^3.60
-~09238~^~0900~^~Peaches, canned, juice pack, solids and liquids~^~PEACHES,CND,JUC PK,SOL&LIQUIDS~^^^~Y~^^0^^6.25^3.36^8.37^3.70
-~09239~^~0900~^~Peaches, canned, extra light syrup, solids and liquids (Includes foods for USDA's Food Distribution Program)~^~PEACHES,CND,EX LT SYRUP,SOL&LIQUIDS~^^^^^0^^6.25^3.36^8.37^3.69
-~09240~^~0900~^~Peaches, canned, light syrup pack, solids and liquids~^~PEACHES,CND,LT SYRUP PK,SOL&LIQUIDS~^^^~Y~^^0^^6.25^3.36^8.37^3.71
-~09241~^~0900~^~Peaches, canned, heavy syrup pack, solids and liquids~^~PEACHES,CND,HVY SYRUP PK,SOL&LIQUIDS~^^^~Y~^^0^^6.25^3.36^8.37^3.75
-~09242~^~0900~^~Peaches, canned, extra heavy syrup pack, solids and liquids~^~PEACHES,CND,EX HVY SYRUP PK,SOL&LIQUIDS~^^^^^0^^6.25^3.36^8.37^3.78
-~09243~^~0900~^~Peaches, spiced, canned, heavy syrup pack, solids and liquids~^~PEACHES,SPICED,CND,HVY SYRUP PK,SOL&LIQUIDS~^^^~Y~^~Pits~^4^^6.25^3.36^8.37^3.75
-~09244~^~0900~^~Peaches, dehydrated (low-moisture), sulfured, uncooked~^~PEACHES,DEHYD (LOW-MOISTURE),SULFURED,UNCKD~^^^^^0^^6.25^3.36^8.37^3.60
-~09245~^~0900~^~Peaches, dehydrated (low-moisture), sulfured, stewed~^~PEACHES,DEHYD (LOW-MOISTURE),SULFURED,STWD~^^^^^0^^6.25^3.36^8.37^3.60
-~09246~^~0900~^~Peaches, dried, sulfured, uncooked~^~PEACHES,DRIED,SULFURED,UNCKD~^^^~Y~^^0^^6.25^3.36^8.37^3.60
-~09247~^~0900~^~Peaches, dried, sulfured, stewed, without added sugar~^~PEACHES,DRIED,SULFURED,STWD,WO/ SUGAR~^^^~Y~^^0^^6.25^3.36^8.37^3.60
-~09248~^~0900~^~Peaches, dried, sulfured, stewed, with added sugar~^~PEACHES,DRIED,SULFURED,STWD,W/ SUGAR~^^^^^0^^6.25^3.36^8.37^3.60
-~09250~^~0900~^~Peaches, frozen, sliced, sweetened~^~PEACHES,FRZ,SLICED,SWTND~^^^~Y~^^0^^6.25^3.36^8.37^3.78
-~09251~^~0900~^~Peach nectar, canned, with sucralose, without added ascorbic acid~^~PEACH NECTAR,CND,W/ SUCRALOSE,WO/ ADDED VIT C~^^^~Y~^^0^^6.25^3.36^8.37^3.79
-~09252~^~0900~^~Pears, raw~^~PEARS,RAW~^^^~Y~^~Stem, core and seeds~^10^~Pyrus communis~^6.25^3.36^8.37^3.60
-~09253~^~0900~^~Pears, canned, water pack, solids and liquids~^~PEARS,CND,H2O PK,SOL&LIQUIDS~^^^~Y~^^0^^6.25^3.36^8.37^3.60
-~09254~^~0900~^~Pears, canned, juice pack, solids and liquids~^~PEARS,CND,JUC PK,SOL&LIQUIDS~^^^~Y~^^0^^6.25^3.36^8.37^3.70
-~09255~^~0900~^~Pears, canned, extra light syrup pack, solids and liquids (Includes foods for USDA's Food Distribution Program)~^~PEARS,CND,EX LT SYRUP PK,SOL&LIQUIDS~^^^^^0^^6.25^3.36^8.37^3.69
-~09256~^~0900~^~Pears, canned, light syrup pack, solids and liquids~^~PEARS,CND,LT SYRUP PK,SOL&LIQUIDS~^^^~Y~^^0^^6.25^3.36^8.37^3.71
-~09257~^~0900~^~Pears, canned, heavy syrup pack, solids and liquids~^~PEARS,CND,HVY SYRUP PK,SOL&LIQUIDS~^^^~Y~^^0^^6.25^3.36^8.37^3.75
-~09258~^~0900~^~Pears, canned, extra heavy syrup pack, solids and liquids~^~PEARS,CND,EX HVY SYRUP PK,SOL&LIQUIDS~^^^^^0^^6.25^3.36^8.37^3.78
-~09259~^~0900~^~Pears, dried, sulfured, uncooked~^~PEARS,DRIED,SULFURED,UNCKD~^^^~Y~^^0^^6.25^3.36^8.37^3.60
-~09260~^~0900~^~Pears, dried, sulfured, stewed, without added sugar~^~PEARS,DRIED,SULFURED,STWD,WO/ SUGAR~^^^~Y~^^0^^6.25^3.36^8.37^3.60
-~09261~^~0900~^~Pears, dried, sulfured, stewed, with added sugar~^~PEARS,DRIED,SULFURED,STWD,W/ SUGAR~^^^^^0^^6.25^3.36^8.37^3.60
-~09262~^~0900~^~Pear nectar, canned, without added ascorbic acid~^~PEAR NECTAR,CND,WO/ VIT C~^^^~Y~^^0^^6.25^3.36^8.37^3.75
-~09263~^~0900~^~Persimmons, japanese, raw~^~PERSIMMONS,JAPANESE,RAW~^^^~Y~^~2% calyx, 14% skin~^16^~Diospyros kaki~^6.25^3.36^8.37^3.60
-~09264~^~0900~^~Persimmons, japanese, dried~^~PERSIMMONS,JAPANESE,DRIED~^^^^~Stems~^8^^6.25^3.36^8.37^3.60
-~09265~^~0900~^~Persimmons, native, raw~^~PERSIMMONS,NATIVE,RAW~^^^^~2% calyx, 16% seeds~^18^~Diospyros virginiana~^6.25^3.36^8.37^3.60
-~09266~^~0900~^~Pineapple, raw, all varieties~^~PINEAPPLE,RAW,ALL VAR~^^^~Y~^~8% core, 16% crown, 26% parings~^49^~Ananas comosus~^6.25^3.36^8.37^3.60
-~09267~^~0900~^~Pineapple, canned, water pack, solids and liquids~^~PINEAPPLE,CND,H2O PK,SOL&LIQUIDS~^^^~Y~^^0^^6.25^3.36^8.37^3.60
-~09268~^~0900~^~Pineapple, canned, juice pack, solids and liquids~^~PINEAPPLE,CND,JUC PK,SOL&LIQUIDS~^^^~Y~^^0^^6.25^3.36^8.37^3.70
-~09269~^~0900~^~Pineapple, canned, light syrup pack, solids and liquids~^~PINEAPPLE,CND,LT SYRUP PK,SOL&LIQUIDS~^^^~Y~^^0^^6.25^3.36^8.37^3.71
-~09270~^~0900~^~Pineapple, canned, heavy syrup pack, solids and liquids~^~PINEAPPLE,CND,HVY SYRUP PK,SOL&LIQUIDS~^^^~Y~^^0^^6.25^3.36^8.37^3.75
-~09271~^~0900~^~Pineapple, canned, extra heavy syrup pack, solids and liquids~^~PINEAPPLE,CND,EX HVY SYRUP PK,SOL&LIQUIDS~^^^^^0^^6.25^3.36^8.37^3.78
-~09272~^~0900~^~Pineapple, frozen, chunks, sweetened~^~PINEAPPLE,FRZ,CHUNKS,SWTND~^^^~Y~^^0^^6.25^3.36^8.37^3.78
-~09273~^~0900~^~Pineapple juice, canned or bottled, unsweetened, without added ascorbic acid~^~PINEAPPLE JUC,CND OR BTLD,UNSWTND,WO/ ADDED VIT C~^^^~Y~^^0^^6.25^3.36^8.37^3.92
-~09274~^~0900~^~Pineapple juice, frozen concentrate, unsweetened, undiluted~^~PINEAPPLE JUC,FRZ CONC,UNSWTND,UNDIL~^^^^^0^^6.25^3.36^8.37^3.92
-~09275~^~0900~^~Pineapple juice, frozen concentrate, unsweetened, diluted with 3 volume water~^~PINEAPPLE JUC,FRZ CONC,UNSWTND,DIL W/3 VOLUME H2O~^^^^^0^^6.25^3.36^8.37^3.92
-~09276~^~0900~^~Pitanga, (surinam-cherry), raw~^~PITANGA,(SURINAM-CHERRY),RAW~^^^^~Seed, stem, and blossom end~^12^~Eugenia uniflora~^6.25^3.36^8.37^3.60
-~09277~^~0900~^~Plantains, yellow, raw~^~PLANTAINS,YEL,RAW~^^^~Y~^~Skin and stems~^31^~Musa X paradisiaca~^6.25^3.36^8.37^3.60
-~09278~^~0900~^~Plantains, yellow, baked~^~PLANTAINS,YEL,BKD~^^^~Y~^~No refuse~^0^^6.25^3.36^8.37^3.60
-~09279~^~0900~^~Plums, raw~^~PLUMS,RAW~^^^~Y~^~Pits~^6^~Prunus spp.~^6.25^3.36^8.37^3.60
-~09281~^~0900~^~Plums, canned, purple, water pack, solids and liquids~^~PLUMS,CND,PURPLE,H2O PK,SOL&LIQUIDS~^^^~Y~^~Pits~^5^^6.25^3.36^8.37^3.60
-~09282~^~0900~^~Plums, canned, purple, juice pack, solids and liquids~^~PLUMS,CND,PURPLE,JUC PK,SOL&LIQUIDS~^^^~Y~^~Pits~^5^^6.25^3.36^8.37^3.70
-~09283~^~0900~^~Plums, canned, purple, light syrup pack, solids and liquids~^~PLUMS,CND,PURPLE,LT SYRUP PK,SOL&LIQUIDS~^^^~Y~^~Pits~^5^^6.25^3.36^8.37^3.71
-~09284~^~0900~^~Plums, canned, purple, heavy syrup pack, solids and liquids~^~PLUMS,CND,PURPLE,HVY SYRUP PK,SOL&LIQUIDS~^^^~Y~^~Pits~^5^^6.25^3.36^8.37^3.75
-~09285~^~0900~^~Plums, canned, purple, extra heavy syrup pack, solids and liquids~^~PLUMS,CND,PURPLE,EX HVY SYRUP PK,SOL&LIQUIDS~^^^^~Pits~^5^^6.25^3.36^8.37^3.78
-~09286~^~0900~^~Pomegranates, raw~^~POMEGRANATES,RAW~^^^~Y~^~Skin and membrane~^44^~Punica granatum~^6.25^3.36^8.37^3.60
-~09287~^~0900~^~Prickly pears, raw~^~PRICKLY PEARS,RAW~^^^^~Seeds, skin, and bud end~^25^~Opuntia spp.~^6.25^3.36^8.37^3.60
-~09288~^~0900~^~Prunes, canned, heavy syrup pack, solids and liquids~^~PRUNES,CND,HVY SYRUP PK,SOL&LIQUIDS~^^^^~Pits~^12^~Prunus domestica~^6.25^3.36^8.37^3.75
-~09289~^~0900~^~Prunes, dehydrated (low-moisture), uncooked~^~PRUNES,DEHYD (LOW-MOISTURE),UNCKD~^^^^^0^^6.25^3.36^8.37^3.60
-~09290~^~0900~^~Prunes, dehydrated (low-moisture), stewed~^~PRUNES,DEHYD (LOW-MOISTURE),STWD~^^^^^0^^6.25^3.36^8.37^3.60
-~09291~^~0900~^~Plums, dried (prunes), uncooked~^~PLUMS,DRIED (PRUNES),UNCKD~^^^~Y~^~Pits~^13^^6.25^3.36^8.37^3.60
-~09292~^~0900~^~Plums, dried (prunes), stewed, without added sugar~^~PLUMS,DRIED (PRUNES),STWD,WO/ ADDED SUGAR~^^^~Y~^~Pits~^15^^6.25^3.36^8.37^3.60
-~09293~^~0900~^~Plums, dried (prunes), stewed, with added sugar~^~PLUMS,DRIED (PRUNES),STWD,W/ ADDED SUGAR~^^^^~Pits~^15^^6.25^3.36^8.37^3.60
-~09294~^~0900~^~Prune juice, canned~^~PRUNE JUICE,CANNED~^^^~Y~^^0^^6.25^3.36^8.37^3.92
-~09295~^~0900~^~Pummelo, raw~^~PUMMELO,RAW~^^^^~Seeds, skin, and membrane~^44^~Citrus maxima~^6.25^3.36^8.37^3.60
-~09296~^~0900~^~Quinces, raw~^~QUINCES,RAW~^^^^~Core, seeds, and parings~^39^~Cydonia oblonga~^6.25^3.36^8.37^3.60
-~09297~^~0900~^~Raisins, golden, seedless~^~RAISINS,GOLDEN,SEEDLESS~^^^~Y~^^0^~Vitis vinifera~^6.25^3.36^8.37^3.60
-~09298~^~0900~^~Raisins, dark, seedless (Includes foods for USDA's Food Distribution Program)~^~RAISINS,DK,SEEDLESS (INCLUDES FOODS FOR USDAS FD~^^^~Y~^^0^~Vitis vinifera~^6.25^3.36^8.37^3.60
-~09299~^~0900~^~Raisins, seeded~^~RAISINS,SEEDED~^^^^^0^~Vitis vinifera~^6.25^3.36^8.37^3.60
-~09301~^~0900~^~Rambutan, canned, syrup pack~^~RAMBUTAN,CND,SYRUP PK~^^^^^0^~Nephelium lappaceum~^6.25^3.36^8.37^3.75
-~09302~^~0900~^~Raspberries, raw~^~RASPBERRIES,RAW~^^^~Y~^~Caps, stems, and spoiled berries~^4^~Rubus spp.~^6.25^3.36^8.37^3.60
-~09304~^~0900~^~Raspberries, canned, red, heavy syrup pack, solids and liquids~^~RASPBERRIES,CND,RED,HVY SYRUP PK,SOL&LIQUIDS~^^^~Y~^^0^^6.25^3.36^8.37^3.75
-~09306~^~0900~^~Raspberries, frozen, red, sweetened~^~RASPBERRIES,FRZ,RED,SWTND~^^^~Y~^^0^^6.25^3.36^8.37^3.78
-~09307~^~0900~^~Rhubarb, raw~^~RHUBARB,RAW~^^^~Y~^~19% ends, 6% leaves~^25^~Rheum rhabarbarum~^6.25^3.36^8.37^3.60
-~09309~^~0900~^~Rhubarb, frozen, uncooked~^~RHUBARB,FROZEN,UNCOOKED~^^^~Y~^^0^^6.25^3.36^8.37^3.60
-~09310~^~0900~^~Rhubarb, frozen, cooked, with sugar~^~RHUBARB,FRZ,CKD,W/SUGAR~^^^~Y~^^0^^6.25^3.36^8.37^3.78
-~09311~^~0900~^~Roselle, raw~^~ROSELLE,RAW~^^^^~Seed pods and stem~^39^~Hibiscus sabdariffa~^6.25^3.36^8.37^3.60
-~09312~^~0900~^~Rose-apples, raw~^~ROSE-APPLES,RAW~^^^^~Caps and pits~^33^~Syzygium jambos~^6.25^3.36^8.37^3.60
-~09313~^~0900~^~Sapodilla, raw~^~SAPODILLA,RAW~^^^^~Seeds and skin~^20^~Manilkara zapota~^6.25^3.36^8.37^3.60
-~09314~^~0900~^~Sapote, mamey, raw~^~SAPOTE,MAMEY,RAW~^~mamey colorado, marmalade plum~^^^~Seeds and skin~^31^~Pouteria sapota~^6.25^3.36^8.37^3.60
-~09315~^~0900~^~Soursop, raw~^~SOURSOP,RAW~^^^~Y~^~Seeds and skin~^33^~Annona muricata~^6.25^3.36^8.37^3.60
-~09316~^~0900~^~Strawberries, raw~^~STRAWBERRIES,RAW~^^^~Y~^~Caps and stems~^6^~Fragaria X ananassa~^6.25^3.36^8.37^3.60
-~09317~^~0900~^~Strawberries, canned, heavy syrup pack, solids and liquids~^~STRAWBERRIES,CND,HVY SYRUP PK,SOL&LIQUIDS~^^^~Y~^^0^^6.25^3.36^8.37^3.75
-~09318~^~0900~^~Strawberries, frozen, unsweetened (Includes foods for USDA's Food Distribution Program)~^~STRAWBERRIES,FRZ,UNSWTND~^^^~Y~^^0^^6.25^3.36^8.37^3.60
-~09320~^~0900~^~Strawberries, frozen, sweetened, sliced~^~STRAWBERRIES,FRZ,SWTND,SLICED~^^^~Y~^^0^^6.25^3.36^8.37^3.60
-~09321~^~0900~^~Sugar-apples, (sweetsop), raw~^~SUGAR-APPLES,(SWEETSOP),RAW~^^^^~Seeds and skin~^45^~Annona squamosa~^6.25^3.36^8.37^3.60
-~09322~^~0900~^~Tamarinds, raw~^~TAMARINDS,RAW~^^^~Y~^~Pods and seeds~^66^~Tamarindus indica~^6.25^3.36^8.37^3.60
-~09325~^~0900~^~Fruit salad, (pineapple and papaya and banana and guava), tropical, canned, heavy syrup, solids and liquids~^~FRUIT SALAD,TROPICAL,CND,HVY SYRUP,SOL&LIQUIDS~^^^^^0^^6.25^3.36^8.37^3.75
-~09326~^~0900~^~Watermelon, raw~^~WATERMELON,RAW~^^^~Y~^~Rind, seeds, and cutting loss~^48^~Citrullus lanatus~^6.25^3.36^8.37^3.60
-~09328~^~0900~^~Maraschino cherries, canned, drained~^~MARASCHINO CHERRIES,CND,DRND~^^^~Y~^^0^^6.25^3.36^8.37^3.87
-~09334~^~0900~^~Feijoa, raw~^~FEIJOA,RAW~^^^^~Skin~^43^~Acca sellowiana~^6.25^3.36^8.37^3.60
-~09340~^~0900~^~Pears, asian, raw~^~PEARS,ASIAN,RAW~^^^~Y~^~Core and stem~^9^~Pyrus pyrifolia (Burman f.) Nakai~^6.25^3.36^8.37^3.60
-~09351~^~0900~^~Fruit cocktail, canned, heavy syrup, drained~^~FRUIT COCKTAIL,CND,HVY SYRUP,DRND~^^^~Y~^^0^^^3.36^8.37^3.60
-~09352~^~0900~^~Blueberries, canned, light syrup, drained~^~BLUEBERRIES,CND,LT SYRUP,DRND~^^^~Y~^^0^^6.25^3.36^8.37^3.60
-~09353~^~0900~^~Blueberries, wild, canned, heavy syrup, drained~^~BLUEBERRIES,WILD,CND,HVY SYRUP,DRND~^^^^^0^^6.25^3.36^8.37^3.60
-~09354~^~0900~^~Pineapple, canned, juice pack, drained~^~PINEAPPLE,CND,JUC PK,DRND~^^^~Y~^^0^^^3.36^8.37^3.70
-~09357~^~0900~^~Apricots, canned, heavy syrup, drained~^~APRICOTS,CND,HVY SYRUP,DRND~^^^~Y~^^0^^^3.36^8.37^3.75
-~09362~^~0900~^~Cherries, sour, canned, water pack, drained~^~CHERRIES,SOUR,CND,H2O PK,DRND~^^^^^0^^6.25^3.36^8.37^3.60
-~09367~^~0900~^~Cherries, sweet, canned, pitted, heavy syrup, drained~^~CHERRIES,SWT,CND,PITTED,HVY SYRUP,DRND~^^^~Y~^^0^^^3.36^8.37^3.75
-~09370~^~0900~^~Peaches, canned, heavy syrup, drained~^~PEACHES,CND,HVY SYRUP,DRND~^^^~Y~^^0^^^3.36^8.37^3.75
-~09374~^~0900~^~Pears, canned, heavy syrup, drained~^~PEARS,CND,HVY SYRUP,DRND~^^^~Y~^^0^^^3.36^8.37^3.75
-~09379~^~0900~^~Plums, canned, heavy syrup, drained~^~PLUMS,CND,HVY SYRUP,DRND~^^^~Y~^^0^^^3.36^8.37^3.75
-~09383~^~0900~^~Tangerines, (mandarin oranges), canned, juice pack, drained~^~TANGERINES,(MANDARIN ORANGES),CND,JUC PK,DRND~^^^~Y~^^0^^^3.36^8.37^3.70
-~09400~^~0900~^~Apple juice, canned or bottled, unsweetened, with added ascorbic acid~^~APPLE JUC,CND OR BTLD,UNSWTND,W/ ADDED VIT C~^^^~Y~^^0^^6.25^3.36^8.37^3.92
-~09401~^~0900~^~Applesauce, canned, unsweetened, with added ascorbic acid~^~APPLESAUCE,CND,UNSWTND,W/ VIT C~^^^^^0^^6.25^3.36^8.37^3.60
-~09402~^~0900~^~Applesauce, canned, sweetened, with salt~^~APPLESAUCE,CND,SWTND,W/SALT~^^^^^0^^6.25^3.36^8.37^3.75
-~09404~^~0900~^~Grapefruit juice, pink, raw~^~GRAPEFRUIT JUICE,PINK,RAW~^^^^^0^^6.25^3.36^8.37^3.92
-~09407~^~0900~^~Peach nectar, canned, with added ascorbic acid~^~PEACH NECTAR,CND,W/ VIT C~^^^^^0^^6.25^3.36^8.37^3.79
-~09408~^~0900~^~Pear nectar, canned, with added ascorbic acid~^~PEAR NECTAR,CND,W/ VIT C~^~vitamin C~^^^^0^^6.25^3.36^8.37^3.75
-~09409~^~0900~^~Pineapple juice, canned or bottled, unsweetened, with added ascorbic acid~^~PINEAPPLE JUC,CND OR BTLD,UNSWTND,W/ ADDED VIT C~^^^~Y~^^0^^6.25^3.36^8.37^3.92
-~09410~^~0900~^~Apple juice, frozen concentrate, unsweetened, undiluted, with added ascorbic acid~^~APPLE JUC,FRZ CONC,UNSWTND,UNDIL,W/ VIT C~^^^^^0^^6.25^3.36^8.37^3.92
-~09411~^~0900~^~Apple juice, frozen concentrate, unsweetened, diluted with 3 volume water, with added ascorbic acid~^~APPLE JUC,FRZ CONC,UNSWTND,DIL W/3 VOLUME H2O,W/ VIT C~^^^^^0^^6.25^3.36^8.37^3.92
-~09412~^~0900~^~Pears, raw, bartlett (Includes foods for USDA's Food Distribution Program)~^~PEARS,RAW,BARTLETT~^^^^~Stem, core and seeds~^10^~Pyrus communis~^^^^
-~09413~^~0900~^~Pears, raw, red anjou~^~PEARS,RAW,RED ANJOU~^^^^~Stem, core and seeds~^11^~Pyrus communis~^^^^
-~09414~^~0900~^~Pears, raw, bosc (Includes foods for USDA's Food Distribution Program)~^~PEARS,RAW,BOSC~^^^^~Stem, core and seeds~^10^~Pyrus communis~^^^^
-~09415~^~0900~^~Pears, raw, green anjou (Includes foods for USDA's Food Distribution Program)~^~PEARS,RAW,GRN ANJOU~^^^^~Stem, core and seeds~^10^~Pyrus communis~^^^^
-~09416~^~0900~^~Grapefruit juice, white, bottled, unsweetened, OCEAN SPRAY~^~GRAPEFRUIT JUC,WHITE,BTLD,UNSWTND,OCEAN SPRAY~^^~Ocean Spray Cranberries, Inc.~^^^0^^6.25^3.36^8.37^3.92
-~09420~^~0900~^~Jackfruit, canned, syrup pack~^~JACKFRUIT,CND,SYRUP PK~^^^^^0^~Artocarpus heterophyllus~^6.25^3.36^8.37^3.75
-~09421~^~0900~^~Dates, medjool~^~DATES,MEDJOOL~^^^^~Pits~^8^~Phoenix dactylifera~^^3.36^8.37^3.60
-~09422~^~0900~^~Durian, raw or frozen~^~DURIAN,RAW OR FROZEN~^^^^~Shell and seeds (for raw fruit)~^68^~Durio zibethinus~^6.25^3.36^8.37^3.60
-~09423~^~0900~^~Prune puree~^~PRUNE PUREE~^^^^^0^^^^^
-~09426~^~0900~^~Candied fruit~^~CANDIED FRUIT~^^^~Y~^^0^^^^^
-~09427~^~0900~^~Abiyuch, raw~^~ABIYUCH,RAW~^~garlic pear~^^^^^~Crateva religiosa~^6.25^3.36^8.37^3.60
-~09428~^~0900~^~Rowal, raw~^~ROWAL,RAW~^^^^^^~Pangium edule~^6.25^3.36^8.37^3.60
-~09429~^~0900~^~Pineapple, raw, traditional varieties~^~PINEAPPLE,RAW,TRADITIONAL VAR~^^^^~8% core, 13% crown, 22% parings~^42^~Ananas comosus~^^3.36^8.37^3.60
-~09430~^~0900~^~Pineapple, raw, extra sweet variety~^~PINEAPPLE,RAW,EX SWT VAR~^^^^~8% core, 16% crown, 26% parings~^49^~Ananas comosus~^^3.36^8.37^3.60
-~09433~^~0900~^~Clementines, raw~^~CLEMENTINES,RAW~^^^^~Peel and seeds~^23^~Citrus clementina hort. ex Tanaka~^^3.36^8.37^3.60
-~09434~^~0900~^~Guanabana nectar, canned~^~GUANABANA NECTAR,CND~^^^~Y~^^0^^6.25^3.36^8.37^3.80
-~09435~^~0900~^~Guava nectar, canned, with added ascorbic acid~^~GUAVA NECTAR,CND,W/ ADDED VIT C~^^^^^0^^6.25^3.36^8.37^3.80
-~09436~^~0900~^~Mango nectar, canned~^~MANGO NECTAR,CND~^^^~Y~^^0^^6.25^3.36^8.37^3.80
-~09437~^~0900~^~Tamarind nectar, canned~^~TAMARIND NECTAR,CND~^^^^^0^^6.25^3.36^8.37^3.80
-~09442~^~0900~^~Pomegranate juice, bottled~^~POMEGRANATE JUC,BTLD~^^^~Y~^^0^^6.25^3.36^8.37^3.92
-~09443~^~0900~^~Juice, apple and grape blend, with added ascorbic acid~^~JUICE,APPL & GRAPE BLEND,W/ ADDED VIT C~^^^~Y~^^0^^^3.36^8.37^3.92
-~09444~^~0900~^~Juice, apple, grape and pear blend, with added ascorbic acid and calcium~^~JUICE,APPL,GRAPE & PEAR BLEND,W/ ADDED VIT C & CA~^^^~Y~^^0^^6.25^3.36^8.37^3.92
-~09446~^~0900~^~Plantains, green, fried~^~PLANTAINS,GRN,FRIED~^~tostones de platano~^^^^0^^6.25^4.00^9.00^4.00
-~09447~^~0900~^~Plantains, yellow, fried, Latino restaurant~^~PLANTAINS,YEL,FRIED,LATINO RESTAURANT~^~platanos maduros~^^^^0^^6.25^4.00^9.00^4.00
-~09448~^~0900~^~Nance, canned, syrup, drained~^~NANCE,CND,SYRUP,DRND~^~yellow cherries~^^^^0^^6.25^3.36^8.37^3.60
-~09449~^~0900~^~Nance, frozen, unsweetened~^~NANCE,FRZ,UNSWTND~^~yellow cherries~^^^~Pits~^27^~Byrsonima crassifolia (L.) Kunth~^6.25^3.36^8.37^3.60
-~09450~^~0900~^~Naranjilla (lulo) pulp, frozen, unsweetened~^~NARANJILLA (LULO) PULP,FRZ,UNSWTND~^^^^^0^~Solanum quitoense Lam.~^6.25^3.36^8.37^3.60
-~09451~^~0900~^~Horned melon (Kiwano)~^~HORNED MELON (KIWANO)~^~African horned melon~^^^~Rind~^36^~Cucumis metulifer~^6.25^3.36^8.37^3.60
-~09452~^~0900~^~Orange Pineapple Juice Blend~^~ORANGE PNAPPL JUC BLEND~^^^~Y~^^0^^6.25^^^
-~09500~^~0900~^~Apples, raw, red delicious, with skin (Includes foods for USDA's Food Distribution Program)~^~APPLES,RAW,RED DELICIOUS,W/ SKN~^^^^~Core and stem~^11^~Malus domestica~^^^^
-~09501~^~0900~^~Apples, raw, golden delicious, with skin~^~APPLES,RAW,GOLDEN DELICIOUS,W/ SKN~^^^^~Core and stem~^10^~Malus domestica~^^^^
-~09502~^~0900~^~Apples, raw, granny smith, with skin (Includes foods for USDA's Food Distribution Program)~^~APPLES,RAW,GRANNY SMITH,W/ SKN~^^^^~Core and stem~^11^~Malus domestica~^^^^
-~09503~^~0900~^~Apples, raw, gala, with skin (Includes foods for USDA's Food Distribution Program)~^~APPLES,RAW,GALA,W/ SKN~^^^^~Core and stem~^9^~Malus domestica~^^^^
-~09504~^~0900~^~Apples, raw, fuji, with skin (Includes foods for USDA's Food Distribution Program)~^~APPLES,RAW,FUJI,W/ SKN~^^^^~Core and stem~^11^~Malus domestica~^^^^
-~09506~^~0900~^~Orange juice, chilled, includes from concentrate, with added calcium and vitamins A, D, E~^~ORANGE JUC,CHILLED,INCL FROM CONC,W/ ADD CA & VITAMINS A,D,E~^^^^^0^^6.25^3.36^8.37^3.92
-~09507~^~0900~^~Fruit juice smoothie, NAKED JUICE, MIGHTY MANGO~^~FRUIT JUC SMOOTHIE,NAKED JUC,MIGHTY MANGO~^^~Naked Juice Co. of Glendora, Inc.~^^^0^^6.25^^^
-~09508~^~0900~^~Fruit juice smoothie, NAKED JUICE, GREEN MACHINE~^~FRUIT JUC SMOOTHIE,NAKED JUC,GRN MACHINE~^^~Naked Juice Co. of Glendora, Inc.~^~Y~^^0^^6.25^3.36^8.37^3.92
-~09510~^~0900~^~Pineapple juice, canned, not from concentrate, unsweetened, with added vitamins A, C and E~^~PINEAPPLE JUC,CND,NOT FROM CONC,UNSWTND,W/ ADD VIT A,C & E~^^~Dole Food Company~^^^0^^6.25^3.36^8.37^3.92
-~09511~^~0900~^~Fruit juice smoothie, NAKED JUICE, BLUE MACHINE~^~FRUIT JUC SMOOTHIE,NAKED JUC,BLUE MACHINE~^^~Naked Juice Co. of Glendora, Inc.~^^^0^^6.25^^^
-~09512~^~0900~^~Grape juice, canned or bottled, unsweetened, with added ascorbic acid and calcium~^~GRAPE JUC,CND OR BTLD,UNSWTND,W/ ADDED VIT C & CA~^^^~Y~^^0^^6.25^^^
-~09513~^~0900~^~Fruit juice smoothie, ODWALLA, ORIGINAL SUPERFOOD~^~FRUIT JUC SMOOTHIE,ODWALLA,ORIGINAL SUPERFOOD~^^~Odwalla~^~Y~^^0^^6.25^3.36^8.37^3.92
-~09514~^~0900~^~Fruit juice smoothie, BOLTHOUSE FARMS, BERRY BOOST~^~FRUIT JUC SMOOTHIE,BOLTHOUSE FARMS,BERRY BOOST~^^~Wm. Bolthouse Farms, Inc.~^^^0^^6.25^^^
-~09515~^~0900~^~Fruit juice smoothie, BOLTHOUSE FARMS, GREEN GOODNESS~^~FRUIT JUC SMOOTHIE,BOLTHOUSE FARMS,GRN GOODNESS~^^~Wm. Bolthouse Farms, Inc.~^~Y~^^0^^6.25^3.36^8.37^3.92
-~09516~^~0900~^~Fruit juice smoothie, BOLTHOUSE FARMS, strawberry banana~^~FRUIT JUC SMOOTHIE,BOLTHOUSE FARMS,STRAWBERRY BANANA~^^~Wm. Bolthouse Farms, Inc.~^~Y~^^0^^6.25^3.36^8.37^3.92
-~09517~^~0900~^~Apple juice, canned or bottled, unsweetened, with added ascorbic acid, calcium, and potassium~^~APPLE JUC,CND OR BTLD,UNSWTND,W/ ADDED VIT C,CA,& K~^^^~Y~^^0^^^^^
-~09518~^~0900~^~Raspberries, frozen, red, unsweetened~^~RASPBERRIES,FRZ,RED,UNSWTND~^^^^^0^^6.25^3.36^8.37^3.60
-~09519~^~0900~^~Guava nectar, with sucralose, canned~^~GUAVA NECTAR,W/ SUCRALOSE,CND~^^^~Y~^^0^^^^^
-~09520~^~0900~^~Kiwifruit, ZESPRI SunGold, raw~^~KIWIFRUIT,ZESPRI SUNGOLD,RAW~^~Gold3~^^^~Skin~^28^~Actinidia chinensis Zesy002 (Gold3)~^^3.36^8.37^3.60
-~09522~^~0900~^~Cranberry juice blend, 100% juice, bottled, with added vitamin C and calcium~^~CRANBERRY JUC BLEND,100% JUC,BTLD,W/ ADDED VIT C & CA~^^^~Y~^^0^^6.25^3.36^8.37^3.92
-~09523~^~0900~^~Lemon juice from concentrate, bottled, CONCORD~^~LEMON JUC FROM CONC,BTLD,CONCORD~^^~Concord Foods~^^^0^^^^^
-~09524~^~0900~^~Lemon juice from concentrate, bottled, REAL LEMON~^~LEMON JUC FROM CONC,BTLD,REAL LEMON~^^^^^0^^^3.36^8.37^2.70
-~09525~^~0900~^~Cranberry sauce, whole, canned, OCEAN SPRAY~^~CRANBERRY SAU,WHL,CND,OCEAN SPRAY~^^~Ocean Spray Cranberries, Inc.~^^^0^^6.25^3.36^8.37^3.84
-~09526~^~0900~^~Cranberry sauce, jellied, canned, OCEAN SPRAY~^~CRANBERRY SAU,JELLIED,CND,OCEAN SPRAY~^^~Ocean Spray Cranberries, Inc.~^^^0^^6.25^3.36^8.37^3.84
-~09528~^~0900~^~Ruby Red grapefruit juice blend (grapefruit, grape, apple), OCEAN SPRAY, bottled, with added vitamin C~^~RUBY RED GRPFRT JUC BLND (GRPFRT,GRP,APL),OCEAN SPRY,W/VIT C~^^~Ocean Spray Cranberries, Inc.~^^^0^^^3.36^8.37^3.92
-~09530~^~0900~^~Fruit juice smoothie, ODWALLA, strawberry banana~^~FRUIT JUC SMOOTHIE,ODWALLA,STRAWBERRY BANANA~^^~Odwalla~^~Y~^^0^^6.25^3.36^8.37^3.92
-~09531~^~0900~^~Fruit juice smoothie, NAKED JUICE, strawberry banana~^~FRUIT JUC SMOOTHIE,NAKED JUC,STRAWBERRY BANANA~^^~Naked Juice Co. of Glendora, Inc.~^~Y~^^0^^6.25^3.36^8.37^3.92
-~09542~^~0900~^~Plantains, green, raw~^~PLANTAINS,GRN,RAW~^^^^~Skin and stems~^39^~Musa X paradisiaca~^6.25^2.78^8.37^4.03
-~09543~^~0900~^~Plantains, green, boiled~^~PLANTAINS,GRN,BLD~^^^^~No refuse~^0^^^2.78^8.37^4.03
-~09544~^~0900~^~Baobab powder~^~BAOBAB PDR~^^^^^0^^^3.36^8.37^3.60
-~09546~^~0900~^~Cherry juice, tart~^~CHERRY JUC,TART~^^^^^0^^6.25^3.36^8.37^3.92
-~09552~^~0900~^~Raspberries, puree, seedless~^~RASPBERRIES,PUREE,SEEDLESS~^^^^^0^^^3.36^8.37^3.75
-~09553~^~0900~^~Raspberries, puree, with seeds~^~RASPBERRIES,PUREE,W/ SEEDS~^^^^^0^^^3.36^8.37^3.75
-~09554~^~0900~^~Raspberry juice concentrate~^~RASPBERRY JUC CONC~^^^^^0^^^3.36^8.37^3.75
-~10000~^~1000~^~Pork, fresh, composite of separable fat, with added solution, cooked~^~PORK,FRSH,COMP OF FAT,W/ ADDED SOLN,CKD~^^^^^0^^^^^
-~10001~^~1000~^~Pork, fresh, carcass, separable lean and fat, raw~^~PORK,FRSH,CARCASS,LN&FAT,RAW~^^^^~Bone and skin~^18^~Suidae domesticus~^6.25^4.27^9.02^3.87
-~10002~^~1000~^~Pork, fresh, composite of trimmed retail cuts (leg, loin, shoulder), separable lean only, raw~^~PORK,FRSH,COMP OF RTL CUTS (LEG,LOIN,SHLDR),LN,RAW~^^^~Y~^~Bone and skin 22%, separable fat 8%~^30^^6.25^4.27^9.02^3.87
-~10003~^~1000~^~Pork, fresh, composite of trimmed leg, loin, shoulder, and spareribs, (includes cuts to be cured), separable lean and fat, raw~^~PORK,FRSH,COMP OF LEG,LOIN,SHLDR,& SPARERIBS,LN & FAT,RAW~^^^~Y~^~Bone and skin~^24^^6.25^4.27^9.02^3.87
-~10004~^~1000~^~Pork, fresh, backfat, raw~^~PORK,FRESH,BACKFAT,RAW~^^^~Y~^~Skin~^11^^6.25^4.27^9.02^3.87
-~10005~^~1000~^~Pork, fresh, belly, raw~^~PORK,FRSH,BELLY,RAW~^^^^~Skin~^7^^6.25^4.27^9.02^3.87
-~10006~^~1000~^~Pork, fresh, separable fat, raw~^~PORK,FRSH,FAT,RAW~^^^^^0^^6.25^4.27^9.02^3.87
-~10007~^~1000~^~Pork, fresh, separable fat, cooked~^~PORK,FRSH,FAT,CKD~^^^~Y~^^0^^6.25^4.27^9.02^3.87
-~10008~^~1000~^~Pork, fresh, leg (ham), whole, separable lean and fat, raw~^~PORK,FRSH,LEG (HAM),WHL,LN&FAT,RAW~^^^^~Bone and skin~^17^^6.25^4.27^9.02^3.87
-~10009~^~1000~^~Pork, fresh, leg (ham), whole, separable lean and fat, cooked, roasted~^~PORK,FRSH,LEG (HAM),WHL,LN&FAT,CKD,RSTD~^^^~Y~^~Bone and skin~^20^^6.25^4.27^9.02^3.87
-~10010~^~1000~^~Pork, fresh, leg (ham), whole, separable lean only, raw~^~PORK,FRSH,LEG (HAM),WHL,LN,RAW~^^^~Y~^~Bone and skin 17%, separable fat 18%~^35^^6.25^4.27^9.02^3.87
-~10011~^~1000~^~Pork, fresh, leg (ham), whole, separable lean only, cooked, roasted~^~PORK,FRSH,LEG (HAM),WHL,LN,CKD,RSTD~^^^~Y~^~Bone and skin 20%, separable fat 12%~^32^^6.25^4.27^9.02^3.87
-~10012~^~1000~^~Pork, fresh, leg (ham), rump half, separable lean and fat, raw~^~PORK,FRSH,LEG (HAM),RUMP HALF,LN&FAT,RAW~^^^^~Connective tissue 6%, Bone 9%, Skin 2%~^17^^6.25^4.27^9.02^3.87
-~10013~^~1000~^~Pork, fresh, leg (ham), rump half, separable lean and fat, cooked, roasted~^~PORK,FRSH,LEG (HAM),RUMP HALF,LN&FAT,CKD,RSTD~^^^~Y~^~Connective tissue 7%, Bone 9%, Skin 2%~^18^^6.25^4.27^9.02^3.87
-~10014~^~1000~^~Pork, fresh, leg (ham), rump half, separable lean only, raw (Includes foods for USDA's Food Distribution Program)~^~PORK,FRSH,LEG (HAM),RUMP HALF,LN,RAW~^^^^~Connective tissue 6%, Bone 9%, Separable fat 10%~^25^^6.25^4.27^9.02^3.87
-~10015~^~1000~^~Pork, fresh, leg (ham), rump half, separable lean only, cooked, roasted~^~PORK,FRSH,LEG (HAM),RUMP HALF,LN,CKD,RSTD~^^^^~Connective tissue 7%, Bone 9%, Separable fat 7%~^23^^6.25^4.27^9.02^3.87
-~10016~^~1000~^~Pork, fresh, leg (ham), shank half, separable lean and fat, raw~^~PORK,FRSH,LEG (HAM),SHANK HALF,LN&FAT,RAW~^^^^~Connective tissue 9%, Bone 13%, Skin 6%~^28^^6.25^4.27^9.02^3.87
-~10017~^~1000~^~Pork, fresh, leg (ham), shank half, separable lean and fat, cooked, roasted~^~PORK,FRSH,LEG (HAM),SHANK HALF,LN&FAT,CKD,RSTD~^^^^~Connective tissue 7%, Bone 11%, Skin 4%~^22^^6.25^4.27^9.02^3.87
-~10018~^~1000~^~Pork, fresh, leg (ham), shank half, separable lean only, raw~^~PORK,FRSH,LEG (HAM),SHANK HALF,LN,RAW~^^^^~Connective tissue 9%, Bone 13%, Separable fat 10%~^32^^6.25^4.27^9.02^3.87
-~10019~^~1000~^~Pork, fresh, leg (ham), shank half, separable lean only, cooked, roasted~^~PORK,FRSH,LEG (HAM),SHANK HALF,LN,CKD,RSTD~^^^^~Connective tissue 7%, Bone 11%, Separable fat 9%~^27^^6.25^4.27^9.02^3.87
-~10020~^~1000~^~Pork, fresh, loin, whole, separable lean and fat, raw~^~PORK,FRSH,LOIN,WHL,LN&FAT,RAW~^^^~Y~^~Bone~^22^^6.25^4.27^9.02^3.87
-~10021~^~1000~^~Pork, fresh, loin, whole, separable lean and fat, cooked, braised~^~PORK,FRSH,LOIN,WHL,LN&FAT,CKD,BRSD~^^^~Y~^~Bone~^21^^6.25^4.27^9.02^3.87
-~10022~^~1000~^~Pork, fresh, loin, whole, separable lean and fat, cooked, broiled~^~PORK,FRSH,LOIN,WHL,LN&FAT,CKD,BRLD~^^^~Y~^~Bone~^21^^6.25^4.27^9.02^3.87
-~10023~^~1000~^~Pork, fresh, loin, whole, separable lean and fat, cooked, roasted~^~PORK,FRSH,LOIN,WHL,LN&FAT,CKD,RSTD~^^^~Y~^~Bone~^21^^6.25^4.27^9.02^3.87
-~10024~^~1000~^~Pork, fresh, loin, whole, separable lean only, raw~^~PORK,FRSH,LOIN,WHL,LN,RAW~^^^~Y~^~Bone 22%, separable fat 8%~^30^^6.25^4.27^9.02^3.87
-~10025~^~1000~^~Pork, fresh, loin, whole, separable lean only, cooked, braised~^~PORK,FRSH,LOIN,WHL,LN,CKD,BRSD~^^^~Y~^~Bone 21%, separable fat 7%~^28^^6.25^4.27^9.02^3.87
-~10026~^~1000~^~Pork, fresh, loin, whole, separable lean only, cooked, broiled~^~PORK,FRSH,LOIN,WHL,LN,CKD,BRLD~^^^~Y~^~Bone 21%, separable fat 7%~^28^^6.25^4.27^9.02^3.87
-~10027~^~1000~^~Pork, fresh, loin, whole, separable lean only, cooked, roasted~^~PORK,FRSH,LOIN,WHL,LN,CKD,RSTD~^^^~Y~^~Bone 21%, separable fat 7%~^28^^6.25^4.27^9.02^3.87
-~10028~^~1000~^~Pork, fresh, loin, blade (chops or roasts), bone-in, separable lean and fat, raw~^~PORK,FRSH,LOIN,BLADE (CHOPS OR ROASTS),BONE-IN,LN&FAT,RAW~^^^^~Bone 18%, Connective tissue 8%~^26^^6.25^4.27^9.02^3.87
-~10029~^~1000~^~Pork, fresh, loin, blade (chops), bone-in, separable lean and fat, cooked, braised~^~PORK,FRSH,LOIN,BLADE (CHOPS),BONE-IN,LN&FAT,CKD,BRSD~^^^^~Bone 21% Connective tissue 6%~^27^^6.25^4.27^9.02^3.87
-~10030~^~1000~^~Pork, fresh, loin, blade (chops), bone-in, separable lean and fat, cooked, broiled~^~PORK,FRSH,LOIN,BLADE (CHOPS),BONE-IN,LN&FAT,CKD,BRLD~^^^^~Bone 20%, Connective tissue 7%~^27^^6.25^4.27^9.02^3.87
-~10031~^~1000~^~Pork, fresh, loin, blade (roasts), bone-in, separable lean and fat, cooked, roasted~^~PORK,FRSH,LOIN,BLADE (ROASTS),BONE-IN,LN&FAT,CKD,RSTD~^^^^~Bone 18%, Connective tissue 5%,~^20^^6.25^4.27^9.02^3.87
-~10032~^~1000~^~Pork, fresh, loin, blade (chops or roasts), bone-in, separable lean only, raw~^~PORK,FRSH,LOIN,BLADE (CHOPS OR ROASTS),BONE-IN,LN,RAW~^^^^~Bone 18%, Connective tissue 8%, Separable fat 10%,~^36^^6.25^4.27^9.02^3.87
-~10033~^~1000~^~Pork, fresh, loin, blade (chops), bone-in, separable lean only, cooked, braised~^~PORK,FRSH,LOIN,BLADE (CHOPS),BONE-IN,LN,CKD,BRSD~^^^~Y~^~Bone 21%, Connective tissue 6%, Separable fat 6%~^33^^6.25^4.27^9.02^3.87
-~10034~^~1000~^~Pork, fresh, loin, blade (chops), bone-in, separable lean only, cooked, broiled~^~PORK,FRSH,LOIN,BLADE (CHOPS),BONE-IN,LN,CKD,BRLD~^^^^~Bone 20%, Connective tissue 7%, separable fat 6%~^33^^6.25^4.27^9.02^3.87
-~10035~^~1000~^~Pork, fresh, loin, blade (roasts), bone-in, separable lean only, cooked, roasted~^~PORK,FRSH,LOIN,BLADE (ROASTS),BONE-IN,LN,CKD,RSTD~^^^^~Bone 18%, separable fat 7%, Connective tissue 5%~^30^^6.25^4.27^9.02^3.87
-~10036~^~1000~^~Pork, fresh, loin, center loin (chops), bone-in, separable lean and fat, raw~^~PORK,FRSH,LOIN,CNTR LOIN (CHOPS),BONE-IN,LN & FAT,RAW~^~URMIS #3313, Center loin chops, Centercut pork loin chops, centercut pork chops~^^~Y~^~Bone, 14%, Connective tissue 11%~^25^^6.25^4.27^9.02^3.87
-~10037~^~1000~^~Pork, fresh, loin, center loin (chops), bone-in, separable lean and fat, cooked, braised~^~PORK,FRSH,LOIN,CNTR LOIN (CHOPS),BONE-IN,LN&FAT,CKD,BRSD~^^^^~Bone 15%, Connective tissue 5%~^20^^6.25^4.27^9.02^3.87
-~10038~^~1000~^~Pork, fresh, loin, center loin (chops), bone-in, separable lean and fat, cooked, broiled~^~PORK,FRSH,LOIN,CNTR LOIN (CHOPS),BONE-IN,LN&FAT,CKD,BRLD~^~URMIS #3313, Center loin chops, Centercut pork loin chops, centercut pork chops~^^^~Bone 16%, Connective tissue 9%~^25^^6.25^4.27^9.02^3.87
-~10039~^~1000~^~Pork, fresh, loin, center loin (roasts), bone-in, separable lean and fat, cooked, roasted~^~PORK,FRSH,LOIN,CNTR LOIN (ROASTS),BONE-IN,LN&FAT,CKD,RSTD~^^^^~Bone 14%, Connective tissue 4%~^18^^6.25^4.27^9.02^3.87
-~10040~^~1000~^~Pork, fresh, loin, center loin (chops), bone-in, separable lean only, raw~^~PORK,FRSH,LOIN,CNTR LOIN (CHOPS),BONE-IN,LN,RAW~^~URMIS #3313, Center loin chops, Center cut pork loin chops, centercut pork chops~^^^~Bone, 14%, Connective tissue, 11%, Separable fat, 6%~^31^^6.25^4.27^9.02^3.87
-~10041~^~1000~^~Pork, fresh, loin, center loin (chops), bone-in, separable lean only, cooked, braised~^~PORK,FRSH,LOIN,CNTR LOIN (CHOPS),BONE-IN,LN,CKD,BRSD~^^^~Y~^~Bone 15%, Connective tissue 5%, Separable fat 8%~^28^^6.25^4.27^9.02^3.87
-~10042~^~1000~^~Pork, fresh, loin, center loin (chops), bone-in, separable lean only, cooked, broiled~^~PORK,FRSH,LOIN,CNTR LOIN (CHOPS),BONE-IN,LN,CKD,BRLD~^~URMIS #3313, Center loin chops, Centercut pork chops, Centercut pork loin chops~^^^~Bone, 16%, Connective tissue, 9%, Separable fat, 5%~^30^^6.25^4.27^9.02^3.87
-~10043~^~1000~^~Pork, fresh, loin, center loin (roasts), bone-in, separable lean only, cooked, roasted~^~PORK,FRSH,LOIN,CNTR LOIN (ROASTS),BONE-IN,LN,CKD,RSTD~^^^^~Bone 14%, Connective tissue 4%, Separable fat 7%~^25^^6.25^4.27^9.02^3.87
-~10044~^~1000~^~Pork, fresh, loin, center rib (chops or roasts), bone-in, separable lean and fat, raw~^~PORK,FRSH,LOIN,CNTR RIB (CHOPS OR ROASTS),BONE-IN,LN&FAT,RAW~^~Centercut pork loin, Rib cut chops, Rib chops~^^^~Bone 22%, Connective tissue 12%,~^34^^6.25^4.27^9.02^3.87
-~10045~^~1000~^~Pork, fresh, loin, center rib (chops), bone-in, separable lean and fat, cooked, braised~^~PORK,FRSH,LOIN,CNTR RIB (CHOPS),BONE-IN,LN&FAT,CKD,BRSD~^^^^~Bone 17%, Connective tissue 6%~^23^^6.25^4.27^9.02^3.87
-~10046~^~1000~^~Pork, fresh, loin, center rib (chops), bone-in, separable lean and fat, cooked, broiled~^~PORK,FRSH,LOIN,CNTR RIB (CHOPS),BONE-IN,LN&FAT,CKD,BRLD~^~Centercut pork loin, Rib cut chops, Rib chops~^^^~Bone, 24%, Connective tissue, 11%~^35^^6.25^4.27^9.02^3.87
-~10047~^~1000~^~Pork, fresh, loin, center rib (roasts), bone-in, separable lean and fat, cooked, roasted~^~PORK,FRSH,LOIN,CNTR RIB (ROASTS),BONE-IN,LN&FAT,CKD,RSTD~^^^^~Bone 17%, Connective tissue 6%~^23^^6.25^4.27^9.02^3.87
-~10048~^~1000~^~Pork, fresh, loin, center rib (chops or roasts), bone-in, separable lean only, raw~^~PORK,FRSH,LOIN,CNTR RIB (CHOPS OR ROASTS),BONE-IN,LN,RAW~^~Centercut pork loin, Rib cut chops, Rib chops~^^^~Bone 22%, Connective tissue, 12%, separable fat 6%~^40^^6.25^4.27^9.02^3.87
-~10049~^~1000~^~Pork, fresh, loin, center rib (chops), bone-in, separable lean only, cooked, braised~^~PORK,FRSH,LOIN,CNTR RIB (CHOPS),BONE-IN,LN,CKD,BRSD~^^^~Y~^~Bone 17%, Connective tissue 6%, Separable fat 10%~^33^^6.25^4.27^9.02^3.87
-~10050~^~1000~^~Pork, fresh, loin, center rib (chops), bone-in, separable lean only, cooked, broiled~^~PORK,FRSH,LOIN,CNTR RIB (CHOPS),BONE-IN,LN,CKD,BRLD~^~Centercut pork loin chop, Rib cut chops, Rib chops~^^~Y~^~Bone 24%, Connective tissue, 11%, separable fat 5%~^40^^6.25^4.27^9.02^3.87
-~10051~^~1000~^~Pork, fresh, loin, center rib (roasts), bone-in, separable lean only, cooked, roasted~^~PORK,FRSH,LOIN,CNTR RIB (ROASTS),BONE-IN,LN,CKD,RSTD~^^^^~Bone 17%, Connective tissue 6%, separable fat 8%~^31^^6.25^4.27^9.02^3.87
-~10052~^~1000~^~Pork, fresh, loin, sirloin (chops or roasts), bone-in, separable lean and fat, raw~^~PORK,FRSH,LOIN,SIRLOIN (CHOPS OR ROASTS),BONE-IN,LN&FAT,RAW~^~Loin end roast, Hipbone roast, Sirloin end roast~^^^~Bone, 17%, Connective tissue, 10%~^27^^6.25^4.27^9.02^3.87
-~10053~^~1000~^~Pork, fresh, loin, sirloin (chops), bone-in, separable lean and fat, cooked, braised~^~PORK,FRSH,LOIN,SIRLOIN (CHOPS),BONE-IN,LN&FAT,CKD,BRSD~^^^^~Connective tissue 6%, Bone 18%~^24^^6.25^4.27^9.02^3.87
-~10054~^~1000~^~Pork, fresh, loin, sirloin (chops), bone-in, separable lean and fat, cooked, broiled~^~PORK,FRSH,LOIN,SIRLOIN (CHOPS),BONE-IN,LN&FAT,CKD,BRLD~^^^~Y~^~Connective tissue 6%, Bone 15%~^21^^6.25^4.27^9.02^3.87
-~10055~^~1000~^~Pork, fresh, loin, sirloin (roasts), bone-in, separable lean and fat, cooked, roasted~^~PORK,FRSH,LOIN,SIRLOIN (ROASTS),BONE-IN,LN&FAT,CKD,RSTD~^~Loin end roast, Hipbone roast, Sirloin end roast~^^^~Bone, 20%, Connective tissue, 11%~^31^^6.25^4.27^9.02^3.87
-~10056~^~1000~^~Pork, fresh, loin, sirloin (chops or roasts), bone-in, separable lean only, raw~^~PORK,FRSH,LOIN,SIRLOIN (CHOPS OR ROASTS),BONE-IN,LN,RAW~^~Loin end roast, Hipbone roast, Sirloin end roast~^^^~Bone 17%, Connective tissue, 11%, separable fat 5%~^33^^6.25^4.27^9.02^3.87
-~10057~^~1000~^~Pork, fresh, loin, sirloin (chops), bone-in, separable lean only, cooked, braised~^~PORK,FRSH,LOIN,SIRLOIN (CHOPS),BONE-IN,LN,CKD,BRSD~^^^^~Connective tissue 6%, Bone 18%, Separable fat 7%~^31^^6.25^4.27^9.02^3.87
-~10058~^~1000~^~Pork, fresh, loin, sirloin (chops), bone-in, separable lean only, cooked, broiled~^~PORK,FRSH,LOIN,SIRLOIN (CHOPS),BONE-IN,LN,CKD,BRLD~^^^~Y~^~Connective tissue 6%, Bone 15%, Separable fat 8%~^29^^6.25^4.27^9.02^3.87
-~10059~^~1000~^~Pork, fresh, loin, sirloin (roasts), bone-in, separable lean only, cooked, roasted~^~PORK,FRSH,LOIN,SIRLOIN (ROASTS),BONE-IN,LN,CKD,RSTD~^~Loin end roast, Hipbone roast, Sirloin end roast~^^^~Bone, 20%, connective tissue, 11%, separable fat, 4%~^35^^6.25^4.27^9.02^3.87
-~10060~^~1000~^~Pork, fresh, loin, tenderloin, separable lean only, raw~^~PORK FRSH LOIN TENDERLOIN LN ONLY RAW~^~Pork tenderloin, URMIS #3358~^^~Y~^~Bone, 0%, Connective tissue, 3%, Separable fat, 2%~^5^^6.25^4.27^9.02^3.87
-~10061~^~1000~^~Pork, fresh, loin, tenderloin, separable lean only, cooked, roasted~^~PORK,FRSH,LOIN,TENDERLOIN,LN,CKD,RSTD~^~URMIS #3358, Pork, Pork tenderloin~^^~Y~^~Connective tissue 3%, Separable fat .70%~^4^^6.25^4.27^9.02^3.87
-~10062~^~1000~^~Pork, fresh, loin, top loin (chops), boneless, separable lean and fat, raw~^~PORK,FRSH,LOIN,TOP LOIN (CHOPS),BNLESS,LN & FAT,RAW~^~URMIS #3369, America's cut chops, Pork top loin chops, Strip loin chops~^^~Y~^~Connective tissue 12%~^12^^6.25^4.27^9.02^3.87
-~10063~^~1000~^~Pork, fresh, loin, top loin (chops), boneless, separable lean and fat, cooked, braised~^~PORK,FRSH,LOIN,TOP LOIN (CHOPS),BNLESS,LN & FAT,CKD,BRSD~^^^^~Connective tissue 6%~^6^^6.25^4.27^9.02^3.87
-~10064~^~1000~^~Pork, fresh, loin, top loin (chops), boneless, separable lean and fat, cooked, broiled~^~PORK,FRSH,LOIN,TOP LOIN (CHOPS),BNLESS,LN & FAT,CKD,BRLD~^~URMIS #3369, America's cut chops, Pork top loin chops, Strip loin chops~^^^~Connective tissue~^14^^6.25^4.27^9.02^3.87
-~10065~^~1000~^~Pork, fresh, loin, top loin (roasts), boneless, separable lean and fat, cooked, roasted~^~PORK,FRSH,LOIN,TOP LOIN (ROASTS),BNLESS,LN&FAT,CKD,RSTD~^~Boneless pork loin, Centercut pork loin roast~^^^~Connective tissue~^12^^6.25^4.27^9.02^3.87
-~10066~^~1000~^~Pork, fresh, loin, top loin (chops), boneless, separable lean only, raw~^~PORK,FRSH,LOIN,TOP LOIN (CHOPS),BNLESS,LN,RAW~^~URMIS #3369, America's cut chops, Pork top loin chops, Strip loin chops~^^~Y~^~Connective tissue, 12%, Separable fat, 5%~^17^^6.25^4.27^9.02^3.87
-~10067~^~1000~^~Pork, fresh, loin, top loin (chops), boneless, separable lean only, cooked, braised~^~PORK,FRSH,LOIN,TOP LOIN (CHOPS),BNLESS,LN,CKD,BRSD~^^^^~Connective tissue 6%, Separable fat 7%~^13^^6.25^4.27^9.02^3.87
-~10068~^~1000~^~Pork, fresh, loin, top loin (chops), boneless, separable lean only, cooked, broiled~^~PORK,FRSH,LOIN,TOP LOIN (CHOPS),BNLESS,LN,CKD,BRLD~^~URMIS #3369, America's cut chops, Pork top loin chops, Strip loin chops~^^~Y~^~Connective tissue, 9%, separable fat, 4%~^13^^6.25^4.27^9.02^3.87
-~10069~^~1000~^~Pork, fresh, loin, top loin (roasts), boneless, separable lean only, cooked, roasted~^~PORK,FRSH,LOIN,TOP LOIN (ROASTS),BNLESS,LN,CKD,RSTD~^~Boneless pork loin, Centercut boneless pork loin roast~^^^~Connective tissue 8%, separable fat 4%~^12^^6.25^4.27^9.02^3.87
-~10070~^~1000~^~Pork, fresh, shoulder, whole, separable lean and fat, raw~^~PORK,FRSH,SHLDR,WHL,LN&FAT,RAW~^^^~Y~^~Bone and skin~^25^^6.25^4.27^9.02^3.87
-~10071~^~1000~^~Pork, fresh, shoulder, whole, separable lean and fat, cooked, roasted~^~PORK,FRSH,SHLDR,WHL,LN&FAT,CKD,RSTD~^^^~Y~^~Bone and skin~^25^^6.25^4.27^9.02^3.87
-~10072~^~1000~^~Pork, fresh, shoulder, whole, separable lean only, raw~^~PORK,FRSH,SHLDR,WHL,LN,RAW~^^^^~Bone and skin 25%, separable fat 14%~^39^^6.25^4.27^9.02^3.87
-~10073~^~1000~^~Pork, fresh, shoulder, whole, separable lean only, cooked, roasted~^~PORK,FRSH,SHLDR,WHL,LN,CKD,RSTD~^^^~Y~^~Bone and skin 25%, separable fat 14%~^39^^6.25^4.27^9.02^3.87
-~10074~^~1000~^~Pork, fresh, shoulder, arm picnic, separable lean and fat, raw~^~PORK,FRSH,SHLDR,ARM PICNIC,LN&FAT,RAW~^^^^~Bone 16%, Connective tissue 6%~^22^^6.25^4.27^9.02^3.87
-~10075~^~1000~^~Pork, fresh, shoulder, arm picnic, separable lean and fat, cooked, braised~^~PORK,FRSH,SHLDR,ARM PICNIC,LN&FAT,CKD,BRSD~^^^~Y~^~Connective tissue 8%, Bone 15%,~^23^^6.25^4.27^9.02^3.87
-~10076~^~1000~^~Pork, fresh, shoulder, arm picnic, separable lean and fat, cooked, roasted~^~PORK,FRSH,SHLDR,ARM PICNIC,LN&FAT,CKD,RSTD~^^^^~Bone and skin~^27^^6.25^4.27^9.02^3.87
-~10077~^~1000~^~Pork, fresh, shoulder, arm picnic, separable lean only, raw~^~PORK,FRSH,SHLDR,ARM PICNIC,LN,RAW~^^^^~Bone 16%, Connective tissue 6%, separable fat 10%~^32^^6.25^4.27^9.02^3.87
-~10078~^~1000~^~Pork, fresh, shoulder, arm picnic, separable lean only, cooked, braised~^~PORK,FRSH,SHLDR,ARM PICNIC,LN,CKD,BRSD~^^^~Y~^~Bone 15%, Connective tissue 8%, Separable fat 7%~^30^^6.25^4.27^9.02^3.87
-~10079~^~1000~^~Pork, fresh, shoulder, arm picnic, separable lean only, cooked, roasted~^~PORK,FRSH,SHLDR,ARM PICNIC,LN,CKD,RSTD~^^^^~Bone and skin 27%, separable fat 16%~^43^^6.25^4.27^9.02^3.87
-~10080~^~1000~^~Pork, fresh, shoulder, (Boston butt), blade (steaks), separable lean and fat, raw~^~PORK,FRSH,SHLDR,(BOSTON BUTT),BLADE (STEAKS),LN & FAT,RAW~^~URMIS #3186, Pork shoulder chop, Shoulder blade steak, Pork steak~^^~Y~^~Bone 9%, Connective tissue 15%~^24^^6.25^4.27^9.02^3.87
-~10081~^~1000~^~Pork, fresh, shoulder, (Boston butt), blade (steaks), separable lean and fat, cooked, braised~^~PORK,FRSH,SHLDR,(BOSTON BUTT),BLADE (STKS),LN & FAT,CKD,BRSD~^~URMIS #3186, Pork shoulder chop, Shoulder blade steak, Pork steak~^^~Y~^~Bone 9%, Connective tissue 17%~^26^^6.25^4.27^9.02^3.87
-~10082~^~1000~^~Pork, fresh, shoulder, blade, boston (steaks), separable lean and fat, cooked, broiled~^~PORK,FRSH,SHLDR,BLADE,BOSTON (STEAKS),LN&FAT,CKD,BRLD~^^^~Y~^~Bone~^23^^6.25^4.27^9.02^3.87
-~10083~^~1000~^~Pork, fresh, shoulder, blade, boston (roasts), separable lean and fat, cooked, roasted~^~PORK,FRSH,SHLDR,BLADE,BOSTON (ROASTS),LN&FAT,CKD,RSTD~^^^~Y~^~Bone~^24^^6.25^4.27^9.02^3.87
-~10084~^~1000~^~Pork, fresh, shoulder, (Boston butt), blade (steaks), separable lean only, raw~^~PORK,FRSH,SHLDR,(BOSTON BUTT),BLADE (STEAKS),LN,RAW~^~URMIS # 3186, Pork shoulder chop, Shoulder blade steak, Pork steak~^^~Y~^~Bone, 9%, Connective tissue, 15%, Separable fat, 8%~^32^^6.25^4.27^9.02^3.87
-~10085~^~1000~^~Pork, fresh, shoulder, (Boston butt), blade (steaks), separable lean only, cooked, braised~^~PORK,FRSH,SHLDR,(BOSTON BUTT),BLADE (STEAKS),LN,CKD,BRSD~^~URMIS #3186, Pork shoulder chop, Shoulder blade steak, Pork steak~^^~Y~^~Bone, 9%, Connective tissue, 17%, Separable fat, 6%~^32^^6.25^4.27^9.02^3.87
-~10086~^~1000~^~Pork, fresh, shoulder, blade, boston (steaks), separable lean only, cooked, broiled~^~PORK,FRSH,SHLDR,BLADE,BOSTON (STEAKS),LN,CKD,BRLD~^^^~Y~^~Bone 23%, separable fat 10%~^33^^6.25^4.27^9.02^3.87
-~10087~^~1000~^~Pork, fresh, shoulder, blade, boston (roasts), separable lean only, cooked, roasted~^~PORK,FRSH,SHLDR,BLADE,BOSTON (ROASTS),LN,CKD,RSTD~^^^~Y~^~Bone 24%, separable fat 7%~^31^^6.25^4.27^9.02^3.87
-~10088~^~1000~^~Pork, fresh, spareribs, separable lean and fat, raw~^~PORK,FRSH,SPARERIBS,LN&FAT,RAW~^^^~Y~^~Bone~^30^^6.25^4.27^9.02^3.87
-~10089~^~1000~^~Pork, fresh, spareribs, separable lean and fat, cooked, braised~^~PORK,FRSH,SPARERIBS,LN&FAT,CKD,BRSD~^^^~Y~^~Bone~^38^^6.25^4.27^9.02^3.87
-~10093~^~1000~^~Pork, fresh, composite of trimmed retail cuts (leg, loin, and shoulder), separable lean only, cooked~^~PORK,FRSH,COMP OF RTL CUTS (LEG,LOIN,&SHLDR),LN,CKD~^^^~Y~^~Bone and skin 22%, separable fat 9%~^31^^6.25^4.27^9.02^3.87
-~10094~^~1000~^~Pork, fresh, loin, center loin (chops), boneless, separable lean only, raw~^~PORK,FRSH,LOIN,CNTR LOIN (CHOPS),BNLESS,LN,RAW~^^^~Y~^~separable fat 16%~^16^^^^^
-~10096~^~1000~^~Pork, fresh, variety meats and by-products, brain, raw~^~PORK,FRSH,VAR MEATS&BY-PRODUCTS,BRAIN,RAW~^^^^~Blood clots and membrane~^2^^6.25^4.27^9.02^3.87
-~10097~^~1000~^~Pork, fresh, variety meats and by-products, brain, cooked, braised~^~PORK,FRSH,VAR MEATS&BY-PRODUCTS,BRAIN,CKD,BRSD~^^^^^0^^6.25^4.27^9.02^3.87
-~10098~^~1000~^~Pork, fresh, variety meats and by-products, chitterlings, raw~^~PORK,FRSH,VAR MEATS&BY-PRODUCTS,CHITTERLINGS,RAW~^^^^~Separable fat~^18^^6.25^4.27^9.02^3.87
-~10099~^~1000~^~Pork, fresh, variety meats and by-products, chitterlings, cooked, simmered~^~PORK,FRSH,VAR MEATS&BY-PRODUCTS,CHITTERLINGS,CKD,SIMMRD~^^^~Y~^^0^^6.25^4.27^9.02^3.87
-~10100~^~1000~^~Pork, fresh, variety meats and by-products, ears, frozen, raw~^~PORK,FRSH,VAR MEATS&BY-PRODUCTS,EARS,FRZ,RAW~^^^^~Thaw juice and trim~^5^^6.25^4.27^9.02^3.87
-~10101~^~1000~^~Pork, fresh, variety meats and by-products, ears, frozen, cooked, simmered~^~PORK,FRSH,VAR MEATS&BY-PRODUCTS,EARS,FRZ,CKD,SIMMRD~^^^^^0^^6.25^4.27^9.02^3.87
-~10102~^~1000~^~Pork, fresh, variety meats and by-products, feet, raw~^~PORK,FRSH,VAR MEATS&BY-PRODUCTS,FEET,RAW~^^^^~Bone and hard tissue~^29^^6.25^4.27^9.02^3.87
-~10103~^~1000~^~Pork, fresh, variety meats and by-products, heart, raw~^~PORK,FRSH,VAR MEATS&BY-PRODUCTS,HEART,RAW~^^^^^0^^6.25^4.27^9.02^3.87
-~10104~^~1000~^~Pork, fresh, variety meats and by-products, heart, cooked, braised~^~PORK,FRSH,VAR MEATS&BY-PRODUCTS,HEART,CKD,BRSD~^^^^^0^^6.25^4.27^9.02^3.87
-~10105~^~1000~^~Pork, fresh, variety meats and by-products, jowl, raw~^~PORK,FRSH,VAR MEATS&BY-PRODUCTS,JOWL,RAW~^^^^^0^^6.25^4.27^9.02^3.87
-~10106~^~1000~^~Pork, fresh, variety meats and by-products, kidneys, raw~^~PORK,FRSH,VAR MEATS&BY-PRODUCTS,KIDNEYS,RAW~^^^^~Fat, veins, and membranes~^7^^6.25^4.27^9.02^3.87
-~10107~^~1000~^~Pork, fresh, variety meats and by-products, kidneys, cooked, braised~^~PORK,FRSH,VAR MEATS&BY-PRODUCTS,KIDNEYS,CKD,BRSD~^^^^^0^^6.25^4.27^9.02^3.87
-~10109~^~1000~^~Pork, fresh, variety meats and by-products, leaf fat, raw~^~PORK,FRSH,VAR MEATS&BY-PRODUCTS,LEAF FAT,RAW~^^^^^0^^6.25^4.27^9.02^3.87
-~10110~^~1000~^~Pork, fresh, variety meats and by-products, liver, raw~^~PORK,FRSH,VAR MEATS&BY-PRODUCTS,LIVER,RAW~^^^^^0^^6.25^4.27^9.02^3.87
-~10111~^~1000~^~Pork, fresh, variety meats and by-products, liver, cooked, braised~^~PORK,FRSH,VAR MEATS&BY-PRODUCTS,LIVER,CKD,BRSD~^^^^^0^^6.25^4.27^9.02^3.87
-~10112~^~1000~^~Pork, fresh, variety meats and by-products, lungs, raw~^~PORK,FRSH,VAR MEATS&BY-PRODUCTS,LUNGS,RAW~^^^^~Blood clots and membranes~^13^^6.25^4.27^9.02^3.87
-~10113~^~1000~^~Pork, fresh, variety meats and by-products, lungs, cooked, braised~^~PORK,FRSH,VAR MEATS&BY-PRODUCTS,LUNGS,CKD,BRSD~^^^^^0^^6.25^4.27^9.02^3.87
-~10114~^~1000~^~Pork, fresh, variety meats and by-products, mechanically separated, raw~^~PORK,FRSH,VAR MEATS&BY-PRODUCTS,MECHANICALLY SEPARATED,RAW~^^^^^0^^6.25^4.27^9.02^3.87
-~10115~^~1000~^~Pork, fresh, variety meats and by-products, pancreas, raw~^~PORK,FRSH,VAR MEATS&BY-PRODUCTS,PANCREAS,RAW~^^^^^0^^6.25^4.27^9.02^3.87
-~10116~^~1000~^~Pork, fresh, variety meats and by-products, pancreas, cooked, braised~^~PORK,FRSH,VAR MEATS&BY-PRODUCTS,PANCREAS,CKD,BRSD~^^^^^0^^6.25^4.27^9.02^3.87
-~10117~^~1000~^~Pork, fresh, variety meats and by-products, spleen, raw~^~PORK,FRSH,VAR MEATS&BY-PRODUCTS,SPLEEN,RAW~^^^^^0^^6.25^4.27^9.02^3.87
-~10118~^~1000~^~Pork, fresh, variety meats and by-products, spleen, cooked, braised~^~PORK,FRSH,VAR MEATS&BY-PRODUCTS,SPLEEN,CKD,BRSD~^^^^^0^^6.25^4.27^9.02^3.87
-~10119~^~1000~^~Pork, fresh, variety meats and by-products, stomach, raw~^~PORK,FRSH,VAR MEATS&BY-PRODUCTS,STOMACH,RAW~^^^~Y~^^0^^6.25^4.27^9.02^3.87
-~10120~^~1000~^~Pork, fresh, loin, blade (chops), bone-in, separable lean only, cooked, pan-fried~^~PORK,FRSH,LOIN,BLADE (CHOPS),BONE-IN,LN,CKD,PAN-FRIED~^^^~Y~^~Bone 19%, Connective tissue 8%, separable fat 6%~^33^^6.25^4.27^9.02^3.87
-~10121~^~1000~^~Pork, fresh, variety meats and by-products, tongue, raw~^~PORK,FRSH,VAR MEATS&BY-PRODUCTS,TONGUE,RAW~^^^^~Cartilage and connective tissue~^16^^6.25^4.27^9.02^4.11
-~10122~^~1000~^~Pork, fresh, variety meats and by-products, tongue, cooked, braised~^~PORK,FRSH,VAR MEATS&BY-PRODUCTS,TONGUE,CKD,BRSD~^^^^~Skin and trimmings~^24^^6.25^4.27^9.02^4.11
-~10123~^~1000~^~Pork, cured, bacon, unprepared~^~PORK,CURED,BACON,UNPREP~^^^~Y~^^0^^6.25^4.27^9.02^3.87
-~10128~^~1000~^~Pork, cured, breakfast strips, raw or unheated~^~PORK,CURED,BRKFST STRIPS,RAW OR UNHTD~^^^^^0^^6.25^4.27^9.02^3.87
-~10130~^~1000~^~Canadian bacon, unprepared~^~CANADIAN BACON,UNPREP~^^^~Y~^^0^^^^^
-~10132~^~1000~^~Pork, cured, feet, pickled~^~PORK,CURED,FEET,PICKLED~^^^~Y~^~Bone and hard tissue 66%~^66^^6.25^4.27^9.02^3.87
-~10134~^~1000~^~Pork, cured, ham, boneless, extra lean (approximately 5% fat), roasted~^~PORK,CURED,HAM,BNLESS,EX LN (APPROX 5% FAT),RSTD~^^^~Y~^^0^^6.25^4.27^9.02^3.87
-~10136~^~1000~^~Pork, cured, ham, boneless, regular (approximately 11% fat), roasted~^~PORK,CURED,HAM,BNLESS,REG (APPROX 11% FAT),RSTD~^^^~Y~^^0^^6.25^4.27^9.02^3.87
-~10137~^~1000~^~Pork, cured, ham, extra lean (approximately 4% fat), canned, unheated~^~PORK,CURED,HAM,EX LN (APPROX 4% FAT),CND,UNHTD~^^^~Y~^^0^^6.25^4.27^9.02^3.87
-~10138~^~1000~^~Pork, cured, ham, extra lean (approximately 4% fat), canned, roasted~^~PORK,CURED,HAM,EX LN (APPROX 4% FAT),CND,RSTD~^^^^^0^^6.25^4.27^9.02^3.87
-~10140~^~1000~^~Pork, cured, ham, regular (approximately 13% fat), canned, roasted~^~PORK,CURED,HAM,REG (APPROX 13% FAT),CND,RSTD~^^^^^0^^6.25^4.27^9.02^3.87
-~10141~^~1000~^~Pork, cured, ham, center slice, country-style, separable lean only, raw~^~PORK,CURED,HAM,CNTR SLICE,COUNTRY-STYLE,LN,RAW~^^^~Y~^~Bone and skin 3%, separable fat 12%~^15^^6.25^4.27^9.02^3.87
-~10142~^~1000~^~Pork, cured, ham, center slice, separable lean and fat, unheated~^~PORK,CURED,HAM,CNTR SLICE,LN&FAT,UNHTD~^^^^~Bone~^3^^6.25^4.27^9.02^3.87
-~10146~^~1000~^~Pork, cured, ham, patties, unheated~^~PORK,CURED,HAM,PATTIES,UNHTD~^^^^^0^^6.25^4.27^9.02^3.87
-~10149~^~1000~^~Pork, cured, ham, steak, boneless, extra lean, unheated~^~PORK,CURED,HAM,STEAK,BNLESS,EX LN,UNHTD~^^^^^0^^6.25^4.27^9.02^3.87
-~10150~^~1000~^~Pork, cured, ham, whole, separable lean and fat, unheated~^~PORK,CURED,HAM,WHL,LN&FAT,UNHTD~^^^^~Bone and skin~^18^^6.25^4.27^9.02^3.87
-~10152~^~1000~^~Pork, cured, ham, whole, separable lean only, unheated~^~PORK,CURED,HAM,WHL,LN,UNHTD~^^^~Y~^~Bone and skin 18%, separable fat 19%~^37^^6.25^4.27^9.02^3.87
-~10153~^~1000~^~Pork, cured, ham, whole, separable lean only, roasted~^~PORK,CURED,HAM,WHL,LN,RSTD~^^^~Y~^~Bone and skin 24%, separable fat 15%~^39^^6.25^4.27^9.02^3.87
-~10163~^~1000~^~Pork, fresh, loin, center loin (chops), boneless, separable lean only, cooked, pan-broiled~^~PORK,FRSH,LOIN,CNTR LOIN (CHOPS),BNLESS,LN,CKD,PAN-BROILED~^^^~Y~^~Separable lean 14%~^14^^^^^
-~10164~^~1000~^~Pork, fresh, loin, center loin (chops), boneless, separable lean and fat, raw~^~PORK,FRSH,LOIN,CNTR LOIN (CHOPS),BNLESS,LN & FAT,RAW~^^^~Y~^^0^^^^^
-~10165~^~1000~^~Pork, cured, salt pork, raw~^~PORK,CURED,SALT PORK,RAW~^^^~Y~^^0^^6.25^4.27^9.02^3.87
-~10166~^~1000~^~Pork, cured, separable fat (from ham and arm picnic), unheated~^~PORK,CURED,FAT (FROM HAM&ARM PICNIC),UNHTD~^^^~Y~^^0^^6.25^4.27^9.02^3.87
-~10167~^~1000~^~Pork, cured, separable fat (from ham and arm picnic), roasted~^~PORK,CURED,FAT (FROM HAM&ARM PICNIC),RSTD~^^^^^0^^6.25^4.27^9.02^3.87
-~10168~^~1000~^~Pork, cured, shoulder, arm picnic, separable lean and fat, roasted~^~PORK,CURED,SHLDR,ARM PICNIC,LN&FAT,RSTD~^^^~Y~^~Bone and skin~^27^^6.25^4.27^9.02^3.87
-~10169~^~1000~^~Pork, cured, shoulder, arm picnic, separable lean only, roasted~^~PORK,CURED,SHLDR,ARM PICNIC,LN,RSTD~^^^~Y~^~Bone and skin 27%, separable fat 19%~^46^^6.25^4.27^9.02^3.87
-~10170~^~1000~^~Pork, cured, shoulder, blade roll, separable lean and fat, unheated~^~PORK,CURED,SHLDR,BLADE ROLL,LN&FAT,UNHTD~^^^^^0^^6.25^4.27^9.02^3.87
-~10171~^~1000~^~Pork, cured, shoulder, blade roll, separable lean and fat, roasted~^~PORK,CURED,SHLDR,BLADE ROLL,LN&FAT,RSTD~^^^^^0^^6.25^4.27^9.02^3.87
-~10173~^~1000~^~Pork, fresh, variety meats and by-products, feet, cooked, simmered~^~PORK,FRSH,VAR MEATS&BY-PRODUCTS,FEET,CKD,SIMMRD~^^^~Y~^~Bone and hard tissue~^60^^6.25^4.27^9.02^3.87
-~10174~^~1000~^~Pork, fresh, variety meats and by-products, tail, raw~^~PORK,FRSH,VAR MEATS&BY-PRODUCTS,TAIL,RAW~^^^^~Bone and hard tissue~^30^^6.25^4.27^9.02^3.87
-~10175~^~1000~^~Pork, fresh, variety meats and by-products, tail, cooked, simmered~^~PORK,FRSH,VAR MEATS&BY-PRODUCTS,TAIL,CKD,SIMMRD~^^^^~Bone and hard tissue~^32^^6.25^4.27^9.02^3.87
-~10176~^~1000~^~Pork, fresh, loin, center loin (chops), bone-in, separable lean only, cooked, pan-fried~^~PORK,FRSH,LOIN,CNTR LOIN (CHOPS),BONE-IN,LN,CKD,PAN-FRIED~^^^~Y~^~Bone 14%, separable fat 8%, Connective tissue 6%~^28^^6.25^4.27^9.02^3.87
-~10177~^~1000~^~Pork, fresh, loin, center rib (chops), bone-in, separable lean only, cooked, pan-fried~^~PORK,FRSH,LOIN,CNTR RIB (CHOPS),BONE-IN,LN,CKD,PAN-FRIED~^^^~Y~^~Bone 17%, Connective tissue 6%, separable fat 9%~^32^^6.25^4.27^9.02^3.87
-~10178~^~1000~^~Pork, fresh, loin, blade (chops), bone-in, separable lean and fat, cooked, pan-fried~^~PORK,FRSH,LOIN,BLADE (CHOPS),BONE-IN,LN&FAT,CKD,PAN-FRIED~^^^~Y~^~Bone 19%, Connective tissue 8%~^27^^6.25^4.27^9.02^3.87
-~10179~^~1000~^~Pork, fresh, loin, center loin (chops), bone-in, separable lean and fat, cooked, pan-fried~^~PORK,FRSH,LOIN,CNTR LOIN CHOPS,BONE-IN,LN&FAT,CKD,PAN-FRIED~^^^~Y~^~Bone 14%, Connective tissue 6%~^20^^6.25^4.27^9.02^3.87
-~10180~^~1000~^~Pork, fresh, loin, center rib (chops), bone-in, separable lean and fat, cooked, pan-fried~^~PORK,FRSH,LOIN,CNTR RIB (CHOPS),BONE-IN,LN&FAT,CKD,PAN-FRIED~^^^~Y~^~Bone 17%, Connective tissue 6%~^23^^6.25^4.27^9.02^3.87
-~10181~^~1000~^~Pork, fresh, loin, top loin (chops), boneless, separable lean only, cooked, pan-fried~^~PORK,FRSH,LOIN,TOP LOIN (CHOPS),BNLESS,LN,CKD,PAN-FRIED~^^^~Y~^~Connective tissue 5%, separable fat 5%,~^10^^6.25^4.27^9.02^3.87
-~10182~^~1000~^~Pork, cured, ham, boneless, extra lean and regular, unheated~^~PORK,CURED,HAM,BNLESS,EX LN®,UNHTD~^^^~Y~^^0^^6.25^4.27^9.02^3.87
-~10183~^~1000~^~Pork, cured, ham, boneless, extra lean and regular, roasted~^~PORK,CURED,HAM,BNLESS,EX LN®,RSTD~^^^~Y~^^0^^6.25^4.27^9.02^3.87
-~10184~^~1000~^~Pork, cured, ham, extra lean and regular, canned, unheated~^~PORK,CURED,HAM,EX LN®,CND,UNHTD~^^^~Y~^^0^^6.25^4.27^9.02^3.87
-~10185~^~1000~^~Pork, cured, ham, extra lean and regular, canned, roasted~^~PORK,CURED,HAM,EX LN®,CND,RSTD~^^^~Y~^^0^^6.25^4.27^9.02^3.87
-~10186~^~1000~^~Pork, fresh, loin, top loin (chops), boneless, separable lean and fat, cooked, pan-fried~^~PORK,FRSH,LOIN,TOP LOIN (CHOPS),BNLESS,LN&FAT,CKD,PAN-FRIED~^^^~Y~^~Connective tissue 5%~^5^^6.25^4.27^9.02^3.87
-~10187~^~1000~^~Pork, fresh, composite of trimmed retail cuts (leg, loin, shoulder, and spareribs), separable lean and fat, raw~^~PORK,FRSH,COMP (LEG,LOIN,SHLDR,&SPARERIBS),LN&FAT,RAW~^^^^~Bone and skin~^25^^6.25^4.27^9.02^3.87
-~10188~^~1000~^~Pork, fresh, composite of trimmed retail cuts (leg, loin, shoulder, and spareribs), separable lean and fat, cooked~^~PORK,FRSH,COMP (LEG,LOIN,SHLDR,&SPARERIBS),LN&FAT,CKD~^^^~Y~^^0^^6.25^4.27^9.02^3.87
-~10189~^~1000~^~Pork, fresh, loin, center loin (chops), boneless, separable lean and fat, cooked, pan-broiled~^~PORK,FRSH,LOIN,CNTR LON (CHPS),BNLESS,LN & FAT,CKD,PAN-BRLED~^^^~Y~^^0^^^^^
-~10192~^~1000~^~Pork, fresh, backribs, separable lean and fat, raw~^~PORK,FRSH,BACKRIBS,LN&FAT,RAW~^^^^~Bone 30%, Connective tissue 7%~^37^^6.25^4.27^9.02^3.87
-~10193~^~1000~^~Pork, fresh, backribs, separable lean and fat, cooked, roasted~^~PORK,FRSH,BACKRIBS,LN&FAT,CKD,RSTD~^^^^~Bone~^43^^6.25^4.27^9.02^3.87
-~10194~^~1000~^~Pork, fresh, loin, center rib (chops or roasts), boneless, separable lean and fat, raw~^~PORK,FRSH,LOIN,CNTR RIB (CHOPS OR ROASTS),BNLESS,LN&FAT,RAW~^^^^~Connective tissue~^11^^6.25^4.27^9.02^3.87
-~10195~^~1000~^~Pork, fresh, loin, center rib (chops), boneless, separable lean and fat, cooked, braised~^~PORK,FRSH,LOIN,CNTR RIB (CHOPS),BNLESS,LN&FAT,CKD,BRSD~^^^^~Connective tissue~^5^^6.25^4.27^9.02^3.87
-~10196~^~1000~^~Pork, fresh, loin, center rib (chops), boneless, separable lean and fat, cooked, broiled~^~PORK,FRSH,LOIN,CNTR RIB (CHOPS),BNLESS,LN&FAT,CKD,BRLD~^^^^~Connective tissue~^6^^6.25^4.27^9.02^3.87
-~10197~^~1000~^~Pork, fresh, loin, center rib (chops), boneless, separable lean and fat, cooked, pan-fried~^~PORK,FRSH,LOIN,CNTR RIB (CHOPS),BNLESS,LN&FAT,CKD,PAN-FRIED~^^^~Y~^~Connective tissue~^8^^6.25^4.27^9.02^3.87
-~10198~^~1000~^~Pork, fresh, loin, center rib (roasts), boneless, separable lean and fat, cooked, roasted~^~PORK,FRSH,LOIN,CNTR RIB (ROASTS),BNLESS,LN&FAT,CKD,RSTD~^^^^~Connective tissue~^8^^6.25^4.27^9.02^3.87
-~10199~^~1000~^~Pork, fresh, loin, center rib (chops or roasts), boneless, separable lean only, raw~^~PORK,FRSH,LOIN,CNTR RIB (CHOPS OR ROASTS),BNLESS,LN,RAW~^^^^~Connective tissue 11%, separable fat 11%~^22^^6.25^4.27^9.02^3.87
-~10200~^~1000~^~Pork, fresh, loin, center rib (chops), boneless, separable lean only, cooked, braised~^~PORK,FRSH,LOIN,CNTR RIB (CHOPS),BNLESS,LN,CKD,BRSD~^^^~Y~^~Connective tissue 5%, separable fat 10%~^15^^6.25^4.27^9.02^3.87
-~10201~^~1000~^~Pork, fresh, loin, center rib (chops), boneless, separable lean only, cooked, broiled~^~PORK,FRSH,LOIN,CNTR RIB (CHOPS),BNLESS,LN,CKD,BRLD~^^^^~Connective tissue 6%, separable fat 10%~^16^^6.25^4.27^9.02^3.87
-~10202~^~1000~^~Pork, fresh, loin, center rib (chops), boneless, separable lean only, cooked, pan-fried~^~PORK,FRSH,LOIN,CNTR RIB (CHOPS),BNLESS,LN,CKD,PAN-FRIED~^^^~Y~^~Connective tissue 8%, separable fat 11%~^19^^6.25^4.27^9.02^3.87
-~10203~^~1000~^~Pork, fresh, loin, center rib (roasts), boneless, separable lean only, cooked, roasted~^~PORK,FRSH,LOIN,CNTR RIB (ROASTS),BNLESS,LN,CKD,RSTD~^^^^~Connective tissue 8%, separable fat 10%~^18^^6.25^4.27^9.02^3.87
-~10204~^~1000~^~Pork, fresh, loin, country-style ribs, separable lean and fat, raw~^~PORK,FRSH,LOIN,COUNTRY-STYLE RIBS,LN&FAT,RAW~^~Country Ribs~^^^~Bone 21%, Connective tissue 14%~^35^^6.25^4.27^9.02^3.87
-~10205~^~1000~^~Pork, fresh, loin, country-style ribs, separable lean and fat, cooked, braised~^~PORK,FRSH,LOIN,COUNTRY-STYLE RIBS,LN&FAT,CKD,BRSD~^~Country ribs~^^^~Bone 24%, Connective tissue 15%~^39^^6.25^4.27^9.02^3.87
-~10206~^~1000~^~Pork, fresh, loin, country-style ribs, separable lean and fat, bone-in, cooked, roasted~^~PORK,FRSH,LOIN,COUNTRY-STYLE RIBS,LN & FAT,BONE-IN,CKD,RSTD~^^^^~Connective tisue 8%, Bone 17%~^25^^6.25^4.27^9.02^3.87
-~10207~^~1000~^~Pork, fresh, loin, country-style ribs, separable lean only, raw~^~PORK,FRSH,LOIN,COUNTRY-STYLE RIBS,LN,RAW~^~Country ribs~^^^~Bone 21%, Connective tissue, 14%, separable fat 6%~^41^^6.25^4.27^9.02^3.87
-~10208~^~1000~^~Pork, fresh, loin, country-style ribs, separable lean only, cooked, braised~^~PORK,FRSH,LOIN,COUNTRY-STYLE RIBS,LN,CKD,BRSD~^~Country ribs~^^^~Bone 24%, Connective tissue, 15%, separable fat 4%~^43^^6.25^4.27^9.02^3.87
-~10209~^~1000~^~Pork, fresh, loin, country-style ribs, separable lean only, bone-in, cooked, roasted~^~PORK,FRSH,LOIN,COUNTRY-STYLE RIBS,LN,BONE-IN,CKD,RSTD~^^^^~Connective tissue 8%, Bone 17%, Separable fat 7%~^32^^6.25^4.27^9.02^3.87
-~10210~^~1000~^~Pork, fresh, loin, sirloin (chops or roasts), boneless, separable lean and fat, raw~^~PORK,FRSH,LOIN,SIRLOIN (CHOPS OR ROASTS),BNLESS,LN&FAT,RAW~^^^^~Connective tissue 4%~^6^^6.25^4.27^9.02^3.87
-~10211~^~1000~^~Pork, fresh, loin, sirloin (chops), boneless, separable lean and fat, cooked, braised~^~PORK,FRSH,LOIN,SIRLOIN (CHOPS),BNLESS,LN&FAT,CKD,BRSD~^^^~Y~^~Connective tissue 2%~^2^^6.25^4.27^9.02^3.87
-~10212~^~1000~^~Pork, fresh, loin, sirloin (chops), boneless, separable lean and fat, cooked, broiled~^~PORK,FRSH,LOIN,SIRLOIN (CHOPS),BNLESS,LN&FAT,CKD,BRLD~^^^~Y~^~Connective tissue 2%~^2^^6.25^4.27^9.02^3.87
-~10213~^~1000~^~Pork, fresh, loin, sirloin (roasts), boneless, separable lean and fat, cooked, roasted~^~PORK,FRSH,LOIN,SIRLOIN (ROASTS),BNLESS,LN&FAT,CKD,RSTD~^^^~Y~^~Connective tissue 3%~^3^^6.25^4.27^9.02^3.87
-~10214~^~1000~^~Pork, fresh, loin, sirloin (chops or roasts), boneless, separable lean only, raw~^~PORK,FRSH,LOIN,SIRLOIN (CHOPS OR ROASTS),BNLESS,LN,RAW~^^^^~Connective tissue 5%, Separable fat 2%~^7^^6.25^4.27^9.02^3.87
-~10215~^~1000~^~Pork, fresh, loin, sirloin (chops), boneless, separable lean only, cooked, braised~^~PORK,FRSH,LOIN,SIRLOIN (CHOPS),BNLESS,LN,CKD,BRSD~^^^^~Connective tissue 3%, Separable fat 1%~^4^^6.25^4.27^9.02^3.87
-~10216~^~1000~^~Pork, fresh, loin, sirloin (chops), boneless, separable lean only, cooked, broiled~^~PORK,FRSH,LOIN,SIRLOIN (CHOPS),BNLESS,LN,CKD,BRLD~^^^~Y~^~Connective tissue 2%, Separable fat 2%~^4^^6.25^4.27^9.02^3.87
-~10217~^~1000~^~Pork, fresh, loin, sirloin (roasts), boneless, separable lean only, cooked, roasted~^~PORK,FRSH,LOIN,SIRLOIN (ROASTS),BNLESS,LN,CKD,RSTD~^^^~Y~^~Connective tissue 3%, separable fat 3%~^6^^6.25^4.27^9.02^3.87
-~10218~^~1000~^~Pork, fresh, loin, tenderloin, separable lean and fat, raw~^~PORK,FRSH,LOIN,TENDERLOIN,LN&FAT,RAW~^~URMIS #3358, Pork tenderloin~^^~Y~^~Connective tissue 5%~^5^^6.25^4.27^9.02^3.87
-~10219~^~1000~^~Pork, fresh, ground, raw~^~PORK,FRESH,GROUND,RAW~^^^^^0^^6.25^4.27^9.02^3.87
-~10220~^~1000~^~Pork, fresh, ground, cooked~^~PORK,FRESH,GROUND,COOKED~^^^~Y~^^0^^6.25^4.27^9.02^3.87
-~10221~^~1000~^~Pork, fresh, loin, tenderloin, separable lean and fat, cooked, broiled~^~PORK,FRSH,LOIN,TENDERLOIN,LN&FAT,CKD,BRLD~^^^^~Connective tissue~^3^^6.25^4.27^9.02^3.87
-~10222~^~1000~^~Pork, fresh, loin, tenderloin, separable lean and fat, cooked, roasted~^~PORK,FRSH,LOIN,TENDERLOIN,LN&FAT,CKD,RSTD~^~URMIS #3358, Pork tenderloin~^^~Y~^~Connective tissue~^4^^6.25^4.27^9.02^3.87
-~10223~^~1000~^~Pork, fresh, loin, tenderloin, separable lean only, cooked, broiled~^~PORK,FRSH,LOIN,TENDERLOIN,LN,CKD,BRLD~^^^^~Connective tissue 3%, separable fat 3%~^6^^6.25^4.27^9.02^3.87
-~10224~^~1000~^~Pork, fresh, loin, top loin (roasts), boneless, separable lean and fat, raw~^~PORK,FRSH,LOIN,TOP LOIN (ROASTS),BNLESS,LN&FAT,RAW~^~Boneless pork loin, Centercut boneless pork loin roast~^^^~Connective tissue~^16^^6.25^4.27^9.02^3.87
-~10225~^~1000~^~Pork, fresh, loin, top loin (roasts), boneless, separable lean only, raw~^~PORK,FRSH,LOIN,TOP LOIN (ROASTS),BNLESS,LN,RAW~^~Boneless pork loin, Centercut boneless pork loin roast~^^^~Connective tissue 10%, separable fat 6%~^16^^6.25^4.27^9.02^3.87
-~10226~^~1000~^~Pork, fresh, composite of trimmed retail cuts (loin and shoulder blade), separable lean and fat, raw~^~PORK,FRSH,COMP OF RTL CUTS (LOIN & SHLDR BLADE),LN & FAT,RAW~^^^~Y~^~Bone~^22^^6.25^4.27^9.02^3.87
-~10227~^~1000~^~Pork, fresh, composite of trimmed retail cuts (loin and shoulder blade), separable lean and fat, cooked~^~PORK,FRSH,COMP OF RTL CUTS (LOIN&SHLDR BLADE),LN&FAT,CKD~^^^~Y~^~Bone~^22^^6.25^4.27^9.02^3.87
-~10228~^~1000~^~Pork, fresh, composite of trimmed retail cuts (loin and shoulder blade), separable lean only, raw~^~PORK,FRSH,COMP OF RTL CUTS (LOIN&SHLDR BLADE),LN,RAW~^^^^~Bone 22%, separable fat 8%~^30^^6.25^4.27^9.02^3.87
-~10229~^~1000~^~Pork, fresh, composite of trimmed retail cuts (loin and shoulder blade), separable lean only, cooked~^~PORK,FRSH,COMP OF RTL CUTS (LOIN&SHLDR BLADE),LN,CKD~^^^^~Bone 22%, separable fat 8%~^30^^6.25^4.27^9.02^3.87
-~10851~^~1000~^~HORMEL, Cure 81 Ham~^~HORMEL,CURE 81 HAM~^^^^^0^^^4.00^9.00^4.00
-~10852~^~1000~^~HORMEL ALWAYS TENDER, Pork Tenderloin, Teriyaki-Flavored~^~HORMEL ALWAYS TENDER,PORK TENDERLOIN,TERIYAKI-FLAVORED~^^^^^0^^^4.00^9.00^4.00
-~10853~^~1000~^~HORMEL ALWAYS TENDER, Pork Tenderloin, Peppercorn-Flavored~^~HORMEL ALWAYS TENDER,PORK TENDERLOIN,PEPPERCORN-FLAVORED~^^^^^0^^^4.00^9.00^4.00
-~10854~^~1000~^~HORMEL ALWAYS TENDER, Pork Loin Filets, Lemon Garlic-Flavored~^~HORMEL ALWAYS TENDER,PORK LOIN FILETS,LEMON GARLIC-FLAVORED~^^^^^0^^^4.00^9.00^4.00
-~10855~^~1000~^~HORMEL ALWAYS TENDER, Center Cut Chops, Fresh Pork~^~HORMEL ALWAYS TENDER,CNTR CUT CHOPS,FRSH PORK~^^^^^0^^^4.00^9.00^4.00
-~10856~^~1000~^~HORMEL ALWAYS TENDER, Boneless Pork Loin, Fresh Pork~^~HORMEL ALWAYS TENDER,BNLESS PORK LOIN,FRSH PORK~^^^^^0^^^4.00^9.00^4.00
-~10857~^~1000~^~HORMEL Canadian Style Bacon~^~HORMEL CANADIAN STYLE BACON~^^^^^0^^^4.00^9.00^4.00
-~10858~^~1000~^~Pork, fresh, loin, top loin (chops), boneless, separable lean only, with added solution, cooked, pan-broiled~^~PORK,FRSH,LN,TP LN (CHPS),BNLESS,LN,W/ ADDED SLN,CKD,PN-BRLD~^^^^~Separable fat~^9^^6.25^4.27^9.02^3.87
-~10859~^~1000~^~Pork, fresh, loin, top loin (chops), boneless, separable lean and fat, with added solution, cooked, pan-broiled~^~PORK,FRSH,LN,TPLN(CHPS),BNLS,LN & FT,W/ADDED SLN,CKD,PN-BRLD~^^^^^0^^^4.27^9.02^3.87
-~10860~^~1000~^~Pork, cured, bacon, cooked, baked~^~PORK,CURED,BACON,CKD,BKD~^^^^^0^^6.25^4.27^9.02^3.87
-~10861~^~1000~^~Pork, cured, bacon, cooked, microwaved~^~PORK,CURED,BACON,CKD,MICROWAVED~^^^^^0^^6.25^4.27^9.02^3.87
-~10862~^~1000~^~Pork, cured, bacon, pre-sliced, cooked, pan-fried~^~PORK,CURED,BACON,PRE-SLICED,CKD,PAN-FRIED~^^^~Y~^^0^^6.25^4.27^9.02^3.87
-~10863~^~1000~^~Pork, fresh, variety meats and by-products, stomach, cooked, simmered~^~PORK,FRSH,VAR MEATS & BY-PRODUCTS,STOMACH,CKD,SIMMRD~^^^^^0^^6.25^4.27^9.02^3.87
-~10864~^~1000~^~Pork, bacon, rendered fat, cooked~^~PORK,BACON,RENDERED FAT,CKD~^~bacon drippings~^^^^0^^6.25^4.27^9.02^3.87
-~10865~^~1000~^~Pork, cured, ham -- water added, rump, bone-in, separable lean only, heated, roasted~^~PORK,CURED,HAM -- H2O ADDED,RUMP,BONE-IN,LN,HTD,RSTD~^^^^~Bone 10%, separable fat 9%~^19^^^^^
-~10866~^~1000~^~Pork, cured, ham -- water added, rump, bone-in, separable lean only, unheated~^~PORK,CURED,HAM -- H2O ADDED,RUMP,BONE-IN,LN,UNHTD~^^^^~Bone 12%, Separable fat 16%~^28^^6.25^^^
-~10867~^~1000~^~Pork, cured, ham -- water added, shank, bone-in, separable lean only, heated, roasted~^~PORK,CURED,HAM -- H2O ADDED,SHANK,BONE-IN,LN,HTD,RSTD~^^^^~Bone 13%, Connective tissue 6%, Separable fat 16%~^35^^^^^
-~10868~^~1000~^~Pork, cured, ham -- water added, slice, bone-in, separable lean only, heated, pan-broil~^~PORK,CURED,HAM -- H2O ADDED,SLICE,BONE-IN,LN,HTD,PAN-BROIL~^^^^~Separable fat 9%, Bone 4%~^13^^^^^
-~10869~^~1000~^~Pork, cured, ham and water product, slice, bone-in, separable lean only, heated, pan-broil~^~PORK,CURED,HAM & H2O PRODUCT,SLICE,BONE-IN,LN,HTD,PAN-BROIL~^^^^~Bone 3%, Connective tissue 1%, Separable fat 8%~^12^^^^^
-~10870~^~1000~^~Pork, cured, ham and water product, slice, boneless, separable lean only, heated, pan-broil~^~PORK,CURED,HAM & H2O PRODUCT,SLICE,BNLESS,LN,HTD,PAN-BROIL~^^^~Y~^^0^^^^^
-~10871~^~1000~^~Pork, cured, ham and water product, whole, boneless, separable lean only, heated, roasted~^~PORK,CURED,HAM & H2O PRODUCT,WHL,BNLESS,LN,HTD,RSTD~^^^~Y~^^0^^^^^
-~10872~^~1000~^~Pork, cured, ham and water product, whole, boneless, separable lean only, unheated~^~PORK,CURED,HAM & H2O PRODUCT,WHL,BNLESS,LN,UNHTD~^^^~Y~^~Separable fat 3%~^3^^^^^
-~10873~^~1000~^~Pork, cured, ham with natural juices, rump, bone-in, separable lean only, heated, roasted~^~PORK,CURED,HAM W/ NAT JUICES,RUMP,BONE-IN,LN,HTD,RSTD~^^^^~Bone 14%, Separable fat 9%~^23^^^^^
-~10874~^~1000~^~Pork, cured, ham with natural juices, shank, bone-in, separable lean only, heated, roasted~^~PORK,CURED,HAM W/ NAT JUICES,SHANK,BONE-IN,LN,HTD,RSTD~^^^^~Bone 12%, Connective tissue 3%, Separable fat 11%~^26^^^^^
-~10875~^~1000~^~Pork, cured, ham with natural juices, slice, bone-in, separable lean only, heated, pan-broil~^~PORK,CURED,HAM W/ NAT JUICES,SLICE,BONE-IN,LN,HTD,PAN-BROIL~^^^^~Bone 3%, Separable fat 8%~^11^^^^^
-~10876~^~1000~^~Pork, cured, ham with natural juices, spiral slice, meat only, boneless, separable lean only, heated, roasted~^~PRK,CRD,HAM W/ NAT JUCS,SPRL SLC,MEAT ONLY,BNLES,LN,HTD,RSTD~^^^^~Separable fat~^3^^^^^
-~10877~^~1000~^~Pork, cured, ham and water product, rump, bone-in, separable lean only, heated, roasted~^~PORK,CURED,HAM & H2O PRODUCT,RUMP,BONE-IN,LN,HTD,RSTD~^^^^~Bone 13%, Connective tissue 1%, Separable fat 12%~^26^^^^^
-~10878~^~1000~^~Pork, cured, ham -- water added, slice, boneless, separable lean only, heated, pan-broil~^~PORK,CURED,HAM -- H2O ADDED,SLICE,BNLESS,LN,HTD,PAN-BROIL~^^^~Y~^~Separable fat~^2^^^^^
-~10879~^~1000~^~Pork, cured, ham -- water added, whole, boneless, separable lean only, heated, roasted~^~PORK,CURED,HAM -- H2O ADDED,WHL,BNLESS,LN,HTD,RSTD~^^^~Y~^~Separable fat 2%~^2^^^^^
-~10880~^~1000~^~Pork, cured, ham -- water added, whole, boneless, separable lean only, unheated~^~PORK,CURED,HAM -- H2O ADDED,WHL,BNLESS,LN,UNHTD~^^^~Y~^~Separable fat~^3^^^^^
-~10881~^~1000~^~Pork, cured, ham and water product, shank, bone-in, separable lean only, heated, roasted~^~PORK,CURED,HAM & H2O PRODUCT,SHANK,BONE-IN,LN,HTD,RSTD~^^^^~Bone 16%, Connective tissue 4%, Separable fat 21%~^41^^^^^
-~10882~^~1000~^~Pork, cured, ham with natural juices, slice, boneless, separable lean only, heated, pan-broil~^~PORK,CURED,HAM W/ NAT JUICES,SLICE,BNLESS,LN,HTD,PAN-BROIL~^^^~Y~^~Separable fat~^1^^^^^
-~10883~^~1000~^~Pork, cured, ham with natural juices, whole, boneless, separable lean only, heated, roasted~^~PORK,CURED,HAM W/ NAT JUICES,WHL,BNLESS,LN,HTD,RSTD~^^^~Y~^~Separable fat 3%~^3^^^^^
-~10884~^~1000~^~Pork, cured, ham with natural juices, whole, boneless, separable lean only, unheated~^~PORK,CURED,HAM W/ NAT JUICES,WHL,BNLESS,LN,UNHTD~^^^~Y~^~Separable fat 4%~^4^^^^^
-~10885~^~1000~^~Pork, cured, ham -- water added, shank, bone-in, separable lean only, unheated~^~PORK,CURED,HAM -- H2O ADDED,SHANK,BONE-IN,LN,UNHTD~^^^^~Bone 10%, Separable fat 16%~^26^^6.25^^^
-~10886~^~1000~^~Pork, cured, ham -- water added, slice, bone-in, separable lean only, unheated~^~PORK,CURED,HAM -- H2O ADDED,SLICE,BONE-IN,LN,UNHTD~^^^^~Bone 4%, Separable fat 16%~^20^^6.25^^^
-~10887~^~1000~^~Pork, cured, ham and water product, rump, bone-in, separable lean only, unheated~^~PORK,CURED,HAM & H2O PRODUCT,RUMP,BONE-IN,LN,UNHTD~^^^^~Bone~^18^^6.25^^^
-~10888~^~1000~^~Pork, cured, ham and water product, slice, bone-in, separable lean only, unheated~^~PORK,CURED,HAM & H2O PRODUCT,SLICE,BONE-IN,LN,UNHTD~^^^^~Bone 3%, Separable fat 11%~^14^^6.25^^^
-~10889~^~1000~^~Pork, cured, ham and water product, shank, bone-in, unheated, separable lean only~^~PORK,CURED,HAM & H2O PRODUCT,SHANK,BONE-IN,UNHTD,LN~^^^^~Bone 17%, Separable fat 27%~^44^^6.25^^^
-~10890~^~1000~^~Pork, cured, ham with natural juices, rump, bone-in, separable lean only, unheated~^~PORK,CURED,HAM W/ NAT JUICES,RUMP,BONE-IN,LN,UNHTD~^^^^~Bone 21%, Separable fat 16%~^37^^6.25^^^
-~10891~^~1000~^~Pork, cured, ham with natural juices, shank, bone-in, separable lean only, unheated~^~PORK,CURED,HAM W/ NAT JUICES,SHANK,BONE-IN,LN,UNHTD~^^^^~Bone 10%, Separable fat 14%~^24^^6.25^^^
-~10892~^~1000~^~Pork, cured, ham with natural juices, slice, bone-in, separable lean only, unheated~^~PORK,CURED,HAM W/ NAT JUICES,SLICE,BONE-IN,LN,UNHTD~^^^^~Bone 3%, Separable fat 9%~^12^^6.25^^^
-~10893~^~1000~^~Pork, cured, ham with natural juices, spiral slice, boneless, separable lean only, unheated~^~PORK,CURED,HAM W/ NAT JUICES,SPIRAL SLICE,BNLESS,LN,UNHTD~^^^~Y~^~Separable fat 5%~^5^^6.25^^^
-~10894~^~1000~^~Pork, cured, ham, separable fat, boneless, heated~^~PORK,CURED,HAM,FAT,BNLESS,HTD~^^^^^0^^6.25^^^
-~10895~^~1000~^~Pork, cured, ham, separable fat, boneless, unheated~^~PORK,CURED,HAM,FAT,BNLESS,UNHTD~^^^^^0^^6.25^^^
-~10898~^~1000~^~Pork, pickled pork hocks~^~PORK,PICKLED PORK HOCKS~^^^^^0^^6.25^^^
-~10899~^~1000~^~Pork, cured, ham, slice, bone-in, separable lean only, heated, pan-broil~^~PORK,CURED,HAM,SLICE,BONE-IN,LN,HTD,PAN-BROIL~^^^^~Bone 5%, Separable fat 9%~^14^^^^^
-~10900~^~1000~^~Pork, cured, ham with natural juices, whole, boneless, separable lean and fat, unheated~^~PORK,CURED,HAM W/ NAT JUICES,WHL,BNLESS,LN & FAT,UNHTD~^^^~Y~^^0^^^^^
-~10901~^~1000~^~Pork, cured, ham with natural juices, spiral slice, boneless, separable lean and fat, unheated~^~PORK,CURED,HAM W/ NAT JUICES,SPIRL SLCE,BNLES,LN & FAT,UNHTD~^^^~Y~^^0^^^^^
-~10902~^~1000~^~Pork, cured, ham with natural juices, slice, bone-in, separable lean and fat, unheated~^~PORK,CURED,HAM W/ NAT JUICES,SLICE,BONE-IN,LN & FAT,UNHTD~^^^^~Bone~^3^^^^^
-~10903~^~1000~^~Pork, cured, ham with natural juices, shank, bone-in, separable lean and fat, unheated~^~PORK,CURED,HAM W/ NAT JUICES,SHANK,BONE-IN,LN & FAT,UNHTD~^^^^~Bone~^10^^^^^
-~10904~^~1000~^~Pork, cured, ham with natural juices, rump, bone-in, separable lean and fat, unheated~^~PORK,CURED,HAM W/ NAT JUICES,RUMP,BONE-IN,LN & FAT,UNHTD~^^^^~Bone~^21^^^^^
-~10905~^~1000~^~Pork, cured, ham and water product, whole, boneless, separable lean and fat, unheated~^~PORK,CURED,HAM & H2O PRODUCT,WHL,BNLESS,LN & FAT,UNHTD~^^^~Y~^^0^^^^^
-~10906~^~1000~^~Pork, cured, ham and water product, slice, bone-in, separable lean and fat, unheated~^~PORK,CURED,HAM & H2O PRODUCT,SLICE,BONE-IN,LN & FAT,UNHTD~^^^^~Bone~^3^^^^^
-~10907~^~1000~^~Pork, cured, ham and water product, shank, bone-in, separable lean and fat, unheated~^~PORK,CURED,HAM & H2O PRODUCT,SHANK,BONE-IN,LN & FAT,UNHTD~^^^^~Bone~^17^^^^^
-~10908~^~1000~^~Pork, cured, ham and water product, rump, bone-in, separable lean and fat, unheated~^~PORK,CURED,HAM & H2O PRODUCT,RUMP,BONE-IN,LN & FAT,UNHTD~^^^^~Bone~^18^^^^^
-~10909~^~1000~^~Pork, cured, ham -- water added, whole, boneless, separable lean and fat, unheated~^~PORK,CURED,HAM -- H2O ADDED,WHL,BNLESS,LN & FAT,UNHTD~^^^~Y~^^0^^^^^
-~10910~^~1000~^~Pork, cured, ham -- water added, slice, bone-in, separable lean and fat, unheated~^~PORK,CURED,HAM -- H2O ADDED,SLICE,BONE-IN,LN & FAT,UNHTD~^^^^~Bone~^4^^^^^
-~10911~^~1000~^~Pork, cured, ham -- water added, shank, bone-in, separable lean and fat, unheated~^~PORK,CURED,HAM -- H2O ADDED,SHANK,BONE-IN,LN & FAT,UNHTD~^^^^~Bone~^10^^^^^
-~10912~^~1000~^~Pork, cured, ham -- water added, rump, bone-in, separable lean and fat, unheated~^~PORK,CURED,HAM -- H2O ADDED,RUMP,BONE-IN,LN & FAT,UNHTD~^^^^~Bone~^12^^^^^
-~10913~^~1000~^~Pork, cured, ham -- water added, rump, bone-in, separable lean and fat, heated, roasted~^~PORK,CURED,HAM -- H2O ADDED,RUMP,BONE-IN,LN & FAT,HTD,RSTD~^^^^~Bone~^10^^^^^
-~10914~^~1000~^~Pork, cured, ham -- water added, shank, bone-in, separable lean and fat, heated, roasted~^~PORK,CURED,HAM -- H2O ADDED,SHANK,BONE-IN,LN & FAT,HTD,RSTD~^^^^~Bone 13%, Connective tissue 6%~^19^^^^^
-~10915~^~1000~^~Pork, cured, ham -- water added, slice, bone-in, separable lean and fat, heated, pan-broil~^~PORK,CURED,HAM -- H2O ADDED,SLCE,BNE-IN,LN & FAT,HTD,PAN-BRL~^^^^~Bone~^4^^^^^
-~10916~^~1000~^~Pork, cured, ham -- water added, slice, boneless, separable lean and fat, heated, pan-broil~^~PORK,CURED,HAM -- H2O ADDED,SLCE,BNLESS,LN & FAT,HTD,PAN-BRL~^^^~Y~^^0^^^^^
-~10917~^~1000~^~Pork, cured, ham -- water added, whole, boneless, separable lean and fat, heated, roasted~^~PORK,CURED,HAM -- H2O ADDED,WHL,BNLESS,LN & FAT,HTD,RSTD~^^^~Y~^^0^^^^^
-~10918~^~1000~^~Pork, cured, ham and water product, rump, bone-in, separable lean and fat, heated, roasted~^~PORK,CURED,HAM & H2O PRODUCT,RUMP,BONE-IN,LN & FAT,HTD,RSTD~^^^^~Bone 13%, Connective tissue 1%~^14^^^^^
-~10919~^~1000~^~Pork, cured, ham and water product, shank, bone-in, separable lean and fat, heated, roasted~^~PORK,CURED,HAM & H2O PRODUCT,SHANK,BONE-IN,LN & FAT,HTD,RSTD~^^^^~Bone 16%, Connective tissue 4%~^20^^^^^
-~10920~^~1000~^~Pork, cured, ham and water product, slice, bone-in, separable lean and fat, heated, pan-broil~^~PORK,CURED,HAM & H2O PRDCT,SLCE,BNE-IN,LN & FAT,HTD,PAN-BRL~^^^^~Bone 3%, Connective tissue 1%~^4^^^^^
-~10921~^~1000~^~Pork, cured, ham and water product, slice, boneless, separable lean and fat, heated, pan-broil~^~PORK,CURED,HAM & H2O PRDCT,SLICE,BNLESS,LN & FAT,HTD,PAN-BRL~^^^~Y~^^0^^^^^
-~10922~^~1000~^~Pork, cured, ham and water product, whole, boneless, separable lean and fat, heated, roasted~^~PORK,CURED,HAM & H2O PRODUCT,WHL,BNLESS,LN & FAT,HTD,RSTD~^^^~Y~^^0^^^^^
-~10923~^~1000~^~Pork, cured, ham with natural juices, rump, bone-in, separable lean and fat, heated, roasted~^~PORK,CURED,HAM W/ NAT JUICES,RUMP,BONE-IN,LN & FAT,HTD,RSTD~^^^^~Bone~^14^^^^^
-~10924~^~1000~^~Pork, cured, ham with natural juices, shank, bone-in, separable lean and fat, heated, roasted~^~PORK,CURED,HAM W/ NAT JUICES,SHANK,BONE-IN,LN & FAT,HTD,RSTD~^^^^~Bone 12%, Connective tissue 3%~^15^^^^^
-~10925~^~1000~^~Pork, cured, ham with natural juices, slice, bone-in, separable lean and fat, heated, pan-broil~^~PORK,CURED,HAM W/ NAT JUICS,SLCE,BNE-IN,LN & FAT,HTD,PAN-BRL~^^^^~Bone~^3^^^^^
-~10926~^~1000~^~Pork, cured, ham with natural juices, slice, boneless, separable lean and fat, heated, pan-broil~^~PORK,CURED,HAM W/ NAT JUICS,SLICE,BNLES,LN & FAT,HTD,PAN-BRL~^^^~Y~^^0^^^^^
-~10927~^~1000~^~Pork, cured, ham with natural juices, spiral slice, boneless, separable lean and fat, heated, roasted~^~PORK,CURED,HAM W/ NAT JUCS,SPRL SLCE,BNLES,LN & FAT,HTD,RSTD~^^^~Y~^^0^^^^^
-~10928~^~1000~^~Pork, cured, ham with natural juices, whole, boneless, separable lean and fat, heated, roasted~^~PORK,CURED,HAM W/ NAT JUICES,WHL,BNLESS,LN & FAT,HTD,RSTD~^^^~Y~^^0^^^^^
-~10929~^~1000~^~Pork, cured, ham, rump, bone-in, separable lean and fat, heated, roasted~^~PORK,CURED,HAM,RUMP,BONE-IN,LN & FAT,HTD,RSTD~^^^^~Bone~^23^^^^^
-~10931~^~1000~^~Pork, cured, ham, rump, bone-in, separable lean only, heated, roasted~^~PORK,CURED,HAM,RUMP,BONE-IN,LN,HTD,RSTD~^^^^~Bone 13%, Separable fat 10%~^23^^^^^
-~10932~^~1000~^~Pork, cured, ham, rump, bone-in, separable lean only, unheated~^~PORK,CURED,HAM,RUMP,BONE-IN,LN,UNHTD~^^^^~Bone 13%, Separable fat 13%~^26^^^^^
-~10933~^~1000~^~Pork, cured, ham, shank, bone-in, separable lean only, heated, roasted~^~PORK,CURED,HAM,SHANK,BONE-IN,LN,HTD,RSTD~^^^^~Bone 12%, Separable fat 10%~^22^^^^^
-~10934~^~1000~^~Pork, cured, ham, shank, bone-in, separable lean only, unheated~^~PORK,CURED,HAM,SHANK,BONE-IN,LN,UNHTD~^^^^~Bone 11%, Separable fat 12%~^23^^^^^
-~10935~^~1000~^~Pork, cured, ham, shank, bone-in, separable lean and fat, heated, roasted~^~PORK,CURED,HAM,SHANK,BONE-IN,LN & FAT,HTD,RSTD~^^^~Y~^~Bone~^22^^6.25^4.27^9.02^3.87
-~10936~^~1000~^~Pork, cured, ham, shank, bone-in, separable lean and fat, unheated~^~PORK,CURED,HAM,SHANK,BONE-IN,LN & FAT,UNHTD~^^^^~Bone~^11^^^^^
-~10937~^~1000~^~Pork, cured, ham, slice, bone-in, separable lean and fat, heated, pan-broil~^~PORK,CURED,HAM,SLICE,BONE-IN,LN & FAT,HTD,PAN-BROIL~^^^^~Bone~^14^^^^^
-~10938~^~1000~^~Pork, cured, ham, slice, bone-in, separable lean only, unheated~^~PORK,CURED,HAM,SLICE,BONE-IN,LN,UNHTD~^^^^~Bone 5%, Separable fat 11%~^16^^^^^
-~10939~^~1000~^~Pork, cured, ham, slice, bone-in, separable lean and fat, unheated~^~PORK,CURED,HAM,SLICE,BONE-IN,LN & FAT,UNHTD~^^^^~Bone~^5^^^^^
-~10940~^~1000~^~Pork, fresh, spareribs, separable lean and fat, cooked, roasted~^~PORK,FRSH,SPARERIBS,LN & FAT,CKD,RSTD~^^^^~Bone~^32^^^^^
-~10942~^~1000~^~Pork, fresh, composite of separable fat, with added solution, raw~^~PORK,FRSH,COMP OF FAT,W/ ADDED SOLN,RAW~^^^^^0^^^^^
-~10943~^~1000~^~Pork, fresh, loin, tenderloin, separable lean only, with added solution, cooked, roasted~^~PORK,FRSH,LOIN,TNDERLN,LN,W/ ADDED SLN,CKD,RSTD~^^^~Y~^~Connective tissue, 4%, Separable fat, 1%~^5^^^^^
-~10944~^~1000~^~Pork, fresh, enhanced, loin, tenderloin, separable lean only, raw~^~PORK,FRSH,ENHANCED,LOIN,TENDERLOIN,LN,RAW~^^^~Y~^~Connective tissue, 3%, Separable fat, 2%~^5^^^4.27^9.02^3.87
-~10945~^~1000~^~Pork, fresh, shoulder, (Boston butt), blade (steaks), separable lean only, with added solution cooked, braised~^~PORK,FRSH,SHLDR,(BSTN BTT),BLDE (STKS),LN,W/ADDEDSLNCKD,BRSD~^^^~Y~^~Bone, 9%, Connective tissue, 19%, Separable fat, 7%~^35^^^4.27^9.02^3.87
-~10946~^~1000~^~Pork, fresh, shoulder, (Boston butt), blade (steaks), separable lean only, with added solution, raw~^~PORK,FRSH,SHLDR,(BSTN BUTT),BLDE (STKS),LN,W/ ADDED SOLN,RAW~^^^~Y~^~Bone, 7%, Connective tissue, 16%, Separable fat, 9%~^32^^^^^
-~10947~^~1000~^~Pork, fresh, loin, top loin (chops), boneless, separable lean only, with added solution, cooked, broiled~^~PORK,FRSH,LN,TOP LN (CHPS),BNLESS,LN,W/ ADDED SLN,CKD,BRLD~^^^~Y~^~Separable fat 7%~^7^^^^^
-~10948~^~1000~^~Pork, fresh, loin, top loin (chops), boneless, separable lean only, with added solution, raw~^~PORK,FRSH,LN,TOP LIN (CHOPS),BNLSS,LN,W/ ADDED SLN,RAW~^^^~Y~^~Separable fat 14%~^14^^^^^
-~10949~^~1000~^~Pork, fresh, loin, top loin (chops), boneless, separable lean and fat, with added solution, raw~^~PORK,FRSH,LOIN,TP LN (CHPS),BNLSS,LN & FT,W/ ADDED SLN,RAW~^^^~Y~^^0^^6.25^^^
-~10950~^~1000~^~Pork, fresh, loin, top loin (chops), boneless, separable lean and fat, with added solution, cooked, broiled~^~PORK,FRSH,LN,TP LN (CHPS),BNLSS,LN & FT,W/ADDED SLN,CKD,BRLD~^^^~Y~^^0^^^^^
-~10951~^~1000~^~Pork, fresh, loin, tenderloin, separable lean and fat, with added solution, raw~^~PORK,FRSH,LOIN,TENDERLOIN,LN & FAT,W/ ADDED SLN,RAW~^^^~Y~^~Connective tissue 3%~^3^^^^^
-~10952~^~1000~^~Pork, fresh, loin, tenderloin, separable lean and fat, with added solution, cooked, roasted~^~PORK,FRSH,LOIN,TNDERLN,LN & FT,W/ ADDED SLN,CKD,RSTD~^^^~Y~^~Connective tissue~^4^^^^^
-~10953~^~1000~^~Pork, fresh, shoulder, (Boston butt), blade (steaks), separable lean and fat,with added solution, raw~^~PORK,FRSH,SHDR,(BSTN BTT),BLDE(STKS),LN & FT,W/ADDED SLN,RAW~^^^~Y~^~Bone, 7%, Connective tissue, 16%~^23^^^^^
-~10954~^~1000~^~Pork, fresh, shoulder, (Boston butt), blade (steaks), separable lean and fat, with added solution, cooked, braised~^~PORK,FRSH,SHDR,(BSTN BT),BLDE(STKS),LN&FT,WADDEDSLN,CKD,BRSD~^^^~Y~^~Bone, 9%, Connective tissue, 19%~^28^^^^^
-~10955~^~1000~^~Pork, cured, ham, rump, bone-in, separable lean and fat, unheated~^~PORK,CURED,HAM,RUMP,BONE-IN,LN & FAT,UNHTD~^^^^~Bone~^13^^^^^
-~10956~^~1000~^~Pork, loin, leg cap steak, boneless, separable lean and fat, cooked, broiled~^~PORK,LOIN,LEG CAP STEAK,BNLESS,LN & FAT,CKD,BRLD~^~URMIS #3646, Leg cap steak, Gracilis~^^^^0^^6.25^4.27^9.02^3.87
-~10957~^~1000~^~Pork, Leg Cap Steak, boneless, separable lean and fat, raw~^~PORK,LEG CAP STEAK,BNLESS,LN & FAT,RAW~^~URMIS #3646, Leg cap steak, Gracilis~^^^^0^^6.25^4.27^9.02^3.87
-~10958~^~1000~^~Pork, Shoulder breast, boneless, separable lean and fat, raw~^~PORK,SHLDR BREAST,BNLESS,LN & FAT,RAW~^~URMIS #3604, Shoulder breast, Pectoralis Profundi~^^^^0^^6.25^4.27^9.02^3.87
-~10959~^~1000~^~Pork, Shoulder breast, boneless, separable lean and fat, cooked, broiled~^~PORK,SHLDR BREAST,BNLESS,LN & FAT,CKD,BRLD~^~URMIS #3604, Shoulder breast, Pectoralis profundi~^^^^0^^6.25^4.27^9.02^3.87
-~10960~^~1000~^~Pork, shoulder, petite tender, boneless, separable lean and fat, cooked, broiled~^~PORK,SHLDR,PETITE TENDER,BNLESS,LN & FAT,CKD,BRLD~^~URMIS #3605, Shoulder petite tender, Teres major~^^^^0^^6.25^4.27^9.02^3.87
-~10961~^~1000~^~Pork, Shoulder petite tender, boneless, separable lean and fat, raw~^~PORK,SHLDR PETITE TENDER,BNLESS,LN & FAT,RAW~^~URMIS #3605, Shoulder petite tender, Teres major~^^^^0^^6.25^4.27^9.02^3.87
-~10962~^~1000~^~Pork, Leg sirloin tip roast, boneless, separable lean and fat, cooked, braised~^~PORK,LEG SIRLOIN TIP RST,BNLESS,LN & FAT,CKD,BRSD~^~URMIS #3647, Leg sirloin tip roast, Vastas Lateralis/Rectus femoris~^^^^0^^6.25^4.27^9.02^3.87
-~10963~^~1000~^~Pork, Leg sirloin tip roast, boneless, separable lean and fat, raw~^~PORK,LEG SIRLOIN TIP RST,BNLESS,LN & FAT,RAW~^~URMIS #3647, Leg sirloin tip roast, Vastas lateralis/Rectus Femoris~^^^^0^^6.25^4.27^9.02^3.87
-~10972~^~1000~^~Pork, ground, 84% lean / 16% fat, raw~^~PORK,GROUND,84% LN / 16% FAT,RAW~^^^^^0^^^^^
-~10973~^~1000~^~Pork, ground, 96% lean / 4% fat, raw~^~PORK,GROUND,96% LN / 4% FAT,RAW~^^^^^0^^^^^
-~10974~^~1000~^~Pork, ground, 72% lean / 28% fat, cooked, crumbles~^~PORK,GROUND,72% LN / 28% FAT,CKD,CRUMBLES~^^^^^0^^^^^
-~10975~^~1000~^~Pork, ground, 84% lean / 16% fat, cooked, crumbles~^~PORK,GROUND,84% LN / 16% FAT,CKD,CRUMBLES~^^^^^0^^^^^
-~10976~^~1000~^~Pork, ground, 96% lean / 4% fat, cooked, crumbles~^~PORK,GROUND,96% LN / 4% FAT,CKD,CRUMBLES~^^^^^0^^^^^
-~10977~^~1000~^~Pork, ground, 72% lean / 28% fat, cooked, pan-broiled~^~PORK,GROUND,72% LN / 28% FAT,CKD,PAN-BROILED~^^^^^0^^^^^
-~10978~^~1000~^~Pork, ground, 84% lean / 16% fat, cooked, pan-broiled~^~PORK,GROUND,84% LN / 16% FAT,CKD,PAN-BROILED~^^^^^0^^^^^
-~10979~^~1000~^~Pork, ground, 96% lean / 4% fat, cooked, pan-broiled~^~PORK,GROUND,96% LN / 4% FAT,CKD,PAN-BROILED~^^^^^0^^^^^
-~10980~^~1000~^~Pork loin, fresh, backribs, bone-in, raw, lean only~^~PORK LOIN,FRSH,BACKRIBS,BONE-IN,RAW,LN~^^^~Y~^~Bone 30%, Connective tissue 7%, Separable fat 9%~^50^^^^^
-~10981~^~1000~^~Pork loin, fresh, backribs, bone-in, cooked-roasted, lean only~^~PORK LOIN,FRSH,BACKRIBS,BONE-IN,COOKED-ROASTED,LN~^^^~Y~^~Bone 31%, Connective tissue 4%, Separable fat 5%~^40^^^^^
-~10982~^~1000~^~Pork, fresh, loin, blade (chops or roasts), boneless, separable lean only, raw~^~PORK,FRSH,LOIN,BLADE (CHOPS OR ROASTS),BNLESS,LN,RAW~^^^^~Connective tissue 7%, Separable fat 6%~^13^^^^^
-~10983~^~1000~^~Pork, fresh, loin, blade (roasts), boneless, separable lean only, cooked, roasted~^~PORK,FRSH,LOIN,BLADE (ROASTS),BNLESS,LN,CKD,RSTD~^^^^~Connective tissue 5%, Separable fat 5%~^10^^^^^
-~10984~^~1000~^~Pork, fresh, loin, blade (chops), boneless, separable lean only, boneless, cooked, broiled~^~PORK,FRSH,LOIN,BLADE (CHOPS),BNLESS,LN,BNLESS,CKD,BRLD~^^^^~Connective tissue 6%, Separable fat 7%~^13^^^^^
-~10985~^~1000~^~Pork, fresh, loin, country-style ribs, separable lean only, boneless, cooked, broiled~^~PORK,FRSH,LOIN,COUNTRY-STYLE RIBS,LN,BNLESS,CKD,BRLD~^^^^~Connective tissue 6%, Separable fat 7%~^13^^^^^
-~10986~^~1000~^~Pork, fresh, loin, country-style ribs, separable lean only, bone-in, cooked, broiled~^~PORK,FRSH,LOIN,COUNTRY-STYLE RIBS,LN,BONE-IN,CKD,BRLD~^^^^~Connective tissue 5%, Bone 17%, Separable fat 8%~^30^^^^^
-~10987~^~1000~^~Pork, fresh, loin, country-style ribs, separable lean only, boneless, cooked, roasted~^~PORK,FRSH,LOIN,COUNTRY-STYLE RIBS,LN,BNLESS,CKD,RSTD~^^^^~Connective tissue 7%, Separable fat 11%~^19^^^^^
-~10988~^~1000~^~Pork, fresh, blade, (chops), boneless, separable lean and fat, cooked, broiled~^~PORK,FRSH,BLADE,(CHOPS),BNLESS,LN & FAT,CKD,BRLD~^^^^~Connective tissue 6%~^6^^^^^
-~10989~^~1000~^~Pork, fresh, loin, blade (chops or roasts), boneless, separable lean and fat only, raw~^~PORK,FRSH,LOIN,BLDE (CHOPS OR ROAST),BNLESS,LN & FAT OLY,RAW~^^^^~Connective tissue 7%~^7^^^^^
-~10990~^~1000~^~Pork, fresh, loin, blade (roasts), boneless, separable lean and fat, cooked, roasted~^~PORK,FRSH,LOIN,BLADE (ROASTS),BNLESS,LN & FAT,CKD,RSTD~^^^^~Connective tissue 5%~^5^^^^^
-~10991~^~1000~^~Pork, fresh, loin, country-style ribs, separable lean and fat, boneless, cooked, broiled~^~PORK,FRSH,LOIN,COUNTRY-STYLE RIBS,LN & FAT,BNLESS,CKD,BRLD~^^^^~Connective tissue 6%~^6^^^^^
-~10992~^~1000~^~Pork, fresh, loin, country-style ribs, separable lean and fat, bone-in, cooked, broiled~^~PORK,FRSH,LOIN,COUNTRY-STYLE RIBS,LN & FAT,BONE-IN,CKD,BRLD~^^^^~Connective tissue 5%, Bone 17%~^22^^^^^
-~10993~^~1000~^~Pork, fresh, loin, country-style ribs, separable lean and fat, boneless, cooked, roasted~^~PORK,FRSH,LOIN,COUNTRY-STYLE RIBS,LN & FAT,BNLESS,CKD,RSTD~^^^^~Connective tissue 7%,~^7^^^^^
-~10994~^~1000~^~Bacon, pre-sliced, reduced/low sodium, unprepared~^~BACON,PRE-SLICED,REDUCED/LOW NA,UNPREP~^^^^^0^^^^^
-~10998~^~1000~^~Canadian bacon, cooked, pan-fried~^~CANADIAN BACON,CKD,PAN-FRIED~^^^~Y~^^0^^^^^
-~11001~^~1100~^~Alfalfa seeds, sprouted, raw~^~ALFALFA SEEDS,SPROUTED,RAW~^^^~Y~^^0^~Medicago sativa~^6.25^2.44^8.37^3.57
-~11003~^~1100~^~Amaranth leaves, raw~^~AMARANTH LEAVES,RAW~^^^^~Tough stems~^6^~Amaranthus spp.~^6.25^2.44^8.37^3.57
-~11004~^~1100~^~Amaranth leaves, cooked, boiled, drained, without salt~^~AMARANTH LEAVES,CKD,BLD,DRND,WO/SALT~^^^^^0^^6.25^2.44^8.37^3.57
-~11005~^~1100~^~Arrowhead, raw~^~ARROWHEAD,RAW~^^^^~Skin and sprout~^25^~Sagittaria latifolia~^6.25^2.78^8.37^3.84
-~11006~^~1100~^~Arrowhead, cooked, boiled, drained, without salt~^~ARROWHEAD,CKD,BLD,DRND,WO/SALT~^^^^^0^^6.25^2.78^8.37^3.84
-~11007~^~1100~^~Artichokes, (globe or french), raw~^~ARTICHOKES,(GLOBE OR FRENCH),RAW~^^^^~Stem and inedible parts of bracts and flowers~^60^~Cynara scolymus~^6.25^2.44^8.37^3.57
-~11008~^~1100~^~Artichokes, (globe or french), cooked, boiled, drained, without salt~^~ARTICHOKES,(GLOBE OR FRENCH),CKD,BLD,DRND,WO/SALT~^^^~Y~^~Stem and inedible parts of bracts and flowers~^60^^6.25^2.44^8.37^3.57
-~11009~^~1100~^~Artichokes, (globe or french), frozen, unprepared~^~ARTICHOKES,(GLOBE OR FRENCH),FRZ,UNPREP~^^^^^0^^6.25^2.44^8.37^3.57
-~11010~^~1100~^~Artichokes, (globe or french), frozen, cooked, boiled, drained, without salt~^~ARTICHOKES,(GLOBE OR FRENCH),FRZ,CKD,BLD,DRND,WO/SALT~^^^~Y~^^0^^6.25^2.44^8.37^3.57
-~11011~^~1100~^~Asparagus, raw~^~ASPARAGUS,RAW~^^^~Y~^~Butt ends~^47^~Asparagus officinalis~^6.25^2.44^8.37^3.57
-~11012~^~1100~^~Asparagus, cooked, boiled, drained~^~ASPARAGUS,CKD,BLD,DRND~^^^~Y~^^0^^6.25^2.44^8.37^3.57
-~11013~^~1100~^~Asparagus, canned, regular pack, solids and liquids~^~ASPARAGUS,CND,REG PK,SOL&LIQUIDS~^^^^^0^^6.25^2.44^8.37^3.57
-~11015~^~1100~^~Asparagus, canned, drained solids~^~ASPARAGUS,CND,DRND SOL~^^^~Y~^^0^^6.25^2.44^8.37^3.57
-~11018~^~1100~^~Asparagus, frozen, unprepared~^~ASPARAGUS,FRZ,UNPREP~^^^^^0^^6.25^2.44^8.37^3.57
-~11019~^~1100~^~Asparagus, frozen, cooked, boiled, drained, without salt~^~ASPARAGUS,FRZ,CKD,BLD,DRND,WO/SALT~^^^~Y~^^0^^6.25^2.44^8.37^3.57
-~11022~^~1100~^~Balsam-pear (bitter gourd), leafy tips, raw~^~BALSAM-PEAR (BITTER GOURD),LEAFY TIPS,RAW~^^^^~Tough stems and leaves~^62^~Momordica charantia~^6.25^2.44^8.37^3.57
-~11023~^~1100~^~Balsam-pear (bitter gourd), leafy tips, cooked, boiled, drained, without salt~^~BALSAM-PEAR (BITTER GOURD),LEAFY TIPS,CKD,BLD,DRND,WO/SALT~^^^~Y~^^0^^6.25^2.44^8.37^3.57
-~11024~^~1100~^~Balsam-pear (bitter gourd), pods, raw~^~BALSAM-PEAR (BITTER GOURD),PODS,RAW~^^^^~Tough stems and leaves~^17^~Momordica charantia~^6.25^2.44^8.37^3.57
-~11025~^~1100~^~Balsam-pear (bitter gourd), pods, cooked, boiled, drained, without salt~^~BALSAM-PEAR (BITTER GOURD),PODS,CKD,BLD,DRND,WO/SALT~^^^~Y~^^0^^6.25^2.44^8.37^3.57
-~11026~^~1100~^~Bamboo shoots, raw~^~BAMBOO SHOOTS,RAW~^^^~Y~^~Sheath~^71^~Phyllostachys spp.~^6.25^2.44^8.37^3.57
-~11027~^~1100~^~Bamboo shoots, cooked, boiled, drained, without salt~^~BAMBOO SHOOTS,CKD,BLD,DRND,WO/SALT~^^^^^0^^6.25^2.44^8.37^3.57
-~11028~^~1100~^~Bamboo shoots, canned, drained solids~^~BAMBOO SHOOTS,CND,DRND SOL~^^^~Y~^^0^^6.25^2.44^8.37^3.57
-~11029~^~1100~^~Beans, kidney, mature seeds, sprouted, raw~^~BEANS,KIDNEY,MATURE SEEDS,SPROUTED,RAW~^^^^^0^~Phaseolus vulgaris~^6.25^2.44^8.37^3.57
-~11030~^~1100~^~Beans, kidney, mature seeds, sprouted, cooked, boiled, drained, without salt~^~BEANS,KIDNEY,MATURE SEEDS,SPROUTED,CKD,BLD,DRND,WO/SALT~^^^^^0^^6.25^2.44^8.37^3.57
-~11031~^~1100~^~Lima beans, immature seeds, raw~^~LIMA BNS,IMMAT SEEDS,RAW~^^^~Y~^~Pods and imperfect beans~^56^~Phaseolus lunatus~^6.25^3.47^8.37^4.07
-~11032~^~1100~^~Lima beans, immature seeds, cooked, boiled, drained, without salt~^~LIMA BNS,IMMAT SEEDS,CKD,BLD,DRND,WO/SALT~^^^~Y~^^0^^6.25^3.47^8.37^4.07
-~11033~^~1100~^~Lima beans, immature seeds, canned, regular pack, solids and liquids~^~LIMA BNS,IMMAT SEEDS,CND,REG PK,SOL & LIQUIDS~^^^^^0^^6.25^3.47^8.37^4.07
-~11037~^~1100~^~Lima beans, immature seeds, frozen, fordhook, unprepared~^~LIMA BNS,IMMAT SEEDS,FRZ,FORDHOOK,UNPREP~^^^~Y~^^0^^6.25^3.47^8.37^4.07
-~11038~^~1100~^~Lima beans, immature seeds, frozen, fordhook, cooked, boiled, drained, without salt~^~LIMA BNS,IMMAT SEEDS,FRZ,FORDHOOK,CKD,BLD,DRND,WO/SALT~^^^~Y~^^0^^6.25^3.47^8.37^4.07
-~11039~^~1100~^~Lima beans, immature seeds, frozen, baby, unprepared~^~LIMA BNS,IMMAT SEEDS,FRZ,BABY,UNPREP~^^^^^0^^6.25^3.47^8.37^4.07
-~11040~^~1100~^~Lima beans, immature seeds, frozen, baby, cooked, boiled, drained, without salt~^~LIMA BNS,IMMAT SEEDS,FRZ,BABY,CKD,BLD,DRND,WO/SALT~^^^~Y~^^0^^6.25^3.47^8.37^4.07
-~11043~^~1100~^~Mung beans, mature seeds, sprouted, raw~^~MUNG BNS,MATURE SEEDS,SPROUTED,RAW~^^^~Y~^^0^~Vigna radiata~^6.25^2.44^8.37^3.57
-~11044~^~1100~^~Mung beans, mature seeds, sprouted, cooked, boiled, drained, without salt~^~MUNG BNS,MATURE SEEDS,SPROUTED,CKD,BLD,DRND,WO/SALT~^^^~Y~^^0^^6.25^2.44^8.37^3.57
-~11045~^~1100~^~Mung beans, mature seeds, sprouted, cooked, stir-fried~^~MUNG BNS,MATURE SEEDS,SPROUTED,CKD,STIR-FRIED~^^^^^0^^6.25^2.44^8.37^3.57
-~11046~^~1100~^~Beans, navy, mature seeds, sprouted, raw~^~BEANS,NAVY,MATURE SEEDS,SPROUTED,RAW~^^^^^0^~Phaseolus vulgaris~^6.25^2.44^8.37^3.57
-~11047~^~1100~^~Beans, navy, mature seeds, sprouted, cooked, boiled, drained, without salt~^~BEANS,NAVY,MATURE SEEDS,SPROUTED,CKD,BLD,DRND,WO/SALT~^^^^^0^^6.25^2.44^8.37^3.57
-~11048~^~1100~^~Beans, pinto, immature seeds, frozen, unprepared~^~BEANS,PINTO,IMMAT SEEDS,FRZ,UNPREP~^^^^^0^^6.25^3.47^8.37^4.07
-~11049~^~1100~^~Beans, pinto, immature seeds, frozen, cooked, boiled, drained, without salt~^~BEANS,PINTO,IMMAT SEEDS,FRZ,CKD,BLD,DRND,WO/SALT~^^^^^0^^6.25^3.47^8.37^4.07
-~11050~^~1100~^~Beans, shellie, canned, solids and liquids~^~BEANS,SHELLIE,CND,SOL & LIQUIDS~^^^~Y~^^0^^6.25^2.96^8.37^3.82
-~11052~^~1100~^~Beans, snap, green, raw~^~BEANS,SNAP,GREEN,RAW~^^^~Y~^~Ends, strings, trimmings~^12^~Phaseolus vulgaris~^6.25^2.44^8.37^3.57
-~11053~^~1100~^~Beans, snap, green, cooked, boiled, drained, without salt~^~BEANS,SNAP,GRN,CKD,BLD,DRND,WO/SALT~^^^~Y~^^0^^6.25^2.44^8.37^3.57
-~11054~^~1100~^~Beans, snap, green, canned, regular pack, solids and liquids~^~BEANS,SNAP,GRN,CND,REG PK,SOL & LIQUIDS~^^^^^0^^6.25^2.44^8.37^3.57
-~11056~^~1100~^~Beans, snap, green, canned, regular pack, drained solids~^~BEANS,SNAP,GRN,CND,REG PK,DRND SOL~^^^~Y~^^0^^6.25^2.44^8.37^3.57
-~11058~^~1100~^~Beans, snap, canned, all styles, seasoned, solids and liquids~^~BEANS,SNAP,CND,ALL STYLES,SEASONED,SOL&LIQUIDS~^^^^^0^^6.25^2.44^8.37^3.57
-~11060~^~1100~^~Beans, snap, green, frozen, all styles, unprepared (Includes foods for USDA's Food Distribution Program)~^~BEANS,SNAP,GRN,FRZ,ALL STYLES,UNPREP~^^^^^0^^6.25^2.44^8.37^3.57
-~11061~^~1100~^~Beans, snap, green, frozen, cooked, boiled, drained without salt~^~BEANS,SNAP,GRN,FRZ,CKD,BLD,DRND WO/SALT~^^^~Y~^^0^^6.25^2.44^8.37^3.57
-~11062~^~1100~^~Beans, snap, green, frozen, all styles, microwaved~^~BEANS,SNAP,GRN,FRZ,ALL STYLES,MICROWAVED~^^^^^0^^6.25^2.44^8.37^3.57
-~11063~^~1100~^~Beans, snap, green, microwaved~^~BEANS,SNAP,GRN,MICROWAVED~^^^^^0^^6.25^2.44^8.37^3.57
-~11080~^~1100~^~Beets, raw~^~BEETS,RAW~^^^~Y~^~Parings and part tops~^33^~Beta vulgaris~^6.25^2.78^8.37^3.84
-~11081~^~1100~^~Beets, cooked, boiled, drained~^~BEETS,CKD,BLD,DRND~^^^~Y~^^0^^6.25^2.78^8.37^3.84
-~11082~^~1100~^~Beets, canned, regular pack, solids and liquids~^~BEETS,CND,REG PK,SOL&LIQUIDS~^^^^^0^^6.25^2.78^8.37^3.84
-~11084~^~1100~^~Beets, canned, drained solids~^~BEETS,CND,DRND SOL~^^^~Y~^^0^^6.25^2.78^8.37^3.84
-~11086~^~1100~^~Beet greens, raw~^~BEET GREENS,RAW~^^^~Y~^~Stems, bruised and old leaves~^44^~Beta vulgaris~^6.25^2.44^8.37^3.57
-~11087~^~1100~^~Beet greens, cooked, boiled, drained, without salt~^~BEET GRNS,CKD,BLD,DRND,WO/SALT~^^^~Y~^^0^^6.25^2.44^8.37^3.57
-~11088~^~1100~^~Broadbeans, immature seeds, raw~^~BROADBEANS,IMMAT SEEDS,RAW~^^^^~Ends~^3^~Vicia faba~^6.25^3.47^8.37^4.07
-~11089~^~1100~^~Broadbeans, immature seeds, cooked, boiled, drained, without salt~^~BROADBEANS,IMMAT SEEDS,CKD,BLD,DRND,WO/SALT~^^^^^0^^6.25^3.47^8.37^4.07
-~11090~^~1100~^~Broccoli, raw~^~BROCCOLI,RAW~^^^~Y~^~Leaves and tough stalks with trimmings~^39^~Brassica oleracea var. italica~^6.25^2.44^8.37^3.57
-~11091~^~1100~^~Broccoli, cooked, boiled, drained, without salt~^~BROCCOLI,CKD,BLD,DRND,WO/SALT~^^^~Y~^^0^^6.25^2.44^8.37^3.57
-~11092~^~1100~^~Broccoli, frozen, chopped, unprepared~^~BROCCOLI,FRZ,CHOPD,UNPREP~^^^~Y~^^0^^6.25^2.44^8.37^3.57
-~11093~^~1100~^~Broccoli, frozen, chopped, cooked, boiled, drained, without salt~^~BROCCOLI,FRZ,CHOPD,CKD,BLD,DRND,WO/SALT~^^^~Y~^^0^^6.25^2.44^8.37^3.57
-~11094~^~1100~^~Broccoli, frozen, spears, unprepared (Includes foods for USDA's Food Distribution Program)~^~BROCCOLI,FRZ,SPEARS,UNPREP~^^^^^0^^6.25^2.44^8.37^3.57
-~11095~^~1100~^~Broccoli, frozen, spears, cooked, boiled, drained, without salt~^~BROCCOLI,FRZ,SPEARS,CKD,BLD,DRND,WO/SALT~^^^~Y~^^0^^6.25^2.44^8.37^3.57
-~11096~^~1100~^~Broccoli raab, raw~^~BROCCOLI RAAB,RAW~^~Broccoli rabe, Rapini~^^~Y~^^0^~Brassica ruvo~^6.25^2.44^8.37^3.57
-~11097~^~1100~^~Broccoli raab, cooked~^~BROCCOLI RAAB,CKD~^~Broccoli rabe, Rapini~^^~Y~^^0^^6.25^2.44^8.37^3.57
-~11098~^~1100~^~Brussels sprouts, raw~^~BRUSSELS SPROUTS,RAW~^^^~Y~^~Outer leaves~^10^~Brassica oleracea (Gemmifera Group)~^6.25^2.44^8.37^3.57
-~11099~^~1100~^~Brussels sprouts, cooked, boiled, drained, without salt~^~BRUSSELS SPROUTS,CKD,BLD,DRND,WO/SALT~^^^~Y~^^0^^6.25^2.44^8.37^3.57
-~11100~^~1100~^~Brussels sprouts, frozen, unprepared~^~BRUSSELS SPROUTS,FRZ,UNPREP~^^^^^0^^6.25^2.44^8.37^3.57
-~11101~^~1100~^~Brussels sprouts, frozen, cooked, boiled, drained, without salt~^~BRUSSELS SPROUTS,FRZ,CKD,BLD,DRND,WO/SALT~^^^~Y~^^0^^6.25^2.44^8.37^3.57
-~11104~^~1100~^~Burdock root, raw~^~BURDOCK ROOT,RAW~^^^~Y~^~Skin, root and tips~^25^~Arctium lappa~^6.25^2.78^8.37^3.84
-~11105~^~1100~^~Burdock root, cooked, boiled, drained, without salt~^~BURDOCK ROOT,CKD,BLD,DRND,WO/SALT~^^^~Y~^^0^^6.25^2.78^8.37^3.84
-~11106~^~1100~^~Butterbur, (fuki), raw~^~BUTTERBUR,(FUKI),RAW~^^^^~Leaves, stem ends, peels~^12^~Petasites japonicus~^6.25^2.44^8.37^3.57
-~11107~^~1100~^~Butterbur, cooked, boiled, drained, without salt~^~BUTTERBUR,CKD,BLD,DRND,WO/SALT~^^^^^0^^6.25^2.44^8.37^3.57
-~11108~^~1100~^~Butterbur, canned~^~BUTTERBUR,CANNED~^^^^^0^^6.25^2.44^8.37^3.57
-~11109~^~1100~^~Cabbage, raw~^~CABBAGE,RAW~^^^~Y~^~Outer leaves and core~^20^~Brassica oleracea (Capitata Group)~^6.25^2.44^8.37^3.57
-~11110~^~1100~^~Cabbage, cooked, boiled, drained, without salt~^~CABBAGE,CKD,BLD,DRND,WO/SALT~^^^~Y~^^0^^6.25^2.44^8.37^3.57
-~11112~^~1100~^~Cabbage, red, raw~^~CABBAGE,RED,RAW~^^^~Y~^~Outer leaves and core~^20^~Brassica oleracea (Capitata Group)~^6.25^2.44^8.37^3.57
-~11113~^~1100~^~Cabbage, red, cooked, boiled, drained, without salt~^~CABBAGE,RED,CKD,BLD,DRND,WO/SALT~^^^~Y~^^0^^6.25^2.44^8.37^3.57
-~11114~^~1100~^~Cabbage, savoy, raw~^~CABBAGE,SAVOY,RAW~^^^~Y~^~Outer leaves and core~^20^~Brassica oleracea (Capitata Group)~^6.25^2.44^8.37^3.57
-~11115~^~1100~^~Cabbage, savoy, cooked, boiled, drained, without salt~^~CABBAGE,SAVOY,CKD,BLD,DRND,WO/SALT~^^^^^0^^6.25^2.44^8.37^3.57
-~11116~^~1100~^~Cabbage, chinese (pak-choi), raw~^~CABBAGE,CHINESE (PAK-CHOI),RAW~^~pak choi, bok choy~^^~Y~^~Base and damaged leaves~^12^~Brassica rapa (Chinensis Group)~^6.25^2.44^8.37^3.57
-~11117~^~1100~^~Cabbage, chinese (pak-choi), cooked, boiled, drained, without salt~^~CABBAGE,CHINESE (PAK-CHOI),CKD,BLD,DRND,WO/SALT~^~bok choy, pak choi~^^~Y~^^0^^6.25^2.44^8.37^3.57
-~11118~^~1100~^~Cabbage, kimchi~^~CABBAGE,KIMCHI~^^^~Y~^^0^^6.25^2.44^8.37^3.57
-~11119~^~1100~^~Cabbage, chinese (pe-tsai), raw~^~CABBAGE,CHINESE (PE-TSAI),RAW~^^^~Y~^~Outer leaves and root base~^7^~Brassica rapa (Pekinensis Group)~^6.25^2.44^8.37^3.57
-~11120~^~1100~^~Cabbage, chinese (pe-tsai), cooked, boiled, drained, without salt~^~CABBAGE,CHINESE (PE-TSAI),CKD,BLD,DRND,WO/SALT~^^^^^0^^6.25^2.44^8.37^3.57
-~11122~^~1100~^~Cardoon, raw~^~CARDOON,RAW~^^^^~Tough stems and leaves~^51^~Cynara cardunculus~^6.25^2.44^8.37^3.57
-~11123~^~1100~^~Cardoon, cooked, boiled, drained, without salt~^~CARDOON,CKD,BLD,DRND,WO/SALT~^^^^^0^^6.25^2.44^8.37^3.57
-~11124~^~1100~^~Carrots, raw~^~CARROTS,RAW~^^^~Y~^~Crown, tops and scrapings~^11^~Daucus carota~^6.25^2.78^8.37^3.84
-~11125~^~1100~^~Carrots, cooked, boiled, drained, without salt~^~CARROTS,CKD,BLD,DRND,WO/SALT~^^^~Y~^^0^^6.25^2.78^8.37^3.84
-~11126~^~1100~^~Carrots, canned, regular pack, solids and liquids~^~CARROTS,CND,REG PK,SOL&LIQUIDS~^^^^^0^^6.25^2.78^8.37^3.84
-~11128~^~1100~^~Carrots, canned, regular pack, drained solids~^~CARROTS,CND,REG PK,DRND SOL~^^^~Y~^^0^^6.25^2.78^8.37^3.84
-~11130~^~1100~^~Carrots, frozen, unprepared (Includes foods for USDA's Food Distribution Program)~^~CARROTS,FROZEN,UNPREPARED~^^^~Y~^^0^^6.25^2.78^8.37^3.84
-~11131~^~1100~^~Carrots, frozen, cooked, boiled, drained, without salt~^~CARROTS,FRZ,CKD,BLD,DRND,WO/SALT~^^^~Y~^^0^^6.25^2.78^8.37^3.84
-~11134~^~1100~^~Cassava, raw~^~CASSAVA,RAW~^^^~Y~^~Skin~^16^~Manihot esculenta~^6.25^2.78^8.37^4.03
-~11135~^~1100~^~Cauliflower, raw~^~CAULIFLOWER,RAW~^^^~Y~^~Leaf stalks, cores and trimmings~^61^~Brassica oleracea (Botrytis Group)~^6.25^2.44^8.37^3.57
-~11136~^~1100~^~Cauliflower, cooked, boiled, drained, without salt~^~CAULIFLOWER,CKD,BLD,DRND,WO/SALT~^^^~Y~^^0^^6.25^2.44^8.37^3.57
-~11137~^~1100~^~Cauliflower, frozen, unprepared~^~CAULIFLOWER,FRZ,UNPREP~^^^~Y~^^0^^6.25^2.44^8.37^3.57
-~11138~^~1100~^~Cauliflower, frozen, cooked, boiled, drained, without salt~^~CAULIFLOWER,FRZ,CKD,BLD,DRND,WO/SALT~^^^~Y~^^0^^6.25^2.44^8.37^3.57
-~11141~^~1100~^~Celeriac, raw~^~CELERIAC,RAW~^^^~Y~^~Parings~^14^~Apium graveolens~^6.25^2.78^8.37^3.84
-~11142~^~1100~^~Celeriac, cooked, boiled, drained, without salt~^~CELERIAC,CKD,BLD,DRND,WO/SALT~^^^^^0^^6.25^2.78^8.37^3.84
-~11143~^~1100~^~Celery, raw~^~CELERY,RAW~^^^~Y~^~Roots and trimmings~^11^~Apium graveolens~^6.25^2.44^8.37^3.57
-~11144~^~1100~^~Celery, cooked, boiled, drained, without salt~^~CELERY,CKD,BLD,DRND,WO/SALT~^^^~Y~^^0^^6.25^2.44^8.37^3.57
-~11145~^~1100~^~Celtuce, raw~^~CELTUCE,RAW~^^^^~Tough leaves and stems~^25^~Lactuca sativa~^6.25^2.44^8.37^3.57
-~11147~^~1100~^~Chard, swiss, raw~^~CHARD,SWISS,RAW~^^^~Y~^~Tough stems and damaged leaves~^8^~Beta vulgaris subsp. vulagaris~^6.25^2.44^8.37^3.57
-~11148~^~1100~^~Chard, swiss, cooked, boiled, drained, without salt~^~CHARD,SWISS,CKD,BLD,DRND,WO/SALT~^^^~Y~^^0^^6.25^2.44^8.37^3.57
-~11149~^~1100~^~Chayote, fruit, raw~^~CHAYOTE,FRUIT,RAW~^~christophine~^^~Y~^~End and stem~^1^~Sechium edule~^6.25^2.44^8.37^3.57
-~11150~^~1100~^~Chayote, fruit, cooked, boiled, drained, without salt~^~CHAYOTE,FRUIT,CKD,BLD,DRND,WO/SALT~^~christophine~^^~Y~^^0^^6.25^2.44^8.37^3.57
-~11151~^~1100~^~Chicory, witloof, raw~^~CHICORY,WITLOOF,RAW~^^^^~Root base and core~^11^~Cichorium intybus~^6.25^2.44^8.37^3.57
-~11152~^~1100~^~Chicory greens, raw~^~CHICORY GREENS,RAW~^^^~Y~^~Tough stems and damaged leaves~^18^~Cichorium intybus~^6.25^2.44^8.37^3.57
-~11154~^~1100~^~Chicory roots, raw~^~CHICORY ROOTS,RAW~^^^^~Peels and tops~^18^~Cichorium intybus~^6.25^2.44^8.37^3.84
-~11156~^~1100~^~Chives, raw~^~CHIVES,RAW~^^^~Y~^^0^~Allium schoenoprasum~^6.25^2.44^8.37^3.57
-~11157~^~1100~^~Chrysanthemum, garland, raw~^~CHRYSANTHEMUM,GARLAND,RAW~^^^^~Stem ends~^4^~Chrysanthemum coronarium~^6.25^2.44^8.37^3.57
-~11158~^~1100~^~Chrysanthemum, garland, cooked, boiled, drained, without salt~^~CHRYSANTHEMUM,GARLAND,CKD,BLD,DRND,WO/SALT~^^^~Y~^^0^^6.25^2.44^8.37^3.57
-~11161~^~1100~^~Collards, raw~^~COLLARDS,RAW~^^^~Y~^~Stems~^43^~Brassica oleracea var. viridis~^6.25^2.44^8.37^3.57
-~11162~^~1100~^~Collards, cooked, boiled, drained, without salt~^~COLLARDS,CKD,BLD,DRND,WO/SALT~^^^~Y~^^0^^6.25^2.44^8.37^3.57
-~11163~^~1100~^~Collards, frozen, chopped, unprepared~^~COLLARDS,FRZ,CHOPD,UNPREP~^^^^^0^^6.25^2.44^8.37^3.57
-~11164~^~1100~^~Collards, frozen, chopped, cooked, boiled, drained, without salt~^~COLLARDS,FRZ,CHOPD,CKD,BLD,DRND,WO/SALT~^^^~Y~^^0^^6.25^2.44^8.37^3.57
-~11165~^~1100~^~Coriander (cilantro) leaves, raw~^~CORIANDER (CILANTRO) LEAVES,RAW~^~Chinese parsley, raw, Cilantro, raw~^^~Y~^~Roots, old and bruised leaves~^15^~Coriandrum sativum~^6.25^2.44^8.37^3.57
-~11167~^~1100~^~Corn, sweet, yellow, raw~^~CORN,SWT,YEL,RAW~^^^~Y~^~35% husk, silk, trimmings; 29% cob~^64^~Zea mays~^6.25^2.44^8.37^3.57
-~11168~^~1100~^~Corn, sweet, yellow, cooked, boiled, drained, without salt~^~CORN,SWT,YEL,CKD,BLD,DRND,WO/SALT~^^^~Y~^~Cob~^45^^6.25^2.44^8.37^3.57
-~11170~^~1100~^~Corn, sweet, yellow, canned, brine pack, regular pack, solids and liquids~^~CORN,SWT,YEL,CND,BRINE PK,REG PK,SOL&LIQUIDS~^^^^^0^^6.25^2.44^8.37^3.57
-~11172~^~1100~^~Corn, sweet, yellow, canned, whole kernel, drained solids~^~CORN,SWT,YEL,CND,WHL KERNEL,DRND SOL~^^^~Y~^^0^^6.25^2.44^8.37^3.57
-~11174~^~1100~^~Corn, sweet, yellow, canned, cream style, regular pack~^~CORN,SWT,YEL,CND,CRM STYLE,REG PK~^^^~Y~^^0^^6.25^2.44^8.37^3.57
-~11176~^~1100~^~Corn, sweet, yellow, canned, vacuum pack, regular pack~^~CORN,SWT,YEL,CND,VACUUM PK,REG PK~^^^~Y~^^0^^6.25^2.44^8.37^3.57
-~11177~^~1100~^~Corn, sweet, yellow, canned, drained solids, rinsed with tap water~^~CORN,SWT,YEL,CND,DRND SOL,RINSED W/ TAP H2O~^^^^^0^^6.25^2.44^8.37^3.57
-~11178~^~1100~^~Corn, sweet, yellow, frozen, kernels cut off cob, unprepared (Includes foods for USDA's Food Distribution Program)~^~CORN,SWT,YEL,FRZ,KRNLS CUT OFF COB,UNPREP~^^^~Y~^^0^^6.25^2.44^8.37^3.57
-~11179~^~1100~^~Corn, sweet, yellow, frozen, kernels cut off cob, boiled, drained, without salt~^~CORN,SWT,YEL,FRZ,KRNLS CUT OFF COB,BLD,DRND,WO/SALT~^^^~Y~^^0^^6.25^2.44^8.37^3.57
-~11180~^~1100~^~Corn, sweet, yellow, frozen, kernels on cob, unprepared~^~CORN,SWT,YEL,FRZ,KRNLS ON COB,UNPREP~^^^^~Cob~^45^^6.25^2.44^8.37^3.57
-~11181~^~1100~^~Corn, sweet, yellow, frozen, kernels on cob, cooked, boiled, drained, without salt~^~CORN,SWT,YEL,FRZ,KRNLS ON COB,CKD,BLD,DRND,WO/SALT~^^^^~Cob~^45^^6.25^2.44^8.37^3.57
-~11182~^~1100~^~Corn, yellow, whole kernel, frozen, microwaved~^~CORN,YEL,WHL KERNEL,FRZ,MICROWAVED~^^^^^0^^6.25^2.44^8.37^3.57
-~11184~^~1100~^~Corn with red and green peppers, canned, solids and liquids~^~CORN W/RED&GRN PEPPERS,CND,SOL&LIQUIDS~^^^^^0^^6.25^2.44^8.37^3.57
-~11190~^~1100~^~Cornsalad, raw~^~CORNSALAD,RAW~^^^^^^~Valerianella locusta~^6.25^2.44^8.37^3.57
-~11191~^~1100~^~Cowpeas (blackeyes), immature seeds, raw~^~COWPEAS (BLACKEYES),IMMAT SEEDS,RAW~^^^^~Pods~^49^~Vigna unguiculata subsp. unguiculata~^6.25^3.47^8.37^4.07
-~11192~^~1100~^~Cowpeas (blackeyes), immature seeds, cooked, boiled, drained, without salt~^~COWPEAS (BLACKEYES),IMMAT SEEDS,CKD,BLD,DRND,WO/ SALT~^^^~Y~^^0^^6.25^3.47^8.37^4.07
-~11195~^~1100~^~Cowpeas (blackeyes), immature seeds, frozen, unprepared~^~COWPEAS (BLACKEYES),IMMAT SEEDS,FRZ,UNPREP~^^^^^0^^6.25^3.47^8.37^4.07
-~11196~^~1100~^~Cowpeas (blackeyes), immature seeds, frozen, cooked, boiled, drained, without salt~^~COWPEAS (BLACKEYES),IMMTRE SEEDS,FRZ,CKD,BLD,DRND,WO/SALT~^^^~Y~^^0^^6.25^3.47^8.37^4.07
-~11197~^~1100~^~Cowpeas, young pods with seeds, raw~^~COWPEAS,YOUNG PODS W/SEEDS,RAW~^^^^~Ends and strings~^9^~Vigna unguiculata subsp. unguiculata~^6.25^2.44^8.37^3.57
-~11198~^~1100~^~Cowpeas, young pods with seeds, cooked, boiled, drained, without salt~^~COWPEAS,YOUNG PODS W/SEEDS,CKD,BLD,DRND,WO/SALT~^^^^^0^^6.25^2.44^8.37^3.57
-~11199~^~1100~^~Yardlong bean, raw~^~YARDLONG BEAN,RAW~^^^^~Ends~^5^~Vigna unguiculata subsp. sesquipedalis~^6.25^3.47^8.37^4.07
-~11200~^~1100~^~Yardlong bean, cooked, boiled, drained, without salt~^~YARDLONG BEAN,CKD,BLD,DRND,WO/SALT~^^^^^0^^6.25^3.47^8.37^4.07
-~11201~^~1100~^~Cowpeas, leafy tips, raw~^~COWPEAS,LEAFY TIPS,RAW~^^^^~Tough stems and leaves~^48^~Vigna unguiculata subsp. unguiculata~^6.25^2.44^8.37^3.57
-~11202~^~1100~^~Cowpeas, leafy tips, cooked, boiled, drained, without salt~^~COWPEAS,LEAFY TIPS,CKD,BLD,DRND,WO/SALT~^^^^^0^^6.25^2.44^8.37^3.57
-~11203~^~1100~^~Cress, garden, raw~^~CRESS,GARDEN,RAW~^^^~Y~^~Stems, crowns and spoiled leaves~^29^~Lepidium sativum~^6.25^2.44^8.37^3.57
-~11204~^~1100~^~Cress, garden, cooked, boiled, drained, without salt~^~CRESS,GARDEN,CKD,BLD,DRND,WO/SALT~^^^~Y~^^0^^6.25^2.44^8.37^3.57
-~11205~^~1100~^~Cucumber, with peel, raw~^~CUCUMBER,WITH PEEL,RAW~^^^~Y~^~Ends~^3^~Cucumis sativus~^6.25^2.44^8.37^3.57
-~11206~^~1100~^~Cucumber, peeled, raw~^~CUCUMBER,PEELED,RAW~^^^~Y~^~Parings, ends and bruised spots~^27^^6.25^2.44^8.37^3.57
-~11207~^~1100~^~Dandelion greens, raw~^~DANDELION GREENS,RAW~^^^~Y~^^0^~Taraxacum officinale~^6.25^2.44^8.37^3.57
-~11208~^~1100~^~Dandelion greens, cooked, boiled, drained, without salt~^~DANDELION GRNS,CKD,BLD,DRND,WO/SALT~^^^~Y~^^0^^6.25^2.44^8.37^3.57
-~11209~^~1100~^~Eggplant, raw~^~EGGPLANT,RAW~^^^~Y~^~Ends, parings and trimmings~^19^~Solanum melongena~^6.25^2.44^8.37^3.57
-~11210~^~1100~^~Eggplant, cooked, boiled, drained, without salt~^~EGGPLANT,CKD,BLD,DRND,WO/SALT~^^^~Y~^^0^^6.25^2.44^8.37^3.57
-~11211~^~1100~^~Edamame, frozen, unprepared~^~EDAMAME,FRZ,UNPREP~^^^^^0^^6.25^3.47^8.37^4.07
-~11212~^~1100~^~Edamame, frozen, prepared~^~EDAMAME,FRZ,PREP~^^^~Y~^^0^^6.25^3.47^8.37^4.07
-~11213~^~1100~^~Endive, raw~^~ENDIVE,RAW~^^^~Y~^~Outer leaves and core~^14^~Cichorium endivia~^6.25^2.44^8.37^3.57
-~11214~^~1100~^~Escarole, cooked, boiled, drained, no salt added~^~ESCAROLE,CKD,BLD,DRND,NO SALT ADDED~^^^~Y~^^0^^6.25^2.44^8.37^3.57
-~11215~^~1100~^~Garlic, raw~^~GARLIC,RAW~^^^~Y~^~Knob and skin~^13^~Allium sativum~^6.25^2.78^8.37^3.84
-~11216~^~1100~^~Ginger root, raw~^~GINGER ROOT,RAW~^^^~Y~^~Scrapings~^7^~Zingiber officinale~^6.25^2.78^8.37^3.84
-~11218~^~1100~^~Gourd, white-flowered (calabash), raw~^~GOURD,WHITE-FLOWERED (CALABASH),RAW~^^^^~Ends, skin, and seeds~^30^~Lagenaria siceraria~^6.25^2.44^8.37^3.57
-~11219~^~1100~^~Gourd, white-flowered (calabash), cooked, boiled, drained, without salt~^~GOURD,WHITE-FLOWERED (CALABASH),CKD,BLD,DRND,WO/SALT~^^^^^0^^6.25^2.44^8.37^3.57
-~11220~^~1100~^~Gourd, dishcloth (towelgourd), raw~^~GOURD,DISHCLOTH (TOWELGOURD),RAW~^^^^~Ribs, skin, stem and blossom end~^27^~Luffa aegyptiaca~^6.25^2.44^8.37^3.57
-~11221~^~1100~^~Gourd, dishcloth (towelgourd), cooked, boiled, drained, without salt~^~GOURD,DISHCLOTH (TOWELGOURD),CKD,BLD,DRND,WO/SALT~^^^^^0^^6.25^2.44^8.37^3.57
-~11222~^~1100~^~Drumstick leaves, raw~^~DRUMSTICK LEAVES,RAW~^~Harseradish tree leaves~^^^~Stems~^38^~Moringa oleifera~^6.25^2.44^8.37^3.57
-~11223~^~1100~^~Drumstick leaves, cooked, boiled, drained, without salt~^~DRUMSTICK LEAVES,CKD,BLD,DRND,WO/ SALT~^~Horseradish-tree~^^~Y~^^0^^6.25^2.44^8.37^3.57
-~11224~^~1100~^~Hyacinth-beans, immature seeds, raw~^~HYACINTH-BEANS,IMMAT SEEDS,RAW~^^^^~Ends and strings~^7^~Dolichos lablab~^6.25^3.47^8.37^4.07
-~11225~^~1100~^~Hyacinth-beans, immature seeds, cooked, boiled, drained, without salt~^~HYACINTH-BEANS,IMMAT SEEDS,CKD,BLD,DRND,WO/SALT~^^^^^0^^6.25^3.47^8.37^4.07
-~11226~^~1100~^~Jerusalem-artichokes, raw~^~JERUSALEM-ARTICHOKES,RAW~^~Sunchokes~^^~Y~^~Parings~^31^~Helianthus tuberosus~^6.25^2.78^8.37^3.84
-~11228~^~1100~^~Jew's ear, (pepeao), raw~^~JEW'S EAR,(PEPEAO),RAW~^^^^~Stem end~^2^~Auricularia polytricha~^6.25^2.62^8.37^3.48
-~11230~^~1100~^~Pepeao, dried~^~PEPEAO,DRIED~^^^^~Stems and defects~^13^^6.25^2.62^8.37^3.48
-~11231~^~1100~^~Jute, potherb, raw~^~JUTE,POTHERB,RAW~^^^^~Tough leaves and stems~^38^~Corchorus olitorius~^6.25^2.44^8.37^3.57
-~11232~^~1100~^~Jute, potherb, cooked, boiled, drained, without salt~^~JUTE,POTHERB,CKD,BLD,DRND,WO/SALT~^^^~Y~^^0^^6.25^2.44^8.37^3.57
-~11233~^~1100~^~Kale, raw~^~KALE,RAW~^^^^~Stem ends, tough stems and tough midrib parts~^28^~Brassica oleracea (Acephala Group)~^6.25^2.44^8.37^3.57
-~11234~^~1100~^~Kale, cooked, boiled, drained, without salt~^~KALE,CKD,BLD,DRND,WO/SALT~^^^~Y~^^0^^6.25^2.44^8.37^3.57
-~11235~^~1100~^~Kale, frozen, unprepared~^~KALE,FROZEN,UNPREPARED~^^^^^0^^6.25^2.44^8.37^3.57
-~11236~^~1100~^~Kale, frozen, cooked, boiled, drained, without salt~^~KALE,FRZ,CKD,BLD,DRND,WO/SALT~^^^~Y~^^0^^6.25^2.44^8.37^3.57
-~11237~^~1100~^~Kanpyo, (dried gourd strips)~^~KANPYO,(DRIED GOURD STRIPS)~^^^^^0^^6.25^2.44^8.37^3.57
-~11238~^~1100~^~Mushrooms, shiitake, raw~^~MUSHROOMS,SHIITAKE,RAW~^^^^^0^~Lentinus edodes~^6.25^2.62^8.37^3.48
-~11239~^~1100~^~Mushrooms, Chanterelle, raw~^~MUSHROOMS,CHANTERELLE,RAW~^^^^^0^~Cantharellus californicus or Cantharellus cibarius~^6.25^2.62^8.37^3.48
-~11240~^~1100~^~Mushrooms, morel, raw~^~MUSHROOMS,MOREL,RAW~^^^^^0^~Morchella spp.~^6.25^2.62^8.37^3.48
-~11241~^~1100~^~Kohlrabi, raw~^~KOHLRABI,RAW~^^^~Y~^~Leaves, stems and parings~^54^~Brassica oleracea (Gongylodes Group)~^6.25^2.44^8.37^3.57
-~11242~^~1100~^~Kohlrabi, cooked, boiled, drained, without salt~^~KOHLRABI,CKD,BLD,DRND,WO/SALT~^^^~Y~^^0^^6.25^2.44^8.37^3.57
-~11243~^~1100~^~Mushrooms, portabella, grilled~^~MUSHROOMS,PORTABELLA,GRILLED~^~Portobello~^^^^0^~Agaricus bisporus~^6.25^2.62^8.37^3.48
-~11244~^~1100~^~Lambsquarters, raw~^~LAMBSQUARTERS,RAW~^^^^^^~Chenopodium album~^6.25^2.44^8.37^3.57
-~11245~^~1100~^~Lambsquarters, cooked, boiled, drained, without salt~^~LAMBSQUARTERS,CKD,BLD,DRND,WO/SALT~^^^~Y~^^0^^6.25^2.44^8.37^3.57
-~11246~^~1100~^~Leeks, (bulb and lower leaf-portion), raw~^~LEEKS,(BULB&LOWER LEAF-PORTION),RAW~^^^~Y~^~Tops, root end and skin~^56^~Allium ampeloprasum~^6.25^2.78^8.37^3.84
-~11247~^~1100~^~Leeks, (bulb and lower leaf-portion), cooked, boiled, drained, without salt~^~LEEKS,(BULB&LOWER LEAF-PORTION),CKD,BLD,DRND,WO/SALT~^^^^^0^^6.25^2.44^8.37^3.57
-~11248~^~1100~^~Lentils, sprouted, raw~^~LENTILS,SPROUTED,RAW~^^^^^0^~Lens culinaris~^6.25^2.44^8.37^3.57
-~11249~^~1100~^~Lentils, sprouted, cooked, stir-fried, without salt~^~LENTILS,SPROUTED,CKD,STIR-FRIED,WO/SALT~^^^^^0^^6.25^2.44^8.37^3.57
-~11250~^~1100~^~Lettuce, butterhead (includes boston and bibb types), raw~^~LETTUCE,BUTTERHEAD (INCL BOSTON&BIBB TYPES),RAW~^^^~Y~^~Outer leaves and core~^26^~Lactuca sativa var. capitata~^6.25^2.44^8.37^3.57
-~11251~^~1100~^~Lettuce, cos or romaine, raw~^~LETTUCE,COS OR ROMAINE,RAW~^^^~Y~^~Core~^6^~Lactuca sativa var. logifolia~^6.25^2.44^8.37^3.57
-~11252~^~1100~^~Lettuce, iceberg (includes crisphead types), raw~^~LETTUCE,ICEBERG (INCL CRISPHEAD TYPES),RAW~^^^~Y~^~Core~^5^~Lactuca sativa var. capitata~^6.25^2.44^8.37^3.57
-~11253~^~1100~^~Lettuce, green leaf, raw~^~LETTUCE,GRN LEAF,RAW~^^^~Y~^~Outer leaves, core and trimmings~^36^~Lactuca sativa var. crispa~^6.25^2.44^8.37^3.57
-~11254~^~1100~^~Lotus root, raw~^~LOTUS ROOT,RAW~^^^^~Skins and ends of lobes~^21^~Nelumbo nucifera~^6.25^2.78^8.37^3.84
-~11255~^~1100~^~Lotus root, cooked, boiled, drained, without salt~^~LOTUS ROOT,CKD,BLD,DRND,WO/SALT~^^^~Y~^^0^^6.25^2.78^8.37^3.84
-~11257~^~1100~^~Lettuce, red leaf, raw~^~LETTUCE,RED LEAF,RAW~^^^^~Core and damaged outer leaves~^20^~Lactuca sativa var. crispa~^6.25^2.44^8.37^3.57
-~11258~^~1100~^~Mountain yam, hawaii, raw~^~MOUNTAIN YAM,HAWAII,RAW~^^^^~Ends and skin~^17^~Dioscorea pentaphylla~^6.25^2.78^8.37^3.84
-~11259~^~1100~^~Mountain yam, hawaii, cooked, steamed, without salt~^~MOUNTAIN YAM,HAWAII,CKD,STMD,WO/SALT~^^^^^0^^6.25^2.78^8.37^3.84
-~11260~^~1100~^~Mushrooms, white, raw~^~MUSHROOMS,WHITE,RAW~^^^~Y~^~Trimmings~^3^~Agaricus bisporus~^6.25^2.62^8.37^3.48
-~11261~^~1100~^~Mushrooms, white, cooked, boiled, drained, without salt~^~MUSHROOMS,WHITE,CKD,BLD,DRND,WO/ SALT~^^^~Y~^^0^~Agaricus bisporus~^6.25^2.62^8.37^3.48
-~11263~^~1100~^~Mushrooms, white, stir-fried~^~MUSHROOMS,WHITE,STIR-FRIED~^^^^^0^~Agaricus bisporus~^6.25^2.62^8.37^3.48
-~11264~^~1100~^~Mushrooms, canned, drained solids~^~MUSHROOMS,CND,DRND SOL~^^^~Y~^^0^^6.25^2.62^8.37^3.48
-~11265~^~1100~^~Mushrooms, portabella, raw~^~MUSHROOMS,PORTABELLA,RAW~^~Portabello~^^^~Trimmings~^3^~Agaricus bisporus~^6.25^2.62^8.37^3.48
-~11266~^~1100~^~Mushrooms, brown, italian, or crimini, raw~^~MUSHROOMS,BROWN,ITALIAN,OR CRIMINI,RAW~^^^^~Trimmings~^3^~Agaricus bisporus~^6.25^2.62^8.37^3.48
-~11267~^~1100~^~Mushrooms, shiitake, stir-fried~^~MUSHROOMS,SHIITAKE,STIR-FRIED~^^^^^0^~Lentinus edodes~^6.25^2.62^8.37^3.48
-~11268~^~1100~^~Mushrooms, shiitake, dried~^~MUSHROOMS,SHIITAKE,DRIED~^^^~Y~^^0^~Lentinus edodes~^6.25^2.62^8.37^3.48
-~11269~^~1100~^~Mushrooms, shiitake, cooked, without salt~^~MUSHROOMS,SHIITAKE,CKD,WO/SALT~^^^~Y~^^0^^6.25^2.62^8.37^3.48
-~11270~^~1100~^~Mustard greens, raw~^~MUSTARD GREENS,RAW~^^^~Y~^~Bases~^7^~Brassica juncea~^6.25^2.44^8.37^3.57
-~11271~^~1100~^~Mustard greens, cooked, boiled, drained, without salt~^~MUSTARD GRNS,CKD,BLD,DRND,WO/SALT~^^^~Y~^^0^^6.25^2.44^8.37^3.57
-~11272~^~1100~^~Mustard greens, frozen, unprepared~^~MUSTARD GRNS,FRZ,UNPREP~^^^^^0^^6.25^2.44^8.37^3.57
-~11273~^~1100~^~Mustard greens, frozen, cooked, boiled, drained, without salt~^~MUSTARD GRNS,FRZ,CKD,BLD,DRND,WO/SALT~^^^~Y~^^0^^6.25^2.44^8.37^3.57
-~11274~^~1100~^~Mustard spinach, (tendergreen), raw~^~MUSTARD SPINACH,(TENDERGREEN),RAW~^^^^~Trimmings~^7^~Brassica rapa (Perviridis Group)~^6.25^2.44^8.37^3.57
-~11275~^~1100~^~Mustard spinach, (tendergreen), cooked, boiled, drained, without salt~^~MUSTARD SPINACH,(TENDERGREEN),CKD,BLD,DRND,WO/SALT~^^^^^0^^6.25^2.44^8.37^3.57
-~11276~^~1100~^~New Zealand spinach, raw~^~NEW ZEALAND SPINACH,RAW~^^^^~Large stems and roots~^28^~Tetragonia tetragonioides~^6.25^2.44^8.37^3.57
-~11277~^~1100~^~New Zealand spinach, cooked, boiled, drained, without salt~^~NEW ZEALAND SPINACH,CKD,BLD,DRND,WO/SALT~^^^^^0^^6.25^2.44^8.37^3.57
-~11278~^~1100~^~Okra, raw~^~OKRA,RAW~^^^~Y~^~Crown and tips~^14^~Abelmoschus esculentus~^6.25^2.44^8.37^3.57
-~11279~^~1100~^~Okra, cooked, boiled, drained, without salt~^~OKRA,CKD,BLD,DRND,WO/SALT~^^^~Y~^^0^^6.25^2.44^8.37^3.57
-~11280~^~1100~^~Okra, frozen, unprepared~^~OKRA,FROZEN,UNPREPARED~^^^~Y~^^0^^6.25^2.44^8.37^3.57
-~11281~^~1100~^~Okra, frozen, cooked, boiled, drained, without salt~^~OKRA,FRZ,CKD,BLD,DRND,WO/SALT~^^^~Y~^^0^^6.25^2.44^8.37^3.57
-~11282~^~1100~^~Onions, raw~^~ONIONS,RAW~^^^~Y~^~Stem ends, sprouts and defects~^10^~Allium cepa~^6.25^2.78^8.37^3.84
-~11283~^~1100~^~Onions, cooked, boiled, drained, without salt~^~ONIONS,CKD,BLD,DRND,WO/SALT~^^^~Y~^^0^^6.25^2.78^8.37^3.84
-~11284~^~1100~^~Onions, dehydrated flakes~^~ONIONS,DEHYDRATED FLAKES~^^^~Y~^^0^^6.25^2.78^8.37^3.84
-~11285~^~1100~^~Onions, canned, solids and liquids~^~ONIONS,CND,SOL&LIQUIDS~^^^^^0^^6.25^2.78^8.37^3.84
-~11286~^~1100~^~Onions, yellow, sauteed~^~ONIONS,YEL,SAUTEED~^^^^^0^^6.25^2.78^8.37^3.84
-~11287~^~1100~^~Onions, frozen, chopped, unprepared~^~ONIONS,FRZ,CHOPD,UNPREP~^^^^^0^^6.25^2.78^8.37^3.84
-~11288~^~1100~^~Onions, frozen, chopped, cooked, boiled, drained, without salt~^~ONIONS,FRZ,CHOPD,CKD,BLD,DRND,WO/SALT~^^^~Y~^^0^^6.25^2.78^8.37^3.84
-~11289~^~1100~^~Onions, frozen, whole, unprepared~^~ONIONS,FRZ,WHL,UNPREP~^^^~Y~^^0^^6.25^2.78^8.37^3.84
-~11290~^~1100~^~Onions, frozen, whole, cooked, boiled, drained, without salt~^~ONIONS,FRZ,WHL,CKD,BLD,DRND,WO/SALT~^^^~Y~^^0^^6.25^2.78^8.37^3.84
-~11291~^~1100~^~Onions, spring or scallions (includes tops and bulb), raw~^~ONIONS,SPRING OR SCALLIONS (INCL TOPS&BULB),RAW~^^^~Y~^~Rootlets~^4^~Allium cepa or Allium fistulosum~^6.25^2.44^8.37^3.57
-~11292~^~1100~^~Onions, young green, tops only~^~ONIONS,YOUNG GRN,TOPS ONLY~^^^~Y~^^0^~Allium cepa~^6.25^2.44^8.37^3.57
-~11293~^~1100~^~Onions, welsh, raw~^~ONIONS,WELSH,RAW~^^^^~Leaf tops and roots~^35^~Allium fistulosum~^6.25^2.78^8.37^3.84
-~11294~^~1100~^~Onions, sweet, raw~^~ONIONS,SWT,RAW~^^^^~Stem, root, and two outermost layers~^16^~Allium cepa~^6.25^2.78^8.37^3.84
-~11295~^~1100~^~Onion rings, breaded, par fried, frozen, unprepared~^~ONION RINGS,BREADED,PAR FR,FRZ,UNPREP~^^^^^0^^6.07^3.70^8.80^4.00
-~11296~^~1100~^~Onion rings, breaded, par fried, frozen, prepared, heated in oven~^~ONION RINGS,BREADED,PAR FR,FRZ,PREP,HTD IN OVEN~^^^~Y~^^0^^6.07^3.70^8.80^4.00
-~11297~^~1100~^~Parsley, fresh~^~PARSLEY,FRSH~^^^~Y~^~Tough stems~^5^~Petroselinum crispum~^6.25^2.44^8.37^3.57
-~11298~^~1100~^~Parsnips, raw~^~PARSNIPS,RAW~^^^^~Parings~^15^~Pastinaca sativa~^6.25^2.78^8.37^3.84
-~11299~^~1100~^~Parsnips, cooked, boiled, drained, without salt~^~PARSNIPS,CKD,BLD,DRND,WO/SALT~^^^~Y~^^0^^6.25^2.78^8.37^3.84
-~11300~^~1100~^~Peas, edible-podded, raw~^~PEAS,EDIBLE-PODDED,RAW~^~Snowpeas, Sugar snap peas~^^~Y~^~Ends and strings~^6^~Pisum sativum~^6.25^3.47^8.37^4.07
-~11301~^~1100~^~Peas, edible-podded, boiled, drained, without salt~^~PEAS,EDIBLE-PODDED,BLD,DRND,WO/ SALT~^~Sugar snap peas, Snowpeas~^^~Y~^^0^^6.25^3.47^8.37^4.07
-~11302~^~1100~^~Peas, edible-podded, frozen, unprepared~^~PEAS,EDIBLE-PODDED,FRZ,UNPREP~^~Sugar snap peas, Snowpeas~^^^^0^^6.25^3.47^8.37^4.07
-~11303~^~1100~^~Peas, edible-podded, frozen, cooked, boiled, drained, without salt~^~PEAS,EDIBLE-PODDED,FRZ,CKD,BLD,DRND,WO/SALT~^~Sugar snap peas, Snowpeas~^^~Y~^^0^^6.25^3.47^8.37^4.07
-~11304~^~1100~^~Peas, green, raw~^~PEAS,GREEN,RAW~^^^~Y~^~Pods and inedible peas~^62^~Pisum sativum~^6.25^3.47^8.37^4.07
-~11305~^~1100~^~Peas, green, cooked, boiled, drained, without salt~^~PEAS,GRN,CKD,BLD,DRND,WO/SALT~^^^~Y~^^0^^6.25^3.47^8.37^4.07
-~11306~^~1100~^~Peas, green, canned, regular pack, solids and liquids~^~PEAS,GRN,CND,REG PK,SOL&LIQUIDS~^^^^^0^^6.25^3.47^8.37^4.07
-~11308~^~1100~^~Peas, green (includes baby and lesuer types), canned, drained solids, unprepared~^~PEAS,GRN (INCLUDES BABY & LESUER TYPES),CND,DRND SOL,UNPREP~^^^~Y~^^0^^6.25^3.47^8.37^4.07
-~11310~^~1100~^~Peas, green, canned, seasoned, solids and liquids~^~PEAS,GRN,CND,SEASONED,SOL&LIQUIDS~^^^^^0^^6.25^3.47^8.37^4.07
-~11311~^~1100~^~Peas, green, canned, drained solids, rinsed in tap water~^~PEAS,GRN,CND,DRND SOL,RINSED IN TAP H2O~^^^^^0^^6.25^3.47^8.37^4.07
-~11312~^~1100~^~Peas, green, frozen, unprepared (Includes foods for USDA's Food Distribution Program)~^~PEAS,GRN,FRZ,UNPREP~^^^~Y~^^0^^6.25^3.47^8.37^4.07
-~11313~^~1100~^~Peas, green, frozen, cooked, boiled, drained, without salt~^~PEAS,GRN,FRZ,CKD,BLD,DRND,WO/SALT~^^^~Y~^^0^^6.25^3.47^8.37^4.07
-~11316~^~1100~^~Peas, mature seeds, sprouted, raw~^~PEAS,MATURE SEEDS,SPROUTED,RAW~^^^^^0^^6.25^2.44^8.37^3.57
-~11317~^~1100~^~Peas, mature seeds, sprouted, cooked, boiled, drained, without salt~^~PEAS,MATURE SEEDS,SPROUTED,CKD,BLD,DRND,WO/SALT~^^^^^0^^6.25^3.47^8.37^4.07
-~11318~^~1100~^~Peas and carrots, canned, regular pack, solids and liquids~^~PEAS&CARROTS,CND,REG PK,SOL&LIQUIDS~^^^^^0^^6.25^3.98^8.37^3.16
-~11322~^~1100~^~Peas and carrots, frozen, unprepared~^~PEAS&CARROTS,FRZ,UNPREP~^^^^^0^^6.25^3.98^8.37^3.16
-~11323~^~1100~^~Peas and carrots, frozen, cooked, boiled, drained, without salt~^~PEAS&CARROTS,FRZ,CKD,BLD,DRND,WO/SALT~^^^~Y~^^0^^6.25^3.98^8.37^3.16
-~11324~^~1100~^~Peas and onions, canned, solids and liquids~^~PEAS&ONIONS,CND,SOL&LIQUIDS~^^^^^0^^6.25^3.40^8.37^4.00
-~11326~^~1100~^~Peas and onions, frozen, unprepared~^~PEAS&ONIONS,FRZ,UNPREP~^^^^^0^^6.25^3.40^8.37^4.00
-~11327~^~1100~^~Peas and onions, frozen, cooked, boiled, drained, without salt~^~PEAS&ONIONS,FRZ,CKD,BLD,DRND,WO/SALT~^^^~Y~^^0^^6.25^3.40^8.37^4.00
-~11329~^~1100~^~Peppers, hot chili, green, canned, pods, excluding seeds, solids and liquids~^~PEPPERS,HOT CHILI,GRN,CND,PODS,EXCLUDING SEEDS,SOL&LIQUIDS~^^^~Y~^^0^^6.25^2.44^8.37^3.57
-~11333~^~1100~^~Peppers, sweet, green, raw~^~PEPPERS,SWT,GRN,RAW~^^^~Y~^~Stem ends, seeds and core~^18^~Capsicum annuum~^6.25^2.44^8.37^3.57
-~11334~^~1100~^~Peppers, sweet, green, cooked, boiled, drained, without salt~^~PEPPERS,SWT,GRN,CKD,BLD,DRND,WO/SALT~^^^~Y~^^0^^6.25^2.44^8.37^3.57
-~11335~^~1100~^~Peppers, sweet, green, canned, solids and liquids~^~PEPPERS,SWT,GRN,CND,SOL&LIQUIDS~^^^^^0^^6.25^2.44^8.37^3.57
-~11337~^~1100~^~Peppers, sweet, green, frozen, chopped, unprepared~^~PEPPERS,SWT,GRN,FRZ,CHOPD,UNPREP~^^^^^0^^6.25^2.44^8.37^3.57
-~11338~^~1100~^~Peppers, sweet, green, frozen, chopped, boiled, drained, without salt~^~PEPPERS,SWT,GRN,FRZ,CHOPD,BLD,DRND,WO/SALT~^^^^^0^^6.25^2.44^8.37^3.57
-~11339~^~1100~^~Peppers, sweet, green, sauteed~^~PEPPERS,SWT,GRN,SAUTEED~^^^^^0^^6.25^2.44^8.37^3.57
-~11344~^~1100~^~Pigeonpeas, immature seeds, raw~^~PIGEONPEAS,IMMAT SEEDS,RAW~^^^~Y~^~Pods~^52^~Cajanus cajan~^6.25^3.47^8.37^4.07
-~11345~^~1100~^~Pigeonpeas, immature seeds, cooked, boiled, drained, without salt~^~PIGEONPEAS,IMMAT SEEDS,CKD,BLD,DRND,WO/SALT~^^^~Y~^^0^^6.25^3.47^8.37^4.07
-~11349~^~1100~^~Poi~^~POI~^^^~Y~^^0^^6.25^2.78^8.37^4.03
-~11350~^~1100~^~Pokeberry shoots, (poke), raw~^~POKEBERRY SHOOTS,(POKE),RAW~^^^^^^~Phytolacca americana~^6.25^2.44^8.37^3.57
-~11351~^~1100~^~Pokeberry shoots, (poke), cooked, boiled, drained, without salt~^~POKEBERRY SHOOTS,(POKE),CKD,BLD,DRND,WO/SALT~^^^~Y~^^0^^6.25^2.44^8.37^3.57
-~11352~^~1100~^~Potatoes, flesh and skin, raw~^~POTATOES,FLESH & SKN,RAW~^^^~Y~^~Parings and trimmings~^25^~Solanum tuberosum~^6.25^2.78^8.37^4.03
-~11353~^~1100~^~Potatoes, russet, flesh and skin, raw (Includes foods for USDA's Food Distribution Program)~^~POTATOES,RUSSET,FLESH & SKN,RAW~^^^^~Parings and trimmings~^25^~Solanum tuberosum~^6.25^2.78^8.37^4.03
-~11354~^~1100~^~Potatoes, white, flesh and skin, raw~^~POTATOES,WHITE,FLESH & SKN,RAW~^^^^~Parings and trimmings~^25^~Solanum tuberosum~^6.25^2.78^8.37^4.03
-~11355~^~1100~^~Potatoes, red, flesh and skin, raw~^~POTATOES,RED,FLESH & SKN,RAW~^^^^~Parings and trimmings~^25^~Solanum tuberosum~^6.25^2.78^8.37^4.03
-~11356~^~1100~^~Potatoes, Russet, flesh and skin, baked~^~POTATOES,RUSSET,FLESH & SKN,BKD~^^^^^0^^6.25^2.78^8.37^4.03
-~11357~^~1100~^~Potatoes, white, flesh and skin, baked~^~POTATOES,WHITE,FLESH & SKN,BKD~^^^^^0^^6.25^2.78^8.37^4.03
-~11358~^~1100~^~Potatoes, red, flesh and skin, baked~^~POTATOES,RED,FLESH & SKN,BKD~^^^^^0^^6.25^2.78^8.37^4.03
-~11359~^~1100~^~Potatoes, french fried, crinkle or regular cut, salt added in processing, frozen, as purchased~^~POTATOES,FR FR,CRNKL OR REG,SALT ADDED IN PROC,FRZ,AS PURCH~^^^^^0^^6.25^2.80^8.80^4.00
-~11360~^~1100~^~Potatoes, french fried, crinkle or regular cut, salt added in processing, frozen, oven-heated~^~POTATOES,FR FR,CRNKL/REG CUT,SALT ADDED IN PROC,FRZ,OVEN-HTD~^^^^^0^^6.25^2.78^8.37^4.03
-~11361~^~1100~^~Potatoes, roasted, salt added in processing, frozen, unprepared~^~POTATOES,RSTD,SALT ADDED IN PROCESSING,FRZ,UNPREP~^^^^^0^^6.25^2.78^8.37^4.03
-~11362~^~1100~^~Potatoes, raw, skin~^~POTATOES,RAW,SKIN~^^^^^0^~Solanum tuberosum~^6.25^2.78^8.37^4.03
-~11363~^~1100~^~Potatoes, baked, flesh, without salt~^~POTATOES,BKD,FLESH,WO/SALT~^^^~Y~^~Skin and adhering flesh~^23^^6.25^2.78^8.37^4.03
-~11364~^~1100~^~Potatoes, baked, skin, without salt~^~POTATOES,BKD,SKN,WO/SALT~^^^~Y~^^0^^6.25^2.78^8.37^4.03
-~11365~^~1100~^~Potatoes, boiled, cooked in skin, flesh, without salt~^~POTATOES,BLD,CKD IN SKN,FLESH,WO/SALT~^^^~Y~^~Skins and eyes~^9^^6.25^2.78^8.37^4.03
-~11366~^~1100~^~Potatoes, boiled, cooked in skin, skin, without salt~^~POTATOES,BLD,CKD IN SKN,SKN,WO/SALT~^^^^^0^^6.25^2.78^8.37^4.03
-~11367~^~1100~^~Potatoes, boiled, cooked without skin, flesh, without salt~^~POTATOES,BLD,CKD WO/ SKN,FLESH,WO/ SALT~^^^~Y~^^0^^6.25^2.78^8.37^4.03
-~11368~^~1100~^~Potatoes, microwaved, cooked in skin, flesh, without salt~^~POTATOES,MICROWAVED,CKD IN SKN,FLESH,WO/SALT~^^^^~Skin and adhering flesh~^23^^6.25^2.78^8.37^4.03
-~11369~^~1100~^~Potatoes, microwaved, cooked in skin, skin, without salt~^~POTATOES,MICROWAVED,CKD IN SKN,SKN,WO/SALT~^^^^^0^^6.25^2.78^8.37^4.03
-~11370~^~1100~^~Potatoes, hash brown, home-prepared~^~POTATOES,HASH BROWN,HOME-PREPARED~^~Potatoes, hashed brown~^^~Y~^^0^^^^^
-~11371~^~1100~^~Potatoes, mashed, home-prepared, whole milk and margarine added~^~POTATOES,MSHD,HOME-PREPARED,WHL MILK & MARGARINE ADDED~^^^~Y~^^0^^^^^
-~11372~^~1100~^~Potatoes, scalloped, home-prepared with butter~^~POTATOES,SCALLPD,HOME-PREPARED W/BUTTER~^^^^^0^^^^^
-~11373~^~1100~^~Potatoes, au gratin, home-prepared from recipe using butter~^~POTATOES,AU GRATIN,HOME-PREPARED FROM RECIPE USING BUTTER~^^^^^0^^^^^
-~11374~^~1100~^~Potatoes, canned, solids and liquids~^~POTATOES,CND,SOL&LIQUIDS~^^^^^0^^6.25^2.78^8.37^4.03
-~11376~^~1100~^~Potatoes, canned, drained solids~^~POTATOES,CND,DRND SOL~^^^^^0^^6.25^2.78^8.37^4.03
-~11378~^~1100~^~Potatoes, mashed, dehydrated, flakes without milk, dry form~^~POTATOES,MSHD,DEHYD,FLAKES WO/MILK,DRY FORM~^^^~Y~^^0^^6.25^2.78^8.37^4.03
-~11379~^~1100~^~Potatoes, mashed, dehydrated, prepared from flakes without milk, whole milk and butter added~^~POTATOES,MSHD,DEHYD,PREP FROM FLAKES WO/ MILK,WHL MILK & BUT~^^^~Y~^^0^^^^^
-~11380~^~1100~^~Potatoes, mashed, dehydrated, granules without milk, dry form~^~POTATOES,MSHD,DEHYD,GRANULES WO/MILK,DRY FORM~^^^^^0^^6.25^2.78^8.37^4.03
-~11381~^~1100~^~Potatoes, mashed, dehydrated, prepared from granules without milk, whole milk and butter added~^~POTATOES,MSHD,DEHYD,PREP FR GRNLS WO/MILK,WHL MILK&BUTTER~^^^^^0^^6.29^3.21^8.82^4.02
-~11382~^~1100~^~Potatoes, mashed, dehydrated, granules with milk, dry form~^~POTATOES,MSHD,DEHYD,GRANULES W/MILK,DRY FORM~^^^~Y~^^0^^6.29^3.21^8.82^4.02
-~11383~^~1100~^~Potatoes, mashed, dehydrated, prepared from granules with milk, water and margarine added~^~POTATOES,MSHD,DEHYD,PREP FROM GRAN W/ MILK,H2O & MARG ADDED~^^^^^0^^^^^
-~11384~^~1100~^~Potatoes, au gratin, dry mix, unprepared~^~POTATOES,AU GRATIN,DRY MIX,UNPREP~^^^^^0^^0.00^^^
-~11385~^~1100~^~Potatoes, au gratin, dry mix, prepared with water, whole milk and butter~^~POTATOES,AU GRATIN,DRY MIX,PREP W/H2O,WHL MILK&BUTTER~^^^^^0^^0.00^^^
-~11386~^~1100~^~Potatoes, scalloped, dry mix, unprepared~^~POTATOES,SCALLPD,DRY MIX,UNPREP~^^^^^0^^6.25^2.78^8.37^4.03
-~11387~^~1100~^~Potatoes, scalloped, dry mix, prepared with water, whole milk and butter~^~POTATOES,SCALLPD,DRY MIX,PREP W/H2O,WHL MILK&BUTTER~^^^^^0^^6.25^2.78^8.37^4.03
-~11390~^~1100~^~Potatoes, hash brown, frozen, plain, unprepared~^~POTATOES,HASH BROWN,FRZ,PLN,UNPREP~^~Potatoes, hashed brown~^^^^0^^6.25^2.78^8.37^4.03
-~11391~^~1100~^~Potatoes, hash brown, frozen, plain, prepared, pan fried in canola oil~^~POTATOES,HASH BROWN,FRZ,PLN,PREP,PAN FRIED IN CANOLA OIL~^~Potatoes, hashed brown~^^~Y~^^0^^6.25^2.78^8.37^4.03
-~11392~^~1100~^~Potatoes, hash brown, frozen, with butter sauce, unprepared~^~POTATOES,HASH BROWN,FRZ,W/ BUTTER SAU,UNPREP~^~Potatoes, hashed brown~^^^^0^^6.25^2.78^8.37^4.03
-~11393~^~1100~^~Potatoes, hash brown, frozen, with butter sauce, prepared~^~POTATOES,HASH BROWN,FRZ,W/ BUTTER SAU,PREP~^~Potatoes, hashed brown~^^^^0^^6.25^2.78^8.37^4.03
-~11394~^~1100~^~Potatoes, french fried, shoestring, salt added in processing, frozen, as purchased~^~POTATOES,FRENCH FR,SHOESTRING,SALT ADDED IN PROC,FRZ,AS PRCH~^^^^^0^^6.25^2.80^8.80^4.00
-~11395~^~1100~^~Potatoes, french fried, shoestring, salt added in processing, frozen, oven-heated~^~POTATOES,FRENCH FR,SHOESTRNG,SALT ADDED IN PROC,FRZ,OVEN-HTD~^^^^^0^^6.25^2.80^8.80^4.00
-~11396~^~1100~^~Potatoes, o'brien, frozen, unprepared~^~POTATOES,O'BRIEN,FRZ,UNPREP~^^^^^0^^6.25^2.70^8.40^4.00
-~11397~^~1100~^~Potatoes, o'brien, frozen, prepared~^~POTATOES,O'BRIEN,FRZ,PREP~^^^^^0^^6.25^2.70^8.40^4.00
-~11398~^~1100~^~Potato puffs, frozen, unprepared~^~POTATO PUFFS,FRZ,UNPREP~^^^^^0^^6.25^2.78^8.37^4.03
-~11399~^~1100~^~Potato puffs, frozen, oven-heated~^~POTATO PUFFS,FRZ,OVEN-HEATED~^^^~Y~^^0^^6.25^2.78^8.37^4.03
-~11401~^~1100~^~Potatoes, frozen, whole, cooked, boiled, drained, without salt~^~POTATOES,FRZ,WHL,CKD,BLD,DRND,WO/SALT~^^^^^0^^6.25^2.78^8.37^4.03
-~11402~^~1100~^~Potatoes, french fried, all types, salt added in processing, frozen, unprepared~^~POTATOES,FRENCH FR,ALL TYPES,SALT ADDED IN PROC,FRZ,UNPREP~^^^^^0^^6.25^2.80^8.80^4.00
-~11403~^~1100~^~Potatoes, french fried, all types, salt added in processing, frozen, home-prepared, oven heated~^~POTATOES,FRENCH FR,ALL TYPES,SALT ADDED IN PROC,FRZ,OVEN HTD~^^^~Y~^^0^^6.25^2.80^8.80^4.00
-~11406~^~1100~^~Potatoes, french fried, cottage-cut, salt not added in processing, frozen, as purchased~^~POTATOES,FRNCH FR,CTTG-CUT,SALT NOT ADDED,FRZ,AS PRCH~^^^^^0^^6.25^2.80^8.80^4.00
-~11407~^~1100~^~Potatoes, french fried, cottage-cut, salt not added in processing, frozen, oven-heated~^~POTATOES,FRENCH FR,COTTAGE-CUT,SALT NOT ADDED,FRZ,OVEN-HTD~^^^^^0^^6.25^2.80^8.80^4.00
-~11408~^~1100~^~Potatoes, frozen, french fried, par fried, extruded, unprepared~^~POTATOES,FRZ,FRENCH FR,PAR FR,EXTRUDED,UNPREP~^^^^^0^^6.25^2.80^8.80^4.00
-~11409~^~1100~^~Potatoes, frozen, french fried, par fried, extruded, prepared, heated in oven, without salt~^~POTATOES,FRZ,FRCH FR,PAR FR,EXTRUDED,PREP,HTD OVEN,WO/SALT~^^^^^0^^6.25^2.80^8.80^4.00
-~11410~^~1100~^~Potato wedges, frozen (Includes foods for USDA's Food Distribution Program)~^~POTATO WEDGES,FRZ (INCL FOODS FOR USDA'S FD DISTR PGM)~^^^^^0^^6.25^2.80^8.80^4.00
-~11411~^~1100~^~Potatoes, french fried, steak fries, salt added in processing, frozen, as purchased~^~POTATOES,FRENCH FR,STK FRIES,SALT ADDED IN PROC,FRZ,AS PRCH~^^^^^0^^6.25^2.80^8.80^4.00
-~11412~^~1100~^~Potatoes, french fried, steak fries, salt added in processing, frozen, oven-heated~^~POTATOES,FRENCH FR,STK FRIES,SALT ADDED IN PROC,FRZ,OVEN-HTD~^^^^^0^^6.25^2.80^8.80^4.00
-~11413~^~1100~^~Potato flour~^~POTATO FLOUR~^^^~Y~^^0^^6.25^2.78^8.37^4.03
-~11414~^~1100~^~Potato salad, home-prepared~^~POTATO SALAD,HOME-PREPARED~^^^^^0^^^^^
-~11416~^~1100~^~Pumpkin flowers, raw~^~PUMPKIN FLOWERS,RAW~^^^^~Pistil and calyx~^65^~Cucurbita spp.~^6.25^2.44^8.37^3.57
-~11417~^~1100~^~Pumpkin flowers, cooked, boiled, drained, without salt~^~PUMPKIN FLOWERS,CKD,BLD,DRND,WO/SALT~^^^~Y~^^0^^6.25^2.44^8.37^3.57
-~11418~^~1100~^~Pumpkin leaves, raw~^~PUMPKIN LEAVES,RAW~^^^^~Stem and tough leaves~^59^~Cucurbita spp.~^6.25^2.44^8.37^3.57
-~11419~^~1100~^~Pumpkin leaves, cooked, boiled, drained, without salt~^~PUMPKIN LEAVES,CKD,BLD,DRND,WO/SALT~^^^~Y~^^0^^6.25^2.44^8.37^3.57
-~11422~^~1100~^~Pumpkin, raw~^~PUMPKIN,RAW~^^^~Y~^~Seeds, rind and stem~^30^~Cucurbita spp.~^6.25^2.44^8.37^3.57
-~11423~^~1100~^~Pumpkin, cooked, boiled, drained, without salt~^~PUMPKIN,CKD,BLD,DRND,WO/SALT~^^^~Y~^^0^^6.25^2.44^8.37^3.57
-~11424~^~1100~^~Pumpkin, canned, without salt~^~PUMPKIN,CND,WO/SALT~^^^~Y~^^0^^6.25^2.44^8.37^3.57
-~11426~^~1100~^~Pumpkin pie mix, canned~^~PUMPKIN PIE MIX,CANNED~^^^^^0^^6.25^2.90^8.40^3.80
-~11427~^~1100~^~Purslane, raw~^~PURSLANE,RAW~^^^^~Tough stems and leaves~^24^~Portulaca oleracea~^6.25^2.44^8.37^3.57
-~11428~^~1100~^~Purslane, cooked, boiled, drained, without salt~^~PURSLANE,CKD,BLD,DRND,WO/SALT~^^^^^0^^6.25^2.44^8.37^3.57
-~11429~^~1100~^~Radishes, raw~^~RADISHES,RAW~^^^~Y~^~Stem ends, rootlets and trimmings~^10^~Raphanus sativus~^6.25^2.78^8.37^3.84
-~11430~^~1100~^~Radishes, oriental, raw~^~RADISHES,ORIENTAL,RAW~^^^~Y~^~Tops and parings~^21^~Raphanus sativus (Longipinratus Group)~^6.25^2.78^8.37^3.84
-~11431~^~1100~^~Radishes, oriental, cooked, boiled, drained, without salt~^~RADISHES,ORIENTAL,CKD,BLD,DRND,WO/SALT~^^^~Y~^^0^^6.25^2.78^8.37^3.84
-~11432~^~1100~^~Radishes, oriental, dried~^~RADISHES,ORIENTAL,DRIED~^^^^^0^^6.25^2.78^8.37^3.84
-~11435~^~1100~^~Rutabagas, raw~^~RUTABAGAS,RAW~^^^~Y~^~Parings~^15^~Brassica napus var. napobrassica~^6.25^2.78^8.37^3.84
-~11436~^~1100~^~Rutabagas, cooked, boiled, drained, without salt~^~RUTABAGAS,CKD,BLD,DRND,WO/SALT~^^^~Y~^^0^^6.25^2.78^8.37^3.84
-~11437~^~1100~^~Salsify, (vegetable oyster), raw~^~SALSIFY,(VEG OYSTER),RAW~^^^^~Scrapings and rootlets~^13^~Tragopogon porrifolius~^6.25^2.78^8.37^3.84
-~11438~^~1100~^~Salsify, cooked, boiled, drained, without salt~^~SALSIFY,CKD,BLD,DRND,WO/SALT~^^^~Y~^^0^^6.25^2.78^8.37^3.84
-~11439~^~1100~^~Sauerkraut, canned, solids and liquids~^~SAUERKRAUT,CND,SOL&LIQUIDS~^^^~Y~^^0^^6.25^2.44^8.37^3.57
-~11442~^~1100~^~Seaweed, agar, raw~^~SEAWEED,AGAR,RAW~^^^~Y~^^0^~Eucheuma spp.~^6.25^2.44^8.37^3.57
-~11444~^~1100~^~Seaweed, irishmoss, raw~^~SEAWEED,IRISHMOSS,RAW~^^^~Y~^^0^~Chondrus crispus~^6.25^2.44^8.37^3.57
-~11445~^~1100~^~Seaweed, kelp, raw~^~SEAWEED,KELP,RAW~^^^~Y~^^0^~Laminaria spp.~^6.25^2.44^8.37^3.57
-~11446~^~1100~^~Seaweed, laver, raw~^~SEAWEED,LAVER,RAW~^^^~Y~^^0^~Porphyra laciniata~^6.25^2.44^8.37^3.57
-~11447~^~1100~^~Sesbania flower, raw~^~SESBANIA FLOWER,RAW~^^^^~Stems, pistil and calyx~^15^~Sesbania spp.~^6.25^2.44^8.37^3.57
-~11448~^~1100~^~Sesbania flower, cooked, steamed, without salt~^~SESBANIA FLOWER,CKD,STMD,WO/SALT~^^^^^0^^6.25^2.44^8.37^3.57
-~11450~^~1100~^~Soybeans, green, raw~^~SOYBEANS,GREEN,RAW~^^^^~Pods~^47^~Glycine max~^6.25^3.47^8.37^4.07
-~11451~^~1100~^~Soybeans, green, cooked, boiled, drained, without salt~^~SOYBEANS,GRN,CKD,BLD,DRND,WO/SALT~^^^^^0^^6.25^3.47^8.37^4.07
-~11452~^~1100~^~Soybeans, mature seeds, sprouted, raw~^~SOYBEANS,MATURE SEEDS,SPROUTED,RAW~^^^^^0^~Glycine max~^6.25^2.44^8.37^3.57
-~11453~^~1100~^~Soybeans, mature seeds, sprouted, cooked, steamed~^~SOYBEANS,MATURE SEEDS,SPROUTED,CKD,STMD~^^^~Y~^^0^^6.25^2.44^8.37^3.57
-~11454~^~1100~^~Soybeans, mature seeds, sprouted, cooked, stir-fried~^~SOYBEANS,MATURE SEEDS,SPROUTED,CKD,STIR-FRIED~^^^^^0^^6.25^2.44^8.37^3.57
-~11457~^~1100~^~Spinach, raw~^~SPINACH,RAW~^^^~Y~^~Large stems and roots~^28^~Spinacia oleracea~^6.25^2.44^8.37^3.57
-~11458~^~1100~^~Spinach, cooked, boiled, drained, without salt~^~SPINACH,CKD,BLD,DRND,WO/ SALT~^^^~Y~^^0^^6.25^2.44^8.37^3.57
-~11459~^~1100~^~Spinach, canned, regular pack, solids and liquids~^~SPINACH,CND,REG PK,SOL&LIQUIDS~^^^^^0^^6.25^2.44^8.37^3.57
-~11461~^~1100~^~Spinach, canned, regular pack, drained solids~^~SPINACH,CND,REG PK,DRND SOL~^^^~Y~^^0^^6.25^2.44^8.37^3.57
-~11463~^~1100~^~Spinach, frozen, chopped or leaf, unprepared (Includes foods for USDA's Food Distribution Program)~^~SPINACH,FRZ,CHOPD OR LEAF,UNPREP~^^^~Y~^^0^^^2.44^8.37^3.57
-~11464~^~1100~^~Spinach, frozen, chopped or leaf, cooked, boiled, drained, without salt~^~SPINACH,FRZ,CHOPD OR LEAF,CKD,BLD,DRND,WO/SALT~^^^~Y~^^0^^6.25^2.44^8.37^3.57
-~11467~^~1100~^~Squash, summer, crookneck and straightneck, raw~^~SQUASH,SMMR,CROOKNECK&STRAIGHTNECK,RAW~^^^^~Ends~^1^~Cucurbita spp.~^6.25^2.44^8.37^3.57
-~11468~^~1100~^~Squash, summer, crookneck and straightneck, cooked, boiled, drained, without salt~^~SQUASH,SMMR,CROOKNECK & STRAIGHTNECK,CKD,BLD,DRND,WO/ SALT~^^^~Y~^^0^^6.25^2.44^8.37^3.57
-~11471~^~1100~^~Squash, summer, crookneck and straightneck, canned, drained, solid, without salt~^~SQUASH,SMMR,CROOKNECK&STRAIGHTNECK,CND,DRND,SOLID,WO/SALT~^^^~Y~^^0^^6.25^2.44^8.37^3.57
-~11473~^~1100~^~Squash, summer, crookneck and straightneck, frozen, unprepared~^~SQUASH,SMMR,CROOKNECK&STRAIGHTNECK,FRZ,UNPREP~^^^^^0^^6.25^2.44^8.37^3.57
-~11474~^~1100~^~Squash, summer, crookneck and straightneck, frozen, cooked, boiled, drained, without salt~^~SQUASH,SMMR,CROOKNECK&STRAIGHTNECK,FRZ,CKD,BLD,DRND,WO/SALT~^^^~Y~^^0^^6.25^2.44^8.37^3.57
-~11475~^~1100~^~Squash, summer, scallop, raw~^~SQUASH,SUMMER,SCALLOP,RAW~^^^^~Stem ends~^2^~Cucurbita spp.~^6.25^2.44^8.37^3.57
-~11476~^~1100~^~Squash, summer, scallop, cooked, boiled, drained, without salt~^~SQUASH,SMMR,SCALLOP,CKD,BLD,DRND,WO/SALT~^^^~Y~^^0^^6.25^2.44^8.37^3.57
-~11477~^~1100~^~Squash, summer, zucchini, includes skin, raw~^~SQUASH,SMMR,ZUCCHINI,INCL SKN,RAW~^^^~Y~^~Ends~^5^^6.25^2.44^8.37^3.57
-~11478~^~1100~^~Squash, summer, zucchini, includes skin, cooked, boiled, drained, without salt~^~SQUASH,SMMR,ZUCCHINI,INCL SKN,CKD,BLD,DRND,WO/SALT~^^^~Y~^^0^^6.25^2.44^8.37^3.57
-~11479~^~1100~^~Squash, summer, zucchini, includes skin, frozen, unprepared~^~SQUASH,SMMR,ZUCCHINI,INCL SKN,FRZ,UNPREP~^^^^^0^^6.25^2.44^8.37^3.57
-~11480~^~1100~^~Squash, summer, zucchini, includes skin, frozen, cooked, boiled, drained, without salt~^~SQUASH,SMMR,ZUCCHINI,INCL SKN,FRZ,CKD,BLD,DRND,WO/SALT~^^^~Y~^^0^^6.25^2.44^8.37^3.57
-~11481~^~1100~^~Squash, summer, zucchini, italian style, canned~^~SQUASH,SMMR,ZUCCHINI,ITALIAN STYLE,CND~^^^^^0^^6.25^2.50^8.40^3.70
-~11482~^~1100~^~Squash, winter, acorn, raw~^~SQUASH,WINTER,ACORN,RAW~^^^^~Rind~^24^~Cucurbita maxima~^6.25^2.44^8.37^3.57
-~11483~^~1100~^~Squash, winter, acorn, cooked, baked, without salt~^~SQUASH,WNTR,ACORN,CKD,BKD,WO/SALT~^^^^~Rind~^20^^6.25^2.44^8.37^3.57
-~11484~^~1100~^~Squash, winter, acorn, cooked, boiled, mashed, without salt~^~SQUASH,WNTR,ACORN,CKD,BLD,MSHD,WO/SALT~^^^^^0^^6.25^2.44^8.37^3.57
-~11485~^~1100~^~Squash, winter, butternut, raw~^~SQUASH,WNTR,BUTTERNUT,RAW~^^^^~Seeds, rind and trimmings~^16^~Cucurbita moschata~^6.25^2.44^8.37^3.57
-~11486~^~1100~^~Squash, winter, butternut, cooked, baked, without salt~^~SQUASH,WNTR,BUTTERNUT,CKD,BKD,WO/SALT~^^^^^0^^6.25^2.44^8.37^3.57
-~11487~^~1100~^~Squash, winter, butternut, frozen, unprepared~^~SQUASH,WNTR,BUTTERNUT,FRZ,UNPREP~^^^^^0^^6.25^2.44^8.37^3.57
-~11488~^~1100~^~Squash, winter, butternut, frozen, cooked, boiled, without salt~^~SQUASH,WNTR,BUTTERNUT,FRZ,CKD,BLD,WO/SALT~^^^^^0^^6.25^2.44^8.37^3.57
-~11489~^~1100~^~Squash, winter, hubbard, raw~^~SQUASH,WINTER,HUBBARD,RAW~^^^^~Seeds, rind, trimmings and cutting loss~^36^~Cucurbita maxima~^6.25^2.44^8.37^3.57
-~11490~^~1100~^~Squash, winter, hubbard, baked, without salt~^~SQUASH,WNTR,HUBBARD,BKD,WO/ SALT~^^^^^0^^6.25^2.44^8.37^3.57
-~11491~^~1100~^~Squash, winter, hubbard, cooked, boiled, mashed, without salt~^~SQUASH,WNTR,HUBBARD,CKD,BLD,MSHD,WO/SALT~^^^~Y~^^0^^6.25^2.44^8.37^3.57
-~11492~^~1100~^~Squash, winter, spaghetti, raw~^~SQUASH,WNTR,SPAGHETTI,RAW~^^^^~Rind and seeds~^29^~Cucurbita spp.~^6.25^2.44^8.37^3.57
-~11493~^~1100~^~Squash, winter, spaghetti, cooked, boiled, drained, or baked, without salt~^~SQUASH,WNTR,SPAGHETTI,CKD,BLD,DRND,OR BKD,WO/SALT~^^^~Y~^^0^^6.25^2.44^8.37^3.57
-~11495~^~1100~^~Succotash, (corn and limas), raw~^~SUCCOTASH,(CORN&LIMAS),RAW~^^^^^0^^6.25^2.72^8.37^3.71
-~11496~^~1100~^~Succotash, (corn and limas), cooked, boiled, drained, without salt~^~SUCCOTASH,(CORN&LIMAS),CKD,BLD,DRND,WO/SALT~^^^^^0^^6.25^2.72^8.37^3.71
-~11497~^~1100~^~Succotash, (corn and limas), canned, with cream style corn~^~SUCCOTASH,(CORN&LIMAS),CND,W/CRM STYLE CORN~^^^^^0^^6.25^2.72^8.37^3.71
-~11499~^~1100~^~Succotash, (corn and limas), canned, with whole kernel corn, solids and liquids~^~SUCCOTASH,(CORN&LIMAS),CND,W/WHL KERNEL CORN,SOL&LIQUIDS~^^^^^0^^6.25^2.72^8.37^3.71
-~11501~^~1100~^~Succotash, (corn and limas), frozen, unprepared~^~SUCCOTASH,(CORN&LIMAS),FRZ,UNPREP~^^^^^0^^6.25^2.72^8.37^3.71
-~11502~^~1100~^~Succotash, (corn and limas), frozen, cooked, boiled, drained, without salt~^~SUCCOTASH,(CORN&LIMAS),FRZ,CKD,BLD,DRND,WO/SALT~^^^~Y~^^0^^6.25^2.72^8.37^3.71
-~11503~^~1100~^~Water convolvulus,raw~^~WATER CONVOLVULUS,RAW~^~kangkong, water spinach~^^^~Tough stems~^23^~Ipomoea aquatica~^6.25^2.44^8.37^3.57
-~11504~^~1100~^~Water convolvulus, cooked, boiled, drained, without salt~^~SWAMP CABBAGE (SKUNK CABBAGE),CKD,BLD,DRND,WO/ SALT~^~Kangkong, Water spinach~^^^^0^^6.25^2.44^8.37^3.57
-~11505~^~1100~^~Sweet potato leaves, raw~^~SWEET POTATO LEAVES,RAW~^~Sweetpotato leaves~^^^~Tough stems and bruised leaves~^6^~Ipomoea batatas~^6.25^2.44^8.37^3.57
-~11506~^~1100~^~Sweet potato leaves, cooked, steamed, without salt~^~SWEET POTATO LEAVES,CKD,STMD,WO/ SALT~^~Sweetpotato leaves~^^~Y~^^0^^6.25^2.44^8.37^3.57
-~11507~^~1100~^~Sweet potato, raw, unprepared (Includes foods for USDA's Food Distribution Program)~^~SWEET POTATO,RAW,UNPREP~^~Sweetpotato~^^~Y~^~Parings and trimmings~^28^~Ipomoea batatas~^6.25^2.78^8.37^4.03
-~11508~^~1100~^~Sweet potato, cooked, baked in skin, flesh, without salt~^~SWEET POTATO,CKD,BKD IN SKN,FLESH,WO/ SALT~^~Sweetpotato~^^~Y~^~Skin~^22^^6.25^2.78^8.37^4.03
-~11510~^~1100~^~Sweet potato, cooked, boiled, without skin~^~SWEET POTATO,CKD,BLD,WO/ SKN~^~Sweetpotato~^^~Y~^^0^^6.25^2.78^8.37^4.03
-~11512~^~1100~^~Sweet potato, canned, vacuum pack~^~SWEETPOTATO,CND,VACUUM PK~^~Sweetpotato~^^~Y~^^0^^6.25^2.78^8.37^4.03
-~11514~^~1100~^~Sweet potato, canned, mashed~^~SWEET POTATO,CND,MSHD~^~Sweetpotato~^^^^0^^6.25^2.78^8.37^4.03
-~11516~^~1100~^~Sweet potato, frozen, unprepared (Includes foods for USDA's Food Distribution Program)~^~SWEET POTATO,FRZ,UNPREP~^~Sweetpotato~^^^^0^^6.25^2.78^8.37^4.03
-~11517~^~1100~^~Sweet potato, frozen, cooked, baked, without salt~^~SWEET POTATO,FRZ,CKD,BKD,WO/ SALT~^~Sweetpotato~^^^^0^^6.25^2.78^8.37^4.03
-~11518~^~1100~^~Taro, raw~^~TARO,RAW~^^^~Y~^~Ends and skin~^14^~Colocasia esculenta~^6.25^2.78^8.37^4.03
-~11519~^~1100~^~Taro, cooked, without salt~^~TARO,COOKED,WITHOUT SALT~^^^~Y~^^0^^6.25^2.78^8.37^4.03
-~11520~^~1100~^~Taro leaves, raw~^~TARO LEAVES,RAW~^^^~Y~^~Stem, midrib and tough leaves~^40^~Colocasia esculenta~^6.25^2.44^8.37^3.57
-~11521~^~1100~^~Taro leaves, cooked, steamed, without salt~^~TARO LEAVES,CKD,STMD,WO/SALT~^^^^^0^^6.25^2.44^8.37^3.57
-~11522~^~1100~^~Taro shoots, raw~^~TARO SHOOTS,RAW~^^^^~Ends~^12^~Colocasia esculenta~^6.25^2.44^8.37^3.57
-~11523~^~1100~^~Taro shoots, cooked, without salt~^~TARO SHOOTS,CKD,WO/SALT~^^^^^0^^6.25^2.44^8.37^3.57
-~11525~^~1100~^~Taro, tahitian, raw~^~TARO,TAHITIAN,RAW~^^^^^^~Colocasia esculenta~^6.25^2.78^8.37^4.03
-~11526~^~1100~^~Taro, tahitian, cooked, without salt~^~TARO,TAHITIAN,CKD,WO/SALT~^^^^^0^^6.25^2.78^8.37^3.84
-~11527~^~1100~^~Tomatoes, green, raw~^~TOMATOES,GREEN,RAW~^^^~Y~^~Core and stem ends~^9^~Solanum lycopersicum~^6.25^2.44^8.37^3.57
-~11529~^~1100~^~Tomatoes, red, ripe, raw, year round average~^~TOMATOES,RED,RIPE,RAW,YEAR RND AVERAGE~^^^~Y~^~Core and stem ends~^9^~Solanum lycopersicum~^6.25^2.44^8.37^3.57
-~11530~^~1100~^~Tomatoes, red, ripe, cooked~^~TOMATOES,RED,RIPE,CKD~^^^~Y~^^0^^6.25^2.44^8.37^3.57
-~11531~^~1100~^~Tomatoes, red, ripe, canned, packed in tomato juice~^~TOMATOES,RED,RIPE,CND,PACKED IN TOMATO JUC~^^^~Y~^^0^^6.25^2.44^8.37^3.57
-~11533~^~1100~^~Tomatoes, red, ripe, canned, stewed~^~TOMATOES,RED,RIPE,CND,STWD~^^^~Y~^^0^^6.25^2.44^8.37^3.57
-~11537~^~1100~^~Tomatoes, red, ripe, canned, with green chilies~^~TOMATOES,RED,RIPE,CND,W/GRN CHILIES~^^^^^0^^6.25^2.44^8.37^3.57
-~11540~^~1100~^~Tomato juice, canned, with salt added~^~TOMATO JUC,CND,W/SALT~^^^~Y~^^0^^6.25^2.44^8.37^3.57
-~11546~^~1100~^~Tomato products, canned, paste, without salt added (Includes foods for USDA's Food Distribution Program)~^~TOMATO PRODUCTS,CND,PASTE,WO/ SALT ADDED~^^^~Y~^^0^^6.25^2.44^8.37^3.57
-~11547~^~1100~^~Tomato products, canned, puree, without salt added~^~TOMATO PRODUCTS,CND,PUREE,WO/SALT~^^^~Y~^^0^^6.25^2.44^8.37^3.57
-~11548~^~1100~^~Tomato powder~^~TOMATO POWDER~^^^^^0^^6.25^2.44^8.37^3.57
-~11549~^~1100~^~Tomato products, canned, sauce~^~TOMATO PRODUCTS,CND,SAU~^^^~Y~^^0^^6.25^2.44^8.37^3.57
-~11551~^~1100~^~Tomato products, canned, sauce, with mushrooms~^~TOMATO PRODUCTS,CND,SAU,W/MUSHROOMS~^^^^^0^^6.25^2.44^8.37^3.57
-~11553~^~1100~^~Tomato products, canned, sauce, with onions~^~TOMATO PRODUCTS,CND,SAU,W/ONIONS~^^^^^0^^6.25^2.60^8.40^3.70
-~11555~^~1100~^~Tomato products, canned, sauce, with herbs and cheese~^~TOMATO PRODUCTS,CND,SAU,W/HERBS&CHS~^^^^^0^^6.28^3.00^8.80^3.50
-~11557~^~1100~^~Tomato products, canned, sauce, with onions, green peppers, and celery~^~TOMATO PRODUCTS,CND,SAU,W/ONIONS,GRN PEPPERS,&CELERY~^^^~Y~^^0^^6.25^2.40^8.40^3.70
-~11559~^~1100~^~Tomato products, canned, sauce, with tomato tidbits~^~TOMATO PRODUCTS,CND,SAU,W/TOMATO TIDBITS~^^^^^0^^6.25^2.44^8.37^3.57
-~11563~^~1100~^~Tree fern, cooked, without salt~^~TREE FERN,CKD,WO/SALT~^^^^^0^^6.25^2.44^8.37^3.57
-~11564~^~1100~^~Turnips, raw~^~TURNIPS,RAW~^^^~Y~^~Parings~^19^~Brassica rapa (Rapifera Group)~^6.25^2.78^8.37^3.84
-~11565~^~1100~^~Turnips, cooked, boiled, drained, without salt~^~TURNIPS,CKD,BLD,DRND,WO/SALT~^^^~Y~^^0^^6.25^2.78^8.37^3.84
-~11566~^~1100~^~Turnips, frozen, unprepared~^~TURNIPS,FROZEN,UNPREPARED~^^^^^0^^6.25^2.78^8.37^3.84
-~11567~^~1100~^~Turnips, frozen, cooked, boiled, drained, without salt~^~TURNIPS,FRZ,CKD,BLD,DRND,WO/SALT~^^^~Y~^^0^^6.25^2.78^8.37^3.84
-~11568~^~1100~^~Turnip greens, raw~^~TURNIP GREENS,RAW~^^^^~Root crown, tough stems and discarded leaves~^30^~Brassica rapa (Rapifera Group)~^6.25^2.44^8.37^3.57
-~11569~^~1100~^~Turnip greens, cooked, boiled, drained, without salt~^~TURNIP GRNS,CKD,BLD,DRND,WO/SALT~^^^~Y~^^0^^6.25^2.44^8.37^3.57
-~11570~^~1100~^~Turnip greens, canned, solids and liquids~^~TURNIP GRNS,CND,SOL&LIQUIDS~^^^^^0^^6.25^2.44^8.37^3.57
-~11574~^~1100~^~Turnip greens, frozen, unprepared~^~TURNIP GRNS,FRZ,UNPREP~^^^^^0^^6.25^2.44^8.37^3.57
-~11575~^~1100~^~Turnip greens, frozen, cooked, boiled, drained, without salt~^~TURNIP GRNS,FRZ,CKD,BLD,DRND,WO/SALT~^^^~Y~^^0^^6.25^2.44^8.37^3.57
-~11576~^~1100~^~Turnip greens and turnips, frozen, unprepared~^~TURNIP GRNS&TURNIPS,FRZ,UNPREP~^^^^^0^^6.25^2.78^8.37^3.84
-~11577~^~1100~^~Turnip greens and turnips, frozen, cooked, boiled, drained, without salt~^~TURNIP GRNS&TURNIPS,FRZ,CKD,BLD,DRND,WO/SALT~^^^~Y~^^0^^6.25^^^
-~11578~^~1100~^~Vegetable juice cocktail, canned~^~VEGETABLE JUC COCKTAIL,CND~^^^~Y~^^0^^6.25^^^
-~11579~^~1100~^~Vegetables, mixed, canned, solids and liquids~^~VEGETABLES,MXD,CND,SOL&LIQUIDS~^^^^^0^^6.25^3.47^8.37^4.07
-~11581~^~1100~^~Vegetables, mixed, canned, drained solids~^~VEGETABLES,MXD,CND,DRND SOL~^^^~Y~^^0^^6.25^3.47^8.37^4.07
-~11583~^~1100~^~Vegetables, mixed, frozen, unprepared~^~VEGETABLES,MXD,FRZ,UNPREP~^^^^^0^^6.25^^^
-~11584~^~1100~^~Vegetables, mixed, frozen, cooked, boiled, drained, without salt~^~VEGETABLES,MXD,FRZ,CKD,BLD,DRND,WO/SALT~^^^~Y~^^0^^6.25^^^
-~11585~^~1100~^~Vegetable juice cocktail, low sodium, canned~^~VEGETABLE JUC COCKTAIL,LO NA,CND~^^^^^0^^6.25^2.44^8.37^3.57
-~11587~^~1100~^~Vinespinach, (basella), raw~^~VINESPINACH,(BASELLA),RAW~^^^^^0^~Basella alba~^6.25^2.44^8.37^3.57
-~11588~^~1100~^~Waterchestnuts, chinese, (matai), raw~^~WATERCHESTNUTS,CHINESE,(MATAI),RAW~^^^~Y~^~Skin~^23^~Eleocharis dulcis~^6.25^2.78^8.37^3.84
-~11590~^~1100~^~Waterchestnuts, chinese, canned, solids and liquids~^~WATERCHESTNUTS,CHINESE,CND,SOL&LIQUIDS~^^^~Y~^^0^^6.25^2.78^8.37^3.84
-~11591~^~1100~^~Watercress, raw~^~WATERCRESS,RAW~^^^~Y~^~Tough stems and ends~^8^~Nasturtium officinale~^6.25^2.44^8.37^3.57
-~11593~^~1100~^~Waxgourd, (chinese preserving melon), raw~^~WAXGOURD,(CHINESE PRESERVING MELON),RAW~^^^^~Stem, center and skin~^29^~Benincasa hispida~^6.25^2.44^8.37^3.57
-~11594~^~1100~^~Waxgourd, (chinese preserving melon), cooked, boiled, drained, without salt~^~WAXGOURD,(CHINESE PRESERVING MELON),CKD,BLD,DRND,WO/SALT~^^^~Y~^^0^^6.25^2.44^8.37^3.57
-~11595~^~1100~^~Winged beans, immature seeds, raw~^~WINGED BNS,IMMAT SEEDS,RAW~^^^^~Ends~^2^~Psophocarpus tetragonolobus~^6.25^3.47^8.37^4.07
-~11596~^~1100~^~Winged beans, immature seeds, cooked, boiled, drained, without salt~^~WINGED BNS,IMMAT SEEDS,CKD,BLD,DRND,WO/SALT~^^^^^0^^6.25^3.47^8.37^4.07
-~11597~^~1100~^~Winged bean leaves, raw~^~WINGED BEAN LEAVES,RAW~^^^^^^~Psophocarpus tetragonolobus~^6.25^2.44^8.37^3.57
-~11599~^~1100~^~Winged bean tuber, raw~^~WINGED BEAN TUBER,RAW~^^^^^^~Psophocarpus tetragonolobus~^6.25^2.78^8.37^3.84
-~11601~^~1100~^~Yam, raw~^~YAM,RAW~^^^~Y~^~Skin~^14^~Dioscorea spp.~^6.25^2.78^8.37^4.03
-~11602~^~1100~^~Yam, cooked, boiled, drained, or baked, without salt~^~YAM,CKD,BLD,DRND,OR BKD,WO/SALT~^^^~Y~^^0^^6.25^2.78^8.37^4.03
-~11603~^~1100~^~Yambean (jicama), raw~^~YAMBEAN (JICAMA),RAW~^^^~Y~^~Ends and skin~^8^~Pachyrhizus spp.~^6.25^2.78^8.37^4.03
-~11604~^~1100~^~Yambean (jicama), cooked, boiled, drained, without salt~^~YAMBEAN (JICAMA),CKD,BLD,DRND,WO/SALT~^^^^^0^^6.25^2.78^8.37^4.03
-~11605~^~1100~^~Beets, harvard, canned, solids and liquids~^~BEETS,HARVARD,CND,SOL&LIQUIDS~^^^^^0^^6.25^2.78^8.37^3.84
-~11609~^~1100~^~Beets, pickled, canned, solids and liquids~^~BEETS,PICKLED,CND,SOL&LIQUIDS~^^^~Y~^^0^^6.25^2.78^8.37^3.84
-~11613~^~1100~^~Borage, raw~^~BORAGE,RAW~^^^^~Tough leaves and stems~^20^~Borago officinalis~^6.25^2.44^8.37^3.57
-~11614~^~1100~^~Borage, cooked, boiled, drained, without salt~^~BORAGE,CKD,BLD,DRND,WO/SALT~^^^^^0^^6.25^2.44^8.37^3.57
-~11615~^~1100~^~Chives, freeze-dried~^~CHIVES,FREEZE-DRIED~^^^^^0^^6.25^2.44^8.37^3.57
-~11616~^~1100~^~Dock, raw~^~DOCK,RAW~^^^^~Stalks~^30^~Rumex spp.~^6.25^2.44^8.37^3.57
-~11617~^~1100~^~Dock, cooked, boiled, drained, without salt~^~DOCK,CKD,BLD,DRND,WO/SALT~^^^^^0^^6.25^2.44^8.37^3.57
-~11618~^~1100~^~Eppaw, raw~^~EPPAW,RAW~^^^^^^~Perideridia oregana~^6.25^2.78^8.37^3.84
-~11620~^~1100~^~Drumstick pods, raw~^~DRUMSTICK PODS,RAW~^~Horseradish tree pods~^^^~Hard outer covering and fibers~^48^~Moringa oleifera~^6.25^2.44^8.37^3.57
-~11621~^~1100~^~Drumstick pods, cooked, boiled, drained, without salt~^~DRUMSTICK PODS,CKD,BLD,DRND,WO/ SALT~^~Horseradish tree pods~^^^^0^^6.25^2.44^8.37^3.57
-~11624~^~1100~^~Leeks, (bulb and lower-leaf portion), freeze-dried~^~LEEKS,(BULB&LOWER-LEAF PORTION),FREEZE-DRIED~^^^^^0^^6.25^2.44^8.37^3.57
-~11625~^~1100~^~Parsley, freeze-dried~^~PARSLEY,FREEZE-DRIED~^^^^^0^^6.25^2.44^8.37^3.57
-~11626~^~1100~^~Beans, mung, mature seeds, sprouted, canned, drained solids~^~BEANS,MUNG,MATURE SEEDS,SPROUTED,CND,DRND SOL~^^^~Y~^^0^^6.25^2.44^8.37^3.57
-~11632~^~1100~^~Peppers, jalapeno, canned, solids and liquids~^~PEPPERS,JALAPENO,CND,SOL&LIQUIDS~^^^^^0^^6.25^2.44^8.37^3.57
-~11637~^~1100~^~Radishes, white icicle, raw~^~RADISHES,WHITE ICICLE,RAW~^^^^~Parings~^35^~Raphanus sativus~^6.25^2.78^8.37^3.84
-~11640~^~1100~^~Shallots, freeze-dried~^~SHALLOTS,FREEZE-DRIED~^^^^^0^^6.25^2.78^8.37^3.84
-~11641~^~1100~^~Squash, summer, all varieties, raw~^~SQUASH,SMMR,ALL VAR,RAW~^^^~Y~^~Ends~^5^~Cucurbita spp.~^6.25^2.44^8.37^3.57
-~11642~^~1100~^~Squash, summer, all varieties, cooked, boiled, drained, without salt~^~SQUASH,SMMR,ALL VAR,CKD,BLD,DRND,WO/SALT~^^^~Y~^^0^^6.25^2.44^8.37^3.57
-~11643~^~1100~^~Squash, winter, all varieties, raw~^~SQUASH,WNTR,ALL VAR,RAW~^^^~Y~^~Seeds, rind and stem~^29^~Cucurbita spp.~^6.25^2.44^8.37^3.57
-~11644~^~1100~^~Squash, winter, all varieties, cooked, baked, without salt~^~SQUASH,WNTR,ALL VAR,CKD,BKD,WO/SALT~^^^~Y~^^0^^6.25^2.44^8.37^3.57
-~11645~^~1100~^~Sweet potato, canned, syrup pack, solids and liquids~^~SWEET POTATO,CND,SYRUP PK,SOL & LIQUIDS~^~Sweetpotato~^^~Y~^^0^^6.25^2.78^8.37^4.03
-~11647~^~1100~^~Sweet potato, canned, syrup pack, drained solids~^~SWEET POTATO,CND,SYRUP PK,DRND SOL~^~Sweetpotato~^^^^0^^6.25^2.78^8.37^4.03
-~11649~^~1100~^~Tomato products, canned, sauce, spanish style~^~TOMATO PRODUCTS,CND,SAU,SPANISH STYLE~^^^^^0^^6.25^2.64^8.37^3.70
-~11653~^~1100~^~Beans, pinto, mature seeds, sprouted, raw~^~BEANS,PINTO,MATURE SEEDS,SPROUTED,RAW~^^^^^0^~Phaseolus vulgaris~^6.25^2.44^8.37^3.57
-~11654~^~1100~^~Beans, pinto, mature seeds, sprouted, cooked, boiled, drained, without salt~^~BEANS,PINTO,MATURE SEEDS,SPROUTED,CKD,BLD,DRND,WO/SALT~^^^^^0^^6.25^2.44^8.37^3.57
-~11655~^~1100~^~Carrot juice, canned~^~CARROT JUICE,CANNED~^^^~Y~^^0^^6.25^2.78^8.37^3.84
-~11656~^~1100~^~Corn pudding, home prepared~^~CORN PUDD,HOME PREP~^^^^^0^^^^^
-~11657~^~1100~^~Potatoes, mashed, home-prepared, whole milk added~^~POTATOES,MSHD,HOME-PREPARED,WHL MILK ADDED~^^^~Y~^^0^^^^^
-~11658~^~1100~^~Spinach souffle~^~SPINACH SOUFFLE~^^^^^0^^^^^
-~11659~^~1100~^~Sweet potato, cooked, candied, home-prepared~^~SWEET POTATO,CKD,CANDIED,HOME-PREPARED~^~Sweetpotato~^^~Y~^^0^^^^^
-~11660~^~1100~^~Tomatoes, red, ripe, cooked, stewed~^~TOMATOES,RED,RIPE,CKD,STWD~^^^^^0^^6.25^^^
-~11663~^~1100~^~Seaweed, agar, dried~^~SEAWEED,AGAR,DRIED~^^^~Y~^^0^^6.25^2.44^8.37^3.57
-~11666~^~1100~^~Seaweed, spirulina, raw~^~SEAWEED,SPIRULINA,RAW~^^^^^0^~Spirulina spp.~^6.25^2.44^8.37^3.57
-~11667~^~1100~^~Seaweed, spirulina, dried~^~SEAWEED,SPIRULINA,DRIED~^^^~Y~^^0^^6.25^2.44^8.37^3.57
-~11669~^~1100~^~Seaweed, wakame, raw~^~SEAWEED,WAKAME,RAW~^^^~Y~^^0^~Undaria spp.~^6.25^2.44^8.37^3.57
-~11670~^~1100~^~Peppers, hot chili, green, raw~^~PEPPERS,HOT CHILI,GRN,RAW~^^^~Y~^~Stem ends, seeds and core~^27^~Capsicum frutescens~^6.25^2.44^8.37^3.57
-~11671~^~1100~^~Potatoes, o'brien, home-prepared~^~POTATOES,O'BRIEN,HOME-PREPARED~^^^^^0^^6.25^2.70^8.40^4.00
-~11672~^~1100~^~Potato pancakes~^~POTATO PANCAKES~^^^^^0^^^^^
-~11674~^~1100~^~Potatoes, baked, flesh and skin, without salt~^~POTATOES,BKD,FLESH & SKN,WO/ SALT~^^^~Y~^^0^^6.25^2.78^8.37^4.03
-~11675~^~1100~^~Potatoes, microwaved, cooked in skin, flesh and skin, without salt~^~POTATOES,MICROWAVED,CKD IN SKN,FLESH&SKN,WO/SALT~^^^^^0^^6.25^2.78^8.37^4.03
-~11676~^~1100~^~Radish seeds, sprouted, raw~^~RADISH SEEDS,SPROUTED,RAW~^^^^^0^~Raphanus sativus~^6.25^2.44^8.37^3.84
-~11677~^~1100~^~Shallots, raw~^~SHALLOTS,RAW~^^^^~Skins~^12^~Allium ascalonicum~^6.25^2.78^8.37^3.84
-~11683~^~1100~^~Carrot, dehydrated~^~CARROT,DEHYDRATED~^^^~Y~^^0^^6.25^2.78^8.37^3.84
-~11693~^~1100~^~Tomatoes, crushed, canned~^~TOMATOES,CRUSHED,CANNED~^^^^^0^^6.25^2.44^8.37^3.57
-~11695~^~1100~^~Tomatoes, orange, raw~^~TOMATOES,ORANGE,RAW~^^^^~Core and stem ends~^9^~Solanum lycopersicum~^6.25^2.44^8.37^3.57
-~11696~^~1100~^~Tomatoes, yellow, raw~^~TOMATOES,YELLOW,RAW~^^^^~Core and stem ends~^9^~Solanum lycopersicum~^6.25^2.44^8.37^3.57
-~11697~^~1100~^~Arrowroot, raw~^~ARROWROOT,RAW~^^^^~Peel~^15^~Maranta arundinacea~^6.25^2.78^8.37^3.84
-~11698~^~1100~^~Chrysanthemum leaves, raw~^~CHRYSANTHEMUM LEAVES,RAW~^^^^^0^~Chrysanthemum coronarium~^6.25^2.44^8.37^3.57
-~11700~^~1100~^~Amaranth leaves, cooked, boiled, drained, with salt~^~AMARANTH LEAVES,CKD,BLD,DRND,W/SALT~^^^^^0^^6.25^2.44^8.37^3.57
-~11701~^~1100~^~Arrowhead, cooked, boiled, drained, with salt~^~ARROWHEAD,CKD,BLD,DRND,W/SALT~^^^^^0^^6.25^2.78^8.37^3.84
-~11702~^~1100~^~Artichokes, (globe or french), cooked, boiled, drained, with salt~^~ARTICHOKES,(GLOBE OR FRENCH),CKD,BLD,DRND,W/SALT~^^^^~Stems and inedible parts of bracts and flower~^60^^6.25^2.44^8.37^3.57
-~11703~^~1100~^~Artichokes, (globe or french), frozen, cooked, boiled, drained, with salt~^~ARTICHOKES,(GLOBE OR FRENCH),FRZ,CKD,BLD,DRND,W/SALT~^^^^^0^^6.25^2.44^8.37^3.57
-~11705~^~1100~^~Asparagus, cooked, boiled, drained, with salt~^~ASPARAGUS,CKD,BLD,DRND,W/SALT~^^^^^0^^6.25^2.44^8.37^3.57
-~11707~^~1100~^~Asparagus, canned, no salt added, solids and liquids~^~ASPARAGUS,CND,NO SALT,SOL&LIQUIDS~^^^^^0^^6.25^2.44^8.37^3.57
-~11709~^~1100~^~Asparagus, frozen, cooked, boiled, drained, with salt~^~ASPARAGUS,FRZ,CKD,BLD,DRND,W/SALT~^^^^^0^^6.25^2.44^8.37^3.57
-~11710~^~1100~^~Balsam-pear (bitter gourd), leafy tips, cooked, boiled, drained, with salt~^~BALSAM-PEAR (BITTER GOURD),LEAFY TIPS,CKD,BLD,DRND,W/SALT~^^^^^0^^6.25^2.44^8.37^3.57
-~11711~^~1100~^~Balsam-pear (bitter gourd), pods, cooked, boiled, drained, with salt~^~BALSAM-PEAR (BITTER GOURD),PODS,CKD,BLD,DRND,W/SALT~^^^^^0^^6.25^2.44^8.37^3.57
-~11712~^~1100~^~Bamboo shoots, cooked, boiled, drained, with salt~^~BAMBOO SHOOTS,CKD,BLD,DRND,W/SALT~^^^^^0^^6.25^2.44^8.37^3.57
-~11713~^~1100~^~Beans, kidney, mature seeds, sprouted, cooked, boiled, drained, with salt~^~BEANS,KIDNEY,MATURE SEEDS,SPROUTED,CKD,BLD,DRND,W/SALT~^^^^^0^^6.25^2.44^8.37^3.57
-~11714~^~1100~^~Lima beans, immature seeds, cooked, boiled, drained, with salt~^~LIMA BNS,IMMAT SEEDS,CKD,BLD,DRND,W/SALT~^^^^^0^^6.25^3.47^8.37^4.07
-~11715~^~1100~^~Lima beans, immature seeds, canned, no salt added, solids and liquids~^~LIMA BNS,IMMAT SEEDS,CND,NO SALT,SOL&LIQUIDS~^^^~Y~^^0^^6.25^3.47^8.37^4.07
-~11716~^~1100~^~Lima beans, immature seeds, frozen, baby, cooked, boiled, drained, with salt~^~LIMA BNS,IMMAT SEEDS,FRZ,BABY,CKD,BLD,DRND,W/SALT~^^^^^0^^6.25^3.47^8.37^4.07
-~11717~^~1100~^~Lima beans, immature seeds, frozen, fordhook, cooked, boiled, drained, with salt~^~LIMA BNS,IMMAT SEEDS,FRZ,FORDHOOK,CKD,BLD,DRND,W/SALT~^^^^^0^^6.25^3.47^8.37^4.07
-~11718~^~1100~^~Mung beans, mature seeds, sprouted, cooked, boiled, drained, with salt~^~MUNG BNS,MATURE SEEDS,SPROUTED,CKD,BLD,DRND,W/SALT~^^^~Y~^^0^^6.25^2.44^8.37^3.57
-~11719~^~1100~^~Beans, navy, mature seeds, sprouted, cooked, boiled, drained, with salt~^~BEANS,NAVY,MATURE SEEDS,SPROUTED,CKD,BLD,DRND,W/SALT~^^^^^0^^6.25^2.44^8.37^3.57
-~11720~^~1100~^~Beans, pinto, immature seeds, frozen, cooked, boiled, drained, with salt~^~BEANS,PINTO,IMMAT SEEDS,FRZ,CKD,BLD,DRND,W/SALT~^^^^^0^^6.25^3.47^8.37^4.07
-~11721~^~1100~^~Beans, pinto, mature seeds, sprouted, cooked, boiled, drained, with salt~^~BEANS,PINTO,MATURE SEEDS,SPROUTED,CKD,BLD,DRND,W/SALT~^^^^^0^^6.25^2.44^8.37^3.57
-~11722~^~1100~^~Beans, snap, yellow, raw~^~BEANS,SNAP,YELLOW,RAW~^^^^~Ends, strings, trimmings~^12^~Phaseolus vulgaris~^6.25^2.44^8.37^3.57
-~11723~^~1100~^~Beans, snap, green, cooked, boiled, drained, with salt~^~BEANS,SNAP,GRN,CKD,BLD,DRND,W/SALT~^^^^^0^^6.25^2.44^8.37^3.57
-~11724~^~1100~^~Beans, snap, yellow, cooked, boiled, drained, without salt~^~BEANS,SNAP,YEL,CKD,BLD,DRND,WO/SALT~^^^~Y~^^0^^6.25^2.44^8.37^3.57
-~11725~^~1100~^~Beans, snap, yellow, cooked, boiled, drained, with salt~^~BEANS,SNAP,YEL,CKD,BLD,DRND,W/SALT~^^^^^0^^6.25^2.44^8.37^3.57
-~11726~^~1100~^~Beans, snap, green, canned, no salt added, solids and liquids~^~BEANS,SNAP,GRN,CND,NO SALT,SOL&LIQUIDS~^^^^^0^^6.25^2.44^8.37^3.57
-~11727~^~1100~^~Beans, snap, yellow, canned, regular pack, solids and liquids~^~BEANS,SNAP,YEL,CND,REG PK,SOL&LIQUIDS~^^^^^0^^6.25^2.44^8.37^3.57
-~11728~^~1100~^~Beans, snap, yellow, canned, no salt added, solids and liquids~^~BEANS,SNAP,YEL,CND,NO SALT,SOL&LIQUIDS~^^^^^0^^6.25^2.44^8.37^3.57
-~11729~^~1100~^~Beans, snap, green, canned, no salt added, drained solids~^~BEANS,SNAP,GRN,CND,NO SALT,DRND SOL~^^^~Y~^^0^^6.25^2.44^8.37^3.57
-~11730~^~1100~^~Beans, snap, yellow, frozen, all styles, unprepared~^~BEANS,SNAP,YEL,FRZ,ALL STYLES,UNPREP~^^^^^0^^6.25^2.44^8.37^3.57
-~11731~^~1100~^~Beans, snap, green, frozen, cooked, boiled, drained, with salt~^~BEANS,SNAP,GRN,FRZ,CKD,BLD,DRND,W/SALT~^^^^^0^^6.25^2.44^8.37^3.57
-~11732~^~1100~^~Beans, snap, yellow, frozen, cooked, boiled, drained, without salt~^~BEANS,SNAP,YEL,FRZ,CKD,BLD,DRND,WO/SALT~^^^~Y~^^0^^6.25^2.44^8.37^3.57
-~11733~^~1100~^~Beans, snap, yellow, frozen, cooked, boiled, drained, with salt~^~BEANS,SNAP,YEL,FRZ,CKD,BLD,DRND,W/SALT~^^^^^0^^6.25^2.44^8.37^3.57
-~11734~^~1100~^~Beets, cooked, boiled. drained, with salt~^~BEETS,CKD,BOILED. DRND,W/SALT~^^^^^0^^6.25^2.78^8.37^3.84
-~11735~^~1100~^~Beets, canned, no salt added, solids and liquids~^~BEETS,CND,NO SALT,SOL&LIQUIDS~^^^~Y~^^0^^6.25^2.78^8.37^3.84
-~11736~^~1100~^~Beet greens, cooked, boiled, drained, with salt~^~BEET GRNS,CKD,BLD,DRND,W/SALT~^^^^^0^^6.25^2.44^8.37^3.57
-~11737~^~1100~^~Borage, cooked, boiled, drained, with salt~^~BORAGE,CKD,BLD,DRND,W/SALT~^^^^^0^^6.25^2.44^8.37^3.57
-~11738~^~1100~^~Broadbeans, immature seeds, cooked, boiled, drained, with salt~^~BROADBEANS,IMMAT SEEDS,CKD,BLD,DRND,W/SALT~^^^^^0^~Vicia faba~^6.25^3.47^8.37^4.07
-~11739~^~1100~^~Broccoli, leaves, raw~^~BROCCOLI,LEAVES,RAW~^^^^^0^^6.25^2.44^8.37^3.57
-~11740~^~1100~^~Broccoli, flower clusters, raw~^~BROCCOLI,FLOWER CLUSTERS,RAW~^^^^^0^^6.25^2.44^8.37^3.57
-~11741~^~1100~^~Broccoli, stalks, raw~^~BROCCOLI,STALKS,RAW~^^^^^0^^6.25^2.44^8.37^3.57
-~11742~^~1100~^~Broccoli, cooked, boiled, drained, with salt~^~BROCCOLI,CKD,BLD,DRND,W/SALT~^^^^^0^^6.25^2.44^8.37^3.57
-~11743~^~1100~^~Broccoli, frozen, chopped, cooked, boiled, drained, with salt~^~BROCCOLI,FRZ,CHOPD,CKD,BLD,DRND,W/SALT~^^^^^0^^6.25^2.44^8.37^3.57
-~11744~^~1100~^~Broccoli, frozen, spears, cooked, boiled, drained, with salt~^~BROCCOLI,FRZ,SPEARS,CKD,BLD,DRND,W/SALT~^^^^^0^^6.25^2.44^8.37^3.57
-~11745~^~1100~^~Brussels sprouts, cooked, boiled, drained, with salt~^~BRUSSELS SPROUTS,CKD,BLD,DRND,W/SALT~^^^^^0^^6.25^2.44^8.37^3.57
-~11746~^~1100~^~Brussels sprouts, frozen, cooked, boiled, drained, with salt~^~BRUSSELS SPROUTS,FRZ,CKD,BLD,DRND,W/SALT~^^^^^0^^6.25^2.44^8.37^3.57
-~11747~^~1100~^~Burdock root, cooked, boiled, drained, with salt~^~BURDOCK ROOT,CKD,BLD,DRND,W/SALT~^^^^^0^^6.25^2.78^8.37^3.84
-~11748~^~1100~^~Butterbur, cooked, boiled, drained, with salt~^~BUTTERBUR,CKD,BLD,DRND,W/SALT~^^^^^0^^6.25^2.44^8.37^3.57
-~11749~^~1100~^~Cabbage, common (danish, domestic, and pointed types), freshly harvest, raw~^~CABBAGE,COMMON,FRESHLY HARVEST,RAW~^^^^~Outer leaves and core~^20^^6.25^2.44^8.37^3.57
-~11750~^~1100~^~Cabbage, common (danish, domestic, and pointed types), stored, raw~^~CABBAGE,COMMON (DANISH,DOMESTIC,&POINTED TYPES),STORED,RAW~^^^^~Outer leaves and core~^20^^6.25^2.44^8.37^3.57
-~11751~^~1100~^~Cabbage, common, cooked, boiled, drained, with salt~^~CABBAGE,COMMON,CKD,BLD,DRND,W/SALT~^^^^^0^^6.25^2.44^8.37^3.57
-~11752~^~1100~^~Cabbage, red, cooked, boiled, drained, with salt~^~CABBAGE,RED,CKD,BLD,DRND,W/SALT~^^^^^0^^6.25^2.44^8.37^3.57
-~11753~^~1100~^~Cabbage, savoy, cooked, boiled, drained, with salt~^~CABBAGE,SAVOY,CKD,BLD,DRND,W/SALT~^^^^^0^^6.25^2.44^8.37^3.57
-~11754~^~1100~^~Cabbage, chinese (pak-choi), cooked, boiled, drained, with salt~^~CABBAGE,CHINESE (PAK-CHOI),CKD,BLD,DRND,W/SALT~^~pak choi, bok choy~^^^^0^^6.25^2.44^8.37^3.57
-~11755~^~1100~^~Cabbage, chinese (pe-tsai), cooked, boiled, drained, with salt~^~CABBAGE,CHINESE (PE-TSAI),CKD,BLD,DRND,W/SALT~^^^^^0^^6.25^2.44^8.37^3.57
-~11756~^~1100~^~Cardoon, cooked, boiled, drained, with salt~^~CARDOON,CKD,BLD,DRND,W/SALT~^^^^^0^^6.25^2.44^8.37^3.57
-~11757~^~1100~^~Carrots, cooked, boiled, drained, with salt~^~CARROTS,CKD,BLD,DRND,W/SALT~^^^^^0^^6.25^2.78^8.37^3.84
-~11758~^~1100~^~Carrots, canned, no salt added, solids and liquids~^~CARROTS,CND,NO SALT,SOL&LIQUIDS~^^^~Y~^^0^^6.25^2.78^8.37^3.84
-~11759~^~1100~^~Carrots, canned, no salt added, drained solids~^~CARROTS,CND,NO SALT ,DRND SOL~^^^^^0^^6.25^2.78^8.37^3.84
-~11760~^~1100~^~Carrots, frozen, cooked, boiled, drained, with salt~^~CARROTS,FRZ,CKD,BLD,DRND,W/SALT~^^^^^0^^6.25^2.78^8.37^3.84
-~11761~^~1100~^~Cauliflower, cooked, boiled, drained, with salt~^~CAULIFLOWER,CKD,BLD,DRND,W/SALT~^^^^^0^^6.25^2.44^8.37^3.57
-~11762~^~1100~^~Cauliflower, frozen, cooked, boiled, drained, with salt~^~CAULIFLOWER,FRZ,CKD,BLD,DRND,W/SALT~^^^^^0^^6.25^2.44^8.37^3.57
-~11763~^~1100~^~Celeriac, cooked, boiled, drained, with salt~^~CELERIAC,CKD,BLD,DRND,W/SALT~^^^^^0^^6.25^2.78^8.37^3.84
-~11764~^~1100~^~Celery, cooked, boiled, drained, with salt~^~CELERY,CKD,BLD,DRND,W/SALT~^^^^^0^^6.25^2.44^8.37^3.57
-~11765~^~1100~^~Chard, swiss, cooked, boiled, drained, with salt~^~CHARD,SWISS,CKD,BLD,DRND,W/SALT~^^^^^0^^6.25^2.44^8.37^3.57
-~11766~^~1100~^~Chayote, fruit, cooked, boiled, drained, with salt~^~CHAYOTE,FRUIT,CKD,BLD,DRND,W/SALT~^~christophine~^^~Y~^^0^^6.25^2.44^8.37^3.57
-~11767~^~1100~^~Chrysanthemum, garland, cooked, boiled, drained, with salt~^~CHRYSANTHEMUM,GARLAND,CKD,BLD,DRND,W/SALT~^^^^^0^^6.25^2.44^8.37^3.57
-~11768~^~1100~^~Collards, cooked, boiled, drained, with salt~^~COLLARDS,CKD,BLD,DRND,W/SALT~^^^^^0^^6.25^2.44^8.37^3.57
-~11769~^~1100~^~Collards, frozen, chopped, cooked, boiled, drained, with salt~^~COLLARDS,FRZ,CHOPD,CKD,BLD,DRND,W/SALT~^^^^^0^^6.25^2.44^8.37^3.57
-~11770~^~1100~^~Corn, sweet, yellow, cooked, boiled, drained, with salt~^~CORN,SWT,YEL,CKD,BLD,DRND,W/SALT~^^^^~Cob~^45^^6.25^2.44^8.37^3.57
-~11771~^~1100~^~Corn, sweet, yellow, canned, no salt added, solids and liquids (Includes foods for USDA's Food Distribution Program)~^~CORN,SWT,YEL,CND,NO SALT,SOL&LIQUIDS~^^^~Y~^^0^^6.25^2.44^8.37^3.57
-~11772~^~1100~^~Corn, sweet, yellow, canned, cream style, no salt added~^~CORN,SWT,YEL,CND,CRM STYLE,NO SALT~^^^^^0^^6.25^2.44^8.37^3.57
-~11773~^~1100~^~Corn, sweet, yellow, canned, vacuum pack, no salt added~^~CORN,SWT,YEL,CND,VACUUM PK,NO SALT~^^^^^0^^6.25^2.44^8.37^3.57
-~11774~^~1100~^~Corn, sweet, yellow, frozen, kernels, cut off cob, boiled, drained, with salt~^~CORN,SWT,YEL,FRZ,KRNLS,CUT OFF COB,BLD,DRND,W/SALT~^^^^^0^^6.25^2.44^8.37^3.57
-~11775~^~1100~^~Corn, sweet, yellow, frozen, kernels on cob, cooked, boiled, drained, with salt~^~CORN,SWT,YEL,FRZ,KRNLS ON COB,CKD,BLD,DRND,W/SALT~^^^^~Cob~^45^^6.25^2.44^8.37^3.57
-~11777~^~1100~^~Cowpeas (blackeyes), immature seeds, cooked, boiled, drained, with salt~^~COWPEAS (BLACKEYES),IMMAT SEEDS,CKD,BLD,DRND,W/ SALT~^^^^^0^^6.25^3.47^8.37^4.07
-~11778~^~1100~^~Cowpeas (blackeyes), immature seeds, frozen, cooked, boiled, drained, with salt~^~COWPEAS (BLACKEYES),IMMAT SEEDS,FRZ,CKD,BLD,DRND,W/ SALT~^^^^^0^^6.25^3.47^8.37^4.07
-~11779~^~1100~^~Cowpeas, young pods with seeds, cooked, boiled, drained, with salt~^~COWPEAS,YOUNG PODS W/SEEDS,CKD,BLD,DRND,W/SALT~^^^^^0^^6.25^2.44^8.37^3.57
-~11780~^~1100~^~Cowpeas, leafy tips, cooked, boiled, drained, with salt~^~COWPEAS,LEAFY TIPS,CKD,BLD,DRND,W/SALT~^^^^^0^^6.25^2.44^8.37^3.57
-~11781~^~1100~^~Cress, garden, cooked, boiled, drained, with salt~^~CRESS,GARDEN,CKD,BLD,DRND,W/SALT~^^^^^0^^6.25^2.44^8.37^3.57
-~11782~^~1100~^~Dandelion greens, cooked, boiled, drained, with salt~^~DANDELION GRNS,CKD,BLD,DRND,W/SALT~^^^^^0^^6.25^2.44^8.37^3.57
-~11783~^~1100~^~Eggplant, cooked, boiled, drained, with salt~^~EGGPLANT,CKD,BLD,DRND,W/SALT~^^^^^0^^6.25^2.44^8.37^3.57
-~11784~^~1100~^~Gourd, white-flowered (calabash), cooked, boiled, drained, with salt~^~GOURD,WHITE-FLOWERED (CALABASH),CKD,BLD,DRND,W/SALT~^^^^^0^^6.25^2.44^8.37^3.57
-~11785~^~1100~^~Gourd, dishcloth (towelgourd), cooked, boiled, drained, with salt~^~GOURD,DISHCLOTH (TOWELGOURD),CKD,BLD,DRND,W/SALT~^^^^^0^^6.25^2.44^8.37^3.57
-~11786~^~1100~^~Drumstick leaves, cooked, boiled, drained, with salt~^~DRUMSTICK LEAVES,CKD,BLD,DRND,W/ SALT~^~Horseradish tree~^^^^0^^6.25^2.44^8.37^3.57
-~11787~^~1100~^~Drumstick pods, cooked, boiled, drained, with salt~^~DRUMSTICK PODS,CKD,BLD,DRND,W/ SALT~^~Horseradish-tree pods~^^^^0^^6.25^2.44^8.37^3.57
-~11788~^~1100~^~Hyacinth-beans, immature seeds, cooked, boiled, drained, with salt~^~HYACINTH-BEANS,IMMAT SEEDS,CKD,BLD,DRND,W/SALT~^^^^^0^^6.25^3.47^8.37^4.07
-~11789~^~1100~^~Jute, potherb, cooked, boiled, drained, with salt~^~JUTE,POTHERB,CKD,BLD,DRND,W/SALT~^^^^^0^^6.25^2.44^8.37^3.57
-~11790~^~1100~^~Kale, cooked, boiled, drained, with salt~^~KALE,CKD,BLD,DRND,W/ SALT~^^^^^0^^6.25^^^
-~11791~^~1100~^~Kale, frozen, cooked, boiled, drained, with salt~^~KALE,FRZ,CKD,BLD,DRND,W/SALT~^^^^^0^^6.25^2.44^8.37^3.57
-~11793~^~1100~^~Kohlrabi, cooked, boiled, drained, with salt~^~KOHLRABI,CKD,BLD,DRND,W/SALT~^^^^^0^^6.25^2.44^8.37^3.57
-~11794~^~1100~^~Lambsquarters, cooked, boiled, drained, with salt~^~LAMBSQUARTERS,CKD,BLD,DRND,W/ SALT~^^^^^0^^6.25^2.44^8.37^3.57
-~11795~^~1100~^~Leeks, (bulb and lower leaf-portion), cooked, boiled, drained, with salt~^~LEEKS,(BULB&LOWER LEAF-PORTION),CKD,BLD,DRND,W/SALT~^^^^^0^^6.25^2.44^8.37^3.57
-~11796~^~1100~^~Lotus root, cooked, boiled, drained, with salt~^~LOTUS ROOT,CKD,BLD,DRND,W/SALT~^^^^^0^^6.25^2.78^8.37^3.84
-~11797~^~1100~^~Mushrooms, white, cooked, boiled, drained, with salt~^~MUSHROOMS,WHITE,CKD,BLD,DRND,W/ SALT~^^^^^0^~Agaricus bisporus~^6.25^2.62^8.37^3.48
-~11798~^~1100~^~Mushrooms, shiitake, cooked, with salt~^~MUSHROOMS,SHIITAKE,CKD,W/SALT~^^^^^0^^6.25^2.62^8.37^3.48
-~11799~^~1100~^~Mustard greens, cooked, boiled, drained, with salt~^~MUSTARD GRNS,CKD,BLD,DRND,W/SALT~^^^^^0^^6.25^2.44^8.37^3.57
-~11800~^~1100~^~Mustard greens, frozen, cooked, boiled, drained, with salt~^~MUSTARD GRNS,FRZ,CKD,BLD,DRND,W/SALT~^^^^^0^^6.25^2.44^8.37^3.57
-~11801~^~1100~^~Mustard spinach, (tendergreen), cooked, boiled, drained, with salt~^~MUSTARD SPINACH,(TENDERGREEN),CKD,BLD,DRND,W/SALT~^^^^^0^^6.25^2.44^8.37^3.57
-~11802~^~1100~^~New zealand spinach, cooked, boiled, drained, with salt~^~NEW ZEALAND SPINACH,CKD,BLD,DRND,W/SALT~^^^^^0^^6.25^2.44^8.37^3.57
-~11803~^~1100~^~Okra, cooked, boiled, drained, with salt~^~OKRA,CKD,BLD,DRND,W/SALT~^^^^^0^^6.25^2.44^8.37^3.57
-~11804~^~1100~^~Okra, frozen, cooked, boiled, drained, with salt~^~OKRA,FRZ,CKD,BLD,DRND,W/ SALT~^^^^^0^^6.25^2.44^8.37^3.57
-~11805~^~1100~^~Onions, cooked, boiled, drained, with salt~^~ONIONS,CKD,BLD,DRND,W/SALT~^^^~Y~^^0^^6.25^2.78^8.37^3.84
-~11806~^~1100~^~Onions, frozen, chopped, cooked, boiled, drained, with salt~^~ONIONS,FRZ,CHOPD,CKD,BLD,DRND,W/SALT~^^^^^0^^6.25^2.78^8.37^3.84
-~11807~^~1100~^~Onions, frozen, whole, cooked, boiled, drained, with salt~^~ONIONS,FRZ,WHL,CKD,BLD,DRND,W/SALT~^^^^^0^^6.25^2.78^8.37^3.84
-~11808~^~1100~^~Parsnips, cooked, boiled, drained, with salt~^~PARSNIPS,CKD,BLD,DRND,W/SALT~^^^^^0^^6.25^2.78^8.37^3.84
-~11809~^~1100~^~Peas, edible-podded, cooked, boiled, drained, with salt~^~PEAS,EDIBLE-PODDED,CKD,BLD,DRND,W/SALT~^~Sugar snap peas, Snowpeas~^^^^0^^6.25^3.47^8.37^4.07
-~11810~^~1100~^~Peas, edible-podded, frozen, cooked, boiled, drained, with salt~^~PEAS,EDIBLE-PODDED,FRZ,CKD,BLD,DRND,W/SALT~^~Sugar snap peas, Snowpeas~^^^^0^^6.25^3.47^8.37^4.07
-~11811~^~1100~^~Peas, green, cooked, boiled, drained, with salt~^~PEAS,GRN,CKD,BLD,DRND,W/SALT~^^^^^0^^6.25^3.47^8.37^4.07
-~11812~^~1100~^~Peas, green, canned, no salt added, solids and liquids~^~PEAS,GRN,CND,NO SALT,SOL&LIQUIDS~^^^~Y~^^0^^6.25^3.47^8.37^4.07
-~11813~^~1100~^~Peas, green, canned, no salt added, drained solids~^~PEAS,GRN,CND,NO SALT,DRND SOL~^^^^^0^^6.25^3.47^8.37^4.07
-~11814~^~1100~^~Peas, green, frozen, cooked, boiled, drained, with salt~^~PEAS,GRN,FRZ,CKD,BLD,DRND,W/SALT~^^^^^0^^6.25^3.47^8.37^4.07
-~11815~^~1100~^~Peas, mature seeds, sprouted, cooked, boiled, drained, with salt~^~PEAS,MATURE SEEDS,SPROUTED,CKD,BLD,DRND,W/SALT~^^^^^0^^6.25^3.47^8.37^4.07
-~11816~^~1100~^~Peas and carrots, canned, no salt added, solids and liquids~^~PEAS&CARROTS,CND,NO SALT,SOL&LIQUIDS~^^^~Y~^^0^^6.25^3.98^8.37^3.16
-~11817~^~1100~^~Peas and carrots, frozen, cooked, boiled, drained, with salt~^~PEAS&CARROTS,FRZ,CKD,BLD,DRND,W/SALT~^^^^^0^^6.25^3.98^8.37^3.16
-~11818~^~1100~^~Peas and onions, frozen, cooked, boiled, drained, with salt~^~PEAS&ONIONS,FRZ,CKD,BLD,DRND,W/SALT~^^^^^0^^6.25^3.40^8.37^4.00
-~11819~^~1100~^~Peppers, hot chili, red, raw~^~PEPPERS,HOT CHILI,RED,RAW~^^^~Y~^~Stem ends, seeds and core~^27^^6.25^2.44^8.37^3.57
-~11820~^~1100~^~Peppers, hot chili, red, canned, excluding seeds, solids and liquids~^~PEPPERS,HOT CHILI,RED,CND,EXCLUDING SEEDS,SOL&LIQUIDS~^^^~Y~^^0^^6.25^2.44^8.37^3.57
-~11821~^~1100~^~Peppers, sweet, red, raw~^~PEPPERS,SWT,RED,RAW~^^^~Y~^~Stem ends, seed and core~^18^^6.25^2.44^8.37^3.57
-~11822~^~1100~^~Peppers, sweet, green, cooked, boiled, drained, with salt~^~PEPPERS,SWT,GRN,CKD,BLD,DRND,W/SALT~^^^^^0^^6.25^2.44^8.37^3.57
-~11823~^~1100~^~Peppers, sweet, red, cooked, boiled, drained, without salt~^~PEPPERS,SWT,RED,CKD,BLD,DRND,WO/SALT~^^^~Y~^^0^^6.25^2.44^8.37^3.57
-~11824~^~1100~^~Peppers, sweet, red, cooked, boiled, drained, with salt~^~PEPPERS,SWT,RED,CKD,BLD,DRND,W/SALT~^^^^^0^^6.25^2.44^8.37^3.57
-~11825~^~1100~^~Peppers, sweet, green, frozen, chopped, cooked, boiled, drained, with salt~^~PEPPERS,SWT,GRN,FRZ,CHOPD,CKD,BLD,DRND,W/SALT~^^^^^0^^6.25^2.44^8.37^3.57
-~11826~^~1100~^~Pigeonpeas, immature seeds, cooked, boiled, drained, with salt~^~PIGEONPEAS,IMMAT SEEDS,CKD,BLD,DRND,W/SALT~^^^^^0^^6.25^3.47^8.37^4.07
-~11827~^~1100~^~Pokeberry shoots, (poke), cooked, boiled, drained, with salt~^~POKEBERRY SHOOTS,(POKE),CKD,BLD,DRND,W/SALT~^^^^^0^^6.25^2.44^8.37^3.57
-~11828~^~1100~^~Potatoes, baked, flesh and skin, with salt~^~POTATOES,BKD,FLESH & SKN,W/ SALT~^^^^^0^^6.25^2.78^8.37^4.03
-~11829~^~1100~^~Potatoes, baked, flesh, with salt~^~POTATOES,BKD,FLESH,W/SALT~^^^^~Skin and adhering flesh~^23^^6.25^2.78^8.37^4.03
-~11830~^~1100~^~Potatoes, baked, skin only, with salt~^~POTATOES,BKD,SKN ONLY,W/ SALT~^^^^^0^^6.25^2.78^8.37^4.03
-~11831~^~1100~^~Potatoes, boiled, cooked in skin, flesh, with salt~^~POTATOES,BLD,CKD IN SKN,FLESH,W/SALT~^^^~Y~^~Skins and eyes~^9^^6.25^2.78^8.37^4.03
-~11832~^~1100~^~Potatoes, boiled, cooked in skin, skin, with salt~^~POTATOES,BLD,CKD IN SKN,SKN,W/SALT~^^^^^0^^6.25^2.78^8.37^4.03
-~11833~^~1100~^~Potatoes, boiled, cooked without skin, flesh, with salt~^~POTATOES,BLD,CKD WO/ SKN,FLESH,W/ SALT~^^^~Y~^^0^^6.25^2.78^8.37^4.03
-~11834~^~1100~^~Potatoes, microwaved, cooked, in skin, flesh and skin, with salt~^~POTATOES,MICROWAVED,CKD,IN SKN,FLESH&SKN,W/SALT~^^^^^0^^6.25^2.78^8.37^4.03
-~11835~^~1100~^~Potatoes, microwaved, cooked in skin, flesh, with salt~^~POTATOES,MICROWAVED,CKD IN SKN,FLESH,W/SALT~^^^^~Skin and adhering flesh~^23^^6.25^2.78^8.37^4.03
-~11836~^~1100~^~Potatoes, microwaved, cooked, in skin, skin with salt~^~POTATOES,MICROWAVED,CKD,IN SKN,SKN W/SALT~^^^^^0^^6.25^2.78^8.37^4.03
-~11837~^~1100~^~Potatoes, frozen, whole, cooked, boiled, drained, with salt~^~POTATOES,FRZ,WHL,CKD,BLD,DRND,W/SALT~^^^^^0^^6.25^2.78^8.37^4.03
-~11840~^~1100~^~Potatoes, frozen, french fried, par fried, cottage-cut, prepared, heated in oven, with salt~^~POTATOES,FRZ,FRCH FR,PAR FR,CTTGE-CUT,PREP,HTD OVEN,W/SALT~^^^^^0^^6.25^2.80^8.80^4.00
-~11841~^~1100~^~Potatoes, french fried, all types, salt not added in processing, frozen, oven-heated~^~POTATOES,FR FR,ALL TYPES,SALT NOT ADDED IN PROC,FRZ,OVN-HTD~^^^^^0^^6.25^2.80^8.80^4.00
-~11842~^~1100~^~Potatoes, french fried, all types, salt not added in processing, frozen, as purchased~^~POTATOES,FR FR,ALL TYPES,SALT NOT ADDED IN PROC,FRZ,AS PURCH~^^^^^0^^6.25^2.80^8.80^4.00
-~11843~^~1100~^~Potatoes, au gratin, home-prepared from recipe using margarine~^~POTATOES,AU GRATIN,HOME-PREPARED FROM RECIPE USING MARGARINE~^^^^^0^^^^^
-~11844~^~1100~^~Potatoes, scalloped, home-prepared with margarine~^~POTATOES,SCALLPD,HOME-PREPARED W/MARGARINE~^^^^^0^^^^^
-~11845~^~1100~^~Pumpkin, cooked, boiled, drained, with salt~^~PUMPKIN,CKD,BLD,DRND,W/SALT~^^^^^0^^6.25^2.44^8.37^3.57
-~11846~^~1100~^~Pumpkin, canned, with salt~^~PUMPKIN,CANNED,WITH SALT~^^^^^0^^6.25^2.44^8.37^3.57
-~11847~^~1100~^~Pumpkin, flowers, cooked, boiled, drained, with salt~^~PUMPKIN,FLOWERS,CKD,BLD,DRND,W/SALT~^^^^^0^^6.25^2.44^8.37^3.57
-~11848~^~1100~^~Pumpkin leaves, cooked, boiled, drained, with salt~^~PUMPKIN LEAVES,CKD,BLD,DRND,W/ SALT~^^^^^0^^6.25^2.44^8.37^3.57
-~11849~^~1100~^~Purslane, cooked, boiled, drained, with salt~^~PURSLANE,CKD,BLD,DRND,W/SALT~^^^^^0^^6.25^2.44^8.37^3.57
-~11850~^~1100~^~Radishes, oriental, cooked, boiled, drained, with salt~^~RADISHES,ORIENTAL,CKD,BLD,DRND,W/SALT~^^^^^0^^6.25^2.78^8.37^3.84
-~11851~^~1100~^~Rutabagas, cooked, boiled, drained, with salt~^~RUTABAGAS,CKD,BLD,DRND,W/SALT~^^^^^0^^6.25^2.78^8.37^3.84
-~11852~^~1100~^~Salsify, cooked, boiled, drained, with salt~^~SALSIFY,CKD,BLD,DRND,W/SALT~^^^^^0^^6.25^2.78^8.37^3.84
-~11853~^~1100~^~Soybeans, green, cooked, boiled, drained, with salt~^~SOYBEANS,GRN,CKD,BLD,DRND,W/SALT~^^^^^0^^6.25^3.47^8.37^4.07
-~11854~^~1100~^~Spinach, cooked, boiled, drained, with salt~^~SPINACH,CKD,BLD,DRND,W/SALT~^^^^^0^^6.25^2.44^8.37^3.57
-~11855~^~1100~^~Spinach, canned, no salt added, solids and liquids~^~SPINACH,CND,NO SALT,SOL&LIQUIDS~^^^^^0^^6.25^2.44^8.37^3.57
-~11856~^~1100~^~Spinach, frozen, chopped or leaf, cooked, boiled, drained, with salt~^~SPINACH,FRZ,CHOPD OR LEAF,CKD,BLD,DRND,W/SALT~^^^^^0^^6.25^2.44^8.37^3.57
-~11857~^~1100~^~Squash, summer, all varieties, cooked, boiled, drained, with salt~^~SQUASH,SMMR,ALL VAR,CKD,BLD,DRND,W/SALT~^^^^^0^^6.25^2.44^8.37^3.57
-~11858~^~1100~^~Squash, summer, crookneck and straightneck, cooked, boiled, drained, with salt~^~SQUASH,SMMR,CROOKNECK&STRAIGHTNECK,CKD,BLD,DRND,W/SALT~^^^^^0^^6.25^2.44^8.37^3.57
-~11859~^~1100~^~Squash, summer, crookneck and straightneck, frozen, cooked, boiled, drained, with salt~^~SQUASH,SMMR,CROOKNECK&STRAIGHTNECK,FRZ,CKD,BLD,DRND,W/SALT~^^^^^0^^6.25^2.44^8.37^3.57
-~11860~^~1100~^~Squash, summer, scallop, cooked, boiled, drained, with salt~^~SQUASH,SMMR,SCALLOP,CKD,BLD,DRND,W/SALT~^^^^^0^^6.25^2.44^8.37^3.57
-~11861~^~1100~^~Squash, summer, zucchini, includes skin, cooked, boiled, drained, with salt~^~SQUASH,SMMR,ZUCCHINI,INCL SKN,CKD,BLD,DRND,W/SALT~^^^^^0^^6.25^2.44^8.37^3.57
-~11862~^~1100~^~Squash, summer, zucchini, includes skin, frozen, cooked, boiled, drained, with salt~^~SQUASH,SMMR,ZUCCHINI,INCL SKN,FRZ,CKD,BLD,DRND,W/SALT~^^^^^0^^6.25^2.44^8.37^3.57
-~11863~^~1100~^~Squash, winter, all varieties, cooked, baked, with salt~^~SQUASH,WNTR,ALL VAR,CKD,BKD,W/SALT~^^^^^0^^6.25^2.44^8.37^3.57
-~11864~^~1100~^~Squash, winter, acorn, cooked, baked, with salt~^~SQUASH,WNTR,ACORN,CKD,BKD,W/SALT~^^^^~Rind~^20^^6.25^2.44^8.37^3.57
-~11865~^~1100~^~Squash, winter, acorn, cooked, boiled, mashed, with salt~^~SQUASH,WNTR,ACORN,CKD,BLD,MSHD,W/SALT~^^^^^0^^6.25^2.44^8.37^3.57
-~11866~^~1100~^~Squash, winter, butternut, cooked, baked, with salt~^~SQUASH,WNTR,BUTTERNUT,CKD,BKD,W/SALT~^^^^^0^^6.25^2.44^8.37^3.57
-~11867~^~1100~^~Squash, winter, butternut, frozen, cooked, boiled, with salt~^~SQUASH,WNTR,BUTTERNUT,FRZ,CKD,BLD,W/SALT~^^^^^0^^6.25^2.44^8.37^3.57
-~11868~^~1100~^~Squash, winter, hubbard, baked, with salt~^~SQUASH,WNTR,HUBBARD,BKD,W/ SALT~^^^^^0^^6.25^2.44^8.37^3.57
-~11869~^~1100~^~Squash, winter, hubbard, cooked, boiled, mashed, with salt~^~SQUASH,WNTR,HUBBARD,CKD,BLD,MSHD,W/SALT~^^^^^0^^6.25^2.44^8.37^3.57
-~11870~^~1100~^~Squash, winter, spaghetti, cooked, boiled, drained, or baked, with salt~^~SQUASH,WNTR,SPAGHETTI,CKD,BLD,DRND,OR BKD,W/SALT~^^^^^0^^6.25^2.44^8.37^3.57
-~11871~^~1100~^~Succotash, (corn and limas), cooked, boiled, drained, with salt~^~SUCCOTASH,(CORN&LIMAS),CKD,BLD,DRND,W/SALT~^^^^^0^^6.25^2.72^8.37^3.71
-~11872~^~1100~^~Succotash, (corn and limas), frozen, cooked, boiled, drained, with salt~^~SUCCOTASH,(CORN&LIMAS),FRZ,CKD,BLD,DRND,W/SALT~^^^^^0^^6.25^2.72^8.37^3.71
-~11873~^~1100~^~Water convolvulus, cooked, boiled, drained, with salt~^~SWAMP CABBAGE (SKUNK CABBAGE),CKD,BLD,DRND,W/ SALT~^~kangkong, Water spinach~^^^^0^^6.25^2.44^8.37^3.57
-~11874~^~1100~^~Sweet potato leaves, cooked, steamed, with salt~^~SWEET POTATO LEAVES,CKD,STMD,W/ SALT~^~Sweetpotato leaves~^^^^0^^6.25^2.44^8.37^3.57
-~11875~^~1100~^~Sweet potato, cooked, baked in skin, flesh, with salt~^~SWEET POTATO,CKD,BKD IN SKN,FLESH,W/ SALT~^~Sweetpotato~^^^~Skin~^22^^6.25^2.78^8.37^4.03
-~11876~^~1100~^~Sweet potato, cooked, boiled, without skin, with salt~^~SWEET POTATO,CKD,BLD,WO/ SKN,W/ SALT~^~Sweetpotato~^^^^0^^6.25^2.78^8.37^4.03
-~11877~^~1100~^~Sweet potato, frozen, cooked, baked, with salt~^~SWEET POTATO,FRZ,CKD,BKD,W/ SALT~^~Sweetpotato~^^^^0^^6.25^2.78^8.37^4.03
-~11878~^~1100~^~Taro, cooked, with salt~^~TARO,COOKED,WITH SALT~^^^^^0^^6.25^2.78^8.37^4.03
-~11879~^~1100~^~Taro, leaves, cooked, steamed, with salt~^~TARO,LEAVES,CKD,STMD,W/SALT~^^^^^0^^6.25^2.44^8.37^3.57
-~11880~^~1100~^~Taro, shoots, cooked, with salt~^~TARO,SHOOTS,CKD,W/SALT~^^^^^0^^6.25^2.44^8.37^3.57
-~11881~^~1100~^~Taro, tahitian, cooked, with salt~^~TARO,TAHITIAN,CKD,W/SALT~^^^^^0^^6.25^2.78^8.37^3.84
-~11884~^~1100~^~Tomatoes, red, ripe, cooked, with salt~^~TOMATOES,RED,RIPE,CKD,W/ SALT~^^^^^0^^6.25^2.44^8.37^3.57
-~11885~^~1100~^~Tomatoes, red, ripe, canned, packed in tomato juice, no salt added~^~TOMATOES,RED,RIPE,CND,PACKED IN TOMATO JUC,NO SALT ADDED~^^^~Y~^^0^^6.25^2.44^8.37^3.57
-~11886~^~1100~^~Tomato juice, canned, without salt added~^~TOMATO JUC,CND,WO/ SALT ADDED~^^^~Y~^^0^^6.25^2.44^8.37^3.57
-~11888~^~1100~^~Tomato products, canned, puree, with salt added~^~TOMATO PRODUCTS,CND,PUREE,W/SALT~^^^~Y~^^0^^6.25^2.44^8.37^3.57
-~11889~^~1100~^~Turnips, cooked, boiled, drained, with salt~^~TURNIPS,CKD,BLD,DRND,W/SALT~^^^^^0^^6.25^2.78^8.37^3.84
-~11890~^~1100~^~Turnips, frozen, cooked, boiled, drained, with salt~^~TURNIPS,FRZ,CKD,BLD,DRND,W/SALT~^^^^^0^^6.25^2.78^8.37^3.84
-~11891~^~1100~^~Turnip greens, cooked, boiled, drained, with salt~^~TURNIP GRNS,CKD,BLD,DRND,W/SALT~^^^^^0^^6.25^2.44^8.37^3.57
-~11892~^~1100~^~Turnip greens, frozen, cooked, boiled, drained, with salt~^~TURNIP GRNS,FRZ,CKD,BLD,DRND,W/SALT~^^^^^0^^6.25^2.44^8.37^3.57
-~11893~^~1100~^~Turnip greens and turnips, frozen, cooked, boiled, drained, with salt~^~TURNIP GRNS&TURNIPS,FRZ,CKD,BLD,DRND,W/SALT~^^^^^0^^6.25^^^
-~11894~^~1100~^~Vegetables, mixed, frozen, cooked, boiled, drained, with salt~^~VEGETABLES,MXD,FRZ,CKD,BLD,DRND,W/SALT~^^^^^0^^6.25^2.44^8.37^3.97
-~11895~^~1100~^~Waxgourd, (chinese preserving melon), cooked, boiled, drained, with salt~^~WAXGOURD,(CHINESE PRESERVING MELON),CKD,BLD,DRND,W/SALT~^^^^^0^^6.25^2.44^8.37^3.57
-~11896~^~1100~^~Winged bean, immature seeds, cooked, boiled, drained, with salt~^~WINGED BEAN,IMMAT SEEDS,CKD,BLD,DRND,W/SALT~^^^^^0^^6.25^3.47^8.37^4.07
-~11897~^~1100~^~Yam, cooked, boiled, drained, or baked, with salt~^~YAM,CKD,BLD,DRND,OR BKD,W/SALT~^^^~Y~^^0^^6.25^2.78^8.37^4.03
-~11898~^~1100~^~Yambean (jicama), cooked, boiled, drained, with salt~^~YAMBEAN (JICAMA),CKD,BLD,DRND,W/SALT~^^^^^0^^6.25^2.78^8.37^4.03
-~11899~^~1100~^~Yardlong bean, cooked, boiled, drained, with salt~^~YARDLONG BEAN,CKD,BLD,DRND,W/SALT~^^^^^0^^6.25^3.47^8.37^4.07
-~11900~^~1100~^~Corn, sweet, white, raw~^~CORN,SWEET,WHITE,RAW~^^^^~35% husk, silk, trimmings; 29% cob~^64^~Zea mays~^6.25^2.44^8.37^3.57
-~11901~^~1100~^~Corn, sweet, white, cooked, boiled, drained, without salt~^~CORN,SWT,WHITE,CKD,BLD,DRND,WO/SALT~^^^~Y~^~Cob~^45^^6.25^2.44^8.37^3.57
-~11902~^~1100~^~Corn, sweet, white, cooked, boiled, drained, with salt~^~CORN,SWT,WHITE,CKD,BLD,DRND,W/SALT~^^^^~Cob~^45^^6.25^2.44^8.37^3.57
-~11903~^~1100~^~Corn, sweet, white, canned, whole kernel, regular pack, solids and liquids~^~CORN,SWT,WHITE,CND,WHL KERNEL,REG PK,SOL&LIQUIDS~^^^^^0^^6.25^2.44^8.37^3.57
-~11904~^~1100~^~Corn, sweet, white, canned, whole kernel, no salt added, solids and liquids~^~CORN,SWT,WHITE,CND,WHL KERNEL,NO SALT,SOL&LIQUIDS~^^^^^0^^6.25^2.44^8.37^3.57
-~11905~^~1100~^~Corn, sweet, white, canned, whole kernel, drained solids~^~CORN,SWT,WHITE,CND,WHL KERNEL,DRND SOL~^^^~Y~^^0^^6.25^2.44^8.37^3.57
-~11906~^~1100~^~Corn, sweet, white, canned, cream style, regular pack~^~CORN,SWT,WHITE,CND,CRM STYLE,REG PK~^^^~Y~^^0^^6.25^2.44^8.37^3.57
-~11907~^~1100~^~Corn, sweet, white, canned, cream style, no salt added~^~CORN,SWT,WHITE,CND,CRM STYLE,NO SALT~^^^^^0^^6.25^2.44^8.37^3.57
-~11908~^~1100~^~Corn, sweet, white, canned, vacuum pack, regular pack~^~CORN,SWT,WHITE,CND,VACUUM PK,REG PK~^^^^^0^^6.25^2.44^8.37^3.57
-~11909~^~1100~^~Corn, sweet, white, canned, vacuum pack, no salt added~^~CORN,SWT,WHITE,CND,VACUUM PK,NO SALT~^^^^^0^^6.25^2.44^8.37^3.57
-~11910~^~1100~^~Corn, sweet, white, frozen, kernels cut off cob, unprepared~^~CORN,SWT,WHITE,FRZ,KRNLS CUT OFF COB,UNPREP~^^^^^0^^6.25^2.44^8.37^3.57
-~11911~^~1100~^~Corn, sweet, white, frozen, kernels cut off cob, boiled, drained, without salt~^~CORN,SWT,WHITE,FRZ,KRNLS CUT OFF COB,BLD,DRND,WO/SALT~^^^~Y~^^0^^6.25^2.44^8.37^3.57
-~11912~^~1100~^~Corn, sweet, white, frozen, kernels cut off cob, boiled, drained, with salt~^~CORN,SWT,WHITE,FRZ,KRNLS CUT OFF COB,BLD,DRND,W/SALT~^^^^^0^^6.25^2.44^8.37^3.57
-~11913~^~1100~^~Corn, sweet, white, frozen, kernels on cob, unprepared~^~CORN,SWT,WHITE,FRZ,KRNLS ON COB,UNPREP~^^^^~Cob~^45^^6.25^2.44^8.37^3.57
-~11914~^~1100~^~Corn, sweet, white, frozen, kernels on cob, cooked, boiled, drained, without salt~^~CORN,SWT,WHITE,FRZ,KRNLS ON COB,CKD,BLD,DRND,WO/SALT~^^^^~Cob~^45^^6.25^2.44^8.37^3.57
-~11915~^~1100~^~Corn, sweet, white, frozen, kernels on cob, cooked, boiled, drained, with salt~^~CORN,SWT,WHITE,FRZ,KRNLS ON COB,CKD,BLD,DRND,W/SALT~^^^^~Cob~^45^^6.25^2.44^8.37^3.57
-~11916~^~1100~^~Peppers, sweet, red, canned, solids and liquids~^~PEPPERS,SWT,RED,CND,SOL&LIQUIDS~^^^^^0^^6.25^2.44^8.37^3.57
-~11917~^~1100~^~Peppers, sweet, red, frozen, chopped, unprepared~^~PEPPERS,SWT,RED,FRZ,CHOPD,UNPREP~^^^~Y~^^0^^6.25^2.44^8.37^3.57
-~11918~^~1100~^~Peppers, sweet, red, frozen, chopped, boiled, drained, without salt~^~PEPPERS,SWT,RED,FRZ,CHOPD,BLD,DRND,WO/ SALT~^^^^^0^^6.25^2.44^8.37^3.57
-~11919~^~1100~^~Peppers, sweet, red, frozen, chopped, boiled, drained, with salt~^~PEPPERS,SWT,RED,FRZ,CHOPD,BLD,DRND,W/ SALT~^^^^^0^^6.25^2.44^8.37^3.57
-~11921~^~1100~^~Peppers, sweet, red, sauteed~^~PEPPERS,SWT,RED,SAUTEED~^^^^^0^^6.25^2.44^8.37^3.57
-~11922~^~1100~^~Sesbania flower, cooked, steamed, with salt~^~SESBANIA FLOWER,CKD,STMD,W/SALT~^^^^^0^^6.25^2.44^8.37^3.57
-~11923~^~1100~^~Soybeans, mature seeds, sprouted, cooked, steamed, with salt~^~SOYBEANS,MATURE SEEDS,SPROUTED,CKD,STMD,W/SALT~^^^^^0^^6.25^2.44^8.37^3.57
-~11924~^~1100~^~Soybeans, mature seeds, sprouted, cooked, stir-fried, with salt~^~SOYBEANS,MATURE SEEDS,SPROUTED,CKD,STIR-FRIED,W/SALT~^^^^^0^^6.25^2.44^8.37^3.57
-~11925~^~1100~^~Dock, cooked, boiled, drained, with salt~^~DOCK,CKD,BLD,DRND,W/SALT~^^^^^0^^6.25^2.44^8.37^3.57
-~11926~^~1100~^~Lentils, sprouted, cooked, stir-fried, with salt~^~LENTILS,SPROUTED,CKD,STIR-FRIED,W/SALT~^^^^^0^^6.25^2.44^8.37^3.57
-~11927~^~1100~^~Mountain yam, hawaii, cooked, steamed, with salt~^~MOUNTAIN YAM,HAWAII,CKD,STMD,W/ SALT~^^^^^0^^6.25^2.78^8.37^3.84
-~11928~^~1100~^~Tree fern, cooked, with salt~^~TREE FERN,CKD,W/SALT~^^^^^0^^6.25^2.44^8.37^3.57
-~11929~^~1100~^~Potatoes, mashed, prepared from granules, without milk, whole milk and margarine~^~POTATOES,MSHD,PREP FROM GRANULES,WO/MILK,WHL MILK&MARGARINE~^^^^^0^^6.25^2.78^8.37^4.03
-~11930~^~1100~^~Potatoes, mashed, dehydrated, prepared from flakes without milk, whole milk and margarine added~^~POTATOES,MSHD,DEHYD,PREP FRM FLKS WO/ MILK,WHL MILK&MARG ADD~^^^^^0^^6.29^3.21^8.82^4.02
-~11931~^~1100~^~Peppers, sweet, red, freeze-dried~^~PEPPERS,SWT,RED,FREEZE-DRIED~^^^^^0^^6.25^2.44^8.37^3.57
-~11932~^~1100~^~Beans, snap, yellow, canned, regular pack, drained solids~^~BEANS,SNAP,YEL,CND,REG PK,DRND SOL~^^^~Y~^^0^^6.25^2.44^8.37^3.57
-~11933~^~1100~^~Beans, snap, yellow, canned, no salt added, drained solids~^~BEANS,SNAP,YEL,CND,NO SALT,DRND SOL~^^^^^0^^6.25^2.44^8.37^3.57
-~11934~^~1100~^~Potatoes, mashed, home-prepared, whole milk and butter added~^~POTATOES,MSHD,HOME-PREPARED,WHL MILK & BUTTER ADDED~^^^^^0^^^^^
-~11935~^~1100~^~Catsup~^~Catsup~^~Ketchup~^^~Y~^^0^^6.25^2.44^8.37^3.57
-~11936~^~1100~^~Mushrooms, brown, italian, or crimini, exposed to ultraviolet light, raw~^~MUSHROOMS,BROWN,ITALIAN,OR CRIMINI,EXPOSED TO UV LT,RAW~^^^^^0^~Agaricus bisporus~^6.25^2.62^8.37^3.48
-~11937~^~1100~^~Pickles, cucumber, dill or kosher dill~^~PICKLES,CUCUMBER,DILL OR KOSHER DILL~^^^~Y~^^0^^6.25^2.44^8.37^3.57
-~11938~^~1100~^~Mushroom, white, exposed to ultraviolet light, raw~^~MUSHROOM,WHITE,EXPOSED TO UV LT,RAW~^^^^^0^^6.25^2.62^8.37^3.48
-~11939~^~1100~^~Mushrooms, portabella, exposed to ultraviolet light, grilled~^~MUSHROOMS,PORTABELLA,EXPOSED TO UV LT,GRILLED~^~portobella~^^^^0^~Agaricus bisporus~^6.25^2.62^8.37^3.48
-~11940~^~1100~^~Pickles, cucumber, sweet (includes bread and butter pickles)~^~PICKLES,CUCUMBER,SWT (INCLUDES BREAD & BUTTER PICKLES)~^^^~Y~^^0^^^^^
-~11941~^~1100~^~Pickles, cucumber, sour~^~PICKLES,CUCUMBER,SOUR~^^^~Y~^^0^^6.25^2.44^8.37^3.57
-~11943~^~1100~^~Pimento, canned~^~PIMENTO,CANNED~^^^~Y~^^0^^6.25^2.44^8.37^3.57
-~11944~^~1100~^~Pickle relish, hot dog~^~PICKLE RELISH,HOT DOG~^^^^^0^^6.25^2.44^8.37^3.57
-~11945~^~1100~^~Pickle relish, sweet~^~PICKLE RELISH,SWEET~^^^~Y~^^0^^6.25^2.44^8.37^3.57
-~11946~^~1100~^~Pickles, cucumber, sour, low sodium~^~PICKLES,CUCUMBER,SOUR,LO NA~^^^~Y~^^0^^6.25^2.44^8.37^3.57
-~11947~^~1100~^~Pickles, cucumber, dill, reduced sodium~^~PICKLES,CUCUMBER,DILL,RED NA~^^^^^0^^6.25^2.44^8.37^3.57
-~11948~^~1100~^~Pickles, cucumber, sweet, low sodium (includes bread and butter pickles)~^~PICKLES,CUCUMBER,SWT,LO NA (INCLUDES BREAD & BUTTER PICKLES)~^^^~Y~^^0^^6.25^2.44^3.37^3.57
-~11949~^~1100~^~Catsup, low sodium~^~CATSUP,LOW SODIUM~^~Ketchup, low sodium~^^~Y~^^0^^6.25^2.44^8.37^3.57
-~11950~^~1100~^~Mushrooms, enoki, raw~^~MUSHROOMS,ENOKI,RAW~^^^^~Stems and trimmings~^16^~Flammulina veluptipes~^6.25^2.62^8.37^3.48
-~11951~^~1100~^~Peppers, sweet, yellow, raw~^~PEPPERS,SWEET,YELLOW,RAW~^^^^~Stem ends, seeds and core~^18^~Capsicum annuum~^6.25^2.44^8.37^3.57
-~11952~^~1100~^~Radicchio, raw~^~RADICCHIO,RAW~^^^~Y~^~Core and leaf ends~^9^~Cichorium intybus~^6.25^2.44^8.37^3.84
-~11953~^~1100~^~Squash, zucchini, baby, raw~^~SQUASH,ZUCCHINI,BABY,RAW~^^^^~Ends~^13^~Cucurbita spp.~^6.25^2.44^8.37^3.57
-~11954~^~1100~^~Tomatillos, raw~^~TOMATILLOS,RAW~^^^~Y~^^^~Physalis philadelphica~^6.25^2.44^8.37^3.57
-~11955~^~1100~^~Tomatoes, sun-dried~^~TOMATOES,SUN-DRIED~^^^~Y~^^0^^6.25^2.44^8.37^3.57
-~11956~^~1100~^~Tomatoes, sun-dried, packed in oil, drained~^~TOMATOES,SUN-DRIED,PACKED IN OIL,DRND~^^^^^0^^6.25^2.44^8.37^3.57
-~11957~^~1100~^~Fennel, bulb, raw~^~FENNEL,BULB,RAW~^^^~Y~^~Stalk, leaves and core~^28^~Foeniculum vulgare~^6.25^2.44^8.37^3.57
-~11958~^~1100~^~Pickle relish, hamburger~^~PICKLE RELISH,HAMBURGER~^^^^^0^^6.25^2.44^3.37^3.57
-~11959~^~1100~^~Arugula, raw~^~ARUGULA,RAW~^^^~Y~^~Roots, stems and yellowed leaves~^40^~Eruca sativa~^6.25^2.44^8.37^3.57
-~11960~^~1100~^~Carrots, baby, raw~^~CARROTS,BABY,RAW~^^^^^0^~Daucus carota~^6.25^2.78^8.37^3.84
-~11961~^~1100~^~Hearts of palm, canned~^~HEARTS OF PALM,CANNED~^^^^^0^^6.25^2.44^8.37^3.57
-~11962~^~1100~^~Peppers, hot chile, sun-dried~^~PEPPERS,HOT CHILE,SUN-DRIED~^^^~Y~^^0^^6.25^2.44^8.37^3.57
-~11963~^~1100~^~Nopales, raw~^~NOPALES,RAW~^^^~Y~^~Spines and dark spots~^4^~Nopalea cochenillifera~^6.25^2.44^8.37^3.57
-~11964~^~1100~^~Nopales, cooked, without salt~^~NOPALES,CKD,WO/SALT~^^^~Y~^^0^^6.25^2.44^8.37^3.57
-~11965~^~1100~^~Cauliflower, green, raw~^~CAULIFLOWER,GREEN,RAW~^^^~Y~^~Leaf stalks, core and trimmings~^39^~Brassica oleracea (Botrytis group)~^6.25^2.44^8.37^3.57
-~11967~^~1100~^~Cauliflower, green, cooked, no salt added~^~CAULIFLOWER,GRN,CKD,NO SALT ADDED~^^^~Y~^^0^^6.25^2.44^8.37^3.57
-~11968~^~1100~^~Cauliflower, green, cooked, with salt~^~CAULIFLOWER,GRN,CKD,W/ SALT~^^^^^0^^6.25^2.44^8.37^3.57
-~11969~^~1100~^~Broccoli, chinese, cooked~^~BROCCOLI,CHINESE,COOKED~^^^~Y~^^0^^6.25^2.44^8.37^3.57
-~11970~^~1100~^~Cabbage, napa, cooked~^~CABBAGE,NAPA,COOKED~^^^^^0^~Brassica oleracea~^6.25^2.44^8.37^3.57
-~11972~^~1100~^~Lemon grass (citronella), raw~^~LEMON GRASS (CITRONELLA),RAW~^^^^~Tough stem~^35^~Cymbopogon citratus~^6.25^2.44^8.37^3.57
-~11973~^~1100~^~Beans, fava, in pod, raw~^~BEANS,FAVA,IN POD,RAW~^^^^~Ends~^3^~Vicia faba~^6.25^2.44^8.37^3.57
-~11974~^~1100~^~Grape leaves, raw~^~GRAPE LEAVES,RAW~^^^~Y~^~Tough stems~^5^~Vitis vinifera~^6.25^2.44^8.37^3.57
-~11975~^~1100~^~Grape leaves, canned~^~GRAPE LEAVES,CND~^^^^^0^^6.25^2.44^8.37^3.57
-~11976~^~1100~^~Pepper, banana, raw~^~PEPPER,BANANA,RAW~^^^~Y~^~Stem ends, seeds and core~^18^~Capsicum annuum~^6.25^2.44^8.37^3.57
-~11977~^~1100~^~Peppers, serrano, raw~^~PEPPERS,SERRANO,RAW~^^^~Y~^~Stems~^3^~Capsicum annuum~^6.25^2.44^8.37^3.57
-~11978~^~1100~^~Peppers, ancho, dried~^~PEPPERS,ANCHO,DRIED~^^^^^0^^6.25^2.44^8.37^3.57
-~11979~^~1100~^~Peppers, jalapeno, raw~^~PEPPERS,JALAPENO,RAW~^^^~Y~^~Stems and seeds~^8^~Capsicum annuum~^6.25^2.44^8.37^3.57
-~11980~^~1100~^~Peppers, chili, green, canned~^~PEPPERS,CHILI,GRN,CND~^^^^^0^^6.25^2.44^8.37^3.57
-~11981~^~1100~^~Peppers, hungarian, raw~^~PEPPERS,HUNGARIAN,RAW~^^^^~Stems~^12^^6.25^2.44^8.37^3.57
-~11982~^~1100~^~Peppers, pasilla, dried~^~PEPPERS,PASILLA,DRIED~^^^^~Stems~^6^^6.25^2.44^8.37^3.57
-~11983~^~1100~^~Pickles, chowchow, with cauliflower onion mustard, sweet~^~PICKLES,CHOWCHOW,W/CAULIFLOWER ONION MUSTARD,SWT~^^^~Y~^^0^^^^^
-~11984~^~1100~^~Epazote, raw~^~EPAZOTE,RAW~^^^^^0^~Chenopodium ambrosiodes~^6.25^2.44^8.37^3.57
-~11985~^~1100~^~Fireweed, leaves, raw~^~FIREWEED,LEAVES,RAW~^^^^~Stems and flowers~^65^~Epilobium angustifolium~^6.25^2.44^8.37^3.57
-~11986~^~1100~^~Malabar spinach, cooked~^~MALABAR SPINACH,COOKED~^^^^~Stems~^30^^6.25^2.44^8.37^3.57
-~11987~^~1100~^~Mushrooms, oyster, raw~^~MUSHROOMS,OYSTER,RAW~^^^^~Stems~^11^~Pleurotus ostreatus~^6.25^2.62^8.37^3.48
-~11988~^~1100~^~Fungi, Cloud ears, dried~^~FUNGI,CLOUD EARS,DRIED~^^^^^0^^6.25^2.62^8.37^3.48
-~11989~^~1100~^~Mushrooms, straw, canned, drained solids~^~MUSHROOMS,STRAW,CND,DRND SOL~^^^^^0^~Volvariella volvace~^6.25^2.62^8.37^3.48
-~11990~^~1100~^~Wasabi, root, raw~^~WASABI,ROOT,RAW~^^^^~Peel~^23^~Wasabia japonica~^6.25^2.78^8.37^3.84
-~11991~^~1100~^~Yautia (tannier), raw~^~YAUTIA (TANNIER),RAW~^^^^~Peel~^14^~Xanthosoma sagittifolium~^6.25^2.78^8.37^3.84
-~11992~^~1100~^~Mushrooms, white, microwaved~^~MUSHROOMS,WHITE,MICROWAVED~^^^^^0^~Agaricus bisporus~^6.25^2.62^8.37^3.48
-~11993~^~1100~^~Mushrooms, maitake, raw~^~MUSHROOMS,MAITAKE,RAW~^^^^^0^~Grifola frondosa~^6.25^2.62^8.37^3.48
-~11994~^~1100~^~Broccoli, chinese, raw~^~BROCCOLI,CHINESE,RAW~^~gai-lan, kai-lan~^^~Y~^~Base and damaged leaves~^12^~ Brassica oleracea var. alboglabra~^6.25^2.44^8.37^3.57
-~11995~^~1100~^~Fiddlehead ferns, raw~^~FIDDLEHEAD FERNS,RAW~^^^^^^~Matteuccia struthioreris~^6.25^2.44^8.37^3.57
-~11996~^~1100~^~Fiddlehead ferns, frozen, unprepared~^~FIDDLEHEAD FERNS,FRZ,UNPREP~^^^^^0^^6.25^2.44^8.37^3.57
-~11998~^~1100~^~Mushrooms, portabella, exposed to ultraviolet light, raw~^~MUSHROOMS,PORTABELLA,EXPOSED TO ULTRAVIOLET LT,RAW~^~portobella~^^^~Trimmings~^3^^6.25^2.62^8.37^3.48
-~12001~^~1200~^~Seeds, breadfruit seeds, raw~^~BREADFRUIT SEEDS,RAW~^^^^~Shells~^32^~Artocarpus altilis~^5.30^3.47^8.37^4.07
-~12003~^~1200~^~Seeds, breadfruit seeds, boiled~^~BREADFRUIT SEEDS,BOILED~^^^^~Soft shells~^64^^5.30^3.47^8.37^4.07
-~12004~^~1200~^~Seeds, breadnut tree seeds, raw~^~SEEDS,BREADNUT TREE SEEDS,RAW~^^^^^0^~Brosimum alicastrum~^5.30^3.47^8.37^4.07
-~12005~^~1200~^~Seeds, breadnut tree seeds, dried~^~SEEDS,BREADNUT TREE SEEDS,DRIED~^^^^^0^^5.30^3.47^8.37^4.07
-~12006~^~1200~^~Seeds, chia seeds, dried~^~CHIA SEEDS,DRIED~^^^^^0^~Salvia hispanica~^5.30^3.47^8.37^4.07
-~12007~^~1200~^~Seeds, cottonseed flour, partially defatted (glandless)~^~COTTONSEED FLR,PART DEFATTED (GLANDLESS)~^^^^^0^^5.30^3.47^8.37^4.07
-~12008~^~1200~^~Seeds, cottonseed flour, low fat (glandless)~^~COTTONSEED FLR,LOFAT (GLANDLESS)~^^^^^0^^5.30^3.47^8.37^4.07
-~12011~^~1200~^~Seeds, cottonseed meal, partially defatted (glandless)~^~COTTONSEED MEAL,PART DEFATTED (GLANDLESS)~^^^^^0^^5.30^3.47^8.37^4.07
-~12012~^~1200~^~Seeds, hemp seed, hulled~^~SEEDS,HEMP SD,HULLED~^^^^^0^~Cannabis sativa L.~^5.30^3.47^8.37^4.07
-~12013~^~1200~^~Seeds, lotus seeds, dried~^~LOTUS SEEDS,DRIED~^^^^^0^^5.30^3.47^8.37^4.07
-~12014~^~1200~^~Seeds, pumpkin and squash seed kernels, dried~^~PUMPKIN&SQUASH SD KRNLS,DRIED~^~pepitas~^^~Y~^~Hulls~^26^^5.30^3.47^8.37^4.07
-~12016~^~1200~^~Seeds, pumpkin and squash seed kernels, roasted, without salt~^~PUMPKIN&SQUASH SD KRNLS,RSTD,WO/SALT~^~pepitas~^^~Y~^^0^^5.30^3.47^8.37^4.07
-~12021~^~1200~^~Seeds, safflower seed kernels, dried~^~SAFFLOWER SD KRNLS,DRIED~^^^^~Hulls~^49^~Carthamus tinctorius~^5.30^3.47^8.37^4.07
-~12022~^~1200~^~Seeds, safflower seed meal, partially defatted~^~SAFFLOWER SD MEAL,PART DEFATTED~^^^^^0^^5.30^3.47^8.37^4.07
-~12023~^~1200~^~Seeds, sesame seeds, whole, dried~^~SESAME SEEDS,WHOLE,DRIED~^^^~Y~^^0^~Sesamum indicum~^5.30^3.47^8.37^4.07
-~12024~^~1200~^~Seeds, sesame seeds, whole, roasted and toasted~^~SESAME SEEDS,WHL,RSTD&TSTD~^^^^^0^^5.30^3.47^8.37^4.07
-~12029~^~1200~^~Seeds, sesame seed kernels, toasted, without salt added (decorticated)~^~SESAME SD KRNLS,TSTD,WO/SALT (DECORT)~^^^~Y~^^0^^5.30^3.47^8.37^4.07
-~12032~^~1200~^~Seeds, sesame flour, partially defatted~^~SESAME FLR,PART DEFATTED~^^^^^0^^5.30^3.47^8.37^4.07
-~12033~^~1200~^~Seeds, sesame flour, low-fat~^~SESAME FLOUR,LOW-FAT~^^^^^0^^5.30^3.47^8.37^4.07
-~12034~^~1200~^~Seeds, sesame meal, partially defatted~^~SESAME MEAL,PART DEFATTED~^^^^^0^^5.30^3.47^8.37^4.07
-~12036~^~1200~^~Seeds, sunflower seed kernels, dried~^~SUNFLOWER SD KRNLS,DRIED~^^^~Y~^~Hulls~^46^~Helianthus annuus~^5.30^3.47^8.37^4.07
-~12037~^~1200~^~Seeds, sunflower seed kernels, dry roasted, without salt~^~SUNFLOWER SD KRNLS,DRY RSTD,WO/SALT~^^^~Y~^^0^^5.30^3.47^8.37^4.07
-~12038~^~1200~^~Seeds, sunflower seed kernels, oil roasted, without salt~^~SUNFLOWER SD KRNLS,OIL RSTD,WO/SALT~^^^~Y~^^0^^5.30^3.47^8.37^4.07
-~12039~^~1200~^~Seeds, sunflower seed kernels, toasted, without salt~^~SUNFLOWER SD KRNLS,TSTD,WO/SALT~^^^^^0^^5.30^3.47^8.37^4.07
-~12040~^~1200~^~Seeds, sunflower seed butter, without salt~^~SUNFLOWER SD BUTTER,WO/SALT~^^^^^0^^5.30^3.47^8.37^4.07
-~12041~^~1200~^~Seeds, sunflower seed flour, partially defatted~^~SUNFLOWER SD FLR,PART DEFATTED~^^^^^0^^5.30^3.47^8.37^4.07
-~12058~^~1200~^~Nuts, acorns, raw~^~ACORNS,RAW~^^^^~Shells~^38^~Quercus spp.~^5.30^3.47^8.37^4.07
-~12059~^~1200~^~Nuts, acorns, dried~^~ACORNS,DRIED~^^^^~Shells~^38^^5.30^3.47^8.37^4.07
-~12060~^~1200~^~Nuts, acorn flour, full fat~^~ACORN FLOUR,FULL FAT~^^^^^0^^5.30^3.47^8.37^4.07
-~12061~^~1200~^~Nuts, almonds~^~ALMONDS~^^^~Y~^~Shells~^60^~Prunus dulcis~^5.18^3.47^8.37^4.07
-~12062~^~1200~^~Nuts, almonds, blanched~^~ALMONDS,BLANCHED~^^^~Y~^^0^^5.18^3.47^8.37^4.07
-~12063~^~1200~^~Nuts, almonds, dry roasted, without salt added~^~ALMONDS,DRY RSTD,WO/SALT~^~Includes USDA commodity food A255, A263~^^~Y~^^0^^5.18^3.47^8.37^4.07
-~12065~^~1200~^~Nuts, almonds, oil roasted, without salt added~^~ALMONDS,OIL RSTD,WO/SALT~^^^~Y~^^0^^5.18^3.47^8.37^4.07
-~12071~^~1200~^~Nuts, almond paste~^~ALMOND PASTE~^^^~Y~^^0^^5.18^3.47^8.37^4.07
-~12077~^~1200~^~Nuts, beechnuts, dried~^~BEECHNUTS,DRIED~^^^^~Shells~^39^~Fagus spp.~^5.30^3.47^8.37^4.07
-~12078~^~1200~^~Nuts, brazilnuts, dried, unblanched~^~BRAZILNUTS,DRIED,UNBLANCHED~^~brazil nuts~^^~Y~^~Shells~^49^~Bertholletia excelsa~^5.46^3.47^8.37^4.07
-~12084~^~1200~^~Nuts, butternuts, dried~^~BUTTERNUTS,DRIED~^^^^~Shells~^73^~Juglans cinerea~^5.30^3.47^8.37^4.07
-~12085~^~1200~^~Nuts, cashew nuts, dry roasted, without salt added~^~CASHEW NUTS,DRY RSTD,WO/SALT~^^^~Y~^^0^~Anacardium occidentale~^5.30^3.47^8.37^4.07
-~12086~^~1200~^~Nuts, cashew nuts, oil roasted, without salt added~^~CASHEW NUTS,OIL RSTD,WO/SALT~^^^~Y~^^0^^5.30^3.47^8.37^4.07
-~12087~^~1200~^~Nuts, cashew nuts, raw~^~NUTS,CASHEW NUTS,RAW~^^^^^^~Anacardium occidentale~^5.30^3.47^8.37^4.07
-~12088~^~1200~^~Nuts, cashew butter, plain, without salt added~^~CASHEW BUTTER,PLN,WO/SALT~^^^^^0^^5.30^3.47^8.37^4.07
-~12093~^~1200~^~Nuts, chestnuts, chinese, raw~^~CHESTNUTS,CHINESE,RAW~^^^^~Shells~^16^~Castanea mollissima~^5.30^3.47^8.37^4.07
-~12094~^~1200~^~Nuts, chestnuts, chinese, dried~^~CHESTNUTS,CHINESE,DRIED~^^^^^0^^5.30^3.47^8.37^4.07
-~12095~^~1200~^~Nuts, chestnuts, chinese, boiled and steamed~^~CHESTNUTS,CHINESE,BLD&STMD~^^^^^0^^5.30^3.47^8.37^4.07
-~12096~^~1200~^~Nuts, chestnuts, chinese, roasted~^~CHESTNUTS,CHINESE,ROASTED~^^^^~Shells~^25^^5.30^3.47^8.37^4.07
-~12097~^~1200~^~Nuts, chestnuts, european, raw, unpeeled~^~CHESTNUTS,EUROPEAN,RAW,UNPEELED~^^^^~Shells~^26^~Castanea sativa~^5.30^3.47^8.37^4.07
-~12098~^~1200~^~Nuts, chestnuts, european, raw, peeled~^~CHESTNUTS,EUROPEAN,RAW,PEELED~^^^^^0^^5.30^3.47^8.37^4.07
-~12099~^~1200~^~Nuts, chestnuts, european, dried, unpeeled~^~CHESTNUTS,EUROPEAN,DRIED,UNPEELED~^^^^~Shells~^20^^5.30^3.47^8.37^4.07
-~12100~^~1200~^~Nuts, chestnuts, european, dried, peeled~^~CHESTNUTS,EUROPEAN,DRIED,PEELED~^^^^^0^^5.30^3.47^8.37^4.07
-~12101~^~1200~^~Nuts, chestnuts, european, boiled and steamed~^~CHESTNUTS,EUROPEAN,BLD&STMD~^^^^^0^^5.30^3.47^8.37^4.07
-~12104~^~1200~^~Nuts, coconut meat, raw~^~COCONUT MEAT,RAW~^^^~Y~^~Shells (brown), skin, water~^48^~Cocos nucifera~^5.30^3.47^8.37^4.07
-~12108~^~1200~^~Nuts, coconut meat, dried (desiccated), not sweetened~^~COCONUT MEAT,DRIED (DESICCATED),NOT SWTND~^^^~Y~^^0^^5.30^3.47^8.37^4.07
-~12109~^~1200~^~Nuts, coconut meat, dried (desiccated), sweetened, flaked, packaged~^~COCONUT MEAT,DRIED (DESICCATED),SWTND,FLAKED,PACKAGED~^^^~Y~^^0^^5.30^3.47^8.37^4.07
-~12110~^~1200~^~Nuts, coconut meat, dried (desiccated), sweetened, flaked, canned~^~COCONUT MEAT,DRIED (DESICCATED),SWTND,FLAKED,CND~^^^^^0^^5.30^3.47^8.37^4.07
-~12114~^~1200~^~Nuts, coconut meat, dried (desiccated), toasted~^~COCONUT MEAT,DRIED (DESICCATED),TSTD~^^^^^0^^5.30^3.47^8.37^4.07
-~12115~^~1200~^~Nuts, coconut cream, raw (liquid expressed from grated meat)~^~COCONUT CRM,RAW (LIQ EXPRESSED FROM GRATED MEAT)~^^^^^0^^5.30^3.47^8.37^4.07
-~12116~^~1200~^~Nuts, coconut cream, canned, sweetened~^~NUTS,COCNT CRM,CND,SWTND~^^^~Y~^^0^^5.30^3.47^8.37^4.07
-~12117~^~1200~^~Nuts, coconut milk, raw (liquid expressed from grated meat and water)~^~COCONUT MILK,RAW (LIQ EXPRESSED FROM GRATED MEAT&H2O)~^^^~Y~^^0^^5.30^3.47^8.37^4.07
-~12118~^~1200~^~Nuts, coconut milk, canned (liquid expressed from grated meat and water)~^~COCONUT MILK,CND (LIQ EXPRESSED FROM GRATED MEAT&H2O)~^^^^^0^^5.30^3.47^8.37^4.07
-~12119~^~1200~^~Nuts, coconut water (liquid from coconuts)~^~COCONUT H2O (LIQ FROM COCONUTS)~^^^~Y~^^0^^5.30^3.47^8.37^4.07
-~12120~^~1200~^~Nuts, hazelnuts or filberts~^~HAZELNUTS OR FILBERTS~^^^~Y~^~Shells~^59^~Corylus spp.~^5.30^3.47^8.37^4.07
-~12121~^~1200~^~Nuts, hazelnuts or filberts, blanched~^~HAZELNUTS OR FILBERTS,BLANCHED~^^^^^0^^5.30^3.47^8.37^4.07
-~12122~^~1200~^~Nuts, hazelnuts or filberts, dry roasted, without salt added~^~HAZELNUTS OR FILBERTS,DRY RSTD,WO/SALT~^^^^^0^^5.30^3.47^8.37^4.07
-~12127~^~1200~^~Nuts, ginkgo nuts, raw~^~GINKGO NUTS,RAW~^^^^~Shells~^24^~Ginkgo biloba~^5.30^3.47^8.37^4.07
-~12128~^~1200~^~Nuts, ginkgo nuts, dried~^~GINKGO NUTS,DRIED~^^^^~Shells~^24^^5.30^3.47^8.37^4.07
-~12129~^~1200~^~Nuts, ginkgo nuts, canned~^~GINKGO NUTS,CANNED~^^^^~Liquid~^41^^5.30^3.47^8.37^4.07
-~12130~^~1200~^~Nuts, hickorynuts, dried~^~HICKORYNUTS,DRIED~^^^^~Shells~^68^~Carya spp.~^5.30^3.47^8.37^4.07
-~12131~^~1200~^~Nuts, macadamia nuts, raw~^~MACADAMIA NUTS,RAW~^^^^~Shells~^69^~Macadamia integrifolia, M. tetraphylla~^5.30^3.47^8.37^4.07
-~12132~^~1200~^~Nuts, macadamia nuts, dry roasted, without salt added~^~MACADAMIA NUTS,DRY RSTD,WO/SALT~^^^^^0^^5.30^3.47^8.37^4.07
-~12135~^~1200~^~Nuts, mixed nuts, dry roasted, with peanuts, without salt added~^~MIXED NUTS,DRY RSTD,W/PNUTS,WO/SALT~^^^~Y~^^0^^5.30^3.47^8.37^4.07
-~12136~^~1200~^~Nuts, mixed nuts, dry roasted, with peanuts, salt added, PLANTERS pistachio blend~^~NUTS,MXD NUTS,DRY RSTD,W/PNUTS,SALT ADD,PLANTERS PSTACH BLND~^^~Planters- Kraft Foods Group~^^^0^^5.30^3.47^8.37^4.07
-~12137~^~1200~^~Nuts, mixed nuts, oil roasted, with peanuts, without salt added~^~MIXED NUTS,OIL RSTD,W/PNUTS,WO/SALT~^^^^^0^^5.30^3.47^8.37^4.07
-~12138~^~1200~^~Nuts, mixed nuts, oil roasted, without peanuts, without salt added~^~MIXED NUTS,OIL RSTD,WO/PNUTS,WO/SALT~^^^^^0^^5.30^3.47^8.37^4.07
-~12140~^~1200~^~Nuts, formulated, wheat-based, unflavored, with salt added~^~FORMULATED,WHEAT-BASED,UNFLAVORED,W/SALT~^^^^^0^^5.80^3.59^8.37^3.78
-~12141~^~1200~^~Nuts, mixed nuts, dry roasted, with peanuts, salt added, CHOSEN ROASTER~^~NUTS,MXD NUTS,DRY RSTD,W/ PNUTS,SALT ADDED,CHOSEN ROASTER~^^~Chosen Roaster~^^^0^^6.25^3.47^8.37^4.07
-~12142~^~1200~^~Nuts, pecans~^~PECANS~^^^~Y~^~Shells~^47^~Carya illinoinensis~^5.30^3.47^8.37^4.07
-~12143~^~1200~^~Nuts, pecans, dry roasted, without salt added~^~PECANS,DRY RSTD,WO/SALT~^^^^^0^^5.30^3.47^8.37^4.07
-~12144~^~1200~^~Nuts, pecans, oil roasted, without salt added~^~PECANS,OIL RSTD,WO/SALT~^^^^^0^^5.30^3.47^8.37^4.07
-~12145~^~1200~^~Nuts, pilinuts, dried~^~NUTS,PILINUTS,DRIED~^^^^~Shells~^81^~Canarium ovatum~^5.30^3.47^8.37^4.07
-~12147~^~1200~^~Nuts, pine nuts, dried~^~NUTS,PINE NUTS,DRIED~^^^~Y~^~Shells~^23^~Pinus spp.~^5.30^3.47^8.37^4.07
-~12149~^~1200~^~Nuts, pine nuts, pinyon, dried~^~PINE NUTS,PINYON,DRIED~^~pinon~^^^~Shells~^43^~Pinus edulis~^5.30^3.47^8.37^4.07
-~12151~^~1200~^~Nuts, pistachio nuts, raw~^~PISTACHIO NUTS,RAW~^^^^~Shells~^47^~Pistacia vera~^5.30^3.47^8.37^4.07
-~12152~^~1200~^~Nuts, pistachio nuts, dry roasted, without salt added~^~PISTACHIO NUTS,DRY RSTD,WO/SALT~^^^~Y~^~Shells~^47^^5.30^3.47^8.37^4.07
-~12154~^~1200~^~Nuts, walnuts, black, dried~^~WALNUTS,BLACK,DRIED~^^^~Y~^~Shells~^76^~Juglans nigra~^5.30^3.47^8.37^4.07
-~12155~^~1200~^~Nuts, walnuts, english~^~WALNUTS,ENGLISH~^^^~Y~^~Shells~^55^~Juglans regia~^5.30^3.47^8.37^4.07
-~12156~^~1200~^~Nuts, walnuts, glazed~^~NUTS,WALNUTS,GLAZED~^^^^^0^^6.25^^^
-~12157~^~1200~^~Nuts, walnuts, dry roasted, with salt added~^~NUTS,WALNUTS,DRY RSTD,W/ SALT ADDED~^^^~Y~^^0^^^^^
-~12158~^~1200~^~Seeds, breadfruit seeds, roasted~^~BREADFRUIT SEEDS,ROASTED~^^^^^0^^5.30^3.47^8.37^4.07
-~12160~^~1200~^~Seeds, cottonseed kernels, roasted (glandless)~^~COTTONSEED KRNLS,RSTD (GLANDLESS)~^^^^^0^~Gossypium spp.~^5.30^3.47^8.37^4.07
-~12163~^~1200~^~Seeds, pumpkin and squash seeds, whole, roasted, without salt~^~PUMPKIN&SQUASH SEEDS,WHL,RSTD,WO/SALT~^^^^^0^~Cucurbita spp.~^5.30^3.47^8.37^4.07
-~12166~^~1200~^~Seeds, sesame butter, tahini, from roasted and toasted kernels (most common type)~^~SESAME BUTTER,TAHINI,FROM RSTD&TSTD KRNLS (MOST COMMON TYPE)~^^^~Y~^^0^^5.30^3.47^8.37^4.07
-~12167~^~1200~^~Nuts, chestnuts, european, roasted~^~CHESTNUTS,EUROPEAN,RSTD~^^^~Y~^~Shells and skins~^37^^5.30^3.47^8.37^4.07
-~12169~^~1200~^~Seeds, sesame butter, paste~^~SESAME BUTTER,PASTE~^^^^^0^^5.30^3.47^8.37^4.07
-~12170~^~1200~^~Seeds, sesame flour, high-fat~^~SESAME FLOUR,HIGH-FAT~^^^^^0^^5.30^3.47^8.37^4.07
-~12171~^~1200~^~Seeds, sesame butter, tahini, from unroasted kernels (non-chemically removed seed coat)~^~SESAME BUTTER,TAHINI,FROM UNROASTED KRNLS~^^^^^0^^5.30^3.47^8.37^4.07
-~12174~^~1200~^~Seeds, watermelon seed kernels, dried~^~WATERMELON SD KRNLS,DRIED~^^^^~Hard seed coat~^63^~Citrullus lanatus~^5.30^3.47^8.37^4.07
-~12175~^~1200~^~Nuts, chestnuts, japanese, dried~^~CHESTNUTS,JAPANESE,DRIED~^^^^~Shells~^34^^5.30^3.47^8.37^4.07
-~12176~^~1200~^~Nuts, coconut milk, frozen (liquid expressed from grated meat and water)~^~COCONUT MILK,FRZ (LIQ EXPRESSED FROM GRATED MEAT&H2O)~^^^^^0^^5.30^3.47^8.37^4.07
-~12177~^~1200~^~Nuts, coconut meat, dried (desiccated), creamed~^~COCONUT MEAT,DRIED (DESICCATED),CRMD~^^^^^0^^5.30^3.47^8.37^4.07
-~12179~^~1200~^~Nuts, coconut meat, dried (desiccated), sweetened, shredded~^~COCONUT MEAT,DRIED (DESICCATED),SWTND,SHREDDED~^^^~Y~^^0^^5.30^3.47^8.37^4.07
-~12193~^~1200~^~Seeds, sisymbrium sp. seeds, whole, dried~^~SISYMBRIUM SP. SEEDS,WHL,DRIED~^^^^^0^~Sisymbrium spp.~^5.30^3.47^8.37^4.07
-~12195~^~1200~^~Nuts, almond butter, plain, without salt added~^~ALMOND BUTTER,PLN,WO/SALT~^^^^^0^^5.18^3.47^8.37^4.07
-~12198~^~1200~^~Seeds, sesame butter, tahini, from raw and stone ground kernels~^~SESAME BUTTER,TAHINI,FROM RAW&STONE GROUND KRNLS~^^^^^0^^5.30^3.47^8.37^4.07
-~12200~^~1200~^~Nuts, formulated, wheat-based, all flavors except macadamia, without salt~^~FORMULATED,WHEAT-BASED,ALL FLAVORS XCPT MACADAMIA,WO/SALT~^^^^^0^^5.80^3.59^8.37^3.78
-~12201~^~1200~^~Seeds, sesame seed kernels, dried (decorticated)~^~SESAME SD KRNLS,DRIED (DECORT)~^^^~Y~^^0^^5.30^3.47^8.37^4.07
-~12202~^~1200~^~Nuts, chestnuts, japanese, raw~^~CHESTNUTS,JAPANESE,RAW~^^^^~Shells~^34^~Castanea crenata~^5.30^3.47^8.37^4.07
-~12203~^~1200~^~Nuts, chestnuts, japanese, boiled and steamed~^~CHESTNUTS,JAPANESE,BLD&STMD~^^^^^0^^5.30^3.47^8.37^4.07
-~12204~^~1200~^~Nuts, chestnuts, japanese, roasted~^~CHESTNUTS,JAPANESE,RSTD~^^^^^0^^5.30^3.47^8.37^4.07
-~12205~^~1200~^~Seeds, lotus seeds, raw~^~LOTUS SEEDS,RAW~^^^^~Shells~^47^~Nelumbo spp.~^5.30^3.47^8.37^4.07
-~12206~^~1200~^~Nuts, almonds, honey roasted, unblanched~^~ALMONDS,HONEY RSTD,UNBLANCHED~^^^^^0^^5.18^3.47^8.37^4.07
-~12220~^~1200~^~Seeds, flaxseed~^~SEEDS,FLAXSEED~^^^~Y~^^0^~Linum usitatissimum~^5.30^3.47^8.37^4.07
-~12516~^~1200~^~Seeds, pumpkin and squash seed kernels, roasted, with salt added~^~PUMPKIN&SQUASH SD KRNLS,RSTD,W/SALT~^~pepitas~^^~Y~^^0^^5.30^3.47^8.37^4.07
-~12529~^~1200~^~Seeds, sesame seed kernels, toasted, with salt added (decorticated)~^~SESAME SD KRNLS,TSTD,W/SALT (DECORT)~^^^~Y~^^0^^5.30^3.47^8.37^4.07
-~12536~^~1200~^~Seeds, sunflower seed kernels from shell, dry roasted, with salt added~^~SEEDS,SUNFLOWER SD KRNLS FROM SHELL,DRY RSTD,W/ SALT ADDED~^^^^~Hulls~^46^^5.30^3.47^8.37^4.07
-~12537~^~1200~^~Seeds, sunflower seed kernels, dry roasted, with salt added~^~SUNFLOWER SD KRNLS,DRY RSTD,W/SALT~^^^~Y~^^0^^5.30^3.47^8.37^4.07
-~12538~^~1200~^~Seeds, sunflower seed kernels, oil roasted, with salt added~^~SUNFLOWER SD KRNLS,OIL RSTD,W/SALT~^^^~Y~^^0^^5.30^3.47^8.37^4.07
-~12539~^~1200~^~Seeds, sunflower seed kernels, toasted, with salt added~^~SUNFLOWER SD KRNLS,TSTD,W/SALT~^^^^^0^^5.30^3.47^8.37^4.07
-~12540~^~1200~^~Seeds, sunflower seed butter, with salt added (Includes foods for USDA's Food Distribution Program)~^~SUNFLOWER SD BUTTER,W/SALT~^^^^^0^^5.30^3.47^8.37^4.07
-~12563~^~1200~^~Nuts, almonds, dry roasted, with salt added~^~ALMONDS,DRY RSTD,W/SALT~^^^~Y~^^0^^5.18^3.47^8.37^4.07
-~12565~^~1200~^~Nuts, almonds, oil roasted, with salt added~^~ALMONDS,OIL RSTD,W/SALT~^^^~Y~^^0^^5.18^3.47^8.37^4.07
-~12567~^~1200~^~Nuts, almonds, oil roasted, with salt added, smoke flavor~^~NUTS,ALMONDS,OIL RSTD,W/ SALT ADDED,SMOKE FLAVOR~^^^^^0^^^^^
-~12585~^~1200~^~Nuts, cashew nuts, dry roasted, with salt added~^~CASHEW NUTS,DRY RSTD,W/SALT~^^^~Y~^^0^^5.30^3.47^8.37^4.07
-~12586~^~1200~^~Nuts, cashew nuts, oil roasted, with salt added~^~CASHEW NUTS,OIL RSTD,W/SALT~^^^~Y~^^0^^5.30^3.47^8.37^4.07
-~12588~^~1200~^~Nuts, cashew butter, plain, with salt added~^~CASHEW BUTTER,PLN,W/SALT~^^^~Y~^^0^^5.30^3.47^8.37^4.07
-~12632~^~1200~^~Nuts, macadamia nuts, dry roasted, with salt added~^~MACADAMIA NUTS,DRY RSTD,W/SALT~^^^~Y~^^0^^5.30^3.47^8.37^4.07
-~12635~^~1200~^~Nuts, mixed nuts, dry roasted, with peanuts, with salt added~^~MIXED NUTS,DRY RSTD,W/PNUTS,W/SALT~^^^~Y~^^0^^5.30^3.47^8.37^4.07
-~12637~^~1200~^~Nuts, mixed nuts, oil roasted, with peanuts, with salt added~^~NUTS,MXD NUTS,OIL RSTD,W/ PNUTS,W/ SALT ADDED~^^^~Y~^^0^^5.30^3.47^8.37^4.07
-~12638~^~1200~^~Nuts, mixed nuts, oil roasted, without peanuts, with salt added~^~NUTS,MXD NUTS,OIL RSTD,WO/ PNUTS,W/ SALT ADDED~^^^~Y~^^0^^5.30^3.47^8.37^4.07
-~12643~^~1200~^~Nuts, pecans, dry roasted, with salt added~^~PECANS,DRY RSTD,W/SALT~^^^^^0^^5.30^3.47^8.37^4.07
-~12644~^~1200~^~Nuts, pecans, oil roasted, with salt added~^~PECANS,OIL RSTD,W/SALT~^^^^^0^^5.30^3.47^8.37^4.07
-~12652~^~1200~^~Nuts, pistachio nuts, dry roasted, with salt added~^~PISTACHIO NUTS,DRY RSTD,W/SALT~^^^~Y~^~Shells~^47^^5.30^3.47^8.37^4.07
-~12663~^~1200~^~Seeds, pumpkin and squash seeds, whole, roasted, with salt added~^~PUMPKIN&SQUASH SEEDS,WHL,RSTD,W/SALT~^^^^^0^^5.30^3.47^8.37^4.07
-~12665~^~1200~^~Nuts, almonds, oil roasted, lightly salted~^~NUTS,ALMONDS,OIL RSTD,LIGHTLY SALTED~^^^^^0^^^^^
-~12695~^~1200~^~Nuts, almond butter, plain, with salt added~^~ALMOND BUTTER,PLN,W/SALT~^^^~Y~^^0^^5.18^3.47^8.37^4.07
-~12698~^~1200~^~Seeds, sesame butter, tahini, type of kernels unspecified~^~SESAME BUTTER,TAHINI,KRNLS UNSPEC~^^^^^0^^5.30^3.47^8.37^4.07
-~12737~^~1200~^~Nuts, mixed nuts, oil roasted, with peanuts, lightly salted~^~NUTS,MXD NUTS,OIL RSTD,W/ PNUTS,LIGHTLY SALTED~^^^^^0^^5.30^3.47^8.37^4.07
-~12738~^~1200~^~Nuts, mixed nuts, oil roasted, without peanuts, lightly salted~^~NUTS,MXD NUTS,OIL RSTD,WO/ PNUTS,LIGHTLY SALTED~^^^^^0^^^^^
-~13000~^~1300~^~Beef, grass-fed, strip steaks, lean only, raw~^~BEEF,GRASS-FED,STRIP STEAKS,LN,RAW~^^^^~23% Bone and connective tissue, 11% Separable fat~^34^^^^^
-~13001~^~1300~^~Beef, carcass, separable lean and fat, choice, raw~^~BEEF,CARCASS,LN&FAT,CHOIC,RAW~^^^^~Bone 19%~^19^~Bos taurus~^6.25^4.27^9.02^3.87
-~13002~^~1300~^~Beef, carcass, separable lean and fat, select, raw~^~BEEF,CARCASS,LN&FAT,SEL,RAW~^^^^~Bone 20%~^20^^6.25^4.27^9.02^3.87
-~13019~^~1300~^~Beef, retail cuts, separable fat, raw~^~BEEF,RTL CUTS,FAT,RAW~^^^^^0^^6.25^4.27^9.02^3.87
-~13020~^~1300~^~Beef, retail cuts, separable fat, cooked~^~BEEF,RTL CUTS,FAT,CKD~^^^~Y~^^0^^6.25^4.27^9.02^3.87
-~13023~^~1300~^~Beef, brisket, whole, separable lean only, all grades, raw~^~BEEF,BRISKET,WHL,LN,ALL GRDS,RAW~^^^^~Connective tissue 0.3%, separable fat 30%~^30^^6.25^4.27^9.02^3.87
-~13047~^~1300~^~Beef, grass-fed, ground, raw~^~BEEF,GRASS-FED,GROUND,RAW~^~Hamburger~^^^^0^^6.25^4.27^9.02^3.87
-~13055~^~1300~^~Beef, brisket, flat half, separable lean and fat, trimmed to 1/8" fat, select, cooked, braised~^~BEEF,BRISKET,FLAT HALF,LN & FAT,1/8" FAT,SEL,CKD,BRSD~^~URMIS #1623~^^^^0^^6.25^4.27^9.02^3.87
-~13065~^~1300~^~Beef, flank, steak, separable lean and fat, trimmed to 0" fat, choice, raw~^~BEEF,FLANK,STEAK,LN & FAT,0" FAT,CHOIC,RAW~^~URMIS #2399~^^~Y~^^0^^6.25^4.27^9.02^3.87
-~13066~^~1300~^~Beef, flank, steak, separable lean and fat, trimmed to 0" fat, choice, cooked, braised~^~BEEF,FLANK,STEAK,LN & FAT,0" FAT,CHOIC,CKD,BRSD~^^^^~Connective tissue~^2^^6.25^4.27^9.02^3.87
-~13067~^~1300~^~Beef, flank, steak, separable lean and fat, trimmed to 0" fat, choice, cooked, broiled~^~BEEF,FLANK,STEAK,LN & FAT,0" FAT,CHOIC,CKD,BRLD~^~URMIS #2399~^^^^0^^6.25^4.27^9.02^3.87
-~13068~^~1300~^~Beef, flank, steak, separable lean only, trimmed to 0" fat, choice, raw~^~BEEF,FLANK,STEAK,LN,0" FAT,CHOIC,RAW~^~URMIS #2399~^^~Y~^~Bone and connective tissue, 0.2%, separable fat, 3.6%~^4^^6.25^4.27^9.02^3.87
-~13069~^~1300~^~Beef, flank, steak, separable lean only, trimmed to 0" fat, choice, cooked, braised~^~BEEF,FLANK,STEAK,LN,0" FAT,CHOIC,CKD,BRSD~^~URMIS #2399~^^~Y~^~Connective tissue, 2%, separable fat, 6%~^8^^6.25^4.27^9.02^3.87
-~13070~^~1300~^~Beef, flank, steak, separable lean only, trimmed to 0" fat, choice, cooked, broiled~^~BEEF,FLANK,STEAK,LN,0" FAT,CHOIC,CKD,BRLD~^~URMIS #2399~^^^~Separable fat~^2^^6.25^4.27^9.02^3.87
-~13095~^~1300~^~Beef, rib, eye, small end (ribs 10-12), separable lean and fat, trimmed to 0" fat, choice, raw~^~BEEF,RIB,EYE,SML END (RIBS 10-12),LN&FAT,0"FAT,CHOIC,RAW~^~ribeye, Delmonico~^^^~Connective tissue~^4^^6.25^4.27^9.02^3.87
-~13096~^~1300~^~Beef, rib, eye, small end (ribs 10-12), separable lean and fat, trimmed to 0" fat, choice, cooked, broiled~^~BF,RIB,EYE,SML END (RIB 10-12),LN & FT,0" FAT,CHOIC,CKD,BRLD~^~ribeye~^^^~Bone and connective tissue~^8^^6.25^4.27^9.02^3.87
-~13097~^~1300~^~Beef, rib, eye, small end (ribs 10-12), separable lean only, trimmed to 0" fat, choice, raw~^~BEEF,RIB,EYE,SML END (RIBS 10-12),LN,0"FAT,CHOIC,RAW~^~ribeye, Delmonico~^^^~Connective tissue 4%, separable fat 21%~^25^^6.25^4.27^9.02^3.87
-~13098~^~1300~^~Beef, rib, eye, small end (ribs 10-12), separable lean only, trimmed to 0" fat, choice, cooked, broiled~^~BEEF,RIB,EYE,SML END (RIBS 10-12),LN,0"FAT,CHOIC,CKD,BRLD~^~ribeye, Delmonico~^^^~Bone and connective tissue 7%, sep fat 12%~^19^^6.25^4.27^9.02^3.87
-~13147~^~1300~^~Beef, rib, shortribs, separable lean and fat, choice, raw~^~BEEF,RIB,SHORTRIBS,LN&FAT,CHOIC,RAW~^~URMIS #2074~^^^~Bone~^27^^6.25^4.27^9.02^3.87
-~13148~^~1300~^~Beef, rib, shortribs, separable lean and fat, choice, cooked, braised~^~BEEF,RIB,SHORTRIBS,LN&FAT,CHOIC,CKD,BRSD~^~URMIS #2074~^^~Y~^~Bone~^29^^6.25^4.27^9.02^3.87
-~13149~^~1300~^~Beef, rib, shortribs, separable lean only, choice, raw~^~BEEF,RIB,SHORTRIBS,LN ONLY,CHOIC,RAW~^~URMIS #2074~^^^~Bone 27%, separable fat 32%~^59^^6.25^4.27^9.02^3.87
-~13150~^~1300~^~Beef, rib, shortribs, separable lean only, choice, cooked, braised~^~BEEF,RIB,SHORTRIBS,LN,CHOIC,CKD,BRSD~^~URMIS #2074~^^~Y~^~Bone, 29%, separable fat, 33%~^62^^6.25^4.27^9.02^3.87
-~13156~^~1300~^~Beef, round, full cut, separable lean only, trimmed to 1/4" fat, choice, cooked, broiled~^~BEEF,RND,FULL CUT,LN,1/4"FAT,CHOIC,CKD,BRLD~^^^^~8% bone, 9% separable fat~^17^^6.25^4.27^9.02^3.87
-~13158~^~1300~^~Beef, round, full cut, separable lean only, trimmed to 1/4" fat, select, cooked, broiled~^~BEEF,RND,FULL CUT,LN,1/4"FAT,SEL,CKD,BRLD~^^^^~Bone, 8%, separable fat, 9%~^17^^6.25^4.27^9.02^3.87
-~13165~^~1300~^~Beef, brisket, flat half, separable lean and fat, trimmed to 0" fat, choice, cooked, braised~^~BEEF,BRISKET,FLAT HALF,LN & FAT,0" FAT,CHOIC,CKD,BRSD~^~URMIS #2438~^^^^0^^6.25^4.27^9.02^3.87
-~13227~^~1300~^~Beef, shank crosscuts, separable lean only, trimmed to 1/4" fat, choice, raw~^~BEEF,SHANK CROSSCUTS,LN,1/4"FAT,CHOIC,RAW~^^^^~Bone 34%, separable fat 6%~^40^^6.25^4.27^9.02^3.87
-~13228~^~1300~^~Beef, shank crosscuts, separable lean only, trimmed to 1/4" fat, choice, cooked, simmered~^~BEEF,SHANK CROSSCUTS,LN,1/4"FAT,CHOIC,CKD,SIMMRD~^^^^~Bone, 37%, separable fat, 8%~^45^^6.25^4.27^9.02^3.87
-~13231~^~1300~^~Beef, short loin, porterhouse steak, separable lean only, trimmed to 1/8" fat, choice, raw~^~BEEF,SHRT LOIN,PRTRHS STEAK,LN,1/8" FAT,CHOIC,RAW~^~Porterhouse Steak, URMIS # 2145~^^^~Bone and heavy connective tissue, 23%, separable fat, 12%~^35^^6.25^4.27^9.02^3.87
-~13232~^~1300~^~Beef, short loin, porterhouse steak, separable lean only, trimmed to 1/8" fat, choice, cooked, grilled~^~BEEF,SHRT LOIN,PRTRHS STEAK,LN,1/8" FAT,CHOIC,CKD,GRILLED~^~Porterhouse Steak, URMIS # 2145~^^^~Bone and connective tissue 26%, separable fat, 12%~^38^^6.25^4.27^9.02^3.87
-~13235~^~1300~^~Beef, short loin, t-bone steak, bone-in, separable lean only, trimmed to 1/8" fat, choice, raw~^~BEEF,SHRT LOIN,T-BONE STEAK,BONE-IN,LN,1/8" FAT,CHOIC,RAW~^~T-Bone Steak, URMIS # 2184~^^^~Bone and heavy connective tissue, 25%, separable fat, 14%~^39^^6.25^4.27^9.02^3.87
-~13236~^~1300~^~Beef, short loin, t-bone steak, bone-in, separable lean only, trimmed to 1/8" fat, choice, cooked, grilled~^~BEEF,SHRT LN,T-BONE STK,BN-IN,LN,1/8" FAT,CHOIC,CKD,GRILLD~^~T-Bone Steak, URMIS # 2184~^^^~Bone and connective tissue, 28%, separable fat, 14%~^42^^6.25^4.27^9.02^3.87
-~13284~^~1300~^~Beef, rib eye, small end (ribs 10-12), separable lean only, trimmed to 0" fat, select, raw~^~BEEF,RIB EYE,SML END (RIBS 10-12),LN,0" FAT,SEL,RAW~^^^^~Bone and connective tissue and separable fat~^37^^^^^
-~13285~^~1300~^~Beef, chuck, under blade pot roast, boneless, separable lean only, trimmed to 0" fat, all grades, cooked, braised~^~BEEF,CHUCK,UND BL POT RST,BNLESS,LN,0" FAT,ALL GRDS,CKD~^~URMIS #1151, Beef, Chuck, Under Blade Pot Roast~^^^~Connective tissue 4%, seam fat 20%~^24^^6.25^^^
-~13293~^~1300~^~Beef, chuck, under blade pot roast or steak, boneless, separable lean only, trimmed to 0" fat, all grades, raw~^~BEEF,CHK,UND BL POT RST,BNLESS,LN,0" FAT,ALL GRDS,CKD, BRSD~^~Beef, Chuck, Under Blade Pot Roast or Steak, URMIS #1151, URMIS #1158~^^^~Connective tissue 6%, seam fat 13%~^19^^6.25^^^
-~13294~^~1300~^~Beef, chuck, under blade pot roast or steak, boneless, separable lean only, trimmed to 0" fat, choice, raw~^~BEEF,CHCK,UND BL POT RST OR STEAK,BNLESS,LN,0" FAT,CHOIC,RAW~^~URMIS #1151, URMIS #1158, Beef, Chuck, Under Blade Pot Roast or Steak~^^^~Connective tissue 6%, seam fat 14%~^20^^6.25^^^
-~13317~^~1300~^~Beef, ground, patties, frozen, cooked, broiled~^~BEEF,GROUND,PATTIES,FRZ,CKD,BRLD~^~hamburger~^^~Y~^^0^^6.25^4.27^9.02^3.87
-~13318~^~1300~^~Beef, variety meats and by-products, brain, raw~^~BEEF,VAR MEATS&BY-PRODUCTS,BRAIN,RAW~^^^^~Blood clots and membranes 22.45%~^22^^6.25^4.27^9.02^3.87
-~13319~^~1300~^~Beef, variety meats and by-products, brain, cooked, pan-fried~^~BEEF,VAR MEATS&BY-PRODUCTS,BRAIN,CKD,PAN-FRIED~^^^^^0^^6.25^4.27^9.02^3.87
-~13320~^~1300~^~Beef, variety meats and by-products, brain, cooked, simmered~^~BEEF,VAR MEATS&BY-PRODUCTS,BRAIN,CKD,SIMMRD~^^^~Y~^^0^^6.25^4.27^9.02^3.87
-~13321~^~1300~^~Beef, variety meats and by-products, heart, raw~^~BEEF,VAR MEATS&BY-PRODUCTS,HEART,RAW~^^^^~Fat, veins and connective tissue~^29^^6.25^4.27^9.02^3.87
-~13322~^~1300~^~Beef, variety meats and by-products, heart, cooked, simmered~^~BEEF,VAR MEATS&BY-PRODUCTS,HEART,CKD,SIMMRD~^^^~Y~^~Fat and valves, 16.39%~^16^^6.25^4.27^9.02^3.87
-~13323~^~1300~^~Beef, variety meats and by-products, kidneys, raw~^~BEEF,VAR MEATS&BY-PRODUCTS,KIDNEYS,RAW~^^^^~Fat, veins and connective tissue~^16^^6.25^4.27^9.02^3.87
-~13324~^~1300~^~Beef, variety meats and by-products, kidneys, cooked, simmered~^~BEEF,VAR MEATS&BY-PRODUCTS,KIDNEYS,CKD,SIMMRD~^^^~Y~^^0^^6.25^4.27^9.02^3.87
-~13325~^~1300~^~Beef, variety meats and by-products, liver, raw~^~BEEF,VAR MEATS&BY-PRODUCTS,LIVER,RAW~^^^^^0^^6.25^4.27^9.02^3.87
-~13326~^~1300~^~Beef, variety meats and by-products, liver, cooked, braised~^~BEEF,VAR MEATS & BY-PRODUCTS,LIVER,CKD,BRSD~^^^~Y~^^0^^6.25^4.27^9.02^3.87
-~13327~^~1300~^~Beef, variety meats and by-products, liver, cooked, pan-fried~^~BEEF, VAR MEATS&BY-PRODUCTS, LIVER, CKD, PAN-FRIED~^^^~Y~^^0^^6.25^4.27^9.02^3.87
-~13328~^~1300~^~Beef, variety meats and by-products, lungs, raw~^~BEEF,VAR MEATS&BY-PRODUCTS,LUNGS,RAW~^^^^~Blood clots and membranes~^24^^6.25^4.27^9.02^3.87
-~13329~^~1300~^~Beef, variety meats and by-products, lungs, cooked, braised~^~BEEF,VAR MEATS&BY-PRODUCTS,LUNGS,CKD,BRSD~^^^^^0^^6.25^4.27^9.02^3.87
-~13330~^~1300~^~Beef, variety meats and by-products, mechanically separated beef, raw~^~BEEF,VAR MEATS&BY-PRODUCTS,MECHANICALLY SEPARATED BF,RAW~^^^^^0^^6.25^4.27^9.02^3.87
-~13331~^~1300~^~Beef, variety meats and by-products, pancreas, raw~^~BEEF,VAR MEATS&BY-PRODUCTS,PANCREAS,RAW~^^^^^0^^6.25^4.27^9.02^3.87
-~13332~^~1300~^~Beef, variety meats and by-products, pancreas, cooked, braised~^~BEEF,VAR MEATS&BY-PRODUCTS,PANCREAS,CKD,BRSD~^^^^^0^^6.25^4.27^9.02^3.87
-~13333~^~1300~^~Beef, variety meats and by-products, spleen, raw~^~BEEF,VAR MEATS&BY-PRODUCTS,SPLEEN,RAW~^^^^^0^^6.25^4.27^9.02^3.87
-~13334~^~1300~^~Beef, variety meats and by-products, spleen, cooked, braised~^~BEEF,VAR MEATS&BY-PRODUCTS,SPLEEN,CKD,BRSD~^^^^^0^^6.25^4.27^9.02^3.87
-~13335~^~1300~^~Beef, variety meats and by-products, suet, raw~^~BEEF,VAR MEATS & BY-PRODUCTS,SUET,RAW~^^^^^0^^6.25^4.27^9.02^3.87
-~13337~^~1300~^~Beef, variety meats and by-products, thymus, raw~^~BEEF,VAR MEATS&BY-PRODUCTS,THYMUS,RAW~^^^^^0^^6.25^4.27^9.02^3.87
-~13338~^~1300~^~Beef, variety meats and by-products, thymus, cooked, braised~^~BEEF,VAR MEATS&BY-PRODUCTS,THYMUS,CKD,BRSD~^^^^^0^^6.25^4.27^9.02^3.87
-~13339~^~1300~^~Beef, variety meats and by-products, tongue, raw~^~BEEF,VAR MEATS&BY-PRODUCTS,TONGUE,RAW~^^^^~Cartilage and connective tissue~^16^^6.25^4.27^9.02^4.11
-~13340~^~1300~^~Beef, variety meats and by-products, tongue, cooked, simmered~^~BEEF,VAR MEATS&BY-PRODUCTS,TONGUE,CKD,SIMMRD~^^^~Y~^~Skin and connective tissue, 5.74%; Cartilage and connective tissue,10.35%~^16^^6.25^4.27^9.02^3.87
-~13341~^~1300~^~Beef, variety meats and by-products, tripe, raw~^~BEEF,VAR MEATS&BY-PRODUCTS,TRIPE,RAW~^^^~Y~^^0^^6.25^4.27^9.02^3.87
-~13342~^~1300~^~Beef, sandwich steaks, flaked, chopped, formed and thinly sliced, raw~^~BEEF,SNDWCH STEAKS,FLAKED,CHOPD,FORMED & THINLY SLICED,RAW~^^^~Y~^^0^^^4.00^9.00^4.00
-~13343~^~1300~^~Beef, brisket, flat half, separable lean only, trimmed to 0" fat, choice, cooked, braised~^~BEEF,BRISKET,FLAT HALF,LN,0" FAT,CHOIC,CKD,BRSD~^~URMIS #2438~^^^~Separable fat~^2^^6.25^4.27^9.02^3.87
-~13344~^~1300~^~Beef, cured, breakfast strips, raw or unheated~^~BEEF,CURED,BRKFST STRIPS,RAW OR UNHTD~^^^^^0^^6.25^4.27^9.02^3.87
-~13345~^~1300~^~Beef, cured, breakfast strips, cooked~^~BEEF,CURED,BRKFST STRIPS,CKD~^^^~Y~^^0^^6.25^4.27^9.02^3.87
-~13346~^~1300~^~Beef, cured, corned beef, brisket, raw~^~BEEF,CURED,CORNED BF,BRISKET,RAW~^^^^~Connective tissue~^1^^6.25^4.27^9.02^3.87
-~13347~^~1300~^~Beef, cured, corned beef, brisket, cooked~^~BEEF,CURED,CORNED BF,BRISKET,CKD~^^^~Y~^~Connective tissue~^1^^6.25^4.27^9.02^3.87
-~13348~^~0700~^~Beef, cured, corned beef, canned~^~BEEF,CURED,CORNED BF,CND~^^^~Y~^^0^^6.25^4.27^9.02^3.87
-~13349~^~1300~^~Beef, chuck, under blade pot roast or steak, boneless, separable lean only, trimmed to 0" fat, select, raw~^~BEEF,CHK,UND BLADE POT RST OR STK,BNLESS,LN,0" FAT,SEL, RAW~^~URMIS #1151, URMIS #1158, Beef, Chuck, Under Blade Pot Roast or Steak~^^^~Connective tissue 6%, seam fat 13%~^19^^6.25^^^
-~13350~^~0700~^~Beef, cured, dried~^~BEEF,CURED,DRIED~^^^~Y~^^0^^6.25^4.00^9.00^4.00
-~13351~^~1300~^~Beef, chuck, under blade center steak, boneless, Denver Cut, separable lean only, trimmed to 0" fat, all grades, cooked, grilled~^~BEEF,CHUCK,UNDER BLADE CNTR STEAK,BNLESS,DENVER CUT,LN,0" FA~^~Beef, Chuck, Denver Cut (Serratus Ventralis Steaks), URMIS #1098~^^^~Connective tissue 1%, seam fat 2%~^3^^6.25^^^
-~13352~^~1300~^~Beef, chuck, under blade center steak, boneless, Denver Cut, separable lean only, trimmed to 0" fat, choice, cooked, grilled~^~BEEF,CHUCK,UNDER BLADE CNTR STEAK,BNLESS,DENVER CUT,LN,0" FA~^~Beef, Chuck, Denver Cut (Serratus Ventralis Steaks), URMIS #1098~^^^~Connective tissue 1%, seam fat 2%~^3^^6.25^^^
-~13353~^~0700~^~Beef, cured, luncheon meat, jellied~^~BEEF,CURED,LUNCHEON MEAT,JELLIED~^^^^^0^^6.25^4.27^9.02^3.87
-~13354~^~1300~^~Beef, chuck, under blade center steak, boneless, Denver Cut, separable lean only, trimmed to 0" fat, select, cooked, grilled~^~BEEF,CHK,UND BL CNTR STK,BNLESS,DEN CUT,LN,0" FA, SEL, CKD~^~Beef, Chuck, Denver Cut (Serratus Ventralis Steaks), URMIS #1098~^^^~Connective tissue 1%, seam fat 1%~^2^^6.25^^^
-~13355~^~0700~^~Beef, cured, pastrami~^~BEEF,CURED,PASTRAMI~^^^~Y~^^0^^6.25^4.27^9.02^3.87
-~13356~^~1300~^~Beef, chuck, under blade center steak, boneless, Denver Cut, separable lean only, trimmed to 0" fat, all grades, raw~^~BEEF,CHK,UNDBL CNTR STK,BNLESS,DENCUT,LN,0" FA, ALL GRD, RAW~^~Beef, Chuck, Denver Cut (Serratus Ventralis Steaks), URMIS #1098~^^^~Connective tissue 2%, seam fat 3%~^5^^6.25^^^
-~13357~^~0700~^~Sausage, beef, cured, cooked, smoked~^~SAUSAGE,BF,CURED,CKD,SMOKED~^^^^^0^^6.25^4.27^9.02^3.68
-~13358~^~0700~^~Beef, chopped, cured, smoked~^~BEEF,CHOPD,CURED,SMOKED~^^^^^0^^6.25^4.27^9.02^3.68
-~13359~^~1300~^~Beef, chuck, under blade center steak, boneless, Denver Cut, separable lean only, trimmed to 0" fat, choice, raw~^~BEEF,CHK,UND BLCNTR STK,BNLESS,DEN CUT,LN,0" FA, CHOICE, RAW~^~Beef, Chuck, Denver Cut (Serratus Ventralis Steaks), URMIS #1098~^^^~Connective tissue 1%, seam fat 3%~^4^^6.25^^^
-~13361~^~1300~^~Beef, composite of trimmed retail cuts, separable lean and fat, trimmed to 0" fat, all grades, cooked~^~BEEF,COMP OF RTL CUTS,LN&FAT,0"FAT,ALL GRDS,CKD~^^^~Y~^~No component data available~^^^6.25^4.27^9.02^3.87
-~13362~^~1300~^~Beef, composite of trimmed retail cuts, separable lean and fat, trimmed to 0" fat, choice, cooked~^~BEEF,COMP OF RTL CUTS,LN&FAT,0"FAT,CHOIC,CKD~^^^^~No component data available~^^^6.25^4.27^9.02^3.87
-~13363~^~1300~^~Beef, composite of trimmed retail cuts, separable lean and fat, trimmed to 0" fat, select, cooked~^~BEEF,COMP OF RTL CUTS,LN&FAT,0"FAT,SEL,CKD~^^^^~No component data available~^^^6.25^4.27^9.02^3.87
-~13364~^~1300~^~Beef, composite of trimmed retail cuts, separable lean only, trimmed to 0" fat, all grades, cooked~^~BEEF,COMP OF RTL CUTS,LN,0" FAT,ALL GRDS,CKD~^^^~Y~^~No component data available~^^^6.25^4.27^9.02^3.87
-~13365~^~1300~^~Beef, composite of trimmed retail cuts, separable lean only, trimmed to 0" fat, choice, cooked~^~BEEF,COMP OF RTL CUTS,LN,0"FAT,CHOIC,CKD~^^^^~No component data available~^^^6.25^4.27^9.02^3.87
-~13366~^~1300~^~Beef, composite of trimmed retail cuts, separable lean only, trimmed to 0" fat, select, cooked~^~BEEF,COMP OF RTL CUTS,LN,0"FAT,SEL,CKD~^^^^~Component data unavailable~^^^6.25^4.27^9.02^3.87
-~13367~^~1300~^~Beef, brisket, whole, separable lean and fat, trimmed to 0" fat, all grades, cooked, braised~^~BEEF,BRISKET,WHL,LN&FAT,0"FAT,ALL GRDS,CKD,BRSD~^^^~Y~^~Connective tissue~^1^^6.25^4.27^9.02^3.87
-~13368~^~1300~^~Beef, brisket, whole, separable lean only, trimmed to 0" fat, all grades, cooked, braised~^~BEEF,BRISKET,WHL,LN,0"FAT,ALL GRDS,CKD,BRSD~^^^~Y~^~1% connective tissue, 16% separable fat~^17^^6.25^4.27^9.02^3.87
-~13369~^~1300~^~Beef, brisket, flat half, separable lean and fat, trimmed to 0" fat, all grades, cooked, braised~^~BEEF,BRISKET,FLAT HALF,LN&FAT,0"FAT,ALL GRDS,CKD,BRSD~^^^^^0^^6.25^4.27^9.02^3.87
-~13370~^~1300~^~Beef, brisket, flat half, separable lean only, trimmed to 0" fat, all grades, cooked, braised~^~BEEF,BRISKET,FLAT HALF,LN,0"FAT,ALL GRDS,CKD,BRSD~^^^^~Separable fat~^2^^6.25^4.27^9.02^3.87
-~13371~^~1300~^~Beef, brisket, point half, separable lean and fat, trimmed to 0" fat, all grades, cooked, braised~^~BEEF,BRISKET,POINT HALF,LN&FAT,0"FAT,ALL GRDS,CKD,BRSD~^~URMIS #1628~^^^~Connective tissue 1%~^1^^6.25^4.27^9.02^3.87
-~13372~^~1300~^~Beef, brisket, point half, separable lean only, trimmed to 0" fat, all grades, cooked, braised~^~BEEF,BRISKET,POINT HALF,LN,0"FAT,ALL GRDS,CKD,BRSD~^^^^~Connective tissue, 1%, separable fat, 24%~^25^^6.25^4.27^9.02^3.87
-~13373~^~1300~^~Beef, chuck, arm pot roast, separable lean and fat, trimmed to 0" fat, all grades, cooked, braised~^~BEEF,CHUCK,ARM POT RST,LN&FAT,0"FAT,ALL GRDS,CKD,BRSD~^^^^~Bone and connective tissue~^19^^6.25^4.27^9.02^3.87
-~13375~^~1300~^~Beef, chuck, arm pot roast, separable lean and fat, trimmed to 0" fat, select, cooked, braised~^~BEEF,CHUCK,ARM POT RST,LN & FAT,0" FAT,SEL,CKD,BRSD~^~URMIS #1049~^^^~Bone and connective tissue~^28^^6.25^4.27^9.02^3.87
-~13377~^~1300~^~Beef, chuck, arm pot roast, separable lean only, trimmed to 0" fat, choice, cooked, braised~^~BEEF,CHUCK,ARM POT RST,LN,0"FAT,CHOIC,CKD,BRSD~^~URMIS #1864~^^^~Bone and connective tissue 23%, sep fat 17%~^40^^6.25^4.27^9.02^3.87
-~13378~^~1300~^~Beef, chuck, arm pot roast, separable lean only, trimmed to 0" fat, select, cooked, braised~^~BEEF,CHUCK,ARM POT RST,LN,0"FAT,SEL,CKD,BRSD~^~URMIS #1049~^^^~Bone and connective tissue 29%, sep fat 13%~^42^^6.25^4.27^9.02^3.87
-~13379~^~1300~^~Beef, chuck, blade roast, separable lean and fat, trimmed to 0" fat, all grades, cooked, braised~^~BEEF,CHUCK,BLADE RST,LN&FAT,0"FAT,ALL GRDS,CKD,BRSD~^~Top Blade Steak~^^^~Bone~^25^^6.25^4.27^9.02^3.87
-~13380~^~1300~^~Beef, chuck, under blade pot roast, boneless, separable lean and fat, trimmed to 0" fat, choice, cooked, braised~^~BEEF,CHCK,UNDR BLDE POT RST,BNLS,LN & FAT,0",CHC,CKD,BRSD~^~URMIS #1151~^^^~Connective tissue 4%~^4^^6.25^4.27^9.02^3.87
-~13381~^~1300~^~Beef, chuck, under blade pot roast, boneless, separable lean and fat, trimmed to 0" fat, select, cooked, braised~^~BEEF,CHCK,UNDR BLDE POT RST,BNLS,LN & FAT,0",SEL,CKD,BRSD~^~URMIS #1151~^^^~Connective tissue 4%~^40^^6.25^4.27^9.02^3.87
-~13382~^~1300~^~Beef, chuck, blade roast, separable lean only, trimmed to 0" fat, all grades, cooked, braised~^~BEEF,CHUCK,BLADE RST,LN,0"FAT,ALL GRDS,CKD,BRSD~^~Top Blade Steak~^^~Y~^~25% bone, 14% separable fat~^39^^6.25^4.27^9.02^3.87
-~13383~^~1300~^~Beef, chuck, under blade pot roast, boneless, separable lean only, trimmed to 0" fat, choice, cooked, braised~^~BEEF,CHK,UNDER BLADE POT RST,BNLESS,LN,0" FAT,CHOIC,CKD,BRSD~^~Beef, Chuck, Under Blade Pot Roast, URMIS #1151~^^^~Connective tissue 3%, seam fat 21%~^24^^6.25^4.27^9.02^3.87
-~13384~^~1300~^~Beef, chuck, under blade pot roast, boneless, separable lean only, trimmed to 0" fat, select, cooked, braised~^~BEEF,CHUCK,UNDER BLADE POT RST,BNLESS,LN,0" FAT,SEL,CKD,BRSD~^~Beef, Chuck, Under Blade Pot Roast, URMIS #1151~^^^~Connective tissue 4%, seam fat 19%~^23^^6.25^4.27^9.02^3.87
-~13386~^~1300~^~Beef, rib, large end (ribs 6-9), separable lean and fat, trimmed to 0" fat, choice, cooked, roasted~^~BEEF,RIB,LRG END (RIBS 6-9),LN&FAT,0"FAT,CHOIC,CKD,RSTD~^^^^~Bone~^16^^6.25^4.27^9.02^3.87
-~13387~^~1300~^~Beef, rib, large end (ribs 6-9), separable lean and fat, trimmed to 0" fat, select, cooked, roasted~^~BEEF,RIB,LRG END (RIBS 6-9),LN&FAT,0"FAT,SEL,CKD,RSTD~^^^^~Bone~^17^^6.25^4.27^9.02^3.87
-~13388~^~1300~^~Beef, rib, large end (ribs 6-9), separable lean only, trimmed to 0" fat, all grades, cooked, roasted~^~BEEF,RIB,LRG END (RIBS 6-9),LN,0"FAT,ALL GRDS,CKD,RSTD~^^^~Y~^~16% bone, 22% separable fat~^38^^6.25^4.27^9.02^3.87
-~13389~^~1300~^~Beef, rib, large end (ribs 6-9), separable lean only, trimmed to 0" fat, choice, cooked, roasted~^~BEEF,RIB,LRG END (RIBS 6-9),LN,0"FAT,CHOIC,CKD,RSTD~^^^^~Bone, 16%, separable fat, 24%~^40^^6.25^4.27^9.02^3.87
-~13390~^~1300~^~Beef, rib, large end (ribs 6-9), separable lean only, trimmed to 0" fat, select, cooked, roasted~^~BEEF,RIB,LRG END (RIBS 6-9),LN,0"FAT,SEL,CKD,RSTD~^^^^~Bone, 17%, separable fat, 20%~^37^^6.25^4.27^9.02^3.87
-~13391~^~1300~^~Beef, rib, small end (ribs 10-12), separable lean and fat, trimmed to 0" fat, all grades, cooked, broiled~^~BEEF,RIB,SML END (RIBS 10-12),LN&FAT,0"FAT,ALL GRDS,CKD,BRLD~^^^^~Bone and connective tissue~^23^^6.25^4.27^9.02^3.87
-~13392~^~1300~^~Beef, rib, small end (ribs 10-12), separable lean and fat, trimmed to 0" fat, choice, cooked, broiled~^~BEEF,RIB,SML END (RIBS 10-12),LN&FAT,0"FAT,CHOIC,CKD,BRLD~^^^^~Bone~^22^^6.25^4.27^9.02^3.87
-~13393~^~1300~^~Beef, rib, small end (ribs 10-12), separable lean and fat, trimmed to 0" fat, select, cooked, broiled~^~BEEF,RIB,SML END (RIBS 10-12),LN&FAT,0"FAT,SEL,CKD,BRLD~^^^^~Bone~^24^^6.25^4.27^9.02^3.87
-~13394~^~1300~^~Beef, rib, small end (ribs 10-12), separable lean only, trimmed to 0" fat, all grades, cooked, broiled~^~BEEF,RIB,SML END (RIBS 10-12),LN,0"FAT,ALL GRDS,CKD,BRLD~^^^^~Bone and connective tissue, 7.8%, separable fat, 10.6%~^37^^6.25^4.27^9.02^3.87
-~13395~^~1300~^~Beef, rib, small end (ribs 10-12), separable lean only, trimmed to 0" fat, choice, cooked, broiled~^~BEEF,RIB,SML END (RIBS 10-12),LN,0"FAT,CHOIC,CKD,BRLD~^^^^~Bone, 22%, separable fat, 15%~^37^^6.25^4.27^9.02^3.87
-~13396~^~1300~^~Beef, rib, small end (ribs 10-12), separable lean only, trimmed to 0" fat, select, cooked, broiled~^~BEEF,RIB,SML END (RIBS 10-12),LN,0"FAT,SEL,CKD,BRLD~^^^^~Bone, 24%, separable fat, 13%~^37^^6.25^4.27^9.02^3.87
-~13398~^~1300~^~Beef, round, bottom round, steak, separable lean and fat, trimmed to 0" fat, all grades, cooked, braised~^~BEEF,RND,BTTM RND,STEAK,LN & FAT,0" FAT,ALL GRDS,CKD,BRSD~^~Cube Steak~^^^~Bone and connective tissue~^2^^6.25^4.27^9.02^3.87
-~13399~^~1300~^~Beef, round, bottom round, roast, separable lean and fat, trimmed to 0" fat, all grades, cooked, roasted~^~BEEF,RND,BTTM RND,RST,LN & FAT,0" FAT,ALL GRDS,CKD,RSTD~^~Cube Steak~^^^~Bone and connective tissue~^1^^6.25^4.27^9.02^3.87
-~13401~^~1300~^~Beef, round, bottom round, steak, separable lean and fat, trimmed to 0" fat, choice, cooked, braised~^~BEEF,RND,BTTM RND,STEAK,LN & FAT,0" FAT,CHOIC,CKD,BRSD~^~URMIS #2279, Cube Steak~^^^~Bone and connective tissue~^1^^6.25^4.27^9.02^3.87
-~13402~^~1300~^~Beef, round, bottom round, roast, separable lean and fat, trimmed to 0" fat, choice, cooked, roasted~^~BEEF,RND,BTTM RND,RST,LN & FAT,0" FAT,CHOIC,CKD,RSTD~^~URMIS #2279, Cube Steak~^^^~Bone and connective tissue~^1^^6.25^4.27^9.02^3.87
-~13404~^~1300~^~Beef, round, bottom round, steak, separable lean and fat, trimmed to 0" fat, select, cooked, braised~^~BEEF,RND,BTTM RND,STEAK,LN & FAT,0" FAT,SEL,CKD,BRSD~^~URMIS #1464, Cube Steak~^^^~Bone and connective tissue~^3^^6.25^4.27^9.02^3.87
-~13405~^~1300~^~Beef, round, bottom round, roast, separable lean and fat, trimmed to 0" fat, select, cooked, roasted~^~BEEF,RND,BTTM RND,RST,LN & FAT,0" FAT,SEL,CKD,RSTD~^~URMIS #1464, Cube Steak~^^^~Bone and connective tissue~^1^^6.25^4.27^9.02^3.87
-~13407~^~1300~^~Beef, round, bottom round, steak, separable lean only, trimmed to 0" fat, all grades, cooked, braised~^~BEEF,RND,BTTM RND,STEAK,LN,0" FAT,ALL GRDS,CKD,BRSD~^~Cube Steak~^^^~Bone and connective tissue, 1.8%, separable fat, 1.8%~^4^^6.25^4.27^9.02^3.87
-~13408~^~1300~^~Beef, round, bottom round, roast, separable lean only, trimmed to 0" fat, all grades, cooked, roasted~^~BEEF,RND,BTTM RND,RST,LN,0" FAT,ALL GRDS,CKD,RSTD~^~Cube Steak~^^^~Bone and connective tissue 1%, sep fat 2%~^3^^6.25^4.27^9.02^3.87
-~13410~^~1300~^~Beef, round, bottom round, steak, separable lean only, trimmed to 0" fat, choice, cooked, braised~^~BEEF,RND,BTTM RND,STEAK,LN,0" FAT,CHOIC,CKD,BRSD~^~URMIS #2279, Cube Steak~^^^~Bone and connective tissue 1%, sep fat 1%~^2^^6.25^4.27^9.02^3.87
-~13411~^~1300~^~Beef, round, bottom round, roast, separable lean only, trimmed to 0" fat, choice, cooked, roasted~^~Beef, bottom round, roast,lean only, 0" fat, choice, roasted~^~URMIS #2279, Cube Steak~^^^~Bone and connective tissue 1%, sep fat 3%~^4^^^4.27^9.02^3.87
-~13413~^~1300~^~Beef, round, bottom round, steak, separable lean only, trimmed to 0" fat, select, cooked, braised~^~BEEF,RND,BTTM RND,STEAK,LN,0" FAT,SEL,CKD,BRSD~^~URMIS #1464, Cube Steak~^^^~Bone and connective tissue 3%, sep fat 2%~^5^^6.25^4.27^9.02^3.87
-~13414~^~1300~^~Beef, round, bottom round roast, separable lean only, trimmed to 0" fat, select, cooked, roasted~^~BEEF,RND,BTTM RND RST,LN,0" FAT,SEL,CKD,RSTD~^~URMIS #1464~^^^~Bone and connective tissue 1%, sep fat 1%~^2^^6.25^4.27^9.02^3.87
-~13415~^~1300~^~Beef, round, eye of round roast, boneless, separable lean and fat, trimmed to 0" fat, all grades, cooked, roasted~^~BEEF,RND,EYE OF RND RST,BNLESS,L & F,0" FAT,A GRDS,CKD,RSTD~^~Eye of Round Roast~^^^^0^^6.25^4.27^9.02^3.87
-~13416~^~1300~^~Beef, round, eye of round roast, boneless, separable lean and fat, trimmed to 0" fat, choice, cooked, roasted~^~BEEF,RND,EYE OF RND RST,BNLESS,LN & FT,0" FAT,CHOIC,CKD,RSTD~^~URMIS #2295, Eye of Round Roast~^^^^0^^6.25^4.27^9.02^3.87
-~13417~^~1300~^~Beef, round, eye of round roast, boneless, separable lean and fat, trimmed to 0" fat, select, cooked, roasted~^~BEEF,RND,EYE OF RND RST,BNLESS,LN & FAT,0" FAT,SEL,CKD,RSTD~^~URMIS #1480, Eye of Round Roast~^^^^0^^6.25^4.27^9.02^3.87
-~13418~^~1300~^~Beef, round, eye of round roast, boneless, separable lean only, trimmed to 0" fat, all grades, cooked, roasted~^~BEEF,RND,EYE OF RND RST,BNLESS,LN,0" FAT,ALL GRDS,CKD,RSTD~^~Eye of Round Roast~^^^~Connective tissue 2%~^2^^6.25^4.27^9.02^3.87
-~13419~^~1300~^~Beef, round, eye of round roast, boneless, separable lean only, trimmed to 0" fat, choice, cooked, roasted~^~BEEF,RND,EYE OF RND RST,BNLESS,LN,0" FAT,CHOIC,CKD,RSTD~^~URMIS #2295, Eye of Round Roast~^^^~Bone and Conective tissue 3%~^3^^6.25^4.27^9.02^3.87
-~13420~^~1300~^~Beef, round, eye of round roast, boneless, separable lean only, trimmed to 0" fat, select, cooked, roasted~^~BEEF,RND,EYE OF RND RST,BNLESS,LN,0" FAT,SEL,CKD,RSTD~^~URMIS #1480, Eye of Round Roast~^^^^0^^6.25^4.27^9.02^3.87
-~13421~^~1300~^~Beef, round, tip round, roast, separable lean and fat, trimmed to 0" fat, all grades, cooked, roasted~^~BEEF,RND,TIP RND,RST,LN & FAT,0" FAT,ALL GRDS,CKD,RSTD~^~Cube steak~^^^~Bone and connective tissue~^4^^6.25^4.27^9.02^3.87
-~13422~^~1300~^~Beef, round, tip round, roast, separable lean and fat, trimmed to 0" fat, choice, cooked, roasted~^~BEEF,RND,TIP RND,RST,LN & FAT,0" FAT,CHOIC,CKD,RSTD~^~URMIS #2340, Cube Steak~^^^~Bone and connective tissue~^4^^6.25^4.27^9.02^3.87
-~13423~^~1300~^~Beef, round, tip round, roast, separable lean and fat, trimmed to 0" fat, select, cooked, roasted~^~BEEF,RND,TIP RND,RST,LN & FAT,0" FAT,SEL,CKD,RSTD~^~URMIS #1525, Cube Steak~^^^~Bone and connective tissue~^4^^6.25^4.27^9.02^3.87
-~13424~^~1300~^~Beef, round, tip round, roast, separable lean only, trimmed to 0" fat, all grades, cooked, roasted~^~BEEF,RND,TIP RND,RST,LN,0" FAT,ALL GRDS,CKD,RSTD~^^^~Y~^~Bone and connective tissue, 4.0%, separable fat, 4.0%~^8^^6.25^4.27^9.04^3.87
-~13425~^~1300~^~Beef, round, tip round, roast, separable lean only, trimmed to 0" fat, choice, cooked, roasted~^~BEEF,RND,TIP RND,RST,LN,0" FAT,CHOIC,CKD,RSTD~^~URMIS # 2340, Cube Steak~^^^~Bone and connective tissue 4%, sep fat 3%~^7^^6.25^4.27^9.02^3.87
-~13426~^~1300~^~Beef, round, tip round, roast, separable lean only, trimmed to 0" fat, select, cooked, roasted~^~BEEF,RND,TIP RND,RST,LN,0" FAT,SEL,CKD,RSTD~^~URMIS # 1525, Cube Steak~^^^~Bone and connective tissue 4%, sep fat 5%~^9^^6.25^^^
-~13428~^~1300~^~Beef, round, top round, separable lean and fat, trimmed to 0" fat, all grades, cooked, braised~^~BEEF,RND,TOP RND,LN&FAT,0"FAT,ALL GRDS,CKD,BRSD~^~London Broil, Cube steak, Round Steak, Minute Steak~^^^~Connective tissue~^2^^6.25^4.27^9.02^3.87
-~13430~^~1300~^~Beef, round, top round, separable lean and fat, trimmed to 0" fat, choice, cooked, braised~^~BEEF,RND,TOP RND,LN&FAT,0"FAT,CHOIC,CKD,BRSD~^~URMIS #2368, London Broil, Cube steak, Minute Steak, Round Steak~^^^~Connective tissue~^2^^6.25^4.27^9.02^3.87
-~13432~^~1300~^~Beef, round, top round, separable lean and fat, trimmed to 0" fat, select, cooked, braised~^~BEEF,RND,TOP RND,LN&FAT,0"FAT,SEL,CKD,BRSD~^~URMIS #1553, London Broil, Cube steak, Minute Steak, Round Steak~^^^~Connective tissue~^2^^6.25^4.27^9.02^3.87
-~13436~^~1300~^~Beef, round, top round, separable lean only, trimmed to 0" fat, choice, cooked, braised~^~BEEF,RND,TOP RND,LN,0"FAT,CHOIC,CKD,BRSD~^~URMIS #2368, London Broil, Cube steak, Minute Steak, Round Steak~^^^~Connective tissue, 2%, separable fat, 2%~^4^^6.25^4.27^9.02^3.87
-~13438~^~1300~^~Beef, round, top round, separable lean only, trimmed to 0" fat, select, cooked, braised~^~BEEF,RND,TOP RND,LN,0"FAT,SEL,CKD,BRSD~^~URMIS #1553, London Broil, Cube steak, Minute Steak, Round Steak~^^^~Connective tissue, 2%, separable fat, 2%~^4^^6.25^4.27^9.02^3.87
-~13439~^~1300~^~Beef, loin, tenderloin steak, boneless, separable lean and fat, trimmed to 0" fat, all grades, cooked, grilled~^~BEEF,LOIN,TNDRLN STEAK,BNLESS,L & F,0" F,A GRDS,CKD,GRILLED~^~Filet Mignon, Tenderloin Steak, Beef Medallions~^^^~Connective tissue 1%~^1^^6.25^4.27^9.02^3.87
-~13440~^~1300~^~Beef, loin, tenderloin steak, boneless, separable lean and fat, trimmed to 0" fat, choice, cooked, grilled~^~BEEF,LOIN,TENDERLOIN STK,BNLESS,L & F,0" F,CHOIC,CKD,GRLLED~^~URMIS # 2203, Filet Mignon, Tenderloin Steak, Beef Medallions~^^^~Connective tissue 1%~^1^^6.25^4.27^9.02^3.87
-~13441~^~1300~^~Beef, loin, tenderloin steak, boneless, separable lean and fat, trimmed to 0" fat, select, cooked, grilled~^~BEEF,LOIN,TENDERLOIN STK,BNLESS,L & F,0" FAT,SEL,CKD,GRILLED~^~URMIS #1388, Filet Mignon, Tenderloin Steak, Beef Medallions~^^^~Connective tissue 1%~^1^^6.25^4.27^9.02^3.87
-~13442~^~1300~^~Beef, loin, tenderloin steak, boneless, separable lean only, trimmed to 0" fat, all grades, cooked, grilled~^~BEEF,LOIN,TENDERLOIN STK,BNLESS,L,0" F,ALL GRDS,CKD,GRILLED~^~Filet Mignon, Tenderloin Steak, Beef Medallions~^^^~Separable fat 1%~^1^^6.25^^^
-~13443~^~1300~^~Beef, loin, tenderloin steak, boneless, separable lean only, trimmed to 0" fat, choice, cooked, grilled~^~BEEF,LOIN,TENDERLOIN STEAK,BNLESS,LN,0" FAT,CHOIC,CKD,GRLLED~^~URMIS # 2203, Filet Mignon, Tenderloin Steak, Beef Medallions~^^^~Separable fat 1%~^1^^6.25^4.27^9.02^3.87
-~13444~^~1300~^~Beef, loin, tenderloin steak, boneless, separable lean only, trimmed to 0" fat, select, cooked, grilled~^~BEEF,LOIN,TENDERLOIN STEAK,BNLESS,LN,0" FAT,SEL,CKD,GRILLED~^~URMIS #1388, Filet Mignon, Tenderloin Steak, Beef Medallions~^^^~Separable fat 1%~^1^^6.25^4.27^9.02^3.87
-~13445~^~1300~^~Beef, loin, top loin steak, boneless, lip off, separable lean and fat, trimmed to 0" fat, all grades, cooked, grilled~^~BEEF,LOIN,TOPLOINSTK,BNLS,LIPOFF,LN FT,0" FT,ALLGRD,CKD,GRLD~^~Kansas City Strip, Boneless Strip Steak, Club Steak, New York Strip~^^^~Connective tissue 8%~^8^^6.25^4.27^9.02^3.87
-~13446~^~1300~^~Beef, loin, top loin steak, boneless, lip off, separable lean and fat, trimmed to 0" fat, choice, cooked, grilled~^~BEEF,LOIN,TOPLOINSTK,BNLS,LIP OFF,LN FT,0" FT,CHC,CKD,GRLD~^~URMIS # 2219, Boneless Strip Steak, Kansas City Steak, New York Strip, Club Steak~^^^~Connective tissue 7%~^7^^6.25^4.27^9.02^3.87
-~13447~^~1300~^~Beef, loin, top loin steak, boneless, lip off, separable lean and fat, trimmed to 0" fat, select, cooked, grilled~^~BEEF,LOIN,TOPLOINSTK,BNLS,LIP OFF,LN FAT,0" FT,SEL,CKD,GRLD~^~URMIS # 1404, Boneless Strip Steak, Kansas City Strip, New York Strip, Club Steak~^^^~Connective tissue 9%~^9^^6.25^4.27^9.02^3.87
-~13448~^~1300~^~Beef, loin, top loin steak, boneless, lip off, separable lean only, trimmed to 0" fat, all grades, cooked, grilled~^~BEEF,LOIN,TOPLOINSTK,BNLS,LIP OFF,LN,0" FT,ALL GRD,CKD,GRLD~^~Kansas City Strip, Club Steak, New York Strip~^^^~Connective tissue 8%, separable fat 4%~^12^^6.25^4.27^9.02^3.87
-~13449~^~1300~^~Beef, loin, top loin steak, boneless, lip off, separable lean only, trimmed to 0" fat, choice, cooked, grilled~^~BEEF,LOIN,TOP LOIN STK,BNLS,LIP OFF,LN,0" FAT,CHOIC,CKD,GRLD~^~URMIS # 2219, Club Steak, Kansas City Strip, New York Strip~^^^~Connective tissue 7%, separable fat 5%~^12^^6.25^4.27^9.02^3.87
-~13450~^~1300~^~Beef, loin, top loin steak, boneless, lip off, separable lean only, trimmed to 0" fat, select, cooked, grilled~^~BEEF,LOIN,TOP LOIN STK,BNLS,LIP OFF,LN,0" FAT,SEL,CKD,GRLD~^~URMIS # 1404, Club Steak, Kansas City Strip, New York Strip~^^^~Connective tissue 9%, separable fat 4%~^13^^6.25^4.27^9.02^3.87
-~13451~^~1300~^~Beef, top sirloin, steak, separable lean and fat, trimmed to 0" fat, all grades, cooked, broiled~^~BEEF,TOP SIRLOIN,STEAK,LN & FAT,0" FAT,ALL GRDS,CKD,BRLD~^~Sirloin strip, Sirloin steak~^^~Y~^~Bone and connective tissue~^4^^6.25^4.27^9.02^3.87
-~13452~^~1300~^~Beef, top sirloin, steak, separable lean and fat, trimmed to 0" fat, choice, cooked, broiled~^~BEEF,TOP SIRLOIN,STEAK,LN & FAT,0" FAT,CHOIC,CKD,BRLD~^~URMIS #2237, Sirloin Steak, Sirloin strip~^^^~Bone and connective tissue~^3^^6.25^4.27^9.02^3.87
-~13453~^~1300~^~Beef, top sirloin, steak, separable lean and fat, trimmed to 0" fat, select, cooked, broiled~^~BEEF,TOP SIRLOIN,STEAK,LN & FAT,0" FAT,SEL,CKD,BRLD~^~URMIS #1422, Sirloin steak, Sirloin strip~^^^~Bone and connective tissue~^4^^6.25^4.27^9.02^3.87
-~13454~^~1300~^~Beef, top sirloin, steak, separable lean only, trimmed to 0" fat, all grades, cooked, broiled~^~BEEF,TOP SIRLOIN,STEAK,LN,0" FAT,ALL GRDS,CKD,BRLD~^~Sirloin strip, Sirloin steak~^^~Y~^~Bone and connective tissue, 3.8%, separable fat, 5.8%~^10^^6.25^4.27^9.02^3.87
-~13455~^~1300~^~Beef, top sirloin, steak, separable lean only, trimmed to 0" fat, choice, cooked, broiled~^~BEEF,TOP SIRLOIN,STEAK,LN,0" FAT,CHOIC,CKD,BRLD~^~URMIS #2237, Sirloin steak, Sirloin strip~^^^~Bone and connective tissue 4%, sep fat 6%~^10^^6.25^4.27^9.02^3.87
-~13456~^~1300~^~Beef, top sirloin, steak, separable lean only, trimmed to 0" fat, select, cooked, broiled~^~BEEF,TOP SIRLOIN,STEAK,LN,0" FAT,SEL,CKD,BRLD~^~URMIS #1422, Sirloin steak, Sirloin strip~^^^~Bone and connective tissue 4%, sep fat 6%~^10^^6.25^4.27^9.02^3.87
-~13459~^~1300~^~Beef, short loin, porterhouse steak, separable lean and fat, trimmed to 0" fat, all grades, cooked, broiled~^~BEEF,SHRT LOIN,PRTRHS STK,LN & FAT,0" FAT,ALL GRDS,CKD,BRLD~^^^^~Bone and heavy connective tissue, 21%~^21^^6.25^4.27^9.02^3.87
-~13460~^~1300~^~Beef, short loin, porterhouse steak, separable lean and fat, trimmed to 0" fat, USDA choice, cooked, broiled~^~BEEF,LOIN,PRTRHS STK,LN & FAT,0" FAT,USDA CHOIC,CKD,BRLD~^~URMIS # 2145~^^^~Bone and heavy connective tissue, 21%~^21^^6.25^4.27^9.02^3.87
-~13463~^~1300~^~Beef, short loin, porterhouse steak, separable lean and fat, trimmed to 0" fat, USDA select, cooked, broiled~^~BEEF,SHRT LOIN,PRTRHS STK,LN & FAT,0" FAT,USDA SEL,CKD,BRLD~^~URMIS # 1330~^^^~Bone and heavy connective tissue, 20%~^20^^6.25^4.27^9.02^3.87
-~13464~^~1300~^~Beef, short loin, porterhouse steak, separable lean only, trimmed to 1/8" fat, all grades, raw~^~BEEF,SHRT LOIN,PRTRHS STEAK,LN,1/8" FAT,ALL GRDS,RAW~^~Porterhouse Steak~^^^~Bone and connective tissue 23%, Separable fat 12%~^35^^6.25^4.27^9.02^3.87
-~13465~^~1300~^~Beef, short loin, porterhouse steak, separable lean only, trimmed to 1/8" fat, all grades, cooked, grilled~^~BEEF,SHRT LOIN,PRTRHS STEAK,LN,1/8" FAT,ALL GRDS,CKD,GRILLED~^~Porterhouse Steak~^^^~Bone and connective tissue 27%, separable fat 11%~^38^^6.25^4.27^9.02^3.87
-~13466~^~1300~^~Beef, short loin, porterhouse steak, separable lean only, trimmed to 0" fat, all grades, cooked, broiled~^~BEEF,SHRT LOIN,PRTRHS STEAK,LN,0" FAT,ALL GRDS,CKD,BRLD~^^^^~Bone and heavy connective tissue, 21%, separable fat, 11%~^32^^6.25^4.27^9.02^3.87
-~13467~^~1300~^~Beef, short loin, porterhouse steak, separable lean only, trimmed to 0" fat, choice, cooked, broiled~^~BEEF,SHRT LOIN,PRTRHS STEAK,LN,0" FAT,CHOIC,CKD,BRLD~^~URMIS # 2145~^^^~Bone and heavy connective tissue, 21%, separable fat, 10%~^31^^6.25^4.27^9.02^3.87
-~13468~^~1300~^~Beef, short loin, porterhouse steak, separable lean only, trimmed to 1/8" fat, select, raw~^~BEEF,SHRT LOIN,PRTRHS STEAK,LN,1/8" FAT,SEL,RAW~^~Porterhouse Steak, URMIS # 1330~^^^~Bone and connective tissue 24%, separable fat 13%~^37^^6.25^4.27^9.02^3.87
-~13469~^~1300~^~Beef, short loin, porterhouse steak, separable lean only, trimmed to 1/8" fat, select, cooked, grilled~^~BEEF,SHRT LOIN,PRTRHS STEAK,LN,1/8" FAT,SEL,CKD,GRILLED~^~Porterhouse Steak, URMIS # 1330~^^^~Bone and connective tissue 30%, separable fat 10%~^40^^6.25^4.27^9.02^3.87
-~13470~^~1300~^~Beef, short loin, porterhouse steak, separable lean only, trimmed to 0" fat, select, cooked, broiled~^~BEEF,SHRT LOIN,PRTRHS STEAK,LN,0" FAT,SEL,CKD,BRLD~^~URMIS # 1330~^^^~Bone and heavy connective tissue, 20%, separable fat, 12%~^32^^6.25^4.27^9.02^3.87
-~13473~^~1300~^~Beef, short loin, t-bone steak, separable lean and fat, trimmed to 0" fat, all grades, cooked, broiled~^~BEEF,SHRT LOIN,T-BONE STK,LN & FAT,0" FAT,ALL GRDS,CKD,BRLD~^^^^~Bone and heavy connective tissue, 22%~^22^^6.25^4.27^9.02^3.87
-~13474~^~1300~^~Beef, short loin, t-bone steak, separable lean and fat, trimmed to 0" fat, USDA choice, cooked, broiled~^~BEEF,LOIN,T-BONE STEAK,LN & FAT,0" FAT,USDA CHOIC,CKD,BRLD~^~URMIS # 2184~^^^~Bone and heavy connective tissue, 23%~^23^^6.25^4.27^9.02^3.87
-~13477~^~1300~^~Beef, short loin, t-bone steak, separable lean and fat, trimmed to 0" fat, USDA select, cooked, broiled~^~BEEF,SHRT LOIN,T-BONE STK,LN & FAT,0" FAT,USDA SEL,CKD,BRLD~^~URMIS # 01369~^^^~Bone and heavy connective tissue, 21%~^21^^6.25^4.27^9.02^3.87
-~13478~^~1300~^~Beef, short loin, t-bone steak, bone-in, separable lean only, trimmed to 1/8" fat, all grades, raw~^~BEEF,SHRT LOIN,T-BONE STEAK,BONE-IN,LN,1/8" FAT,ALL GRDS,RAW~^~T-Bone Steak~^^^~Bone and connective tissue, 25%, separable fat, 14%~^39^^6.25^4.27^9.02^3.87
-~13479~^~1300~^~Beef, short loin, t-bone steak, bone-in, separable lean only, trimmed to 1/8" fat, all grades, cooked, grilled~^~BEEF,SHRT LN,T-BN STK,BN-IN,LN,1/8" FAT,ALL GRDS,CKD,GRILLED~^~T-Bone Steak~^^^~Bone and connective tissue, 30%, separable fat, 13%~^43^^6.25^4.27^9.02^3.87
-~13481~^~1300~^~Beef, short loin, t-bone steak, separable lean only, trimmed to 0" fat, choice, cooked, broiled~^~BEEF,SHRT LOIN,T-BONE STEAK,LN,0" FAT,CHOIC,CKD,BRLD~^~URMIS # 2184~^^^~Bone and heavy connective tissue, 22%, separable fat, 10%~^32^^6.25^4.27^9.02^3.87
-~13482~^~1300~^~Beef, short loin, t-bone steak, bone-in, separable lean only, trimmed to 1/8" fat, select, raw~^~BEEF,SHRT LOIN,T-BONE STEAK,BONE-IN,LN,1/8" FAT,SEL,RAW~^~T-Bone Steak, URMIS # 1369~^^^~Bone and heavy connective tissue, 26%, Separable fat 14%~^41^^6.25^4.27^9.02^3.87
-~13483~^~1300~^~Beef, short loin, t-bone steak, bone-in, separable lean only, trimmed to 1/8" fat, select, cooked, grilled~^~BEEF,SHRT LN,T-BONE STK,BONE-IN,LN,1/8" FAT,SEL,CKD,GRILLED~^~T-Bone Steak, URMIS # 1369~^^^~Bone and connective tissue, 32%, separable fat, 12%~^44^^6.25^4.27^9.02^3.87
-~13484~^~1300~^~Beef, short loin, t-bone steak, separable lean only, trimmed to 0" fat, select, cooked, broiled~^~BEEF,SHRT LOIN,T-BONE STEAK,LN,0" FAT,SEL,CKD,BRLD~^~URMIS # 1369~^^^~Bone and heavy connective tissue, 21%, separable fat, 8%~^29^^6.25^4.27^9.02^3.87
-~13485~^~1300~^~Beef, brisket, flat half, separable lean only, trimmed to 0" fat, select, cooked, braised~^~BEEF,BRISKET,FLAT HALF,LN,0" FAT,SEL,CKD,BRSD~^~URMIS #1623~^^^~Separable fat~^1^^^4.27^9.02^3.87
-~13486~^~1300~^~Beef, round, tip round, roast, separable lean and fat, trimmed to 0" fat, all grades, raw~^~BEEF,RND,TIP RND,RST,LN & FAT,0" FAT,ALL GRDS,RAW~^^^^~Bone and connective tissue~^4^^6.25^4.27^9.02^3.87
-~13487~^~1300~^~Beef, round, tip round, roast, separable lean and fat, trimmed to 0" fat, choice, raw~^~BEEF,RND,TIP RND,RST,LN & FAT,0" FAT,CHOIC,RAW~^~URMIS # 2340~^^^~Bone and connective tissue~^4^^6.25^4.27^9.02^3.87
-~13488~^~1300~^~Beef, round, tip round, roast, separable lean and fat, trimmed to 0" fat, select, raw~^~BEEF,RND,TIP RND,RST,LN & FAT,0" FAT,SEL,RAW~^~URMIS #1525~^^^~Bone and connective tissue~^3^^6.25^4.27^9.02^3.87
-~13490~^~1300~^~Beef, rib, eye, small end (ribs 10- 12) separable lean only, trimmed to 0" fat, select, cooked, broiled~^~BEEF,RIB,EYE,SML END (RIBS 10- 12) LN,0" FAT,SEL,CKD,BRLD~^~ribeye~^^^~Bone and connective tissue 8%, sep fat 10%~^18^^6.25^4.27^9.02^3.87
-~13491~^~1300~^~Beef, round, top round steak, boneless, separable lean only, trimmed to 0" fat, all grades, cooked, grilled~^~BEEF,RND,TOP RND STEAK,BNLESS,LN,0" FAT,ALL GRDS,CKD,GRILLED~^~Top Round Steak~^^~Y~^^0^^6.25^4.27^9.02^3.87
-~13492~^~1300~^~Beef, round, top round steak, boneless, separable lean only, trimmed to 0" fat, choice, cooked, grilled~^~BEEF,RND,TOP RND STEAK,BNLESS,LN,0" FAT,CHOIC,CKD,GRILLED~^~URMIS #2368, Top Round Steak~^^^^0^^6.25^4.27^9.02^3.87
-~13493~^~1300~^~Beef, round, top round steak, boneless, separable lean only, trimmed to 0" fat, select, cooked, grilled~^~BEEF,RND,TOP RND STEAK,BNLESS,LN,0" FAT,SEL,CKD,GRILLED~^~URMIS #1553, Top Round Steak~^^^^0^^6.25^4.27^9.02^3.87
-~13494~^~1300~^~Beef, ground, 70% lean meat / 30% fat, crumbles, cooked, pan-browned~^~BEEF,GROUND,70% LN MEAT / 30% FAT,CRUMBLES,CKD,PAN-BROWNED~^~Hamburger~^^^^0^^6.25^4.27^9.02^3.87
-~13495~^~1300~^~Beef, ground, 70% lean meat / 30% fat, loaf, cooked, baked~^~BEEF,GROUND,70% LN MEAT / 30% FAT,LOAF,CKD,BKD~^~Hamburger~^^^^0^^6.25^4.27^9.02^3.87
-~13496~^~1300~^~Beef, ground, 70% lean meat / 30% fat, patty cooked, pan-broiled~^~BEEF,GROUND,70% LN MEAT / 30% FAT,PATTY CKD,PAN-BROILED~^~Hamburger~^^^^0^^6.25^4.27^9.02^3.87
-~13497~^~1300~^~Beef, ground, 70% lean meat / 30% fat, patty, cooked, broiled~^~BEEF,GROUND,70% LN MEAT / 30% FAT,PATTY,CKD,BRLD~^~Hamburger~^^^^0^^6.25^4.27^9.02^3.87
-~13498~^~1300~^~Beef, ground, 70% lean meat / 30% fat, raw~^~BEEF,GROUND,70% LN MEAT / 30% FAT,RAW~^~Hamburger~^^^^0^^6.25^4.27^9.02^3.87
-~13499~^~1300~^~Beef, chuck, under blade center steak, boneless, Denver Cut, separable lean only, trimmed to 0" fat, select, raw~^~BEEF,CHK,UND BL CNTR STK,BNLESS,DEN CUT,LN,0" FA, SEL, RAW~^~Beef, Chuck, Denver Cut (Serratus Ventralis Steaks), URMIS #1098~^^^~Connective tissue 2%, seam fat 4%~^6^^6.25^^^
-~13500~^~1300~^~Beef, shoulder top blade steak, boneless, separable lean only, trimmed to 0" fat, all grades, cooked, grilled~^~BEEF,SHLDR TOP BLADE STEAK,BNLESS,LN,0" FAT,ALL GRDS,CKD,GRI~^~Beef, Chuck, Top Blade Steak, URMIS #1144~^^^~Connective tissue 15%, seam fat 3%~^18^^6.25^^^
-~13501~^~1300~^~Beef, shoulder top blade steak, boneless, separable lean only, trimmed to 0" fat, choice, cooked, grilled~^~BEEF,SHLDR TOP BLADE STEAK,BNLESS,LN,0" FAT,CHOIC,CKD,GRILLE~^~URMIS #1144, Beef, Chuck, Top Blade Steak~^^^~Connective tissue 14%, seam fat 4%~^18^^6.25^^^
-~13502~^~1300~^~Beef, shoulder top blade steak, boneless, separable lean only, trimmed to 0" fat, select, cooked, grilled~^~BEEF,SHLDR TOP BLADE STEAK,BNLESS,LN,0" FAT,SEL,CKD,GRILLED~^~URMIS #1144, Beef, Chuck, Top Blade Steak~^^^~Connective tissue 17%, seam fat 2%~^19^^6.25^^^
-~13519~^~1300~^~Beef, shoulder top blade steak, boneless, separable lean only, trimmed to 0" fat, all grades, raw~^~BEEF,SHLDR TOP BLADE STEAK,BNLESS,LN,0" FAT,ALL GRDS,RAW~^~URMIS #1144, Beef, Chuck, Top Blade Steak~^^^~Connective tissue 14%, seam fat 2%~^16^^6.25^^^
-~13520~^~1300~^~Beef, shoulder top blade steak, boneless, separable lean only, trimmed to 0" fat, choice, raw~^~BEEF,SHLDR TOP BLADE STEAK,BNLESS,LN,0" FAT,CHOIC,RAW~^~URMIS #1144, Beef, Chuck, Top Blade Steak~^^^~Connective tissue 15%, seam fat 2%~^17^^6.25^^^
-~13523~^~1300~^~Beef, shoulder top blade steak, boneless, separable lean only, trimmed to 0" fat, select, raw~^~BEEF,SHLDR TOP BLADE STEAK,BNLESS,LN,0" FAT,SEL,RAW~^~Beef, Chuck, Top Blade Steak, URMIS #1144~^^^~Connective tissue 14%, seam fat 1%~^15^^6.25^^^
-~13595~^~1300~^~Beef, brisket, flat half, boneless separable lean only, trimmed to 0" fat, all grades, raw~^~BEEF,BRISKET,FLAT HALF,BNLESS LN,0" FAT,ALL GRDS,RAW~^~URMIS #1623, Beef, Brisket, Flat Half~^^^~Connective tissue 1%, seam fat 9%~^10^^6.25^^^
-~13596~^~1300~^~Beef, brisket, flat half, boneless, separable lean only, trimmed to 0" fat, choice, raw~^~BEEF,BRISKET,FLAT HALF,BNLESS LN,0" FAT,ALL CHOICE,RAW~^~URMIS #1623, Beef, Brsket, Flat Half~^^^~Connective tissue 1%, seam fat 8%~^9^^6.25^^^
-~13597~^~1300~^~Beef, brisket, flat half, boneless, separable lean only, trimmed to 0" fat, select, raw~^~BEEF,BRISKET,FLAT HALF,BNLESS,LN,0" FAT,SEL,RAW~^~URMIS #1623, Beef, Brisket, Flat Half~^^^~Connective tissue 1%, seam fat 9%~^10^^6.25^^^
-~13598~^~1300~^~Beef, shoulder top blade steak, boneless, separable lean and fat, trimmed to 0" fat, all grades, cooked, grilled~^~BEEF,SHLDR TOP BLADE STK,BNLES,LN & FAT,0" ,ALL GRDS,CKD,G~^~URMIS #1144~^^^~Connective tissue 15%~^15^^6.25^^^
-~13647~^~1300~^~Beef, shoulder pot roast or steak, boneless, separable lean only, trimmed to 0" fat, all grades, raw~^~BEEF,SHLDR POT RST OR STEAK,BNLESS,LN,0" FAT,ALL GRDS,RAW~^~URMIS #1132, URMIS #1133, Beef, Chuck, Clod (Shoulder) Roast or Steak~^^^~Connective tissue 6%, seam fat 1%~^7^^6.25^^^
-~13648~^~1300~^~Beef, shoulder pot roast or steak, boneless, separable lean only, trimmed to 0" fat, choice, raw~^~BEEF,SHLDR POT RST OR STEAK,BNLESS,LN,0" FAT,CHOIC,RAW~^~URMIS #1132, Urmis #1133, Beef, Chuck, Clod (Shoulder) Roast or Steak~^^^~Connective tissue 6%, seam fat 1%~^7^^6.25^^^
-~13649~^~1300~^~Beef, shoulder pot roast or steak, boneless, separable lean only, trimmed to 0" fat, select, raw~^~BEEF,SHLDR POT RST OR STEAK,BNLESS,LN,0" FAT,SEL,RAW~^~URMIS #1132, URMIS #1133, Beef, Chuck, Clod (Shoulder) Roast or Steak~^^^~Connective tissue 6%, seam fat 1%~^7^^6.25^^^
-~13650~^~1300~^~Beef, shoulder top blade steak, boneless, separable lean and fat, trimmed to 0" fat, choice, cooked, grilled~^~BEEF,SHLDR TOP BLDE STK,BNS,LN & FAT,0" FAT,CHOIC,CKD,G~^~URMIS #1144~^^^~Connective tissue 14%~^14^^6.25^^^
-~13786~^~1300~^~Beef, chuck eye roast, boneless, America's Beef Roast, separable lean and fat, trimmed to 0" fat, all grades, raw~^~BEEF,CHUCK EYE RST,BNLESS,A BF RST,LN & FAT,0",ALL G,RAW~^~URMIS #1095~^^^~Connective tissue 8%~^8^^6.25^^^
-~13788~^~1300~^~Beef, chuck eye roast, boneless, America's Beef Roast, separable lean and fat, trimmed to 0" fat, choice, raw~^~BEEF,CHUCK EYE RST,BNLS,A BF RST,LN & FAT,0" FAT,CHOIC,RAW~^~URMIS #1095~^^^~Connective tissue 9%~^9^^6.25^^^
-~13791~^~1300~^~Beef, chuck eye roast, boneless, America's Beef Roast, separable lean and fat, trimmed to 0" fat, select, raw~^~BEEF,CHUCK EYE RST,BNLS,A BF RST,LN & FAT,0" FAT,SEL,RAW~^~URMIS #1095~^^^~Connective tissue 6%~^6^^6.25^^^
-~13795~^~1300~^~Beef, composite of trimmed retail cuts, separable lean and fat, trimmed to 1/8" fat, all grades, raw~^~BEEF,COMP OF RTL CUTS,LN&FAT,1/8"FAT,ALL GRDS,RAW~^^^^~No component data available~^^^6.25^4.27^9.02^3.87
-~13796~^~1300~^~Beef, composite of trimmed retail cuts, separable lean and fat, trimmed to 1/8" fat, all grades, cooked~^~BEEF,COMP OF RTL CUTS,LN&FAT,1/8"FAT,ALL GRDS,CKD~^^^~Y~^~No component data available~^^^6.25^4.27^9.02^3.87
-~13797~^~1300~^~Beef, composite of trimmed retail cuts, separable lean and fat, trimmed to 1/8" fat, choice, raw~^~BEEF,COMP OF RTL CUTS,LN&FAT,1/8"FAT,CHOIC,RAW~^^^^~No component data available~^^^6.25^4.27^9.02^3.87
-~13798~^~1300~^~Beef, composite of trimmed retail cuts, separable lean and fat, trimmed to 1/8" fat, choice, cooked~^~BEEF,COMP OF RTL CUTS,LN&FAT,1/8"FAT,CHOIC,CKD~^^^^~No component data available~^^^6.25^4.27^9.02^3.87
-~13799~^~1300~^~Beef, composite of trimmed retail cuts, separable lean and fat, trimmed to 1/8" fat, select, raw~^~BEEF,COMP OF RTL CUTS,LN&FAT,1/8"FAT,SEL,RAW~^^^^~No component data available~^^^6.25^4.27^9.02^3.87
-~13800~^~1300~^~Beef, composite of trimmed retail cuts, separable lean and fat, trimmed to 1/8" fat, select, cooked~^~BEEF,COMP OF RTL CUTS,LN&FAT,1/8"FAT,SEL,CKD~^^^^~No component data available~^^^6.25^4.27^9.02^3.87
-~13803~^~1300~^~Beef, brisket, whole, separable lean and fat, trimmed to 1/8" fat, all grades, raw~^~BEEF,BRISKET,WHL,LN&FAT,1/8"FAT,ALL GRDS,RAW~^^^^~Connective tissue~^1^^6.25^4.27^9.02^3.87
-~13804~^~1300~^~Beef, brisket, whole, separable lean and fat, trimmed to 1/8" fat, all grades, cooked, braised~^~BEEF,BRISKET,WHL,LN&FAT,1/8"FAT,ALL GRDS,CKD,BRSD~^^^~Y~^~Connective tissue~^1^^6.25^4.27^9.02^3.87
-~13805~^~1300~^~Beef, brisket, flat half, separable lean and fat, trimmed to 1/8" fat, all grades, raw~^~BEEF,BRISKET,FLAT HALF,LN&FAT,1/8"FAT,ALL GRDS,RAW~^^^^~Bone and connective tissue~^1^^6.25^4.27^9.02^3.87
-~13806~^~1300~^~Beef, brisket, flat half, separable lean and fat, trimmed to 1/8" fat, all grades, cooked, braised~^~BEEF,BRISKET,FLAT HALF,LN&FAT,1/8"FAT,ALL GRDS,CKD,BRSD~^^^^^0^^6.25^4.27^9.02^3.87
-~13807~^~1300~^~Beef, brisket, point half, separable lean and fat, trimmed to 1/8" fat, all grades, raw~^~BEEF,BRISKET,POINT HALF,LN&FAT,1/8"FAT,ALL GRDS,RAW~^^^^~Connective tissue~^1^^6.25^4.27^9.02^3.87
-~13808~^~1300~^~Beef, brisket, point half, separable lean and fat, trimmed to 1/8" fat, all grades, cooked, braised~^~BEEF,BRISKET,POINT HALF,LN&FAT,1/8"FAT,ALL GRDS,CKD,BRSD~^^^^~Connective tissue~^1^^6.25^4.27^9.02^3.87
-~13809~^~1300~^~Beef, chuck, arm pot roast, separable lean and fat, trimmed to 1/8" fat, all grades, raw~^~BEEF,CHUCK,ARM POT RST,LN&FAT,1/8"FAT,ALL GRDS,RAW~^^^^~Bone and connective tissue~^21^^6.25^4.27^9.02^3.87
-~13810~^~1300~^~Beef, chuck, arm pot roast, separable lean and fat, trimmed to 1/8" fat, all grades, cooked, braised~^~BEEF,CHUCK,ARM POT RST,LN&FAT,1/8"FAT,ALL GRDS,CKD,BRSD~^^^~Y~^~Bone and connective tissue~^28^^6.25^4.27^9.02^3.87
-~13811~^~1300~^~Beef, chuck, arm pot roast, separable lean and fat, trimmed to 1/8" fat, choice, raw~^~BEEF,CHUCK,ARM POT RST,LN&FAT,1/8"FAT,CHOIC,RAW~^~URMIS #1864~^^^~Bone and connective tissue~^15^^6.25^4.27^9.02^3.87
-~13812~^~1300~^~Beef, chuck, arm pot roast, separable lean and fat, trimmed to 1/8" fat, choice, cooked, braised~^~BEEF,CHUCK,ARM POT RST,LN&FAT,1/8"FAT,CHOIC,CKD,BRSD~^~URMIS #1864~^^~Y~^~Bone and connective tissue~^30^^6.25^4.27^9.02^3.87
-~13813~^~1300~^~Beef, chuck, arm pot roast, separable lean and fat, trimmed to 1/8" fat, select, raw~^~BEEF,CHUCK,ARM POT RST,LN&FAT,1/8"FAT,SEL,RAW~^~URMIS #1049~^^^~Bone and connective tissue~^16^^6.25^4.27^9.02^3.87
-~13814~^~1300~^~Beef, chuck, arm pot roast, separable lean and fat, trimmed to 1/8" fat, select, cooked, braised~^~BEEF,CHUCK,ARM POT RST,LN&FAT,1/8"FAT,SEL,CKD,BRSD~^~URMIS #1049~^^~Y~^~Bone and connective tissue~^26^^6.25^4.27^9.02^3.87
-~13815~^~1300~^~Beef, chuck, blade roast, separable lean and fat, trimmed to 1/8" fat, all grades, raw~^~BEEF,CHUCK,BLADE RST,LN&FAT,1/8"FAT,ALL GRDS,RAW~^~Top Blade Steak~^^^~Bone~^19^^6.25^4.27^9.02^3.87
-~13816~^~1300~^~Beef, chuck, blade roast, separable lean and fat, trimmed to 1/8" fat, all grades, cooked, braised~^~BEEF,CHUCK,BLADE RST,LN&FAT,1/8"FAT,ALL GRDS,CKD,BRSD~^~Top Blade Steak~^^~Y~^~Bone~^23^^6.25^4.27^9.02^3.87
-~13817~^~1300~^~Beef, chuck, blade roast, separable lean and fat, trimmed to 1/8" fat, choice, raw~^~BEEF,CHUCK,BLADE RST,LN&FAT,1/8"FAT,CHOIC,RAW~^~URMIS #1879, Top Blade Steak~^^^~Bone~^19^^6.25^4.27^9.02^3.87
-~13818~^~1300~^~Beef, chuck, blade roast, separable lean and fat, trimmed to 1/8" fat, choice, cooked, braised~^~BEEF,CHUCK,BLADE RST,LN&FAT,1/8"FAT,CHOIC,CKD,BRSD~^~URMIS #1879, Top Blade Steak~^^~Y~^~Bone~^23^^6.25^4.27^9.02^3.87
-~13819~^~1300~^~Beef, chuck, blade roast, separable lean and fat, trimmed to 1/8" fat, select, raw~^~BEEF,CHUCK,BLADE RST,LN&FAT,1/8"FAT,SEL,RAW~^~URMIS #1064, Top Blade Steak~^^^~Bone~^19^^6.25^4.27^9.02^3.87
-~13820~^~1300~^~Beef, chuck, blade roast, separable lean and fat, trimmed to 1/8" fat, select, cooked, braised~^~BEEF,CHUCK,BLADE RST,LN&FAT,1/8"FAT,SEL,CKD,BRSD~^~URMIS #1064, Top Blade Steak~^^^~Bone~^23^^6.25^4.27^9.02^3.87
-~13821~^~1300~^~Beef, chuck eye roast, boneless, America's Beef Roast, separable lean only, trimmed to 0" fat, all grades, cooked, roasted~^~BEEF,CHK EYE RST,BNL,AMERICA'S BF RST,LN,0" FAT,ALL GRD, CKD~^~URMIS #1095, Beef, Chuck, Chuck Eye Rst, (America's Beef Rst)~^^^~Connective tissue 6%, seam fat 13%~^19^^6.25^^^
-~13822~^~1300~^~Beef, chuck eye roast, boneless, America's Beef Roast, separable lean only, trimmed to 0" fat, choice, cooked, roasted~^~BEEF,CHK EYE RST,BNLESS,AMERICA'S BF RST,LN,0" FAT,CHOIC,CKD~^~URMIS #1095, Beef, Chuck, Chuck Eye Rst, (America's Beef Rst)~^^^~Connective tissue 6%, seam fat 13%~^19^^6.25^^^
-~13823~^~1300~^~Beef, chuck eye roast, boneless, America's Beef Roast, separable lean only, trimmed to 0" fat, select, cooked, roasted~^~BEEF,CHUCK EYE RST,BNLESS,AMERICA'S BF RST,LN,0" FAT,SEL,CKD~^~URMIS #1095, Beef, Chuck, ChuckEye Rst, (America's Beef Rst)~^^^~Connective tissue7%, seam fat 13%~^20^^6.25^^^
-~13824~^~1300~^~Beef, rib, whole (ribs 6-12), separable lean and fat, trimmed to 1/8" fat, all grades, raw~^~BEEF,RIB,WHL (RIBS 6-12),LN&FAT,1/8"FAT,ALL GRDS,RAW~^^^^~Bone~^16^^6.25^4.27^9.02^3.87
-~13825~^~1300~^~Beef, rib, whole (ribs 6-12), separable lean and fat, trimmed to 1/8" fat, all grades, cooked, broiled~^~BEEF,RIB,WHL (RIBS 6-12),LN&FAT,1/8"FAT,ALL GRDS,CKD,BRLD~^^^^~Bone~^21^^6.25^4.27^9.02^3.87
-~13826~^~1300~^~Beef, rib, whole (ribs 6-12), separable lean and fat, trimmed to 1/8" fat, all grades, cooked, roasted~^~BEEF,RIB,WHL (RIBS 6-12),LN&FAT,1/8"FAT,ALL GRDS,CKD,RSTD~^^^^~Bone~^17^^6.25^4.27^9.02^3.87
-~13827~^~1300~^~Beef, rib, whole (ribs 6-12), separable lean and fat, trimmed to 1/8" fat, choice, raw~^~BEEF,RIB,WHL (RIBS 6-12),LN&FAT,1/8"FAT,CHOIC,RAW~^^^^~Bone~^17^^6.25^4.27^9.02^3.87
-~13828~^~1300~^~Beef, rib, whole (ribs 6-12), separable lean and fat, trimmed to 1/8" fat, choice, cooked, broiled~^~BEEF,RIB,WHL (RIBS 6-12),LN&FAT,1/8"FAT,CHOIC,CKD,BRLD~^^^^~Bone~^21^^6.25^4.27^9.02^3.87
-~13829~^~1300~^~Beef, rib, whole (ribs 6-12), separable lean and fat, trimmed to 1/8" fat, choice, cooked, roasted~^~BEEF,RIB,WHL (RIBS 6-12),LN&FAT,1/8"FAT,CHOIC,CKD,RSTD~^^^~Y~^~Bone~^17^^6.25^4.27^9.02^3.87
-~13830~^~1300~^~Beef, rib, whole (ribs 6-12), separable lean and fat, trimmed to 1/8" fat, select, raw~^~BEEF,RIB,WHL (RIBS 6-12),LN&FAT,1/8"FAT,SEL,RAW~^^^^~Bone~^16^^6.25^4.27^9.02^3.87
-~13831~^~1300~^~Beef, rib, whole (ribs 6-12), separable lean and fat, trimmed to 1/8" fat, select, cooked, broiled~^~BEEF,RIB,WHL (RIBS 6-12),LN&FAT,1/8"FAT,SEL,CKD,BRLD~^^^^~Bone~^22^^6.25^4.27^9.02^3.87
-~13832~^~1300~^~Beef, rib, whole (ribs 6-12), separable lean and fat, trimmed to 1/8" fat, select, cooked, roasted~^~BEEF,RIB,WHL (RIBS 6-12),LN&FAT,1/8"FAT,SEL,CKD,RSTD~^^^^~Bone~^17^^6.25^4.27^9.02^3.87
-~13833~^~1300~^~Beef, rib, whole (ribs 6-12), separable lean and fat, trimmed to 1/8" fat, prime, raw~^~BEEF,RIB,WHL (RIBS 6-12),LN&FAT,1/8"FAT,PRIME,RAW~^~URMIS #1986~^^^~Bone~^16^^6.25^4.27^9.02^3.87
-~13834~^~1300~^~Beef, rib, whole (ribs 6-12), separable lean and fat, trimmed to 1/8" fat, prime, cooked, broiled~^~BEEF,RIB,WHL (RIBS 6-12),LN&FAT,1/8"FAT,PRIME,CKD,BRLD~^~URMIS #1986~^^^~Bone~^19^^6.25^4.27^9.02^3.87
-~13835~^~1300~^~Beef, rib, whole (ribs 6-12), separable lean and fat, trimmed to 1/8" fat, prime, cooked, roasted~^~BEEF,RIB,WHL (RIBS 6-12),LN&FAT,1/8"FAT,PRIME,CKD,RSTD~^~URMIS #1986~^^^~Bone~^20^^6.25^4.27^9.02^3.87
-~13838~^~1300~^~Beef, rib, large end (ribs 6-9), separable lean and fat, trimmed to 1/8" fat, all grades, raw~^~BEEF,RIB,LRG END (RIBS 6-9),LN&FAT,1/8"FAT,ALL GRDS,RAW~^^^^~Bone~^16^^6.25^4.27^9.02^3.87
-~13839~^~1300~^~Beef, rib, large end (ribs 6-9), separable lean and fat, trimmed to 1/8" fat, all grades, cooked, broiled~^~BEEF,RIB,LRG END (RIBS 6-9),LN&FAT,1/8"FAT,ALL GRDS,CKD,BRLD~^^^^~Bone~^21^^6.25^4.27^9.02^3.87
-~13840~^~1300~^~Beef, rib, large end (ribs 6-9), separable lean and fat, trimmed to 1/8" fat, all grades, cooked, roasted~^~BEEF,RIB,LRG END (RIBS 6-9),LN&FAT,1/8"FAT,ALL GRDS,CKD,RSTD~^^^~Y~^~Bone~^16^^6.25^4.27^9.02^3.87
-~13841~^~1300~^~Beef, rib, large end (ribs 6-9), separable lean and fat, trimmed to 1/8" fat, choice, raw~^~BEEF,RIB,LRG END (RIBS 6-9),LN&FAT,1/8"FAT,CHOIC,RAW~^^^^~Bone~^16^^6.25^4.27^9.02^3.87
-~13842~^~1300~^~Beef, rib, large end (ribs 6-9), separable lean and fat, trimmed to 1/8" fat, choice, cooked, broiled~^~BEEF,RIB,LRG END (RIBS 6-9),LN&FAT,1/8"FAT,CHOIC,CKD,BRLD~^^^^~Bone~^21^^6.25^4.27^9.02^3.87
-~13843~^~1300~^~Beef, rib, large end (ribs 6-9), separable lean and fat, trimmed to 1/8" fat, choice, cooked, roasted~^~BEEF,RIB,LRG END (RIBS 6-9),LN&FAT,1/8"FAT,CHOIC,CKD,RSTD~^^^^~Bone~^15^^6.25^4.27^9.02^3.87
-~13844~^~1300~^~Beef, rib, large end (ribs 6-9), separable lean and fat, trimmed to 1/8" fat, select, raw~^~BEEF,RIB,LRG END (RIBS 6-9),LN&FAT,1/8"FAT,SEL,RAW~^^^^~Bone~^17^^6.25^4.27^9.02^3.87
-~13845~^~1300~^~Beef, rib, large end (ribs 6-9), separable lean and fat, trimmed to 1/8" fat, select, cooked, broiled~^~BEEF,RIB,LRG END (RIBS 6-9),LN&FAT,1/8"FAT,SEL,CKD,BRLD~^^^^~Bone~^21^^6.25^4.27^9.02^3.87
-~13846~^~1300~^~Beef, rib, large end (ribs 6-9), separable lean and fat, trimmed to 1/8" fat, select, cooked, roasted~^~BEEF,RIB,LRG END (RIBS 6-9),LN&FAT,1/8"FAT,SEL,CKD,RSTD~^^^^~Bone~^16^^6.25^4.27^9.02^3.87
-~13847~^~1300~^~Beef, rib, large end (ribs 6-9), separable lean and fat, trimmed to 1/8" fat, prime, raw~^~BEEF,RIB,LRG END (RIBS 6-9),LN&FAT,1/8"FAT,PRIME,RAW~^~URMIS #2037~^^^~Bone~^14^^6.25^4.27^9.02^3.87
-~13848~^~1300~^~Beef, rib, large end (ribs 6-9), separable lean and fat, trimmed to 1/8" fat, prime, cooked, broiled~^~BEEF,RIB,LRG END (RIBS 6-9),LN&FAT,1/8"FAT,PRIME,CKD,BRLD~^~URMIS #2037~^^^~Bone~^18^^6.25^4.27^9.02^3.87
-~13849~^~1300~^~Beef, rib, large end (ribs 6-9), separable lean and fat, trimmed to 1/8" fat, prime, cooked, roasted~^~BEEF,RIB,LRG END (RIBS 6-9),LN&FAT,1/8"FAT,PRIME,CKD,RSTD~^~URMIS #2037~^^^~Bone~^19^^6.25^4.27^9.02^3.87
-~13850~^~1300~^~Beef, rib, small end (ribs 10-12), separable lean and fat, trimmed to 1/8" fat, all grades, raw~^~BEEF,RIB,SML END (RIBS 10-12),LN&FAT,1/8"FAT,ALL GRDS,RAW~^~Prime Rib~^^^~Bone and connective tissue~^5^^6.25^4.27^9.02^3.87
-~13851~^~1300~^~Beef, rib, small end (ribs 10-12), separable lean and fat, trimmed to 1/8" fat, all grades, cooked, broiled~^~BEEF,RIB,SML END (RIBS 10-12),LN&FAT,1/8"FAT,ALL GRDS,CKD,BR~^~Prime Rib~^^~Y~^~Bone and connective tissue~^7^^6.25^4.27^9.02^3.87
-~13852~^~1300~^~Beef, rib, small end (ribs 10-12), separable lean and fat, trimmed to 1/8" fat, all grades, cooked, roasted~^~BEEF,RIB,SML END (RIBS 10-12),LN&FAT,1/8"FAT,ALL GRDS,CKD,RS~^~Prime Rib~^^^~Bone~^19^^6.25^4.27^9.02^3.87
-~13853~^~1300~^~Beef, rib, small end (ribs 10-12), separable lean and fat, trimmed to 1/8" fat, choice, raw~^~BEEF,RIB,SML END (RIBS 10-12),LN&FAT,1/8"FAT,CHOIC,RAW~^~Prime Rib~^^^~Bone and connective tissue~^5^^6.25^4.27^9.02^3.87
-~13854~^~1300~^~Beef, rib, small end (ribs 10-12), separable lean and fat, trimmed to 1/8" fat, choice, cooked, broiled~^~BEEF,RIB,SML END (RIBS 10-12),LN&FAT,1/8"FAT,CHOIC,CKD,BRLD~^~Prime Rib~^^^~Bone and connective tissue~^7^^6.25^4.27^9.02^3.87
-~13855~^~1300~^~Beef, rib, small end (ribs 10-12), separable lean and fat, trimmed to 1/8" fat, choice, cooked, roasted~^~BEEF,RIB,SML END (RIBS 10-12),LN&FAT,1/8"FAT,CHOIC,CKD,RSTD~^~Prime Rib~^^^~Bone~^20^^6.25^4.27^9.02^3.87
-~13856~^~1300~^~Beef, rib, small end (ribs 10-12), separable lean and fat, trimmed to 1/8" fat, select, raw~^~BEEF,RIB,SML END (RIBS 10-12),LN&FAT,1/8"FAT,SEL,RAW~^~Prime Rib~^^^~Bone and connective tissue~^5^^6.25^4.27^9.02^3.87
-~13857~^~1300~^~Beef, rib, small end (ribs 10-12), separable lean and fat, trimmed to 1/8" fat, select, cooked, broiled~^~BEEF,RIB,SML END (RIBS 10-12),LN&FAT,1/8"FAT,SEL,CKD,BRLD~^~Prime Rib~^^^~Bone and connective tissue~^7^^6.25^4.27^9.02^3.87
-~13858~^~1300~^~Beef, rib, small end (ribs 10-12), separable lean and fat, trimmed to 1/8" fat, select, cooked, roasted~^~BEEF,RIB,SML END (RIBS 10-12),LN&FAT,1/8"FAT,SEL,CKD,RSTD~^~Prime Rib~^^^~Bone~^18^^6.25^4.27^9.02^3.87
-~13859~^~1300~^~Beef, rib, small end (ribs 10-12), separable lean and fat, trimmed to 1/8" fat, prime, raw~^~BEEF,RIB,SML END (RIBS 10-12),LN&FAT,1/8"FAT,PRIME,RAW~^~URMIS #2054, Prime Rib~^^^~Bone~^18^^6.25^4.27^9.02^3.87
-~13860~^~1300~^~Beef, rib, small end (ribs 10-12), separable lean and fat, trimmed to 1/8" fat, prime, cooked, broiled~^~BEEF,RIB,SML END (RIBS 10-12),LN&FAT,1/8"FAT,PRIME,CKD,BRLD~^~URMIS #2054, Prime Rib~^^^~Bone~^21^^6.25^4.27^9.02^3.87
-~13861~^~1300~^~Beef, rib, small end (ribs 10-12), separable lean and fat, trimmed to 1/8" fat, prime, cooked, roasted~^~BEEF,RIB,SML END (RIBS 10-12),LN&FAT,1/8"FAT,PRIME,CKD,RSTD~^~URMIS #2054, Prime Rib~^^^~Bone~^21^^6.25^4.27^9.02^3.87
-~13862~^~1300~^~Beef, shoulder top blade steak, boneless, separable lean and fat, trimmed to 0" fat, select, cooked, grilled~^~BEEF,SHLDR TOP BLDE STK,BNLS,LN & FAT,0" FAT,SEL,CKD,G~^~URMIS #1144~^^^~Connective tissue 17%~^17^^6.25^^^
-~13863~^~1300~^~Beef, shoulder top blade steak, boneless, separable lean and fat, trimmed to 0" fat, all grades, raw~^~BEEF,SHLDR TOP BLADE STEAK,BNLS,LN & FAT,0" FAT,ALL GRDS,RAW~^~URMIS #1144~^^^~Connective tissue 14%~^15^^6.25^^^
-~13864~^~1300~^~Beef, round, full cut, separable lean and fat, trimmed to 1/8" fat, choice, raw~^~BEEF,RND,FULL CUT,LN&FAT,1/8"FAT,CHOIC,RAW~^~URMIS #2316~^^~Y~^~Bone~^6^^6.25^4.27^9.02^3.87
-~13865~^~1300~^~Beef, round, full cut, separable lean and fat, trimmed to 1/8" fat, choice, cooked, broiled~^~BEEF,RND,FULL CUT,LN&FAT,1/8"FAT,CHOIC,CKD,BRLD~^~URMIS #2316~^^~Y~^~Bone~^8^^6.25^4.27^9.02^3.87
-~13866~^~1300~^~Beef, round, full cut, separable lean and fat, trimmed to 1/8" fat, select, raw~^~BEEF,RND,FULL CUT,LN&FAT,1/8"FAT,SEL,RAW~^~URMIS #1501~^^^~Bone~^6^^6.25^4.27^9.02^3.87
-~13867~^~1300~^~Beef, round, full cut, separable lean and fat, trimmed to 1/8" fat, select, cooked, broiled~^~BEEF,RND,FULL CUT,LN&FAT,1/8"FAT,SEL,CKD,BRLD~^~URMIS #1501~^^^~Bone~^8^^6.25^4.27^9.02^3.87
-~13868~^~1300~^~Beef, round, bottom round, steak, separable lean and fat, trimmed to 1/8" fat, all grades, raw~^~BEEF,RND,BTTM RND,STEAK,LN & FAT,1/8" FAT,ALL GRDS,RAW~^^^^~Bone and connective tissue~^2^^6.25^4.27^9.02^3.87
-~13869~^~1300~^~Beef, round, bottom round, steak, separable lean and fat, trimmed to 1/8" fat, all grades, cooked, braised~^~BEEF,RND,BTTM RND,STEAK,LN & FAT,1/8" FAT,ALL GRDS,CKD,BRSD~^^^~Y~^~Bone and connective tissue~^5^^6.25^4.27^9.02^3.87
-~13870~^~1300~^~Beef, round, bottom round, roast, separable lean and fat, trimmed to 1/8" fat, all grades, cooked, roasted~^~BEEF,RND,BTTM RND,RST,LN & FAT,1/8" FAT,ALL GRDS,CKD,RSTD~^^^^~Bone and connective tissue~^2^^6.25^4.27^9.02^3.87
-~13871~^~1300~^~Beef, round, bottom round, steak, separable lean and fat, trimmed to 1/8" fat, choice, raw~^~BEEF,RND,BTTM RND,STEAK,LN & FAT,1/8" FAT,CHOIC,RAW~^~URMIS #2279~^^^~Bone and connective tissue~^2^^6.25^4.27^9.02^3.87
-~13872~^~1300~^~Beef, round, bottom round, steak, separable lean and fat, trimmed to 1/8" fat, choice, cooked, braised~^~BEEF,RND,BTTM RND,STEAK,LN & FAT,1/8" FAT,CHOIC,CKD,BRSD~^~URMIS #2279~^^^~Bone and connective tissue~^5^^6.25^4.27^9.02^3.87
-~13873~^~1300~^~Beef, round, bottom round, roast, separable lean and fat, trimmed to 1/8" fat, choice, cooked, roasted~^~BEEF,RND,BTTM RND,RST,LN & FAT,1/8" FAT,CHOIC,CKD,RSTD~^~URMIS #2279~^^^~Bone and connective tissue~^2^^6.25^4.27^9.02^3.87
-~13874~^~1300~^~Beef, round, bottom round, steak, separable lean and fat, trimmed to 1/8" fat, select, raw~^~BEEF,RND,BTTM RND,STEAK,LN & FAT,1/8" FAT,SEL,RAW~^~URMIS #1464~^^^~Bone and connective tissue~^3^^6.25^4.27^9.02^3.87
-~13875~^~1300~^~Beef, round, bottom round, steak, separable lean and fat, trimmed to 1/8" fat, select, cooked, braised~^~BEEF,RND,BTTM RND,STEAK,LN & FAT,1/8" FAT,SEL,CKD,BRSD~^~URMIS #1464~^^^~Bone and connective tissue~^3^^6.25^4.27^9.02^3.87
-~13876~^~1300~^~Beef, round, bottom round, roast, separable lean and fat, trimmed to 1/8" fat, select, cooked, roasted~^~BEEF,RND,BTTM RND,RST,LN & FAT,1/8" FAT,SEL,CKD,RSTD~^~URMIS #1464~^^^~Bone and connective tissue~^2^^6.25^4.27^9.02^3.87
-~13877~^~1300~^~Beef, round, eye of round, roast, separable lean and fat, trimmed to 1/8" fat, all grades, raw~^~BEEF,RND,EYE OF RND,RST,LN & FAT,1/8" FAT,ALL GRDS,RAW~^^^^~Bone and connective tissue~^3^^6.25^4.27^9.02^3.87
-~13878~^~1300~^~Beef, round, eye of round, roast, separable lean and fat, trimmed to 1/8" fat, all grades, cooked, roasted~^~BEEF,RND,EYE OF RND,RST,LN & FAT,1/8" FAT,ALL GRDS,CKD,RSTD~^^^~Y~^~Bone and connective tissue~^1^^6.25^4.27^9.02^3.87
-~13879~^~1300~^~Beef, round, eye of round, roast, separable lean and fat, trimmed to 1/8" fat, choice, raw~^~BEEF,RND,EYE OF RND,RST,LN & FAT,1/8" FAT,CHOIC,RAW~^~URMIS #2295~^^^~Bone and connective tissue~^1^^6.25^4.27^9.02^3.87
-~13880~^~1300~^~Beef, round, eye of round, roast, separable lean and fat, trimmed to 1/8" fat, choice, cooked, roasted~^~BEEF,RND,EYE OF RND,RST,LN & FAT,1/8" FAT,CHOIC,CKD,RSTD~^~URMIS #2295~^^^~Bone and connective tissue~^1^^6.25^4.27^9.02^3.87
-~13881~^~1300~^~Beef, round, eye of round, roast, separable lean and fat, trimmed to 1/8" fat, select, raw~^~BEEF,RND,EYE OF RND,RST,LN & FAT,1/8" FAT,SEL,RAW~^~URMIS #1480~^^^~Bone and connective tissue~^3^^6.25^4.27^9.02^3.87
-~13882~^~1300~^~Beef, round, eye of round, roast, separable lean and fat, trimmed to 1/8" fat, select, cooked, roasted~^~BEEF,RND,EYE OF RND,RST,LN & FAT,1/8" FAT,SEL,CKD,RSTD~^~URMIS #1480~^^^~Bone and connective tissue 1%, sep fat 8%~^9^^6.25^4.27^9.02^3.87
-~13883~^~1300~^~Beef, round, tip round, separable lean and fat, trimmed to 1/8" fat, all grades, raw~^~BEEF,RND,TIP RND,LN&FAT,1/8"FAT,ALL GRDS,RAW~^^^^~Connective tissue~^4^^6.25^4.27^9.02^3.87
-~13884~^~1300~^~Beef, round, tip round, roast, separable lean and fat, trimmed to 1/8" fat, all grades, cooked, roasted~^~BEEF,RND,TIP RND,RST,LN & FAT,1/8" FAT,ALL GRDS,CKD,RSTD~^^^~Y~^~Connective tissue~^4^^6.25^4.27^9.02^3.87
-~13885~^~1300~^~Beef, round, tip round, separable lean and fat, trimmed to 1/8" fat, choice, raw~^~BEEF,RND,TIP RND,LN&FAT,1/8"FAT,CHOIC,RAW~^~URMIS # 2340~^^^~Connective tissue~^4^^6.25^4.27^9.02^3.87
-~13886~^~1300~^~Beef, round, tip round, roast, separable lean and fat, trimmed to 1/8" fat, choice, cooked, roasted~^~BEEF,RND,TIP RND,RST,LN & FAT,1/8" FAT,CHOIC,CKD,RSTD~^~URMIS # 2340~^^~Y~^~Connective tissue~^4^^6.25^4.27^9.02^3.87
-~13887~^~1300~^~Beef, round, tip round, separable lean and fat, trimmed to 1/8" fat, select, raw~^~BEEF,RND,TIP RND,LN&FAT,1/8"FAT,SEL,RAW~^~URMIS # 1525~^^^~Connective tissue~^3^^6.25^4.27^9.02^3.87
-~13888~^~1300~^~Beef, round, tip round, roast, separable lean and fat, trimmed to 1/8" fat, select, cooked, roasted~^~BEEF,RND,TIP RND,RST,LN & FAT,1/8" FAT,SEL,CKD,RSTD~^~URMIS # 1525~^^~Y~^~Connective tissue~^4^^6.25^4.27^9.02^3.87
-~13889~^~1300~^~Beef, shoulder top blade steak, boneless, separable lean and fat, trimmed to 0" fat, choice, raw~^~BEEF,SHLDR TOP BLADE STEAK,BNLESS,LN & FAT,0" FAT,CHOIC,RAW~^~URMIS #1144~^^^~Connective tissue 15%~^15^^6.25^^^
-~13890~^~1300~^~Beef, round, top round, separable lean only, trimmed to 1/8" fat, choice, cooked, pan-fried~^~BEEF,RND,TOP RND,LN,1/8" FAT,CHOIC,CKD,PAN-FRIED~^~URMIS #2368, Round Steak, London Broil, Minute Steak~^^~Y~^~Connective tissue~^1^^6.25^4.27^9.02^3.87
-~13891~^~1300~^~Beef, round, top round, steak, separable lean and fat, trimmed to 1/8" fat, all grades, raw~^~BEEF,RND,TOP RND,STEAK,LN & FAT,1/8" FAT,ALL GRDS,RAW~^~London Broil, Round Steak, Minute Steak~^^^^0^^6.25^4.27^9.02^3.87
-~13892~^~1300~^~Beef, round, top round, separable lean and fat, trimmed to 1/8" fat, all grades, cooked, braised~^~BEEF,RND,TOP RND,LN&FAT,1/8"FAT,ALL GRDS,CKD,BRSD~^~London Broil, Round Steak, Minute Steak~^^~Y~^~Connective tissue~^3^^6.25^4.27^9.02^3.87
-~13893~^~1300~^~Beef, round, top round steak, separable lean and fat, trimmed to 1/8" fat, all grades, cooked, broiled~^~BEEF,RND,TOP RND STEAK,LN & FAT,1/8" FAT,ALL GRDS,CKD,BRLD~^~London Broil, Round Steak, Minute Steak~^^~Y~^~Bone and connective tissue~^1^^^^^
-~13894~^~1300~^~Beef, round, top round, steak, separable lean and fat, trimmed to 1/8" fat, choice, raw~^~BEEF,RND,TOP RND,STEAK,LN & FAT,1/8" FAT,CHOIC,RAW~^~URMIS #2368, Round Steak, London Broil, Minute Steak~^^^^0^^6.25^4.27^9.02^3.87
-~13895~^~1300~^~Beef, round, top round, separable lean and fat, trimmed to 1/8" fat, choice, cooked, braised~^~BEEF,RND,TOP RND,LN&FAT,1/8"FAT,CHOIC,CKD,BRSD~^~URMIS #2368, Round Steak, London Broil, Minute Steak~^^^~Connective tissue~^2^^6.25^4.27^9.02^3.87
-~13896~^~1300~^~Beef, round, top round, steak, separable lean and fat, trimmed to 1/8" fat, choice, cooked, broiled~^~BEEF,RND,TOP RND,STEAK,LN & FAT,1/8" FAT,CHOIC,CKD,BRLD~^~URMIS #2368, Round Steak, London Broil, Minute Steak~^^^~Bone and connective tissue~^3^^6.25^4.27^9.02^3.87
-~13897~^~1300~^~Beef, round, top round, separable lean and fat, trimmed to 1/8" fat, choice, cooked, pan-fried~^~BEEF,RND,TOP RND,LN&FAT,1/8"FAT,CHOIC,CKD,PAN-FRIED~^~URMIS #2368, Round Steak, London Broil, Minute Steak~^^~Y~^~Connective tissue~^1^^6.25^4.27^9.02^3.87
-~13898~^~1300~^~Beef, round, top round, steak, separable lean and fat, trimmed to 1/8" fat, select, raw~^~BEEF,RND,TOP RND,STEAK,LN & FAT,1/8" FAT,SEL,RAW~^~URMIS #1553, Round Steak, London Broil, Minute Steak~^^^^0^^6.25^4.27^9.02^3.87
-~13899~^~1300~^~Beef, round, top round, separable lean and fat, trimmed to 1/8" fat, select, cooked, braised~^~BEEF,RND,TOP RND,LN&FAT,1/8"FAT,SEL,CKD,BRSD~^~URMIS #1553, Round Steak, London Broil, Minute Steak~^^^~Connective tissue~^3^^6.25^4.27^9.02^3.87
-~13900~^~1300~^~Beef, round, top round, steak, separable lean and fat, trimmed to 1/8" fat, select, cooked, broiled~^~BEEF,RND,TOP RND,STEAK,LN & FAT,1/8" FAT,SEL,CKD,BRLD~^~URMIS #1553, Round Steak, London Broil, Minute Steak~^^^~Bone and connective tissue~^2^^6.25^4.27^9.02^3.87
-~13901~^~1300~^~Beef, round, top round, separable lean and fat, trimmed to 1/8" fat, prime, raw~^~BEEF,RND,TOP RND,LN&FAT,1/8"FAT,PRIME,RAW~^~URMIS #2368, Round Steak, London Broil, Minute Steak~^^^~Connective tissue~^1^^6.25^4.27^9.02^3.87
-~13902~^~1300~^~Beef, round, top round, steak, separable lean and fat, trimmed to 1/8" fat, prime, cooked, broiled~^~BEEF,RND,TOP RND,STEAK,LN & FAT,1/8" FAT,PRIME,CKD,BRLD~^~URMIS #2368, Round Steak, London Broil, Minute Steak~^^^~Connective tissue~^1^^6.25^4.27^9.02^3.87
-~13903~^~1300~^~Beef, shoulder top blade steak, boneless, separable lean and fat, trimmed to 0" fat, select, raw~^~BEEF,SHLDR TOP BLADE STEAK,BNLESS,LN & FAT,0" FAT,SEL,RAW~^~URMIS #1144~^^^~Conncective tissue 14%~^14^^6.25^^^
-~13904~^~1300~^~Beef, brisket, flat half, boneless, separable lean and fat, trimmed to 0" fat, all grades, raw~^~BEEF,BRISKET,FLAT HALF,BNLESS,LN & FAT,0" FAT,ALL GRDS,RAW~^~URMIS #1623~^^^~Connective tissue 1%~^1^^6.25^^^
-~13905~^~1300~^~Beef, short loin, porterhouse steak, separable lean and fat, trimmed to 1/8" fat, choice, raw~^~BEEF,SHRT LOIN,PRTRHS STEAK,LN&FAT,1/8"FAT,CHOIC,RAW~^~URMIS # 2145, Porterhouse steak~^^^~Bone and connective tissue 23%~^23^^6.25^4.27^9.02^3.87
-~13906~^~1300~^~Beef, short loin, porterhouse steak, separable lean and fat, trimmed to 1/8" fat, choice, cooked, grilled~^~BEEF,SHRT LOIN,PRTRHS STK,LN & FAT,1/8" FAT,CHOIC,CKD,GRILLD~^~URMIS # 2145, Porterhouse steak~^^^~Bone and connective tissue 26%~^26^^6.25^4.27^9.02^3.87
-~13907~^~1300~^~Beef, short loin, t-bone steak, separable lean and fat, trimmed to 1/8" fat, choice, raw~^~BEEF,SHRT LOIN,T-BONE STEAK,LN&FAT,1/8"FAT,CHOIC,RAW~^~URMIS # 2184, T-Bone steak~^^^~Bone and connective tissue 25%~^25^^6.25^4.27^9.02^3.87
-~13908~^~1300~^~Beef, short loin, t-bone steak, separable lean and fat, trimmed to 1/8" fat, choice, cooked, grilled~^~BEEF,SHRT LN,T-BONE STK,L & F,1/8" FAT,CHOIC,CKD,GRILLED~^~URMIS # 2184, T-Bone Steak~^^^~Bone and connective tissue 28%~^28^^6.25^4.27^9.02^3.87
-~13909~^~1300~^~Beef, short loin, top loin, steak, separable lean and fat, trimmed to 1/8" fat, all grades, raw~^~BEEF,SHRT LOIN,TOP LOIN,STEAK,LN & FAT,1/8" FAT,ALL GRDS,RAW~^~Kansas City Strip, Club Steak, Boneless Strip Steak, New York Strip~^^^~Bone and Connective tissue 10%~^10^^6.25^4.27^9.02^3.87
-~13910~^~1300~^~Beef, loin, top loin, separable lean and fat, trimmed to 1/8" fat, all grades, cooked, grilled~^~BEEF,LOIN,TOP LOIN,LN & FAT,1/8" FAT,ALL GRDS,CKD,GRILLED~^~Kansas City Strip, Club Steak, Boneless Strip Steak, New York Strip~^^~Y~^~Bone and Connective tissue 12%~^12^^6.25^4.27^9.02^3.87
-~13911~^~1300~^~Beef, loin, top loin, separable lean and fat, trimmed to 1/8" fat, choice, raw~^~BEEF,LOIN,TOP LOIN,LN & FAT,1/8" FAT,CHOIC,RAW~^~URMIS # 2219, Club Steak, Kansas City Strip, New York Strip, Boneless strip steak~^^^~Bone and Connective tissue 10%~^10^^6.25^4.27^9.02^3.87
-~13912~^~1300~^~Beef, short loin, top loin, steak, separable lean and fat, trimmed to 1/8" fat, choice, cooked, grilled~^~BEEF,SHRT LOIN,TOP LN,STK,LN & FAT,1/8" FAT,CHOIC,CKD,GRLLD~^~URMIS # 2219, Boneless Strip Steak, Kansas City Strip, New York Strip, Club Steak~^^~Y~^~Bone and Connective tissue 12%~^8^^6.25^4.27^9.02^3.87
-~13913~^~1300~^~Beef, loin, top loin, separable lean and fat, trimmed to 1/8" fat, select, raw~^~BEEF,LOIN,TOP LOIN,LN & FAT,1/8" FAT,SEL,RAW~^~URMIS # 1404, Club Steak, Kansas City Strip, New York Strip, Boneless strip steak~^^^~Bone and Connective tissue 9%~^9^^6.25^4.27^9.02^3.87
-~13914~^~1300~^~Beef, loin, top loin, separable lean and fat, trimmed to 1/8" fat, select, cooked, grilled~^~BEEF,LOIN,TOP LOIN,LN & FAT,1/8" FAT,SEL,CKD,GRILLED~^~URMIS # 1404, Boneless Strip Steak, Kansas City Strip, New York Strip, Club Steak~^^^~Bone and Connective tissue 12%~^12^^6.25^4.27^9.02^3.87
-~13915~^~1300~^~Beef, short loin, top loin, steak, separable lean and fat, trimmed to 1/8" fat, prime, raw~^~BEEF,SHRT LOIN,TOP LOIN,STEAK,LN & FAT,1/8" FAT,PRIME,RAW~^~Kansas City Strip, Club Steak, New York Strip~^^^~Connective tissue~^6^^6.25^4.27^9.02^3.87
-~13916~^~1300~^~Beef, short loin, top loin, separable lean and fat, trimmed to 1/8" fat, prime, cooked, broiled~^~BEEF,SHRT LOIN,TOP LOIN,LN&FAT,1/8"FAT,PRIME,CKD,BRLD~^~Kansas City Strip, Club Steak, New York Strip~^^^~Connective tissue~^8^^6.25^4.27^9.02^3.87
-~13917~^~1300~^~Beef, tenderloin, steak, separable lean and fat, trimmed to 1/8" fat, all grades, raw~^~BEEF,TENDERLOIN,STEAK,LN & FAT,1/8" FAT,ALL GRDS,RAW~^~Filet Mignon, Beef Medallions~^^^~Bone and connective tissue 2%~^2^^6.25^4.27^9.02^3.87
-~13918~^~1300~^~Beef, tenderloin, steak, separable lean and fat, trimmed to 1/8" fat, all grades, cooked, broiled~^~BEEF,TENDERLOIN,STEAK,LN & FAT,1/8" FAT,ALL GRDS,CKD,BRLD~^~Filet Mignon, Beef Medallions~^^~Y~^~Bone and connective tissue~^4^^6.25^4.27^9.02^3.87
-~13919~^~1300~^~Beef, tenderloin, roast, separable lean and fat, trimmed to 1/8" fat, all grades, cooked, roasted~^~BEEF,TENDERLOIN,RST,LN & FAT,1/8" FAT,ALL GRDS,CKD,RSTD~^~Filet Mignon, Beef Medallions~^^^~Connective tissue~^2^^6.25^4.27^9.02^3.87
-~13920~^~1300~^~Beef, tenderloin, steak, separable lean and fat, trimmed to 1/8" fat, choice, raw~^~BEEF,TENDERLOIN,STEAK,LN & FAT,1/8" FAT,CHOIC,RAW~^~URMIS #1388, Filet Mignon, Beef Medallions~^^^~Bone and connective tissue~^3^^6.25^4.27^9.02^3.87
-~13921~^~1300~^~Beef, tenderloin, steak, separable lean and fat, trimmed to 1/8" fat, choice, cooked, broiled~^~BEEF,TENDERLOIN,STEAK,LN & FAT,1/8" FAT,CHOIC,CKD,BRLD~^~URMIS #1388, Filet Mignon, Beef Medallions~^^^~Bone and connective tissue~^4^^6.25^4.27^9.02^3.87
-~13922~^~1300~^~Beef, tenderloin, roast, separable lean and fat, trimmed to 1/8" fat, choice, cooked, roasted~^~BEEF,TENDERLOIN,RST,LN & FAT,1/8" FAT,CHOIC,CKD,RSTD~^~URMIS #1386, Filet Mignon, Beef Medallions~^^^~Connective tissue~^2^^6.25^4.27^9.02^3.87
-~13923~^~1300~^~Beef, tenderloin, steak, separable lean and fat, trimmed to 1/8" fat, select, raw~^~BEEF,TENDERLOIN,STEAK,LN & FAT,1/8" FAT,SEL,RAW~^~URMIS #1388, Filet Mignon, Beef Medallions~^^^~Bone and connective tissue~^2^^6.25^4.27^9.02^3.87
-~13924~^~1300~^~Beef, tenderloin, steak, separable lean and fat, trimmed to 1/8" fat, select, cooked, broiled~^~BEEF,TENDERLOIN,STEAK,LN & FAT,1/8" FAT,SEL,CKD,BRLD~^~URMIS #1388, Filet Mignon, Beef Medallions~^^^~Bone and connective tissue~^4^^6.25^4.27^9.02^3.87
-~13925~^~1300~^~Beef, tenderloin, roast, separable lean and fat, trimmed to 1/8" fat, select, cooked, roasted~^~BEEF,TENDERLOIN,RST,LN & FAT,1/8" FAT,SEL,CKD,RSTD~^~URMIS #1386, Filet Mignon, Beef Medallions~^^^~Connective tissue~^2^^6.25^4.27^9.02^3.87
-~13926~^~1300~^~Beef, tenderloin, separable lean and fat, trimmed to 1/8" fat, prime, raw~^~BEEF,TENDERLOIN,LN&FAT,1/8"FAT,PRIME,RAW~^~Filet Mignon, Beef Medallions~^^^~Connective tissue~^3^^6.25^4.27^9.02^3.87
-~13927~^~1300~^~Beef, tenderloin, steak, separable lean and fat, trimmed to 1/8" fat, prime, cooked, broiled~^~BEEF,TENDERLOIN,STEAK,LN & FAT,1/8" FAT,PRIME,CKD,BRLD~^~URMIS #1388, Filet Mignon, Beef Medallions~^^^~Connective tissue~^3^^6.25^4.27^9.02^3.87
-~13928~^~1300~^~Beef, tenderloin, roast, separable lean and fat, trimmed to 1/8" fat, prime, cooked, roasted~^~BEEF,TENDERLOIN,RST,LN & FAT,1/8" FAT,PRIME,CKD,RSTD~^~URMIS #1386, Filet Mignon, Beef Medallions~^^~Y~^~Connective tissue~^3^^6.25^4.27^9.02^3.87
-~13929~^~1300~^~Beef, top sirloin, steak, separable lean and fat, trimmed to 1/8" fat, all grades, raw~^~BEEF,TOP SIRLOIN,STEAK,LN & FAT,1/8" FAT,ALL GRDS,RAW~^~Sirloin strip, Sirloin steak~^^^~Bone and connective tissue~^3^^6.25^4.27^9.02^3.87
-~13930~^~1300~^~Beef, top sirloin, steak, separable lean and fat, trimmed to 1/8" fat, all grades, cooked, broiled~^~BEEF,TOP SIRLOIN,STEAK,LN & FAT,1/8" FAT,ALL GRDS,CKD,BRLD~^~Sirloin strip, Sirloin steak~^^~Y~^~Bone and connective tissue~^4^^6.25^4.27^9.02^3.87
-~13931~^~1300~^~Beef, top sirloin, steak, separable lean and fat, trimmed to 1/8" fat, choice, raw~^~BEEF,TOP SIRLOIN,STEAK,LN & FAT,1/8" FAT,CHOIC,RAW~^~URMIS #2237, Sirloin steak, Sirloin strip~^^^~Bone and connective tissue~^3^^6.25^4.27^9.02^3.87
-~13932~^~1300~^~Beef, top sirloin, steak, separable lean and fat, trimmed to 1/8" fat, choice, cooked, broiled~^~BEEF,TOP SIRLOIN,STEAK,LN & FAT,1/8" FAT,CHOIC,CKD,BRLD~^~URMIS #2237, Sirloin steak, Sirloin strip~^^^~Bone and connective tissue~^4^^6.25^4.27^9.02^3.87
-~13933~^~1300~^~Beef, top sirloin, steak, separable lean and fat, trimmed to 1/8" fat, choice, cooked, pan-fried~^~BEEF,TOP SIRLOIN,STEAK,LN & FAT,1/8" FAT,CHOIC,CKD,PAN-FRIED~^~URMIS #2237, Sirloin steak, Sirloin strip~^^~Y~^~Connective tissue~^2^^6.25^4.27^9.02^3.87
-~13934~^~1300~^~Beef, top sirloin, steak, separable lean and fat, trimmed to 1/8" fat, select, raw~^~BEEF,TOP SIRLOIN,STEAK,LN & FAT,1/8" FAT,SEL,RAW~^~URMIS #1422, Sirloin steak, Sirloin strip~^^^~Bone and connective tissue~^3^^6.25^4.27^9.02^3.87
-~13935~^~1300~^~Beef, top sirloin, steak, separable lean and fat, trimmed to 1/8" fat, select, cooked, broiled~^~BEEF,TOP SIRLOIN,STEAK,LN & FAT,1/8" FAT,SEL,CKD,BRLD~^~URMIS #1422, Sirloin steak, Sirloin strip~^^^~Bone and connective tissue~^5^^6.25^4.27^9.02^3.87
-~13937~^~1300~^~Beef, chuck, clod roast, separable lean only, trimmed to 0" fat, choice, cooked, roasted~^~BEEF,CHUCK,CLOD RST,LN,0" FAT,CHOIC,CKD,RSTD~^~URMIS #1947~^^^~Bone and heavy connective tissue, 3%, separable fat, 8%~^11^^6.25^4.27^9.02^3.87
-~13940~^~1300~^~Beef, chuck, clod roast, separable lean only, trimmed to 0" fat, select, cooked, roasted~^~BEEF,CHUCK,CLOD RST,LN,0" FAT,SEL,CKD,RSTD~^~URMIS #1132~^^^~Bone and heavy connective tissue, 5%, separable fat, 4%~^9^^6.25^4.27^9.02^3.87
-~13943~^~1300~^~Beef, shoulder steak, boneless, separable lean only, trimmed to 0" fat, choice, cooked, grilled~^~Beef, shoulder steak, boneless, lean only, 0", choice, grill~^~URMIS #1133~^^^~Connective tissue 6%, seam fat 2%~^8^^6.25^4.27^9.02^3.87
-~13946~^~1300~^~Beef, shoulder steak, boneless, separable lean only, trimmed to 0" fat, select, cooked, grilled~^~BEEF,SHLDR STEAK,BNLESS,LN,0" FAT,SEL,CKD,GRILLED~^~URMIS #1133~^^^~Connective tissue 6%, seam fat 2%~^8^^6.25^4.27^9.02^3.87
-~13948~^~1300~^~Beef, flank, steak, separable lean and fat, trimmed to 0" fat, all grades, cooked, broiled~^~BEEF,FLANK,STEAK,LN & FAT,0" FAT,ALL GRDS,CKD,BRLD~^^^^^0^^6.25^4.27^9.02^3.87
-~13949~^~1300~^~Beef, flank, steak, separable lean and fat, trimmed to 0" fat, select, cooked, broiled~^~BEEF,FLANK,STEAK,LN & FAT,0" FAT,SEL,CKD,BRLD~^~URMIS #1584~^^^^0^^6.25^4.27^9.02^3.87
-~13950~^~1300~^~Beef, brisket, flat half, separable lean and fat, trimmed to 0" fat, select, cooked, braised~^~BEEF,BRISKET,FLAT HALF,LN & FAT,0" FAT,SEL,CKD,BRSD~^~URMIS #1623~^^^^0^^6.25^4.27^9.02^3.87
-~13951~^~1300~^~Beef, rib eye, small end (ribs 10-12), separable lean and fat, trimmed to 0" fat, select, cooked, broiled~^~BEEF,RIB EYE,SML END (RIBS 10-12),LN & FAT,0",SEL,CKD,BRLD~^~ribeye~^^^~Bone and connective tissue~^8^^6.25^4.27^9.02^3.87
-~13952~^~1300~^~Beef, rib eye, small end (ribs 10-12), separable lean and fat, trimmed to 0" fat, all grades, cooked, broiled~^~BEEF,RIBEYE,SML END(RIBS 10-12),LN&FAT,0",ALL GRDS,CKD,BRLD~^~ribeye~^^^~Bone and connective tissue~^8^^6.25^4.27^9.02^3.87
-~13953~^~1300~^~Beef, bottom sirloin, tri-tip roast, separable lean and fat, trimmed to 0" fat, all grades, cooked, roasted~^~BF,BTTM SRLOIN,TRI-TIP RST,LN & FAT,0" FAT,ALL GRDS,CKD,RSTD~^^^^~Bone and connective tissue~^2^^6.25^4.27^9.02^3.87
-~13954~^~1300~^~Beef, bottom sirloin, tri-tip roast, separable lean and fat, trimmed to 0" fat, all grades, raw~^~BEEF,BTTM SIRLOIN,TRI-TIP RST,LN & FAT,0" FAT,ALL GRDS,RAW~^^^^~Bone and connective tissue~^1^^6.25^4.27^9.02^3.87
-~13955~^~1300~^~Beef, bottom sirloin, tri-tip roast, separable lean and fat, trimmed to 0" fat, choice, cooked, roasted~^~BEEF,BTTM SIRLOIN,TRI-TIP RST,LN & FAT,0" FAT,CHOIC,CKD,RSTD~^~URMIS #2244~^^^~Bone and connective tissue~^2^^6.25^4.27^9.02^3.87
-~13956~^~1300~^~Beef, bottom sirloin, tri-tip roast, separable lean and fat, trimmed to 0" fat, choice, raw~^~BEEF,BTTM SIRLOIN,TRI-TIP RST,LN & FAT,0" FAT,CHOIC,RAW~^~URMIS #2244~^^^~Bone and connective tissue~^2^^6.25^4.27^9.02^3.87
-~13957~^~1300~^~Beef, bottom sirloin, tri-tip roast, separable lean and fat, trimmed to 0" fat, select, cooked, roasted~^~BEEF,BTTM SIRLOIN,TRI-TIP RST,LN & FAT,0" FAT,SEL,CKD,RSTD~^~URMIS #1429~^^^~Bone and connective tissue~^1^^6.25^4.27^9.02^3.87
-~13958~^~1300~^~Beef, bottom sirloin, tri-tip roast, separable lean and fat, trimmed to 0" fat, select, raw~^~BEEF,BTTM SIRLOIN,TRI-TIP RST,LN & FAT,0" FAT,SEL,RAW~^~URMIS #1429~^^^~Bone and connective tissue~^1^^6.25^4.27^9.02^3.87
-~13959~^~1300~^~Beef, round, top round steak, boneless, separable lean and fat, trimmed to 0" fat, all grades, cooked, grilled~^~BEEF,RND,TOP RND STK,BNLS,LN & FAT,0" FAT,ALL GRDS,CKD,GRLD~^~Top Round Steak~^^~Y~^^0^^6.25^4.27^9.02^3.87
-~13961~^~1300~^~Beef, chuck, mock tender steak, separable lean only, trimmed to 0" fat, choice, cooked, broiled~^~BEEF,CHUCK,MOCK TENDER STEAK,LN,0" FAT,CHOIC,CKD,BRLD~^~URMIS #1931, Mock Tender Steak~^^^~Bone and heavy connective tissue, 5%, separable fat, 0%~^5^^6.25^4.27^9.02^3.87
-~13963~^~1300~^~Beef, chuck, mock tender steak, separable lean only, trimmed to 0" fat, select, cooked, broiled~^~BEEF,CHUCK,MOCK TENDER STEAK,LN,0" FAT,SEL,CKD,BRLD~^~URMIS #1116, Mock Tender Steak~^^^~Bone and heavy connective tissue, 3%, separable fat, 0%~^3^^6.25^4.27^9.02^3.87
-~13965~^~1300~^~Beef, chuck, top blade, separable lean only, trimmed to 0" fat, choice, cooked, broiled~^~BEEF,CHUCK,TOP BLADE,LN,0" FAT,CHOIC,CKD,BRLD~^~URMIS #1959, Top Blade Roast, Boneless~^^^~Bone and heavy connective tissue, 13%, separable fat, 2%~^15^^6.25^4.27^9.02^3.87
-~13967~^~1300~^~Beef, chuck, top blade, separable lean only, trimmed to 0" fat, select, cooked, broiled~^~BEEF,CHUCK,TOP BLADE,LN,0" FAT,SEL,CKD,BRLD~^~URMIS #1144, Top Blade Roast, Boneless~^^^~Bone and heavy connective tissue, 16%, separable fat, 3%~^19^^6.25^4.27^9.02^3.87
-~13968~^~1300~^~Beef, round, top round steak, boneless, separable lean and fat, trimmed to 0" fat, choice, cooked, grilled~^~BEEF,RND,TOP RND STK,BNLS,LN & FAT,0" FAT,CHOIC,CKD,GRLD~^~URMIS #2368, Top Round Steak~^^^^0^^6.25^4.27^9.02^3.87
-~13969~^~1300~^~Beef, round, top round steak, boneless, separable lean and fat, trimmed to 0" fat, select, cooked, grilled~^~BEEF,RND,TOP RND STEAK,BNLS,LN & FAT,0" FAT,SEL,CKD,GRLD~^~URMIS #1553, Top Round Steak~^^^^0^^6.25^4.27^9.02^3.87
-~13970~^~1300~^~Beef, flank, steak, separable lean and fat, trimmed to 0" fat, all grades, raw~^~BEEF,FLANK,STEAK,LN & FAT,0" FAT,ALL GRDS,RAW~^^^^^0^^6.25^4.27^9.02^3.87
-~13971~^~1300~^~Beef, flank, steak, separable lean and fat, trimmed to 0" fat, select, raw~^~BEEF,FLANK,STEAK,LN & FAT,0" FAT,SEL,RAW~^~URMIS #1584~^^^~Bone and connective tissue~^1^^6.25^4.27^9.02^3.87
-~13972~^~1300~^~Beef, chuck eye roast, boneless, America's Beef Roast, separable lean only, trimmed to 0" fat, all grades, raw~^~BEEF,CHK EYE RST,BNL,AMERICA'S BF RST,LN,0" FAT,ALL GRD, RAW~^~URMIS #1095, Beef, Chuck, Chuck Eye Rst, (America's Beef Rst)~^^^~Connective tissue 8%, seam fat 10%~^18^^6.25^^^
-~13973~^~1300~^~Beef, chuck eye roast, boneless, America's Beef Roast, separable lean only, trimmed to 0" fat, choice, raw~^~BEEF,CHK EYE RST,BNL,AMERICA'S BF RST,LN,0" FAT,CHOIC,RAW~^~URMIS #1095, Beef, Chuck, Chuck Eye Rst, (America's Beef Rst)~^^^~Connective tissue 9%, seam fat 11%~^20^^6.25^^^
-~13974~^~1300~^~Beef, chuck eye roast, boneless, America's Beef Roast, separable lean only, trimmed to 0" fat, select, raw~^~BEEF,CHUCK EYE RST,BNLESS,AMERICA'S BF RST,LN,0" FAT,SEL,RAW~^~URMIS #1095, Beef, Chuck, Chuck Eye Rst, (America's Beef Rst)~^^^~Connective tissue 6%, seam fat 9%~^15^^6.25^^^
-~13975~^~1300~^~Beef, brisket, flat half, boneless, separable lean and fat, trimmed to 0" fat, choice, raw~^~BEEF,BRISKET,FLAT HALF,BNLESS,LN & FAT,0" FAT,CHOIC,RAW~^~URMIS #1623~^^^~Connective tissue 1%~^1^^6.25^^^
-~13977~^~1300~^~Beef, plate, inside skirt steak, separable lean only, trimmed to 0" fat, all grades, cooked, broiled~^~BEEF,PLATE,INSIDE SKIRT STEAK,LN,0" FAT,ALL GRDS,CKD,BRLD~^~Plate Skirt Steak~^^^~Bone and heavy connective tissue, 0%, separable fat, 3%~^3^^6.25^4.27^9.02^3.87
-~13979~^~1300~^~Beef, plate, outside skirt steak, separable lean only, trimmed to 0" fat, all grades, cooked, broiled~^~BEEF,PLATE,OUTSIDE SKIRT STEAK,LN,0" FAT,ALL GRDS,CKD,BRLD~^~Plate Skirt Steak~^^^~Bone and heavy connective tissue, 0%, separable fat, 5%~^5^^6.25^4.27^9.02^3.87
-~13980~^~1300~^~Beef, chuck, short ribs, boneless, separable lean only, trimmed to 0" fat, choice, cooked, braised~^~BEEF, CHUCK, SHORT RIBS, BNL, 0" FAT, CHOICE, CKED, BR~^~Beef, Chuck, Short Ribs, URMIS #1127~^^^~Connective tissue 7%, Seam fat 20%~^27^^6.25^^^
-~13981~^~1300~^~Beef, chuck, short ribs, boneless, separable lean only, trimmed to 0" fat, select, cooked, braised~^~BEEF,CHUCK,SHRT RIBS,BNLESS,LN,0" FAT,SEL,CKD,BRSD~^~Beef, Chuck, Short Ribs, URMIS #1127~^^^~Connnective tissue 6%, seam fat 18%~^24^^6.25^^^
-~13982~^~1300~^~Beef, chuck, short ribs, boneless, separable lean only, trimmed to 0" fat, all grades, cooked, braised~^~BEEF,CHUCK,SHRT RIBS,BNLESS,LN,0" FAT,ALL GRDS,CKD,BRSD~^~Beef, Chuck, Short Ribs, URMIS #1127~^^^~Connective tissue 6%, seam fat 20%~^26^^6.25^^^
-~13983~^~1300~^~Beef, brisket, flat half, boneless, separable lean and fat, trimmed to 0" fat, select, raw~^~BEEF,BRISKET,FLAT HALF,BNLESS,LN & FAT,0" FAT,SEL,RAW~^~URMIS #1623~^^^~Connective tissue 1%~^1^^6.25^^^
-~13985~^~1300~^~Beef, loin, bottom sirloin butt, tri-tip roast, separable lean only, trimmed to 0" fat, all grades, cooked, roasted~^~BF,LOIN,BTTM SIRLOIN BUTT,TRI-TIP,LN,0" FAT,ALL GRD,CKD,RSTD~^^^^~Bone and connective tissue 1.58%, separable fat 4.34%~^6^^6.25^^^
-~14003~^~1400~^~Alcoholic beverage, beer, regular, all~^~ALCOHOLIC BEV,BEER,REG,ALL~^^^~Y~^^0^^6.25^3.87^8.37^4.12
-~14004~^~1400~^~Alcoholic beverage, beer, regular, BUDWEISER~^~ALCOHOLIC BEV,BEER,REG,BUDWEISER~^^~Anheuser-Busch, Inc.~^^^0^^6.25^^^
-~14005~^~1400~^~Alcoholic beverage, beer, light, BUDWEISER SELECT~^~ALCOHOLIC BEV,BEER,LT,BUDWEISER SEL~^^~Anheuser-Busch, Inc.~^^^0^^^^^
-~14006~^~1400~^~Alcoholic beverage, beer, light~^~ALCOHOLIC BEV,BEER,LT~^^^~Y~^^0^^6.25^3.87^8.37^4.12
-~14007~^~1400~^~Alcoholic beverage, beer, light, BUD LIGHT~^~ALCOHOLIC BEV,BEER,LT,BUD LT~^^~Anheuser-Busch, Inc.~^^^0^^6.25^^^
-~14009~^~1400~^~Alcoholic beverage, daiquiri, canned~^~ALCOHOLIC BEV,DAIQUIRI,CND~^^^^^0^^6.25^3.40^8.40^3.90
-~14010~^~1400~^~Alcoholic beverage, daiquiri, prepared-from-recipe~^~ALCOHOLIC BEV,DAIQUIRI,PREPARED-FROM-RECIPE~^^^^^0^^0.00^^^
-~14013~^~1400~^~Alcoholic beverage, beer, light, low carb~^~ALCOHOLIC BEV,BEER,LT,LO CARB~^^~Anheuser-Busch, Inc.~^~Y~^^0^^^^^
-~14015~^~1400~^~Alcoholic beverage, pina colada, canned~^~ALCOHOLIC BEV,PINA COLADA,CND~^^^^^0^^6.25^3.40^8.50^3.90
-~14016~^~1400~^~Beverages, almond milk, sweetened, vanilla flavor, ready-to-drink~^~BEVERAGES,ALMOND MILK,SWTND,VANILLA FLAVOR,RTD~^^^~Y~^^0^^6.38^^^
-~14017~^~1400~^~Alcoholic beverage, pina colada, prepared-from-recipe~^~ALCOHOLIC BEV,PINA COLADA,PREPARED-FROM-RECIPE~^^^^^0^^0.00^^^
-~14019~^~1400~^~Alcoholic beverage, tequila sunrise, canned~^~ALCOHOLIC BEV,TEQUILA SUNRISE,CND~^^^^^0^^6.25^3.40^8.40^3.90
-~14021~^~1400~^~Beverages, Energy drink, Citrus~^~BEVERAGES,ENERGY DRK,CITRUS~^^^~Y~^^0^^^^^
-~14022~^~1400~^~Beverages, MONSTER energy drink, low carb~^~BEVERAGES,MONSTER ENERGY DRK,LO CARB~^^~Monster energy company~^~Y~^^0^^6.25^^^
-~14024~^~1400~^~Beverages, Whiskey sour mix, powder~^~BEVERAGES,WHISKEY SOUR MIX,PDR~^^^^^0^^6.25^3.40^8.40^3.90
-~14025~^~1400~^~Alcoholic beverage, whiskey sour, prepared with water, whiskey and powder mix~^~ALCOHOLIC BEV,WHISKEY SOUR,PREP W/ H2O,WHISKEY & PDR MIX~^^^^^0^^^^^
-~14026~^~1400~^~Beverages, THE COCA-COLA COMPANY, NOS Zero, energy drink, sugar-free with guarana, fortified with vitamins B6 and B12~^~BEV, COCA-COLA COMY,NOS 0,ENEY DRK,SUG-FRE, GUANA, B6 & B12~^^~The Coca-Cola Company~^~Y~^^0^^6.25^^^
-~14027~^~1400~^~Alcoholic beverage, whiskey sour, canned~^~ALCOHOLIC BEV,WHISKEY SOUR,CND~^^^^^0^^6.25^3.40^8.40^3.90
-~14028~^~1400~^~Beverages, Whiskey sour mix, bottled~^~BEVERAGES,WHISKEY SOUR MIX,BTLD~^^^~Y~^^0^^6.25^4.00^9.00^4.00
-~14029~^~1400~^~Alcoholic beverage, whiskey sour, prepared from item 14028~^~ALCOHOLIC BEV,WHISKEY SOUR,PREP FROM ITEM 14028~^^^^^0^^0.00^^^
-~14030~^~1400~^~Beverages, THE COCA-COLA COMPANY, NOS energy drink, Original, grape, loaded cherry, charged citrus, fortified with vitamins B6 and B12~^~BEV,COCA-COLA CO,NOS ENGY ,OGN,GRPE,CHERY,CITR, VIT B6 & B12~^^~The Coca-Cola Company~^~Y~^^0^^6.25^^^
-~14031~^~1400~^~Beverages, water, bottled, yumberry, pomegranate with anti-oxidants, zero calories~^~BEV,H2O,BTLD,YUMBERRY,POMEGRANATE W/ ANTI-OXIDANTS, 0 CAL~^^^~Y~^^0^^6.25^^^
-~14033~^~1400~^~Beverages, ABBOTT, EAS whey protein powder~^~BEVERAGES,ABBOTT,EAS WHEY PROT PDR~^^~Abbott's Ross Products Division~^~Y~^^0^^6.25^^^
-~14034~^~1400~^~Alcoholic beverage, creme de menthe, 72 proof~^~ALCOHOLIC BEV,CREME DE MENTHE,72 PROOF~^^^~Y~^^0^^6.25^2.44^8.37^3.90
-~14035~^~1400~^~Beverages, ABBOTT, EAS soy protein powder~^~BEVERAGES,ABBOTT,EAS SOY PROT PDR~^^~Abbott's Ross Products Division~^~Y~^^0^^6.25^^^
-~14036~^~1400~^~Beverages, CYTOSPORT, Muscle Milk, ready-to-drink~^~BEVERAGES,CYTOSPORT,MUSCLE MILK,RTD~^^~CytoSport~^~Y~^^0^^6.25^^^
-~14037~^~1400~^~Alcoholic beverage, distilled, all (gin, rum, vodka, whiskey) 80 proof~^~ALCOHOLIC BEV,DISTILLED,ALL (GIN,RUM,VODKA,WHISKEY) 80 PROOF~^^^~Y~^^0^^6.25^^^4.12
-~14038~^~1400~^~Beverages, OCEAN SPRAY, Cran-Energy, Cranberry Energy Juice Drink~^~BEVERAGES,OCEAN SPRAY,CRAN-ENERGY,CRANBERRY ENERGY JUC DRK~^^~Ocean Spray Cranberries, Inc.~^~Y~^^0^^6.25^^^
-~14041~^~1400~^~Beverages, NESTLE, Boost plus, nutritional drink, ready-to-drink~^~BEVERAGES,NESTLE,BOOST PLUS,NUTRITIONAL DRK,RTD~^^~Nestle USA, Inc.~^~Y~^^0^^6.38^^^
-~14044~^~1400~^~Beverages, SLIMFAST, Meal replacement, High Protein Shake, Ready-To-Drink, 3-2-1 plan~^~BEVERAGES,SLIMFAST,MEAL REPLCMNT,HI PROT SHAKE,RTD,3-2-1~^^~Unilever~^~Y~^^0^^^^^
-~14045~^~1400~^~Beverages, UNILEVER, SLIMFAST, meal replacement, regular, ready-to-drink, 3-2-1 Plan~^~BEVERAGES,UNILEVER,SLIMFAST,MEAL REPLCMNT,REG,RTD,3-2-1 PLAN~^^~Unilever~^~Y~^^0^^6.38^^^
-~14047~^~1400~^~Beverages, UNILEVER, SLIMFAST Shake Mix, powder, 3-2-1 Plan~^~BEVERAGES,UNILEVER,SLIMFAST SHAKE MIX,PDR,3-2-1 PLAN~^^~Unilever~^~Y~^^0^^6.25^^^
-~14048~^~1400~^~Beverages, FUZE, orange mango, fortified with vitamins A, C, E, B6~^~BEVERAGES,FUZE,ORANGE MANGO,FORT W/ VITAMINS A,C,E,B6~^^^^^0^^6.25^^^
-~14050~^~1400~^~Alcoholic beverage, distilled, rum, 80 proof~^~ALCOHOLIC BEV,DISTILLED,RUM,80 PROOF~^^^~Y~^^0^^6.25^^^4.12
-~14051~^~1400~^~Alcoholic beverage, distilled, vodka, 80 proof~^~ALCOHOLIC BEV,DISTILLED,VODKA,80 PROOF~^^^^^0^^6.25^^^4.12
-~14052~^~1400~^~Alcoholic beverage, distilled, whiskey, 86 proof~^~ALCOHOLIC BEV,DISTILLED,WHISKEY,86 PROOF~^^^^^0^^6.25^^^4.12
-~14054~^~1400~^~Beverages, almond milk, chocolate, ready-to-drink~^~BEVERAGES,ALMOND MILK,CHOC,RTD~^^^~Y~^^0^^^^^
-~14055~^~1400~^~Beverages, UNILEVER, SLIMFAST Shake Mix, high protein, whey powder, 3-2-1 Plan,~^~BEVERAG,UNILEV,SLIMFAST SHAKE ,HI PROT,WHEY PDR,3-2-1 PLAN,~^^~Unilever~^~Y~^^0^^6.38^^^
-~14056~^~1400~^~Beverages, Acai berry drink, fortified~^~BEVERAGES,ACAI BERRY DRK,FORT~^^^~Y~^^0^^6.25^^^
-~14057~^~1400~^~Alcoholic beverage, wine, dessert, sweet~^~ALCOHOLIC BEV,WINE,DSSRT,SWT~^^^~Y~^^0^^6.25^3.36^8.37^3.92
-~14058~^~1400~^~Beverages, Whey protein powder isolate~^~BEVERAGES,WHEY PROT PDR ISOLATE~^^^~Y~^^0^^6.38^^^
-~14060~^~1400~^~Beverages, Energy Drink with carbonated water and high fructose corn syrup~^~BEVERAGES,ENERGY DRK W/ CARB H2O & HI FRUCTOSE CORN SYRUP~^^^~Y~^^0^^6.25^^^
-~14061~^~1400~^~Beverages, Energy Drink, sugar free~^~BEVERAGES,ENERGY DRK,SUGAR FREE~^^^~Y~^^0^^^^^
-~14062~^~1400~^~Beverages, ABBOTT, ENSURE, Nutritional Shake, Ready-to-Drink~^~BEVERAGES,ABBOTT,ENSURE,NUTRITIONAL SHAKE,RTD~^^~Abbott's Ross Products Division~^~Y~^^0^^6.25^^^
-~14063~^~1400~^~Beverages, chocolate powder, no sugar added~^~BEVERAGES,CHOC PDR,NO SUGAR ADDED~^^~Nestle USA, Inc.~^~Y~^^0^^6.25^^^
-~14064~^~1400~^~Beverages, Orange juice, light, No pulp~^~BEVERAGES,ORANGE JUC,LT,NO PULP~^^^~Y~^^0^^6.25^^^
-~14065~^~1400~^~Beverages, The COCA-COLA company, Hi-C Flashin' Fruit Punch~^~BEVERAGES,THE COCA-COLA COMPANY,HI-C FLASHIN' FRUIT PUNCH~^^~The Coca-Cola Company~^~Y~^^0^^6.25^^^
-~14066~^~1400~^~Beverages, Protein powder whey based~^~BEVERAGES,PROT PDR WHEY BSD~^^^~Y~^^0^^^^^
-~14067~^~1400~^~Beverages, Protein powder soy based~^~BEVERAGES,PROT PDR SOY BSD~^^^~Y~^^0^^^^^
-~14073~^~1400~^~Beverages, ZEVIA, cola~^~BEVERAGES,ZEVIA,COLA~^^~Zevia~^^^0^^6.25^^^
-~14074~^~1400~^~Beverages, ZEVIA, cola, caffeine free~^~BEVERAGES,ZEVIA,COLA,CAFFEINE FREE~^^~Zevia~^^^0^^^^^
-~14075~^~1400~^~Beverages, GEROLSTEINER BRUNNEN GmbH & Co. KG,Gerolsteiner naturally sparkling mineral water,~^~BEVERAGE,GMBH & CO. KG,GEROLSTEINER NATURALLY SPARK MIN H2O,~^^~Beverages, GEROLSTEINER BRUNNEN GmbH & Co.KG~^^^0^^6.25^^^
-~14079~^~1400~^~Beverages, yellow green colored citrus soft drink with caffeine~^~BEVERAGES,YEL GRN COLORED CITRUS SOFT DRK W/ CAFFEINE~^^^~Y~^^0^^6.25^^^
-~14080~^~1400~^~Beverages, rich chocolate, powder~^~BEVERAGES,RICH CHOC,PDR~^^~Nestle USA, Inc.~^^^0^^6.25^^^
-~14082~^~1400~^~Beverages, GEROLSTEINER BRUNNEN GmbH & Co. KG (Gerolsteiner), naturally sparkling, mineral bottled water~^~BEV,GEROLSTEINER BRUNNEN,NATURALLY SPARKLING,MIN BTLD H2O~^^~Beverages, GEROLSTEINER BRUNNEN GmbH & Co.KG~^^^0^^^^^
-~14083~^~1400~^~Beverages, chocolate malt, powder, prepared with fat free milk~^~BEVERAGES,CHOC MALT,PDR,PREP W/ FAT FREE MILK~^^~Nestle USA, Inc.~^^^0^^6.38^^^
-~14084~^~1400~^~Alcoholic beverage, wine, table, all~^~ALCOHOLIC BEV,WINE,TABLE,ALL~^^^~Y~^^0^^6.25^3.36^8.37^3.92
-~14086~^~1400~^~Beverages, V8 SPLASH Smoothies, Peach Mango~^~BEVERAGES,V8 SPLASH SMOOTHIES,PEACH MANGO~^^~Campbell Soup Co.~^^^0^^^^^
-~14087~^~1400~^~Beverages, V8 SPLASH Smoothies, Strawberry Banana~^~BEVERAGES,V8 SPLASH SMOOTHIES,STRAWBERRY BANANA~^^~Campbell Soup Co.~^^^0^^^^^
-~14088~^~1400~^~Beverages, V8 SPLASH Smoothies, Tropical Colada~^~BEVERAGES,V8 SPLASH SMOOTHIES,TROPICAL COLADA~^^~Campbell Soup Co.~^^^0^^^^^
-~14090~^~1400~^~Beverages, Coconut water, ready-to-drink, unsweetened~^~BEVERAGES,COCNT H2O,RTD,UNSWTND~^^^~Y~^^0^^^^^
-~14091~^~1400~^~Beverages, almond milk, unsweetened, shelf stable~^~BEVERAGES,ALMOND MILK,UNSWTND,SHELF STABLE~^^^~Y~^^0^^^^^
-~14092~^~1400~^~Beverages, chocolate almond milk, unsweetened, shelf-stable, fortified with vitamin D2 and E~^~BEV,CHOC ALMOND MILK,UNSWTND,SHELF-STABLE,FORT W/ VIT D2 & E~^^^~Y~^^0^^6.25^^^
-~14093~^~1400~^~Beverages, The COCA-COLA company, Glaceau Vitamin Water, Revive Fruit Punch, fortified~^~BEVERAGE, COCA-COLA CO,GLACEAU VIT H2O,REVIVE FRT PUNCH,FORT~^^~The Coca-Cola Company~^~Y~^^0^^^^^
-~14095~^~1400~^~Beverages, MINUTE MAID, Lemonada, Limeade~^~BEVERAGES,MINUTE MAID,LEMONADA,LIMEADE~^^~The Coca-Cola Company~^~Y~^^0^^6.25^^^
-~14096~^~1400~^~Alcoholic beverage, wine, table, red~^~ALCOHOLIC BEV,WINE,TABLE,RED~^^^~Y~^^0^^6.25^3.36^8.37^3.92
-~14097~^~1400~^~Alcoholic Beverage, wine, table, red, Cabernet Sauvignon~^~ALCOHOLIC BEV,WINE,TABLE,RED,CABERNET SAUVIGNON~^^^^^0^^6.25^3.36^8.37^3.92
-~14098~^~1400~^~Alcoholic Beverage, wine, table, red, Cabernet Franc~^~ALCOHOLIC BEV,WINE,TABLE,RED,CABERNET FRANC~^^^^^0^^6.25^3.36^8.37^3.92
-~14099~^~1400~^~Alcoholic Beverage, wine, table, red, Pinot Noir~^~ALCOHOLIC BEV,WINE,TABLE,RED,PINOT NOIR~^^^^^0^^6.25^3.36^8.37^3.92
-~14100~^~1400~^~Alcoholic Beverage, wine, table, red, Syrah~^~ALCOHOLIC BEV,WINE,TABLE,RED,SYRAH~^^^^^0^^6.25^3.36^8.37^3.92
-~14101~^~1400~^~Alcoholic Beverage, wine, table, red, Barbera~^~ALCOHOLIC BEV,WINE,TABLE,RED,BARBERA~^^^^^0^^6.25^3.36^8.37^3.92
-~14102~^~1400~^~Alcoholic Beverage, wine, table, red, Zinfandel~^~ALCOHOLIC BEV,WINE,TABLE,RED,ZINFANDEL~^^^^^0^^6.25^3.36^8.37^3.92
-~14103~^~1400~^~Alcoholic Beverage, wine, table, red, Petite Sirah~^~ALCOHOLIC BEV,WINE,TABLE,RED,PETITE SIRAH~^^^^^0^^6.25^3.36^8.37^3.92
-~14105~^~1400~^~Alcoholic Beverage, wine, table, red, Claret~^~ALCOHOLIC BEV,WINE,TABLE,RED,CLARET~^^^^^0^^6.25^3.36^8.37^3.92
-~14106~^~1400~^~Alcoholic beverage, wine, table, white~^~ALCOHOLIC BEV,WINE,TABLE,WHITE~^^^~Y~^^0^^6.25^3.36^8.37^3.92
-~14107~^~1400~^~Alcoholic Beverage, wine, table, red, Lemberger~^~ALCOHOLIC BEV,WINE,TABLE,RED,LEMBERGER~^^^^^0^^6.25^3.36^8.37^3.92
-~14108~^~1400~^~Alcoholic Beverage, wine, table, red, Sangiovese~^~ALCOHOLIC BEV,WINE,TABLE,RED,SANGIOVESE~^^^^^0^^6.25^3.36^8.37^3.92
-~14109~^~1400~^~Alcoholic Beverage, wine, table, red, Carignane~^~ALCOHOLIC BEV,WINE,TABLE,RED,CARIGNANE~^^^^^0^^6.25^3.36^8.37^3.92
-~14113~^~1400~^~Alcoholic beverage, wine, table, white, Pinot Gris (Grigio)~^~ALCOHOLIC BEV,WINE,TABLE,WHITE,PINOT GRIS (GRIGIO)~^^^^^0^^6.25^3.36^8.37^3.92
-~14116~^~1400~^~Alcoholic beverage, wine, table, white, Chenin Blanc~^~ALCOHOLIC BEV,WINE,TABLE,WHITE,CHENIN BLANC~^^^^^0^^6.25^3.36^3.87^3.92
-~14117~^~1400~^~Alcoholic beverage, wine, table, white, Fume Blanc~^~ALCOHOLIC BEV,WINE,TABLE,WHITE,FUME BLANC~^^^^^0^^6.25^3.36^8.37^3.92
-~14119~^~1400~^~Beverages, Mixed vegetable and fruit juice drink, with added nutrients~^~BEVERAGES,MXD VEG & FRUIT JUC DRK,W/ ADDED NUTR~^~includes V-8 Splash drinks~^^~Y~^^0^^^^^
-~14120~^~1400~^~Alcoholic beverage, wine, table, white, Muller Thurgau~^~ALCOHOLIC BEV,WINE,TABLE,WHITE,MULLER THURGAU~^^^^^0^^6.25^3.36^8.37^3.92
-~14121~^~1400~^~Beverages, carbonated, club soda~^~BEVERAGES,CARB,CLUB SODA~^~soft drink~^^~Y~^^0^^6.25^3.36^8.37^3.87
-~14124~^~1400~^~Alcoholic beverage, wine, table, white, Gewurztraminer~^~ALCOHOLIC BEV,WINE,TABLE,WHITE,GEWURZTRAMINER~^^^^^0^^6.25^3.36^8.37^3.92
-~14125~^~1400~^~Alcoholic beverage, wine, table, white, late harvest, Gewurztraminer~^~ALCOHOLIC BEV,WINE,TABLE,WHITE,LATE HARVEST,GEWURZTRAMINER~^^^^^0^^6.25^3.36^8.37^3.92
-~14126~^~1400~^~Alcoholic beverage, wine, table, white, Semillon~^~ALCOHOLIC BEV,WINE,TABLE,WHITE,SEMILLON~^^^^^0^^6.25^3.36^8.37^3.92
-~14130~^~1400~^~Carbonated beverage, cream soda~^~CARBONATED BEV,CRM SODA~^~soft drink, pop~^^~Y~^^0^^6.25^3.36^8.37^3.87
-~14132~^~1400~^~Alcoholic beverage, wine, table, white, Riesling~^~ALCOHOLIC BEV,WINE,TABLE,WHITE,RIESLING~^^^^^0^^6.25^3.36^8.37^3.92
-~14134~^~1400~^~Alcoholic beverage, wine, table, white, Sauvignon Blanc~^~ALCOHOLIC BEV,WINE,TABLE,WHITE,SAUVIGNON BLANC~^^^^^0^^6.25^3.36^8.37^3.92
-~14135~^~1400~^~Alcoholic beverage, wine, table, white, late harvest~^~ALCOHOLIC BEV,WINE,TABLE,WHITE,LATE HARVEST~^^^^^0^^6.25^3.36^8.37^3.92
-~14136~^~1400~^~Beverages, carbonated, ginger ale~^~BEVERAGES,CARB,GINGER ALE~^~soft drink, pop, soda~^^~Y~^^0^^6.25^3.36^8.37^3.87
-~14137~^~1400~^~Beverages, NESTEA, tea, black, ready-to-drink, lemon~^~BEVERAGES,NESTEA,TEA,BLACK,RTD,LEMON~^^~Nestle USA, Inc.~^^^0^^6.25^4.00^9.00^4.00
-~14138~^~1400~^~Alcoholic beverage, wine, table, white, Pinot Blanc~^~ALCOHOLIC BEV,WINE,TABLE,WHITE,PINOT BLANC~^^^^^0^^6.25^3.36^8.37^3.92
-~14140~^~1400~^~Alcoholic beverage, wine, table, white, Muscat~^~ALCOHOLIC BEV,WINE,TABLE,WHITE,MUSCAT~^^^^^0^^6.25^3.36^8.37^3.92
-~14142~^~1400~^~Beverages, carbonated, grape soda~^~BEVERAGES,CARB,GRAPE SODA~^~soft drink, pop~^^^^0^^6.25^3.36^8.37^3.87
-~14143~^~1400~^~Beverages, carbonated, low calorie, other than cola or pepper, without caffeine~^~BEVERAGES,CARB,LO CAL,OTHER THAN COLA OR PEPPER,WO/ CAFFEINE~^~soft drink, pop, soda~^^~Y~^^0^^^4.00^9.00^4.00
-~14144~^~1400~^~Beverages, carbonated, lemon-lime soda, no caffeine~^~BEVERAGES,CARB,LEMON-LIME SODA,NO CAFFEINE~^~white soda, soft drink, pop~^^~Y~^^0^^6.25^3.36^8.37^3.87
-~14145~^~1400~^~Beverages, carbonated, SPRITE, lemon-lime, without caffeine~^~BEVERAGES,CARB,SPRITE,LEMON-LIME,WO/ CAFFEINE~^~soft drink, white soda, pop~^~The Coca-Cola Company~^~Y~^^0^^6.25^3.36^8.37^3.87
-~14146~^~1400~^~Beverages, carbonated, low calorie, cola or pepper-type, with aspartame, without caffeine~^~BEVERAGES,CARB,LO CAL,COLA OR PEPPER-TYPE,W/ ASPRT,WO/ CAF~^~soft drink, pop, soda~^^~Y~^^0^^6.25^3.36^8.37^3.87
-~14147~^~1400~^~Beverages, carbonated, cola, without caffeine~^~BEVERAGES,CARB,COLA,WO/ CAFFEINE~^~soft drink, pop, soda~^^~Y~^^0^^6.25^3.36^8.37^3.87
-~14148~^~1400~^~Beverages, carbonated, cola, regular~^~BEVERAGES,CARB,COLA,REG~^~soft drink, pop, soda~^^~Y~^^0^^6.25^3.36^8.37^3.87
-~14149~^~1400~^~Beverages, carbonated, reduced sugar, cola, contains caffeine and sweeteners~^~BEVERAGES,CARB,RED SUGAR,COLA,CONTAINS CAFFEINE & SWEETENERS~^^^~Y~^^0^^6.25^3.36^8.37^3.87
-~14150~^~1400~^~Beverages, carbonated, orange~^~BEVERAGES,CARB,ORANGE~^~soft drink, pop, soda~^^^^0^^6.25^3.36^8.37^3.87
-~14151~^~1400~^~Beverages, carbonated, low calorie, other than cola or pepper, with aspartame, contains caffeine~^~BEV,CARB,LO CAL,OTHER THAN COLA OR PEPPER,W/ ASPRT, CAFFEINE~^~soft drink, pop, soda~^^~Y~^^0^^6.25^4.00^9.00^4.00
-~14152~^~1400~^~Alcoholic Beverage, wine, table, red, Burgundy~^~ALCOHOLIC BEV,WINE,TABLE,RED,BURGUNDY~^^^^^0^^6.25^3.36^8.37^3.92
-~14153~^~1400~^~Beverages, carbonated, pepper-type, contains caffeine~^~BEVERAGES,CARB,PEPPER-TYPE,CONTAINS CAFFEINE~^~soft drink, pop, soda~^^^^0^^6.25^3.36^8.37^3.87
-~14154~^~1400~^~Beverages, Energy drink, RED BULL~^~BEVERAGES,ENERGY DRK,RED BULL~^^~Red Bull North America/Red Bull GmbH~^~Y~^^0^^6.25^4.00^9.00^4.00
-~14155~^~1400~^~Beverages, carbonated, tonic water~^~BEVERAGES,CARB,TONIC H2O~^~soda, soft drink~^^~Y~^^0^^6.25^3.36^8.37^3.87
-~14156~^~1400~^~Beverages, Energy drink, RED BULL, sugar free, with added caffeine, niacin, pantothenic acid, vitamins B6 and B12~^~BEVERAGES,ENERGY DRK,RED BULL,SUGAR FREE,W/ ADDED CAFFEINE,~^^~Red Bull North America/Red Bull GmbH~^~Y~^^0^^6.25^4.00^9.00^4.00
-~14157~^~1400~^~Beverages, carbonated, root beer~^~BEVERAGES,CARB,ROOT BEER~^~soft drink, pop, soda~^^~Y~^^0^^6.25^3.36^8.37^3.87
-~14158~^~1400~^~Alcoholic Beverage, wine, table, red, Gamay~^~ALCOHOLIC BEV,WINE,TABLE,RED,GAMAY~^^^^^0^^6.25^3.36^8.37^3.92
-~14159~^~1400~^~Alcoholic Beverage, wine, table, red, Mouvedre~^~ALCOHOLIC BEV,WINE,TABLE,RED,MOUVEDRE~^^^^^0^^6.25^3.36^8.37^3.92
-~14160~^~1400~^~Alcoholic beverage, wine, table, white, Chardonnay~^~ALCOHOLIC BEV,WINE,TABLE,WHITE,CHARDONNAY~^^^^^0^^6.25^3.36^8.37^3.92
-~14161~^~1400~^~Beverages, Kiwi Strawberry Juice Drink~^~BEVERAGES,KIWI STRAWBERRY JUC DRK~^^^~Y~^^0^^6.25^^^
-~14162~^~1400~^~Beverages, Apple juice drink, light, fortified with vitamin C~^~BEVERAGES,APPL JUC DRK,LT,FORT W/ VIT C~^^~Mott's INC.~^~Y~^^0^^6.25^^^
-~14163~^~1400~^~Beverages, chocolate drink, milk and soy based, ready to drink, fortified~^~BEVERAGES,CHOC DRK,MILK & SOY BSD,READY TO DRK,FORT~^^^~Y~^^0^^6.25^^^
-~14164~^~1400~^~Beverages, chocolate malt powder, prepared with 1% milk, fortified~^~BEVERAGES,CHOC MALT PDR,PREP W/ 1% MILK,FORT~^^^^^0^^6.38^^^
-~14165~^~1400~^~Beverages, carbonated, limeade, high caffeine~^~BEVERAGES,CARB,LIMEADE,HI CAFFEINE~^^^^^0^^^^^
-~14166~^~1400~^~Beverages, carbonated, low calorie, cola or pepper-types, with sodium saccharin, contains caffeine~^~BEV,CARB,LO CAL,COLA OR PEPER-TYPE,W/ NA SACCHARIN, CAFFEINE~^~soft drink, pop, soda~^^^^0^^6.25^3.87^8.37^3.36
-~14167~^~1400~^~Beverages, POWERADE, Zero, Mixed Berry~^~BEVERAGES,POWERADE,ZERO,MXD BERRY~^^~The Coca-Cola Company~^~Y~^^0^^6.25^^^
-~14168~^~1400~^~Beverages, Carob-flavor beverage mix, powder~^~BEVERAGES,CAROB-FLAVOR BEV MIX,PDR~^^^^^0^^6.25^3.47^8.37^3.90
-~14169~^~1400~^~Beverages, Carob-flavor beverage mix, powder, prepared with whole milk~^~BEVERAGES,CAROB-FLAVOR BEV MIX,PDR,PREP W/ WHL MILK~^^^^^0^^6.38^^^
-~14171~^~1400~^~Beverages, coconut milk, sweetened, fortified with calcium, vitamins A, B12, D2~^~BEVERAGES,COCNT MILK,SWTND,FORT W/ CA,VITAMINS A,B12,D2~^^^~Y~^^0^^^^^
-~14173~^~1400~^~Beverages, coffee, ready to drink, vanilla, light, milk based, sweetened~^~BEVERAGES,COFFEE,READY TO DRK,VANILLA,LT,MILK BSD,SWTND~^^~Starbucks Coffee Company~^^^0^^6.25^^^
-~14174~^~1400~^~Beverages, Lemonade fruit juice drink light, fortified with vitamin E and C~^~BEVE,LEMONADE FRUIT JUC DRK LT,FORT W/ VIT E & C~^^^~Y~^^0^^6.25^^^
-~14177~^~1400~^~Beverages, chocolate-flavor beverage mix, powder, prepared with whole milk~^~BEVERAGES,CHOCOLATE-FLAVOR BEV MIX,PDR,PREP W/ WHL MILK~^^^^^0^^6.38^^^
-~14179~^~1400~^~Beverages, coffee, ready to drink, milk based, sweetened~^~BEVERAGES,COFFEE,READY TO DRK,MILK BSD,SWTND~^^^~Y~^^0^^6.38^^^
-~14180~^~1400~^~Beverages, coffee, brewed, breakfast blend~^~BEVERAGES,COFFEE,BREWED,BRKFST BLEND~^^^^^0^^^^^
-~14181~^~1400~^~Beverages, chocolate syrup~^~BEVERAGES,CHOC SYRUP~^^^~Y~^^0^^6.25^4.00^9.00^4.00
-~14182~^~1400~^~Beverages, chocolate syrup, prepared with whole milk~^~BEVERAGES,CHOC SYRUP,PREP W/ WHL MILK~^^^^^0^^6.38^^^
-~14183~^~1400~^~Beverages, coffee, ready to drink, iced, mocha, milk based~^~BEVERAGES,COFFEE,READY TO DRK,ICED,MOCHA,MILK BSD~^^^^^0^^6.38^^^
-~14185~^~1400~^~Beverages, tea, Oolong, brewed~^~BEVERAGES,TEA,OOLONG,BREWED~^^^~Y~^^0^^^^^
-~14187~^~1400~^~Beverages, Clam and tomato juice, canned~^~BEVERAGES,CLAM & TOMATO JUC,CND~^^^^^0^^6.25^3.80^8.80^4.00
-~14188~^~1400~^~Beverages, tea, green, ready to drink, ginseng and honey, sweetened~^~BEVERAGES,TEA,GRN,READY TO DRK,GINSENG & HONEY,SWTND~^^^~Y~^^0^^^^^
-~14189~^~1400~^~Beverages, The COCA-COLA company, Minute Maid, Lemonade~^~BEVERAGES,THE COCA-COLA COMPANY,MINUTE MAID,LEMONADE~^^~The Coca-Cola Company~^~Y~^^0^^6.25^^^
-~14190~^~1400~^~Beverages, tea, green, ready-to-drink, diet~^~BEVERAGES,TEA,GRN,RTD,DIET~^^^~Y~^^0^^^^^
-~14191~^~1400~^~Beverages, tea, green, ready-to-drink, citrus, diet, fortified with vitamin C~^~BEVERAGES,TEA,GRN,RTD,CITRUS,DIET,FORT W/ VIT C~^^^~Y~^^0^^6.25^^^
-~14192~^~1400~^~Beverages, Cocoa mix, powder~^~BEVERAGES,COCOA MIX,PDR~^~hot chocolate~^^~Y~^^0^^6.25^4.00^9.00^4.00
-~14194~^~1400~^~Beverages, Cocoa mix, powder, prepared with water~^~BEVERAGES,COCOA MIX,PDR,PREP W/ H2O~^~hot chocolate~^^^^0^^^^^
-~14195~^~1400~^~Beverages, Cocoa mix, NESTLE, Hot Cocoa Mix Rich Chocolate With Marshmallows~^~BEV,COCOA MIX,NESTLE,HOT COCOA MIX RICH CHOC W/ MARSHMALLOWS~^~hot chocolate~^~Nestle USA, Inc.~^^^0^^^^^
-~14196~^~1400~^~Beverages, Cocoa mix, no sugar added, powder~^~BEVERAGES,COCOA MIX,NO SUGAR ADDED,PDR~^~hot chocolate~^^~Y~^^0^^6.25^4.00^9.00^4.00
-~14197~^~1400~^~Cocoa mix, NESTLE, Rich Chocolate Hot Cocoa Mix~^~COCOA MIX,NESTLE,RICH CHOC HOT COCOA MIX~^~hot chocolate~^~Nestle USA, Inc.~^^^0^^^^^
-~14199~^~1400~^~Beverages, tea, black, ready-to-drink, lemon, sweetened~^~BEVERAGES,TEA,BLACK,RTD,LEMON,SWTND~^^^~Y~^^0^^^^^
-~14201~^~1400~^~Beverages, coffee, brewed, prepared with tap water, decaffeinated~^~BEVERAGES,COFFEE,BREWED,PREP W/ TAP H2O,DECAFFEINATED~^^^~Y~^^0^^6.25^3.47^8.37^4.07
-~14202~^~1400~^~Beverages, coffee, brewed, espresso, restaurant-prepared, decaffeinated~^~BEVERAGES,COFFEE,BREWED,ESPRESSO,REST-PREP,DECAFFEINATED~^^^~Y~^^0^^^^^
-~14203~^~1400~^~Beverages, coffee, instant, regular, half the caffeine~^~BEVERAGES,COFFEE,INST,REG,HALF THE CAFFEINE~^^^~Y~^^0^^6.25^3.47^8.37^4.07
-~14204~^~1400~^~Beverages, coffee and cocoa, instant, decaffeinated, with whitener and low calorie sweetener~^~BEVERAGES,COFFEE&COCOA,INST,DECAFFEINATED,W/WHTNR&LOCALSWTNR~^^^~Y~^^0^^6.25^4.00^9.00^4.00
-~14206~^~1400~^~Beverages, tea, green, ready-to-drink, sweetened~^~BEVERAGES,TEA,GRN,RTD,SWTND~^^^~Y~^^0^^^^^
-~14207~^~1400~^~Beverages, tea, ready-to-drink, lemon, diet~^~BEVERAGES,TEA,RTD,LEMON,DIET~^^^~Y~^^0^^^^^
-~14209~^~1400~^~Beverages, coffee, brewed, prepared with tap water~^~BEVERAGES,COFFEE,BREWED,PREP W/ TAP H2O~^^^~Y~^^0^^6.25^3.47^8.37^4.07
-~14210~^~1400~^~Beverages, coffee, brewed, espresso, restaurant-prepared~^~BEVERAGES,COFFEE,BREWED,ESPRESSO,REST-PREP~^^^~Y~^^0^^6.25^3.47^8.37^4.07
-~14211~^~1400~^~Beverages, tea, black, ready-to-drink, lemon, diet~^~BEVERAGES,TEA,BLACK,RTD,LEMON,DIET~^^^~Y~^^0^^6.25^^^
-~14214~^~1400~^~Beverages, coffee, instant, regular, powder~^~BEVERAGES,COFFEE,INST,REG,PDR~^^^~Y~^^0^^6.25^3.47^8.37^4.07
-~14215~^~1400~^~Beverages, coffee, instant, regular, prepared with water~^~BEVERAGES,COFFEE,INST,REG,PREP W/ H2O~^^^^^0^^0.00^^^
-~14216~^~1400~^~Beverages, aloe vera juice drink, fortified with Vitamin C~^~BEVERAGES,ALOE VERA JUC DRK,FORT W/ VIT C~^^^~Y~^^0^^6.25^^^
-~14217~^~1400~^~Beverages, OCEAN SPRAY, Cran Grape~^~BEVERAGES,OCEAN SPRAY,CRAN GRAPE~^^~Ocean Spray Cranberries, Inc.~^^^0^^6.25^^^
-~14218~^~1400~^~Beverages, coffee, instant, decaffeinated, powder~^~BEVERAGES,COFFEE,INST,DECAFFEINATED,PDR~^^^~Y~^^0^^6.25^3.47^8.37^4.07
-~14219~^~1400~^~Beverages, coffee, instant, decaffeinated, prepared with water~^~BEVERAGES,COFFEE,INST,DECAFFEINATED,PREP W/ H2O~^^^^^0^^0.00^^^
-~14220~^~1400~^~Beverages, OCEAN SPRAY, Cranberry-Apple Juice Drink, bottled~^~Beverages, OCEAN SPRAY, Cranberry-Apple Juice Drink, bottled~^^~Ocean Spray Cranberries, Inc.~^^^0^^6.25^^^
-~14221~^~1400~^~Beverages, OCEAN SPRAY, Diet Cranberry Juice~^~BEVERAGES,OCEAN SPRAY,DIET CRANBERRY JUC~^^~Ocean Spray Cranberries, Inc.~^^^0^^6.25^^^
-~14222~^~1400~^~Beverages, coffee, instant, with chicory~^~BEVERAGES,COFFEE,INST,W/ CHICORY~^^^^^0^^6.25^3.20^8.37^4.10
-~14223~^~1400~^~Beverages, coffee, instant, chicory~^~BEVERAGES,COFFEE,INST,CHICORY~^^^^^0^^^^^
-~14224~^~1400~^~Beverages, coffee, instant, mocha, sweetened~^~BEVERAGES,COFFEE,INST,MOCHA,SWTND~^^^~Y~^^0^^6.25^4.00^9.00^4.00
-~14226~^~1400~^~Beverages, OCEAN SPRAY, Light Cranberry and Raspberry Flavored Juice~^~BEVERAGES,OCEAN SPRAY,LT CRANBERRY & RASPBERRY FLAV JUC~^^~Ocean Spray Cranberries, Inc.~^^^0^^6.25^^^
-~14227~^~1400~^~Beverages, OCEAN SPRAY, White Cranberry Strawberry Flavored Juice Drink~^~BEVERAGES,OCEAN SPRAYWHITE CRANBERRY STRAWBERRY FLAV JUC DRK~^^~Ocean Spray Cranberries, Inc.~^^^0^^6.25^^^
-~14231~^~1400~^~Beverages, KRAFT, coffee, instant, French Vanilla Cafe~^~BEVERAGES,KRAFT,COFFEE,INST,FRENCH VANILLA CAFE~^^~Kraft Foods, Inc.~^^^0^^^^^
-~14233~^~1400~^~Beverages, OCEAN SPRAY, Cran Raspberry Juice Drink~^~BEVERAGEES, OCEAN SPRAY, CRAN RASPBERRY JUICE DRINK~^^~Ocean Spray Cranberries, Inc.~^^^0^^6.25^^^
-~14234~^~1400~^~Beverages, OCEAN SPRAY, Cran Lemonade~^~BEVERAGES,OCEAN SPRAY,CRAN LEMONADE~^^~Ocean Spray Cranberries, Inc.~^^^0^^6.25^^^
-~14235~^~1400~^~Beverages, OCEAN SPRAY, Diet Cran Cherry~^~BEV, OCEAN SPRAY, CRAN CHERRY DIET~^^~Ocean Spray Cranberries, Inc.~^^^0^^6.25^^^
-~14236~^~1400~^~Beverages, coffee substitute, cereal grain beverage, powder~^~BEVERAGES,COFFEE SUB,CRL GRAIN BEV,PDR~^^^~Y~^^0^^6.25^4.00^9.00^4.00
-~14237~^~1400~^~Beverages, coffee substitute, cereal grain beverage, prepared with water~^~BEVERAGES,COFFEE SUB,CRL GRAIN BEV,PREP W/ H2O~^^^~Y~^^0^^^^^
-~14238~^~1400~^~Beverages, cranberry-apple juice drink, bottled~^~BEVERAGES,CRANBERRY-APPLE JUC DRK,BTLD~^^^^^0^^6.25^3.36^8.37^3.90
-~14239~^~1400~^~Alcoholic beverage, malt beer, hard lemonade~^~ALCOHOLIC BEV,MALT BEER,HARD LEMONADE~^^^~Y~^^0^^6.25^^^
-~14240~^~1400~^~Beverages, cranberry-apricot juice drink, bottled~^~BEVERAGES,CRANBERRY-APRICOT JUC DRK,BTLD~^^^^^0^^6.25^3.36^8.37^3.90
-~14241~^~1400~^~Beverages, cranberry-grape juice drink, bottled~^~BEVERAGES,CRANBERRY-GRAPE JUC DRK,BTLD~^^^^^0^^6.25^3.36^8.37^3.90
-~14242~^~1400~^~Cranberry juice cocktail, bottled~^~CRANBERRY JUC COCKTAIL,BTLD~^^^~Y~^^0^^6.25^3.36^8.37^3.90
-~14243~^~1400~^~Cranberry juice cocktail, bottled, low calorie, with calcium, saccharin and corn sweetener~^~CRANBERRY JUC COCKTAIL,BTLD,LO CAL,W/CA,SACCHARIN&CORN SWTNR~^^^~Y~^^0^^6.25^4.00^9.00^4.00
-~14245~^~1400~^~Beverages, Eggnog-flavor mix, powder, prepared with whole milk~^~BEVERAGES,EGGNOG-FLAVOR MIX,PDR,PREP W/ WHL MILK~^^^^^0^^6.38^^^
-~14246~^~1400~^~Beverages, tea, green, instant, decaffeinated, lemon, unsweetened, fortified with vitamin C~^~BEVERAGES,TEA,GRN,INST,DECAFFEI,LEMON,UNSWTND,FORT W/ VIT C~^^^~Y~^^0^^6.25^^^
-~14247~^~1400~^~Beverages, tea, black, ready to drink~^~BEVERAGES,TEA,BLACK,READY TO DRK~^^~McDonald's Corporation~^~Y~^^0^^6.25^^^
-~14248~^~1400~^~Alcoholic beverage, beer, light, higher alcohol~^~ALCOHOLIC BEV,BEER,LT,HIGHER ALCOHOL~^^^~Y~^^0^^6.25^^^
-~14250~^~1400~^~Beverages, AMBER, hard cider~^~BEVERAGES,AMBER,HARD CIDER~^^^~Y~^^0^^6.25^^^
-~14251~^~1400~^~Alcoholic beverages, beer, higher alcohol~^~ALCOHOLIC BEVERAGES,BEER,HIGHER ALCOHOL~^^^~Y~^^0^^6.25^^^
-~14252~^~1400~^~Beverages, Malt liquor beverage~^~BEVERAGES,MALT LIQUOR BEV~^^^~Y~^^0^^6.25^^^
-~14253~^~1400~^~Alcoholic beverages, wine, rose~^~ALCOHOLIC BEVERAGES,WINE,ROSE~^^^~Y~^^0^^6.25^^^
-~14255~^~1400~^~Beverages, OCEAN SPRAY, Cran Pomegranate~^~BEVERAGES,OCEAN SPRAY,CRAN POMEGRANATE~^^~Ocean Spray Cranberries, Inc.~^^^0^^6.25^^^
-~14256~^~1400~^~Beverages, OCEAN SPRAY, Cran Cherry~^~BEVERAGES,OCEAN SPRAY,CRAN CHERRY~^^~Ocean Spray Cranberries, Inc.~^^^0^^6.25^^^
-~14257~^~1400~^~Beverages, OCEAN SPRAY, Light Cranberry~^~BEVERAGES,OCEAN SPRAY,LT CRANBERRY~^^~Ocean Spray Cranberries, Inc.~^^^0^^6.25^^^
-~14258~^~1400~^~Beverages, OCEAN SPRAY, White Cranberry Peach~^~Beverages, OCEAN SPRAY, White Cranberry Peach~^^~Ocean Spray Cranberries, Inc.~^^^0^^6.25^^^
-~14259~^~1400~^~Beverages, OCEAN SPRAY, Light Cranberry, Concord Grape~^~BEVERAGES,OCEAN SPRAY,LT CRANBERRY,CONCORD GRAPE~^^~Ocean Spray Cranberries, Inc.~^^^0^^6.25^^^
-~14260~^~1400~^~Beverages, tea, green, brewed, decaffeinated~^~BEVERAGES,TEA,GRN,BREWED,DECAFFEINATED~^^^~Y~^^0^^6.25^^^
-~14261~^~1400~^~Beverages, tea, green, ready to drink, unsweetened~^~BEVERAGES,TEA,GRN,READY TO DRK,UNSWTND~^^^~Y~^^0^^6.25^^^
-~14262~^~1400~^~Beverages, citrus fruit juice drink, frozen concentrate~^~BEVERAGES,CITRUS FRUIT JUC DRK,FRZ CONC~^^^~Y~^^0^^6.25^3.36^8.37^3.90
-~14263~^~1400~^~Beverages, citrus fruit juice drink, frozen concentrate, prepared with water~^~BEVERAGES,CITRUS FRUIT JUC DRK,FRZ CONC,PREP W/ H2O~^^^^^0^^0.00^^^
-~14264~^~1400~^~Beverages, fruit punch drink, without added nutrients, canned~^~BEVERAGES,FRUIT PUNCH DRK,WO/ ADDED NUTR,CND~^^^~Y~^^0^^^^^
-~14267~^~1400~^~Beverages, Fruit punch drink, with added nutrients, canned~^~BEVERAGES,FRUIT PUNCH DRK,W/ ADDED NUTR,CND~^^^~Y~^^0^^6.25^3.36^8.37^3.90
-~14268~^~1400~^~Beverages, Fruit punch drink, frozen concentrate~^~BEVERAGES,FRUIT PUNCH DRK,FRZ CONC~^^^^^0^^6.25^3.36^8.37^3.90
-~14269~^~1400~^~Beverages, Fruit punch drink, frozen concentrate, prepared with water~^~BEVERAGES,FRUIT PUNCH DRK,FRZ CONC,PREP W/ H2O~^^^^^0^^0.00^^^
-~14270~^~1400~^~Beverages, coffee, instant, vanilla, sweetened, decaffeinated, with non dairy creamer~^~BEVERAGES,COFFEE,INST,VANILA,SWTND,DECAFF,W/ NON DAIRY CREAM~^^^~Y~^^0^^6.25^^^
-~14276~^~1400~^~Beverages, Tropical Punch, ready-to-drink~^~BEVERAGES,TROPICAL PUNCH,RTD~^^~Kraft Foods, Inc.~^~Y~^^0^^^^^
-~14277~^~1400~^~Beverages, grape drink, canned~^~BEVERAGES,GRAPE DRK,CND~^^^~Y~^^0^^6.25^3.36^8.37^3.90
-~14278~^~1400~^~Beverages, tea, green, brewed, regular~^~BEVERAGES,TEA,GRN,BREWED,REG~^^^~Y~^^0^^^^^
-~14279~^~1400~^~Beverages, tea, black, ready-to-drink, peach, diet~^~BEVERAGES,TEA,BLACK,RTD,PEACH,DIET~^^^~Y~^^0^^^^^
-~14280~^~1400~^~Beverages, tea, black, ready to drink, decaffeinated, diet~^~BEVERAGES,TEA,BLACK,READY TO DRK,DECAFFEINATED,DIET~^^^~Y~^^0^^6.25^^^
-~14281~^~1400~^~Beverages, tea, black, ready to drink, decaffeinated~^~BEVERAGES,TEA,BLACK,READY TO DRK,DECAFFEINATED~^^^~Y~^^0^^6.25^^^
-~14282~^~1400~^~Beverages, grape juice drink, canned~^~BEVERAGES,GRAPE JUC DRK,CND~^^^~Y~^^0^^6.25^3.36^8.37^3.90
-~14284~^~1400~^~Beverages, Cranberry juice cocktail~^~BEVERAGES,CRANBERRY JUC COCKTAIL~^^^^^0^^^^^
-~14285~^~1400~^~Beverages, OCEAN SPRAY, Ruby Red cranberry~^~BEVERAGES,OCEAN SPRAY,RUBY RED CRANBERRY~^^~Ocean Spray Cranberries, Inc.~^^^0^^6.25^^^
-~14286~^~1400~^~Beverages, MOTTS, Apple juice light, fortified with vitamin C~^~BEVERAGES,MOTTS,APPL JUC LT,FORT W/ VIT C~^^~Mott's INC.~^^^0^^6.25^^^
-~14287~^~1400~^~Beverages, Lemonade, powder~^~BEVERAGES,LEMONADE,PDR~^^^~Y~^^0^^6.25^3.36^8.37^3.80
-~14288~^~1400~^~Lemonade, powder, prepared with water~^~LEMONADE,PDR,PREP W/H2O~^^^^^0^^0.00^^^
-~14291~^~1400~^~Beverages, SNAPPLE, tea, black and green, ready to drink, peach, diet~^~BEVERAGES,SNAPPLE,TEA,BLACK & GRN,READY TO DRK,PEACH,DIET~^^~Snapple Beverage Corporation~^^^0^^6.25^^^
-~14292~^~1400~^~Lemonade, frozen concentrate, white~^~LEMONADE,FRZ CONC,WHITE~^^^~Y~^^0^^6.25^3.36^8.37^3.80
-~14293~^~1400~^~Lemonade, frozen concentrate, white, prepared with water~^~LEMONADE,FRZ CONC,WHITE,PREP W/H2O~^^^^^0^^0.00^^^
-~14294~^~1400~^~Beverages, SNAPPLE, tea, black and green, ready to drink, lemon, diet~^~BEVERAGES,SNAPPLE,TEA,BLACK & GRN,READY TO DRK,LEMON,DIET~^^~Snapple Beverage Corporation~^^^0^^6.25^^^
-~14296~^~1400~^~Beverages, lemonade-flavor drink, powder~^~BEVERAGES,LEMONADE-FLAVOR DRK,PDR~^^^~Y~^^0^^6.25^3.36^8.37^3.80
-~14297~^~1400~^~Beverages, lemonade-flavor drink, powder, prepared with water~^~BEVERAGES,LEMONADE-FLAVOR DRK,PDR,PREP W/ H2O~^^^^^0^^0.00^^^
-~14303~^~1400~^~Limeade, frozen concentrate, prepared with water~^~LIMEADE,FRZ CONC,PREP W/H2O~^^^^^0^^^^^
-~14305~^~1400~^~Malt beverage, includes non-alcoholic beer~^~MALT BEV,INCL NON-ALCOHOLIC BEER~^^^~Y~^^0^^6.25^3.87^8.37^4.12
-~14309~^~1400~^~Beverages, OVALTINE, Classic Malt powder~^~BEVERAGES,OVALTINE,CLASSIC MALT PDR~^^~Nestle USA, Inc.~^~Y~^^0^^6.25^4.00^9.00^4.00
-~14310~^~1400~^~Beverages, Malted drink mix, natural, with added nutrients, powder, prepared with whole milk~^~BEVERA,MALTED DRK MIX,NAT,W/ ADD NUTR,PDR,PREP W/ WHL MILK~^^^^^0^^^^^
-~14311~^~1400~^~Beverages, Malted drink mix, natural, powder, dairy based.~^~BEVERAGES,MALTED DRK MIX,NAT,PDR,DAIRY BASED.~^^^~Y~^^0^^6.25^4.00^9.00^4.00
-~14312~^~1400~^~Beverages, Malted drink mix, natural, powder, prepared with whole milk~^~BEVERAGES,MALTED DRK MIX,NAT,PDR,PREP W/ WHL MILK~^^^^^0^^6.38^^^
-~14315~^~1400~^~Beverages, OVALTINE, chocolate malt powder~^~BEVERAGES,OVALTINE,CHOC MALT PDR~^^~Ovaltine~^~Y~^^0^^6.25^4.00^9.00^4.00
-~14316~^~1400~^~Beverages, Malted drink mix, chocolate, with added nutrients, powder, prepared with whole milk~^~BEVERAG,MALT DRK MIX,CHOC,W/ ADDED NUTR,PDR,PREP W/ WHL MILK~^^^^^0^^6.38^^^
-~14317~^~1400~^~Beverages, malted drink mix, chocolate, powder~^~BEVERAGES,MALTED DRK MIX,CHOC,PDR~^^^~Y~^^0^^6.25^4.00^9.00^4.00
-~14318~^~1400~^~Beverages, Malted drink mix, chocolate, powder, prepared with whole milk~^~BEVERAGES,MALTED DRK MIX,CHOC,PDR,PREP W/ WHL MILK~^^^^^0^^6.38^^^
-~14323~^~1400~^~Beverages, orange drink, canned, with added vitamin C~^~BEVERAGES,ORANGE DRK,CND,W/ ADDED VIT C~^^^~Y~^^0^^6.25^3.36^8.37^3.90
-~14327~^~1400~^~Beverages, orange and apricot juice drink, canned~^~BEVERAGES,ORANGE & APRICOT JUC DRK,CND~^^^^^0^^6.25^3.36^8.37^3.90
-~14334~^~1400~^~Beverages, pineapple and grapefruit juice drink, canned~^~BEVERAGES,PNAPPL & GRAPEFRUIT JUC DRK,CND~^^^^^0^^6.25^3.36^8.37^3.90
-~14341~^~1400~^~Beverages, pineapple and orange juice drink, canned~^~BEVERAGES,PNAPPL & ORANGE JUC DRK,CND~^^^^^0^^6.25^3.36^8.37^3.90
-~14347~^~1400~^~Shake, fast food, vanilla~^~SHAKE,FAST FOOD,VANILLA~^^^~Y~^^0^^6.38^4.27^8.80^3.90
-~14350~^~1400~^~Strawberry-flavor beverage mix, powder~^~STRAWBERRY-FLAVOR BEV MIX,PDR~^^^~Y~^^0^^6.25^3.90^8.37^3.90
-~14351~^~1400~^~Beverages, Strawberry-flavor beverage mix, powder, prepared with whole milk~^~BEVERAGES,STRAWBERRY-FLAVOR BEV MIX,PDR,PREP W/ WHL MILK~^^^^^0^^6.38^^^
-~14352~^~1400~^~Beverages, tea, black, brewed, prepared with tap water, decaffeinated~^~BEVERAGES,TEA,BLACK,BREWED,PREP W/ TAP H2O,DECAFFEINATED~^^^~Y~^^0^^^^^
-~14353~^~1400~^~Beverages, tea, instant, decaffeinated, unsweetened~^~BEVERAGES,TEA,INST,DECAFFEINATED,UNSWTND~^^^~Y~^^0^^6.25^4.00^9.00^4.00
-~14355~^~1400~^~Beverages, tea, black, brewed, prepared with tap water~^~BEVERAGES,TEA,BLACK,BREWED,PREP W/ TAP H2O~^^^~Y~^^0^^6.25^2.44^8.37^3.57
-~14356~^~1400~^~Beverages, tea, instant, decaffeinated, lemon, diet~^~BEVERAGES,TEA,INST,DECAFFEINATED,LEMON,DIET~^^^~Y~^^0^^6.25^2.44^8.37^3.80
-~14357~^~1400~^~Beverages, tea, instant, decaffeinated, lemon, sweetened~^~BEVERAGES,TEA,INST,DECAFFEINATED,LEMON,SWTND~^^^^^0^^6.25^4.00^9.00^4.00
-~14366~^~1400~^~Beverages, tea, instant, unsweetened, powder~^~BEVERAGES,TEA,INST,UNSWTND,PDR~^^^~Y~^^0^^6.25^4.00^9.00^4.00
-~14367~^~1400~^~Beverages, tea, instant, unsweetened, prepared with water~^~BEVERAGES,TEA,INST,UNSWTND,PREP W/ H2O~^^^~Y~^^0^^0.00^^^
-~14368~^~1400~^~Beverages, tea, instant, lemon, unsweetened~^~BEVERAGES,TEA,INST,LEMON,UNSWTND~^^^~Y~^^0^^6.25^4.00^9.00^4.00
-~14370~^~1400~^~Beverages, tea, instant, lemon, sweetened, powder~^~BEVERAGES,TEA,INST,LEMON,SWTND,PDR~^^^~Y~^^0^^6.25^4.00^9.00^4.00
-~14371~^~1400~^~Beverages, tea, instant, lemon, sweetened, prepared with water~^~BEVERAGES,TEA,INST,LEMON,SWTND,PREP W/ H2O~^^^^^0^^0.00^^^
-~14375~^~1400~^~Beverages, tea, instant, sweetened with sodium saccharin, lemon-flavored, powder~^~BEVERAGES,TEA,INST,SWTND W/ NA SACCHARIN,LEMON-FLAVORED,PDR~^^^^^0^^6.25^2.44^8.37^3.80
-~14376~^~1400~^~Beverages, tea, instant, lemon, diet~^~BEVERAGES,TEA,INST,LEMON,DIET~^^^~Y~^^0^^0.00^^^
-~14381~^~1400~^~Beverages, tea, herb, other than chamomile, brewed~^~BEVERAGES,TEA,HERB,OTHER THAN CHAMOMILE,BREWED~^^^~Y~^^0^^6.25^2.44^8.37^3.57
-~14384~^~1400~^~Beverages, water, bottled, PERRIER~^~BEVERAGES,H2O,BTLD,PERRIER~^^~Nestle Waters North America Inc.~^^^0^^6.25^^^
-~14385~^~1400~^~Beverages, water, bottled, POLAND SPRING~^~BEVERAGES,H2O,BTLD,POLAND SPRING~^^~Nestle Waters North America Inc.~^^^0^^6.25^^^
-~14390~^~1400~^~Beverages, cocoa mix, with aspartame, powder, prepared with water~^~BEVERAGES,COCOA MIX,W/ ASPRT,PDR,PREP W/ H2O~^~hot chocolate~^^^^0^^^^^
-~14400~^~1400~^~Beverages, carbonated, cola, fast-food cola~^~BEVERAGES,CARB,COLA,FAST-FOOD COLA~^~soft drink, pop, soda~^^~Y~^^0^^6.25^3.36^8.37^3.87
-~14405~^~1400~^~Beverages, fruit punch juice drink, frozen concentrate~^~BEVERAGES,FRUIT PUNCH JUC DRK,FRZ CONC~^^^^^0^^6.25^3.36^8.37^3.90
-~14406~^~1400~^~Beverages, fruit punch juice drink, frozen concentrate, prepared with water~^~BEVERAGES,FRUIT PUNCH JUC DRK,FRZ CONC,PREP W/ H2O~^^^^^0^^0.00^^^
-~14407~^~1400~^~Beverages, orange-flavor drink, breakfast type, powder~^~BEVERAGES,ORANGE-FLAVOR DRK,BRKFST TYPE,PDR~^^^~Y~^^0^^6.25^3.36^8.37^3.90
-~14408~^~1400~^~Beverages, orange-flavor drink, breakfast type, powder, prepared with water~^~BEVERAGES,ORANGE-FLAVOR DRK,BRKFST TYPE,PDR,PREP W/ H2O~^^^^^0^^^^^
-~14409~^~1400~^~Beverages, Orange-flavor drink, breakfast type, low calorie, powder~^~BEVERAGES,ORANGE-FLAVOR DRK,BRKFST TYPE,LO CAL,PDR~^^^^^0^^^^^
-~14411~^~1400~^~Beverages, water, tap, drinking~^~BEVERAGES,H2O,TAP,DRINKING~^^^~Y~^^0^^^^^
-~14412~^~1400~^~Beverages, water, tap, well~^~BEVERAGES,H2O,TAP,WELL~^^^^^0^^6.25^0.00^0.00^0.00
-~14414~^~1400~^~Alcoholic beverage, liqueur, coffee, 53 proof~^~ALCOHOLIC BEV,LIQUEUR,COFFEE,53 PROOF~^^^~Y~^^0^^6.25^3.47^8.37^3.90
-~14415~^~1400~^~Alcoholic beverage, liqueur, coffee with cream, 34 proof~^~ALCOHOLIC BEV,LIQUEUR,COFFEE W/ CRM,34 PROOF~^^^~Y~^^0^^6.38^4.20^8.80^3.90
-~14416~^~1400~^~Beverages, carbonated, low calorie, cola or pepper-type, with aspartame, contains caffeine~^~BEVERAGES,CARB,LO CAL,COLA OR PEPPER-TYPE,W/ ASPRT, CAFFEINE~^~soft drink, pop, soda~^^~Y~^^0^^6.25^3.36^8.37^3.87
-~14421~^~1400~^~Beverages, coffee substitute, cereal grain beverage, powder, prepared with whole milk~^~BEVERAGES,COFFEE SUB,CRL GRAIN BEV,PDR,PREP W/ WHL MILK~^^^^^0^^6.38^^^
-~14422~^~1400~^~Beverages, Dairy drink mix, chocolate, reduced calorie, with low-calorie sweeteners, powder~^~BEV,DAIRY DRK MIX,CHOC,RED CAL,W/ LOW-CAL SWEETENERS,PDR~^^^~Y~^^0^^6.25^4.00^9.00^4.00
-~14423~^~1400~^~Beverages, dairy drink mix, chocolate, reduced calorie, with aspartame, powder, prepared with water and ice~^~BEVE,DARY DRK MIX,CHC,RED CAL,W/ ASPRT,PDR,PREP W/ H2O & ICE~^^^^^0^^0.00^^^
-~14424~^~1400~^~Beverages, Orange-flavor drink, breakfast type, with pulp, frozen concentrate.~^~BEV,ORANGE-FLAVO DRK,BRKFST TYPE,W/ PULP,FRZ CON. NOT MANUF.~^^^^^0^^6.25^3.36^8.37^3.90
-~14425~^~1400~^~Beverages, Orange-flavor drink, breakfast type, with pulp, frozen concentrate, prepared with water~^~BEVE,ORANGE-FLAV DRK,BRKFST TYPE,W/ PULP,FRZ CONC,PRE W/ H2O~^^^^^0^^0.00^^^
-~14426~^~1400~^~Beverages, Orange drink, breakfast type, with juice and pulp, frozen concentrate~^~BEVERAGES,ORANGE DRK,BRKFST TYPE,W/ JUC & PULP,FRZ CONC~^^^^^0^^6.25^3.36^8.37^3.90
-~14427~^~1400~^~Beverages, Orange drink, breakfast type, with juice and pulp, frozen concentrate, prepared with water~^~BEV,ORANGE DRK,BRKFST TYPE,W/ JUC & PULP,FRZ CONC,PRE W/ H2O~^^^^^0^^0.00^^^
-~14428~^~1400~^~Beverages, shake, fast food, strawberry~^~BEVERAGES,SHAKE,FAST FD,STRAWBERRY~^^^^^0^^6.38^4.27^8.80^3.90
-~14429~^~1400~^~Beverages, water, tap, municipal~^~BEVERAGES,H2O,TAP,MUNICIPAL~^^^~Y~^^0^^6.25^^^
-~14430~^~1400~^~Cranberry juice cocktail, frozen concentrate~^~CRANBERRY JUC COCKTAIL,FRZ CONC~^^^^^0^^6.25^3.36^8.37^3.90
-~14431~^~1400~^~Cranberry juice cocktail, frozen concentrate, prepared with water~^~CRANBERRY JUC COCKTAIL,FRZ CONC,PREP W/ H2O~^^^^^0^^^^^
-~14432~^~1400~^~Beverages, water, bottled, non-carbonated, DANNON~^~BEVERAGES,H2O,BTLD,NON-CARBONATED,DANNON~^^~The Dannon Company, Inc.~^^^0^^6.25^4.00^9.00^4.00
-~14433~^~1400~^~Beverages, water, bottled, non-carbonated, PEPSI, AQUAFINA~^~BEVERAGES,H2O,BTLD,NON-CARBONATED,PEPSI,AQUAFINA~^^~Pepsi-Cola North America~^^^0^^6.25^4.00^9.00^4.00
-~14434~^~1400~^~Beverages, The COCA-COLA company, DASANI, water, bottled, non-carbonated~^~BEVERAGES,THE COCA-COLA COMP,DASANI,H2O,BTLD,NON-CARBONATED~^^~The Coca-Cola Company~^^^0^^6.25^4.00^9.00^4.00
-~14436~^~1400~^~Beverages, orange breakfast drink, ready-to-drink, with added nutrients~^~BEVERAGES,ORANGE BRKFST DRK,RTD,W/ ADDED NUTR~^^^~Y~^^0^^6.25^4.00^9.00^4.00
-~14437~^~1400~^~Beverages, water, bottled, non-carbonated, CALISTOGA~^~BEVERAGES,H2O,BTLD,NON-CARBONATED,CALISTOGA~^^~Nestle Waters North America Inc.~^^^0^^6.25^4.00^9.00^4.00
-~14438~^~1400~^~Beverages, water, bottled, non-carbonated, CRYSTAL GEYSER~^~BEVERAGES,H2O,BTLD,NON-CARBONATED,CRYSTAL GEYSER~^^~Crystal Geyser Alpine Spring Water~^^^0^^6.25^4.00^9.00^4.00
-~14439~^~1400~^~Water, bottled, non-carbonated, NAYA~^~WATER,BTLD,NON-CARBONATED,NAYA~^^~NAYA Inc.~^^^0^^6.25^4.00^9.00^4.00
-~14440~^~1400~^~Beverages, DANNON, water, bottled, non-carbonated, with Fluoride~^~BEVERAGES,H2O,BTLD,NON-CARBONATED,DANNON FLUORIDE TO GO~^^~DANNON Fluoride To Go~^^^0^^6.25^4.00^9.00^4.00
-~14450~^~1400~^~Beverages, drink mix, QUAKER OATS, GATORADE, orange flavor, powder~^~BEVERAGES,DRK MIX,QUAKER OATS,GATORADE,ORANGE FLAVOR,PDR~^^~Quaker Oats Company - The Gatorade Company, a unit of Pepsi Co.~^^^0^^6.25^4.00^9.00^4.00
-~14460~^~1400~^~Beverages, PEPSICO QUAKER, Gatorade, G performance O 2, ready-to-drink.~^~BEVERAGES,PEPSICO QUAKER,GATORADE,G PERFORMANCE O 2,RTD.~^~thirst quencher, Gatorade G02 Perform~^~Quaker Oats Company - The Gatorade Company, a unit of Pepsi Co.~^~Y~^^0^^6.25^4.00^9.00^4.00
-~14461~^~1400~^~Beverages, COCA-COLA, POWERADE, lemon-lime flavored, ready-to-drink~^~BEVERAGES,COCA-COLA,POWERADE,LEMON-LIME FLAV,RTD~^~thirst quencher~^~The Coca-Cola Company~^~Y~^^0^^6.25^4.00^9.00^4.00
-~14462~^~1400~^~Beverages, Propel Zero, fruit-flavored, non-carbonated~^~BEVERAGES,PROPEL ZERO,FRUIT-FLAVORED,NON-CARBONATED~^~thirst quencher, sport drink~^^~Y~^^0^^^^^
-~14475~^~1400~^~Beverages, ARIZONA, tea, ready-to-drink, lemon~^~BEVERAGES,ARIZONA,TEA,RTD,LEMON~^^~Arizona Beverage Co.~^^^0^^6.25^4.00^9.00^4.00
-~14476~^~1400~^~Beverages, LIPTON BRISK, tea, black, ready-to-drink, lemon~^~BEVERAGES,LIPTON BRISK,TEA,BLACK,RTD,LEMON~^^~Lipton~^^^0^^6.25^4.00^9.00^4.00
-~14530~^~1400~^~Whiskey sour mix, bottled, with added potassium and sodium~^~WHISKEY SOUR MIX,BTLD,W/ K&NA~^^^^^0^^6.25^3.40^8.40^3.90
-~14531~^~1400~^~Alcoholic beverage, whiskey sour~^~ALCOHOLIC BEV,WHISKEY SOUR~^^^^^0^^0.00^^^
-~14532~^~1400~^~Alcoholic beverage, distilled, all (gin, rum, vodka, whiskey) 94 proof~^~ALCOHOLIC BEV,DISTILLED,ALL (GIN,RUM,VODKA,WHISKEY) 94 PROOF~^^^^^0^^6.25^^^4.12
-~14533~^~1400~^~Alcoholic beverage, distilled, all (gin, rum, vodka, whiskey) 100 proof~^~ALCOHOLIC BEV DISTILLED,ALL (GIN,RUM,VODKA,WHISKEY) 100PROOF~^^^^^0^^6.25^^^4.12
-~14534~^~1400~^~Alcoholic beverage, liqueur, coffee, 63 proof~^~ALCOHOLIC BEV,LIQUEUR,COFFEE,63 PROOF~^^^^^0^^6.25^3.47^8.37^3.90
-~14536~^~1400~^~Alcoholic beverage, wine, dessert, dry~^~ALCOHOLIC BEV,WINE,DSSRT,DRY~^^^^^0^^6.25^3.36^8.37^3.92
-~14537~^~1400~^~Carbonated beverage, low calorie, other than cola or pepper, with sodium saccharin, without caffeine~^~CARBONATED BEV,LOCAL,OTHR THAN COLA OR PEP,W/ NA SAC,WO/ CAF~^~soft drink, pop, soda~^^^^0^^6.25^3.36^8.37^3.87
-~14538~^~1400~^~Beverages, Cocoa mix, low calorie, powder, with added calcium, phosphorus, aspartame, without added sodium or vitamin A~^~BEVE,COCA MIX,LO CAL,PDR,W/ ADD CA,P,ASPRT,WO/ ADD NA, VIT A~^^^~Y~^^0^^6.25^4.00^9.00^4.00
-~14541~^~1400~^~Beverages, fruit punch-flavor drink, powder, without added sodium, prepared with water~^~BEVERAGE,FRUIT PUNCH-FLAVOR DRK,PDR,WO/ ADDED NA,PREP W/ H2O~^^^^^0^^0.00^^^
-~14542~^~1400~^~Lemonade, frozen concentrate, pink~^~LEMONADE,FRZ CONC,PINK~^^^^^0^^6.25^3.36^8.37^3.80
-~14543~^~1400~^~Beverages, lemonade, frozen concentrate, pink, prepared with water~^~BEVERAGES,LEMONADE,FRZ CONC,PINK,PREP W/ H2O~^^^^^0^^0.00^^^
-~14544~^~1400~^~Beverages, tea, black, brewed, prepared with distilled water~^~BEVERAGES,TEA,BLACK,BREWED,PREP W/ DISTILLED H2O~^^^^^0^^6.25^2.44^8.37^3.57
-~14545~^~1400~^~Beverages, tea, herb, brewed, chamomile~^~BEVERAGES,TEA,HERB,BREWED,CHAMOMILE~^^^~Y~^^0^^6.25^2.44^8.37^3.57
-~14548~^~1400~^~Beverages, tea, instant, lemon, with added ascorbic acid~^~BEVERAGES,TEA,INST,LEMON,W/ ADDED VIT C~^^^^^0^^6.25^2.44^8.37^3.90
-~14550~^~1400~^~Alcoholic beverage, distilled, all (gin, rum, vodka, whiskey) 86 proof~^~ALCOHOLIC BEV,DISTILLED,ALL (GIN,RUM,VODKA,WHISKEY) 86 PROOF~^^^~Y~^^0^^6.25^^^4.12
-~14551~^~1400~^~Alcoholic beverage, distilled, all (gin, rum, vodka, whiskey) 90 proof~^~ALCOHOLIC BEV,DISTILLED,ALL (GIN,RUM,VODKA,WHISKEY) 90 PROOF~^^^~Y~^^0^^6.25^^^4.12
-~14552~^~1400~^~Carbonated beverage, chocolate-flavored soda~^~CARBONATED BEV,CHOCOLATE-FLAVORED SODA~^~soft drink, pop~^^~Y~^^0^^^^^
-~14553~^~1400~^~Beverages, Wine, non-alcoholic~^~BEVERAGES,WINE,NON-ALCOHOLIC~^^^~Y~^^0^^^^^
-~14555~^~1400~^~Water, bottled, generic~^~WATER,BTLD,GENERIC~^^^~Y~^^0^^^^^
-~14557~^~1400~^~Beverages, chocolate-flavor beverage mix for milk, powder, with added nutrients~^~BEVERAGE,CHOCOLATE-FLAVOR BEV MIX FOR MILK,PDR,W/ ADDED NUTR~^^^~Y~^^0^^6.25^4.00^9.00^4.00
-~14558~^~1400~^~Beverages, chocolate-flavor beverage mix for milk, powder, with added nutrients, prepared with whole milk~^~BEV,CHOCO-FLA BEV MIX , MLK,PDR,W/ ADD NUTR,PREP W/ WHL MILK~^^^^^0^^^^^
-~14559~^~1400~^~Beverages, water, bottled, non-carbonated, EVIAN~^~BEVERAGES,H2O,BTLD,NON-CARBONATED,EVIAN~^^~S.A. Evian Co.~^^^0^^6.25^0.00^0.00^0.00
-~14599~^~1400~^~Beverages, Powerade Zero Ion4, calorie-free, assorted flavors~^~BEVERAGES,POWERADE ZERO ION4,CALORIE-FREE,ASSORTED FLAVORS~^^^~Y~^^0^^^^^
-~14601~^~1400~^~Beverages, WENDY'S, tea, ready-to-drink, unsweetened~^~BEVERAGES,WENDY'S,TEA,RTD,UNSWTND~^^~Wendy's International, Inc.~^^^0^^6.25^4.00^9.00^4.00
-~14602~^~1400~^~Alcoholic Beverage, wine, table, red, Merlot~^~ALCOHOLIC BEV,WINE,TABLE,RED,MERLOT~^^^^^0^^6.25^3.36^8.37^3.92
-~14604~^~1400~^~Water, non-carbonated, bottles, natural fruit flavors, sweetened with low calorie sweetener~^~WATER,NON-CARBONATED,FRUIT FLAVORS,SWTND W/ LO CAL SWTNR~^^^~Y~^^0^^^^^
-~14605~^~1400~^~Beverages, Water with added vitamins and minerals, bottles, sweetened, assorted fruit flavors~^~BEV,H2O W/ ADDED VIT & MIN,BOTTLES,SWTND,AST FRUIT FLAVORS~^^^~Y~^^0^^^^^
-~14607~^~1400~^~Beverages, V8 SPLASH Juice Drinks, Diet Berry Blend~^~BEVERAGES,V8 SPLASH JUC DRINKS,DIET BERRY BLEND~^^~Campbell Soup Co.~^^^0^^^^^
-~14608~^~1400~^~Beverages, V8 SPLASH Juice Drinks, Diet Fruit Medley~^~BEVERAGES,V8 SPLASH JUC DRINKS,DIET FRUIT MEDLEY~^^~Campbell Soup Co.~^^^0^^^^^
-~14609~^~1400~^~Beverages, V8 SPLASH Juice Drinks, Diet Strawberry Kiwi~^~BEVERAGES,V8 SPLASH JUC DRINKS,DIET STRAWBERRY KIWI~^^~Campbell Soup Co.~^^^0^^^^^
-~14610~^~1400~^~Beverages, V8 SPLASH Juice Drinks, Diet Tropical Blend~^~BEVERAGES,V8 SPLASH JUC DRINKS,DIET TROPICAL BLEND~^^~Campbell Soup Co.~^^^0^^^^^
-~14611~^~1400~^~Beverages, V8 SPLASH Juice Drinks, Berry Blend~^~BEVERAGES,V8 SPLASH JUC DRINKS,BERRY BLEND~^^~Campbell Soup Co.~^^^0^^^^^
-~14612~^~1400~^~Beverages, V8 SPLASH Juice Drinks, Fruit Medley~^~BEVERAGES,V8 SPLASH JUC DRINKS,FRUIT MEDLEY~^^~Campbell Soup Co.~^^^0^^^^^
-~14613~^~1400~^~Beverages, V8 SPLASH Juice Drinks, Guava Passion Fruit~^~BEVERAGES,V8 SPLASH JUC DRINKS,GUAVA PASSION FRUIT~^^~Campbell Soup Co.~^^^0^^^^^
-~14614~^~1400~^~Beverages, V8 SPLASH Juice Drinks, Mango Peach~^~BEVERAGES,V8 SPLASH JUC DRINKS,MANGO PEACH~^^~Campbell Soup Co.~^^^0^^^^^
-~14615~^~1400~^~Beverages, V8 SPLASH Juice Drinks, Orange Pineapple~^~BEVERAGES,V8 SPLASH JUC DRINKS,ORANGE PNAPPL~^^~Campbell Soup Co.~^^^0^^^^^
-~14616~^~1400~^~Beverages, V8 SPLASH Juice Drinks, Orchard Blend~^~BEVERAGES,V8 SPLASH JUC DRINKS,ORCHARD BLEND~^^~Campbell Soup Co.~^^^0^^^^^
-~14617~^~1400~^~Beverages, V8 SPLASH Juice Drinks, Strawberry Banana~^~BEVERAGES,V8 SPLASH JUC DRINKS,STRAWBERRY BANANA~^^~Campbell Soup Co.~^^^0^^^^^
-~14618~^~1400~^~Beverages, V8 SPLASH Juice Drinks, Strawberry Kiwi~^~BEVERAGES,V8 SPLASH JUC DRINKS,STRAWBERRY KIWI~^^~Campbell Soup Co.~^^^0^^^^^
-~14619~^~1400~^~Beverages, V8 SPLASH Juice Drinks, Tropical Blend~^~BEVERAGES,V8 SPLASH JUC DRINKS,TROPICAL BLEND~^^~Campbell Soup Co.~^^^0^^^^^
-~14620~^~1400~^~Beverages, V8 V-FUSION Juices, Peach Mango~^~BEVERAGES,V8 V-FUSION JUICES,PEACH MANGO~^^~Campbell Soup Co.~^^^0^^^^^
-~14621~^~1400~^~Beverages, V8 V-FUSION Juices, Strawberry Banana~^~BEVERAGES,V8 V-FUSION JUICES,STRAWBERRY BANANA~^^~Campbell Soup Co.~^^^0^^^^^
-~14622~^~1400~^~Beverages, V8 V-FUSION Juices, Tropical~^~BEVERAGES,V8 V-FUSION JUICES,TROPICAL~^^~Campbell Soup Co.~^^^0^^^^^
-~14623~^~1400~^~Beverages, V8 V- FUSION Juices, Acai Berry~^~BEVERAGES,V8 V- FUSION JUICES,ACAI BERRY~^^~Campbell Soup Co.~^^^0^^^^^
-~14625~^~1400~^~Beverages, Energy drink, AMP~^~BEVERAGES,ENERGY DRK,AMP~^^~Pepsi-Cola North America~^~Y~^^0^^^^^
-~14626~^~1400~^~Beverages, Energy drink, FULL THROTTLE~^~BEVERAGES,ENERGY DRK,FULL THROTTLE~^^~The Coca-Cola Company~^~Y~^^0^^6.25^^^
-~14627~^~1400~^~Beverages, Energy Drink, Monster, fortified with vitamins C, B2, B3, B6, B12~^~BEVERAGES,ENERGY DRK,MONSTER,FORT W/ VITAMINS C,B2,B3,B6,B12~^^~Monster energy company~^~Y~^^0^^6.25^^^
-~14628~^~1400~^~Beverages, Energy drink, AMP, sugar free~^~BEVERAGES,ENERGY DRK,AMP,SUGAR FREE~^^^~Y~^^0^^6.25^^^
-~14629~^~1400~^~Beverages, Energy drink, ROCKSTAR~^~BEVERAGES,ENERGY DRK,ROCKSTAR~^^~Rockstar, Inc.~^~Y~^^0^^^^^
-~14630~^~1400~^~Beverages, Energy drink, ROCKSTAR, sugar free~^~BEVERAGES,ENERGY DRK,ROCKSTAR,SUGAR FREE~^^^~Y~^^0^^6.25^^^
-~14632~^~1400~^~Beverages, Meal supplement drink, canned, peanut flavor~^~BEVERAGES,MEAL SUPP DRK,CND,PNUT FLAVOR~^^^^^0^^6.25^^^
-~14633~^~1400~^~Beverages, Vegetable and fruit juice drink, reduced calorie, with low-calorie sweetener, added vitamin C~^~BEVER,VEG & FRUIT JUC DRK,RED CAL,W/ LOW-CAL SWTNR,ADD VIT C~^^^~Y~^^0^^^^^
-~14634~^~1400~^~Beverages, milk beverage, reduced fat, flavored and sweetened, Ready-to-drink, added calcium, vitamin A and vitamin D~^~BEV,MILK BEV,RED FAT,FLAV & SWTND,RTD,ADDED CA,VIT A & D~^~Nesquik ready-to-drink~^^~Y~^^0^^6.25^^^
-~14635~^~1400~^~Beverages, vegetable and fruit juice blend, 100% juice, with added vitamins A, C, E~^~BEVERAGES,VEG & FRUIT JUC BLEND,W/ ADDED VITAMINS A,C,E~^~includes V8 V-fusion juices~^^~Y~^^0^^^^^
-~14636~^~1400~^~Beverages, fruit juice drink, reduced sugar, with vitamin E added~^~BEVERAGES,FRUIT JUC DRK,RED SUGAR,W/ VITAMIN E ADDED~^~includes Capri Sun~^^~Y~^^0^^^3.36^8.37^3.80
-~14637~^~1400~^~Water, with corn syrup and/or sugar and low calorie sweetener, fruit flavored~^~WATER,W/ CORN SYRUP AND/OR SUGAR & LO CAL SWTNR,FRUIT FLAV~^~includes Caprisun Roarin' Waters~^^~Y~^^0^^6.25^^^
-~14638~^~1400~^~Beverages, Horchata, as served in restaurant~^~BEVERAGES,HORCHATA,AS SERVED IN RESTAURANT~^~Latino food~^^^^0^^^^^
-~14639~^~1400~^~Beverages, rice milk, unsweetened~^~BEVERAGES,RICE MILK,UNSWTND~^~ricemilk, rice milk~^^~Y~^^0^^^^^
-~14640~^~1400~^~Beverages, Energy drink, VAULT, citrus flavor~^~BEVERAGES,ENERGY DRK,VAULT,CITRUS FLAVOR~^^~The Coca-Cola Company~^~Y~^^0^^6.25^^^
-~14641~^~1400~^~Beverages, Energy drink, VAULT Zero, sugar-free, citrus flavor~^~BEVERAGES,ENERGY DRK,VAULT ZERO,SUGAR-FREE,CITRUS FLAVOR~^^~The Coca-Cola Company~^~Y~^^0^^6.25^^^
-~14644~^~1400~^~Beverages, PEPSICO QUAKER, Gatorade G2, low calorie~^~BEVERAGES,PEPSICO QUAKER,GATORADE G2,LO CAL~^^~Quaker Oats Company - The Gatorade Company, a unit of Pepsi Co.~^~Y~^^0^^^^^
-~14645~^~1400~^~Beverages, Fruit flavored drink, less than 3% juice, not fortified with vitamin C~^~BEVERAGES,FRUIT FLAV DRK,LESS THAN 3% JUC,NOT FORT W/ VIT C~^^^~Y~^^0^^^^^
-~14646~^~1400~^~Beverages, Fruit flavored drink containing less than 3% fruit juice, with high vitamin C~^~BEV,FRUIT FLAV DRK CONTAINING , 3% FRUIT JUC,W/ HI VIT C~^^^~Y~^^0^^^^^
-~14647~^~1400~^~Beverages, Fruit flavored drink, reduced sugar, greater than 3% fruit juice, high vitamin C, added calcium~^~BEV,FRUIT FLAV DRK,RED SUGAR, > 3% FRUIT JUC,HI VIT C,ADD CA~^^^^^0^^^^^
-~14648~^~1400~^~Beverages, fruit juice drink, greater than 3% fruit juice, high vitamin C and added thiamin~^~BEV,FRUIT JUC DRK, MORE 3% FRUIT JUC,HI VIT C & ADD THIAMIN~^^^~Y~^^0^^^^^
-~14649~^~1400~^~Beverages, tea, hibiscus, brewed~^~BEVERAGES,TEA,HIBISCUS,BREWED~^^^~Y~^^0^^^^^
-~14651~^~1400~^~Beverages, fruit juice drink, greater than 3% juice, high vitamin C~^~BEVERAGES,FRUIT JUC DRK,GREATER THAN 3% JUC,HI VIT C~^^^~Y~^^0^^^^^
-~14654~^~1400~^~Beverages, nutritional shake mix, high protein, powder~^~BEVERAGES,NUTRITIONAL SHAKE MIX,HI PROT,PDR~^^^~Y~^^0^^^^^
-~15001~^~1500~^~Fish, anchovy, european, raw~^~ANCHOVY,EUROPEAN,RAW~^^^^^0^~Engraulis encrasicholus (L.)~^6.25^4.27^9.02^3.87
-~15002~^~1500~^~Fish, anchovy, european, canned in oil, drained solids~^~ANCHOVY,EUROPEAN,CND IN OIL,DRND SOL~^^^~Y~^^0^^6.25^4.27^8.92^3.87
-~15003~^~1500~^~Fish, bass, fresh water, mixed species, raw~^~BASS,FRSH H2O,MXD SP,RAW~^^^^^0^~Percichthyidae and Centrarchidae~^6.25^4.27^9.02^3.87
-~15004~^~1500~^~Fish, bass, striped, raw~^~BASS,STRIPED,RAW~^^^^^0^~Morone saxatilis (Walbaum)~^6.25^4.27^9.02^3.87
-~15005~^~1500~^~Fish, bluefish, raw~^~BLUEFISH,RAW~^^^^^0^~Pomatomus saltatrix (L.)~^6.25^4.27^9.02^3.87
-~15006~^~1500~^~Fish, burbot, raw~^~BURBOT,RAW~^^^^^0^~Lota lota (L.)~^6.25^4.27^9.02^3.87
-~15007~^~1500~^~Fish, butterfish, raw~^~BUTTERFISH,RAW~^^^^^0^~Peprilus triacanthus (Peck)~^6.25^4.27^9.02^3.87
-~15008~^~1500~^~Fish, carp, raw~^~CARP,RAW~^^^~Y~^^0^~Cyprinus carpio (L.)~^6.25^4.27^9.02^3.87
-~15009~^~1500~^~Fish, carp, cooked, dry heat~^~CARP,COOKED,DRY HEAT~^^^^^0^^6.25^4.27^9.02^3.87
-~15010~^~1500~^~Fish, catfish, channel, wild, raw~^~CATFISH,CHANNEL,WILD,RAW~^^^^^0^~Ictalurus punctatus (Rafinesque)~^6.25^4.27^9.02^3.87
-~15011~^~1500~^~Fish, catfish, channel, cooked, breaded and fried~^~CATFISH,CHANNEL,CKD,BREADED&FRIED~^^^^^0^^6.25^4.27^9.02^3.87
-~15012~^~1500~^~Fish, caviar, black and red, granular~^~CAVIAR,BLACK&RED,GRANULAR~^^^~Y~^^0^^6.25^3.57^9.02^3.68
-~15013~^~1500~^~Fish, cisco, raw~^~CISCO,RAW~^^^^^0^~Coregonus artedi Lesueur~^6.25^4.27^9.02^3.87
-~15014~^~1500~^~Fish, cisco, smoked~^~CISCO,SMOKED~^^^~Y~^^0^^6.25^4.27^9.02^3.87
-~15015~^~1500~^~Fish, cod, Atlantic, raw~^~COD,ATLANTIC,RAW~^^^~Y~^^0^~Gadus morhua (L.)~^6.25^4.27^9.02^3.87
-~15016~^~1500~^~Fish, cod, Atlantic, cooked, dry heat~^~COD,ATLANTIC,CKD,DRY HEAT~^^^~Y~^^0^^6.25^4.27^9.02^3.87
-~15017~^~1500~^~Fish, cod, Atlantic, canned, solids and liquid~^~COD,ATLANTIC,CND,SOL&LIQ~^^^~Y~^^0^^6.25^4.27^9.02^3.87
-~15018~^~1500~^~Fish, cod, Atlantic, dried and salted~^~COD,ATLANTIC,DRIED&SALTED~^^^~Y~^^0^^6.25^4.27^9.02^3.87
-~15019~^~1500~^~Fish, cod, Pacific, raw (may have been previously frozen)~^~FISH,COD,PACIFIC,RAW (MAY HAVE BEEN PREVIOUSLY FROZEN)~^^^~Y~^^0^~Gadus macrocephalus Tilesius~^6.25^4.27^9.02^3.87
-~15020~^~1500~^~Fish, croaker, Atlantic, raw~^~CROAKER,ATLANTIC,RAW~^^^~Y~^^0^~Micropogonias undulatus (L.)~^6.25^4.27^9.02^3.87
-~15021~^~1500~^~Fish, croaker, Atlantic, cooked, breaded and fried~^~CROAKER,ATLANTIC,CKD,BREADED&FRIED~^^^^^0^^6.21^4.27^9.02^3.87
-~15022~^~1500~^~Fish, cusk, raw~^~CUSK,RAW~^^^^^0^~Brosme brosme (Muller)~^6.25^4.27^9.02^3.87
-~15023~^~1500~^~Fish, mahimahi, raw~^~FISH,MAHIMAHI,RAW~^^^^^0^~Coryphaena hippurus (L.)~^6.25^4.27^9.02^3.87
-~15024~^~1500~^~Fish, drum, freshwater, raw~^~DRUM,FRESHWATER,RAW~^^^^^0^~Aplodinotus grunniens Rafinesque~^6.25^4.27^9.02^3.87
-~15025~^~1500~^~Fish, eel, mixed species, raw~^~EEL,MIXED SPECIES,RAW~^^^~Y~^^0^~Anguilla spp.~^6.25^4.27^9.02^3.87
-~15026~^~1500~^~Fish, eel, mixed species, cooked, dry heat~^~EEL,MXD SP,CKD,DRY HEAT~^^^^^0^^6.25^4.27^9.02^3.87
-~15027~^~1500~^~Fish, fish sticks, frozen, prepared~^~FISH,FISH STKS,FRZ,PREP~^^^~Y~^^0^^6.10^4.20^8.94^3.97
-~15028~^~1500~^~Fish, flatfish (flounder and sole species), raw~^~FLATFISH (FLOUNDER&SOLE SP),RAW~^^^~Y~^^0^~Bothidae and Pleuronectidae~^6.25^4.27^9.02^3.87
-~15029~^~1500~^~Fish, flatfish (flounder and sole species), cooked, dry heat~^~FLATFISH (FLOUNDER&SOLE SP),CKD,DRY HEAT~^^^~Y~^^0^^6.25^4.27^9.02^3.87
-~15030~^~1500~^~Fish, gefiltefish, commercial, sweet recipe~^~GEFILTEFISH,COMM,SWT RECIPE~^^^^^0^^6.25^4.27^9.02^4.00
-~15031~^~1500~^~Fish, grouper, mixed species, raw~^~GROUPER,MIXED SPECIES,RAW~^^^^^0^~Epinephelus spp.~^6.25^4.27^9.02^3.87
-~15032~^~1500~^~Fish, grouper, mixed species, cooked, dry heat~^~GROUPER,MXD SP,CKD,DRY HEAT~^^^^^0^^6.25^4.27^9.02^3.87
-~15033~^~1500~^~Fish, haddock, raw~^~HADDOCK,RAW~^^^~Y~^^0^~Melanogrammus aeglefinus (L.)~^6.25^4.27^9.02^3.87
-~15034~^~1500~^~Fish, haddock, cooked, dry heat~^~HADDOCK,COOKED,DRY HEAT~^^^^^0^^6.25^4.27^9.02^3.87
-~15035~^~1500~^~Fish, haddock, smoked~^~HADDOCK,SMOKED~^^^~Y~^^0^^6.25^4.27^9.02^3.87
-~15036~^~1500~^~Fish, halibut, Atlantic and Pacific, raw~^~HALIBUT,ATLANTIC&PACIFIC,RAW~^^^~Y~^^0^~Hippoglossus hippoglossus (L.) and H. stenolepis Schmidt~^6.25^4.27^9.02^3.87
-~15037~^~1500~^~Fish, halibut, Atlantic and Pacific, cooked, dry heat~^~HALIBUT,ATLANTIC&PACIFIC,CKD,DRY HEAT~^^^^^0^^6.25^4.27^9.02^3.87
-~15038~^~1500~^~Fish, halibut, Greenland, raw~^~HALIBUT,GREENLAND,RAW~^^^~Y~^^0^~Reinhardtius hippoglossoides (Walbaum)~^6.25^4.27^9.02^3.87
-~15039~^~1500~^~Fish, herring, Atlantic, raw~^~HERRING,ATLANTIC,RAW~^^^~Y~^^0^~Clupea harengus harengus (L.)~^6.25^4.27^9.02^3.87
-~15040~^~1500~^~Fish, herring, Atlantic, cooked, dry heat~^~HERRING,ATLANTIC,CKD,DRY HEAT~^^^~Y~^^0^^6.25^4.27^9.02^3.87
-~15041~^~1500~^~Fish, herring, Atlantic, pickled~^~HERRING,ATLANTIC,PICKLED~^^^~Y~^^0^^6.25^4.27^9.02^3.87
-~15042~^~1500~^~Fish, herring, Atlantic, kippered~^~HERRING,ATLANTIC,KIPPERED~^^^~Y~^^0^^6.25^4.27^9.02^3.87
-~15043~^~1500~^~Fish, herring, Pacific, raw~^~HERRING,PACIFIC,RAW~^^^^^0^~Clupea harengus pallasi Valenciennes~^6.25^4.27^9.02^3.87
-~15044~^~1500~^~Fish, ling, raw~^~LING,RAW~^^^^^0^~Molva molva (L.)~^6.25^4.27^9.02^3.87
-~15045~^~1500~^~Fish, lingcod, raw~^~LINGCOD,RAW~^^^^^0^~Ophiodon elongatus Girard~^6.25^4.27^9.02^3.87
-~15046~^~1500~^~Fish, mackerel, Atlantic, raw~^~MACKEREL,ATLANTIC,RAW~^^^~Y~^^0^~Scomber scombrus L.~^6.25^4.27^9.02^3.87
-~15047~^~1500~^~Fish, mackerel, Atlantic, cooked, dry heat~^~MACKEREL,ATLANTIC,CKD,DRY HEAT~^^^^^0^^6.25^4.27^9.02^3.87
-~15048~^~1500~^~Fish, mackerel, jack, canned, drained solids~^~MACKEREL,JACK,CND,DRND SOL~^^^~Y~^^0^~Trachurus symmetricus (Ayers)~^6.25^4.27^9.02^3.87
-~15049~^~1500~^~Fish, mackerel, king, raw~^~MACKEREL,KING,RAW~^^^^^0^~Scombermorus cavalla (Cuvier)~^6.25^4.27^9.02^3.87
-~15050~^~1500~^~Fish, mackerel, Pacific and jack, mixed species, raw~^~MACKEREL,PACIFIC&JACK,MXD SP,RAW~^^^~Y~^^0^~Scomber spp. and Trachurus spp.~^6.25^4.27^9.02^3.87
-~15051~^~1500~^~Fish, mackerel, spanish, raw~^~MACKEREL,SPANISH,RAW~^^^^^0^~Scombermorus maculatus (Mitchill)~^6.25^4.27^9.02^3.87
-~15052~^~1500~^~Fish, mackerel, spanish, cooked, dry heat~^~MACKEREL,SPANISH,CKD,DRY HEAT~^^^^^0^^6.25^4.27^9.02^3.87
-~15053~^~1500~^~Fish, milkfish, raw~^~MILKFISH,RAW~^^^^^0^~Chanos chanos (Forskaal)~^6.25^4.27^9.02^3.87
-~15054~^~1500~^~Fish, monkfish, raw~^~MONKFISH,RAW~^^^^^0^~Lophius piscatorius L.~^6.25^4.27^9.02^3.87
-~15055~^~1500~^~Fish, mullet, striped, raw~^~MULLET,STRIPED,RAW~^^^~Y~^^0^~Mugil cephalus L.~^6.25^4.27^9.02^3.87
-~15056~^~1500~^~Fish, mullet, striped, cooked, dry heat~^~MULLET,STRIPED,CKD,DRY HEAT~^^^^^0^^6.25^4.27^9.02^3.87
-~15057~^~1500~^~Fish, ocean perch, Atlantic, raw~^~OCEAN PERCH,ATLANTIC,RAW~^^^~Y~^^0^~Sebastes marinus L.~^6.25^4.27^9.02^3.87
-~15058~^~1500~^~Fish, ocean perch, Atlantic, cooked, dry heat~^~OCEAN PERCH,ATLANTIC,CKD,DRY HEAT~^^^^^0^^6.25^4.27^9.02^3.87
-~15059~^~1500~^~Fish, pout, ocean, raw~^~POUT,OCEAN,RAW~^^^^^0^~Macrozoarces americanus (Schneider)~^6.25^4.27^9.02^3.87
-~15060~^~1500~^~Fish, perch, mixed species, raw~^~PERCH,MIXED SPECIES,RAW~^^^~Y~^^0^~Morone americana Gmelin and Perca flavescens (Mitchill)~^6.25^4.27^9.02^3.87
-~15061~^~1500~^~Fish, perch, mixed species, cooked, dry heat~^~PERCH,MXD SP,CKD,DRY HEAT~^^^^^0^^6.25^4.27^9.02^3.87
-~15062~^~1500~^~Fish, pike, northern, raw~^~PIKE,NORTHERN,RAW~^^^~Y~^^0^~Esox lucius L.~^6.25^4.27^9.02^3.87
-~15063~^~1500~^~Fish, pike, northern, cooked, dry heat~^~PIKE,NORTHERN,CKD,DRY HEAT~^^^^^0^^6.25^4.27^9.02^3.87
-~15064~^~1500~^~Fish, pike, walleye, raw~^~PIKE,WALLEYE,RAW~^^^^^0^~Stizostedion vitreum vitreum (Mitchill)~^6.25^4.27^9.02^3.87
-~15065~^~1500~^~Fish, pollock, Atlantic, raw~^~POLLOCK,ATLANTIC,RAW~^^^^^0^~Pollachius virens L.~^6.25^4.27^9.02^3.87
-~15066~^~1500~^~Fish, pollock, Alaska, raw (may contain additives to retain moisture)~^~POLLOCK,ALASKA,RAW (CONTAIN ADDITIVES TO RETAIN MOISTURE)~^~~^~~^~Y~^~~^0^~Theragra chalcogramma (Pallas)~^6.25^4.27^9.02^3.87
-~15067~^~1500~^~Fish, pollock, Alaska, cooked, dry heat (may contain additives to retain moisture)~^~POLLOCK,ALASKA,CKD (CONTAIN ADDITIVES TO RETAIN MOISTURE)~^~~^~~^~Y~^~~^0^~~^6.25^4.27^9.02^3.87
-~15068~^~1500~^~Fish, pompano, florida, raw~^~POMPANO,FLORIDA,RAW~^^^~Y~^^0^~Trachinotus carolinus (L.)~^6.25^4.27^9.02^3.87
-~15069~^~1500~^~Fish, pompano, florida, cooked, dry heat~^~POMPANO,FLORIDA,CKD,DRY HEAT~^^^^^0^^6.25^4.27^9.02^3.87
-~15070~^~1500~^~Fish, rockfish, Pacific, mixed species, raw~^~ROCKFISH,PACIFIC,MXD SP,RAW~^^^~Y~^^0^~Sebastes spp.~^6.25^4.27^9.02^3.87
-~15071~^~1500~^~Fish, rockfish, Pacific, mixed species, cooked, dry heat~^~ROCKFISH,PACIFIC,MXD SP,CKD,DRY HEAT~^^^~Y~^^0^^6.25^4.27^9.02^3.87
-~15072~^~1500~^~Fish, roe, mixed species, raw~^~ROE,MIXED SPECIES,RAW~^^^~Y~^^0^^6.25^3.57^9.02^3.68
-~15073~^~1500~^~Fish, roughy, orange, raw~^~ROUGHY,ORANGE,RAW~^^^^^0^~Hoplostethus atlanticus~^6.25^4.27^9.02^3.87
-~15074~^~1500~^~Fish, sablefish, raw~^~SABLEFISH,RAW~^^^^^0^~Anoplopoma fimbria (Pallas)~^6.25^4.27^9.02^3.87
-~15075~^~1500~^~Fish, sablefish, smoked~^~SABLEFISH,SMOKED~^^^^^0^^6.25^4.27^9.02^3.87
-~15076~^~1500~^~Fish, salmon, Atlantic, wild, raw~^~SALMON,ATLANTIC,WILD,RAW~^^^^^0^~Salmo salar L.~^6.25^4.27^9.02^3.87
-~15077~^~1500~^~Fish, salmon, chinook, smoked~^~SALMON,CHINOOK,SMOKED~^^^~Y~^^0^^6.25^4.27^9.02^3.87
-~15078~^~1500~^~Fish, salmon, chinook, raw~^~SALMON,CHINOOK,RAW~^^^^^0^~Oncorhynchus tshawytscha (Walbaum)~^6.25^4.27^9.02^3.87
-~15079~^~1500~^~Fish, salmon, chum, raw~^~SALMON,CHUM,RAW~^^^^^0^~Oncorhynchus keta (Walbaum)~^6.25^4.27^9.02^3.87
-~15080~^~1500~^~Fish, salmon, chum, canned, drained solids with bone~^~SALMON,CHUM,DRND SOL W/BONE~^^^~Y~^^0^^6.25^4.27^9.02^3.87
-~15081~^~1500~^~Fish, salmon, coho, wild, raw~^~SALMON,COHO,WILD,RAW~^^^~Y~^^0^~Oncorhynchus kisutch (Walbaum)~^6.25^4.27^9.02^3.87
-~15082~^~1500~^~Fish, salmon, coho, wild, cooked, moist heat~^~SALMON,COHO,WILD,CKD,MOIST HEAT~^^^^^0^^6.25^4.27^9.02^3.87
-~15083~^~1500~^~Fish, salmon, pink, raw~^~SALMON,PINK,RAW~^^^~Y~^^0^~Oncorhynchus gorbuscha (Walbaum)~^6.25^4.27^9.02^3.87
-~15084~^~1500~^~Fish, salmon, pink, canned, total can contents~^~FISH,SALMON,PINK,CND,TOTAL CAN CONTENTS~^^^~Y~^^0^^6.25^4.27^9.02^3.87
-~15085~^~1500~^~Fish, salmon, sockeye, raw~^~FISH,SALMON,SOCKEYE,RAW~^^^~Y~^^0^^^^^
-~15086~^~1500~^~Fish, salmon, sockeye, cooked, dry heat~^~FISH,SALMON,SOCKEYE,CKD,DRY HEAT~^^^~Y~^^0^^^^^
-~15087~^~1500~^~Fish, salmon, sockeye, canned, drained solids~^~FISH,SALMON,SOCKEYE,CND,DRND SOL~^^^~Y~^^0^^6.25^4.27^9.02^3.87
-~15088~^~1500~^~Fish, sardine, Atlantic, canned in oil, drained solids with bone~^~SARDINE,ATLANTIC,CND IN OIL,DRND SOL W/BONE~^^^~Y~^^0^~Clupea harengus harengus L.~^6.25^4.27^9.00^3.87
-~15089~^~1500~^~Fish, sardine, Pacific, canned in tomato sauce, drained solids with bone~^~SARDINE,PACIFIC,CND IN TOMATO SAU,DRND SOL W/BONE~^^^~Y~^^0^~Sardinops spp.~^6.25^4.27^9.02^3.70
-~15090~^~1500~^~Fish, scup, raw~^~SCUP,RAW~^^^~Y~^^0^~Stenotomus chrysops L.~^6.25^4.27^9.02^3.87
-~15091~^~1500~^~Fish, sea bass, mixed species, raw~^~SEA BASS,MXD SP,RAW~^^^~Y~^^0^~Centropristes striata L. and Lateolabrax japonicus (Cuvier)~^6.25^4.27^9.02^3.87
-~15092~^~1500~^~Fish, sea bass, mixed species, cooked, dry heat~^~SEA BASS,MXD SP,CKD,DRY HEAT~^^^^^0^^6.25^4.27^9.02^3.87
-~15093~^~1500~^~Fish, seatrout, mixed species, raw~^~SEATROUT,MXD SP,RAW~^^^^^0^~Cynoscion spp.~^6.25^4.27^9.02^3.87
-~15094~^~1500~^~Fish, shad, american, raw~^~SHAD,AMERICAN,RAW~^^^~Y~^^0^~Alosa sapidissima (Wilson)~^6.25^4.27^9.02^3.87
-~15095~^~1500~^~Fish, shark, mixed species, raw~^~SHARK,MIXED SPECIES,RAW~^^^~Y~^^0^~Squaliformes~^6.25^4.27^9.02^3.87
-~15096~^~1500~^~Fish, shark, mixed species, cooked, batter-dipped and fried~^~SHARK,MXD SP,CKD,BATTER-DIPPED&FRIED~^^^^^0^^6.25^4.27^9.02^3.87
-~15097~^~1500~^~Fish, sheepshead, raw~^~SHEEPSHEAD,RAW~^^^^^0^~Archosargus probatocephalus (Walbaum)~^6.25^4.27^9.02^3.87
-~15098~^~1500~^~Fish, sheepshead, cooked, dry heat~^~SHEEPSHEAD,CKD,DRY HEAT~^^^^^0^^6.25^4.27^9.02^3.87
-~15099~^~1500~^~Fish, smelt, rainbow, raw~^~SMELT,RAINBOW,RAW~^^^^^0^~Osmerus mordax (Mitchill)~^6.25^4.27^9.02^3.87
-~15100~^~1500~^~Fish, smelt, rainbow, cooked, dry heat~^~SMELT,RAINBOW,CKD,DRY HEAT~^^^^^0^^6.25^4.27^9.02^3.87
-~15101~^~1500~^~Fish, snapper, mixed species, raw~^~SNAPPER,MIXED SPECIES,RAW~^^^~Y~^^0^~Lutjanidae~^6.25^4.27^9.02^3.87
-~15102~^~1500~^~Fish, snapper, mixed species, cooked, dry heat~^~SNAPPER,MXD SP,CKD,DRY HEAT~^^^^^0^^6.25^4.27^9.02^3.87
-~15103~^~1500~^~Fish, spot, raw~^~SPOT,RAW~^^^^^0^~Leiostomus xanthuras Lacepede~^6.25^4.27^9.02^3.87
-~15104~^~1500~^~Fish, sturgeon, mixed species, raw~^~STURGEON,MXD SP,RAW~^^^~Y~^^0^~Acipenser spp.~^6.25^4.27^9.02^3.87
-~15105~^~1500~^~Fish, sturgeon, mixed species, cooked, dry heat~^~STURGEON,MXD SP,CKD,DRY HEAT~^^^~Y~^^0^^6.25^4.27^9.02^3.87
-~15106~^~1500~^~Fish, sturgeon, mixed species, smoked~^~STURGEON,MXD SP,SMOKED~^^^~Y~^^0^^6.25^4.27^9.02^3.87
-~15107~^~1500~^~Fish, sucker, white, raw~^~SUCKER,WHITE,RAW~^^^^^0^~Catostomus commersoni (Lacepede)~^6.25^4.27^9.02^3.87
-~15108~^~1500~^~Fish, sunfish, pumpkin seed, raw~^~SUNFISH,PUMPKIN SEED,RAW~^^^^^0^~Lepomis gibbosus (L.)~^6.25^4.27^9.02^3.87
-~15109~^~1500~^~Fish, surimi~^~SURIMI~^^^^^0^^6.25^4.27^9.02^3.87
-~15110~^~1500~^~Fish, swordfish, raw~^~SWORDFISH,RAW~^^^~Y~^^0^~Xiphias gladius L.~^6.25^4.27^9.02^3.87
-~15111~^~1500~^~Fish, swordfish, cooked, dry heat~^~SWORDFISH,COOKED,DRY HEAT~^^^^^0^^6.25^4.27^9.02^3.87
-~15112~^~1500~^~Fish, tilefish, raw~^~TILEFISH,RAW~^^^^^0^~Lopholatilus chamaeleonticeps Goode and Bean~^6.25^4.27^9.02^3.87
-~15113~^~1500~^~Fish, tilefish, cooked, dry heat~^~TILEFISH,COOKED,DRY HEAT~^^^^^0^^6.25^4.27^9.02^3.87
-~15114~^~1500~^~Fish, trout, mixed species, raw~^~TROUT,MIXED SPECIES,RAW~^^^~Y~^^0^~Salmonidae~^6.25^4.27^9.02^3.87
-~15115~^~1500~^~Fish, trout, rainbow, wild, raw~^~TROUT,RAINBOW,WILD,RAW~^^^^^0^~Salmo gairdneri Richardson~^6.25^4.27^9.02^3.87
-~15116~^~1500~^~Fish, trout, rainbow, wild, cooked, dry heat~^~TROUT,RAINBOW,WILD,CKD,DRY HEAT~^^^^^0^^6.25^4.27^9.02^3.87
-~15117~^~1500~^~Fish, tuna, fresh, bluefin, raw~^~TUNA,FRESH,BLUEFIN,RAW~^^^~Y~^^0^~Thunnus thynnus (L.)~^6.25^4.27^9.02^3.87
-~15118~^~1500~^~Fish, tuna, fresh, bluefin, cooked, dry heat~^~TUNA,FRSH,BLUEFIN,CKD,DRY HEAT~^^^^^0^^6.25^4.27^9.02^3.87
-~15119~^~1500~^~Fish, tuna, light, canned in oil, drained solids~^~TUNA,LT,CND IN OIL,DRND SOL~^^^~Y~^^0^^6.25^4.27^9.00^3.87
-~15121~^~1500~^~Fish, tuna, light, canned in water, drained solids (Includes foods for USDA's Food Distribution Program)~^~FISH,TUNA,LT,CND IN H2O,DRND SOL~^^^~Y~^^0^^^^^
-~15123~^~1500~^~Fish, tuna, fresh, skipjack, raw~^~TUNA,FRESH,SKIPJACK,RAW~^^^^^0^~Euthynnus pelamis (L.)~^6.25^4.27^9.02^3.87
-~15124~^~1500~^~Fish, tuna, white, canned in oil, drained solids~^~TUNA,WHITE,CND IN OIL,DRND SOL~^^^^^0^^6.25^4.27^9.00^3.87
-~15126~^~1500~^~Fish, tuna, white, canned in water, drained solids~^~TUNA,WHITE,CND IN H2O,DRND SOL~^^^~Y~^^0^^6.25^4.27^9.02^3.87
-~15127~^~1500~^~Fish, tuna, fresh, yellowfin, raw~^~TUNA,FRESH,YELLOWFIN,RAW~^^^~Y~^^0^~Thunnus albacares (Bonnaterre)~^6.25^4.27^9.02^3.87
-~15128~^~1500~^~Fish, tuna salad~^~TUNA SALAD~^^^^^0^^6.25^4.27^9.02^3.87
-~15129~^~1500~^~Fish, turbot, european, raw~^~TURBOT,EUROPEAN,RAW~^^^^^0^~Scophthalmus maximus (L.)~^6.25^4.27^9.02^3.87
-~15130~^~1500~^~Fish, whitefish, mixed species, raw~^~WHITEFISH,MXD SP,RAW~^^^~Y~^^0^~Coregonus spp.~^6.25^4.27^9.02^3.87
-~15131~^~1500~^~Fish, whitefish, mixed species, smoked~^~WHITEFISH,MXD SP,SMOKED~^^^~Y~^^0^^6.25^4.27^9.02^3.87
-~15132~^~1500~^~Fish, whiting, mixed species, raw~^~WHITING,MIXED SPECIES,RAW~^^^~Y~^^0^~Gadidae~^6.25^4.27^9.02^3.87
-~15133~^~1500~^~Fish, whiting, mixed species, cooked, dry heat~^~WHITING,MXD SP,CKD,DRY HEAT~^^^~Y~^^0^^6.25^4.27^9.02^3.87
-~15134~^~1500~^~Fish, wolffish, Atlantic, raw~^~WOLFFISH,ATLANTIC,RAW~^^^^^0^~Anarhichas lupus (L.)~^6.25^4.27^9.02^3.87
-~15135~^~1500~^~Fish, yellowtail, mixed species, raw~^~YELLOWTAIL,MXD SP,RAW~^^^^^0^~Seriola spp.~^6.25^4.27^9.02^3.87
-~15136~^~1500~^~Crustaceans, crab, alaska king, raw~^~CRAB,ALASKA KING,RAW~^^^^^0^~Paralithodes camtschatica (Tilesius)~^6.25^4.27^9.02^4.11
-~15137~^~1500~^~Crustaceans, crab, alaska king, cooked, moist heat~^~CRAB,ALASKA KING,CKD,MOIST HEAT~^^^^^0^^6.25^4.27^9.02^4.11
-~15138~^~1500~^~Crustaceans, crab, alaska king, imitation, made from surimi~^~CRAB,ALASKA KING,IMITN,MADE FROM SURIMI~^^^~Y~^^0^^6.25^4.27^9.02^3.87
-~15139~^~1500~^~Crustaceans, crab, blue, raw~^~CRAB,BLUE,RAW~^^^^^0^~Callinectes sapidus Rathbun~^6.25^4.27^9.02^4.11
-~15140~^~1500~^~Crustaceans, crab, blue, cooked, moist heat~^~CRAB,BLUE,CKD,MOIST HEAT~^^^~Y~^^0^^6.25^4.27^9.02^4.11
-~15141~^~1500~^~Crustaceans, crab, blue, canned~^~CRAB,BLUE,CANNED~^^^~Y~^^0^^6.25^4.27^9.02^4.11
-~15142~^~1500~^~Crustaceans, crab, blue, crab cakes, home recipe~^~CRUSTACEANS,CRAB,BLUE,CRAB CAKES,HOME RECIPE~^^^^^0^^6.25^4.27^8.84^3.68
-~15143~^~1500~^~Crustaceans, crab, dungeness, raw~^~CRAB,DUNGENESS,RAW~^^^^^0^~Cancer magister Dana~^6.25^4.27^9.02^4.11
-~15144~^~1500~^~Crustaceans, crab, queen, raw~^~CRAB,QUEEN,RAW~^^^^^0^~Chionoectes opilio (O. Fabricius)~^6.25^4.27^9.02^4.11
-~15145~^~1500~^~Crustaceans, crayfish, mixed species, wild, raw~^~CRAYFISH,MXD SP,WILD,RAW~^^^~Y~^^0^~Astacus, Orconectes, and Procambarus spp.~^6.25^4.27^9.02^4.11
-~15146~^~1500~^~Crustaceans, crayfish, mixed species, wild, cooked, moist heat~^~CRAYFISH,MXD SP,WILD,CKD,MOIST HEAT~^^^~Y~^^0^^6.25^4.27^9.02^4.11
-~15147~^~1500~^~Crustaceans, lobster, northern, raw~^~LOBSTER,NORTHERN,RAW~^^^~Y~^^0^~Homarus americanus Milne-Edwards~^6.25^4.27^9.02^4.11
-~15148~^~1500~^~Crustaceans, lobster, northern, cooked, moist heat~^~LOBSTER,NORTHERN,CKD,MOIST HEAT~^^^~Y~^^0^^6.25^4.27^9.02^4.11
-~15149~^~1500~^~Crustaceans, shrimp, mixed species, raw (may contain additives to retain moisture)~^~SHRIMP,MXD SP,RAW (CONTAIN ADDITIVES TO RETAIN MOISTURE)~^^^~Y~^^0^~Penaeidae and Pandalidae~^6.25^4.27^9.02^4.11
-~15150~^~1500~^~Crustaceans, shrimp, mixed species, cooked, breaded and fried~^~SHRIMP,MXD SP,CKD,BREADED&FRIED~^^^^^0^^6.22^4.27^8.84^3.68
-~15151~^~1500~^~Crustaceans, shrimp, mixed species, cooked, moist heat (may contain additives to retain moisture)~^~SHRIMP,MXD SP,CKD (MAY CONTAIN ADDITIVES TO RETAIN MOISTURE)~^^^~Y~^^0^^6.25^4.27^9.02^4.11
-~15152~^~1500~^~Crustaceans, shrimp, mixed species, canned~^~SHRIMP,MXD SP,CND~^^^~Y~^^0^^6.25^4.27^9.02^4.11
-~15153~^~1500~^~Crustaceans, shrimp, mixed species, imitation, made from surimi~^~SHRIMP,MXD SP,IMITN,MADE FROM SURIMI~^^^^^0^^6.25^4.27^9.02^3.87
-~15154~^~1500~^~Crustaceans, spiny lobster, mixed species, raw~^~SPINY LOBSTER,MXD SP,RAW~^^^^^0^~Jasus spp. and Panulirus spp.~^6.25^4.27^9.02^4.11
-~15155~^~1500~^~Mollusks, abalone, mixed species, raw~^~ABALONE,MIXED SPECIES,RAW~^^^~Y~^^0^~Haliotis spp.~^6.25^4.27^9.02^4.11
-~15156~^~1500~^~Mollusks, abalone, mixed species, cooked, fried~^~ABALONE,MXD SP,CKD,FRIED~^^^^^0^^6.23^4.27^8.84^4.12
-~15157~^~1500~^~Mollusks, clam, mixed species, raw~^~CLAM,MIXED SPECIES,RAW~^^^~Y~^^0^~Lamellibranchia~^6.25^4.27^9.02^4.11
-~15158~^~1500~^~Mollusks, clam, mixed species, cooked, breaded and fried~^~CLAM,MXD SP,CKD,BREADED&FRIED~^^^^^0^^6.20^4.27^8.84^4.12
-~15159~^~1500~^~Mollusks, clam, mixed species, cooked, moist heat~^~CLAM,MXD SP,CKD,MOIST HEAT~^^^^^0^^6.25^4.27^9.02^4.11
-~15160~^~1500~^~Mollusks, clam, mixed species, canned, drained solids~^~CLAM,MXD SP,CND,DRND SOL~^^^~Y~^^0^^6.25^4.27^9.02^4.11
-~15162~^~1500~^~Mollusks, clam, mixed species, canned, liquid~^~CLAM,MXD SP,CND,LIQ~^^^~Y~^^0^^6.25^4.27^9.02^4.11
-~15163~^~1500~^~Mollusks, cuttlefish, mixed species, raw~^~CUTTLEFISH,MXD SP,RAW~^^^^^0^~Sepiidae~^6.25^4.27^9.02^4.11
-~15164~^~1500~^~Mollusks, mussel, blue, raw~^~MUSSEL,BLUE,RAW~^^^~Y~^^0^~Mytilus edulis L.~^6.25^4.27^9.02^4.11
-~15165~^~1500~^~Mollusks, mussel, blue, cooked, moist heat~^~MUSSEL,BLUE,CKD,MOIST HEAT~^^^^^0^^6.25^4.27^9.02^4.11
-~15166~^~1500~^~Mollusks, octopus, common, raw~^~OCTOPUS,COMMON,RAW~^^^~Y~^^0^~Octopus vulgaris Lamarck~^6.25^4.27^9.02^4.11
-~15167~^~1500~^~Mollusks, oyster, eastern, wild, raw~^~OYSTER,EASTERN,WILD,RAW~^^^~Y~^^0^~Crassostrea virginica (Gmelin)~^6.25^4.27^9.02^4.11
-~15168~^~1500~^~Mollusks, oyster, eastern, cooked, breaded and fried~^~OYSTER,EASTERN,CKD,BREADED&FRIED~^^^^^0^^6.18^4.27^9.02^4.12
-~15169~^~1500~^~Mollusks, oyster, eastern, wild, cooked, moist heat~^~OYSTER,EASTERN,WILD,CKD,MOIST HEAT~^^^^^0^^6.25^4.27^9.02^4.11
-~15170~^~1500~^~Mollusks, oyster, eastern, canned~^~OYSTER,EASTERN,CANNED~^^^~Y~^^0^^6.25^4.27^9.02^4.11
-~15171~^~1500~^~Mollusks, oyster, Pacific, raw~^~OYSTER,PACIFIC,RAW~^^^^^0^~Crassostrea gigas (Thunberg)~^6.25^4.27^9.02^4.11
-~15172~^~1500~^~Mollusks, scallop, mixed species, raw~^~SCALLOP,MIXED SPECIES,RAW~^^^~Y~^^0^~Pectinidae~^6.25^4.27^9.02^4.11
-~15173~^~1500~^~Mollusks, scallop, mixed species, cooked, breaded and fried~^~SCALLOP,MXD SP,CKD,BREADED&FRIED~^^^^^0^^6.21^4.27^8.84^4.12
-~15174~^~1500~^~Mollusks, scallop, mixed species, imitation, made from surimi~^~SCALLOP,MXD SP,IMITN,MADE FROM SURIMI~^^^^^0^^6.25^4.27^9.02^3.87
-~15175~^~1500~^~Mollusks, squid, mixed species, raw~^~SQUID,MIXED SPECIES,RAW~^^^~Y~^^0^~Loligoidae and Ommastrephidae~^6.25^4.27^9.02^4.11
-~15176~^~1500~^~Mollusks, squid, mixed species, cooked, fried~^~SQUID,MXD SP,CKD,FRIED~^^^^^0^^6.25^4.27^8.84^4.12
-~15177~^~1500~^~Mollusks, whelk, unspecified, raw~^~WHELK,UNSPECIFIED,RAW~^^^^^0^~Buccinidae~^6.25^4.27^9.02^4.11
-~15178~^~1500~^~Mollusks, whelk, unspecified, cooked, moist heat~^~WHELK,UNSPEC,CKD,MOIST HEAT~^^^^^0^^6.25^4.27^9.02^4.11
-~15179~^~1500~^~Fish, salmon, chinook, smoked, (lox), regular~^~SALMON,CHINOOK,SMOKED,(LOX),REG~^^^^^0^^6.25^4.27^9.02^3.87
-~15180~^~1500~^~Fish, salmon, chum, canned, without salt, drained solids with bone~^~SALMON,CHUM,CND,WO/SALT,DRND SOL W/BONE~^^^^^0^^6.25^4.27^9.02^3.87
-~15181~^~1500~^~Fish, salmon, pink, canned, without salt, solids with bone and liquid~^~SALMON,PINK,CND,WO/SALT,SOL W/BONE&LIQ~^^^^^0^^6.25^4.27^9.02^3.87
-~15182~^~1500~^~Fish, salmon, sockeye, canned, without salt, drained solids with bone~^~SALMON,SOCKEYE,CND,WO/SALT,DRND SOL W/BONE~^^^^^0^^6.25^4.27^9.02^3.87
-~15183~^~1500~^~Fish, tuna, light, canned in oil, without salt, drained solids~^~TUNA,LT,CND IN OIL,WO/SALT,DRND SOL~^^^^^0^^6.25^4.27^9.00^3.87
-~15184~^~1500~^~Fish, tuna, light, canned in water, without salt, drained solids~^~TUNA,LT,CND IN H2O,WO/SALT,DRND SOL~^^^^^0^^6.25^4.27^9.02^3.87
-~15185~^~1500~^~Fish, tuna, white, canned in oil, without salt, drained solids~^~TUNA,WHITE,CND IN OIL,WO/SALT,DRND SOL~^^^^^0^^6.25^4.27^9.00^3.87
-~15186~^~1500~^~Fish, tuna, white, canned in water, without salt, drained solids~^~TUNA,WHITE,CND IN H2O,WO/SALT,DRND SOL~^^^^^0^^6.25^4.27^9.02^3.87
-~15187~^~1500~^~Fish, bass, freshwater, mixed species, cooked, dry heat~^~BASS,FRESHWATER,MXD SP,CKD,DRY HEAT~^^^^^0^^6.25^4.27^9.02^3.87
-~15188~^~1500~^~Fish, bass, striped, cooked, dry heat~^~BASS,STRIPED,CKD,DRY HEAT~^^^^^0^^6.25^4.27^9.02^3.87
-~15189~^~1500~^~Fish, bluefish, cooked, dry heat~^~BLUEFISH,COOKED,DRY HEAT~^^^^^0^^6.25^4.27^9.02^3.87
-~15190~^~1500~^~Fish, burbot, cooked, dry heat~^~BURBOT,COOKED,DRY HEAT~^^^^^0^^6.25^4.27^9.02^3.87
-~15191~^~1500~^~Fish, butterfish, cooked, dry heat~^~BUTTERFISH,CKD,DRY HEAT~^^^^^0^^6.25^4.27^9.02^3.87
-~15192~^~1500~^~Fish, cod, Pacific, cooked, dry heat (may contain additives to retain moisture)~^~COD,PACIFIC,CKD (CONTAIN ADDITIVES TO RETAIN MOISTURE)~^^^~Y~^^0^^6.25^4.27^9.02^3.87
-~15193~^~1500~^~Fish, cusk, cooked, dry heat~^~CUSK,COOKED,DRY HEAT~^^^^^0^^6.25^4.27^9.02^3.87
-~15194~^~1500~^~Fish, mahimahi, cooked, dry heat~^~FISH,MAHIMAHI,CKD,DRY HEAT~^^^^^0^^6.25^4.27^9.02^3.87
-~15195~^~1500~^~Fish, drum, freshwater, cooked, dry heat~^~DRUM,FRESHWATER,CKD,DRY HEAT~^^^^^0^^6.25^4.27^9.02^3.87
-~15196~^~1500~^~Fish, halibut, greenland, cooked, dry heat~^~HALIBUT,GREENLAND,CKD,DRY HEAT~^^^^^0^^6.25^4.27^9.02^3.87
-~15197~^~1500~^~Fish, herring, Pacific, cooked, dry heat~^~HERRING,PACIFIC,CKD,DRY HEAT~^^^^^0^^6.25^4.27^9.02^3.87
-~15198~^~1500~^~Fish, ling, cooked, dry heat~^~LING,COOKED,DRY HEAT~^^^^^0^^6.25^4.27^9.02^3.87
-~15199~^~1500~^~Fish, lingcod, cooked, dry heat~^~LINGCOD,COOKED,DRY HEAT~^^^^^0^^6.25^4.27^9.02^3.87
-~15200~^~1500~^~Fish, mackerel, king, cooked, dry heat~^~MACKEREL,KING,CKD,DRY HEAT~^^^^^0^^6.25^4.27^9.02^3.87
-~15201~^~1500~^~Fish, mackerel, Pacific and jack, mixed species, cooked, dry heat~^~MACKEREL,PACIFIC&JACK,MXD SP,CKD,DRY HEAT~^^^~Y~^^0^^6.25^4.27^9.02^3.87
-~15202~^~1500~^~Fish, milkfish, cooked, dry heat~^~MILKFISH,COOKED,DRY HEAT~^^^^^0^^6.25^4.27^9.02^3.87
-~15203~^~1500~^~Fish, monkfish, cooked, dry heat~^~MONKFISH,COOKED,DRY HEAT~^^^^^0^^6.25^4.27^9.02^3.87
-~15204~^~1500~^~Fish, pike, walleye, cooked, dry heat~^~PIKE,WALLEYE,CKD,DRY HEAT~^^^^^0^^6.25^4.27^9.02^3.87
-~15205~^~1500~^~Fish, pollock, Atlantic, cooked, dry heat~^~POLLOCK,ATLANTIC,CKD,DRY HEAT~^^^^^0^^6.25^4.27^9.02^3.87
-~15206~^~1500~^~Fish, pout, ocean, cooked, dry heat~^~POUT,OCEAN,CKD,DRY HEAT~^^^^^0^^6.25^4.27^9.02^3.87
-~15207~^~1500~^~Fish, roe, mixed species, cooked, dry heat~^~ROE,MXD SP,CKD,DRY HEAT~^^^^^0^^6.25^4.36^9.02^3.68
-~15208~^~1500~^~Fish, sablefish, cooked, dry heat~^~SABLEFISH,COOKED,DRY HEAT~^^^^^0^^6.25^4.27^9.02^3.87
-~15209~^~1500~^~Fish, salmon, Atlantic, wild, cooked, dry heat~^~SALMON,ATLANTIC,WILD,CKD,DRY HEAT~^^^^^0^^6.25^4.27^9.02^3.87
-~15210~^~1500~^~Fish, salmon, chinook, cooked, dry heat~^~SALMON,CHINOOK,CKD,DRY HEAT~^^^^^0^^6.25^4.27^9.02^3.87
-~15211~^~1500~^~Fish, salmon, chum, cooked, dry heat~^~SALMON,CHUM,CKD,DRY HEAT~^^^^^0^^6.25^4.27^9.02^3.87
-~15212~^~1500~^~Fish, salmon, pink, cooked, dry heat~^~SALMON,PINK,CKD,DRY HEAT~^^^^^0^^6.25^4.27^9.02^3.87
-~15213~^~1500~^~Fish, scup, cooked, dry heat~^~SCUP,COOKED,DRY HEAT~^^^^^0^^6.25^4.27^9.02^3.87
-~15214~^~1500~^~Fish, seatrout, mixed species, cooked, dry heat~^~SEATROUT,MXD SP,CKD,DRY HEAT~^^^^^0^^6.25^4.27^9.02^3.87
-~15215~^~1500~^~Fish, shad, american, cooked, dry heat~^~SHAD,AMERICAN,CKD,DRY HEAT~^^^^^0^^6.25^4.27^9.02^3.87
-~15216~^~1500~^~Fish, spot, cooked, dry heat~^~SPOT,COOKED,DRY HEAT~^^^^^0^^6.25^4.27^9.02^3.87
-~15217~^~1500~^~Fish, sucker, white, cooked, dry heat~^~SUCKER,WHITE,CKD,DRY HEAT~^^^^^0^^6.25^4.27^9.02^3.87
-~15218~^~1500~^~Fish, sunfish, pumpkin seed, cooked, dry heat~^~SUNFISH,PUMPKIN SD,CKD,DRY HEAT~^^^^^0^^6.25^4.27^9.02^3.87
-~15219~^~1500~^~Fish, trout, mixed species, cooked, dry heat~^~TROUT,MXD SP,CKD,DRY HEAT~^^^^^0^^6.25^4.27^9.02^3.87
-~15220~^~1500~^~Fish, tuna, skipjack, fresh, cooked, dry heat~^~TUNA,SKIPJACK,FRSH,CKD,DRY HEAT~^^^^^0^^6.25^4.27^9.02^3.87
-~15221~^~1500~^~Fish, tuna, yellowfin, fresh, cooked, dry heat~^~TUNA,YELLOWFIN,FRSH,CKD,DRY HEAT~^^^^^0^^6.25^4.27^9.02^3.87
-~15222~^~1500~^~Fish, turbot, european, cooked, dry heat~^~TURBOT,EUROPEAN,CKD,DRY HEAT~^^^^^0^^6.25^4.27^9.02^3.87
-~15223~^~1500~^~Fish, whitefish, mixed species, cooked, dry heat~^~WHITEFISH,MXD SP,CKD,DRY HEAT~^^^^^0^^6.25^4.27^9.02^3.87
-~15224~^~1500~^~Fish, wolffish, Atlantic, cooked, dry heat~^~WOLFFISH,ATLANTIC,CKD,DRY HEAT~^^^^^0^^6.25^4.27^9.02^3.87
-~15225~^~1500~^~Fish, yellowtail, mixed species, cooked, dry heat~^~YELLOWTAIL,MXD SP,CKD,DRY HEAT~^^^^^0^^6.25^4.27^9.02^3.87
-~15226~^~1500~^~Crustaceans, crab, dungeness, cooked, moist heat~^~CRAB,DUNGENESS,CKD,MOIST HEAT~^^^^^0^^6.25^4.27^9.02^4.11
-~15227~^~1500~^~Crustaceans, crab, queen, cooked, moist heat~^~CRAB,QUEEN,CKD,MOIST HEAT~^^^^^0^^6.25^4.27^9.02^4.11
-~15228~^~1500~^~Crustaceans, spiny lobster, mixed species, cooked, moist heat~^~SPINY LOBSTER,MXD SP,CKD,MOIST HEAT~^^^^^0^^6.25^4.27^9.02^4.11
-~15229~^~1500~^~Mollusks, cuttlefish, mixed species, cooked, moist heat~^~CUTTLEFISH,MXD SP,CKD,MOIST HEAT~^^^^^0^^6.25^4.27^9.02^4.11
-~15230~^~1500~^~Mollusks, octopus, common, cooked, moist heat~^~OCTOPUS,COMMON,CKD,MOIST HEAT~^^^~Y~^^0^^6.25^4.27^9.02^4.11
-~15231~^~1500~^~Mollusks, oyster, Pacific, cooked, moist heat~^~OYSTER,PACIFIC,CKD,MOIST HEAT~^^^^^0^^6.25^4.27^9.02^4.11
-~15232~^~1500~^~Fish, roughy, orange, cooked, dry heat~^~ROUGHY,ORANGE,CKD,DRY HEAT~^^^^^0^^6.25^4.27^9.02^3.87
-~15233~^~1500~^~Fish, catfish, channel, wild, cooked, dry heat~^~CATFISH,CHANNEL,WILD,CKD,DRY HEAT~^^^^^0^^6.25^4.27^9.02^3.87
-~15234~^~1500~^~Fish, catfish, channel, farmed, raw~^~CATFISH,CHANNEL,FARMED,RAW~^^^~Y~^^0^~Ictalurus punctatus (Rafinesque)~^6.25^4.27^9.02^3.87
-~15235~^~1500~^~Fish, catfish, channel, farmed, cooked, dry heat~^~CATFISH,CHANNEL,FARMED,CKD,DRY HEAT~^^^~Y~^^0^^6.25^4.27^9.02^3.87
-~15236~^~1500~^~Fish, salmon, Atlantic, farmed, raw~^~SALMON,ATLANTIC,FARMED,RAW~^^^~Y~^^0^~Salmo salar L.~^6.25^4.27^9.02^3.87
-~15237~^~1500~^~Fish, salmon, Atlantic, farmed, cooked, dry heat~^~SALMON,ATLANTIC,FARMED,CKD,DRY HEAT~^^^~Y~^^0^^6.25^4.27^9.02^3.87
-~15238~^~1500~^~Fish, salmon, coho, farmed, raw~^~SALMON,COHO,FARMED,RAW~^^^^^0^~Oncorhynchus kisutch (Walbaum)~^6.25^4.27^9.02^3.87
-~15239~^~1500~^~Fish, salmon, coho, farmed, cooked, dry heat~^~SALMON,COHO,FARMED,CKD,DRY HEAT~^^^^^0^^6.25^4.27^9.02^3.87
-~15240~^~1500~^~Fish, trout, rainbow, farmed, raw~^~TROUT,RAINBOW,FARMED,RAW~^^^~Y~^^0^~Salmo gairdneri Richardson~^6.25^4.27^9.02^3.87
-~15241~^~1500~^~Fish, trout, rainbow, farmed, cooked, dry heat~^~TROUT,RAINBOW,FARMED,CKD,DRY HEAT~^^^^^0^^6.25^4.27^9.02^3.87
-~15242~^~1500~^~Crustaceans, crayfish, mixed species, farmed, raw~^~CRAYFISH,MXD SP,FARMED,RAW~^^^^^0^~Astacus, Orconectes, and Procambarus spp.~^6.25^4.27^9.02^4.11
-~15243~^~1500~^~Crustaceans, crayfish, mixed species, farmed, cooked, moist heat~^~CRAYFISH,MXD SP,FARMED,CKD,MOIST HEAT~^^^^^0^^6.25^4.27^9.02^4.11
-~15244~^~1500~^~Mollusks, oyster, eastern, wild, cooked, dry heat~^~OYSTER,EASTERN,WILD,CKD,DRY HEAT~^^^^^0^^6.25^4.27^9.02^4.11
-~15245~^~1500~^~Mollusks, oyster, eastern, farmed, raw~^~OYSTER,EASTERN,FARMED,RAW~^^^^^0^~Crassostrea virginica (Gmelin)~^6.25^4.27^9.02^4.11
-~15246~^~1500~^~Mollusks, oyster, eastern, farmed, cooked, dry heat~^~OYSTER,EASTERN,FARMED,CKD,DRY HEAT~^^^^^0^^6.25^4.27^9.02^4.11
-~15247~^~1500~^~Fish, salmon, coho, wild, cooked, dry heat~^~SALMON,COHO,WILD,CKD,DRY HEAT~^^^~Y~^^0^^6.25^4.27^9.02^3.87
-~15250~^~1500~^~Mollusks, conch, baked or broiled~^~CONCH,BAKED OR BROILED~^^^^^0^^6.25^^^
-~15251~^~1500~^~Salmon nuggets, breaded, frozen, heated~^~SALMON NUGGETS,BREADED,FRZ,HTD~^^^^^0^^6.25^4.00^9.00^4.00
-~15252~^~1500~^~Salmon nuggets, cooked as purchased, unheated~^~SALMON NUGGETS,CKD AS PURCHASED,UNHTD~^^^^^0^^6.25^4.00^9.00^4.00
-~15253~^~1500~^~Salmon, sockeye, canned, total can contents~^~SALMON,SOCKEYE,CND,TOTAL CAN CONTENTS~^^^^^0^^6.25^4.27^9.02^3.87
-~15260~^~1500~^~Fish, salmon, pink, canned, drained solids~^~FISH,SALMON,PINK,CND,DRND SOL~^^^^^0^^^^^
-~15261~^~1500~^~Fish, tilapia, raw~^~FISH,TILAPIA,RAW~^^^~Y~^^0^^^^^
-~15262~^~1500~^~Fish, tilapia, cooked, dry heat~^~FISH,TILAPIA,CKD,DRY HEAT~^^^~Y~^^0^^^^^
-~15264~^~1500~^~Salmon, sockeye, canned, drained solids, without skin and bones~^~SALMON,SOCKEYE,CND,DRND SOL,WO/ SKN & BONES~^^^^^0^^^^^
-~15265~^~1500~^~Fish, Salmon, pink, canned, drained solids, without skin and bones~^~FISH,SALMON,PINK,CND,DRND SOL,WO/ SKN & BONES~^^^^^0^^^^^
-~15266~^~1500~^~Fish, pollock, Alaska, raw~^~FISH,POLLOCK,ALASKA,RAW~^~~^~~^~~^~~^0^~Theragra chalcogramma (Pallas)~^6.25^4.27^9.02^3.87
-~15267~^~1500~^~Fish, pollock, Alaska, cooked~^~FISH,POLLOCK,ALASKA,CKD~^~~^~~^~~^~~^0^~~^6.25^4.27^9.02^3.87
-~15269~^~1500~^~Fish, cod, Pacific, cooked~^~FISH,COD,PACIFIC,CKD~^^^^^0^^^^^
-~15270~^~1500~^~Crustaceans, shrimp, raw~^~CRUSTACEANS,SHRIMP,RAW~^^^^~Tail and shell~^13^^^^^
-~15271~^~1500~^~Crustaceans, shrimp, cooked~^~CRUSTACEANS,SHRIMP,CKD~^^^^~Tail and shell~^17^^^^^
-~15274~^~1500~^~Fish, trout, brook, raw, New York State~^~FISH,TROUT,BROOK,RAW,NEW YORK STATE~^^^^~skin, head, viscera, bones~^53^^^^^
-~16001~^~1600~^~Beans, adzuki, mature seeds, raw~^~BEANS,ADZUKI,MATURE SEEDS,RAW~^^^^^0^~Vigna angularis~^6.25^3.47^8.37^4.07
-~16002~^~1600~^~Beans, adzuki, mature seeds, cooked, boiled, without salt~^~BEANS,ADZUKI,MATURE SEEDS,CKD,BLD,WO/SALT~^^^^^0^^6.25^3.47^8.37^4.07
-~16003~^~1600~^~Beans, adzuki, mature seeds, canned, sweetened~^~BEANS,ADZUKI,MATURE SEEDS,CND,SWTND~^^^^^0^^6.25^3.47^8.37^4.07
-~16004~^~1600~^~Yokan, prepared from adzuki beans and sugar~^~YOKAN,PREP FROM ADZUKI BNS & SUGAR~^^^^^0^^6.25^3.47^8.37^4.07
-~16005~^~1600~^~Beans, baked, home prepared~^~BEANS,BAKED,HOME PREPARED~^^^^^0^^6.25^^^
-~16006~^~1600~^~Beans, baked, canned, plain or vegetarian~^~BEANS,BKD,CND,PLN OR VEGETARIAN~^^^~Y~^^0^^6.25^4.00^8.40^3.40
-~16007~^~1600~^~Beans, baked, canned, with beef~^~BEANS,BKD,CND,W/BF~^^^^^0^^6.25^4.00^9.00^3.80
-~16008~^~1600~^~Beans, baked, canned, with franks~^~BEANS,BKD,CND,W/FRANKS~^^^~Y~^^0^^6.25^3.90^9.00^3.70
-~16009~^~1600~^~Beans, baked, canned, with pork~^~BEANS,BKD,CND,W/PORK~^^^^^0^^6.25^3.90^8.80^3.60
-~16010~^~1600~^~Beans, baked, canned, with pork and sweet sauce~^~BEANS,BKD,CND,W/PORK&SWT SAU~^^^~Y~^^0^^6.25^3.90^8.90^3.70
-~16011~^~1600~^~Beans, baked, canned, with pork and tomato sauce~^~BEANS,BKD,CND,W/PORK&TOMATO SAU~^^^~Y~^^0^^6.25^4.00^8.80^3.50
-~16014~^~1600~^~Beans, black, mature seeds, raw~^~BEANS,BLACK,MATURE SEEDS,RAW~^^^~Y~^^0^~Phaseolus vulgaris~^6.25^3.47^8.37^4.07
-~16015~^~1600~^~Beans, black, mature seeds, cooked, boiled, without salt~^~BEANS,BLACK,MATURE SEEDS,CKD,BLD,WO/SALT~^^^~Y~^^0^^6.25^3.47^8.37^4.07
-~16016~^~1600~^~Beans, black turtle, mature seeds, raw~^~BEANS,BLACK TURTLE,MATURE SEEDS,RAW~^^^^^0^~Phaseolus vulgaris~^6.25^3.47^8.37^4.07
-~16017~^~1600~^~Beans, black turtle, mature seeds, cooked, boiled, without salt~^~BEANS,BLACK TURTLE,MATURE SEEDS,CKD,BLD,WO/ SALT~^^^~Y~^^0^^6.25^3.47^8.37^4.07
-~16018~^~1600~^~Beans, black turtle, mature seeds, canned~^~BEANS,BLACK TURTLE,MATURE SEEDS,CND~^^^^^0^^6.25^3.47^8.37^4.07
-~16019~^~1600~^~Beans, cranberry (roman), mature seeds, raw~^~BEANS,CRANBERRY (ROMAN),MATURE SEEDS,RAW~^^^^^0^~Phaseolus vulgaris~^6.25^3.47^8.37^4.07
-~16020~^~1600~^~Beans, cranberry (roman), mature seeds, cooked, boiled, without salt~^~BEANS,CRANBERRY (ROMAN),MATURE SEEDS,CKD,BLD,WO/SALT~^^^^^0^^6.25^3.47^8.37^4.07
-~16021~^~1600~^~Beans, cranberry (roman), mature seeds, canned~^~BEANS,CRANBERRY (ROMAN),MATURE SEEDS,CND~^^^^^0^^6.25^3.47^8.37^4.07
-~16022~^~1600~^~Beans, french, mature seeds, raw~^~BEANS,FRENCH,MATURE SEEDS,RAW~^^^^^0^~Phaseolus vulgaris~^6.25^3.47^8.37^4.07
-~16023~^~1600~^~Beans, french, mature seeds, cooked, boiled, without salt~^~BEANS,FRENCH,MATURE SEEDS,CKD,BLD,WO/SALT~^^^^^0^^6.25^3.47^8.37^4.07
-~16024~^~1600~^~Beans, great northern, mature seeds, raw (Includes foods for USDA's Food Distribution Program)~^~BEANS,GREAT NORTHERN,MATURE SEEDS,RAW~^^^^^0^~Phaseolus vulgaris~^6.25^3.47^8.37^4.07
-~16025~^~1600~^~Beans, great northern, mature seeds, cooked, boiled, without salt~^~BEANS,GREAT NORTHERN,MATURE SEEDS,CKD,BLD,WO/SALT~^^^^^0^^6.25^3.47^8.37^4.07
-~16026~^~1600~^~Beans, great northern, mature seeds, canned~^~BEANS,GREAT NORTHERN,MATURE SEEDS,CND~^^^^^0^^6.25^3.47^8.37^4.07
-~16027~^~1600~^~Beans, kidney, all types, mature seeds, raw~^~BEANS,KIDNEY,ALL TYPES,MATURE SEEDS,RAW~^^^^^0^~Phaseolus vulgaris~^6.25^3.47^8.37^4.07
-~16028~^~1600~^~Beans, kidney, all types, mature seeds, cooked, boiled, without salt~^~BEANS,KIDNEY,ALL TYPES,MATURE SEEDS,CKD,BLD,WO/SALT~^^^~Y~^^0^^6.25^3.47^8.37^4.07
-~16029~^~1600~^~Beans, kidney, all types, mature seeds, canned~^~BEANS,KIDNEY,ALL TYPES,MATURE SEEDS,CND~^^^^^0^^^^^
-~16030~^~1600~^~Beans, kidney, california red, mature seeds, raw~^~BEANS,KIDNEY,CALIFORNIA RED,MATURE SEEDS,RAW~^^^^^0^~Phaseolus vulgaris~^6.25^3.47^8.37^4.07
-~16031~^~1600~^~Beans, kidney, california red, mature seeds, cooked, boiled, without salt~^~BEANS,KIDNEY,CALIFORNIA RED,MATURE SEEDS,CKD,BLD,WO/SALT~^^^^^0^^6.25^3.47^8.37^4.07
-~16032~^~1600~^~Beans, kidney, red, mature seeds, raw~^~BEANS,KIDNEY,RED,MATURE SEEDS,RAW~^^^~Y~^^0^~Phaseolus vulgaris~^6.25^3.47^8.37^4.07
-~16033~^~1600~^~Beans, kidney, red, mature seeds, cooked, boiled, without salt~^~BEANS,KIDNEY,RED,MATURE SEEDS,CKD,BLD,WO/SALT~^^^~Y~^^0^^6.25^3.47^8.37^4.07
-~16034~^~1600~^~Beans, kidney, red, mature seeds, canned, solids and liquids~^~BEANS,KIDNEY,RED,MATURE SEEDS,CND,SOL & LIQUIDS~^^^~Y~^^0^^6.25^3.47^8.37^4.07
-~16035~^~1600~^~Beans, kidney, royal red, mature seeds, raw~^~BEANS,KIDNEY,ROYAL RED,MATURE SEEDS,RAW~^^^^^0^~Phaseolus vulgaris~^6.25^3.47^8.37^4.07
-~16036~^~1600~^~Beans, kidney, royal red, mature seeds, cooked, boiled, without salt~^~BEANS,KIDNEY,ROYAL RED,MATURE SEEDS,CKD,BLD,WO/SALT~^^^^^0^^6.25^3.47^8.37^4.07
-~16037~^~1600~^~Beans, navy, mature seeds, raw~^~BEANS,NAVY,MATURE SEEDS,RAW~^^^^^0^~Phaseolus vulgaris~^6.25^3.47^8.37^4.07
-~16038~^~1600~^~Beans, navy, mature seeds, cooked, boiled, without salt~^~BEANS,NAVY,MATURE SEEDS,CKD,BLD,WO/SALT~^^^^^0^^6.25^3.47^8.37^4.07
-~16039~^~1600~^~Beans, navy, mature seeds, canned~^~BEANS,NAVY,MATURE SEEDS,CND~^^^~Y~^^0^^6.25^3.47^8.37^4.07
-~16040~^~1600~^~Beans, pink, mature seeds, raw~^~BEANS,PINK,MATURE SEEDS,RAW~^^^~Y~^^0^~Phaseolus vulgaris~^6.25^3.47^8.37^4.07
-~16041~^~1600~^~Beans, pink, mature seeds, cooked, boiled, without salt~^~BEANS,PINK,MATURE SEEDS,CKD,BLD,WO/SALT~^^^~Y~^^0^^6.25^3.47^8.37^4.07
-~16042~^~1600~^~Beans, pinto, mature seeds, raw (Includes foods for USDA's Food Distribution Program)~^~BEANS,PINTO,MATURE SEEDS,RAW~^^^~Y~^^0^~Phaseolus vulgaris~^6.25^^^
-~16043~^~1600~^~Beans, pinto, mature seeds, cooked, boiled, without salt~^~BEANS,PINTO,MATURE SEEDS,CKD,BLD,WO/SALT~^^^~Y~^^0^^6.25^3.47^8.37^4.07
-~16044~^~1600~^~Beans, pinto, mature seeds, canned, solids and liquids~^~BEANS,PINTO,MATURE SEEDS,CND,SOL & LIQUIDS~^^^^^0^^6.25^3.47^8.37^4.07
-~16045~^~1600~^~Beans, small white, mature seeds, raw~^~BEANS,SML WHITE,MATURE SEEDS,RAW~^^^^^0^~Phaseolus vulgaris~^6.25^3.47^8.37^4.07
-~16046~^~1600~^~Beans, small white, mature seeds, cooked, boiled, without salt~^~BEANS,SML WHITE,MATURE SEEDS,CKD,BLD,WO/SALT~^^^^^0^^6.25^3.47^8.37^4.07
-~16047~^~1600~^~Beans, yellow, mature seeds, raw~^~BEANS,YEL,MATURE SEEDS,RAW~^^^^^0^~Phaseolus vulgaris~^6.25^3.47^8.37^4.07
-~16048~^~1600~^~Beans, yellow, mature seeds, cooked, boiled, without salt~^~BEANS,YEL,MATURE SEEDS,CKD,BLD,WO/SALT~^^^~Y~^^0^^6.25^3.47^8.37^4.07
-~16049~^~1600~^~Beans, white, mature seeds, raw~^~BEANS,WHITE,MATURE SEEDS,RAW~^^^~Y~^^0^~Phaseolus vulgaris~^6.25^3.47^8.37^4.07
-~16050~^~1600~^~Beans, white, mature seeds, cooked, boiled, without salt~^~BEANS,WHITE,MATURE SEEDS,CKD,BLD,WO/SALT~^^^~Y~^^0^^6.25^3.47^8.37^4.07
-~16051~^~1600~^~Beans, white, mature seeds, canned~^~BEANS,WHITE,MATURE SEEDS,CND~^^^^^0^^6.25^3.47^8.37^4.07
-~16052~^~1600~^~Broadbeans (fava beans), mature seeds, raw~^~BROADBEANS (FAVA BEANS),MATURE SEEDS,RAW~^^^~Y~^^0^~Vicia faba~^6.25^3.47^8.37^4.07
-~16053~^~1600~^~Broadbeans (fava beans), mature seeds, cooked, boiled, without salt~^~BROADBEANS (FAVA BNS),MATURE SEEDS,CKD,BLD,WO/SALT~^^^~Y~^^0^^6.25^3.47^8.37^4.07
-~16054~^~1600~^~Broadbeans (fava beans), mature seeds, canned~^~BROADBEANS (FAVA BNS),MATURE SEEDS,CND~^^^^^0^^6.25^3.47^8.37^4.07
-~16055~^~1600~^~Carob flour~^~CAROB FLOUR~^^^~Y~^^0^~Ceratonia siliqua~^6.25^^^
-~16056~^~1600~^~Chickpeas (garbanzo beans, bengal gram), mature seeds, raw~^~CHICKPEAS (GARBANZO BNS,BENGAL GM),MATURE SEEDS,RAW~^^^~Y~^^0^~Cicer arietinum~^6.25^3.47^8.37^4.07
-~16057~^~1600~^~Chickpeas (garbanzo beans, bengal gram), mature seeds, cooked, boiled, without salt~^~CHICKPEAS ,MATURE SEEDS,CKD,BLD,WO/SALT~^^^~Y~^^0^^6.25^3.47^8.37^4.07
-~16058~^~1600~^~Chickpeas (garbanzo beans, bengal gram), mature seeds, canned, solids and liquids~^~CHICKPEAS (GARBANZO BNS,BENGAL GRAM),MATURE SDS,CND,SOL&LIQ~^^^^^0^^6.25^3.47^8.37^4.07
-~16059~^~1600~^~Chili with beans, canned~^~CHILI WITH BEANS,CANNED~^^^~Y~^^0^^6.25^4.00^8.70^3.50
-~16060~^~1600~^~Cowpeas, catjang, mature seeds, raw~^~COWPEAS,CATJANG,MATURE SEEDS,RAW~^^^^^0^~Vigna unguiculata subsp. cylindrica~^6.25^3.47^8.37^4.07
-~16061~^~1600~^~Cowpeas, catjang, mature seeds, cooked, boiled, without salt~^~COWPEAS,CATJANG,MATURE SEEDS,CKD,BLD,WO/SALT~^^^^^0^^6.25^3.47^8.37^4.07
-~16062~^~1600~^~Cowpeas, common (blackeyes, crowder, southern), mature seeds, raw~^~COWPEAS,COMMON (BLACKEYES,CROWDER,SOUTHERN),MTRE SEEDS,RAW~^^^~Y~^^0^~Vigna unguiculata subsp. unguiculata~^6.25^3.47^8.37^4.07
-~16063~^~1600~^~Cowpeas, common (blackeyes, crowder, southern), mature seeds, cooked, boiled, without salt~^~COWPEAS,COMMON (BLKEYES,CRWDR,STHRN),MTURE,CKD,BLD,WO/SALT~^^^~Y~^^0^^6.25^3.47^8.37^4.07
-~16064~^~1600~^~Cowpeas, common (blackeyes, crowder, southern), mature seeds, canned, plain~^~COWPEAS,COMMON,MATURE SEEDS,CND,PLN~^^^^^0^^6.25^3.47^8.37^4.07
-~16065~^~1600~^~Cowpeas, common (blackeyes, crowder, southern), mature seeds, canned with pork~^~COWPEAS,COMMON,MATURE SEEDS,CND W/PORK~^^^^^0^^6.25^^^
-~16067~^~1600~^~Hyacinth beans, mature seeds, raw~^~HYACINTH BNS,MATURE SEEDS,RAW~^^^^^0^~Dolichos purpureus~^6.25^3.47^8.37^4.07
-~16068~^~1600~^~Hyacinth beans, mature seeds, cooked, boiled, without salt~^~HYACINTH BNS,MATURE SEEDS,CKD,BLD,WO/SALT~^^^^^0^^6.25^3.47^8.37^4.07
-~16069~^~1600~^~Lentils, raw~^~LENTILS,RAW~^^^~Y~^^0^~Lens culinaris~^6.25^3.47^8.37^4.07
-~16070~^~1600~^~Lentils, mature seeds, cooked, boiled, without salt~^~LENTILS,MATURE SEEDS,CKD,BLD,WO/SALT~^^^~Y~^^0^^6.25^3.47^8.37^4.07
-~16071~^~1600~^~Lima beans, large, mature seeds, raw~^~LIMA BNS,LRG,MATURE SEEDS,RAW~^^^~Y~^^0^~Phaseolus lunatus~^6.25^3.47^8.37^4.07
-~16072~^~1600~^~Lima beans, large, mature seeds, cooked, boiled, without salt~^~LIMA BNS,LRG,MATURE SEEDS,CKD,BLD,WO/SALT~^^^~Y~^^0^^6.25^3.47^8.37^4.07
-~16073~^~1600~^~Lima beans, large, mature seeds, canned~^~LIMA BNS,LRG,MATURE SEEDS,CND~^^^^^0^^6.25^3.47^8.37^4.07
-~16074~^~1600~^~Lima beans, thin seeded (baby), mature seeds, raw~^~LIMA BNS,THIN SEEDED (BABY),MATURE SEEDS,RAW~^^^^^0^~Phaseolus lunatus~^6.25^3.47^8.37^4.07
-~16075~^~1600~^~Lima beans, thin seeded (baby), mature seeds, cooked, boiled, without salt~^~LIMA BNS,THIN SEEDED (BABY),MATURE SEEDS,CKD,BLD,WO/SALT~^^^^^0^^6.25^3.47^8.37^4.07
-~16076~^~1600~^~Lupins, mature seeds, raw~^~LUPINS,MATURE SEEDS,RAW~^^^^^0^~Lupinus albus~^6.25^3.47^8.37^4.07
-~16077~^~1600~^~Lupins, mature seeds, cooked, boiled, without salt~^~LUPINS,MATURE SEEDS,CKD,BLD,WO/ SALT~^^^^^0^^6.25^3.47^8.37^4.07
-~16078~^~1600~^~Mothbeans, mature seeds, raw~^~MOTHBEANS,MATURE SEEDS,RAW~^~mat bean, moth bean~^^^^0^~Vigna aconitifolia~^6.25^3.47^8.37^4.07
-~16079~^~1600~^~Mothbeans, mature seeds, cooked, boiled, without salt~^~MOTHBEANS,MATURE SEEDS,CKD,BLD,WO/SALT~^~mat bean, moth bean~^^^^0^^6.25^3.47^8.37^4.07
-~16080~^~1600~^~Mung beans, mature seeds, raw~^~MUNG BNS,MATURE SEEDS,RAW~^^^~Y~^^0^~Vigna radiata~^6.25^3.47^8.37^4.07
-~16081~^~1600~^~Mung beans, mature seeds, cooked, boiled, without salt~^~MUNG BNS,MATURE SEEDS,CKD,BLD,WO/SALT~^^^~Y~^^0^^6.25^3.47^8.37^4.07
-~16082~^~1600~^~Noodles, chinese, cellophane or long rice (mung beans), dehydrated~^~NOODLES,CHINESE,CELLOPHANE OR LONG RICE (MUNG BNS),DEHYD~^^^~Y~^^0^^6.25^3.47^8.37^4.07
-~16083~^~1600~^~Mungo beans, mature seeds, raw~^~MUNGO BNS,MATURE SEEDS,RAW~^^^^^0^~Vigna mungo~^6.25^3.47^8.37^4.07
-~16084~^~1600~^~Mungo beans, mature seeds, cooked, boiled, without salt~^~MUNGO BNS,MATURE SEEDS,CKD,BLD,WO/SALT~^^^~Y~^^0^^6.25^3.47^8.37^4.07
-~16085~^~1600~^~Peas, green, split, mature seeds, raw~^~PEAS,GRN,SPLIT,MATURE SEEDS,RAW~^^^~Y~^^0^~Pisum sativum~^6.25^3.47^8.37^4.07
-~16086~^~1600~^~Peas, split, mature seeds, cooked, boiled, without salt~^~PEAS,SPLIT,MATURE SEEDS,CKD,BLD,WO/SALT~^^^~Y~^^0^^6.25^3.47^8.37^4.07
-~16087~^~1600~^~Peanuts, all types, raw~^~PEANUTS,ALL TYPES,RAW~^^^~Y~^^0^^5.46^3.47^8.37^4.07
-~16088~^~1600~^~Peanuts, all types, cooked, boiled, with salt~^~PEANUTS,ALL TYPES,CKD,BLD,W/SALT~^^^~Y~^^0^^5.46^3.47^8.37^4.07
-~16089~^~1600~^~Peanuts, all types, oil-roasted, with salt~^~PEANUTS,ALL TYPES,OIL-ROASTED,W/SALT~^^^~Y~^^0^^5.46^3.47^8.37^4.07
-~16090~^~1600~^~Peanuts, all types, dry-roasted, with salt~^~PEANUTS,ALL TYPES,DRY-ROASTED,W/SALT~^^^~Y~^^0^^5.46^3.47^8.37^4.07
-~16091~^~1600~^~Peanuts, spanish, raw~^~PEANUTS,SPANISH,RAW~^^^^^0^~Arachis hypogaea~^5.46^3.47^8.37^4.07
-~16092~^~1600~^~Peanuts, spanish, oil-roasted, with salt~^~PEANUTS,SPANISH,OIL-ROASTED,W/SALT~^^^^^0^^5.46^3.47^8.37^4.07
-~16093~^~1600~^~Peanuts, valencia, raw~^~PEANUTS,VALENCIA,RAW~^^^^^0^~Arachis hypogaea~^5.46^3.47^8.37^4.07
-~16094~^~1600~^~Peanuts, valencia, oil-roasted, with salt~^~PEANUTS,VALENCIA,OIL-ROASTED,W/SALT~^^^^^0^^5.46^3.47^8.37^4.07
-~16095~^~1600~^~Peanuts, virginia, raw~^~PEANUTS,VIRGINIA,RAW~^^^^^0^~Arachis hypogaea~^5.46^3.47^8.37^4.07
-~16096~^~1600~^~Peanuts, virginia, oil-roasted, with salt~^~PEANUTS,VIRGINIA,OIL-ROASTED,W/SALT~^^^^^0^^5.46^3.47^8.37^4.07
-~16097~^~1600~^~Peanut butter, chunk style, with salt~^~PEANUT BUTTER,CHUNK STYLE,W/SALT~^^^^^0^^5.46^3.47^8.37^4.07
-~16098~^~1600~^~Peanut butter, smooth style, with salt (Includes foods for USDA's Food Distribution Program)~^~PEANUT BUTTER,SMOOTH STYLE,W/ SALT~^^^~Y~^^0^^5.46^3.47^8.37^4.07
-~16099~^~1600~^~Peanut flour, defatted~^~PEANUT FLOUR,DEFATTED~^^^~Y~^^0^^5.46^3.47^8.37^4.07
-~16100~^~1600~^~Peanut flour, low fat~^~PEANUT FLOUR,LOW FAT~^^^^^0^^5.46^3.47^8.37^4.07
-~16101~^~1600~^~Pigeon peas (red gram), mature seeds, raw~^~PIGEON PEAS (RED GM),MATURE SEEDS,RAW~^^^^^0^~Cajanus cajan~^6.25^3.47^8.37^4.07
-~16102~^~1600~^~Pigeon peas (red gram), mature seeds, cooked, boiled, without salt~^~PIGEON PEAS (RED GM),MATURE SEEDS,CKD,BLD,WO/SALT~^^^^^0^^6.25^3.47^8.37^4.07
-~16103~^~1600~^~Refried beans, canned, traditional style~^~REFRIED BNS,CND,TRADITIONAL STYLE~^^^~Y~^^0^^6.25^3.50^8.90^4.07
-~16104~^~1600~^~Bacon, meatless~^~BACON,MEATLESS~^^^~Y~^^0^^6.25^3.47^8.37^4.07
-~16106~^~1600~^~Meat extender~^~MEAT EXTENDER~^^^^^0^^6.25^3.47^8.37^4.07
-~16107~^~1600~^~Sausage, meatless~^~SAUSAGE,MEATLESS~^^^~Y~^^0^^6.25^3.48^8.37^4.07
-~16108~^~1600~^~Soybeans, mature seeds, raw~^~SOYBEANS,MATURE SEEDS,RAW~^^^^^0^^^^^
-~16109~^~1600~^~Soybeans, mature cooked, boiled, without salt~^~SOYBEANS,MATURE CKD,BLD,WO/SALT~^^^~Y~^^0^^6.25^3.47^8.37^4.07
-~16110~^~1600~^~Soybeans, mature seeds, roasted, salted~^~SOYBEANS,MATURE SEEDS,RSTD,SALTED~^^^~Y~^^0^^6.25^3.47^8.37^4.07
-~16111~^~1600~^~Soybeans, mature seeds, dry roasted~^~SOYBEANS,MATURE SEEDS,DRY RSTD~^~Soy nuts~^^^^0^^6.25^3.47^8.37^4.07
-~16112~^~1600~^~Miso~^~MISO~^^^~Y~^^0^^6.25^3.47^8.37^4.07
-~16113~^~1600~^~Natto~^~NATTO~^^^~Y~^^0^^6.25^3.47^8.37^4.07
-~16114~^~1600~^~Tempeh~^~TEMPEH~^^^^^0^^6.25^3.47^8.37^4.07
-~16115~^~1600~^~Soy flour, full-fat, raw~^~SOY FLOUR,FULL-FAT,RAW~^^^~Y~^^0^^6.25^3.47^8.37^4.07
-~16116~^~1600~^~Soy flour, full-fat, roasted~^~SOY FLR,FULL-FAT,RSTD~^^^^^0^^6.25^3.47^8.37^4.07
-~16117~^~1600~^~Soy flour, defatted~^~SOY FLOUR,DEFATTED~^^^~Y~^^0^^6.25^3.47^8.37^4.07
-~16118~^~1600~^~Soy flour, low-fat~^~SOY FLOUR,LOW-FAT~^^^~Y~^^0^^6.25^3.47^8.37^4.07
-~16119~^~1600~^~Soy meal, defatted, raw~^~SOY MEAL,DEFATTED,RAW~^^^^^0^^6.25^3.47^8.37^4.07
-~16120~^~1600~^~Soymilk, original and vanilla, unfortified~^~SOYMILK,ORIGINAL & VANILLA,UNFORTIFIED~^^^~Y~^^0^^^^^
-~16121~^~1600~^~Soy protein concentrate, produced by alcohol extraction~^~SOY PROT CONC,PRODUCED BY ALCOHOL EXTRACTION~^^^^^0^^6.25^3.47^8.37^4.07
-~16122~^~1600~^~Soy protein isolate~^~SOY PROTEIN ISOLATE~^^^~Y~^^0^^6.25^3.47^8.37^4.07
-~16123~^~1600~^~Soy sauce made from soy and wheat (shoyu)~^~SOY SAU MADE FROM SOY&WHEAT (SHOYU)~^^^~Y~^^0^^6.25^3.50^8.40^4.00
-~16124~^~1600~^~Soy sauce made from soy (tamari)~^~SOY SAU MADE FROM SOY (TAMARI)~^^^~Y~^^0^^6.25^3.50^8.40^4.00
-~16125~^~1600~^~Soy sauce made from hydrolyzed vegetable protein~^~SOY SAU MADE FROM HYDROLYZED VEG PROT~^^^~Y~^^0^^6.25^3.47^8.37^4.07
-~16126~^~1600~^~Tofu, firm, prepared with calcium sulfate and magnesium chloride (nigari)~^~TOFU,FIRM,PREP W/CA SULFATE&MAGNESIUM CHLORIDE (NIGARI)~^^^^^0^^6.25^3.47^8.37^4.07
-~16127~^~1600~^~Tofu, soft, prepared with calcium sulfate and magnesium chloride (nigari)~^~TOFU,SOFT,PREP W/CA SULFATE&MAGNESIUM CHLORIDE (NIGARI)~^^^~Y~^^0^^6.25^3.47^8.37^4.07
-~16128~^~1600~^~Tofu, dried-frozen (koyadofu)~^~TOFU,DRIED-FROZEN (KOYADOFU)~^^^^^0^^6.25^3.47^8.37^4.07
-~16129~^~1600~^~Tofu, fried~^~TOFU,FRIED~^^^~Y~^^0^^6.25^3.47^8.37^4.07
-~16130~^~1600~^~Okara~^~OKARA~^^^^^0^^6.25^3.47^8.37^4.07
-~16132~^~1600~^~Tofu, salted and fermented (fuyu)~^~TOFU,SALTED&FERMENTED (FUYU)~^^^^^0^^6.25^3.47^8.37^4.07
-~16133~^~1600~^~Yardlong beans, mature seeds, raw~^~YARDLONG BNS,MATURE SEEDS,RAW~^^^^^0^~Vigna uniguiculata subsp. sesquipedalis~^6.25^3.47^8.37^4.07
-~16134~^~1600~^~Yardlong beans, mature seeds, cooked, boiled, without salt~^~YARDLONG BNS,MATURE SEEDS,CKD,BLD,WO/SALT~^^^^^0^^6.25^3.47^8.37^4.07
-~16135~^~1600~^~Winged beans, mature seeds, raw~^~WINGED BNS,MATURE SEEDS,RAW~^^^^^0^~Psophocarpus tetragonolobus~^6.25^3.47^8.37^4.07
-~16136~^~1600~^~Winged beans, mature seeds, cooked, boiled, without salt~^~WINGED BNS,MATURE SEEDS,CKD,BLD,WO/ SALT~^^^^^0^^6.25^3.47^8.37^4.07
-~16137~^~1600~^~Hummus, home prepared~^~HUMMUS,HOME PREP~^^^~Y~^^0^^^^^
-~16138~^~1600~^~Falafel, home-prepared~^~FALAFEL,HOME-PREPARED~^^^^^0^^0.00^^^
-~16139~^~1600~^~Soymilk, original and vanilla, with added calcium, vitamins A and D~^~SOYMILK,ORIGINAL & VANILLA,W/ ADDED CA,VITAMINS A & D~^^^~Y~^^0^^^^^
-~16144~^~1600~^~Lentils, pink or red, raw~^~LENTILS,PINK OR RED,RAW~^^^^^0^^6.25^3.47^8.37^4.07
-~16145~^~1600~^~Beans, kidney, red, mature seeds, canned, drained solids~^~BEANS,KIDNEY,RED,MATURE SEEDS,CND,DRND SOL~^^^^^0^^6.25^3.47^8.37^4.07
-~16146~^~1600~^~Beans, pinto, canned, drained solids~^~BEANS,PINTO,CND,DRND SOL~^^^^^0^^6.25^3.47^8.37^4.05
-~16147~^~1600~^~Veggie burgers or soyburgers, unprepared~^~VEGGIE BURGERS OR SOYBURGERS UNPREP~^^^~Y~^^0^^^^^
-~16149~^~1600~^~Peanut spread, reduced sugar~^~PEANUT SPRD,RED SUGAR~^^^~Y~^^0^^^^^
-~16150~^~1600~^~Peanut butter, smooth, reduced fat~^~PEANUT BUTTER,SMOOTH,RED FAT~^^^~Y~^^0^^5.46^3.47^8.37^4.07
-~16155~^~1600~^~Peanut butter, smooth, vitamin and mineral fortified~^~PEANUT BUTTER,SMOOTH,VIT & MINERAL FORT~^^^~Y~^^0^^5.46^3.47^8.37^4.07
-~16156~^~1600~^~Peanut butter, chunky, vitamin and mineral fortified~^~PEANUT BUTTER,CHUNKY,VITAMIN&MINERAL FORT~^^^~Y~^^0^^5.46^3.47^8.37^4.07
-~16157~^~1600~^~Chickpea flour (besan)~^~CHICKPEA FLOUR (BESAN)~^^^^^0^^6.25^4.27^8.37^4.07
-~16158~^~1600~^~Hummus, commercial~^~HUMMUS,COMMERCIAL~^^^^^0^^6.25^3.47^8.37^4.07
-~16159~^~1600~^~Tofu, extra firm, prepared with nigari~^~TOFU,EX FIRM,PREP W/NIGARI~^^^^^0^^6.25^3.47^8.37^4.07
-~16160~^~1600~^~Tofu, hard, prepared with nigari~^~TOFU,HARD,PREP W/NIGARI~^^^^^0^^6.25^3.47^8.37^4.07
-~16161~^~1600~^~MORI-NU, Tofu, silken, soft~^~MORI-NU,TOFU,SILKEN,SOFT~^^~Morinaga Nutrional Foods, Inc.~^^^0^^^^^
-~16162~^~1600~^~MORI-NU, Tofu, silken, firm~^~MORI-NU,TOFU,SILKEN,FIRM~^^~Morinaga Nutrional Foods, Inc.~^^^0^^^^^
-~16163~^~1600~^~MORI-NU, Tofu, silken, extra firm~^~MORI-NU,TOFU,SILKEN,EX FIRM~^^~Morinaga Nutrional Foods, Inc.~^^^0^^^^^
-~16164~^~1600~^~MORI-NU, Tofu, silken, lite firm~^~MORI-NU,TOFU,SILKEN,LITE FIRM~^^~Morinaga Nutrional Foods, Inc.~^^^0^^^^^
-~16165~^~1600~^~MORI-NU, Tofu, silken, lite extra firm~^~MORI-NU,TOFU,SILKEN,LITE EX FIRM~^^~Morinaga Nutrional Foods, Inc.~^^^0^^^^^
-~16166~^~1600~^~Soymilk, chocolate, unfortified~^~SOYMILK,CHOC,UNFORTIFIED~^^^~Y~^^0^^^^^
-~16167~^~1600~^~Peanut Butter, smooth (Includes foods for USDA's Food Distribution Program)~^~PEANUT BUTTER,SMOOTH (INCLFOODS FOR USDA'S FD DIST PGM)~^^^^^0^^5.46^3.47^8.37^4.07
-~16168~^~1600~^~Soymilk, chocolate, with added calcium, vitamins A and D~^~SOYMILK,CHOC,W/ ADDED CA,VITAMINS A & D~^^^~Y~^^0^^^^^
-~16171~^~1600~^~Refried beans, canned, vegetarian~^~REFRIED BNS,CND,VEGETARIAN~^^^^^0^^^^^
-~16172~^~1600~^~Refried beans, canned, fat-free~^~REFRIED BNS,CND,FAT-FREE~^^^~Y~^^0^^^^^
-~16173~^~1600~^~Frijoles rojos volteados (Refried beans, red, canned)~^~FRIJOLES ROJOS VOLTEADOS (REFRIED BNS,RED,CANNED)~^^^^^0^^^^^
-~16174~^~1600~^~Tempeh, cooked~^~TEMPEH,CKD~^^^^^0^^6.25^3.47^8.37^4.07
-~16210~^~1600~^~Vitasoy USA, Nasoya Lite Firm Tofu~^~VITASOY USA,NASOYA LITE FIRM TOFU~^^~Vitasoy USA~^^^0^^^^^
-~16211~^~1600~^~Vitasoy USA, Organic Nasoya Super Firm Cubed Tofu~^~VITASOY USA,ORGANIC NASOYA SUPER FIRM CUBED TOFU~^^~Vitasoy USA~^^^0^^^^^
-~16212~^~1600~^~Vitasoy USA, Organic Nasoya Extra Firm Tofu~^~VITASOY USA,ORGANIC NASOYA EX FIRM TOFU~^^~Vitasoy USA~^^^0^^^^^
-~16213~^~1600~^~Vitasoy USA, Organic Nasoya Firm Tofu~^~VITASOY USA,ORGANIC NASOYA FIRM TOFU~^^~Vitasoy USA~^^^0^^^^^
-~16214~^~1600~^~Vitasoy USA, Organic Nasoya Silken Tofu~^~VITASOY USA ORGANIC NASOYA SILKEN TOFU~^^~Vitasoy USA~^^^0^^^^^
-~16215~^~1600~^~Vitasoy USA, Vitasoy Organic Creamy Original Soymilk~^~VITASOY USA,VITASOY ORGANIC CREAMY ORIGINAL SOYMILK~^^~Vitasoy USA~^^^0^^^^^
-~16216~^~1600~^~Vitasoy USA, Vitasoy Organic Classic Original Soymilk~^~VITASOY USA,VITASOY ORGANIC CLASSIC ORIGINAL SOYMILK~^^~Vitasoy USA~^^^0^^^^^
-~16219~^~1600~^~Vitasoy USA, Vitasoy Light Vanilla Soymilk~^~VITASOY USA,VITASOY LT VANILLA SOYMILK~^^~Vitasoy USA~^^^0^^^^^
-~16222~^~1600~^~Soymilk (all flavors), unsweetened, with added calcium, vitamins A and D~^~SOYMILK (ALL FLAVORS),UNSWTND,W/ ADDED CA,VITAMINS A & D~^^^^^0^^^^^
-~16223~^~1600~^~Soymilk (All flavors), enhanced~^~SOYMILK (ALL FLAVORS),ENHANCED~^^^^^0^^^^^
-~16225~^~1600~^~Soymilk, original and vanilla, light, with added calcium, vitamins A and D~^~SOYMILK,ORIGINAL & VANILLA,LT,W/ ADDED CA,VITAMINS A & D~^^^~Y~^^0^^^^^
-~16227~^~1600~^~Soymilk, chocolate and other flavors, light, with added calcium, vitamins A and D~^~SOYMILK,CHOC & OTHER FLAVORS,LT,W/ ADDED CA,VITAMINS A & D~^^^~Y~^^0^^^^^
-~16228~^~1600~^~Soymilk, original and vanilla, light, unsweetened, with added calcium, vitamins A and D~^~SOYMILK,ORIGINAL & VANILLA,LT,UNSWTND,W/ ADDED CA,VIT A & D~^^^^^0^^^^^
-~16229~^~1600~^~Soymilk (All flavors), lowfat, with added calcium, vitamins A and D~^~SOYMILK (ALL FLAVORS),LOWFAT,W/ ADDED CA,VITAMINS A & D~^^^^^0^^^^^
-~16230~^~1600~^~Soymilk (all flavors), nonfat, with added calcium, vitamins A and D~^~SOYMILK (ALL FLAVORS),NONFAT,W/ ADDED CA,VITAMINS A & D~^^^~Y~^^0^^^^^
-~16231~^~1600~^~Soymilk, chocolate, nonfat, with added calcium, vitamins A and D~^~SOYMILK,CHOC,NONFAT,W/ ADDED CA,VITAMINS A & D~^^^~Y~^^0^^^^^
-~16235~^~1600~^~SILK Plain, soymilk~^~SILK PLN,SOYMILK~^^~WhiteWave Foods Company~^^^0^^6.25^^^
-~16236~^~1600~^~SILK Vanilla, soymilk~^~SILK VANILLA,SOYMILK~^^~WhiteWave Foods Company~^^^0^^6.25^^^
-~16237~^~1600~^~SILK Chocolate, soymilk~^~SILK CHOC,SOYMILK~^^~WhiteWave Foods Company~^^^0^^6.25^^^
-~16238~^~1600~^~SILK Light Plain, soymilk~^~SILK LT PLN,SOYMILK~^^~WhiteWave Foods Company~^^^0^^6.25^^^
-~16239~^~1600~^~SILK Light Vanilla, soymilk~^~SILK LT VANILLA,SOYMILK~^^~WhiteWave Foods Company~^^^0^^6.25^^^
-~16240~^~1600~^~SILK Light Chocolate, soymilk~^~SILK LT CHOC,SOYMILK~^^~WhiteWave Foods Company~^^^0^^6.25^^^
-~16241~^~1600~^~SILK Plus Omega-3 DHA, soymilk~^~SILK PLUS OMEGA-3 DHA,SOYMILK~^^~WhiteWave Foods Company~^^^0^^6.25^^^
-~16242~^~1600~^~SILK Plus for Bone Health, soymilk~^~SILK PLUS FOR BONE HEALTH,SOYMILK~^^~WhiteWave Foods Company~^^^0^^6.25^^^
-~16243~^~1600~^~SILK Plus Fiber, soymilk~^~SILK PLUS FIBER,SOYMILK~^^~WhiteWave Foods Company~^^^0^^6.25^^^
-~16244~^~1600~^~SILK Unsweetened, soymilk~^~SILK UNSWTND,SOYMILK~^^~WhiteWave Foods Company~^^^0^^6.25^^^
-~16245~^~1600~^~SILK Very Vanilla, soymilk~^~SILK VERY VANILLA,SOYMILK~^^~WhiteWave Foods Company~^^^0^^6.25^^^
-~16246~^~1600~^~SILK Nog, soymilk~^~SILK NOG,SOYMILK~^^~WhiteWave Foods Company~^^^0^^6.25^^^
-~16247~^~1600~^~SILK Chai, soymilk~^~SILK CHAI,SOYMILK~^^~WhiteWave Foods Company~^^^0^^6.25^^^
-~16248~^~1600~^~SILK Mocha, soymilk~^~SILK MOCHA,SOYMILK~^^~WhiteWave Foods Company~^^^0^^6.25^^^
-~16249~^~1600~^~SILK Coffee, soymilk~^~SILK COFFEE,SOYMILK~^^~WhiteWave Foods Company~^^^0^^6.25^^^
-~16250~^~1600~^~SILK Vanilla soy yogurt (family size)~^~SILK VANILLA SOY YOGURT (FAMILY SIZE)~^^~WhiteWave Foods Company~^^^0^^6.25^^^
-~16251~^~1600~^~SILK Vanilla soy yogurt (single serving size)~^~SILK VANILLA SOY YOGURT (SINGLE SERVING SIZE)~^^~WhiteWave Foods Company~^^^0^^6.25^^^
-~16252~^~1600~^~SILK Plain soy yogurt~^~SILK PLN SOY YOGURT~^^~WhiteWave Foods Company~^^^0^^6.25^^^
-~16253~^~1600~^~SILK Strawberry soy yogurt~^~SILK STRAWBERRY SOY YOGURT~^^~WhiteWave Foods Company~^^^0^^6.25^^^
-~16254~^~1600~^~SILK Raspberry soy yogurt~^~SILK RASPBERRY SOY YOGURT~^^~WhiteWave Foods Company~^^^0^^6.25^^^
-~16255~^~1600~^~SILK Peach soy yogurt~^~SILK PEACH SOY YOGURT~^^~WhiteWave Foods Company~^^^0^^6.25^^^
-~16256~^~1600~^~SILK Black Cherry soy yogurt~^~SILK BLACK CHERRY SOY YOGURT~^^~WhiteWave Foods Company~^^^0^^6.25^^^
-~16257~^~1600~^~SILK Blueberry soy yogurt~^~SILK BLUEBERRY SOY YOGURT~^^~WhiteWave Foods Company~^^^0^^6.25^^^
-~16258~^~1600~^~SILK Key Lime soy yogurt~^~SILK KEY LIME SOY YOGURT~^^~WhiteWave Foods Company~^^^0^^6.25^^^
-~16259~^~1600~^~SILK Banana-Strawberry soy yogurt~^~SILK BANANA-STRAWBERRY SOY YOGURT~^^~WhiteWave Foods Company~^^^0^^6.25^^^
-~16260~^~1600~^~SILK Original Creamer~^~SILK ORIGINAL CREAMER~^^~WhiteWave Foods Company~^^^0^^6.25^^^
-~16261~^~1600~^~SILK French Vanilla Creamer~^~SILK FRENCH VANILLA CREAMER~^^~WhiteWave Foods Company~^^^0^^6.25^^^
-~16262~^~1600~^~SILK Hazelnut Creamer~^~SILK HAZELNUT CREAMER~^^~WhiteWave Foods Company~^^^0^^6.25^^^
-~16271~^~1600~^~Vitasoy USA Organic Nasoya, Soft Tofu~^~VITASOY USA ORGANIC NASOYA,SOFT TOFU~^^~Vitasoy USA~^^^0^^6.25^^^
-~16272~^~1600~^~Vitasoy USA Nasoya, Lite Silken Tofu~^~VITASOY USA NASOYA,LITE SILKEN TOFU~^^~Vitasoy USA~^^^0^^6.25^^^
-~16273~^~1600~^~Vitasoy USA Organic Nasoya, Tofu Plus Extra Firm~^~VITASOY USA ORGANIC NASOYA,TOFU PLUS EX FIRM~^^~Vitasoy USA~^^^0^^6.25^^^
-~16274~^~1600~^~Vitasoy USA Organic Nasoya, Tofu Plus Firm~^~VITASOY USA ORGANIC NASOYA,TOFU PLUS FIRM~^^~Vitasoy USA~^^^0^^6.25^^^
-~16275~^~1600~^~Vitasoy USA Organic Nasoya Sprouted, Tofu Plus Super Firm~^~VITASOY USA ORGANIC NASOYA SPROUTED,TOFU PLUS SUPER FIRM~^^~Vitasoy USA~^^^0^^6.25^^^
-~16276~^~1600~^~Vitasoy USA Azumaya, Extra Firm Tofu~^~VITASOY USA AZUMAYA,EX FIRM TOFU~^^~Vitasoy USA~^^^0^^6.25^^^
-~16277~^~1600~^~Vitasoy USA Azumaya, Firm Tofu~^~VITASOY USA AZUMAYA,FIRM TOFU~^^~Vitasoy USA~^^^0^^6.25^^^
-~16278~^~1600~^~Vitasoy USA Azumaya, Silken Tofu~^~VITASOY USA AZUMAYA,SILKEN TOFU~^^~Vitasoy USA~^^^0^^6.25^^^
-~16279~^~1600~^~HOUSE FOODS Premium Soft Tofu~^~HOUSE FOODS PREMIUM SOFT TOFU~^^~House Foods~^^^0^^6.25^^^
-~16281~^~1600~^~HOUSE FOODS Premium Firm Tofu~^~HOUSE FOODS PREMIUM FIRM TOFU~^^~House Foods~^^^0^^6.25^^^
-~16302~^~1600~^~Beans, adzuki, mature seed, cooked, boiled, with salt~^~BEANS,ADZUKI,MATURE SD,CKD,BLD,W/SALT~^^^^^0^^6.25^3.47^8.37^4.07
-~16315~^~1600~^~Beans, black, mature seeds, cooked, boiled, with salt~^~BEANS,BLACK,MATURE SEEDS,CKD,BLD,W/SALT~^^^^^0^^6.25^3.47^8.37^4.07
-~16316~^~1600~^~Beans, black, mature seeds, canned, low sodium~^~BEANS,BLACK,MATURE SEEDS,CND,LO NA~^^^~Y~^^0^^6.25^3.47^8.37^4.07
-~16317~^~1600~^~Beans, black turtle, mature seeds, cooked, boiled, with salt~^~BEANS,BLACK TURTLE,MATURE SEEDS,CKD,BLD,W/ SALT~^^^^^0^^6.25^3.47^8.37^4.07
-~16320~^~1600~^~Beans, cranberry (roman), mature seeds, cooked, boiled, with salt~^~BEANS,CRANBERRY (ROMAN),MATURE SEEDS,CKD,BLD,W/SALT~^^^^^0^^6.25^3.47^8.37^4.07
-~16323~^~1600~^~Beans, french, mature seeds, cooked, boiled, with salt~^~BEANS,FRENCH,MATURE SEEDS,CKD,BLD,W/SALT~^^^^^0^^6.25^3.47^8.37^4.07
-~16325~^~1600~^~Beans, great northern, mature seeds, cooked, boiled, with salt~^~BEANS,GREAT NORTHERN,MATURE SEEDS,CKD,BLD,W/SALT~^^^^^0^^6.25^3.47^8.37^4.07
-~16326~^~1600~^~Beans, great northern, mature seeds, canned, low sodium~^~BEANS,GREAT NORTHERN,MATURE SEEDS,CND,LO NA~^^^~Y~^^0^^6.25^3.47^8.37^4.07
-~16328~^~1600~^~Beans, kidney, all types, mature seeds, cooked, boiled, with salt~^~BEANS,KIDNEY,ALL TYPES,MATURE SEEDS,CKD,BLD,W/SALT~^^^^^0^^6.25^3.47^8.37^4.07
-~16331~^~1600~^~Beans, kidney, california red, mature seeds, cooked, boiled, with salt~^~BEANS,KIDNEY,CALIFORNIA RED,MATURE SEEDS,CKD,BLD,W/SALT~^^^^^0^^6.25^3.47^8.37^4.07
-~16333~^~1600~^~Beans, kidney, red, mature seeds, cooked, boiled, with salt~^~BEANS,KIDNEY,RED,MATURE SEEDS,CKD,BLD,W/SALT~^^^^^0^^6.25^3.47^8.37^4.07
-~16335~^~1600~^~Beans, kidney, red, mature seeds, canned, drained solids, rinsed in tap water~^~BEANS,KIDNEY,RED,MATURE SEEDS,CND,DRND SOL,RINSED IN TAP H2O~^^^^^0^^6.25^3.47^8.37^4.07
-~16336~^~1600~^~Beans, kidney, royal red, mature seeds, cooked, boiled with salt~^~BEANS,KIDNEY,ROYAL RED,MATURE SEEDS,CKD,BLD W/SALT~^^^^^0^^6.25^3.47^8.37^4.07
-~16337~^~1600~^~Beans, kidney, red, mature seeds, canned, solids and liquid, low sodium~^~BEANS,KIDNEY,RED,MATURE SEEDS,CND,SOL & LIQ,LO NA~^^^~Y~^^0^^6.25^3.47^8.37^4.07
-~16338~^~1600~^~Beans, navy, mature seeds, cooked, boiled, with salt~^~BEANS,NAVY,MATURE SEEDS,CKD,BLD,W/SALT~^^^^^0^^6.25^3.47^8.37^4.07
-~16341~^~1600~^~Beans, pink, mature seeds, cooked, boiled, with salt~^~BEANS,PINK,MATURE SEEDS,CKD,BLD,W/SALT~^^^^^0^^6.25^3.47^8.37^4.07
-~16343~^~1600~^~Beans, pinto, mature seeds, cooked, boiled, with salt~^~BEANS,PINTO,MATURE SEEDS,CKD,BLD,W/SALT~^^^^^0^^6.25^3.47^8.37^4.07
-~16345~^~1600~^~Beans, pinto, mature seeds, canned, drained solids, rinsed in tap water~^~BEANS,PINTO,MATURE SEEDS,CND,DRND SOL,RINSED IN TAP H2O~^^^^^0^^6.25^3.47^8.37^4.07
-~16346~^~1600~^~Beans, small white, mature seeds, cooked, boiled, with salt~^~BEANS,SML WHITE,MATURE SEEDS,CKD,BLD,W/SALT~^^^^^0^^6.25^3.47^8.37^4.07
-~16347~^~1600~^~Beans, pinto, mature seeds, canned, solids and liquids, low sodium~^~BEANS,PINTO,MATURE SEEDS,CND,SOL & LIQUIDS,LO NA~^^^~Y~^^0^^6.25^3.47^8.37^4.07
-~16348~^~1600~^~Beans, yellow, mature seeds, cooked, boiled, with salt~^~BEANS,YEL,MATURE SEEDS,CKD,BLD,W/SALT~^^^^^0^^6.25^3.47^8.37^4.07
-~16350~^~1600~^~Beans, white, mature seeds, cooked, boiled, with salt~^~BEANS,WHITE,MATURE SEEDS,CKD,BLD,W/ SALT~^^^^^0^^6.25^3.47^8.37^4.07
-~16353~^~1600~^~Broadbeans (fava beans), mature seeds, cooked, boiled, with salt~^~BROADBEANS (FAVA BNS),MATURE SEEDS,CKD,BLD,W/SALT~^^^^^0^^6.25^3.47^8.37^4.07
-~16357~^~1600~^~Chickpeas (garbanzo beans, bengal gram), mature seeds, cooked, boiled, with salt~^~CHICKPEAS,MATURE SEEDS,CKD,BLD,W/SALT~^^^^^0^^6.25^3.47^8.37^4.07
-~16358~^~1600~^~Chickpeas (garbanzo beans, bengal gram), mature seeds, canned, drained solids~^~CHICKPEAS,MAT SEEDS,CND,DRND SOL~^^^^^0^^6.25^3.47^8.37^4.07
-~16359~^~1600~^~Chickpeas (garbanzo beans, bengal gram), mature seeds, canned, drained, rinsed in tap water~^~CHICKPEAS,MATURE SEEDS,CND,DRND,RINSED IN TAP H2O~^^^^^0^^6.25^3.47^8.37^4.07
-~16360~^~1600~^~Chickpeas (garbanzo beans, bengal gram), mature seeds, canned, solids and liquids, low sodium~^~CHICKPEAS,MATURE SEEDS,CND,SOL & LIQUIDS,LO NA~^^^~Y~^^0^^6.25^3.47^8.37^4.07
-~16361~^~1600~^~Cowpeas, catjang, mature seeds, cooked, boiled, with salt~^~COWPEAS,CATJANG,MATURE SEEDS,CKD,BLD,W/SALT~^^^^^0^^6.25^3.47^8.37^4.07
-~16363~^~1600~^~Cowpeas, common (blackeyes, crowder, southern), mature seeds, cooked, boiled, with salt~^~COWPEAS,COMMON,MATURE SEEDS,CKD,BLD,W/SALT~^^^^^0^^6.25^3.47^8.37^4.07
-~16368~^~1600~^~Hyacinth beans, mature seeds, cooked, boiled, with salt~^~HYACINTH BNS,MATURE SEEDS,CKD,BLD,W/SALT~^^^^^0^^6.25^3.47^8.37^4.07
-~16370~^~1600~^~Lentils, mature seeds, cooked, boiled, with salt~^~LENTILS,MATURE SEEDS,CKD,BLD,W/SALT~^^^^^0^^6.25^3.47^8.37^4.07
-~16372~^~1600~^~Lima beans, large, mature seeds, cooked, boiled, with salt~^~LIMA BNS,LRG,MATURE SEEDS,CKD,BLD,W/SALT~^^^^^0^^6.25^3.47^8.37^4.07
-~16375~^~1600~^~Lima beans, thin seeded (baby), mature seeds, cooked, boiled, with salt~^~LIMA BNS,THIN SEEDED (BABY),MATURE SEEDS,CKD,BLD,W/SALT~^^^^^0^^6.25^3.47^8.37^4.07
-~16377~^~1600~^~Lupins, mature seeds, cooked, boiled, with salt~^~LUPINS,MATURE SEEDS,CKD,BLD,W/SALT~^^^^^0^^6.25^3.47^8.37^4.07
-~16379~^~1600~^~Mothbeans, mature seeds, cooked, boiled, with salt~^~MOTHBEANS,MATURE SEEDS,CKD,BLD,W/SALT~^~mat bean, moth bean~^^^^0^^6.25^3.47^8.37^4.07
-~16381~^~1600~^~Mung beans, mature seeds, cooked, boiled, with salt~^~MUNG BNS,MATURE SEEDS,CKD,BLD,W/SALT~^^^^^0^^6.25^3.47^8.37^4.07
-~16384~^~1600~^~Mungo beans, mature seeds, cooked, boiled, with salt~^~MUNGO BNS,MATURE SEEDS,CKD,BLD,W/SALT~^^^^^0^^6.25^3.47^8.37^4.07
-~16386~^~1600~^~Peas, split, mature seeds, cooked, boiled, with salt~^~PEAS,SPLIT,MATURE SEEDS,CKD,BLD,W/SALT~^^^^^0^^6.25^3.47^8.37^4.07
-~16389~^~1600~^~Peanuts, all types, oil-roasted, without salt~^~PEANUTS,ALL TYPES,OIL-ROASTED,WO/ SALT~^^^~Y~^^0^^5.46^3.47^8.37^4.07
-~16390~^~1600~^~Peanuts, all types, dry-roasted, without salt~^~PEANUTS,ALL TYPES,DRY-ROASTED,WO/SALT~^^^~Y~^^0^^5.46^3.47^8.37^4.07
-~16392~^~1600~^~Peanuts, spanish, oil-roasted, without salt~^~PEANUTS,SPANISH,OIL-ROASTED,WO/SALT~^^^^^0^^5.46^3.47^8.37^4.07
-~16394~^~1600~^~Peanuts, valencia, oil-roasted, without salt~^~PEANUTS,VALENCIA,OIL-ROASTED,WO/SALT~^^^^^0^^5.46^3.47^8.37^4.07
-~16396~^~1600~^~Peanuts, virginia, oil-roasted, without salt~^~PEANUTS,VIRGINIA,OIL-ROASTED,WO/SALT~^^^^^0^^5.46^3.47^8.37^4.07
-~16397~^~1600~^~Peanut butter, chunk style, without salt~^~PEANUT BUTTER,CHUNK STYLE,WO/SALT~^^^~Y~^^0^^5.46^3.47^8.37^4.07
-~16398~^~1600~^~Peanut butter, smooth style, without salt~^~PEANUT BUTTER,SMOOTH STYLE,WO/SALT~^^^~Y~^^0^^5.46^3.47^8.37^4.07
-~16399~^~1600~^~Peanut butter with omega-3, creamy~^~PEANUT BUTTER W/ OMEGA-3,CREAMY~^^^^^0^^5.46^3.47^8.37^4.07
-~16402~^~1600~^~Pigeon peas (red gram), mature seeds, cooked, boiled, with salt~^~PIGEON PEAS (RED GM),MATURE SEEDS,CKD,BLD,W/SALT~^^^^^0^^6.25^3.47^8.37^4.07
-~16403~^~1600~^~Refried beans, canned, traditional, reduced sodium~^~REFRIED BNS,CND,TRADITIONAL,RED NA~^^^~Y~^^0^^6.25^3.47^8.37^4.07
-~16409~^~1600~^~Soybeans, mature seeds, cooked, boiled, with salt~^~SOYBEANS,MATURE SEEDS,CKD,BLD,W/SALT~^^^^^0^^6.25^3.47^8.37^4.07
-~16410~^~1600~^~Soybeans, mature seeds, roasted, no salt added~^~SOYBEANS,MATURE SEEDS,RSTED,NO SALT ADDED~^^^^^0^^6.25^3.47^8.37^4.07
-~16420~^~1600~^~Soy protein concentrate, produced by acid wash~^~SOY PROT CONC,PRODUCED BY ACID WASH~^^^^^0^^6.25^3.47^8.37^4.07
-~16422~^~1600~^~Soy protein isolate, potassium type~^~SOY PROT ISOLATE,K TYPE~^^^^^0^^6.25^3.47^8.37^4.07
-~16424~^~1600~^~Soy sauce made from soy and wheat (shoyu), low sodium~^~SOY SAU MADE FROM SOY&WHEAT (SHOYU),LO NA~^^^~Y~^^0^^6.25^3.50^8.40^4.00
-~16425~^~1600~^~Soy sauce, reduced sodium, made from hydrolyzed vegetable protein~^~SOY SAU,RED NA,MADE FROM HYDROLYZED VEG PROT~^^^^^0^^6.25^3.47^8.37^4.07
-~16426~^~1600~^~Tofu, raw, firm, prepared with calcium sulfate~^~TOFU,RAW,FIRM,PREP W/CA SULFATE~^^^^^0^^6.25^3.47^8.37^4.07
-~16427~^~1600~^~Tofu, raw, regular, prepared with calcium sulfate~^~TOFU,RAW,REG,PREP W/CA SULFATE~^^^^^0^^6.25^3.47^8.37^4.07
-~16428~^~1600~^~Tofu, dried-frozen (koyadofu), prepared with calcium sulfate~^~TOFU,DRIED-FROZEN (KOYADOFU),PREP W/CA SULFATE~^^^^^0^^6.25^3.47^8.37^4.07
-~16429~^~1600~^~Tofu, fried, prepared with calcium sulfate~^~TOFU,FRIED,PREP W/CA SULFATE~^^^^^0^^6.25^3.47^8.37^4.07
-~16432~^~1600~^~Tofu, salted and fermented (fuyu), prepared with calcium sulfate~^~TOFU,SALTED&FERMENTED (FUYU),PREP W/CA SULFATE~^^^^^0^^6.25^3.47^8.37^4.07
-~16434~^~1600~^~Yardlong beans, mature seeds, cooked, boiled, with salt~^~YARDLONG BNS,MATURE SEEDS,CKD,BLD,W/ SALT~^^^^^0^^6.25^3.47^8.37^4.07
-~16436~^~1600~^~Winged beans, mature seeds, cooked, boiled, with salt~^~WINGED BNS,MATURE SEEDS,CKD,BLD,W/ SALT~^^^^^0^^6.25^3.47^8.37^4.07
-~17000~^~1700~^~Veal, Australian, rib, rib roast, separable lean only, raw~^~VEAL,AUSTRALIAN,RIB,RIB RST,LN,RAW~^^^^~Bone and connective tissue 22%, separable fat 14%~^36^^6.25^^^
-~17001~^~1700~^~Lamb, composite of trimmed retail cuts, separable lean and fat, trimmed to 1/4" fat, choice, raw~^~LAMB,COMP OF RTL CUTS,LN & FAT,1/4" FAT,CHOIC,RAW~^^^^~Bone~^23^~Ovis aries~^6.25^4.27^9.02^3.87
-~17002~^~1700~^~Lamb, composite of trimmed retail cuts, separable lean and fat, trimmed to 1/4" fat, choice, cooked~^~LAMB,COMP OF RTL CUTS,LN & FAT,1/4" FAT,CHOIC,CKD~^^^~Y~^~Bone~^25^^6.25^4.27^9.02^3.87
-~17003~^~1700~^~Lamb, composite of trimmed retail cuts, separable lean only, trimmed to 1/4" fat, choice, raw~^~LAMB,COMP OF RTL CUTS,LN,1/4" FAT,CHOIC,RAW~^^^^~Bone 23%, separable fat 19%~^42^^6.25^4.27^9.02^3.87
-~17004~^~1700~^~Lamb, composite of trimmed retail cuts, separable lean only, trimmed to 1/4" fat, choice, cooked~^~LAMB,COMP OF RTL CUTS,LN,1/4" FAT,CHOIC,CKD~^^^^~Bone 25%, separable fat 17%~^42^^6.25^4.27^9.02^3.87
-~17005~^~1700~^~Lamb, composite of trimmed retail cuts, separable fat, trimmed to 1/4" fat, choice, raw~^~LAMB,COMP OF RTL CUTS,FAT,1/4" FAT,CHOIC,RAW~^^^^^0^^6.25^4.27^9.02^3.87
-~17006~^~1700~^~Lamb, composite of trimmed retail cuts, separable fat, trimmed to 1/4" fat, choice, cooked~^~LAMB,COMP OF RTL CUTS,FAT,1/4" FAT,CHOIC,CKD~^^^~Y~^^0^^6.25^4.27^9.02^3.87
-~17007~^~1700~^~Lamb, foreshank, separable lean and fat, trimmed to 1/4" fat, choice, raw~^~LAMB,FORESHANK,LN & FAT,1/4" FAT,CHOIC,RAW~^^^^~Bone~^52^^6.25^4.27^9.02^3.87
-~17008~^~1700~^~Lamb, foreshank, separable lean and fat, trimmed to 1/4" fat, choice, cooked, braised~^~LAMB,FORESHANK,LN & FAT,1/4" FAT,CHOIC,CKD,BRSD~^^^~Y~^~Bone~^56^^6.25^4.27^9.02^3.87
-~17009~^~1700~^~Lamb, foreshank, separable lean only, trimmed to 1/4" fat, choice, raw~^~LAMB,FORESHANK,LN,1/4" FAT,CHOIC,RAW~^^^^~Bone 52%, separable fat 7%~^59^^6.25^4.27^9.02^3.87
-~17010~^~1700~^~Lamb, foreshank, separable lean only, trimmed to 1/4" fat, choice, cooked, braised~^~LAMB,FORESHANK,LN,1/4" FAT,CHOIC,CKD,BRSD~^^^^~Bone 56%, separable fat 6%~^62^^6.25^4.27^9.02^3.87
-~17011~^~1700~^~Lamb, leg, whole (shank and sirloin), separable lean and fat, trimmed to 1/4" fat, choice, raw~^~LAMB,LEG,WHL (SHK&SIRL),LN & FAT,1/4" FAT,CHOIC,RAW~^^^^~Bone~^21^^6.25^4.27^9.02^3.87
-~17012~^~1700~^~Lamb, leg, whole (shank and sirloin), separable lean and fat, trimmed to 1/4" fat, choice, cooked, roasted~^~LAMB,LEG,WHL (SHK&SIRL),LN & FAT,1/4" FAT,CHOIC,CKD,RSTD~^^^~Y~^~Bone~^22^^6.25^4.27^9.02^3.87
-~17013~^~1700~^~Lamb, leg, whole (shank and sirloin), separable lean only, trimmed to 1/4" fat, choice, raw~^~LAMB,LEG,WHL (SHK&SIRL),LN,1/4" FAT,CHOIC,RAW~^^^^~Bone 21%, separable fat 15%~^36^^6.25^4.27^9.02^3.87
-~17014~^~1700~^~Lamb, leg, whole (shank and sirloin), separable lean only, trimmed to 1/4" fat, choice, cooked, roasted~^~LAMB,LEG,WHL (SHK&SIRL),LN,1/4" FAT,CHOIC,CKD,RSTD~^^^~Y~^~Bone 22%, separable fat 13%~^35^^6.25^4.27^9.02^3.87
-~17015~^~1700~^~Lamb, leg, shank half, separable lean and fat, trimmed to 1/4" fat, choice, raw~^~LAMB,LEG,SHANK HALF,LN & FAT,1/4" FAT,CHOIC,RAW~^^^^~Bone~^20^^6.25^4.27^9.02^3.87
-~17016~^~1700~^~Lamb, leg, shank half, separable lean and fat, trimmed to 1/4" fat, choice, cooked, roasted~^~LAMB,LEG,SHANK HALF,LN & FAT,1/4" FAT,CHOIC,CKD,RSTD~^^^^~Bone~^20^^6.25^4.27^9.02^3.87
-~17017~^~1700~^~Lamb, leg, shank half, separable lean only, trimmed to 1/4" fat, choice, raw~^~LAMB,LEG,SHANK HALF,LN,1/4" FAT,CHOIC,RAW~^^^^~Bone 20%, separable fat 11%~^31^^6.25^4.27^9.02^3.87
-~17018~^~1700~^~Lamb, leg, shank half, separable lean only, trimmed to 1/4" fat, choice, cooked, roasted~^~LAMB,LEG,SHANK HALF,LN,1/4" FAT,CHOIC,CKD,RSTD~^^^^~Bone 20%, separable fat 9%~^29^^6.25^4.27^9.02^3.87
-~17019~^~1700~^~Lamb, leg, sirloin half, separable lean and fat, trimmed to 1/4" fat, choice, raw~^~LAMB,LEG,SIRLOIN HALF,LN & FAT,1/4" FAT,CHOIC,RAW~^^^^~Bone~^23^^6.25^4.27^9.02^3.87
-~17020~^~1700~^~Lamb, leg, sirloin half, separable lean and fat, trimmed to 1/4" fat, choice, cooked, roasted~^~LAMB,LEG,SIRLOIN HALF,LN & FAT,1/4" FAT,CHOIC,CKD,RSTD~^^^^~Bone~^23^^6.25^4.27^9.02^3.87
-~17021~^~1700~^~Lamb, leg, sirloin half, separable lean only, trimmed to 1/4" fat, choice, raw~^~LAMB,LEG,SIRLOIN HALF,LN,1/4" FAT,CHOIC,RAW~^^^^~Bone 23%, separable fat 20%~^43^^6.25^4.27^9.02^3.87
-~17022~^~1700~^~Lamb, leg, sirloin half, separable lean only, trimmed to 1/4" fat, choice, cooked, roasted~^~LAMB,LEG,SIRLOIN HALF,LN,1/4" FAT,CHOIC,CKD,RSTD~^^^^~Bone 23%, separable fat 18%~^41^^6.25^4.27^9.02^3.87
-~17023~^~1700~^~Lamb, loin, separable lean and fat, trimmed to 1/4" fat, choice, raw~^~LAMB,LOIN,LN & FAT,1/4" FAT,CHOIC,RAW~^^^^~Bone~^21^^6.25^4.27^9.02^3.87
-~17024~^~1700~^~Lamb, loin, separable lean and fat, trimmed to 1/4" fat, choice, cooked, broiled~^~LAMB,LOIN,LN & FAT,1/4" FAT,CHOIC,CKD,BRLD~^^^~Y~^~Bone~^23^^6.25^4.27^9.02^3.87
-~17025~^~1700~^~Lamb, loin, separable lean and fat, trimmed to 1/4" fat, choice, cooked, roasted~^~LAMB,LOIN,LN & FAT,1/4" FAT,CHOIC,CKD,RSTD~^^^~Y~^~Bone~^22^^6.25^4.27^9.02^3.87
-~17026~^~1700~^~Lamb, loin, separable lean only, trimmed to 1/4" fat, choice, raw~^~LAMB,LOIN,LN,1/4" FAT,CHOIC,RAW~^^^^~Bone 21%, separable fat 25%~^46^^6.25^4.27^9.02^3.87
-~17027~^~1700~^~Lamb, loin, separable lean only, trimmed to 1/4" fat, choice, cooked, broiled~^~LAMB,LOIN,LN,1/4" FAT,CHOIC,CKD,BRLD~^^^~Y~^~Bone 23%, separable fat 21%~^44^^6.25^4.27^9.02^3.87
-~17028~^~1700~^~Lamb, loin, separable lean only, trimmed to 1/4" fat, choice, cooked, roasted~^~LAMB,LOIN,LN,1/4" FAT,CHOIC,CKD,RSTD~^^^^~Bone 22%, separable fat 22%~^44^^6.25^4.27^9.02^3.87
-~17029~^~1700~^~Lamb, rib, separable lean and fat, trimmed to 1/4" fat, choice, raw~^~LAMB,RIB,LN & FAT,1/4" FAT,CHOIC,RAW~^^^^~Bone~^27^^6.25^4.27^9.02^3.87
-~17030~^~1700~^~Lamb, rib, separable lean and fat, trimmed to 1/4" fat, choice, cooked, broiled~^~LAMB,RIB,LN & FAT,1/4" FAT,CHOIC,CKD,BRLD~^^^~Y~^~Bone~^30^^6.25^4.27^9.02^3.87
-~17031~^~1700~^~Lamb, rib, separable lean and fat, trimmed to 1/4" fat, choice, cooked, roasted~^~LAMB,RIB,LN & FAT,1/4" FAT,CHOIC,CKD,RSTD~^^^^~Bone~^28^^6.25^4.27^9.02^3.87
-~17032~^~1700~^~Lamb, rib, separable lean only, trimmed to 1/4" fat, choice, raw~^~LAMB,RIB,LN,1/4" FAT,CHOIC,RAW~^^^^~Bone 27%, separable fat 30%~^57^^6.25^4.27^9.02^3.87
-~17033~^~1700~^~Lamb, rib, separable lean only, trimmed to 1/4" fat, choice, cooked, broiled~^~LAMB,RIB,LN,1/4" FAT,CHOIC,CKD,BRLD~^^^~Y~^~Bone 30%, separable fat 25%~^55^^6.25^4.27^9.02^3.87
-~17034~^~1700~^~Lamb, rib, separable lean only, trimmed to 1/4" fat, choice, cooked, roasted~^~LAMB,RIB,LN,1/4" FAT,CHOIC,CKD,RSTD~^^^^~Bone 28%, separable fat 27%~^55^^6.25^4.27^9.02^3.87
-~17035~^~1700~^~Lamb, shoulder, whole (arm and blade), separable lean and fat, trimmed to 1/4" fat, choice, raw~^~LAMB,SHLDR,WHL (ARM&BLD),LN & FAT,1/4" FAT,CHOIC,RAW~^^^~Y~^~Bone 21%~^21^^6.25^4.27^9.02^3.87
-~17036~^~1700~^~Lamb, shoulder, whole (arm and blade), separable lean and fat, trimmed to 1/4" fat, choice, cooked, braised~^~LAMB,SHLDR,WHL (ARM&BLD),LN & FAT,1/4" FAT,CHOIC,CKD,BRSD~^^^^~Bone~^25^^6.25^4.27^9.02^3.87
-~17037~^~1700~^~Lamb, shoulder, whole (arm and blade), separable lean and fat, trimmed to 1/4" fat, choice, cooked, broiled~^~LAMB,SHLDR,WHL (ARM&BLD),LN & FAT,1/4" FAT,CHOIC,CKD,BRLD~^^^^~Bone~^24^^6.25^4.27^9.02^3.87
-~17038~^~1700~^~Lamb, shoulder, whole (arm and blade), separable lean and fat, trimmed to 1/4" fat, choice, cooked, roasted~^~LAMB,SHLDR,WHL (ARM&BLD),LN & FAT,1/4" FAT,CHOIC,CKD,RSTD~^^^~Y~^~Bone~^22^^6.25^4.27^9.02^3.87
-~17039~^~1700~^~Lamb, shoulder, whole (arm and blade), separable lean only, trimmed to 1/4" fat, choice, raw~^~LAMB,SHLDR,WHL (ARM&BLD),LN,1/4" FAT,CHOIC,RAW~^^^~Y~^~Bone 21%, separable fat 18%~^39^^6.25^4.27^9.02^3.87
-~17040~^~1700~^~Lamb, shoulder, whole (arm and blade), separable lean only, trimmed to 1/4" fat, choice, cooked, braised~^~LAMB,SHLDR,WHL (ARM&BLD),LN,1/4" FAT,CHOIC,CKD,BRSD~^^^^~Bone 25%, separable fat 15%~^40^^6.25^4.27^9.02^3.87
-~17041~^~1700~^~Lamb, shoulder, whole (arm and blade), separable lean only, trimmed to 1/4" fat, choice, cooked, broiled~^~LAMB,SHLDR,WHL (ARM&BLD),LN,1/4" FAT,CHOIC,CKD,BRLD~^^^~Y~^~Bone 24%, separable fat 14%~^38^^6.25^4.27^9.02^3.87
-~17042~^~1700~^~Lamb, shoulder, whole (arm and blade), separable lean only, trimmed to 1/4" fat, choice, cooked, roasted~^~LAMB,SHLDR,WHL (ARM&BLD),LN,1/4" FAT,CHOIC,CKD,RSTD~^^^~Y~^~Bone 22%, separable fat 15%~^37^^6.25^4.27^9.02^3.87
-~17043~^~1700~^~Lamb, shoulder, arm, separable lean and fat, trimmed to 1/4" fat, choice, raw~^~LAMB,SHLDR,ARM,LN & FAT,1/4" FAT,CHOIC,RAW~^^^^~Bone~^17^^6.25^4.27^9.02^3.87
-~17044~^~1700~^~Lamb, shoulder, arm, separable lean and fat, trimmed to 1/4" fat, choice, cooked, braised~^~LAMB,SHLDR,ARM,LN & FAT,1/4" FAT,CHOIC,CKD,BRSD~^^^^~Bone~^20^^6.25^4.27^9.02^3.87
-~17045~^~1700~^~Lamb, shoulder, arm, separable lean and fat, trimmed to 1/4" fat, choice, cooked, broiled~^~LAMB,SHLDR,ARM,LN & FAT,1/4" FAT,CHOIC,CKD,BRLD~^^^^~Bone~^19^^6.25^4.27^9.02^3.87
-~17046~^~1700~^~Lamb, shoulder, arm, separable lean and fat, trimmed to 1/4" fat, choice, cooked, roasted~^~LAMB,SHLDR,ARM,LN & FAT,1/4" FAT,CHOIC,CKD,RSTD~^^^^~Bone~^17^^6.25^4.27^9.02^3.87
-~17047~^~1700~^~Lamb, shoulder, arm, separable lean only, trimmed to 1/4" fat, choice, raw~^~LAMB,SHLDR,ARM,LN,1/4" FAT,CHOIC,RAW~^^^^~Bone 17%, separable fat 20%~^37^^6.25^4.27^9.02^3.87
-~17048~^~1700~^~Lamb, shoulder, arm, separable lean only, trimmed to 1/4" fat, choice, cooked, braised~^~LAMB,SHLDR,ARM,LN,1/4" FAT,CHOIC,CKD,BRSD~^^^^~Bone 20%, separable fat 18%~^38^^6.25^4.27^9.02^3.87
-~17049~^~1700~^~Lamb, shoulder, arm, separable lean only, trimmed to 1/4" fat, choice, cooked, broiled~^~LAMB,SHLDR,ARM,LN,1/4" FAT,CHOIC,CKD,BRLD~^^^^~Bone 19%, separable fat 17%~^36^^6.25^4.27^9.02^3.87
-~17050~^~1700~^~Lamb, shoulder, arm, separable lean only, trimmed to 1/4" fat, choice, cooked, roasted~^~LAMB,SHLDR,ARM,LN,1/4" FAT,CHOIC,CKD,RSTD~^^^^~Bone 17%, separable fat 18%~^35^^6.25^4.27^9.02^3.87
-~17051~^~1700~^~Lamb, shoulder, blade, separable lean and fat, trimmed to 1/4" fat, choice, raw~^~LAMB,SHLDR,BLADE,LN & FAT,1/4" FAT,CHOIC,RAW~^^^^~Bone~^24^^6.25^4.27^9.02^3.87
-~17052~^~1700~^~Lamb, shoulder, blade, separable lean and fat, trimmed to 1/4" fat, choice, cooked, braised~^~LAMB,SHLDR,BLADE,LN & FAT,1/4" FAT,CHOIC,CKD,BRSD~^^^^~Bone~^28^^6.25^4.27^9.02^3.87
-~17053~^~1700~^~Lamb, shoulder, blade, separable lean and fat, trimmed to 1/4" fat, choice, cooked, broiled~^~LAMB,SHLDR,BLADE,LN & FAT,1/4" FAT,CHOIC,CKD,BRLD~^^^~Y~^~Bone~^27^^6.25^4.27^9.02^3.87
-~17054~^~1700~^~Lamb, shoulder, blade, separable lean and fat, trimmed to 1/4" fat, choice, cooked, roasted~^~LAMB,SHLDR,BLADE,LN & FAT,1/4" FAT,CHOIC,CKD,RSTD~^^^^~Bone~^25^^6.25^4.27^9.02^3.87
-~17055~^~1700~^~Lamb, shoulder, blade, separable lean only, trimmed to 1/4" fat, choice, raw~^~LAMB,SHLDR,BLADE,LN,1/4" FAT,CHOIC,RAW~^^^^~Bone 24%, separable fat 16%~^40^^6.25^4.27^9.02^3.87
-~17056~^~1700~^~Lamb, shoulder, blade, separable lean only, trimmed to 1/4" fat, choice, cooked, braised~^~LAMB,SHLDR,BLADE,LN,1/4" FAT,CHOIC,CKD,BRSD~^^^^~Bone 28%, separable fat 14%~^42^^6.25^4.27^9.02^3.87
-~17057~^~1700~^~Lamb, shoulder, blade, separable lean only, trimmed to 1/4" fat, choice, cooked, broiled~^~LAMB,SHLDR,BLADE,LN,1/4" FAT,CHOIC,CKD,BRLD~^^^^~Bone 27%, separable fat 13%~^40^^6.25^4.27^9.02^3.87
-~17058~^~1700~^~Lamb, shoulder, blade, separable lean only, trimmed to 1/4" fat, choice, cooked, roasted~^~LAMB,SHLDR,BLADE,LN,1/4" FAT,CHOIC,CKD,RSTD~^^^^~Bone 25%, separable fat 14%~^39^^6.25^4.27^9.02^3.87
-~17059~^~1700~^~Lamb, cubed for stew or kabob (leg and shoulder), separable lean only, trimmed to 1/4" fat, raw~^~LAMB,CUBED FOR STEW OR KABOB (LEG & SHOULDER),LN,1/4"FAT,RAW~^^^^^0^^6.25^4.27^9.02^3.87
-~17060~^~1700~^~Lamb, cubed for stew or kabob (leg and shoulder), separable lean only, trimmed to 1/4" fat, cooked, braised~^~LAMB,CUBED FOR STEW OR KABOB(LEG&SHLDER),LN,1/4"FAT,CKD,BRSD~^^^~Y~^^0^^6.25^4.27^9.02^3.87
-~17061~^~1700~^~Lamb, cubed for stew or kabob (leg and shoulder), separable lean only, trimmed to 1/4" fat, cooked, broiled~^~LAMB,CUBED FOR STEW OR KABOB(LEG&SHLDER),LN,1/4"FAT,CKD,BRLD~^^^^^0^^6.25^4.27^9.02^3.87
-~17062~^~1700~^~Lamb, New Zealand, imported, frozen, composite of trimmed retail cuts, separable lean and fat, raw~^~LAMB,NZ,IMP,FRZ,COMP OF RTL CUTS,LN&FAT,RAW~^^^^~Bone~^30^^6.25^4.27^9.02^3.87
-~17063~^~1700~^~Lamb, New Zealand, imported, frozen, composite of trimmed retail cuts, separable lean and fat, cooked~^~LAMB,NZ,IMP,FRZ,COMP OF RTL CUTS,LN&FAT,CKD~^^^^~Bone~^31^^6.25^4.27^9.02^3.87
-~17064~^~1700~^~Lamb, New Zealand, imported, frozen, composite of trimmed retail cuts, separable lean only, raw~^~LAMB,NZ,IMP,FRZ,COMP OF RTL CUTS,LN,RAW~^^^^~Bone 30%, separable fat 20%~^50^^6.25^4.27^9.02^3.87
-~17065~^~1700~^~Lamb, New Zealand, imported, frozen, composite of trimmed retail cuts, separable lean only, cooked~^~LAMB,NZ,IMP,FRZ,COMP OF RTL CUTS,LN,CKD~^^^^~Bone 31%, separable fat 18%~^49^^6.25^4.27^9.02^3.87
-~17066~^~1700~^~Lamb, New Zealand, imported, frozen, composite of trimmed retail cuts, separable fat, raw~^~LAMB,NZ,IMP,FRZ,COMP OF RTL CUTS,FAT,RAW~^^^^^0^^6.25^4.27^9.02^3.87
-~17067~^~1700~^~Lamb, New Zealand, imported, frozen, composite of trimmed retail cuts, separable fat, cooked~^~LAMB,NZ,IMP,FRZ,COMP OF RTL CUTS,FAT,CKD~^^^^^0^^6.25^4.27^9.02^3.87
-~17068~^~1700~^~Lamb, New Zealand, imported, fore-shank, separable lean and fat, raw~^~LAMB,NZ,IMP,FORE-SHANK,LN & FAT,RAW~^^^^~Bone and connective tissue 36%~^36^^^^^
-~17069~^~1700~^~Lamb, New Zealand, imported, fore-shank, separable lean and fat, cooked, braised~^~LAMB,NZ,IMP,FORE-SHANK,LN & FAT,CKD,BRSD~^^^^~Bone and connective tissue 41%~^41^^^^^
-~17070~^~1700~^~Lamb, New Zealand, imported, fore-shank, separable lean only, raw~^~LAMB,NZ,IMP,FORE-SHANK,LN,RAW~^^^^~Bone and connective tissue 36%, separable fat 7%~^43^^6.25^^^
-~17071~^~1700~^~Lamb, New Zealand, imported, fore-shank, separable lean only, cooked, braised~^~LAMB,NZ,IMP,FORE-SHANK,LN,CKD,BRSD~^^^^~Bone 41%, separable fat 7%~^48^^6.25^^^
-~17072~^~1700~^~Lamb, New Zealand, imported, leg chop/steak, bone-in, separable lean and fat, raw~^~LAMB,NZ,IMP,LEG CHOP/STEAK,BONE-IN,LN & FAT,RAW~^^^^~Bone and connective tissue 15%~^15^^^^^
-~17073~^~1700~^~Lamb, New Zealand, imported, frozen, leg, whole (shank and sirloin), separable lean and fat, cooked, roasted~^~LAMB,NZ,IMP,FRZ,LEG,WHL (SHK&SIRL),LN&FAT,CKD,RSTD~^^^^~Bone~^24^^6.25^4.27^9.02^3.87
-~17074~^~1700~^~Lamb, New Zealand, imported, leg chop/steak, bone-in, separable lean only, raw~^~LAMB,NZ,IMP,LEG CHOP/STEAK,BONE-IN,LN,RAW~^^^^~Bone and connective tissue 15%, separable fat 12%~^27^^6.25^^^
-~17075~^~1700~^~Lamb, New Zealand, imported, frozen, leg, whole (shank and sirloin), separable lean only, cooked, roasted~^~LAMB,NZ,IMP,FRZ,LEG,WHL (SHK&SIRL),LN,CKD,RSTD~^^^^~Bone 24%, separable fat 12%~^36^^6.25^4.27^9.02^3.87
-~17076~^~1700~^~Lamb, New Zealand, imported, loin chop, separable lean and fat, raw~^~LAMB,NZ,IMP,LOIN CHOP,LN & FAT,RAW~^^^^~Bone and connective tissue 20%~^20^^^^^
-~17077~^~1700~^~Lamb, New Zealand, imported, frozen, loin, separable lean and fat, cooked, broiled~^~LAMB,NZ,IMP,FRZ,LOIN,LN&FAT,CKD,BRLD~^^^~Y~^~Bone~^27^^6.25^4.27^9.02^3.87
-~17078~^~1700~^~Lamb, New Zealand, imported, loin chop, separable lean only, raw~^~LAMB,NZ,IMP,LOIN CHOP,LN,RAW~^^^^~Bone and connective tissue 20%, separable fat 23%~^43^^6.25^^^
-~17079~^~1700~^~Lamb, New Zealand, imported, frozen, loin, separable lean only, cooked, broiled~^~LAMB,NZ,IMP,FRZ,LOIN,LN,CKD,BRLD~^^^^~Bone 27%, separable fat 22%~^49^^6.25^4.27^9.02^3.87
-~17080~^~1700~^~Lamb, New Zealand, imported, rack - partly frenched, separable lean and fat, raw~^~LAMB,NZ,IMP,RACK - PARTLY FRENCHED,LN & FAT,RAW~^^^^~Bone and connective tissue 24%~^24^^^^^
-~17081~^~1700~^~Lamb, New Zealand, imported, rack - partly frenched, separable lean and fat, cooked, fast roasted~^~LAMB,NZ,IMP,RACK - PARTLY FRENCHED,LN & FAT,CKD,FAST RSTD~^^^~Y~^~Bone and connective tissue 23%~^23^^^^^
-~17082~^~1700~^~Lamb, New Zealand, imported, rack - partly frenched, separable lean only, raw~^~LAMB,NZ,IMP,RACK - PARTLY FRENCHED,LN,RAW~^^^^~Bone and connective tissue 24%, separable fat 11%~^35^^6.25^^^
-~17083~^~1700~^~Lamb, New Zealand, imported, rack - partly frenched, separable lean only, cooked, fast roasted~^~LAMB,NZ,IMP,RACK - PARTLY FRENCHED,LN,CKD,FAST RSTD~^^^~Y~^~Bone and connective tissue 23%, separable fat 11%~^34^^6.25^^^
-~17084~^~1700~^~Lamb, New Zealand, imported, square-cut shoulder, separable lean and fat, raw~^~LAMB,NZ,IMP,SQUARE-CUT SHLDR,LN & FAT,RAW~^^^^~Bone and connective tissue 25%~^25^^^^^
-~17085~^~1700~^~Lamb, New Zealand, imported, frozen, shoulder, whole (arm and blade), separable lean and fat, cooked, braised~^~LAMB,NZ,IMP,FRZ,SHLDR,WHL (ARM&BLD),LN&FAT,CKD,BRSD~^^^^~Bone~^29^^6.25^4.27^9.02^3.87
-~17086~^~1700~^~Lamb, New Zealand, imported, square-cut shoulder, separable lean only, raw~^~LAMB,NZ,IMP,SQUARE-CUT SHLDR,LN,RAW~^^^^~Bone and connective tissue 25%, separable fat 17%~^42^^6.25^^^
-~17087~^~1700~^~Lamb, New Zealand, imported, frozen, shoulder, whole (arm and blade), separable lean only, cooked, braised~^~LAMB,NZ,IMP,FRZ,SHLDR,WHL (ARM&BLD),LN,CKD,BRSD~^^^^~Bone 29%, separable fat 17%~^46^^6.25^4.27^9.02^3.87
-~17088~^~1700~^~Veal, composite of trimmed retail cuts, separable lean and fat, raw~^~VEAL,COMP OF RTL CUTS,LN&FAT,RAW~^^^^~Bone~^31^~Bos taurus~^6.25^4.27^9.02^3.87
-~17089~^~1700~^~Veal, composite of trimmed retail cuts, separable lean and fat, cooked~^~VEAL,COMP OF RTL CUTS,LN&FAT,CKD~^^^~Y~^~Bone~^28^^6.25^4.27^9.02^3.87
-~17090~^~1700~^~Veal, composite of trimmed retail cuts, separable lean only, raw~^~VEAL,COMP OF RTL CUTS,LN,RAW~^^^^~Bone 31%, separable fat 4%~^35^^6.25^4.27^9.02^3.87
-~17091~^~1700~^~Veal, composite of trimmed retail cuts, separable lean only, cooked~^~VEAL,COMP OF RTL CUTS,LN,CKD~^^^~Y~^~Bone 28%, separable fat 6%~^34^^6.25^4.27^9.02^3.87
-~17092~^~1700~^~Veal, composite of trimmed retail cuts, separable fat, raw~^~VEAL,COMP OF RTL CUTS,FAT,RAW~^^^^^0^^6.25^4.27^9.02^3.87
-~17093~^~1700~^~Veal, composite of trimmed retail cuts, separable fat, cooked~^~VEAL,COMP OF RTL CUTS,FAT,CKD~^^^^^0^^6.25^4.27^9.02^3.87
-~17094~^~1700~^~Veal, leg (top round), separable lean and fat, raw~^~VEAL,LEG (TOP RND),LN&FAT,RAW~^^^~Y~^^0^^6.25^4.27^9.02^3.87
-~17095~^~1700~^~Veal, leg (top round), separable lean and fat, cooked, braised~^~VEAL,LEG (TOP RND),LN&FAT,CKD,BRSD~^^^~Y~^^0^^6.25^4.27^9.02^3.87
-~17096~^~1700~^~Veal, leg (top round), separable lean and fat, cooked, pan-fried, breaded~^~VEAL,LEG (TOP RND),LN&FAT,CKD,PAN-FRIED,BREADED~^^^~Y~^^0^^6.25^4.27^9.02^3.87
-~17097~^~1700~^~Veal, leg (top round), separable lean and fat, cooked, pan-fried, not breaded~^~VEAL,LEG (TOP RND),LN&FAT,CKD,PAN-FRIED,NOT BREADED~^^^~Y~^^0^^6.25^4.27^9.02^3.87
-~17098~^~1700~^~Veal, leg (top round), separable lean and fat, cooked, roasted~^~VEAL,LEG (TOP RND),LN&FAT,CKD,RSTD~^^^~Y~^^0^^6.25^4.27^9.02^3.87
-~17099~^~1700~^~Veal, leg (top round), separable lean only, raw~^~VEAL,LEG (TOP RND),LN,RAW~^^^^~Separable fat~^2^^6.25^4.27^9.02^3.87
-~17100~^~1700~^~Veal, leg (top round), separable lean only, cooked, braised~^~VEAL,LEG (TOP RND),LN,CKD,BRSD~^^^^~Separable fat~^2^^6.25^4.27^9.02^3.87
-~17101~^~1700~^~Veal, leg (top round), separable lean only, cooked, pan-fried, breaded~^~VEAL,LEG (TOP RND),LN,CKD,PAN-FRIED,BREADED~^^^~Y~^^0^^6.25^4.27^9.02^3.87
-~17102~^~1700~^~Veal, leg (top round), separable lean only, cooked, pan-fried, not breaded~^~VEAL,LEG (TOP RND),LN,CKD,PAN-FRIED,NOT BREADED~^^^~Y~^~Separable fat~^5^^6.25^4.27^9.02^3.87
-~17103~^~1700~^~Veal, leg (top round), separable lean only, cooked, roasted~^~VEAL,LEG (TOP RND),LN,CKD,RSTD~^^^^~Separable fat~^2^^6.25^4.27^9.02^3.87
-~17104~^~1700~^~Veal, loin, separable lean and fat, raw~^~VEAL,LOIN,LN&FAT,RAW~^~IMPS# 332~^^~Y~^~Bone and connective tissue 29%~^29^^6.25^4.27^9.02^3.87
-~17105~^~1700~^~Veal, loin, separable lean and fat, cooked, braised~^~VEAL,LOIN,LN&FAT,CKD,BRSD~^^^~Y~^~Bone~^36^^6.25^4.27^9.02^3.87
-~17106~^~1700~^~Veal, loin, separable lean and fat, cooked, roasted~^~VEAL,LOIN,LN&FAT,CKD,RSTD~^^^~Y~^~Bone~^36^^6.25^4.27^9.02^3.87
-~17107~^~1700~^~Veal, loin, separable lean only, raw~^~VEAL,LOIN,LN,RAW~^~IMPS # 332~^^^~Bone 30%, separable fat 10%~^40^^^^^
-~17108~^~1700~^~Veal, loin, separable lean only, cooked, braised~^~VEAL,LOIN,LN,CKD,BRSD~^^^~Y~^~Bone 36%, separable fat 9%~^45^^6.25^4.27^9.02^3.87
-~17109~^~1700~^~Veal, loin, separable lean only, cooked, roasted~^~VEAL,LOIN,LN,CKD,RSTD~^^^~Y~^~Bone 36%, separable fat 6%~^42^^6.25^4.27^9.02^3.87
-~17110~^~1700~^~Veal, rib, separable lean and fat, raw~^~VEAL,RIB,LN&FAT,RAW~^^^^~Bone~^35^^6.25^4.27^9.02^3.87
-~17111~^~1700~^~Veal, rib, separable lean and fat, cooked, braised~^~VEAL,RIB,LN&FAT,CKD,BRSD~^^^~Y~^~Bone~^37^^6.25^4.27^9.02^3.87
-~17112~^~1700~^~Veal, rib, separable lean and fat, cooked, roasted~^~VEAL,RIB,LN&FAT,CKD,RSTD~^^^^~Bone~^33^^6.25^4.27^9.02^3.87
-~17113~^~1700~^~Veal, rib, separable lean only, raw~^~VEAL,RIB,LN,RAW~^^^^~Bone 35%, separable fat 5%~^40^^6.25^4.27^9.02^3.87
-~17114~^~1700~^~Veal, rib, separable lean only, cooked, braised~^~VEAL,RIB,LN,CKD,BRSD~^^^~Y~^~Bone 37%, separable fat 5%~^42^^6.25^4.27^9.02^3.87
-~17115~^~1700~^~Veal, rib, separable lean only, cooked, roasted~^~VEAL,RIB,LN,CKD,RSTD~^^^^~Bone 33%, separable fat 7%~^40^^6.25^4.27^9.02^3.87
-~17116~^~1700~^~Veal, shoulder, whole (arm and blade), separable lean and fat, raw~^~VEAL,SHLDR,WHL (ARM&BLD),LN&FAT,RAW~^^^~Y~^~Bone~^28^^6.25^4.27^9.02^3.87
-~17117~^~1700~^~Veal, shoulder, whole (arm and blade), separable lean and fat, cooked, braised~^~VEAL,SHLDR,WHL (ARM&BLD),LN&FAT,CKD,BRSD~^^^~Y~^~Bone~^31^^6.25^4.27^9.02^3.87
-~17118~^~1700~^~Veal, shoulder, whole (arm and blade), separable lean and fat, cooked, roasted~^~VEAL,SHLDR,WHL (ARM&BLD),LN&FAT,CKD,RSTD~^^^^~Bone~^28^^6.25^4.27^9.02^3.87
-~17119~^~1700~^~Veal, shoulder, whole (arm and blade), separable lean only, raw~^~VEAL,SHLDR,WHL (ARM&BLD),LN,RAW~^^^^~Bone 28%, separable fat 3%~^31^^6.25^4.27^9.02^3.87
-~17120~^~1700~^~Veal, shoulder, whole (arm and blade), separable lean only, cooked, braised~^~VEAL,SHLDR,WHL (ARM&BLD),LN,CKD,BRSD~^^^^~Bone 31%, separable fat 4%~^35^^6.25^4.27^9.02^3.87
-~17121~^~1700~^~Veal, shoulder, whole (arm and blade), separable lean only, cooked, roasted~^~VEAL,SHLDR,WHL (ARM&BLD),LN,CKD,RSTD~^^^^~Bone 28%, separable fat 2%~^30^^6.25^4.27^9.02^3.87
-~17122~^~1700~^~Veal, shoulder, arm, separable lean and fat, raw~^~VEAL,SHLDR,ARM,LN&FAT,RAW~^^^~Y~^~Bone~^21^^6.25^4.27^9.02^3.87
-~17123~^~1700~^~Veal, shoulder, arm, separable lean and fat, cooked, braised~^~VEAL,SHLDR,ARM,LN&FAT,CKD,BRSD~^^^^~Bone~^23^^6.25^4.27^9.02^3.87
-~17124~^~1700~^~Veal, shoulder, arm, separable lean and fat, cooked, roasted~^~VEAL,SHLDR,ARM,LN&FAT,CKD,RSTD~^^^^~Bone~^21^^6.25^4.27^9.02^3.87
-~17125~^~1700~^~Veal, shoulder, arm, separable lean only, raw~^~VEAL,SHLDR,ARM,LN,RAW~^^^^~Bone 21%, separable fat 4%~^25^^6.25^4.27^9.02^3.87
-~17126~^~1700~^~Veal, shoulder, arm, separable lean only, cooked, braised~^~VEAL,SHLDR,ARM,LN,CKD,BRSD~^^^^~Bone 23%, separable fat 6%~^29^^6.25^4.27^9.02^3.87
-~17127~^~1700~^~Veal, shoulder, arm, separable lean only, cooked, roasted~^~VEAL,SHLDR,ARM,LN,CKD,RSTD~^^^^~Bone 21%, separable fat 3%~^24^^6.25^4.27^9.02^3.87
-~17128~^~1700~^~Veal, shoulder, blade chop, separable lean and fat, raw~^~VEAL,SHLDR,BLADE CHOP,LN & FAT,RAW~^~IMPS# 1309~^^^~Bone and connective tissue 22%~^22^^6.25^4.27^9.02^3.87
-~17129~^~1700~^~Veal, shoulder, blade, separable lean and fat, cooked, braised~^~VEAL,SHLDR,BLADE,LN&FAT,CKD,BRSD~^^^~Y~^~Bone~^35^^6.25^4.27^9.02^3.87
-~17130~^~1700~^~Veal, shoulder, blade, separable lean and fat, cooked, roasted~^~VEAL,SHLDR,BLADE,LN&FAT,CKD,RSTD~^^^^~Bone~^32^^6.25^4.27^9.02^3.87
-~17131~^~1700~^~Veal, shoulder, blade chop, separable lean only, raw~^~VEAL,SHLDR,BLADE CHOP,LN,RAW~^~IMPS # 1309A~^^^~Bone and connective tissue 22%, separable fat 8%~^30^^6.25^4.27^9.02^3.87
-~17132~^~1700~^~Veal, shoulder, blade, separable lean only, cooked, braised~^~VEAL,SHLDR,BLADE,LN,CKD,BRSD~^^^~Y~^~Bone 35%, separable fat 4%~^39^^6.25^4.27^9.02^3.87
-~17133~^~1700~^~Veal, shoulder, blade, separable lean only, cooked, roasted~^~VEAL,SHLDR,BLADE,LN,CKD,RSTD~^^^^~Bone 32%, separable fat 2%~^34^^6.25^4.27^9.02^3.87
-~17134~^~1700~^~Veal, sirloin, separable lean and fat, raw~^~VEAL,SIRLOIN,LN&FAT,RAW~^^^~Y~^~Bone~^25^^6.25^4.27^9.02^3.87
-~17135~^~1700~^~Veal, sirloin, separable lean and fat, cooked, braised~^~VEAL,SIRLOIN,LN&FAT,CKD,BRSD~^^^^~Bone~^26^^6.25^4.27^9.02^3.87
-~17136~^~1700~^~Veal, sirloin, separable lean and fat, cooked, roasted~^~VEAL,SIRLOIN,LN&FAT,CKD,RSTD~^^^~Y~^~Bone~^25^^6.25^4.27^9.02^3.87
-~17137~^~1700~^~Veal, sirloin, separable lean only, raw~^~VEAL,SIRLOIN,LN,RAW~^^^^~Bone 25%, separable fat 6%~^31^^6.25^4.27^9.02^3.87
-~17138~^~1700~^~Veal, sirloin, separable lean only, cooked, braised~^~VEAL,SIRLOIN,LN,CKD,BRSD~^^^^~Bone 26%, separable fat 8%~^34^^6.25^4.27^9.02^3.87
-~17139~^~1700~^~Veal, sirloin, separable lean only, cooked, roasted~^~VEAL,SIRLOIN,LN,CKD,RSTD~^^^^~Bone 25%, separable fat 5%~^30^^6.25^4.27^9.02^3.87
-~17140~^~1700~^~Veal, cubed for stew (leg and shoulder), separable lean only, raw~^~VEAL,CUBED FOR STEW (LEG&SHLDR),LN,RAW~^^^^^0^^6.25^4.27^9.02^3.87
-~17141~^~1700~^~Veal, cubed for stew (leg and shoulder), separable lean only, cooked, braised~^~VEAL,CUBED FOR STEW (LEG&SHLDR),LN,CKD,BRSD~^^^^^0^^6.25^4.27^9.02^3.87
-~17142~^~1700~^~Veal, ground, raw~^~VEAL,GROUND,RAW~^~IMPS 396~^^^^0^^6.25^4.27^9.02^3.87
-~17143~^~1700~^~Veal, ground, cooked, broiled~^~VEAL,GROUND,CKD,BRLD~^^^~Y~^^0^^6.25^4.27^9.02^3.87
-~17144~^~1700~^~Game meat, antelope, raw~^~GAME MEAT,ANTELOPE,RAW~^^^^^0^~Antilocapra americana, Bosephalus tragocamelus~^6.25^4.27^9.02^3.87
-~17145~^~1700~^~Game meat, antelope, cooked, roasted~^~GAME MEAT,ANTELOPE,CKD,RSTD~^^^^^0^^6.25^4.27^9.02^3.87
-~17146~^~1700~^~Game meat, bear, raw~^~GAME MEAT,BEAR,RAW~^^^^^0^~Ursus arctos, Euarctos spp.~^6.25^4.27^9.02^3.87
-~17147~^~1700~^~Game meat, bear, cooked, simmered~^~GAME MEAT,BEAR,CKD,SIMMRD~^^^~Y~^^0^^6.25^4.27^9.02^3.87
-~17148~^~1700~^~Bison, ground, grass-fed, cooked~^~BISON,GROUND,GRASS-FED,CKD~^~Buffalo~^^^^0^~Bison bison~^^^^
-~17149~^~1700~^~Bison, ground, grass-fed, raw~^~BISON,GROUND,GRASS-FED,RAW~^~Buffalo~^^^^0^~Bison bison~^^^^
-~17150~^~1700~^~Game meat, beaver, raw~^~GAME MEAT,BEAVER,RAW~^^^^^0^~Castor canadensis~^6.25^4.27^9.02^3.87
-~17151~^~1700~^~Game meat, beaver, cooked, roasted~^~GAME MEAT,BEAVER,CKD,RSTD~^^^~Y~^^0^^6.25^4.27^9.02^3.87
-~17152~^~1700~^~Game meat, beefalo, composite of cuts, raw~^~GAME MEAT,BEEFALO,COMP OF CUTS,RAW~^^^^^0^^6.25^4.27^9.02^3.87
-~17153~^~1700~^~Game meat, beefalo, composite of cuts, cooked, roasted~^~GAME MEAT,BEEFALO,COMP OF CUTS,CKD,RSTD~^^^^^0^^6.25^4.27^9.02^3.87
-~17154~^~1700~^~Veal, Australian, separable fat, raw~^~VEAL,AUSTRALIAN,FAT,RAW~^^^^^0^^6.25^^^
-~17155~^~1700~^~Veal, Australian, rib, rib roast, separable lean and fat, raw~^~VEAL,AUSTRALIAN,RIB,RIB RST,LN & FAT,RAW~^^^^~Bone and connective tissue 22%~^22^^^^^
-~17156~^~1700~^~Game meat, bison, separable lean only, raw~^~GAME MEAT,BISON,LN,RAW~^~buffalo~^^^^0^~Bison bison~^6.25^4.27^9.02^3.87
-~17157~^~1700~^~Game meat, bison, separable lean only, cooked, roasted~^~GAME MEAT,BISON,LN,CKD,RSTD~^~buffalo~^^~Y~^^0^~Bison bison~^6.25^4.27^9.02^3.87
-~17158~^~1700~^~Game meat, boar, wild, raw~^~GAME MEAT,BOAR,WILD,RAW~^^^^^0^~Sus scrofa~^6.25^4.27^9.02^3.87
-~17159~^~1700~^~Game meat, boar, wild, cooked, roasted~^~GAME MEAT,BOAR,WILD,CKD,RSTD~^^^~Y~^^0^^6.25^4.27^9.02^3.87
-~17160~^~1700~^~Game meat, buffalo, water, raw~^~GAME MEAT,BUFFALO,H2O,RAW~^^^^^0^~Bubalus bubalis~^6.25^4.27^9.02^3.87
-~17161~^~1700~^~Game meat, buffalo, water, cooked, roasted~^~GAME MEAT,BUFFALO,H2O,CKD,RSTD~^^^^^0^^6.25^4.27^9.02^3.87
-~17162~^~1700~^~Game meat, caribou, raw~^~GAME MEAT,CARIBOU,RAW~^^^^^0^~Rangifer spp.~^6.25^4.27^9.02^3.87
-~17163~^~1700~^~Game meat, caribou, cooked, roasted~^~GAME MEAT,CARIBOU,CKD,RSTD~^^^~Y~^^0^^6.25^4.27^9.02^3.87
-~17164~^~1700~^~Game meat, deer, raw~^~GAME MEAT,DEER,RAW~^^^^^0^~Odocoileus spp.~^6.25^4.27^9.02^3.87
-~17165~^~1700~^~Game meat, deer, cooked, roasted~^~GAME MEAT,DEER,CKD,RSTD~^^^^^0^^6.25^4.27^9.02^3.87
-~17166~^~1700~^~Game meat, elk, raw~^~GAME MEAT,ELK,RAW~^^^^^0^~Cervus elaphyus~^6.25^4.27^9.02^3.87
-~17167~^~1700~^~Game meat, elk, cooked, roasted~^~GAME MEAT,ELK,CKD,RSTD~^^^^^0^^6.25^4.27^9.02^3.87
-~17168~^~1700~^~Game meat, goat, raw~^~GAME MEAT,GOAT,RAW~^^^^^0^^6.25^4.27^9.02^3.87
-~17169~^~1700~^~Game meat, goat, cooked, roasted~^~GAME MEAT,GOAT,CKD,RSTD~^^^~Y~^^0^^6.25^4.27^9.02^3.87
-~17170~^~1700~^~Game meat, horse, raw~^~GAME MEAT,HORSE,RAW~^^^^^0^~Equus caballus~^6.25^4.27^9.02^3.87
-~17171~^~1700~^~Game meat, horse, cooked, roasted~^~GAME MEAT,HORSE,CKD,RSTD~^^^^^0^^6.25^4.27^9.02^3.87
-~17172~^~1700~^~Game meat, moose, raw~^~GAME MEAT,MOOSE,RAW~^^^^^0^~Alces alces~^6.25^4.27^9.02^3.87
-~17173~^~1700~^~Game meat, moose, cooked, roasted~^~GAME MEAT,MOOSE,CKD,RSTD~^^^~Y~^^0^^6.25^4.27^9.02^3.87
-~17174~^~1700~^~Game meat, muskrat, raw~^~GAME MEAT,MUSKRAT,RAW~^^^^^0^~Ondatra zibethica~^6.25^4.27^9.02^3.87
-~17175~^~1700~^~Game meat, muskrat, cooked, roasted~^~GAME MEAT,MUSKRAT,CKD,RSTD~^^^^^0^^6.25^4.27^9.02^3.87
-~17176~^~1700~^~Game meat, opossum, cooked, roasted~^~GAME MEAT,OPOSSUM,CKD,RSTD~^^^~Y~^^0^~Didelphis virginiana~^6.25^4.27^9.02^3.87
-~17177~^~1700~^~Game meat, rabbit, domesticated, composite of cuts, raw~^~GAME MEAT,RABBIT,DOMESTICATED,COMP OF CUTS,RAW~^^^^^0^~Oryctolagus spp.~^6.25^4.27^9.02^3.87
-~17178~^~1700~^~Game meat, rabbit, domesticated, composite of cuts, cooked, roasted~^~GAME MEAT,RABBIT,DOMESTICATED,COMP OF CUTS,CKD,RSTD~^^^^^0^^6.25^4.27^9.02^3.87
-~17179~^~1700~^~Game meat, rabbit, domesticated, composite of cuts, cooked, stewed~^~GAME MEAT,RABBIT,DOMESTICATED,COMP OF CUTS,CKD,STWD~^^^~Y~^^0^^6.25^4.27^9.02^3.87
-~17180~^~1700~^~Game meat, rabbit, wild, raw~^~GAME MEAT,RABBIT,WILD,RAW~^^^^^0^~Sylvilagus spp., Oryctolagus spp.~^6.25^4.27^9.02^3.87
-~17181~^~1700~^~Game meat, rabbit, wild, cooked, stewed~^~GAME MEAT,RABBIT,WILD,CKD,STWD~^^^~Y~^^0^^6.25^4.27^9.02^3.87
-~17182~^~1700~^~Game meat, raccoon, cooked, roasted~^~GAME MEAT,RACCOON,CKD,RSTD~^^^~Y~^^0^~Procyon lotor~^6.25^4.27^9.02^3.87
-~17183~^~1700~^~Game meat, squirrel, raw~^~GAME MEAT,SQUIRREL,RAW~^^^^^0^~Sciuridae~^6.25^4.27^9.02^3.87
-~17184~^~1700~^~Game meat, squirrel, cooked, roasted~^~GAME MEAT,SQUIRREL,CKD,RSTD~^^^~Y~^^0^^6.25^4.27^9.02^3.87
-~17185~^~1700~^~Lamb, variety meats and by-products, brain, raw~^~LAMB,VAR MEATS&BY-PRODUCTS,BRAIN,RAW~^^^^~Blood clots and membranes~^2^^6.25^4.27^9.02^3.87
-~17186~^~1700~^~Lamb, variety meats and by-products, brain, cooked, braised~^~LAMB,VAR MEATS&BY-PRODUCTS,BRAIN,CKD,BRSD~^^^^^0^^6.25^4.27^9.02^3.87
-~17187~^~1700~^~Lamb, variety meats and by-products, brain, cooked, pan-fried~^~LAMB,VAR MEATS&BY-PRODUCTS,BRAIN,CKD,PAN-FRIED~^^^^^0^^6.25^4.27^9.02^3.87
-~17188~^~1700~^~Veal, variety meats and by-products, brain, raw~^~VEAL,VAR MEATS&BY-PRODUCTS,BRAIN,RAW~^^^^~Blood clots and membranes~^3^^6.25^4.27^9.02^3.87
-~17189~^~1700~^~Veal, variety meats and by-products, brain, cooked, braised~^~VEAL,VAR MEATS&BY-PRODUCTS,BRAIN,CKD,BRSD~^^^^^0^^6.25^4.27^9.02^3.87
-~17190~^~1700~^~Veal, variety meats and by-products, brain, cooked, pan-fried~^~VEAL,VAR MEATS&BY-PRODUCTS,BRAIN,CKD,PAN-FRIED~^^^^^0^^6.25^4.27^9.02^3.87
-~17191~^~1700~^~Lamb, variety meats and by-products, heart, raw~^~LAMB,VAR MEATS&BY-PRODUCTS,HEART,RAW~^^^^~Fat and valves~^22^^6.25^4.27^9.02^3.87
-~17192~^~1700~^~Lamb, variety meats and by-products, heart, cooked, braised~^~LAMB,VAR MEATS&BY-PRODUCTS,HEART,CKD,BRSD~^^^^^0^^6.25^4.27^9.02^3.87
-~17193~^~1700~^~Veal, variety meats and by-products, heart, raw~^~VEAL,VAR MEATS&BY-PRODUCTS,HEART,RAW~^^^^~Fat and valves~^26^^6.25^4.27^9.02^3.87
-~17194~^~1700~^~Veal, variety meats and by-products, heart, cooked, braised~^~VEAL,VAR MEATS&BY-PRODUCTS,HEART,CKD,BRSD~^^^^^0^^6.25^4.27^9.02^3.87
-~17195~^~1700~^~Lamb, variety meats and by-products, kidneys, raw~^~LAMB,VAR MEATS&BY-PRODUCTS,KIDNEYS,RAW~^^^^~Connective tissue, fat, and veins~^3^^6.25^4.27^9.02^3.87
-~17196~^~1700~^~Lamb, variety meats and by-products, kidneys, cooked, braised~^~LAMB,VAR MEATS&BY-PRODUCTS,KIDNEYS,CKD,BRSD~^^^^^0^^6.25^4.27^9.02^3.87
-~17197~^~1700~^~Veal, variety meats and by-products, kidneys, raw~^~VEAL,VAR MEATS&BY-PRODUCTS,KIDNEYS,RAW~^^^^~Connective tissue, fat, and veins~^12^^6.25^4.27^9.02^3.87
-~17198~^~1700~^~Veal, variety meats and by-products, kidneys, cooked, braised~^~VEAL,VAR MEATS&BY-PRODUCTS,KIDNEYS,CKD,BRSD~^^^^^0^^6.25^4.27^9.02^3.87
-~17199~^~1700~^~Lamb, variety meats and by-products, liver, raw~^~LAMB,VAR MEATS&BY-PRODUCTS,LIVER,RAW~^^^^^0^^6.25^4.27^9.02^3.87
-~17200~^~1700~^~Lamb, variety meats and by-products, liver, cooked, braised~^~LAMB,VAR MEATS&BY-PRODUCTS,LIVER,CKD,BRSD~^^^^^0^^6.25^4.27^9.02^3.87
-~17201~^~1700~^~Lamb, variety meats and by-products, liver, cooked, pan-fried~^~LAMB,VAR MEATS&BY-PRODUCTS,LIVER,CKD,PAN-FRIED~^^^^^0^^6.25^4.27^9.02^3.87
-~17202~^~1700~^~Veal, variety meats and by-products, liver, raw~^~VEAL,VAR MEATS&BY-PRODUCTS,LIVER,RAW~^~calf liver~^^^^0^^6.25^4.27^9.02^3.87
-~17203~^~1700~^~Veal, variety meats and by-products, liver, cooked, braised~^~VEAL,VAR MEATS&BY-PRODUCTS,LIVER,CKD,BRSD~^~calf liver~^^^^0^^6.25^4.27^9.02^3.87
-~17204~^~1700~^~Veal, variety meats and by-products, liver, cooked, pan-fried~^~VEAL,VAR MEATS&BY-PRODUCTS,LIVER,CKD,PAN-FRIED~^~calf liver~^^^^0^^6.25^4.27^9.02^3.87
-~17205~^~1700~^~Lamb, variety meats and by-products, lungs, raw~^~LAMB,VAR MEATS&BY-PRODUCTS,LUNGS,RAW~^^^^~Blood clots and membranes~^24^^6.25^4.27^9.02^3.87
-~17206~^~1700~^~Lamb, variety meats and by-products, lungs, cooked, braised~^~LAMB,VAR MEATS&BY-PRODUCTS,LUNGS,CKD,BRSD~^^^^^0^^6.25^4.27^9.02^3.87
-~17207~^~1700~^~Veal, variety meats and by-products, lungs, raw~^~VEAL,VAR MEATS&BY-PRODUCTS,LUNGS,RAW~^^^^~Blood clots and membranes~^24^^6.25^4.27^9.02^3.87
-~17208~^~1700~^~Veal, variety meats and by-products, lungs, cooked, braised~^~VEAL,VAR MEATS&BY-PRODUCTS,LUNGS,CKD,BRSD~^^^^^0^^6.25^4.27^9.02^3.87
-~17209~^~1700~^~Lamb, variety meats and by-products, mechanically separated, raw~^~LAMB,VAR MEATS&BY-PRODUCTS,MECHANICALLY SEPARATED,RAW~^^^^^0^^6.25^4.27^9.02^3.87
-~17210~^~1700~^~Lamb, variety meats and by-products, pancreas, raw~^~LAMB,VAR MEATS&BY-PRODUCTS,PANCREAS,RAW~^^^^^0^^6.25^4.27^9.02^3.87
-~17211~^~1700~^~Lamb, variety meats and by-products, pancreas, cooked, braised~^~LAMB,VAR MEATS&BY-PRODUCTS,PANCREAS,CKD,BRSD~^^^^^0^^6.25^4.27^9.02^3.87
-~17212~^~1700~^~Veal, variety meats and by-products, pancreas, raw~^~VEAL,VAR MEATS&BY-PRODUCTS,PANCREAS,RAW~^^^^^0^^6.25^4.27^9.02^3.87
-~17213~^~1700~^~Veal, variety meats and by-products, pancreas, cooked, braised~^~VEAL,VAR MEATS&BY-PRODUCTS,PANCREAS,CKD,BRSD~^^^^^0^^6.25^4.27^9.02^3.87
-~17214~^~1700~^~Lamb, variety meats and by-products, spleen, raw~^~LAMB,VAR MEATS&BY-PRODUCTS,SPLEEN,RAW~^^^^^0^^6.25^4.27^9.02^3.87
-~17215~^~1700~^~Lamb, variety meats and by-products, spleen, cooked, braised~^~LAMB,VAR MEATS&BY-PRODUCTS,SPLEEN,CKD,BRSD~^^^^^0^^6.25^4.27^9.02^3.87
-~17216~^~1700~^~Veal, variety meats and by-products, spleen, raw~^~VEAL,VAR MEATS&BY-PRODUCTS,SPLEEN,RAW~^^^^^0^^6.25^4.27^9.02^3.87
-~17217~^~1700~^~Veal, variety meats and by-products, spleen, cooked, braised~^~VEAL,VAR MEATS&BY-PRODUCTS,SPLEEN,CKD,BRSD~^^^^^0^^6.25^4.27^9.02^3.87
-~17218~^~1700~^~Veal, variety meats and by-products, thymus, raw~^~VEAL,VAR MEATS&BY-PRODUCTS,THYMUS,RAW~^^^^^0^^6.25^4.27^9.02^3.87
-~17219~^~1700~^~Veal, variety meats and by-products, thymus, cooked, braised~^~VEAL,VAR MEATS&BY-PRODUCTS,THYMUS,CKD,BRSD~^^^~Y~^~Membranes 3.69%~^4^^6.25^4.27^9.02^3.87
-~17220~^~1700~^~Lamb, variety meats and by-products, tongue, raw~^~LAMB,VAR MEATS&BY-PRODUCTS,TONGUE,RAW~^^^^~Connective tissue and cartilage~^16^^6.25^4.27^9.02^4.11
-~17221~^~1700~^~Lamb, variety meats and by-products, tongue, cooked, braised~^~LAMB,VAR MEATS&BY-PRODUCTS,TONGUE,CKD,BRSD~^^^^^0^^6.25^4.27^9.02^4.11
-~17222~^~1700~^~Veal, variety meats and by-products, tongue, raw~^~VEAL,VAR MEATS&BY-PRODUCTS,TONGUE,RAW~^^^^~Connective tissue and cartilage~^16^^6.25^4.27^9.02^4.11
-~17223~^~1700~^~Veal, variety meats and by-products, tongue, cooked, braised~^~VEAL,VAR MEATS&BY-PRODUCTS,TONGUE,CKD,BRSD~^^^^^0^^6.25^4.27^9.02^4.11
-~17224~^~1700~^~Lamb, ground, raw~^~LAMB,GROUND,RAW~^^^~Y~^^0^^6.25^4.27^9.02^3.87
-~17225~^~1700~^~Lamb, ground, cooked, broiled~^~LAMB,GROUND,CKD,BRLD~^^^~Y~^^0^^6.25^4.27^9.02^3.87
-~17226~^~1700~^~Lamb, composite of trimmed retail cuts, separable lean and fat, trimmed to 1/8" fat, choice, raw~^~LAMB,COMP OF RTL CUTS,LN & FAT,1/8" FAT,CHOIC,RAW~^^^^~Bone~^24^^6.25^4.27^9.02^3.87
-~17227~^~1700~^~Lamb, composite of trimmed retail cuts, separable lean and fat, trimmed to 1/8" fat, choice, cooked~^~LAMB,COMP OF RTL CUTS,LN & FAT,1/8" FAT,CHOIC,CKD~^^^^~Bone~^24^^6.25^4.27^9.02^3.87
-~17228~^~1700~^~Lamb, foreshank, separable lean and fat, trimmed to 1/8" fat, choice, raw~^~LAMB,FORESHANK,LN & FAT,1/8" FAT,CHOIC,RAW~^^^^~Bone~^52^^6.25^4.27^9.02^3.87
-~17229~^~1700~^~Lamb, foreshank, separable lean and fat, trimmed to 1/8" fat, cooked, braised~^~LAMB,FORESHANK,LN & FAT,1/8" FAT,CKD,BRSD~^^^^~Bone~^56^^6.25^4.27^9.02^3.87
-~17230~^~1700~^~Lamb, leg, whole (shank and sirloin), separable lean and fat, trimmed to 1/8" fat, choice, raw~^~LAMB,LEG,WHL (SHK&SIRL),LN & FAT,1/8" FAT,CHOIC,RAW~^^^^~Bone~^22^^6.25^4.27^9.02^3.87
-~17231~^~1700~^~Lamb, leg, whole (shank and sirloin), separable lean and fat, trimmed to 1/8" fat, choice, cooked, roasted~^~LAMB,LEG,WHL (SHK&SIRL),LN & FAT,1/8" FAT,CHOIC,CKD,RSTD~^^^^~Bone~^23^^6.25^4.27^9.02^3.87
-~17232~^~1700~^~Lamb, leg, shank half, separable lean and fat, trimmed to 1/8" fat, choice, raw~^~LAMB,LEG,SHANK HALF,LN & FAT,1/8" FAT,CHOIC,RAW~^^^^~Bone~^20^^6.25^4.27^9.02^3.87
-~17233~^~1700~^~Lamb, leg, shank half, separable lean and fat, trimmed to 1/8" fat, choice, cooked, roasted~^~LAMB,LEG,SHANK HALF,LN & FAT,1/8" FAT,CHOIC,CKD,RSTD~^^^^~Bone~^20^^6.25^4.27^9.02^3.87
-~17234~^~1700~^~Lamb, leg, sirloin half, separable lean and fat, trimmed to 1/8" fat, choice, raw~^~LAMB,LEG,SIRLOIN HALF,LN & FAT,1/8" FAT,CHOIC,RAW~^^^^~Bone~^24^^6.25^4.27^9.02^3.87
-~17235~^~1700~^~Lamb, leg, sirloin half, separable lean and fat, trimmed to 1/8" fat, choice, cooked, roasted~^~LAMB,LEG,SIRLOIN HALF,LN & FAT,1/8" FAT,CHOIC,CKD,RSTD~^^^^~Bone~^23^^6.25^4.27^9.02^3.87
-~17236~^~1700~^~Lamb, loin, separable lean and fat, trimmed to 1/8" fat, choice, raw~^~LAMB,LOIN,LN & FAT,1/8" FAT,CHOIC,RAW~^^^^~Bone~^22^^6.25^4.27^9.02^3.87
-~17237~^~1700~^~Lamb, loin, separable lean and fat, trimmed to 1/8" fat, choice, cooked, broiled~^~LAMB,LOIN,LN & FAT,1/8" FAT,CHOIC,CKD,BRLD~^^^^~Bone~^24^^6.25^4.27^9.02^3.87
-~17238~^~1700~^~Lamb, loin, separable lean and fat, trimmed to 1/8" fat, choice, cooked, roasted~^~LAMB,LOIN,LN & FAT,1/8" FAT,CHOIC,CKD,RSTD~^^^^~Bone~^23^^6.25^4.27^9.02^3.87
-~17239~^~1700~^~Lamb, rib, separable lean and fat, trimmed to 1/8" fat, choice, raw~^~LAMB,RIB,LN & FAT,1/8" FAT,CHOIC,RAW~^^^^~Bone~^29^^6.25^4.27^9.02^3.87
-~17240~^~1700~^~Lamb, rib, separable lean and fat, trimmed to 1/8" fat, choice, cooked, broiled~^~LAMB,RIB,LN & FAT,1/8" FAT,CHOIC,CKD,BRLD~^^^^~Bone~^32^^6.25^4.27^9.02^3.87
-~17241~^~1700~^~Lamb, rib, separable lean and fat, trimmed to 1/8" fat, choice, cooked, roasted~^~LAMB,RIB,LN & FAT,1/8" FAT,CHOIC,CKD,RSTD~^^^^~Bone~^30^^6.25^4.27^9.02^3.87
-~17242~^~1700~^~Lamb, shoulder, whole (arm and blade), separable lean and fat, trimmed to 1/8" fat, choice, raw~^~LAMB,SHLDR,WHL (ARM&BLD),LN & FAT,1/8" FAT,CHOIC,RAW~^^^^~Bone~^22^^6.25^4.27^9.02^3.87
-~17243~^~1700~^~Lamb, shoulder, whole (arm and blade), separable lean and fat, trimmed to 1/8" fat, choice, cooked, braised~^~LAMB,SHLDR,WHL (ARM&BLD),LN & FAT,1/8" FAT,CHOIC,CKD,BRSD~^^^^~Bone~^27^^6.25^4.27^9.02^3.87
-~17244~^~1700~^~Lamb, shoulder, whole (arm and blade), separable lean and fat, trimmed to 1/8" fat, choice, cooked, broiled~^~LAMB,SHLDR,WHL (ARM&BLD),LN & FAT,1/8" FAT,CHOIC,CKD,BRLD~^^^^~Bone~^26^^6.25^4.27^9.02^3.87
-~17245~^~1700~^~Lamb, shoulder, whole (arm and blade), separable lean and fat, trimmed to 1/8" fat, choice, cooked, roasted~^~LAMB,SHLDR,WHL (ARM&BLD),LN & FAT,1/8" FAT,CHOIC,CKD,RSTD~^^^^~Bone~^24^^6.25^4.27^9.02^3.87
-~17246~^~1700~^~Lamb, shoulder, arm, separable lean and fat, trimmed to 1/8" fat, choice, raw~^~LAMB,SHLDR,ARM,LN & FAT,1/8" FAT,CHOIC,RAW~^^^^~Bone~^18^^6.25^4.27^9.02^3.87
-~17247~^~1700~^~Lamb, shoulder, arm, separable lean and fat, trimmed to 1/8" fat, choice, cooked, braised~^~LAMB,SHLDR,ARM,LN & FAT,1/8" FAT,CHOIC,CKD,BRSD~^^^^~Bone~^21^^6.25^4.27^9.02^3.87
-~17248~^~1700~^~Lamb, shoulder, arm, separable lean and fat, trimmed to 1/8" fat, cooked, broiled~^~LAMB,SHLDR,ARM,LN & FAT,1/8" FAT,CKD,BRLD~^^^^~Bone~^20^^6.25^4.27^9.02^3.87
-~17249~^~1700~^~Lamb, shoulder, arm, separable lean and fat, trimmed to 1/8" fat, choice, roasted~^~LAMB,SHLDR,ARM,LN & FAT,1/8" FAT,CHOIC,RSTD~^^^^~Bone~^18^^6.25^4.27^9.02^3.87
-~17250~^~1700~^~Lamb, shoulder, blade, separable lean and fat, trimmed to 1/8" fat, choice, raw~^~LAMB,SHLDR,BLADE,LN & FAT,1/8" FAT,CHOIC,RAW~^^^^~Bone~^25^^6.25^4.27^9.02^3.87
-~17251~^~1700~^~Lamb, shoulder, blade, separable lean and fat, trimmed to 1/8" fat, choice, cooked, braised~^~LAMB,SHLDR,BLADE,LN & FAT,1/8" FAT,CHOIC,CKD,BRSD~^^^^~Bone~^29^^6.25^4.27^9.02^3.87
-~17252~^~1700~^~Lamb, shoulder, blade, separable lean and fat, trimmed to 1/8" fat, choice, cooked, broiled~^~LAMB,SHLDR,BLADE,LN & FAT,1/8" FAT,CHOIC,CKD,BRLD~^^^^~Bone~^28^^6.25^4.27^9.02^3.87
-~17253~^~1700~^~Lamb, shoulder, blade, separable lean and fat, trimmed to 1/8" fat, choice, cooked, roasted~^~LAMB,SHLDR,BLADE,LN & FAT,1/8" FAT,CHOIC,CKD,RSTD~^^^^~Bone~^26^^6.25^4.27^9.02^3.87
-~17254~^~1700~^~Lamb, New Zealand, imported, frozen, composite of trimmed retail cuts, separable lean and fat, trimmed to 1/8" fat, raw~^~LAMB,NZ,IMP,FRZ,COMP OF RTL CUTS,LN & FAT,1/8" FAT,RAW~^^^^~Bone~^27^^6.25^4.27^9.02^3.87
-~17255~^~1700~^~Lamb, New Zealand, imported, frozen, composite of trimmed retail cuts, separable lean and fat, trimmed to 1/8" fat, cooked~^~LAMB,NZ,IMP,FRZ,COMP OF RTL CUTS,LN & FAT,1/8" FAT,CKD~^^^^~Bone~^27^^6.25^4.27^9.02^3.87
-~17256~^~1700~^~Lamb, New Zealand, imported, frozen, foreshank, separable lean and fat, trimmed to 1/8" fat, raw~^~LAMB,NZ,IMP,FRZ,FORESHANK,LN & FAT,1/8" FAT,RAW~^^^^~Bone~^45^^6.25^4.27^9.02^3.87
-~17257~^~1700~^~Lamb, New Zealand, imported, frozen, foreshank, separable lean and fat, trimmed to 1/8" fat, cooked, braised~^~LAMB,NZ,IMP,FRZ,FORESHANK,LN & FAT,1/8" FAT,CKD,BRSD~^^^^~Bone~^50^^6.25^4.27^9.02^3.87
-~17258~^~1700~^~Lamb, New Zealand, imported, frozen, leg, whole (shank and sirloin), separable lean and fat, trimmed to 1/8" fat, raw~^~LAMB,NZ,IMP,FRZ,LEG,WHL (SHK&SIRL),LN & FAT,1/8" FAT,RAW~^^^^~Bone~^24^^6.25^4.27^9.02^3.87
-~17259~^~1700~^~Lamb, New Zealand, imported, frozen, leg, whole (shank and sirloin), separable lean and fat, trimmed to 1/8" fat, cooked, roasted~^~LAMB,NZ,IMP,FRZ,LEG,WHL (SHK&SIRL),LN & FAT,1/8",CKD,RSTD~^^^^~Bone~^25^^6.25^4.27^9.02^3.87
-~17260~^~1700~^~Lamb, New Zealand, imported, frozen, loin, separable lean and fat, trimmed to 1/8" fat, raw~^~LAMB,NZ,IMP,FRZ,LOIN,LN & FAT,1/8" FAT,RAW~^^^^~Bone~^26^^6.25^4.27^9.02^3.87
-~17261~^~1700~^~Lamb, New Zealand, imported, frozen, loin, separable lean and fat, trimmed to 1/8" fat, cooked, broiled~^~LAMB,NZ,IMP,FRZ,LOIN,LN & FAT,1/8" FAT,CKD,BRLD~^^^^~Bone~^28^^6.25^4.27^9.02^3.87
-~17262~^~1700~^~Lamb, new zealand, imported, frozen, rib, separable lean and fat, trimmed to 1/8" fat, raw~^~LAMB,NZ,IMP,FRZ,RIB,LN&FAT,1/8"FAT,RAW~^^^^~Bone~^33^^6.25^4.27^9.02^3.87
-~17263~^~1700~^~Lamb, New Zealand, imported, frozen, rib, separable lean and fat, trimmed to 1/8" fat, cooked, roasted~^~LAMB,NZ,IMP,FRZ,RIB,LN & FAT,1/8" FAT,CKD,RSTD~^^^^~Bone~^34^^6.25^4.27^9.02^3.87
-~17264~^~1700~^~Lamb, New Zealand, imported, frozen, shoulder, whole (arm and blade), separable lean and fat, trimmed to 1/8" fat, raw~^~LAMB,NZ,IMP,FRZ,SHLDR,WHL (ARM&BLD),LN & FAT,1/8",RAW~^^^^~Bone~^26^^6.25^4.27^9.02^3.87
-~17265~^~1700~^~Lamb, New Zealand, imported, frozen, shoulder, whole (arm and blade), separable lean and fat, trimmed to 1/8" fat, cooked, braised~^~LAMB,NZ,IMP,FRZ,SHDR,WHL (ARM&BLD),LN & FAT,1/8",CKD,BRSD~^^^^~Bone~^20^^6.25^4.27^9.02^3.87
-~17267~^~1700~^~Game meat, bison, top sirloin, separable lean only, trimmed to 0" fat, raw~^~GAME MEAT,BISON,TOP SIRLOIN,LN,0"FAT,RAW~^~buffalo~^^^^0^~Bison bison~^6.25^4.27^9.02^3.87
-~17268~^~1700~^~Game meat, bison, ribeye, separable lean only, trimmed to 0" fat, raw~^~GAME MEAT,BISON,RIBEYE,LN,0"FAT,RAW~^~buffalo~^^^^0^~Bison bison~^6.25^4.27^9.02^3.87
-~17269~^~1700~^~Game meat, bison, shoulder clod, separable lean only, trimmed to 0" fat, raw~^~GAME MEAT,BISON,SHLDR CLOD,LN,0"FAT,RAW~^~buffalo~^^^^0^~Bison bison~^6.25^4.27^9.02^3.87
-~17270~^~1700~^~Veal, breast, separable fat, cooked~^~VEAL,BREAST,FAT,CKD~^^^^^0^~Bos taurus~^6.25^4.27^9.02^
-~17271~^~1700~^~Veal, breast, whole, boneless, separable lean and fat, raw~^~VEAL,BREAST,WHL,BNLESS,LN&FAT,RAW~^^^^^0^~Bos taurus~^6.25^4.27^9.02^
-~17272~^~1700~^~Veal, breast, whole, boneless, separable lean and fat, cooked, braised~^~VEAL,BREAST,WHL,BNLESS,LN&FAT,CKD,BRSD~^^^^~Connective tissue~^7^~Bos taurus~^6.25^4.27^9.02^
-~17273~^~1700~^~Veal, breast, plate half, boneless, separable lean and fat, cooked, braised~^~VEAL,BREAST,PLATE HALF,BNLESS,LN&FAT,CKD,BRSD~^^^^~Connective tissue~^11^~Bos taurus~^6.25^4.27^9.02^
-~17274~^~1700~^~Veal, breast, point half, boneless, separable lean and fat, cooked, braised~^~VEAL,BREAST,POINT HALF,BNLESS,LN&FAT,CKD,BRSD~^^^^~Connective tissue~^4^~Bos taurus~^6.25^4.27^9.02^
-~17275~^~1700~^~Veal, breast, whole, boneless, separable lean only, cooked, braised~^~VEAL,BREAST,WHL,BNLESS,LN,CKD,BRSD~^^^^~Connective tissue 7%, separable fat 15%~^22^~Bos taurus~^6.25^4.27^9.02^
-~17276~^~1700~^~Veal, shank (fore and hind), separable lean and fat, raw~^~VEAL,SHANK (FORE&HIND),LN&FAT,RAW~^^^^~Bone~^29^~Bos taurus~^6.25^4.27^9.02^
-~17277~^~1700~^~Veal, shank (fore and hind), separable lean and fat, cooked, braised~^~VEAL,SHANK (FORE&HIND),LN&FAT,CKD,BRSD~^^^^~Bone~^39^~Bos taurus~^6.25^4.27^9.02^
-~17278~^~1700~^~Veal, shank (fore and hind), separable lean only, raw~^~VEAL,SHANK (FORE&HIND),LN,RAW~^^^^~Bone 29%, separable fat 1%~^30^~Bos taurus~^6.25^4.27^9.02^
-~17279~^~1700~^~Veal, shank (fore and hind), separable lean only, cooked, braised~^~VEAL,SHANK (FORE&HIND),LN,CKD,BRSD~^^^^~Bone 29%, separable fat 1%~^30^~Bos taurus~^6.25^4.27^9.02^
-~17280~^~1700~^~Lamb, Australian, imported, fresh, composite of trimmed retail cuts, separable lean and fat, trimmed to 1/8" fat, raw~^~LAMB,AUS,IMP,FRSH,COMP OF RTL CUTS,LN&FAT,1/8"FAT,RAW~^^^^~Bone~^20^^6.25^4.27^9.02^3.87
-~17281~^~1700~^~Lamb, Australian, imported, fresh, composite of trimmed retail cuts, separable lean and fat, trimmed to 1/8" fat, cooked~^~LAMB,AUS,IMP,FRSH,COMP OF RTL CUTS,LN&FAT,1/8"FAT,CKD~^^^^~Bone~^22^^6.25^4.27^9.02^3.87
-~17282~^~1700~^~Lamb, Australian, imported, fresh, composite of trimmed retail cuts, separable lean only, trimmed to 1/8" fat, raw~^~LAMB,AUS,IMP,FRSH,COMP OF RTL CUTS,LN,1/8"FAT,RAW~^^^^~Bone 20%, separable fat 14%~^34^^6.25^4.27^9.02^3.87
-~17283~^~1700~^~Lamb, Australian, imported, fresh, composite of trimmed retail cuts, separable lean only, trimmed to 1/8" fat, cooked~^~LAMB,AUS,IMP,FRSH,COMP OF RTL CUTS,LN,1/8"FAT,CKD~^^^^~Bone 22%, separable fat 10%~^32^^6.25^4.27^9.02^3.87
-~17284~^~1700~^~Lamb, Australian, imported, fresh, separable fat, raw~^~LAMB,AUS,IMP,FRSH,FAT,RAW~^^^^^0^^6.25^4.27^9.02^3.87
-~17285~^~1700~^~Lamb, Australian, imported, fresh, separable fat, cooked~^~LAMB,AUS,IMP,FRSH,FAT,CKD~^^^^^0^^6.25^4.27^9.02^3.87
-~17286~^~1700~^~Lamb, Australian, imported, fresh, foreshank, separable lean and fat, trimmed to 1/8" fat, raw~^~LAMB,AUS,IMP,FRSH,FORESHANK,LN&FAT,1/8"FAT,RAW~^^^^~Bone~^42^^6.25^4.27^9.02^3.87
-~17287~^~1700~^~Lamb, Australian, imported, fresh, foreshank, separable lean and fat, trimmed to 1/8" fat, cooked, braised~^~LAMB,AUS,IMP,FRSH,FORESHANK,LN&FAT,1/8"FAT,CKD,BRSD~^^^^~Bone~^45^^6.25^4.27^9.02^3.87
-~17288~^~1700~^~Lamb, Australian, imported, fresh, foreshank, separable lean only, trimmed to 1/8" fat, raw~^~LAMB,AUS,IMP,FRSH,FORESHANK,LN,1/8"FAT,RAW~^^^^~Bone 42%, separable fat 8%~^50^^6.25^4.27^9.02^3.87
-~17289~^~1700~^~Lamb, Australian, imported, fresh, foreshank, separable lean only, trimmed to 1/8" fat, cooked, braised~^~LAMB,AUS,IMP,FRSH,FORESHANK,LN,1/8"FAT,CKD,BRSD~^^^^~Bone 45%, separable fat 8%~^53^^6.25^4.27^9.02^3.87
-~17290~^~1700~^~Lamb, Australian, imported, fresh, leg, whole (shank and sirloin), separable lean and fat, trimmed to 1/8" fat, raw~^~LAMB,AUS,IMP,FRSH,LEG,WHL (SHK&SIRL),LN&FAT,1/8"FAT,RAW~^^^^~Bone~^14^^6.25^4.27^9.02^3.87
-~17291~^~1700~^~Lamb, Australian, imported, fresh, leg, whole (shank and sirloin), separable lean and fat, trimmed to 1/8" fat, cooked, roasted~^~LAMB,AUS,IMP,FRSH,LEG,WHL (SHK&SIRL),LN&FAT,1/8"FAT,CKD,RSTD~^^^^~Bone~^16^^6.25^4.27^9.02^3.87
-~17292~^~1700~^~Lamb, Australian, imported, fresh, leg, whole (shank and sirloin), separable lean only, trimmed to 1/8" fat, raw~^~LAMB,AUS,IMP,FRSH,LEG,WHL (SHK&SIRL),LN,1/8"FAT,RAW~^^^^~Bone 14%, separable fat 14%~^28^^6.25^4.27^9.02^3.87
-~17293~^~1700~^~Lamb, Australian, imported, fresh, leg, whole (shank and sirloin), separable lean only, trimmed to 1/8" fat, cooked, roasted~^~LAMB,AUS,IMP,FRSH,LEG,WHL (SHK&SIRL),LN,1/8"FAT,CKD,RSTD~^^^^~Bone 16%, separable fat 10%~^26^^6.25^4.27^9.02^3.87
-~17294~^~1700~^~Lamb, Australian, imported, fresh, leg, shank half, separable lean and fat, trimmed to 1/8" fat, raw~^~LAMB,AUS,IMP,FRSH,LEG,SHANK HALF,LN&FAT,1/8"FAT,RAW~^^^^~Bone~^17^^6.25^4.27^9.02^3.87
-~17295~^~1700~^~Lamb, Australian, imported, fresh, leg, shank half, separable lean and fat, trimmed to 1/8" fat, cooked, roasted~^~LAMB,AUS,IMP,FRSH,LEG,SHANK HALF,LN&FAT,1/8"FAT,CKD,RSTD~^^^^~Bone~^20^^6.25^4.27^9.02^3.87
-~17296~^~1700~^~Lamb, Australian, imported, fresh, leg, shank half, separable lean only, trimmed to 1/8" fat, raw~^~LAMB,AUS,IMP,FRSH,LEG,SHANK HALF,LN,1/8"FAT,RAW~^^^^~Bone 17%, separable fat 11%~^28^^6.25^4.27^9.02^3.87
-~17297~^~1700~^~Lamb, Australian, imported, fresh, leg, shank half, separable lean only, trimmed to 1/8" fat, cooked, roasted~^~LAMB,AUS,IMP,FRSH,LEG,SHANK HALF,LN,1/8"FAT,CKD,RSTD~^^^^~Bone 20%, separable fat 9%~^29^^6.25^4.27^9.02^3.87
-~17298~^~1700~^~Lamb, Australian, imported, fresh, leg, sirloin half, boneless, separable lean and fat, trimmed to 1/8" fat, raw~^~LAMB,AUS,IMP,FRSH,LEG,SIRLOIN HALF,BNLESS,LN&FAT,1/8"FAT,RAW~^^^^~Connective tissue~^2^^6.25^4.27^9.02^3.87
-~17299~^~1700~^~Lamb, Australian, imported, fresh, leg, sirloin half, boneless, separable lean and fat, trimmed to 1/8" fat, cooked, roasted~^~LAMB,AUS,IMP,FRSH,LEG,SIRL HLF,BNLESS,LN&FT,1/8"FAT,CKD,RSTD~^^^^~Connective tissue~^2^^6.25^4.27^9.02^3.87
-~17300~^~1700~^~Lamb, Australian, imported, fresh, leg, sirloin half, boneless, separable lean only, trimmed to 1/8" fat, raw~^~LAMB,AUS,IMP,FRSH,LEG,SIRLOIN HALF,BNLESS,LN,1/8"FAT,RAW~^^^^~Connective tissue 2%, separable fat 22%~^24^^6.25^4.27^9.02^3.87
-~17301~^~1700~^~Lamb, Australian, imported, fresh, leg, sirloin half, boneless, separable lean only, trimmed to 1/8" fat, cooked, roasted~^~LAMB,AUS,IMP,FRSH,LEG,SIRL HALF,BNLESS,LN,1/8"FAT,CKD,RSTD~^^^^~Connective tissue 2%, separable fat 15%~^17^^6.25^4.27^9.02^3.87
-~17302~^~1700~^~Lamb, Australian, imported, fresh, leg, sirloin chops, boneless, separable lean and fat, trimmed to 1/8" fat, raw~^~LAMB,AUS,IMP,FRSH,LEG,SIRL CHOPS,BNLESS,LN&FAT,1/8"FAT,RAW~^^^^~Connective tissue~^2^^6.25^4.27^9.02^3.87
-~17303~^~1700~^~Lamb, Australian, imported, fresh, leg, sirloin chops, boneless, separable lean and fat, trimmed to 1/8" fat, cooked, broiled~^~LAMB,AUS,IMP,FRSH,LEG,SIRL CHPS,BNLESS,LN&FT,1/8"FT,CKD,BRLD~^^^^~Connective tissue~^1^^6.25^4.27^9.02^3.87
-~17304~^~1700~^~Lamb, Australian, imported, fresh, leg, sirloin chops, boneless, separable lean only, trimmed to 1/8" fat, raw~^~LAMB,AUS,IMP,FRSH,LEG,SIRLOIN CHOPS,BNLESS,LN,1/8"FAT,RAW~^^^^~Connective tissue 2%, separable fat 15%~^17^^6.25^4.27^9.02^3.87
-~17305~^~1700~^~Lamb, Australian, imported, fresh, leg, sirloin chops, boneless, separable lean only, trimmed to 1/8" fat, cooked, broiled~^~LAMB,AUS,IMP,FRSH,LEG,SIRL CHOPS,BNLESS,LN,1/8"FAT,CKD,BRLD~^^^^~Connective tissue 1%, separable fat 10%~^11^^6.25^4.27^9.02^3.87
-~17306~^~1700~^~Lamb, Australian, imported, fresh, leg, center slice, bone-in, separable lean and fat, trimmed to 1/8" fat, raw~^~LAMB,AUS,IMP,FRSH,LEG,CNTR SLICE,BONE-IN,LN&FAT,1/8"FAT,RAW~^^^^~Bone~^6^^6.25^4.27^9.02^3.87
-~17307~^~1700~^~Lamb, Australian, imported, fresh, leg, center slice, bone-in, separable lean and fat, trimmed to 1/8" fat, cooked, broiled~^~LAMB,AUS,IMP,FRSH,LEG,CNTR SLCE,BNE-IN,LN&FT,1/8"FT,CKD,BRLD~^^^^~Bone~^7^^6.25^4.27^9.02^3.87
-~17308~^~1700~^~Lamb, Australian, imported, fresh, leg, center slice, bone-in, separable lean only, trimmed to 1/8" fat, raw~^~LAMB,AUS,IMP,FRSH,LEG,CNTR SLICE,BONE-IN,LN,1/8"FAT,RAW~^^^^~Bone 6%, separable fat 10%~^16^^6.25^4.27^9.02^3.87
-~17309~^~1700~^~Lamb, Australian, imported, fresh, leg, center slice, bone-in, separable lean only, trimmed to 1/8" fat, cooked, broiled~^~LAMB,AUS,IMP,FRSH,LEG,CNTR SLICE,BONE-IN,LN,1/8"FAT,CKD,BRLD~^^^^~Bone 7%, separable fat 7%~^14^^6.25^4.27^9.02^3.87
-~17310~^~1700~^~Lamb, Australian, imported, fresh, loin, separable lean and fat, trimmed to 1/8" fat, raw~^~LAMB,AUS,IMP,FRSH,LOIN,LN&FAT,1/8"FAT,RAW~^^^^~Bone~^28^^6.25^4.27^9.02^3.87
-~17311~^~1700~^~Lamb, Australian, imported, fresh, loin, separable lean and fat, trimmed to 1/8" fat, cooked, broiled~^~LAMB,AUS,IMP,FRSH,LOIN,LN&FAT,1/8"FAT,CKD,BRLD~^^^^~Bone~^26^^6.25^4.27^9.02^3.87
-~17312~^~1700~^~Lamb, Australian, imported, fresh, loin, separable lean only, trimmed to 1/8" fat, raw~^~LAMB,AUS,IMP,FRSH,LOIN,LN,1/8"FAT,RAW~^^^^~Bone 28%, separable fat 8%~^36^^6.25^4.27^9.02^3.87
-~17313~^~1700~^~Lamb, Australian, imported, fresh, loin, separable lean only, trimmed to 1/8" fat, cooked, broiled~^~LAMB,AUS,IMP,FRSH,LOIN,LN,1/8"FAT,CKD,BRLD~^^^^~Bone 26%, separable fat 5%~^31^^6.25^4.27^9.02^3.87
-~17314~^~1700~^~Lamb, Australian, imported, fresh, rib chop/rack roast, frenched, bone-in, separable lean and fat, trimmed to 1/8" fat, raw~^~LAMB,AUS,RIB CHOP/RACK RST,FRENCHED,BONE-IN,LN & FT,1/8",RAW~^^^^~Bone and connective tissue 25%~^25^^^^^
-~17315~^~1700~^~Lamb, Australian, imported, fresh, rib chop, frenched, bone-in, separable lean and fat, trimmed to 1/8" fat, cooked, grilled~^~LAMB,AUS,FRSH,RIB CHOP,FRENCHED,BNE-IN,LN & FAT,1/8",GRILLED~^^^^~Bone and connective tissue 29%~^29^^^^^
-~17316~^~1700~^~Lamb, Australian, imported, fresh, rib chop/rack roast, frenched, bone-in, separable lean only, trimmed to 1/8" fat, raw~^~LAMB,AUS,FRSH,RIB CHOP/RACK RST,FRENCHED,BONE-IN,LN,1/8",RAW~^~URMIS #2951~^^^~Bone and connective tissue 25%, separable fat 20%~^45^^^^^
-~17317~^~1700~^~Lamb, Australian, imported, fresh, rib chop, frenched, bone-in, separable lean only, trimmed to 1/8" fat, cooked, grilled~^~LAMB,AUS,FRSH,RIB CHOP,FRNCHED,BONE-IN,LN,1/8",CKD,GRILLED~^~URMIS #2951~^^^~Bone and connective tissue 29%, separable fat 16%~^45^^^^^
-~17318~^~1700~^~Lamb, Australian, imported, fresh, shoulder, whole (arm and blade), separable lean and fat, trimmed to 1/8" fat, raw~^~LAMB,AUS,IMP,FRSH,SHLDR,WHL (ARM&BLD),LN&FAT,1/8"FAT,RAW~^^^^~Bone~^22^^6.25^4.27^9.02^3.87
-~17319~^~1700~^~Lamb, Australian, imported, fresh, shoulder, whole (arm and blade), separable lean and fat, trimmed to 1/8" fat, cooked~^~LAMB,AUS,IMP,FRSH,SHLDR,WHL (ARM&BLD),LN&FAT,1/8"FAT,CKD~^^^^~Bone~^22^^6.25^4.27^9.02^3.87
-~17320~^~1700~^~Lamb, Australian, imported, fresh, shoulder, whole (arm and blade), separable lean only, trimmed to 1/8" fat, raw~^~LAMB,AUS,IMP,FRSH,SHLDR,WHL (ARM&BLD),LN,1/8"FAT,RAW~^^^^~Bone 22%, separable fat 16%~^38^^6.25^4.27^9.02^3.87
-~17321~^~1700~^~Lamb, Australian, imported, fresh, shoulder, whole (arm and blade), separable lean only, trimmed to 1/8" fat, cooked~^~LAMB,AUS,IMP,FRSH,SHLDR,WHL (ARM&BLD),LN,1/8"FAT,CKD~^^^^~Bone 22%, separable fat 12%~^34^^6.25^4.27^9.02^3.87
-~17322~^~1700~^~Lamb, Australian, imported, fresh, shoulder, arm, separable lean and fat, trimmed to 1/8" fat, raw~^~LAMB,AUS,IMP,FRSH,SHLDR,ARM,LN&FAT,1/8"FAT,RAW~^^^^~Bone~^9^^6.25^4.27^9.02^3.87
-~17323~^~1700~^~Lamb, Australian, imported, fresh, shoulder, arm, separable lean and fat, trimmed to 1/8" fat, cooked, braised~^~LAMB,AUS,IMP,FRSH,SHLDR,ARM,LN&FAT,1/8"FAT,CKD,BRSD~^^^^~Bone~^13^^6.25^4.27^9.02^3.87
-~17324~^~1700~^~Lamb, Australian, imported, fresh, shoulder, arm, separable lean only, trimmed to 1/8" fat, raw~^~LAMB,AUS,IMP,FRSH,SHLDR,ARM,LN,1/8"FAT,RAW~^^^^~Bone 9%, separable fat 19%~^28^^6.25^4.27^9.02^3.87
-~17325~^~1700~^~Lamb, Australian, imported, fresh, shoulder, arm, separable lean only, trimmed to 1/8" fat, cooked, braised~^~LAMB,AUS,IMP,FRSH,SHLDR,ARM,LN,1/8"FAT,CKD,BRSD~^^^^~Bone 13%, separable fat 16%~^29^^6.25^4.27^9.02^3.87
-~17326~^~1700~^~Lamb, Australian, imported, fresh, shoulder, blade, separable lean and fat, trimmed to 1/8" fat, raw~^~LAMB,AUS,IMP,FRSH,SHLDR,BLADE,LN&FAT,1/8"FAT,RAW~^^^^~Bone~^28^^6.25^4.27^9.02^3.87
-~17327~^~1700~^~Lamb, Australian, imported, fresh, shoulder, blade, separable lean and fat, trimmed to 1/8" fat, cooked, broiled~^~LAMB,AUS,IMP,FRSH,SHLDR,BLADE,LN&FAT,1/8"FAT,CKD,BRLD~^^^^~Bone~^25^^6.25^4.27^9.02^3.87
-~17328~^~1700~^~Lamb, Australian, imported, fresh, shoulder, blade, separable lean only, trimmed to 1/8" fat, raw~^~LAMB,AUS,IMP,FRSH,SHLDR,BLADE,LN,1/8"FAT,RAW~^^^^~Bone 28%, separable fat 15%~^43^^6.25^4.27^9.02^3.87
-~17329~^~1700~^~Lamb, Australian, imported, fresh, shoulder ,blade, separable lean only, trimmed to 1/8" fat, cooked, broiled~^~LAMB,AUS,IMP,FRSH,SHLDR,BLADE,LN,1/8"FAT,CKD,BRLD~^^^^~Bone 25%, separable fat 11%~^36^^6.25^4.27^9.02^3.87
-~17330~^~1700~^~Game meat , bison, ground, raw~^~GAME MEAT BISON,GROUND,RAW~^~buffalo~^^^^0^~Bison bison~^6.25^4.27^9.02^3.87
-~17331~^~1700~^~Game meat, bison, ground, cooked, pan-broiled~^~GAME MEAT,BISON,GROUND,CKD,PAN-BROILED~^~buffalo~^^^^0^~Bison bison~^6.25^4.27^9.02^3.87
-~17332~^~1700~^~Game meat , bison, top sirloin, separable lean only, 1" steak, cooked, broiled~^~GAME MEAT BISON,TOP SIRLOIN,LN,1" STEAK,CKD,BRLD~^~buffalo~^^^~Connective tissue, 4%, separable fat, 4%~^8^~Bison bison~^6.25^4.27^9.02^3.87
-~17333~^~1700~^~Game meat, bison, chuck, shoulder clod, separable lean only, cooked, braised~^~GAME MEAT,BISON,CHUCK,SHLDR CLOD,LN,CKD,BRSD~^~buffalo~^^^~Connective tissue, 8%, separable fat, 3%~^11^~Bison bison~^6.25^4.27^9.02^3.87
-~17334~^~1700~^~Game meat, bison, chuck, shoulder clod, separable lean only, raw~^~GAME MEAT,BISON,CHUCK,SHLDR CLOD,LN,RAW~^~buffalo~^^^~Connective tissue, 8%, separable fat, 4%~^12^~Bison bison~^6.25^4.27^9.02^3.87
-~17335~^~1700~^~Game meat, bison, ribeye, separable lean only, 1" steak, cooked, broiled~^~GAME MEAT,BISON,RIBEYE,LN,1" STEAK,CKD,BRLD~^~buffalo~^^^~Connective tissue, 9%, separable fat, 5%~^14^~Bison bison~^6.25^4.27^9.02^3.87
-~17336~^~1700~^~Game meat, bison, top round, separable lean only, 1" steak, cooked, broiled~^~GAME MEAT,BISON,TOP RND,LN,1" STEAK,CKD,BRLD~^~buffalo~^^^~Connective tissue, 3.5%, separable fat, 0.72%~^4^~Bison bison~^6.25^4.27^9.02^3.87
-~17337~^~1700~^~Game meat, bison, top round, separable lean only, 1" steak, raw~^~GAME MEAT,BISON,TOP RND,LN,1" STEAK,RAW~^~buffalo~^^^~Connective tissue, 3%, separable fat, 2%~^5^~Bison bison~^6.25^4.27^9.02^3.87
-~17338~^~1700~^~Game meat, elk, ground, raw~^~GAME MEAT,ELK,GROUND,RAW~^^^^^0^~Cervus elaphus~^6.25^4.27^9.02^3.87
-~17339~^~1700~^~Game meat, elk, ground, cooked, pan-broiled~^~GAME MEAT,ELK,GROUND,CKD,PAN-BROILED~^^^^^0^~Cervus elaphus~^6.25^4.27^9.02^3.87
-~17340~^~1700~^~Game meat, elk, loin, separable lean only, cooked, broiled~^~GAME MEAT,ELK,LOIN,LN,CKD,BRLD~^^^^~Connective tissue, 2%, separable fat, 4%~^6^~Cervus elaphus~^6.25^4.27^9.02^3.87
-~17341~^~1700~^~Game meat, elk, round, separable lean only, cooked, broiled~^~GAME MEAT,ELK,RND,LN,CKD,BRLD~^^^^~Connective tissue, 4%, separable fat, 1%~^5^~Cervus elaphus~^6.25^4.27^9.02^3.87
-~17342~^~1700~^~Game meat, elk, tenderloin, separable lean only, cooked, broiled~^~GAME MEAT,ELK,TENDERLOIN,LN,CKD,BRLD~^^^^~Connective tissue, 3%, separable fat, 1%~^4^~Cervus elaphus~^6.25^4.27^9.02^3.87
-~17343~^~1700~^~Game meat, deer, ground, raw~^~GAME MEAT,DEER,GROUND,RAW~^~venison~^^~Y~^^0^~Cervus elaphus, Dama dama~^6.25^4.27^9.02^3.87
-~17344~^~1700~^~Game meat, deer, ground, cooked, pan-broiled~^~GAME MEAT,DEER,GROUND,CKD,PAN-BROILED~^~Venison~^^~Y~^^0^~Cervus elaphus, Dama dama~^6.25^4.27^9.02^3.87
-~17345~^~1700~^~Game meat, deer, loin, separable lean only, 1" steak, cooked, broiled~^~GAME MEAT,DEER,LOIN,LN,1" STEAK,CKD,BRLD~^~venison~^^~Y~^^0^~Cervus elaphus, Dama dama~^6.25^4.27^9.02^3.87
-~17346~^~1700~^~Game meat, deer, shoulder clod, separable lean only, cooked, braised~^~GAME MEAT,DEER,SHLDR CLOD,LN,CKD,BRSD~^~venison~^^~Y~^^0^~Cervus elaphus, Dama dama~^6.25^4.27^9.02^3.87
-~17347~^~1700~^~Game meat, deer, tenderloin, separable lean only, cooked, broiled~^~GAME MEAT,DEER,TENDERLOIN,LN,CKD,BRLD~^~venison~^^^^0^~Cervus elaphus, Dama dama~^6.25^4.27^9.02^3.87
-~17348~^~1700~^~Game meat, deer, top round, separable lean only, 1" steak, cooked, broiled~^~GAME MEAT,DEER,TOP RND,LN,1" STEAK,CKD,BRLD~^~venison~^^^^0^~Cervus elaphus, Dama dama~^6.25^4.27^9.02^3.87
-~17349~^~1700~^~Veal, Australian, shank, fore, bone-in, separable lean only, raw~^~VEAL,AUSTRALIAN,SHANK,FORE,BONE-IN,LN,RAW~^^^^~Bone and connective tissue 39%, separable fat 3%~^42^^6.25^^^
-~17350~^~1700~^~Veal, Australian, shank, fore, bone-in, separable lean and fat, raw~^~VEAL,AUSTRALIAN,SHANK,FORE,BONE-IN,LN & FAT,RAW~^^^^~Bone and connective tissue 39%~^39^^^^^
-~17351~^~1700~^~Veal, Australian, shank, hind, bone-in, separable lean only, raw~^~VEAL,AUSTRALIAN,SHANK,HIND,BONE-IN,LN,RAW~^^^^~Bone and connective tissue 31%, separable fat 4%~^35^^6.25^^^
-~17352~^~1700~^~Veal, Australian, shank, hind, bone-in, separable lean and fat, raw~^~VEAL,AUSTRALIAN,SHANK,HIND,BONE-IN,LN & FAT,RAW~^^^^~Bone and connective tissue 31%~^31^^^^^
-~17353~^~1700~^~Lamb, Australian, ground, 85% lean / 15% fat, raw~^~LAMB,AUSTRALIAN,GROUND,85% LN / 15% FAT,RAW~^^^^^0^^6.25^^^
-~17354~^~1700~^~Lamb, New Zealand, imported, Intermuscular fat, cooked~^~LAMB,NZ,IMP,INTERMUSCULAR FAT,CKD~^^^^^0^^6.25^^^
-~17355~^~1700~^~Lamb, New Zealand, imported, Intermuscular fat, raw~^~LAMB,NZ,IMP,INTERMUSCULAR FAT,RAW~^^^^^0^^6.25^^^
-~17356~^~1700~^~Lamb, New Zealand, imported, subcutaneous fat, raw~^~LAMB,NZ,IMP,SUBCUTANEOUS FAT,RAW~^^^^^0^^6.25^^^
-~17357~^~1700~^~Lamb, New Zealand, imported, brains, cooked, soaked and fried~^~LAMB,NZ,IMP,BRAINS,CKD,SOAKED & FRIED~^^^^^0^^6.25^^^
-~17358~^~1700~^~Lamb, New Zealand, imported, brains, raw~^~LAMB,NZ,IMP,BRAINS,RAW~^^^^~Connective tissue 2%~^2^^6.25^^^
-~17359~^~1700~^~Lamb, New Zealand, imported, breast, separable lean only, cooked, braised~^~LAMB,NZ,IMP,BREAST,LN,CKD,BRSD~^^^^~Bone and connective tissue 28% Separable fat 37%~^65^^6.25^^^
-~17360~^~1700~^~Lamb, New Zealand, imported, breast, separable lean only, raw~^~LAMB,NZ,IMP,BREAST,LN,RAW~^^^^~Bone and connective tissue 26% Separable fat 39%~^65^^6.25^^^
-~17361~^~1700~^~Lamb, New Zealand, imported, chump, boneless, separable lean only, cooked, fast roasted~^~LAMB,NZ,IMP,CHUMP,BNLESS,LN,CKD,FAST RSTD~^^^^~Separable fat 21%~^21^^6.25^^^
-~17362~^~1700~^~Lamb, New Zealand, imported, subcutaneous fat, cooked~^~LAMB,NZ,IMP,SUBCUTANEOUS FAT,CKD~^^^^^0^^6.25^^^
-~17363~^~1700~^~Lamb, New Zealand, imported, chump, boneless, separable lean only, raw~^~LAMB,NZ,IMP,CHUMP,BNLESS,LN,RAW~^^^^~Connective tissue 1% Separable fat 22%~^23^^6.25^^^
-~17364~^~1700~^~Lamb, New Zealand, imported, kidney, cooked, soaked and fried~^~LAMB,NZ,IMP,KIDNEY,CKD,SOAKED & FRIED~^^^^~Connective tissue 5%~^5^^6.25^^^
-~17365~^~1700~^~Lamb, New Zealand, imported, flap, boneless, separable lean only, cooked, braised~^~LAMB,NZ,IMP,FLAP,BNLESS,LN,CKD,BRSD~^^^^~Connective tissue 1% Separable fat 34%~^35^^6.25^^^
-~17366~^~1700~^~Lamb, New Zealand, imported, flap, boneless, separable lean only, raw~^~LAMB,NZ,IMP,FLAP,BNLESS,LN,RAW~^^^^~Separable fat 32%~^32^^6.25^^^
-~17367~^~1700~^~Lamb, New Zealand, imported, kidney, raw~^~LAMB,NZ,IMP,KIDNEY,RAW~^^^^~Connectiv tissue 4%~^4^^6.25^^^
-~17368~^~1700~^~Lamb, New Zealand, imported, liver, cooked, soaked and fried~^~LAMB,NZ,IMP,LIVER,CKD,SOAKED & FRIED~^^^^~Connective tissue 1%~^1^^6.25^^^
-~17369~^~1700~^~Lamb, New Zealand, imported, liver, raw~^~LAMB,NZ,IMP,LIVER,RAW~^^^^^0^^6.25^^^
-~17370~^~1700~^~Lamb, New Zealand, imported, ground lamb, cooked, braised~^~LAMB,NZ,IMP,GROUND LAMB,CKD,BRSD~^^^^^^^6.25^^^
-~17371~^~1700~^~Lamb, New Zealand, imported, ground lamb, raw~^~LAMB,NZ,IMP,GROUND LAMB,RAW~^^^^^^^6.25^^^
-~17372~^~1700~^~Lamb, New Zealand, imported, heart, cooked, soaked and simmered~^~LAMB,NZ,IMP,HEART,CKD,SOAKED & SIMMRD~^^^^~Connective tissue 11% Separable fat 17%~^28^^6.25^^^
-~17373~^~1700~^~Lamb, New Zealand, imported, heart, raw~^~LAMB,NZ,IMP,HEART,RAW~^^^^~Connective tissue 10% Separable fat 14%~^24^^6.25^^^
-~17374~^~1700~^~Lamb, New Zealand, imported, sweetbread, cooked, soaked and simmered~^~LAMB,NZ,IMP,SWEETBREAD,CKD,SOAKED & SIMMRD~^^^^~Separable fat 3%~^3^^6.25^^^
-~17375~^~1700~^~Lamb, New Zealand, imported, sweetbread, raw~^~LAMB,NZ,IMP,SWEETBREAD,RAW~^^^^~Separable fat 3%~^3^^6.25^^^
-~17376~^~1700~^~Lamb, New Zealand, imported, testes, cooked, soaked and fried~^~LAMB,NZ,IMP,TESTES,CKD,SOAKED & FRIED~^^^^~Connective tissue 25%~^25^^6.25^^^
-~17377~^~1700~^~Lamb, New Zealand, imported, testes, raw~^~LAMB,NZ,IMP,TESTES,RAW~^^^^~Connective tissue 17%~^17^^6.25^^^
-~17378~^~1700~^~Lamb, New Zealand, imported, tongue - swiss cut, cooked, soaked and simmered~^~LAMB,NZ,IMP,TONGUE - SWISS CUT,CKD,SOAKED & SIMMRD~^^^^~Connective tissue 12% Separable fat 6%~^18^^6.25^^^
-~17379~^~1700~^~Lamb, New Zealand, imported, tongue - swiss cut, raw~^~LAMB,NZ,IMP,TONGUE - SWISS CUT,RAW~^^^^~Connective tissue 18% Separable fat 8%~^26^^6.25^^^
-~17380~^~1700~^~Lamb, New Zealand, imported, tunnel-boned leg, chump off, shank off, separable lean only, cooked, slow roasted~^~LAMB,NZ,IMP,TUNNEL-BNED LG,CHMP OFF,SHNK OFF,LN,CKD,SLW RSTD~^^^^~Separable fat 10%~^10^^6.25^^^
-~17381~^~1700~^~Lamb, New Zealand, imported, tunnel-boned leg, chump off, shank off, separable lean only, raw~^~LAMB,NZ,IMP,TUNNEL-BONED LEG,CHUMP OFF,SHANK OFF,LN,RAW~^^^^~Separable fat 15%~^15^^6.25^^^
-~17382~^~1700~^~Lamb, New Zealand, imported, square-cut shoulder chops, separable lean only, cooked, braised~^~LAMB,NZ,IMP,SQUARE-CUT SHLDR CHOPS,LN,CKD,BRSD~^^^^~Bone and connective tissue 26% Separable fat 13%~^39^^6.25^^^
-~17383~^~1700~^~Lamb, New Zealand, imported, square-cut shoulder chops, separable lean only, raw~^~LAMB,NZ,IMP,SQUARE-CUT SHLDR CHOPS,LN,RAW~^^^^~Bone and connective tissue 23% Separable fat 17%~^40^^6.25^^^
-~17384~^~1700~^~Lamb, New Zealand, imported, tenderloin, separable lean only, cooked, fast fried~^~LAMB,NZ,IMP,TENDERLOIN,LN,CKD,FAST FRIED~^^^^^0^^6.25^^^
-~17385~^~1700~^~Lamb, New Zealand, imported, tenderloin, separable lean only, raw~^~LAMB,NZ,IMP,TENDERLOIN,LN,RAW~^^^^~Separable fat 1%~^1^^6.25^^^
-~17386~^~1700~^~Lamb, New Zealand, imported, loin saddle, separable lean only, cooked, fast roasted~^~LAMB,NZ,IMP,LOIN SADDLE,LN,CKD,FAST RSTD~^^^^~Bone and connective tissue 25% Separable fat 17%~^42^^6.25^^^
-~17387~^~1700~^~Lamb, New Zealand, imported, loin saddle, separable lean only, raw~^~LAMB,NZ,IMP,LOIN SADDLE,LN,RAW~^^^^~Bone and connective tissue 24% Separable fat 19%~^43^^6.25^^^
-~17388~^~1700~^~Lamb, New Zealand, imported, loin, boneless, separable lean only, cooked, fast roasted~^~LAMB,NZ,IMP,LOIN,BNLESS,LN,CKD,FAST RSTD~^^^^^0^^6.25^^^
-~17389~^~1700~^~Lamb, New Zealand, imported, loin, boneless, separable lean only, raw~^~LAMB,NZ,IMP,LOIN,BNLESS,LN,RAW~^^^^^0^^6.25^^^
-~17390~^~1700~^~Lamb, New Zealand, imported, hind-shank, separable lean only, cooked, braised~^~LAMB,NZ,IMP,HIND-SHANK,LN,CKD,BRSD~^^^^~Bone and connective tissue 34% Separable fat 7%~^41^^6.25^^^
-~17391~^~1700~^~Lamb, New Zealand, imported, hind-shank, separable lean only, raw~^~LAMB,NZ,IMP,HIND-SHANK,LN,RAW~^^^^~Bone and connective tissue 28% Separable fat 9%~^37^^6.25^^^
-~17392~^~1700~^~Lamb, New Zealand, imported, neck chops, separable lean only, raw~^~LAMB,NZ,IMP,NECK CHOPS,LN,RAW~^^^^~Bone and connective tissue 32% Separable fat 10%~^42^^6.25^^^
-~17393~^~1700~^~Lamb, New Zealand, imported, neck chops, separable lean only, cooked, braised~^~LAMB,NZ,IMP,NECK CHOPS,LN,CKD,BRSD~^^^^~Bone and connective tissue 34% Separable fat 8%~^42^^6.25^^^
-~17394~^~1700~^~Lamb, New Zealand, imported, netted shoulder, rolled, boneless, separable lean only, cooked, slow roasted~^~LAMB,NZ,IMP,NETTED SHLDR,ROLLED,BNLESS,LN,CKD,SLOW RSTD~^^^^~Connective tissue 3% Separable fat 20%~^23^^6.25^^^
-~17395~^~1700~^~Lamb, New Zealand, imported, netted shoulder, rolled, boneless, separable lean only, raw~^~LAMB,NZ,IMP,NETTED SHLDR,ROLLED,BNLESS,LN,RAW~^^^^~Connective tissue 3% Separable fat 20%~^23^^6.25^^^
-~17396~^~1700~^~Lamb, New Zealand, imported, rack - fully frenched, separable lean only, cooked, fast roasted~^~LAMB,NZ,IMP,RACK - FULLY FRENCHED,LN,CKD,FAST RSTD~^^^^~Bone and connective tissue 25% Separable fat 4%~^29^^6.25^^^
-~17397~^~1700~^~Lamb, New Zealand, imported, rack - fully frenched, separable lean only, raw~^~LAMB,NZ,IMP,RACK - FULLY FRENCHED,LN,RAW~^^^^~Bone and connective tissue 27% Separable fat 3%~^30^^6.25^^^
-~17398~^~1700~^~Lamb, New Zealand, imported, loin chop, separable lean only, cooked, fast fried~^~LAMB,NZ,IMP,LOIN CHOP,LN,CKD,FAST FRIED~^^^^~Bone and connective tissue 22% Separable fat 22%~^44^^6.25^^^
-~17399~^~1700~^~Lamb, New Zealand, imported, square-cut shoulder, separable lean only, cooked, slow roasted~^~LAMB,NZ,IMP,SQUARE-CUT SHLDR,LN,CKD,SLOW RSTD~^^^^~Bone and connective tissue 27% Separable fat 18%~^45^^6.25^^^
-~17400~^~1700~^~Lamb, New Zealand, imported, leg chop/steak, bone-in, separable lean only, cooked, fast fried~^~LAMB,NZ,IMP,LEG CHOP/STEAK,BONE-IN,LN,CKD,FAST FRIED~^^^^~Bone and connective tissue 12% Separable fat 9%~^21^^6.25^^^
-~17401~^~1700~^~Lamb, New Zealand, imported, flap, boneless, separable lean and fat, cooked, braised~^~LAMB,NZ,IMP,FLAP,BNLESS,LN & FAT,CKD,BRSD~^^^^~Connective tissue 1%~^1^^^^^
-~17402~^~1700~^~Lamb, New Zealand, imported, flap, boneless, separable lean and fat, raw~^~LAMB,NZ,IMP,FLAP,BNLESS,LN & FAT,RAW~^^^^^0^^^^^
-~17403~^~1700~^~Lamb, New Zealand, imported, hind-shank, separable lean and fat, cooked, braised~^~LAMB,NZ,IMP,HIND-SHANK,LN & FAT,CKD,BRSD~^^^^~Bone and connective tissue 34%~^34^^^^^
-~17404~^~1700~^~Lamb, New Zealand, imported, hind-shank, separable lean and fat, raw~^~LAMB,NZ,IMP,HIND-SHANK,LN & FAT,RAW~^^^^~Bone and connective tissue 29%~^29^^^^^
-~17405~^~1700~^~Lamb, New Zealand, imported, leg chop/steak, bone-in, separable lean and fat, cooked, fast fried~^~LAMB,NZ,IMP,LEG CHOP/STEAK,BONE-IN,LN & FAT,CKD,FAST FRIED~^^^^~Bone and connective tissue 12%~^12^^^^^
-~17406~^~1700~^~Lamb, New Zealand, imported, loin chop, separable lean and fat, cooked, fast fried~^~LAMB,NZ,IMP,LOIN CHOP,LN & FAT,CKD,FAST FRIED~^^^^~Bone and connective tissue 22%~^22^^^^^
-~17407~^~1700~^~Lamb, New Zealand, imported, loin saddle, separable lean and fat, cooked, fast roasted~^~LAMB,NZ,IMP,LOIN SADDLE,LN & FAT,CKD,FAST RSTD~^^^^~Bone and connective tissue 25%~^25^^^^^
-~17408~^~1700~^~Lamb, New Zealand, imported, loin saddle, separable lean and fat, raw~^~LAMB,NZ,IMP,LOIN SADDLE,LN & FAT,RAW~^^^^~Bone and connective tissue 24%~^24^^^^^
-~17409~^~1700~^~Lamb, New Zealand, imported, loin, boneless, separable lean and fat, cooked, fast roasted~^~LAMB,NZ,IMP,LOIN,BNLESS,LN & FAT,CKD,FAST RSTD~^^^^^0^^^^^
-~17410~^~1700~^~Lamb, New Zealand, imported, loin, boneless, separable lean and fat, raw~^~LAMB,NZ,IMP,LOIN,BNLESS,LN & FAT,RAW~^^^^^0^^^^^
-~17411~^~1700~^~Lamb, New Zealand, imported, neck chops, separable lean and fat, cooked, braised~^~LAMB,NZ,IMP,NECK CHOPS,LN & FAT,CKD,BRSD~^^^^~Bone and connective tissue 34%~^34^^^^^
-~17412~^~1700~^~Lamb, New Zealand, imported, neck chops, separable lean and fat, raw~^~LAMB,NZ,IMP,NECK CHOPS,LN & FAT,RAW~^^^^~Bone and connective tissue 32%~^32^^^^^
-~17413~^~1700~^~Lamb, New Zealand, imported, netted shoulder, rolled, boneless, separable lean and fat, cooked, slow roasted~^~LAMB,NZ,IMP,NETTED SHLDR,ROLLED,BNLESS,L & F,CKD,SLOW RSTD~^^^^~Connective tissue 2%~^2^^^^^
-~17414~^~1700~^~Lamb, New Zealand, imported, netted shoulder, rolled, boneless, separable lean and fat, raw~^~LAMB,NZ,IMP,NETTED SHLDR,ROLLED,BNLESS,LN & FAT,RAW~^^^^~Connective tissue 2%~^2^^^^^
-~17415~^~1700~^~Lamb, New Zealand, imported, square-cut shoulder chops, separable lean and fat, cooked, braised~^~LAMB,NZ,IMP,SQUARE-CUT SHLDR CHOPS,LN & FAT,CKD,BRSD~^^^^~Bone and connective tissue26~^26^^^^^
-~17416~^~1700~^~Lamb, New Zealand, imported, square-cut shoulder chops, separable lean and fat, raw~^~LAMB,NZ,IMP,SQUARE-CUT SHLDR CHOPS,LN & FAT,RAW~^^^^~Bone and connective tissue 23%~^23^^^^^
-~17417~^~1700~^~Lamb, New Zealand, imported, square-cut shoulder, separable lean and fat, cooked, slow roasted~^~LAMB,NZ,IMP,SQUARE-CUT SHLDR,LN & FAT,CKD,SLOW RSTD~^^^^~Bone and connective tissue 27%~^27^^^^^
-~17418~^~1700~^~Lamb, New Zealand, imported, tenderloin, separable lean and fat, cooked, fast fried~^~LAMB,NZ,IMP,TENDERLOIN,LN & FAT,CKD,FAST FRIED~^^^^^0^^^^^
-~17419~^~1700~^~Lamb, New Zealand, imported, rack - fully frenched, separable lean and fat, cooked, fast roasted~^~LAMB,NZ,IMP,RACK - FULLY FRENCHED,LN & FAT,CKD,FAST RSTD~^^^^~Bone and connective tissue 25%~^25^^^^^
-~17420~^~1700~^~Lamb, New Zealand, imported, rack - fully frenched, separable lean and fat, raw~^~LAMB,NZ,IMP,RACK - FULLY FRENCHED,LN & FAT,RAW~^^^^~Bone and connective tissue 26%~^26^^^^^
-~17421~^~1700~^~Lamb, New Zealand, imported, tunnel-boned leg, chump off, shank off, separable lean and fat, cooked, slow roasted~^~LAMB,NZ,IMP,TUN-BND LG,CHMP OFF,SHNK OFF,L & F,CKD,SL RSTD~^^^^^0^^^^^
-~17422~^~1700~^~Lamb, New Zealand, imported, tunnel-boned leg, chump off, shank off, separable lean and fat, raw~^~LAMB,NZ,IMP,TUNNEL-BONED LG,CHUMP OFF,SHANK OFF,LN & FAT,RAW~^^^^^0^^6.25^^^
-~17423~^~1700~^~Lamb, New Zealand, imported, tenderloin, separable lean and fat, raw~^~LAMB,NZ,IMP,TENDERLOIN,LN & FAT,RAW~^^^^^0^^^^^
-~17424~^~1700~^~Veal, ground, cooked, pan-fried~^~VEAL,GROUND,CKD,PAN-FRIED~^~IMPS 396~^^^^^^^^^
-~17425~^~1700~^~Veal, leg, top round, cap off, cutlet, boneless, cooked, grilled~^~VEAL,LEG,TOP RND,CAP OFF,CUTLET,BNLESS,CKD,GRILLED~^~IMPS#1336~^^^^0^^^^^
-~17426~^~1700~^~Veal, leg, top round, cap off, cutlet, boneless, raw~^~VEAL,LEG,TOP RND,CAP OFF,CUTLET,BNLESS,RAW~^~IMPS# 1336~^^^^0^^^^^
-~17427~^~1700~^~Veal, loin, chop, separable lean only, cooked, grilled~^~VEAL,LOIN,CHOP,LN,CKD,GRILLED~^~IMPS #1332~^^^~Bone and connective tissue 30%, separable fat 8%~^38^^^^^
-~17428~^~1700~^~Veal, shank, separable lean only, raw~^~VEAL,SHANK,LN,RAW~^~IMPS #312~^^^~Bone and connective tissue 48%, separable fat 3%~^51^^^^^
-~17429~^~1700~^~Veal, foreshank, osso buco, separable lean only, cooked, braised~^~VEAL,FORESHANK,OSSO BUCO,LN,CKD,BRSD~^~IMPS # 1312~^^^~Bone and connective tissue 47%, separable fat 4%~^51^^^^^
-~17430~^~1700~^~Veal, shoulder, blade chop, separable lean only, cooked, grilled~^~VEAL,SHLDR,BLADE CHOP,LN,CKD,GRILLED~^~IMPS #1309A~^^^~Bone and connective tissue 25%, separable fat 8%~^33^^^^^
-~17431~^~1700~^~Veal, external fat only, raw~^~VEAL,EXTERNAL FAT ONLY,RAW~^^^^^^^^^^
-~17432~^~1700~^~Veal, external fat only, cooked~^~VEAL,EXTERNAL FAT ONLY,CKD~^^^^^^^^^^
-~17433~^~1700~^~Veal, seam fat only, raw~^~VEAL,SEAM FAT ONLY,RAW~^^^^^^^^^^
-~17434~^~1700~^~Veal, seam fat only, cooked~^~VEAL,SEAM FAT ONLY,CKD~^^^^^^^^^^
-~17435~^~1700~^~Veal, shank, separable lean and fat, raw~^~VEAL,SHANK,LN & FAT,RAW~^~IMPS# 312~^^^~Bone and connective tissue 49%~^49^^^^^
-~17436~^~1700~^~Veal, foreshank, osso buco, separable lean and fat, cooked, braised~^~VEAL,FORESHANK,OSSO BUCO,LN & FAT,CKD,BRSD~^~IMPS# 1312~^^^~Bone and connective tissue 47%~^47^^^^^
-~17437~^~1700~^~Veal, loin, chop, separable lean and fat, cooked, grilled~^~VEAL,LOIN,CHOP,LN & FAT,CKD,GRILLED~^~IMPS # 1332~^^^~Bone and connective tissue 30%~^30^^^^^
-~17438~^~1700~^~Veal, shoulder, blade chop, separable lean and fat, cooked, grilled~^~VEAL,SHLDR,BLADE CHOP,LN & FAT,CKD,GRILLED~^~IMPS# 1309A~^^^~Bone and connective tissue 25%~^25^^^^^
-~17439~^~1700~^~Lamb, Australian, imported, fresh, leg, bottom, boneless, separable lean only, trimmed to 1/8" fat, cooked, roasted~^~LAMB,AUS,IMP,FRSH,LEG,BTTM,BNLESS,LN,1/8" FAT,CKD,RSTD~^~URMIS # 2973~^^^~Connective tissue 7%, Separable fat 7%~^14^^^^^
-~17440~^~1700~^~Lamb, Australian, imported, fresh, leg, hindshank, heel on, bone-in, separable lean only, trimmed to 1/8" fat, cooked, braised~^~LAMB,AUS,FRSH,LEG,HINDSHANK,HEEL ON,BONE-IN,LN,1/8",BRSD~^~URMIS # 2969~^^^~Separable fat 4%, Bone and connective tissue 50%~^54^^^^^
-~17441~^~1700~^~Lamb, Australian, imported, fresh, leg, hindshank, heel on, bone-in, separable lean only, trimmed to 1/8" fat, raw~^~LAMB,AUS,FRSH,LEG,HINDSHANK,HEEL ON,BONE-IN,LN,1/8" FAT,RAW~^~URMIS # 2969~^^^~Bone and connective tissue 40%, Separable fat 12%~^52^^^^^
-~17442~^~1700~^~Lamb, Australian, imported, fresh, tenderloin, boneless, separable lean only, trimmed to 1/8" fat, cooked, roasted~^~LAMB,AUS,IMP,FRSH,TENDERLOIN,BNLESS,LN,1/8" FAT,CKD,RSTD~^~URMIS #2961~^^^~Separable fat 1%~^1^^^^^
-~17443~^~1700~^~Lamb, Australian, imported, fresh, tenderloin, boneless, separable lean only, trimmed to 1/8" fat, raw~^~LAMB,AUSTRALIAN,IMP,FRSH,TENDERLOIN,BNLESS,LN,1/8" FAT,RAW~^~URMIS #2961~^^^~Connective tissue 1%, Separable fat 2%~^3^^^^^
-~17444~^~1700~^~Lamb, Australian, imported, fresh, leg, bottom, boneless, separable lean only, trimmed to 1/8" fat, raw~^~LAMB,AUSTRALIAN,IMP,FRSH,LEG,BTTM,BNLESS,LN,1/8" FAT,RAW~^~URMIS # 2973~^^^~Connective tissue 5%, Separable fat 14%~^19^^^^^
-~17445~^~1700~^~Lamb, Australian, imported, fresh, leg, trotter off, bone-in, separable lean only, trimmed to 1/8" fat, cooked, roasted~^~LAMB,AUS,FRSH,LEG,TROTTER OFF,BONE-IN,LN,1/8" FAT,CKD,RSTD~^~URMIS # 2994~^^^~Bone and connective tissue 29%, Separable fat 6%~^35^^^^^
-~17446~^~1700~^~Lamb, Australian, imported, fresh, leg, trotter off, bone-in, separable lean only, trimmed to 1/8" fat, raw~^~LAMB,AUS,IMP,FRSH,LEG,TROTTER OFF,BONE-IN,LN,1/8" FAT,RAW~^~URMIS # 2994~^^^~Bone and connective tissue 21%, Separable fat 10%~^31^^^^^
-~17447~^~1700~^~Lamb, Australian, imported, fresh, rack, roast, frenched, denuded, bone-in, separable lean only, trimmed to 0" fat, cooked, roasted~^~LAMB,AUS,FRSH,RACK,RST,FRNCHED,DNUDED,BONE-IN,LN,0",CKD,RSTD~^^^^~Bone and connective tissue 28%, Separable fat 11%~^39^^^^^
-~17448~^~1700~^~Lamb, Australian, imported, fresh, rack, roast, frenched, bone-in, separable lean only, trimmed to 1/8" fat, cooked, roasted~^~LAMB,AUS,FRSH,RACK,RST,FRENCHED,BONE-IN,LN,1/8" FAT,CKD,RSTD~^~URMIS #2945~^^^~Bone and connective tissue 37%, Separable fat 10%~^47^^^^^
-~17449~^~1700~^~Lamb, Australian, imported, fresh, external fat, cooked~^~LAMB,AUSTRALIAN,IMP,FRSH,EXTERNAL FAT,CKD~^^^^^0^^6.25^^^
-~17450~^~1700~^~Lamb, Australian, imported, fresh, external fat, raw~^~LAMB,AUSTRALIAN,IMP,FRSH,EXTERNAL FAT,RAW~^^^^^0^^6.25^^^
-~17451~^~1700~^~Lamb, Australian, imported, fresh, seam fat, cooked~^~LAMB,AUSTRALIAN,IMP,FRSH,SEAM FAT,CKD~^^^^^0^^6.25^^^
-~17452~^~1700~^~Lamb, Australian, imported, fresh, seam fat, raw~^~LAMB,AUSTRALIAN,IMP,FRSH,SEAM FAT,RAW~^^^^^0^^6.25^^^
-~17453~^~1700~^~Lamb, Australian, imported, fresh, leg, bottom, boneless, separable lean and fat, trimmed to 1/8" fat, cooked, roasted~^~LAMB,AUS,IMP,FRSH,LEG,BTTM,BNLESS,LN & FAT,1/8" FAT,CKD,RSTD~^~URMIS #2973~^^^~Connective tissue 7%~^7^^^^^
-~17454~^~1700~^~Lamb, Australian, imported, fresh, leg, bottom, boneless, separable lean and fat, trimmed to 1/8" fat, raw~^~LAMB,AUS,IMP,FRSH,LEG,BTTM,BNLESS,LN & FAT,1/8" FAT,RAW~^~URMIS #2973~^^^~Connective tissue 5%~^5^^^^^
-~17455~^~1700~^~Lamb, Australian, imported, fresh, leg, hindshank, heel on, bone-in, separable lean and fat, trimmed to 1/8" fat, cooked, braised~^~LAMB,AUS,FRSH,LEG,HINDSHANK,HEEL ON,BNE-IN,LN & FT,1/8",BRSD~^~URMIS #2969~^^^~Bone and connective tissue 50%~^50^^^^^
-~17456~^~1700~^~Lamb, Australian, imported, fresh, leg, hindshank, heel on, bone-in, separable lean and fat, trimmed to 1/8" fat, raw~^~LAMB,AUS,FRSH,LEG,HINDSHANK,HEEL ON,BNE-IN,LN & FAT,1/8",RAW~^~URMIS #2969~^^^~Bone and connective tissue 40%~^40^^^^^
-~17457~^~1700~^~Lamb, Australian, imported, fresh, leg, trotter off, bone-in, separable lean and fat, trimmed to 1/8" fat, cooked, roasted~^~LAMB,AUS,FRSH,LEG,TROTTER OFF,BONE-IN,LN & FAT,1/8" FAT,RSTD~^~URMIS #2994~^^^~Bone and connective tissue 29%~^29^^^^^
-~17458~^~1700~^~Lamb, Australian, imported, fresh, leg, trotter off, bone-in, separable lean and fat, trimmed to 1/8" fat, raw~^~LAMB,AUS,FRSH,LEG,TROTTER OFF,BONE-IN,LN & FAT,1/8" FAT,RAW~^~URMIS #2994~^^^~Bone and connective tissue 21%~^21^^^^^
-~17459~^~1700~^~Lamb, Australian, imported, fresh, tenderloin, boneless, separable lean and fat, trimmed to 1/8" fat, cooked, roasted~^~LAMB,AUS,IMP,FRSH,TENDERLOIN,BNLESS,LN & FAT,1/8" FAT,RSTD~^~URMIS #2961~^^^^0^^^^^
-~17460~^~1700~^~Lamb, Australian, imported, fresh, tenderloin, boneless, separable lean and fat, trimmed to 1/8" fat, raw~^~LAMB,AUS,IMP,FRSH,TENDERLOIN,BNLESS,LN & FAT,1/8" FAT,RAW~^~URMIS #2961~^^^~Connective tissue 1%~^1^^^^^
-~17461~^~1700~^~Lamb, Australian, imported, fresh, rib chop, frenched, denuded, bone-in, separable lean only, trimmed to 0" fat, cooked, grilled~^~LAMB,AUS,FRSH,RIB CHOP,FRNCHED,DNUDED,BONE-IN,LN,0",GRILLED~^^^^~Bone and connective tissue 36%, Separable fat 8%~^44^^^^^
-~17462~^~1700~^~Lamb, Australian, imported, fresh, rack, roast, frenched, denuded, bone-in, separable lean and fat, trimmed to 0" fat, cooked, roasted~^~LAMB,AUS,FRSH,RACK,RST,FRNCHED,DNUDED,BNE-IN,LN & FT,0",RSTD~^^^^~Bone and connective tissue 28%~^28^^^^^
-~17463~^~1700~^~Lamb, Australian, imported, fresh, rack, roast, frenched, bone-in, separable lean and fat, trimmed to 1/8" fat, cooked, roasted~^~LAMB,AUS,FRSH,RACK,RST,FRENCHED,BNE-IN,LN & FT,1/8",RSTD~^~URMIS #2945~^^^~Bone and connective tissue 37%~^37^^^^^
-~17464~^~1700~^~Lamb, Australian, imported, fresh, rib chop, frenched, denuded, bone-in, separable lean and fat, trimmed to 0" fat, cooked, grilled~^~LAMB,AUS,IMP,FRSH,RIB CHOP,FRENCHED,DNUDED,BN-IN,L&F,0",GRLD~^^^^~Bone and connective tissue 36%~^36^^^^^
-~18001~^~1800~^~Bagels, plain, enriched, with calcium propionate (includes onion, poppy, sesame)~^~BAGEL,PLN,TSTD, ENR W/CA PROP(INCLUDE ONION,POPPY,SESAME)~^^^~Y~^^0^^6.25^^^
-~18002~^~1800~^~Bagels, plain, enriched, with calcium propionate (includes onion, poppy, sesame), toasted~^~BAGELS,PLN,ENR,W/ CA PROP (INCLUDES ONION,POPPY,SESAME),TSTD~^^^~Y~^^0^^^^^
-~18003~^~1800~^~Bagels, egg~^~BAGELS,EGG~^^^^^0^^5.70^4.00^8.60^4.10
-~18005~^~1800~^~Bagels, cinnamon-raisin~^~BAGELS,CINNAMON-RAISIN~^^^~Y~^^0^^5.80^3.90^8.40^4.00
-~18006~^~1800~^~Bagels, cinnamon-raisin, toasted~^~BAGELS,CINNAMON-RAISIN,TSTD~^^^~Y~^^0^^0.00^^^
-~18007~^~1800~^~Bagels, oat bran~^~BAGELS,OAT BRAN~^^^~Y~^^0^^5.80^3.50^8.40^3.90
-~18009~^~1800~^~Biscuits, plain or buttermilk, frozen, baked~^~BISCUITS,PLN OR BTTRMLK,FRZ,BKD~^^^~Y~^^0^^5.80^4.10^8.80^4.00
-~18010~^~1800~^~Biscuits, plain or buttermilk, dry mix~^~BISCUITS,PLN OR BTTRMLK,DRY MIX~^^^~Y~^^0^^5.80^4.10^8.80^4.10
-~18011~^~1800~^~Biscuits, plain or buttermilk, dry mix, prepared~^~BISCUITS,PLN OR BTTRMLK,DRY MIX,PREP~^^^^^0^^^^^
-~18012~^~1800~^~Biscuits, plain or buttermilk, refrigerated dough, lower fat~^~BISCUITS,PLN OR BTTRMLK,REFR DOUGH,LOWER FAT~^^^~Y~^^0^^5.70^4.00^8.80^4.00
-~18013~^~1800~^~Biscuits, plain or buttermilk, refrigerated dough, lower fat, baked~^~BISCUITS,PLN OR BTTRMLK,REFR DOUGH,LOWER FAT,BKD~^^^~Y~^^0^^0.00^^^
-~18014~^~1800~^~Biscuits, plain or buttermilk, refrigerated dough, higher fat~^~BISCUIT, PLN OR BUTMLK, REFRI DOUGH, HIGHER FAT~^^^^^0^^^^^
-~18015~^~1800~^~Biscuits, plain or buttermilk, refrigerated dough, higher fat, baked~^~BISCUITS,PLN OR BTTRMLK,REFR DOUGH,HIGHER FAT,BKD~^^^~Y~^^0^^^^^
-~18016~^~1800~^~Biscuits, plain or buttermilk, prepared from recipe~^~BISCUITS,PLN OR BTTRMLK,PREP FROM RECIPE~^^^^^0^^0.00^^^
-~18017~^~1800~^~Biscuits, mixed grain, refrigerated dough~^~BISCUITS,MXD GRAIN,REFR DOUGH~^^^^^0^^5.70^3.90^8.80^4.00
-~18019~^~1800~^~Bread, banana, prepared from recipe, made with margarine~^~BREAD,BANANA,PREP FROM RECIPE,MADE W/MARGARINE~^^^^^0^^0.00^^^
-~18021~^~1800~^~Bread, boston brown, canned~^~BREAD,BOSTON BROWN,CANNED~^^^~Y~^^0^^5.90^3.50^8.40^3.80
-~18022~^~1800~^~Bread, cornbread, dry mix, enriched (includes corn muffin mix)~^~BREAD,CORNBREAD,DRY MIX,ENR (INCL CORN MUFFIN MIX)~^^^~Y~^^0^^6.00^3.80^8.80^4.10
-~18023~^~1800~^~Bread, cornbread, dry mix, prepared with 2% milk, 80% margarine, and eggs~^~BREAD,CORNBREAD,DRY MIX,PREP W/ 2% MILK,80% MARGARINE,& EGGS~^^^~Y~^^0^^6.25^^^
-~18024~^~1800~^~Bread, cornbread, prepared from recipe, made with low fat (2%) milk~^~BREAD,CORNBREAD,PREP FROM RECIPE,MADE W/LOFAT (2%) MILK~^^^^^0^^0.00^^^
-~18025~^~1800~^~Bread, cracked-wheat~^~BREAD,CRACKED-WHEAT~^^^^^0^^5.80^3.80^8.80^3.90
-~18027~^~1800~^~Bread, egg~^~BREAD,EGG~^^^~Y~^^0^^0.00^^^
-~18028~^~1800~^~Bread, egg, toasted~^~BREAD,EGG,TOASTED~^^^~Y~^^0^^0.00^^^
-~18029~^~1800~^~Bread, french or vienna (includes sourdough)~^~Bread, french~^^^~Y~^^0^^^^^
-~18030~^~1800~^~Bread, french or vienna, toasted (includes sourdough)~^~BREAD, FRENCH OR VIENNA, TSTD (IND SOURDOUGH)~^^^~Y~^^0^^^^^
-~18032~^~1800~^~Bread, irish soda, prepared from recipe~^~BREAD,IRISH SODA,PREP FROM RECIPE~^^^^^0^^^^^
-~18033~^~1800~^~Bread, Italian~^~BREAD,ITALIAN~^^^~Y~^^0^^5.70^4.00^8.70^4.10
-~18036~^~1800~^~Bread, multi-grain, toasted (includes whole-grain)~^~BREAD,MULTI-GRAIN,TSTD (INCLUDES WHOLE-GRAIN)~^^^~Y~^^0^^^^^
-~18037~^~1800~^~Bread, oat bran~^~BREAD,OAT BRAN~^^^~Y~^^0^^5.80^3.70^8.70^4.00
-~18038~^~1800~^~Bread, oat bran, toasted~^~BREAD,OAT BRAN,TOASTED~^^^~Y~^^0^^0.00^^^
-~18039~^~1800~^~Bread, oatmeal~^~BREAD,OATMEAL~^^^~Y~^^0^^5.80^3.80^8.60^4.10
-~18040~^~1800~^~Bread, oatmeal, toasted~^~BREAD,OATMEAL,TOASTED~^^^~Y~^^0^^0.00^^^
-~18041~^~1800~^~Bread, pita, white, enriched~^~BREAD,PITA,WHITE,ENRICHED~^^^~Y~^^0^^5.70^4.00^8.40^4.10
-~18042~^~1800~^~Bread, pita, whole-wheat~^~BREAD,PITA,WHOLE-WHEAT~^^^~Y~^^0^^5.80^3.60^8.40^3.80
-~18043~^~1800~^~Bread, protein (includes gluten)~^~BREAD,PROT (INCL GLUTEN)~^^^~Y~^^0^^5.70^3.90^8.40^4.10
-~18044~^~1800~^~Bread, pumpernickel~^~BREAD,PUMPERNICKEL~^^^~Y~^^0^^5.80^3.70^8.70^4.00
-~18047~^~1800~^~Bread, raisin, enriched~^~BREAD,RAISIN,ENRICHED~^^^~Y~^^0^^5.80^3.90^8.80^3.90
-~18048~^~1800~^~Bread, raisin, enriched, toasted~^~BREAD,RAISIN,ENR,TSTD~^^^~Y~^^0^^0.00^^^
-~18049~^~1800~^~Bread, reduced-calorie, oat bran~^~BREAD,RED-CAL,OAT BRAN~^^^~Y~^^0^^5.80^3.60^8.60^3.50
-~18050~^~1800~^~Bread, reduced-calorie, oat bran, toasted~^~BREAD,RED-CAL,OAT BRAN,TSTD~^^^~Y~^^0^^0.00^^^
-~18051~^~1800~^~Bread, reduced-calorie, oatmeal~^~BREAD,RED-CAL,OATMEAL~^^^^^0^^5.80^3.90^8.40^3.50
-~18053~^~1800~^~Bread, reduced-calorie, rye~^~BREAD,REDUCED-CALORIE,RYE~^^^~Y~^^0^^5.80^4.00^8.60^3.50
-~18055~^~1800~^~Bread, reduced-calorie, wheat~^~BREAD,RED-CAL,WHEAT~^^^~Y~^^0^^5.80^3.90^8.40^3.30
-~18057~^~1800~^~Bread, reduced-calorie, white~^~BREAD,RED-CAL,WHITE~^^^~Y~^^0^^5.90^4.00^8.70^3.40
-~18059~^~1800~^~Bread, rice bran~^~BREAD,RICE BRAN~^^^~Y~^^0^^5.80^3.70^8.70^3.90
-~18060~^~1800~^~Bread, rye~^~BREAD,RYE~^^^~Y~^^0^^5.80^3.70^8.60^4.10
-~18061~^~1800~^~Bread, rye, toasted~^~BREAD,RYE,TOASTED~^^^~Y~^^0^^0.00^^^
-~18064~^~1800~^~Bread, wheat~^~BREAD,WHEAT~^^^~Y~^^0^^^^^
-~18065~^~1800~^~Bread, wheat, toasted~^~BREAD, WHEAT, TSTD~^^^~Y~^^0^^^^^
-~18069~^~1800~^~Bread, white, commercially prepared (includes soft bread crumbs)~^~BREAD,WHITE,COMMLY PREP (INCL SOFT BREAD CRUMBS)~^^^~Y~^^0^^6.25^3.90^8.70^4.10
-~18070~^~1800~^~Bread, white, commercially prepared, toasted~^~BREAD,WHITE,COMMLY PREP,TSTD~^^^~Y~^^0^^0.00^^^
-~18071~^~1800~^~Bread, white, prepared from recipe, made with nonfat dry milk~^~BREAD,WHITE,PREP FROM RECIPE,MADE W/NONFAT DRY MILK~^^^^^0^^0.00^^^
-~18073~^~1800~^~Bread, white, prepared from recipe, made with low fat (2%) milk~^~BREAD,WHITE,PREP FROM RECIPE,MADE W/LOFAT (2%) MILK~^^^^^0^^0.00^^^
-~18075~^~1800~^~Bread, whole-wheat, commercially prepared~^~BREAD,WHOLE-WHEAT,COMM. PREPARED~^^^~Y~^^0^^6.25^^^
-~18076~^~1800~^~Bread, whole-wheat, commercially prepared, toasted~^~BREAD, WHOLE-WHEAT, COMMER PREP, TOASTED~^^^~Y~^^0^^^^^
-~18077~^~1800~^~Bread, whole-wheat, prepared from recipe~^~BREAD,WHOLE-WHEAT,PREP FROM RECIPE~^^^~Y~^^0^^0.00^^^
-~18078~^~1800~^~Bread, whole-wheat, prepared from recipe, toasted~^~BREAD,WHOLE-WHEAT,PREP FROM RECIPE,TSTD~^^^~Y~^^0^^0.00^^^
-~18079~^~1800~^~Bread, crumbs, dry, grated, plain~^~BREAD,CRUMBS,DRY,GRATED,PLN~^^^~Y~^^0^^5.70^4.00^8.80^4.10
-~18080~^~1800~^~Bread, sticks, plain~^~BREAD,STKS,PLN~^^^~Y~^^0^^5.70^4.00^8.80^4.10
-~18081~^~1800~^~Bread, stuffing, dry mix~^~BREAD,STUFFING,DRY MIX~^^^~Y~^^0^^5.70^4.00^8.80^4.10
-~18082~^~1800~^~Bread, stuffing, dry mix, prepared~^~BREAD,STUFFING,DRY MIX,PREP~^^^~Y~^^0^^0.00^^^
-~18084~^~1800~^~Bread, stuffing, cornbread, dry mix~^~BREAD,STUFFING,CORNBREAD,DRY MIX~^^^^^0^^5.90^3.80^8.70^4.10
-~18085~^~1800~^~Bread, stuffing, cornbread, dry mix, prepared~^~BREAD,STUFFING,CORNBREAD,DRY MIX,PREP~^^^~Y~^^0^^0.00^^^
-~18086~^~1800~^~Cake, angelfood, commercially prepared~^~CAKE,ANGELFOOD,COMMLY PREP~^^^^^0^^6.10^4.30^8.40^3.90
-~18088~^~1800~^~Cake, angelfood, dry mix, prepared~^~CAKE,ANGELFOOD,DRY MIX,PREP~^^^~Y~^^0^^0.00^^^
-~18090~^~1800~^~Cake, boston cream pie, commercially prepared~^~CAKE,BOSTON CRM PIE,COMMLY PREP~^^^~Y~^^0^^6.00^4.00^8.80^3.90
-~18092~^~1800~^~Cake, pudding-type, carrot, dry mix~^~CAKE,PUDDING-TYPE,CARROT,DRY MIX~^^^^^0^^5.80^3.90^8.80^3.90
-~18095~^~1800~^~Cake, cherry fudge with chocolate frosting~^~CAKE,CHERRY FUDGE W/CHOC FRSTNG~^^^~Y~^^0^^6.10^3.90^8.80^3.80
-~18096~^~1800~^~Cake, chocolate, commercially prepared with chocolate frosting, in-store bakery~^~CAKE,CHOC,COMMLY PREP W/ CHOC FRSTNG,IN-STORE BAKERY~^^^~Y~^^0^^5.90^3.50^8.80^3.80
-~18097~^~1800~^~Cake, pudding-type, chocolate, dry mix~^~CAKE,PUDDING-TYPE,CHOC,DRY MIX~^^^~Y~^^0^^5.80^3.30^8.70^3.80
-~18101~^~1800~^~Cake, chocolate, prepared from recipe without frosting~^~CAKE,CHOC,PREP FROM RECIPE WO/FRSTNG~^^^^^0^^0.00^^^
-~18102~^~1800~^~Cake, white, prepared from recipe with coconut frosting~^~CAKE,WHITE,PREP FROM RECIPE W/COCNT FRSTNG~^^^~Y~^^0^^0.00^^^
-~18103~^~1800~^~Cake, coffeecake, cheese~^~CAKE,COFFEECAKE,CHS~^^^^^0^^6.00^4.00^8.80^4.00
-~18104~^~1800~^~Cake, coffeecake, cinnamon with crumb topping, commercially prepared, enriched~^~CAKE,COFFEECAKE,CINN W/ CRUMB TOPPING,COMMLY PREP,ENR~^^^^^0^^5.80^3.90^8.80^4.00
-~18105~^~1800~^~Cake, coffeecake, creme-filled with chocolate frosting~^~CAKE,COFFEECAKE,CREME-FILLED W/ CHOC FRSTNG~^^^^^0^^5.80^3.90^8.80^4.00
-~18106~^~1800~^~Cake, coffeecake, fruit~^~CAKE,COFFEECAKE,FRUIT~^^^^^0^^5.80^3.90^8.80^3.90
-~18108~^~1800~^~Cake, coffeecake, cinnamon with crumb topping, dry mix, prepared~^~CAKE,COFFEECAKE,CINN W/ CRUMB TOPPING,DRY MIX,PREP~^^^~Y~^^0^^0.00^^^
-~18110~^~1800~^~Cake, fruitcake, commercially prepared~^~CAKE,FRUITCAKE,COMMLY PREP~^^^~Y~^^0^^5.60^3.80^8.60^3.80
-~18114~^~1800~^~Cake, gingerbread, dry mix~^~CAKE,GINGERBREAD,DRY MIX~^^^~Y~^^0^^5.70^3.90^8.80^4.00
-~18116~^~1800~^~Cake, gingerbread, prepared from recipe~^~CAKE,GINGERBREAD,PREP FROM RECIPE~^^^^^0^^0.00^^^
-~18119~^~1800~^~Cake, pineapple upside-down, prepared from recipe~^~CAKE,PNAPPL UPSIDE-DOWN,PREP FROM RECIPE~^^^^^0^^0.00^^^
-~18120~^~1800~^~Cake, pound, commercially prepared, butter (includes fresh and frozen)~^~CAKE,POUND,COMMLY PREP,BUTTER (INCLUDES FRSH & FROZEN)~^^^~Y~^^0^^6.00^4.20^8.80^3.90
-~18121~^~1800~^~Cake, pound, commercially prepared, other than all butter, enriched~^~CAKE,POUND,COMMLY PREP,OTHER THAN ALL BUTTER,ENR~^^^^^0^^6.00^4.20^8.80^4.00
-~18126~^~1800~^~Cake, shortcake, biscuit-type, prepared from recipe~^~CAKE,SHORTCAKE,BISCUIT-TYPE,PREP FROM RECIPE~^^^^^0^^^^^
-~18127~^~1800~^~Cake, snack cakes, creme-filled, chocolate with frosting~^~CAKE,SNACK CAKES,CREME-FILLED,CHOC W/ FRSTNG~^^^~Y~^^0^^^^^
-~18128~^~1800~^~Cake, snack cakes, creme-filled, sponge~^~CAKE,SNACK CAKES,CREME-FILLED,SPONGE~^^^~Y~^^0^^^^^
-~18131~^~1800~^~Cake, white, dry mix, special dietary (includes lemon-flavored)~^~CAKE,WHITE,DRY MIX,SPL DIETARY (INCL LEMON-FLAVORED)~^^^^^0^^5.70^4.00^8.80^3.90
-~18133~^~1800~^~Cake, sponge, commercially prepared~^~CAKE,SPONGE,COMMLY PREP~^^^~Y~^^0^^0.00^^^
-~18134~^~1800~^~Cake, sponge, prepared from recipe~^~CAKE,SPONGE,PREP FROM RECIPE~^^^^^0^^0.00^^^
-~18135~^~1800~^~Cake, pudding-type, white, enriched, dry mix~^~CAKE,PUDDING-TYPE,WHITE,ENR,DRY MIX~^^^~Y~^^0^^5.80^4.10^8.80^4.00
-~18139~^~1800~^~Cake, white, prepared from recipe without frosting~^~CAKE,WHITE,PREP FROM RECIPE WO/FRSTNG~^^^^^0^^0.00^^^
-~18140~^~1800~^~Cake, yellow, commercially prepared, with chocolate frosting, in-store bakery~^~CAKE,YEL,COMMLY PREP,W/ CHOC FRSTNG,IN-STORE BAKERY~^^^~Y~^^0^^6.00^3.80^8.80^3.80
-~18141~^~1800~^~Cake, yellow, commercially prepared, with vanilla frosting~^~CAKE,YEL,COMMLY PREP,W/VANILLA FRSTNG~^^^~Y~^^0^^6.10^4.20^8.90^3.90
-~18142~^~1800~^~Cake, pudding-type, yellow, dry mix~^~CAKE,PUDDING-TYPE,YEL,DRY MIX~^^^~Y~^^0^^5.80^4.10^8.80^4.00
-~18144~^~1800~^~Cake, yellow, enriched, dry mix~^~CAKE,YEL,ENR,DRY MIX~^^^~Y~^^0^^5.90^4.10^8.80^4.00
-~18146~^~1800~^~Cake, yellow, prepared from recipe without frosting~^~CAKE,YEL,PREP FROM RECIPE WO/FRSTNG~^^^^^0^^0.00^^^
-~18147~^~1800~^~Cake, cheesecake, commercially prepared~^~CAKE,CHEESECAKE,COMMLY PREP~^^^~Y~^^0^^6.20^4.20^8.80^3.90
-~18148~^~1800~^~Cake, cheesecake, prepared from mix, no-bake type~^~CAKE,CHEESECAKE,PREP FROM MIX,NO-BAKE TYPE~^^^^^0^^6.20^4.20^8.80^3.90
-~18151~^~1800~^~Cookies, brownies, commercially prepared~^~COOKIES,BROWNIES,COMMLY PREP~^^^~Y~^^0^^5.90^3.90^8.80^3.80
-~18152~^~1800~^~Cookies, brownies, dry mix, regular~^~COOKIES,BROWNIES,DRY MIX,REG~^^^^^0^^5.60^3.00^8.70^3.80
-~18154~^~1800~^~Cookies, brownies, prepared from recipe~^~COOKIES,BROWNIES,PREP FROM RECIPE~^^^^^0^^0.00^^^
-~18155~^~1800~^~Cookies, butter, commercially prepared, enriched~^~COOKIES,BUTTER,COMMLY PREP,ENR~^^^~Y~^^0^^5.90^4.20^8.80^4.00
-~18156~^~1800~^~Cookies, fudge, cake-type (includes trolley cakes)~^~COOKIES,FUDGE,CAKE-TYPE (INCL TROLLEY CAKES)~^^^^^0^^5.70^3.60^8.70^3.80
-~18157~^~1800~^~Cookies, chocolate wafers~^~COOKIES,CHOCOLATE WAFERS~^^^~Y~^^0^^5.70^3.50^8.90^3.90
-~18158~^~1800~^~Cookies, chocolate chip, commercially prepared, regular, lower fat~^~COOKIES,CHOC CHIP,COMMLY PREP,REG,LOWER FAT~^^^~Y~^^0^^5.80^4.00^8.80^4.00
-~18159~^~1800~^~Cookies, chocolate chip, commercially prepared, regular, higher fat, enriched~^~COOKIES,CHOC CHIP,COMMLY PREP,REG,HIGHER FAT,ENR~^^^~Y~^^0^^5.80^3.90^8.80^3.90
-~18160~^~1800~^~Cookies, chocolate chip, commercially prepared, soft-type~^~COOKIES,CHOC CHIP,COMMLY PREP,SOFT-TYPE~^^^^^0^^5.80^3.80^8.80^3.90
-~18161~^~1800~^~Cookies, chocolate chip, dry mix~^~COOKIES,CHOC CHIP,DRY MIX~^^^^^0^^5.80^4.00^8.80^3.90
-~18163~^~1800~^~Cookies, chocolate chip, refrigerated dough~^~COOKIES,CHOC CHIP,REFR DOUGH~^^^^^0^^5.90^4.10^8.80^4.00
-~18164~^~1800~^~Cookies, chocolate chip, refrigerated dough, baked~^~COOKIES,CHOC CHIP,REFR DOUGH,BKD~^^^^^0^^^^^
-~18165~^~1800~^~Cookies, chocolate chip, prepared from recipe, made with margarine~^~COOKIES,CHOC CHIP,PREP FROM RECIPE,MADE W/MARGARINE~^^^^^0^^0.00^^^
-~18166~^~1800~^~Cookies, chocolate sandwich, with creme filling, regular~^~COOKIES,CHOC SNDWCH,W/CREME FILLING,REG~^^^~Y~^^0^^5.70^3.50^8.80^3.90
-~18167~^~1800~^~Cookies, chocolate sandwich, with creme filling, regular, chocolate-coated~^~COOKIES,CHOC SNDWCH,W/CREME FILLING,REG,CHOCOLATE-COATED~^^^~Y~^^0^^5.70^2.70^8.80^3.60
-~18168~^~1800~^~Cookies, chocolate sandwich, with extra creme filling~^~COOKIES,CHOC SNDWCH,W/EX CREME FILLING~^^^~Y~^^0^^5.70^3.60^8.80^3.90
-~18170~^~1800~^~Cookies, fig bars~^~COOKIES,FIG BARS~^^^~Y~^^0^^5.90^3.80^8.80^3.80
-~18171~^~1800~^~Cookies, fortune~^~COOKIES,FORTUNE~^^^~Y~^^0^^5.70^4.10^8.80^4.00
-~18172~^~1800~^~Cookies, gingersnaps~^~COOKIES,GINGERSNAPS~^^^~Y~^^0^^5.70^4.00^8.80^4.00
-~18173~^~1800~^~Cookies, graham crackers, plain or honey (includes cinnamon)~^~COOKIES,GRAHAM CRACKERS,PLN OR HONEY (INCL CINN)~^^^~Y~^^0^^5.70^3.90^8.80^4.00
-~18174~^~1800~^~Cookies, graham crackers, chocolate-coated~^~COOKIES,GRAHAM CRACKERS,CHOCOLATE-COATED~^^^~Y~^^0^^5.90^3.80^8.70^3.90
-~18175~^~1800~^~Cookies, ladyfingers, with lemon juice and rind~^~COOKIES,LADYFINGERS,W/LEMON JUC&RIND~^^^~Y~^^0^^0.00^^^
-~18176~^~1800~^~Cookies, marshmallow, chocolate-coated (includes marshmallow pies)~^~COOKIES,MARSHMLLW,CHOCOLATE-COATED (INCL MARSHMLLW PIES)~^^^~Y~^^0^^5.70^3.60^8.80^3.80
-~18177~^~1800~^~Cookies, molasses~^~COOKIES,MOLASSES~^^^~Y~^^0^^5.70^4.00^8.80^4.00
-~18178~^~1800~^~Cookies, oatmeal, commercially prepared, regular~^~COOKIES,OATMEAL,COMMLY PREP,REG~^^^~Y~^^0^^5.80^3.70^8.80^3.90
-~18179~^~1800~^~Cookies, oatmeal, commercially prepared, soft-type~^~COOKIES,OATMEAL,COMMLY PREP,SOFT-TYPE~^^^^^0^^5.90^3.80^8.80^3.90
-~18180~^~1800~^~Cookies, oatmeal, dry mix~^~COOKIES,OATMEAL,DRY MIX~^^^^^0^^5.80^3.70^8.80^4.00
-~18182~^~1800~^~Cookies, oatmeal, refrigerated dough~^~COOKIES,OATMEAL,REFR DOUGH~^^^^^0^^5.90^3.80^8.80^4.00
-~18183~^~1800~^~Cookies, oatmeal, refrigerated dough, baked~^~COOKIES,OATMEAL,REFR DOUGH,BKD~^^^^^0^^^^^
-~18184~^~1800~^~Cookies, oatmeal, with raisins~^~COOKIES,OATMEAL,W/ RAISINS~^^^^^0^^0.00^^^
-~18185~^~1800~^~Cookies, peanut butter, commercially prepared, regular~^~COOKIES,PNUT BUTTER,COMMLY PREP,REG~^^^~Y~^^0^^5.60^3.70^8.70^4.00
-~18186~^~1800~^~Cookies, peanut butter, commercially prepared, soft-type~^~COOKIES,PNUT BUTTER,COMMLY PREP,SOFT-TYPE~^^^^^0^^5.50^3.70^8.70^3.90
-~18187~^~1800~^~Cookies, peanut butter, refrigerated dough~^~COOKIES,PNUT BUTTER,REFR DOUGH~^^^^^0^^5.70^3.80^8.70^4.00
-~18188~^~1800~^~Cookies, peanut butter, refrigerated dough, baked~^~COOKIES,PNUT BUTTER,REFR DOUGH,BKD~^^^^^0^^^^^
-~18189~^~1800~^~Cookies, peanut butter, prepared from recipe~^~COOKIES,PNUT BUTTER,PREP FROM RECIPE~^^^^^0^^0.00^^^
-~18190~^~1800~^~Cookies, peanut butter sandwich, regular~^~COOKIES,PNUT BUTTER SNDWCH,REG~^^^~Y~^^0^^5.60^3.80^8.60^4.00
-~18191~^~1800~^~Cookies, raisin, soft-type~^~COOKIES,RAISIN,SOFT-TYPE~^^^~Y~^^0^^5.90^4.00^8.80^3.90
-~18192~^~1800~^~Cookies, shortbread, commercially prepared, plain~^~COOKIES,SHORTBREAD,COMMLY PREP,PLN~^^^~Y~^^0^^5.80^4.10^8.80^4.10
-~18193~^~1800~^~Cookies, shortbread, commercially prepared, pecan~^~COOKIES,SHORTBREAD,COMMLY PREP,PECAN~^^^^^0^^5.60^4.00^8.70^4.10
-~18196~^~1800~^~Cookies, brownies, dry mix, sugar free~^~COOKIES,BROWNIES,DRY MIX,SUGAR FREE~^^^^^0^^5.70^3.60^8.80^3.80
-~18198~^~1800~^~Cookies, chocolate chip, commercially prepared, special dietary~^~COOKIES,CHOC CHIP,COMMLY PREP,SPL DIETARY~^^^~Y~^^0^^5.80^4.00^8.80^3.90
-~18199~^~1800~^~Cookies, chocolate sandwich, with creme filling, special dietary~^~COOKIES,CHOC SNDWCH,W/CREME FILLING,SPL DIETARY~^^^~Y~^^0^^5.70^3.30^8.80^3.70
-~18200~^~1800~^~Cookies, oatmeal, commercially prepared, special dietary~^~COOKIES,OATMEAL,COMMLY PREP,SPL DIETARY~^^^~Y~^^0^^5.80^3.70^8.80^3.90
-~18201~^~1800~^~Cookies, peanut butter sandwich, special dietary~^~COOKIES,PNUT BUTTER SNDWCH,SPL DIETARY~^^^^^0^^5.50^3.60^8.70^4.00
-~18202~^~1800~^~Cookies, sugar wafer, with creme filling, sugar free~^~COOKIES,SUGAR WAFER,W/ CREME FILLING,SUGAR FREE~^^^~Y~^^0^^5.70^4.00^8.80^4.00
-~18204~^~1800~^~Cookies, sugar, commercially prepared, regular (includes vanilla)~^~COOKIES,SUGAR,COMMLY PREP,REG (INCL VANILLA)~^^^~Y~^^0^^5.90^4.20^8.80^4.00
-~18205~^~1800~^~Cookies, sugar, refrigerated dough~^~COOKIES,SUGAR,REFR DOUGH~^^^^^0^^5.80^4.10^8.80^4.00
-~18206~^~1800~^~Cookies, sugar, refrigerated dough, baked~^~COOKIES,SUGAR,REFR DOUGH,BKD~^^^~Y~^^0^^0.00^^^
-~18209~^~1800~^~Cookies, sugar wafers with creme filling, regular~^~COOKIES,SUGAR WAFERS W/CREME FILLING,REG~^^^~Y~^^0^^5.70^4.00^8.80^4.00
-~18210~^~1800~^~Cookies, vanilla sandwich with creme filling~^~COOKIES,VANILLA SNDWCH W/CREME FILLING~^^^~Y~^^0^^5.70^4.00^8.80^4.00
-~18211~^~1800~^~Puff pastry, frozen, ready-to-bake, baked~^~PUFF PASTRY,FRZ,RTB,BKD~^^^~Y~^^0^^0.00^^^
-~18212~^~1800~^~Cookies, vanilla wafers, lower fat~^~COOKIES,VANILLA WAFERS,LOWER FAT~^^^~Y~^^0^^5.90^4.10^8.80^3.90
-~18213~^~1800~^~Cookies, vanilla wafers, higher fat~^~COOKIES,VANILLA WAFERS,HIGHER FAT~^^^~Y~^^0^^5.70^4.10^8.80^4.00
-~18214~^~1800~^~Crackers, cheese, regular~^~CRACKERS,CHEESE,REGULAR~^^^~Y~^^0^^5.90^4.10^8.80^4.10
-~18215~^~1800~^~Crackers, cheese, sandwich-type with peanut butter filling~^~CRACKERS,CHS,SANDWICH-TYPE W/PNUT BUTTER FILLING~^^^~Y~^^0^^5.60^3.80^8.60^4.10
-~18216~^~1800~^~Crackers, crispbread, rye~^~CRACKERS,CRISPBREAD,RYE~^^^~Y~^^0^^5.90^3.20^8.40^4.00
-~18217~^~1800~^~Crackers, matzo, plain~^~CRACKERS,MATZO,PLAIN~^^^~Y~^^0^^5.70^4.00^8.40^4.10
-~18218~^~1800~^~Crackers, matzo, egg~^~CRACKERS,MATZO,EGG~^^^^^0^^5.80^4.10^8.80^4.10
-~18219~^~1800~^~Crackers, matzo, whole-wheat~^~CRACKERS,MATZO,WHOLE-WHEAT~^^^^^0^^5.80^3.50^8.40^3.70
-~18220~^~1800~^~Crackers, melba toast, plain~^~CRACKERS,MELBA TOAST,PLN~^^^~Y~^^0^^5.70^4.00^8.60^4.10
-~18221~^~1800~^~Crackers, melba toast, rye (includes pumpernickel)~^~CRACKERS,MELBA TOAST,RYE (INCL PUMPERNICKEL)~^^^^^0^^5.80^3.70^8.60^4.10
-~18222~^~1800~^~Crackers, melba toast, wheat~^~CRACKERS,MELBA TOAST,WHEAT~^^^^^0^^5.80^3.80^8.60^4.00
-~18223~^~1800~^~Crackers, milk~^~CRACKERS,MILK~^^^~Y~^^0^^5.70^4.00^8.80^4.10
-~18224~^~1800~^~Crackers, rusk toast~^~CRACKERS,RUSK TOAST~^^^^^0^^6.00^3.90^8.90^4.00
-~18225~^~1800~^~Crackers, rye, sandwich-type with cheese filling~^~CRACKERS,RYE,SANDWICH-TYPE W/CHS FILLING~^^^^^0^^5.80^3.90^8.80^4.10
-~18226~^~1800~^~Crackers, rye, wafers, plain~^~CRACKERS,RYE,WAFERS,PLAIN~^^^~Y~^^0^^5.90^3.00^8.40^3.70
-~18227~^~1800~^~Crackers, rye, wafers, seasoned~^~CRACKERS,RYE,WAFERS,SEASONED~^^^^^0^^5.90^3.00^8.80^3.70
-~18228~^~1800~^~Crackers, saltines (includes oyster, soda, soup)~^~CRACKERS,SALTINES (INCL OYSTER,SODA,SOUP)~^^^~Y~^^0^^5.70^4.00^8.80^4.10
-~18229~^~1800~^~Crackers, standard snack-type, regular~^~CRACKERS,STD SNACK-TYPE,REG~^^^~Y~^^0^^^^^
-~18230~^~1800~^~Crackers, standard snack-type, sandwich, with cheese filling~^~CRACKERS,STD SNACK-TYPE,SNDWCH,W/CHS FILLING~^^^~Y~^^0^^5.80^4.10^8.80^4.10
-~18231~^~1800~^~Crackers, standard snack-type, sandwich, with peanut butter filling~^~CRACKERS,STD SNACK-TYPE,SNDWCH,W/PNUT BUTTER FILLING~^^^~Y~^^0^^5.60^3.80^8.60^4.10
-~18232~^~1800~^~Crackers, wheat, regular~^~CRACKERS,WHEAT,REGULAR~^^^~Y~^^0^^5.80^3.80^8.80^4.00
-~18233~^~1800~^~Crackers, wheat, sandwich, with cheese filling~^~CRACKERS,WHEAT,SNDWCH,W/CHS FILLING~^^^^^0^^5.80^4.00^8.80^4.10
-~18234~^~1800~^~Crackers, wheat, sandwich, with peanut butter filling~^~CRACKERS,WHEAT,SNDWCH,W/PNUT BUTTER FILLING~^^^^^0^^5.60^3.70^8.60^4.00
-~18235~^~1800~^~Crackers, whole-wheat~^~CRACKERS,WHOLE-WHEAT~^^^~Y~^^0^^5.80^3.60^8.80^3.80
-~18236~^~1800~^~Cracker, meal~^~CRACKER,MEAL~^^^~Y~^^0^^5.70^4.00^8.40^4.10
-~18237~^~1800~^~Cream puff shell, prepared from recipe~^~CREAM PUFF SHELL,PREP FROM RECIPE~^^^~Y~^^0^^0.00^^^
-~18239~^~1800~^~Croissants, butter~^~CROISSANTS,BUTTER~^^^~Y~^^0^^5.90^4.00^8.80^4.10
-~18240~^~1800~^~Croissants, apple~^~CROISSANTS,APPLE~^^^^^0^^5.90^4.00^8.80^4.00
-~18241~^~1800~^~Croissants, cheese~^~CROISSANTS,CHEESE~^^^~Y~^^0^^5.90^4.00^8.80^4.10
-~18242~^~1800~^~Croutons, plain~^~CROUTONS,PLAIN~^^^^^0^^5.70^4.00^8.80^4.10
-~18243~^~1800~^~Croutons, seasoned~^~CROUTONS,SEASONED~^^^~Y~^^0^^5.80^4.00^8.80^4.10
-~18244~^~1800~^~Danish pastry, cinnamon, enriched~^~DANISH PASTRY,CINN,ENR~^^^~Y~^^0^^5.80^4.00^8.80^4.00
-~18245~^~1800~^~Danish pastry, cheese~^~DANISH PASTRY,CHEESE~^^^~Y~^^0^^6.00^4.10^8.80^4.00
-~18246~^~1800~^~Danish pastry, fruit, enriched (includes apple, cinnamon, raisin, lemon, raspberry, strawberry)~^~DANISH PASTRY,FRUIT,ENR~^^^~Y~^^0^^5.80^4.10^8.80^3.90
-~18248~^~1800~^~Doughnuts, cake-type, plain (includes unsugared, old-fashioned)~^~DOUGHNUTS,CAKE-TYPE,PLN (INCLUDES UNSUGARED,OLD-FASHIONED)~^~donut~^^~Y~^^0^^6.25^^^
-~18249~^~1800~^~Doughnuts, cake-type, plain, chocolate-coated or frosted~^~DOUGHNUTS,CAKE-TYPE,PLN,CHOCOLATE-COATED OR FRSTD~^~donut~^^~Y~^^0^^^^^
-~18250~^~1800~^~Doughnuts, cake-type, plain, sugared or glazed~^~DOUGHNUTS,CAKE-TYPE,PLN,SUGARED OR GLAZED~^~donut~^^^^0^^5.90^4.20^8.80^4.00
-~18251~^~1800~^~Doughnuts, cake-type, chocolate, sugared or glazed~^~DOUGHNUTS,CAKE-TYPE,CHOC,SUGARED OR GLAZED~^~donut~^^~Y~^^0^^5.90^3.90^8.80^3.90
-~18253~^~1800~^~Doughnuts, french crullers, glazed~^~DOUGHNUTS,FRENCH CRULLERS,GLAZED~^~donut~^^~Y~^^0^^5.80^4.00^8.80^4.00
-~18254~^~1800~^~Doughnuts, yeast-leavened, with creme filling~^~DOUGHNUTS,YEAST-LEAVENED,W/CREME FILLING~^~donut~^^~Y~^^0^^5.80^3.90^8.80^4.00
-~18255~^~1800~^~Doughnuts, yeast-leavened, glazed, enriched (includes honey buns)~^~DOUGHNUTS, YEAST-LEAVENED, GLAZED, ENRICHED (INC HONEY BUNS)~^~donut~^^~Y~^^0^^6.25^4.00^9.00^4.00
-~18256~^~1800~^~Doughnuts, yeast-leavened, with jelly filling~^~DOUGHNUTS,YEAST-LEAVENED,W/JELLY FILLING~^~donut~^^~Y~^^0^^5.80^3.90^8.80^3.90
-~18258~^~1800~^~Muffins, English, plain, enriched, with ca prop (includes sourdough)~^~MUFFINS,ENG,PLN,ENR,W/ CA PROP (INCLUDES SOURDOUGH)~^^^~Y~^^0^^^^^
-~18259~^~1800~^~Muffins, English, plain, toasted, enriched, with calcium propionate (includes sourdough)~^~MUFFINS,ENG,PLN,TSTD,ENR,W/ CA PROP (INCLUDES SOURDOUGH)~^^^~Y~^^0^^^^^
-~18260~^~1800~^~Muffins, English, mixed-grain (includes granola)~^~MUFFINS,ENG,MIXED-GRAIN (INCLUDES GRANOLA)~^^^~Y~^^0^^5.80^3.70^8.50^4.00
-~18262~^~1800~^~Muffins, English, raisin-cinnamon (includes apple-cinnamon)~^~MUFFINS,ENG,RAISIN-CINNAMON (INCLUDES APPLE-CINNAMON)~^^^~Y~^^0^^6.25^4.00^9.00^4.00
-~18263~^~1800~^~Muffins, English, raisin-cinnamon, toasted (includes apple-cinnamon)~^~MUFFINS,ENG,RAISIN-CINNAMON,TSTD (INCLUDES APPLE-CINNAMON)~^^^~Y~^^0^^^^^
-~18264~^~1800~^~Muffins, English, wheat~^~MUFFINS,ENG,WHEAT~^^^~Y~^^0^^5.80^3.70^8.40^3.90
-~18266~^~1800~^~Muffins, English, whole-wheat~^~MUFFINS,ENG,WHOLE-WHEAT~^^^~Y~^^0^^5.90^3.50^8.50^3.80
-~18268~^~1800~^~French toast, frozen, ready-to-heat~^~FRENCH TOAST,FRZ,RTH~^^^^^0^^6.00^4.10^8.90^4.00
-~18269~^~1800~^~French toast, prepared from recipe, made with low fat (2%) milk~^~FRENCH TOAST,PREP FROM RECIPE,MADE W/LOFAT (2%) MILK~^^^^^0^^0.00^^^
-~18270~^~1800~^~Hush puppies, prepared from recipe~^~HUSH PUPPIES,PREP FROM RECIPE~^^^^^0^^0.00^^^
-~18271~^~1800~^~Ice cream cones, cake or wafer-type~^~ICE CRM CONES,CAKE OR WAFER-TYPE~^^^~Y~^^0^^5.70^4.00^8.80^4.10
-~18272~^~1800~^~Ice cream cones, sugar, rolled-type~^~ICE CRM CONES,SUGAR,ROLLED-TYPE~^^^~Y~^^0^^5.70^4.00^8.80^4.00
-~18273~^~1800~^~Muffins, plain, prepared from recipe, made with low fat (2%) milk~^~MUFFINS,PLN,PREP FROM RECIPE,MADE W/LOFAT (2%) MILK~^^^^^0^^0.00^^^
-~18274~^~1800~^~Muffins, blueberry, commercially prepared (Includes mini-muffins)~^~MUFFINS,BLUEBERRY,COMMLY PREP (INCLUDES MINI-MUFFINS)~^^^~Y~^^0^^^^^
-~18275~^~1800~^~Muffins, blueberry, dry mix~^~MUFFINS,BLUEBERRY,DRY MIX~^^^^^0^^5.70^4.00^8.80^4.10
-~18277~^~1800~^~Muffins, blueberry, toaster-type~^~MUFFINS,BLUEBERRY,TOASTER-TYPE~^^^^^0^^5.70^3.60^8.80^4.00
-~18278~^~1800~^~Muffins, blueberry, prepared from recipe, made with low fat (2%) milk~^~MUFFINS,BLUEBERRY,PREP FROM RECIPE,MADE W/LOFAT (2%) MILK~^^^^^0^^0.00^^^
-~18279~^~1800~^~Muffins, corn, commercially prepared~^~MUFFINS,CORN,COMMLY PREP~^^^~Y~^^0^^5.90^3.80^8.80^4.10
-~18280~^~1800~^~Muffins, corn, dry mix, prepared~^~MUFFINS,CORN,DRY MIX,PREP~^^^^^0^^^^^
-~18281~^~1800~^~Muffins, corn, toaster-type~^~MUFFINS,CORN,TOASTER-TYPE~^^^^^0^^5.90^4.00^8.80^3.90
-~18282~^~1800~^~Muffins, corn, prepared from recipe, made with low fat (2%) milk~^~MUFFINS,CORN,PREP FROM RECIPE,MADE W/LOFAT (2%) MILK~^^^^^0^^0.00^^^
-~18283~^~1800~^~Muffins, oat bran~^~MUFFINS,OAT BRAN~^^^~Y~^^0^^6.20^3.20^8.70^3.80
-~18284~^~1800~^~Muffins, wheat bran, dry mix~^~MUFFINS,WHEAT BRAN,DRY MIX~^^^^^0^^6.00^2.90^8.80^3.70
-~18288~^~1800~^~Pancakes plain, frozen, ready-to-heat (includes buttermilk)~^~PANCAKES PLN,FRZ,RTH (INCLUDES BUTTERMILK)~^^^~Y~^^0^^^^^
-~18289~^~1800~^~Pancakes, plain, dry mix, complete (includes buttermilk)~^~PANCAKES,PLN,DRY MIX,COMPLETE (INCL BTTRMLK)~^^^^^0^^6.00^4.00^8.80^4.10
-~18290~^~1800~^~Pancakes, plain, dry mix, complete, prepared~^~PANCAKES,PLN,DRY MIX,COMPLETE,PREP~^^^^^0^^^^^
-~18291~^~1800~^~Pancakes, plain, dry mix, incomplete (includes buttermilk)~^~PANCAKES,PLN,DRY MIX,INCOMPLETE (INCL BTTRMLK)~^^^~Y~^^0^^5.80^3.90^8.40^4.10
-~18292~^~1800~^~Pancakes, plain, dry mix, incomplete, prepared~^~PANCAKES,PLN,DRY MIX,INCOMPLETE,PREP~^^^^^0^^^^^
-~18293~^~1800~^~Pancakes, plain, prepared from recipe~^~PANCAKES,PLN,PREP FROM RECIPE~^^^^^0^^0.00^^^
-~18294~^~1800~^~Pancakes, blueberry, prepared from recipe~^~PANCAKES,BLUEBERRY,PREP FROM RECIPE~^^^^^0^^0.00^^^
-~18295~^~1800~^~Pancakes, buckwheat, dry mix, incomplete~^~PANCAKES,BUCKWHEAT,DRY MIX,INCOMPLETE~^^^~Y~^^0^^6.00^3.60^8.40^3.90
-~18297~^~1800~^~Pancakes, special dietary, dry mix~^~PANCAKES,SPL DIETARY,DRY MIX~^^^^^0^^5.90^3.80^8.40^4.10
-~18299~^~1800~^~Pancakes, whole-wheat, dry mix, incomplete~^~PANCAKES,WHOLE-WHEAT,DRY MIX,INCOMPLETE~^^^^^0^^5.80^3.70^8.40^4.00
-~18300~^~1800~^~Pancakes, whole-wheat, dry mix, incomplete, prepared~^~PANCAKES,WHOLE-WHEAT,DRY MIX,INCOMPLETE,PREP~^^^^^0^^^^^
-~18301~^~1800~^~Pie, apple, commercially prepared, enriched flour~^~PIE,APPL,COMMLY PREP,ENR FLR~^^^~Y~^^0^^5.70^4.00^8.80^3.90
-~18302~^~1800~^~Pie, apple, prepared from recipe~^~PIE,APPL,PREP FROM RECIPE~^^^^^0^^0.00^^^
-~18303~^~1800~^~Pie, banana cream, prepared from mix, no-bake type~^~PIE,BANANA CRM,PREP FROM MIX,NO-BAKE TYPE~^^^^^0^^6.00^4.00^8.80^3.90
-~18304~^~1800~^~Pie, banana cream, prepared from recipe~^~PIE,BANANA CRM,PREP FROM RECIPE~^^^~Y~^^0^^0.00^^^
-~18305~^~1800~^~Pie, blueberry, commercially prepared~^~PIE,BLUEBERRY,COMMLY PREP~^^^~Y~^^0^^5.70^4.00^8.80^3.90
-~18306~^~1800~^~Pie, blueberry, prepared from recipe~^~PIE,BLUEBERRY,PREP FROM RECIPE~^^^^^0^^0.00^^^
-~18308~^~1800~^~Pie, cherry, commercially prepared~^~PIE,CHERRY,COMMLY PREP~^^^~Y~^^0^^5.80^4.00^8.80^3.90
-~18309~^~1800~^~Pie, cherry, prepared from recipe~^~PIE,CHERRY,PREP FROM RECIPE~^^^^^0^^0.00^^^
-~18310~^~1800~^~Pie, chocolate creme, commercially prepared~^~PIE,CHOC CREME,COMMLY PREP~^^^~Y~^^0^^5.70^3.30^8.80^3.70
-~18312~^~1800~^~Pie, chocolate mousse, prepared from mix, no-bake type~^~PIE,CHOC MOUSSE,PREP FROM MIX,NO-BAKE TYPE~^^^^^0^^6.00^3.70^8.70^3.80
-~18313~^~1800~^~Pie, coconut creme, commercially prepared~^~PIE,COCNT CREME,COMMLY PREP~^^^~Y~^^0^^6.00^4.00^8.70^3.90
-~18314~^~1800~^~Pie, coconut cream, prepared from mix, no-bake type~^~PIE,COCNT CRM,PREP FROM MIX,NO-BAKE TYPE~^^^^^0^^6.10^4.10^8.70^3.90
-~18316~^~1800~^~Pie, coconut custard, commercially prepared~^~PIE,COCNT CUSTARD,COMMLY PREP~^^^^^0^^6.00^4.10^8.70^4.00
-~18317~^~1800~^~Pie, egg custard, commercially prepared~^~PIE,EGG CUSTARD,COMMLY PREP~^^^~Y~^^0^^6.20^4.30^8.90^4.00
-~18319~^~1800~^~Pie, fried pies, fruit~^~PIE,FRIED PIES,FRUIT~^^^~Y~^^0^^5.80^4.00^8.80^3.80
-~18320~^~1800~^~Pie, lemon meringue, commercially prepared~^~PIE,LEMON MERINGUE,COMMLY PREP~^^^~Y~^^0^^6.00^4.20^8.90^3.90
-~18321~^~1800~^~Pie, lemon meringue, prepared from recipe~^~PIE,LEMON MERINGUE,PREP FROM RECIPE~^^^^^0^^0.00^^^
-~18322~^~1800~^~Pie, mince, prepared from recipe~^~PIE,MINCE,PREP FROM RECIPE~^^^~Y~^^0^^0.00^^^
-~18323~^~1800~^~Pie, peach~^~PIE,PEACH~^^^~Y~^^0^^5.80^3.90^8.80^3.90
-~18324~^~1800~^~Pie, pecan, commercially prepared~^~PIE,PECAN,COMMLY PREP~^^^~Y~^^0^^^^^
-~18325~^~1800~^~Pie, pecan, prepared from recipe~^~PIE,PECAN,PREP FROM RECIPE~^^^^^0^^0.00^^^
-~18326~^~1800~^~Pie, pumpkin, commercially prepared~^~PIE,PUMPKIN,COMMLY PREP~^^^~Y~^^0^^^^^
-~18327~^~1800~^~Pie, pumpkin, prepared from recipe~^~PIE,PUMPKIN,PREP FROM RECIPE~^^^^^0^^0.00^^^
-~18328~^~1800~^~Pie, vanilla cream, prepared from recipe~^~PIE,VANILLA CRM,PREP FROM RECIPE~^^^~Y~^^0^^0.00^^^
-~18332~^~1800~^~Pie crust, standard-type, dry mix~^~PIE CRUST,STANDARD-TYPE,DRY MIX~^^^^^0^^5.70^4.00^8.80^4.10
-~18333~^~1800~^~Pie crust, standard-type, dry mix, prepared, baked~^~PIE CRUST,STANDARD-TYPE,DRY MIX,PREP,BKD~^^^^^0^^^^^
-~18334~^~1800~^~Pie crust, standard-type, frozen, ready-to-bake, enriched~^~PIE CRUST,STANDARD-TYPE,FRZ,RTB,ENR~^^^~Y~^^0^^5.70^4.10^8.90^4.10
-~18335~^~1800~^~Pie crust, standard-type, frozen, ready-to-bake, enriched, baked~^~PIE CRUST,STANDARD-TYPE,FRZ,RTB,ENR,BKD~^^^~Y~^^0^^0.00^^^
-~18336~^~1800~^~Pie crust, standard-type, prepared from recipe, baked~^~PIE CRUST,STANDARD-TYPE,PREP FROM RECIPE,BKD~^^^^^0^^0.00^^^
-~18337~^~1800~^~Puff pastry, frozen, ready-to-bake~^~PUFF PASTRY,FRZ,RTB~^^^^^0^^0.00^^^
-~18338~^~1800~^~Phyllo dough~^~PHYLLO DOUGH~^^^~Y~^^0^^0.00^^^
-~18339~^~1800~^~Popovers, dry mix, enriched~^~POPOVERS,DRY MIX,ENRICHED~^^^^^0^^5.70^4.10^8.70^4.10
-~18342~^~1800~^~Rolls, dinner, plain, commercially prepared (includes brown-and-serve)~^~ROLLS, DINNER, PLN,COMM PREPARED (INC BROWN -N- SERVE)~^^^~Y~^^0^^^^^
-~18344~^~1800~^~Rolls, dinner, egg~^~ROLLS,DINNER,EGG~^^^~Y~^^0^^5.80^3.90^8.80^4.10
-~18345~^~1800~^~Rolls, dinner, oat bran~^~ROLLS,DINNER,OAT BRAN~^^^~Y~^^0^^5.80^3.70^8.70^4.00
-~18346~^~1800~^~Rolls, dinner, rye~^~ROLLS,DINNER,RYE~^^^~Y~^^0^^5.80^3.70^8.70^4.10
-~18347~^~1800~^~Rolls, dinner, wheat~^~ROLLS,DINNER,WHEAT~^^^~Y~^^0^^5.70^3.90^8.80^4.00
-~18348~^~1800~^~Rolls, dinner, whole-wheat~^~ROLLS,DINNER,WHOLE-WHEAT~^^^~Y~^^0^^0.00^^^
-~18349~^~1800~^~Rolls, french~^~ROLLS,FRENCH~^^^~Y~^^0^^5.80^3.90^8.70^4.10
-~18350~^~1800~^~Rolls, hamburger or hotdog, plain~^~ROLLS,HAMBURGER OR HOTDOG,PLN~^^^~Y~^^0^^5.80^4.00^8.80^4.10
-~18351~^~1800~^~Rolls, hamburger or hotdog, mixed-grain~^~ROLLS,HAMBURGER OR HOTDOG,MIXED-GRAIN~^^^~Y~^^0^^5.80^3.80^8.80^3.90
-~18353~^~1800~^~Rolls, hard (includes kaiser)~^~ROLLS,HARD (INCL KAISER)~^^^~Y~^^0^^5.70^4.00^8.60^4.10
-~18354~^~1800~^~Strudel, apple~^~STRUDEL,APPLE~^^^~Y~^^0^^6.00^4.20^8.90^3.90
-~18355~^~1800~^~Sweet rolls, cheese~^~SWEET ROLLS,CHEESE~^^^^^0^^6.00^4.00^8.80^3.90
-~18356~^~1800~^~Sweet rolls, cinnamon, commercially prepared with raisins~^~SWEET ROLLS,CINN,COMMLY PREP W/RAISINS~^^^~Y~^^0^^5.80^3.90^8.80^4.00
-~18357~^~1800~^~Sweet rolls, cinnamon, refrigerated dough with frosting~^~SWEET ROLLS,CINN,REFR DOUGH W/FRSTNG~^^^^^0^^5.70^4.00^8.80^4.00
-~18358~^~1800~^~Sweet rolls, cinnamon, refrigerated dough with frosting, baked~^~SWEET ROLLS,CINN,REFR DOUGH W/FRSTNG,BKD~^^^^^0^^^^^
-~18360~^~1800~^~Taco shells, baked~^~TACO SHELLS, BAKED~^^^~Y~^^0^^^^^
-~18361~^~1800~^~Toaster pastries, brown-sugar-cinnamon~^~TOASTER PASTRIES,BROWN-SUGAR-CINNAMON~^^^^^0^^5.80^4.10^8.80^3.90
-~18362~^~1800~^~Toaster pastries, fruit (includes apple, blueberry, cherry, strawberry)~^~TOASTER PASTRIES,FRUIT~^^^~Y~^^0^^6.25^^^
-~18363~^~1800~^~Tortillas, ready-to-bake or -fry, corn~^~TORTILLAS,RTB OR -FRY,CORN~^^^~Y~^^0^^6.20^2.70^8.40^4.00
-~18364~^~1800~^~Tortillas, ready-to-bake or -fry, flour, refrigerated~^~TORTILLAS,RTB OR -FRY,FLR,REFR~^^^~Y~^^0^^5.70^4.00^8.80^4.10
-~18365~^~1800~^~Waffles, plain, frozen, ready-to-heat~^~WAFFLES,PLN,FRZ,RTH~^^^^^0^^^^^
-~18367~^~1800~^~Waffles, plain, prepared from recipe~^~WAFFLES,PLN,PREP FROM RECIPE~^^^^^0^^0.00^^^
-~18368~^~1800~^~Wonton wrappers (includes egg roll wrappers)~^~WONTON WRAPPERS (INCL EGG ROLL WRAPPERS)~^^^^^0^^0.00^^^
-~18369~^~1800~^~Leavening agents, baking powder, double-acting, sodium aluminum sulfate~^~LEAVENING AGENTS,BAKING PDR,DOUBLE-ACTING,NA AL SULFATE~^^^~Y~^^0^^6.20^1.50^8.40^1.90
-~18370~^~1800~^~Leavening agents, baking powder, double-acting, straight phosphate~^~LEAVENING AGENTS,BAKING PDR,DOUBLE-ACTING,STRAIGHT PO4~^^^~Y~^^0^^6.20^1.80^8.40^2.10
-~18371~^~1800~^~Leavening agents, baking powder, low-sodium~^~LEAVENING AGENTS,BAKING PDR,LOW-SODIUM~^^^~Y~^^0^^6.20^2.70^8.40^2.00
-~18372~^~1800~^~Leavening agents, baking soda~^~LEAVENING AGENTS,BAKING SODA~^^^~Y~^^0^^0.00^^^
-~18373~^~1800~^~Leavening agents, cream of tartar~^~LEAVENING AGENTS,CRM OF TARTAR~^^^~Y~^^0^^6.20^3.50^8.40^4.20
-~18374~^~1800~^~Leavening agents, yeast, baker's, compressed~^~LEAVENING AGENTS,YEAST,BAKER'S,COMPRESSED~^^^~Y~^^0^^6.20^3.00^8.40^3.40
-~18375~^~1800~^~Leavening agents, yeast, baker's, active dry~^~LEAVENING AGENTS,YEAST,BAKER'S,ACTIVE DRY~^^^~Y~^^0^^6.25^3.00^8.40^3.40
-~18376~^~1800~^~Bread, crumbs, dry, grated, seasoned~^~BREAD,CRUMBS,DRY,GRATED,SEASONED~^^^~Y~^^0^^5.80^4.00^8.40^4.10
-~18377~^~1800~^~Cookies, oatmeal, prepared from recipe, without raisins~^~COOKIES,OATMEAL,PREP FROM RECIPE,WO/RAISINS~^^^^^0^^0.00^^^
-~18378~^~1800~^~Cookies, chocolate chip, prepared from recipe, made with butter~^~COOKIES,CHOC CHIP,PREP FROM RECIPE,MADE W/BUTTER~^^^^^0^^0.00^^^
-~18383~^~1800~^~Bread, protein, (includes gluten), toasted~^~BREAD,PROT,(INCLUDES GLUTEN),TSTD~^^^~Y~^^0^^0.00^^^
-~18384~^~1800~^~Bread, rice bran, toasted~^~BREAD,RICE BRAN,TOASTED~^^^~Y~^^0^^0.00^^^
-~18386~^~1800~^~Muffins, blueberry, toaster-type, toasted~^~MUFFINS,BLUEBERRY,TOASTER-TYPE,TSTD~^^^^^0^^0.00^^^
-~18388~^~1800~^~Muffins, wheat bran, toaster-type with raisins, toasted~^~MUFFINS,WHEAT BRAN,TOASTER-TYPE W/RAISINS,TSTD~^^^^^0^^0.00^^^
-~18390~^~1800~^~Pancakes, buttermilk, prepared from recipe~^~PANCAKES,BTTRMLK,PREP FROM RECIPE~^^^^^0^^0.00^^^
-~18396~^~1800~^~Rolls, dinner, plain, prepared from recipe, made with low fat (2%) milk~^~ROLLS,DINNER,PLN,PREP FROM RECIPE,MADE W/LOFAT (2%) MILK~^^^^^0^^0.00^^^
-~18399~^~1800~^~Pie crust, cookie-type, prepared from recipe, graham cracker, chilled~^~PIE CRUST,COOKIE-TYPE,PREP FR RECIPE,GRAHAM CRACKER,CHILLED~^^^^^0^^0.00^^^
-~18400~^~1800~^~Crackers, matzo, egg and onion~^~CRACKERS,MATZO,EGG&ONION~^^^^^0^^5.80^4.10^8.70^4.10
-~18401~^~1800~^~Pie crust, cookie-type, prepared from recipe, vanilla wafer, chilled~^~PIE CRUST,COOKIE-TYPE,PREP FROM RECIPE,VANILLA WAFER,CHILLED~^^^~Y~^^0^^0.00^^^
-~18402~^~1800~^~Pie crust, standard-type, prepared from recipe, unbaked~^~PIE CRUST,STANDARD-TYPE,PREP FROM RECIPE,UNBAKED~^^^~Y~^^0^^0.00^^^
-~18403~^~1800~^~Waffles, plain, frozen, ready -to-heat, toasted~^~WAFFLES,PLN,FRZ,READY -TO-HEAT,TSTD~^^^~Y~^^0^^^^^
-~18406~^~1800~^~Bagels, plain, enriched, without calcium propionate (includes onion, poppy, sesame)~^~BAGELS,PLN,ENR,WO/CA PROP (INCL ONION,POPPY,SESAME)~^^^^^0^^6.10^4.20^8.40^4.10
-~18407~^~1800~^~Bagels, plain, unenriched, with calcium propionate (includes onion, poppy, sesame)~^~BAGELS,PLN,UNENR,W/CA PROP (INCL ONION,POPPY,SESAME)~^^^^^0^^5.90^4.00^8.40^4.10
-~18408~^~1800~^~Bagels, plain, unenriched, without calcium propionate(includes onion, poppy, sesame)~^~BAGELS,PLN,UNENR,WO/CA PROP (INCL ONION,POPPY,SESAME)~^^^^^0^^5.90^4.10^8.80^4.00
-~18412~^~1800~^~Bread, cornbread, dry mix, unenriched (includes corn muffin mix)~^~BREAD,CORNBREAD,DRY MIX,UNENR (INCL CORN MUFFIN MIX)~^^^^^0^^5.70^4.00^8.40^4.10
-~18413~^~1800~^~Bread, pita, white, unenriched~^~BREAD,PITA,WHITE,UNENR~^^^^^0^^5.70^4.00^8.40^4.10
-~18414~^~1800~^~Bread, raisin, unenriched~^~BREAD,RAISIN,UNENRICHED~^^^^^0^^5.80^3.90^8.80^3.90
-~18416~^~1800~^~Bread, white, commercially prepared, low sodium, no salt~^~BREAD,WHITE,COMMLY PREP,LO NA,NO SALT~^^^~Y~^^0^^5.70^3.90^8.70^4.10
-~18417~^~1800~^~Cake, coffeecake, cinnamon with crumb topping, commercially prepared, unenriched~^~CAKE,COFFEECAKE,CINN W/ CRUMB TOPPING,COMMLY PREP,UNENR~^^^^^0^^5.80^3.90^8.80^4.00
-~18418~^~1800~^~Cake, pound, commercially prepared, other than all butter, unenriched~^~CAKE,POUND,COMMLY PREP,OTHER THAN ALL BUTTER,UNENR~^^^^^0^^6.00^4.20^8.80^4.00
-~18419~^~1800~^~Cake, pudding-type, white, unenriched, dry mix~^~CAKE,PUDDING-TYPE,WHITE,UNENR,DRY MIX~^^^^^0^^5.80^4.10^8.80^4.00
-~18420~^~1800~^~Cake, yellow, unenriched, dry mix~^~CAKE,YEL,UNENR,DRY MIX~^^^^^0^^5.90^4.10^8.80^4.00
-~18421~^~1800~^~Cookies, butter, commercially prepared, unenriched~^~COOKIES,BUTTER,COMMLY PREP,UNENR~^^^^^0^^5.90^4.20^8.80^4.00
-~18422~^~1800~^~Cookies, chocolate chip, commercially prepared, regular, higher fat, unenriched~^~COOKIES,CHOC CHIP,COMMLY PREP,REG,HIGHER FAT,UNENR~^^^^^0^^5.80^3.90^8.80^3.90
-~18423~^~1800~^~Cookies, ladyfingers, without lemon juice and rind~^~COOKIES,LADYFINGERS,WO/LEMON JUC&RIND~^^^^^0^^0.00^^^
-~18424~^~1800~^~Crackers, melba toast, plain, without salt~^~CRACKERS,MELBA TOAST,PLN,WO/SALT~^^^^^0^^5.70^4.00^8.60^4.10
-~18425~^~1800~^~Crackers, saltines, low salt (includes oyster, soda, soup)~^~CRACKERS,SALTINES,LO SALT (INCL OYSTER,SODA,SOUP)~^^^~Y~^^0^^5.70^4.00^8.80^4.10
-~18426~^~1800~^~Crackers, saltines, unsalted tops (includes oyster, soda, soup)~^~CRACKERS,SALTINES,UNSALTED TOPS (INCL OYSTER,SODA,SOUP)~^^^^^0^^5.70^4.00^8.80^4.10
-~18427~^~1800~^~Crackers, standard snack-type, regular, low salt~^~CRACKERS,STD SNACK-TYPE,REG,LO SALT~^^^~Y~^^0^^5.70^4.00^8.80^4.10
-~18428~^~1800~^~Crackers, wheat, low salt~^~CRACKERS,WHEAT,LOW SALT~^^^~Y~^^0^^5.80^3.80^8.80^4.00
-~18429~^~1800~^~Crackers, whole-wheat, low salt~^~CRACKERS,WHOLE-WHEAT,LO SALT~^^^~Y~^^0^^5.80^3.60^8.80^3.80
-~18430~^~1800~^~Danish pastry, cinnamon, unenriched~^~DANISH PASTRY,CINN,UNENR~^^^^^0^^5.90^4.00^8.80^4.00
-~18431~^~1800~^~Danish pastry, fruit, unenriched (includes apple, cinnamon, raisin, strawberry)~^~DANISH PASTRY,FRUIT,UNENR (INCL APPL,CINN,RAISIN,STRAWBERRY)~^^^^^0^^5.80^4.10^8.80^3.90
-~18432~^~1800~^~Bread, white, commercially prepared, toasted, low sodium no salt~^~BREAD,WHITE,COMMLY PREP,TSTD,LO NA NO SALT~^^^^^0^^5.70^3.90^8.70^4.10
-~18433~^~1800~^~Danish pastry, lemon, unenriched~^~DANISH PASTRY,LEMON,UNENR~^^^^^0^^5.80^4.10^8.80^3.90
-~18434~^~1800~^~Crackers, cheese, low sodium~^~CRACKERS,CHS,LO NA~^^^~Y~^^0^^^^^
-~18435~^~1800~^~Danish pastry, raspberry, unenriched~^~DANISH PASTRY,RASPBERRY,UNENR~^^^^^0^^5.80^4.10^8.80^3.90
-~18436~^~1800~^~Doughnuts, yeast-leavened, glazed, unenriched (includes honey buns)~^~DOUGHNUTS,YEAST-LEAVENED,GLAZED,UNENR (INCL HONEY BUNS)~^~donut~^^^^0^^5.80^3.90^8.80^4.00
-~18437~^~1800~^~English muffins, plain, enriched, without calcium propionate(includes sourdough)~^~ENGLISH MUFFINS,PLN,ENR,WO/CA PROP (INCL SOURDOUGH)~^^^^^0^^5.80^3.90^8.60^4.10
-~18438~^~1800~^~English muffins, plain, unenriched, with calcium propionate (includes sourdough)~^~ENGLISH MUFFINS,PLN,UNENR,W/CA PROP (INCL SOURDOUGH)~^^^^^0^^5.80^3.90^8.60^4.10
-~18439~^~1800~^~English muffins, plain, unenriched, without calcium propionate (includes sourdough)~^~ENGLISH MUFFINS,PLN,UNENR,WO/CA PROP (INCL SOURDOUGH)~^^^^^0^^5.80^3.90^8.60^4.10
-~18443~^~1800~^~Pie, apple, commercially prepared, unenriched flour~^~PIE,APPL,COMMLY PREP,UNENR FLR~^^^^^0^^5.70^4.00^8.80^3.90
-~18444~^~1800~^~Pie, fried pies, cherry~^~PIE,FRIED PIES,CHERRY~^^^^^0^^5.80^4.00^8.80^3.80
-~18445~^~1800~^~Pie, fried pies, lemon~^~PIE,FRIED PIES,LEMON~^^^^^0^^5.80^4.00^8.80^3.80
-~18446~^~1800~^~Pie crust, standard-type, frozen, ready-to-bake, unenriched~^~PIE CRUST,STANDARD-TYPE,FRZ,RTB,UNENR~^^^^^0^^5.70^4.10^8.90^4.10
-~18447~^~1800~^~Popovers, dry mix, unenriched~^~POPOVERS,DRY MIX,UNENR~^^^^^0^^5.70^4.10^8.70^4.10
-~18448~^~1800~^~Taco shells, baked, without added salt~^~TACO SHELLS,BKD,WO/ SALT~^^^^^0^^6.20^2.70^8.80^4.00
-~18449~^~1800~^~Tortillas, ready-to-bake or -fry, corn, without added salt~^~TORTILLAS,RTB OR -FRY,CORN,WO/ SALT~^^^^^0^^6.20^2.70^8.40^4.00
-~18450~^~1800~^~Tortillas, ready-to-bake or -fry, flour, without added calcium~^~TORTILLAS,RTB OR -FRY,FLR,WO/ CA~^^^^^0^^5.70^4.00^8.80^4.10
-~18451~^~1800~^~Cake, pound, commercially prepared, fat-free~^~CAKE,POUND,COMMLY PREP,FAT-FREE~^^^~Y~^^0^^6.10^4.20^8.40^4.10
-~18453~^~1800~^~Cake, yellow, light, dry mix~^~CAKE,YEL,LT,DRY MIX~^^^^^0^^5.90^4.10^8.80^4.00
-~18457~^~1800~^~Crackers, saltines, fat-free, low-sodium~^~CRACKERS,SALTINES,FAT-FREE,LOW-SODIUM~^^^~Y~^^0^^5.70^4.00^8.40^4.10
-~18459~^~1800~^~Tart, breakfast, low fat~^~TART,BRKFST,LOFAT~^^^~Y~^^0^^^^^
-~18513~^~1800~^~Archway Home Style Cookies, Sugar Free Oatmeal~^~ARCHWAY HOME STYLE COOKIES,SUGAR FREE OATMEAL~^^~Archway Cookies~^^^0^^^^^
-~18522~^~1800~^~Archway Home Style Cookies, Chocolate Chip Ice Box~^~ARCHWAY HOME STYLE COOKIES,CHOC CHIP ICE BOX~^^~Archway Cookies~^^^0^^6.25^^^
-~18524~^~1800~^~Archway Home Style Cookies, Coconut Macaroon~^~ARCHWAY HOME STYLE COOKIES,COCNT MACAROON~^^~Archway Cookies~^^^0^^6.25^^^
-~18527~^~1800~^~Archway Home Style Cookies, Date Filled Oatmeal~^~ARCHWAY HOME STYLE COOKIES,DATE FILLED OATMEAL~^^~Archway Cookies~^^^0^^6.25^^^
-~18528~^~1800~^~Archway Home Style Cookies, Dutch Cocoa~^~ARCHWAY HOME STYLE COOKIES,DUTCH COCOA~^^~Archway Cookies~^^^0^^6.25^^^
-~18529~^~1800~^~Archway Home Style Cookies, Frosty Lemon~^~ARCHWAY HOME STYLE COOKIES,FROSTY LEMON~^^~Archway Cookies~^^^0^^^^^
-~18532~^~1800~^~Archway Home Style Cookies, Iced Molasses~^~ARCHWAY HOME STYLE COOKIES,ICED MOLASSES~^^~Archway Cookies~^^^0^^6.25^^^
-~18533~^~1800~^~Archway Home Style Cookies, Iced Oatmeal~^~ARCHWAY HOME STYLE COOKIES,ICED OATMEAL~^^~Archway Cookies~^^^0^^6.25^^^
-~18535~^~1800~^~Archway Home Style Cookies, Molasses~^~ARCHWAY HOME STYLE COOKIES,MOLASSES~^^~Archway Cookies~^^^0^^6.25^^^
-~18537~^~1800~^~Archway Home Style Cookies, Oatmeal~^~ARCHWAY HOME STYLE COOKIES,OATMEAL~^^~Archway Cookies~^^^0^^6.25^^^
-~18538~^~1800~^~Archway Home Style Cookies, Oatmeal Raisin~^~ARCHWAY HOME STYLE COOKIES,OATMEAL RAISIN~^^~Archway Cookies~^^^0^^6.25^^^
-~18539~^~1800~^~Archway Home Style Cookies, Old Fashioned Molasses~^~ARCHWAY HOME STYLE COOKIES,OLD FASHIONED MOLASSES~^^~Archway Cookies~^^^0^^6.25^^^
-~18540~^~1800~^~Archway Home Style Cookies, Old Fashioned Windmill Cookies~^~ARCHWAY HOME STYLE COOKIES,OLD FASHIONED WINDMILL COOKIES~^^~Archway Cookies~^^^0^^6.25^^^
-~18541~^~1800~^~Archway Home Style Cookies, Peanut Butter~^~ARCHWAY HOME STYLE COOKIES,PNUT BUTTER~^^~Archway Cookies~^^^0^^^^^
-~18544~^~1800~^~Archway Home Style Cookies, Raspberry Filled~^~ARCHWAY HOME STYLE COOKIES,RASPBERRY FILLED~^^~Archway Cookies~^^^0^^6.25^^^
-~18547~^~1800~^~Archway Home Style Cookies, Strawberry Filled~^~ARCHWAY HOME STYLE COOKIES,STRAWBERRY FILLED~^^~Archway Cookies~^^^0^^6.25^^^
-~18562~^~1800~^~Archway Home Style Cookies, Reduced Fat Ginger Snaps~^~ARCHWAY HOME STYLE COOKIES,RED FAT GINGER SNAPS~^^~Archway Cookies~^^^0^^6.25^^^
-~18566~^~1800~^~Artificial Blueberry Muffin Mix, dry~^~ARTIFICIAL BLUEBERRY MUFFIN MIX,DRY~^^^^^0^^^^^
-~18567~^~1800~^~Kraft, Stove Top Stuffing Mix Chicken Flavor~^~KRAFT,STOVE TOP STUFFING MIX CHICK FLAVOR~^^~Kraft Foods, Inc.~^^^0^^^^^
-~18603~^~1800~^~George Weston Bakeries, Brownberry Sage and Onion Stuffing Mix, dry~^~GEORGE WESTON BAKERIES,BROWNBERRY SAGE & ONION STFFNG MX,DRY~^^~George weston Bakeries, Inc.~^^^0^^^^^
-~18608~^~1800~^~Keebler, Keebler Chocolate Graham SELECTS~^~KEEBLER,KEEBLER CHOC GRAHAM SELECTS~^^~Keebler, Co.~^^^0^^^^^
-~18610~^~1800~^~Continental Mills, Krusteaz Almond Poppyseed Muffin Mix, Artificially Flavored, dry~^~CNTNNTL MLLS,KRUSTEAZ ALMD POPPYSD MFFN MX,ARTTFCL FLAV,DRY~^^~Continental Mills, Inc.~^^^0^^6.25^^^
-~18612~^~1800~^~Mckee Baking, Little Debbie Nutty Bars, Wafers with Peanut Butter, Chocolate Covered~^~MCKEE BKING,LTTLE DEBBIE NTTY BRS,WFRS W PNT BTTR,CHC CVERED~^^~McKee Baking, Co.~^^^0^^^^^
-~18614~^~1800~^~Martha White Foods, Martha White's Chewy Fudge Brownie Mix, dry~^~MARTHA WHITE FOODS,MRTHA WHITE'S CHEWY FUDGE BROWNIE MIX,DRY~^^~The J.M. Smucker Co.~^^^0^^6.25^^^
-~18615~^~1800~^~Martha White Foods, Martha White's Buttermilk Biscuit Mix, dry~^~MARTHA WHITE FOODS,MARTHA WHITE'S BTTRMLK BISCUIT MIX,DRY~^^~The J.M. Smucker Co.~^^^0^^6.25^^^
-~18616~^~1800~^~Mission Foods, Mission Flour Tortillas, Soft Taco, 8 inch~^~MISSION FOODS,MISSION FLR TORTILLAS,SOFT TACO,8 INCH~^^~Mission Foods~^^^0^^^^^
-~18617~^~1800~^~Nabisco, Nabisco Grahams Crackers~^~NABISCO,NABISCO GRAHAMS CRACKERS~^^~Nabisco Brands, Inc.~^^^0^^^^^
-~18619~^~1800~^~Nabisco, Nabisco Oreo Crunchies, Cookie Crumb Topping~^~NABISCO,NABISCO OREO CRUNCHIES,COOKIE CRUMB TOPPING~^^~Nabisco Brands, Inc.~^^^0^^^^^
-~18621~^~1800~^~Nabisco, Nabisco Ritz Crackers~^~NABISCO,NABISCO RITZ CRACKERS~^^~Nabisco Brands, Inc.~^^^0^^^^^
-~18629~^~1800~^~Pillsbury, Buttermilk Biscuits, Artificial Flavor, refrigerated dough~^~PILLSBURY,BTTRMLK BISCUITS,ART FLAVOR,REFR DOUGH~^^~Pillsbury Co.~^^^0^^6.25^^^
-~18630~^~1800~^~Pillsbury, Chocolate Chip Cookies, refrigerated dough~^~PILLSBURY,CHOC CHIP COOKIES,REFR DOUGH~^^~Pillsbury Co.~^^^0^^6.25^^^
-~18631~^~1800~^~Pillsbury, Crusty French Loaf, refrigerated dough~^~PILLSBURY,CRUSTY FRENCH LOAF,REFR DOUGH~^^~Pillsbury Co.~^^^0^^6.25^^^
-~18633~^~1800~^~Pillsbury Grands, Buttermilk Biscuits, refrigerated dough~^~PILLSBURY GRANDS,BTTRMLK BISCUITS,REFR DOUGH~^^~Pillsbury Co.~^^^0^^6.25^^^
-~18634~^~1800~^~Pillsbury Golden Layer Buttermilk Biscuits, Artificial Flavor, refrigerated dough~^~PILLSBURY GOLDEN LAYER BTTRMLK BISCUITS,ART FLVOR,REFR DOUGH~^^~Pillsbury Co.~^^^0^^6.25^^^
-~18635~^~1800~^~Pillsbury, Cinnamon Rolls with Icing, refrigerated dough~^~PILLSBURY,CINN ROLLS W/ ICING,REFR DOUGH~^^~Pillsbury Co.~^^^0^^6.25^^^
-~18637~^~1800~^~Kraft Foods, Shake N Bake Original Recipe, Coating for Pork, dry~^~KRAFT FOODS,SHKE N BKE ORIGINAL RECIPE,COATING FOR PORK,DRY~^^~Kraft Foods, Inc.~^^^0^^^^^
-~18639~^~1800~^~George Weston Bakeries, Thomas English Muffins~^~GEORGE WESTON BAKERIES,THOMAS ENG MUFFINS~^^~George weston Bakeries, Inc.~^^^0^^^^^
-~18640~^~1800~^~Heinz, Weight Watcher, Chocolate Eclair, frozen~^~HEINZ,WEIGHT WATCHER,CHOC ECLAIR,FRZ~^^~H.J. Heinz, Co.~^^^0^^6.25^^^
-~18641~^~1800~^~Interstate Brands Corp, Wonder Hamburger Rolls~^~INTERSTATE BRANDS CORP,WONDER HAMBURGER ROLLS~^^~Interstate Bakeries Corporation~^^^0^^^^^
-~18651~^~1800~^~Nabisco, Nabisco Snackwell's Fat Free Devil's Food Cookie Cakes~^~NABISCO,NABISCO SNACKWELL'S FAT FREE DEVIL'S FD COOKIE CAKES~^^~Nabisco Brands, Inc.~^^^0^^^^^
-~18927~^~1800~^~Crackers, cheese, sandwich-type with cheese filling~^~CRACKERS,CHS,SANDWICH-TYPE W/ CHS FILLING~^^^^^0^^^^^
-~18932~^~1800~^~Waffles, buttermilk, frozen, ready-to-heat~^~WAFFLES,BTTRMLK,FRZ,RTH~^^^^^0^^^^^
-~18933~^~1800~^~Waffle, buttermilk, frozen, ready-to-heat, toasted~^~WAFFLE,BTTRMLK,FRZ,RTH,TSTD~^^^~Y~^^0^^^^^
-~18934~^~1800~^~Waffle, buttermilk, frozen, ready-to-heat, microwaved~^~WAFFLE,BTTRMLK,FRZ,RTH,MICROWAVED~^^^^^0^^^4.00^9.00^4.00
-~18935~^~1800~^~Waffle, plain, frozen, ready-to-heat, microwave~^~WAFFLE,PLN,FRZ,RTH,MICROWAVE~^^^^^0^^^^^
-~18936~^~1800~^~Pancakes, plain, frozen, ready-to-heat, microwave (includes buttermilk)~^~PANCAKES,PLN,FRZ,RTH,MICROWAVE(INC BUTTMLK)~^^^^^0^^^^^
-~18938~^~1800~^~Toaster Pastries, fruit, frosted (include apples, blueberry, cherry, strawberry)~^~TOASTER PASTRIES,FRUIT,FRSTD~^^^~Y~^^0^^^^^
-~18939~^~1800~^~Toaster pastries, fruit, toasted (include apple, blueberry, cherry, strawberry)~^~TSTR PSTRS,FRT,TSTD (INCL APPL,BLUEBERRY,CHERRY,STRAWBERRY)~^^^^^0^^^^^
-~18940~^~1800~^~Muffin, blueberry, commercially prepared, low-fat~^~MUFFIN,BLUEBERRY,COMMLY PREP,LOW-FAT~^^^~Y~^^0^^^^^
-~18942~^~1800~^~Pie Crust, Cookie-type, Graham Cracker, Ready Crust~^~PIE CRUST,COOKIE-TYPE,GRAHAM CRACKER,READY CRUST~^^^~Y~^^0^^^^^
-~18943~^~1800~^~Pie Crust, Cookie-type, Chocolate, Ready Crust~^~PIE CRUST,COOKIE-TYPE,CHOC,READY CRUST~^^^~Y~^^0^^^^^
-~18944~^~1800~^~Pie, Dutch Apple, Commercially Prepared~^~PIE,DUTCH APPL,COMMLY PREP~^^^^^0^^^^^
-~18945~^~1800~^~Pie crust, deep dish, frozen, unbaked, made with enriched flour~^~PIE CRUST,DEEP DISH,FRZ,UNBAKED,MADE W/ ENR FLR~^^^^^0^^^^^
-~18946~^~1800~^~Pie crust, refrigerated, regular, baked~^~PIE CRUST,REFR,REG,BKD~^^^^^0^^^^^
-~18947~^~1800~^~Pie crust, deep dish, frozen, baked, made with enriched flour~^~PIE CRUST,DEEP DISH,FRZ,BKD,MADE W/ ENR FLR~^^^^^0^^^^^
-~18948~^~1800~^~Pie crust, refrigerated, regular, unbaked~^~PIE CRUST,REFR,REG,UNBAKED~^^^^^0^^^^^
-~18949~^~1800~^~Crackers, whole-wheat, reduced fat~^~CRACKERS,WHOLE-WHEAT,RED FAT~^^^~Y~^^0^^^^^
-~18950~^~1800~^~Crackers, wheat, reduced fat~^~CRACKERS,WHEAT,RED FAT~^^^~Y~^^0^^^^^
-~18951~^~1800~^~Waffles, chocolate chip, frozen, ready-to-heat~^~WAFFLES,CHOC CHIP,FRZ,RTH~^^^~Y~^^0^^6.25^^^
-~18952~^~1800~^~Tostada shells, corn~^~TOSTADA SHELLS,CORN~^~Latino food~^^^^0^^^^^
-~18953~^~1800~^~Bread, salvadoran sweet cheese (quesadilla salvadorena)~^~BREAD,SALVADORAN SWT CHS (QUESADILLA SALVADORENA)~^~Latino food~^^~Y~^^0^^6.25^^^
-~18954~^~1800~^~Bread, pound cake type, pan de torta salvadoran~^~BREAD,POUND CAKE TYPE,PAN DE TORTA SALVADORAN~^~Latino food~^^^^0^^^^^
-~18955~^~1800~^~Bread, pan dulce, sweet yeast bread~^~BREAD,PAN DULCE,SWT YEAST BREAD~^~Latino food~^^~Y~^^0^^^^^
-~18956~^~1800~^~Keikitos (muffins), Latino bakery item~^~KEIKITOS (MUFFINS),LATINO BAKERY ITEM~^^^^^0^^6.25^^^
-~18957~^~1800~^~Cake, pound, Bimbo Bakeries USA, Panque Casero, home baked style~^~CAKE,POUND,BIMBO BAKERIES USA,PANQUE CASERO,HOME BKD STYLE~^~Latino food~^~Bimbo Bakeries USA~^^^0^^6.25^4.00^9.00^4.00
-~18958~^~1800~^~Pan Dulce, La Ricura, Salpora de Arroz con Azucar, cookie-like, contains wheat flour and rice flour~^~PAN DULCE,LA RICURA,SLPORA DE ARROZ CON AZUCAR, WHEAT&RC FLR~^~Latino rice cookies~^~Quesos La Ricura, Ltd.~^^^0^^6.25^^^
-~18959~^~1800~^~Pastry, Pastelitos de Guava (guava pastries)~^~PASTRY,PASTELITOS DE GUAVA (GUAVA PASTRIES)~^~Latino food, pastelios de guava, turnovers~^^^^0^^^^^
-~18960~^~1800~^~Crackers, snack, Goya Crackers~^~CRACKERS,SNACK,GOYA CRACKERS~^~Latino food~^^^^0^^6.25^^^
-~18961~^~1800~^~Crackers, cream, Gamesa Sabrosas~^~CRACKERS,CRM,GAMESA SABROSAS~^~Latino food~^~Pepsico Mexico~^^^0^^^^^
-~18962~^~1800~^~Crackers, cream, La Moderna Rikis Cream Crackers~^~CRACKERS,CRM,LA MODERNA RIKIS CRM CRACKERS~^^^^^0^^^^^
-~18963~^~1800~^~Garlic bread, frozen~^~GARLIC BREAD,FRZ~^^^~Y~^^0^^^^^
-~18964~^~1800~^~Cinnamon buns, frosted (includes honey buns)~^~CINNAMON BUNS,FRSTD (INCLUDES HONEY BUNS)~^^^~Y~^^0^^^^^
-~18965~^~1800~^~Crackers, cheese, reduced fat~^~CRACKERS,CHS,RED FAT~^^^~Y~^^0^^6.25^4.00^9.00^4.00
-~18966~^~1800~^~Crackers, saltines, whole wheat (includes multi-grain)~^~CRACKERS,SALTINES,WHL WHEAT (INCLUDES MULTI-GRAIN)~^^^~Y~^^0^^^^^
-~18967~^~1800~^~Bread, white wheat~^~BREAD,WHITE WHEAT~^^^~Y~^^0^^6.25^4.00^9.00^4.00
-~18968~^~1800~^~Bagels, wheat~^~BAGELS,WHEAT~^^^~Y~^^0^^^^^
-~18969~^~1800~^~Cream puff, eclair, custard or cream filled, iced~^~CREAM PUFF,ECLAIR,CUSTARD OR CRM FILLED,ICED~^^^~Y~^^0^^^^^
-~18970~^~1800~^~Tortillas, ready-to-bake or -fry, flour, shelf stable~^~TORTILLAS,RTB OR -FRY,FLR,SHELF STABLE~^^^~Y~^^0^^6.25^^^
-~18971~^~1800~^~Bread, potato~^~BREAD,POTATO~^^^~Y~^^0^^6.25^4.00^9.00^4.00
-~18972~^~1800~^~Bread, cheese~^~BREAD,CHS~^^^~Y~^^0^^^^^
-~18973~^~1800~^~Focaccia, Italian flatbread, plain~^~FOCACCIA,ITALIAN FLATBREAD,PLN~^^^~Y~^^0^^^^^
-~19000~^~1900~^~SCHIFF,TIGER'S MILK BAR~^~SCHIFF,TIGER'S MILK BAR~^^^~Y~^^0^^5.90^3.40^8.50^3.70
-~19001~^~1900~^~Candies, TOBLERONE, milk chocolate with honey and almond nougat~^~CANDIES,TOBLERONE,MILK CHOC W/ HONEY & ALMOND NOUGAT~^^^~Y~^^0^^5.90^3.40^8.50^3.70
-~19002~^~2500~^~Snacks, beef jerky, chopped and formed~^~BEEF JERKY,CHOPD&FORMED~^^^~Y~^^0^^6.25^^^
-~19003~^~2500~^~Snacks, corn-based, extruded, chips, plain~^~SNACKS,CORN-BASED,EXTRUDED,CHIPS,PLN~^^^~Y~^^0^^6.25^2.70^8.80^4.00
-~19004~^~2500~^~Snacks, corn-based, extruded, chips, barbecue-flavor~^~CORN-BASED,EXTRUDED,CHIPS,BARBECUE-FLAVOR~^^^^^0^^6.10^2.70^8.70^3.90
-~19005~^~2500~^~Snacks, corn-based, extruded, cones, plain~^~CORN-BASED,EXTRUDED,CONES,PLN~^^^^^0^^6.20^3.50^8.60^4.10
-~19007~^~2500~^~Snacks, corn-based, extruded, onion-flavor~^~SNACKS,CORN-BASED,EXTRUDED,ONION-FLAVOR~^^^~Y~^^0^^6.20^3.50^8.80^4.20
-~19008~^~2500~^~Snacks, corn-based, extruded, puffs or twists, cheese-flavor~^~CORN-BASED,EXTRUDED,PUFFS OR TWISTS,CHEESE-FLAVOR~^^^~Y~^^0^^6.30^4.00^8.80^4.10
-~19009~^~2500~^~Snacks, KRAFT, CORNNUTS, plain~^~CORNNUTS,PLAIN~^^~Kraft Foods, Inc.~^~Y~^^0^^6.25^2.70^8.70^4.00
-~19010~^~2500~^~Snacks, crisped rice bar, chocolate chip~^~CRISPED RICE BAR,CHOC CHIP~^^^^^0^^5.80^3.40^8.60^3.70
-~19013~^~1900~^~Snacks, fruit leather, pieces~^~FRUIT LEATHER,PIECES~^^^~Y~^^0^^6.25^4.00^9.00^4.00
-~19014~^~1900~^~Snacks, fruit leather, rolls~^~FRUIT LEATHER,ROLLS~^^^~Y~^^0^^6.25^4.00^9.00^4.00
-~19015~^~2500~^~Snacks, granola bars, hard, plain~^~GRANOLA BARS,HARD,PLAIN~^^^~Y~^^0^^6.25^3.90^8.80^4.00
-~19016~^~2500~^~Snacks, granola bars, hard, almond~^~GRANOLA BARS,HARD,ALMOND~^^^^^0^^5.70^3.50^8.60^4.00
-~19017~^~2500~^~Snacks, granola bars, hard, chocolate chip~^~GRANOLA BARS,HARD,CHOC CHIP~^^^^^0^^5.80^3.40^8.50^3.80
-~19018~^~1900~^~Fruit syrup~^~FRUIT SYRUP~^^^~Y~^^0^^6.25^^^
-~19020~^~2500~^~Snacks, granola bars, soft, uncoated, plain~^~GRANOLA BARS,SOFT,UNCOATED,PLN~^^^^^0^^5.90^3.50^8.60^4.00
-~19021~^~2500~^~Snacks, granola bars, soft, uncoated, peanut butter~^~GRANOLA BARS,SOFT,UNCOATED,PNUT BUTTER~^^^^^0^^5.60^3.50^8.40^4.00
-~19022~^~2500~^~Snacks, granola bars, soft, uncoated, raisin~^~GRANOLA BARS,SOFT,UNCOATED,RAISIN~^^^^^0^^5.80^3.50^8.40^4.10
-~19024~^~2500~^~Snacks, granola bars, soft, coated, milk chocolate coating, chocolate chip~^~GRANOLA BARS,SOFT,COATD,MILK CHOC COATING,CHOC CHIP~^^^^^0^^6.10^3.50^8.60^3.60
-~19025~^~1900~^~Candies, honey-combed, with peanut butter~^~CANDIES,HONEY-COMBED,W/ PNUT BUTTER~^^^~Y~^^0^^5.46^3.47^8.37^4.07
-~19026~^~2500~^~Snacks, granola bars, soft, coated, milk chocolate coating, peanut butter~^~GRANOLA BARS,SOFT,COATD,MILK CHOC COATING,PNUT BUTTER~^^^~Y~^^0^^5.90^3.70^8.60^3.80
-~19027~^~2500~^~Snacks, granola bars, soft, uncoated, peanut butter and chocolate chip~^~GRANOLA BARS,SOFT,UNCOATED,PNUT BUTTER&CHOC CHIP~^^^^^0^^5.60^3.40^8.40^3.70
-~19029~^~1900~^~Topping, SMUCKER'S MAGIC SHELL~^~TOPPING,SMUCKER'S MAGIC SHELL~^^^~Y~^^0^^6.25^^^
-~19030~^~1900~^~Syrup, fruit flavored~^~SYRUP,FRUIT FLAV~^^^~Y~^^0^^6.25^^^
-~19031~^~2500~^~Snacks, oriental mix, rice-based~^~ORIENTAL MIX,RICE-BASED~^^^~Y~^^0^^0.00^^^
-~19034~^~2500~^~Snacks, popcorn, air-popped~^~POPCORN,AIR-POPPED~^^^~Y~^^0^^6.25^2.73^8.37^4.03
-~19035~^~2500~^~Snacks, popcorn, oil-popped, microwave, regular flavor, no trans fat~^~SNACKS,POPCORN,OIL-POPPED,MICROWAVE,REG FLAVOR,NO TRANS FAT~^^^~Y~^^0^^6.25^2.70^8.80^4.00
-~19036~^~2500~^~Snacks, popcorn, cakes~^~POPCORN,CAKES~^^^~Y~^^0^^6.10^3.00^8.40^4.10
-~19038~^~2500~^~Snacks, popcorn, caramel-coated, with peanuts~^~POPCORN,CARAMEL-COATED,W/PNUTS~^^^~Y~^^0^^5.90^3.00^8.50^3.90
-~19039~^~2500~^~Snacks, popcorn, caramel-coated, without peanuts~^~POPCORN,CARAMEL-COATED,WO/PNUTS~^^^~Y~^^0^^6.20^2.70^8.80^3.90
-~19040~^~2500~^~Snacks, popcorn, cheese-flavor~^~POPCORN,CHEESE-FLAVOR~^^^~Y~^^0^^6.30^3.00^8.80^4.00
-~19041~^~2500~^~Snacks, pork skins, plain~^~PORK SKINS,PLAIN~^^^~Y~^^0^^6.25^4.27^9.02^3.87
-~19042~^~2500~^~Snacks, potato chips, barbecue-flavor~^~POTATO CHIPS,BARBECUE-FLAVOR~^^^~Y~^^0^^6.10^2.40^8.70^3.60
-~19043~^~2500~^~Snacks, potato chips, sour-cream-and-onion-flavor~^~POTATO CHIPS,SOUR-CREAM-AND-ONION-FLAVOR~^^^^^0^^6.30^3.90^8.80^3.90
-~19045~^~2500~^~Snacks, potato chips, made from dried potatoes, reduced fat~^~POTATO CHIPS,MADE FROM DRIED POTATOES,LT~^^^~Y~^^0^^6.25^2.80^8.80^4.00
-~19046~^~2500~^~Snacks, potato chips, made from dried potatoes, sour-cream and onion-flavor~^~POTATO CHIPS,MADE FR DRIED POTATOES,SOUR-CREAM&ONION-FLAVOR~^^^^^0^^6.30^3.30^8.80^3.90
-~19047~^~2500~^~Snacks, pretzels, hard, plain, salted~^~PRETZELS,HARD,PLN,SALTED~^^^~Y~^^0^^5.70^3.70^8.70^4.00
-~19048~^~2500~^~Snacks, pretzels, hard, confectioner's coating, chocolate-flavor~^~PRETZELS,HARD,CONFECTIONER'S COATING,CHOCOLATE-FLAVOR~^^^~Y~^^0^^5.80^3.80^8.70^4.00
-~19049~^~2500~^~Snacks, M&M MARS, COMBOS Snacks Cheddar Cheese Pretzel~^~SNACKS,M&M MARS,COMBOS SNACKS CHEDDAR CHS PRETZEL~^^^~Y~^^0^^6.25^^^
-~19050~^~2500~^~Snacks, pretzels, hard, whole-wheat including both salted and unsalted~^~SNACKS,PRETZELS,HARD,WHOLE-WHEAT INCL BOTH SALTED & UNSALTED~^^^^^0^^5.80^3.50^8.50^3.70
-~19051~^~2500~^~Snacks, rice cracker brown rice, plain~^~SNACKS,RICE CRACKER BROWN RICE,PLN~^^^~Y~^^0^^5.95^3.41^8.37^4.12
-~19052~^~2500~^~Snacks, rice cakes, brown rice, buckwheat~^~RICE CAKES,BROWN RICE,BUCKWHEAT~^^^^^0^^6.10^3.40^8.40^4.00
-~19053~^~2500~^~Snacks, rice cakes, brown rice, sesame seed~^~RICE CAKES,BROWN RICE,SESAME SD~^^^^^0^^5.90^3.10^8.40^4.10
-~19056~^~2500~^~Snacks, tortilla chips, plain, white corn, salted~^~TORTILLA CHIPS,PLAIN~^^^~Y~^^0^^6.20^2.70^8.80^4.00
-~19057~^~2500~^~Snacks, tortilla chips, nacho cheese~^~Snacks, tortilla chips, nacho cheese~^^^~Y~^^0^^6.25^^^
-~19058~^~2500~^~Snacks, tortilla chips, ranch-flavor~^~SNACKS,TORTILLA CHIPS,RANCH-FLAVOR~^^^^^0^^6.25^^^
-~19059~^~2500~^~Snacks, trail mix, regular~^~TRAIL MIX,REGULAR~^^^^^0^^5.40^3.50^8.40^3.70
-~19061~^~2500~^~Snacks, trail mix, tropical~^~TRAIL MIX,TROPICAL~^^^^^0^^0.00^^^
-~19062~^~2500~^~Snacks, trail mix, regular, with chocolate chips, salted nuts and seeds~^~TRAIL MIX,REG,W/CHOC CHIPS,SALTED NUTS&SEEDS~^^^~Y~^^0^^5.50^3.50^8.40^3.70
-~19063~^~2500~^~Snacks, tortilla chips, taco-flavor~^~TORTILLA CHIPS,TACO-FLAVOR~^^^^^0^^6.20^2.90^8.70^3.90
-~19064~^~1900~^~Candies, TOOTSIE ROLL, chocolate-flavor roll~^~CANDIES,TOOTSIE ROLL,CHOCOLATE-FLAVOR ROLL~^^^^^0^^6.25^4.00^9.00^4.00
-~19065~^~1900~^~Candies, ALMOND JOY Candy Bar~^~CANDIES,ALMOND JOY CANDY BAR~^^~Hershey Food Corp.~^^^0^^^^^
-~19067~^~1900~^~Candies, TWIZZLERS CHERRY BITES~^~CANDIES,TWIZZLERS CHERRY BITES~^^~Hershey Food Corp.~^^^0^^6.25^^^
-~19068~^~1900~^~Candies, NESTLE, BIT-O'-HONEY Candy Chews~^~CANDIES,NESTLE,BIT-O'-HONEY CANDY CHEWS~^^~Nestle USA, Inc.~^~Y~^^0^^6.38^4.27^8.79^3.87
-~19069~^~1900~^~Candies, NESTLE, BUTTERFINGER Bar~^~CANDIES,NESTLE,BUTTERFINGER BAR~^^~Nestle USA, Inc.~^~Y~^^0^^6.25^4.27^8.79^3.87
-~19070~^~1900~^~Candies, butterscotch~^~CANDIES,BUTTERSCOTCH~^^^~Y~^^0^^6.25^4.00^9.00^4.00
-~19071~^~1900~^~Candies, carob, unsweetened~^~CANDIES,CAROB,UNSWTND~^^^~Y~^^0^^6.25^4.00^9.00^4.00
-~19074~^~1900~^~Candies, caramels~^~CANDIES,CARAMELS~^^^~Y~^^0^^6.40^4.30^8.60^3.80
-~19075~^~1900~^~Candies, CARAMELLO Candy Bar~^~CANDIES,CARAMELLO CANDY BAR~^^~Hershey Food Corp.~^^^0^^^^^
-~19076~^~1900~^~Candies, caramels, chocolate-flavor roll~^~CANDIES, CARAMELS, CHOCOLATE-FLAVOR ROLL~^^^~Y~^^0^^6.25^^^
-~19077~^~1900~^~Baking chocolate, unsweetened, liquid~^~BAKING CHOC,UNSWTND,LIQ~^^^^^0^^5.63^1.83^8.40^1.33
-~19078~^~1900~^~Baking chocolate, unsweetened, squares~^~Baking chocolate, unsweetened, squares~^^^~Y~^^0^^^^^
-~19079~^~1900~^~Candies, confectioner's coating, yogurt~^~CANDIES,CONFECTIONER'S COATING,YOGURT~^^^~Y~^^0^^6.25^4.00^9.00^4.00
-~19080~^~1900~^~Candies, semisweet chocolate~^~CANDIES,SEMISWEET CHOC~^^^~Y~^^0^^5.63^1.83^8.50^3.40
-~19081~^~1900~^~Candies, sweet chocolate~^~CANDIES,SWEET CHOCOLATE~^^^~Y~^^0^^5.63^1.83^8.60^3.40
-~19083~^~1900~^~Candies, sweet chocolate coated fondant~^~CANDIES,SWT CHOC COATD FONDANT~^^^~Y~^^0^^5.90^3.10^8.40^3.50
-~19084~^~1900~^~Candies, HERSHEY'S GOLDEN ALMOND SOLITAIRES~^~CANDIES,HERSHEY'S GOLDEN ALMOND SOLITAIRES~^^~Hershey Food Corp.~^^^0^^6.25^^^
-~19085~^~1900~^~Candies, confectioner's coating, butterscotch~^~CANDIES,CONFECTIONER'S COATING,BUTTERSCOTCH~^^^~Y~^^0^^6.38^4.00^9.00^4.00
-~19086~^~1900~^~Candies, confectioner's coating, peanut butter~^~CANDIES,CONFECTIONER'S COATING,PNUT BUTTER~^^^~Y~^^0^^6.25^4.00^9.00^4.00
-~19087~^~1900~^~Candies, white chocolate~^~CANDIES,WHITE CHOC~^~confectioner's coating~^^~Y~^^0^^6.38^4.30^8.80^3.90
-~19088~^~1900~^~Ice creams, vanilla, light~^~ICE CREAMS,VANILLA,LT~^^^~Y~^^0^^6.25^4.00^9.00^4.00
-~19089~^~1900~^~Ice creams, vanilla, rich~^~ICE CREAMS,VANILLA,RICH~^^^~Y~^^0^^6.25^4.00^9.00^4.00
-~19090~^~1900~^~Ice creams, french vanilla, soft-serve~^~ICE CREAMS,FRENCH VANILLA,SOFT-SERVE~^^^~Y~^^0^^6.25^4.00^9.00^4.00
-~19091~^~1900~^~Candies, YORK Peppermint Pattie~^~CANDIES,YORK PEPPERMINT PATTIE~^^~Hershey Food Corp.~^^^0^^6.38^3.47^8.37^4.07
-~19092~^~1900~^~Candies, TWIZZLERS NIBS CHERRY BITS~^~CANDIES,TWIZZLERS NIBS CHERRY BITS~^^~Hershey Food Corp.~^^^0^^6.25^^^
-~19093~^~1900~^~Candies, SYMPHONY Milk Chocolate Bar~^~CANDIES,SYMPHONY MILK CHOC BAR~^^~Hershey Food Corp.~^^^0^^^^^
-~19094~^~1900~^~Desserts, flan, caramel custard, prepared-from-recipe~^~DESSERTS,FLAN,CARAMEL CUSTARD,PREPARED-FROM-RECIPE~^^^^^0^^0.00^^^
-~19095~^~1900~^~Ice creams, vanilla~^~ICE CREAMS,VANILLA~^^^~Y~^^0^^6.25^4.00^9.00^4.00
-~19096~^~1900~^~Ice creams, vanilla, light, soft-serve~^~ICE CREAMS,VANILLA,LT,SOFT-SERVE~^^^~Y~^^0^^6.40^4.10^8.79^3.80
-~19097~^~1900~^~Sherbet, orange~^~SHERBET,ORANGE~^^^~Y~^^0^^6.25^4.00^9.00^4.00
-~19098~^~1900~^~Candies, 5TH AVENUE Candy Bar~^~CANDIES,5TH AVENUE CANDY BAR~^^~Hershey Food Corp.~^~Y~^^0^^6.38^4.27^8.79^3.87
-~19099~^~1900~^~Candies, fondant, prepared-from-recipe~^~CANDIES,FONDANT,PREPARED-FROM-RECIPE~^^^~Y~^^0^^6.25^^^
-~19100~^~1900~^~Candies, fudge, chocolate, prepared-from-recipe~^~CANDIES,FUDGE,CHOC,PREPARED-FROM-RECIPE~^^^~Y~^^0^^6.25^^^
-~19101~^~1900~^~Candies, fudge, chocolate, with nuts, prepared-from-recipe~^~CANDIES,FUDGE,CHOC,W/ NUTS,PREPARED-FROM-RECIPE~^^^~Y~^^0^^6.25^^^
-~19102~^~1900~^~Candies, fudge, peanut butter, prepared-from-recipe~^~CANDIES,FUDGE,PNUT BUTTER,PREPARED-FROM-RECIPE~^^^^^0^^6.25^^^
-~19103~^~1900~^~Candies, fudge, vanilla, prepared-from-recipe~^~CANDIES,FUDGE,VANILLA,PREPARED-FROM-RECIPE~^^^~Y~^^0^^6.25^^^
-~19104~^~1900~^~Candies, fudge, vanilla with nuts~^~CANDIES,FUDGE,VANILLA W/ NUTS~^^^~Y~^^0^^6.25^^^
-~19105~^~1900~^~Candies, NESTLE, GOOBERS Chocolate Covered Peanuts~^~CANDIES,NESTLE,GOOBERS CHOC COVERED PNUTS~^^~Nestle USA, Inc.~^^^0^^6.25^^^
-~19106~^~1900~^~Candies, gumdrops, starch jelly pieces~^~CANDIES,GUMDROPS,STARCH JELLY PIECES~^^^~Y~^^0^^6.25^4.00^9.00^4.00
-~19107~^~1900~^~Candies, hard~^~CANDIES,HARD~^^^~Y~^^0^^6.25^4.00^9.00^4.00
-~19108~^~1900~^~Candies, jellybeans~^~CANDIES,JELLYBEANS~^^^~Y~^^0^^6.25^4.00^9.00^4.00
-~19109~^~1900~^~Candies, KIT KAT Wafer Bar~^~CANDIES,KIT KAT WAFER BAR~^^~Hershey Food Corp.~^~Y~^^0^^6.25^4.00^9.00^4.00
-~19110~^~1900~^~Candies, KRACKEL Chocolate Bar~^~CANDIES,KRACKEL CHOC BAR~^^~Hershey Food Corp.~^^^0^^6.25^^^
-~19111~^~1900~^~Candies, NESTLE, BABY RUTH Bar~^~CANDIES,NESTLE,BABY RUTH BAR~^^~Nestle USA, Inc.~^~Y~^^0^^6.25^^^
-~19112~^~1900~^~Candies, TWIZZLERS Strawberry Twists Candy~^~CANDIES,TWIZZLERS STRAWBERRY TWISTS CANDY~^^~Hershey Food Corp.~^^^0^^6.25^^^
-~19113~^~1900~^~Syrups, table blends, pancake, with butter~^~SYRUPS,TABLE BLENDS,PANCAKE,W/BUTTER~^^^~Y~^^0^^6.25^^^
-~19114~^~1900~^~Ice creams, chocolate, light~^~ICE CREAMS,CHOC,LT~^^^~Y~^^0^^6.25^^^
-~19115~^~1900~^~Candies, MARS SNACKFOOD US, MARS Almond Bar~^~CANDIES,MARS SNACKFOOD US,MARS ALMOND BAR~^^~Masterfoods USA~^~Y~^^0^^6.25^3.70^8.60^3.80
-~19116~^~1900~^~Candies, marshmallows~^~CANDIES,MARSHMALLOWS~^^^~Y~^^0^^5.60^3.90^8.40^3.80
-~19117~^~1900~^~Candies, halavah, plain~^~CANDIES,HALAVAH,PLAIN~^^^^^0^^5.80^4.00^8.50^3.90
-~19118~^~1900~^~Candies, NESTLE, OH HENRY! Bar~^~CANDIES,NESTLE,OH HENRY! BAR~^^~Nestle USA, Inc.~^~Y~^^0^^6.25^^^
-~19119~^~1900~^~Candies, NESTLE, CHUNKY Bar~^~CANDIES,NESTLE,CHUNKY BAR~^^~Nestle USA, Inc.~^^^0^^6.25^^^
-~19120~^~1900~^~Candies, milk chocolate~^~CANDIES,MILK CHOC~^^^~Y~^^0^^6.25^4.00^9.00^4.00
-~19121~^~1900~^~Puddings, banana, dry mix, instant, prepared with 2% milk~^~PUDDINGS,BANANA,DRY MIX,INST,PREP W/ 2% MILK~^^^^^0^^^^^
-~19122~^~1900~^~Puddings, banana, dry mix, regular, prepared with 2% milk~^~PUDDINGS,BANANA,DRY MIX,REG,PREP W/ 2% MILK~^^^^^0^^^^^
-~19123~^~1900~^~Puddings, chocolate, dry mix, instant, prepared with 2% milk~^~PUDDINGS,CHOC,DRY MIX,INST,PREP W/ 2% MILK~^^^^^0^^^^^
-~19124~^~1900~^~Baking chocolate, mexican, squares~^~BAKING CHOC,MEXICAN,SQUARES~^^^~Y~^^0^^6.25^2.00^8.40^3.70
-~19125~^~1900~^~Chocolate-flavored hazelnut spread~^~CHOCOLATE-FLAVORED HAZELNUT SPRD~^^^~Y~^^0^^6.25^^^
-~19126~^~1900~^~Candies, milk chocolate coated peanuts~^~CANDIES,MILK CHOC COATD PNUTS~^^^~Y~^^0^^5.80^3.60^8.60^3.70
-~19127~^~1900~^~Candies, milk chocolate coated raisins~^~CANDIES,MILK CHOC COATD RAISINS~^^^~Y~^^0^^6.20^3.60^8.70^3.60
-~19128~^~1900~^~Syrups, table blends, pancake, reduced-calorie~^~SYRUPS,TABLE BLENDS,PANCAKE,RED-CAL~^^^~Y~^^0^^6.25^^^3.70
-~19129~^~1900~^~Syrups, table blends, pancake~^~SYRUPS,TABLE BLENDS,PANCAKE~^^^~Y~^^0^^6.25^3.36^8.37^3.80
-~19130~^~1900~^~Candies, HERSHEY'S POT OF GOLD Almond Bar~^~CANDIES,HERSHEY'S POT OF GOLD ALMOND BAR~^^~Hershey Food Corp.~^^^0^^^^^
-~19132~^~1900~^~Candies, milk chocolate, with almonds~^~CANDIES,MILK CHOC,W/ALMONDS~^^^~Y~^^0^^5.90^3.60^8.60^3.70
-~19134~^~1900~^~Candies, milk chocolate, with rice cereal~^~CANDIES,MILK CHOC,W/RICE CRL~^^^~Y~^^0^^6.20^3.70^8.70^3.80
-~19135~^~1900~^~Candies, MARS SNACKFOOD US, MILKY WAY Bar~^~CANDIES,MARS SNACKFOOD US,MILKY WAY BAR~^^~Masterfoods USA~^~Y~^^0^^6.25^^^
-~19136~^~1900~^~Candies, HERSHEY'S SKOR Toffee Bar~^~CANDIES,HERSHEY'S SKOR TOFFEE BAR~^^~Hershey Food Corp.~^~Y~^^0^^6.25^^^
-~19137~^~1900~^~Toppings, strawberry~^~TOPPINGS,STRAWBERRY~^^^~Y~^^0^^6.25^3.36^8.37^3.80
-~19138~^~1900~^~Candies, truffles, prepared-from-recipe~^~CANDIES,TRUFFLES,PREPARED-FROM-RECIPE~^^^^^0^^0.00^^^
-~19139~^~1900~^~Baking chocolate, MARS SNACKFOOD US, M&M's Semisweet Chocolate Mini Baking Bits~^~BAK CHOC,MARS SNACKFOOD US,M&M'S SEMISWT CHOC MINI BAK BITS~^^~Masterfoods USA~^^^0^^^^^
-~19140~^~1900~^~Candies, MARS SNACKFOOD US, M&M's Peanut Chocolate Candies~^~CANDIES,MARS SNACKFOOD US,M&M'S PNUT CHOC CANDIES~^^~Masterfoods USA~^~Y~^^0^^5.46^3.47^8.37^4.07
-~19141~^~1900~^~Candies, MARS SNACKFOOD US, M&M's Milk Chocolate Candies~^~CANDIES,MARS SNACKFOOD US,M&M'S MILK CHOC CANDIES~^^~Masterfoods USA~^~Y~^^0^^6.25^^^
-~19142~^~1900~^~Candies, MOUNDS Candy Bar~^~CANDIES,MOUNDS CANDY BAR~^^~Hershey Food Corp.~^~Y~^^0^^6.25^^^
-~19143~^~1900~^~Candies, MR. GOODBAR Chocolate Bar~^~CANDIES,MR. GOODBAR CHOC BAR~^^~Hershey Food Corp.~^~Y~^^0^^6.25^^^
-~19144~^~1900~^~Candies, NESTLE, 100 GRAND Bar~^~CANDIES,NESTLE,100 GRAND BAR~^^~Nestle USA, Inc.~^~Y~^^0^^6.25^^^
-~19145~^~1900~^~Candies, NESTLE, CRUNCH Bar and Dessert Topping~^~CANDIES,NESTLE,CRUNCH BAR&DSSRT TOPPING~^^~Nestle USA, Inc.~^^^0^^^^^
-~19146~^~1900~^~Baking chocolate, MARS SNACKFOOD US, M&M's Milk Chocolate Mini Baking Bits~^~BAKING CHOC,MARS SNACKFOOD US,M&M'S MILK CHOC MINI BAK BITS~^^~Masterfoods USA~^^^0^^^^^
-~19147~^~1900~^~Candies, peanut bar~^~CANDIES,PEANUT BAR~^^^~Y~^^0^^5.50^3.50^8.40^3.90
-~19148~^~1900~^~Candies, peanut brittle, prepared-from-recipe~^~CANDIES,PNUT BRITTLE,PREPARED-FROM-RECIPE~^^^~Y~^^0^^6.25^4.00^9.00^4.00
-~19149~^~1900~^~Candies, NESTLE, RAISINETS Chocolate Covered Raisins~^~CANDIES,NESTLE,RAISINETS CHOC COVERED RAISINS~^^~Nestle USA, Inc.~^^^0^^^^^
-~19150~^~1900~^~Candies, REESE'S Peanut Butter Cups~^~CANDIES,REESE'S PNUT BUTTER CUPS~^^~Hershey Food Corp.~^~Y~^^0^^6.25^^^
-~19151~^~1900~^~Candies, REESE'S PIECES Candy~^~CANDIES,REESE'S PIECES CANDY~^^~Hershey Food Corp.~^~Y~^^0^^6.25^^^
-~19152~^~1900~^~Candies, ROLO Caramels in Milk Chocolate~^~CANDIES,ROLO CARAMELS IN MILK CHOC~^^~Hershey Food Corp.~^~Y~^^0^^6.25^^^
-~19153~^~1900~^~Candies, NESTLE, AFTER EIGHT Mints~^~CANDIES,NESTLE,AFTER EIGHT MINTS~^^~Nestle USA, Inc.~^^^0^^^^^
-~19154~^~1900~^~Candies, sesame crunch~^~CANDIES,SESAME CRUNCH~^^^~Y~^^0^^5.30^3.50^8.40^3.90
-~19155~^~1900~^~Candies, MARS SNACKFOOD US, SNICKERS Bar~^~CANDIES,MARS SNACKFOOD US,SNICKERS BAR~^^~Masterfoods USA~^~Y~^^0^^^^^
-~19156~^~1900~^~Candies, MARS SNACKFOOD US, STARBURST Fruit Chews, Original fruits~^~CANDIES,MARS SNACKFOOD US,STARBURST FRUIT CHEWS,ORIG FRUIT~^^~Masterfoods USA~^~Y~^^0^^6.25^^^
-~19157~^~1900~^~Candies, MARS SNACKFOOD US, M&M's MINIs Milk Chocolate Candies~^~CANDIES,MARS SNACKFOOD US,M&M'S MINIS MILK CHOC CANDIES~^^~Masterfoods USA~^^^0^^^^^
-~19159~^~1900~^~Candies, MARS SNACKFOOD US, 3 MUSKETEERS Bar~^~CANDIES,MARS SNACKFOOD US,3 MUSKETEERS BAR~^^~Masterfoods USA~^~Y~^^0^^6.25^^^
-~19160~^~1900~^~Candies, MARS SNACKFOOD US, TWIX Caramel Cookie Bars~^~CANDIES,MARS SNACKFOOD US,TWIX CARAMEL COOKIE BARS~^^~Masterfoods USA~^~Y~^^0^^6.25^^^
-~19161~^~1900~^~Candies, MARS SNACKFOOD US, TWIX Peanut Butter Cookie Bars~^~CANDIES,MARS SNACKFOOD US,TWIX PNUT BUTTER COOKIE BARS~^^~Masterfoods USA~^~Y~^^0^^6.25^^^
-~19162~^~1900~^~Candies, WHATCHAMACALLIT Candy Bar~^~CANDIES,WHATCHAMACALLIT CANDY BAR~^^~Hershey Food Corp.~^~Y~^^0^^6.25^^^
-~19163~^~1900~^~Chewing gum~^~CHEWING GUM~^~bubble gum~^^~Y~^^0^^6.25^1.82^8.37^3.70
-~19164~^~1900~^~Candies, SPECIAL DARK Chocolate Bar~^~CANDIES,SPL DK CHOC BAR~^^~Hershey Food Corp.~^^^0^^^^^
-~19165~^~1900~^~Cocoa, dry powder, unsweetened~^~COCOA,DRY PDR,UNSWTND~^^^~Y~^^0^^5.63^1.83^8.37^1.33
-~19166~^~1900~^~Cocoa, dry powder, unsweetened, processed with alkali~^~COCOA,DRY PDR,UNSWTND,PROC W/ALKALI~^~Dutch cocoa~^^~Y~^^0^^5.63^1.83^8.37^1.33
-~19168~^~1900~^~Desserts, egg custard, baked, prepared-from-recipe~^~DESSERTS,EGG CUSTARD,BKD,PREPARED-FROM-RECIPE~^^^^^0^^0.00^^^
-~19169~^~1900~^~Egg custards, dry mix~^~EGG CUSTARDS,DRY MIX~^^^^^0^^6.30^4.30^9.00^3.90
-~19170~^~1900~^~Egg custards, dry mix, prepared with whole milk~^~EGG CUSTARDS,DRY MIX,PREP W/ WHL MILK~^^^^^0^^^^^
-~19171~^~1900~^~Cocoa, dry powder, unsweetened, HERSHEY'S European Style Cocoa~^~COCOA,DRY PDR,UNSWTND,HERSHEY'S EUROPEAN STYLE COCOA~^^~Hershey Food Corp.~^^^0^^^^^
-~19172~^~1900~^~Gelatin desserts, dry mix~^~GELATIN DSSRT,DRY MIX~^^^~Y~^^0^^5.55^3.90^9.02^3.87
-~19173~^~1900~^~Gelatin desserts, dry mix, prepared with water~^~GELATIN DSSRT,DRY MIX,PREP W/ H2O~^^^~Y~^^0^^5.55^3.90^9.02^3.87
-~19175~^~1900~^~Gelatin desserts, dry mix, reduced calorie, with aspartame~^~GELATIN DSSRT,DRY MIX,RED CAL,W/ ASPRT~^^^~Y~^^0^^5.55^0.00^0.00^2.47
-~19176~^~1900~^~Gelatin desserts, dry mix, reduced calorie, with aspartame, prepared with water~^~GELATIN DSSRT,DRY MIX,RED CAL,W/ ASPRT,PREP W/ H2O~^^^~Y~^^0^^5.55^3.90^9.02^3.87
-~19177~^~1900~^~Gelatins, dry powder, unsweetened~^~GELATINS,DRY PDR,UNSWTND~^^^~Y~^^0^^5.55^3.90^9.02^
-~19181~^~1900~^~Candies, YORK BITES~^~CANDIES,YORK BITES~^^~Hershey Food Corp.~^^^0^^6.25^^^
-~19182~^~1900~^~Desserts, mousse, chocolate, prepared-from-recipe~^~DESSERTS,MOUSSE,CHOC,PREPARED-FROM-RECIPE~^^^^^0^^0.00^^^
-~19183~^~1900~^~Puddings, chocolate, ready-to-eat~^~PUDDINGS,CHOC,RTE~^^^~Y~^^0^^6.25^4.00^9.00^4.00
-~19184~^~1900~^~Puddings, chocolate, dry mix, instant~^~PUDDINGS,CHOC,DRY MIX,INST~^^^~Y~^^0^^6.25^4.00^9.00^4.00
-~19185~^~1900~^~Puddings, chocolate, dry mix, instant, prepared with whole milk~^~PUDDINGS,CHOC,DRY MIX,INST,PREP W/ WHL MILK~^^^^^0^^0.00^^^
-~19186~^~1900~^~Desserts, apple crisp, prepared-from-recipe~^~DESSERTS,APPL CRISP,PREPARED-FROM-RECIPE~^^^^^0^^0.00^^^
-~19187~^~1900~^~Flan, caramel custard, dry mix~^~FLAN,CARAMEL CUSTARD,DRY MIX~^^^^^0^^6.25^1.80^8.40^3.80
-~19188~^~1900~^~Puddings, chocolate, dry mix, regular~^~DESSERTS,PUDD,CHOC,DRY MIX,REG~^^^~Y~^^0^^5.60^1.90^8.40^3.80
-~19189~^~1900~^~Puddings, chocolate, dry mix, regular, prepared with whole milk~^~PUDDINGS,CHOC,DRY MIX,INST,PREP W/ WHOLE MILK~^^^~Y~^^0^^5.60^^^
-~19190~^~1900~^~Puddings, chocolate, dry mix, regular, prepared with 2% milk~^~PUDDINGS,CHOC,DRY MIX,REG,PREP W/ 2% MILK~^^^^^0^^^^^
-~19191~^~1900~^~Puddings, coconut cream, dry mix, instant, prepared with 2% milk~^~PUDDINGS,COCNT CRM,DRY MIX,INST,PREP W/ 2% MILK~^^^^^0^^^^^
-~19193~^~1900~^~Puddings, rice, ready-to-eat~^~Puddings, rice, ready-to-eat~^^^~Y~^^0^^6.25^^^
-~19194~^~1900~^~Puddings, rice, dry mix~^~PUDDINGS,RICE,DRY MIX~^^^^^0^^6.00^3.80^8.40^4.00
-~19195~^~1900~^~Puddings, rice, dry mix, prepared with whole milk~^~PUDDINGS,RICE,DRY MIX,PREP W/ WHL MILK~^^^^^0^^^^^
-~19198~^~1900~^~Puddings, tapioca, dry mix~^~PUDDINGS,TAPIOCA,DRY MIX~^^^^^0^^6.25^3.00^8.40^3.90
-~19199~^~1900~^~Puddings, tapioca, dry mix, prepared with whole milk~^~PUDDINGS,TAPIOCA,DRY MIX,PREP W/ WHL MILK~^^^^^0^^^^^
-~19201~^~1900~^~Puddings, vanilla, ready-to-eat~^~PUDDINGS,VANILLA,RTE~^^^~Y~^^0^^6.25^4.00^9.00^4.00
-~19202~^~1900~^~Puddings, vanilla, dry mix, instant~^~PUDDINGS,VANILLA,DRY MIX,INST~^^^~Y~^^0^^6.25^4.00^9.00^4.00
-~19203~^~1900~^~Puddings, vanilla, dry mix, instant, prepared with whole milk~^~PUDDINGS,VANILLA,DRY MIX,INST,PREP W/ WHL MILK~^^^^^0^^0.00^^^
-~19204~^~1900~^~Puddings, lemon, dry mix, instant, prepared with 2% milk~^~PUDDINGS,LEMON,DRY MIX,INST,PREP W/ 2% MILK~^^^^^0^^^^^
-~19205~^~1900~^~Egg custards, dry mix, prepared with 2% milk~^~EGG CUSTARDS,DRY MIX,PREP W/ 2% MILK~^^^^^0^^^^^
-~19206~^~1900~^~Puddings, vanilla, dry mix, regular~^~PUDDINGS,VANILLA,DRY MIX,REG~^^^~Y~^^0^^6.25^4.00^9.00^4.00
-~19207~^~1900~^~Puddings, vanilla, dry mix, regular, prepared with whole milk~^~PUDDINGS,VANILLA,DRY MIX,REG,PREP W/ WHL MILK~^^^~Y~^^0^^6.25^^^
-~19208~^~1900~^~Puddings, rice, dry mix, prepared with 2% milk~^~PUDDINGS,RICE,DRY MIX,PREP W/ 2% MILK~^^^^^0^^^^^
-~19209~^~1900~^~Puddings, tapioca, dry mix, prepared with 2% milk~^~PUDDINGS,TAPIOCA,DRY MIX,PREP W/ 2% MILK~^^^^^0^^^^^
-~19212~^~1900~^~Puddings, vanilla, dry mix, regular, prepared with 2% milk~^~PUDDINGS,VANILLA,DRY MIX,REG,PREP W/ 2% MILK~^^^^^0^^^^^
-~19213~^~1900~^~Rennin, chocolate, dry mix, prepared with 2% milk~^~RENNIN,CHOC,DRY MIX,PREP W/ 2% MILK~^^^^^0^^^^^
-~19214~^~1900~^~Rennin, vanilla, dry mix, prepared with 2% milk~^~RENNIN,VANILLA,DRY MIX,PREP W/ 2% MILK~^^^^^0^^^^^
-~19216~^~1900~^~Candies, praline, prepared-from-recipe~^~CANDIES,PRALINE,PREPARED-FROM-RECIPE~^^^^^0^^0.00^^^
-~19217~^~1900~^~Frozen novelties, ice type, fruit, no sugar added~^~FROZEN NOVELTIES,ICE TYPE,FRUIT,NO SUGAR ADDED~^^^^^0^^5.60^3.90^9.00^3.50
-~19218~^~1900~^~Puddings, tapioca, ready-to-eat~^~PUDDINGS,TAPIOCA,RTE~^^^~Y~^^0^^6.25^4.00^9.00^4.00
-~19219~^~1900~^~Puddings, coconut cream, dry mix, regular, prepared with 2% milk~^~PUDDINGS,COCNT CRM,DRY MIX,REG,PREP W/ 2% MILK~^^^^^0^^^^^
-~19220~^~1900~^~Desserts, rennin, chocolate, dry mix~^~DESSERTS,RENNIN,CHOC,DRY MIX~^^^^^0^^5.60^2.20^8.37^3.60
-~19221~^~1900~^~Rennin, chocolate, dry mix, prepared with whole milk~^~RENNIN,CHOC,DRY MIX,PREP W/ WHL MILK~^^^^^0^^^^^
-~19222~^~1900~^~Desserts, rennin, vanilla, dry mix~^~DESSERTS,RENNIN,VANILLA,DRY MIX~^^^^^0^^5.60^3.90^9.00^3.90
-~19223~^~1900~^~Rennin, vanilla, dry mix, prepared with whole milk~^~RENNIN,VANILLA,DRY MIX,PREP W/ WHL MILK~^^^^^0^^^^^
-~19225~^~1900~^~Desserts, rennin, tablets, unsweetened~^~DESSERTS,RENNIN,TABLETS,UNSWTND~^^^^^0^^6.25^4.00^9.00^4.00
-~19226~^~1900~^~Frostings, chocolate, creamy, ready-to-eat~^~FROSTINGS,CHOC,CREAMY,RTE~^^^~Y~^^0^^5.60^1.80^8.80^3.80
-~19227~^~1900~^~Frostings, coconut-nut, ready-to-eat~^~FROSTINGS,COCONUT-NUT,RTE~^^^~Y~^^0^^6.25^4.00^9.00^4.00
-~19228~^~1900~^~Frostings, cream cheese-flavor, ready-to-eat~^~FROSTINGS,CRM CHEESE-FLAVOR,RTE~^^^^^0^^5.80^4.10^8.80^3.90
-~19230~^~1900~^~Frostings, vanilla, creamy, ready-to-eat~^~FROSTINGS,VANILLA,CREAMY,RTE~^^^~Y~^^0^^6.25^4.00^9.00^4.00
-~19231~^~1900~^~Flan, caramel custard, dry mix, prepared with 2% milk~^~FLAN,CARAMEL CUSTARD,DRY MIX,PREP W/ 2% MILK~^^^^^0^^^^^
-~19232~^~1900~^~Flan, caramel custard, dry mix, prepared with whole milk~^~FLAN,CARAMEL CUSTARD,DRY MIX,PREP W/ WHL MILK~^^^^^0^^^^^
-~19233~^~1900~^~Puddings, vanilla, ready-to-eat, fat free~^~PUDDINGS,VANILLA,RTE,FAT FREE~^^^~Y~^^0^^6.25^4.00^9.00^4.00
-~19234~^~1900~^~Puddings, tapioca, ready-to-eat, fat free~^~PUDDINGS,TAPIOCA,RTE,FAT FREE~^^^~Y~^^0^^6.25^4.00^9.00^4.00
-~19235~^~1900~^~Puddings, chocolate, ready-to-eat, fat free~^~PUDDINGS,CHOC,RTE,FAT FREE~^^^~Y~^^0^^6.25^4.00^9.00^4.00
-~19236~^~1900~^~Candies, HERSHEY'S MILK CHOCOLATE WITH ALMOND BITES~^~CANDIES,HERSHEY'S MILK CHOC W/ ALMOND BITES~^^~Hershey Food Corp.~^^^0^^6.25^^^
-~19238~^~1900~^~Candies, REESE'S BITES~^~CANDIES,REESE'S BITES~^^~Hershey Food Corp.~^^^0^^6.25^^^
-~19239~^~1900~^~Candies, REESE'S NUTRAGEOUS Candy Bar~^~CANDIES,REESE'S NUTRAGEOUS CANDY BAR~^^~Hershey Food Corp.~^^^0^^^^^
-~19240~^~1900~^~Frostings, chocolate, creamy, dry mix~^~FROSTINGS,CHOC,CREAMY,DRY MIX~^^^^^0^^5.60^1.80^8.80^3.70
-~19241~^~1900~^~Frostings, chocolate, creamy, dry mix, prepared with butter~^~FROSTINGS,CHOC,CREAMY,DRY MIX,PREP W/ BUTTER~^^^^^0^^^^^
-~19243~^~1900~^~Candies, HEATH BITES~^~CANDIES,HEATH BITES~^^~Hershey Food Corp.~^^^0^^6.25^^^
-~19244~^~1900~^~Frostings, vanilla, creamy, dry mix~^~FROSTINGS,VANILLA,CREAMY,DRY MIX~^^^^^0^^6.25^3.46^8.80^3.90
-~19246~^~1900~^~Frostings, white, fluffy, dry mix~^~FROSTINGS,WHITE,FLUFFY,DRY MIX~^^^^^0^^6.10^4.30^8.60^3.80
-~19247~^~1900~^~Frostings, white, fluffy, dry mix, prepared with water~^~FROSTINGS,WHITE,FLUFFY,DRY MIX,PREP W/H2O~^^^^^0^^0.00^^^
-~19248~^~1900~^~Candies, HERSHEY'S, ALMOND JOY BITES~^~CANDIES,HERSHEY'S,ALMOND JOY BITES~^^~Hershey Food Corp.~^^^0^^6.25^^^
-~19249~^~1900~^~Candies, HERSHEY, REESESTICKS crispy wafers, peanut butter, milk chocolate~^~CANDIES,HERSHEY,REESESTICKS CRISPY WAFERS,PNUT BUT,MILK CHOC~^^~Hershey Food Corp.~^~Y~^^0^^6.25^^^
-~19250~^~1900~^~Candies, HERSHEY, KIT KAT BIG KAT Bar~^~CANDIES,HERSHEY,KIT KAT BIG KAT BAR~^^~Hershey Food Corp.~^^^0^^6.25^^^
-~19252~^~1900~^~Candies, REESE'S, FAST BREAK, milk chocolate peanut butter and soft nougats~^~CANDIES,REESE'S,FAST BREAK,MILK CHOC PNT BTR & SFT NUGTS~^^~Hershey Food Corp.~^^^0^^6.25^^^
-~19254~^~1900~^~Candies, MARS SNACKFOOD US, DOVE Milk Chocolate~^~CANDIES,MARS SNACKFOOD US,DOVE MILK CHOC~^^~Masterfoods USA~^^^0^^^^^
-~19255~^~1900~^~Candies, MARS SNACKFOOD US, DOVE Dark Chocolate~^~CANDIES,MARS SNACKFOOD US,DOVE DK CHOC~^^~Masterfoods USA~^^^0^^^^^
-~19256~^~1900~^~Candies, MARS SNACKFOOD US, MILKY WAY Caramels, milk chocolate covered~^~CANDIES,MARS SNACKFOOD US,MILKYWAYCARAML,MILKCHOCOV~^^~Masterfoods USA~^^^0^^^^^
-~19258~^~1900~^~Candies, MARS SNACKFOOD US, MILKY WAY Caramels. dark chocolate covered~^~CANDIES,MARS SNACKFOOD US,MILKY WAY CARML. DKCHOCCOV~^^~Masterfoods USA~^^^0^^^^^
-~19260~^~1900~^~Ice creams, vanilla, light, no sugar added~^~ICE CREAMS,VANILLA,LT,NO SUGAR ADDED~^^^~Y~^^0^^6.25^4.00^9.00^4.00
-~19263~^~1900~^~Frozen novelties, fruit and juice bars~^~FROZEN NOVELTIES,FRUIT & JUC BARS~^^^~Y~^^0^^6.25^4.00^9.00^4.00
-~19265~^~1900~^~Ice creams, chocolate, light, no sugar added~^~ICE CREAMS,CHOC,LT,NO SUGAR ADDED~^^^~Y~^^0^^6.25^^^
-~19268~^~1900~^~Candies, dark chocolate coated coffee beans~^~CANDIES,DK CHOC COATD COFFEE BNS~^^^^^0^^6.25^4.00^9.00^4.00
-~19269~^~2500~^~Snacks, GENERAL MILLS, BETTY CROCKER Fruit Roll Ups, berry flavored, with vitamin C~^~SNACKS,GENERAL MILLS,BETTY CROCKER FRT RL UPS,BRY FLV,W/VT C~^^^^^0^^^4.00^9.00^4.00
-~19270~^~1900~^~Ice creams, chocolate~^~ICE CREAMS,CHOC~^^^~Y~^^0^^6.10^3.60^8.80^3.70
-~19271~^~1900~^~Ice creams, strawberry~^~ICE CREAMS,STRAWBERRY~^^^^^0^^6.40^4.10^8.79^3.80
-~19272~^~2500~^~Snacks, FARLEY CANDY, FARLEY Fruit Snacks, with vitamins A, C, and E~^~SNACKS,FARLEY CANDY,FARLEY FRUIT SNACKS,W/VITAMINS A,C,&E~^^^^^0^^^4.00^9.00^4.00
-~19273~^~2500~^~Snacks, SUNKIST, SUNKIST Fruit Roll, strawberry, with vitamins A, C, and E~^~SNACKS,SUNKIST,SUNKIST FRUIT ROLL,STRAWBERRY,W/VITMNS A,C,&E~^^^^^0^^^4.00^9.00^4.00
-~19274~^~2500~^~Snacks, fruit leather, pieces, with vitamin C~^~SNACKS,FRUIT LEATHER,PIECES,W/VIT C~^^^^^0^^^^^
-~19279~^~1900~^~Candies, milk chocolate coated coffee beans~^~CANDIES,MILK CHOC COATD COFFEE BNS~^^^~Y~^^0^^^^^
-~19280~^~1900~^~Frozen novelties, ice type, lime~^~FROZEN NOVELTIES,ICE TYPE,LIME~^^^~Y~^^0^^6.25^3.36^8.37^3.90
-~19281~^~1900~^~Frozen novelties, ice type, italian, restaurant-prepared~^~FROZEN NOVELTIES,ICE TYPE,ITALIAN,REST-PREP~^^^^^0^^6.25^3.36^8.37^3.90
-~19283~^~1900~^~Frozen novelties, ice type, pop~^~FROZEN NOVELTIES,ICE TYPE,POP~^^^~Y~^^0^^6.25^4.00^9.00^4.00
-~19292~^~1900~^~Candies, MARS SNACKFOOD US, M&M's Crispy Chocolate Candies~^~CANDIES,MARS SNACKFOOD US,M&M'S CRISPY CHOC CANDIES~^^~Masterfoods USA~^^^0^^^^^
-~19293~^~1900~^~Frozen yogurts, vanilla, soft-serve~^~FROZEN YOGURTS,VANILLA,SOFT-SERVE~^^^~Y~^^0^^6.25^4.00^9.00^4.00
-~19294~^~1900~^~Fruit butters, apple~^~FRUIT BUTTERS,APPLE~^^^~Y~^^0^^6.25^4.00^9.00^4.00
-~19295~^~1900~^~Candies, MARS SNACKFOOD US, SNICKERS MUNCH bar~^~CANDIES,MARS SNACKFOOD US,SNICKERS MUNCH BAR~^^~Masterfoods USA~^^^0^^^^^
-~19296~^~1900~^~Honey~^~HONEY~^^^~Y~^^0^^6.25^3.36^8.37^3.68
-~19297~^~1900~^~Jams and preserves~^~JAMS AND PRESERVES~^^^~Y~^^0^^6.25^4.00^9.00^4.00
-~19300~^~1900~^~Jellies~^~JELLIES~^^^~Y~^^0^^6.25^3.36^8.37^3.80
-~19301~^~1900~^~Candies, fudge, chocolate marshmallow, with nuts, prepared-by-recipe~^~CANDIES,FUDGE,CHOC MARSHMLLW,W/ NUTS,PREPARED-BY-RECIPE~^^^^^0^^^^^
-~19302~^~1900~^~Candies, MARS SNACKFOOD US, SNICKERS Almond bar~^~CANDIES,MARS SNACKFOOD US,SNICKERS ALMOND BAR~^^~Masterfoods USA~^^^0^^^^^
-~19303~^~1900~^~Marmalade, orange~^~MARMALADE,ORANGE~^^^~Y~^^0^^6.25^3.40^8.40^3.70
-~19304~^~1900~^~Molasses~^~MOLASSES~^^^~Y~^^0^^6.25^^8.37^3.87
-~19306~^~1900~^~Candies, MARS SNACKFOOD US, POP'ABLES SNICKERS Brand Bite Size Candies~^~CANDIES,MARS SNACKFOOD US,POP SNICKERS BITE SIZE CANDIES~^^~Masterfoods USA~^^^0^^^^^
-~19307~^~1900~^~Candies, MARS SNACKFOOD US, POP'ABLES MILKY WAY Brand Bite Size Candies~^~CANDIES,MARS SNACKFOOD US,POP MILKY WAY BITE SIZE~^^~Masterfoods USA~^^^0^^^^^
-~19308~^~1900~^~Candies, MARS SNACKFOOD US, POP'ABLES 3 MUSKETEERS Brand Bite Size Candies~^~CANDIES,MARS SNACK US,POP'ABLES 3 MUSKETEERS BITE SIZE~^^~Masterfoods USA~^^^0^^^^^
-~19309~^~1900~^~Candies, MARS SNACKFOOD US, STARBURST Fruit Chews, Fruit and Creme~^~CANDIES,MARS SNACK US,STARBURST FRUIT CHEWS,FRT&CREM~^^~Masterfoods USA~^^^0^^^^^
-~19310~^~1900~^~Pectin, unsweetened, dry mix~^~PECTIN,UNSWTND,DRY MIX~^^^^^0^^6.25^^^3.60
-~19312~^~1900~^~Pie fillings, apple, canned~^~PIE FILLINGS,APPL,CND~^^^~Y~^^0^^6.25^3.40^8.40^3.80
-~19313~^~1900~^~Candies, MARS SNACKFOOD US, STARBURST Fruit Chews, Tropical fruits~^~CANDIES,MARS SNACKFOOD US,STARBURST FRUIT CHEWS,TROP~^^~Masterfoods USA~^^^0^^^^^
-~19314~^~1900~^~Pie fillings, canned, cherry~^~PIE FILLINGS,CND,CHERRY~^^^^^0^^6.25^4.00^9.00^4.00
-~19315~^~1900~^~Candies, MARS SNACKFOOD US, STARBURST Sour Fruit Chews~^~CANDIES,MARS SNACKFOOD US,STARBURST SOUR FRUIT CHEWS~^^~Masterfoods USA~^^^0^^^^^
-~19318~^~1900~^~Puddings, banana, dry mix, instant~^~PUDDINGS,BANANA,DRY MIX,INST~^^^^^0^^6.40^4.20^8.80^3.90
-~19319~^~1900~^~Puddings, banana, dry mix, instant, prepared with whole milk~^~PUDDINGS,BANANA,DRY MIX,INST,PREP W/ WHL MILK~^^^^^0^^^^^
-~19320~^~1900~^~Puddings, banana, dry mix, regular~^~PUDDINGS,BANANA,DRY MIX,REG~^^^^^0^^6.20^3.50^8.40^3.90
-~19321~^~1900~^~Puddings, banana, dry mix, regular, prepared with whole milk~^~PUDDINGS,BANANA,DRY MIX,REG,PREP W/ WHL MILK~^^^^^0^^^^^
-~19322~^~1900~^~Puddings, coconut cream, dry mix, instant~^~DESSERTS,PUDD,COCNT CRM,DRY MIX,INST~^^^~Y~^^0^^5.40^3.60^8.60^3.90
-~19323~^~1900~^~Puddings, coconut cream, dry mix, instant, prepared with whole milk~^~PUDDINGS,COCNT CRM,DRY MIX,INST,PREP W/ WHL MILK~^^^^^0^^^^^
-~19324~^~1900~^~Puddings, coconut cream, dry mix, regular~^~PUDDINGS,COCNT CRM,DRY MIX,REG~^^^~Y~^^0^^6.25^4.00^9.00^4.00
-~19325~^~1900~^~Puddings, coconut cream, dry mix, regular, prepared with whole milk~^~PUDDINGS,COCNT CRM,DRY MIX,REG,PREP W/ WHL MILK~^^^^^0^^^^^
-~19326~^~1900~^~Candies, MARS SNACKFOOD US, COCOAVIA Chocolate Bar~^~CANDIES,MARS SNACKFOOD US,COCOAVIA CHOC BAR~^^~Masterfoods USA~^^^0^^^^^
-~19327~^~1900~^~Candies, MARS SNACKFOOD US, COCOAVIA Blueberry and Almond Chocolate Bar~^~CANDIES,MARS SNACK US,COCOAVIA BLUEBERRY & ALMOND CHOC BAR~^^~Masterfoods USA~^^^0^^^^^
-~19328~^~1900~^~Candies, MARS SNACKFOOD US, COCOAVIA Crispy Chocolate Bar~^~CANDIES,MARS SNACKFOOD US,COCOAVIA CRISPY CHOC BAR~^^~Masterfoods USA~^^^0^^^^^
-~19330~^~1900~^~Puddings, lemon, dry mix, instant~^~PUDDINGS,LEMON,DRY MIX,INST~^^^^^0^^6.40^4.20^8.80^3.90
-~19331~^~1900~^~Puddings, lemon, dry mix, instant, prepared with whole milk~^~PUDDINGS,LEMON,DRY MIX,INST,PREP W/ WHL MILK~^^^^^0^^^^^
-~19332~^~1900~^~Puddings, lemon, dry mix, regular~^~PUDDINGS,LEMON,DRY MIX,REG~^^^^^0^^6.25^3.50^8.80^3.90
-~19333~^~1900~^~Pudding, lemon, dry mix, regular, prepared with sugar, egg yolk and water~^~PUDDING,LEMON,DRY MIX,REG,PREP W/ SUGAR,EGG YOLK & H2O~^^^^^0^^^^^
-~19334~^~1900~^~Sugars, brown~^~SUGARS,BROWN~^^^~Y~^^0^^6.25^4.00^0.00^3.87
-~19335~^~1900~^~Sugars, granulated~^~SUGARS,GRANULATED~^~sucrose~^^~Y~^^0^^6.25^^^3.87
-~19336~^~1900~^~Sugars, powdered~^~SUGARS,POWDERED~^^^~Y~^^0^^6.25^3.50^8.40^3.90
-~19337~^~1900~^~Sweeteners, tabletop, aspartame, EQUAL, packets~^~SWEETENERS,TABLETOP,ASPRT,EQ,PACKETS~^^~Merisant Company~^~Y~^^0^^6.25^4.00^9.00^4.00
-~19340~^~1900~^~Sugars, maple~^~SUGARS,MAPLE~^^^~Y~^^0^^6.25^3.36^8.37^3.87
-~19345~^~1900~^~Syrups, chocolate, HERSHEY'S Genuine Chocolate Flavored Lite Syrup~^~SYRUPS,CHOC,HERSHEY'S GENUINE CHOC FLAV LITE SYRUP~^^~Hershey Food Corp.~^~Y~^^0^^^4.00^9.00^4.00
-~19348~^~1900~^~Syrups, chocolate, fudge-type~^~SYRUPS,CHOC,FUDGE-TYPE~^^^~Y~^^0^^6.25^4.00^9.00^4.00
-~19349~^~1900~^~Syrups, corn, dark~^~SYRUPS,CORN,DK~^^^~Y~^^0^^6.25^0.00^0.00^3.68
-~19350~^~1900~^~Syrups, corn, light~^~SYRUPS,CORN,LT~^^^~Y~^^0^^6.25^0.00^0.00^3.68
-~19351~^~1900~^~Syrups, corn, high-fructose~^~SYRUPS,CORN,HIGH-FRUCTOSE~^^^~Y~^^0^^6.25^^^3.70
-~19352~^~1900~^~Syrups, malt~^~SYRUPS,MALT~^^^^^0^^6.25^3.87^8.37^4.12
-~19353~^~1900~^~Syrups, maple~^~SYRUPS,MAPLE~^^^~Y~^^0^^6.25^3.36^8.37^3.87
-~19355~^~1900~^~Syrups, sorghum~^~SYRUPS,SORGHUM~^^^~Y~^^0^^6.25^^^3.87
-~19359~^~1900~^~Candies, MARS SNACKFOOD US, SNICKERS CRUNCHER~^~CANDIES,MARS SNACKFOOD US,SNICKERS CRUNCHER~^^~Masterfoods USA~^^^0^^^^^
-~19360~^~1900~^~Syrups, table blends, pancake, with 2% maple~^~SYRUPS,TABLE BLENDS,PANCAKE,W/2% MAPLE~^^^~Y~^^0^^6.25^3.36^8.37^3.80
-~19362~^~1900~^~Syrups, table blends, corn, refiner, and sugar~^~SYRUPS,TABLE BLENDS,CORN,REFINER,&SUGAR~^^^^^0^^6.25^3.36^8.37^3.80
-~19363~^~1900~^~Candies, MARS SNACKFOOD US, SKITTLES Wild Berry Bite Size Candies~^~CANDIES,MARS SNACKFOOD US,SKITTLES WILD BERRY BITE SIZE~^^~Masterfoods USA~^^^0^^^^^
-~19364~^~1900~^~Toppings, butterscotch or caramel~^~TOPPINGS,BUTTERSCOTCH OR CARAMEL~^^^~Y~^^0^^6.38^4.27^8.80^3.70
-~19365~^~1900~^~Toppings, marshmallow cream~^~TOPPINGS,MARSHMLLW CRM~^^^~Y~^^0^^0.00^4.00^9.00^4.00
-~19366~^~1900~^~Toppings, pineapple~^~TOPPINGS,PINEAPPLE~^^^~Y~^^0^^6.25^3.36^8.37^3.80
-~19367~^~1900~^~Toppings, nuts in syrup~^~TOPPINGS,NUTS IN SYRUP~^^^~Y~^^0^^6.25^4.00^9.00^4.00
-~19368~^~1900~^~Candies, MARS SNACKFOOD US, SKITTLES Tropical Bite Size Candies~^~CANDIES,MARS SNACKFOOD US,SKITTLES TROPICAL BITE SIZE CAND~^^~Masterfoods USA~^^^0^^^^^
-~19369~^~1900~^~Candies, MARS SNACKFOOD US, SKITTLES Sours Original~^~CANDIES,MARS SNACKFOOD US,SKITTLES SOURS ORIGINAL~^^~Masterfoods USA~^^^0^^^^^
-~19370~^~1900~^~Candies, MARS SNACKFOOD US, SKITTLES Original Bite Size Candies~^~CANDIES,MARS SNACKFOOD US,SKITTLES ORIGINAL BITE SIZE CAND~^^~Masterfoods USA~^~Y~^^0^^^^^
-~19371~^~1900~^~Frostings, vanilla, creamy, dry mix, prepared with margarine~^~FROSTINGS,VANILLA,CREAMY,DRY MIX,PREP W/ MARGARINE~^^^^^0^^^^^
-~19372~^~1900~^~Frostings, chocolate, creamy, dry mix, prepared with margarine~^~FROSTINGS,CHOC,CREAMY,DRY MIX,PREP W/ MARGARINE~^^^^^0^^^^^
-~19375~^~1900~^~Frostings, glaze, prepared-from-recipe~^~FROSTINGS,GLAZE,PREPARED-FROM-RECIPE~^^^^^0^^^^^
-~19379~^~1900~^~Candies, fudge, chocolate marshmallow, prepared-from-recipe~^~CANDIES,FUDGE,CHOC MARSHMLLW,PREPARED-FROM-RECIPE~^^^^^0^^0.00^^^
-~19382~^~1900~^~Candies, taffy, prepared-from-recipe~^~CANDIES,TAFFY,PREPARED-FROM-RECIPE~^^^^^0^^0.00^^^
-~19383~^~1900~^~Candies, toffee, prepared-from-recipe~^~CANDIES,TOFFEE,PREPARED-FROM-RECIPE~^^^^^0^^0.00^^^
-~19384~^~1900~^~Candies, divinity, prepared-from-recipe~^~CANDIES,DIVINITY,PREPARED-FROM-RECIPE~^^^^^0^^0.00^^^
-~19387~^~1900~^~Frozen novelties, ice type, pineapple-coconut~^~FROZEN NOVELTIES,ICE TYPE,PINEAPPLE-COCONUT~^^^^^0^^6.25^3.40^8.40^3.80
-~19393~^~1900~^~Frozen yogurts, chocolate, soft-serve~^~FROZEN YOGURTS,CHOC,SOFT-SERVE~^^^^^0^^6.20^3.60^8.70^3.70
-~19400~^~2500~^~Snacks, banana chips~^~BANANA CHIPS~^^^~Y~^^0^^6.25^3.40^8.60^3.80
-~19401~^~2500~^~Snacks, cornnuts, barbecue-flavor~^~CORNNUTS,BARBECUE-FLAVOR~^^^^^0^^6.20^2.70^8.70^4.00
-~19403~^~2500~^~Snacks, crisped rice bar, almond~^~CRISPED RICE BAR,ALMOND~^^^^^0^^5.60^3.50^8.60^4.00
-~19404~^~2500~^~Snacks, granola bars, soft, uncoated, chocolate chip~^~GRANOLA BARS,SOFT,UNCOATED,CHOC CHIP~^^^~Y~^^0^^5.80^3.40^8.40^3.70
-~19405~^~2500~^~Snacks, granola bars, soft, uncoated, chocolate chip, graham and marshmallow~^~GRANOLA BARS,SOFT,UNCOATED,CHOC CHIP,GRAHAM&MARSHMLLW~^^^^^0^^5.80^3.40^8.40^3.90
-~19406~^~2500~^~Snacks, granola bars, soft, uncoated, nut and raisin~^~GRANOLA BARS,SOFT,UNCOATED,NUT&RAISIN~^^^^^0^^5.70^3.50^8.40^4.00
-~19407~^~2500~^~Snacks, beef sticks, smoked~^~SNACKS,BF STKS,SMOKED~^^^^^0^^6.20^4.10^9.00^2.90
-~19408~^~2500~^~Snacks, pork skins, barbecue-flavor~^~PORK SKINS,BARBECUE-FLAVOR~^^^^^0^^6.25^4.27^9.02^3.87
-~19409~^~1900~^~Frostings, glaze, chocolate, prepared-from-recipe, with butter, NFSMI Recipe No. C-32~^~FROSTING,GLAZ,CHC,PREP-FRM-RCIP,W/ BUTR,NFSMI RECIP NO. C-32~^^^^^0^^^^^
-~19410~^~2500~^~Snack, potato chips, made from dried potatoes, plain~^~POTATO CHIPS,MADE FROM DRIED POTATOES,PLN~^^^~Y~^^0^^6.25^2.80^8.80^4.00
-~19411~^~2500~^~Snacks, potato chips, plain, salted~^~POTATO CHIPS,PLAIN,SALTED~^^^~Y~^^0^^6.25^2.80^8.80^4.00
-~19412~^~2500~^~Snacks, potato chips, made from dried potatoes, cheese-flavor~^~POTATO CHIPS,MADE FROM DRIED POTATOES,CHEESE-FLAVOR~^^^^^0^^6.30^3.30^8.80^4.00
-~19413~^~2500~^~Snacks, rice cakes, brown rice, corn~^~SNACKS,RICE CAKES,BROWN RICE,CORN~^^^^^0^^6.10^3.00^8.40^4.10
-~19414~^~2500~^~Snacks, rice cakes, brown rice, multigrain~^~RICE CAKES,BROWN RICE,MULTIGRAIN~^^^^^0^^5.90^3.40^8.40^4.10
-~19415~^~2500~^~Snacks, potato sticks~^~SNACKS,POTATO STKS~^^^~Y~^^0^^6.25^2.78^8.37^4.03
-~19416~^~2500~^~Snacks, rice cakes, brown rice, rye~^~RICE CAKES,BROWN RICE,RYE~^^^^^0^^5.90^3.30^8.40^4.10
-~19418~^~2500~^~Snacks, sesame sticks, wheat-based, salted~^~SESAME STKS,WHEAT-BASED,SALTED~^^^~Y~^^0^^5.70^3.70^8.70^3.90
-~19419~^~2500~^~Snacks, corn cakes~^~CORN CAKES~^^^^^0^^6.10^3.10^8.40^4.10
-~19420~^~2500~^~Snacks, granola bars, hard, peanut butter~^~GRANOLA BARS,HARD,PNUT BUTTER~^^^^^0^^5.60^3.40^8.70^3.90
-~19421~^~2500~^~Snacks, potato chips, cheese-flavor~^~POTATO CHIPS,CHEESE-FLAVOR~^^^^^0^^6.30^3.00^8.80^4.00
-~19422~^~2500~^~Snacks, potato chips, reduced fat~^~SNACKS,POTATO CHIPS,RED FAT~^^^~Y~^^0^^6.25^2.80^8.80^4.00
-~19423~^~2500~^~Snacks, potato chips, fat-free, made with olestra~^~SNACKS,POTATO CHIPS,FAT-FREE,MADE W/OLESTRA~^^^~Y~^^0^^6.25^^^
-~19424~^~2500~^~Snacks, tortilla chips, nacho-flavor, reduced fat~^~SNACKS,TORTILLA CHIPS,NACHO-FLAVOR,RED FAT~^^^^^0^^6.30^2.90^8.80^4.00
-~19433~^~2500~^~Tortilla chips, low fat, baked without fat~^~TORTILLA CHIPS,LOFAT,BKD WO/FAT~^^^~Y~^^0^^5.70^4.10^8.80^4.40
-~19434~^~2500~^~Cheese puffs and twists, corn based, baked, low fat~^~CHEESE PUFFS & TWISTS,CORN BSD,BKD,LOFAT~^^^~Y~^^0^^6.50^^^
-~19435~^~2500~^~Snacks, granola bar, fruit-filled, nonfat~^~SNACKS,GRANOLA BAR,FRUIT-FILLED,NONFAT~^^^~Y~^^0^^^^^
-~19436~^~2500~^~Popcorn, sugar syrup/caramel, fat-free~^~POPCORN,SUGAR SYRUP/CARAMEL,FAT-FREE~^^^~Y~^^0^^6.50^^^
-~19437~^~2500~^~Snacks, potato chips, fat free, salted~^~POTATO CHIPS,FAT FREE,SALTED~^^^~Y~^^0^^6.50^^^
-~19438~^~2500~^~Snacks, KELLOGG, KELLOGG'S RICE KRISPIES TREATS Squares~^~SNACKS,KELLOGG,KELLOGG'S RICE KRISPIES TREATS SQUARES~^^^~Y~^^0^^6.50^^^
-~19439~^~2500~^~Snacks, KELLOGG, KELLOGG'S Low Fat Granola Bar, Crunchy Almond/Brown Sugar~^~SNACKS,KELLOGG'S LOFAT GRANOLA BAR,CRUNCHY ALMD/BRN SUGAR~^^^^^0^^^^^
-~19440~^~2500~^~Snacks, M&M MARS, KUDOS Whole Grain Bar, chocolate chip~^~SNACKS,M&M MARS,KUDOS WHL GRAIN BARS,CHOC CHIP~^^^^^0^^^^^
-~19441~^~2500~^~Snacks, KELLOGG, KELLOGG'S, NUTRI-GRAIN Cereal Bars, fruit~^~SNACKS,KELLOGG,KELLOGG'S,NUTRI-GRAIN CRL BARS,FRUIT~^^~Kellogg, Co.~^~Y~^^0^^6.50^^^
-~19444~^~2500~^~Snacks, tortilla chips, low fat, made with olestra, nacho cheese~^~SNACKS,TORTILLA CHIPS,LOFAT,MADE W/OLESTRA,NACHO CHS~^^^~Y~^^0^^6.50^^^
-~19445~^~2500~^~Snacks, potato chips, made from dried potatoes, fat-free, made with olestra~^~SNACKS,POTATO CHIPS,FRM DRIED POTATOES,FAT-FREE,W/ OLESTRA~^^^~Y~^^0^^6.20^^^
-~19524~^~2500~^~Snacks, taro chips~^~TARO CHIPS~^^^~Y~^^0^^6.25^2.80^8.80^4.00
-~19701~^~1900~^~Candies, semisweet chocolate, made with butter~^~CANDIES,SEMISWEET CHOC,MADE W/BUTTER~^^^^^0^^5.63^1.83^8.50^3.40
-~19702~^~1900~^~Gelatin desserts, dry mix, with added ascorbic acid, sodium-citrate and salt~^~GELATIN DSSRT,DRY MIX,W/ ADDED VIT C,SODIUM-CITRATE & SALT~^^^^^0^^5.55^3.90^9.02^3.87
-~19703~^~1900~^~Gelatin desserts, dry mix, reduced calorie, with aspartame, added phosphorus, potassium, sodium, vitamin C~^~GELATIN DSSRT,DRY MIX,RED CAL,W/ ASPRT,ADDED P,K,NA,VIT C~^^^^^0^^5.55^3.90^9.02^3.87
-~19704~^~1900~^~Gelatin desserts, dry mix, reduced calorie, with aspartame, no added sodium~^~GELATIN DSSRT,DRY MIX,RED CAL,W/ ASPRT,NO ADDED NA~^^^^^0^^5.55^3.90^9.02^3.87
-~19705~^~1900~^~Puddings, banana, dry mix, instant, with added oil~^~PUDDINGS,BANANA,DRY MIX,INST,W/ ADDED OIL~^^^^^0^^6.40^4.20^8.80^3.90
-~19706~^~1900~^~Puddings, banana, dry mix, regular, with added oil~^~PUDDINGS,BANANA,DRY MIX,REG,W/ ADDED OIL~^^^^^0^^6.20^3.50^8.40^3.90
-~19708~^~1900~^~Puddings, lemon, dry mix, regular, with added oil, potassium, sodium~^~PUDDINGS,LEMON,DRY MIX,REG,W/ ADDED OIL,K,NA~^^^^^0^^6.25^3.50^8.80^3.90
-~19709~^~1900~^~Puddings, tapioca, dry mix, with no added salt~^~PUDDINGS,TAPIOCA,DRY MIX,W/ NO ADDED SALT~^^^^^0^^6.25^3.00^8.40^3.90
-~19710~^~1900~^~Puddings, vanilla, dry mix, regular, with added oil~^~PUDDINGS,VANILLA,DRY MIX,REG,W/ ADDED OIL~^^^^^0^^6.25^3.50^8.40^3.90
-~19719~^~1900~^~Jams and preserves, apricot~^~JAMS&PRESERVES,APRICOT~^^^~Y~^^0^^6.25^3.36^8.37^3.70
-~19720~^~1900~^~Syrups, table blends, pancake, with 2% maple, with added potassium~^~SYRUPS,TABLE BLENDS,PANCAKE,W/2% MAPLE,W/ K~^^^^^0^^6.25^3.36^8.37^3.80
-~19800~^~2500~^~Snacks, corn cakes, very low sodium~^~CORN CAKES,VERY LO NA~^^^^^0^^6.10^3.10^8.40^4.10
-~19802~^~2500~^~Snacks, corn-based, extruded, puffs or twists, cheese-flavor, unenriched~^~SNACKS,CORN-BASED,EXTRDD,PUFFS OR TWISTS,CHEESE-FLAVOR,UNENR~^^^^^0^^6.30^4.00^8.80^4.10
-~19804~^~2500~^~Snacks, corn-based, extruded, chips, barbecue-flavor, made with enriched masa flour~^~SNACKS,CORN-BASE,EXTRUD,CHIPS,BARBECUE-FLAVOR,W/ENR MASA FLR~^^^^^0^^6.25^^^
-~19806~^~2500~^~Snacks, popcorn, air-popped (Unsalted)~^~SNACKS,POPCORN,AIR-POPPED (UNSALTED)~^^^^^0^^6.25^2.73^8.37^4.03
-~19807~^~2500~^~Snacks, popcorn, oil-popped, white popcorn, salt added~^~SNACKS,POPCORN,OIL-POPPED,WHITE POPCORN,SALT ADDED~^^^^^0^^6.25^2.70^8.80^4.00
-~19809~^~2500~^~Snacks, potato chips, plain, made with partially hydrogenated soybean oil, salted~^~POTATO CHIPS,PLN,MADE W/PART HYDR SOYBN OIL,SALTED~^^^^^0^^6.25^2.80^8.80^4.00
-~19810~^~2500~^~Snacks, potato chips, plain, made with partially hydrogenated soybean oil, unsalted~^~POTATO CHIPS,PLN,MADE W/PART HYDR SOYBN OIL,UNSALTED~^^^^^0^^6.25^2.80^8.80^4.00
-~19811~^~2500~^~Snacks, potato chips, plain, unsalted~^~POTATO CHIPS,PLN,UNSALTED~^^^~Y~^^0^^6.25^2.80^8.80^4.00
-~19812~^~2500~^~Snacks, pretzels, hard, plain, made with unenriched flour, salted~^~PRETZELS,HARD,PLN,MADE W/UNENR FLR,SALTED~^^^^^0^^5.70^3.70^8.70^4.00
-~19813~^~2500~^~Snacks, pretzels, hard, plain, made with unenriched flour, unsalted~^~PRETZELS,HARD,PLN,MADE W/UNENR FLR,UNSALTED~^^^^^0^^5.70^3.70^8.70^4.00
-~19814~^~2500~^~Snacks, pretzels, hard, plain, made with enriched flour, unsalted~^~SNACKS,PRETZELS,HARD,PLN,MADE W/ ENR FLR,UNSALTED~^^^~Y~^^0^^5.70^3.70^8.70^4.00
-~19816~^~2500~^~Snacks, rice cakes, brown rice, plain, unsalted~^~RICE CAKES,BROWN RICE,PLN,UNSALTED~^^^~Y~^^0^^5.95^3.41^8.37^4.12
-~19817~^~2500~^~Snacks, rice cakes, brown rice, buckwheat, unsalted~^~RICE CAKES,BROWN RICE,BUCKWHEAT,UNSALTED~^^^^^0^^6.10^3.40^8.40^4.00
-~19818~^~2500~^~Snacks, rice cakes, brown rice, multigrain, unsalted~^~RICE CAKES,BROWN RICE,MULTIGRAIN,UNSALTED~^^^^^0^^5.90^3.40^8.40^4.10
-~19819~^~2500~^~Snacks, rice cakes, brown rice, sesame seed, unsalted~^~RICE CAKES,BROWN RICE,SESAME SD,UNSALTED~^^^^^0^^5.90^3.40^8.40^4.10
-~19820~^~2500~^~Snacks, sesame sticks, wheat-based, unsalted~^~SESAME STKS,WHEAT-BASED,UNSALTED~^^^^^0^^5.70^3.70^8.70^3.90
-~19821~^~2500~^~Snacks, trail mix, regular, unsalted~^~TRAIL MIX,REG,UNSALTED~^^^^^0^^5.40^3.50^8.40^3.70
-~19822~^~2500~^~Snacks, trail mix, regular, with chocolate chips, unsalted nuts and seeds~^~TRAIL MIX,REG,W/CHOC CHIPS,UNSALTED NUTS&SEEDS~^^^^^0^^5.50^3.50^8.40^3.70
-~19823~^~2500~^~Potato chips, without salt, reduced fat~^~POTATO CHIPS,WO/SALT,RED FAT~^^^~Y~^^0^^6.50^^^
-~19833~^~2500~^~Snacks, tortilla chips, low fat, unsalted~^~TORTILLA CHIPS,LOFAT,UNSALTED~^^^~Y~^^0^^6.50^^^
-~19856~^~1900~^~Frozen novelties, juice type, POPSICLE SCRIBBLERS~^~FROZEN NOVELTIES,JUC TYPE,POPSICLE SCRIBBLERS~^^~Good Humor - Breyers Ice Cream~^^^0^^6.25^4.00^9.00^4.00
-~19857~^~2500~^~Snacks, tortilla chips, nacho-flavor, made with enriched masa flour~^~SNACKS,TORTILLA CHIPS,NACHO-FLAVOR,MADE W/ENR MASA FLR~^^^^^0^^6.50^^^
-~19858~^~1900~^~Candies, sugar-coated almonds~^~CANDIES,SUGAR-COATED ALMONDS~^^^~Y~^^0^^5.18^3.90^9.02^3.87
-~19860~^~1900~^~Cocoa, dry powder, hi-fat or breakfast, processed with alkali~^~COCOA,DRY PDR,HI-FAT OR BRKFST,PROC W/ALKALI~^^^~Y~^^0^^6.25^^^
-~19866~^~1900~^~Candies, soft fruit and nut squares~^~CANDIES,SOFT FRUIT & NUT SQUARES~^^^~Y~^^0^^5.55^^^
-~19867~^~1900~^~Ice creams, vanilla, fat free~^~ICE CREAMS,VANILLA,FAT FREE~^^^~Y~^^0^^6.25^^^
-~19868~^~1900~^~Sweeteners, tabletop, sucralose, SPLENDA packets~^~SWEETENERS,TABLETOP,SUCRALOSE,SPLENDA PACKETS~^^~McNeil Nutritionals/McNeil_PPC, Inc.~^~Y~^^0^^6.25^0.00^0.00^3.68
-~19871~^~1900~^~Frozen novelties, No Sugar Added, FUDGSICLE pops~^~FROZEN NOVELTIES,NO SUGAR ADDED,FUDGSICLE POPS~^^~Good Humor - Breyers Ice Cream~^~Y~^^0^^6.25^^^
-~19873~^~1900~^~Frozen novelties, ice type, sugar free, orange, cherry, and grape POPSICLE pops~^~FROZ NOVELTIES,ICE TYPE,SUGAR FREE,ORNGE,CHRY,& GRP POPSICLE~^^~Good Humor - Breyers Ice Cream~^^^0^^6.25^^^
-~19874~^~1900~^~Frozen novelties, KLONDIKE, SLIM-A-BEAR Fudge Bar, 98% fat free, no sugar added~^~FRZ NVL, KLONDIKE,SLIM-A-BEAR FUDG BR,98% FT FR,NO SGR ADDED~^^~Good Humor - Breyers Ice Cream~^^^0^^6.25^^^
-~19875~^~1900~^~Ice creams, BREYERS, All Natural Light Vanilla~^~ICE CREAMS,BREYERS,ALL NAT LT VANILLA~^^~Good Humor - Breyers Ice Cream~^^^0^^6.25^^^
-~19876~^~1900~^~Ice creams, BREYERS, All Natural Light French Vanilla~^~ICE CREAMS,BREYERS,ALL NAT LT FRENCH VANILLA~^^~Good Humor - Breyers Ice Cream~^^^0^^6.25^^^
-~19877~^~1900~^~Ice creams, BREYERS, 98% Fat Free Vanilla~^~ICE CREAMS,BREYERS,98% FAT FREE VANILLA~^^~Good Humor - Breyers Ice Cream~^^^0^^6.25^^^
-~19878~^~1900~^~Ice creams, BREYERS, All Natural Light Vanilla Chocolate Strawberry~^~ICE CREAMS,BREYERS,ALL NAT LT VANILLA CHOC STRAWBERRY~^^~Good Humor - Breyers Ice Cream~^^^0^^6.25^^^
-~19879~^~1900~^~Ice creams, BREYERS, All Natural Light Mint Chocolate Chip~^~ICE CREAMS,BREYERS,ALL NAT LT MINT CHOC CHIP~^^~Good Humor - Breyers Ice Cream~^^^0^^6.25^^^
-~19880~^~1900~^~Ice creams, BREYERS, No Sugar Added, Butter Pecan~^~ICE CREAMS,BREYERS,NO SUGAR ADDED,BUTTER PECAN~^^~Good Humor - Breyers Ice Cream~^^^0^^6.25^^^
-~19881~^~1900~^~Ice creams, BREYERS, No Sugar Added, French Vanilla~^~ICE CREAMS,BREYERS,NO SUGAR ADDED,FRENCH VANILLA~^^~Good Humor - Breyers Ice Cream~^^^0^^6.25^^^
-~19882~^~1900~^~Ice creams, BREYERS, No Sugar Added, Vanilla~^~ICE CREAMS,BREYERS,NO SUGAR ADDED,VANILLA~^^~Good Humor - Breyers Ice Cream~^^^0^^6.25^^^
-~19883~^~1900~^~Ice creams, BREYERS, No Sugar Added, Vanilla Fudge Twirl~^~ICE CREAMS,BREYERS,NO SUGAR ADDED,VANILLA FUDGE TWIRL~^^~Good Humor - Breyers Ice Cream~^^^0^^6.25^^^
-~19884~^~1900~^~Ice creams, BREYERS, No Sugar Added, Vanilla Chocolate Strawberry~^~ICE CREAMS,BREYERS,NO SUGAR ADDED,VANILLA CHOC STRAWBERRY~^^~Good Humor - Breyers Ice Cream~^^^0^^6.25^^^
-~19886~^~1900~^~Frozen novelties, KLONDIKE, SLIM-A-BEAR Chocolate Cone~^~FROZEN NOVELTIES,KLONDIKE,SLIM-A-BEAR CHOC CONE~^^~Good Humor - Breyers Ice Cream~^^^0^^6.25^^^
-~19887~^~1900~^~Frozen novelties, KLONDIKE, SLIM-A-BEAR Vanilla Sandwich~^~FROZEN NOVELTIES,KLONDIKE,SLIM-A-BEAR VANILLA SNDWCH~^^~Good Humor - Breyers Ice Cream~^^^0^^^^^
-~19890~^~1900~^~Frozen novelties, KLONDIKE, SLIM-A-BEAR, No Sugar Added, Stickless Bar~^~FROZEN NOVL,KLONDIKE,SLIM-A-BEAR,NO SGR ADDED,STICKLESS BAR~^^~Good Humor - Breyers Ice Cream~^^^0^^6.25^^^
-~19891~^~1900~^~Frozen novelties, No Sugar Added CREAMSICLE Pops~^~FROZEN NOVELTIES,NO SUGAR ADDED CREAMSICLE POPS~^^~Good Humor - Breyers Ice Cream~^^^0^^6.25^^^
-~19892~^~1900~^~Frozen novelties, Sugar Free, CREAMSICLE Pops~^~FROZEN NOVELTIES,SUGAR FREE,CREAMSICLE POPS~^^~Good Humor - Breyers Ice Cream~^^^0^^6.25^^^
-~19893~^~1900~^~Ice creams, BREYERS, All Natural Light French Chocolate~^~ICE CREAMS,BREYERS,ALL NAT LT FRENCH CHOC~^^~Good Humor - Breyers Ice Cream~^^^0^^6.25^^^
-~19894~^~1900~^~Ice creams, BREYERS, 98% Fat Free Chocolate~^~ICE CREAMS,BREYERS,98% FAT FREE CHOC~^^~Good Humor - Breyers Ice Cream~^^^0^^6.25^^^
-~19895~^~1900~^~Ice creams, BREYERS, No Sugar Added, Chocolate Caramel~^~ICE CREAMS,BREYERS,NO SUGAR ADDED,CHOC CARAMEL~^^~Good Humor - Breyers Ice Cream~^^^0^^6.25^^^
-~19896~^~1900~^~Candies, REESE's Fast Break, milk chocolate, peanut butter, soft nougats, candy bar~^~CANDIES,REESE'S FAST BREAK,CANDY BAR~^^~Hershey Food Corp.~^~Y~^^0^^6.25^4.00^9.00^4.00
-~19897~^~1900~^~Candies, MARS SNACKFOOD US, COCOAVIA Chocolate Covered Almonds~^~CANDIES,MARS SNACKFOOD US,COCOAVIA CHOC COVERED ALMONDS~^^~Masterfoods USA~^^^0^^^^^
-~19898~^~1900~^~Ice creams, regular, low carbohydrate, vanilla~^~ICE CREAMS,REG,LO CARBOHYDRATE,VANILLA~^^^~Y~^^0^^6.25^^^
-~19899~^~1900~^~Ice creams, regular, low carbohydrate, chocolate~^~ICE CREAMS,REG,LO CARBOHYDRATE,CHOC~^^^~Y~^^0^^6.25^^^
-~19902~^~1900~^~Chocolate, dark, 45- 59% cacao solids~^~CHOCOLATE,DK,45- 59% CACAO SOL~^^^^^0^^6.25^^^
-~19903~^~1900~^~Chocolate, dark, 60-69% cacao solids~^~CHOCOLATE,DK,60-69% CACAO SOL~^^^^^0^^^^^
-~19904~^~1900~^~Chocolate, dark, 70-85% cacao solids~^~CHOCOLATE,DK,70-85% CACAO SOL~^^^^^0^^^^^
-~19905~^~1900~^~Candies, chocolate, dark, NFS (45-59% cacao solids 90%; 60-69% cacao solids 5%; 70-85% cacao solids 5%)~^~CANDIES,CHOC,DK,NFS (45-59% CACAO SOL 90%; 60-69% CACAO SOL~^^^~Y~^^0^^6.25^^^
-~19906~^~1900~^~Sweeteners, for baking, brown, contains sugar and sucralose~^~SWEETENERS,FOR BAKING,BROWN,CONTAINS SUGAR & SUCRALOSE~^^^^^0^^^^^
-~19907~^~1900~^~Sweeteners, for baking, contains sugar and sucralose~^~SWEETENERS,FOR BAKING,CONTAINS SUGAR & SUCRALOSE~^^^^^0^^^^^
-~19908~^~1900~^~Sugar, turbinado~^~SUGAR,TURBINADO~^^^^^0^^^^^
-~19909~^~1900~^~Sweeteners, sugar substitute, granulated, brown~^~SWEETENERS,SUGAR SUB,GRANULATED,BROWN~^^^^^0^^^^^
-~19910~^~1900~^~Candies, crispy bar with peanut butter filling~^~CANDIES,CRISPY BAR W/ PNUT BUTTER FILLING~^^^~Y~^^0^^6.25^^^
-~19911~^~1900~^~Syrup, maple, Canadian~^~SYRUP,MAPLE,CANADIAN~^^^^^0^^6.25^^^
-~19912~^~1900~^~Sweetener, syrup, agave~^~Sweetener, syrup, agave~^^^~Y~^^0^^^^^
-~19913~^~1900~^~Candies, NESTLE, BUTTERFINGER Crisp~^~Candies, NESTLE, BUTTERFINGER Crisp~^^^~Y~^^0^^6.25^^^
-~19914~^~1900~^~Candies, M&M MARS 3 MUSKETEERS Truffle Crisp~^~CANDIES,M&M MARS 3 MUSKETEERS TRUFFLE CRISP~^^^~Y~^^0^^6.25^^^
-~19916~^~1900~^~Syrups, chocolate, HERSHEY'S Sugar free, Genuine Chocolate Flavored, Lite Syrup~^~SYRUPS,CHOC,HERSHEY'S SUGAR FREE,GENUINE CHOC FLAV,LITE SYRU~^^^~Y~^^0^^6.25^^^
-~19917~^~1900~^~Candies, M&M MARS Pretzel Chocolate Candies~^~CANDIES,M&M MARS PRETZEL CHOC CANDIES~^^^~Y~^^0^^6.25^^^
-~19918~^~1900~^~Sweetener, herbal extract powder from Stevia leaf~^~SWEETENER,HERBAL EXTRACT PDR FROM STEVIA LEAF~^^^~Y~^^0^^6.25^^^
-~19919~^~1900~^~Candies, fruit snacks, with high vitamin C~^~CANDIES,FRUIT SNACKS,W/ HI VIT C~^^^~Y~^^0^^6.25^^^
-~19920~^~1900~^~Jams, preserves, marmalades, sweetened with fruit juice~^~JAMS,PRESERVES,MARMALADES,SWTND W/ FRUIT JUC~^^^~Y~^^0^^6.25^^^
-~19921~^~1900~^~Candies, Tamarind~^~CANDIES,TAMARIND~^^^~Y~^^0^^6.25^3.36^8.37^3.60
-~19922~^~1900~^~Candies, coconut bar, not chocolate covered~^~CANDIES,COCNT BAR,NOT CHOC COVERED~^^^~Y~^^0^^6.25^^^
-~19923~^~1900~^~Candies, HERSHEYS, PAYDAY Bar~^~CANDIES,HERSHEYS,PAYDAY BAR~^^^~Y~^^0^^6.25^^^
-~19924~^~1900~^~Syrup, NESTLE, chocolate~^~SYRUP,NESTLE,CHOC~^^^~Y~^^0^^6.25^^^
-~20001~^~2000~^~Amaranth grain, uncooked~^~AMARANTH GRAIN,UNCKD~^^^^^0^~Amaranthus spp.~^5.85^3.47^8.37^4.07
-~20002~^~2000~^~Amaranth grain, cooked~^~AMARANTH GRAIN,CKD~^^^^^0^~Amaranthus spp.~^5.85^3.47^8.37^4.07
-~20003~^~2000~^~Arrowroot flour~^~ARROWROOT FLOUR~^^^^^0^^6.25^2.78^8.37^4.03
-~20004~^~2000~^~Barley, hulled~^~BARLEY,HULLED~^^^^^0^~Hordeum vulgare L.~^5.83^3.55^8.37^3.95
-~20005~^~2000~^~Barley, pearled, raw~^~BARLEY,PEARLED,RAW~^^^~Y~^^0^^5.83^3.55^8.37^3.95
-~20006~^~2000~^~Barley, pearled, cooked~^~BARLEY,PEARLED,COOKED~^^^~Y~^^0^^5.83^3.55^8.37^3.95
-~20008~^~2000~^~Buckwheat~^~BUCKWHEAT~^^^^^0^~Fagopyrum esculentum Moench~^6.25^3.37^8.37^3.78
-~20009~^~2000~^~Buckwheat groats, roasted, dry~^~BUCKWHEAT GROATS,RSTD,DRY~^~kasha~^^^^0^^6.25^3.37^8.37^3.78
-~20010~^~2000~^~Buckwheat groats, roasted, cooked~^~BUCKWHEAT GROATS,RSTD,CKD~^~kasha~^^~Y~^^0^^6.25^3.37^8.37^3.78
-~20011~^~2000~^~Buckwheat flour, whole-groat~^~BUCKWHEAT FLR,WHOLE-GROAT~^^^~Y~^^0^^6.25^3.37^8.37^3.78
-~20012~^~2000~^~Bulgur, dry~^~BULGUR,DRY~^^^~Y~^^0^^5.83^3.59^8.37^3.78
-~20013~^~2000~^~Bulgur, cooked~^~BULGUR,COOKED~^^^~Y~^^0^^5.83^3.59^8.37^3.78
-~20014~^~2000~^~Corn grain, yellow~^~CORN GRAIN,YEL~^~dent corn, field corn~^^^^0^~Zea mays mays L.~^6.25^2.73^8.37^4.03
-~20015~^~2000~^~Corn bran, crude~^~CORN BRAN,CRUDE~^^^~Y~^^0^^6.25^1.82^8.37^2.35
-~20016~^~2000~^~Corn flour, whole-grain, yellow~^~CORN FLR,WHOLE-GRAIN,YEL~^^^~Y~^^0^^6.25^2.73^8.37^4.03
-~20017~^~2000~^~Corn flour, masa, enriched, white~^~CORN FLR,MASA,ENR,WHITE~^^^~Y~^^0^^6.25^2.73^8.37^4.03
-~20018~^~2000~^~Corn flour, yellow, degermed, unenriched~^~CORN FLR,YEL,DEGERMED,UNENR~^^^^^0^^6.25^3.46^8.37^4.16
-~20019~^~2000~^~Corn flour, masa, unenriched, white~^~CORN FLR,MASA,UNENR,WHITE~^^^~Y~^^0^^6.25^2.73^8.37^4.03
-~20020~^~2000~^~Cornmeal, whole-grain, yellow~^~CORNMEAL,WHOLE-GRAIN,YEL~^^^^^0^^6.25^2.73^8.37^4.03
-~20022~^~2000~^~Cornmeal, degermed, enriched, yellow~^~CORNMEAL,DEGERMED,ENR,YEL~^^^~Y~^^0^^6.25^3.46^8.37^4.16
-~20023~^~2000~^~Cornmeal, yellow, self-rising, bolted, plain, enriched~^~CORNMEAL,YEL,SELF-RISING,BOLTED,PLN,ENR~^^^^^0^^6.25^2.73^8.37^4.03
-~20024~^~2000~^~Cornmeal, yellow, self-rising, bolted, with wheat flour added, enriched~^~CORNMEAL,YEL,SELF-RISING,BOLTED,W/ WHEAT FLR ADDED,ENR~^^^^^0^^6.18^3.13^8.37^4.06
-~20025~^~2000~^~Cornmeal, yellow, self-rising, degermed, enriched~^~CORNMEAL,YEL,SELF-RISING,DEGERMED,ENR~^^^^^0^^6.25^3.46^8.37^4.16
-~20027~^~2000~^~Cornstarch~^~CORNSTARCH~^^^~Y~^^0^^6.25^3.46^8.37^4.16
-~20028~^~2000~^~Couscous, dry~^~COUSCOUS,DRY~^^^^^0^^5.70^4.05^8.37^4.12
-~20029~^~2000~^~Couscous, cooked~^~COUSCOUS,COOKED~^^^~Y~^^0^^5.70^4.05^8.37^4.12
-~20030~^~2000~^~Hominy, canned, white~^~HOMINY,CANNED,WHITE~^^^~Y~^^0^^6.25^3.46^8.37^4.16
-~20031~^~2000~^~Millet, raw~^~MILLET,RAW~^^^^^0^~Panicum miliaceum L.~^5.83^3.87^8.37^4.12
-~20032~^~2000~^~Millet, cooked~^~MILLET,COOKED~^^^~Y~^^0^^5.83^3.87^8.37^4.12
-~20033~^~2000~^~Oat bran, raw~^~OAT BRAN,RAW~^^^~Y~^^0^^5.83^1.82^8.37^2.35
-~20034~^~2000~^~Oat bran, cooked~^~OAT BRAN,COOKED~^^^^^0^^5.83^1.82^8.37^2.35
-~20035~^~2000~^~Quinoa, uncooked~^~QUINOA,UNCKD~^^^^^0^~Chenopodium quinoa Willd.~^6.25^4.00^9.00^4.00
-~20036~^~2000~^~Rice, brown, long-grain, raw (Includes foods for USDA's Food Distribution Program)~^~RICE,BROWN,LONG-GRAIN,RAW~^^^~Y~^^0^~Oryza sativa L.~^5.95^3.41^8.37^4.12
-~20037~^~2000~^~Rice, brown, long-grain, cooked (Includes foods for USDA's Food Distribution Program)~^~RICE,BROWN,LONG-GRAIN,CKD~^^^~Y~^^0^^5.95^3.41^8.37^4.12
-~20038~^~2000~^~Oats (Includes foods for USDA's Food Distribution Program)~^~OATS~^^^^^0^~Avena sativa L.~^5.83^3.46^8.37^4.12
-~20040~^~2000~^~Rice, brown, medium-grain, raw (Includes foods for USDA's Food Distribution Program)~^~RICE,BROWN,MEDIUM-GRAIN,RAW~^^^^^0^^5.95^3.41^8.37^4.12
-~20041~^~2000~^~Rice, brown, medium-grain, cooked (Includes foods for USDA's Food Distribution Program)~^~RICE,BROWN,MEDIUM-GRAIN,CKD~^^^^^0^^5.95^3.41^8.37^4.12
-~20042~^~2000~^~Rice, brown, parboiled, dry, UNCLE BEN'S~^~RICE,BROWN,PARBLD,DRY,UNCLE BEN'S~^^~Mars Food US~^^^0^^^^^
-~20044~^~2000~^~Rice, white, long-grain, regular, raw, enriched~^~RICE,WHITE,LONG-GRAIN,REG,RAW,ENR~^^^~Y~^^0^^5.95^3.82^8.37^4.16
-~20045~^~2000~^~Rice, white, long-grain, regular, enriched, cooked~^~RICE,WHITE,LONG-GRAIN,REG,ENR,CKD~^^^~Y~^^0^^5.95^3.82^8.37^4.16
-~20046~^~2000~^~Rice, white, long-grain, parboiled, enriched, dry~^~RICE,WHITE,LONG-GRAIN,PARBLD,ENR,DRY~^^^~Y~^^0^^5.95^3.82^8.37^4.16
-~20047~^~2000~^~Rice, white, long-grain, parboiled, enriched, cooked~^~RICE,WHITE,LONG-GRAIN,PARBLD,ENR,CKD~^^^~Y~^^0^^5.95^3.82^8.37^4.16
-~20048~^~2000~^~Rice, white, long-grain, precooked or instant, enriched, dry~^~RICE,WHITE,LONG-GRAIN,PRECKD OR INST,ENR,DRY~^^^~Y~^^0^^5.95^3.82^8.37^4.16
-~20049~^~2000~^~Rice, white, long-grain, precooked or instant, enriched, prepared~^~RICE,WHITE,LONG-GRAIN,PRECKD OR INST,ENR,PREP~^^^~Y~^^0^^5.95^3.82^8.37^4.16
-~20050~^~2000~^~Rice, white, medium-grain, raw, enriched~^~RICE,WHITE,MEDIUM-GRAIN,RAW,ENR~^^^^^0^^5.95^3.82^8.37^4.16
-~20051~^~2000~^~Rice, white, medium-grain, enriched, cooked~^~RICE,WHITE,MEDIUM-GRAIN,ENR,CKD~^^^^^0^^5.95^3.82^8.37^4.16
-~20052~^~2000~^~Rice, white, short-grain, enriched, uncooked~^~RICE,WHITE,SHORT-GRAIN,ENR,UNCKD~^^^^^0^^5.95^3.82^8.37^4.16
-~20053~^~2000~^~Rice, white, short-grain, enriched, cooked~^~RICE,WHITE,SHORT-GRAIN,ENR,CKD~^^^^^0^^5.95^3.82^8.37^4.16
-~20054~^~2000~^~Rice, white, glutinous, unenriched, uncooked~^~RICE,WHITE,GLUTINOUS,UNENR,UNCKD~^^^^^0^^5.95^3.82^8.37^4.16
-~20055~^~2000~^~Rice, white, glutinous, unenriched, cooked~^~RICE,WHITE,GLUTINOUS,UNENR,CKD~^^^~Y~^^0^^5.95^3.82^8.37^4.16
-~20058~^~2000~^~Rice, white, steamed, Chinese restaurant~^~RICE,WHITE,STMD,CHINESE RESTAURANT~^^^^^0^^^^^
-~20060~^~2000~^~Rice bran, crude~^~RICE BRAN,CRUDE~^^^~Y~^^0^^5.95^1.82^8.37^2.35
-~20061~^~2000~^~Rice flour, white, unenriched~^~RICE FLR,WHITE,UNENR~^^^~Y~^^0^^5.95^3.82^8.37^4.16
-~20062~^~2000~^~Rye grain~^~RYE GRAIN~^^^~Y~^^0^~Secale cereale L.~^5.83^3.05^8.37^3.86
-~20063~^~2000~^~Rye flour, dark~^~RYE FLOUR,DARK~^^^~Y~^^0^^5.83^2.96^8.37^3.78
-~20064~^~2000~^~Rye flour, medium~^~RYE FLOUR,MEDIUM~^^^~Y~^^0^^5.83^3.23^8.37^3.99
-~20065~^~2000~^~Rye flour, light~^~RYE FLOUR,LIGHT~^^^~Y~^^0^^5.83^3.41^8.37^4.07
-~20066~^~2000~^~Semolina, enriched~^~SEMOLINA,ENRICHED~^^^^^0^^5.70^4.05^8.37^4.12
-~20067~^~2000~^~Sorghum grain~^~SORGHUM GRAIN~^^^^^0^~Sorghum spp.~^6.25^0.91^8.37^4.03
-~20068~^~2000~^~Tapioca, pearl, dry~^~TAPIOCA,PEARL,DRY~^^^~Y~^^0^^6.25^2.78^8.37^4.03
-~20069~^~2000~^~Triticale~^~TRITICALE~^^^^^0^~X Triticosecale spp.~^5.83^3.32^8.37^3.82
-~20070~^~2000~^~Triticale flour, whole-grain~^~TRITICALE FLR,WHOLE-GRAIN~^^^^^0^^5.83^3.32^8.37^3.82
-~20071~^~2000~^~Wheat, hard red spring~^~WHEAT,HARD RED SPRING~^^^~Y~^^0^~Triticum aestivum L.~^5.83^3.59^8.37^3.78
-~20072~^~2000~^~Wheat, hard red winter~^~WHEAT,HARD RED WINTER~^^^~Y~^^0^~Triticum aestivum L.~^5.83^3.59^8.37^3.78
-~20073~^~2000~^~Wheat, soft red winter~^~WHEAT,SOFT RED WINTER~^^^^^0^~Triticum aestivum L.~^5.83^3.59^8.37^3.78
-~20074~^~2000~^~Wheat, hard white~^~WHEAT,HARD WHITE~^^^^^0^~Triticum aestivum L.~^5.83^3.59^8.37^3.78
-~20075~^~2000~^~Wheat, soft white~^~WHEAT,SOFT WHITE~^^^^^0^~Triticum aestivum L.~^5.83^3.59^8.37^3.78
-~20076~^~2000~^~Wheat, durum~^~WHEAT,DURUM~^^^^^0^~Triticum durum Desf.~^5.83^3.59^8.37^3.78
-~20077~^~2000~^~Wheat bran, crude~^~WHEAT BRAN,CRUDE~^^^~Y~^^0^^6.31^1.82^8.37^2.35
-~20078~^~2000~^~Wheat germ, crude~^~WHEAT GERM,CRUDE~^^^^^0^^5.80^3.59^8.37^3.78
-~20080~^~2000~^~Wheat flour, whole-grain (Includes foods for USDA's Food Distribution Program)~^~WHEAT FLOUR,WHOLE-GRAIN~^^^~Y~^^0^^5.83^3.59^8.37^3.78
-~20081~^~2000~^~Wheat flour, white, all-purpose, enriched, bleached~^~WHEAT FLR,WHITE,ALL-PURPOSE,ENR,BLEACHED~^^^~Y~^^0^^5.70^4.05^8.37^4.12
-~20082~^~2000~^~Wheat flour, white, all-purpose, self-rising, enriched~^~WHEAT FLR,WHITE,ALL-PURPOSE,SELF-RISING,ENR~^^^~Y~^^0^^5.70^4.05^8.37^4.12
-~20083~^~2000~^~Wheat flour, white, bread, enriched~^~WHEAT FLR,WHITE,BREAD,ENR~^^^~Y~^^0^^5.70^4.05^8.37^4.12
-~20084~^~2000~^~Wheat flour, white, cake, enriched~^~WHEAT FLR,WHITE,CAKE,ENR~^^^~Y~^^0^^5.70^4.05^8.37^4.12
-~20086~^~2000~^~Wheat flour, white, tortilla mix, enriched~^~WHEAT FLR,WHITE,TORTILLA MIX,ENR~^^^^^0^^5.70^4.05^8.37^4.12
-~20087~^~2000~^~Wheat, sprouted~^~WHEAT,SPROUTED~^^^^^0^^5.83^3.59^8.37^3.78
-~20088~^~2000~^~Wild rice, raw~^~WILD RICE,RAW~^^^~Y~^^0^~Zizania spp.~^6.25^3.55^8.37^3.95
-~20089~^~2000~^~Wild rice, cooked~^~WILD RICE,COOKED~^^^~Y~^^0^^6.25^3.55^8.37^3.95
-~20090~^~2000~^~Rice flour, brown~^~RICE FLOUR,BROWN~^^^^^0^^5.95^3.41^8.37^4.12
-~20091~^~2000~^~Pasta, gluten-free, corn, dry~^~PASTA,GLUTEN-FREE,CORN,DRY~^^^^^0^^6.25^2.73^8.37^4.03
-~20092~^~2000~^~Pasta, gluten-free, corn, cooked~^~PASTA,GLUTEN-FREE,CORN,CKD~^^^^^0^^6.25^2.73^8.37^4.03
-~20093~^~2000~^~Pasta, fresh-refrigerated, plain, as purchased~^~PASTA,FRESH-REFRIGERATED,PLN,AS PURCHASED~^^^^^0^^5.78^3.93^8.41^4.09
-~20094~^~2000~^~Pasta, fresh-refrigerated, plain, cooked~^~PASTA,FRESH-REFRIGERATED,PLN,CKD~^^^^^0^^5.78^3.93^8.41^4.09
-~20095~^~2000~^~Pasta, fresh-refrigerated, spinach, as purchased~^~PASTA,FRESH-REFRIGERATED,SPINACH,AS PURCHASED~^^^^^0^^5.79^3.88^8.41^4.08
-~20096~^~2000~^~Pasta, fresh-refrigerated, spinach, cooked~^~PASTA,FRESH-REFRIGERATED,SPINACH,CKD~^^^^^0^^5.79^3.88^8.41^4.08
-~20097~^~2000~^~Pasta, homemade, made with egg, cooked~^~PASTA,HOMEMADE,MADE W/EGG,CKD~^^^^^0^^5.73^3.93^8.41^4.09
-~20098~^~2000~^~Pasta, homemade, made without egg, cooked~^~PASTA,HOMEMADE,MADE WO/EGG,CKD~^^^^^0^^5.70^3.91^8.37^4.12
-~20105~^~2000~^~Macaroni, vegetable, enriched, dry~^~MACARONI,VEG,ENR,DRY~^^^^^0^^5.72^3.86^8.37^4.11
-~20106~^~2000~^~Macaroni, vegetable, enriched, cooked~^~MACARONI,VEG,ENR,CKD~^^^~Y~^^0^^5.72^3.86^8.37^4.11
-~20109~^~2000~^~Noodles, egg, dry, enriched~^~NOODLES,EGG,DRY,ENRICHED~^^^~Y~^^0^^5.78^3.93^8.41^4.09
-~20110~^~2000~^~Noodles, egg, enriched, cooked~^~NOODLES,EGG,ENR,CKD~^^^~Y~^^0^^5.78^3.93^8.41^4.09
-~20111~^~2000~^~Noodles, egg, spinach, enriched, dry~^~NOODLES,EGG,SPINACH,ENR,DRY~^^^^^0^^5.79^3.88^8.41^4.08
-~20112~^~2000~^~Noodles, egg, spinach, enriched, cooked~^~NOODLES,EGG,SPINACH,ENR,CKD~^^^~Y~^^0^^5.79^3.88^8.41^4.08
-~20113~^~2000~^~Noodles, chinese, chow mein~^~NOODLES,CHINESE,CHOW MEIN~^^^~Y~^^0^^^^^
-~20114~^~2000~^~Noodles, japanese, soba, dry~^~NOODLES,JAPANESE,SOBA,DRY~^^^^^0^^6.06^3.37^8.37^3.78
-~20115~^~2000~^~Noodles, japanese, soba, cooked~^~NOODLES,JAPANESE,SOBA,CKD~^^^^^0^^6.06^3.37^8.37^3.78
-~20116~^~2000~^~Noodles, japanese, somen, dry~^~NOODLES,JAPANESE,SOMEN,DRY~^^^^^0^^5.70^3.91^8.37^4.12
-~20117~^~2000~^~Noodles, japanese, somen, cooked~^~NOODLES,JAPANESE,SOMEN,CKD~^^^^^0^^5.70^3.91^8.37^4.12
-~20118~^~2000~^~Noodles, flat, crunchy, Chinese restaurant~^~NOODLES,FLAT,CRUNCHY,CHINESE RESTAURANT~^^^~Y~^^0^^5.73^4.05^8.37^4.12
-~20120~^~2000~^~Pasta, dry, enriched~^~PASTA,DRY,ENR~^~macaroni product, spaghetti, elbow macaroni, lasagna, penne, rotini, farfalle, shells~^^~Y~^^0^^5.70^3.91^8.37^4.12
-~20121~^~2000~^~Pasta, cooked, enriched, without added salt~^~PASTA,CKD,ENR,WO/ ADDED SALT~^~macaroni product, spaghetti, elbow macaroni, rotini, lasagna, farfalle, shells, penne~^^~Y~^^0^^5.70^3.91^8.37^4.12
-~20124~^~2000~^~Pasta, whole-wheat, dry (Includes foods for USDA's Food Distribution Program)~^~PASTA,WHOLE-WHEAT,DRY~^~spaghetti, elbow macaroni, penne, farfalle, lasagna, shells, macaroni product~^^^^0^^5.83^3.59^8.37^3.78
-~20125~^~2000~^~Pasta, whole-wheat, cooked (Includes foods for USDA's Food Distribution Program)~^~PASTA,WHOLE-WHEAT,CKD~^~macaroni product, spaghetti, elbow macaroni, penne, farfalle, lasagna, rotini, shells~^^~Y~^^0^^5.83^3.59^8.37^3.78
-~20126~^~2000~^~Spaghetti, spinach, dry~^~SPAGHETTI,SPINACH,DRY~^^^~Y~^^0^^5.72^3.86^8.37^4.11
-~20127~^~2000~^~Spaghetti, spinach, cooked~^~SPAGHETTI,SPINACH,COOKED~^^^^^0^^5.72^3.86^8.37^4.11
-~20129~^~2000~^~Wheat flours, bread, unenriched~^~WHEAT FLOURS,BREAD,UNENR~^^^~Y~^^0^^5.70^4.05^8.37^4.12
-~20130~^~2000~^~Barley flour or meal~^~BARLEY FLOUR OR MEAL~^^^~Y~^^0^^5.83^3.55^8.37^3.95
-~20131~^~2000~^~Barley malt flour~^~BARLEY MALT FLR~^^^^^0^^5.83^3.55^8.37^3.95
-~20132~^~2000~^~Oat flour, partially debranned~^~OAT FLR,PART DEBRANNED~^^^~Y~^^0^^^^^
-~20133~^~2000~^~Rice noodles, dry~^~RICE NOODLES,DRY~^^^^^0^^5.95^3.82^8.37^4.16
-~20134~^~2000~^~Rice noodles, cooked~^~RICE NOODLES,CKD~^^^~Y~^^0^^5.95^3.82^8.37^4.16
-~20135~^~2000~^~Pasta, whole grain, 51% whole wheat, remaining unenriched semolina, dry~^~PASTA,WHL GRAIN,51% WHL WHEAT,REMAINING UNENR SEMOLINA,DRY~^~macaroni product, spaghetti, elbow macaroni, farfalle, rotini, lasagna, shells, penne~^^^^0^^^3.78^8.37^3.95
-~20136~^~2000~^~Pasta, whole grain, 51% whole wheat, remaining unenriched semolina, cooked~^~PASTA,WHL GRAIN,51% WHL WHEAT,REMAINING UNENR SEMOLINA,CKD~^~macaroni product, spaghetti, elbow macaroni, shells, penne, rotini, lasagna, farfalle~^^^^0^^^3.78^8.37^3.95
-~20137~^~2000~^~Quinoa, cooked~^~QUINOA,CKD~^^^~Y~^^0^~Chenopodium quinoa Willd.~^6.25^4.00^9.00^4.00
-~20138~^~2000~^~Wheat, KAMUT khorasan, uncooked~^~WHEAT,KAMUT KHORASAN,UNCKD~^~khorassan wheat~^^^^0^~Triticum turgidum subsp. turanicum (Jakubz.)~^5.83^3.59^8.37^3.78
-~20139~^~2000~^~Wheat, KAMUT khorasan, cooked~^~WHEAT,KAMUT KHORASAN,CKD~^~khorassan wheat~^^^^0^~Triticum turgidum subsp. turanicum (Jakubz.)~^5.83^3.59^8.37^3.78
-~20140~^~2000~^~Spelt, uncooked~^~SPELT,UNCKD~^^^^^0^~Triticum aestivum L. subsp. spelta~^5.83^3.59^8.37^3.78
-~20141~^~2000~^~Spelt, cooked~^~SPELT,CKD~^^^^^0^~Triticum aestivum L. subsp. spelta~^5.83^3.59^8.37^3.78
-~20142~^~2000~^~Teff, uncooked~^~TEFF,UNCKD~^^^^^0^~Eragrostis tef (Zuccagni) Trotter~^6.25^4.00^9.00^4.00
-~20143~^~2000~^~Teff, cooked~^~TEFF,CKD~^^^^^0^~Eragrostis tef (Zuccagni) Trotter~^6.25^4.00^9.00^4.00
-~20310~^~2000~^~Noodles, egg, cooked, enriched, with added salt~^~NOODLES,EGG,CKD,ENR,W/ SALT~^^^^^0^^5.78^3.93^8.41^4.09
-~20314~^~2000~^~Corn grain, white~^~CORN GRAIN,WHITE~^~dent corn, field corn~^^^^0^^6.25^2.73^8.37^4.03
-~20315~^~2000~^~Corn flour, whole-grain, blue (harina de maiz morado)~^~CORN FLR,WHOLE-GRAIN,BLUE (HARINA DE MAIZ MORADO)~^^^^^0^^6.25^2.73^8.37^4.03
-~20316~^~2000~^~Corn flour, whole-grain, white~^~CORN FLR,WHOLE-GRAIN,WHITE~^^^~Y~^^0^^6.25^2.73^8.37^4.03
-~20317~^~2000~^~Corn flour, yellow, masa, enriched~^~CORN FLR,YEL,MASA,ENR~^^^^^0^^6.25^2.73^8.37^4.03
-~20320~^~2000~^~Cornmeal, whole-grain, white~^~CORNMEAL,WHOLE-GRAIN,WHITE~^^^~Y~^^0^^6.25^2.73^8.37^4.03
-~20321~^~2000~^~Pasta, cooked, enriched, with added salt~^~PASTA,CKD,ENR,W/ ADDED SALT~^~spaghetti, elbow macaroni, lasagna, macaroni product, rotini, farfalle, penne, shells~^^^^0^^5.70^3.91^8.37^4.12
-~20322~^~2000~^~Cornmeal, degermed, enriched, white~^~CORNMEAL,DEGERMED,ENR,WHITE~^^^~Y~^^0^^6.25^3.46^8.37^4.16
-~20323~^~2000~^~Cornmeal, white, self-rising, bolted, plain, enriched~^~CORNMEAL,WHITE,SELF-RISING,BOLTED,PLN,ENR~^^^^^0^^6.25^2.73^8.37^4.03
-~20324~^~2000~^~Cornmeal, white, self-rising, bolted, with wheat flour added, enriched~^~CORNMEAL,WHITE,SELF-RISING,BOLTED,W/ WHEAT FLR ADDED,ENR~^^^^^0^^6.18^3.13^8.37^4.06
-~20325~^~2000~^~Cornmeal, white, self-rising, degermed, enriched~^~CORNMEAL,WHITE,SELF-RISING,DEGERMED,ENR~^^^^^0^^6.25^3.46^8.37^4.16
-~20330~^~2000~^~Hominy, canned, yellow~^~HOMINY,CANNED,YELLOW~^^^^^0^^6.25^3.46^8.37^4.16
-~20345~^~2000~^~Rice, white, long-grain, regular, cooked, enriched, with salt~^~RICE,WHITE,LONG-GRAIN,REG,CKD,ENR,W/SALT~^^^~Y~^^0^^5.95^3.82^8.37^4.16
-~20381~^~2000~^~Wheat flour, white, all-purpose, enriched, calcium-fortified~^~WHEAT FLR,WHITE,ALL-PURPOSE,ENR,CALCIUM-FORTIFIED~^^^^^0^^5.70^4.05^8.37^4.12
-~20409~^~2000~^~Noodles, egg, dry, unenriched~^~NOODLES,EGG,DRY,UNENR~^^^~Y~^^0^^5.78^3.93^8.41^4.09
-~20410~^~2000~^~Noodles, egg, unenriched, cooked, without added salt~^~NOODLES,EGG,UNENR,CKD,WO/ ADDED SALT~^^^~Y~^^0^^5.78^3.93^8.41^4.09
-~20420~^~2000~^~Pasta, dry, unenriched~^~PASTA,DRY,UNENR~^~macaroni product, spaghetti, elbow macaroni, lasagna, rotini, shells, farfalle, penne~^^^^0^^5.70^3.91^8.37^4.12
-~20421~^~2000~^~Pasta, cooked, unenriched, without added salt~^~PASTA,CKD,UNENR,WO/ ADDED SALT~^~macaroni product, spaghetti, elbow macaroni, penne, shells, farfalle, rotini, lasagna~^^~Y~^^0^^5.70^3.91^8.37^4.12
-~20422~^~2000~^~Cornmeal, degermed, unenriched, yellow~^~CORNMEAL,DEGERMED,UNENR,YEL~^^^~Y~^^0^^6.25^3.46^8.37^4.16
-~20444~^~2000~^~Rice, white, long-grain, regular, raw, unenriched~^~RICE,WHITE,LONG-GRAIN,REG,RAW,UNENR~^^^~Y~^^0^^5.95^3.82^8.37^4.16
-~20445~^~2000~^~Rice, white, long-grain, regular, unenriched, cooked without salt~^~RICE,WHITE,LONG-GRAIN,REG,UNENR,CKD WO/ SALT~^^^~Y~^^0^^5.95^3.82^8.37^4.16
-~20446~^~2000~^~Rice, white, long-grain, parboiled, unenriched, dry~^~RICE,WHITE,LONG-GRAIN,PARBLD,UNENR,DRY~^^^^^0^^5.95^3.82^8.37^4.16
-~20447~^~2000~^~Rice, white, long-grain, parboiled, unenriched, cooked~^~RICE,WHITE,LONG-GRAIN,PARBLD,UNENR,CKD~^^^^^0^^5.95^3.82^8.37^4.16
-~20450~^~2000~^~Rice, white, medium-grain, raw, unenriched~^~RICE,WHITE,MEDIUM-GRAIN,RAW,UNENR~^^^^^0^^5.95^3.82^8.37^4.16
-~20451~^~2000~^~Rice, white, medium-grain, cooked, unenriched~^~RICE,WHITE,MEDIUM-GRAIN,CKD,UNENR~^^^^^0^^5.95^3.82^8.37^4.16
-~20452~^~2000~^~Rice, white, short-grain, raw, unenriched~^~RICE,WHITE,SHORT-GRAIN,RAW,UNENR~^^^^^0^^5.95^3.82^8.37^4.16
-~20453~^~2000~^~Rice, white, short-grain, cooked, unenriched~^~RICE,WHITE,SHORT-GRAIN,CKD,UNENR~^^^^^0^^5.95^3.82^8.37^4.16
-~20466~^~2000~^~Semolina, unenriched~^~SEMOLINA,UNENRICHED~^^^^^0^^5.70^4.05^8.37^4.12
-~20481~^~2000~^~Wheat flour, white, all-purpose, unenriched~^~WHEAT FLR,WHITE,ALL-PURPOSE,UNENR~^^^~Y~^^0^^5.70^4.05^8.37^4.12
-~20510~^~2000~^~Noodles, egg, cooked, unenriched, with added salt~^~NOODLES,EGG,CKD,UNENR,W/ SALT~^^^^^0^^5.78^3.93^8.41^4.09
-~20521~^~2000~^~Pasta, cooked, unenriched, with added salt~^~PASTA,CKD,UNENR,W/ ADDED SALT~^~macaroni product, spaghetti, elbow macaroni, rotini, lasagna, farfalle, shells, penne~^^^^0^^5.70^3.91^8.37^4.12
-~20522~^~2000~^~Cornmeal, degermed, unenriched, white~^~CORNMEAL,DEGERMED,UNENR,WHITE~^^^^^0^^6.25^3.46^8.37^4.16
-~20523~^~2000~^~Spaghetti, protein-fortified, cooked, enriched (n x 6.25)~^~SPAGHETTI,PROTEIN-FORTIFIED,CKD,ENR (N X 6.25)~^^^^^0^^5.70^3.91^8.37^4.12
-~20545~^~2000~^~Rice, white, long-grain, regular, cooked, unenriched, with salt~^~RICE,WHITE,LONG-GRAIN,REG,CKD,UNENR,W/SALT~^^^~Y~^^0^^5.95^3.82^8.37^4.16
-~20581~^~2000~^~Wheat flour, white, all-purpose, enriched, unbleached~^~WHEAT FLR,WHITE,ALL-PURPOSE,ENR,UNBLEACHED~^^^^^0^^5.70^4.05^8.37^4.12
-~20622~^~2000~^~Spaghetti, protein-fortified, dry, enriched (n x 6.25)~^~SPAGHETTI,PROTEIN-FORTIFIED,DRY,ENR (N X 6.25)~^^^^^0^^5.70^3.91^8.37^4.12
-~20623~^~2000~^~Wheat flour, white (industrial), 9% protein, bleached, enriched~^~WHEAT FLR,WHITE (INDUSTRIAL),9% PROT,BLEACHED,ENR~^^^^^0^^^4.05^8.37^4.12
-~20624~^~2000~^~Wheat flour, white (industrial), 9% protein, bleached, unenriched~^~WHEAT FLR,WHITE (INDUSTRIAL),9% PROT,BLEACHED,UNENR~^^^^^0^^^4.05^8.37^4.12
-~20628~^~2000~^~Wheat flour, white (industrial), 10% protein, bleached, enriched~^~WHEAT FLR,WHITE (INDUSTRIAL),10% PROT,BLEACHED,ENR~^^^^^0^^^4.05^8.37^4.12
-~20629~^~2000~^~Wheat flour, white (industrial), 10% protein, bleached, unenriched~^~WHEAT FLR,WHITE (INDUSTRIAL),10% PROT,BLEACHED,UNENR~^^^^^0^^^4.05^8.37^4.12
-~20630~^~2000~^~Wheat flour, white (industrial), 10% protein, unbleached, enriched~^~WHEAT FLR,WHITE (INDUSTRIAL),10% PROT,UNBLEACHED,ENR~^^^^^0^^^4.05^8.37^4.12
-~20634~^~2000~^~Wheat flour, white (industrial), 11.5% protein, bleached, enriched~^~WHEAT FLR,WHITE (INDUSTRIAL),11.5% PROT,BLEACHED,ENR~^^^^^0^^^4.05^8.37^4.12
-~20635~^~2000~^~Wheat flour, white (industrial), 11.5% protein, bleached, unenriched~^~WHEAT FLR,WHITE (INDUSTRIAL),11.5% PROT,BLEACHED,UNENR~^^^^^0^^^4.05^8.37^4.12
-~20636~^~2000~^~Wheat flour, white (industrial), 11.5% protein, unbleached, enriched~^~WHEAT FLR,WHITE (INDUSTRIAL),11.5% PROT,UNBLEACHED,ENR~^^^^^0^^^4.05^8.37^4.12
-~20640~^~2000~^~Wheat flour, white (industrial), 13% protein, bleached, enriched~^~WHEAT FLR,WHITE (INDUSTRIAL),13% PROT,BLEACHED,ENR~^^^^^0^^^4.05^8.37^4.12
-~20641~^~2000~^~Wheat flour, white (industrial), 13% protein, bleached, unenriched~^~WHEAT FLR,WHITE (INDUSTRIAL),13% PROT,BLEACHED,UNENR~^^^^^0^^^4.05^8.37^4.12
-~20645~^~2000~^~Wheat flour, white (industrial), 15% protein, bleached, enriched~^~WHEAT FLR,WHITE (INDUSTRIAL),15% PROT,BLEACHED,ENR~^^^^^0^^^4.05^8.37^4.12
-~20646~^~2000~^~Wheat flour, white (industrial), 15% protein, bleached, unenriched~^~WHEAT FLR,WHITE (INDUSTRIAL),15% PROT,BLEACHED,UNENR~^^^^^0^^^4.05^8.37^4.12
-~20647~^~2000~^~Millet flour~^~MILLET FLR~^^^^^0^^5.83^4.00^9.00^4.00
-~20648~^~2000~^~Sorghum flour, whole-grain~^~SORGHUM FLR,WHOLE-GRAIN~^^^^^0^^6.25^2.28^8.37^4.07
-~20649~^~2000~^~Wheat flour, whole-grain, soft wheat~^~WHEAT FLR,WHOLE-GRAIN,SOFT WHEAT~^^^^^0^^^3.59^8.37^3.78
-~20650~^~2000~^~Sorghum flour, refined, unenriched~^~SORGHUM FLR,REFINED,UNENR~^^^^^0^^6.25^^^
-~20651~^~2000~^~Rice, brown, parboiled, cooked, UNCLE BENS~^~RICE,BROWN,PARBLD,CKD,UNCLE BENS~^^~Mars Food US~^^^0^^^3.41^8.37^4.12
-~20652~^~2000~^~Pasta, whole grain, 51% whole wheat, remaining enriched semolina, cooked (Includes foods for USDA's Food Distribution Program)~^~PASTA,WHL GRAIN,51% WHL WHEAT,REMAINING ENR SEMOLINA,CKD~^~macaroni product, spaghetti, elbow macaroni, penne, lasagna, shells, farfalle, rotini~^^^^0^^^3.78^8.37^3.95
-~20653~^~2000~^~Pasta, whole grain, 51% whole wheat, remaining enriched semolina, dry (Includes foods for USDA's Food Distribution Program)~^~PASTA,WHL GRAIN,51% WHL WHEAT,REMAINING ENR SEMOLINA,DRY~^~macaroni product, spaghetti, elbow macaroni, rotini, lasagna, farfalle, penne, shells~^^^^0^^^3.78^8.37^3.95
-~20654~^~2000~^~Pasta, gluten-free, brown rice flour, cooked, TINKYADA~^~PASTA,GLUTEN-FREE,BROWN RICE FLR,CKD,TINKYADA~^^~Tinkyada~^~Y~^^0^^5.95^4.12^8.37^3.41
-~20655~^~2000~^~Pasta, gluten-free, corn flour and quinoa flour, cooked, ANCIENT HARVEST~^~PASTA,GLUTEN-FREE,CORN FLR & QUINOA FLR,CKD,ANCIENT HARVEST~^^~Ancient Harvest~^~Y~^^0^^6.25^3.78^8.37^3.95
-~20656~^~2000~^~Pasta, gluten-free, rice flour and rice bran extract, cooked, DE BOLES~^~PASTA,GLUTEN-FREE,RICE FLR & RICE BRAN EXTRACT,CKD,DE BOLES~^^~De Boles~^^^0^^5.95^3.82^8.37^4.16
-~20657~^~2000~^~Pasta, gluten-free, corn and rice flour, cooked~^~PASTA,GLUTEN-FREE,CORN & RICE FLR,CKD~^^~Barilla~^~Y~^^0^^5.95^3.82^8.37^4.16
-~21003~^~2100~^~Fast foods, biscuit, with egg and bacon~^~FAST FOODS,BISCUIT,W/EGG&BACON~^^^~Y~^^0^^6.12^4.18^8.80^3.94
-~21004~^~2100~^~Fast foods, biscuit, with egg and ham~^~FAST FOODS,BISCUIT,W/EGG&HAM~^^^~Y~^^0^^6.09^4.15^8.80^3.94
-~21005~^~2100~^~Fast Foods, biscuit, with egg and sausage~^~BREAKFAST ITEMS,BISCUIT W/EGG&SAUSAGE~^^^~Y~^^0^^6.06^4.13^8.80^3.95
-~21007~^~2100~^~Fast foods, biscuit, with egg, cheese, and bacon~^~FAST FOODS,BISCUIT,W/EGG,CHS,&BACON~^^^~Y~^^0^^6.19^4.22^8.80^3.94
-~21008~^~2100~^~Fast foods, biscuit, with ham~^~FAST FOODS,BISCUIT,W/HAM~^^^~Y~^^0^^5.98^4.03^8.67^3.95
-~21009~^~2100~^~Fast foods, biscuit, with sausage~^~FAST FOODS,BISCUIT,W/SAUSAGE~^^^~Y~^^0^^5.87^4.01^8.75^3.95
-~21010~^~2100~^~Fast foods, biscuit, with crispy chicken fillet~^~FAST FOODS,BISCUIT,W/ CRISPY CHICK FILLET~^^^~Y~^^0^^6.04^4.08^8.74^3.95
-~21012~^~2100~^~Fast foods, croissant, with egg, cheese, and bacon~^~FAST FOODS,CROISSANT,W/EGG,CHS,&BACON~^^^~Y~^^0^^6.13^4.22^8.83^3.99
-~21013~^~2100~^~Fast foods, croissant, with egg, cheese, and ham~^~FAST FOODS,CROISSANT,W/EGG,CHS,&HAM~^^^~Y~^^0^^6.16^4.23^8.88^3.99
-~21014~^~2100~^~Fast foods, croissant, with egg, cheese, and sausage~^~FAST FOODS,CROISSANT,W/EGG,CHS,&SAUSAGE~^^^~Y~^^0^^6.15^4.22^8.89^3.99
-~21018~^~2100~^~Fast foods, egg, scrambled~^~FAST FOODS,EGG,SCRAMBLED~^^^~Y~^^0^^6.26^4.35^8.92^3.80
-~21020~^~2100~^~Fast foods, english muffin, with cheese and sausage~^~FAST FOODS,ENG MUFFIN,W/CHS&SAUSAGE~^^^~Y~^^0^^6.13^4.12^8.89^3.94
-~21021~^~2100~^~Fast foods, english muffin, with egg, cheese, and canadian bacon~^~FAST FOODS,ENG MUFFIN,W/EGG,CHS,&CANADIAN BACON~^^^~Y~^^0^^^^^
-~21022~^~2100~^~Fast foods, english muffin, with egg, cheese, and sausage~^~FAST FOODS,ENG MUFFIN,W/EGG,CHS,&SAUSAGE~^^^~Y~^^0^^6.17^4.19^8.90^3.94
-~21024~^~2100~^~Fast foods, french toast sticks~^~FAST FOODS,FRENCH TOAST STKS~^^^~Y~^^0^^5.73^3.61^8.83^3.92
-~21026~^~2100~^~Fast foods, potatoes, hash browns, round pieces or patty~^~FAST FOODS,POTATOES,HASH BROWNS,RND PIECES OR PATTY~^^^~Y~^^0^^6.25^4.00^9.00^3.77
-~21028~^~2100~^~Fast foods, vanilla, light, soft-serve ice cream, with cone~^~FAST FOODS,VANILLA,LT,SOFT-SERVE ICE CRM,W/ CONE~^^^~Y~^^0^^6.29^4.20^8.78^3.88
-~21032~^~2100~^~Fast foods, sundae, caramel~^~FAST FOODS,SUNDAE,CARAMEL~^^^^^0^^6.38^4.27^8.79^3.87
-~21033~^~2100~^~Fast foods, sundae, hot fudge~^~FAST FOODS,SUNDAE,HOT FUDGE~^^^^^0^^6.38^4.27^8.79^3.87
-~21034~^~2100~^~Fast foods, sundae, strawberry~^~FAST FOODS,SUNDAE,STRAWBERRY~^^^^^0^^6.38^4.27^8.79^3.87
-~21059~^~2100~^~Fast foods, shrimp, breaded and fried~^~FAST FOODS,SHRIMP,BREADED&FRIED~^^^~Y~^^0^^6.22^4.23^8.89^3.83
-~21060~^~2100~^~Fast foods, burrito, with beans~^~FAST FOODS,BURRITO,W/BNS~^^^^^0^^5.88^3.68^8.37^3.96
-~21061~^~2100~^~Fast foods, burrito, with beans and cheese~^~FAST FOODS,BURRITO,W/BNS&CHS~^^^~Y~^^0^^6.11^3.76^8.71^3.98
-~21063~^~2100~^~Fast foods, burrito, with beans and beef~^~FAST FOODS,BURRITO,W/ BNS & BF~^^^~Y~^^0^^6.14^4.02^8.73^3.97
-~21064~^~2100~^~Fast foods, burrito, with beans, cheese, and beef~^~FAST FOODS,BURRITO,W/BNS,CHS,&BF~^^^~Y~^^0^^6.17^3.96^8.72^3.97
-~21078~^~2100~^~Fast foods, nachos, with cheese~^~FAST FOODS,NACHOS,W/CHS~^^^~Y~^^0^^6.30^3.73^8.48^4.15
-~21080~^~2100~^~Fast foods, nachos, with cheese, beans, ground beef, and tomatoes~^~FAST FOODS,NACHOS,W/ CHS,BNS,GROUND BF,& TOMATOES~^^^~Y~^^0^^6.37^3.83^8.53^4.13
-~21082~^~2100~^~Fast foods, taco with beef, cheese and lettuce, hard shell~^~FAST FOODS,TACO W/ BF,CHS & LETTUCE,HARD SHELL~^^^~Y~^^0^^6.29^4.05^8.78^3.97
-~21089~^~2100~^~Fast foods, cheeseburger; single, regular patty; plain~^~FAST FOODS,CHEESEBURGER; SINGLE,REG PATTY; PLN~^^^~Y~^^0^^6.11^4.12^8.80^3.95
-~21090~^~2100~^~Fast foods, cheeseburger; single, regular patty, with condiments~^~FAST FOODS,CHEESEBURGER; SINGLE,REG PATTY,W/ CONDMNT~^^^~Y~^^0^^6.11^4.12^8.80^3.95
-~21091~^~2100~^~Fast foods, cheeseburger; single, regular patty, with condiments and vegetables~^~FAST FOODS,CHEESEBURGER; SINGLE,REG PATTY,W/ CONDMNT & VEG~^^^~Y~^^0^^6.11^4.12^8.80^3.95
-~21094~^~2100~^~Fast foods, cheeseburger, double, regular patty and bun, with condiments~^~FAST FOODS,CHEESEBURGER,DOUBLE,REG PATTY & BUN,W/ CONDMNT~^^^~Y~^^0^^^^^
-~21096~^~2100~^~Fast foods, cheeseburger; single, large patty; plain~^~FAST FOODS,CHEESEBURGER; SINGLE,LRG PATTY; PLN~^^^~Y~^^0^^6.20^4.20^8.92^3.95
-~21102~^~2100~^~Fast foods, chicken fillet sandwich, plain with pickles~^~FAST FOODS,CHICK FILLET SNDWCH,PLN W/ PICKLES~^^^~Y~^^0^^6.15^4.18^8.88^3.95
-~21105~^~2100~^~Fast foods, fish sandwich, with tartar sauce~^~FAST FOODS,FISH SNDWCH,W/TARTAR SAU~^^^~Y~^^0^^6.07^4.11^8.79^3.93
-~21106~^~2100~^~Fast foods, fish sandwich, with tartar sauce and cheese~^~FAST FOODS,FISH SNDWCH,W/TARTAR SAU&CHS~^^^~Y~^^0^^6.11^4.12^8.81^3.93
-~21107~^~2100~^~Fast foods, hamburger; single, regular patty; plain~^~FAST FOODS,HAMBURGER; SINGLE,REG PATTY; PLN~^^^~Y~^^0^^6.03^4.07^8.81^3.95
-~21108~^~2100~^~Fast foods, hamburger; single, regular patty; with condiments~^~FAST FOODS,HAMBURGER; SINGLE,REG PATTY; W/ CONDMNT~^^^~Y~^^0^^^^^
-~21121~^~2100~^~Fast foods, roast beef sandwich, plain~^~FAST FOODS,RST BF SNDWCH,PLN~^^^~Y~^^0^^6.17^4.20^8.95^3.95
-~21124~^~2100~^~Fast foods, submarine sandwich, cold cut on white bread with lettuce and tomato~^~FAST FOODS,SUBMARINE SNDWCH,COLD CUT BRD W/ LETTUCE & TOMATO~^^^~Y~^^0^^6.09^4.12^8.85^3.94
-~21125~^~2100~^~Fast foods, submarine sandwich, roast beef on white bread with lettuce and tomato~^~FAST FOODS,SUBMARINE SNDWCH,RST BF BREAD W/ LETTUCE & TOMATO~^^^~Y~^^0^^6.17^4.20^8.95^3.95
-~21126~^~2100~^~Fast foods, submarine sandwich, tuna on white bread with lettuce and tomato~^~FAST FOODS,SUBMARINE SNDWCH,TUNA BREAD W/ LETTUCE & TOMATO~^^^~Y~^^0^^6.05^4.09^8.74^3.93
-~21127~^~2100~^~Fast foods, coleslaw~^~FAST FOODS, COLESLAW~^^^^^0^^^^^
-~21129~^~2100~^~Fast foods, hush puppies~^~FAST FOODS,HUSH PUPPIES~^^^~Y~^^0^^6.25^2.73^8.84^4.03
-~21130~^~2100~^~Fast foods, onion rings, breaded and fried~^~FAST FOODS,ONION RINGS,BREADED&FRIED~^^^~Y~^^0^^6.07^3.70^8.80^4.00
-~21138~^~2100~^~Fast foods, potato, french fried in vegetable oil~^~FST FOODS, POTATO, FRNCH FRIED IN VEG OIL~^^^~Y~^^0^^^^^
-~21139~^~2100~^~Fast foods, potato, mashed~^~FAST FOODS,POTATO,MASHED~^^^~Y~^^0^^6.25^2.78^8.84^4.03
-~21141~^~2100~^~BURGER KING, Vanilla Shake~^~BURGER KING,VANILLA SHAKE~^^~Burger King Corporation~^^^0^^6.38^4.00^9.00^4.00
-~21142~^~2100~^~Fast food, biscuit~^~FAST FD,BISCUIT~^^^~Y~^^0^^^^^
-~21143~^~2100~^~CHICK-FIL-A, Chick-n-Strips~^~CHICK-FIL-A,CHICK-N-STRIPS~^^~Chick-Fil-A~^^^0^^^^^
-~21144~^~2100~^~CHICK-FIL-A, hash browns~^~CHICK-FIL-A,HASH BROWNS~^^~Chick-Fil-A~^^^0^^^^^
-~21145~^~2100~^~School Lunch, pizza, BIG DADDY'S LS 16" 51% Whole Grain Rolled Edge Cheese Pizza, frozen~^~SCHOOL LUNCH,PIZZA,BIG DADDY'S LS 16" 51% WHL CHS PIZZA,FRZ~^~school lunch~^^^^0^^6.25^^^
-~21146~^~2100~^~School Lunch, pizza, BIG DADDY'S LS 16" 51% Whole Grain Rolled Edge Turkey Pepperoni Pizza, frozen~^~SCHOOL LUNCH,PIZZA,BIG DADDY'S 51% WHL TRKY PEP PIZZA,FRZ~^~school lunch~^^^^0^^6.25^^^
-~21147~^~2100~^~School Lunch, pizza, TONY'S SMARTPIZZA Whole Grain 4x6 Cheese Pizza 50/50 Cheese, frozen~^~SCHOOL LUNCH,PIZZA,TONY'S SMARTPIZZA PIZZA 50/50 CHS,FRZ~^~school lunch~^^^^0^^6.25^^^
-~21148~^~2100~^~School Lunch, pizza, TONY'S SMARTPIZZA Whole Grain 4x6 Pepperoni Pizza 50/50 Cheese, frozen~^~SCHOOL LUNCH,PIZZA,TONY'S SMARTPIZZA PEP PIZZA 50/50 CHS,FRZ~^~school lunch~^^^^0^^6.25^^^
-~21149~^~2100~^~School Lunch, pizza, TONY'S Breakfast Pizza Sausage, frozen~^~SCHOOL LUNCH,PIZZA,TONY'S BRKFST PIZZA SAUSAGE,FRZ~^~school lunch~^^^^0^^6.25^^^
-~21150~^~2100~^~SUBWAY, sweet onion chicken teriyaki sub on white bread with lettuce, tomato and sweet onion sauce~^~SUBWAY,SWT ONION CHICK SUB WHT BRD LTTC,TMT & SWT ONION SAU~^^~Subway~^^^0^^^^^
-~21151~^~2100~^~Fast foods, submarine sandwich, sweet onion chicken teriyaki on white bread with lettuce, tomato and sweet onion sauce~^~FAST FOODS,SUB,SWT ONION CHICK WIT BRD W/ LTTC,TMT SWT ONION~^^^~Y~^^0^^^4.00^9.00^4.00
-~21152~^~2100~^~SUBWAY, SUBWAY CLUB sub on white bread with lettuce and tomato~^~SUBWAY,SUBWAY CLUB SUB ON WHITE BREAD W/ LETTUCE & TOMATO~^^~Subway~^^^0^^^^^
-~21153~^~2100~^~Fast foods, submarine sandwich, turkey, roast beef and ham on white bread with lettuce and tomato~^~FAST FOODS,SUBMARINE SNDWCH,TRKY RST BF HM BRD W/ LTTC & TMT~^^^~Y~^^0^^^4.00^9.00^4.00
-~21154~^~2100~^~Fast foods, submarine sandwich, oven roasted chicken on white bread with lettuce and tomato~^~FAST FOODS,SUBMARINE SNDWCH,OVEN RSTD CHCK WHT BRD LTTC TMT~^^^~Y~^^0^^^4.00^9.00^4.00
-~21155~^~2100~^~Fast foods, submarine sandwich, turkey breast on white bread with lettuce and tomato~^~FAST FOODS,SUBMARINE SNDWCH,TRKY BRST WHT BRD LTTC & TMT~^^^~Y~^^0^^^4.00^9.00^4.00
-~21156~^~2100~^~Fast foods, submarine sandwich, ham on white bread with lettuce and tomato~^~FAST FOODS,SUBMARINE SNDWCH,HAM ON WHT BRD W/ LTTC & TMT~^^^~Y~^^0^^^4.00^9.00^4.00
-~21157~^~2100~^~SUBWAY, meatball marinara sub on white bread (no toppings)~^~SUBWAY,MEATBALL MARINARA SUB ON WHITE BREAD (NO TOPPINGS)~^^~Subway~^^^0^^^^^
-~21158~^~2100~^~Fast foods, submarine sandwich, meatball marinara on white bread~^~FAST FOODS,SUBMARINE SNDWCH,MEATBALL MARINARA ON WHITE BREAD~^^^~Y~^^0^^^4.00^9.00^4.00
-~21159~^~2100~^~SUBWAY, steak & cheese sub on white bread with American cheese, lettuce and tomato~^~SUBWAY,STEAK & CHS SUB ON WHT BRD W/ AMERICAN CHS,LTTC & TMT~^^~Subway~^^^0^^^^^
-~21160~^~2100~^~Fast foods, submarine sandwich, steak and cheese on white bread with cheese, lettuce and tomato~^~FAST FOODS,SUBMARINE SNDWCH,STK CHS WHT BRD W/ CHS,LTTC TMT~^^^~Y~^^0^^^4.00^9.00^4.00
-~21161~^~2100~^~SUBWAY, B.L.T. sub on white bread with bacon, lettuce and tomato~^~SUBWAY,B.L.T. SUB ON WHITE BREAD W/ BACON,LETTUCE & TOMATO~^~BLT~^~Subway~^^^0^^^^^
-~21162~^~2100~^~Fast foods, submarine sandwich, bacon, lettuce, and tomato on white bread~^~FAST FOODS,SUBMARINE SNDWCH,BACON,LETTUCE,& TOMATO WHT BRD~^~BLT~^^~Y~^^0^^^4.00^9.00^4.00
-~21202~^~2100~^~Fast foods, hamburger, large, single patty, with condiments~^~FAST FOODS,HAMBURGER,LRG,SINGLE PATTY,W/CONDMNT~^^^~Y~^^0^^^^^
-~21207~^~2100~^~SUBWAY, turkey breast sub on white bread with lettuce and tomato~^~SUBWAY,TURKEY BREAST SUB ON WHITE BREAD W/ LETTUCE & TOMATO~^^~Subway~^^^0^^6.25^^^
-~21209~^~2100~^~SUBWAY, black forest ham sub on white bread with lettuce and tomato~^~SUBWAY,BLACK FOREST HAM SUB ON WHITE BRD W/ LETTUCE & TOMATO~^^~Subway~^^^0^^6.25^^^
-~21210~^~2100~^~SUBWAY, roast beef sub on white bread with lettuce and tomato~^~SUBWAY,RST BF SUB ON WHITE BREAD W/ LETTUCE & TOMATO~^^~Subway~^^^0^^^^^
-~21211~^~2100~^~SUBWAY, oven roasted chicken sub on white bread with lettuce and tomato~^~SUBWAY,OVEN RSTD CHICK SUB ON WHITE BRD W/ LETTUCE & TOMATO~^^~Subway~^^^0^^6.25^^^
-~21213~^~2100~^~SUBWAY, cold cut sub on white bread with lettuce and tomato~^~SUBWAY,COLD CUT SUB ON WHITE BREAD W/ LETTUCE & TOMATO~^^~Subway~^^^0^^^^^
-~21214~^~2100~^~SUBWAY, tuna sub on white bread with lettuce and tomato~^~SUBWAY,TUNA SUB ON WHITE BREAD W/ LETTUCE & TOMATO~^^~Subway~^^^0^^^^^
-~21224~^~2100~^~Pizza, cheese topping, regular crust, frozen, cooked~^~PIZZA,CHS TOPPING,REG CRUST,FRZ,CKD~^^^~Y~^^0^^^4.00^9.00^4.00
-~21225~^~2100~^~Pizza, cheese topping, rising crust, frozen, cooked~^~PIZZA,CHS TOPPING,RISING CRUST,FRZ,CKD~^^^~Y~^^0^^^4.00^9.00^4.00
-~21226~^~2100~^~Pizza, meat and vegetable topping, regular crust, frozen, cooked~^~PIZZA,MEAT & VEG TOPPING,REG CRUST,FRZ,CKD~^^^~Y~^^0^^^4.00^9.00^4.00
-~21227~^~2100~^~Pizza, meat and vegetable topping, rising crust, frozen, cooked~^~PIZZA,MEAT & VEG TOPPING,RISING CRUST,FRZ,CKD~^^^~Y~^^0^^^4.00^9.00^4.00
-~21228~^~2100~^~McDONALD'S, Hamburger~^~MCDONALD'S,HAMBURGER~^^~McDonald's Corporation~^^^0^^^^^
-~21229~^~2100~^~Fast foods, chicken, breaded and fried, boneless pieces, plain~^~FAST FOODS,CHICK,BREADED & FRIED,BNLESS PIECES,PLN~^~nuggets~^^~Y~^^0^^6.25^4.00^9.00^4.00
-~21230~^~2100~^~Fast Foods, crispy chicken filet sandwich, with lettuce and mayonnaise~^~FAST FOODS,CRISPY CHICK FILET SNDWCH,W/ LETTUCE & MAYO~^^^~Y~^^0^^^4.00^9.00^4.00
-~21232~^~2100~^~McDONALD'S, FILET-O-FISH~^~MCDONALD'S, FLT-O-FSH~^^~McDonald's Corporation~^^^0^^6.25^4.00^9.00^4.00
-~21233~^~2100~^~McDONALD'S, Cheeseburger~^~MCDONALD'S, CHEESEBURGER~^^~McDonald's Corporation~^^^0^^^^^
-~21234~^~2100~^~McDONALD'S, QUARTER POUNDER~^~MCDONALD'S,QUARTER POUNDER~^^~McDonald's Corporation~^^^0^^^^^
-~21235~^~2100~^~McDONALD'S, QUARTER POUNDER with Cheese~^~MCDONALD'S,QUARTER POUNDER W/ CHS~^^~McDonald's Corporation~^^^0^^^^^
-~21237~^~2100~^~McDONALD'S, BIG MAC~^~MCDONALD'S,BIG MAC~^^~McDonald's Corporation~^^^0^^^^^
-~21238~^~2100~^~McDONALD'S, french fries~^~MCDONALD'S,FRENCH FR~^^~McDonald's Corporation~^^^0^^6.25^^^
-~21239~^~2100~^~WENDY'S, CLASSIC SINGLE Hamburger, no cheese~^~WENDY'S,CLASSIC SINGLE HAMBURGER,NO CHS~^^~Wendy's International, Inc.~^^^0^^6.25^4.00^9.00^4.00
-~21240~^~2100~^~WENDY'S, CLASSIC SINGLE Hamburger, with cheese~^~WENDY'S,CLASSIC SINGLE HAMBURGER,W/ CHS~^^~Wendy's International, Inc.~^^^0^^6.25^4.00^9.00^4.00
-~21241~^~2100~^~WENDY'S, Jr. Hamburger, without cheese~^~WENDY'S,JR. HAMBURGER,WO/ CHS~^^~Wendy's International, Inc.~^^^0^^6.25^4.00^9.00^4.00
-~21242~^~2100~^~WENDY'S, Jr. Hamburger, with cheese~^~WENDY'S,JR. HAMBURGER,W/ CHS~^^~Wendy's International, Inc.~^^^0^^6.25^4.00^9.00^4.00
-~21243~^~2100~^~WENDY'S, CLASSIC DOUBLE, with cheese~^~WENDY'S,CLASSIC DOUBLE,W/ CHS~^^~Wendy's International, Inc.~^^^0^^6.25^4.00^9.00^4.00
-~21244~^~2100~^~WENDY'S, Homestyle Chicken Fillet Sandwich~^~WENDY'S,HOMESTYLE CHICK FILLET SNDWCH~^^~Wendy's International, Inc.~^^^0^^6.25^4.00^9.00^4.00
-~21245~^~2100~^~WENDY'S, Ultimate Chicken Grill Sandwich~^~WENDY'S,ULTIMATE CHICK GRILL SNDWCH~^^~Wendy's International, Inc.~^^^0^^6.25^4.00^9.00^4.00
-~21246~^~2100~^~WENDY'S, Chicken Nuggets~^~WENDY'S,CHICK NUGGETS~^^~Wendy's International, Inc.~^^^0^^6.25^4.00^9.00^4.00
-~21247~^~2100~^~WENDY'S, french fries~^~WENDY'S,FRENCH FR~^^~Wendy's International, Inc.~^^^0^^6.25^4.00^9.00^4.00
-~21248~^~2100~^~WENDY'S, Frosty Dairy Dessert~^~WENDY'S,FROSTY DAIRY DSSRT~^^~Wendy's International, Inc.~^^^0^^6.25^4.00^9.00^4.00
-~21249~^~2100~^~BURGER KING, french fries~^~BURGER KING,FRENCH FR~^^~Burger King Corporation~^^^0^^6.25^4.00^9.00^4.00
-~21250~^~2100~^~BURGER KING, Hamburger~^~BURGER KING,HAMBURGER~^^~Burger King Corporation~^^^0^^6.25^4.00^9.00^4.00
-~21251~^~2100~^~BURGER KING, Cheeseburger~^~BURGER KING, CHSBRGR~^^~Burger King Corporation~^^^0^^6.25^^^
-~21252~^~2100~^~BURGER KING, WHOPPER, no cheese~^~BURGER KING,WHOPPER,NO CHS~^^~Burger King Corporation~^^^0^^^4.00^9.00^4.00
-~21253~^~2100~^~BURGER KING, WHOPPER, with cheese~^~BURGER KING,WHOPPER,W/ CHS~^^~Burger King Corporation~^^^0^^6.25^4.00^9.00^4.00
-~21254~^~2100~^~BURGER KING, DOUBLE WHOPPER, no cheese~^~BURGER KING,DOUBLE WHOPPER,NO CHS~^^~Burger King Corporation~^^^0^^6.25^4.00^9.00^4.00
-~21255~^~2100~^~BURGER KING, DOUBLE WHOPPER, with cheese~^~BURGER KING,DOUBLE WHOPPER,W/ CHS~^^~Burger King Corporation~^^^0^^6.25^4.00^9.00^4.00
-~21256~^~2100~^~BURGER KING, Chicken Strips~^~BURGER KING,CHICK STRIPS~^^~Burger King Corporation~^^^0^^^4.00^9.00^4.00
-~21258~^~2100~^~BURGER KING, Premium Fish Sandwich~^~BURGER KING,PREMIUM FISH SNDWCH~^^~Burger King Corporation~^^^0^^6.25^4.00^9.00^4.00
-~21259~^~2100~^~BURGER KING, Original Chicken Sandwich~^~BURGER KING,ORIGINAL CHICK SNDWCH~^^~Burger King Corporation~^^^0^^6.25^4.00^9.00^4.00
-~21260~^~2100~^~TACO BELL, Original Taco with beef, cheese and lettuce~^~TACO BELL,ORIGINAL TACO W/ BF,CHS & LETTUCE~^^~Taco Bell Corp.~^^^0^^^^^
-~21261~^~2100~^~TACO BELL, Soft Taco with beef, cheese and lettuce~^~TACO BELL,SOFT TACO W/ BF,CHS & LETTUCE~^^~Taco Bell Corp.~^^^0^^^^^
-~21262~^~2100~^~TACO BELL, Soft Taco with chicken, cheese and lettuce~^~TACO BELL,SOFT TACO W/ CHICK,CHS & LETTUCE~^^~Taco Bell Corp.~^^^0^^^^^
-~21263~^~2100~^~TACO BELL, Soft Taco with steak~^~TACO BELL,SOFT TACO W/ STEAK~^^~Taco Bell Corp.~^^^0^^^^^
-~21264~^~2100~^~TACO BELL, Bean Burrito~^~TACO BELL,BEAN BURRITO~^^~Taco Bell Corp.~^^^0^^^^^
-~21265~^~2100~^~TACO BELL, BURRITO SUPREME with beef~^~TACO BELL,BURRITO SUPREME W/ BF~^^~Taco Bell Corp.~^^^0^^^^^
-~21266~^~2100~^~TACO BELL, BURRITO SUPREME with chicken~^~TACO BELL,BURRITO SUPREME W/ CHICK~^^~Taco Bell Corp.~^^^0^^^^^
-~21267~^~2100~^~TACO BELL, BURRITO SUPREME with steak~^~TACO BELL,BURRITO SUPREME W/ STEAK~^^~Taco Bell Corp.~^^^0^^^^^
-~21268~^~2100~^~TACO BELL, Nachos~^~TACO BELL,NACHOS~^^~Taco Bell Corp.~^^^0^^^^^
-~21269~^~2100~^~TACO BELL, Nachos Supreme~^~TACO BELL,NACHOS SUPREME~^^~Taco Bell Corp.~^^^0^^^^^
-~21270~^~2100~^~TACO BELL, Taco Salad~^~TACO BELL,TACO SALAD~^^~Taco Bell Corp.~^^^0^^^^^
-~21271~^~2100~^~PIZZA HUT 12" Cheese Pizza, Hand-Tossed Crust~^~PIZZA HUT 12" CHS PIZZA,HAND-TOSSED CRUST~^^~Pizza Hut, Inc.~^^^0^^^^^
-~21272~^~2100~^~PIZZA HUT 12" Cheese Pizza, Pan Crust~^~PIZZA HUT 12" CHS PIZZA,PAN CRUST~^^~Pizza Hut, Inc.~^^^0^^^^^
-~21273~^~2100~^~PIZZA HUT 12" Cheese Pizza, THIN 'N CRISPY Crust~^~PIZZA HUT 12" CHS PIZZA,THIN 'N CRISPY CRUST~^^~Pizza Hut, Inc.~^^^0^^^^^
-~21274~^~2100~^~PIZZA HUT 12" Pepperoni Pizza, Hand-Tossed Crust~^~PIZZA HUT 12" PEPPERONI PIZZA,HAND-TOSSED CRUST~^^~Pizza Hut, Inc.~^^^0^^^^^
-~21275~^~2100~^~PIZZA HUT 12" Pepperoni Pizza, Pan Crust~^~PIZZA HUT 12" PEPPERONI PIZZA,PAN CRUST~^^~Pizza Hut, Inc.~^^^0^^^^^
-~21276~^~2100~^~PIZZA HUT 12" Super Supreme Pizza, Hand-Tossed Crust~^~PIZZA HUT 12" SUPER SUPREME PIZZA,HAND-TOSSED CRUST~^^~Pizza Hut, Inc.~^^^0^^^^^4.00
-~21277~^~2100~^~DOMINO'S 14" Cheese Pizza, Classic Hand-Tossed Crust~^~DOMINO'S 14" CHS PIZZA,CLASSIC HAND-TOSSED CRUST~^^~Domino's Pizza, LLC~^^^0^^^^^
-~21278~^~2100~^~DOMINO'S 14" Cheese Pizza, Ultimate Deep Dish Crust~^~DOMINO'S 14" CHS PIZZA,ULTIMATE DEEP DISH CRUST~^^~Domino's Pizza, LLC~^^^0^^^^^
-~21279~^~2100~^~DOMINO'S 14" Cheese Pizza, Crunchy Thin Crust~^~DOMINO'S 14" CHS PIZZA,CRUNCHY THIN CRUST~^^~Domino's Pizza, LLC~^^^0^^^^^
-~21280~^~2100~^~DOMINO'S 14" Pepperoni Pizza, Classic Hand-Tossed Crust~^~DOMINO'S 14" PEPPERONI PIZZA,CLASSIC HAND-TOSSED CRUST~^^~Domino's Pizza, LLC~^^^0^^^^^
-~21281~^~2100~^~DOMINO'S 14" Pepperoni Pizza, Ultimate Deep Dish Crust~^~DOMINO'S 14" PEPPERONI PIZZA,ULTIMATE DEEP DISH CRUST~^^~Domino's Pizza, LLC~^^^0^^^^^
-~21282~^~2100~^~DOMINO'S 14" EXTRAVAGANZZA FEAST Pizza, Classic Hand-Tossed Crust~^~DOMINO'S 14" EXTRAVAGANZZA FST PIZZA,CLSSIC HAND-TOSSED CRST~^^~Domino's Pizza, LLC~^^^0^^^^^
-~21283~^~2100~^~PAPA JOHN'S 14" Cheese Pizza, Original Crust~^~PAPA JOHN'S 14" CHS PIZZA,ORIGINAL CRUST~^^~Papa John's International, Inc.~^^^0^^^^^
-~21284~^~2100~^~PAPA JOHN'S 14" Pepperoni Pizza, Original Crust~^~PAPA JOHN'S 14" PEPPERONI PIZZA,ORIGINAL CRUST~^^~Papa John's International, Inc.~^^^0^^^^^
-~21285~^~2100~^~PAPA JOHN'S 14" The Works Pizza, Original Crust~^~PAPA JOHN'S 14" THE WORKS PIZZA,ORIGINAL CRUST~^^~Papa John's International, Inc.~^^^0^^^^^
-~21286~^~2100~^~PAPA JOHN'S 14" Cheese Pizza, Thin Crust~^~PAPA JOHN'S 14" CHS PIZZA,THIN CRUST~^^~Papa John's International, Inc.~^^^0^^^^^
-~21287~^~2100~^~LITTLE CAESARS 14" Original Round Cheese Pizza, Regular Crust~^~LITTLE CAESARS 14" ORIGINAL RND CHS PIZZA,REG CRUST~^^~Little Caesar's Pizza~^^^0^^^^^
-~21288~^~2100~^~LITTLE CAESARS 14" Original Round Pepperoni Pizza, Regular Crust~^~LITTLE CAESARS 14" ORIGINAL RND PEPPERONI PIZZA,REG CRUST~^^~Little Caesar's Pizza~^^^0^^^^^
-~21289~^~2100~^~LITTLE CAESARS 14" Original Round Meat and Vegetable Pizza, Regular Crust~^~LITTLE CAESARS 14" ORIGINAL RND MEAT & VEG PIZZA,REG CRUST~^^~Little Caesar's Pizza~^^^0^^^^^
-~21290~^~2100~^~LITTLE CAESARS 14" Cheese Pizza, Large Deep Dish Crust~^~LITTLE CAESARS 14" CHS PIZZA,LRG DEEP DISH CRUST~^^~Little Caesar's Pizza~^^^0^^^^^
-~21291~^~2100~^~LITTLE CAESARS 14" Pepperoni Pizza, Large Deep Dish Crust~^~LITTLE CAESARS 14" PEPPERONI PIZZA,LRG DEEP DISH CRUST~^^~Little Caesar's Pizza~^^^0^^^^^
-~21292~^~2100~^~LITTLE CAESARS 14" Cheese Pizza, Thin Crust~^~LITTLE CAESARS 14" CHS PIZZA,THIN CRUST~^^~Little Caesar's Pizza~^^^0^^^^^
-~21293~^~2100~^~PIZZA HUT 14" Cheese Pizza, Hand-Tossed Crust~^~PIZZA HUT 14" CHS PIZZA,HAND-TOSSED CRUST~^^~Pizza Hut, Inc.~^^^0^^^^^
-~21294~^~2100~^~PIZZA HUT 14" Cheese Pizza, Pan Crust~^~PIZZA HUT 14" CHS PIZZA,PAN CRUST~^^~Pizza Hut, Inc.~^^^0^^^^^
-~21295~^~2100~^~PIZZA HUT 14" Cheese Pizza, THIN 'N CRISPY Crust~^~PIZZA HUT 14" CHS PIZZA,THIN 'N CRISPY CRUST~^^~Pizza Hut, Inc.~^^^0^^^^^
-~21296~^~2100~^~PIZZA HUT 14" Pepperoni Pizza, Hand-Tossed Crust~^~PIZZA HUT 14" PEPPERONI PIZZA,HAND-TOSSED CRUST~^^~Pizza Hut, Inc.~^^^0^^^^^
-~21297~^~2100~^~PIZZA HUT 14" Pepperoni Pizza, Pan Crust~^~PIZZA HUT 14" PEPPERONI PIZZA,PAN CRUST~^^~Pizza Hut, Inc.~^^^0^^^^^
-~21298~^~2100~^~PIZZA HUT 14" Super Supreme Pizza, Hand-Tossed Crust~^~PIZZA HUT 14" SUPER SUPREME PIZZA,HAND-TOSSED CRUST~^^~Pizza Hut, Inc.~^^^0^^^^^
-~21299~^~2100~^~Fast Food, Pizza Chain, 14" pizza, cheese topping, regular crust~^~FAST FD,PIZZA CHAIN,14" PIZZA,CHS TOPPING,REG CRUST~^^^~Y~^^0^^^^^
-~21300~^~2100~^~Fast Food, Pizza Chain, 14" pizza, cheese topping, thick crust~^~FAST FD,PIZZA CHAIN,14" PIZZA,CHS TOPPING,THICK CRUST~^^^~Y~^^0^^^^^
-~21301~^~2100~^~Fast Food, Pizza Chain, 14" pizza, cheese topping, thin crust~^~FAST FD,PIZZA CHAIN,14" PIZZA,CHS TOPPING,THIN CRUST~^^^~Y~^^0^^^^^
-~21302~^~2100~^~Fast Food, Pizza Chain, 14" pizza, pepperoni topping, regular crust~^~FAST FD,PIZZA CHAIN,14" PIZZA,PEPPERONI TOPPING,REG CRUST~^^^~Y~^^0^^^^^
-~21303~^~2100~^~Fast Food, Pizza Chain, 14" pizza, pepperoni topping, thick crust~^~FAST FD,PIZZA CHAIN,14" PIZZA,PEPPERONI TOPPING,THICK CRUST~^^^~Y~^^0^^^^^
-~21304~^~2100~^~Fast Food, Pizza Chain, 14" pizza, meat and vegetable topping, regular crust~^~FAST FD,PIZZA CHAIN,14" PIZZA,MEAT & VEG TOPPING,REG CRUST~^^^~Y~^^0^^^^^
-~21305~^~2100~^~Fast foods, griddle cake sandwich, egg, cheese, and sausage~^~FAST FOODS,GRIDDLE CAKE SNDWCH,EGG,CHS,& SAUSAGE~^^^~Y~^^0^^^^^
-~21306~^~2100~^~Fast foods, griddle cake sandwich, sausage~^~FAST FOODS,GRIDDLE CAKE SNDWCH,SAUSAGE~^^^~Y~^^0^^^^^
-~21307~^~2100~^~Fast foods, griddle cake sandwich, egg, cheese, and bacon~^~FAST FOODS,GRIDDLE CAKE SNDWCH,EGG,CHS,& BACON~^^^~Y~^^0^^^^^
-~21309~^~2100~^~McDONALD'S, Chicken McNUGGETS~^~MCDONALD'S,CHICK MCNUGGETS~^^~McDonald's Corporation~^^^0^^6.25^^^
-~21319~^~2100~^~McDONALD'S, Hash Brown~^~MCDONALD'S,HASH BROWN~^^~McDonald's Corporation~^^^0^^6.25^^^
-~21321~^~2100~^~McDONALD'S, Hotcakes (plain)~^~MCDONALD'S,HOTCAKES (PLAIN)~^^~McDonald's Corporation~^^^0^^6.25^^^
-~21327~^~2100~^~McDONALD'S, Bacon, Egg & Cheese McGRIDDLES~^~MCDONALD'S,BACON,EGG & CHS MCGRIDDLES~^^~McDonald's Corporation~^^^0^^^^^
-~21328~^~2100~^~McDONALD'S, Sausage McGRIDDLES~^~MCDONALD'S,SAUSAGE MCGRIDDLES~^^~McDonald's Corporation~^^^0^^^^^
-~21329~^~2100~^~McDONALD'S, Sausage, Egg & Cheese McGRIDDLES~^~MCDONALD'S,SAUSAGE,EGG & CHS MCGRIDDLES~^^~McDonald's Corporation~^^^0^^^^^
-~21333~^~2100~^~McDONALD'S, Vanilla Reduced Fat Ice Cream Cone~^~MCDONALD'S,VANILLA RED FAT ICE CRM CONE~^^~McDonald's Corporation~^^^0^^^^^
-~21334~^~2100~^~McDONALD'S, Strawberry Sundae~^~MCDONALD'S,STRAWBERRY SUNDAE~^^~McDonald's Corporation~^^^0^^^^^
-~21335~^~2100~^~McDONALD'S, Hot Caramel Sundae~^~MCDONALD'S,HOT CARAMEL SUNDAE~^^~McDonald's Corporation~^^^0^^^^^
-~21336~^~2100~^~McDONALD'S, Hot Fudge Sundae~^~MCDONALD'S,HOT FUDGE SUNDAE~^^~McDonald's Corporation~^^^0^^^^^
-~21338~^~2100~^~McDONALD'S, McFLURRY with M&M'S CANDIES~^~MCDONALD'S,MCFLURRY W/ M&M'S CANDIES~^^~McDonald's Corporation~^^^0^^^^^
-~21339~^~2100~^~McDONALD'S, McFLURRY with OREO cookies~^~MCDONALD'S,MCFLURRY W/ OREO COOKIES~^^~McDonald's Corporation~^^^0^^^^^
-~21340~^~2100~^~McDONALD'S, Sausage Burrito~^~MCDONALD'S,SAUSAGE BURRITO~^^~McDonald's Corporation~^^^0^^^^^
-~21341~^~2100~^~McDONALD'S, BIG BREAKFAST~^~MCDONALD'S,BIG BRKFST~^^~McDonald's Corporation~^^^0^^^^^
-~21344~^~2100~^~McDONALD'S, Double Cheeseburger~^~MCDONALD'S,DOUBLE CHEESEBURGER~^^~McDonald's Corporation~^^^0^^^^^
-~21345~^~2100~^~McDONALD'S, DOUBLE QUARTER POUNDER with Cheese~^~MCDONALD'S,DOUBLE QUARTER POUNDER W/ CHS~^^~McDonald's Corporation~^^^0^^^^^
-~21350~^~2100~^~McDONALD'S, BIG MAC (without Big Mac Sauce)~^~MCDONALD'S,BIG MAC (WITHOUT BIG MAC SAUCE)~^^~McDonald's Corporation~^^^0^^^^^
-~21355~^~2100~^~McDONALD'S, McCHICKEN Sandwich~^~MCDONALD'S,MCCHICKEN SNDWCH~^^~McDonald's Corporation~^^^0^^^^^
-~21356~^~2100~^~McDONALD'S, McCHICKEN Sandwich (without mayonnaise)~^~MCDONALD'S,MCCHICKEN SNDWCH (WITHOUT MAYONNAISE)~^^~McDonald's Corporation~^^^0^^^^^
-~21357~^~2100~^~McDONALD'S, Egg McMUFFIN~^~MCDONALD'S,EGG MCMUFFIN~^^~McDonald's Corporation~^^^0^^^^^
-~21358~^~2100~^~McDONALD'S, Sausage McMUFFIN~^~MCDONALD'S,SAUSAGE MCMUFFIN~^^~McDonald's Corporation~^^^0^^^^^
-~21359~^~2100~^~McDONALD'S, Sausage McMUFFIN with Egg~^~MCDONALD'S,SAUSAGE MCMUFFIN W/ EGG~^^~McDonald's Corporation~^^^0^^^^^
-~21360~^~2100~^~McDONALD'S, Bacon Egg & Cheese Biscuit~^~MCDONALD'S,BACON EGG & CHS BISCUIT~^^~McDonald's Corporation~^^^0^^^^^
-~21361~^~2100~^~McDONALD'S, Sausage Biscuit~^~MCDONALD'S,SAUSAGE BISCUIT~^^~McDonald's Corporation~^^^0^^^^^
-~21362~^~2100~^~McDONALD'S, Sausage Biscuit with Egg~^~MCDONALD'S,SAUSAGE BISCUIT W/ EGG~^^~McDonald's Corporation~^^^0^^^^^
-~21363~^~2100~^~McDONALD'S, Deluxe Breakfast, with syrup and margarine~^~MCDONALD'S,DELUXE BRKFST,W/ SYRUP & MARGARINE~^^~McDonald's Corporation~^^^0^^^^^
-~21364~^~2100~^~McDONALD'S, Hotcakes and Sausage~^~MCDONALD'S,HOTCAKES & SAUSAGE~^^~McDonald's Corporation~^^^0^^^^^
-~21365~^~2100~^~McDONALD'S, Hotcakes (with 2 pats margarine & syrup)~^~MCDONALD'S,HOTCAKES (WITH 2 PATS MARGARINE & SYRUP)~^^~McDonald's Corporation~^^^0^^^^^
-~21376~^~2100~^~McDONALD'S, Bacon Ranch Salad with Grilled Chicken~^~MCDONALD'S,BACON RANCH SALAD W/ GRILLED CHICK~^^~McDonald's Corporation~^^^0^^^^^
-~21377~^~2100~^~McDONALD'S Bacon Ranch Salad with Crispy Chicken~^~MCDONALD'S BACON RANCH SALAD W/ CRISPY CHICK~^^~McDonald's Corporation~^^^0^^^^^
-~21378~^~2100~^~McDONALD'S, Bacon Ranch Salad without chicken~^~MCDONALD'S,BACON RANCH SALAD WO/ CHICK~^^~McDonald's Corporation~^^^0^^^^^
-~21379~^~2100~^~McDONALD'S, Side Salad~^~MCDONALD'S,SIDE SALAD~^^~McDonald's Corporation~^^^0^^^^^
-~21380~^~2100~^~McDONALD'S, Fruit 'n Yogurt Parfait~^~MCDONALD'S,FRUIT 'N YOGURT PARFAIT~^^~McDonald's Corporation~^^^0^^^^^
-~21381~^~2100~^~McDONALD'S, Fruit 'n Yogurt Parfait (without granola)~^~MCDONALD'S,FRUIT 'N YOGURT PARFAIT (WITHOUT GRANOLA)~^^~McDonald's Corporation~^^^0^^^^^
-~21382~^~2100~^~McDONALD'S, FILET-O-FISH (without tartar sauce)~^~MCDONALD'S,FILET-O-FISH (WITHOUT TARTAR SAUCE)~^^~McDonald's Corporation~^^^0^^^^^
-~21383~^~2100~^~BURGER KING, CROISSAN'WICH with Sausage, Egg and Cheese~^~BURGER KING,CROISSAN'WICH W/ SAUSAGE,EGG & CHS~^^~Burger King Corporation~^^^0^^^^^
-~21384~^~2100~^~BURGER KING, CROISSAN'WICH with Sausage and Cheese~^~BURGER KING,CROISSAN'WICH W/ SAUSAGE & CHS~^^~Burger King Corporation~^^^0^^^^^
-~21385~^~2100~^~BURGER KING, CROISSAN'WICH with Egg and Cheese~^~BURGER KING,CROISSAN'WICH W/ EGG & CHS~^^~Burger King Corporation~^^^0^^^^^
-~21386~^~2100~^~BURGER KING, french toast sticks~^~BURGER KING,FRENCH TOAST STKS~^^~Burger King Corporation~^^^0^^^^^
-~21387~^~2100~^~BURGER KING, Hash Brown Rounds~^~BURGER KING,HASH BROWN ROUNDS~^^~Burger King Corporation~^^^0^^^^^
-~21388~^~2100~^~Fast foods, miniature cinnamon rolls~^~FAST FOODS,MINIATURE CINN ROLLS~^^^^^0^^^4.00^9.00^4.00
-~21389~^~2100~^~Fast foods, hamburger; double, large patty; with condiments, vegetables and mayonnaise~^~FAST FOODS,HAMBURGER; DOUBLE,LRG PATY; W/ CONDMNT,VEG & MAYO~^^^~Y~^^0^^6.25^4.00^9.00^4.00
-~21390~^~2100~^~Fast foods, hamburger; single, large patty; with condiments, vegetables and mayonnaise~^~FT FDS, HAMBRGER; SIN, LRG PATTY; W/ CONDMNTS, VEG, MAYO~^^^~Y~^^0^^^^^
-~21393~^~2100~^~Fast foods, hamburger; single, regular patty; double decker bun with condiments and special sauce~^~FAST FOODS,HMBURGR; SNG,REG PTTY; DBL BN W/ CNDMNT & SPL SAU~^^^^^0^^6.25^4.00^9.00^4.00
-~21395~^~2100~^~Fast foods, cheeseburger; double, regular patty; with condiments~^~FAST FOODS,CHEESEBURGER; DOUBLE,REG PATTY; W/ CONDMNT~^^^~Y~^^0^^^4.00^9.00^4.00
-~21396~^~2100~^~Fast foods, cheeseburger; double, large patty; with condiments~^~FAST FOODS,CHEESEBURGER; DOUBLE,LRG PATTY; W/ CONDMNT~^^^^^0^^^^^
-~21397~^~2100~^~Fast foods, cheeseburger; single, large patty; with condiments, vegetables and mayonnaise~^~FAST FOODS,CHESEBRGER; SING,LRG PATY; W/ CONDMNT,VEG & MAYO~^^^~Y~^^0^^^^^
-~21398~^~2100~^~Fast foods, cheeseburger; single, large patty; with condiments~^~FAST FOODS,CHEESEBURGER; SINGLE,LRG PATTY; W/ CONDMNT~^^^~Y~^^0^^^^^
-~21399~^~2100~^~Fast Foods, cheeseburger; double, large patty; with condiments, vegetables and mayonnaise~^~FAST FDS,CHSEBURGER; DOUBLE,LRG PATTY; W/ CONDMNT,VEG & MAYO~^^^~Y~^^0^^^^^
-~21400~^~2100~^~Fast foods, cheeseburger; double, regular patty; double decker bun with condiments and special sauce~^~FAST FOODS,CHSBURGR; DBL,RG PTTY; DBL BN W/ CNDMNT & SPL SAU~^^^~Y~^^0^^6.25^4.00^9.00^4.00
-~21401~^~2100~^~Fast foods, chicken tenders~^~FAST FOODS,CHICK TENDERS~^~chicken strips~^^~Y~^^0^^^^^
-~21410~^~2100~^~Fast foods, bagel, with egg, sausage patty, cheese, and condiments~^~FAST FOODS,BAGEL,W/ EGG,SAUSAGE PATTY,CHS,& CONDMNT~^^^~Y~^^0^^^4.00^9.00^4.00
-~21411~^~2100~^~Fast foods, bagel, with breakfast steak, egg, cheese, and condiments~^~FAST FOODS,BAGEL,W/ BRKFST STEAK,EGG,CHS,& CONDMNT~^^^~Y~^^0^^^4.00^9.00^4.00
-~21412~^~2100~^~Light Ice Cream, soft serve, blended with milk chocolate candies~^~LIGHT ICE CRM,SOFT SERVE,BLENDED W/ MILK CHOC CANDIES~^^^~Y~^^0^^^^^
-~21413~^~2100~^~Light Ice Cream, soft serve, blended with cookie pieces~^~LIGHT ICE CRM,SOFT SERVE,BLENDED W/ COOKIE PIECES~^^^~Y~^^0^^^^^
-~21415~^~2100~^~POPEYES, biscuit~^~POPEYES,BISCUIT~^^~Popeyes Chicken and Biscuits~^^^0^^^^^
-~21416~^~2100~^~POPEYES, Coleslaw~^~POPEYES,COLESLAW~^^~Popeyes Chicken and Biscuits~^^^0^^^^^
-~21417~^~2100~^~POPEYES, Mild Chicken Strips, analyzed 2006~^~POPEYES,MILD CHICK STRIPS,ANALYZED 2006~^^~Popeyes Chicken and Biscuits~^^^0^^^^^
-~21418~^~2100~^~POPEYES, Spicy Chicken Strips, analyzed 2006~^~POPEYES,SPICY CHICK STRIPS,ANALYZED 2006~^^~Popeyes Chicken and Biscuits~^^^0^^^^^
-~21419~^~2100~^~KFC, biscuit~^~KFC,BISCUIT~^~KFC~^~Kentucky Fried Chicken~^^^0^^^^^
-~21420~^~2100~^~KFC, Coleslaw~^~KFC,COLESLAW~^~KFC~^~Kentucky Fried Chicken~^^^0^^^^^
-~21421~^~2100~^~KFC, Crispy Chicken Strips~^~KFC,CRISPY CHICK STRIPS~^~KFC~^~Kentucky Fried Chicken~^^^0^^^^^
-~21422~^~2100~^~KFC, Popcorn Chicken~^~KFC,POPCORN CHICK~^~KFC~^~Kentucky Fried Chicken~^^^0^^^^^
-~21424~^~2100~^~KFC, Fried Chicken, ORIGINAL RECIPE, Skin and Breading~^~KFC,FRIED CHICK,ORIGINAL RECIPE,SKN & BREADING~^~KFC~^~Kentucky Fried Chicken~^^^0^^^^^
-~21425~^~2100~^~KFC, Fried Chicken, ORIGINAL RECIPE, Breast, meat only, skin and breading removed~^~KFC,FRIED CHICK,ORIGINAL RECIPE,BREAST,MEAT NLY,SKN BRDNG RD~^~KFC~^~Kentucky Fried Chicken~^^~Skin, subcutaneous fat and breading, 28%; Cartilage and bone, 18%; Handling loss, 1%~^47^^^^^
-~21426~^~2100~^~KFC, Fried Chicken, ORIGINAL RECIPE, Drumstick, meat only, skin and breading removed~^~KFC,FRIED CHICK,ORIGINAL RECIPE,DRUMSTK,MEAT ONLY,SKN BRG RD~^~KFC~^~Kentucky Fried Chicken~^^~Skin, subcutaneous fat and breading, 23%; Cartilage and bone, 24%~^47^^^^^
-~21427~^~2100~^~KFC, Fried Chicken, ORIGINAL RECIPE, Thigh, meat only, skin and breading removed~^~KFC,FRIED CHICK,ORIGINAL RECIPE,THIGH,MEAT ONLY,SKN BRDNG RD~^~KFC~^~Kentucky Fried Chicken~^^~Skin, subcutaneous fat and breading, 36%; Cartilage and bone, 19%; Handling loss, 1%~^56^^^^^
-~21428~^~2100~^~KFC, Fried Chicken, ORIGINAL RECIPE, Wing, meat only, skin and breading removed~^~KFC,FRIED CHICK,ORIGINAL RECIPE,WING,MEAT ONLY,SKN BRDNG RD~^~KFC~^~Kentucky Fried Chicken~^^~Skin, subcutaneous fat and breading, 35%; Cartilage and bone, 26%; Handling loss, 1%~^63^^^^^
-~21429~^~2100~^~KFC, Fried Chicken, EXTRA CRISPY, Skin and Breading~^~KFC,FRIED CHICK,EX CRISPY,SKN & BREADING~^~KFC~^~Kentucky Fried Chicken~^^^0^^^^^
-~21430~^~2100~^~KFC, Fried Chicken, EXTRA CRISPY, Breast, meat only, skin and breading removed~^~KFC,FRIED CHICK,EX CRISPY,BREAST,MEAT ONLY,SKN & BRDING RMVD~^~KFC~^~Kentucky Fried Chicken~^^~Skin, subcutaneous fat and breading, 33%; Cartilage and bone, 9%~^43^^^^^
-~21431~^~2100~^~KFC, Fried Chicken, EXTRA CRISPY, Drumstick, meat only, skin and breading removed~^~KFC,FRIED CHICK,EX CRISPY,DRUMSTK,MEAT ONLY,SKN & BRDNG RMVD~^~KFC~^~Kentucky Fried Chicken~^^~Skin, subcutaneous fat and breading, 28%; Cartilage and bone, 21%~^49^^^^^
-~21432~^~2100~^~KFC, Fried Chicken, EXTRA CRISPY, Thigh, meat only, skin and breading removed~^~KFC,FRIED CHICK,EX CRISPY,THIGH,MEAT ONLY,SKN & BRDING RMVD~^~KFC~^~Kentucky Fried Chicken~^^~Skin, subcutaneous fat and breading, 40%; Cartilage and bone, 13%~^53^^^^^
-~21433~^~2100~^~KFC, Fried Chicken, EXTRA CRISPY, Wing, meat only, skin and breading removed~^~KFC,FRIED CHICK,EX CRISPY,WING,MEAT ONLY,SKN & BRDING REMOVD~^~KFC~^~Kentucky Fried Chicken~^^~Skin, subcutaneous fat and breading, 34%; Cartilage and bone, 24%~^58^^^^^
-~21434~^~2100~^~KFC, Fried Chicken, ORIGINAL RECIPE, Breast, meat and skin with breading~^~KFC,FRIED CHICK,ORIGINAL RECIPE,BREAST,MEAT & SKN W/ BRDING~^~KFC~^~Kentucky Fried Chicken~^^~Cartilage and bone~^18^^^^^
-~21435~^~2100~^~KFC, Fried Chicken, ORIGINAL RECIPE, Drumstick, meat and skin with breading~^~KFC,FRIED CHICK,ORIGINAL RECIPE,DRUMSTK,MEAT & SKN W/ BRDING~^~KFC~^~Kentucky Fried Chicken~^^~Cartilage and bone~^24^^^^^
-~21436~^~2100~^~KFC, Fried Chicken, ORIGINAL RECIPE, Thigh, meat and skin with breading~^~KFC,FRIED CHICK,ORIGINAL RECIPE,THIGH,MEAT & SKN W/ BREADING~^~KFC~^~Kentucky Fried Chicken~^^~Cartilage and bone~^19^^^^^
-~21437~^~2100~^~KFC, Fried Chicken, ORIGINAL RECIPE, Wing, meat and skin with breading~^~KFC,FRIED CHICK,ORIGINAL RECIPE,WING,MEAT & SKN W/ BREADING~^~KFC~^~Kentucky Fried Chicken~^^~Cartilage and bone~^26^^^^^
-~21438~^~2100~^~KFC, Fried Chicken, EXTRA CRISPY, Breast, meat and skin with breading~^~KFC,FRIED CHICK,EX CRISPY,BREAST,MEAT & SKN W/ BREADING~^~KFC~^~Kentucky Fried Chicken~^^~Cartilage and bone~^9^^^^^
-~21439~^~2100~^~KFC, Fried Chicken, EXTRA CRISPY, Drumstick, meat and skin with breading~^~KFC,FRIED CHICK,EX CRISPY,DRUMSTK,MEAT & SKN W/ BREADING~^~KFC~^~Kentucky Fried Chicken~^^~Cartilage and bone~^21^^^^^
-~21440~^~2100~^~KFC, Fried Chicken, EXTRA CRISPY, Thigh, meat and skin with breading~^~KFC,FRIED CHICK,EX CRISPY,THIGH,MEAT & SKN W/ BREADING~^~KFC~^~Kentucky Fried Chicken~^^~Cartilage and bone~^13^^^^^
-~21441~^~2100~^~KFC, Fried Chicken, EXTRA CRISPY, Wing, meat and skin with breading~^~KFC,FRIED CHICK,EX CRISPY,WING,MEAT & SKN W/ BREADING~^~KFC~^~Kentucky Fried Chicken~^^~Cartilage and bone~^24^^^^^
-~21442~^~2100~^~POPEYES, Fried Chicken, Mild, Breast, meat only, skin and breading removed~^~POPEYES, CHICK,MILD,BREAST,MEAT ONLY,SKN & BRDING REMOVED~^^~Popeyes Chicken and Biscuits~^^~Skin, subcutaneous fat and breading, 32%; Cartilage and bone, 17%; Handling loss, 1%~^50^^^^^
-~21443~^~2100~^~POPEYES, Fried Chicken, Mild, Drumstick, meat only, skin and breading removed~^~POPEYES,FRIED CHICK,MILD,DRUMSTK,MEAT ONLY,SKN & BREADING RE~^^~Popeyes Chicken and Biscuits~^^~Skin, subcutaneous fat and breading, 22%; Cartilage and bone, 20%~^42^^^^^
-~21444~^~2100~^~POPEYES, Fried Chicken, Mild, Skin and Breading~^~POPEYES,FRIED CHICK,MILD,SKN & BREADING~^^~Popeyes Chicken and Biscuits~^^^0^^^^^
-~21445~^~2100~^~POPEYES, Fried Chicken, Mild, Thigh, meat only, skin and breading removed~^~POPEYES,FRIED CHCK,MILD,THIGH,MEAT ONLY,SKN & BRDING REMOVED~^^~Popeyes Chicken and Biscuits~^^~Skin, subcutaneous fat and breading, 40%; Cartilage and bone, 20%~^60^^^^^
-~21446~^~2100~^~POPEYES, Fried Chicken, Mild, Wing, meat only, skin and breading removed~^~POPEYES,FRIED CHICK,MILD,WING,MEAT ONLY,SKN & BRDING REMOVED~^^~Popeyes Chicken and Biscuits~^^~Skin, subcutaneous fat and breading, 38%; Cartilage and bone, 32%; Handling loss, 1%~^72^^^^^
-~21456~^~2100~^~POPEYES, Fried Chicken, Mild, Breast, meat and skin with breading~^~POPEYES,FRIED CHICK,MILD,BREAST,MEAT & SKN W/ BREADING~^^~Popeyes Chicken and Biscuits~^^~Cartilage and bone~^17^^^^^
-~21457~^~2100~^~POPEYES, Fried Chicken, Mild, Drumstick, meat and skin with breading~^~POPEYES,FRIED CHICK,MILD,DRUMSTK,MEAT & SKN W/ BREADING~^^~Popeyes Chicken and Biscuits~^^~Cartilage and bone~^20^^^^^
-~21458~^~2100~^~POPEYES, Fried Chicken, Mild, Thigh, meat and skin with breading~^~POPEYES,FRIED CHICK,MILD,THIGH,MEAT & SKN W/ BREADING~^^~Popeyes Chicken and Biscuits~^^~Cartilage and bone~^20^^^^^
-~21459~^~2100~^~POPEYES, Fried Chicken, Mild, Wing, meat and skin with breading~^~POPEYES,FRIED CHICK,MILD,WING,MEAT & SKN W/ BREADING~^^~Popeyes Chicken and Biscuits~^^~Cartilage and bone~^32^^^^^
-~21461~^~2100~^~Fast foods, grilled chicken, bacon and tomato club sandwich, with cheese, lettuce, and mayonnaise~^~GRILLED CHICK,BACON & TOMO CLB SNDWCH,W/ CHS,LETTUCE,& MAYO~^^^~Y~^^0^^^^^
-~21462~^~2100~^~Fast foods, crispy chicken, bacon, and tomato club sandwich, with cheese, lettuce, and mayonnaise~^~CRISPY CHICK,BACON,& TOMATO CLUB SNDWCH,W/ CHS,LETUCE,& MAYO~^^^~Y~^^0^^^^^
-~21463~^~2100~^~Yogurt parfait, lowfat, with fruit and granola~^~YOGURT PARFAIT,LOWFAT,W/ FRUIT & GRANOLA~^^^~Y~^^0^^^^^
-~21464~^~2100~^~Fast Foods, Fried Chicken, Breast, meat only, skin and breading removed~^~FAST FOODS,FRIED CHICK,BREAST,MEAT ONLY,SKN & BRDING REMOVED~^^^~Y~^~Skin, subcutaneous fat and breading, 30%; Cartilage and bone, 17%; Handling loss, 1%~^48^^^^^
-~21465~^~2100~^~Fast Foods, Fried Chicken, Drumstick, meat only, skin and breading removed~^~FAST FOODS,FRIED CHICK,DRMSTK,MEAT ONLY,SKN & BRDING REMOVED~^^^~Y~^~Skin, subcutaneous fat and breading, 24.5%, Cartilage and bone, 22%~^47^^^^^
-~21466~^~2100~^~Fast Foods, Fried Chicken, Thigh, meat only, skin and breading removed~^~FAST FOODS,FRIED CHICK,THIGH,MEAT ONLY,SKN & BREDING REMOVED~^^^~Y~^~Skin, subcutaneous fat and breading, 38%; Cartilage and bone, 13.6%~^52^^^^^
-~21467~^~2100~^~Fast Foods, Fried Chicken, Wing, meat only, skin and breading removed~^~FAST FOODS,FRIED CHICK,WING,MEAT ONLY,SKN & BREADING REMOVED~^^^~Y~^~Skin, subcutaneous fat and breading, 37%; Cartilage and bone, 29%; Handling loss, 1%~^67^^^^^
-~21468~^~2100~^~Fast Foods, Fried Chicken, Skin and breading from all pieces~^~FAST FOODS,FRIED CHICK,SKN & BREADING FROM ALL PIECES~^^^^^0^^^^^
-~21469~^~2100~^~Fast Foods, Fried Chicken, Breast, meat and skin and breading~^~FAST FOODS,FRIED CHICK,BREAST,MEAT & SKN & BREADING~^^^~Y~^~Cartilage and bone~^18^^^^^
-~21470~^~2100~^~Fast Foods, Fried Chicken, Drumstick, meat and skin with breading~^~FAST FOODS,FRIED CHICK,DRUMSTK,MEAT & SKN W/ BREADING~^^^~Y~^~Cartilage and bone~^22^^^^^
-~21471~^~2100~^~Fast Foods, Fried Chicken, Thigh, meat and skin and breading~^~FAST FOODS,FRIED CHICK,THIGH,MEAT & SKN & BREADING~^^^~Y~^~Cartilage and bone~^14^^^^^
-~21472~^~2100~^~Fast Foods, Fried Chicken, Wing, meat and skin and breading~^~FAST FOODS,FRIED CHICK,WING,MEAT & SKN & BREADING~^^^~Y~^~Cartilage and bone~^29^^^^^
-~21473~^~2100~^~DIGIORNO Pizza, cheese topping, cheese stuffed crust, frozen, baked~^~DIGIORNO PIZZA,CHS TOPPING,CHS STUFFED CRUST,FRZ,BKD~^^~Kraft Foods, Inc.~^^^0^^^^^
-~21474~^~2100~^~DIGIORNO Pizza, cheese topping, rising crust, frozen, baked~^~DIGIORNO PIZZA,CHS TOPPING,RISING CRUST,FRZ,BKD~^^~Kraft Foods, Inc.~^^^0^^^^^
-~21475~^~2100~^~DIGIORNO Pizza, cheese topping, thin crispy crust, frozen, baked~^~DIGIORNO PIZZA,CHS TOPPING,THIN CRISPY CRUST,FRZ,BKD~^^~Kraft Foods, Inc.~^^^0^^^^^
-~21476~^~2100~^~DIGIORNO Pizza, pepperoni topping, cheese stuffed crust, frozen, baked~^~DIGIORNO PIZZA,PEPPERONI TOPPING,CHS STUFFED CRUST,FRZ,BKD~^^~Kraft Foods, Inc.~^^^0^^^^^
-~21477~^~2100~^~DIGIORNO Pizza, pepperoni topping, rising crust, frozen, baked~^~DIGIORNO PIZZA,PEPPERONI TOPPING,RISING CRUST,FRZ,BKD~^^~Kraft Foods, Inc.~^^^0^^^^^
-~21478~^~2100~^~DIGIORNO Pizza, pepperoni topping, thin crispy crust, frozen, baked~^~DIGIORNO PIZZA,PEPPERONI TOPPING,THIN CRISPY CRUST,FRZ,BKD~^^~Kraft Foods, Inc.~^^^0^^^^^
-~21479~^~2100~^~DIGIORNO Pizza, supreme topping, rising crust, frozen, baked~^~DIGIORNO PIZZA,SUPREME TOPPING,RISING CRUST,FRZ,BKD~^^~Kraft Foods, Inc.~^^^0^^^^^
-~21480~^~2100~^~DIGIORNO Pizza, supreme topping, thin crispy crust, frozen, baked~^~DIGIORNO PIZZA,SUPREME TOPPING,THIN CRISPY CRUST,FRZ,BKD~^^~Kraft Foods, Inc.~^^^0^^^^^
-~21482~^~2100~^~Fast Food, Pizza Chain, 14" pizza, sausage topping, thick crust~^~FAST FD,PIZZA CHAIN,14" PIZZA,SAUSAGE TOPPING,THICK CRUST~^^^~Y~^^0^^^^^
-~21483~^~2100~^~Fast Food, Pizza Chain, 14" pizza, sausage topping, thin crust~^~FAST FD,PIZZA CHAIN,14" PIZZA,SAUSAGE TOPPING,THIN CRUST~^^^~Y~^^0^^^^^
-~21484~^~2100~^~Fast Food, Pizza Chain, 14" pizza, sausage topping, regular crust~^~FAST FD,PIZZA CHAIN,14" PIZZA,SAUSAGE TOPPING,REG CRUST~^^^~Y~^^0^^^^^
-~21485~^~2100~^~Fast Food, Pizza Chain, 14" pizza, pepperoni topping, thin crust~^~FAST FD,PIZZA CHAIN,14" PIZZA,PEPPERONI TOPPING,THIN CRUST~^^^~Y~^^0^^^^^
-~21486~^~2100~^~Fast foods, taco with beef, cheese and lettuce, soft~^~FAST FOODS,TACO W/ BF,CHS & LETTUCE,SOFT~^^^~Y~^^0^^^^^
-~21487~^~2100~^~Fast foods, taco with chicken, lettuce and cheese, soft~^~FAST FOODS,TACO W/ CHICK,LETTUCE & CHS,SOFT~^^^~Y~^^0^^^^^
-~21488~^~2100~^~Fast foods, quesadilla, with chicken~^~FAST FOODS,QUESADILLA,W/ CHICK~^^^~Y~^^0^^^^^
-~21490~^~2100~^~Fast Foods, grilled chicken filet sandwich, with lettuce, tomato and spread~^~FAST FDS,GRILLED CHICK FILET SNDWCH,W/ LETTUCE,TOMATO & SPRD~^^^~Y~^^0^^6.25^^^
-~21491~^~2100~^~PIZZA HUT 14" Pepperoni Pizza, THIN 'N CRISPY Crust~^~PIZZA HUT 14" PEPPERONI PIZZA,THIN 'N CRISPY CRUST~^^~Pizza Hut, Inc.~^^^0^^^^^
-~21492~^~2100~^~DOMINO'S 14" Pepperoni Pizza, Crunchy Thin Crust~^~DOMINO'S 14" PEPPERONI PIZZA,CRUNCHY THIN CRUST~^^~Domino's Pizza, LLC~^^^0^^^^^
-~21493~^~2100~^~DOMINO'S 14" Sausage Pizza, Crunchy Thin Crust~^~DOMINO'S 14" SAUSAGE PIZZA,CRUNCHY THIN CRUST~^^~Domino's Pizza, LLC~^^^0^^^^^
-~21494~^~2100~^~DOMINO'S 14" Sausage Pizza, Classic Hand-Tossed Crust~^~DOMINO'S 14" SAUSAGE PIZZA,CLASSIC HAND-TOSSED CRUST~^^~Domino's Pizza, LLC~^^^0^^^^^
-~21495~^~2100~^~DOMINO'S 14" Sausage Pizza, Ultimate Deep Dish Crust~^~DOMINO'S 14" SAUSAGE PIZZA,ULTIMATE DEEP DISH CRUST~^^~Domino's Pizza, LLC~^^^0^^^^^
-~21496~^~2100~^~PIZZA HUT 14" Sausage Pizza, THIN 'N CRISPY Crust~^~PIZZA HUT 14" SAUSAGE PIZZA,THIN 'N CRISPY CRUST~^^~Pizza Hut, Inc.~^^^0^^^^^
-~21497~^~2100~^~PIZZA HUT 14" Sausage Pizza, Hand-Tossed Crust~^~PIZZA HUT 14" SAUSAGE PIZZA,HAND-TOSSED CRUST~^^~Pizza Hut, Inc.~^^^0^^^^^
-~21498~^~2100~^~PIZZA HUT 14" Sausage Pizza, Pan Crust~^~PIZZA HUT 14" SAUSAGE PIZZA,PAN CRUST~^^~Pizza Hut, Inc.~^^^0^^^^^
-~21505~^~2100~^~Pizza, cheese topping, thin crust, frozen, cooked~^~PIZZA,CHS TOPPING,THIN CRUST,FRZ,CKD~^^^~Y~^^0^^^^^
-~21506~^~2100~^~BURGER KING, Double Cheeseburger~^~BURGER KING,DOUBLE CHEESEBURGER~^^~Burger King Corporation~^^^0^^^^^
-~21507~^~2100~^~WENDY'S, Double Stack, with cheese~^~WENDY'S,DOUBLE STACK,W/ CHS~^^~Wendy's International, Inc.~^^^0^^^^^
-~21508~^~2100~^~WEND'YS, Crispy Chicken Sandwich~^~WEND'YS,CRISPY CHICK SNDWCH~^^~Wendy's International, Inc.~^^^0^^^^^
-~21509~^~2100~^~BURGER KING, Onion Rings~^~BURGER KING,ONION RINGS~^^~Burger King Corporation~^^^0^^^^^
-~21510~^~2100~^~WENDY'S, DAVE'S Hot 'N Juicy 1/4 LB, single~^~WENDY'S,DAVE'S HOT 'N JUICY 1/4 LB,SINGLE~^^~Wendy's International, Inc.~^^^0^^^^^
-~21511~^~2100~^~Fast Food, Pizza Chain, 14" pizza, cheese topping, stuffed crust~^~FAST FD,PIZZA CHAIN,14" PIZZA,CHS TOPPING,STUFFED CRUST~^^^~Y~^^0^^^^^
-~21512~^~2100~^~PIZZA HUT 14" Cheese Pizza, Stuffed Crust~^~PIZZA HUT 14" CHS PIZZA,STUFFED CRUST~^^~Pizza Hut, Inc.~^^^0^^^^^
-~21517~^~2100~^~Fast foods, crispy chicken in tortilla, with lettuce, cheese, and ranch sauce~^~FAST FOODS,CRISPY CHICK IN TORTILLA,W/ LTTC,CHS,& RANCH SAU~^~snack, wrap~^^~Y~^^0^^^^^
-~21518~^~2100~^~Fast foods, grilled chicken in tortilla, with lettuce, cheese, and ranch sauce~^~FAST FOODS,GRILLED CHICK IN TORTILLA,W/ LTTC,CHS,& RANCH SAU~^~wrap, snack~^^~Y~^^0^^^^^
-~21519~^~2100~^~Fast foods, breakfast burrito, with egg, cheese, and sausage~^~FAST FOODS,BRKFST BURRITO,W/ EGG,CHS,& SAUSAGE~^^^~Y~^^0^^^^^
-~21520~^~2100~^~Fast foods, breadstick, soft, prepared with garlic and parmesan cheese~^~FAST FOODS,BREADSTICK,SOFT,PREP W/ GARLIC & PARMESAN CHS~^^^~Y~^^0^^^^^
-~21521~^~2100~^~Fast foods, strawberry banana smoothie made with ice and low-fat yogurt~^~FAST FOODS,STRWBY BANANA SMTH MADE W/ ICE & LOW-FAT YOGURT~^^^~Y~^^0^^6.25^^^
-~21522~^~2100~^~McDONALD'S, Southern Style Chicken Biscuit~^~MCDONALD'S,SOUTHERN STYLE CHICK BISCUIT~^^~McDonald's Corporation~^^^0^^^^^
-~21523~^~2100~^~McDONALD'S, RANCH SNACK WRAP, Crispy~^~MCDONALD'S,RANCH SNACK WRAP,CRISPY~^^~McDonald's Corporation~^^^0^^^^^
-~21524~^~2100~^~McDONALD'S, RANCH SNACK WRAP, Grilled~^~MCDONALD'S,RANCH SNACK WRAP,GRILLED~^^~McDonald's Corporation~^^^0^^^^^
-~21525~^~2100~^~PIZZA HUT, breadstick, parmesan garlic~^~PIZZA HUT,BREADSTICK,PARMESAN GARLIC~^^~Pizza Hut, Inc.~^^^0^^^^^
-~21526~^~2100~^~CHICK-FIL-A, chicken sandwich~^~CHICK-FIL-A,CHICK SNDWCH~^^~Chick-Fil-A~^^^0^^^^^
-~21527~^~2100~^~ARBY'S, roast beef sandwich, classic~^~ARBY'S,RST BF SNDWCH,CLASSIC~^^~ARBY'S~^^^0^^^^^
-~21600~^~2100~^~School Lunch, pizza, cheese topping, thin crust, whole grain, frozen, cooked~^~SCHOOL LUNCH,PIZZA,CHS TOPPING,THIN CRUST,WHL GRAIN,FRZ,CKD~^~school lunch~^^~Y~^^0^^^^^
-~21601~^~2100~^~School Lunch, pizza, cheese topping, thick crust, whole grain, frozen, cooked~^~SCHOOL LUNCH,PIZZA,CHS TOPPING,THICK CRUST,WHL GRAIN,FRZ,CKD~^~school lunch~^^~Y~^^0^^^^^
-~21602~^~2100~^~School Lunch, pizza, pepperoni topping, thin crust, whole grain, frozen, cooked~^~SCHOOL LUNCH,PIZZA,PEPPI TOPPING,THIN CRUST,WHL GRN,FRZ,CKD~^~school lunch~^^~Y~^^0^^^^^
-~21603~^~2100~^~School Lunch, pizza, pepperoni topping, thick crust, whole grain, frozen, cooked~^~SCHOOL LUNCH,PIZZA,PEPP TOPPING,THICK CRUST,WHL GRN,FRZ,CKD~^~school lunch~^^~Y~^^0^^^^^
-~21604~^~2100~^~School Lunch, pizza, sausage topping, thin crust, whole grain, frozen, cooked~^~SCHOOL LUNCH,PIZZA,SSAGE TOPPING,THIN CRST,WHL GRAIN,FRZ,CKD~^~school lunch~^^~Y~^^0^^6.25^^^
-~21605~^~2100~^~School Lunch, pizza, sausage topping, thick crust, whole grain, frozen, cooked~^~SCHOOL LUNCH,PIZZA,SAUSAGE TOP,THICK CRUST,WHL GRN,FRZ,CKD~^~school lunch~^^~Y~^^0^^^^^
-~21610~^~2100~^~School Lunch, chicken patty, whole grain breaded~^~SCHOOL LUNCH,CHICK PATTY,WHL GRAIN BREADED~^~school lunch~^^~Y~^^0^^^^^
-~21611~^~2100~^~School Lunch, chicken nuggets, whole grain breaded~^~SCHOOL LUNCH,CHICK NUGGETS,WHL GRAIN BREADED~^^^~Y~^^0^^^4.00^9.00^4.00
-~22247~^~2200~^~Macaroni and Cheese, canned entree~^~MACARONI & CHS,CND ENTREE~^^^~Y~^^0^^^^^
-~22401~^~2200~^~Spaghetti with meat sauce, frozen entree~^~SPAGHETTI W/ MEAT SAU,FRZ ENTREE~^^^~Y~^^0^^5.80^4.00^9.00^4.00
-~22402~^~2200~^~Beef macaroni with tomato sauce, frozen entree, reduced fat~^~BEEF MACARONI W/ TOMATO SAU,FRZ ENTREE,RED FAT~^^^^^0^^5.80^4.00^9.00^4.00
-~22522~^~2200~^~Pasta with Sliced Franks in Tomato Sauce, canned entree~^~PASTA W/SLICED FRANKS IN TOMATO SAU,CND ENTREE~^^^~Y~^^0^^6.25^4.00^9.00^4.00
-~22528~^~2200~^~Turkey Pot Pie, frozen entree~^~TURKEY POT PIE,FRZ ENTREE~^^^^^0^^^^^
-~22529~^~2200~^~Beef Pot Pie, frozen entree, prepared~^~BEEF POT PIE,FRZ ENTREE,PREP~^^^^^0^^^^^
-~22535~^~2200~^~HOT POCKETS, CROISSANT POCKETS Chicken, Broccoli, and Cheddar Stuffed Sandwich, frozen~^~HOT POCKETS,CROISSANT POCKTS CHIK,BROC&CHDR STUFD SNDWCH,FRZ~^^~Nestle USA, Inc.~^~Y~^^0^^^^^
-~22537~^~2200~^~HOT POCKETS Ham 'N Cheese Stuffed Sandwich, frozen~^~HOT POCKETS HAM 'N CHS STUFFED SNDWCH,FRZ~^^~Nestle USA, Inc.~^~Y~^^0^^^^^
-~22899~^~2200~^~Ravioli, cheese-filled, canned~^~RAVIOLI,CHEESE-FILLED,CND~^^^~Y~^^0^^^^^
-~22900~^~2200~^~Ravioli, meat-filled, with tomato sauce or meat sauce, canned~^~RAVIOLI,MEAT-FILLED,W/ TOMATO SAU OR MEAT SAU,CND~^^^~Y~^^0^^^^^
-~22901~^~2200~^~Tortellini, pasta with cheese filling, fresh-refrigerated, as purchased~^~TORTELLINI,PASTA W/ CHS FILLING,FRESH-REFRIGERATED~^^^~Y~^^0^^6.04^4.00^9.00^4.00
-~22902~^~2100~^~Pizza, meat topping, thick crust, frozen, cooked~^~PIZZA,MEAT TOPPING,THICK CRUST,FRZ,CKD~^^^~Y~^^0^^^^^
-~22903~^~2100~^~Pizza, pepperoni topping, regular crust, frozen, cooked~^~PIZZA,PEPPERONI TOPPING,REG CRUST,FRZ,CKD~^^^~Y~^^0^^^4.00^9.00^4.00
-~22904~^~2200~^~Chili con carne with beans, canned entree~^~CHILI CON CARNE W/BNS,CND ENTREE~^^^~Y~^^0^^^^^
-~22905~^~2200~^~Beef stew, canned entree~^~BEEF STEW,CANNED ENTREE~^^^~Y~^^0^^^^^
-~22906~^~2200~^~Chicken pot pie, frozen entree, prepared~^~CHICKEN POT PIE,FRZ ENTREE,PREP~^^^~Y~^^0^^^^^
-~22908~^~2200~^~Beef, corned beef hash, with potato, canned~^~BEEF,CORNED BF HASH,W/ POTATO,CND~^^~Hormel Foods Corp.~^~Y~^^0^^6.25^^^
-~22910~^~2200~^~Lasagna, cheese, frozen, prepared~^~LASAGNA,CHS,FRZ,PREP~^^^~Y~^^0^^6.25^^^
-~22911~^~2200~^~Chili, no beans, canned entree~^~CHILI,NO BNS,CND ENTREE~^^^~Y~^^0^^^^^
-~22912~^~2200~^~Spaghetti, with meatballs in tomato sauce, canned~^~SPAGHETTI,W/ MEATBALLS IN TOMATO SAU,CND~^^^~Y~^^0^^6.25^^^
-~22914~^~2200~^~Pasta with tomato sauce, no meat, canned~^~PASTA W/ TOMATO SAU,NO MEAT,CND~^^^~Y~^^0^^^^^
-~22915~^~2200~^~Lasagna with meat & sauce, low-fat, frozen entree~^~LASAGNA W/ MEAT & SAU,LOW-FAT,FRZ ENTREE~^^^^^0^^^^^
-~22916~^~2200~^~Lasagna with meat & sauce, frozen entree~^~LASAGNA W/ MEAT & SAU,FRZ ENTREE~^^^~Y~^^0^^^^^
-~22917~^~2200~^~Burrito, beef and bean, frozen~^~BURRITO,BF & BEAN,FRZ~^^^^^0^^^^^
-~22918~^~2200~^~Burrito, bean and cheese, frozen~^~BURRITO, BEAN AND CHEESE, FROZEN~^^^^^0^^^^^
-~22919~^~2200~^~Macaroni and Cheese, canned, microwavable~^~MACARONI & CHS,CND,MICROWAVABLE~^^^^^0^^^^^
-~22928~^~2200~^~Burrito, beef and bean, microwaved~^~BURRITO,BF & BEAN,MICROWAVED~^^^^^0^^^^^
-~22953~^~2200~^~Egg rolls, pork, refrigerated, heated~^~EGG ROLLS,PORK,REFR,HTD~^^^~Y~^^0^^6.25^^^
-~22954~^~2200~^~Egg rolls, chicken, refrigerated, heated~^~EGG ROLLS,CHICK,REFR,HTD~^^^~Y~^^0^^6.25^^^
-~22955~^~2200~^~Egg rolls, vegetable, frozen, prepared~^~EGG ROLLS,VEG,FRZ,PREP~^^^~Y~^^0^^6.25^^^
-~22956~^~2200~^~Lasagna, Vegetable, frozen, baked~^~LASAGNA,VEG,FRZ,BKD~^^^^^0^^^^^
-~22957~^~2200~^~Turkey, stuffing, mashed potatoes w/gravy, assorted vegetables, frozen, microwaved~^~TKY,STUFFING,MSHD POTATO W/GRAVY,ASSORTED VEG,FRZ,MICROWAVE~^^^~Y~^^0^^^^^
-~22958~^~2200~^~Rice bowl with chicken, frozen entree, prepared (includes fried, teriyaki, and sweet and sour varieties)~^~RICE BOWL W/ CHICK,FRZ ENTREE,PREP~^^^~Y~^^0^^^^^
-~22959~^~2200~^~Macaroni and cheese dinner with dry sauce mix, boxed, uncooked~^~MACARONI & CHS DINNER W/ DRY SAU MIX,BOXED,UNCKD~^^^~Y~^^0^^^^^
-~22960~^~2200~^~Macaroni and cheese, dry mix, prepared with 2% milk and 80% stick margarine from dry mix~^~MAC & CHS,DRY MIX,PREP W/ 2% MILK & 80% STK MARGARINE DRY MX~^^^^^0^^^^^
-~22961~^~2200~^~HOT POCKETS, meatballs & mozzarella stuffed sandwich, frozen~^~HOT POCKETS,MEATBALLS & MOZZARELLA STUFFED SNDWCH,FRZ~^^~Nestle USA, Inc.~^~Y~^^0^^^^^
-~22962~^~2200~^~LEAN POCKETS, Ham N Cheddar~^~LEAN POCKETS,HAM N CHEDDAR~^^~Nestle USA, Inc.~^~Y~^^0^^^^^
-~22963~^~2200~^~Lean Pockets, Meatballs & Mozzarella~^~LEAN POCKETS,MEATBALLS & MOZZARELLA~^^^^^0^^^^^
-~22969~^~2200~^~Chili with beans, microwavable bowls~^~CHILI W/ BNS,MICROWAVABLE BOWLS~^^^^^0^^^^^
-~22970~^~2200~^~Macaroni and cheese, frozen entree~^~MACARONI & CHS,FRZ ENTREE~^^^^^0^^^^^
-~22971~^~2200~^~Potato salad with egg~^~POTATO SALAD W/ EGG~^^^~Y~^^0^^^^^
-~22972~^~2200~^~Pulled pork in barbecue sauce~^~PULLED PORK IN BARBECUE SAU~^^^^^0^^^^^
-~22973~^~2200~^~Corn dogs, frozen, prepared~^~CORN DOGS,FRZ,PREP~^^^~Y~^^0^^^^^
-~22974~^~2200~^~Chicken, nuggets, dark and white meat, precooked, frozen, not reheated~^~CHICKEN,NUGGETS,DK & WHITE MEAT,PRECKD,FRZ,NOT REHTD~^^^~Y~^^0^^^^^
-~22975~^~2200~^~Chicken, nuggets, white meat, precooked, frozen, not reheated~^~CHICKEN,NUGGETS,WHITE MEAT,PRECKD,FRZ,NOT REHTD~^^^^^0^^^^^
-~22976~^~2200~^~Ravioli, cheese with tomato sauce, frozen, not prepared, includes regular and light entrees~^~RAVIOLI,CHS W/ TOMATO SAU,FRZ,NOT PREP,INCL REG & LT ENTREES~^^^~Y~^^0^^^^^
-~22977~^~2200~^~Lasagna with meat sauce, frozen, prepared~^~LASAGNA W/ MEAT SAU,FRZ,PREP~^^^~Y~^^0^^6.25^^^
-~22978~^~2200~^~Chicken tenders, breaded, frozen, prepared~^~CHICKEN TENDERS,BREADED,FRZ,PREP~^^^~Y~^^0^^^^^
-~22998~^~2200~^~RICE-A-RONI, chicken flavor, unprepared~^~RICE-A-RONI,CHICK FLAVOR,UNPREP~^^^~Y~^^0^^^^^
-~22999~^~2200~^~Rice and vermicelli mix, chicken flavor, prepared with 80% margarine~^~RICE & VERMICELLI MIX,CHICK FLAVOR,PREP W/ 80% MARGARINE~^^^^^0^^^^^
-~23000~^~1300~^~Beef, shoulder pot roast or steak, boneless, separable lean and fat, trimmed to 0" fat, all grades, raw~^~BEEF,SHLDR POT RST OR STK,BNLS,LN & FAT,0" FAT,ALL GRDS,R~^~URMIS #1133, URMIS #1132~^^^~Connective tissue 6%~^6^^6.25^^^
-~23001~^~1300~^~Beef, short loin, porterhouse steak, separable lean and fat, trimmed to 1/8" fat, all grades, raw~^~BEEF,SHRT LOIN,PRTRHS STEAK,LN&FAT,1/8"FAT,ALL GRDS,RAW~^~Porterhouse steak~^^^~Bone and connective tissue 23%~^23^^6.25^4.27^9.02^3.87
-~23002~^~1300~^~Beef, short loin, porterhouse steak, separable lean and fat, trimmed to 1/8" fat, all grades, cooked, grilled~^~BEEF,SHRT LN,PRTRHS STK,LN & FAT,1/8" FAT,ALL GRDS,CKD,GRLLD~^~Porterhouse steak~^^^~Bone and connective tissue 26%~^26^^6.25^4.27^9.02^3.87
-~23003~^~1300~^~Beef, short loin, porterhouse steak, separable lean and fat, trimmed to 1/8" fat, select, raw~^~BEEF,SHRT LOIN,PRTRHS STEAK,LN&FAT,1/8"FAT,SEL,RAW~^~URMIS # 1330, Porterhouse steak~^^^~Bone and connective tissue 24%~^24^^6.25^4.27^9.02^3.87
-~23004~^~1300~^~Beef, short loin, porterhouse steak, separable lean and fat, trimmed to 1/8" fat, select, cooked, grilled~^~BEEF,SHRT LOIN,PRTRHS STK,L & F,1/8" F,SEL,CKD,GRILLED~^~URMIS # 1330, Porterhouse steak~^^^~Bone and connective tissue 30%~^30^^6.25^4.27^9.02^3.87
-~23005~^~1300~^~Beef, short loin, t-bone steak, separable lean and fat, trimmed to 1/8" fat, all grades, raw~^~BEEF,SHRT LOIN,T-BONE STEAK,LN&FAT,1/8"FAT,ALL GRDS,RAW~^~T-Bone Steak~^^^~Bone and connective tissue 25%~^25^^6.25^4.27^9.02^3.87
-~23006~^~1300~^~Beef, short loin, t-bone steak, separable lean and fat, trimmed to 1/8" fat, all grades, cooked, grilled~^~BEEF,SHRT LN,T-BNE STEK,LN & FAT,1/8" FAT,ALL GRDS,CKD,GRLLD~^~T-Bone Steak~^^^~Bone and connective tissue 30%~^30^^6.25^4.27^9.02^3.87
-~23007~^~1300~^~Beef, short loin, t-bone steak, separable lean and fat, trimmed to 1/8" fat, select, raw~^~BEEF,SHRT LOIN,T-BONE STEAK,LN&FAT,1/8"FAT,SEL,RAW~^~URMIS # 1369, T-Bone Steak~^^^~Bone and connective tissue~^26^^6.25^4.27^9.02^3.87
-~23008~^~1300~^~Beef, short loin, t-bone steak, separable lean and fat, trimmed to 1/8" fat, select, cooked, grilled~^~BEEF,SHRT LOIN,T-BONE STEAK,LN & FAT,1/8" FAT,SEL,CKD,GRLLD~^~URMIS # 1369, T-Bone Steak~^^^~Bone and connective tissue 32%~^32^^6.25^4.27^9.02^3.87
-~23030~^~1300~^~Beef, round, knuckle, tip side, steak, separable lean and fat, trimmed to 0" fat, choice, raw~^~BEEF,RND,KNUCKLE,TIP SIDE,STEAK,LN & FAT,0" FAT,CHOIC,RAW~^~URMIS #2358, Beef Value Cut, Sirloin Tip Steak, Vastas Lateralis~^^^^0^^6.25^4.27^9.02^3.87
-~23031~^~1300~^~Beef, round, knuckle, tip side, steak, separable lean and fat, trimmed to 0" fat, choice, cooked, grilled~^~BF,RND,KNUCKLE,TIP SIDE,STEAK,LN & FAT,0" FAT,CH,CKD,GRILLED~^~URMIS #2358, Beef Value Cut, Sirloin Tip Steak, Vastas Lateralis~^^^^0^^6.25^4.27^9.02^3.87
-~23032~^~1300~^~Beef, round, knuckle, tip side, steak, separable lean and fat , trimmed to 0" fat, select, raw~^~BEEF,RND,KNUCKLE,TIP SIDE,STEAK,LN & FAT 0" FAT,SEL,RAW~^~URMIS #1543, Beef Value Cut, Sirloin Tip Steak, Vastas Lateralis~^^^^0^^6.25^4.27^9.02^3.87
-~23033~^~1300~^~Beef, round, knuckle, tip side, steak, separable lean and fat, trimmed to 0" fat, select, cooked, grilled~^~BF,RND,KNUCKLE,TIP SIDE,STEAK,LN & FAT,0" FAT,SE,CKD,GRILLED~^~URMIS #1543, Beef Value Cut, Sirloin Tip Steak, Vastas Lateralis~^^^^0^^6.25^4.27^9.02^3.87
-~23034~^~1300~^~Beef, chuck, shoulder clod, shoulder tender, medallion, separable lean and fat, trimmed to 0" fat, choice, raw~^~BF,CHK,CLOD,SHLDR TENDER,MEDALLION,LN & FAT,0" FAT,CHOIC,RAW~^~URMIS #1979 or #1845, Beef Value Cut, Tender Medallions, Teres Major~^^^^0^^6.25^4.27^9.02^3.87
-~23035~^~1300~^~Beef, chuck, shoulder clod, shoulder tender, medallion, separable lean and fat, trimmed to 0" fat, choice, cooked, grilled~^~BF,CHK,CLOD,SHDR TNDR,MED,LN & FAT,0" FAT,CH,CKD,GRILLED~^~URMIS #1979 or #1845, Beef Value Cut, Tender Medallions, Teres Major~^^^^0^^6.25^4.27^9.02^3.87
-~23036~^~1300~^~Beef, chuck, shoulder clod, shoulder tender, medallion, separable lean and fat, trimmed to 0" fat, select, raw~^~BF,CHK,CLOD,SHLDR TENDER,MEDALLION,LN & FAT,0" FAT,SEL,RAW~^~URMIS #1164 or #1030, Beef Value Cut, Tender Medallions, Teres Major~^^^^0^^6.25^4.27^9.02^3.87
-~23037~^~1300~^~Beef, chuck, shoulder clod, shoulder top and center steaks, separable lean and fat, trimmed to 0" fat, choice, raw~^~BEEF,CHUCK,SHLDR CLOD,TOP & CNTR ,STK,LN & FAT,0" FAT,CH,RAW~^~URMIS #1977, Ranch Cut Steak, Beef Value Cut, Center Cut Steak, Triceps Brachii~^^^^0^^6.25^4.27^9.02^3.87
-~23038~^~1300~^~Beef, chuck, shoulder clod, shoulder top and center steaks, separable lean and fat, trimmed to 0" fat, choice, cooked, grilled~^~BF,CHK,SHLDR CLOD,TOP & CNTR,STK,LN & FAT,0" FAT,CH,CKD,GRLD~^~URMIS #1977, Ranch Cut Steak, Beef Value Cut, Center Cut Steak, Triceps Brachii~^^^^0^^6.25^4.27^9.02^3.87
-~23039~^~1300~^~Beef, chuck, shoulder clod, shoulder top and center steaks, separable lean and fat, trimmed to 0" fat, select, raw~^~BF,CHUCK,SHLDR CLOD, TOP & CNTR,STK,LN & FAT,0" FAT,SEL,RAW~^~URMIS #1162, Ranch Cut Steak, Beef Value Cut, Center Cut Steak, Triceps Brachii~^^^^0^^6.25^4.27^9.02^3.87
-~23040~^~1300~^~Beef, chuck, shoulder clod, shoulder top and center steaks, separable lean and fat, trimmed to 0" fat, select, cooked, grilled~^~BF,CHK, CLOD,TOP & CNTR,STK,LN & FAT,0" FAT,SEL,CKD,GRLD~^~URMIS #1162, Ranch Cut Steak, Beef Value Cut, Center Cut Steak, Triceps Brachii~^^^^0^^6.25^4.27^9.02^3.87
-~23041~^~1300~^~Beef, chuck, shoulder clod, top blade, steak, separable lean and fat, trimmed to 0" fat, choice, raw~^~BF,CHK,SHLDR CLOD,TOP BLADE,STEAK,LN & FAT,0" FAT,CHOIC,RAW~^~URMIS #1981, Beef Value Cut, Flat Iron Steak, Infraspinatus~^^^^0^^6.25^4.27^9.02^3.87
-~23042~^~1300~^~Beef, chuck, shoulder clod, top blade, steak, separable lean and fat, trimmed to 0" fat, choice, cooked, grilled~^~BF,CHK,CLOD,TOP BLADE,STEAK,LN & FAT,0" FAT,CH,CKD,GRILLED~^~URMIS #1981, Beef Value Cut, Flat Iron Steak, Infraspinatus~^^^^0^^6.25^4.27^9.02^3.87
-~23043~^~1300~^~Beef, chuck, shoulder clod, top blade, steak, separable lean and fat, trimmed to 0" fat, select, raw~^~BF,CHUCK,SHLDR CLOD,TOP BLADE,STEAK,LN & FAT,0" FAT,SEL,RAW~^~URMIS #1166, Beef Value Cut, Flat Iron Steak, Infraspinatus~^^^^0^^6.25^4.27^9.02^3.87
-~23044~^~1300~^~Beef, chuck, shoulder clod, top blade, steak, separable lean and fat, trimmed to 0" fat, select, cooked, grilled~^~BF,CHK,CLOD,TOP BLADE,STEAK,LN & FAT,0" FAT,SEL,CKD,GRILLED~^~URMIS #1166, Beef Value Cut, Flat Iron Steak, Infraspinatus~^^^^0^^6.25^4.27^9.02^3.87
-~23045~^~1300~^~Beef, round, knuckle, tip center, steak, separable lean and fat, trimmed to 0" fat, choice, raw~^~BEEF,RND,KNUCKLE,TIP CNTR,STEAK,LN & FAT,0" FAT,CHOIC,RAW~^~URMIS #2365, Beef Value Cut, Sirloin Tip Steak, Rectus Femoris~^^^^0^^6.24^4.27^9.02^3.87
-~23046~^~1300~^~Beef, round, knuckle, tip center, steak, separable lean and fat, trimmed to 0" fat, choice, cooked, grilled~^~BF,RND,KNUCKLE,TIP CNTR,STK,LN & FAT,0" FAT,CHOIC,CKD,GRLD~^~URMIS #2365, Beef Value Cut, Sirloin Tip Steak, Rectus Femoris~^^^^0^^6.25^4.27^9.02^3.87
-~23047~^~1300~^~Beef, round, knuckle, tip center, steak, separable lean and fat, trimmed to 0" fat, select, raw~^~BEEF,RND,KNUCKLE,TIP CNTR,STEAK,LN & FAT,0" FAT,SEL,RAW~^~URMIS #1550, Beef Value Cut, Sirloin Tip Steak, Rectus Femoris~^^^^0^^6.25^4.27^9.02^3.87
-~23048~^~1300~^~Beef, round, knuckle, tip center, steak, separable lean and fat, trimmed to 0" fat, select, cooked, grilled~^~BF,RND,KNUCKLE,TIP CNTR,STEAK,LN & FAT,0" FAT,SE,CKD,GRILLED~^~URMIS #1550, Beef Value Cut, Sirloin Tip Steak, Rectus Femoris~^^^^0^^6.25^4.27^9.02^3.87
-~23049~^~1300~^~Beef, round, outside round, bottom round, steak, separable lean and fat, trimmed to 0" fat, choice, raw~^~BF,RND,OUTSIDE RND,BTTM RND,STEAK,LN & FAT,0" FAT,CHOIC,RAW~^~URMIS #2277, Western Griller Steak, Beef Value Cut, London Broil, Biceps Femoris~^^^^0^^6.25^4.27^9.02^3.87
-~23050~^~1300~^~Beef, round, outside round, bottom round, steak, separable lean and fat, trimmed to 0" fat, choice, cooked, grilled~^~BF,RND,OUT RND,BTTM RND,STK,LN & FAT,0" FAT,CH,CKD,GRILLED~^~URMIS #2277, Western Griller Steak, Beef Value Cut, London Broil, Biceps Femoris~^^^^0^^6.25^4.27^9.02^3.87
-~23051~^~1300~^~Beef, round, outside round, bottom round, steak, separable lean and fat, trimmed to 0" fat, select, raw~^~BEEF,RND,OUTSIDE RND,BTTM RND,STEAK,LN & FAT,0" FAT,SEL,RAW~^~URMIS #1462, Western Griller Steak, Beef Value Cut, London Broil, Biceps Femoris~^^^^0^^6.25^4.27^9.02^3.87
-~23052~^~1300~^~Beef, round, outside round, bottom round, steak, separable lean and fat, trimmed to 0" fat, select, cooked, grilled~^~BEEF,RND,OUT RND,BTTM RND,STK,LN & FAT,0" FAT,SEL,CKD,GRLD~^~URMIS #1462, Western Griller Steak, Beef Value Cut, London Broil, Biceps Femoris~^^^^0^^6.25^4.27^9.02^3.87
-~23053~^~1300~^~Beef, chuck, shoulder clod, shoulder tender, medallion, separable lean and fat, trimmed to 0" fat, all grades, raw~^~BF,CHK,CLD,SHLDR TNDR,MEDALLION,LN & FAT,0" FAT,ALL GRDS,RAW~^~Tender Medallions, Beef Value Cut, Teres Major~^^^^0^^6.25^4.27^9.02^3.87
-~23054~^~1300~^~Beef, chuck, shoulder clod, shoulder tender, medallion, separable lean and fat, trimmed to 0" fat, all grades, cooked, grilled~^~BF,CHK,CLD,SHDR TNDR,MED,LN & FAT,0" FAT,ALL GRDS,CK,GRLD~^~Tender Medallions, Beef Value Cut, Teres Major~^^^^0^^6.25^4.27^9.02^3.87
-~23055~^~1300~^~Beef, round, knuckle, tip side, steak, separable lean and fat, trimmed to 0" fat, all grades, raw~^~BEEF,RND,KNUCKLE,TIP SIDE,STEAK,LN & FAT,0" FAT,ALL GRDS,RAW~^~Sirloin Tip Steak, Beef Value Cut, Vastas Lateralis~^^^^0^^6.25^4.27^9.02^3.87
-~23056~^~1300~^~Beef, round, knuckle, tip side, steak, separable lean and fat, trimmed to 0" fat, all grades, cooked, grilled~^~BF,RND,KNUCK,TIP SIDE,STK,LN & FAT,0" FAT,ALL GRDS,CKD,GRLD~^~Sirloin Tip Steak, Beef Value Cut, Vastas Lateralis~^^^^0^^6.25^4.27^9.02^3.87
-~23057~^~1300~^~Beef, chuck, shoulder clod, shoulder top and center steaks, separable lean and fat, trimmed to 0" fat, all grades, raw~^~BF,CHUCK,CLOD,TOP & CNTR,STEAK,LN & FAT,0" FAT,ALL GRDS,RAW~^~Center Cut Steak, Triceps Brachii, Beef Value Cut, Ranch Cut Steak~^^^^0^^6.25^4.27^9.02^3.87
-~23058~^~1300~^~Beef, chuck, shoulder clod, shoulder top and center steaks, separable lean and fat, trimmed to 0" fat, all grades, cooked, grilled~^~BEEF,CHCK,CLOD,SHLDR TOP&CNTR STKS,LN & FT,0",ALL GRDS,GRLD~^~Center Cut Steak, Triceps Brachii, Beef Value Cut, Ranch Cut Steak~^^^^0^^6.25^4.27^9.02^3.87
-~23059~^~1300~^~Beef, chuck, shoulder clod, top blade, steak, separable lean and fat, trimmed to 0" fat, all grades, raw~^~BEEF,CHUCK,CLOD,TOP BLADE,STEAK,LN & FAT,0" FAT,ALL GRDS,RAW~^~Flat Iron Steak, Beef Value Cut, Infraspinatus~^^^^0^^6.25^4.27^9.02^3.87
-~23060~^~1300~^~Beef, chuck, shoulder clod, top blade, steak, separable lean and fat, trimmed to 0" fat, all grades, cooked, grilled~^~BF,CHUCK,CLOD,TOP BLADE,STK,LN & FAT,0" FAT,ALL,CKD,GRLD~^~Flat Iron Steak, Beef Value Cut, Infraspinatus~^^^^0^^6.25^4.27^9.02^3.87
-~23061~^~1300~^~Beef, round, knuckle, tip center, steak, separable lean and fat, trimmed to 0" fat, all grades, raw~^~BEEF,RND,KNUCKLE,TIP CNTR,STEAK,LN & FAT,0" FAT,ALL GRDS,RAW~^~Sirloin Tip Steak, Beef Value Cut, Rectus Femoris~^^^^0^^6.25^4.27^9.02^3.87
-~23062~^~1300~^~Beef, round, knuckle, tip center, steak, separable lean and fat, trimmed to 0" fat, all grades, cooked, grilled~^~BF,RND,KNUCKLE,TIP CNTR,STK,LN & FAT,0" FAT,ALL,CKD,GRLD~^~Sirloin Tip Steak, Beef Value Cut, Rectus Femoris~^^^^0^^6.25^4.27^9.02^3.87
-~23063~^~1300~^~Beef, round, outside round, bottom round, steak, separable lean and fat, trimmed to 0" fat, all grades, raw~^~BF,RND,OUTSIDE RND,BTTM RND,STEAK,LN & FAT,0" FAT,ALL,RAW~^~London Broil, Biceps Femoris, Beef Value Cut, Western Griller Steak~^^^^0^^6.25^4.27^9.02^3.87
-~23064~^~1300~^~Beef, round, outside round, bottom round, steak, separable lean and fat, trimmed to 0" fat, all grades, cooked, grilled~^~BF,RND,OUT RND,BTTM RND,STK,LN & FAT,0" FAT,ALL GRDS,CK,GRLD~^~London Broil, Biceps Femoris, Beef Value Cut, Western Griller Steak~^^^^0^^6.25^4.27^9.02^3.87
-~23065~^~1300~^~Beef, chuck, shoulder clod, shoulder tender, medallion, separable lean and fat, trimmed to 0" fat, select, cooked, grilled~^~BF,CHK, CLOD,SHLDR TENDER,MED,LN & FAT,0" FAT,SE,CKD,GRILLED~^~URMIS #1164 or #1030, Teres Major, Beef Value Cut, Tender Medallions~^^^^0^^6.25^4.27^9.02^3.87
-~23066~^~1300~^~Beef, chuck, short ribs, boneless, separable lean only, trimmed to 0" fat, choice, raw~^~BEEF,CHUCK,SHRT RIBS,BNLESS,LN,0" FAT,CHOIC,RAW~^~Beef, Chuck, Short Ribs, URMIS #1127~^^^~Connective tissue 7%, seam fat 19%~^26^^6.25^^^
-~23067~^~1300~^~Beef, chuck, short ribs, boneless, separable lean only, trimmed to 0" fat, select, raw~^~BEEF,CHUCK,SHRT RIBS,BNLESS,LN,0" FAT,SEL,RAW~^~Beef, Chuck, Short Ribs, URMIS #1127~^^^~Connective tissue 6%, seam fat 19%~^25^^6.25^^^
-~23068~^~1300~^~Beef, chuck, short ribs, boneless, separable lean only, trimmed to 0" fat, all grades, raw~^~BEEF,CHUCK,SHRT RIBS,BNLESS,LN,0" FAT,ALL GRDS,RAW~^~Beef, Chuck, Short Ribs, URMIS #1127~^^^~Connective tissue 7%, seam fat 19%~^26^^6.25^^^
-~23069~^~1300~^~Beef, chuck eye Country-Style ribs, boneless, separable lean only, trimmed to 0" fat, choice, cooked, braised~^~BEEF,CHUCK EYE COUNTRY-STYLE RIBS,BNLESS,LN,0" FAT,CHOIC,CKD~^~Beef, Chuck, Bnls Country Style Beef Ribs, URMIS #1096~^^^~Connective tissue 9%, seam fat 18%~^27^^6.25^^^
-~23070~^~1300~^~Beef, chuck eye Country-Style ribs, boneless, separable lean only, trimmed to 0" fat, select, cooked, braised~^~BEEF,CHUCK EYE COUNTRY-STYLE RIBS,BNLESS,LN,0" FAT,SEL,CKD,B~^~Beef, Chuck, Bnls Country Style Beef Ribs, URMIS #1096~^^^~Connective tissue 8%, seam fat 16%~^24^^6.25^^^
-~23071~^~1300~^~Beef, chuck eye Country-Style ribs, boneless, separable lean only, trimmed to 0" fat, all grades, cooked, braised~^~BF,CHK EYE CNTRY-STL RIBS,BNLS,LN,0" FAT,ALL GRDS, CKD, BRSD~^~Beef, Chuck, Bnls, Country Style Beef Ribs, URMIS #1096~^^^~Connective tissue 9%, seam fat 17%~^26^^6.25^^^
-~23072~^~1300~^~Beef, chuck eye Country-Style ribs, boneless, separable lean only, trimmed to 0" fat, choice, raw~^~BEEF,CHUCK EYE COUNTRY-STYLE RIBS,BNLESS,LN,0" FAT,CHOIC,RAW~^~Beef, Chuck, Bnls Country Style Beef Ribs, URMIS #1096~^^^~Connective tissue 8%, seam fat 14%~^22^^6.25^^^
-~23073~^~1300~^~Beef, chuck eye Country-Style ribs, boneless, separable lean only, trimmed to 0" fat, select, raw~^~BEEF,CHUCK EYE COUNTRY-STYLE RIBS,BNLESS,LN,0" FAT,SEL,RAW~^~Beef, Chuck, Bnls Country Style Beef Ribs, URMIS #1096~^^^~Connective tissue 10%, seam fat 13%~^23^^6.25^^^
-~23074~^~1300~^~Beef, chuck eye Country-Style ribs, boneless, separable lean only, trimmed to 0" fat, all grades, raw~^~BEEF,CHK EYE COUNTRY-STYLE RIBS,BNLS,LN,0" FAT,ALL GRDS, RAW~^~Beef, Chuck, Bnls Country Style Beef Ribs, URMIS #1096~^^^~Connective tissue 9%, seam fat 13%~^22^^6.25^^^
-~23075~^~1300~^~Beef, chuck eye steak, boneless, separable lean only, trimmed to 0" fat, choice, cooked, grilled~^~BEEF,CHUCK EYE STEAK,BNLESS,LN,0" FAT,CHOIC,CKD,GRILLED~^~Beef, Chuck, Chuck Eye Steaks, URMIS #1102~^^^~Connective tissue 6%, seam fat 18%~^24^^6.25^^^
-~23076~^~1300~^~Beef, chuck eye steak, boneless, separable lean only, trimmed to 0" fat, select, cooked, grilled~^~BEEF,CHUCK EYE STEAK,BNLESS,LN,0" FAT,SEL,CKD,GRILLED~^~Beef, Chuck, Chuck Eye Steaks, URMIS #1102~^^^~Connective tissue 5%, seam fat 17%~^22^^6.25^^^
-~23077~^~1300~^~Beef, chuck eye steak, boneless, separable lean only, trimmed to 0" fat, all grades, cooked, grilled~^~BEEF,CHUCK EYE STEAK,BNLESS,LN,0" FAT,ALL GRDS,CKD,GRILLED~^~Beef, Chuck, Chuch Eye Steaks, URMIS #1102~^^^~Connective tissue 5%, seam fat 18%~^23^^6.25^^^
-~23078~^~1300~^~Beef, chuck eye steak, boneless, separable lean only, trimmed to 0" fat, choice, raw~^~BEEF,CHUCK EYE STEAK,BNLESS,LN,0" FAT,CHOIC,RAW~^~Beef, Chuck, ChuckEye Steaks, URMIS #1102~^^^~Connective tissue 10%, seam fat 17%~^27^^6.25^^^
-~23079~^~1300~^~Beef, chuck eye steak, boneless, separable lean only, trimmed to 0" fat, select, raw~^~BEEF,CHUCK EYE STEAK,BNLESS,LN,0" FAT,SEL,RAW~^~Beef, Chuck, Chuck Eye Steaks, URMIS #1102~^^^~Connective tissue 9%, seam fat 17%~^26^^6.25^^^
-~23080~^~1300~^~Beef, chuck eye steak, boneless, separable lean only, trimmed to 0" fat, all grades, raw~^~BEEF,CHUCK EYE STEAK,BNLESS,LN,0" FAT,ALL GRDS,RAW~^~Beef, Chuck, Chuck Eye Steaks, URMIS #1102~^^^~Connective tissue 10%, seam fat 17%~^27^^6.25^^^
-~23081~^~1300~^~Beef, shoulder pot roast, boneless, separable lean only, trimmed to 0" fat, choice, cooked, braised~^~BEEF,SHLDR POT RST,BNLESS,LN,0" FAT,CHOIC,CKD,BRSD~^~Beef, Chuck, Clod (Shoulder) Roast, URMIS #1132~^^^~Connective tissue 8%, seam fat 2%~^10^^6.25^^^
-~23082~^~1300~^~Beef, shoulder pot roast, boneless, separable lean only, trimmed to 0" fat, select, cooked, braised~^~BEEF,SHLDR POT RST,BNLESS,LN,0" FAT,SEL,CKD,BRSD~^~Beef, Chuck, Clod (Shoulder) Roast, URMIS #1132~^^^~Connective tissue 7%, seam fat 3%~^10^^6.25^^^
-~23083~^~1300~^~Beef, shoulder pot roast, boneless, separable lean only, trimmed to 0" fat, all grades, cooked, braised~^~BEEF,SHLDR POT RST,BNLESS,LN,0" FAT,ALL GRDS,CKD,BRSD~^~Beef, Chuck, Clod (Shoulder) Roast, URMIS #1132~^^^~Connective tissue 8%, seam fat 2%~^10^^6.25^^^
-~23084~^~1300~^~Beef, chuck, mock tender steak, boneless, separable lean only, trimmed to 0" fat, choice, cooked, braised~^~BEEF,CHUCK,MOCK TENDER STEAK,BNLESS,LN,0" FAT,CHOIC,CKD,BRSD~^~Beef, Chuck, Mock Tender Steak, URMIS #1116~^^^~Connective tissue 6%, seam fat 9%~^15^^6.25^^^
-~23085~^~1300~^~Beef, chuck, mock tender steak, boneless, separable lean only, trimmed to 0" fat, select, cooked, braised~^~BEEF,CHUCK,MOCK TENDER STEAK,BNLESS,LN,0" FAT,SEL,CKD,BRSD~^~Beef, Chuck, Mock Tender Steak, URMIS #1116~^^^~Connective tissue 5%, seam fat 9%~^14^^6.25^^^
-~23086~^~1300~^~Beef, chuck, mock tender steak, boneless, separable lean only, trimmed to 0" fat, all grades, cooked, braised~^~BEEF,CHK,MOCK TENDER STK,BNLS,LN,0" FAT,ALL GRDS,CKD,BRSD~^~Beef, Chuck, Mock Tender Steak, URMIS #1116~^^^~Connective tissue 6%, seam fat 8%~^14^^6.25^^^
-~23087~^~1300~^~Beef, chuck, mock tender steak, boneless, separable lean only, trimmed to 0" fat, choice, raw~^~BEEF,CHUCK,MOCK TENDER STEAK,BNLESS,LN,0" FAT,CHOIC,RAW~^~Beef, Chuck, Mock Tender Steak, URMIS #1116~^^^~Connective tissue 5%, seam fat 1%~^6^^6.25^^^
-~23088~^~1300~^~Beef, chuck, mock tender steak, boneless, separable lean only, trimmed to 0" fat, select, raw~^~BEEF,CHUCK,MOCK TENDER STEAK,BNLESS,LN,0" FAT,SEL,RAW~^~Beef, Chuck, Mock Tender Steak, URMIS #1116~^^^~Connective tissue 4%, seam fat 1%~^5^^6.25^^^
-~23089~^~1300~^~Beef, chuck, mock tender steak, boneless, separable lean only, trimmed to 0" fat, all grades, raw~^~BEEF,CHUCK,MOCK TENDER STEAK,BNLESS,LN,0" FAT,ALL GRDS,RAW~^~Beef, Chuck, Mock Tender Steak, URMIS #1116~^^^~Connective tissue 4%, seam fat 1%~^5^^6.25^^^
-~23090~^~1300~^~Beef, chuck for stew, separable lean and fat, all grades, cooked, braised~^~BEEF,CHUCK FOR STEW,LN & FAT,ALL GRDS,CKD,BRSD~^~Beef, Chuck, Beef for Stew, URMIS #1100~^^^^0^^6.25^^^
-~23091~^~1300~^~Beef, chuck for stew, separable lean and fat, select, cooked, braised~^~BEEF,CHUCK FOR STEW,LN & FAT,SEL,CKD,BRSD~^~Beef, Chuck, Beef for Stew, URMIS #1100~^^^^0^^6.25^^^
-~23092~^~1300~^~Beef, chuck for stew, separable lean and fat, choice, cooked, braised~^~BEEF,CHUCK FOR STEW,LN & FAT,CHOIC,CKD,BRSD~^~Beef, Chuck, Beef for Stew, URMIS #1100~^^^^0^^6.25^^^
-~23093~^~1300~^~Beef, chuck for stew, separable lean and fat, all grades, raw~^~BEEF,CHUCK FOR STEW,LN & FAT,ALL GRDS,RAW~^~Beef, Chuck, Beef for Stew, URMIS #1100~^^^^0^^6.25^^^
-~23094~^~1300~^~Beef, chuck for stew, separable lean and fat, select, raw~^~BEEF,CHUCK FOR STEW,LN & FAT,SEL,RAW~^~Beef, Chuck, Beef for Stew, URMIS #1100~^^^^0^^6.25^^^
-~23095~^~1300~^~Beef, chuck for stew, separable lean and fat, choice, raw~^~BEEF,CHUCK FOR STEW,LN & FAT,CHOIC,RAW~^~URMIS #110~^^^^0^^6.25^^^
-~23096~^~1300~^~Beef, chuck, under blade steak, boneless, separable lean only, trimmed to 0" fat, choice, cooked, braised~^~BEEF,CHUCK,UNDER BLADE STEAK,BNLESS,LN,0" FAT,CHOIC,CKD,BRSD~^~Beef, Chuck, Under Blade Steak, URMIS #1158~^^^~Connective tissue 5%, seam fat 17%~^22^^6.25^^^
-~23097~^~1300~^~Beef, chuck, under blade steak, boneless, separable lean only, trimmed to 0" fat, select, cooked, braised~^~BEEF,CHUCK,UNDER BLADE STEAK,BNLESS,LN,0" FAT,SEL,CKD,BRSD~^~Beef, Chuck, Under Blade Steak, URMIS #1158~^^^~Connective tissue 4%, seam fat 13%~^17^^6.25^^^
-~23098~^~1300~^~Beef, chuck, under blade steak, boneless, separable lean only, trimmed to 0" fat, all grades, cooked, braised~^~BEEF,CHUCK,UND BL STEAK,BNLS,LN,0" FAT,ALL GRDS,CKD,BRSD~^~Beef, Chuck, Under Blade Steak, URMIS #1158~^^^~Connective tissue 5%, seam fat 15%~^20^^6.25^^^
-~23099~^~1300~^~Beef, chuck, under blade pot roast, boneless, separable lean and fat, trimmed to 0" fat, all grades, cooked, braised~^~BEEF,CHK,UND BLD, POT RST,BNL,LN & FAT,0" FAT,ALL GR,CKD,BR~^~Beef Chuck Under Blade Pot Roast, URMIS #1151~^^^~Connective tissue 4%~^4^^6.25^^^
-~23100~^~1300~^~Beef, rib eye steak, boneless, lip-on, separable lean only, trimmed to 1/8" fat, all grades, cooked, grilled~^~BEEF,RIB EYE STK,BNLES,LIP-ON,LN,1/8" FAT,ALL GRDS,CKD,GRLD~^^^~Y~^~connective tissue 6%, Separable fat 20%~^26^^6.25^^^
-~23101~^~1300~^~Beef, rib eye roast, bone-in, lip-on, separable lean only, trimmed to 1/8" fat, choice, cooked, roasted~^~BEEF,RIB EYE RST,BONE-IN,LIP-ON,LN,1/8" FAT,CHOIC,CKD,RSTD~^~URMIS #2008~^^^~Bone and connective tissue 16%, separable fat 16%~^32^^6.25^^^
-~23102~^~1300~^~Beef, chuck, under blade pot roast or steak, boneless, separable lean and fat, trimmed to 0" fat, all grades, raw~^~BEEF,CHK,UND BL POT RST/STK,BNL,LN & FT,0" FT, All GR, raw~^~URMIS #1151/1158, Beef Chuck, Under Blade Pot Roast/Steak~^^^~Connective tissue 6%~^6^^6.25^^^
-~23103~^~1300~^~Beef, chuck, under blade pot roast or steak, boneless, separable lean and fat, trimmed to 0" fat, choice, raw~^~BEEF,CHK,UND BL POT RST OR STK,BNL,LN & FAT,0" FAT, CH, RAW~^~Beef, Chuck, Under Blade Pot Roast/Steak, URMIS #1151/1158~^^^~Connective tissue 6%~^6^^6.25^^^
-~23104~^~1300~^~Beef, chuck, under blade pot roast or steak, boneless, separable lean and fat, trimmed to 0" fat, select, raw~^~BEEF,CHK,UND BL POT RST/STEAK,BNL,LN & FAT,0" FAT, SEL, RAW~^~Beef, Chuck, Under Blade Pot Roast/Steak, URMIS #1151/1158~^^^~Connective tissue 6%~^6^^6.25^^^
-~23105~^~1300~^~Beef, chuck, under blade center steak, boneless, Denver Cut, separable lean and fat, trimmed to 0" fat, all grades, cooked, grilled~^~BEEF,CHK,UND BL CNTR STK,BNL,DEN CUT,LN & FAT, ALL GR, CKD~^~Beef, Chuck, Denver Cut (Serratus Ventralis steaks), URMIS #1098~^^^~Connective tissue 1%~^1^^6.25^^^
-~23106~^~1300~^~Beef, chuck, under blade center steak, boneless, Denver Cut, separable lean and fat, trimmed to 0" fat, choice, cooked, grilled~^~BEEF,CHK,UND BLE CNTR STK,BNL,DEN CT,LN&FT, 0" FT,CH,CKD,GLD~^~Beef, Chuck, Denver Cut (Serratus Ventralis steak), URMIS #1098~^^^~Connective tissue 1%~^1^^6.25^^^
-~23107~^~1300~^~Beef, chuck, under blade center steak, boneless, Denver Cut, separable lean and fat, trimmed to 0" fat, select, cooked, grilled~^~BEEF,CHK,UNDBL CNTR STK,BNL,DEN CT,LN&FAT, 0" FT,SEL,CKD,GLD~^~Beef Chuck, Denver Cut (Serratus Ventralis steak), URMIS #1098~^^^~Connective tissue 1%~^1^^6.25^^^
-~23108~^~1300~^~Beef, chuck, under blade center steak, boneless, Denver Cut, separable lean and fat, trimmed to 0" fat, all grades, raw~^~BEEF,CHK,UND BL CNTR STK,BNL,DEN CUT,LN & FT,0"FT,All Gr, RW~^~Beef, Chuck. Denver Cut (Serratus Ventralis steak), URMIS #1098~^^^~Connective tissue 2%~^2^^6.25^^^
-~23109~^~1300~^~Beef, chuck, under blade center steak, boneless, Denver Cut, separable lean and fat, trimmed to 0" fat, choice, raw~^~BEEF,CHK,UNDBLE CNTR STK,BNL,DENR CUT,LN & FAT,0"FAT, CH, RW~^~Beef, Chuck, Denver Cut (Serratus Ventralis steak), URMIS #1098~^^^~Connective tissue 1%~^1^^6.25^^^
-~23110~^~1300~^~Beef, chuck, under blade center steak, boneless, Denver Cut, separable lean and fat, trimmed to 0" fat, select, raw~^~BEEF,CHK,UND BLE CNTR STK,BNL,DEN CUT,LN & FT,0"FT, SEL,RW~^~Beef, Chuck, Denver Cut (Serratus Ventralis steak), URMIS #1098~^^^~Connective tissue 2%~^2^^6.25^^^
-~23111~^~1300~^~Beef, shoulder pot roast or steak, boneless, separable lean and fat, trimmed to 0" fat, choice, raw~^~BEEF,SHLDR POT RST OR STEAK,BNLESS,LN & FAT,0" FAT,CHOIC,RAW~^~URMIS #1133, URMIS #1132~^^^~Connective tissue 6%~^6^^6.25^^^
-~23112~^~1300~^~Beef, shoulder pot roast or steak, boneless, separable lean and fat, trimmed to 0" fat, select, raw~^~BEEF,SHLDR POT RST OR STEAK,BNLESS,LN & FAT,0" FAT,SEL,RAW~^~URMIS #1133, URMIS #1132~^^^~Connective tissue 6%~^6^^6.25^^^
-~23113~^~1300~^~Beef, chuck eye roast, boneless, America's Beef Roast, separable lean and fat, trimmed to 0" fat, all grades, cooked, roasted~^~BEEF,CHK EYE RST,BNLS,A BF RST,LN & FAT,0",ALL GRD,CKD,RSTD~^~URMIS #1095~^^^~Connective tissue 7%~^7^^6.25^^^
-~23114~^~1300~^~Beef, chuck eye roast, boneless, America's Beef Roast, separable lean and fat, trimmed to 0" fat, choice, cooked, roasted~^~BEEF,CHK EYE RST,BNLS,A BF RST,LN & FAT,0",CH,CKD,RSTD~^~URMIS #1095~^^^~Connective tissue 6%~^6^^6.25^^^
-~23115~^~1300~^~Beef, chuck eye roast, boneless, America's Beef Roast, separable lean and fat, trimmed to 0" fat, select, cooked, roasted~^~BEEF,CHCK EYE RST,BNLS,A BF RST,LN & FAT,0",SEL,C,RSTD~^~URMIS #1095~^^^~Connective tissue 7%~^7^^6.25^^^
-~23116~^~1300~^~Beef, chuck, under blade steak, boneless, separable lean and fat, trimmed to 0" fat, all grades, cooked, braised~^~BEEF,CHUCK,UNDER BLADE STEAK,BNLESS,LN & FAT,0" FAT,ALL GRDS~^~Beff, Chuck, Under Blade Steak, URMIS #1158~^^^~Connective tissue 5%~^5^^6.25^^^
-~23117~^~1300~^~Beef, chuck, under blade steak, boneless, separable lean and fat, trimmed to 0" fat, choice, cooked, braised~^~BEEF,CHUCK,UNDER BLADE STEAK,BNLESS,LN & FAT,0" FAT,CHOIC,CK~^~Beef, Chuck, Under Blade Steak, URMIS #1158~^^^~Connective tissue 5%~^5^^6.25^^^
-~23118~^~1300~^~Beef, chuck, under blade steak, boneless, separable lean and fat, trimmed to 0" fat, select, cooked, braised~^~BEEF,CHUCK,UNDER BLADE STEAK,BNLESS,LN & FAT,0" FAT,SEL,CKD,~^~Beff, Chuck, Under Blade Steak, URMIS #1158~^^^~Connective tissue 4%~^4^^6.25^^^
-~23119~^~1300~^~Beef, chuck, mock tender steak, boneless, separable lean and fat, trimmed to 0" fat, all grades, cooked, braised~^~BEEF,CHK,MOCK TNDR STK,BNL,LN & FAT,0" FAT,ALL GRDS, CKD~^~Beef, Chuck, Mock Tender Steak, URMIS #1116~^^^~Connective tissue 6%~^6^^6.25^^^
-~23120~^~1300~^~Beef, chuck, mock tender steak, boneless, separable lean and fat, trimmed to 0" fat, choice, cooked, braised~^~BEEF,CHUCK,MOCK TENDER STEAK,BNLESS,LN & FAT,0" FAT,CHOIC,CK~^~Beef, Chuck, Mock Tender Staek, URMIS #1116~^^^~Connective tissue 6%~^6^^6.25^^^
-~23121~^~1300~^~Beef, chuck, mock tender steak, boneless, separable lean and fat, trimmed to 0" fat, select, cooked, braised~^~BEEF,CHUCK,MOCK TENDER STEAK,BNLESS,LN & FAT,0" FAT,SEL,CKD,~^~Beef, Chuck, Mock Tender Steak, URMIS #1116~^^^~Connective tissue 5%~^5^^6.25^^^
-~23122~^~1300~^~Beef, chuck, mock tender steak, boneless, separable lean and fat, trimmed to 0" fat, all grades, raw~^~BEEF,CHK,MOCK TEN STK,BNL,LN & FAT,0" FAT,ALL GRDS, CKD~^~Beef, Chuck, Mock Tender Steak, URMIS #1116~^^^~Connective tissue 4%~^4^^6.25^^^
-~23123~^~1300~^~Beef, chuck, mock tender steak, boneless, separable lean and fat, trimmed to 0" fat, choice, raw~^~BEEF,CHK,MOCK TENDER STEAK,BNLESS,LN & FAT,0" FAT,CHOIC,RAW~^~Beef, Chuck, Mock Tender Steak, URMIS #1116~^^^~Connective tissue 5%~^5^^6.25^^^
-~23124~^~1300~^~Beef, chuck, mock tender steak, boneless, separable lean and fat, trimmed to 0" fat, select, raw~^~BEEF,CHUCK,MOCK TENDER STEAK,BNLESS,LN & FAT,0" FAT,SEL,RAW~^~Beef, Chuck, Mock Tender Steak, URMIS #1116~^^^~Connective tissue 4%~^4^^6.25^^^
-~23125~^~1300~^~Beef, chuck, short ribs, boneless, separable lean and fat, trimmed to 0" fat, all grades, cooked, braised~^~BEEF,CHUCK,SHRT RIBS,BNLESS,LN & FAT,0" FAT,ALL GRDS,CKD,BRS~^~Beef, Chuck, Short Ribs, URMIS #1127~^^^~Connective tissue 6%~^6^^6.25^^^
-~23126~^~1300~^~Beef, chuck, short ribs, boneless, separable lean and fat, trimmed to 0" fat, choice, cooked, braised~^~BEEF,CHUCK,SHRT RIBS,BNLESS,LN & FAT,0" FAT,CHOIC,CKD,BRSD~^~Beef, Chuck, Short Ribs, URMIS #1127~^^^~Connective tissue 7%~^7^^6.25^^^
-~23127~^~1300~^~Beef, chuck, short ribs, boneless, separable lean and fat, trimmed to 0" fat, select, cooked, braised~^~BEEF,CHUCK,SHRT RIBS,BNLESS,LN & FAT,0" FAT,SEL,CKD,BRSD~^~Beef, Chuck, Short Ribs, URMIS #1127~^^^~Connective tissue 6%~^6^^6.25^^^
-~23128~^~1300~^~Beef, chuck, short ribs, boneless, separable lean and fat, trimmed to 0" fat, all grades, raw~^~BEEF,CHUCK,SHRT RIBS,BNLESS,LN & FAT,0" FAT,ALL GRDS,RAW~^~URMIS #1127~^^^~Connective tissue 7%~^7^^6.25^^^
-~23129~^~1300~^~Beef, chuck, short ribs, boneless, separable lean and fat, trimmed to 0" fat, choice, raw~^~BEEF,CHUCK,SHRT RIBS,BNLESS,LN & FAT,0" FAT,CHOIC,RAW~^~Beef, Chuck, Short Ribs, URMIS #1127~^^^~Connective tissue 7%~^7^^6.25^^^
-~23130~^~1300~^~Beef, chuck, short ribs, boneless, separable lean and fat, trimmed to 0" fat, select, raw~^~BEEF,CHUCK,SHRT RIBS,BNLESS,LN & FAT,0" FAT,SEL,RAW~^~Beef, Chuck, Short Ribs, URMIS #1127~^^^~Connective tissue 6%~^6^^6.25^^^
-~23131~^~1300~^~Beef, shoulder pot roast, boneless, separable lean and fat, trimmed to 0" fat, all grades, cooked, braised~^~BEEF,SHLDR POT RST,BNLESS,LN & FAT,0" FAT,ALL GRDS,CKD,BRSD~^~Beef, Chuck, Clod (Shoulder) Roast, URMIS #1132~^^^~Connective tissue 8%~^8^^6.25^^^
-~23132~^~1300~^~Beef, shoulder pot roast, boneless, separable lean and fat, trimmed to 0" fat, choice, cooked, braised~^~BEEF,SHLDR POT RST,BNLESS,LN & FAT,0" FAT,CHOIC,CKD,BRSD~^~Beef, Chuck, Clod (Shoulder) Roast, URMIS #1132~^^^~Connective tissue 8%~^8^^6.25^^^
-~23133~^~1300~^~Beef, shoulder pot roast, boneless, separable lean and fat, trimmed to 0" fat, select, cooked, braised~^~BEEF,SHLDR POT RST,BNLESS,LN & FAT,0" FAT,SEL,CKD,BRSD~^~Beef, Chuck, Clod (Shoulder) Roast, URMIS #1132~^^^~Connective tissue 7%~^7^^6.25^^^
-~23134~^~1300~^~Beef, chuck eye Country-Style ribs, boneless, separable lean and fat, trimmed to 0" fat, all grades, cooked, braised~^~BEEF,CHK EYE CTRY-STYLE RIBS,BNL,LN & FAT,0" FAT,ALL GR, CKD~^~Beef, Chuck, Bnls Country Style Beef Ribs, URMIS #1096~^^^~Connective tissue 9%~^9^^6.25^^^
-~23135~^~1300~^~Beef, chuck eye Country-Style ribs, boneless, separable lean and fat, trimmed to 0" fat, choice, cooked, braised~^~BEEF,CHK EYE CNTRY-STYL RIBS,BNL,LN & FAT,0" FAT,CHOICE, CKD~^~Beef, Chuck, Bnls Country Style Beef Ribs, URMIS #1096~^^^~Connective tissue 9%~^9^^6.25^^^
-~23136~^~1300~^~Beef, chuck eye Country-Style ribs, boneless, separable lean and fat, trimmed to 0" fat, select, cooked, braised~^~BEEF,CHK EYE CNTRY-STYLE RIBS,BNL,LN & FAT,0" FAT,SEL, CKD~^~Beef, Chuck, Bnls Country Style Beef Ribs, URMIS #1096~^^^~Connective tissue 8%~^8^^6.25^^^
-~23137~^~1300~^~Beef, chuck eye Country-Style ribs, boneless, separable lean and fat, trimmed to 0" fat, all grades, raw~^~BEEF,CHK EYE CNTRY-STYLE RIBS,BNL,LN & FAT,0" FAT,ALL GR,RAW~^~Beef, Chuck, Bnls Country Style Beef Ribs, URMIS #1096~^^^~Connective tissue 9%~^9^^6.25^^^
-~23138~^~1300~^~Beef, chuck eye Country-Style ribs, boneless, separable lean and fat, trimmed to 0" fat, choice, raw~^~BEEF,CHK EYE CNTRY-STYLE RIBS,BNL,LN & FAT,0" FAT,CHOICE,RAW~^~Beef, Chuck, Bnls Country Style Beef Ribs, URMIS #1096~^^^~Connective tissue 8%~^8^^6.25^^^
-~23139~^~1300~^~Beef, chuck eye Country-Style ribs, boneless, separable lean and fat, trimmed to 0" fat, select, raw~^~BEEF,CHK EYE CNTRY-STYLE RIBS,BNL,LN & FAT,0" FAT,SEL,RAW~^~Beef, Chuck, Bnls Country Style Beef Ribs, URMIS #1096~^^^~Connective tissue 10%~^10^^6.25^^^
-~23140~^~1300~^~Beef, chuck eye steak, boneless, separable lean and fat, trimmed to 0" fat, all grades, cooked, grilled~^~BEEF,CHUCK EYE STEAK,BNLESS,LN & FAT,0" FAT,ALL GRDS,CKD,GR~^~Beef, Chuck, Chuck Eye Steaks, URMIS #1102~^^^~Connective tissue 5%~^5^^6.25^^^
-~23141~^~1300~^~Beef, chuck eye steak, boneless, separable lean and fat, trimmed to 0" fat, choice, cooked, grilled~^~BEEF,CHK EYE STEAK,BNLESS,LN & FAT,0" FAT,CHOIC,CKD,GRILLED~^~Beef, Chuck, Chuck Eye Steaks, URMIS #1102~^^^~Connective tissue 6%~^6^^6.25^^^
-~23142~^~1300~^~Beef, chuck eye steak, boneless, separable lean and fat, trimmed to 0" fat, select, cooked, grilled~^~BEEF,CHUCK EYE STEAK,BNLESS,LN & FAT,0" FAT,SEL,CKD,GRILLED~^~Beef, Chuck, Chuck Eye Steaks, URMIS #1102~^^^~Connective tissue 5%~^5^^6.25^^^
-~23143~^~1300~^~Beef, chuck eye steak, boneless, separable lean and fat, trimmed to 0" fat, all grades, raw~^~BEEF,CHUCK EYE STEAK,BNLESS,LN & FAT,0" FAT,ALL GRDS,RAW~^~Beef, Chuck, Chuck Eye Steaks, URMIS #1102~^^^~Connective tissue 10%~^10^^6.25^^^
-~23144~^~1300~^~Beef, chuck eye steak, boneless, separable lean and fat, trimmed to 0" fat, choice, raw~^~BEEF,CHUCK EYE STEAK,BNLESS,LN & FAT,0" FAT,CHOIC,RAW~^~Beef, Chuck, Chuck Eye Steaks, URMIS #1102~^^^~Connective tissue 10%~^10^^6.25^^^
-~23145~^~1300~^~Beef, chuck eye steak, boneless, separable lean and fat, trimmed to 0" fat, select, raw~^~BEEF,CHUCK EYE STEAK,BNLESS,LN & FAT,0" FAT,SEL,RAW~^~Beef, Chuck, Chuck Eye Steaks, URMIS #1102~^^^~Connective tissue 9%~^9^^6.25^^^
-~23146~^~1300~^~Beef, rib eye roast, bone-in, lip-on, separable lean only, trimmed to 1/8" fat, all grades, cooked, roasted~^~BEEF,RIB EYE RST,BNE-IN,LIP-ON,LN,1/8" FT,ALL GRDS,CKD,RSTD~^^^^~Bone and connective tissue 16%, Separable fat 16%~^32^^6.25^^^
-~23147~^~1300~^~Beef, rib eye roast, bone-in, lip-on, separable lean only, trimmed to 1/8" fat, select, cooked, roasted~^~BEEF,RIB EYE RST,BONE-IN,LIP-ON,LN,1/8" FAT,SEL,CKD,RSTD~^~URMIS #1193~^^^~Bone and connective tissue 16%, Separable fat 16%~^32^^6.25^^^
-~23148~^~1300~^~Beef, rib eye steak, boneless, lip-on, separable lean only, trimmed to 1/8" fat, choice, cooked, grilled~^~BEEF,RIB EYE STEAK,BNLES,LIP-ON,LN,1/8" FAT,CHOIC,CKD,GRILD~^~URMIS #2018~^^^~connective tissue 5%, Separable fat 22%~^27^^6.25^^^
-~23149~^~1300~^~Beef, rib eye steak, boneless, lip-on, separable lean only, trimmed to 1/8" fat, select, cooked, grilled~^~BEEF,RIB EYE STEAK,BNLESS,LIP-ON,LN,1/8" FAT,SEL,CKD,GRILLED~^~URMIS #1203~^^^~Connective tissue 6%, Separable fat 19%~^25^^6.25^^^
-~23150~^~1300~^~Beef, rib eye steak/roast, bone-in, lip-on, separable lean only, trimmed to 1/8" fat, all grades, raw~^~BEEF,RIB EYE STK/RST,BONE-IN,LIP-ON,LN,1/8" FAT,ALL GRDS,RAW~^^^^~Bone and connective tissue 14%, Separable fat 21%~^35^^6.25^^^
-~23151~^~1300~^~Beef, rib eye steak/roast, bone-in, lip-on, separable lean only, trimmed to 1/8" fat, choice, raw~^~BEEF,RIB EYE STEAK/RST,BONE-IN,LIP-ON,LN,1/8" FAT,CHOIC,RAW~^~URMIS #2012/2008~^^^~Bone and connective tissue 14%, Separable fat 22%~^36^^6.25^^^
-~23152~^~1300~^~Beef, rib eye steak/roast, bone-in, lip-on, separable lean only, trimmed to 1/8" fat, select, raw~^~BEEF,RIB EYE STEAK/ROAST,BONE-IN,LIP-ON,LN,1/8" FAT,SEL,RAW~^~URMIS #1197/1193~^^^~Bone and connective tissue 15%, Separable fat 20%~^35^^6.25^^^
-~23153~^~1300~^~Beef, rib eye steak/roast, boneless, lip-on, separable lean only, trimmed to 1/8" fat, all grades, raw~^~BEEF,RIB EYE STK/RST,BNLESS,LIP-ON,LN,1/8" FAT,ALL GRDS,RAW~^^^^~Connective tissue 4%, Separable fat 20%~^24^^6.25^^^
-~23154~^~1300~^~Beef, rib eye steak/roast, boneless, lip-on, separable lean only, trimmed to 1/8" fat, choice, raw~^~BEEF,RIB EYE STEAK/ROAST,BNLESS,LIP-ON,LN,1/8" FAT,CHOIC,RAW~^~URMIS #2018/2009~^^^~Connective tissue 4%, Separable fat 21%~^25^^6.25^^^
-~23155~^~1300~^~Beef, rib eye steak/roast, boneless, lip-on, separable lean only, trimmed to 1/8" fat, select, raw~^~BEEF,RIB EYE STEAK/ROAST,BNLESS,LIP-ON,LN,1/8" FAT,SEL,RAW~^~URMIS #1203/1194~^^^~Connective tissue 3%, Separable fat 18%~^21^^6.25^^^
-~23156~^~1300~^~Beef, rib eye steak, bone-in, lip-on, separable lean only, trimmed to 1/8" fat, all grades, cooked, grilled~^~BEEF,RIB EYE STK,BNE-IN,LIP-ON,LN,1/8" FAT,ALL GRDS,CKD,GRLD~^^^~Y~^~Bone and connective tissue 19%, Separable fat 19%~^38^^6.25^^^
-~23157~^~1300~^~Beef, rib eye steak, bone-in, lip-on, separable lean only, trimmed to 1/8" fat, choice, cooked, grilled~^~BEEF,RIB EYE STEAK,BONE-IN,LIP-ON,LN,1/8" FAT,CHOIC,CKD,GRLD~^~URMIS #2012~^^^~Bone and connective tissue 19%, Separable fat 19%~^38^^6.25^^^
-~23158~^~1300~^~Beef, rib eye steak, bone-in, lip-on, separable lean only, trimmed to 1/8" fat, select, cooked, grilled~^~BEEF,RIB EYE STEAK,BONE-IN,LIP-ON,LN,1/8" FAT,SEL,CKD,GRILD~^~URMIS #1197~^^^~Bone and connective tissue 20%, Separable fat 19%~^39^^6.25^^^
-~23159~^~1300~^~Beef, rib eye roast, boneless, lip-on, separable lean only, trimmed to 1/8" fat, all grades, cooked, roasted~^~BEEF,RIB EYE RST,BNLESS,LIP-ON,LN,1/8" FAT,ALL GRDS,CKD,RSTD~^^^^~Connective tissue 5%, Separable fat 19%~^24^^6.25^^^
-~23160~^~1300~^~Beef, rib eye roast, boneless, lip-on, separable lean only, trimmed to 1/8" fat, choice, cooked, roasted~^~BEEF,RIB EYE RST,BNLESS,LIP-ON,LN,1/8" FAT,CHOIC,CKD,RSTD~^~URMIS #2009~^^^~connective tissue 6%, Separable fat 19%~^25^^6.25^^^
-~23161~^~1300~^~Beef, rib eye roast, boneless, lip-on, separable lean only, trimmed to 1/8" fat, select, cooked, roasted~^~BEEF,RIB EYE RST,BNLESS,LIP-ON,LN,1/8" FAT,SEL,CKD,RSTD~^~URMIS #1194~^^^~Connective tissue 5%, Separable fat 18%~^23^^6.25^^^
-~23162~^~1300~^~Beef, plate steak, boneless, inside skirt, separable lean only, trimmed to 0" fat, all grades, cooked, grilled~^~BEEF,PLATE STK,BNLE,INSDE SKRT,LN,0" FAT,ALL GRDS,CKD,GRLD~^^^^~Connective tissue 1%, Separable fat 3%~^4^^6.25^^^
-~23163~^~1300~^~Beef, plate steak, boneless, inside skirt, separable lean only, trimmed to 0" fat, all grades, raw~^~BEEF,PLATE STEAK,BNLESS,INSIDE SKIRT,LN,0" FAT,ALL GRDS,RAW~^^^^~Connective tissue 1%, Separable fat 6%~^7^^6.25^^^
-~23164~^~1300~^~Beef, plate steak, boneless, inside skirt, separable lean only, trimmed to 0" fat, choice, cooked, grilled~^~BEEF,PLATE STK,BNLES,INSIDE SKIRT,LN,0" FAT,CHOIC,CKD,GRLD~^~URMIS #2422~^^^~Connective tissue 1%, Separable fat 3%~^4^^6.25^^^
-~23165~^~1300~^~Beef, plate steak, boneless, inside skirt, separable lean only, trimmed to 0" fat, choice, raw~^~BEEF,PLATE STEAK,BNLESS,INSIDE SKIRT,LN,0" FAT,CHOIC,RAW~^~URMIS #2422~^^^~Connective tissue 1%, Separable fat 6%~^7^^6.25^^^
-~23166~^~1300~^~Beef, plate steak, boneless, inside skirt, separable lean only, trimmed to 0" fat, select, cooked, grilled~^~BEEF,PLATE STEAK,BNLESS,INSIDE SKIRT,LN,0" FAT,SEL,CKD,GRILD~^~URMIS #1607~^^^~Connective tissue 1%, Separable fat 3%~^4^^6.25^^^
-~23167~^~1300~^~Beef, plate steak, boneless, inside skirt, separable lean only, trimmed to 0" fat, select, raw~^~BEEF,PLATE STEAK,BNLESS,INSIDE SKIRT,LN,0" FAT,SEL,RAW~^~URMIS #1607~^^^~Connective tissue 1%, Separable fat 5%~^6^^6.25^^^
-~23168~^~1300~^~Beef, plate steak, boneless, outside skirt, separable lean only, trimmed to 0" fat, all grades, cooked, grilled~^~BEEF,PLATE STK,BNLES,OTSDE SKIRT,LN,0" FAT,ALL GRDS,CKD,GRLD~^^^^~Connective tissue 0.5%, Separable fat 3.5%~^4^^^^^
-~23169~^~1300~^~Beef, plate steak, boneless, outside skirt, separable lean only, trimmed to 0" fat, all grades, raw~^~BEEF,PLATE STEAK,BNLESS,OUTSIDE SKIRT,LN,0" FAT,ALL GRDS,RAW~^^^^~Connective tissue 1%, Separable fat 7%~^8^^6.25^^^
-~23170~^~1300~^~Beef, plate steak, boneless, outside skirt, separable lean only, trimmed to 0" fat, choice, cooked, grilled~^~BEEF,PLATE STEAK,BNLS,OUTSIDE SKIRT,LN,0" FAT,CHOIC,CKD,GRLD~^~URMIS #2428~^^^~Connective tissue 0.3%, Separable fat 3.3%~^4^^6.25^^^
-~23171~^~1300~^~Beef, plate steak, boneless, outside skirt, separable lean only, trimmed to 0" fat, choice, raw~^~BEEF,PLATE STEAK,BNLESS,OUTSIDE SKIRT,LN,0" FAT,CHOIC,RAW~^~URMIS #2428~^^^~Connective tissue 1%, Separable fat 8%~^9^^6.25^^^
-~23172~^~1300~^~Beef, plate steak, boneless, outside skirt, separable lean only, trimmed to 0" fat, select, cooked, grilled~^~BEEF,PLATE STEAK,BNLESS,OUTSIDE SKIRT,LN,0" FAT,SEL,CKD,GRLD~^~URMIS #1613~^^^~Connective tissue 0%, Separable fat 4%~^4^^6.25^^^
-~23173~^~1300~^~Beef, plate steak, boneless, outside skirt, separable lean only, trimmed to 0" fat, select, raw~^~BEEF,PLATE STEAK,BNLESS,OUTSIDE SKIRT,LN,0" FAT,SEL,RAW~^~URMIS #1613~^^^~Connective tissue 1%, Separable fat 7%~^8^^6.25^^^
-~23174~^~1300~^~Beef, rib eye steak, boneless, lip off, separable lean only, trimmed to 0" fat, all grades, cooked, grilled~^~BEEF,RIB EYE STEAK,BNLESS,LIP OFF,LN,0" FAT,ALL GRDS,CKD,GRI~^^^^~Connective tissue 5%, Separable fat 16%~^26^^6.25^^^
-~23175~^~1300~^~Beef, rib eye steak, boneless, lip off, separable lean only, trimmed to 0" fat, all grades, raw~^~BEEF,RIB EYE STEAK,BNLESS,LIP OFF,LN,0" FAT,ALL GRDS,RAW~^^^^~Connective tissue 4%, Separable fat 17%~^24^^6.25^^^
-~23176~^~1300~^~Beef, rib eye steak, boneless, lip off, separable lean only, trimmed to 0" fat, choice, cooked, grilled~^~BEEF,RIB EYE STEAK,BNLESS,LIP OFF,LN,0" FAT,CHOIC,CKD,GRILLE~^~URMIS #2024~^^^~Connective tissue 5%, Separable fat 18%~^27^^6.25^^^
-~23177~^~1300~^~Beef, rib eye steak, boneless, lip off, separable lean only, trimmed to 0" fat, choice, raw~^~BEEF,RIB EYE STEAK,BNLESS,LIP OFF,LN,0" FAT,CHOIC,RAW~^~URMIS #2024~^^^~Connective tissue 4%, Separable fat 18%~^25^^6.25^^^
-~23178~^~1300~^~Beef, rib eye steak, boneless, lip off, separable lean only, trimmed to 0" fat, select, cooked, grilled~^~BEEF,RIB EYE STEAK,BNLESS,LIP OFF,LN,0" FAT,SEL,CKD,GRILLED~^~URMIS #1209~^^^~Connective tissue 5%, Separable fat 13%~^24^^6.25^^^
-~23179~^~1300~^~Beef, rib eye steak, boneless, lip off, separable lean only, trimmed to 0" fat, select, raw~^~BEEF,RIB EYE STEAK,BNLESS,LIP OFF,LN,0" FAT,SEL,RAW~^~URMIS #1209~^^^~Connective tissue 3%, Separable fat 14%~^22^^6.25^^^
-~23180~^~1300~^~Beef, rib, back ribs, bone-in, separable lean only, trimmed to 0" fat, all grades, cooked, braised~^~BEEF,RIB,BACK RIBS,BONE-IN,LN,0" FAT,ALL GRDS,CKD,BRSD~^^^^~Bone and connective tissue 61%, Separable fat 8%~^69^^6.25^^^
-~23181~^~1300~^~Beef, rib, back ribs, bone-in, separable lean only, trimmed to 0" fat, all grades, raw~^~BEEF,RIB,BACK RIBS,BONE-IN,LN,0" FAT,ALL GRDS,RAW~^^^^~Bone and connective tissue 52%, Separable fat 12%~^64^^6.25^^^
-~23182~^~1300~^~Beef, rib, back ribs, bone-in, separable lean only, trimmed to 0" fat, choice, cooked, braised~^~BEEF,RIB,BACK RIBS,BONE-IN,LN,0" FAT,CHOIC,CKD,BRSD~^~URMIS #1997~^^^~Bone and connective tissue 60%, Separable fat 9%~^69^^6.25^^^
-~23183~^~1300~^~Beef, rib, back ribs, bone-in, separable lean only, trimmed to 0" fat, choice, raw~^~BEEF,RIB,BACK RIBS,BONE-IN,LN,0" FAT,CHOIC,RAW~^~URMIS #1997~^^^~Bone and connective tissue 53%, Separable fat 13%~^66^^6.25^^^
-~23184~^~1300~^~Beef, rib, back ribs, bone-in, separable lean only, trimmed to 0" fat, select, cooked, braised~^~BEEF,RIB,BACK RIBS,BONE-IN,LN,0" FAT,SEL,CKD,BRSD~^~URMIS #1182~^^^~Bone and connective tissue 62%, Separable fat 7%~^69^^6.25^^^
-~23185~^~1300~^~Beef, rib, back ribs, bone-in, separable lean only, trimmed to 0" fat, select, raw~^~BEEF,RIB,BACK RIBS,BONE-IN,LN,0" FAT,SEL,RAW~^~URMIS #1182~^^^~Bone and connective tissue 52%, Separable fat 11%~^63^^6.25^^^
-~23186~^~1300~^~Beef, rib eye steak, bone-in, lip-on, separable lean and fat, trimmed to 1/8" fat, choice, cooked, grilled~^~BEEF,RIB EYE STK,BNE-IN,LIP-ON,LN & FT,1/8" FAT,CHOC,CKD,GRL~^~URMIS #2012~^^^~Bone and connective tissue 19%~^19^^6.25^^^
-~23187~^~1300~^~Beef, rib eye steak, bone-in, lip-on, separable lean and fat, trimmed to 1/8" fat, select, cooked, grilled~^~BEEF,RIB EYE STK,BNE-IN,LIP-ON,LN & FT,1/8" FAT,SEL,CKD,GRLD~^~URMIS #1197~^^^~Bone and connective tissue 20%~^20^^6.25^^^
-~23188~^~1300~^~Beef, rib eye steak, bone-in, lip-on, separable lean and fat, trimmed to 1/8" fat, all grades, cooked, grilled~^~BEEF,RIB EYE STK,BN-IN,LIP-ON,LN & FT,1/8" FT,AL GDS,CKD,GRL~^^^~Y~^~Bone and connective tissue 19%~^19^^6.25^^^
-~23189~^~1300~^~Beef, rib eye roast, bone-in, lip-on, separable lean and fat, trimmed to 1/8" fat, choice, cooked, roasted~^~BEEF,RIB EYE RST,BNE-IN,LIP-ON,LN & FAT,1/8" FT,CHC,CKD,RST~^~URMIS #2008~^^^~Bone and connective tissue 16%~^16^^6.25^^^
-~23190~^~1300~^~Beef, rib eye roast, bone-in, lip-on, separable lean and fat, trimmed to 1/8" fat, select, cooked, roasted~^~BEEF,RIB EYE RST,BNE-IN,LIP-ON,LN & FAT,1/8" FAT,SEL,CKD,RST~^~URMIS #1193~^^^~Bone and connective tissue 16%~^16^^6.25^^^
-~23191~^~1300~^~Beef, rib eye roast, bone-in, lip-on, separable lean and fat, trimmed to 1/8" fat, all grades, cooked, roasted~^~BEEF,RIB EYE RST,BNE-IN,LP-ON,LN & FT,1/8" FT,AL GRD,CKD,RST~^^^^~Bone and connective tissue 16%~^16^^6.25^^^
-~23192~^~1300~^~Beef, rib eye steak/roast, bone-in, lip-on, separable lean and fat, trimmed to 1/8" fat, all grades, raw~^~BEEF,RIB EYE STK/RST,BNE-IN,IP-ON,LN & FT,1/8" FT,AL GRDS,RW~^^^^~Bone and connective tissue 14%~^14^^6.25^^^
-~23193~^~1300~^~Beef, rib eye steak/roast, bone-in, lip-on, separable lean and fat, trimmed to 1/8" fat, choice, raw~^~BEEF,RIB EYE STK/RST,BNE-IN,LIP-ON,LN & FAT,1/8" FAT,CHC,RAW~^~URMIS #2012/2008~^^^~Bone and connective tissue 14%~^14^^6.25^^^
-~23194~^~1300~^~Beef, rib eye steak/roast, bone-in, lip-on, separable lean and fat, trimmed to 1/8" fat, select, raw~^~BEEF,RIB EYE STK/RST,BONE-IN,LIP-ON,LN & FAT,1/8" FAT,SEL,RW~^~URMIS #1197/1193~^^^~Bone and connective tissue 15%~^15^^6.25^^^
-~23195~^~1300~^~Beef, rib eye steak, boneless, lip-on, separable lean and fat, trimmed to 1/8" fat, choice, cooked, grilled~^~BEEF,RIB EYE STEAK,BNLS,LIP-ON,LN & FAT,1/8" FAT,CHC,CKD,GRD~^~URMIS #2018~^^^~Connective tissue 6%~^6^^6.25^^^
-~23196~^~1300~^~Beef, rib eye steak, boneless, lip-on, separable lean and fat, trimmed to 1/8" fat, select, cooked, grilled~^~BEEF,RIB EYE STK,BNLS,LIP-ON,LN & FAT,1/8" FAT,SEL,CKD,GILD~^~URMIS #1203~^^^~Connective tissue 6%~^6^^6.25^^^
-~23197~^~1300~^~Beef, rib eye steak, boneless, lip-on, separable lean and fat, trimmed to 1/8" fat, all grades, cooked, grilled~^~BEEF,RIB EYE STK,BNLS,LIP-ON,LN & FT,1/8" FT,AL GRD,CKD,GRLD~^^^~Y~^~Connective tissue 6%~^6^^6.25^^^
-~23198~^~1300~^~Beef, rib eye roast, boneless, lip-on, separable lean and fat, trimmed to 1/8" fat, all grades, cooked, roasted~^~BEEF,RIB EYE RST,BNLS,LP-ON,LN & FT,1/8" FT,ALL GRD,CKD,RSTD~^^^^~Connective tissue 5%~^5^^6.25^^^
-~23199~^~1300~^~Beef, rib eye roast, boneless, lip-on, separable lean and fat, trimmed to 1/8" fat, choice, cooked, roasted~^~BEEF,RIB EYE RST,BNLES,LIP-ON,LN & FAT,1/8" FAT,CHC,CKD,RSTD~^~URMIS #2009~^^^~Connective tissue 6%~^6^^6.25^^^
-~23200~^~1300~^~Beef, rib eye roast, boneless, lip-on, separable lean and fat, trimmed to 1/8" fat, select, cooked, roasted~^~BEEF,RIB EYE RST,BNLES,LIP-ON,LN & FAT,1/8" FAT,SEL,CKD,RSTD~^~URMIS #1194~^^^~Connective tissue 5%~^5^^6.25^^^
-~23201~^~1300~^~Beef, rib eye steak/roast, boneless, lip-on, separable lean and fat, trimmed to 1/8" fat, all grades, raw~^~BEEF,RIB EYE STK/RST,BNLS,LIP-ON,LN & FAT,1/8" FAT,AL GRD,RW~^^^^~Connective tissue 4%~^4^^6.25^^^
-~23202~^~1300~^~Beef, rib eye steak/roast, boneless, lip-on, separable lean and fat, trimmed to 1/8" fat, choice, raw~^~BEEF,RIB EYE STEAK/ROST,BNLS,LIP-ON,LN & FAT,1/8" FAT,CHC,RW~^~URMIS #2018/2009~^^^~Connective tissue 4%~^4^^6.25^^^
-~23213~^~1300~^~Beef, rib eye steak/roast, boneless, lip-on, separable lean and fat, trimmed to 1/8" fat, select, raw~^~BEEF,RIB EYE STEAK/ROST,BNLS,LIP-ON,LN & FAT,1/8" FAT,SEL,RW~^~URMIS #1203/1194~^^^~Connective tissue 3%~^3^^6.25^^^
-~23214~^~1300~^~Beef, plate steak, boneless, inside skirt, separable lean and fat, trimmed to 0" fat, all grades, cooked, grilled~^~BEEF,PLTE STK,BNLS,INSD SKRT,LN & FAT,0" FAT,ALL GRD,CKD,GRL~^^^^~Connective tissue 1%~^1^^6.25^^^
-~23215~^~1300~^~Beef, plate steak, boneless, inside skirt, separable lean and fat, trimmed to 0" fat, choice, cooked, grilled~^~BEEF,PLATE STK,BNLSS,INSDE SKRT,LN & FAT,0" FAT,CHC,CKD,GRLD~^~URMIS #2422~^^^~Connective tissue 1%~^1^^6.25^^^
-~23216~^~1300~^~Beef, plate steak, boneless, inside skirt, separable lean and fat, trimmed to 0" fat, select, cooked, grilled~^~BEEF,PLATE STK,BNLES,INSDE SKRT,LN & FAT,0" FAT,SEL,CKD,GRLD~^~URMIS #1607~^^^~Connective tissue 1%~^1^^6.25^^^
-~23217~^~1300~^~Beef, plate steak, boneless, inside skirt, separable lean and fat, trimmed to 0" fat, all grades, raw~^~BEEF,PLATE STEK,BNLS,INSDE SKRT,LN & FAT,0" FAT,ALL GRDS,RW~^^^^~Connective tissue 1%~^1^^6.25^^^
-~23218~^~1300~^~Beef, plate steak, boneless, inside skirt, separable lean and fat, trimmed to 0" fat, choice, raw~^~BEEF,PLATE STEAK,BNLESS,INSIDE SKIRT,LN & FAT,0" FAT,CHOC,RW~^~URMIS #2422~^^^~Connective tissue 1%~^1^^6.25^^^
-~23219~^~1300~^~Beef, plate steak, boneless, inside skirt, separable lean and fat, trimmed to 0" fat, select, raw~^~BEEF,PLATE STEAK,BNLESS,INSIDE SKIRT,LN & FAT,0" FAT,SEL,RAW~^~URMIS #1607~^^^~Connective tissue 1%~^1^^6.25^^^
-~23220~^~1300~^~Beef, ground, unspecified fat content, cooked~^~BEEF,GROUND,UNSPEC FAT CONTENT,CKD~^~Hamburger~^^~Y~^^0^^6.25^4.27^9.02^3.87
-~23221~^~1300~^~Beef, plate steak, boneless, outside skirt, separable lean and fat, trimmed to 0" fat, all grades, cooked, grilled~^~BEEF,PLTE STK,BNLS,OUTSD SKRT,LN & FAT,0" FT,AL GRD,CKD,GRLD~^^^^^0^^6.25^^^
-~23222~^~1300~^~Beef, plate steak, boneless, outside skirt, separable lean and fat, trimmed to 0" fat, choice, cooked, grilled~^~BEEF,PLATE STK,BNLS,OUTSD SKRT,LN & FAT,0" FT,CHC,CKD,GRLD~^~URMIS #2428~^^^^0^^6.25^^^
-~23223~^~1300~^~Beef, plate steak, boneless, outside skirt, separable lean and fat, trimmed to 0" fat, select, cooked, grilled~^~BEEF,PLATE STK,BNLS,OTSDE SKRT,LN & FAT,0" FAT,SEL,CKD,GRILD~^~URMIS #1613~^^^^0^^6.25^^^
-~23224~^~1300~^~Beef, plate steak, boneless, outside skirt, separable lean and fat, trimmed to 0" fat, all grades, raw~^~BEEF,PLATE STEK,BNLS,OUTSDE SKRT,LN & FAT,0" FAT,ALL GRDS,RW~^^^^~Connective tissue 1%~^1^^6.25^^^
-~23225~^~1300~^~Beef, plate steak, boneless, outside skirt, separable lean and fat, trimmed to 0" fat, choice, raw~^~BEEF,PLATE STEAK,BNLS,OUTSIDE SKRT,LN & FAT,0" FAT,CHOIC,RAW~^~URMIS #2428~^^^~Connective tissue 1%~^1^^6.25^^^
-~23226~^~1300~^~Beef, plate steak, boneless, outside skirt, separable lean and fat, trimmed to 0" fat, select, raw~^~BEEF,PLATE STEAK,BNLESS,OUTSIDE SKIRT,LN & FAT,0" FAT,SEL,RW~^~URMIS #1613~^^^~Connective tissue 1%~^1^^6.25^^^
-~23227~^~1300~^~Beef, rib eye steak, boneless, lip off, separable lean and fat, trimmed to 0" fat, all grades, cooked, grilled~^~BEEF,RIB EYE STK,BNLS,LIP OF,LN & FAT,0" FT,AL GRDS,CKD,GRLD~^^^^~Connective tissue 5%~^5^^6.25^^^
-~23228~^~1300~^~Beef, rib eye steak, boneless, lip off, separable lean and fat, trimmed to 0" fat, choice, cooked, grilled~^~BEEF,RIB EYE STEAK,BNLS,LIP OFF,LN & FAT,0" FAT,CHC,CKD,GRLD~^~URMIS #2024~^^^~Connective tissue 5%~^5^^6.25^^^
-~23229~^~1300~^~Beef, rib eye steak, boneless, lip off, separable lean and fat, trimmed to 0" fat, select, cooked, grilled~^~BEEF,RIB EYE STEK,BNLES,LIP OFF,LN & FAT,0" FAT,SEL,CKD,GRLD~^~URMIS #1209~^^^~Connective tissue 5%~^5^^6.25^^^
-~23230~^~1300~^~Beef, rib eye steak, boneless, lip off, separable lean and fat, trimmed to 0" fat, all grades, raw~^~BEEF,RIB EYE STEAK,BNLESS,LIP OFF,LN & FAT,0" FAT,ALL GRD,RW~^^^^~Connective tissue 4%~^4^^6.25^^^
-~23231~^~1300~^~Beef, rib eye steak, boneless, lip off, separable lean and fat, trimmed to 0" fat, choice, raw~^~BEEF,RIB EYE STEAK,BNLESS,LIP OFF,LN & FAT,0" FAT,CHOIC,RAW~^~URMIS #2024~^^^~Connective tissue 4%~^4^^6.25^^^
-~23232~^~1300~^~Beef, rib eye steak, boneless, lip off, separable lean and fat, trimmed to 0" fat, select, raw~^~BEEF,RIB EYE STEAK,BNLESS,LIP OFF,LN & FAT,0" FAT,SEL,RAW~^~URMIS #1209~^^^~Connective tissue 3%~^3^^6.25^^^
-~23233~^~1300~^~Beef, rib, back ribs, bone-in, separable lean and fat, trimmed to 0" fat, all grades, cooked, braised~^~BEEF,RIB,BACK RIBS,BONE-IN,LN & FAT,0" FAT,ALL GRDS,CKD,BRSD~^^^^~Bone and connective tissue 61%~^61^^6.25^^^
-~23234~^~1300~^~Beef, rib, back ribs, bone-in, separable lean and fat, trimmed to 0" fat, choice, cooked, braised~^~BEEF,RIB,BACK RIBS,BONE-IN,LN & FAT,0" FAT,CHOIC,CKD,BRSD~^~URMIS #1997~^^^~Bone and connective tissue 60%~^60^^6.25^^^
-~23235~^~1300~^~Beef, rib, back ribs, bone-in, separable lean and fat, trimmed to 0" fat, select, cooked, braised~^~BEEF,RIB,BACK RIBS,BONE-IN,LN & FAT,0" FAT,SEL,CKD,BRSD~^~URMIS #1182~^^^~Bone and connective tissue 63%~^62^^6.25^^^
-~23236~^~1300~^~Beef, rib, back ribs, bone-in, separable lean and fat, trimmed to 0" fat, all grades, raw~^~BEEF,RIB,BACK RIBS,BONE-IN,LN & FAT,0" FAT,ALL GRDS,RAW~^^^^~Bone and connective tissue 52%~^52^^6.25^^^
-~23237~^~1300~^~Beef, rib, back ribs, bone-in, separable lean and fat, trimmed to 0" fat, choice, raw~^~BEEF,RIB,BACK RIBS,BONE-IN,LN & FAT,0" FAT,CHOIC,RAW~^~URMIS #1997~^^^~Bone and connective tissue 53%~^53^^6.25^^^
-~23238~^~1300~^~Beef, rib, back ribs, bone-in, separable lean and fat, trimmed to 0" fat, select, raw~^~BEEF,RIB,BACK RIBS,BONE-IN,LN & FAT,0" FAT,SEL,RAW~^~URMIS #1182~^^^~Bone and connective tissue 52%~^52^^6.25^^^
-~23239~^~1300~^~Beef, loin, top sirloin petite roast, boneless, separable lean only, trimmed to 0" fat, choice, cooked, roasted~^~BEEF,LOIN,TOP SIRLIN PETITE RST,BNLS,LN,0" FAT,CHOC,CKD,RSTD~^~Gluteus medius, URMIS #2136~^^^~Connective tissue 6%, Separable fat 4%~^10^^6.25^^^
-~23240~^~1300~^~Beef, loin, top sirloin petite roast/filet, boneless, separable lean only, trimmed to 0" fat, choice, raw~^~BEEF,LOIN,TOP SIRLOIN PETITE RST/FILET,BNLS,LN,0" FAT,CHC,RW~^~URMIS #2136, Gluteus medius, URMIS #2138~^^^~Connective tissue 6%, Separable fat 5%~^11^^6.25^^^
-~23241~^~1300~^~Beef, loin, top sirloin cap steak, boneless, separable lean only, trimmed to 1/8" fat, all grades, cooked, grilled~^~BEEF,LOIN,TOP SIRLN CAP STK,BNLS,LN,1/8" FAT,AL GRDS,CKD,GLD~^~Biceps femoris~^^^~Connective tissue 8%, Separable fat 13%~^21^^6.25^^^
-~23242~^~1300~^~Beef, loin, top sirloin cap steak, boneless, separable lean only, trimmed to 1/8" fat, choice, cooked, grilled~^~BEEF,LOIN,TOP SIRLON CAP STK,BNLS,LN,1/8" FAT,CHOIC,CKD,GRLD~^~Biceps femoris, URMIS #2236~^^^~Connective tissue 8%, Separable fat 14%~^22^^6.25^^^
-~23243~^~1300~^~Beef, loin, top sirloin cap steak, boneless, separable lean only, trimmed to 1/8" fat, select, cooked, grilled~^~BEEF,LOIN,TOP SIRLOIN CAP STEK,BNLS,LN,1/8" FAT,SEL,CKD,GRLD~^~Biceps femoris, URMIS #1421~^^^~Connective tissue 8%, Separable fat 11%~^19^^6.25^^^
-~23244~^~1300~^~Beef, loin, top sirloin cap steak, boneless, separable lean only, trimmed to 1/8" fat, all grades, raw~^~BEEF,LOIN,TOP SIRLOIN CAP STEK,BNLS,LN,1/8" FAT,ALL GRDS,RAW~^~Biceps femoris~^^^~Connective tissue 7%, Separable fat 13%~^20^^6.25^^^
-~23245~^~1300~^~Beef, loin, top sirloin cap steak, boneless, separable lean only, trimmed to 1/8" fat, choice, raw~^~BEEF,LOIN,TOP SIRLOIN CAP STEAK,BNLESS,LN,1/8" FAT,CHOIC,RAW~^~Biceps femoris, URMIS #2236~^^^~Connective tissue 8%, Separable fat 11%~^19^^6.25^^^
-~23246~^~1300~^~Beef, loin, top sirloin cap steak, boneless, separable lean only, trimmed to 1/8" fat, select, raw~^~BEEF,LOIN,TOP SIRLOIN CAP STEAK,BNLESS,LN,1/8" FAT,SEL,RAW~^~Biceps femoris, URMIS #1421~^^^~Connective tissue 7%, Separable fat 15%~^22^^6.25^^^
-~23247~^~1300~^~Beef, top loin filet, boneless, separable lean only, trimmed to 1/8" fat, all grades, cooked, grilled~^~BEEF,TOP LOIN FILET,BNLESS,LN,1/8" FAT,ALL GRDS,CKD,GRILLED~^^^^~Connective tissue 10%, Separable fat 9%~^19^^6.25^^^
-~23248~^~1300~^~Beef, top loin filet, boneless, separable lean only, trimmed to 1/8" fat, choice, cooked, grilled~^~BEEF,TOP LOIN FILET,BNLESS,LN,1/8" FAT,CHOIC,CKD,GRILLED~^~URMIS #2137~^^^~Connective tissue 12%, Separable fat 7%~^19^^6.25^^^
-~23249~^~1300~^~Beef, top loin filet, boneless, separable lean only, trimmed to 1/8" fat, select, cooked, grilled~^~BEEF,TOP LOIN FILET,BNLESS,LN,1/8" FAT,SEL,CKD,GRILLED~^~URMIS #1322~^^^~Connective tissue 9%, Separable fat 12%~^20^^6.25^^^
-~23250~^~1300~^~Beef, top loin petite roast, boneless, separable lean only, trimmed to 1/8" fat, all grades, cooked, roasted~^~BEEF,TOP LOIN PETITE RST,BNLSS,LN,1/8" FAT,ALL GRDS,CKD,RSTD~^~Longissimus dorsi~^^^~Connective tissue 9%, Separable fat 7%~^16^^6.25^^^
-~23251~^~1300~^~Beef, top loin petite roast, boneless, separable lean only, trimmed to 1/8" fat, choice, cooked, roasted~^~BEEF,TOP LOIN PETITE RST,BNLESS,LN,1/8" FAT,CHOIC,CKD,RSTD~^~Longissimus dorsi, URMIS #2135~^^^~Connective tissue 8%, Separable fat 6%~^14^^6.25^^^
-~23252~^~1300~^~Beef, top loin petite roast, boneless, separable lean only, trimmed to 1/8" fat, select, cooked, roasted~^~BEEF,TOP LOIN PETITE RST,BNLESS,LN,1/8" FAT,SEL,CKD,RSTD~^~Longissimus dorsi, URMIS #1320~^^^~Connective tissue 10%, Separable fat 7%~^17^^6.25^^^
-~23253~^~1300~^~Beef, top loin petite roast/filet, boneless, separable lean only, trimmed to 1/8" fat, all grades, raw~^~BEEF,TOP LOIN PETITE RST/FILET,BNLS,LN,1/8" FAT,ALL GRDS,RAW~^~Longissimus dorsi~^^^~Connective tissue 11%, Separable fat 9%~^20^^6.25^^^
-~23254~^~1300~^~Beef, top loin petite roast/filet, boneless, separable lean only, trimmed to 1/8" fat, choice, raw~^~BEEF,TOP LOIN PETITE ROAST/FILET,BNLESS,LN,1/8" FAT,CHOC,RAW~^~URMIS #2135, Longissimus dorsi, URMIS #2137~^^^~Connective tissue 13%, Separable fat 7%~^20^^6.25^^^
-~23255~^~1300~^~Beef, top loin petite roast/filet, boneless, separable lean only, trimmed to 1/8" fat, select, raw~^~BEEF,TOP LOIN PETITE ROAST/FILET,BNLESS,LN,1/8" FAT,SEL,RAW~^~URMIS #1320, Longissimus dorsi, URMIS #1322~^^^~Connective tissue 8%, Separable fat 11%~^19^^6.25^^^
-~23256~^~1300~^~Beef, loin, top sirloin filet, boneless, separable lean only, trimmed to 0" fat, all grades, cooked, grilled~^~BEEF,LOIN,TOP SIRLOIN FILET,BNLS,LN,0" FAT,ALL GRDS,CKD,GRLD~^^^^~Connective tissue 5%~^5^^6.25^^^
-~23257~^~1300~^~Beef, loin, top sirloin filet, boneless, separable lean only, trimmed to 0" fat, choice, cooked, grilled~^~BEEF,LOIN,TOP SIRLOIN FILET,BNLESS,LN,0" FAT,CHOIC,CKD,GRILD~^~URMIS #2138~^^^~Connective tissue 5%~^5^^6.25^^^
-~23258~^~1300~^~Beef, loin, top sirloin filet, boneless, separable lean only, trimmed to 0" fat, select, cooked, grilled~^~BEEF,LOIN,TOP SIRLOIN FILET,BNLESS,LN,0" FAT,SEL,CKD,GRILLED~^~URMIS #1323~^^^~Connective tissue 5%~^5^^6.25^^^
-~23259~^~1300~^~Beef, loin, top sirloin petite roast, boneless, separable lean only, trimmed to 0" fat, all grades, cooked, roasted~^~BEEF,LOIN,TOP SIRLON PTIT RST,BLS,LN,0" FAT,AL GRDS,CKD,RSTD~^~Gluteus medius~^^^~Connective tissue 6%~^6^^6.25^^^
-~23260~^~1300~^~Beef, loin, top sirloin petite roast, boneless, separable lean only, trimmed to 0" fat, select, cooked, roasted~^~BEEF,LOIN,TOP SIRLOIN PETITE RST,BNLS,LN,0" FAT,SEL,CKD,RSTD~^~Gluteus medius, URMIS #1321~^^^~Connective tissue 6%~^6^^6.25^^^
-~23261~^~1300~^~Beef, loin, top sirloin petite roast/filet, boneless, separable lean only, trimmed to 0" fat, all grades, raw~^~BEEF,LOIN,TOP SRLN PETIT RST/FILT,BNLS,LN,0" FAT,AL GRDS,RAW~^~Gluteus medius~^^^~Connective tissue 7%~^7^^6.25^^^
-~23262~^~1300~^~Beef, loin, top sirloin petite roast/filet, boneless, separable lean only, trimmed to 0" fat, select, raw~^~BEEF,LOIN,TOP SIRLON PETITE RST/FILET,BNLS,LN,0" FAT,SEL,RAW~^~URMIS #1323, Gluteus medius, URMIS #1321~^^^~Connective tissue 7%~^7^^6.25^^^
-~23263~^~1300~^~Beef, ribeye petite roast/filet, boneless, separable lean only, trimmed to 0" fat, all grades, raw~^~BEEF,RIBEYE PETITE ROAST/FILET,BNLESS,LN,0" FAT,ALL GRDS,RAW~^~Longissimus dorsi~^^^~Connective tissue 6%~^6^^6.25^^^
-~23264~^~1300~^~Beef, ribeye petite roast/filet, boneless, separable lean only, trimmed to 0" fat, choice, raw~^~BEEF,RIBEYE PETITE ROAST/FILET,BNLESS,LN,0" FAT,CHOIC,RAW~^~Longissimus dorsi, URMIS #2065~^^^~Connective tissue 6%~^6^^6.25^^^
-~23265~^~1300~^~Beef, ribeye petite roast/filet, boneless, separable lean only, trimmed to 0" fat, select, raw~^~BEEF,RIBEYE PETITE ROAST/FILET,BNLESS,LN,0" FAT,SEL,RAW~^~Longissimus dorsi, URMIS #1250~^^^~Connective tissue 5%~^5^^6.25^^^
-~23266~^~1300~^~Beef, ribeye cap steak, boneless, separable lean only, trimmed to 0" fat, all grades, cooked, grilled~^~BEEF,RIBEYE CAP STEAK,BNLESS,LN,0" FAT,ALL GRDS,CKD,GRILLED~^~Spinalis dorsi~^^^~Connective tissue 10%~^10^^6.25^^^
-~23267~^~1300~^~Beef, ribeye cap steak, boneless, separable lean only, trimmed to 0" fat, choice, cooked, grilled~^~BEEF,RIBEYE CAP STEAK,BNLESS,LN,0" FAT,CHOIC,CKD,GRILLED~^~Spinalis dorsi, URMIS #2069~^^^~Connective tissue 10%~^10^^6.25^^^
-~23268~^~1300~^~Beef, ribeye cap steak, boneless, separable lean only, trimmed to 0" fat, select, cooked, grilled~^~BEEF,RIBEYE CAP STEAK,BNLESS,LN,0" FAT,SEL,CKD,GRILLED~^~Spinalis dorsi, URMIS #1254~^^^~Connective tissue 10%~^10^^6.25^^^
-~23269~^~1300~^~Beef, ribeye cap steak, boneless, separable lean only, trimmed to 0" fat, all grades, raw~^~BEEF,RIBEYE CAP STEAK,BNLESS,LN,0" FAT,ALL GRDS,RAW~^~Spinalis dorsi~^^^~Connective tissue 12%~^12^^6.25^^^
-~23270~^~1300~^~Beef, ribeye cap steak, boneless, separable lean only, trimmed to 0" fat, choice, raw~^~BEEF,RIBEYE CAP STEAK,BNLESS,LN,0" FAT,CHOIC,RAW~^~Spinalis dorsi, URMIS #2069~^^^~Connective tissue 12%~^12^^6.25^^^
-~23271~^~1300~^~Beef, ribeye cap steak, boneless, separable lean only, trimmed to 0" fat, select, raw~^~BEEF,RIBEYE CAP STEAK,BNLESS,LN,0" FAT,SEL,RAW~^~Spinalis dorsi, URMIS #1254~^^^~Connective tissue 12%~^12^^6.25^^^
-~23272~^~1300~^~Beef, ribeye filet, boneless, separable lean only, trimmed to 0" fat, all grades, cooked, grilled~^~BEEF,RIBEYE FILET,BNLESS,LN,0" FAT,ALL GRDS,CKD,GRILLED~^^^^~Connective tissue 6%~^6^^6.25^^^
-~23273~^~1300~^~Beef, ribeye filet, boneless, separable lean only, trimmed to 0" fat, choice, cooked, grilled~^~BEEF,RIBEYE FILET,BNLESS,LN,0" FAT,CHOIC,CKD,GRILLED~^~URMIS #2068~^^^~Connective tissue 6%~^6^^6.25^^^
-~23274~^~1300~^~Beef, ribeye filet, boneless, separable lean only, trimmed to 0" fat, select, cooked, grilled~^~BEEF,RIBEYE FILET,BNLESS,LN,0" FAT,SEL,CKD,GRILLED~^~URMIS #1253~^^^~Connective tissue 6%~^6^^6.25^^^
-~23275~^~1300~^~Beef, ribeye petite roast, boneless, separable lean only, trimmed to 0" fat, all grades, cooked, roasted~^~BEEF,RIBEYE PETITE RST,BNLESS,LN,0" FAT,ALL GRDS,CKD,RSTD~^~Longissimus dorsi~^^^~Connective tissue 6%~^6^^6.25^^^
-~23276~^~1300~^~Beef, ribeye petite roast, boneless, separable lean only, trimmed to 0" fat, choice, cooked, roasted~^~BEEF,RIBEYE PETITE RST,BNLESS,LN,0" FAT,CHOIC,CKD,RSTD~^~Longissimus dorsi, URMIS #2065~^^^~Connective tissue 6%~^6^^6.25^^^
-~23277~^~1300~^~Beef, ribeye petite roast, boneless, separable lean only, trimmed to 0" fat, select, cooked, roasted~^~BEEF,RIBEYE PETITE RST,BNLESS,LN,0" FAT,SEL,CKD,RSTD~^~Longissimus dorsi, URMIS #1250~^^^~Connective tissue 6%~^6^^6.25^^^
-~23278~^~1300~^~Beef, loin, top sirloin cap steak, boneless, separable lean and fat, trimmed to 1/8" fat, all grades, cooked, grilled~^~BEEF,LOIN,TOP SRL CP STK,BNLS,LN & FT,1/8" FT,ALGDS,CKD,GRLD~^~Biceps femoris~^^^~Connective tissue 8%~^8^^6.25^^^
-~23279~^~1300~^~Beef, loin, top sirloin cap steak, boneless, separable lean and fat, trimmed to 1/8" fat, choice, cooked, grilled~^~BEEF,LOIN,TOP SRLN CAP STK,BLS,LN & FAT,1/8" FAT,CHC,CKD,GLD~^~Biceps femoris, URMIS #2236~^^^~Connective tissue 8%~^8^^6.25^^^
-~23280~^~1300~^~Beef, loin, top sirloin cap steak, boneless, separable lean and fat, trimmed to 1/8" fat, select, cooked, grilled~^~BEEF,LOIN,TOP SRLN CAP STK,BLS,LN & FAT,1/8" FAT,SEL,CKD,GLD~^~Biceps femoris, URMIS #1421~^^^~Connective tissue 8%~^8^^6.25^^^
-~23281~^~1300~^~Beef, loin, top sirloin cap steak, boneless, separable lean and fat, trimmed to 1/8" fat, all grades, raw~^~BEEF,LOIN,TOP SIRLN CAP STK,BNLS,LN & FAT,1/8" FAT,AL GDS,RW~^~Biceps femoris~^^^~Connective tissue 7%~^7^^6.25^^^
-~23282~^~1300~^~Beef, loin, top sirloin cap steak, boneless, separable lean and fat, trimmed to 1/8" fat, choice, raw~^~BEEF,LOIN,TOP SIRLOIN CAP STK,BNLS,LN & FAT,1/8" FAT,CHC,RAW~^~Biceps femoris, URMIS #2236~^^^~Connective tissue 8%~^8^^6.25^^^
-~23283~^~1300~^~Beef, loin, top sirloin cap steak, boneless, separable lean and fat, trimmed to 1/8" fat, select, raw~^~BEEF,LOIN,TOP SIRLOIN CAP STK,BNLS,LN & FAT,1/8" FAT,SEL,RAW~^~Biceps femoris, URMIS #1421~^^^~Connective tissue 7%~^7^^6.25^^^
-~23284~^~1300~^~Beef, top loin filet, boneless, separable lean and fat, trimmed to 1/8" fat, all grades, cooked, grilled~^~BEEF,TOP LOIN FILET,BNLS,LN & FAT,1/8" FAT,ALL GRDS,CKD,GRLD~^^^^~Connective tissue 10%~^10^^6.25^^^
-~23285~^~1300~^~Beef, top loin filet, boneless, separable lean and fat, trimmed to 1/8" fat, choice, cooked, grilled~^~BEEF,TOP LOIN FILET,BNLESS,LN & FAT,1/8" FAT,CHOIC,CKD,GRILD~^~URMIS #2137~^^^~Connective tissue 12%~^12^^6.25^^^
-~23286~^~1300~^~Beef, top loin filet, boneless, separable lean and fat, trimmed to 1/8" fat, select, cooked, grilled~^~BEEF,TOP LOIN FILET,BNLESS,LN & FAT,1/8" FAT,SEL,CKD,GRILLED~^~URMIS #1322~^^^~Connective tissue 9%~^9^^6.25^^^
-~23287~^~1300~^~Beef, top loin petite roast, boneless, separable lean and fat, trimmed to 1/8" fat, all grades, cooked, roasted~^~BEEF,TOP LOIN PET RST,BNLS,LN & FAT,1/8" FAT,AL GDS,CKD,RSTD~^~Longissimus dorsi~^^^~Connective tissue 9%~^9^^6.25^^^
-~23288~^~1300~^~Beef, top loin petite roast, boneless, separable lean and fat, trimmed to 1/8" fat, choice, cooked, roasted~^~BEEF,TOP LOIN PETI RST,BNLS,LN & FAT,1/8" FAT,CHOIC,CKD,RSTD~^~Longissimus dorsi, URMIS #2135~^^^~Connective tissue 8%~^8^^6.25^^^
-~23289~^~1300~^~Beef, top loin petite roast, boneless, separable lean and fat, trimmed to 1/8" fat, select, cooked, roasted~^~BEEF,TOP LOIN PETITE RST,BNLS,LN & FAT,1/8" FAT,SEL,CKD,RSTD~^~Longissimus dorsi, URMIS #1320~^^^~Connective tissue 10%~^10^^6.25^^^
-~23290~^~1300~^~Beef, top loin petite roast/filet, boneless, separable lean and fat, trimmed to 1/8" fat, all grades, raw~^~BEEF,TOP LOIN PETIT RST/FILT,BNS,LN & FAT,1/8" FAT,AL GRD,RW~^~Longissimus dorsi~^^^~Connective tissue 11%~^11^^6.25^^^
-~23291~^~1300~^~Beef, top loin petite roast/filet, boneless, separable lean and fat, trimmed to 1/8" fat, choice, raw~^~BEEF,TOP LOIN PETITE RST/FILET,BNLS,LN & FAT,1/8" FAT,CHC,RW~^~URMIS #2135, Longissimus dorsi, URMIS #2137~^^^~Connective tissue 13%~^13^^6.25^^^
-~23292~^~1300~^~Beef, top loin petite roast/filet, boneless, separable lean and fat, trimmed to 1/8" fat, select, raw~^~BEEF,TOP LOIN PETITE RST/FILET,BNLS,LN & FAT,1/8" FAT,SEL,RW~^~URMIS #1320, Longissimus dorsi, URMIS #1322~^^^~Connective tissue 8%~^8^^6.25^^^
-~23293~^~1300~^~Beef, Australian, imported, grass-fed, ground, 85% lean / 15% fat, raw~^~BEEF,AUSTRALIAN,IMP,GRASS-FED,GROUND,85% LN / 15% FAT,RAW~^~Hamburger~^^^^0^^6.25^4.27^9.02^3.87
-~23294~^~1300~^~Beef, Australian, imported, grass-fed, loin, tenderloin steak/roast, boneless, separable lean only, raw~^~BEEF,AUS,IMP,GRSS-FED,LOIN,TENDERLN STK/RST,BNLESS,RAW~^~URMIS #1388, URMIS #1386~^^^~Connective tissue 0%, Separable fat 4%~^4^^6.25^^^
-~23295~^~1300~^~Beef, Australian, imported, Wagyu, loin, tenderloin steak/roast, boneless, separable lean only, Aust. marble score 4/5, raw~^~BEEF,AUS,IMP,WGU,TENLN STK/RST,BNLESS,LN,MRB SCR 4/5,RAW~^~URMIS #1388, URMIS #1386~^^^~Connective tissue 0%, Separable fat 3%~^3^^6.25^^^
-~23296~^~1300~^~Beef, Australian, imported, grass-fed, external fat, raw~^~BEEF,AUSTRALIAN,IMP,GRASS-FED,EXTERNAL FAT,RAW~^^^^^0^^6.25^^^
-~23297~^~1300~^~Beef, Australian, imported, grass-fed, seam fat, raw~^~BEEF,AUSTRALIAN,IMP,GRASS-FED,SEAM FAT,RAW~^^^^^0^^6.25^^^
-~23298~^~1300~^~Beef, Australian, imported, Wagyu, external fat, Aust. marble score 4/5, raw~^~BEEF,AUS,IMP,WAGYU,EXTERNAL FAT,AUST. MARBLE SCORE 4/5,RAW~^^^^^0^^6.25^^^
-~23299~^~1300~^~Beef, Australian, imported, Wagyu, seam fat, Aust. marble score 4/5, raw~^~BEEF,AUST,IMP,WAGYU,SEAM FAT,AUST. MARBLE SCORE 4/5,RAW~^^^^^0^^6.25^^^
-~23300~^~1300~^~Beef, Australian, imported, Wagyu, external fat, Aust. marble score 9, raw~^~BEEF,AUST,IMP,WAGYU,EXTERNAL FAT,AUST. MARBLE SCORE 9,RAW~^^^^^0^^6.25^^^
-~23301~^~1300~^~Beef, Australian, imported, Wagyu, seam fat, Aust. marble score 9, raw~^~BEEF,AUSTRALIAN,IMP,WAGYU,SEAM FAT,AUST. MARBLE SCORE 9,RAW~^^^^^0^^6.25^^^
-~23302~^~1300~^~Beef, Australian, imported, grass-fed, loin, tenderloin steak/roast, boneless, separable lean and fat, raw~^~BEEF,AUS,IMP,GRSS-FED,TNDERLN STK/RST,BNLESS,LN&FAT,RAW~^~URMIS #1386, URMIS #1388~^^^^0^^^^^
-~23303~^~1300~^~Beef, Australian, imported, grass-fed, loin, top loin steak/roast, boneless, separable lean only, raw~^~BEEF,AUS,IMP,GRSS-FED,TOP LOIN STK/RST,BNLESS,LN,RAW~^~URMIS #1404, URMIS #1397~^^^~Connective tissue 7%, Separable fat 16%~^23^^6.25^^^
-~23304~^~1300~^~Beef, Australian, imported, Wagyu, loin, tenderloin steak/roast, boneless, separable lean and fat, Aust. marble score 4/5, raw~^~BEEF,AU,IMP,WGU,TDLN STK/RST,BNLES,LN & FAT, MRB SCR 4/5,RAW~^~URMIS #1386, URMIS #1388~^^^^0^^^^^
-~23305~^~1300~^~Beef, Australian, imported, grass-fed, loin, top loin steak/roast, boneless, separable lean and fat, raw~^~BEEF,AUS,IMP,GRSS-FED, TOP LOIN STK/RST,BNLESS,LN FAT,RAW~^~URMIS #1397, URMIS #1404~^^^~Connective tissue 7%~^7^^^^^
-~23306~^~1300~^~Beef, Australian, imported, grass-fed, loin, top sirloin cap-off steak/roast, boneless, separable lean only, raw~^~BEEF,AUS,IMP,GRSS-FD,TOP SIRLN CP-OFF STK/RST,BNLESS,LN,RAW~^~URMIS #1426, URMIS #1419~^^^~Connective tissue 2%, separable fat 1%~^3^^6.25^^^
-~23307~^~1300~^~Beef, Australian, imported, grass-fed, rib, ribeye steak/roast lip-on, boneless, separable lean only, raw~^~BEEF,AUS,IMP,GRSS-FD,RIBEYE STK/RST LIP-ON,BNLESS,LN,RAW~^~URMIS #1194, URMIS# 1203~^^^~Connective tissue 7%, separable fat 14%~^21^^6.25^^^
-~23308~^~1300~^~Beef, Australian, imported, grass-fed, round, bottom round steak/roast, boneless, separable lean only, raw~^~BEEF,AUS,IMP,GRSS-FD,BTTM RND STK/RST,BNLESS,LN,RAW~^~URMIS #1466, URMIS #1464~^^^~Connective tissue 3%, separable fat 3%~^6^^6.25^^^
-~23309~^~1300~^~Beef, Australian, imported, grass-fed, round, top round cap-off steak/roast, boneless, separable lean only, raw~^~BEEF,AUS,IMP,GRSS-FD,RD,TP RND CAP-OFF STK/RST,BNLESS,LN,RAW~^~URMIS #1553, URMIS #1454~^^^~Connective tissue 1%, separable fat 1%~^2^^6.25^^^
-~23310~^~1300~^~Beef, Australian, imported, Wagyu, loin, tenderloin steak/roast, boneless, separable lean only, Aust. marble score 9, raw~^~BEEF,AUS,IMP,WGU,LOIN,TENLN STK/RST,BNLESS,LN, MRB SCR 9,RAW~^~URMIS #1388, URMIS #1386~^^^~Connective tissue 0%, separable fat 3%~^3^^6.25^^^
-~23311~^~1300~^~Beef, Australian, imported, Wagyu, loin, top loin steak/roast, boneless, separable lean only, Aust. marble score 4/5, raw~^~BEEF,AUS,IMP,WGU,TOP LN STK/RST,BNLESS,LN,MRB SCR 4/5,RAW~^~URMIS #1404, URMIS #1397~^^^~connective tissue 6%, separable fat 17%~^23^^6.25^^^
-~23312~^~1300~^~Beef, Australian, imported, Wagyu, loin, top loin steak/roast, boneless, separable lean only, Aust. marble score 9, raw~^~BEEF,AUS,IMP,WGU,TP LN STK/RST,BNLESS,LN,MARBLE SCORE 9,RAW~^~URMIS #1404, URMIS #1397~^^^~Connective tissue 6%, Separable fat 19%~^25^^6.25^^^
-~23313~^~1300~^~Beef, Australian, imported, Wagyu, rib, small end rib steak/roast, boneless, separable lean only, Aust. marble score 4/5, raw~^~BEEF,AUS,IMP,WGU,SMLENDRIB STK/RST,BNLESS, MRB SCR 4/5,RAW~^~URMIS #1238, URMIS #1245~^^^~Connective tissue 4%, Separable fat 22%~^26^^6.25^^^
-~23314~^~1300~^~Beef, Australian, imported, Wagyu, rib, small end rib steak/roast, boneless, separable lean only, Aust. marble score 9, raw~^~BEEF,AUS,IMP,WGU,SML END RIB STK/RST,BNLESS,MRB SCR 9,RAW~^~URMIS #1238, URMIS #1245~^^^~Connective tissue 4%, Separable fat 24%~^28^^6.25^^^
-~23315~^~1300~^~Beef, Australian, imported, grass-fed, loin, top sirloin cap-off steak/roast, boneless, separable lean and fat, raw~^~BEEF,AUS,IMP,GRSS-FD,TP SIRLN CP-OFFSTK/RST,BNLES,LN&FAT,RAW~^~URMIS #1426, URMIS #1419~^^^~Connective tissue 2%~^2^^^^^
-~23316~^~1300~^~Beef, Australian, imported, grass-fed, rib, ribeye steak/roast lip-on, boneless, separable lean and fat, raw~^~BEEF,AUS,IMP,GRSS-FD,RBEYE STK/RST LIP-ON,BNLESS,LN&FAT,RAW~^~URMIS #1194, URMIS #1203~^^^~Connective tissue 7%~^7^^^^^
-~23317~^~1300~^~Beef, Australian, imported, grass-fed, round, bottom round steak/roast, boneless, separable lean and fat, raw~^~BEEF,AUS,IMP,GRSS-FED,BTTM RND STK/RST,BNLESS,LN&FAT,RAW~^~URMIS #1466, URMIS #1464~^^^~Connective tissue 3%~^3^^^^^
-~23318~^~1300~^~Beef, Australian, imported, grass-fed, round, top round cap-off steak/roast, boneless, separable lean and fat, raw~^~BEEF,AUS,IMP,GRSS-FD,TP RNDCAP-OFF STK/RST,BNLESS,LN&FAT,RAW~^~URMIS #1553, URMIS #1454~^^^^0^^^^^
-~23319~^~1300~^~Beef, Australian, imported, Wagyu, loin, top loin steak/roast, boneless, separable lean and fat, Aust. marble score 4/5, raw~^~BEEF,AUS,IMP,WGU,TP LN STK/RST,BNLES,LN & FAT,MRB SCR4/5,RAW~^~URMIS #1404, URMIS #1397~^^^~Connective tissue 6%~^6^^^^^
-~23320~^~1300~^~Beef, Australian, imported, Wagyu, loin, top loin steak/roast, separable lean and fat, Aust. marble score 9, raw~^~BEEF,AUS,IMP,WGU,TP LN STK/RST,LN & FAT,MARBLE SCORE9,RAW~^~URMIS #1397, URMIS #1404~^^^~Connective tissue 6%~^6^^^^^
-~23321~^~1300~^~Beef, Australian, imported, Wagyu, rib, small end rib steak/roast, boneless, separable lean and fat, Aust. marble score 4/5, raw~^~BEEF,AUS,IMP,WGU,SMLEDRIB STK/RST,BNLES,LN&FAT,MRBSCR4/5,RAW~^~URMIS #1245, URMIS #1238~^^^~Connective tissue 4%~^4^^^^^
-~23322~^~1300~^~Beef, Australian, imported, Wagyu, rib, small end rib steak/roast, boneless, separable lean and fat, Aust. marble score 9, raw~^~BEEF,AUS,IMP,WGU,SMLEDRIB STK/RST,BNLESS,LN&FAT,MRB SCR9,RAW~^~URMIS #1245, URMIS #1238~^^^~Connective tissue 4%~^4^^^^^
-~23323~^~1300~^~Beef, Australian, imported, Wagyu, loin, tenderloin steak/roast, boneless, separable lean and fat, Aust. marble score 9, raw~^~BEEF,AU,IMP,WGU,TNLN, STK/RST,BNLESS,LN & FAT, MRB SCR 9,RAW~^~URMIS #1388, URMIS #1386~^^^^0^^^^^
-~23324~^~1300~^~Beef, round, top round steak, boneless, separable lean and fat, trimmed to 0" fat, all grades, raw~^~BEEF,RND,TOP RND STEAK,BNLESS,LN & FAT,0" FAT,ALL GRDS,RAW~^~Top Round Steak~^^~Y~^~Connective tissue 1%~^1^^6.25^^^
-~23325~^~1300~^~Beef, round, top round steak, boneless, separable lean and fat, trimmed to 0" fat, choice, raw~^~BEEF,RND,TOP RND STEAK,BNLESS,LN & FAT,0" FAT,CHOIC,RAW~^~URMIS # 2368, Top Round Steak~^^^~Connective tissue 1%~^1^^6.25^^^
-~23326~^~1300~^~Beef, round, top round steak, boneless, separable lean and fat, trimmed to 0" fat, select, raw~^~BEEF,RND,TOP RND STEAK,BNLESS,LN & FAT,0" FAT,SEL,RAW~^~URMIS # 1553, Top Round Steak~^^^~Connective tissue 1%~^1^^6.25^^^
-~23327~^~1300~^~Beef, round, top round roast, boneless, separable lean and fat, trimmed to 0" fat, all grades, raw~^~BEEF,RND,TOP RND RST,BNLESS,LN & FAT,0" FAT,ALL GRDS,RAW~^~Top Round Roast~^^~Y~^~Connective tissue 1%~^1^^6.25^^^
-~23328~^~1300~^~Beef, round, top round roast, boneless, separable lean and fat, trimmed to 0" fat, choice, raw~^~BEEF,RND,TOP RND RST,BNLESS,LN & FAT,0" FAT,CHOIC,RAW~^~URMIS # 2366, Top Round Roast~^^^~Connective tissue 1%~^1^^6.25^^^
-~23329~^~1300~^~Beef, round, top round roast, boneless, separable lean and fat, trimmed to 0" fat, select, raw~^~BEEF,RND,TOP RND RST,BNLESS,LN & FAT,0" FAT,SEL,RAW~^~Top Round Roast, URMIS # 1551~^^^~Connective tissue 1%~^1^^6.25^^^
-~23330~^~1300~^~Beef, round, eye of round roast, boneless, separable lean and fat, trimmed to 0" fat, all grades, raw~^~BEEF,RND,EYE OF RND RST,BNLESS,LN & FAT,0" FAT,ALL GRDS,RAW~^~Eye of Round Roast~^^~Y~^~Connective tissue 1%~^1^^6.25^^^
-~23331~^~1300~^~Beef, round, eye of round roast, boneless, separable lean and fat, trimmed to 0" fat, choice, raw~^~BEEF,RND,EYE OF RND RST,BNLESS,LN & FAT,0" FAT,CHOIC,RAW~^~URMIS # 2295, Eye of Round Roast~^^^~Connective tissue 1%~^1^^6.25^^^
-~23332~^~1300~^~Beef, round, eye of round roast, boneless, separable lean and fat, trimmed to 0" fat, select, raw~^~BEEF,RND,EYE OF RND RST,BNLESS,LN & FAT,0" FAT,SEL,RAW~^~Eye of Round Roast, URMIS # 1480~^^^~Connective tissue 1%~^1^^6.25^^^
-~23333~^~1300~^~Beef, round, eye of round steak, boneless, separable lean and fat, trimmed to 0" fat, all grades, raw~^~BEEF,RND,EYE OF RND STEAK,BNLESS,LN & FT,0" FAT,ALL GRDS,RAW~^~Eye of Round Steak~^^^~Connective tissue 1%~^1^^6.25^^^
-~23334~^~1300~^~Beef, round, eye of round steak, boneless separable lean and fat, trimmed to 0" fat, choice, raw~^~BEEF,RND,EYE OF RND STEAK,BNLESS LN & FAT,0" FAT,CHOIC,RAW~^~URMIS # 2296, Eye of Round Steak~^^^~Connective tissue 1%~^1^^6.25^^^
-~23335~^~1300~^~Beef, round, eye of round steak, boneless, separable lean and fat, trimmed to 0" fat, select, raw~^~BEEF,RND,EYE OF RND STEAK,BNLESS,LN & FAT,0" FAT,SEL,RAW~^~Eye of Round Steak, URMIS # 1481~^^^~Connective tissue 1%~^1^^6.25^^^
-~23336~^~1300~^~Beef, loin, tenderloin roast, boneless, separable lean and fat, trimmed to 0" fat, all grades, raw~^~BEEF,LOIN,TENDERLOIN RST,BNLESS,LN & FAT,0" FAT,ALL GRDS,RAW~^~Tenderloin Roast~^^^~Connective tissue 1%~^1^^6.25^^^
-~23337~^~1300~^~Beef, loin, tenderloin roast, boneless, separable lean and fat, trimmed to 0" fat, choice, raw~^~BEEF,LOIN,TENDERLOIN RST,BNLESS,LN & FAT,0" FAT,CHOIC,RAW~^~Tenderloin Roast, URMIS # 2201~^^^~Connective tissue 1%~^1^^6.25^^^
-~23338~^~1300~^~Beef, loin, tenderloin roast, boneless, separable lean and fat, trimmed to 0" fat, select, raw~^~BEEF,LOIN,TENDERLOIN RST,BNLESS,LN & FAT,0" FAT,SEL,RAW~^~Tenderloin Roast, URMIS # 1386~^^^~Connective tissue 2%~^2^^6.25^^^
-~23339~^~1300~^~Beef, loin, top loin steak, boneless, lip off, separable lean and fat, trimmed to 0" fat, all grades, raw~^~BEEF,LOIN,TOP LOIN STK,BNLS,LIP OFF,LN & FAT,0" FT,ALLGRD,RW~^~Boneless Strip Steak, Club Steak, New York Strip, Kansas City Strip~^^~Y~^~Connective tissue 9%~^9^^6.25^^^
-~23340~^~1300~^~Beef, loin, top loin steak, boneless, lip off, separable lean and fat, trimmed to 0" fat, choice, raw~^~BEEF,LOIN,TOP LOIN STK,BNLS,LIP OFF,LN & FAT,0" FT,CHOIC,RAW~^~URMIS # 2219, Boneless Strip Steak, Club Steak, New York Strip, Kansas City Strip~^^^~Connective tissue 9%~^9^^6.25^^^
-~23341~^~1300~^~Beef, loin, top loin steak, boneless, lip off, separable lean and fat, trimmed to 0" fat, select, raw~^~BEEF,LOIN,TOP LOIN STEAK,BNLS,LIP OFF,LN & FAT,0" FAT,SEL,RW~^~Boneless Strip Steak, URMIS # 1404~^^^~Connective tissue 9%~^9^^6.25^^^
-~23342~^~1300~^~Beef, loin, tenderloin steak, boneless, separable lean and fat, trimmed to 0" fat, all grades, raw~^~BEEF,LOIN,TENDERLOIN STEAK,BNLESS,L & F,0" FAT,ALL GRDS,RAW~^~Filet Mignon, Tenderloin Steak, Beef Medallions~^^^~Connective tissue 1%~^1^^6.25^^^
-~23343~^~1300~^~Beef, loin, tenderloin steak, boneless, separable lean and fat, trimmed to 0" fat, choice, raw~^~BEEF,LOIN,TENDERLOIN STEAK,BNLESS,LN & FAT,0" FAT,CHOIC,RAW~^~URMIS # 2203, Tenderloin Steak, Beef Medallions, Filet Mignon~^^^~Connective tissue 1%~^1^^6.25^^^
-~23344~^~1300~^~Beef, loin, tenderloin steak, boneless, separable lean and fat, trimmed to 0" fat, select, raw~^~BEEF,LOIN,TENDERLOIN STEAK,BNLESS,LN & FAT,0" FAT,SEL,RAW~^~URMIS # 1388, Tenderloin Steak, Beef Medallions, Filet Mignon~^^^~Connective tissue 1%~^1^^6.25^^^
-~23345~^~1300~^~Beef, loin, tenderloin roast, boneless, separable lean and fat, trimmed to 0" fat, all grades, cooked, roasted~^~BEEF,LOIN,TNDRLN RST,BNLESS,L & F,0" FAT,ALL GRDS,CKD,RSTD~^~Tenderloin Roast~^^~Y~^~Connective tissue 1%~^1^^6.25^^^
-~23346~^~1300~^~Beef, loin, tenderloin roast, boneless, separable lean and fat, trimmed to 0" fat, choice, cooked, roasted~^~BEEF,LOIN,TENDERLOIN RST,BNLESS,L & F,0" FAT,CHOIC,CKD,RSTD~^~URMIS # 2201, Tenderloin roast~^^^~Connective tissue 1%~^1^^6.25^^^
-~23347~^~1300~^~Beef, loin, tenderloin roast, boneless, separable lean and fat, trimmed to 0" fat, select, cooked, roasted~^~BEEF,LOIN,TENDERLOIN RST,BNLESS,LN & FAT,0" FAT,SEL,CKD,RSTD~^~URMIS # 1386, Tenderloin Roast~^^^~Connective tissue 1%~^1^^6.25^^^
-~23348~^~1300~^~Beef, round, top round roast, boneless, separable lean and fat, trimmed to 0" fat, all grades, cooked, roasted~^~BEEF,RND,TOP RND RST,BNLS,LN&FAT,0" FAT,ALLGRD,CKD,RSTD~^~Top Round Roast~^^~Y~^^0^^6.25^^^
-~23349~^~1300~^~Beef, round, top round roast, boneless, separable lean and fat, trimmed to 0" fat, choice, cooked, roasted~^~BEEF,RND,TOP RND RST,BNLESS,LN & FAT,0" FAT,CHOIC,CKD,RSTD~^~URMIS # 2366, Top Round Roast~^^^^0^^6.25^^^
-~23350~^~1300~^~Beef, round, top round roast, boneless, separable lean and fat, trimmed to 0" fat, select, cooked, roasted~^~BEEF,RND,TOP RND RST,BNLESS,LN & FAT,0" FAT,SEL,CKD,RSTD~^~URMIS # 1551, Top Round Roast~^^^^0^^6.25^^^
-~23351~^~1300~^~Beef, round, eye of round steak, boneless, separable lean and fat, trimmed to 0" fat, all grades, cooked, grilled~^~BEEF,RND,EYE OF RND STK,BNLESS,L & F,0" F,A GRDS,CKD,GRILLED~^~Eye of Round Steak~^^~Y~^^0^^6.25^^^
-~23352~^~1300~^~Beef, round, eye of round steak, boneless, separable lean and fat, trimmed to 0" fat, choice, cooked, grilled~^~BEEF,RND,EYE OF RD STEAK,BNLESS,L & F,0" FT,CHOIC,CK,GRLLED~^~URMIS # 2296, Eye of Round Steak~^^^^0^^6.25^^^
-~23353~^~1300~^~Beef, round, eye of round steak, boneless, separable lean and fat, trimmed to 0" fat, select, cooked, grilled~^~BEEF,RND,EYE OF RND STEAK,BNLS,LN & FAT,0" FAT,SEL,CKD,GRLD~^~Eye of Round Steak, URMIS # 1481~^^~Y~^^0^^6.25^^^
-~23354~^~1300~^~Beef, round, top round steak, boneless, separable lean only, trimmed to 0" fat, all grades, raw~^~BEEF,RND,TOP RND STEAK,BNLESS,LN,0" FAT,ALL GRDS,RAW~^~Top Round Steak~^^~Y~^~Connective tissue 1%~^1^^6.25^^^
-~23355~^~1300~^~Beef, round, top round steak, boneless, separable lean only, trimmed to 0" fat, choice, raw~^~BEEF,RND,TOP RND STEAK,BNLESS,LN,0" FAT,CHOIC,RAW~^~Top Round Steak, URMIS # 2368~^^^~Connective tissue 1%~^1^^6.25^^^
-~23356~^~1300~^~Beef, round, top round steak, boneless, separable lean only, trimmed to 0" fat, select, raw~^~BEEF,RND,TOP RND STEAK,BNLESS,LN,0" FAT,SEL,RAW~^~Top Round Steak, URMIS # 1553~^^^~Connective tissue 2%~^2^^6.25^^^
-~23357~^~1300~^~Beef, round, top round roast, boneless, separable lean only, trimmed to 0" fat, all grades, raw~^~BEEF,RND,TOP RND RST,BNLESS,LN,0" FAT,ALL GRDS,RAW~^~Top Round Roast~^^~Y~^~Connective tissue 2%~^2^^6.25^^^
-~23358~^~1300~^~Beef, round, top round roast, boneless, separable lean only, trimmed to 0" fat, choice, raw~^~BEEF,RND,TOP RND RST,BNLESS,LN,0" FAT,CHOIC,RAW~^~Top Round Roast, URMIS # 2366~^^^~Connective tissue 2%~^2^^6.25^^^
-~23359~^~1300~^~Beef, round, top round roast, boneless, separable lean only, trimmed to 0" fat, select, raw~^~BEEF,RND,TOP RND RST,BNLESS,LN,0" FAT,SEL,RAW~^~Top Round Roast, URMIS # 1551~^^^~Connective tissue 2%~^2^^6.25^^^
-~23360~^~1300~^~Beef, round, eye of round roast, boneless, separable lean only, trimmed to 0" fat, all grades, raw~^~BEEF,RND,EYE OF RND RST,BNLESS,LN,0" FAT,ALL GRDS,RAW~^~Eye of Round Roast~^^~Y~^~Connective tissue 2%~^2^^6.25^^^
-~23361~^~1300~^~Beef, round, eye of round roast, boneless, separable lean only, trimmed to 0" fat, choice, raw~^~BEEF,RND,EYE OF RND RST,BNLESS,LN,0" FAT,CHOIC,RAW~^~Eye of Round Roast, URMIS # 2295~^^^~Connective tissue 2%~^2^^6.25^^^
-~23362~^~1300~^~Beef, round, eye of round roast, boneless, separable lean only, trimmed to 0" fat, select, raw~^~BEEF,RND,EYE OF RND RST,BNLESS,LN,0" FAT,SEL,RAW~^~Eye of Round Roast, URMIS # 1480~^^^~Connective tissue 2%~^2^^6.25^^^
-~23363~^~1300~^~Beef, round, eye of round steak, boneless, separable lean only, trimmed to 0" fat, all grades, raw~^~BEEF,RND,EYE OF RND STEAK,BNLESS,LN,0" FAT,ALL GRDS,RAW~^~Eye of Round Steak~^^^~Connective tissue 2%~^2^^6.25^^^
-~23364~^~1300~^~Beef, round, eye of round steak, boneless, separable lean only, trimmed to 0" fat, choice, raw~^~BEEF,RND,EYE OF RND STEAK,BNLESS,LN,0" FAT,CHOIC,RAW~^~Eye of Round Steak, URMIS # 2296~^^^~Connective tissue 2%~^2^^6.25^^^
-~23365~^~1300~^~Beef, round, eye of round steak, boneless, separable lean only, trimmed to 0" fat, select, raw~^~BEEF,RND,EYE OF RND STEAK,BNLESS,LN,0" FAT,SEL,RAW~^~Eye of Round Steak, URMIS # 1481~^^^~Connective tissue 2%~^2^^6.25^^^
-~23366~^~1300~^~Beef, loin, tenderloin roast, boneless, separable lean only, trimmed to 0" fat, all grades, raw~^~BEEF,LOIN,TENDERLOIN RST,BNLESS,LN,0" FAT,ALL GRDS,RAW~^~Tenderloin Roast~^^^~Connective tissue 1%, separable fat 3%~^4^^6.25^^^
-~23367~^~1300~^~Beef, loin, tenderloin roast, boneless, separable lean only, trimmed to 0" fat, choice, raw~^~BEEF,LOIN,TENDERLOIN RST,BNLESS,LN,0" FAT,CHOIC,RAW~^~Tenderloin Roast, URMIS # 2201~^^^~Connective tissue 1%, separable fat 3%~^4^^6.25^^^
-~23368~^~1300~^~Beef, loin, tenderloin roast, boneless, separable lean only, trimmed to 0" fat, select, raw~^~BEEF,LOIN,TENDERLOIN RST,BNLESS,LN,0" FAT,SEL,RAW~^~Tenderloin Roast, URMIS # 1386~^^^~Connective tissue 1%, separable fat 2%~^3^^6.25^^^
-~23369~^~1300~^~Beef, loin, top loin steak, boneless, lip off, separable lean only, trimmed to 0" fat, all grades, raw~^~BEEF,LOIN,TOP LOIN STK,BNLS,LIP OFF,LN,0" FAT,ALL GRDS,RAW~^~Kansas City Strip, Boneless Strip Steak, Club Steak, New York Strip~^^~Y~^~Connective tissue 8%, separable fat 5%~^13^^6.25^^^
-~23370~^~1300~^~Beef, loin, top loin steak, boneless, lip off, separable lean only, trimmed to 0" fat, choice, raw~^~BEEF,LOIN,TOP LOIN STEAK,BNLESS,LIP OFF,LN,0" FAT,CHOIC,RAW~^~URMIS # 2219, Kansas City Strip, Boneless Strip Steak, Club Steak, New York Strip~^^^~Connective tissue 8%, separable fat 6%~^14^^6.25^^^
-~23371~^~1300~^~Beef, loin, top loin steak, boneless, lip off, separable lean only, trimmed to 0" fat, select, raw~^~BEEF,LOIN,TOP LOIN STEAK,BNLESS,LIP OFF,LN,0" FAT,SEL,RAW~^~URMIS # 1404, Kansas City Strip, Boneless Strip Steak, Club Steak, New York Strip~^^^~Connective tissue 8%, separable fat 4%~^12^^6.25^^^
-~23372~^~1300~^~Beef, loin, tenderloin steak, boneless, separable lean only, trimmed to 0" fat, all grades, raw~^~BEEF,LOIN,TENDERLOIN STEAK,BNLESS,LN,0" FAT,ALL GRDS,RAW~^~Fillet Mignon, Tenderloin Steak, Beef Medallions~^^^~Separable fat 2%~^2^^6.25^^^
-~23373~^~1300~^~Beef, loin, tenderloin steak, boneless, separable lean only, trimmed to 0" fat, choice, raw~^~BEEF,LOIN,TENDERLOIN STEAK,BNLESS,LN,0" FAT,CHOIC,RAW~^~URMIS # 2203, Tenderloin Steak, Beef Medallions, Filet Mignon~^^^~Separable fat 2%~^2^^6.25^^^
-~23374~^~1300~^~Beef, loin, tenderloin steak, boneless, separable lean only, trimmed to 0" fat, select, raw~^~BEEF,LOIN,TENDERLOIN STEAK,BNLESS,LN,0" FAT,SEL,RAW~^~URMIS # 1388, Tenderloin Steak, Beef Medallions, Filet Mignon~^^^~Separable fat 2%~^2^^6.25^^^
-~23375~^~1300~^~Beef, loin, tenderloin roast, boneless, separable lean only, trimmed to 0" fat, all grades, cooked, roasted~^~BEEF,LOIN,TENDERLOIN RST,BNLESS,LN,0" FAT,ALL GRDS,CKD,RSTD~^~Tenderloin Roast~^^~Y~^~Separable fat 1%~^1^^6.25^^^
-~23376~^~1300~^~Beef, loin, tenderloin roast, boneless, separable lean only, trimmed to 0" fat, choice, cooked, roasted~^~BEEF,LOIN,TENDERLOIN RST,BNLESS,LN,0" FAT,CHOIC,CKD,RSTD~^~Tenderloin Roast, URMIS # 2201~^^^~Separable fat 1%~^1^^6.25^^^
-~23377~^~1300~^~Beef, loin, tenderloin roast, separable lean only, boneless, trimmed to 0" fat, select, cooked, roasted~^~BEEF,LOIN,TENDERLOIN RST,LN,BNLESS,0" FAT,SEL,CKD,RSTD~^~Tenderloin Roast, URMIS # 1386~^^^~Separable fat 1%~^1^^6.25^^^
-~23378~^~1300~^~Beef, round, top round roast, boneless, separable lean only, trimmed to 0" fat, all grades, cooked, roasted~^~BEEF,RND,TOP RND RST,BNLESS,LN,0" FAT,ALL GRDS,CKD,RSTD~^~Top Round Roast~^^~Y~^^0^^6.25^4.27^9.02^3.87
-~23379~^~1300~^~Beef, round, top round roast, boneless, separable lean only, trimmed to 0" fat, choice, cooked, roasted~^~BEEF,RND,TOP RND RST,BNLESS,LN,0" FAT,CHOIC,CKD,RSTD~^~Top Round Roast, URMIS # 2366~^^^^0^^6.25^^^
-~23380~^~1300~^~Beef, round, top round roast, boneless, separable lean only, trimmed to 0" fat, select, cooked, roasted~^~BEEF,RND,TOP RND RST,BNLESS,LN,0" FAT,SEL,CKD,RSTD~^~Top Round Roast, URMIS # 1551~^^^^0^^6.25^^^
-~23381~^~1300~^~Beef, round, eye of round steak, boneless, separable lean only, trimmed to 0" fat, all grades, cooked, grilled~^~BEEF,RND,EYE OF RND STEAK,BNLESS,LN,0" FT,A GRDS,CKD,GRILLED~^~Eye of Round Steak~^^~Y~^^0^^6.25^^^
-~23382~^~1300~^~Beef, round, eye of round steak, boneless, separable lean only, trimmed to 0" fat, choice, cooked, grilled~^~BEEF,RND,EYE OF RND STEAK,BNLESS,LN,0" FAT,CHOIC,CKD,GRILLED~^~Eye of Round Steak, URMIS # 2296~^^^^0^^6.25^^^
-~23383~^~1300~^~Beef, round, eye of round steak, boneless, separable lean only, trimmed to 0" fat, select, cooked, grilled~^~BEEF,RND,EYE OF RND STEAK,BNLESS,LN,0" FAT,SEL,CKD,GRILLED~^~Eye of Round Steak, URMIS # 1481~^^^^0^^6.25^^^
-~23384~^~1300~^~Beef, loin, top loin steak, boneless, lip-on, separable lean only, trimmed to 1/8" fat, select, raw~^~BEEF,LOIN,TOP LOIN STEAK,BNLESS,LIP-ON,LN,1/8" FAT,SEL,RAW~^~URMIS # 1404, Kansas City Strip, Boneless Strip Steak, Club Steak, New York Strip~^^^~Connective tissue 7% Separable fat 14%~^21^^^^^
-~23385~^~1300~^~Beef, loin, top loin steak, boneless, lip-on, separable lean only, trimmed to 1/8" fat, choice, raw~^~BEEF,LOIN,TOP LOIN STEAK,BNLESS,LIP-ON,LN,1/8" FAT,CHOIC,RAW~^~URMIS # 2219, Kansas City Strip, Boneless Strip Steak, Club Steak, New York Strip~^^^~Connective tissue 7%, separable fat 14%~^22^^6.25^^^
-~23386~^~1300~^~Beef, loin, top loin steak, boneless, lip-on, separable lean only, trimmed to 1/8" fat, all grades, raw~^~Beef, ln, top ln stk, bneless lip-on, 1/8" fat all grdes raw~^~Kansas City Strip, Boneless Strip Steak, Club Steak, New York Strip~^^^~Connective tissue 7% Separable fat 14%~^22^^6.25^^^
-~23387~^~1300~^~Beef, loin, top loin steak, boneless, lip-on, separable lean and fat, trimmed to 1/8" fat, select, raw~^~BEEF,LN,TP LN STEAK,BNLESS,LIP-ON,LN & FAT,1/8" FAT,SEL,RAW~^~URMIS # 1404, Kansa City Strip, Boneless Strip Steak, Club Steak, New York Strip~^^^~Connective tissue 7%~^7^^6.25^^^
-~23388~^~1300~^~Beef, loin, top loin steak, boneless, lip-on, separable lean and fat, trimmed to 1/8" fat, all grades, raw~^~BEEF,LN,TP LN STK,BNLESS,LIPON,LN & FAT,1/8" FAT,ALL GRDS,RW~^~Kansas City Strip, Boneless Strip Steak, Club Steak, New York Strip~^^^~Connective tissue 7%~^7^^6.25^^^
-~23389~^~1300~^~Beef, loin, top loin steak, boneless, lip-on, separable lean and fat, trimmed to 1/8" fat, choice, cooked, grilled~^~BEEF,LN,TP LN STK,BNLESS,LIPON,L & F,1/8" FAT,CHOIC,GRILLED~^~URMIS # 2219, Kansas City Strip, Boneless Strip Steak, Club Steak, New York Strip~^^^~Connective tissue 8%~^8^^6.25^^^
-~23390~^~1300~^~Beef, loin, top loin steak, boneless, lip-on, separable lean and fat, trimmed to 1/8" fat, select, cooked, grilled~^~BEEF,LN,TP LN STK,BNLESS,LIPON,L & F,1/8" FAT,SeL, CK GRLED~^~URMIS # 1404, Kansas City Strip, Boneless Strip Steak, Club Steak, New York Strip~^^^~Connective tissue 9%~^9^^6.25^^^
-~23391~^~1300~^~Beef, loin, top loin steak, boneless, lip-on, separable lean and fat, trimmed to 1/8" fat, all grades, cooked, grilled~^~BEEF,LN,TP LN STK,BNLESS,LIPON,L & F,1/8 FAT,A GRDS, GRILLED~^~Kansas City Strip, Boneless Strip Steak, Club Steak, New York Strip~^^^~Connective tissue 8%~^8^^6.25^^^
-~23392~^~1300~^~Beef, loin, top loin steak, boneless, lip-on, separable lean only, trimmed to 1/8" fat, choice, cooked, grilled~^~BEEF,LON,TP LON STK,BNLSS,LIP-ON,LN,1/8" FAT,CHC,CKD,GRILLD~^~URMIS # 2219, Kansas City Strip, Boneless Strip Steak, Club Steak, New York Strip~^^^~Connective tissue 8%, separable fat 14%~^22^^6.25^^^
-~23393~^~1300~^~Beef, loin, top loin steak, boneless, lip-on, separable lean only, trimmed to 1/8" fat, select, cooked, grilled~^~BEEF,LN,TOP LN STK,BNLESS,LIP-ON,LN,1/8" FAT,SEL,CKD,GRILLD~^~URMIS # 1404, Kansas City Strip, Boneless Strip Steak, Club Steak, New York Strip~^^^~Connective tissue 9%, separable fat 12%~^21^^^^^
-~23394~^~1300~^~Beef, loin, top loin steak, boneless, lip-on, separable lean only, trimmed to 1/8" fat, all grades, cooked, grilled~^~BEEF,LN,TOP LN STK,BNLSS,LIP-ON,LN,1/8" FAT,ALL GRDS,,GRLLD~^~Kansas City Strip, Boneless Strip Steak, Club Steak, New York Strip~^^^~Connective tissue 8%, separable fat 13%~^21^^^^^
-~23395~^~1300~^~Beef, loin, top loin steak, boneless, lip-on, separable lean and fat, trimmed to 1/8" fat, choice, raw~^~BEEF,LOIN,TP LN STK,BNLESS,LIP-ON,L&F,1/8" FAT,CHOIC,RAW~^~URMIS # 2219, Kansas City Strip, Boneless Strip Steak, Club Steak, New York Strip~^^^~Connective tissue 7%, separable fat 14%~^21^^6.25^^^
-~23397~^~1300~^~Beef, New Zealand, imported, bolar blade, separable lean only, cooked, fast roasted~^~BEEF,NZ,IMP,BOLAR BLADE,LN,CKD,FAST RSTD~^^^^~Bone and connective tissue 5%, Separable fat 7%~^12^^6.25^^^
-~23398~^~1300~^~Beef, New Zealand, imported, bolar blade, separable lean only, raw~^~BEEF,NZ,IMP,BOLAR BLADE,LN,RAW~^^^^~Bone and Connective tissue 2%, Separable fat 5%~^7^^6.25^^^
-~23399~^~1300~^~Beef, New Zealand, imported, brisket navel end, separable lean only, cooked, braised~^~BEEF,NZ,IMP,BRISKET NAVEL END,LN,CKD,BRSD~^^^^~Separable fat 29%~^29^^6.25^^^
-~23401~^~1300~^~Beef, New Zealand, imported, brisket navel end, separable lean only, raw~^~BEEF,NZ,IMP,BRISKET NAVEL END,LN,RAW~^^^^~Separable fat 27%~^27^^6.25^^^
-~23402~^~1300~^~Beef, New Zealand, imported, brisket point end, separable lean only, cooked, braised~^~BEEF,NZ,IMP,BRISKET POINT END,LN,CKD,BRSD~^^^^~Separable fat 8%~^8^^6.25^^^
-~23403~^~1300~^~Beef, New Zealand, imported, brisket point end, separable lean only, raw~^~BEEF,NZ,IMP,BRISKET POINT END,LN,RAW~^^^^~Separable fat 6%~^6^^6.25^^^
-~23404~^~1300~^~Beef, New Zealand, imported, chuck eye roll, separable lean only, raw~^~BEEF,NZ,IMP,CHUCK EYE ROLL,LN,RAW~^^^^~Separable fat 8%~^8^^6.25^^^
-~23405~^~1300~^~Beef, New Zealand, imported, chuck eye roll, separable lean only, cooked, braised~^~BEEF,NZ,IMP,CHUCK EYE ROLL,LN,CKD,BRSD~^^^^~Separable fat 8%~^8^^6.25^^^
-~23406~^~1300~^~Beef, New Zealand, imported, cube roll, separable lean only, cooked, fast roasted~^~BEEF,NZ,IMP,CUBE ROLL,LN,CKD,FAST RSTD~^^^^~Separable fat 9%~^9^^6.25^^^
-~23407~^~1300~^~Beef, New Zealand, imported, cube roll, separable lean only, raw~^~BEEF,NZ,IMP,CUBE ROLL,LN,RAW~^^^^~Separable fat 11%~^11^^6.25^^^
-~23408~^~1300~^~Beef, New Zealand, imported, eye round, separable lean only, cooked, slow roasted~^~BEEF,NZ,IMP,EYE RND,LN,CKD,SLOW RSTD~^^^^^0^^6.25^^^
-~23409~^~1300~^~Beef, New Zealand, imported, eye round, separable lean only, raw~^~BEEF,NZ,IMP,EYE RND,LN,RAW~^^^^~Separable fat 2%~^2^^6.25^^^
-~23410~^~1300~^~Beef, New Zealand, imported, flank, separable lean only, cooked, braised~^~BEEF,NZ,IMP,FLANK,LN,CKD,BRSD~^^^^~Separable fat 3%~^3^^6.25^^^
-~23411~^~1300~^~Beef, New Zealand, imported, flank, separable lean only, raw~^~BEEF,NZ,IMP,FLANK,LN,RAW~^^^^~Separable fat 3%~^3^^6.25^^^
-~23412~^~1300~^~Beef, New Zealand, imported, flat, separable lean only, cooked, braised~^~BEEF,NZ,IMP,FLAT,LN,CKD,BRSD~^^^^~Separable fat 5%~^5^^6.25^^^
-~23413~^~1300~^~Beef, New Zealand, imported, flat, separable lean only, raw~^~BEEF,NZ,IMP,FLAT,LN,RAW~^^^^~Separable fat 5%~^5^^6.25^^^
-~23414~^~1300~^~Beef, New Zealand, imported, variety meats and by-products, heart, cooked, boiled~^~BEEF,NZ,IMP,VAR MEATS & BY-PRODUCTS,HEART,CKD,BLD~^^^^~Separable fat 15%~^15^^6.25^^^
-~23415~^~1300~^~Beef, New Zealand, imported, variety meats and by-products, heart, raw~^~BEEF,NZ,IMP,VAR MEATS & BY-PRODUCTS,HEART,RAW~^^^^~Separable fat 12%~^12^^6.25^^^
-~23416~^~1300~^~Beef, New Zealand, imported, hind shin, separable lean only, cooked, braised~^~BEEF,NZ,IMP,HIND SHIN,LN,CKD,BRSD~^^^^~Connective tissue 2%, Separable fat 5%~^7^^6.25^^^
-~23417~^~1300~^~Beef, New Zealand, imported, hind shin, separable lean only, raw~^~BEEF,NZ,IMP,HIND SHIN,LN,RAW~^^^^~Conective tissue .91%, Separable fat 6%~^7^^6.25^^^
-~23418~^~1300~^~Beef, New Zealand, imported, inside, raw~^~BEEF,NZ,IMP,INSIDE,RAW~^^^^~Connective tissue .55% Separable fat 2%~^3^^6.25^^^
-~23419~^~1300~^~Beef, New Zealand, imported, intermuscular fat, cooked~^~BEEF,NZ,IMP,INTERMUSCULAR FAT,CKD~^^^^^^^6.25^^^
-~23420~^~1300~^~Beef, New Zealand, imported, intermuscular fat, raw~^~BEEF,NZ,IMP,INTERMUSCULAR FAT,RAW~^^^^^^^6.25^^^
-~23421~^~1300~^~Beef, New Zealand, imported, variety meats and by-products, kidney, cooked, boiled~^~BEEF,NZ,IMP,VAR MEATS & BY-PRODUCTS,KIDNEY,CKD,BLD~^^^^~Connective tissue 20%~^20^^6.25^^^
-~23422~^~1300~^~Beef, New Zealand, imported, knuckle, cooked, fast fried~^~BEEF,NZ,IMP,KNUCKLE,CKD,FAST FRIED~^^^^~Connective tissue .33%, Separable fat 5%~^5^^6.25^^^
-~23423~^~1300~^~Beef, New Zealand, imported, variety meats and by-products, kidney, raw~^~BEEF,NZ,IMP,VAR MEATS & BY-PRODUCTS,KIDNEY,RAW~^^^^~Connective tissue 10%~^10^^6.25^^^
-~23424~^~1300~^~Beef, New Zealand, imported, variety meats and by-products liver, cooked, boiled~^~BEEF,NZ,IMP,VAR MEATS & BY-PRODUCTS LIVER,CKD,BLD~^^^^~Connective tissue 2%~^2^^6.25^^^
-~23425~^~1300~^~Beef, New Zealand, imported, variety meats and by-products, liver, raw~^~BEEF,NZ,IMP,VAR MEATS & BY-PRODUCTS,LIVER,RAW~^^^^~Connective tissue 3%~^3^^6.25^^^
-~23426~^~1300~^~Beef, New Zealand, imported, manufacturing beef, cooked, boiled~^~BEEF,NZ,IMP,MANUFACTURING BF,CKD,BLD~^^^^^0^^6.25^^^
-~23427~^~1300~^~Beef, New Zealand, imported, manufacturing beef, raw~^~BEEF,NZ,IMP,MANUFACTURING BF,RAW~^^^^^0^^6.25^^^
-~23428~^~1300~^~Beef, New Zealand, imported, oyster blade, separable lean only, cooked, braised~^~BEEF,NZ,IMP,OYSTER BLADE,LN,CKD,BRSD~^^^^^0^^6.25^^^
-~23429~^~1300~^~Beef, New Zealand, imported, oyster blade, separable lean only, raw~^~BEEF,NZ,IMP,OYSTER BLADE,LN,RAW~^^^^~Separable fat 4%~^4^^6.25^^^
-~23430~^~1300~^~Beef, New Zealand, imported, ribs prepared, cooked, fast roasted~^~BEEF,NZ,IMP,RIBS PREP,CKD,FAST RSTD~^^^^~Bone and Connective tissue 15%, Separable fat 10%~^25^^6.25^^^
-~23431~^~1300~^~Beef, New Zealand, imported, ribs prepared, raw~^~BEEF,NZ,IMP,RIBS PREP,RAW~^^^^~Bone and connective tissue 7%, Separable fat 15%~^22^^6.25^^^
-~23432~^~1300~^~Beef, New Zealand, imported, rump centre, separable lean only, cooked, fast fried~^~BEEF,NZ,IMP,RUMP CENTRE,LN,CKD,FAST FRIED~^^^^^0^^6.25^^^
-~23433~^~1300~^~Beef, New Zealand, imported, striploin, separable lean only, cooked, fast fried~^~BEEF,NZ,IMP,STRIPLOIN,LN,CKD,FAST FRIED~^^^^~Separable fat 14%~^14^^6.25^^^
-~23434~^~1300~^~Beef, New Zealand, imported, striploin, separable lean only, raw~^~BEEF,NZ,IMP,STRIPLOIN,LN,RAW~^^^^~Separable fat 16%~^16^^6.25^^^
-~23435~^~1300~^~Beef, New Zealand, imported, subcutaneous fat, cooked~^~BEEF,NZ,IMP,SUBCUTANEOUS FAT,CKD~^^^^^0^^6.25^^^
-~23436~^~1300~^~Beef, New Zealand, imported, subcutaneous fat, raw~^~BEEF,NZ,IMP,SUBCUTANEOUS FAT,RAW~^^^^^0^^6.25^^^
-~23437~^~1300~^~Beef, New Zealand, imported, sweetbread, cooked, boiled~^~BEEF,NZ,IMP,SWEETBREAD,CKD,BLD~^^^^~Conncetive tissue 4%, Separable fat 4%~^8^^^^^
-~23438~^~1300~^~Beef, New Zealand, imported, sweetbread, raw~^~BEEF,NZ,IMP,SWEETBREAD,RAW~^^^^~Conncetive tissue 2%, Separable fat 5%~^7^^6.25^^^
-~23439~^~1300~^~Beef, New Zealand, imported, tenderloin, separable lean only, cooked, fast fried~^~BEEF,NZ,IMP,TENDERLOIN,LN,CKD,FAST FRIED~^^^^^0^^6.25^^^
-~23440~^~1300~^~Beef, New Zealand, imported, oyster blade, separable lean and fat, raw~^~BEEF,NZ,IMP,OYSTER BLADE,LN & FAT,RAW~^^^^^0^^^^^
-~23441~^~1300~^~Beef, New Zealand, imported, tenderloin, separable lean only, raw~^~BEEF,NZ,IMP,TENDERLOIN,LN,RAW~^^^^~Separable fat 1%~^1^^6.25^^^
-~23442~^~1300~^~Beef, New Zealand, imported, variety meats and by-products, tongue, cooked, boiled~^~BEEF,NZ,IMP,VAR MEATS & BY-PRODUCTS,TONGUE,CKD,BLD~^^^^~Connective tissue 9%, Separable fat 2%~^11^^6.25^^^
-~23443~^~1300~^~Beef, New Zealand, imported, variety meats and by-products, tongue, raw~^~BEEF,NZ,IMP,VAR MEATS & BY-PRODUCTS,TONGUE,RAW~^^^^~Connective tissue 17%, Separable fat 3%~^20^^6.25^^^
-~23444~^~1300~^~Beef, New Zealand, imported, variety meats and by-products, tripe cooked, boiled~^~BEEF,NZ,IMP,VAR MEATS & BY-PRODUCTS,TRIPE CKD,BLD~^^^^~Separable fat 8%~^8^^6.25^^^
-~23445~^~1300~^~Beef, New Zealand, imported, variety meats and by-products, tripe uncooked, raw~^~BEEF,NZ,IMP,VAR MEATS & BY-PRODUCTS,TRIPE UNCKD,RAW~^^^^~Separable fat 10%~^10^^6.25^^^
-~23446~^~1300~^~Beef, New Zealand, imported, bolar blade, separable lean and fat, cooked, fast roasted~^~BEEF,NZ,IMP,BOLAR BLADE,LN & FAT,CKD,FAST RSTD~^^^^~Bone and connective tissue 5%~^5^^^^^
-~23447~^~1300~^~Beef, New Zealand, imported, bolar blade, separable lean and fat, raw~^~BEEF,NZ,IMP,BOLAR BLADE,LN & FAT,RAW~^^^^~Bone and Connective tissue 2%~^2^^^^^
-~23448~^~1300~^~Beef, New Zealand, imported, brisket navel end, separable lean and fat, cooked, braised~^~BEEF,NZ,IMP,BRISKET NAVEL END,LN & FAT,CKD,BRSD~^^^^^0^^^^^
-~23449~^~1300~^~Beef, New Zealand, imported, brisket navel end, separable lean and fat, raw~^~BEEF,NZ,IMP,BRISKET NAVEL END,LN & FAT,RAW~^^^^^0^^^^^
-~23450~^~1300~^~Beef, New Zealand, imported, brisket point end, separable lean and fat, cooked, braised~^~BEEF,NZ,IMP,BRISKET POINT END,LN & FAT,CKD,BRSD~^^^^^0^^^^^
-~23451~^~1300~^~Beef, New Zealand, imported, brisket point end, separable lean and fat, raw~^~BEEF,NZ,IMP,BRISKET POINT END,LN & FAT,RAW~^^^^^0^^^^^
-~23452~^~1300~^~Beef, New Zealand, imported, chuck eye roll, separable lean and fat, cooked, braised~^~BEEF,NZ,IMP,CHUCK EYE ROLL,LN & FAT,CKD,BRSD~^^^^^0^^^^^
-~23453~^~1300~^~Beef, New Zealand, imported, chuck eye roll, separable lean and fat, raw~^~BEEF,NZ,IMP,CHUCK EYE ROLL,LN & FAT,RAW~^^^^^0^^^^^
-~23454~^~1300~^~Beef, New Zealand, imported, cube roll, separable lean and fat, cooked, fast roasted~^~BEEF,NZ,IMP,CUBE ROLL,LN & FAT,CKD,FAST RSTD~^^^^^0^^^^^
-~23455~^~1300~^~Beef, New Zealand, imported, cube roll, separable lean and fat, raw~^~BEEF,NZ,IMP,CUBE ROLL,LN & FAT,RAW~^^^^^0^^^^^
-~23456~^~1300~^~Beef, New Zealand, imported, eye round, separable lean and fat, cooked, slow roasted~^~BEEF,NZ,IMP,EYE RND,LN & FAT,CKD,SLOW RSTD~^^^^^0^^^^^
-~23457~^~1300~^~Beef, New Zealand, imported, eye round, separable lean and fat, raw~^~BEEF,NZ,IMP,EYE RND,LN & FAT,RAW~^^^^^0^^^^^
-~23458~^~1300~^~Beef, New Zealand, imported, flank, separable lean and fat, cooked, braised~^~BEEF,NZ,IMP,FLANK,LN & FAT,CKD,BRSD~^^^^^0^^^^^
-~23459~^~1300~^~Beef, New Zealand, imported, flank, separable lean and fat, raw~^~BEEF,NZ,IMP,FLANK,LN & FAT,RAW~^^^^^0^^^^^
-~23460~^~1300~^~Beef, New Zealand, imported, flat, separable lean and fat, cooked, braised~^~BEEF,NZ,IMP,FLAT,LN & FAT,CKD,BRSD~^^^^^0^^^^^
-~23461~^~1300~^~Beef, New Zealand, imported, flat, separable lean and fat, raw~^~BEEF,NZ,IMP,FLAT,LN & FAT,RAW~^^^^^0^^^^^
-~23462~^~1300~^~Beef, New Zealand, imported, hind shin, separable lean and fat, cooked, braised~^~BEEF,NZ,IMP,HIND SHIN,LN & FAT,CKD,BRSD~^^^^~Connective tissue 2%~^2^^^^^
-~23463~^~1300~^~Beef, New Zealand, imported, hind shin, separable lean and fat, raw~^~BEEF,NZ,IMP,HIND SHIN,LN & FAT,RAW~^^^^~Connective tissue 1%~^1^^6.25^^^
-~23464~^~1300~^~Beef, New Zealand, imported, oyster blade, separable lean and fat, cooked, braised~^~BEEF,NZ,IMP,OYSTER BLADE,LN & FAT,CKD,BRSD~^^^^^0^^^^^
-~23465~^~1300~^~Beef, New Zealand, imported, rump centre, separable lean and fat, cooked, fast fried~^~BEEF,NZ,IMP,RUMP CENTRE,LN & FAT,CKD,FAST FRIED~^^^^^0^^^^^
-~23466~^~1300~^~Beef, New Zealand, imported, rump centre, separable lean only, raw~^~BEEF,NZ,IMP,RUMP CENTRE,LN,RAW~^^^^~Separable fat 5%~^5^^6.25^^^
-~23467~^~1300~^~Beef, New Zealand, imported, rump centre, separable lean and fat, raw~^~BEEF,NZ,IMP,RUMP CENTRE,LN & FAT,RAW~^^^^^0^^^^^
-~23468~^~1300~^~Beef, New Zealand, imported, striploin, separable lean and fat, cooked, fast fried~^~BEEF,NZ,IMP,STRIPLOIN,LN & FAT,CKD,FAST FRIED~^^^^^0^^^^^
-~23469~^~1300~^~Beef, New Zealand, imported, striploin, separable lean and fat, raw~^~BEEF,NZ,IMP,STRIPLOIN,LN & FAT,RAW~^^^^^0^^^^^
-~23470~^~1300~^~Beef, New Zealand, imported, tenderloin, separable lean and fat, cooked, fast fried~^~BEEF,NZ,IMP,TENDERLOIN,LN & FAT,CKD,FAST FRIED~^^^^^0^^^^^
-~23471~^~1300~^~Beef, New Zealand, imported, tenderloin, separable lean and fat, raw~^~BEEF,NZ,IMP,TENDERLOIN,LN & FAT,RAW~^^^^^0^^^^^
-~23472~^~1300~^~Beef, ground, 93% lean meat / 7% fat, raw~^~BEEF,GROUND,93% LN MEAT / 7% FAT~^~hamburger~^^^^0^^6.25^4.27^9.02^3.87
-~23473~^~1300~^~Beef, ground, 93% lean meat / 7% fat, patty, cooked, broiled~^~BEEF,GROUND,93% LN MEAT / 7% FAT,PATTY,CKD,BRLD~^~hamburger~^^^^0^^6.25^4.27^9.02^3.87
-~23474~^~1300~^~Beef, ground, 93% lean meat /7% fat, patty, cooked, pan-broiled~^~BEEF,GROUND,93% LN MEAT /7% FAT,PATTY,CKD,PAN-BROILED~^~hamburger~^^^^0^^6.25^4.27^9.02^3.87
-~23475~^~1300~^~Beef, ground, 93% lean meat / 7% fat, loaf, cooked, baked~^~BEEF,GROUND,93% LN MEAT / 7% FAT,LOAF,CKD,BKD~^~hamburger~^^^^0^^6.25^4.27^9.02^3.87
-~23476~^~1300~^~Beef, ground, 93% lean meat / 7% fat, crumbles, cooked, pan-browned~^~BEEF,GROUND,93% LN MEAT / 7% FAT,CRUMBLES,CKD,PAN-BROWNED~^~hamburger~^^^^0^^6.25^4.27^9.02^3.87
-~23477~^~1300~^~Beef, ground, 97% lean meat / 3% fat, raw~^~BEEF,GROUND,97% LN MEAT / 3% FAT,RAW~^~hamburger~^^^^0^^6.25^4.27^9.02^3.87
-~23478~^~1300~^~Beef, ground, 97% lean meat / 3% fat, patty, cooked, broiled~^~BEEF,GROUND,97% LN MEAT / 3% FAT,PATTY,CKD,BRLD~^~hamburger~^^^^0^^6.25^4.27^9.02^3.87
-~23479~^~1300~^~Beef, ground, 97% lean meat /3% fat, patty, cooked, pan-broiled~^~BEEF,GROUND,97% LN MEAT /3% FAT,PATTY,CKD,PAN-BROILED~^~hamburger~^^^^0^^6.25^4.27^9.02^3.87
-~23480~^~1300~^~Beef, ground, 97% lean meat / 3% fat, loaf, cooked, baked~^~BEEF,GROUND,97% LN MEAT / 3% FAT,LOAF,CKD,BKD~^~hamburger~^^^^0^^6.25^4.27^9.02^3.87
-~23481~^~1300~^~Beef, ground, 97% lean meat / 3% fat, crumbles, cooked, pan-browned~^~BEEF,GROUND,97% LN MEAT / 3% FAT,CRUMBLES,CKD,PAN-BROWNED~^~hamburger~^^^^0^^6.25^4.27^9.02^3.87
-~23482~^~1300~^~Beef, composite of trimmed retail cuts, separable lean and fat, trimmed to 0" fat, all grades, raw~^~BEEF,COMP OF RTL CUTS,LN & FAT,0" FAT,ALL GRDS,RAW~^^^^~No component data available~^0^^^^^
-~23483~^~1300~^~Beef, composite of trimmed retail cuts, separable lean only, trimmed to 1/8" fat, all grades, raw~^~BEEF,COMP OF RTL CUTS,LN,1/8" FAT,ALL GRDS,RAW~^^^^~No component data available~^0^^^^^
-~23484~^~1300~^~Beef, composite of trimmed retail cuts, separable lean only, trimmed to 1/8" fat, all grades, cooked~^~BEEF,COMP OF RTL CUTS,LN,1/8" FAT,ALL GRDS,CKD~^^^^~No component data available~^0^^^^^
-~23485~^~1300~^~Beef, composite of trimmed retail cuts, separable lean only, trimmed to 0" fat, all grades, raw~^~BEEF,COMP OF RTL CUTS,LN,0" FAT,ALL GRDS,RAW~^^^^~No component data available~^0^^^^^
-~23490~^~1300~^~Beef, composite of trimmed retail cuts, separable lean only, trimmed to 1/8" fat, choice, raw~^~BEEF,COMP OF RTL CUTS,LN,1/8" FAT,CHOIC,RAW~^^^^~No component data available~^^^^^^
-~23491~^~1300~^~Beef composite, separable lean only, trimmed to 1/8" fat, choice, cooked~^~BEEF COMP,LN,1/8" FAT,CHOIC,CKD~^^^^~No component data available~^^^^^^
-~23494~^~1300~^~Beef, composite of trimmed retail cuts, separable lean and fat, trimmed to 0" fat, choice, raw~^~BEEF,COMP OF RTL CUTS,LN & FAT,0" FAT,CHOIC,RAW~^^^^~No component data available~^^^^^^
-~23495~^~1300~^~Beef, composite of trimmed retail cuts, separable lean only, trimmed to 0" fat, choice, raw~^~BEEF,COMP OF RTL CUTS,LN,0" FAT,CHOIC,RAW~^^^^~No component data available~^^^^^^
-~23496~^~1300~^~Beef, composite of trimmed retail cuts, separable lean only, trimmed to 0" fat, select, raw~^~BEEF,COMP OF RTL CUTS,LN,0" FAT,SEL,RAW~^^^^~No component data available~^^^^^^
-~23497~^~1300~^~Beef, composite of trimmed retail cuts, separable lean and fat, trimmed to 0" fat, select, raw~^~BEEF,COMP OF RTL CUTS,LN & FAT,0" FAT,SEL,RAW~^^^^~No component data available~^^^^^^
-~23498~^~1300~^~Beef, composite of trimmed retail cuts, separable lean only, trimmed to 1/8" fat, select, cooked~^~BEEF,COMP OF RTL CUTS,LN,1/8" FAT,SEL,CKD~^^^^~No component data available~^^^^^^
-~23499~^~1300~^~Beef, composite of trimmed retail cuts, separable lean only, trimmed to 1/8" fat, select, raw~^~BEEF,COMP OF RTL CUTS,LN,1/8" FAT,SEL,RAW~^^^^~No component data available~^^^^^^
-~23509~^~1300~^~Beef, chuck, mock tender steak, separable lean only, trimmed to 0" fat, all grades, cooked, broiled~^~BEEF,CHUCK,MOCK TENDER STK,LN,0" FAT,ALL GRDS,CKD,BRLD~^~Mock Tender Steak~^^^~Bone and heavy connective tissue, 4%, separable fat, 0%~^4^^6.25^4.27^9.02^3.87
-~23511~^~1300~^~Beef, chuck, top blade, separable lean only, trimmed to 0" fat, all grades, cooked, broiled~^~BEEF,CHUCK,TOP BLADE,LN ONLY,TO 0" FAT,ALL GRDS,CKD,BRLD~^~Top Blade Roast, Boneless~^^^~Bone and heavy connective tissue, 15%, separable fat, 2%~^17^^6.25^4.27^9.02^3.87
-~23513~^~1300~^~Beef, chuck, clod roast, separable lean only, trimmed to 1/4" fat, all grades, raw~^~BEEF,CHUCK,CLOD RST,LN,1/4" FAT,ALL GRDS,RAW~^^^^~Bone and heavy connective tissue, 4%, separable fat, 5%~^9^^6.25^4.27^9.02^3.87
-~23514~^~1300~^~Beef, chuck, clod roast, separable lean only, trimmed to 0" fat, all grades, cooked, roasted~^~BEEF,CHUCK,CLOD RST,LN,0" FAT,ALL GRDS,CKD,RSTD~^^^^~Bone and heavy connective tissue, 4%, separable fat, 6%~^10^^6.25^4.27^9.02^3.87
-~23515~^~1300~^~Beef, chuck, clod roast, separable lean only, trimmed to 1/4" fat, all grades, cooked, roasted~^~BEEF,CHUCK,CLOD RST,LN ONLY,TO 1/4" FAT,ALL GRDS,CKD,RSTD~^^^^~Bone and heavy connective tissue, 8%, separable fat, 11%~^19^^6.25^4.27^9.02^3.87
-~23516~^~1300~^~Beef, shoulder steak, boneless, separable lean only, trimmed to 0" fat, all grades, cooked, grilled~^~BEEF,SHLDR STEAK,BNLESS,LN,0" FAT,ALL GRDS,CKD,GRILLED~^~URMIS #1133~^^^~Connective tissue 6%, seam fat 2%~^8^^6.25^4.27^9.02^3.87
-~23517~^~1300~^~Beef, chuck, clod steak, separable lean only, trimmed to 1/4" fat, all grades, cooked, braised~^~BEEF,CHUCK,CLOD STEAK,LN ONLY,TO 1/4" FAT,ALL GRDS,CKD,BRSD~^^^^~Bone and heavy connective tissue, 8%, separable fat, 13%~^21^^6.25^4.27^9.02^3.87
-~23519~^~1300~^~Beef, chuck, mock tender steak, separable lean and fat, trimmed to 0" fat, USDA choice, cooked, broiled~^~BEEF,CHCK,MCK TENDER STK,LN & FAT,0" FAT,USDA CHOIC,CKD,BRLD~^~URMIS #1931, Mock Tender Steak~^^^~Bone and heavy connective tissue, 5%~^5^^6.25^4.27^9.02^3.87
-~23521~^~1300~^~Beef, chuck, mock tender steak, separable lean and fat, trimmed to 0" fat, USDA select, cooked, broiled~^~BEEF,CHUCK,MOCK TENDER STK,LN & FAT,0" FAT,USDA SEL,CKD,BRLD~^~URMIS #1116, Mock Tender Steak~^^^~Bone and heavy connective tissue, 3%~^3^^6.25^4.27^9.02^3.87
-~23523~^~1300~^~Beef, chuck, top blade, separable lean and fat, trimmed to 0" fat, choice, cooked, broiled~^~BEEF,CHUCK,TOP BLADE,LN & FAT,0" FAT,CHOIC,CKD,BRLD~^~URMIS #1959, Top Blade Roast, Boneless~^^^~Bone and heavy connective tissue, 13%~^13^^6.25^4.27^9.02^3.87
-~23525~^~1300~^~Beef, chuck, top blade, separable lean and fat, trimmed to 0" fat, select, cooked, broiled~^~BEEF,CHUCK,TOP BLADE,LN & FAT,0" FAT,SEL,CKD,BRLD~^~URMIS #1144, Top Blade Roast, Boneless~^^^~Bone and heavy connective tissue, 16%~^16^^6.25^4.27^9.02^3.87
-~23528~^~1300~^~Beef, chuck, clod roast, separable lean and fat, trimmed to 0" fat, choice, cooked, roasted~^~BEEF,CHUCK,CLOD RST,LN & FAT,0" FAT,CHOIC,CKD,RSTD~^~URMIS #1947~^^^~Bone and heavy connective tissue, 4%~^4^^6.25^4.27^9.02^3.87
-~23531~^~1300~^~Beef, chuck, clod roast, separable lean and fat, trimmed to 0" fat, select, cooked, roasted~^~BEEF,CHUCK,CLOD RST,LN & FAT,0" FAT,SEL,CKD,RSTD~^~URMIS #1132~^^^~Bone and heavy connective tissue, 5%~^5^^6.25^4.27^9.02^3.87
-~23533~^~1300~^~Beef, shoulder steak, boneless, separable lean and fat, trimmed to 0" fat, choice, cooked, grilled~^~BEEF,SHLDR STEAK,BNLESS,LN & FAT,0" FAT,CHOIC,CKD,GRILLED~^~URMIS #1133~^^^~Connective tissue 6%~^6^^6.25^4.27^9.02^3.87
-~23536~^~1300~^~Beef, shoulder steak, boneless, separable lean and fat, trimmed to 0" fat, select, cooked, grilled~^~BEEF,SHLDR STEAK,BNLESS,LN & FAT,0" FAT,SEL,CKD,GRILLED~^~URMIS #1133~^^^~Connective tissue 6%~^6^^6.25^4.27^9.02^3.87
-~23540~^~1300~^~Beef, plate, inside skirt steak, separable lean and fat, trimmed to 0" fat, all grades, cooked, broiled~^~BEEF,PLATE,SKIRT STEAK,LN & FAT,0" FAT,ALL GRDS,CKD,BRLD~^~Plate Skirt Steak~^^^^0^^6.25^4.27^9.02^3.87
-~23541~^~1300~^~Beef, plate, outside skirt steak, separable lean and fat, trimmed to 0" fat, all grades, cooked, broiled~^~BEEF,PLATE,OUTSIDE SKIRT,LN & FAT,0" FAT,ALL GRDS,CKD,BRLD~^~Plate Skirt Steak~^^^^0^^6.25^4.27^9.02^3.87
-~23545~^~1300~^~Beef, loin, bottom sirloin butt, tri-tip steak, separable lean and fat, trimmed to 0" fat, all grades, cooked, broiled~^~BEEF,SIRLOIN,TRI-TIP STK,LN & FAT,0" FAT,ALL GRDS,CKD,BRLD~^^^^^0^^6.25^4.27^9.02^3.87
-~23547~^~1300~^~Beef, chuck, mock tender steak, separable lean and fat, trimmed to 0" fat, all grades, cooked, broiled~^~BEEF,CHUCK,MOCK TENDER STK,LN & FAT,0" FAT,ALL GRDS,CKD,BRLD~^~Mock Tender Steak~^^^~Bone and heavy connective tissue, 4%~^4^^6.25^4.27^9.02^3.87
-~23549~^~1300~^~Beef, chuck, top blade, separable lean and fat, trimmed to 0" fat, all grades, cooked, broiled~^~BEEF,CHUCK,TOP BLADE,LN & FAT,0" FAT,ALL GRDS,CKD,BRLD~^~Top Blade Roast, Boneless~^^^~Bone and heavy connective tissue, 15%~^15^^6.25^4.27^9.02^3.87
-~23552~^~1300~^~Beef, chuck, clod roast, separable lean and fat, trimmed to 0" fat, all grades, cooked, roasted~^~BEEF,CHUCK,CLOD RST,LN & FAT,0" FAT,ALL GRDS,CKD,RSTD~^^^^~Bone and heavy connective tissue, 4%~^4^^6.25^4.27^9.02^3.87
-~23554~^~1300~^~Beef, shoulder steak, boneless, separable lean and fat, trimmed to 0" fat, all grades, cooked, grilled~^~BEEF,SHLDR STEAK,BNLESS,LN & FAT,0" FAT,ALL GRDS,CKD,GRILLED~^~URMIS #1133~^^^~Connective tissue 6%~^6^^6.25^4.27^9.02^3.87
-~23557~^~1300~^~Beef, ground, 95% lean meat / 5% fat, raw~^~BEEF,GROUND,95% LN MEAT / 5% FAT,RAW~^~hamburger~^^~Y~^^0^^6.25^4.27^9.02^3.87
-~23558~^~1300~^~Beef, ground, 95% lean meat / 5% fat, patty, cooked, broiled~^~BEEF,GROUND,95% LN MEAT / 5% FAT,PATTY,CKD,BRLD~^~hamburger~^^~Y~^^0^^6.25^4.27^9.02^3.87
-~23559~^~1300~^~Beef, ground, 95% lean meat / 5% fat, patty, cooked, pan-broiled~^~BEEF,GROUND,95% LN MEAT / 5% FAT,PATTY,CKD,PAN-BROILED~^~hamburger~^^~Y~^^0^^6.25^4.27^9.02^3.87
-~23560~^~1300~^~Beef, ground, 95% lean meat / 5% fat, crumbles, cooked, pan-browned~^~BEEF,GROUND,95% LN MEAT / 5% FAT,CRUMBLES,CKD,PAN-BROWNED~^~hamburger~^^^^0^^6.25^4.27^9.02^3.87
-~23561~^~1300~^~Beef, ground, 95% lean meat / 5% fat, loaf, cooked, baked~^~BEEF,GROUND,95% LN MEAT / 5% FAT,LOAF,CKD,BKD~^~hamburger~^^^^0^^6.25^4.27^9.02^3.87
-~23562~^~1300~^~Beef, ground, 90% lean meat / 10% fat, raw~^~BEEF,GROUND,90% LN MEAT / 10% FAT,RAW~^~hamburger~^^~Y~^^0^^6.25^4.27^9.02^3.87
-~23563~^~1300~^~Beef, ground, 90% lean meat / 10% fat, patty, cooked, broiled~^~BEEF,GROUND,90% LN MEAT / 10% FAT,PATTY,CKD,BRLD~^~hamburger~^^~Y~^^0^^6.25^4.27^9.02^3.87
-~23564~^~1300~^~Beef, ground, 90% lean meat / 10% fat, patty, cooked, pan-broiled~^~BEEF,GROUND,90% LN MEAT / 10% FAT,PATTY,CKD,PAN-BROILED~^~hamburger~^^~Y~^^0^^6.25^4.27^9.02^3.87
-~23565~^~1300~^~Beef, ground, 90% lean meat / 10% fat, crumbles, cooked, pan-browned~^~BEEF,GROUND,90% LN MEAT / 10% FAT,CRUMBLES,CKD,PAN-BROWNED~^~hamburger~^^^^0^^6.25^4.27^9.02^3.87
-~23566~^~1300~^~Beef, ground, 90% lean meat / 10% fat, loaf, cooked, baked~^~BEEF,GROUND,90% LN MEAT / 10% FAT,LOAF,CKD,BKD~^~hamburger~^^^^0^^6.25^4.27^9.02^3.87
-~23567~^~1300~^~Beef, ground, 85% lean meat / 15% fat, raw (Includes foods for USDA's Food Distribution Program)~^~BEEF,GROUND,85% LN MEAT / 15% FAT,RAW~^~hamburger~^^~Y~^^0^^6.25^4.27^9.02^3.87
-~23568~^~1300~^~Beef, ground, 85% lean meat / 15% fat, patty, cooked, broiled~^~BEEF,GROUND,85% LN MEAT / 15% FAT,PATTY,CKD,BRLD~^~ground round, hamburger~^^~Y~^^0^^6.25^4.27^9.02^3.87
-~23569~^~1300~^~Beef, ground, 85% lean meat / 15% fat, patty, cooked, pan-broiled~^~BEEF,GROUND,85% LN MEAT / 15% FAT,PATTY,CKD,PAN-BROILED~^~hamburger~^^~Y~^^0^^6.25^4.27^9.02^3.87
-~23570~^~1300~^~Beef, ground, 85% lean meat / 15% fat, crumbles, cooked, pan-browned~^~BEEF,GROUND,85% LN MEAT / 15% FAT,CRUMBLES,CKD,PAN-BROWNED~^~ground round, hamburger~^^~Y~^^0^^6.25^4.27^9.02^3.87
-~23571~^~1300~^~Beef, ground, 85% lean meat / 15% fat, loaf, cooked, baked~^~BEEF,GROUND,85% LN MEAT / 15% FAT,LOAF,CKD,BKD~^~hamburger~^^^^0^^6.25^4.27^9.02^3.87
-~23572~^~1300~^~Beef, ground, 80% lean meat / 20% fat, raw~^~BEEF,GROUND,80% LN MEAT / 20% FAT,RAW~^~hamburger~^^~Y~^^0^^6.25^4.27^9.02^3.87
-~23573~^~1300~^~Beef, ground, 80% lean meat / 20% fat, patty, cooked, broiled~^~BEEF,GROUND,80% LN MEAT / 20% FAT,PATTY,CKD,BRLD~^~Hamburger~^^~Y~^^0^^6.25^4.27^9.02^3.87
-~23574~^~1300~^~Beef, ground, 80% lean meat / 20% fat, patty, cooked, pan-broiled~^~BEEF,GROUND,80% LN MEAT / 20% FAT,PATTY,CKD,PAN-BROILED~^~Hamburger~^^~Y~^^0^^6.25^4.27^9.02^3.87
-~23575~^~1300~^~Beef, ground, 80% lean meat / 20% fat, crumbles, cooked, pan-browned~^~BEEF,GROUND,80% LN MEAT / 20% FAT,CRUMBLES,CKD,PAN-BROWNED~^~hamburger~^^~Y~^^0^^6.25^4.27^9.02^3.87
-~23576~^~1300~^~Beef, ground, 80% lean meat / 20% fat, loaf, cooked, baked~^~BEEF,GROUND,80% LN MEAT / 20% FAT,LOAF,CKD,BKD~^~hamburger~^^^^0^^6.25^4.27^9.02^3.87
-~23577~^~1300~^~Beef, ground, 75% lean meat / 25% fat, raw~^~BEEF,GROUND,75% LN MEAT / 25% FAT,RAW~^~hamburger~^^~Y~^^0^^6.25^4.27^9.02^3.87
-~23578~^~1300~^~Beef, ground, 75% lean meat / 25% fat, patty, cooked, broiled~^~BEEF,GROUND,75% LN MEAT / 25% FAT,PATTY,CKD,BRLD~^~hamburger~^^~Y~^^0^^6.25^4.27^9.02^3.87
-~23579~^~1300~^~Beef, ground, 75% lean meat / 25% fat, patty, cooked, pan-broiled~^~BEEF,GROUND,75% LN MEAT / 25% FAT,PATTY,CKD,PAN-BROILED~^~hamburger~^^~Y~^^0^^6.25^4.27^9.02^3.87
-~23580~^~1300~^~Beef, ground, 75% lean meat / 25% fat, crumbles, cooked, pan-browned~^~BEEF,GROUND,75% LN MEAT / 25% FAT,CRUMBLES,CKD,PAN-BROWNED~^~hamburger~^^~Y~^^0^^6.25^4.27^9.02^3.87
-~23581~^~1300~^~Beef, ground, 75% lean meat / 25% fat, loaf, cooked, baked~^~BEEF,GROUND,75% LN MEAT / 25% FAT,LOAF,CKD,BKD~^~hamburger~^^~Y~^^0^^6.25^4.27^9.02^3.87
-~23582~^~1300~^~Beef, rib, small end (ribs 10-12), separable lean only, trimmed to 1/8" fat, select, raw~^~BEEF,RIB,SML END (RIBS 10-12),LN,1/8" FAT,SEL,RAW~^^^^~Bone and connective tissue 5%, sep fat 19%~^24^^6.25^4.27^9.02^3.87
-~23583~^~1300~^~Beef, tenderloin, steak, separable lean only, trimmed to 1/8" fat, select, raw~^~BEEF,TENDERLOIN,STEAK,LN,1/8" FAT,SEL,RAW~^~URMIS #1388, Beef Medallions, Filet Mignon~^^^~Bone and connective tissue 2%, sep fat 19%~^21^^6.25^4.27^9.02^3.87
-~23584~^~1300~^~Beef, top sirloin, steak, separable lean only, trimmed to 1/8" fat, select, raw~^~BEEF,TOP SIRLOIN,STEAK,LN,1/8" FAT,SEL,RAW~^~URMIS #1422~^^~Y~^~Bone and connective tissue, 3.26%,separable fat, 11.04%~^14^^6.25^4.27^9.02^3.87
-~23585~^~1300~^~Beef, short loin, top loin, steak, separable lean only, trimmed to 1/8" fat, select, raw~^~BEEF,SHRT LOIN,TOP LOIN,STEAK,LN,1/8" FAT,SEL,RAW~^~URMIS # 1404, Boneless Strip Steak, Club Steak, Kansas City Strip, New York Strip~^^^~Bone and connective tissue 9%, sep fat 15%~^24^^6.25^4.27^9.02^3.87
-~23586~^~1300~^~Beef, rib, small end (ribs 10-12), separable lean only, trimmed to 1/8" fat, select, cooked, broiled~^~BEEF,RIB,SML END (RIBS 10-12),LN,1/8" FAT,SEL,CKD,BRLD~^^^^~Bone and connective tissue 7%, sep fat 17%~^24^^6.25^4.27^9.02^3.87
-~23587~^~1300~^~Beef, tenderloin, steak, separable lean only, trimmed to 1/8" fat, select, cooked, broiled~^~BEEF,TENDERLOIN,STEAK,LN,1/8" FAT,SEL,CKD,BRLD~^~URMIS #1388~^^^~Bone and connective tissue 4%, sep fat 13%~^17^^6.25^4.27^9.02^3.87
-~23588~^~1300~^~Beef, top sirloin, steak, separable lean only, trimmed to 1/8" fat, select, cooked, broiled~^~BEEF,TOP SIRLOIN,STEAK,LN,1/8" FAT,SEL,CKD,BRLD~^~URMIS #1422~^^~Y~^~Bone and connective tissue, 4.85%, separable fat, 11.31%~^16^^6.25^4.27^9.02^3.87
-~23589~^~1300~^~Beef, short loin, top loin, steak, separable lean only, trimmed to 1/8" fat, select, cooked, grilled~^~BEEF,SHRT LOIN,TOP LOIN,STEAK,LN,1/8" FAT,SEL,CKD,GRILLED~^~URMIS # 1404, Boneless Strip Steak, Club Steak, Kansas City Strip, New York Strip~^^^~Bone and connective tissue 12%, sep fat 13%~^25^^6.25^4.27^9.02^3.87
-~23590~^~1300~^~Beef, round, bottom round , roast, separable lean only, trimmed to 1/8" fat, select, cooked, roasted~^~BEEF,RND,BTTM RND RST,LN,1/8" FAT,SEL,CKD,RSTD~^~URMIS #1464~^^~Y~^~Bone and connective tissue 3.32%, separable fat 9.02%~^12^^6.25^4.27^9.02^3.87
-~23591~^~1300~^~Beef, round, eye of round, roast, separable lean only, trimmed to 1/8" fat, select, cooked, roasted~^~BEEF,RND,EYE OF RND,RST,LN,1/8" FAT,SEL,CKD,RSTD~^~URMIS #1480~^^^~Bone and connective tissue 1%, sep fat 8%~^9^^6.25^4.27^9.02^3.87
-~23592~^~1300~^~Beef, round, top round, steak, separable lean only, trimmed to 1/8" fat, select, cooked, broiled~^~BEEF,RND,TOP RND,STEAK,LN,1/8" FAT,SEL,CKD,BRLD~^~URMIS #1553~^^^~Bone and connective tissue 1%, sep fat 5%~^6^^6.25^4.27^9.02^3.87
-~23593~^~1300~^~Beef, round, bottom round, steak, separable lean only, trimmed to 1/8" fat, select, cooked, braised~^~BEEF,RND,BTTM RND,STEAK,LN,1/8" FAT,SEL,CKD,BRSD~^~URMIS #1464~^^^~Bone and connective tissue 4.61%, separable fat 7.21%~^12^^6.25^4.27^9.02^3.87
-~23594~^~1300~^~Beef, round, bottom round, roast, separable lean only, trimmed to 1/8" fat, all grades, raw~^~BEEF,RND,BTTM RND,RST,LN,1/8" FAT,ALL GRDS,RAW~^^^^~Bone and connective tissue 2.49%, separable fat 10.55%~^13^^6.25^^^
-~23595~^~1300~^~Beef, brisket, flat half, separable lean only, trimmed to 1/8" fat, all grades, cooked, braised~^~BEEF,BRISKET,FLAT HALF,LN,1/8" FAT,ALL GRDS,CKD,BRSD~^^^^~Bone and connective tissue 1%, sep fat 19%~^20^^6.25^4.27^9.02^3.87
-~23596~^~1300~^~Beef, brisket, flat half, separable lean only, trimmed to 1/8" fat, all grades, raw~^~BEEF,BRISKET,FLAT HALF,LN,1/8" FAT,ALL GRDS,RAW~^^^^~Bone and connective tissue 1%, sep fat 27%~^28^^6.25^4.27^9.02^3.87
-~23597~^~1300~^~Beef, round, eye of round, roast, separable lean only, trimmed to 1/8" fat, all grades, raw~^~BEEF,RND,EYE OF RND,RST,LN,1/8" FAT,ALL GRDS,RAW~^^^^~Bone and connective tissue 2%, sep fat 8%~^10^^6.25^4.27^9.02^3.87
-~23598~^~1300~^~Beef, round, eye of round, roast, separable lean only, trimmed to 1/8" fat, all grades, cooked, roasted~^~BEEF,RND,EYE OF RND,RST,LN,1/8" FAT,ALL GRDS,CKD,RSTD~^^^~Y~^~Bone and connective tissue, 1.21%, separable fat, 7.42%~^9^^6.25^4.27^9.02^3.87
-~23599~^~1300~^~Beef, rib, small end (ribs 10-12), separable lean only, trimmed to 1/8" fat, all grades, raw~^~BEEF,RIB,SML END (RIBS 10-12),LN,1/8" FAT,ALL GRDS,RAW~^^^^~Bone and connective tissue 5%, sep fat 20%~^25^^6.25^4.27^9.02^3.87
-~23600~^~1300~^~Beef, tenderloin, steak, separable lean only, trimmed to 1/8" fat, all grades, cooked, broiled~^~BEEF,TENDERLOIN,STEAK,LN,1/8" FAT,ALL GRDS,CKD,BRLD~^~Filet Mignon, Beef Medallions~^^~Y~^~Bone and connective tissue, 4.20%, separable fat, 13.37%~^18^^6.25^4.27^9.02^3.87
-~23601~^~1300~^~Beef, tenderloin, steak, separable lean only, trimmed to 1/8" fat, all grades, raw~^~BEEF,TENDERLOIN,STEAK,LN,1/8" FAT,ALL GRDS,RAW~^~Filet Mignon, Beef Medallions~^^^~Bone and connective tissue 2%, sep fat 18%~^20^^6.25^4.27^9.02^3.87
-~23602~^~1300~^~Beef, chuck, arm pot roast, separable lean only, trimmed to 1/8" fat, all grades, cooked, braised~^~BEEF,CHUCK,ARM POT RST,LN,1/8" FAT,ALL GRDS,CKD,BRSD~^^^~Y~^~Bone and connective tissue, 27.87%, separable fat, 13.50%~^41^^6.25^4.27^9.02^3.87
-~23603~^~1300~^~Beef, chuck, arm pot roast, separable lean only, trimmed to 1/8" fat, all grades, raw~^~BEEF,CHUCK,ARM POT RST,LN,1/8" FAT,ALL GRDS,RAW~^^^^~Bone and connective tissue 21%, sep fat 16%~^37^^6.25^4.27^9.02^3.87
-~23604~^~1300~^~Beef, round, bottom round, roast, separable lean only, trimmed to 1/8" fat, all grades, cooked~^~BEEF,RND,BTTM RND,RST,LN,1/8" FAT,ALL GRDS,CKD~^^^^~Bone and connective tissue 2.33%, separable fat 8.89%~^11^^6.25^^^
-~23605~^~1300~^~Beef, round, bottom round, steak, separable lean only, trimmed to 1/8" fat, all grades, cooked, braised~^~BEEF,RND,BTTM RND,STEAK,LN,1/8" FAT,ALL GRDS,CKD,BRSD~^^^~Y~^~Bone and connective tissue, 4.78%, separable fat, 6.51%~^11^^6.25^4.27^9.02^3.87
-~23606~^~1300~^~Beef, short loin, top loin, steak, separable lean only, trimmed to 1/8" fat, all grades, cooked, broiled~^~BEEF,SHRT LOIN,TOP LOIN,STEAK,LN,1/8" FAT,ALL GRDS,CKD,BRLD~^~Kansas City Strip, Boneless Strip Steak, Club Steak, New York Strip~^^~Y~^~Bone and connective tissue, 11.91%, separable fat, 13.48%~^25^^6.25^4.27^9.02^3.87
-~23607~^~1300~^~Beef, short loin, top loin steak, separable lean only, trimmed to 1/8" fat, all grades, raw~^~BEEF,SHRT LOIN,TOP LOIN STEAK,LN,1/8" FAT,ALL GRDS,RAW~^~Kansas City Strip, Boneless Strip Steak, Club Steak, New York Strip~^^^~Bone and connective tissue 10%, separable fat 14%~^24^^6.25^4.00^9.00^4.00
-~23608~^~1300~^~Beef, round, top round, steak, separable lean only, trimmed to 1/8" fat, all grades, cooked, broiled~^~BEEF,RND,TOP RND,STEAK,LN,1/8" FAT,ALL GRDS,CKD,BRLD~^^^~Y~^~Bone and connective tissue, 0.94%, separable fat, 5.51%~^6^^6.25^4.27^9.02^3.87
-~23609~^~1300~^~Beef, round, top round, steak, separable lean only, trimmed to 1/8" fat, all grades, raw~^~BEEF,RND,TOP RND,STEAK,LN,1/8" FAT,ALL GRDS,RAW~^^^^~Separable fat 6%~^6^^6.25^4.27^9.02^3.87
-~23610~^~1300~^~Beef, top sirloin, steak, separable lean only, trimmed to 1/8" fat, all grades, cooked, broiled~^~BEEF,TOP SIRLOIN,STEAK,LN,1/8" FAT,ALL GRDS,CKD,BRLD~^^^~Y~^~Bone and connective tissue, 4.34%, separable fat, 12.57%~^17^^6.25^4.27^9.02^3.87
-~23611~^~1300~^~Beef, top sirloin, steak, separable lean only, trimmed to 1/8" fat, all grades, raw~^~BEEF,TOP SIRLOIN,STEAK,LN,1/8" FAT,ALL GRDS,RAW~^^^~Y~^~Bone and connective tissue 3%, sep fat 13%~^16^^6.25^4.27^9.02^3.87
-~23612~^~1300~^~Beef, chuck, arm pot roast, separable lean only, trimmed to 1/8" fat, choice, raw~^~BEEF,CHUCK,ARM POT RST,LN,1/8" FAT,CHOIC,RAW~^~URMIS #1864~^^~Y~^~Bone and connective tissue 21%, sep fat 16%~^37^^6.25^4.27^9.02^3.87
-~23613~^~1300~^~Beef, brisket, flat half, separable lean only, trimmed to 1/8" fat, choice, raw~^~BEEF,BRISKET,FLAT HALF,LN,1/8" FAT,CHOIC,RAW~^~URMIS #2438~^^^~Bone and connective tissue 1%, sep fat 27%~^28^^6.25^4.27^9.02^3.87
-~23614~^~1300~^~Beef, chuck, arm pot roast, separable lean only, trimmed to 1/8" fat, choice, cooked, braised~^~BEEF,CHUCK,ARM POT RST,LN,1/8" FAT,CHOIC,CKD,BRSD~^~URMIS #1864~^^~Y~^~Bone and connective tissue, 29.58%, separable fat, 12.85%~^42^^6.25^4.27^9.02^3.87
-~23615~^~1300~^~Beef, brisket, flat half, separable lean only, trimmed to 1/8" fat, choice, cooked, braised~^~BEEF,BRISKET,FLAT HALF,LN,1/8" FAT,CHOIC,CKD,BRSD~^~URMIS #2438~^^^~Separable fat~^20^^6.25^4.27^9.02^3.87
-~23616~^~1300~^~Beef, round, eye of round, roast, separable lean only, trimmed to 1/8" fat, choice, raw~^~BEEF,RND,EYE OF RND,RST,LN,1/8" FAT,CHOIC,RAW~^~URMIS #2295~^^~Y~^~Bone and connective tissue 2%, sep fat 8%~^10^^6.25^4.27^9.02^3.87
-~23617~^~1300~^~Beef, round, top round, steak, separable lean only, trimmed to 1/8" fat, choice, raw~^~BEEF,RND,TOP RND,STEAK,LN,1/8" FAT,CHOIC,RAW~^~URMIS #2368~^^~Y~^~Separable fat~^6^^6.25^4.27^9.02^3.87
-~23618~^~1300~^~Beef, round, bottom round, roast, separable lean only, trimmed to 1/8" fat, choice, raw~^~BEEF,RND,BTTM RND,RST,LN,1/8" FAT,CHOIC,RAW~^~URMIS #2279~^^^~Bone and connective tissue 2.44%, separable fat 10.58%~^13^^6.25^4.27^9.02^3.87
-~23619~^~1300~^~Beef, round, bottom round, roast, separable lean only, trimmed to 1/8" fat, choice, cooked, roasted~^~BEEF,RND,BTTM RND,RST,LN,1/8" FAT,CHOIC,CKD,RSTD~^~URMIS #2279~^^^~Bone and connective tissue 1.37%, separable fat 8.55%~^10^^6.25^4.27^9.02^3.87
-~23620~^~1300~^~Beef, round, eye of round, roast, separable lean only, trimmed to 1/8" fat, choice, cooked, roasted~^~BEEF,RND,EYE OF RND,RST,LN,1/8" FAT,CHOIC,CKD,RSTD~^~URMIS #2295~^^^~Bone and connective tissue 1%, sep fat 8%~^9^^6.25^4.27^9.02^3.87
-~23621~^~1300~^~Beef, round, top round, steak, separable lean only, trimmed to 1/8" fat, choice, cooked, broiled~^~BEEF,RND,TOP RND,STEAK,LN,1/8" FAT,CHOIC,CKD,BRLD~^~URMIS #2368~^^^~Bone and connective tissue 1%, sep fat 6%~^7^^6.25^4.27^9.02^3.87
-~23622~^~1300~^~Beef, round, bottom round, steak, separable lean only, trimmed to 1/8" fat, choice, cooked, braised~^~BEEF,RND,BTTM RND,STEAK,LN,1/8" FAT,CHOIC,CKD,BRSD~^~URMIS #2279~^^~Y~^~Bone and connective tissue 5.23%, separable fat 5.81%~^11^^6.25^4.27^9.02^3.87
-~23623~^~1300~^~Beef, rib, small end (ribs 10-12), separable lean only, trimmed to 1/8" fat, choice, raw~^~BEEF,RIB,SML END (RIBS 10-12),LN,1/8" FAT,CHOIC,RAW~^^^^~Bone and connective tissue 5%, sep fat 21%~^26^^6.25^4.27^9.02^3.87
-~23624~^~1300~^~Beef, tenderloin, steak, separable lean only, trimmed to 1/8" fat, choice, raw~^~BEEF,TENDERLOIN,STEAK,LN,1/8" FAT,CHOIC,RAW~^~URMIS #1388, Beef Medallions, Filet Mignon~^^^~Bone and connective tissue 3%, sep fat 16%~^19^^6.25^4.27^9.02^3.87
-~23625~^~1300~^~Beef, top sirloin, steak, separable lean only, trimmed to 1/8" fat, choice, raw~^~BEEF,TOP SIRLOIN,STEAK,LN,1/8" FAT,CHOIC,RAW~^~URMIS #2237~^^~Y~^~Bone and connective tissue, 3.05%, separable fat, 14.02%~^17^^6.25^4.27^9.02^3.87
-~23626~^~1300~^~Beef, rib, small end (ribs 10-12), separable lean only, trimmed to 1/8"fat, choice, cooked, broiled~^~BEEF,RIB,SML END (RIBS 10-12),LN,1/8"FAT,CHOIC,CKD,BRLD~^^^~Y~^~Bone and connective tissue 7%, separable fat 20%~^27^^6.25^4.27^9.02^3.87
-~23627~^~1300~^~Beef, short loin, top loin, steak, separable lean only, trimmed to 1/8" fat, choice, raw~^~BEEF,SHRT LOIN,TOP LOIN,STEAK,LN,1/8" FAT,CHOIC,RAW~^~URMIS # 2219, Boneless Strip Steak, Club Steak, Kansas City Strip, New York Strip~^^^~Bone and connective tissue 10%, separable fat 13%~^23^^6.25^4.27^9.02^3.87
-~23628~^~1300~^~Beef, tenderloin, steak, separable lean only, trimmed to 1/8" fat, choice, cooked, broiled~^~BEEF,TENDERLOIN,STEAK,LN,1/8" FAT,CHOIC,CKD,BRLD~^~URMIS #1388, Beef Medallions, Filet Mignon~^^^~Bone and connective tissue 5%, sep fat 13%~^18^^6.25^4.27^9.02^3.87
-~23629~^~1300~^~Beef, top sirloin, steak, separable lean only, trimmed to 1/8" fat, choice, cooked, broiled~^~BEEF,TOP SIRLOIN,STEAK,LN,1/8" FAT,CHOIC,CKD,BRLD~^~URMIS #2237~^^~Y~^~Bone and connective tissue 4%, sep fat 13%~^17^^6.25^4.27^9.02^3.87
-~23630~^~1300~^~Beef, short loin, top loin, steak, separable lean only, trimmed to 1/8" fat, choice, cooked, broiled~^~BEEF,SHRT LOIN,TOP LOIN,STEAK,LN,1/8" FAT,CHOIC,CKD,BRLD~^~URMIS # 2219, Boneless Strip Steak, Club Steak, Kansas City Strip, New York Strip~^^^~Bone and connective tissue 12%, sep fat 14%~^26^^6.25^4.27^9.02^3.87
-~23631~^~1300~^~Beef, chuck, arm pot roast, separable lean only, trimmed to 1/8" fat, select, raw~^~BEEF,CHUCK,ARM POT RST,LN,1/8" FAT,SEL,RAW~^~URMIS #1049~^^~Y~^~Bone and connective tissue 20%, sep fat 17%~^37^^6.25^4.27^9.02^3.87
-~23632~^~1300~^~Beef, brisket, flat half, separable lean only, trimmed to 1/8" fat, select, raw~^~BEEF,BRISKET,FLAT HALF,LN,1/8" FAT,SEL,RAW~^~URMIS #1623~^^^~Separable fat~^28^^6.25^4.27^9.02^3.87
-~23633~^~1300~^~Beef, chuck, arm pot roast, separable lean only, trimmed to 1/8" fat, select, cooked, braised~^~BEEF,CHUCK,ARM POT RST,LN,1/8" FAT,SEL,CKD,BRSD~^~URMIS #1049~^^~Y~^~Bone and connective tissue, 26.23%, separable fat, 14.12%~^40^^6.25^4.27^9.02^3.87
-~23634~^~1300~^~Beef, brisket, flat half, separable lean only, trimmed to 1/8" fat, select, cooked, braised~^~BEEF,BRISKET,FLAT HALF,LN,1/8" FAT,SEL,CKD,BRSD~^~URMIS #1623~^^^~Separable fat~^19^^6.25^4.27^9.02^3.87
-~23635~^~1300~^~Beef, round, eye of round, roast, separable lean only, trimmed to 1/8" fat, select, raw~^~BEEF,RND,EYE OF RND,RST,LN,1/8" FAT,SEL,RAW~^~URMIS #1480~^^^~Bone and connective tissue 3%, sep fat 7%~^10^^6.25^4.27^9.02^3.87
-~23636~^~1300~^~Beef, round, top round, steak, separable lean only, trimmed to 1/8" fat, select, raw~^~BEEF,RND,TOP RND,STEAK,LN,1/8" FAT,SEL,RAW~^~URMIS #1553~^^^~Separable fat~^7^^6.25^4.27^9.02^3.87
-~23637~^~1300~^~Beef, round, bottom round, roast, separable lean only, trimmed to 1/8" fat, select, raw~^~BEEF,RND,BTTM RND,RST,LN,1/8" FAT,SEL,RAW~^~URMIS #1464~^^^~Bone and connective tissue 1.97%, separable fat 10.51%~^12^^6.25^4.27^9.02^3.87
-~23638~^~1300~^~Beef, rib, small end (ribs 10-12), separable lean only, trimmed to 1/8" fat, all grades, cooked, broiled~^~BEEF,RIB,SML END (RIBS 10-12),LN,1/8" FAT,ALL GRDS,CKD,BRLD~^^^~Y~^~Bone and connective tissue, 7.11%, separable fat, 18.25%~^25^^6.25^4.27^9.02^3.87
-~23640~^~1300~^~Beef, variety meats and by-products, tripe, cooked, simmered~^~BEEF,VAR MEATS & BY-PRODUCTS,TRIPE,CKD,SIMMRD~^^^^^0^^6.25^4.27^9.02^3.87
-~23646~^~1300~^~Beef, bottom sirloin, tri-tip roast, separable lean only, trimmed to 0" fat, all grades, raw~^~BEEF,BTTM SIRLOIN,TRI-TIP RST,LN,0" FAT,ALL GRDS,RAW~^^^^~Bone and connective tissue 1%, sep fat 5%~^6^^6.25^4.27^9.02^3.87
-~23647~^~1300~^~Beef, bottom sirloin, tri-tip roast, separable lean only, trimmed to 0" fat, choice, cooked, roasted~^~BEEF,BTTM SIRLOIN,TRI-TIP RST,LN,0" FAT,CHOIC,CKD,RSTD~^~URMIS #2244~^^^~Bone and connective tissue 2%, sep fat 4%~^6^^6.25^^^
-~23648~^~1300~^~Beef, bottom sirloin, tri-tip roast, separable lean only, trimmed to 0" fat, choice, raw~^~BEEF,BTTM SIRLOIN,TRI-TIP RST,LN,0" FAT,CHOIC,RAW~^~URMIS #2244~^^^~Bone and connective tissue 2%, sep fat 4%~^6^^6.25^4.27^9.02^3.87
-~23649~^~1300~^~Beef, bottom sirloin, tri-tip roast, separable lean only, trimmed to 0" fat, select, cooked, roasted~^~BEEF,BTTM SIRLOIN,TRI-TIP RST,LN,0" FAT,SEL,CKD,RSTD~^~URMIS #1429~^^^~Bone and connective tissue 1%, sep fat 5%~^6^^6.25^4.27^9.02^3.87
-~23650~^~1300~^~Beef, bottom sirloin, tri-tip roast, separable lean only, trimmed to 0" fat, select, raw~^~BEEF,BTTM SIRLOIN,TRI-TIP RST,LN,0" FAT,SEL,RAW~^~URMIS #1429~^^^~Bone and connective tissue 1%, sep fat 5%~^6^^6.25^4.27^9.02^3.87
-~23651~^~1300~^~Beef, round, tip round, roast, separable lean only, trimmed to 0" fat, all grades, raw~^~BEEF,RND,TIP RND,RST,LN,0" FAT,ALL GRDS,RAW~^^^^~Bone and connective tissue 4%, sep fat 4%~^8^^6.25^4.27^9.02^3.87
-~23652~^~1300~^~Beef, round, tip round, roast, separable lean only, trimmed to 0" fat, choice, raw~^~BEEF,RND,TIP RND,RST,LN,0" FAT,CHOIC,RAW~^~URMIS # 2340~^^^~Bone and connective tissue 4%, sep fat 5%~^9^^6.25^4.27^9.02^3.87
-~23653~^~1300~^~Beef, round, tip round, roast, separable lean only, trimmed to 0" fat, select, raw~^~BEEF,RND,TIP RND,RST,LN,0" FAT,SEL,RAW~^~URMIS # 1525~^^^~Bone and connective tissue 3%, sep fat 4%~^7^^6.25^4.27^9.02^3.87
-~23654~^~1300~^~Beef, flank, steak, separable lean only, trimmed to 0" fat, all grades, cooked, broiled~^~BEEF,FLANK,STEAK,LN,0" FAT,ALL GRDS,CKD,BRLD~^^^^~Separable fat~^1^^6.25^4.27^9.02^3.87
-~23655~^~1300~^~Beef, flank, steak, separable lean only, trimmed to 0" fat, select, cooked, broiled~^~BEEF,FLANK,STEAK,LN,0" FAT,SEL,CKD,BRLD~^~URMIS #1584~^^^~Separable fat~^1^^6.25^4.27^9.02^3.87
-~23656~^~1300~^~Beef, flank, steak, separable lean only, trimmed to 0" fat, all grades, raw~^~BEEF,FLANK,STEAK,LN,0" FAT,ALL GRDS,RAW~^^^^~Separable fat~^3^^6.25^4.27^9.02^3.87
-~23657~^~1300~^~Beef, flank, steak, separable lean only, trimmed to 0" fat, select, raw~^~BEEF,FLANK,STEAK,LN,0" FAT,SEL,RAW~^~URMIS #1584~^^^~Bone and connective tissue 1%, sep fat 1%~^2^^6.25^4.27^9.02^3.87
-~23658~^~1300~^~Beef, brisket, flat half, separable lean and fat, trimmed to 1/8" fat, choice, raw~^~BEEF,BRISKET,FLAT HALF,LN & FAT,1/8" FAT,CHOIC,RAW~^~URMIS #2438~^^^~Bone and connective tissue~^1^^6.25^4.27^9.02^3.87
-~23659~^~1300~^~Beef, brisket, flat half, separable lean and fat, trimmed to 1/8" fat, select, raw~^~BEEF,BRISKET,FLAT HALF,LN & FAT,1/8" FAT,SEL,RAW~^~URMIS #1623~^^^^0^^6.25^4.27^9.02^3.87
-~23660~^~1300~^~Beef, brisket, flat half, separable lean and fat, trimmed to 1/8" fat, choice, cooked, braised~^~BEEF,BRISKET,FLAT HALF,LN & FAT,1/8" FAT,CHOIC,CKD,BRSD~^~URMIS #2438~^^^~Bone and connective tissue~^1^^6.25^4.27^9.02^3.87
-~25000~^~2500~^~Snacks, popcorn, microwave, 94% fat free~^~POPCORN,OIL-POPPED,LOFAT~^^^~Y~^^0^^6.50^^^
-~25001~^~2500~^~Snacks, popcorn, microwave, low fat~^~POPCORN,OIL-POPPED,LOFAT~^^^~Y~^^0^^6.50^^^
-~25003~^~2500~^~Snacks, candy rolls, yogurt-covered, fruit flavored with high vitamin C~^~SNACKS,CANDY ROLLS,YOGURT-COVERED,FRUIT FLAV W/ HI VIT C~^^^~Y~^^0^^6.50^^^
-~25004~^~2500~^~Formulated bar, MARS SNACKFOOD US, SNICKERS MARATHON Chewy Chocolate Peanut Bar~^~FORMULATE BAR,MAR SNACKFOO US,SNICKE MARATH CHE CHOC PNUT BA~^^^^^0^^^^^
-~25005~^~2500~^~Formulated bar, MARS SNACKFOOD US, SNICKERS MARATHON MULTIGRAIN CRUNCH BAR~^~FORM BAR,MARS SNKF US,SNICKERS MARATHON MULTIGRNCRUNCH~^^^^^0^^^^^
-~25006~^~2500~^~Formulated bar, MARS SNACKFOOD US, SNICKERS MARATHON Double Chocolate Nut Bar~^~FORMULAT BAR,MARSNACKFOO US,SNICKE MARATHO DOUBL CHOC NUT BA~^^^^^0^^^^^
-~25007~^~2500~^~Snacks, M&M MARS, KUDOS Whole Grain Bars, peanut butter~^~SNACKS,M&M MARS,KUDOS WHL GRAIN BARS,PNUT BUTTER~^^^^^0^^^^^
-~25008~^~2500~^~Formulated bar, MARS SNACKFOOD US, SNICKERS MARATHON Honey Nut Oat Bar~^~FORMULAT BAR,MAR SNACFOO US,SNICKER MARATHO HONE NUT OAT BAR~^^^^^0^^^^^
-~25009~^~2500~^~Snacks, M&M MARS, KUDOS Whole Grain Bar, M&M's milk chocolate~^~SNACKS,M&M MARS,KUDOS WHL GRAIN BAR,M&M'S MILK CHOC~^^^^^0^^^^^
-~25010~^~2500~^~Formulated bar, MARS SNACKFOOD US, COCOAVIA, Chocolate Almond Snack Bar~^~FORM BAR,MARS SNACKFOOD US,COCOAVIA,CHOC ALMOND~^^^^^0^^^^^
-~25012~^~2500~^~Snacks, sweet potato chips, unsalted~^~SNACKS,SWT POTATO CHIPS,UNSALTED~^^^~Y~^^0^^6.25^^^
-~25013~^~2500~^~Snacks, FRITOLAY, SUNCHIPS, Multigrain Snack, original flavor~^~SNACKS,FRITOLAY,SUNCHIPS,MULTIGRAIN SNACK,ORIGINAL FLAVOR~^^^~Y~^^0^^6.50^^^
-~25014~^~2500~^~Snacks, popcorn, microwave, regular (butter) flavor, made with partially hydrogenated oil~^~SNACKS,POPCORN,MICROWAVE,REG (BUTTER) FLAVOR, W/PARHYD OIL~^^^~Y~^^0^^6.25^^^
-~25015~^~2500~^~Formulated bar, MARS SNACKFOOD US, SNICKERS MARATHON Protein Performance Bar, Caramel Nut Rush~^~FORMBAR,MARSSNACK,SNICKERS MARATHONPROTPERFBAR,CARMELNUTRUSH~^^^~Y~^^0^^6.25^^^
-~25016~^~2500~^~Formulated bar, MARS SNACKFOOD US, SNICKERS MARATHON Energy Bar, all flavors~^~FORMUL BAR,MA SNACKFO US,SNICKE MARATH ENER BAR,ALL FLAVO~^^^~Y~^^0^^^^^
-~25017~^~2500~^~Formulated bar, POWER BAR, chocolate~^~FORMULATED BAR,POWER BAR,CHOC~^^^~Y~^^0^^6.10^^^
-~25018~^~2500~^~Formulated bar, MARS SNACKFOOD US, COCOAVIA, Chocolate Blueberry Snack Bar~^~FORM BAR,MARS SNACKFOOD US,COCOAVIA,CHOC BLUEBERRY~^^^^^0^^^^^
-~25020~^~2500~^~Formulated bar, SLIM-FAST OPTIMA meal bar, milk chocolate peanut~^~FORMULATED BAR,SLIM-FAST OPTIMA MEAL BAR,MILK CHOC PNUT~^^~Slim-Fast Foods Company~^~Y~^^0^^6.25^^^
-~25021~^~2500~^~Formulated bar, LUNA BAR, NUTZ OVER CHOCOLATE~^~FORMULATED BAR,LUNA BAR,NUTZ OVER CHOC~^^~LUNA BAR~^~Y~^^0^^6.25^^^
-~25022~^~2500~^~Snacks, FRITOLAY, SUNCHIPS, multigrain, French onion flavor~^~SNACKS,FRITOLAY,SUNCHIPS,MULTIGRAIN,FRENCH ONION FLAVOR~^^^^^0^^^^^
-~25023~^~2500~^~Snacks, FRITOLAY, SUNCHIPS, Multigrain Snack, Harvest Cheddar flavor~^~SNACKS,FRITOLAY,SUNCHIPS,MULTIGRAIN,HARVEST CHEDDAR~^^^^^0^^^^^
-~25024~^~2500~^~Pretzels, soft, unsalted~^~PRETZELS,SOFT,UNSALTED~^^^~Y~^^0^^6.25^^^
-~25025~^~2500~^~Snacks, soy chips or crisps, salted~^~SNACKS,SOY CHIPS OR CRISPS,SALTED~^^^~Y~^^0^^6.25^^^
-~25026~^~2500~^~Popcorn, microwave, regular (butter) flavor, made with palm oil~^~Popcor, microwav, regula (butter) flavo, mad with pal oil~^^^~Y~^^0^^6.25^^^
-~25027~^~2500~^~Snacks, plantain chips, salted~^~SNACKS,PLANTAIN CHIPS,SALTED~^^^~Y~^^0^^6.25^^^
-~25028~^~2500~^~Tortilla chips, yellow, plain, salted~^~Tortilla chips, yellow, plain, salted~^^^~Y~^^0^^6.25^^^
-~25030~^~2500~^~Snacks, vegetable chips, HAIN CELESTIAL GROUP, TERRA CHIPS~^~SNACKS,VEG CHIPS,HAIN CELESTIAL GROUP,TERRA CHIPS~^^^~Y~^^0^^6.25^^^
-~25031~^~2500~^~Formulated bar, ZONE PERFECT CLASSIC CRUNCH BAR, mixed flavors~^~FORM BAR,ZONE PERFECT CLASSIC CRUNCH BAR,MXD FLAVORS~^^^~Y~^^0^^6.25^^^
-~25032~^~2500~^~Snacks, granola bar, KASHI GOLEAN, chewy, mixed flavors~^~SNACKS,GRANOLA BAR,KASHI GOLEAN,CHEWY,MXD FLAVORS~^^^~Y~^^0^^^^^
-~25033~^~2500~^~Snacks, granola bar, KASHI TLC Bar, chewy, mixed flavors~^~SNACKS,GRANOLA BAR,KASHI TLC BAR,CHEWY,MXD FLAVORS~^^^~Y~^^0^^^^^
-~25034~^~2500~^~Snacks, granola bar, KASHI GOLEAN, crunchy, mixed flavors~^~SNACKS,GRANOLA BAR,KASHI GOLEAN,CRUNCHY,MXD FLAVORS~^^^~Y~^^0^^^^^
-~25035~^~2500~^~Snacks, granola bar, chewy, reduced sugar, all flavors~^~SNACKS,GRANOLA BAR,CHEWY,RED SUGAR,ALL FLAVORS~^^^~Y~^^0^^^^^
-~25036~^~2500~^~Snacks, granola bites, mixed flavors~^~SNACKS,GRANOLA BITES,MXD FLAVORS~^^^~Y~^^0^^^^^
-~25037~^~2500~^~Snacks, pita chips, salted~^~SNACKS,PITA CHIPS,SALTED~^^^~Y~^^0^^^^^
-~25038~^~2500~^~Snacks, granola bars, soft, almond, confectioners coating~^~SNACKS,GRANOLA BARS,SOFT,ALMOND,CONFECTIONERS COATING~^^^~Y~^^0^^^^^
-~25039~^~2500~^~Snacks, granola bars, QUAKER OATMEAL TO GO, all flavors~^~SNACKS,GRANOLA BARS,QUAKER OATMEAL TO GO,ALL FLAVORS~^^^~Y~^^0^^6.25^^^
-~25040~^~2500~^~Snacks, vegetable chips, made from garden vegetables~^~SNACKS,VEG CHIPS,MADE FROM GARDEN VEG~^^^~Y~^^0^^6.26^^^
-~25041~^~2500~^~Snacks, granola bar, KASHI TLC Bar, crunchy, mixed flavors~^~SNACKS,GRANOLA BAR,KASHI TLC BAR,CRUNCHY,MXD FLAVORS~^^^~Y~^^0^^6.25^^^
-~25043~^~2500~^~Snacks, candy bits, yogurt covered with vitamin C~^~SNACKS,CANDY BITS,YOGURT COVERED W/ VIT C~^^^~Y~^^0^^^^^
-~25045~^~2500~^~Formulated bar, high fiber, chewy, oats and chocolate~^~Formulated bar, high fiber, chewy, oats and chocolate~^^^~Y~^^0^^^^^
-~25046~^~2500~^~Snacks, bagel chips, plain~^~SNACKS,BAGEL CHIPS,PLN~^^^~Y~^^0^^6.25^^^
-~25048~^~2500~^~Snacks, NUTRI-GRAIN FRUIT AND NUT BAR~^~SNACKS,NUTRI-GRAIN FRUIT & NUT BAR~^^^~Y~^^0^^^^^
-~25050~^~2500~^~Snacks, yucca (cassava) chips, salted~^~SNACKS,YUCCA (CASSAVA) CHIPS,SALTED~^^^^^0^^^^^
-~25051~^~2500~^~Snacks, CLIF BAR, mixed flavors~^~Snacks, CLIF BAR, mixed flavors~^^^~Y~^^0^^^^^
-~25052~^~2500~^~Snacks, granola bar, QUAKER, chewy, 90 Calorie Bar~^~SNACKS,GRANOLA BAR,QUAKER,CHEWY,90 CAL BAR~^^^~Y~^^0^^6.25^^^
-~25053~^~2500~^~Snacks, granola bar, GENERAL MILLS NATURE VALLEY, SWEET&SALTY NUT, peanut~^~Snac, grano bar, GENER MILLS NATURE VALL, SWE&SAL NUT, peanu~^^^~Y~^^0^^6.25^^^
-~25054~^~2500~^~Snacks, granola bar, GENERAL MILLS, NATURE VALLEY, with yogurt coating~^~Snack,gran bar,GENERAL MILLS, NATURE VALLEY, w yogu coati~^^^~Y~^^0^^^^^
-~25055~^~2500~^~Snacks, granola bar, GENERAL MILLS, NATURE VALLEY, CHEWY TRAIL MIX~^~Snac, grano bar, GENER MILLS, NATUR VALLE, CHEWY TRAIL MIX~^^^~Y~^^0^^6.25^^^
-~25056~^~2500~^~Snacks, granola bar, QUAKER, DIPPS, all flavors~^~Snacks, granola bar, QUAKER, DIPPS, all flavors~^^^~Y~^^0^^^^^
-~25059~^~2500~^~Snacks, brown rice chips~^~Snacks, brown rice chips~^^^~Y~^^0^^6.25^^^
-~25060~^~2500~^~Snack, Pretzel, hard chocolate coated~^~SNACK,PRETZEL,HARD CHOC COATD~^^^~Y~^^0^^6.25^^^
-~25062~^~2500~^~Snack, Mixed Berry Bar~^~Snack, Mixed Berry Bar~^^^~Y~^^0^^^^^
-~25063~^~2500~^~Snacks, potato chips, made from dried potatoes (preformed), multigrain~^~Snacks, potato chips, fr dried potatoes, multigrain~^^^~Y~^^0^^^^^
-~25064~^~2500~^~Snacks, potato chips, lightly salted~^~SNACKS,POTATO CHIPS,LIGHTLY SALTED~^^^~Y~^^0^^^^^
-~25065~^~2500~^~Snacks, Pretzels, gluten- free made with cornstarch and potato flour~^~SNACKS,PRETZELS,GLUTEN- FREE MADE W/ CORNSTARCH & POTATO FLR~^^^~Y~^^0^^^^^
-~25066~^~2500~^~Snacks, peas, roasted, wasabi-flavored~^~SNACKS,PEAS,RSTD,WASABI-FLAVORED~^^^~Y~^^0^^^^^
-~25067~^~2500~^~Formulated Bar, SOUTH BEACH protein bar~^~FORMULATED BAR,SOUTH BEACH PROT BAR~^^^~Y~^^0^^^^^
-~25068~^~2500~^~Snack, BALANCE, original bar~^~SNACK,BALANCE,ORIGINAL BAR~^^^~Y~^^0^^^^^
-~25070~^~2500~^~Snacks, shrimp cracker~^~SNACKS,SHRIMP CRACKER~^^^~Y~^^0^^^^^
-~25071~^~2500~^~Rice crackers~^~RICE CRACKERS~^^^~Y~^^0^^6.25^^^
-~27000~^~0600~^~Soup, egg drop, Chinese restaurant~^~SOUP,EGG DROP,CHINESE RESTAURANT~^^^~Y~^^0^^^^^
-~27001~^~0600~^~Soup, hot and sour, Chinese restaurant~^~SOUP,HOT & SOUR,CHINESE RESTAURANT~^^^~Y~^^0^^^^^
-~27002~^~0600~^~Soup, wonton, Chinese restaurant~^~SOUP,WONTON,CHINESE RESTAURANT~^^^~Y~^^0^^^^^
-~27035~^~0600~^~Soup, ramen noodle, dry, any flavor, reduced fat, reduced sodium~^~SOUP,RAMEN NOODLE,DRY,ANY FLAVOR,RED FAT,RED NA~^^^~Y~^^0^^6.25^^^
-~27042~^~0600~^~Soup, clam chowder, new england, canned, ready-to-serve~^~SOUP,CLAM CHOWDER,NEW ENGLAND,CND,RTS~^^^^^0^^^^^
-~27043~^~0600~^~Soup, clam chowder, new england, reduced sodium, canned, ready-to-serve~^~SOUP,CLAM CHOWDER,NEW ENGLAND,RED NA,CND,RTS~^^^~Y~^^0^^^4.00^9.00^4.00
-~27044~^~0600~^~Soup, chicken noodle, reduced sodium, canned, ready-to-serve~^~SOUP,CHICK NOODLE,RED NA,CND,RTS~^^^~Y~^^0^^^^^
-~27045~^~0600~^~Soup, beef and vegetables, reduced sodium, canned, ready-to-serve~^~SOUP,BF & VEG,RED NA,CND,RTS~^^^^^0^^^^^
-~27046~^~0600~^~Sauce, duck, ready-to-serve~^~SAUCE,DUCK,RTS~^^^~Y~^^0^^^^^
-~27047~^~0600~^~Sauce, salsa, verde, ready-to-serve~^~SAUCE,SALSA,VERDE,RTS~^^^~Y~^^0^^^^^
-~27048~^~0600~^~Sauce, steak, tomato based~^~SAUCE,STEAK,TOMATO BSD~^^^~Y~^^0^^^^^
-~27049~^~0600~^~Sauce, tartar, ready-to-serve~^~SAUCE,TARTAR,RTS~^^^~Y~^^0^^^^^
-~27050~^~0600~^~Sauce, sweet and sour, ready-to-serve~^~SAUCE,SWT & SOUR,RTS~^^^~Y~^^0^^^^^
-~27051~^~0600~^~Sauce, cocktail, ready-to-serve~^~SAUCE,COCKTAIL,RTS~^^^~Y~^^0^^^^^
-~27052~^~0600~^~Dip, salsa con queso, cheese and salsa- medium~^~DIP,SALSA CON QUESO,CHS & SALSA- MED~^^^~Y~^^0^^^^^
-~27054~^~0600~^~Dip, TOSTITOS, salsa con queso, medium~^~DIP,TOSTITOS,SALSA CON QUESO,MED~^^~Pepsi-Cola North America~^^^0^^^^^
-~27055~^~0600~^~Sauce, barbecue, SWEET BABY RAY'S, original~^~SAUCE,BARBECUE,SWT BABY RAY'S,ORIGINAL~^^~Sweet baby Ray's, Inc.~^^^0^^^^^
-~27056~^~0600~^~Sauce, barbecue, BULL'S-EYE, original~^~SAUCE,BARBECUE,BULL'S-EYE,ORIGINAL~^^~Kraft Foods, Inc.~^^^0^^^^^
-~27057~^~0600~^~Sauce, barbecue, KC MASTERPIECE, original~^~SAUCE,BARBECUE,KC MASTERPIECE,ORIGINAL~^^^^^0^^^^^
-~27058~^~0600~^~Sauce, barbecue, OPEN PIT, original~^~SAUCE,BARBECUE,OPEN PIT,ORIGINAL~^^~Open Pit- Pinnacle Foods~^^^0^^^^^
-~27059~^~0600~^~Sauce, peanut, made from peanut butter, water, soy sauce~^~SAUCE,PNUT,MADE FROM PNUT BUTTER,H2O,SOY SAU~^^^~Y~^^0^^^4.00^9.00^4.00
-~27060~^~0600~^~Soup, chunky vegetable, reduced sodium, canned, ready-to-serve~^~SOUP,CHUNKY VEG,RED NA,CND,RTS~^^^~Y~^^0^^^^^
-~27061~^~0600~^~Gravy, HEINZ Home Style, classic chicken~^~GRAVY,HEINZ HOME STYLE,CLASSIC CHICK~^^~H.J. Heinz, Co.~^^^0^^^^^
-~27062~^~0600~^~Soup, beef barley, ready to serve~^~SOUP,BF BARLEY,READY TO SERVE~^^^~Y~^^0^^^^^
-~27063~^~0600~^~Sauce, enchilada, red, mild, ready to serve~^~SAUCE,ENCHILADA,RED,MILD,READY TO SERVE~^^^~Y~^^0^^^4.00^9.00^4.00
-~27064~^~0600~^~Wasabi~^~WASABI~^^^~Y~^^0^^6.25^^^
-~27065~^~0600~^~Dip, bean, original flavor~^~DIP,BEAN,ORIGINAL FLAVOR~^^^~Y~^^0^^^^^
-~27066~^~0600~^~Sauce, horseradish~^~SAUCE,HORSERADISH~^^^~Y~^^0^^^^^
-~27068~^~0600~^~Dip, FRITO'S, bean, original flavor~^~DIP,FRITO'S,BEAN,ORIGINAL FLAVOR~^^~Pepsi-Cola North America~^^^0^^^^^
-~28285~^~1800~^~Bread, chapati or roti, whole wheat, commercially prepared, frozen~^~BREAD,CHAPATI OR ROTI,WHL WHEAT,COMMLY PREP,FRZ~^^^~Y~^^0^^6.25^^^
-~28286~^~1800~^~Bread, paratha, whole wheat, commercially prepared, frozen~^~BREAD,PARATHA,WHL WHEAT,COMMLY PREP,FRZ~^^^~Y~^^0^^6.25^^^
-~28287~^~1800~^~Bread, naan, whole wheat, commercially prepared, refrigerated~^~BREAD,NAAN,WHL WHEAT,COMMLY PREP,REFR~^^^~Y~^^0^^6.25^^^
-~28288~^~1800~^~Bread, roll, Mexican, bollilo~^~BREAD,ROLL,MEXICAN,BOLLILO~^^^~Y~^^0^^6.25^^^
-~28289~^~1800~^~Cookie, vanilla with caramel, coconut, and chocolate coating~^~COOKIE,VANILLA W/ CARAMEL,COCNT,& CHOC COATING~^^^~Y~^^0^^6.25^^^
-~28290~^~1800~^~Cookie, with peanut butter filling, chocolate-coated~^~COOKIE,W/ PNUT BUTTER FILLING,CHOCOLATE-COATED~^^~Kellogg, Co.~^~Y~^^0^^6.25^^^
-~28291~^~1800~^~Cookies, animal, with frosting or icing~^~COOKIES,ANIMAL,W/ FRSTNG OR ICING~^^^~Y~^^0^^6.25^^^
-~28292~^~1800~^~Crackers, multigrain~^~CRACKERS,MULTIGRAIN~^^^~Y~^^0^^6.25^^^
-~28293~^~1800~^~Cookie, butter or sugar, with chocolate icing or filling~^~COOKIE,BUTTER OR SUGAR,W/ CHOC ICING OR FILLING~^^~Kellogg, Co.~^~Y~^^0^^6.25^^^
-~28294~^~1800~^~Cookie, chocolate, with icing or coating~^~COOKIE,CHOC,W/ ICING OR COATING~^^^~Y~^^0^^6.25^^^
-~28295~^~1800~^~Tortillas, ready-to-bake or -fry, whole wheat~^~TORTILLAS,RTB OR -FRY,WHL WHEAT~^^^~Y~^^0^^6.25^^^
-~28296~^~1800~^~Cake, snack cakes, creme-filled, chocolate with frosting, low-fat, with added fiber~^~CAKE,SNK CAKES,CREME-FILLED,CHOC W/ FRSTNG,L-F,W/ ADD FIBER~^^^~Y~^^0^^6.25^^^
-~28297~^~1800~^~Cake, snack cakes, not chocolate, with icing or filling, low-fat, with added fiber~^~CAKE,SNK CAKES,NOT CHOC,W/ ICING OR FILLING,L-F,W/ ADD FIBER~^^^~Y~^^0^^6.25^^^
-~28298~^~1800~^~Cookies, brownies, commercially prepared, reduced fat, with added fiber~^~COOKIES,BROWNIES,COMMLY PREP,RED FAT,W/ ADDED FIBER~^^^~Y~^^0^^6.25^^^
-~28299~^~1800~^~Cookies, chocolate sandwich, with creme filling, reduced fat~^~COOKIES,CHOC SNDWCH,W/ CREME FILLING,RED FAT~^^^~Y~^^0^^6.25^^^
-~28300~^~1800~^~Cookies, oatmeal sandwich, with creme filling~^~COOKIES,OATMEAL SNDWCH,W/ CREME FILLING~^^^~Y~^^0^^6.25^^^
-~28301~^~1800~^~Cookies, peanut butter, commercially prepared, sugar free~^~COOKIES,PNUT BUTTER,COMMLY PREP,SUGAR FREE~^^^~Y~^^0^^6.25^^^
-~28302~^~1800~^~Cookies, graham crackers, plain or honey, lowfat~^~COOKIES,GRAHAM CRACKERS,PLN OR HONEY,LOWFAT~^^^~Y~^^0^^6.25^^^
-~28303~^~1800~^~Crackers, cheese, whole grain~^~CRACKERS,CHS,WHL GRAIN~^^^~Y~^^0^^6.25^^^
-~28304~^~1800~^~Waffles, whole wheat, lowfat, frozen, ready-to-heat~^~WAFFLES,WHL WHEAT,LOWFAT,FRZ,RTH~^^^~Y~^^0^^6.25^^^
-~28305~^~1800~^~Pancakes, plain, reduced fat~^~PANCAKES,PLN,RED FAT~^^^~Y~^^0^^6.25^^^
-~28306~^~1800~^~Bread, chapati or roti, plain, commercially prepared~^~BREAD,CHAPATI OR ROTI,PLN,COMMLY PREP~^^^^^0^^6.25^^^
-~28307~^~1800~^~Bread, naan, plain, commercially prepared, refrigerated~^~BREAD,NAAN,PLN,COMMLY PREP,REFR~^^^^^0^^6.25^^^
-~28308~^~1800~^~Crackers, standard snack-type, with whole wheat~^~CRACKERS,STD SNACK-TYPE,W/ WHL WHEAT~^^^~Y~^^0^^6.25^^^
-~28309~^~1800~^~Cookies, coconut macaroon~^~COOKIES,COCNT MACAROON~^^^~Y~^^0^^6.25^^^
-~28310~^~1800~^~Cookies, shortbread, reduced fat~^~COOKIES,SHORTBREAD,RED FAT~^^^~Y~^^0^^6.25^^^
-~28311~^~1800~^~Cookies, sugar wafer, chocolate-covered~^~COOKIES,SUGAR WAFER,CHOCOLATE-COVERED~^^^~Y~^^0^^6.25^^^
-~28312~^~1800~^~Rolls, hamburger or hot dog, wheat/cracked wheat~^~ROLLS,HAMBURGER OR HOT DOG,WHEAT/CRACKED WHEAT~^^^~Y~^^0^^6.25^^^
-~28313~^~1800~^~Rolls, hamburger or hot dog, whole wheat~^~ROLLS,HAMBURGER OR HOT DOG,WHL WHEAT~^^^~Y~^^0^^^^^
-~28314~^~1800~^~Crackers, sandwich-type, peanut butter filled, reduced fat~^~CRACKERS,SANDWICH-TYPE,PNUT BUTTER FILLED,RED FAT~^^^~Y~^^0^^6.25^^^
-~28315~^~1800~^~Bread, cinnamon~^~BREAD,CINN~^^^~Y~^^0^^6.25^^^
-~28316~^~1800~^~Bread, wheat, sprouted~^~BREAD,WHEAT,SPROUTED~^^^~Y~^^0^^6.25^^^
-~28317~^~1800~^~Bread, wheat, sprouted, toasted~^~BREAD,WHEAT,SPROUTED,TSTD~^^^~Y~^^0^^6.25^^^
-~28318~^~1800~^~Bread, french or vienna, whole wheat~^~BREAD,FRENCH OR VIENNA,WHL WHEAT~^^^~Y~^^0^^6.25^^^
-~28319~^~1800~^~Bagels, whole grain white~^~BAGELS,WHL GRAIN WHITE~^^^~Y~^^0^^6.25^^^
-~28320~^~1800~^~English muffins, whole grain white~^~ENGLISH MUFFINS,WHL GRAIN WHITE~^^^~Y~^^0^^6.25^^^
-~28321~^~1800~^~Rolls, hamburger, whole grain white, calcium-fortified~^~ROLLS,HAMBURGER,WHL GRAIN WHITE,CALCIUM-FORTIFIED~^^^~Y~^^0^^6.25^^^
-~28322~^~1800~^~Bagels, multigrain~^~BAGELS,MULTIGRAIN~^^^~Y~^^0^^6.25^^^
-~28324~^~1800~^~Pancakes, whole wheat, dry mix, incomplete~^~PANCAKES,WHL WHEAT,DRY MIX,INCOMPLETE~^^^~Y~^^0^^6.25^^^
-~28325~^~1800~^~Crackers, toast thins, low sodium~^~CRACKERS,TOAST THINS,LO NA~^^^~Y~^^0^^6.25^^^
-~28326~^~1800~^~Crackers, whole grain, sandwich-type, with peanut butter filling~^~CRACKERS,WHL GRAIN,SANDWICH-TYPE,W/ PNUT BUTTER FILLING~^^^~Y~^^0^^6.25^^^
-~28327~^~1800~^~Crackers, water biscuits~^~CRACKERS,H2O BISCUITS~^^^~Y~^^0^^6.25^^^
-~28328~^~1800~^~Cookies, chocolate chip sandwich, with creme filling~^~COOKIES,CHOC CHIP SNDWCH,W/ CREME FILLING~^^^~Y~^^0^^6.25^^^
-~28329~^~1800~^~Cookies, chocolate, made with rice cereal~^~COOKIES,CHOC,MADE W/ RICE CRL~^^^~Y~^^0^^6.25^^^
-~28330~^~1800~^~Cookies, marshmallow, with rice cereal and chocolate chips~^~COOKIES,MARSHMLLW,W/ RICE CRL & CHOC CHIPS~^^^~Y~^^0^^6.25^^^
-~28331~^~1800~^~Crackers, flavored, fish-shaped~^~CRACKERS,FLAV,FISH-SHAPED~^^^^^0^^6.25^^^
-~28332~^~1800~^~Cookies, gluten-free, chocolate sandwich, with creme filling~^~COOKIES,GLUTEN-FREE,CHOC SNDWCH,W/ CREME FILLING~^^^~Y~^^0^^^^^
-~28333~^~1800~^~Cookies, gluten-free, chocolate wafer~^~COOKIES,GLUTEN-FREE,CHOC WAFER~^^^^^0^^6.25^^^
-~28334~^~1800~^~Cookies, gluten-free, lemon wafer~^~COOKIES,GLUTEN-FREE,LEMON WAFER~^^^^^0^^6.25^^^
-~28335~^~1800~^~Cookies, gluten-free, vanilla sandwich, with creme filling~^~COOKIES,GLUTEN-FREE,VANILLA SNDWCH,W/ CREME FILLING~^^^^^0^^6.25^^^
-~28336~^~1800~^~Bread, gluten-free, white, made with potato extract, rice starch, and rice flour~^~BREAD,GLUTEN-FREE,POTATO EXTRACT,RICE STARCH,& RICE FLOUR~^^^^^0^^6.25^^^
-~28337~^~1800~^~Bread, gluten-free, white, made with rice flour, corn starch, and/or tapioca~^~BREAD,GLUTEN-FREE,RICE FLOUR,CORN STARCH,AND/OR TAPIOCA~^^^~Y~^^0^^^^^
-~28338~^~1800~^~Bread, gluten-free, white, made with tapioca starch and brown rice flour~^~BRD,GLUTEN-FREE,WHITE,MADE W/TAPIOCA STARCH & BRWN RICE FLR~^^^^^0^^6.25^^^
-~28339~^~1800~^~Bread, gluten-free, whole grain, made with tapioca starch and brown rice flour~^~BREAD,GLUTEN-FREE,WHL GRAIN,TAPIOCA STARCH & BROWN RICE FLR~^^^^^0^^6.25^^^
-~28340~^~1800~^~Rolls, gluten-free, white, made with brown rice flour, tapioca starch, and potato starch~^~ROLLS,GLUTEN-FREE,BRW RICE FLR,TAPIOCA STARCH,&POTATO STARCH~^^^^^0^^6.25^^^
-~28341~^~1800~^~Rolls, gluten-free, white, made with rice flour, rice starch, and corn starch~^~ROLLS,GLUTEN-FREE,RICE FLR,RICE STARCH,& CORN STARCH~^^^~Y~^^0^^^^^
-~28342~^~1800~^~Rolls, gluten-free, white, made with brown rice flour, tapioca starch, and sorghum flour~^~ROLLS,GLUTEN-FREE,BRW RICE FLR,TAPIOCA STARCH,&SORGHUM FLR~^^^^^0^^6.25^^^
-~28343~^~1800~^~Rolls, gluten-free, whole grain, made with tapioca starch and brown rice flour~^~ROLLS,GLUTEN-FREE,WHL GRAIN,TAPIOCA STARCH & BROWN RICE FLR~^^^^^0^^6.25^^^
-~28344~^~1800~^~Crackers, gluten-free, multigrain and vegetable, made with corn starch and white rice flour~^~CRACKERS,GLUTEN-FREE,MULTIGRAIN & VEG,MADE W/ CORN STARCH &~^^^^^0^^6.25^^^
-~28345~^~1800~^~Crackers, gluten-free, multi-seeded and multigrain~^~CRACKERS,GLUTEN-FREE,MULTI-SEEDED & MULTIGRAIN~^^^~Y~^^0^^6.25^^^
-~28346~^~1800~^~Waffles, gluten-free, frozen, ready-to-heat~^~WAFFLES,GLUTEN-FREE,FRZ,RTH~^^^~Y~^^0^^6.25^^^
-~28347~^~1800~^~Pancakes, gluten-free, frozen, ready-to-heat~^~PANCAKES,GLUTEN-FREE,FRZ,RTH~^^^~Y~^^0^^6.25^^^
-~28348~^~1800~^~Rolls, dinner, sweet~^~ROLLS,DINNER,SWT~^^^~Y~^^0^^6.25^^^
-~28349~^~1800~^~Cookies, oatmeal, reduced fat~^~COOKIES,OATMEAL,RED FAT~^^^~Y~^^0^^6.25^^^
-~28350~^~1800~^~Cookies, chocolate cream covered biscuit sticks~^~COOKIES,CHOC CRM COVERED BISCUIT STKS~^^^~Y~^^0^^6.25^^^
-~28351~^~1800~^~Cookies, Marie biscuit~^~COOKIES,MARIE BISCUIT~^^^~Y~^^0^^6.25^^^
-~28352~^~1800~^~Cookies, vanilla sandwich with creme filling, reduced fat~^~COOKIES,VANILLA SNDWCH W/ CREME FILLING,RED FAT~^^^~Y~^^0^^6.25^^^
-~28354~^~1800~^~Andrea's, Gluten Free Soft Dinner Roll~^~ANDREA'S,GLUTEN FREE SOFT DINNER ROLL~^^~Andrea's Gluten Free~^^^0^^6.25^^^
-~28355~^~1800~^~Crunchmaster, Multi-Grain Crisps, Snack Crackers, Gluten-Free~^~CRUNCHMASTER,MULTI-GRAIN CRISPS,SNACK CRACKERS,GLUTEN-FREE~^^~Crunchmaster~^^^0^^^^^
-~28356~^~1800~^~Glutino, Gluten Free Cookies, Chocolate Vanilla Creme~^~GLUTINO,GLUTEN FREE COOKIES,CHOC VANILLA CREME~^^~Glutino~^^^0^^^^^
-~28357~^~1800~^~Glutino, Gluten Free Cookies, Vanilla Creme~^~GLUTINO,GLUTEN FREE COOKIES,VANILLA CREME~^^~Glutino~^^^0^^6.25^^^
-~28358~^~1800~^~Glutino, Gluten Free Wafers, Lemon Flavored~^~GLUTINO,GLUTEN FREE WAFERS,LEMON FLAV~^^~Glutino~^^^0^^^^^
-~28359~^~1800~^~Glutino, Gluten Free Wafers, Milk Chocolate~^~GLUTINO,GLUTEN FREE WAFERS,MILK CHOC~^^~Glutino~^^^0^^6.25^^^
-~28360~^~1800~^~Mary's Gone Crackers, Original Crackers, Organic Gluten Free~^~MARY'S GONE CRACKERS,ORIGINAL CRACKERS,ORGANIC GLUTEN FREE~^^~Mary's Gone Crackers~^^^0^^6.25^^^
-~28361~^~1800~^~Pepperidge Farm, Goldfish, Baked Snack Crackers, Cheddar~^~PEPPERIDGE FARM,GOLDFISH,BKD SNACK CRACKERS,CHEDDAR~^^~Pepperidge Farm~^^^0^^^^^
-~28362~^~1800~^~Pepperidge Farm, Goldfish, Baked Snack Crackers, Explosive Pizza~^~PEPPERIDGE FARM,GOLDFISH,BKD SNACK CRACKERS,EXPLOSIVE PIZZA~^^~Pepperidge Farm~^^^0^^^^^
-~28363~^~1800~^~Pepperidge Farm, Goldfish, Baked Snack Crackers, Original~^~PEPPERIDGE FARM,GOLDFISH,BKD SNACK CRACKERS,ORIGINAL~^^~Pepperidge Farm~^^^0^^^^^
-~28364~^~1800~^~Pepperidge Farm, Goldfish, Baked Snack Crackers, Parmesan~^~PEPPERIDGE FARM,GOLDFISH,BKD SNACK CRACKERS,PARMESAN~^^~Pepperidge Farm~^^^0^^^^^
-~28365~^~1800~^~Pepperidge Farm, Goldfish, Baked Snack Crackers, Pizza~^~PEPPERIDGE FARM,GOLDFISH,BKD SNACK CRACKERS,PIZZA~^^~Pepperidge Farm~^^^0^^^^^
-~28366~^~1800~^~Rudi's, Gluten-Free Bakery, Original Sandwich Bread~^~RUDI'S,GLUTEN-FREE BAKERY,ORIGINAL SNDWCH BREAD~^^~Rudi's Bakery~^^^0^^6.25^^^
-~28367~^~1800~^~Sage Valley, Gluten Free Vanilla Sandwich Cookies~^~SAGE VALLEY,GLUTEN FREE VANILLA SNDWCH COOKIES~^^~Sage Valley~^^^0^^6.25^^^
-~28368~^~1800~^~Schar, Gluten-Free, Classic White Rolls~^~SCHAR,GLUTEN-FREE,CLASSIC WHITE ROLLS~^^~Dr. Schar USA, Inc.~^^^0^^^^^
-~28369~^~1800~^~Schar, Gluten-Free, Wheat-Free, Classic White Bread~^~SCHAR,GLUTEN-FREE,WHEAT-FREE,CLASSIC WHITE BREAD~^^~Dr. Schar USA, Inc.~^^^0^^^^^
-~28370~^~1800~^~Udi's, Gluten Free, Classic French Dinner Rolls~^~UDI'S,GLUTEN FREE,CLASSIC FRENCH DINNER ROLLS~^^~Udi's Gluten Free~^^^0^^6.25^^^
-~28371~^~1800~^~Udi's, Gluten Free, Soft & Delicious White Sandwich Bread~^~UDI'S,GLUTEN FREE,SOFT & DELICIOUS WHITE SNDWCH BREAD~^^~Udi's Gluten Free~^^^0^^^^^
-~28372~^~1800~^~Udi's, Gluten Free, Soft & Hearty Whole Grain Bread~^~UDI'S,GLUTEN FREE,SOFT & HEARTY WHL GRAIN BREAD~^^~Udi's Gluten Free~^^^0^^6.25^^^
-~28373~^~1800~^~Udi's, Gluten Free, Whole Grain Dinner Rolls~^~UDI'S,GLUTEN FREE,WHL GRAIN DINNER ROLLS~^^~Udi's Gluten Free~^^^0^^6.25^^^
-~28374~^~1800~^~Van's, Gluten Free, Totally Original Pancakes~^~VAN'S,GLUTEN FREE,TOTALLY ORIGINAL PANCAKES~^^~Van's International Foods~^^^0^^6.25^^^
-~28375~^~1800~^~Van's, Gluten Free, Totally Original Waffles~^~VAN'S,GLUTEN FREE,TOTALLY ORIGINAL WAFFLES~^^~Van's International Foods~^^^0^^^^^
-~28376~^~1800~^~Van's, The Perfect 10, Crispy Six Whole Grain + Four Seed Baked Crackers, Gluten Free~^~VAN'S,THE PRFCT 10,CRSP 6 WHL GRN 4 SD BKD CRCKRS,GLTN FREE~^^~Van's International Foods~^^^0^^6.25^^^
-~28397~^~1800~^~Bread, multi-grain (includes whole-grain)~^~BREAD,MULTI-GRAIN (INCLUDES WHOLE-GRAIN)~^^^~Y~^^0^^^^^
-~28399~^~1800~^~Cookies, animal crackers (includes arrowroot, tea biscuits)~^~COOKIES,ANIMAL CRACKERS (INCL ARROWROOT,TEA BISCUITS,)~^^^~Y~^^0^^5.70^4.10^8.80^4.00
-~31019~^~1100~^~Seaweed, Canadian Cultivated EMI-TSUNOMATA, dry~^~SEAWEED,CANADIAN CULTIVATED EMI-TSUNOMATA,DRY~^^~Acadian Seaplants Limited~^^^0^~Chondrus crispus~^6.25^^^
-~31020~^~1100~^~Seaweed, Canadian Cultivated EMI-TSUNOMATA, rehydrated~^~SEAWEED,CANADIAN CULTIVATED EMI-TSUNOMATA,REHYDRATED~^^~Acadian Seaplants Limited~^^^0^^6.25^^^
-~31021~^~1100~^~Potatoes, hash brown, refrigerated, unprepared~^~POTATOES,HASH BROWN,REFR,UNPREP~^^^^^0^^^^^
-~31022~^~1100~^~Potatoes, hash brown, refrigerated, prepared, pan-fried in canola oil~^~POTATOES,HASH BROWN,REFR,PREP,PAN-FRIED IN CANOLA OIL~^~Potatoes, hashed brown~^^^^0^^^^^
-~31023~^~1100~^~Sweet Potatoes, french fried, frozen as packaged, salt added in processing~^~SWEET POTATOES,FRENCH FR,FRZ AS PACKAGED,SALT ADDED~^^^~Y~^^0^^6.25^4.03^8.37^2.78
-~31024~^~1100~^~Sweet Potatoes, french fried, crosscut, frozen, unprepared~^~SWEET POTATOES,FRENCH FR,CROSSCUT,FRZ,UNPREP~^^^^^0^^6.25^^^
-~31025~^~1100~^~Sweet Potato puffs, frozen, unprepared~^~SWEET POTATO PUFFS,FRZ,UNPREP~^^^^^0^^6.25^^^
-~31026~^~1100~^~Potatoes, yellow fleshed, roasted, salt added in processing, frozen, unprepared~^~POTATOES,YEL FLESHED,RSTD,SALT ADDED IN PROC,FRZ,UNPREP~^^^^^0^^^^^
-~31027~^~1100~^~Potatoes, yellow fleshed, french fried, frozen, unprepared~^~POTATOES,YEL FLESHED,FRENCH FR,FRZ,UNPREP~^^^^^0^^^^^
-~31028~^~1100~^~Potatoes, yellow fleshed, hash brown, shredded, salt added in processing, frozen, unprepared~^~POTATO\,YEL FLSH,HASH BRN,SHRD,SALT ADDED IN PROC,FRZ,UNPREP~^^^^^0^^6.25^^^
-~31029~^~1100~^~Potatoes, french fried, wedge cut, frozen, unprepared~^~POTATOES,FRENCH FR,WEDGE CUT,FRZ,UNPREP~^^^^^0^^6.25^2.80^8.80^4.00
-~31030~^~1100~^~Potatoes, french fried, steak cut, salt not added in processing, frozen, unprepared~^~POTATOES,FRENCH FR,STK CUT,SALT NOT ADDED IN PROC,FRZ,UNPREP~^^^^^0^^6.25^2.80^8.80^4.00
-~31031~^~1100~^~Potatoes, french fried, cross cut, frozen, unprepared~^~POTATOES,FRENCH FR,CROSS CUT,FRZ,UNPREP~^^^^^0^^6.25^2.80^8.80^4.00
-~31033~^~1100~^~Ginger root, pickled, canned, with artificial sweetener~^~GINGER ROOT,PICKLED,CND,W/ ART SWTNR~^^^~Y~^^0^^6.25^2.78^8.37^3.84
-~31034~^~1100~^~Peppers, hot pickled, canned~^~PEPPERS,HOT PICKLED,CND~^^^~Y~^^0^^6.25^2.44^8.37^3.57
-~31035~^~1100~^~Vegetable juice, BOLTHOUSE FARMS, DAILY GREENS~^~VEGETABLE JUC,BOLTHOUSE FARMS,DAILY GRNS~^^~Bolthouse Farms~^~Y~^^0^^6.25^2.44^8.37^3.57
-~31036~^~1100~^~Potatoes, mashed, ready-to-eat~^~POTATOES,MSHD,RTE~^^^~Y~^^0^^^^^
-~32000~^~2200~^~Rice and vermicelli mix, beef flavor, unprepared~^~RICE & VERMICELLI MIX,BF FLAVOR,UNPREP~^^^~Y~^^0^^6.25^^^
-~32001~^~2200~^~Rice and vermicelli mix, beef flavor, prepared with 80% margarine~^~RICE & VERMICELLI MIX,BF FLAVOR,PREP W/ 80% MARGARINE~^^^^^0^^^3.87^8.37^4.14
-~32002~^~2200~^~Rice and vermicelli mix, rice pilaf flavor, unprepared~^~RICE & VERMICELLI MIX,RICE PILAF FLAVOR,UNPREP~^^^~Y~^^0^^6.25^^^
-~32003~^~2200~^~Rice and vermicelli mix, rice pilaf flavor, prepared with 80% margarine~^~RICE & VERMICELLI MIX,RICE PILAF FLAVOR,PREP W/ 80% MARGARIN~^^^^^0^^^^^
-~32004~^~2200~^~Macaroni and cheese, box mix with cheese sauce, unprepared~^~MACARONI & CHS,BOX MIX W/ CHS SAU,UNPREP~^^^~Y~^^0^^^^^
-~32005~^~2200~^~Macaroni and cheese, box mix with cheese sauce, prepared~^~MACARONI & CHS,BOX MIX W/ CHS SAU,PREP~^^^^^0^^^^^
-~32006~^~2200~^~Taquitos, frozen, chicken and cheese, oven-heated~^~TAQUITOS,FRZ,CHICK & CHS,OVEN-HEATED~^^^~Y~^^0^^6.25^^^
-~32007~^~2200~^~Taquitos, frozen, beef and cheese, oven-heated~^~TAQUITOS,FRZ,BF & CHS,OVEN-HEATED~^^^~Y~^^0^^6.25^^^
-~32008~^~2200~^~Pasta mix, classic cheeseburger macaroni, unprepared~^~PASTA MIX,CLASSIC CHEESEBURGER MACARONI,UNPREP~^^^~Y~^^0^^^^^
-~32009~^~2200~^~Pasta mix, classic beef, unprepared~^~PASTA MIX,CLASSIC BF,UNPREP~^^^~Y~^^0^^6.25^^^
-~32010~^~2200~^~Pasta mix, Italian lasagna, unprepared~^~PASTA MIX,ITALIAN LASAGNA,UNPREP~^^^~Y~^^0^^6.25^^^
-~32011~^~2200~^~Yellow rice with seasoning, dry packet mix, unprepared~^~YELLOW RICE W/ SEASONING,DRY PACKET MIX,UNPREP~^^^~Y~^^0^^6.25^^^
-~32012~^~2200~^~Pizza rolls, frozen, unprepared~^~PIZZA ROLLS,FRZ,UNPREP~^^^~Y~^^0^^6.25^^^
-~32013~^~2200~^~Potsticker or wonton, pork and vegetable, frozen, unprepared~^~POTSTICKER OR WONTON,PORK & VEG,FRZ,UNPREP~^^^~Y~^^0^^6.25^^^
-~32014~^~2200~^~Macaroni or noodles with cheese, made from reduced fat packaged mix, unprepared~^~MACARONI OR NOODLES W/ CHS,MADE FROM RED FAT PACKAGED MIX,UN~^^^~Y~^^0^^6.25^^^
-~32015~^~2200~^~Turnover, cheese-filled, tomato-based sauce, frozen, unprepared~^~TURNOVER,CHEESE-FILLED,TOMATO-BASED SAU,FRZ,UNPREP~^^^~Y~^^0^^6.25^^^
-~32016~^~2200~^~Macaroni or noodles with cheese, microwaveable, unprepared~^~MACARONI OR NOODLES W/ CHS,MICROWAVEABLE,UNPREP~^^^~Y~^^0^^6.25^^^
-~32017~^~2200~^~Pasta mix, Italian four cheese lasagna, unprepared~^~PASTA MIX,ITALIAN FOUR CHS LASAGNA,UNPREP~^^^^^0^^6.25^^^
-~32018~^~2200~^~Spanish rice mix, dry mix, unprepared~^~SPANISH RICE MIX,DRY MIX,UNPREP~^^^^^0^^6.25^^^
-~32019~^~2200~^~Lasagna, cheese, frozen, unprepared~^~LASAGNA,CHS,FRZ,UNPREP~^^^^^0^^6.25^^^
-~32020~^~2200~^~Chicken, thighs, frozen, breaded, reheated~^~CHICKEN,THIGHS,FRZ,BREADED,REHTD~^^^^^0^^6.25^^^
-~32021~^~2200~^~Spanish rice mix, dry mix, prepared (with canola/vegetable oil blend or diced tomatoes and margarine)~^~SPANISH RICE MIX,DRY MIX,PREP (WITH CANOLA/VEGETABLE OIL BLE~^^^^^0^^6.25^^^
-~32024~^~2200~^~Rice mix, cheese flavor, dry mix, unprepared~^~RICE MIX,CHS FLAVOR,DRY MIX,UNPREP~^^^~Y~^^0^^6.25^^^
-~32025~^~2200~^~Dumpling, potato- or cheese-filled, frozen~^~DUMPLING,POTATO- OR CHEESE-FILLED,FRZ~^^^~Y~^^0^^6.25^^^
-~32026~^~2200~^~Turnover, chicken- or turkey-, and vegetable-filled, reduced fat, frozen~^~TURNOVER,CHICKEN- OR TURKEY-,& VEGETABLE-FILLED,RED FAT,FRZ~^^^~Y~^^0^^6.25^^^
-~32027~^~2200~^~Turnover, meat- and cheese-filled, tomato-based sauce, reduced fat, frozen~^~TURNOVER,MEAT- & CHEESE-FILLED,TOMATO-BASED SAU,RED FAT,FRZ~^^^~Y~^^0^^6.25^^^
-~32028~^~2200~^~Turnover, filled with egg, meat and cheese, frozen~^~TURNOVER,FILLED W/ EGG,MEAT & CHS,FRZ~^^^~Y~^^0^^6.25^^^
-~32029~^~2200~^~Rice mix, white and wild, flavored, unprepared~^~RICE MIX,WHITE & WILD,FLAV,UNPREP~^^^~Y~^^0^^6.25^^^
-~32031~^~2200~^~Salisbury steak with gravy, frozen~^~SALISBURY STEAK W/ GRAVY,FRZ~^^^~Y~^^0^^6.25^^^
-~32032~^~2200~^~Sausage, egg and cheese breakfast biscuit~^~SAUSAGE,EGG & CHS BRKFST BISCUIT~^^^~Y~^^0^^6.25^^^
-~32034~^~2200~^~HUNGRY MAN, Salisbury Steak With Gravy, frozen, unprepared~^~HUNGRY MAN,SALISBURY STEAK W/ GRAVY,FRZ,UNPREP~^^~Hungry Man~^^^0^^^^^
-~32035~^~2200~^~BANQUET, Salisbury Steak With Gravy, family size, frozen, unprepared~^~BANQUET,SALISBURY STEAK W/ GRAVY,FAMILY SIZE,FRZ,UNPREP~^^~Banquet Foods Corp.~^^^0^^^^^
-~32036~^~2200~^~JIMMY DEAN, Sausage, Egg, and Cheese Breakfast Biscuit, frozen, unprepared~^~JIMMY DEAN,SAUSAGE,EGG,& CHS BRKFST BISCUIT,FRZ,UNPREP~^^~Jimmy Dean Foods~^^^0^^^^^
-~33862~^~0300~^~Infant Formula, MEAD JOHNSON, ENFAMIL, Newborn, with ARA and DHA, powder~^~INF FORMULA,MEAD JOHNSON,ENFAMIL,NEWBORN,W/ ARA & DHA,PDR~^^~MEAD JOHNSON~^~Y~^^0^^6.25^^^
-~33863~^~0300~^~Infant Formula, MEAD JOHNSON, ENFAMIL, Premium LIPIL, Infant, powder~^~INF FORMULA,MEAD JOHNSON,ENFAMIL,PREMIUM LIPIL,INFANT,PDR~^^~MEAD JOHNSON~^~Y~^^0^^6.25^^^
-~33864~^~0300~^~Infant Formula, MEAD JOHNSON, ENFAMIL, Premium LIPIL, Infant, Liquid concentrate, not reconstituted~^~INF FORMU, MEA JOHN, ENFA, PRE LIPIL, INFA, LIQ CON, NOT REC~^^~MEAD JOHNSON~^~Y~^^0^^^^^
-~33865~^~0300~^~Infant Formula, MEAD JOHNSON, ENFAMIL, Premium, Infant, Liquid concentrate, not reconstituted~^~INF FORMULA,MEAD JOHNSON,ENFA,PREM,INFANT,LIQ CONC,NOT REC~^^~MEAD JOHNSON~^~Y~^^0^^^^^
-~33866~^~0300~^~Infant formula, MEAD JOHNSON, ENFAMIL, ENFAGROW, GENTLEASE, Toddler transitions, with ARA and DHA, powder~^~INF FORMU,MEAD JOH,ENFA,ENFA,GEN,TODD TRANS,W/ ARA & DHA,PDR~^^~MEAD JOHNSON~^~Y~^^0^^6.25^^^
-~33867~^~0300~^~Infant formula, GERBER, GOOD START, PROTECT PLUS, powder~^~INF FORMULA, GERBER, GOOD START, PROTECT PLUS,PDR~^^~GERBER~^~Y~^^0^^6.25^^^
-~33868~^~0300~^~Infant Formula, GERBER GOOD START 2, GENTLE PLUS, powder~^~INF FORMULA,GERBER GOOD START 2,GENTLE PLUS,PDR~^^~GERBER~^~Y~^^0^^6.25^^^
-~33869~^~0300~^~Infant formula, GERBER, GOOD START 2, PROTECT PLUS, powder~^~INF FORMULA, GERBER, GOOD START 2, PROTECT PLUS, PDR~^^~GERBER~^~Y~^^0^^6.25^^^
-~33870~^~0300~^~Infant formula, MEAD JOHNSON, ENFAMIL, ENFAGROW, Soy, Toddler transitions, with ARA and DHA, powder~^~INF FOR,ME JO,ENFAML,ENFA,SOY,TODD TRANS,W/ ARA & DHA,PDR~^^~MEAD JOHNSON~^~Y~^^0^^6.25^^^
-~33871~^~0300~^~Infant formula, ABBOTT NUTRITION, SIMILAC, GO AND GROW, powder, with ARA and DHA~^~INF FORMULA, ABB NUTR, SIMIL, GO & GR, PDR, W/ ARA & DHA~^^~ABBOT NUTRTION~^~Y~^^0^^6.25^^^
-~33872~^~0300~^~Infant formula, GERBER, GOOD START 2 SOY, with iron, powder~^~INF FORMULA, GERBER, GOOD START 2 SOY, W/ IRON,PDR~^^~GERBER~^~Y~^^0^^6.25^^^
-~33873~^~0300~^~Infant formula, MEAD JOHNSON, ENFAMIL, NUTRAMIGEN, PurAmino, powder, not reconstituted~^~INF FORMULA,MEAD JOHNSON,ENFAM,NUTRAMIG,PURAMI,PDR,NO REC~^^~MEAD JOHNSON~^~Y~^^0^^6.25^^^
-~33874~^~0300~^~Infant formula, MEAD JOHNSON, ENFAMIL, Premature, 20 calories ready-to-feed Low iron~^~INF FORMULA,MEAD JOHNSON,ENFAMI,PREMATURE,20 CAL RTF LO IRON~^^~MEAD JOHNSON~^~Y~^^0^^6.25^^^
-~33875~^~0300~^~Infant formula, MEAD JOHNSON, ENFAMIL, Premature, 24 calories ready-to-feed Low iron~^~INF FORMULA,MEAD JOHNSON,ENFAML,PREMATURE,24 CAL RTF LO IRON~^^~MEAD JOHNSON~^~Y~^^0^^6.25^^^
-~33876~^~0300~^~Infant Formula, MEAD JOHNSON, ENFAMIL, Premium, Infant, ready-to-feed~^~INF FORMULA,MEAD JOHNSON,ENFAMIL,PREMIUM,INFANT,RTF~^^~MEAD JOHNSON~^~Y~^^0^^6.25^^^
-~33877~^~0300~^~Infant Formula, MEAD JOHNSON, ENFAMIL, Premium, Infant, powder~^~INF FORMULA,MEAD JOHNSON,ENFAMIL,PREMIUM,INFANT,PDR~^^~MEAD JOHNSON~^~Y~^^0^^6.25^^^
-~33878~^~0300~^~Babyfood, GERBER, Banana with orange medley~^~BABYFOOD,GERBER,BANANA W/ ORANGE MEDLEY~^^~GERBER~^~Y~^^0^^6.25^3.98^8.37^3.16
-~33881~^~0300~^~Babyfood, rice cereal, dry, EARTHS BEST ORGANIC WHOLE GRAIN, fortified only with iron~^~BABYFOOD,RICE CRL,DRY,EARTHS BEST ORGANIC WHL GRAIN,FORT ONL~^^~Eaths Best~^^^0^^^^^
-~35001~^~3500~^~Agutuk, fish/berry with seal oil (Alaskan ice cream) (Alaska Native)~^~AGUTUK,FISH/BERRY W/ SEAL OIL (ICE CREAM) (ALASKA NATIVE)~^^^^^0^^6.25^^^
-~35003~^~3500~^~Agutuk, meat-caribou (Alaskan ice cream) (Alaska Native)~^~AGUTUK,MEAT-CARIBOU (ALASKAN ICE CREAM) (ALASKA NATIVE)~^^^^^0^^6.25^^^
-~35004~^~3500~^~Ascidians (tunughnak) (Alaska Native)~^~ASCIDIANS (TUNUGHNAK) (ALASKA NATIVE)~^^^^^0^^6.25^^^
-~35007~^~3500~^~Bear, black, meat (Alaska Native)~^~BEAR,BLACK,MEAT (ALASKA NATIVE)~^^^^^0^~Ursus americanus~^6.25^^^
-~35008~^~3500~^~Bear, polar, meat, raw (Alaska Native)~^~BEAR,POLAR,MEAT,RAW (ALASKA NATIVE)~^^^^^0^~Ursus maritimus~^6.25^^^
-~35009~^~3500~^~Whale, beluga, meat, dried (Alaska Native)~^~WHALE,BELUGA,MEAT,DRIED (ALASKA NATIVE)~^^^^^0^~Delphinapterus leucas~^6.25^^^
-~35010~^~3500~^~Whale, beluga, eyes (Alaska Native)~^~WHALE,BELUGA,EYES (ALASKA NATIVE)~^^^^^0^~Delphinapterus leucas~^6.25^^^
-~35011~^~3500~^~Whale, beluga, meat, raw (Alaska Native)~^~Whale, beluga, meat, raw (Alaska Native)~^^^^^0^~Delphinapterus leucas~^6.25^^^
-~35012~^~3500~^~Whale, beluga, flipper, raw (Alaska Native)~^~WHALE,BELUGA,FLIPPER,RAW (ALASKA NATIVE)~^^^^^0^~Delphinapterus leucas~^6.25^^^
-~35013~^~3500~^~Whale, beluga, liver, raw (Alaska Native)~^~WHALE,BELUGA,LIVER,RAW (ALASKA NATIVE)~^^^^^0^~Delphinapterus leucas~^6.25^^^
-~35014~^~3500~^~Oil, beluga, whale (Alaska Native)~^~OIL,BELUGA,WHALE (ALASKA NATIVE)~^^^^^0^~Delphinapterus leucas~^^^^
-~35015~^~3500~^~Blackberries, wild, raw (Alaska Native)~^~BLACKBERRIES,WILD,RAW (ALASKA NATIVE)~^~Crowberries~^^^^0^~Rubus spp.~^5.30^^^
-~35016~^~3500~^~Fish, blackfish, whole (Alaska Native)~^~FISH,BLACKFISH,WHL (ALASKA NATIVE)~^^^^^0^~Dallia pectoralis~^6.25^^^
-~35017~^~3500~^~Blueberries, wild, frozen (Alaska Native)~^~BLUEBERRIES,WILD,FRZ (ALASKA NATIVE)~^^^^^0^~Vaccinium alaskanese and Ovalifolium~^5.30^^^
-~35021~^~3500~^~Caribou, bone marrow, raw (Alaska Native)~^~CARIBOU,BONE MARROW,RAW (ALASKA NATIVE)~^^^^^0^~Rangifer tarandus~^6.25^^^
-~35022~^~3500~^~Caribou, eye, raw (Alaska Native)~^~CARIBOU,EYE,RAW (ALASKA NATIVE)~^^^^^0^~Rangifer tarandus~^6.25^^^
-~35023~^~3500~^~Caribou, liver, raw (Alaska Native)~^~CARIBOU,LIVER,RAW (ALASKA NATIVE)~^^^^^0^~Rangifer tarandus~^6.25^^^
-~35024~^~3500~^~Stew/soup, caribou (Alaska Native)~^~STEW/SOUP,CARIBOU (ALASKA NATIVE)~^^^^^0^^6.25^^^
-~35025~^~3500~^~Caribou, tongue, raw (Alaska Native)~^~CARIBOU,TONGUE,RAW (ALASKA NATIVE)~^^^^^0^^6.25^^^
-~35026~^~3500~^~Chiton, leathery, gumboots (Alaska Native)~^~CHITON,LEATHERY,GUMBOOTS (ALASKA NATIVE)~^^^^^0^~Katharina tunicata~^6.25^^^
-~35027~^~3500~^~Cloudberries, raw (Alaska Native)~^~CLOUDBERRIES,RAW (ALASKA NATIVE)~^~baked apple berry, yellowberry, salmonberry~^^^^0^~Rubus chamaemorus L.~^5.30^^^
-~35028~^~3500~^~Cockles, raw (Alaska Native)~^~COCKLES,RAW (ALASKA NATIVE)~^^^^^0^~Clinocardium nuttallii~^6.25^^^
-~35029~^~3500~^~Cranberries, wild, bush, raw (Alaska Native)~^~CRANBERRIES,WILD,BUSH,RAW (ALASKA NATIVE)~^^^^^0^~Viburnum edule~^5.30^^^
-~35030~^~3500~^~Cranberry, low bush or lingenberry, raw (Alaska Native)~^~CRANBERRY,LO BUSH OR LINGENBERRY,RAW (ALASKA NATIVE)~^~lingenberry~^^^^0^~Vaccinium vitis-idaea~^5.30^^^
-~35034~^~3500~^~Fish, devilfish, meat (Alaska Native)~^~FISH,DEVILFISH,MEAT (ALASKA NATIVE)~^~Gray Whale~^^^^0^~Myoxocephalus~^6.25^^^
-~35038~^~3500~^~Fireweed, young leaves, raw (Alaska Native)~^~FIREWEED,YOUNG LEAVES,RAW (ALASKA NATIVE)~^^^^^0^~Chamerion angustifolium~^5.30^^^
-~35039~^~3500~^~Fish, herring eggs on giant kelp, Pacific (Alaska Native)~^~FISH,HERRING EGGS ON GIANT KELP,PACIFIC (ALASKA NATIVE)~^^^^^0^~Clupea harengus pallasi Valenciennes & Macrocystis integrifolia~^6.25^^^
-~35040~^~3500~^~Fish, herring eggs, Pacific, dry (Alaska Native)~^~FISH,HERRING EGGS,PACIFIC,DRY (ALASKA NATIVE)~^^^^^0^~Clupea harengus pallasi Valenciennes~^6.25^^^
-~35041~^~3500~^~Fish, herring eggs, Pacific, plain (Alaska Native)~^~FISH,HERRING EGGS,PACIFIC,PLN (ALASKA NATIVE)~^^^^^0^~Clupea harengus pallasi Valenciennes~^6.25^^^
-~35042~^~3500~^~Fish, herring, Pacific, flesh, air-dried, packed in oil (Alaska Native)~^~FISH,HERRING,PACIFIC,FLSH,AIR-DRIED,PACK OIL (ALASKA NATIVE)~^^^^^0^~Clupea harengus pallasi Valenciennes~^6.25^^^
-~35043~^~3500~^~Huckleberries, raw (Alaska Native)~^~HUCKLEBERRIES,RAW (ALASKA NATIVE)~^^^^^0^~Vaccinium alaskaense~^5.30^^^
-~35046~^~3500~^~Fish, lingcod, meat, raw (Alaska Native)~^~FISH,LINGCOD,MEAT,RAW (ALASKA NATIVE)~^^^^^0^~Ophiodon elongatus~^6.25^^^
-~35047~^~3500~^~Fish, lingcod, liver (Alaska Native)~^~FISH,LINGCOD,LIVER (ALASKA NATIVE)~^^^^^0^~Ophiodon elongatus~^6.25^^^
-~35048~^~3500~^~Stew, moose (Alaska Native)~^~STEW,MOOSE (ALASKA NATIVE)~^^^^^0^^6.25^^^
-~35049~^~3500~^~Moose, meat, raw (Alaska Native)~^~MOOSE,MEAT,RAW (ALASKA NATIVE)~^^^^^0^~Alces alces~^6.25^^^
-~35050~^~3500~^~Mashu roots, raw (Alaska Native)~^~MASHU ROOTS,RAW (ALASKA NATIVE)~^^^^^0^~Hedysarum alpinum~^5.30^^^
-~35051~^~3500~^~Moose, liver, braised (Alaska Native)~^~MOOSE,LIVER,BRSD (ALASKA NATIVE)~^^^^^0^~Alces alces~^6.25^^^
-~35052~^~3500~^~Mouse nuts, roots (Alaska Native)~^~MOUSE NUTS,ROOTS (ALASKA NATIVE)~^^^^^0^^6.25^^^
-~35053~^~3500~^~Mouse nuts, seedlings (Alaska Native)~^~MOUSE NUTS,SEEDLINGS (ALASKA NATIVE)~^^^^^0^^6.25^^^
-~35054~^~3500~^~Octopus (Alaska Native)~^~OCTOPUS (ALASKA NATIVE)~^^^^^0^~Octopus dofleini~^6.25^^^
-~35055~^~3500~^~Seal, bearded (Oogruk), meat, dried (Alaska Native)~^~SEAL,BEARDED (OOGRUK),MEAT,DRIED (ALASKA NATIVE)~^~Oogruk~^^^^0^^6.25^^^
-~35056~^~3500~^~Seal, bearded (Oogruk), meat, raw (Alaska Native)~^~SEAL,BEARDED (OOGRUK),MEAT,RAW (ALASKA NATIVE)~^^^^^0^~Erignathus barbatus~^6.25^^^
-~35057~^~3500~^~Oil, bearded seal (Oogruk) (Alaska Native)~^~OIL,BEARDED SEAL (OOGRUK) (ALASKA NATIVE)~^^^^^0^^^^^
-~35058~^~3500~^~Oopah (tunicate), whole animal (Alaska Native)~^~OOPAH (TUNICATE),WHL ANIMAL (ALASKA NATIVE)~^^^^^0^~Tunicata~^6.25^^^
-~35059~^~3500~^~Owl, horned, flesh, raw (Alaska Native)~^~OWL,HORNED,FLESH,RAW (ALASKA NATIVE)~^^^^^0^~Bubo virgimianus~^6.25^^^
-~35060~^~3500~^~Fish, pike, northern, liver (Alaska Native)~^~FISH,PIKE,NORTHERN,LIVER (ALASKA NATIVE)~^^^^^0^~Esox lucius~^6.25^^^
-~35063~^~3500~^~Rhubarb, wild, leaves (Alaska Native)~^~RHUBARB,WILD,LEAVES (ALASKA NATIVE)~^^^^^0^~Polygenum alaskanum~^5.30^^^
-~35064~^~3500~^~Fish, salmon, tipnuk, fermented (Alaska Native)~^~FISH,SALMON,TIPNUK,FERMENTED (ALASKA NATIVE)~^^^^^0^^6.25^^^
-~35065~^~3500~^~Fish, salmon, king, chinook, kippered, canned (Alaska Native)~^~FISH,SALMON,KING,CHINOOK,KIPPERED,CND (ALASKA NATIVE)~^^^^^0^~Oncorhynchus tshawytscha~^6.25^^^
-~35066~^~3500~^~Fish, salmon, king, chinook, smoked and canned (Alaska Native)~^~FISH,SALMON,KING,CHINOOK,SMOKED & CND (ALASKA NATIVE)~^^^^^0^~Oncorhynchus tshawytscha~^6.25^^^
-~35067~^~3500~^~Fish, salmon, king, chinook, smoked, brined (Alaska Native)~^~FISH,SALMON,KING,CHINOOK,SMOKED,BRINED (ALASKA NATIVE)~^^^^^0^~Oncorhynchus tshawytscha~^6.25^^^
-~35068~^~3500~^~Fish, salmon, king, chinook, liver (Alaska Native)~^~FISH,SALMON,KING,CHINOOK,LIVER (ALASKA NATIVE)~^^^^^0^~Oncorhynchus tshawytscha~^6.25^^^
-~35069~^~3500~^~Duck, scoter, white-winged, meat (Alaska Native)~^~DUCK,SCOTER,WHITE-WINGED,MEAT (ALASKA NATIVE)~^^^^^0^~Melanitta fusca~^5.30^^^
-~35070~^~3500~^~Sea cucumber, yane (Alaska Native)~^~SEA CUCUMBER,YANE (ALASKA NATIVE)~^^^^^0^~Stichopus californicus~^6.25^^^
-~35071~^~3500~^~Seal, ringed, meat (Alaska Native)~^~SEAL,RINGED,MEAT (ALASKA NATIVE)~^^^^^0^~Pusa hispida~^6.25^^^
-~35072~^~3500~^~Seal, ringed, liver (Alaska Native)~^~SEAL,RINGED,LIVER (ALASKA NATIVE)~^^^^^0^~Pusa hispida~^6.25^^^
-~35073~^~3500~^~Soup, fish, homemade (Alaska Native)~^~SOUP,FISH,HOMEMADE (ALASKA NATIVE)~^^^^^0^^6.25^^^
-~35074~^~3500~^~Sourdock, young leaves (Alaska Native)~^~SOURDOCK,YOUNG LEAVES (ALASKA NATIVE)~^^^^^0^~Rumex articus~^6.25^^^
-~35075~^~3500~^~Squirrel, ground, meat (Alaska Native)~^~SQUIRREL,GROUND,MEAT (ALASKA NATIVE)~^^^^^0^~Citellus undulatus~^5.30^^^
-~35078~^~3500~^~Tea, tundra, herb and laborador combination (Alaska Native)~^~TEA,TUNDRA,HERB & LABORADOR COMBINATION (ALASKA NATIVE)~^^^^^0^^6.25^^^
-~35079~^~3500~^~Walrus, meat, dried (Alaska Native)~^~WALRUS,MEAT,DRIED (ALASKA NATIVE)~^^^^^0^~Odohenus rosmarus~^6.25^^^
-~35080~^~3500~^~Deer (venison), sitka, raw (Alaska Native)~^~DEER (VENISON),SITKA,RAW (ALASKA NATIVE)~^~sitka deer, venison~^^^^0^~Odocoileus spp~^6.25^4.27^9.02^3.87
-~35081~^~3500~^~Walrus, meat, raw (Alaska Native)~^~WALRUS,MEAT,RAW (ALASKA NATIVE)~^^^^^0^~Odohenus rosmarus~^6.25^^^
-~35082~^~3500~^~Walrus, meat and subcutaneous fat raw (Alaska Native)~^~WALRUS,MEAT & SUBCUTANEOUS FAT RAW (ALASKA NATIVE)~^^^^^0^~Odohenus rosmarus~^6.25^^^
-~35083~^~3500~^~Walrus, liver, raw (Alaska Native)~^~WALRUS,LIVER,RAW (ALASKA NATIVE)~^^^^^0^~Odohenus rosmarus~^6.25^^^
-~35084~^~3500~^~Oil, walrus (Alaska Native)~^~OIL,WALRUS (ALASKA NATIVE)~^^^^^0^~Odohenus rosmarus~^6.25^^^
-~35085~^~3500~^~Whale, bowhead, subcutaneous fat (blubber) (Alaska Native)~^~WHALE,BOWHEAD,SUBCUTANEOUS FAT (BLUBBER) (ALASKA NATIVE)~^^^^^0^~Balaena mysticetus~^6.25^^^
-~35086~^~3500~^~Whale, bowhead, skin and subcutaneous fat (muktuk) (Alaska Native)~^~WHALE,BOWHEAD,SKN & SUBCUTANEOUS FATMUKTUK(ALASKA NATIVE)~^^^^^0^~Balaena mysticetus~^6.25^^^
-~35087~^~3500~^~Oil, whale, bowhead (Alaska Native)~^~OIL,WHALE,BOWHEAD (ALASKA NATIVE)~^^^^^0^~Balaena mysticetus~^6.25^^^
-~35088~^~3500~^~Fish, whitefish, broad, liver (Alaska Native)~^~FISH,WHITEFISH,BROAD,LIVER (ALASKA NATIVE)~^~sheefish~^^^^0^~Coregonus nasus~^6.25^^^
-~35089~^~3500~^~Fish, whitefish, mixed species, raw (Alaska Native)~^~FISH,WHITEFISH,MXD SP,RAW (ALASKA NATIVE)~^~sheefish~^^^^0^~Coregonus spp.~^6.25^^^
-~35091~^~3500~^~Fish, whitefish, broad, head, eyes, cheeks and soft bones (Alaska Native)~^~FISH,WHITEFISH,HEAD,EYES,CHEEKS & SOFT BONES (ALASKA NATIVE)~^~sheefish~^^^^0^~Coregonus nasus~^6.25^^^
-~35092~^~3500~^~Willow, leaves in oil (Alaska Native)~^~WILLOW,LEAVES IN OIL (ALASKA NATIVE)~^^^^^0^~Salix pulchra Cham.~^6.25^^^
-~35093~^~3500~^~Willow, young leaves, chopped (Alaska Native)~^~WILLOW,YOUNG LEAVES,CHOPD (ALASKA NATIVE)~^^^^^0^~Salix pulchra Cham.~^5.30^^^
-~35130~^~3500~^~Mush, blue corn with ash (Navajo)~^~MUSH,BLUE CORN W/ ASH (NAVAJO)~^^^^^0^^^^^
-~35131~^~3500~^~Cornmeal, blue (Navajo)~^~CORNMEAL,BLUE (NAVAJO)~^^^^^0^^^^^
-~35132~^~3500~^~Melon, banana (Navajo)~^~MELON,BANANA (NAVAJO)~^^^^^0^^6.25^^^
-~35133~^~3500~^~Chilchen (Red Berry Beverage) (Navajo)~^~CHILCHEN (RED BERRY BEVERAGE) (NAVAJO)~^^^^^0^^6.25^^^
-~35134~^~3500~^~Corn, dried (Navajo)~^~CORN,DRIED (NAVAJO)~^^^^^0^^6.25^^^
-~35135~^~3500~^~Corn, white, steamed (Navajo)~^~CORN,WHITE,STMD (NAVAJO)~^^^^^0^^^^^
-~35136~^~3500~^~Cornmeal, white (Navajo)~^~CORNMEAL,WHITE (NAVAJO)~^^^^^0^^6.25^^^
-~35137~^~3500~^~Cornmeal, yellow (Navajo)~^~CORNMEAL,YEL (NAVAJO)~^^^^^0^^6.25^^^
-~35138~^~3500~^~Squash, Indian, raw (Navajo)~^~SQUASH,INDIAN,RAW (NAVAJO)~^^^^^0^^6.25^^^
-~35139~^~3500~^~Squash, Indian, cooked, boiled (Navajo)~^~SQUASH,INDIAN,CKD,BLD (NAVAJO)~^^^^^0^^6.25^^^
-~35140~^~3500~^~Bread, kneel down (Navajo)~^~BREAD,KNEEL DOWN (NAVAJO)~^^^^^0^^6.25^^^
-~35141~^~3500~^~Mutton, cooked, roasted (Navajo)~^~MUTTON,CKD,RSTD (NAVAJO)~^^^^^0^^6.25^^^
-~35142~^~3500~^~Frybread, made with lard (Navajo)~^~FRYBREAD,MADE W/ LARD (NAVAJO)~^^^^^0^^^^^
-~35143~^~3500~^~Tortilla, includes plain and from mutton sandwich (Navajo)~^~TORTILLA,INCL PLN & FROM MUTTON SNDWCH (NAVAJO)~^^^^^0^^^^^
-~35144~^~3500~^~Stew, dumpling with mutton (Navajo)~^~STEW,DUMPLING W/ MUTTON (NAVAJO)~^^^^^0^^^^^
-~35145~^~3500~^~Stew, hominy with mutton (Navajo)~^~STEW,HOMINY W/ MUTTON (NAVAJO)~^^^^^0^^6.25^^^
-~35146~^~3500~^~Stew, mutton, corn, squash (Navajo)~^~STEW,MUTTON,CORN,SQUASH (NAVAJO)~^^^^^0^^6.25^^^
-~35147~^~3500~^~Tamales (Navajo)~^~TAMALES (NAVAJO)~^^^^^0^^6.25^^^
-~35148~^~3500~^~Stew, steamed corn (Navajo)~^~STEW,STMD CORN (NAVAJO)~^^^^^0^^^^^
-~35149~^~3500~^~Fish, halibut, raw, with skin (Alaska Native)~^~FISH,HALIBUT,RAW,W/ SKN (ALASKA NATIVE)~^^^^^0^^^^^
-~35150~^~3500~^~Fish, salmon, coho (silver), raw (Alaska Native)~^~FISH,SALMON,COHO (SILVER),RAW (ALASKA NATIVE)~^^^^^0^^6.25^^^
-~35151~^~3500~^~Fish, salmon, sockeye (red), raw (Alaska Native)~^~FISH,SALMON,SOCKEYE (RED),RAW (ALASKA NATIVE)~^^^^^0^^6.25^^^
-~35152~^~3500~^~Fish, Salmon, Chum, raw (Alaska Native)~^~FISH,SALMON,CHUM,RAW (ALASKA NATIVE)~^^^^^0^^6.25^^^
-~35153~^~3500~^~Fish, salmon, king (chinook), raw (Alaska Native)~^~FISH,SALMON,KING (CHINOOK),RAW (ALASKA NATIVE)~^^^^^0^^6.25^^^
-~35154~^~3500~^~Salmonberries, raw (Alaska Native)~^~SALMONBERRIES,RAW (ALASKA NATIVE)~^~akpiks~^^^^0^~Rubus spectabilis~^5.30^^^
-~35155~^~3500~^~Blueberries, wild, raw (Alaska Native)~^~BLUEBERRIES,WILD,RAW (ALASKA NATIVE)~^^^^^0^~Vaccinium alaskaenese~^5.30^^^
-~35156~^~3500~^~Oil, spotted seal (Alaska Native)~^~OIL,SPOTTED SEAL (ALASKA NATIVE)~^^^^^0^^6.25^^^
-~35157~^~3500~^~Fish, salmon, red, canned, bones removed (Alaska Native)~^~FISH,SALMON,RED,CND,BONES REMOVED (ALASKA NATIVE)~^^^^^0^^6.25^^^
-~35158~^~3500~^~Fish, whitefish, eggs (Alaska Native)~^~FISH,WHITEFISH,EGGS (ALASKA NATIVE)~^^^^^0^^6.25^^^
-~35160~^~3500~^~Caribou, rump meat, half dried (Alaska Native)~^~CARIBOU,RUMP MEAT,HALF DRIED (ALASKA NATIVE)~^^^^^0^^6.25^^^
-~35161~^~3500~^~Caribou, shoulder meat, dried (Alaska Native)~^~CARIBOU,SHLDR MEAT,DRIED (ALASKA NATIVE)~^^^^^0^^6.25^^^
-~35162~^~3500~^~Caribou, hind quarter meat, raw (Alaska Native)~^~CARIBOU,HIND QUARTER MEAT,RAW (ALASKA NATIVE)~^^^^^0^^6.25^^^
-~35164~^~3500~^~Seal, bearded (Oogruk), meat, dried, in oil (Alaska Native)~^~SEAL,BEARDED (OOGRUK),MEAT,DRIED,IN OIL (ALASKA NATIVE)~^^^^^0^^6.25^^^
-~35165~^~3500~^~Fish, whitefish, dried (Alaska Native)~^~FISH,WHITEFISH,DRIED (ALASKA NATIVE)~^^^^^0^^6.25^^^
-~35166~^~3500~^~Fish, salmon, red, (sockeye), canned, smoked (Alaska Native)~^~FISH,SALMON,RED,(SOCKEYE),CND,SMOKED (ALASKA NATIVE)~^^^^^0^^6.25^^^
-~35167~^~3500~^~Fish, salmon, red, (sockeye), kippered (Alaska Native)~^~FISH,SALMON,RED,(SOCKEYE),KIPPERED (ALASKA NATIVE)~^^^^^0^^6.25^^^
-~35168~^~3500~^~Fish, salmon, king, with skin, kippered, (Alaska Native)~^~FISH,SALMON,KING,W/ SKN,KIPPERED,(ALASKA NATIVE)~^^^^^0^^6.25^^^
-~35169~^~3500~^~Fish, sheefish, raw (Alaska Native)~^~FISH,SHEEFISH,RAW (ALASKA NATIVE)~^^^^^0^^6.25^^^
-~35170~^~3500~^~Seal, bearded (Oogruk), meat, low quadrant, raw (Alaska Native)~^~SEAL,BEARDED (OOGRUK),MEAT,LO QUADRANT,RAW (ALASKA NATIVE)~^^^^^0^^6.25^^^
-~35171~^~3500~^~Fish, salmon, chum, dried (Alaska Native)~^~FISH,SALMON,CHUM,DRIED (ALASKA NATIVE)~^^^^^0^^6.25^^^
-~35172~^~3500~^~Elk, free range, ground, cooked patties (Shoshone Bannock)~^~ELK,FREE RANGE,GROUND,CKD PATTIES (SHOSHONE BANNOCK)~^^^^^0^^6.25^^^
-~35173~^~3500~^~Elk, free range, ground, raw (Shoshone Bannock)~^~ELK,FREE RANGE,GROUND,RAW (SHOSHONE BANNOCK)~^^^^^0^^6.25^^^
-~35174~^~3500~^~Buffalo, free range, top round steak, raw (Shoshone Bannock)~^~BUFFALO,FREE RANGE,TOP RND STEAK,RAW (SHOSHONE BANNOCK)~^^^^^0^^6.25^^^
-~35175~^~3500~^~Seal, bearded (Oogruk), meat, partially dried (Alaska Native)~^~SEAL,BEARDED (OOGRUK),MEAT,PART DRIED (ALASKA NATIVE)~^^^^^0^^6.25^^^
-~35176~^~3500~^~Buffalo, free range, top round steak, cooked (Shoshone Bannock)~^~BUFFALO,FREE RANGE,TOP RND STEAK,CKD (SHOSHONE BANNOCK)~^^^^^0^^6.25^^^
-~35177~^~3500~^~Elk, free range, roast, eye of round, raw (Shoshone Bannock)~^~ELK,FREE RANGE,RST,EYE OF RND,RAW (SHOSHONE BANNOCK)~^^^^^0^^6.25^^^
-~35178~^~3500~^~Elk, free range, roast, eye of round, cooked (Shoshone Bannock)~^~ELK,FREE RANGE,RST,EYE OF RND,CKD (SHOSHONE BANNOCK)~^^^^^0^^6.25^^^
-~35179~^~3500~^~Chokecherries, raw, pitted (Shoshone Bannock)~^~CHOKECHERRIES,RAW,PITTED (SHOSHONE BANNOCK)~^^^^^0^^6.25^^^
-~35180~^~3500~^~Steelhead trout, dried, flesh (Shoshone Bannock)~^~STEELHEAD TROUT,DRIED,FLESH (SHOSHONE BANNOCK)~^^^^^0^^6.25^^^
-~35181~^~3500~^~Steelhead trout, boiled, canned (Alaska Native)~^~STEELHEAD TROUT,BLD,CND (ALASKA NATIVE)~^^^^^0^^6.25^^^
-~35182~^~3500~^~Acorn stew (Apache)~^~ACORN STEW (APACHE)~^^^^^0^^6.25^^^
-~35183~^~3500~^~Corn, dried, yellow (Northern Plains Indians)~^~CORN,DRIED,YEL (NORTHERN PLAINS INDIANS)~^^^^^0^^6.25^^^
-~35184~^~3500~^~Smelt, dried (Alaska Native)~^~SMELT,DRIED (ALASKA NATIVE)~^^^^^0^^6.25^^^
-~35185~^~3500~^~Frybread, made with lard (Apache)~^~FRYBREAD,MADE W/ LARD (APACHE)~^^^^^0^^^^^
-~35186~^~3500~^~Corned beef and potatoes in tortilla (Apache)~^~CORNED BF & POTATOES IN TORTILLA (APACHE)~^^^^^0^^^^^
-~35187~^~3500~^~Tennis Bread, plain (Apache)~^~TENNIS BREAD,PLN (APACHE)~^^^^^0^^6.25^^^
-~35188~^~3500~^~Fish, halibut, cooked, with skin (Alaska Native)~^~FISH,HALIBUT,CKD,W/ SKN (ALASKA NATIVE)~^^^^^0^^^^^
-~35190~^~3500~^~Salmon, red (sockeye), filets with skin, smoked (Alaska Native)~^~SALMON,RED (SOCKEYE),FILETS W/ SKN,SMOKED (ALASKA NATIVE)~^^^^^0^^6.25^^^
-~35192~^~3500~^~Agave, raw (Southwest)~^~AGAVE,RAW (SOUTHWEST)~^^^^^0^^6.25^^^
-~35193~^~3500~^~Agave, cooked (Southwest)~^~AGAVE,CKD (SOUTHWEST)~^^^^^0^^6.25^^^
-~35194~^~3500~^~Agave, dried (Southwest)~^~AGAVE,DRIED (SOUTHWEST)~^^^^^0^^6.25^^^
-~35195~^~3500~^~Cattail, Narrow Leaf Shoots (Northern Plains Indians)~^~CATTAIL,NARROW LEAF SHOOTS (NORTHERN PLAINS INDIANS)~^^^^^0^^^^^
-~35196~^~3500~^~Lambsquarters, raw (Northern Plains Indians)~^~LAMBSQUARTERS,RAW (NORTHERN PLAINS INDIANS)~^^^^^0^^6.25^^^
-~35197~^~3500~^~Lambsquarters, steamed (Northern Plains Indians)~^~LAMBSQUARTERS,STMD (NORTHERN PLAINS INDIANS)~^^^^^0^^6.25^^^
-~35198~^~3500~^~Prickly pears, raw (Northern Plains Indians)~^~PRICKLY PEARS,RAW (NORTHERN PLAINS INDIANS)~^^^^^0^^6.25^^^
-~35199~^~3500~^~Prickly pears, broiled (Northern Plains Indians)~^~PRICKLY PEARS,BRLD (NORTHERN PLAINS INDIANS)~^^^^^0^^6.25^^^
-~35200~^~3500~^~Prairie Turnips, raw (Northern Plains Indians)~^~PRAIRIE TURNIPS,RAW (NORTHERN PLAINS INDIANS)~^^^^^0^^^^^
-~35201~^~3500~^~Prairie Turnips, boiled (Northern Plains Indians)~^~PRAIRIE TURNIPS,BLD (NORTHERN PLAINS INDIANS)~^^^^^0^^^^^
-~35202~^~3500~^~Raspberries, wild (Northern Plains Indians)~^~RASPBERRIES,WILD (NORTHERN PLAINS INDIANS)~^^^^^0^^6.25^^^
-~35203~^~3500~^~Rose Hips, wild (Northern Plains Indians)~^~ROSE HIPS,WILD (NORTHERN PLAINS INDIANS)~^^^^^0^^6.25^^^
-~35204~^~3500~^~Chokecherries, raw, pitted (Northern Plains Indians)~^~CHOKECHERRIES,RAW,PITTED (NORTHERN PLAINS INDIANS)~^^^^^0^^^^^
-~35205~^~3500~^~Stinging Nettles, blanched (Northern Plains Indians)~^~STINGING NETTLES,BLANCHED (NORTHERN PLAINS INDIANS)~^^^^^0^^^^^
-~35206~^~3500~^~Plums, wild (Northern Plains Indians)~^~PLUMS,WILD (NORTHERN PLAINS INDIANS)~^^^^^0^^6.25^^^
-~35207~^~3500~^~Pinon Nuts, roasted (Navajo)~^~PINON NUTS,RSTD (NAVAJO)~^^^^^0^~Pinus spp.~^5.30^^^
-~35211~^~3500~^~Caribou, hind quarter, meat, cooked (Alaska Native)~^~CARIBOU,HIND QUARTER,MEAT,CKD (ALASKA NATIVE)~^^^^^0^^^^^
-~35225~^~3500~^~Agutuk, fish with shortening (Alaskan ice cream) (Alaska Native)~^~AGUTUK,FISH W/ SHORTENING (ALASKAN ICE CREAM) (ALASKA NATIVE~^^^^^0^^6.25^^^
-~35226~^~3500~^~Sea lion, Steller, liver (Alaska Native)~^~SEA LION,STELLER,LIVER (ALASKA NATIVE)~^^^^^0^~Eumetopias jubatus~^6.25^^^
-~35227~^~3500~^~Sea lion, Steller, kidney (Alaska Native)~^~SEA LION,STELLER,KIDNEY (ALASKA NATIVE)~^^^^^0^~Eumetopias jubatus~^6.25^^^
-~35228~^~3500~^~Sea lion, Steller, heart (Alaska Native)~^~SEA LION,STELLER,HEART (ALASKA NATIVE)~^^^^^0^~Eumetopias jubatus~^6.25^^^
-~35229~^~3500~^~Sea lion, Steller, meat (Alaska Native)~^~SEA LION,STELLER,MEAT (ALASKA NATIVE)~^^^^^0^~Eumetopias jubatus~^6.25^^^
-~35230~^~3500~^~Sea lion, Steller, meat with fat (Alaska Native)~^~SEA LION,STELLER,MEAT W/ FAT (ALASKA NATIVE)~^^^^^0^~Eumetopias jubatus~^6.25^^^
-~35231~^~3500~^~Sea lion, Steller, fat (Alaska Native)~^~SEA LION,STELLER,FAT (ALASKA NATIVE)~^^^^^0^~Eumetopias jubatus~^6.25^^^
-~35232~^~3500~^~Wocas, dried seeds, Oregon, yellow pond lily (Klamath)~^~WOCAS,DRIED SEEDS,OREGON,YEL POND LILY (KLAMATH)~^^^^^0^~Nuphar lutea~^5.30^^^
-~35233~^~3500~^~Hazelnuts, beaked (Northern Plains Indians)~^~HAZELNUTS,BEAKED (NORTHERN PLAINS INDIANS)~^^^^^0^~Corylus cornuta Marsh.~^5.30^^^
-~35234~^~3500~^~Piki bread, made from blue cornmeal (Hopi)~^~PIKI BREAD,MADE FROM BLUE CORNMEAL (HOPI)~^^^^^0^^6.25^^^
-~35235~^~3500~^~Wocas, tuber, cooked, Oregon, yellow pond lily (Klamath)~^~WOCAS,TUBER,CKD,OREGON,YEL POND LILY (KLAMATH)~^^^^^0^~Nuphar lutea~^5.30^^^
-~35236~^~3500~^~Stew, pinto bean and hominy, badufsuki (Hopi)~^~STEW,PINTO BEAN & HOMINY,BADUFSUKI (HOPI)~^^^^^0^^^^^
-~35237~^~3500~^~Tamales, masa and pork filling (Hopi)~^~TAMALES,MASA & PORK FILLING (HOPI)~^^^^^0^^^^^
-~35238~^~3500~^~Tea, herbal, brewed, Hohoysi (Hopi)~^~TEA,HERBAL,BREWED,HOHOYSI (HOPI)~^^^^^0^^^^^
-~35239~^~3500~^~Tortilla, blue corn, Sakwavikaviki (Hopi)~^~TORTILLA,BLUE CORN,SAKWAVIKAVIKI (HOPI)~^^^^^0^^^^^
-~35240~^~3500~^~Bread, blue corn, somiviki (Hopi)~^~BREAD,BLUE CORN,SOMIVIKI (HOPI)~^^^^^0^^^^^
-~36000~^~3600~^~APPLEBEE'S, 9 oz house sirloin steak~^~APPLEBEE'S,9 OZ HOUSE SIRLOIN STEAK~^~family style, applebees~^~Applebee's~^^^0^^^^^
-~36001~^~3600~^~APPLEBEE'S, Double Crunch Shrimp~^~APPLEBEE'S,DOUBLE CRUNCH SHRIMP~^~family style, applebees~^~Applebee's~^^^0^^^^^
-~36002~^~3600~^~APPLEBEE'S, french fries~^~APPLEBEE'S,FRENCH FR~^~family style, applebees~^~Applebee's~^^^0^^^^^
-~36003~^~3600~^~APPLEBEE'S, KRAFT, Macaroni & Cheese, from kid's menu~^~APPLEBEE'S,KRAFT,MACARONI & CHS,FROM KID'S MENU~^~family style, applebees~^~Applebee's~^^^0^^^^^
-~36004~^~3600~^~APPLEBEE'S, mozzarella sticks~^~APPLEBEE'S,MOZZARELLA STKS~^~family style, applebees~^~Applebee's~^^^0^^^^^
-~36005~^~3600~^~APPLEBEE'S, chicken tenders, from kids' menu~^~APPLEBEE'S,CHICK TENDERS,FROM KIDS' MENU~^~family style, applebees~^~Applebee's~^^^0^^^^^
-~36006~^~3600~^~T.G.I. FRIDAY'S, FRIDAY'S Shrimp, breaded~^~T.G.I. FRIDAY'S,FRIDAY'S SHRIMP,BREADED~^~family style, Fridays, TGI Friday's~^~T.G.I Friday's~^^^0^^^^^
-~36007~^~3600~^~T.G.I. FRIDAY'S, french fries~^~T.G.I. FRIDAY'S,FRENCH FR~^~family style, Fridays, TGI Friday's~^~T.G.I Friday's~^^^0^^^^^
-~36008~^~3600~^~T.G.I. FRIDAY'S, fried mozzarella~^~T.G.I. FRIDAY'S, fried mozzarella~^~family style, Fridays, TGI Friday's~^~T.G.I Friday's~^^^0^^^^^
-~36009~^~3600~^~T.G.I. FRIDAY'S, macaroni & cheese, from kid's menu~^~T.G.I. FRIDAY'S,MACARONI & CHS,FROM KID'S MENU~^~family style, Fridays, macaroni, TGI Friday's~^~T.G.I Friday's~^^^0^^^^^
-~36010~^~3600~^~T.G.I. FRIDAY'S, chicken fingers, from kids' menu~^~T.G.I. FRIDAY'S,CHICK FINGERS,FROM KIDS' MENU~^~family style, Fridays, TGI Friday's~^~T.G.I Friday's~^^^0^^^^^
-~36011~^~3600~^~T.G.I. FRIDAY'S, classic sirloin steak (10 oz)~^~T.G.I. FRIDAY'S, classic sirloin steak (10 oz)~^~family style, Fridays, TGI Friday's~^~T.G.I Friday's~^^^0^^^^^
-~36012~^~3600~^~Restaurant, family style, fried mozzarella sticks~^~RESTAURANT,FAMILY STYLE,FRIED MOZZARELLA STKS~^~family style~^^~Y~^^0^^^^^
-~36013~^~3600~^~Restaurant, family style, sirloin steak~^~RESTAURANT,FAMILY STYLE,SIRLOIN STEAK~^~family style~^^^^0^^^^^
-~36014~^~3600~^~Restaurant, family style, french fries~^~RESTAURANT,FAMILY STYLE,FRENCH FR~^~family style~^^^^0^^^^^
-~36015~^~3600~^~Restaurant, family style, chicken fingers, from kid's menu~^~RESTAURANT,FAMILY STYLE,CHICK FINGERS,FROM KID'S MENU~^~family style~^^^^0^^^^^
-~36016~^~3600~^~Restaurant, family style, shrimp, breaded and fried~^~RESTAURANT,FAMILY STYLE,SHRIMP,BREADED & FRIED~^~family style~^^~Y~^^0^^^^^
-~36017~^~3600~^~Restaurant, family style, macaroni & cheese, from kids' menu~^~RESTAURANT,FAMILY STYLE,MACARONI & CHS,FROM KIDS' MENU~^~family style~^^~Y~^^0^^^^^
-~36018~^~3600~^~APPLEBEE'S, fish, hand battered~^~APPLEBEE'S,FISH,HAND BATTERED~^~applebees, family style~^~Applebee's~^^^0^^^^^
-~36019~^~3600~^~APPLEBEE'S, chili~^~APPLEBEE'S,CHILI~^~family style, applebees~^~Applebee's~^^^0^^^^^
-~36020~^~3600~^~T.G.I. FRIDAY'S, chicken fingers~^~T.G.I. FRIDAY'S,CHICK FINGERS~^^~T.G.I Friday's~^^^0^^^^^
-~36021~^~3600~^~APPLEBEE'S, coleslaw~^~APPLEBEE'S,COLESLAW~^~applebees, family style~^~Applebee's~^^^0^^^^^
-~36022~^~3600~^~APPLEBEE'S, crunchy onion rings~^~APPLEBEE'S,CRUNCHY ONION RINGS~^~applebees, family style~^~Applebee's~^^^0^^^^^
-~36023~^~3600~^~APPLEBEE'S, chicken tenders platter~^~APPLEBEE'S,CHICK TENDERS PLATTER~^~family style, applebees~^~Applebee's~^^^0^^^^^
-~36024~^~3600~^~CRACKER BARREL, chicken tenderloin platter, fried~^~CRACKER BARREL,CHICK TENDERLOIN PLATTER,FRIED~^^~Cracker Barrel~^^^0^^^^^
-~36025~^~3600~^~CRACKER BARREL, coleslaw~^~CRACKER BARREL,COLESLAW~^^~Cracker Barrel~^^^0^^^^^
-~36026~^~3600~^~CRACKER BARREL, onion rings, thick-cut~^~CRACKER BARREL,ONION RINGS,THICK-CUT~^^~Cracker Barrel~^^^0^^^^^
-~36027~^~3600~^~DENNY'S, chicken strips~^~DENNY'S,CHICK STRIPS~^^~Denny's~^^^0^^^^^
-~36028~^~3600~^~DENNY'S, coleslaw~^~DENNY'S,COLESLAW~^^~Denny's~^^^0^^^^^
-~36029~^~3600~^~DENNY'S, fish fillet, battered or breaded, fried~^~DENNY'S,FISH FILLET,BATTERED OR BREADED,FRIED~^^~Denny's~^^^0^^^^^
-~36030~^~3600~^~DENNY'S, hash browns~^~DENNY'S,HASH BROWNS~^^~Denny's~^^^0^^^^^
-~36031~^~3600~^~DENNY'S, onion rings~^~DENNY'S,ONION RINGS~^^~Denny's~^^^0^^^^^
-~36032~^~3600~^~DENNY'S, spaghetti and meatballs~^~DENNY'S,SPAGHETTI & MEATBALLS~^^~Denny's~^^^0^^^^^
-~36033~^~3600~^~Restaurant, family style, fish fillet, battered or breaded, fried~^~RESTAURANT,FAMILY STYLE,FISH FILLET,BATTERED OR BREAD,FRIED~^~family style~^^~Y~^^0^^^^^
-~36034~^~3600~^~Restaurant, family style, chicken tenders~^~RESTAURANT,FAMILY STYLE,CHICK TENDERS~^~family style~^^^^0^^^^^
-~36035~^~3600~^~Restaurant, family style, coleslaw~^~RESTAURANT,FAMILY STYLE,COLESLAW~^~family style~^^~Y~^^0^^^^^
-~36036~^~3600~^~Restaurant, family style, onion rings~^~RESTAURANT,FAMILY STYLE,ONION RINGS~^~family style~^^^^0^^^^^
-~36037~^~3600~^~Restaurant, family style, chili with meat and beans~^~RESTAURANT,FAMILY STYLE,CHILI W/ MEAT & BNS~^^^~Y~^^0^^^^^
-~36038~^~3600~^~Restaurant, family style, spaghetti and meatballs~^~RESTAURANT,FAMILY STYLE,SPAGHETTI & MEATBALLS~^^^^^0^^^^^
-~36039~^~3600~^~Restaurant, family style, hash browns~^~RESTAURANT,FAMILY STYLE,HASH BROWNS~^^^^^0^^^4.00^9.00^4.00
-~36040~^~3600~^~CRACKER BARREL, macaroni n' cheese~^~CRACKER BARREL,MACARONI N' CHS~^~macaroni and cheese, family style~^~Cracker Barrel~^^^0^^^^^
-~36041~^~3600~^~Restaurant, Italian, lasagna with meat~^~RESTAURANT,ITALIAN,LASAGNA W/ MEAT~^^^~Y~^^0^^^^^
-~36042~^~3600~^~OLIVE GARDEN, lasagna classico~^~OLIVE GARDEN,LASAGNA CLASSICO~^^~Darden Group~^^^0^^^^^
-~36043~^~3600~^~CARRABBA'S ITALIAN GRILL, lasagne~^~CARRABBA'S ITALIAN GRILL,LASAGNE~^~lasagna~^~Carrabba's Italian Grill~^^^0^^^^^
-~36044~^~3600~^~ON THE BORDER, Mexican rice~^~ON THE BORDER,MEXICAN RICE~^^^^^0^^^^^
-~36045~^~3600~^~ON THE BORDER, refried beans~^~ON THE BORDER,REFRIED BNS~^^^^^0^^^^^
-~36046~^~3600~^~Restaurant, Italian, spaghetti with pomodoro sauce (no meat)~^~RESTAURANT,ITALIAN,SPAGHETTI W/ POMODORO SAU (NO MEAT)~^^^^^0^^^^^
-~36047~^~3600~^~OLIVE GARDEN, spaghetti with pomodoro sauce~^~OLIVE GARDEN,SPAGHETTI W/ POMODORO SAU~^^~Darden Group~^^^0^^^^^
-~36048~^~3600~^~CARRABBA'S ITALIAN GRILL, spaghetti with pomodoro sauce~^~CARRABBA'S ITALIAN GRILL,SPAGHETTI W/ POMODORO SAU~^^~Carrabba's Italian Grill~^^^0^^^^^
-~36049~^~3600~^~ON THE BORDER, cheese enchilada~^~ON THE BORDER,CHS ENCHILADA~^^^^^0^^^^^
-~36050~^~3600~^~Restaurant, Mexican, cheese enchilada~^~RESTAURANT,MEXICAN,CHS ENCHILADA~^^^^^0^^^^^
-~36051~^~3600~^~ON THE BORDER, cheese quesadilla~^~ON THE BORDER,CHS QUESADILLA~^^^^^0^^^^^
-~36052~^~3600~^~Restaurant, Mexican, cheese quesadilla~^~RESTAURANT,MEXICAN,CHS QUESADILLA~^^^^^0^^^^^
-~36053~^~3600~^~CARRABBA'S ITALIAN GRILL, cheese ravioli with marinara sauce~^~CARRABBA'S ITALIAN GRILL,CHS RAVIOLI W/ MARINARA SAU~^^~Carrabba's Italian Grill~^^^0^^^^^
-~36054~^~3600~^~OLIVE GARDEN, cheese ravioli with marinara sauce~^~OLIVE GARDEN,CHS RAVIOLI W/ MARINARA SAU~^^~Darden Group~^^^0^^^^^
-~36055~^~3600~^~Restaurant, Italian, cheese ravioli with marinara sauce~^~RESTAURANT,ITALIAN,CHS RAVIOLI W/ MARINARA SAU~^^^^^0^^^^^
-~36056~^~3600~^~Restaurant, Mexican, cheese tamales~^~RESTAURANT,MEXICAN,CHS TAMALES~^^^^^0^^^^^
-~36057~^~3600~^~CARRABBA'S ITALIAN GRILL, chicken parmesan without cavatappi pasta~^~CARRABBA'S ITALIAN GRILL,CHICK PARMESAN WO/ CAVATAPPI PASTA~^^~Carrabba's Italian Grill~^^^0^^^^^
-~36058~^~3600~^~OLIVE GARDEN, chicken parmigiana without pasta~^~OLIVE GARDEN,CHICK PARMIGIANA WO/ PASTA~^^~Darden Group~^^^0^^^^^
-~36059~^~3600~^~Restaurant, Italian, chicken parmesan without pasta~^~RESTAURANT,ITALIAN,CHICK PARMESAN WO/ PASTA~^^^^^0^^^^^
-~36060~^~3600~^~ON THE BORDER, soft taco with ground beef, cheese and lettuce~^~ON THE BORDER,SOFT TACO W/ GROUND BF,CHS & LETTUCE~^^^^^0^^^^^
-~36061~^~3600~^~Restaurant, Mexican, soft taco with ground beef, cheese and lettuce~^~RESTAURANT,MEXICAN,SOFT TACO W/ GROUND BF,CHS & LETTUCE~^^^^^0^^^^^
-~36401~^~3600~^~Restaurant, Latino, chicken and rice, entree, prepared~^~RESTAURANT,LATINO,CHICK & RICE,ENTREE,PREP~^^^^^0^^^^^
-~36403~^~3600~^~Restaurant, Latino, empanadas, beef, prepared~^~RESTAURANT,LATINO,EMPANADAS,BF,PREP~^^^~Y~^^0^^^^^
-~36404~^~3600~^~Restaurant, Latino, arroz con leche (rice pudding)~^~RESTAURANT,LATINO,ARROZ CON LECHE (RICE PUDDING)~^^^^^0^^^^^
-~36405~^~3600~^~Restaurant, Latino, Arroz con frijoles negros (rice and black beans)~^~RESTAURANT,LATINO,ARROZ CON FRIJOLES NEGROS (RICE&BLACK BNS)~^^^^^0^^^^^
-~36406~^~3600~^~Restaurant, Latino, Arroz con habichuelas colorados (Rice And Red Beans)~^~REST,LATINO,ARROZ CON ABICHUELAS COLORADOS (RICE&RED BNS)~^^^^^0^^^^^
-~36407~^~3600~^~Restaurant, Latino, Arroz con grandules (rice and pigeonpeas)~^~RESTAURANT,LATINO,ARROZ CON GRANDULES (RICE & PIGEONPEAS)~^^^^^0^^^^^
-~36408~^~3600~^~Restaurant, Latino, pupusas con frijoles (pupusas, bean)~^~RESTAURANT,LATINO,PUPUSAS CON FRIJOLES (PUPUSAS,BEAN)~^^^^^0^^^^^
-~36409~^~3600~^~Restaurant, Latino, pupusas con queso (pupusas, cheese)~^~RESTAURANT,LATINO,PUPUSAS CON QUESO (PUPUSAS,CHEESE)~^^^~Y~^^0^^^^^
-~36410~^~3600~^~Restaurant, Latino, pupusas del cerdo (pupusas, pork)~^~RESTAURANT,LATINO,PUPUSAS DEL CERDO (PUPUSAS,PORK)~^^^~Y~^^0^^^^^
-~36411~^~3600~^~Restaurant, Latino, tamale, corn~^~RESTAURANT,LATINO,TAMALE,CORN~^^^~Y~^^0^^^^^
-~36412~^~3600~^~Restaurant, Latino, tamale, pork~^~RESTAURANT,LATINO,TAMALE,PORK~^^^~Y~^^0^^^^^
-~36413~^~3600~^~Restaurant, Latino, black bean soup~^~RESTAURANT,LATINO,BLACK BEAN SOUP~^^^^^0^^^^^
-~36414~^~3600~^~Restaurant, Latino, tripe soup~^~RESTAURANT,LATINO,TRIPE SOUP~^^^^^0^^^^^
-~36415~^~3600~^~Restaurant, Latino, arepa (unleavened cornmeal bread)~^~RESTAURANT,LATINO,AREPA (UNLEAVENED CORNMEAL BREAD)~^^^^^0^^^^^
-~36416~^~3600~^~Restaurant, Latino, bunuelos (fried yeast bread)~^~RESTAURANT,LATINO,BUNUELOS (FRIED YEAST BREAD)~^^^^^0^^^^^
-~36417~^~3600~^~Restaurant, Mexican, spanish rice~^~RESTAURANT,MEXICAN,SPANISH RICE~^^^~Y~^^0^^^^^
-~36418~^~3600~^~Restaurant, Mexican, refried beans~^~RESTAURANT,MEXICAN,REFRIED BNS~^^^~Y~^^0^^^^^
-~36601~^~3600~^~Restaurant, Chinese, egg rolls, assorted~^~RESTAURANT,CHINESE,EGG ROLLS,ASSORTED~^^^^^0^^^^^
-~36602~^~3600~^~Restaurant, Chinese, fried rice, without meat~^~RESTAURANT,CHINESE,FRIED RICE,WO/ MEAT~^^^~Y~^^0^^^^^
-~36603~^~3600~^~Restaurant, Chinese, beef and vegetables~^~RESTAURANT,CHINESE,BF & VEG~^^^~Y~^^0^^^4.00^9.00^4.00
-~36604~^~3600~^~CRACKER BARREL, chicken tenderloin platter, fried, from kid's menu~^~CRACKER BARREL,CHICK TENDERLOIN PLATTER,FRIED,FRM KID'S MENU~^~family style~^~Cracker Barrel~^^^0^^^^^
-~36605~^~3600~^~CRACKER BARREL, country fried shrimp platter~^~CRACKER BARREL,COUNTRY FRIED SHRIMP PLATTER~^~family style~^~Cracker Barrel~^^^0^^^^^
-~36606~^~3600~^~CRACKER BARREL, farm raised catfish platter~^~CRACKER BARREL,FARM RAISED CATFISH PLATTER~^~family style~^~Cracker Barrel~^^^0^^^^^
-~36607~^~3600~^~CRACKER BARREL, steak fries~^~CRACKER BARREL,STEAK FRIES~^~french, family style~^~Cracker Barrel~^^^0^^^^^
-~36608~^~3600~^~CRACKER BARREL, grilled sirloin steak~^~CRACKER BARREL,GRILLED SIRLOIN STEAK~^~family style~^~Cracker Barrel~^^^0^^^^^
-~36609~^~3600~^~CRACKER BARREL, macaroni n' cheese plate, from kid's menu~^~CRACKER BARREL,MACARONI N' CHS PLATE,FROM KID'S MENU~^~family style~^~Cracker Barrel~^^^0^^^^^
-~36610~^~3600~^~DENNY'S, french fries~^~DENNY'S,FRENCH FR~^~family style~^~Denny's~^^^0^^^^^
-~36611~^~3600~^~DENNY'S, mozzarella cheese sticks~^~DENNY'S,MOZZARELLA CHS STKS~^~family style~^~Denny's~^^^0^^^^^
-~36612~^~3600~^~DENNY'S, golden fried shrimp~^~DENNY'S,GOLDEN FRIED SHRIMP~^~family style~^~Denny's~^^^0^^^^^
-~36613~^~3600~^~DENNY'S, macaroni & cheese, from kid's menu~^~DENNY'S,MACARONI & CHS,FROM KID'S MENU~^~family style~^~Denny's~^^^0^^^^^
-~36614~^~3600~^~DENNY'S, chicken nuggets, star shaped, from kid's menu~^~DENNY'S,CHICK NUGGETS,STAR SHAPED,FROM KID'S MENU~^~family style~^~Denny's~^^^0^^^^^
-~36615~^~3600~^~DENNY'S, top sirloin steak~^~DENNY'S,TOP SIRLOIN STEAK~^~family style~^~Denny's~^^^0^^^^^
-~36617~^~3600~^~Restaurant, Chinese, lemon chicken~^~RESTAURANT,CHINESE,LEMON CHICK~^^^~Y~^^0^^^4.00^9.00^4.00
-~36618~^~3600~^~Restaurant, Chinese, general tso's chicken~^~RESTAURANT,CHINESE,GENERAL TSO'S CHICK~^^^~Y~^^0^^^4.00^9.00^4.00
-~36619~^~3600~^~Restaurant, Chinese, kung pao chicken~^~RESTAURANT,CHINESE,KUNG PAO CHICK~^^^~Y~^^0^^^4.00^9.00^4.00
-~36620~^~3600~^~Restaurant, Chinese, shrimp and vegetables~^~RESTAURANT,CHINESE,SHRIMP & VEG~^^^^^0^^^4.00^9.00^4.00
-~36621~^~3600~^~Restaurant, Chinese, sweet and sour chicken~^~RESTAURANT,CHINESE,SWT & SOUR CHICK~^^^~Y~^^0^^^4.00^9.00^4.00
-~36622~^~3600~^~Restaurant, Chinese, sweet and sour pork~^~RESTAURANT,CHINESE,SWT & SOUR PORK~^^^^^0^^^4.00^9.00^4.00
-~36623~^~3600~^~Restaurant, Chinese, chicken chow mein~^~RESTAURANT,CHINESE,CHICK CHOW MEIN~^^^^^0^^^4.00^9.00^4.00
-~36624~^~3600~^~Restaurant, Chinese, vegetable chow mein, without meat or noodles~^~RESTAURANT,CHINESE,VEG CHOW MEIN,WO/ MEAT OR NOODLES~^^^~Y~^^0^^^^^
-~36625~^~3600~^~Restaurant, Chinese, vegetable lo mein, without meat~^~RESTAURANT,CHINESE,VEG LO MEIN,WO/ MEAT~^^^~Y~^^0^^^^^
-~36626~^~3600~^~Restaurant, Chinese, chicken and vegetables~^~RESTAURANT,CHINESE,CHICK & VEG~^^^~Y~^^0^^^^^
-~36629~^~3600~^~Restaurant, Chinese, orange chicken~^~RESTAURANT,CHINESE,ORANGE CHICK~^^^~Y~^^0^^^^^
-~36630~^~3600~^~Restaurant, Italian, spaghetti with meat sauce~^~RESTAURANT,ITALIAN,SPAGHETTI W/ MEAT SAU~^^^^^0^^^^^
-~36631~^~3600~^~OLIVE GARDEN, spaghetti with meat sauce~^~OLIVE GARDEN,SPAGHETTI W/ MEAT SAU~^^~Darden Group~^^^0^^^^^
-~36632~^~3600~^~CARRABBA'S ITALIAN GRILL, spaghetti with meat sauce~^~CARRABBA'S ITALIAN GRILL,SPAGHETTI W/ MEAT SAU~^^~Carrabba's Italian Grill~^^^0^^^^^
-~36633~^~3600~^~Restaurant, Chinese, sesame chicken~^~RESTAURANT,CHINESE,SESAME CHICK~^^^~Y~^^0^^^^^
-~42040~^~1900~^~Syrups, grenadine~^~SYRUPS,GRENADINE~^^^~Y~^^0^^6.25^4.00^9.00^4.00
-~42055~^~1400~^~Beverages, fruit-flavored drink, dry powdered mix, low calorie, with aspartame~^~BEVERAGES,FRUIT-FLAVORED DRK,DRY PDR MIX,LO CAL,W/ ASPRT~^^^~Y~^^0^^6.25^4.00^9.00^2.47
-~42063~^~1900~^~Pectin, liquid~^~PECTIN,LIQUID~^^^~Y~^^0^^^^^
-~42074~^~1900~^~Frozen novelties, ice cream type, vanilla ice cream, light, no sugar added, chocolate coated~^~FROZ NOVLT,ICE CRM,VAN ICE CRM,LT,NO SUGAR ADDED,CHOC COATD~^^^~Y~^^0^^6.25^4.00^9.00^4.00
-~42116~^~0400~^~Creamy dressing, made with sour cream and/or buttermilk and oil, reduced calorie~^~CREAMY DRSNG,MADE W/SOUR CRM AND/OR BTTRMLK&OIL,RED CAL~^^^~Y~^^0^^^^^
-~42117~^~0100~^~Imitation cheese, american or cheddar, low cholesterol~^~IMITATION CHS,AMERICAN OR CHEDDAR,LO CHOL~^^^~Y~^^0^^6.38^^^
-~42119~^~0300~^~Babyfood, banana juice with low fat yogurt~^~BABYFOOD,BANANA JUC W/LOFAT YOGURT~^^^~Y~^^0^^6.38^4.27^8.79^3.87
-~42120~^~0300~^~Babyfood, mixed fruit juice with low fat yogurt~^~BABYFOOD,MXD FRUIT JUC W/LOFAT YOGURT~^^^~Y~^^0^^6.38^4.27^8.79^3.87
-~42128~^~0700~^~Ham, turkey, sliced, extra lean, prepackaged or deli~^~HAM,TURKEY,SLICED,EX LN,PREPACKAGED OR DELI~^^^~Y~^^0^^^^^
-~42129~^~0700~^~Bologna, beef and pork, low fat~^~BOLOGNA,BF&PORK,LOFAT~^^^~Y~^^0^^^^^
-~42131~^~1900~^~Milk dessert, frozen, milk-fat free, chocolate~^~MILK DSSRT,FRZ,MILK-FAT FREE,CHOC~^^^~Y~^^0^^6.25^^^
-~42135~^~0100~^~Whipped topping, frozen, low fat~^~WHIPPED TOPPING,FRZ,LOFAT~^^^~Y~^^0^^6.38^^^
-~42136~^~0100~^~Cream substitute, powdered, light~^~CREAM SUB,PDR,LT~^^^~Y~^^0^^6.29^^^
-~42137~^~0400~^~Salad dressing, peppercorn dressing, commercial, regular~^~SALAD DRSNG,PEPPERCORN DRSNG,COMM,REG~^^^~Y~^^0^^^^^
-~42138~^~0400~^~Mayonnaise, reduced-calorie or diet, cholesterol-free~^~MAYONNAISE,RED-CAL OR DIET,CHOL-FREE~^^^~Y~^^0^^^^^
-~42139~^~2500~^~Granola bar, soft, milk chocolate coated, peanut butter~^~GRANOLA BAR,SOFT,MILK CHOC COATD,PNUT BUTTER~^^^~Y~^^0^^^^^
-~42140~^~0400~^~Salad dressing, italian dressing, reduced calorie~^~SALAD DRSNG,ITALIAN DRSNG,RED CAL~^^^~Y~^^0^^^^^
-~42141~^~0100~^~Cream substitute, liquid, light~^~CREAM SUB,LIQ,LT~^^^~Y~^^0^^6.29^^^
-~42148~^~1900~^~Candies, MARS SNACKFOOD US, M&M's Peanut Butter Chocolate Candies~^~CANDIES,MARS SNACKFOOD US,M&M'S PNUT BUTTER CHOC CANDIES~^^~Masterfoods USA~^~Y~^^0^^6.25^^^
-~42150~^~0300~^~Babyfood, apple yogurt dessert, strained~^~BABYFOOD,APPL YOGURT DSSRT,STR~^^^~Y~^^0^^6.38^4.27^8.79^3.87
-~42151~^~0400~^~Vegetable oil-butter spread, reduced calorie~^~VEGETABLE OIL-BUTTER SPRD,RED CAL~^^^~Y~^^0^^^^^
-~42153~^~0400~^~Salad dressing, blue or roquefort cheese dressing, light~^~SALAD DRSNG,BLUE OR ROQUEFORT CHS DRSNG,LT~^^^~Y~^^0^^^^^
-~42155~^~0100~^~Cheese, monterey, low fat~^~CHEESE,MONTEREY,LOW FAT~^^^~Y~^^0^^6.38^^^
-~42157~^~0400~^~Creamy dressing, made with sour cream and/or buttermilk and oil, reduced calorie, fat-free~^~CRMY DRSG,MDE W/ SOUR CRM AND/OR BTRMLK & OIL,RED CAL,FTFREE~^^^~Y~^^0^^^^^
-~42158~^~0400~^~Creamy dressing, made with sour cream and/or buttermilk and oil, reduced calorie, cholesterol-free~^~CREAMY DRSNG,W/SOUR CRM AND/OR BTTRMLK&OIL,RED CAL,CHOL-FREE~^^^~Y~^^0^^^^^
-~42161~^~0700~^~Bologna, beef, low fat~^~BOLOGNA,BEEF,LOW FAT~^^^~Y~^^0^^6.25^4.27^9.02^3.87
-~42171~^~0400~^~Salad dressing, french dressing, reduced calorie~^~SALAD DRSNG,FRENCH DRSNG,RED CAL~^^^~Y~^^0^^^^^
-~42173~^~0700~^~Sausage, turkey and pork, fresh, bulk, patty or link, cooked~^~SAUSAGE,TURKEY & PORK,FRSH,BULK,PATTY OR LINK,CKD~^^^~Y~^^0^^6.25^4.27^9.02^3.87
-~42178~^~0400~^~Mayonnaise, made with tofu~^~MAYONNAISE,MADE WITH TOFU~^^^~Y~^^0^^^^^
-~42179~^~0700~^~Frankfurter, beef, low fat~^~FRANKFURTER,BF,LO FAT~^~hot dog, wiener, frank~^^~Y~^^0^^^^^
-~42183~^~1900~^~Candies, MARS SNACKFOOD US, TWIX chocolate fudge cookie bars~^~CANDIES,MARS SNACKFOOD US,TWIX CHOC FUDGE COOKIE BARS~^^~Masterfoods USA~^~Y~^^0^^6.25^^^
-~42185~^~1900~^~Frozen yogurts, chocolate, nonfat milk, sweetened without sugar~^~YOGURT,FRZ,CHOC,NON-FAT MILK,W/LO CAL SWTNR~^^^~Y~^^0^^6.25^^^
-~42186~^~1900~^~Frozen yogurts, chocolate~^~FROZEN YOGURTS,CHOC~^^^~Y~^^0^^6.25^^^
-~42187~^~1900~^~Frozen yogurts, flavors other than chocolate~^~FROZEN YOGURTS,FLAVORS OTHER THAN CHOC~^^^~Y~^^0^^^^^
-~42189~^~0100~^~Milk, buttermilk, fluid, cultured, reduced fat~^~MILK,BTTRMLK,FLUID,CULTURED,RED FAT~^^^~Y~^^0^^6.38^^^
-~42190~^~0700~^~Pork sausage rice links, brown and serve, cooked~^~PORK SAUSAGE RICE LINKS,BROWN&SERVE,CKD~^^^~Y~^^0^^6.25^4.27^9.02^3.87
-~42192~^~0400~^~Salad dressing, blue or roquefort cheese dressing, fat-free~^~SALAD DRSNG,BLUE OR ROQUEFORT CHS DRSNG,FAT-FREE~^^^~Y~^^0^^^4.03^8.84^3.80
-~42193~^~0400~^~Salad Dressing, mayonnaise-like, fat-free~^~SALAD DRSNG,MAYONNAISE-LIKE,FAT-FREE~^^^~Y~^^0^^^^^
-~42196~^~1900~^~Candies, MARS SNACKFOOD US, MILKY WAY Midnight Bar~^~CANDIES,MARS SNACKFOOD US,MILKY WAY MIDNIGHT BAR~^^~Masterfoods USA~^~Y~^^0^^6.25^^^
-~42200~^~1600~^~Papad~^~PAPAD~^^^~Y~^^0^^^^^
-~42204~^~2500~^~Rice cake, cracker (include hain mini rice cakes)~^~RICE CAKE,CRACKER (INCL HAIN MINI RICE CAKES)~^^^~Y~^^0^^^^^
-~42227~^~1900~^~Candies, MARS SNACKFOOD US, M&M's Almond Chocolate Candies~^~CANDIES,MARS SNACKFOOD US,M&M'S ALMOND CHOC CANDIES~^^~Masterfoods USA~^~Y~^^0^^6.25^^^
-~42230~^~0400~^~Salad Dressing, coleslaw, reduced fat~^~SALAD DRSNG,COLESLAW,RED FAT~^^^~Y~^^0^^^2.44^8.84^3.80
-~42231~^~0400~^~Oil, flaxseed, cold pressed~^~OIL,FLAXSEED,COLD PRESSED~^^^~Y~^^0^^^^8.84^
-~42235~^~0100~^~Cheese, cottage, lowfat, 1% milkfat, lactose reduced~^~CHEESE,COTTAGE,LOWFAT,1% MILKFAT,LACTOSE RED~^^^~Y~^^0^^6.38^^^
-~42236~^~0800~^~Cereals ready-to-eat, frosted oat cereal with marshmallows~^~CEREALS RTE,FRSTD OAT CRL W/MARSHMALLOWS~^^^~Y~^^0^^^^^
-~42237~^~0800~^~Cereals ready-to-eat, WEETABIX whole grain cereal~^~CEREALS RTE,WEETABIX WHL GRAIN CRL~^^~The Weetabix Company~^~Y~^^0^^^^^
-~42240~^~0800~^~Cereals ready-to-eat, POST, HONEY BUNCHES OF OATS, with almonds~^~CEREALS RTE,POST,HONEY BUNCHES OF OATS,W/ ALMONDS~^^~Post Foods, LLC~^~Y~^^0^^^^^
-~42256~^~0400~^~Margarine-like, vegetable oil spread, stick or tub, sweetened~^~MARGARINE-LIKE,VEG OIL SPRD,STK OR TUB,SWTND~^^^~Y~^^0^^^^^
-~42259~^~2500~^~Snacks, popcorn, home-prepared, oil-popped, unsalted~^~SNACKS,POPCORN,HOME-PREPARED,OIL-POPPED,UNSALTED~^^^~Y~^^0^^^^^
-~42261~^~0800~^~Cereals ready-to-eat, POST, GREAT GRAINS Crunchy Pecan Cereal~^~CEREALS RTE,POST,GREAT GRAINS CRUNCHY PECAN CRL~^^~Post Foods, LLC~^~Y~^^0^^^^^
-~42265~^~0800~^~Cereals ready-to-eat, POST, GREAT GRAINS, Raisin, Date & Pecan~^~CEREALS RTE,POST,GREAT GRAINS,RAISIN,DATE & PECAN~^^~Post Foods, LLC~^~Y~^^0^^^^^
-~42266~^~0300~^~Babyfood, juice, apple-sweet potato~^~BABYFOOD,JUC,APPLE-SWEET POTATO~^^^~Y~^^0^^6.25^3.34^8.37^3.92
-~42267~^~0300~^~Babyfood, juice, orange-carrot~^~BABYFOOD,JUC,ORANGE-CARROT~^^^~Y~^^0^^6.25^^^
-~42270~^~1400~^~Beverages, Orange juice drink~^~BEVERAGES,ORANGE JUC DRK~^^^^^0^^6.25^4.00^9.00^4.00
-~42272~^~2500~^~Snacks, granola bar, with coconut, chocolate coated~^~GRANOLA BAR,W/COCNT,CHOC COATD~^^^~Y~^^0^^^^^
-~42278~^~0300~^~Babyfood, vegetable and brown rice, strained~^~BABYFOOD,VEG&BROWN RICE,STR~^^^~Y~^^0^^^^^
-~42279~^~0300~^~Babyfood, peas and brown rice~^~BABYFOOD,PEAS&BROWN RICE~^^^~Y~^^0^^6.25^^^
-~42280~^~0700~^~Frankfurter, meat and poultry, low fat~^~FRANKFURTER,MEAT & POULTRY,LO FAT~^~hot dog, wiener, frank~^^~Y~^^0^^^^^
-~42281~^~1900~^~Gums, seed gums (includes locust bean, guar)~^~GUMS,SD GUMS (INCL LOCUST BEAN,GUAR)~^^^^^0^^6.25^^^
-~42283~^~2500~^~Snacks, potato chips, white, restructured, baked~^~POTATO CHIPS,WHITE,RESTRUCTURED,BKD~^^^~Y~^^0^^^^^
-~42284~^~0300~^~Babyfood, baked product, finger snacks cereal fortified~^~BABYFOOD,BKD PRODUCT,FINGER SNACKS CRL FORT~^^^~Y~^^0^^6.25^^^
-~42285~^~0300~^~Babyfood, cereal, brown rice, dry, instant~^~BABYFOOD,CRL,BROWN RICE,DRY,INST~^^^~Y~^^0^^6.25^^^
-~42286~^~0300~^~Babyfood, green beans and turkey, strained~^~BABYFOOD,GRN BNS&TURKEY,STR~^^^^^0^^6.25^^^
-~42289~^~0400~^~Oil, corn and canola~^~OIL,CORN AND CANOLA~^^^~Y~^^0^^^^8.84^
-~42290~^~0100~^~Milk, fluid, nonfat, calcium fortified (fat free or skim)~^~MILK,FLUID,NONFAT,CA FORT (FAT FREE OR SKIM)~^^^~Y~^^0^^6.38^^^
-~42291~^~1600~^~Peanut butter, reduced sodium~^~PEANUT BUTTER,RED NA~^^^~Y~^^0^^5.46^3.47^8.37^4.07
-~42297~^~0800~^~Cereals ready-to-eat, POST GREAT GRAINS Banana Nut Crunch~^~CEREALS RTE,POST GREAT GRAINS BANANA NUT CRUNCH~^^~Post Foods, LLC~^~Y~^^0^^^^^
-~42303~^~0100~^~Cheese, muenster, low fat~^~CHEESE,MUENSTER,LOW FAT~^^^~Y~^^0^^6.38^^^
-~42304~^~0100~^~Cheese, mozzarella, nonfat~^~CHEESE,MOZZARELLA,NON-FAT~^^^~Y~^^0^^6.38^^^
-~42307~^~0400~^~Margarine-like, butter-margarine blend, 80% fat, stick, without salt~^~MARGARINE-LIKE,BUTTER-MARGARINE BLEND,80% FAT,STK,WO/ SALT~^^^~Y~^^0^^^4.27^8.84^3.87
-~42309~^~0400~^~Margarine-like, vegetable oil-butter spread, reduced calorie, tub, with salt~^~MARGARINE-LIKE,VEG OIL-BUTTER SPRD,RED CAL,TUB,W/ SALT~^^^~Y~^^0^^^^^
-~42316~^~0300~^~Babyfood, carrots, toddler~^~BABYFOOD,CARROTS,TODDLER~^^^~Y~^^0^^6.25^3.98^8.37^3.16
-~43004~^~0300~^~Babyfood, dessert, banana pudding, strained~^~BABYFOOD,DSSRT,BANANA PUDD,STR~^^^~Y~^^0^^6.25^^^
-~43006~^~0300~^~Babyfood, fruit, tutti frutti, strained~^~BABYFOOD,FRUIT,TUTTI FRUTTI,STR~^^^~Y~^^0^^6.25^^^
-~43007~^~0300~^~Babyfood, fruit, tutti frutti, junior~^~BABYFOOD,FRUIT,TUTTI FRUTTI,JR~^^^~Y~^^0^^6.25^^^
-~43008~^~0300~^~Babyfood, dinner, chicken and rice~^~BABYFOOD,DINNER,CHICK&RICE~^^^~Y~^^0^^6.25^^^
-~43015~^~0400~^~Salad dressing, caesar dressing, regular~^~SALAD DRSNG,CAESAR DRSNG,REG~^^^~Y~^^0^^^^^
-~43016~^~0400~^~Salad dressing, coleslaw~^~Salad dressing, coleslaw~^^^~Y~^^0^^^^^
-~43017~^~0400~^~Salad dressing, green goddess, regular~^~SALAD DRSNG,GRN GODDESS,REG~^^^~Y~^^0^^^^^
-~43019~^~0400~^~Salad dressing, sweet and sour~^~SALAD DRSNG,SWT&SOUR~^^^~Y~^^0^^^^^
-~43020~^~0400~^~Salad dressing, blue or roquefort cheese, low calorie~^~SALAD DRSNG,BLUE OR ROQUEFORT CHS,LO CAL~^^^~Y~^^0^^^^^
-~43021~^~0400~^~Salad dressing, caesar, low calorie~^~SALAD DRSNG,CAESAR,LO CAL~^^^~Y~^^0^^^^^
-~43026~^~1900~^~Syrups, sugar free~^~SYRUPS,SUGAR FREE~^^^~Y~^^0^^6.25^^^
-~43027~^~1900~^~Jellies, no sugar (with sodium saccharin), any flavors~^~JELLIES,NO SUGAR (WITH NA SACCHARIN),ANY FLAVORS~^^^~Y~^^0^^6.25^^^
-~43028~^~1900~^~Jams and preserves, no sugar (with sodium saccharin), any flavor~^~JAMS & PRESERVES,NO SUGAR (WITH NA SACCHARIN),ANY FLAVOR~^^^~Y~^^0^^6.25^0.00^0.00^2.47
-~43031~^~1900~^~Candies, chocolate covered, caramel with nuts~^~CANDIES,CHOC COVERED,CARAMEL W/NUTS~^^^~Y~^^0^^6.25^4.00^9.00^4.00
-~43046~^~1900~^~Candies, nougat, with almonds~^~CANDIES,NOUGAT,W/ ALMONDS~^^^~Y~^^0^^6.25^4.00^9.00^4.00
-~43057~^~1900~^~Candies, gum drops, no sugar or low calorie (sorbitol)~^~CANDIES,GUM DROPS,NO SUGAR OR LO CAL (SORBITOL)~^^^~Y~^^0^^6.25^^^
-~43058~^~1900~^~Candies, hard, dietetic or low calorie (sorbitol)~^~CANDIES,HARD,DIETETIC OR LO CAL (SORBITOL)~^^^~Y~^^0^^6.25^^^
-~43059~^~1900~^~Candies, chocolate covered, low sugar or low calorie~^~CANDIES,CHOC COVERED,LO SUGAR OR LO CAL~^^^~Y~^^0^^6.25^4.00^9.00^4.00
-~43060~^~1900~^~Chewing gum, sugarless~^~CHEWING GUM,SUGARLESS~^^^~Y~^^0^^6.25^^^
-~43075~^~0300~^~Fluid replacement, electrolyte solution (include PEDIALYTE)~^~FLUID REPLCMNT,ELECTROLYTE SOLN (INCLUDE PEDIALYTE)~^^^~Y~^^0^^^^^
-~43098~^~1900~^~Pie fillings, cherry, low calorie~^~PIE FILLINGS,CHERRY,LO CAL~^^^~Y~^^0^^6.25^4.00^9.00^4.00
-~43100~^~2500~^~Breakfast bars, oats, sugar, raisins, coconut (include granola bar)~^~BREAKFAST BARS,OATS,SUGAR,RAISINS,COCNT (INCL GRANOLA BAR)~^^^~Y~^^0^^^^^
-~43109~^~2500~^~Pretzels, soft~^~PRETZELS,SOFT~^^^~Y~^^0^^6.25^^^
-~43112~^~1600~^~Beans, chili, barbecue, ranch style, cooked~^~BEANS,CHILI,BARBECUE,RANCH STYLE,CKD~^^^~Y~^^0^^^^^
-~43114~^~1600~^~Vermicelli, made from soy~^~VERMICELLI,MADE FROM SOY~^^^~Y~^^0^^^^^
-~43125~^~1600~^~Beans, liquid from stewed kidney beans~^~BEANS,LIQ FROM STWD KIDNEY BNS~^^^~Y~^^0^^^^^
-~43128~^~1600~^~Chicken, meatless~^~CHICKEN,MEATLESS~^^^~Y~^^0^^^^^
-~43130~^~1600~^~Frankfurter, meatless~^~FRANKFURTER,MEATLESS~^~hot dog, wiener, frank~^^~Y~^^0^^^^^
-~43131~^~1600~^~Luncheon slices, meatless~^~LUNCHEON SLICES,MEATLESS~^^^~Y~^^0^^^^^
-~43132~^~1600~^~Meatballs, meatless~^~MEATBALLS,MEATLESS~^^^~Y~^^0^^^^^
-~43134~^~1600~^~Vegetarian fillets~^~VEGETARIAN FILLETS~^^^~Y~^^0^^^^^
-~43135~^~1600~^~Sandwich spread, meatless~^~SANDWICH SPREAD,MEATLESS~^^^~Y~^^0^^^^^
-~43137~^~1600~^~Vegetarian meatloaf or patties~^~VEGETARIAN MEATLOAF OR PATTIES~^^^~Y~^^0^^^^^
-~43142~^~1100~^~Radishes, hawaiian style, pickled~^~RADISHES,HAWAIIAN STYLE,PICKLED~^^^~Y~^^0^^^^^
-~43143~^~1100~^~Cabbage, japanese style, fresh, pickled~^~CABBAGE,JAPANESE STYLE,FRSH,PICKLED~^^^~Y~^^0^^^^^
-~43144~^~1100~^~Cabbage, mustard, salted~^~CABBAGE,MUSTARD,SALTED~^^^~Y~^^0^^^^^
-~43146~^~1100~^~Eggplant, pickled~^~EGGPLANT,PICKLED~^^^~Y~^^0^^^^^
-~43154~^~1400~^~Alcoholic beverage, wine, cooking~^~ALCOHOLIC BEV,WINE,COOKING~^^^~Y~^^0^^6.25^4.00^9.00^4.00
-~43155~^~1400~^~Alcoholic beverage, wine, light~^~ALCOHOLIC BEV,WINE,LT~^^^~Y~^^0^^^^^
-~43158~^~1900~^~Sweeteners, tabletop, saccharin (sodium saccharin)~^~SWEETENERS,TABLETOP,SACCHARIN (SODIUM SACCHARIN)~^^^~Y~^^0^^6.25^4.00^9.00^4.00
-~43205~^~0100~^~Beverage, instant breakfast powder, chocolate, not reconstituted~^~BEVERAGE,INST BRKFST PDR,CHOC,NOT RECON~^^^~Y~^^0^^6.38^^^
-~43212~^~1600~^~Bacon bits, meatless~^~BACON BITS,MEATLESS~^^^~Y~^^0^^^^^
-~43214~^~0400~^~Butter replacement, without fat, powder~^~BUTTER REPLCMNT,WO/FAT,PDR~^^^~Y~^^0^^^^^
-~43215~^~0400~^~Salad dressing, buttermilk, lite~^~SALAD DRSNG,BTTRMLK,LITE~^^^~Y~^^0^^^^^
-~43216~^~1900~^~Sweeteners, tabletop, fructose, dry, powder~^~SWEETENERS,TABLETOP,FRUCTOSE,DRY,PDR~^^^~Y~^^0^^6.25^^^
-~43217~^~1100~^~Tomato sauce, canned, no salt added~^~TOMATO SAU,CND,NO SALT ADDED~^^^^^0^^6.25^2.44^8.37^3.57
-~43218~^~0800~^~Cereals ready-to-eat, ALPEN~^~CEREALS RTE,ALPEN~^~muesli~^~The Weetabix Company~^~Y~^^0^^^^^
-~43241~^~0800~^~Cereals ready-to-eat, FAMILIA~^~CEREALS RTE,FAMILIA~^~muesli~^~bio-familia AG~^~Y~^^0^^^^^
-~43245~^~0800~^~Cereals ready-to-eat, wheat and bran, presweetened with nuts and fruits~^~CEREALS RTE,WHEAT&BRAN,PRESWEETENED W/NUTS&FRUITS~^^^~Y~^^0^^^^^
-~43260~^~0100~^~Beverage, instant breakfast powder, chocolate, sugar-free, not reconstituted~^~BEVERAGE,INST BRKFST PDR,CHOC,SUGAR-FREE,NOT RECON~^^^~Y~^^0^^6.38^^^
-~43261~^~0100~^~Yogurt, fruit variety, nonfat~^~YOGURT,FRUIT VAR,NON-FAT~^^^~Y~^^0^^6.38^^^
-~43268~^~0100~^~Whipped cream substitute, dietetic, made from powdered mix~^~WHIPPED CRM SUB,DIETETIC,MADE FROM PDR MIX~^^^~Y~^^0^^6.38^^^
-~43269~^~1900~^~Frozen novelties, ice cream type, sundae, prepackaged~^~FROZEN NOVELTIES,ICE CRM TYPE,SUNDAE,PREPACKAGED~^^^~Y~^^0^^6.25^^^
-~43273~^~0100~^~Cheese, cottage, with vegetables~^~CHEESE,COTTAGE,W/VEG~^^^~Y~^^0^^6.38^^^
-~43274~^~0100~^~Cheese, cream, low fat~^~CHEESE,CREAM,LOW FAT~^^^~Y~^^0^^6.38^^^
-~43275~^~0100~^~Cheese, pasteurized process, American, low fat~^~CHEESE,PAST PROCESS,AMERICAN,LOFAT~^^^~Y~^^0^^6.38^^^
-~43276~^~0100~^~Cheese spread, cream cheese base~^~CHEESE SPRD,CRM CHS BASE~^^^~Y~^^0^^6.38^^^
-~43278~^~0100~^~Cheese, american cheddar, imitation~^~CHEESE,AMERICAN CHEDDAR,IMITN~^^^~Y~^^0^^6.38^^^
-~43282~^~0500~^~Quail, cooked, total edible~^~QUAIL,COOKED,TOTAL EDIBLE~^^^~Y~^^0^^^^^
-~43283~^~0500~^~Pheasant, cooked, total edible~^~PHEASANT,CKD,TOTAL EDIBLE~^^^~Y~^^0^^^^^
-~43285~^~0100~^~Eggs, scrambled, frozen mixture~^~EGGS,SCRMBLD,FRZ MIXTURE~^^^~Y~^^0^^6.25^4.36^9.02^3.68
-~43287~^~0500~^~Dove, cooked (includes squab)~^~DOVE,CKD (INCL SQUAB)~^^^~Y~^^0^^^^^
-~43297~^~1000~^~Pork, oriental style, dehydrated~^~PORK,ORIENTAL STYLE,DEHYD~^^^^^0^^^^^
-~43299~^~1600~^~Soybean, curd cheese~^~SOYBEAN,CURD CHEESE~^^^~Y~^^0^^^^^
-~43311~^~1100~^~Potatoes, canned, drained solids, no salt added~^~POTATOES,CND,DRND SOL,NO SALT~^^^~Y~^^0^^6.25^2.38^8.37^4.03
-~43312~^~1100~^~Vegetables, mixed (corn, lima beans, peas, green beans, carrots) canned, no salt added~^~VEGETABLES,MXD (CORN,LIMA BNS,PEAS,GRN BNS,CRRT) CND,NO SALT~^^^~Y~^^0^^^^^
-~43325~^~1000~^~Pork, cured, ham, boneless, low sodium, extra lean and regular, roasted~^~PORK,CURED,HAM,BNLESS,LO NA,EX LN & REG,RSTD~^^^~Y~^^0^^6.25^4.27^9.02^3.87
-~43326~^~1000~^~Pork, cured, ham, low sodium, lean and fat, cooked~^~PORK,CURED,HAM,LO NA,LN & FAT,CKD~^^^~Y~^^0^^^^^
-~43327~^~1000~^~Pork, cured, ham, boneless, low sodium, extra lean (approximately 5% fat), roasted~^~PORK,CURED,HAM,BNLESS,LO NA,EX LN (APPROXIMATLY 5% FAT),RSTD~^^^~Y~^^0^^6.25^4.27^9.02^3.87
-~43329~^~0400~^~Salad dressing, mayonnaise and mayonnaise-type, low calorie~^~SALAD DRSNG,MAYO & MAYONNAISE-TYPE,LO CAL~^^^^^0^^6.25^4.36^8.84^3.80
-~43331~^~0400~^~Salad dressing, bacon and tomato~^~SALAD DRSNG,BACON&TOMATO~^^^~Y~^^0^^^^^
-~43340~^~0100~^~Cheese, parmesan, low sodium~^~CHEESE,PARMESAN,LO NA~^^^~Y~^^0^^6.38^^^
-~43344~^~1900~^~Jams, preserves, marmalade, reduced sugar~^~JAMS,PRESERVES,MARMALADE,RED SUGAR~^^^~Y~^^0^^6.25^^^
-~43345~^~1400~^~Beverages, fruit-flavored drink, powder, with high vitamin C with other added vitamins, low calorie~^~BEVER,FRUIT-FLAV DRK,PDR,W/ HI VIT C W/ OTHER ADD VIT,LO CAL~^^^~Y~^^0^^6.25^4.00^9.00^2.47
-~43346~^~1900~^~Frozen novelties, juice type, orange~^~FROZEN NOVELTIES,JUC TYPE,ORANGE~^^^~Y~^^0^^6.25^4.00^9.00^4.00
-~43352~^~0100~^~Cheese, cottage, lowfat, 1% milkfat, no sodium added~^~CHEESE,COTTAGE,LOWFAT,1% MILKFAT,NO NA~^^^~Y~^^0^^6.38^^^
-~43355~^~0400~^~Mayonnaise, low sodium, low calorie or diet~^~MAYONNAISE,LO NA,LO CAL OR DIET~^^^~Y~^^0^^^^^
-~43364~^~2500~^~Snacks, tortilla chips, unsalted, white corn~^~SNACKS,TORTILLA CHIPS,UNSALTED,WHITE CORN~^^^~Y~^^0^^^^^
-~43365~^~1100~^~Tomato and vegetable juice, low sodium~^~TOMATO&VEG JUC,LO NA~^^^~Y~^^0^^^^^
-~43366~^~0500~^~Turkey, wing, smoked, cooked, with skin, bone removed~^~TURKEY,WING,SMOKED,CKD,W/SKN,BONE REMOVED~^^^~Y~^^0^^^^^
-~43367~^~0500~^~Turkey, drumstick, smoked, cooked, with skin, bone removed~^~TURKEY,DRUMSTK,SMOKED,CKD,W/SKN,BONE REMOVED~^^^~Y~^^0^^^^^
-~43369~^~1400~^~Beverages, Chocolate-flavored drink, whey and milk based~^~BEVERAGES,CHOCOLATE-FLAVORED DRK,WHEY & MILK BSD~^^^~Y~^^0^^6.25^4.00^9.00^4.00
-~43378~^~1000~^~Pork, cured, bacon, cooked, broiled, pan-fried or roasted, reduced sodium~^~PORK,CURED,BACON,CKD,BRLD,PAN-FRIED OR RSTD,RED NA~^^^~Y~^^0^^6.25^4.27^9.02^3.87
-~43382~^~0900~^~Cranberry juice, unsweetened~^~CRANBERRY JUC,UNSWTND~^^^~Y~^^0^^^3.36^8.37^3.60
-~43384~^~0700~^~Beef, bologna, reduced sodium~^~BEEF,BOLOGNA,RED NA~^^^~Y~^^0^^^^^
-~43387~^~1100~^~Turnip greens, canned, no salt added~^~TURNIP GRNS,CND,NO SALT~^^^~Y~^^0^^^^^
-~43390~^~0500~^~Turkey, light or dark meat, smoked, cooked, with skin, bone removed~^~TURKEY,LT OR DK MEAT,SMOKED,CKD,W/SKN,BONE REMOVED~^^^~Y~^^0^^^^^
-~43391~^~0500~^~Turkey, light or dark meat, smoked, cooked, skin and bone removed~^~TURKEY,LT OR DK MEAT,SMOKED,CKD,SKN & BONE REMOVED~^^^~Y~^^0^^^^^
-~43392~^~1100~^~Hearts of palm, raw~^~HEARTS OF PALM,RAW~^^^~Y~^^^^^^^
-~43393~^~0800~^~Cereals ready-to-eat, POST, Shredded Wheat n' Bran, spoon-size~^~CEREALS RTE,POST,SHREDDED WHEAT N' BRAN,SPOON-SIZE~^^~Post Foods, LLC~^~Y~^^0^^^^^
-~43396~^~0100~^~Cheese, cottage, lowfat, 1% milkfat, with vegetables~^~CHEESE,COTTAGE,LOWFAT,1% MILKFAT,W/VEG~^^^~Y~^^0^^6.38^^^
-~43398~^~0100~^~Cheese, pasteurized process, cheddar or American, low sodium~^~CHEESE,PAST PROCESS,CHEDDAR OR AMERICAN,LO NA~^^^~Y~^^0^^6.38^^^
-~43401~^~1400~^~Beverages, coffee, instant, with whitener, reduced calorie~^~BEVERAGES,COFFEE,INST,W/ WHTNR,RED CAL~^^^~Y~^^0^^6.25^4.00^9.00^4.00
-~43404~^~1400~^~Beverages, cranberry-apple juice drink, low calorie, with vitamin C added~^~BEVERAGES,CRANBERRY-APPLE JUC DRK,LO CAL,W/ VIT C ADDED~^^^~Y~^^0^^^^^
-~43405~^~0100~^~Cheese, swiss, low sodium~^~CHEESE,SWISS,LOW SODIUM~^^^~Y~^^0^^6.38^^^
-~43406~^~1100~^~Yeast extract spread~^~YEAST EXTRACT SPREAD~^^^~Y~^^0^^^^^
-~43408~^~0300~^~Babyfood, juice, pear~^~BABYFOOD,JUICE,PEAR~^^^~Y~^^0^^6.25^3.36^8.37^3.60
-~43410~^~1600~^~Chicken, meatless, breaded, fried~^~CHICKEN,MEATLESS,BREADED,FRIED~^^^~Y~^^0^^^^^
-~43417~^~0300~^~Babyfood, meat, beef with vegetables, toddler~^~BABYFOOD,MEAT,BF W/ VEG,TODD~^^^~Y~^^0^^6.14^4.10^8.90^4.10
-~43432~^~0300~^~Babyfood, dinner, macaroni, beef and tomato sauce, toddler~^~BABYFOOD,DINNER,MACARONI,BF&TOMATO SAU,TODD~^^^~Y~^^0^^6.14^4.10^8.90^4.10
-~43441~^~1800~^~Rolls, pumpernickel~^~ROLLS,PUMPERNICKEL~^^^~Y~^^0^^6.25^^^
-~43447~^~2500~^~Snacks, corn-based, extruded, chips, unsalted~^~SNACKS,CORN-BASED,EXTRUDED,CHIPS,UNSALTED~^^^~Y~^^0^^6.25^^^
-~43449~^~1600~^~Beans, baked, canned, no salt added~^~BEANS,BKD,CND,NO SALT ADDED~^^^~Y~^^0^^^^^
-~43450~^~1900~^~Frozen novelties, juice type, juice with cream~^~FROZEN NOVELTIES,JUC TYPE,JUC W/ CRM~^^^~Y~^^0^^6.25^4.00^9.00^4.00
-~43476~^~1600~^~Tofu yogurt~^~TOFU YOGURT~^^^~Y~^^0^^^^^
-~43479~^~1400~^~Alcoholic beverage, rice (sake)~^~ALCOHOLIC BEV,RICE (SAKE)~^^^~Y~^^0^^^^^
-~43483~^~0800~^~Millet, puffed~^~MILLET,PUFFED~^^^~Y~^^0^^^^^
-~43495~^~0800~^~Cereals ready-to-eat, OAT BRAN FLAKES, HEALTH VALLEY~^~CEREALS RTE,OAT BRAN FLAKES,HEALTH VALLEY~^^~Hain Celestial Group, Inc.~^~Y~^^0^^^^^
-~43497~^~1500~^~Jellyfish, dried, salted~^~JELLYFISH,DRIED,SALTED~^^^^^0^^^^^
-~43506~^~1900~^~Frozen novelties, ice cream type, chocolate or caramel covered, with nuts~^~ICE CRM BAR,CHOC OR CARAMEL COVERED,W/NUTS~^^^~Y~^^0^^6.25^^^
-~43507~^~0700~^~Frankfurter, low sodium~^~FRANKFURTER,LO NA~^~hot dog, wiener, frank~^^~Y~^^0^^^^^
-~43514~^~1900~^~Frozen novelties, ice type, pop, with low calorie sweetener~^~FROZEN NOVELTIES,ICE TYPE,POP,W/ LO CAL SWTNR~^^^~Y~^^0^^6.25^4.00^9.00^4.00
-~43523~^~0300~^~Babyfood, mixed fruit yogurt, strained~^~BABYFOOD,MXD FRUIT YOGURT,STR~^^^~Y~^^0^^6.25^^^
-~43528~^~1400~^~Beverages, ABBOTT, ENSURE PLUS, ready-to-drink~^~BEVERAGES,ABBOTT,ENSURE PLUS,RTD~^^~Abbott's Ross Products Division~^~Y~^^0^^^^^
-~43529~^~0300~^~Babyfood, rice and apples, dry~^~BABYFOOD,RICE&APPLS,DRY~^^^~Y~^^0^^^^^
-~43535~^~0300~^~Babyfood, juice, apple - cherry~^~BABYFOOD,JUC,APPL - CHERRY~^^^~Y~^^0^^6.25^^^
-~43536~^~0300~^~Babyfood, dessert, peach yogurt~^~BABYFOOD,DSSRT,PEACH YOGURT~^^^~Y~^^0^^6.14^4.10^8.90^4.10
-~43537~^~0300~^~Babyfood, dessert, blueberry yogurt, strained~^~BABYFOOD,DSSRT,BLUEBERRY YOGURT,STR~^^^~Y~^^0^^6.25^^^
-~43539~^~0300~^~Babyfood, dessert, banana yogurt, strained~^~BABYFOOD,DSSRT,BANANA YOGURT,STR~^^^~Y~^^0^^6.25^^^
-~43541~^~1900~^~Ice creams, chocolate, rich~^~ICE CREAMS,CHOC,RICH~^^^~Y~^^0^^6.25^^^
-~43543~^~0100~^~Milk, imitation, non-soy~^~MILK,IMITATION,NON-SOY~^^^~Y~^^0^^6.38^^^
-~43544~^~0300~^~Babyfood, cereal, rice with pears and apple, dry, instant fortified~^~BABYFOOD,CRL,RICE W/ PEARS & APPL,DRY,INST FORT~^^^~Y~^^0^^6.25^^^
-~43546~^~0300~^~Babyfood, banana no tapioca, strained~^~BABYFOOD,BANANA NO TAPIOCA,STR~^^^~Y~^^0^^6.25^^^
-~43550~^~0300~^~Babyfood, banana apple dessert, strained~^~BABYFOOD,BANANA APPL DSSRT,STR~^^^~Y~^^0^^6.25^^^
-~43566~^~2500~^~Snacks, tortilla chips, light (baked with less oil)~^~SNACKS,TORTILLA CHIPS,LT (BAKED W/ LESS OIL)~^^^~Y~^^0^^6.25^^^
-~43570~^~0800~^~Cereals ready-to-eat, POST, HONEY BUNCHES OF OATS, honey roasted~^~CEREALS RTE,POST,HONEY BUNCHES OF OATS,HONEY RSTD~^^~Post Foods, LLC~^~Y~^^0^^^^^
-~43572~^~2500~^~Popcorn, microwave, low fat and sodium~^~POPCORN,MICROWAVE,LOFAT&NA~^^^^^0^^^^^
-~43585~^~0300~^~Babyfood, fruit supreme dessert~^~BABYFOOD,FRUIT SUPREME DSSRT~^^^~Y~^^0^^6.25^^^
-~43589~^~0100~^~Cheese, swiss, low fat~^~CHEESE,SWISS,LOW FAT~^^^~Y~^^0^^6.38^^^
-~43595~^~2500~^~Breakfast bar, corn flake crust with fruit~^~BREAKFAST BAR,CORN FLAKE CRUST W/FRUIT~^^^~Y~^^0^^^^^
-~43597~^~0100~^~Cheese, mozzarella, low sodium~^~CHEESE,MOZZARELLA,LO NA~^^^~Y~^^0^^6.38^^^
-~43598~^~0400~^~Mayonnaise dressing, no cholesterol~^~MAYONNAISE DRSNG,NO CHOL~^^^^^0^^^4.36^8.84^3.80
-~44005~^~0400~^~Oil, corn, peanut, and olive~^~OIL,CORN,PEANUT,AND OLIVE~^^^~Y~^^0^^^^^
-~44018~^~1900~^~Sweeteners, tabletop, fructose, liquid~^~SWEETENERS,TABLETOP,FRUCTOSE,LIQ~^^^~Y~^^0^^6.25^0.00^0.00^3.66
-~44061~^~1900~^~Puddings, chocolate flavor, low calorie, instant, dry mix~^~PUDDINGS,CHOC FLAVOR,LO CAL,INST,DRY MIX~^^^~Y~^^0^^6.25^4.00^9.00^4.00
-~44074~^~0300~^~Babyfood, grape juice, no sugar, canned~^~BABYFOOD,GRAPE JUC,NO SUGAR,CND~^^^~Y~^^0^^6.25^^^
-~44110~^~1900~^~Jellies, reduced sugar, home preserved~^~JELLIES,RED SUGAR,HOME PRESERVED~^^^~Y~^^0^^6.25^^^
-~44158~^~1900~^~Pie fillings, blueberry, canned~^~PIE FILLINGS,BLUEBERRY,CND~^^^~Y~^^0^^6.25^4.00^9.00^4.00
-~44203~^~1400~^~Beverages, Cocktail mix, non-alcoholic, concentrated, frozen~^~BEVERAGES,COCKTAIL MIX,NON-ALCOHOLIC,CONCD,FRZ~^^^~Y~^^0^^6.25^4.00^9.00^4.00
-~44258~^~1900~^~Puddings, chocolate flavor, low calorie, regular, dry mix~^~PUDDINGS,CHOC FLAVOR,LO CAL,REG,DRY MIX~^^^~Y~^^0^^6.25^4.00^9.00^4.00
-~44259~^~1900~^~Puddings, all flavors except chocolate, low calorie, regular, dry mix~^~PUDDINGS,ALL FLAVORS XCPT CHOC,LO CAL,REG,DRY MIX~^^^~Y~^^0^^6.25^4.00^9.00^4.00
-~44260~^~1900~^~Puddings, all flavors except chocolate, low calorie, instant, dry mix~^~PUDDINGS,ALL FLAVORS XCPT CHOC,LO CAL,INST,DRY MIX~^^^~Y~^^0^^6.25^4.00^9.00^4.00
-~48052~^~2000~^~Vital wheat gluten~^~VITAL WHEAT GLUTEN~^^^^^0^^^^^
-~80200~^~1500~^~Frog legs, raw~^~FROG LEGS,RAW~^^^~Y~^^0^^^^^
-~83110~^~1500~^~Fish, mackerel, salted~^~MACKEREL,SALTED~^^^^^0^^^^^
-~90240~^~1500~^~Mollusks, scallop, (bay and sea), cooked, steamed~^~SCALLOP,(BAY&SEA),CKD,STMD~^^^~Y~^^0^^^^^
-~90480~^~1900~^~Syrup, Cane~^~SYRUP,CANE~^^^^^0^^6.25^0.00^0.00^3.68
-~90560~^~1500~^~Mollusks, snail, raw~^~SNAIL,RAW~^^^~Y~^^0^^^^^
-~93600~^~1500~^~Turtle, green, raw~^~TURTLE,GREEN,RAW~^^^~Y~^^0^^^^^
diff --git a/Postgres/raw_data/NUTR_DEF.txt b/Postgres/raw_data/NUTR_DEF.txt
deleted file mode 100755
index 1ab56bf..0000000
--- a/Postgres/raw_data/NUTR_DEF.txt
+++ /dev/null
@@ -1,149 +0,0 @@
-~203~^~g~^~PROCNT~^~Protein~^~2~^600
-~204~^~g~^~FAT~^~Total lipid (fat)~^~2~^800
-~205~^~g~^~CHOCDF~^~Carbohydrate, by difference~^~2~^1100
-~207~^~g~^~ASH~^~Ash~^~2~^1000
-~208~^~kcal~^~ENERC_KCAL~^~Energy~^~0~^300
-~209~^~g~^~STARCH~^~Starch~^~2~^2200
-~210~^~g~^~SUCS~^~Sucrose~^~2~^1600
-~211~^~g~^~GLUS~^~Glucose (dextrose)~^~2~^1700
-~212~^~g~^~FRUS~^~Fructose~^~2~^1800
-~213~^~g~^~LACS~^~Lactose~^~2~^1900
-~214~^~g~^~MALS~^~Maltose~^~2~^2000
-~221~^~g~^~ALC~^~Alcohol, ethyl~^~1~^18200
-~255~^~g~^~WATER~^~Water~^~2~^100
-~262~^~mg~^~CAFFN~^~Caffeine~^~0~^18300
-~263~^~mg~^~THEBRN~^~Theobromine~^~0~^18400
-~268~^~kJ~^~ENERC_KJ~^~Energy~^~0~^400
-~269~^~g~^~SUGAR~^~Sugars, total~^~2~^1500
-~287~^~g~^~GALS~^~Galactose~^~2~^2100
-~291~^~g~^~FIBTG~^~Fiber, total dietary~^~1~^1200
-~301~^~mg~^~CA~^~Calcium, Ca~^~0~^5300
-~303~^~mg~^~FE~^~Iron, Fe~^~2~^5400
-~304~^~mg~^~MG~^~Magnesium, Mg~^~0~^5500
-~305~^~mg~^~P~^~Phosphorus, P~^~0~^5600
-~306~^~mg~^~K~^~Potassium, K~^~0~^5700
-~307~^~mg~^~NA~^~Sodium, Na~^~0~^5800
-~309~^~mg~^~ZN~^~Zinc, Zn~^~2~^5900
-~312~^~mg~^~CU~^~Copper, Cu~^~3~^6000
-~313~^~g~^~FLD~^~Fluoride, F~^~1~^6240
-~315~^~mg~^~MN~^~Manganese, Mn~^~3~^6100
-~317~^~g~^~SE~^~Selenium, Se~^~1~^6200
-~318~^~IU~^~VITA_IU~^~Vitamin A, IU~^~0~^7500
-~319~^~g~^~RETOL~^~Retinol~^~0~^7430
-~320~^~g~^~VITA_RAE~^~Vitamin A, RAE~^~0~^7420
-~321~^~g~^~CARTB~^~Carotene, beta~^~0~^7440
-~322~^~g~^~CARTA~^~Carotene, alpha~^~0~^7450
-~323~^~mg~^~TOCPHA~^~Vitamin E (alpha-tocopherol)~^~2~^7900
-~324~^~IU~^~VITD~^~Vitamin D~^~0~^8750
-~325~^~g~^~ERGCAL~^~Vitamin D2 (ergocalciferol)~^~1~^8710
-~326~^~g~^~CHOCAL~^~Vitamin D3 (cholecalciferol)~^~1~^8720
-~328~^~g~^~VITD~^~Vitamin D (D2 + D3)~^~1~^8700
-~334~^~g~^~CRYPX~^~Cryptoxanthin, beta~^~0~^7460
-~337~^~g~^~LYCPN~^~Lycopene~^~0~^7530
-~338~^~g~^~LUT+ZEA~^~Lutein + zeaxanthin~^~0~^7560
-~341~^~mg~^~TOCPHB~^~Tocopherol, beta~^~2~^8000
-~342~^~mg~^~TOCPHG~^~Tocopherol, gamma~^~2~^8100
-~343~^~mg~^~TOCPHD~^~Tocopherol, delta~^~2~^8200
-~344~^~mg~^~TOCTRA~^~Tocotrienol, alpha~^~2~^8300
-~345~^~mg~^~TOCTRB~^~Tocotrienol, beta~^~2~^8400
-~346~^~mg~^~TOCTRG~^~Tocotrienol, gamma~^~2~^8500
-~347~^~mg~^~TOCTRD~^~Tocotrienol, delta~^~2~^8600
-~401~^~mg~^~VITC~^~Vitamin C, total ascorbic acid~^~1~^6300
-~404~^~mg~^~THIA~^~Thiamin~^~3~^6400
-~405~^~mg~^~RIBF~^~Riboflavin~^~3~^6500
-~406~^~mg~^~NIA~^~Niacin~^~3~^6600
-~410~^~mg~^~PANTAC~^~Pantothenic acid~^~3~^6700
-~415~^~mg~^~VITB6A~^~Vitamin B-6~^~3~^6800
-~417~^~g~^~FOL~^~Folate, total~^~0~^6900
-~418~^~g~^~VITB12~^~Vitamin B-12~^~2~^7300
-~421~^~mg~^~CHOLN~^~Choline, total~^~1~^7220
-~428~^~g~^~MK4~^~Menaquinone-4~^~1~^8950
-~429~^~g~^~VITK1D~^~Dihydrophylloquinone~^~1~^8900
-~430~^~g~^~VITK1~^~Vitamin K (phylloquinone)~^~1~^8800
-~431~^~g~^~FOLAC~^~Folic acid~^~0~^7000
-~432~^~g~^~FOLFD~^~Folate, food~^~0~^7100
-~435~^~g~^~FOLDFE~^~Folate, DFE~^~0~^7200
-~454~^~mg~^~BETN~^~Betaine~^~1~^7270
-~501~^~g~^~TRP_G~^~Tryptophan~^~3~^16300
-~502~^~g~^~THR_G~^~Threonine~^~3~^16400
-~503~^~g~^~ILE_G~^~Isoleucine~^~3~^16500
-~504~^~g~^~LEU_G~^~Leucine~^~3~^16600
-~505~^~g~^~LYS_G~^~Lysine~^~3~^16700
-~506~^~g~^~MET_G~^~Methionine~^~3~^16800
-~507~^~g~^~CYS_G~^~Cystine~^~3~^16900
-~508~^~g~^~PHE_G~^~Phenylalanine~^~3~^17000
-~509~^~g~^~TYR_G~^~Tyrosine~^~3~^17100
-~510~^~g~^~VAL_G~^~Valine~^~3~^17200
-~511~^~g~^~ARG_G~^~Arginine~^~3~^17300
-~512~^~g~^~HISTN_G~^~Histidine~^~3~^17400
-~513~^~g~^~ALA_G~^~Alanine~^~3~^17500
-~514~^~g~^~ASP_G~^~Aspartic acid~^~3~^17600
-~515~^~g~^~GLU_G~^~Glutamic acid~^~3~^17700
-~516~^~g~^~GLY_G~^~Glycine~^~3~^17800
-~517~^~g~^~PRO_G~^~Proline~^~3~^17900
-~518~^~g~^~SER_G~^~Serine~^~3~^18000
-~521~^~g~^~HYP~^~Hydroxyproline~^~3~^18100
-~573~^~mg~^^~Vitamin E, added~^~2~^7920
-~578~^~g~^^~Vitamin B-12, added~^~2~^7340
-~601~^~mg~^~CHOLE~^~Cholesterol~^~0~^15700
-~605~^~g~^~FATRN~^~Fatty acids, total trans~^~3~^15400
-~606~^~g~^~FASAT~^~Fatty acids, total saturated~^~3~^9700
-~607~^~g~^~F4D0~^~4:0~^~3~^9800
-~608~^~g~^~F6D0~^~6:0~^~3~^9900
-~609~^~g~^~F8D0~^~8:0~^~3~^10000
-~610~^~g~^~F10D0~^~10:0~^~3~^10100
-~611~^~g~^~F12D0~^~12:0~^~3~^10300
-~612~^~g~^~F14D0~^~14:0~^~3~^10500
-~613~^~g~^~F16D0~^~16:0~^~3~^10700
-~614~^~g~^~F18D0~^~18:0~^~3~^10900
-~615~^~g~^~F20D0~^~20:0~^~3~^11100
-~617~^~g~^~F18D1~^~18:1 undifferentiated~^~3~^12100
-~618~^~g~^~F18D2~^~18:2 undifferentiated~^~3~^13100
-~619~^~g~^~F18D3~^~18:3 undifferentiated~^~3~^13900
-~620~^~g~^~F20D4~^~20:4 undifferentiated~^~3~^14700
-~621~^~g~^~F22D6~^~22:6 n-3 (DHA)~^~3~^15300
-~624~^~g~^~F22D0~^~22:0~^~3~^11200
-~625~^~g~^~F14D1~^~14:1~^~3~^11500
-~626~^~g~^~F16D1~^~16:1 undifferentiated~^~3~^11700
-~627~^~g~^~F18D4~^~18:4~^~3~^14250
-~628~^~g~^~F20D1~^~20:1~^~3~^12400
-~629~^~g~^~F20D5~^~20:5 n-3 (EPA)~^~3~^15000
-~630~^~g~^~F22D1~^~22:1 undifferentiated~^~3~^12500
-~631~^~g~^~F22D5~^~22:5 n-3 (DPA)~^~3~^15200
-~636~^~mg~^~PHYSTR~^~Phytosterols~^~0~^15800
-~638~^~mg~^~STID7~^~Stigmasterol~^~0~^15900
-~639~^~mg~^~CAMD5~^~Campesterol~^~0~^16000
-~641~^~mg~^~SITSTR~^~Beta-sitosterol~^~0~^16200
-~645~^~g~^~FAMS~^~Fatty acids, total monounsaturated~^~3~^11400
-~646~^~g~^~FAPU~^~Fatty acids, total polyunsaturated~^~3~^12900
-~652~^~g~^~F15D0~^~15:0~^~3~^10600
-~653~^~g~^~F17D0~^~17:0~^~3~^10800
-~654~^~g~^~F24D0~^~24:0~^~3~^11300
-~662~^~g~^~F16D1T~^~16:1 t~^~3~^11900
-~663~^~g~^~F18D1T~^~18:1 t~^~3~^12300
-~664~^~g~^~F22D1T~^~22:1 t~^~3~^12700
-~665~^~g~^^~18:2 t not further defined~^~3~^13800
-~666~^~g~^^~18:2 i~^~3~^13700
-~669~^~g~^~F18D2TT~^~18:2 t,t~^~3~^13600
-~670~^~g~^~F18D2CLA~^~18:2 CLAs~^~3~^13300
-~671~^~g~^~F24D1C~^~24:1 c~^~3~^12800
-~672~^~g~^~F20D2CN6~^~20:2 n-6 c,c~^~3~^14300
-~673~^~g~^~F16D1C~^~16:1 c~^~3~^11800
-~674~^~g~^~F18D1C~^~18:1 c~^~3~^12200
-~675~^~g~^~F18D2CN6~^~18:2 n-6 c,c~^~3~^13200
-~676~^~g~^~F22D1C~^~22:1 c~^~3~^12600
-~685~^~g~^~F18D3CN6~^~18:3 n-6 c,c,c~^~3~^14100
-~687~^~g~^~F17D1~^~17:1~^~3~^12000
-~689~^~g~^~F20D3~^~20:3 undifferentiated~^~3~^14400
-~693~^~g~^~FATRNM~^~Fatty acids, total trans-monoenoic~^~3~^15500
-~695~^~g~^~FATRNP~^~Fatty acids, total trans-polyenoic~^~3~^15600
-~696~^~g~^~F13D0~^~13:0~^~3~^10400
-~697~^~g~^~F15D1~^~15:1~^~3~^11600
-~851~^~g~^~F18D3CN3~^~18:3 n-3 c,c,c (ALA)~^~3~^14000
-~852~^~g~^~F20D3N3~^~20:3 n-3~^~3~^14500
-~853~^~g~^~F20D3N6~^~20:3 n-6~^~3~^14600
-~855~^~g~^~F20D4N6~^~20:4 n-6~^~3~^14900
-~856~^~g~^^~18:3i~^~3~^14200
-~857~^~g~^~F21D5~^~21:5~^~3~^15100
-~858~^~g~^~F22D4~^~22:4~^~3~^15160
-~859~^~g~^~F18D1TN7~^~18:1-11 t (18:1t n-7)~^~3~^12310
diff --git a/Postgres/raw_data/NUT_DATA.txt b/Postgres/raw_data/NUT_DATA.txt
deleted file mode 100644
index 9ff634c..0000000
--- a/Postgres/raw_data/NUT_DATA.txt
+++ /dev/null
@@ -1,644125 +0,0 @@
-~01001~^~208~^717.^0^^~4~^~NC~^^^^^^^^^^~08/01/2010~
-~01001~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2001~
-~01001~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2001~
-~01001~^~268~^2999.^0^^~4~^~NC~^^^^^^^^^^~09/01/2015~
-~01001~^~301~^24.^17^0.^~1~^~A~^^^7^19.^30.^4^22.^26.^~2, 3~^~11/01/2002~
-~01001~^~304~^2.^18^0.^~1~^~A~^^^7^1.^2.^4^1.^1.^~2, 3~^~03/01/2003~
-~01001~^~305~^24.^17^0.^~1~^~A~^^^7^19.^27.^7^22.^24.^~2, 3~^~03/01/2003~
-~01001~^~306~^24.^18^0.^~1~^~A~^^^7^17.^28.^2^20.^26.^~2, 3~^~03/01/2003~
-~01001~^~307~^643.^0^^~4~^~NR~^^^^^^^^^^~06/01/2013~
-~01001~^~318~^2499.^0^^~4~^~NC~^^^^^^^^^^~08/01/2010~
-~01001~^~319~^671.^0^^~4~^~T~^^^^^^^^^^~08/01/2010~
-~01001~^~320~^684.^0^^~4~^~NC~^^^^^^^^^^~08/01/2010~
-~01001~^~321~^158.^2^^~1~^~A~^^^^^^^^^^~11/01/2002~
-~01001~^~322~^0.^2^^~1~^~A~^^^^^^^^^^~11/01/2002~
-~01001~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~09/01/2015~
-~01001~^~334~^0.^2^^~1~^~A~^^^^^^^^^^~11/01/2002~
-~01001~^~337~^0.^2^^~1~^~A~^^^^^^^^^^~11/01/2002~
-~01001~^~338~^0.^2^^~1~^~A~^^^^^^^^^^~11/01/2002~
-~01001~^~417~^3.^2^^~1~^^^^^^^^^^^~08/01/1995~
-~01001~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~
-~01001~^~432~^3.^2^^~1~^^^^^^^^^^^~08/01/2010~
-~01001~^~435~^3.^0^^~4~^~NC~^^^^^^^^^^~08/01/2010~
-~01001~^~601~^215.^3^1.^~1~^~A~^^^1^213.^217.^2^209.^220.^~2, 3~^~03/01/2003~
-~01001~^~638~^0.^3^0.^~1~^~A~^^^1^0.^0.^^^^~1, 2, 3~^~11/01/2002~
-~01001~^~639~^0.^3^0.^~1~^~A~^^^1^0.^0.^^^^~1, 2, 3~^~11/01/2002~
-~01001~^~641~^4.^3^0.^~1~^~A~^^^1^4.^4.^2^3.^4.^~2, 3~^~11/01/2002~
-~01002~^~208~^731.^0^^~8~^~LC~^^^^^^^^^^~07/01/2017~
-~01002~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2003~
-~01002~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2003~
-~01002~^~268~^3058.^0^^~8~^~LC~^^^^^^^^^^~07/01/2017~
-~01002~^~301~^23.^9^0.^~1~^~A~^^^1^21.^26.^1^20.^24.^~2, 3~^~02/01/2015~
-~01002~^~304~^1.^9^0.^~1~^~A~^^^1^1.^2.^6^1.^1.^~2, 3~^~02/01/2015~
-~01002~^~305~^24.^9^0.^~1~^~A~^^^1^23.^26.^1^21.^26.^~2, 3~^~02/01/2015~
-~01002~^~306~^41.^9^1.^~1~^~A~^^^1^23.^57.^5^37.^45.^~2, 3~^~02/01/2015~
-~01002~^~307~^583.^9^8.^~1~^~A~^^^1^544.^640.^6^561.^604.^~2, 3~^~02/01/2015~
-~01002~^~318~^2468.^4^^~1~^~AS~^^^^^^^^^^~02/01/2015~
-~01002~^~319~^671.^4^20.^~1~^~A~^^^1^641.^737.^2^580.^761.^~2, 3~^~02/01/2015~
-~01002~^~320~^683.^4^^~1~^~AS~^^^^^^^^^^~02/01/2015~
-~01002~^~321~^135.^4^8.^~1~^~A~^^^1^120.^171.^1^66.^202.^~2, 3~^~02/01/2015~
-~01002~^~322~^1.^4^0.^~1~^~A~^^^1^0.^3.^1^-5.^8.^~1, 2, 3~^~02/01/2015~
-~01002~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2015~
-~01002~^~334~^6.^4^0.^~1~^~A~^^^1^4.^7.^2^3.^8.^~2, 3~^~02/01/2015~
-~01002~^~337~^0.^4^0.^~1~^~A~^^^1^0.^0.^^^^~1, 2, 3~^~02/01/2015~
-~01002~^~338~^13.^4^1.^~1~^~A~^^^1^10.^16.^1^0.^26.^~2, 3~^~02/01/2015~
-~01002~^~417~^4.^2^^~1~^~A~^^^1^4.^4.^^^^~1~^~02/01/2015~
-~01002~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~
-~01002~^~432~^4.^2^^~1~^~A~^^^^^^^^^^~02/01/2015~
-~01002~^~435~^4.^0^^~4~^~NC~^^^^^^^^^^~02/01/2015~
-~01002~^~601~^225.^6^0.^~1~^~A~^^^1^223.^228.^2^223.^227.^~2, 3~^~02/01/2015~
-~01003~^~208~^876.^0^^~4~^~NC~^^^^^^^^^^~02/01/2009~
-~01003~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~12/01/2002~
-~01003~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~12/01/2002~
-~01003~^~268~^3665.^0^^~4~^^^^^^^^^^^~09/01/2015~
-~01003~^~301~^4.^0^^~4~^^^^^^^^^^^~11/01/1976~
-~01003~^~304~^0.^0^^~4~^^^^^^^^^^^~11/01/1976~
-~01003~^~305~^3.^0^^~4~^^^^^^^^^^^~11/01/1976~
-~01003~^~306~^5.^0^^~4~^^^^^^^^^^^~11/01/1976~
-~01003~^~307~^2.^0^^~4~^^^^^^^^^^^~11/01/1976~
-~01003~^~318~^3069.^0^^~4~^~NC~^^^^^^^^^^~02/01/2009~
-~01003~^~319~^824.^0^^~4~^~T~^^^^^^^^^^~02/01/2009~
-~01003~^~320~^840.^0^^~4~^~NC~^^^^^^^^^^~02/01/2009~
-~01003~^~321~^193.^0^^~4~^~BFFN~^~01001~^^^^^^^^^~12/01/2002~
-~01003~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~12/01/2002~
-~01003~^~324~^0.^0^^~4~^~BFFN~^~01002~^^^^^^^^^~09/01/2015~
-~01003~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~12/01/2002~
-~01003~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~12/01/2002~
-~01003~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~12/01/2002~
-~01003~^~417~^0.^0^^~4~^^^^^^^^^^^~11/01/1976~
-~01003~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~
-~01003~^~432~^0.^0^^~4~^^^^^^^^^^^~02/01/2009~
-~01003~^~435~^0.^0^^~4~^~NC~^^^^^^^^^^~02/01/2009~
-~01003~^~601~^256.^19^0.^~1~^^^^^^^^^^^~08/01/1995~
-~01004~^~208~^353.^0^^~4~^~NC~^^^^^^^^^^~02/01/2009~
-~01004~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~12/01/2002~
-~01004~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~12/01/2002~
-~01004~^~268~^1477.^0^^~4~^~NC~^^^^^^^^^^~02/01/2009~
-~01004~^~301~^528.^17^21.^~1~^^^^^^^^^^^~11/01/1976~
-~01004~^~304~^23.^11^0.^~1~^^^^^^^^^^^~11/01/1976~
-~01004~^~305~^387.^12^8.^~1~^^^^^^^^^^^~11/01/1976~
-~01004~^~306~^256.^12^41.^~1~^^^^^^^^^^^~11/01/1976~
-~01004~^~307~^1146.^0^^~4~^~NR~^^^^^^^^^^~06/01/2013~
-~01004~^~318~^721.^13^54.^~1~^^^^^^^^^^^~06/01/2013~
-~01004~^~319~^192.^0^^~4~^~NC~^^^^^^^^^^~12/01/2002~
-~01004~^~320~^198.^0^^~4~^~NC~^^^^^^^^^^~02/01/2009~
-~01004~^~321~^74.^0^^~4~^~BFFN~^~01009~^^^^^^^^^~12/01/2002~
-~01004~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~12/01/2002~
-~01004~^~324~^21.^0^^~4~^~BFFN~^~01009~^^^^^^^^^~02/01/2009~
-~01004~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~12/01/2002~
-~01004~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~12/01/2002~
-~01004~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~12/01/2002~
-~01004~^~417~^36.^34^0.^~1~^^^^^^^^^^^~11/01/1976~
-~01004~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~
-~01004~^~432~^36.^34^0.^~1~^^^^^^^^^^^~02/01/2009~
-~01004~^~435~^36.^0^^~4~^~NC~^^^^^^^^^^~02/01/2009~
-~01004~^~601~^75.^4^5.^~1~^^^^^^^^^^^~11/01/1976~
-~01005~^~208~^371.^0^^~4~^~NC~^^^^^^^^^^~02/01/2009~
-~01005~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~12/01/2002~
-~01005~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~12/01/2002~
-~01005~^~268~^1552.^0^^~4~^~NC~^^^^^^^^^^~02/01/2009~
-~01005~^~301~^674.^13^31.^~1~^^^^^^^^^^^~11/01/1976~
-~01005~^~304~^24.^9^1.^~1~^^^^^^^^^^^~11/01/1976~
-~01005~^~305~^451.^9^18.^~1~^^^^^^^^^^^~11/01/1976~
-~01005~^~306~^136.^9^22.^~1~^^^^^^^^^^^~11/01/1976~
-~01005~^~307~^560.^9^37.^~1~^^^^^^^^^^^~11/01/1976~
-~01005~^~318~^1080.^0^^~4~^~NC~^^^^^^^^^^~02/01/2009~
-~01005~^~319~^286.^0^^~4~^~T~^^^^^^^^^^~02/01/2009~
-~01005~^~320~^292.^0^^~4~^~NC~^^^^^^^^^^~02/01/2009~
-~01005~^~321~^76.^0^^~4~^~BFFN~^~01009~^^^^^^^^^~12/01/2002~
-~01005~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~12/01/2002~
-~01005~^~324~^22.^0^^~4~^~BFFN~^~01211~^^^^^^^^^~02/01/2009~
-~01005~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~12/01/2002~
-~01005~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~12/01/2002~
-~01005~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~12/01/2002~
-~01005~^~417~^20.^30^3.^~1~^^^^^^^^^^^~11/01/1976~
-~01005~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~
-~01005~^~432~^20.^30^3.^~1~^^^^^^^^^^^~02/01/2009~
-~01005~^~435~^20.^0^^~4~^~NC~^^^^^^^^^^~02/01/2009~
-~01005~^~601~^94.^0^^~1~^^^^^^^^^^^~11/01/1976~
-~01006~^~208~^334.^0^^~4~^~NC~^^^^^^^^^^~02/01/2009~
-~01006~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2003~
-~01006~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2003~
-~01006~^~268~^1396.^0^^~4~^~NC~^^^^^^^^^^~02/01/2009~
-~01006~^~301~^184.^3^9.^~1~^^^^^^^^^^^~11/01/1976~
-~01006~^~304~^20.^0^^~4~^^^^^^^^^^^~11/01/1976~
-~01006~^~305~^188.^3^7.^~1~^^^^^^^^^^^~11/01/1976~
-~01006~^~306~^152.^1^^~1~^^^^^^^^^^^~11/01/1976~
-~01006~^~307~^629.^0^^~1~^^^^^^^^^^^~11/01/1976~
-~01006~^~318~^592.^0^^~4~^~NC~^^^^^^^^^^~02/01/2009~
-~01006~^~319~^173.^0^^~4~^~T~^^^^^^^^^^~02/01/2009~
-~01006~^~320~^174.^0^^~4~^~NC~^^^^^^^^^^~02/01/2009~
-~01006~^~321~^9.^0^^~4~^~NR~^^^^^^^^^^~01/01/2003~
-~01006~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2003~
-~01006~^~324~^20.^0^^~4~^~BFFN~^~01211~^^^^^^^^^~02/01/2009~
-~01006~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2003~
-~01006~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2003~
-~01006~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2003~
-~01006~^~417~^65.^1^^~1~^^^^^^^^^^^~11/01/1976~
-~01006~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~
-~01006~^~432~^65.^1^^~1~^^^^^^^^^^^~02/01/2009~
-~01006~^~435~^65.^0^^~4~^~NC~^^^^^^^^^^~02/01/2009~
-~01006~^~601~^100.^1^^~1~^^^^^^^^^^^~11/01/1976~
-~01007~^~208~^300.^0^^~4~^~NC~^^^^^^^^^^~02/01/2009~
-~01007~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2001~
-~01007~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2001~
-~01007~^~268~^1253.^0^^~4~^~NC~^^^^^^^^^^~02/01/2009~
-~01007~^~301~^388.^11^52.^~1~^^^^^^^^^^^~11/01/1976~
-~01007~^~304~^20.^10^1.^~1~^^^^^^^^^^^~11/01/1976~
-~01007~^~305~^347.^10^20.^~1~^^^^^^^^^^^~11/01/1976~
-~01007~^~306~^187.^9^21.^~1~^^^^^^^^^^^~11/01/1976~
-~01007~^~307~^842.^10^62.^~1~^^^^^^^^^^^~11/01/1976~
-~01007~^~318~^820.^0^^~4~^~NC~^^^^^^^^^^~02/01/2009~
-~01007~^~319~^240.^0^^~4~^~T~^^^^^^^^^^~02/01/2009~
-~01007~^~320~^241.^0^^~4~^~NC~^^^^^^^^^^~02/01/2009~
-~01007~^~321~^12.^0^^~4~^~NR~^^^^^^^^^^~01/01/2003~
-~01007~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2003~
-~01007~^~324~^18.^0^^~4~^~BFFN~^~01211~^^^^^^^^^~02/01/2009~
-~01007~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2003~
-~01007~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2003~
-~01007~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2003~
-~01007~^~417~^62.^18^8.^~1~^^^^^^^^^^^~11/01/1976~
-~01007~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~
-~01007~^~432~^62.^18^8.^~1~^^^^^^^^^^^~02/01/2009~
-~01007~^~435~^62.^0^^~4~^~NC~^^^^^^^^^^~02/01/2009~
-~01007~^~601~^72.^4^4.^~1~^^^^^^^^^^^~11/01/1976~
-~01008~^~208~^376.^0^^~4~^~NC~^^^^^^^^^^~11/01/1976~
-~01008~^~268~^1573.^0^^~4~^^^^^^^^^^^
-~01008~^~301~^673.^3^9.^~1~^^^^^^^^^^^~11/01/1976~
-~01008~^~304~^22.^1^^~1~^^^^^^^^^^^~11/01/1976~
-~01008~^~305~^490.^1^^~1~^^^^^^^^^^^~11/01/1976~
-~01008~^~306~^93.^0^^~4~^^^^^^^^^^^~11/01/1976~
-~01008~^~307~^690.^0^^~1~^^^^^^^^^^^~11/01/1976~
-~01008~^~318~^1054.^4^38.^~1~^^^^^^^^^^^~11/01/1976~
-~01008~^~319~^262.^0^^~4~^~NC~^^^^^^^^^^~06/01/2002~
-~01008~^~320~^271.^0^^~4~^~NC~^^^^^^^^^^~06/01/2002~
-~01008~^~417~^18.^0^^~4~^^^^^^^^^^^~11/01/1976~
-~01008~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~
-~01008~^~432~^18.^0^^~4~^^^^^^^^^^^~11/01/1976~
-~01008~^~435~^18.^0^^~4~^~NC~^^^^^^^^^^~01/01/2001~
-~01008~^~601~^93.^0^^~4~^^^^^^^^^^^~11/01/1976~
-~01009~^~208~^403.^0^^~4~^~NC~^^^^^^^^^^~01/01/2017~
-~01009~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2001~
-~01009~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2001~
-~01009~^~268~^1684.^0^^~4~^^^^^^^^^^^~01/01/2017~
-~01009~^~301~^710.^39^9.^~1~^~A~^^^2^695.^717.^10^689.^729.^~2, 3~^~01/01/2017~
-~01009~^~304~^27.^39^0.^~1~^~A~^^^2^26.^28.^17^26.^27.^~2, 3~^~08/01/2014~
-~01009~^~305~^455.^39^3.^~1~^~A~^^^2^450.^464.^16^447.^463.^~2, 3~^~01/01/2017~
-~01009~^~306~^76.^39^1.^~1~^~A~^^^2^75.^79.^13^72.^79.^~2, 3~^~01/01/2017~
-~01009~^~307~^653.^39^13.^~1~^~A~^^^2^644.^673.^18^625.^680.^~2, 3~^~06/01/2015~
-~01009~^~318~^1242.^0^^~4~^~NC~^^^^^^^^^^~01/01/2017~
-~01009~^~319~^330.^7^^~1~^~A~^^^2^256.^341.^^^^~2, 3~^~06/01/2015~
-~01009~^~320~^337.^0^^~4~^~NC~^^^^^^^^^^~01/01/2017~
-~01009~^~321~^85.^0^^~4~^~BFZN~^^^^^^^^^^~06/01/2015~
-~01009~^~322~^0.^0^^~4~^~BFZN~^^^^^^^^^^~06/01/2015~
-~01009~^~324~^24.^0^^~4~^~BFFN~^~01211~^^^^^^^^^~01/01/2009~
-~01009~^~334~^0.^0^^~4~^~BFZN~^^^^^^^^^^~06/01/2015~
-~01009~^~337~^0.^0^^~4~^~BFZN~^^^^^^^^^^~06/01/2015~
-~01009~^~338~^0.^0^^~4~^~BFZN~^^^^^^^^^^~06/01/2015~
-~01009~^~417~^27.^4^^~1~^~A~^^^^14.^30.^^^^^~06/01/2015~
-~01009~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~
-~01009~^~432~^27.^0^^~1~^~A~^^^^^^^^^^~06/01/2015~
-~01009~^~435~^27.^0^^~4~^~NC~^^^^^^^^^^~06/01/2015~
-~01009~^~601~^99.^29^0.^~1~^~A~^^^2^98.^101.^13^97.^100.^~2, 3~^~06/01/2015~
-~01010~^~208~^387.^0^^~4~^~NC~^^^^^^^^^^~11/01/1976~
-~01010~^~268~^1620.^0^^~4~^^^^^^^^^^^
-~01010~^~301~^643.^7^^~1~^^^^^^^^^^^~11/01/1976~
-~01010~^~304~^21.^4^^~1~^^^^^^^^^^^~11/01/1976~
-~01010~^~305~^464.^7^^~1~^^^^^^^^^^^~11/01/1976~
-~01010~^~306~^95.^4^^~1~^^^^^^^^^^^~11/01/1976~
-~01010~^~307~^700.^4^^~1~^^^^^^^^^^^~11/01/1976~
-~01010~^~318~^985.^2^^~1~^^^^^^^^^^^~11/01/1976~
-~01010~^~319~^220.^0^^~4~^~NC~^^^^^^^^^^~06/01/2002~
-~01010~^~320~^233.^0^^~4~^~NC~^^^^^^^^^^~06/01/2002~
-~01010~^~417~^18.^0^^~4~^^^^^^^^^^^~11/01/1976~
-~01010~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~
-~01010~^~432~^18.^0^^~4~^^^^^^^^^^^~11/01/1976~
-~01010~^~435~^18.^0^^~4~^~NC~^^^^^^^^^^~01/01/2001~
-~01010~^~601~^103.^1^^~1~^^^^^^^^^^^~11/01/1976~
-~01011~^~208~^394.^0^^~4~^~NC~^^^^^^^^^^~02/01/2009~
-~01011~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~12/01/2002~
-~01011~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~12/01/2002~
-~01011~^~268~^1647.^0^^~4~^~NC~^^^^^^^^^^~09/01/2011~
-~01011~^~301~^685.^16^15.^~1~^^^^^^^^^^^~11/01/1976~
-~01011~^~304~^26.^12^1.^~1~^^^^^^^^^^^~11/01/1976~
-~01011~^~305~^457.^12^7.^~1~^^^^^^^^^^^~11/01/1976~
-~01011~^~306~^127.^12^16.^~1~^^^^^^^^^^^~11/01/1976~
-~01011~^~307~^604.^12^26.^~1~^^^^^^^^^^^~11/01/1976~
-~01011~^~318~^994.^0^^~4~^~NC~^^^^^^^^^^~02/01/2009~
-~01011~^~319~^257.^0^^~4~^~T~^^^^^^^^^^~02/01/2009~
-~01011~^~320~^264.^0^^~4~^~NC~^^^^^^^^^^~02/01/2009~
-~01011~^~321~^82.^0^^~4~^~BFFN~^~01009~^^^^^^^^^~12/01/2002~
-~01011~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~12/01/2002~
-~01011~^~324~^24.^0^^~4~^~BFFN~^~01211~^^^^^^^^^~02/01/2009~
-~01011~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~12/01/2002~
-~01011~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~12/01/2002~
-~01011~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~12/01/2002~
-~01011~^~417~^18.^0^^~4~^^^^^^^^^^^~11/01/1976~
-~01011~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~
-~01011~^~432~^18.^0^^~4~^^^^^^^^^^^~02/01/2009~
-~01011~^~435~^18.^0^^~4~^~NC~^^^^^^^^^^~02/01/2009~
-~01011~^~601~^95.^4^2.^~1~^^^^^^^^^^^~11/01/1976~
-~01012~^~208~^98.^0^^~4~^~NC~^^^^^^^^^^~02/01/2009~
-~01012~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~12/01/2002~
-~01012~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~12/01/2002~
-~01012~^~268~^412.^0^^~4~^~NC~^^^^^^^^^^~02/01/2009~
-~01012~^~301~^83.^3^1.^~1~^~A~^^^1^^^^^^^~05/01/2008~
-~01012~^~304~^8.^3^0.^~1~^~A~^^^1^^^^^^^~05/01/2008~
-~01012~^~305~^159.^3^3.^~1~^~A~^^^1^^^^^^^~05/01/2008~
-~01012~^~306~^104.^3^8.^~1~^~A~^^^1^^^^^^^~05/01/2008~
-~01012~^~307~^315.^0^^~8~^~LC~^^^^^^^^^^~07/01/2017~
-~01012~^~318~^140.^0^^~4~^~NC~^^^^^^^^^^~02/01/2009~
-~01012~^~319~^36.^3^2.^~1~^~A~^^^1^^^^^^^~05/01/2008~
-~01012~^~320~^37.^0^^~4~^~NC~^^^^^^^^^^~02/01/2009~
-~01012~^~321~^12.^0^^~4~^~BFFN~^~01009~^^^^^^^^^~12/01/2002~
-~01012~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~12/01/2002~
-~01012~^~324~^3.^0^^~4~^~BFFN~^~01211~^^^^^^^^^~02/01/2009~
-~01012~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~12/01/2002~
-~01012~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~12/01/2002~
-~01012~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~12/01/2002~
-~01012~^~417~^12.^4^1.^~1~^^^^^^^^^^^~11/01/1976~
-~01012~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~
-~01012~^~432~^12.^4^1.^~1~^^^^^^^^^^^~02/01/2009~
-~01012~^~435~^12.^0^^~4~^~NC~^^^^^^^^^^~03/01/2009~
-~01012~^~601~^17.^3^0.^~1~^~A~^^^1^^^^^^^~05/01/2008~
-~01013~^~208~^97.^0^^~4~^~NC~^^^^^^^^^^~03/01/2006~
-~01013~^~262~^0.^0^^~4~^~RA~^^^^^^^^^^~01/01/2003~
-~01013~^~263~^0.^0^^~4~^~RA~^^^^^^^^^^~01/01/2003~
-~01013~^~268~^407.^0^^~4~^~NC~^^^^^^^^^^~03/01/2006~
-~01013~^~301~^53.^0^^~4~^~RA~^^^^^^^^^^~03/01/2003~
-~01013~^~304~^7.^0^^~4~^~RA~^^^^^^^^^^~03/01/2003~
-~01013~^~305~^113.^0^^~4~^~RA~^^^^^^^^^^~03/01/2003~
-~01013~^~306~^90.^0^^~4~^~RA~^^^^^^^^^^~03/01/2003~
-~01013~^~307~^344.^0^^~4~^~RA~^^^^^^^^^^~03/01/2003~
-~01013~^~318~^146.^0^^~4~^~RA~^^^^^^^^^^~03/01/2003~
-~01013~^~319~^37.^0^^~4~^~RA~^^^^^^^^^^~01/01/2003~
-~01013~^~320~^38.^0^^~4~^~RA~^^^^^^^^^^~01/01/2003~
-~01013~^~321~^14.^0^^~4~^~RA~^^^^^^^^^^~01/01/2003~
-~01013~^~322~^0.^0^^~4~^~RA~^^^^^^^^^^~01/01/2003~
-~01013~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~
-~01013~^~334~^0.^0^^~4~^~RA~^^^^^^^^^^~01/01/2003~
-~01013~^~337~^0.^0^^~4~^~RA~^^^^^^^^^^~01/01/2003~
-~01013~^~338~^0.^0^^~4~^~RA~^^^^^^^^^^~01/01/2003~
-~01013~^~417~^11.^0^^~4~^~RA~^^^^^^^^^^~03/01/2003~
-~01013~^~431~^0.^0^^~4~^~RA~^^^^^^^^^^~01/01/2003~
-~01013~^~432~^11.^0^^~4~^~RA~^^^^^^^^^^~01/01/2003~
-~01013~^~435~^11.^0^^~4~^~NC~^^^^^^^^^^~12/01/2006~
-~01013~^~601~^13.^0^^~4~^~RA~^^^^^^^^^^~03/01/2003~
-~01014~^~208~^72.^0^^~4~^~NC~^^^^^^^^^^~05/01/2008~
-~01014~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2003~
-~01014~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2003~
-~01014~^~268~^303.^0^^~4~^~NC~^^^^^^^^^^~05/01/2008~
-~01014~^~301~^86.^2^^~1~^~A~^^^1^^^^^^^~05/01/2008~
-~01014~^~304~^11.^3^0.^~1~^~A~^^^1^^^^^^^~05/01/2008~
-~01014~^~305~^190.^3^26.^~1~^~A~^^^1^^^^^^^~05/01/2008~
-~01014~^~306~^137.^3^6.^~1~^~A~^^^1^^^^^^^~05/01/2008~
-~01014~^~307~^372.^0^^~4~^~NR~^^^^^^^^^^~06/01/2013~
-~01014~^~318~^8.^0^^~4~^~NC~^^^^^^^^^^~05/01/2008~
-~01014~^~319~^2.^0^^~4~^~BFFN~^^^^^^^^^^~05/01/2008~
-~01014~^~320~^2.^0^^~4~^~NC~^^^^^^^^^^~05/01/2008~
-~01014~^~321~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2003~
-~01014~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2003~
-~01014~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~
-~01014~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2003~
-~01014~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2003~
-~01014~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2003~
-~01014~^~417~^9.^3^1.^~1~^~A~^^^1^^^^^^^~05/01/2008~
-~01014~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~
-~01014~^~432~^9.^3^1.^~1~^~A~^^^1^^^^^^^~05/01/2008~
-~01014~^~435~^9.^0^^~4~^~NC~^^^^^^^^^^~05/01/2008~
-~01014~^~601~^7.^3^0.^~1~^~A~^^^1^^^^^^^~05/01/2008~
-~01015~^~208~^81.^0^^~4~^~NC~^^^^^^^^^^~05/01/2014~
-~01015~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~12/01/2002~
-~01015~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~12/01/2002~
-~01015~^~268~^340.^0^^~4~^~NC~^^^^^^^^^^~05/01/2014~
-~01015~^~301~^111.^15^6.^~1~^~A~^^^1^76.^168.^6^94.^127.^~2, 3~^~05/01/2014~
-~01015~^~304~^9.^15^0.^~1~^~A~^^^1^7.^11.^7^8.^9.^~2, 3~^~05/01/2014~
-~01015~^~305~^150.^15^3.^~1~^~A~^^^1^132.^175.^9^141.^157.^~2, 3~^~05/01/2014~
-~01015~^~306~^125.^15^5.^~1~^~A~^^^1^91.^159.^6^111.^137.^~2, 3~^~05/01/2014~
-~01015~^~307~^308.^15^4.^~1~^~A~^^^1^267.^420.^8^298.^318.^~2, 3~^~05/01/2014~
-~01015~^~318~^236.^0^^~4~^~NC~^^^^^^^^^^~02/01/2017~
-~01015~^~319~^68.^2^^~1~^~A~^^^1^62.^75.^^^^^~05/01/2014~
-~01015~^~320~^68.^0^^~4~^~NC~^^^^^^^^^^~02/01/2017~
-~01015~^~321~^6.^0^^~4~^~BFFN~^~01009~^^^^^^^^^~05/01/2008~
-~01015~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~12/01/2002~
-~01015~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~
-~01015~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~12/01/2002~
-~01015~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~12/01/2002~
-~01015~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~12/01/2002~
-~01015~^~417~^8.^2^^~1~^~A~^^^1^7.^13.^^^^^~05/01/2014~
-~01015~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~
-~01015~^~432~^8.^2^^~1~^~A~^^^^^^^^^^~05/01/2014~
-~01015~^~435~^8.^0^^~4~^~NC~^^^^^^^^^^~05/01/2014~
-~01015~^~601~^12.^8^0.^~1~^~A~^^^1^11.^13.^1^11.^11.^~2, 3~^~05/01/2014~
-~01016~^~208~^72.^0^^~4~^~NC~^^^^^^^^^^~03/01/2006~
-~01016~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2003~
-~01016~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2003~
-~01016~^~268~^303.^0^^~4~^~NC~^^^^^^^^^^~03/01/2006~
-~01016~^~301~^61.^0^^~1~^^^^^^^^^^^~11/01/1976~
-~01016~^~304~^5.^0^^~1~^^^^^^^^^^^~11/01/1976~
-~01016~^~305~^134.^0^^~1~^^^^^^^^^^^~11/01/1976~
-~01016~^~306~^86.^0^^~1~^^^^^^^^^^^~11/01/1976~
-~01016~^~307~^406.^0^^~1~^^^^^^^^^^^~11/01/1976~
-~01016~^~318~^41.^0^^~4~^~NC~^^^^^^^^^^~03/01/2006~
-~01016~^~319~^11.^0^^~4~^~NC~^^^^^^^^^^~03/01/2006~
-~01016~^~320~^11.^0^^~4~^~NC~^^^^^^^^^^~03/01/2006~
-~01016~^~321~^3.^0^^~4~^~BFFN~^~01012~^^^^^^^^^~01/01/2003~
-~01016~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2003~
-~01016~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~
-~01016~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2003~
-~01016~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2003~
-~01016~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2003~
-~01016~^~417~^12.^0^^~1~^^^^^^^^^^^~11/01/1976~
-~01016~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~
-~01016~^~432~^12.^0^^~1~^^^^^^^^^^^~03/01/2006~
-~01016~^~435~^12.^0^^~4~^~NC~^^^^^^^^^^~12/01/2006~
-~01016~^~601~^4.^0^^~1~^^^^^^^^^^^~11/01/1976~
-~01017~^~208~^350.^0^^~4~^~NC~^^^^^^^^^^~02/01/2015~
-~01017~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~12/01/2002~
-~01017~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~12/01/2002~
-~01017~^~268~^1466.^0^^~4~^~NC~^^^^^^^^^^~02/01/2015~
-~01017~^~301~^97.^11^2.^~1~^~A~^^^1^73.^136.^7^89.^103.^~2, 3~^~02/01/2015~
-~01017~^~304~^9.^12^0.^~1~^~A~^^^1^7.^12.^10^8.^10.^~2, 3~^~06/01/2008~
-~01017~^~305~^107.^12^1.^~1~^~A~^^^1^95.^132.^7^102.^111.^~2, 3~^~02/01/2015~
-~01017~^~306~^132.^11^5.^~1~^~A~^^^1^99.^167.^8^119.^145.^~2, 3~^~02/01/2015~
-~01017~^~307~^314.^12^7.^~1~^~A~^^^1^282.^357.^9^298.^330.^~2, 3~^~07/01/2017~
-~01017~^~318~^1111.^0^^~1~^~AS~^^^^^^^^^^~02/01/2015~
-~01017~^~319~^303.^4^34.^~1~^~A~^^^1^226.^358.^2^96.^509.^~2, 3~^~02/01/2015~
-~01017~^~320~^308.^4^^~1~^~AS~^^^^^^^^^^~02/01/2015~
-~01017~^~321~^59.^4^4.^~1~^~A~^^^1^47.^70.^2^35.^82.^~2, 3~^~02/01/2015~
-~01017~^~322~^1.^4^0.^~1~^~A~^^^1^0.^1.^1^-1.^2.^~1, 2, 3~^~02/01/2015~
-~01017~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2015~
-~01017~^~334~^2.^4^0.^~1~^~A~^^^1^2.^2.^2^1.^2.^~2, 3~^~02/01/2015~
-~01017~^~337~^0.^4^0.^~1~^~A~^^^1^0.^0.^^^^~1, 2, 3~^~02/01/2015~
-~01017~^~338~^7.^4^0.^~1~^~A~^^^1^6.^9.^2^7.^7.^~2, 3~^~02/01/2015~
-~01017~^~417~^9.^2^^~1~^~A~^^^1^9.^10.^^^^^~02/01/2015~
-~01017~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~
-~01017~^~432~^9.^2^^~1~^~A~^^^^^^^^^^~02/01/2015~
-~01017~^~435~^9.^0^^~4~^~NC~^^^^^^^^^^~02/01/2015~
-~01017~^~601~^101.^5^1.^~1~^~A~^^^1^96.^103.^3^97.^104.^~2, 3~^~02/01/2015~
-~01018~^~208~^357.^0^^~4~^~NC~^^^^^^^^^^~02/01/2009~
-~01018~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2001~
-~01018~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2001~
-~01018~^~268~^1492.^0^^~4~^^^^^^^^^^^~02/01/2009~
-~01018~^~301~^731.^15^32.^~1~^^^^^^^^^^^~11/01/1976~
-~01018~^~304~^30.^9^1.^~1~^^^^^^^^^^^~11/01/1976~
-~01018~^~305~^536.^10^18.^~1~^^^^^^^^^^^~11/01/1976~
-~01018~^~306~^188.^9^39.^~1~^^^^^^^^^^^~11/01/1976~
-~01018~^~307~^973.^0^^~8~^~LC~^^^^^^^^^^~07/01/2017~
-~01018~^~318~^825.^0^^~4~^~NC~^^^^^^^^^^~02/01/2009~
-~01018~^~319~^242.^0^^~4~^~T~^^^^^^^^^^~02/01/2009~
-~01018~^~320~^243.^0^^~4~^~NC~^^^^^^^^^^~02/01/2009~
-~01018~^~321~^11.^0^^~4~^~NR~^^^^^^^^^^~01/01/2003~
-~01018~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2003~
-~01018~^~324~^20.^0^^~4~^~BFFN~^~01211~^^^^^^^^^~02/01/2009~
-~01018~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2003~
-~01018~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2003~
-~01018~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2003~
-~01018~^~417~^16.^41^1.^~1~^^^^^^^^^^^~11/01/1976~
-~01018~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~
-~01018~^~432~^16.^41^1.^~1~^^^^^^^^^^^~02/01/2009~
-~01018~^~435~^16.^0^^~4~^~NC~^^^^^^^^^^~02/01/2009~
-~01018~^~601~^89.^4^1.^~1~^^^^^^^^^^^~11/01/1976~
-~01019~^~208~^265.^0^^~4~^~NC~^^^^^^^^^^~07/01/2017~
-~01019~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2003~
-~01019~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2003~
-~01019~^~268~^1107.^0^^~4~^~NC~^^^^^^^^^^~07/01/2017~
-~01019~^~301~^493.^4^42.^~1~^^^^^^^^^^^~11/01/1976~
-~01019~^~304~^19.^4^2.^~1~^^^^^^^^^^^~11/01/1976~
-~01019~^~305~^337.^4^15.^~1~^^^^^^^^^^^~11/01/1976~
-~01019~^~306~^62.^5^5.^~1~^^^^^^^^^^^~11/01/1976~
-~01019~^~307~^1139.^0^^~8~^~LC~^^^^^^^^^^~07/01/2017~
-~01019~^~318~^422.^0^^~4~^~NC~^^^^^^^^^^~02/01/2009~
-~01019~^~319~^125.^0^^~4~^~T~^^^^^^^^^^~02/01/2009~
-~01019~^~320~^125.^0^^~4~^~NC~^^^^^^^^^^~02/01/2009~
-~01019~^~321~^3.^0^^~4~^~NR~^^^^^^^^^^~01/01/2003~
-~01019~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2003~
-~01019~^~324~^16.^0^^~4~^~BFFN~^~01211~^^^^^^^^^~02/01/2009~
-~01019~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2003~
-~01019~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2003~
-~01019~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2003~
-~01019~^~417~^32.^0^^~4~^^^^^^^^^^^~11/01/1976~
-~01019~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~
-~01019~^~432~^32.^0^^~4~^^^^^^^^^^^~02/01/2009~
-~01019~^~435~^32.^0^^~4~^~NC~^^^^^^^^^^~02/01/2009~
-~01019~^~601~^89.^1^^~1~^^^^^^^^^^^~11/01/1976~
-~01020~^~208~^389.^0^^~4~^~NC~^^^^^^^^^^~02/01/2009~
-~01020~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2003~
-~01020~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2003~
-~01020~^~268~^1628.^0^^~4~^~NC~^^^^^^^^^^~02/01/2009~
-~01020~^~301~^550.^1^^~1~^^^^^^^^^^^~11/01/1976~
-~01020~^~304~^14.^1^^~1~^^^^^^^^^^^~11/01/1976~
-~01020~^~305~^346.^0^^~4~^^^^^^^^^^^~11/01/1976~
-~01020~^~306~^64.^0^^~4~^^^^^^^^^^^~11/01/1976~
-~01020~^~307~^800.^0^^~4~^^^^^^^^^^^~11/01/1976~
-~01020~^~318~^913.^0^^~4~^~NC~^^^^^^^^^^~02/01/2009~
-~01020~^~319~^258.^0^^~4~^~T~^^^^^^^^^^~02/01/2009~
-~01020~^~320~^261.^0^^~4~^~NC~^^^^^^^^^^~02/01/2009~
-~01020~^~321~^32.^0^^~4~^~NR~^^^^^^^^^^~01/01/2003~
-~01020~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2003~
-~01020~^~324~^23.^0^^~4~^~BFFN~^~01211~^^^^^^^^^~02/01/2009~
-~01020~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2003~
-~01020~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2003~
-~01020~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2003~
-~01020~^~417~^6.^0^^~4~^^^^^^^^^^^~11/01/1976~
-~01020~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~
-~01020~^~432~^6.^0^^~4~^^^^^^^^^^^~02/01/2009~
-~01020~^~435~^6.^0^^~4~^~NC~^^^^^^^^^^~02/01/2009~
-~01020~^~601~^116.^1^^~1~^^^^^^^^^^^~11/01/1976~
-~01021~^~208~^466.^0^^~4~^~NC~^^^^^^^^^^~11/01/1976~
-~01021~^~268~^1948.^0^^~4~^^^^^^^^^^^
-~01021~^~301~^400.^1^^~1~^^^^^^^^^^^~11/01/1976~
-~01021~^~304~^70.^0^^~4~^^^^^^^^^^^~11/01/1976~
-~01021~^~305~^444.^1^^~1~^^^^^^^^^^^~11/01/1976~
-~01021~^~306~^1409.^0^^~4~^^^^^^^^^^^~11/01/1976~
-~01021~^~307~^600.^1^^~1~^^^^^^^^^^^~11/01/1976~
-~01021~^~318~^1113.^0^^~4~^^^^^^^^^^^~11/01/1976~
-~01021~^~319~^334.^0^^~4~^^^^^^^^^^^~06/01/2002~
-~01021~^~320~^334.^0^^~4~^^^^^^^^^^^~06/01/2002~
-~01021~^~417~^5.^8^0.^~1~^^^^^^^^^^^~11/01/1976~
-~01021~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~
-~01021~^~432~^5.^8^0.^~1~^^^^^^^^^^^~11/01/1976~
-~01021~^~435~^5.^0^^~4~^~NC~^^^^^^^^^^~01/01/2001~
-~01021~^~601~^94.^0^^~4~^^^^^^^^^^^~11/01/1976~
-~01022~^~208~^356.^0^^~4~^~NC~^^^^^^^^^^~02/01/2009~
-~01022~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2003~
-~01022~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2003~
-~01022~^~268~^1491.^0^^~4~^~NC~^^^^^^^^^^~02/01/2009~
-~01022~^~301~^700.^8^29.^~1~^^^^^^^^^^^~11/01/1976~
-~01022~^~304~^29.^1^^~1~^^^^^^^^^^^~11/01/1976~
-~01022~^~305~^546.^7^21.^~1~^^^^^^^^^^^~11/01/1976~
-~01022~^~306~^121.^8^^~1~^^^^^^^^^^^~11/01/1976~
-~01022~^~307~^819.^3^^~1~^^^^^^^^^^^~11/01/1976~
-~01022~^~318~^563.^0^^~4~^~NC~^^^^^^^^^^~02/01/2009~
-~01022~^~319~^164.^0^^~4~^~T~^^^^^^^^^^~02/01/2009~
-~01022~^~320~^165.^0^^~4~^~NC~^^^^^^^^^^~02/01/2009~
-~01022~^~321~^10.^0^^~4~^~NR~^^^^^^^^^^~01/01/2003~
-~01022~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2003~
-~01022~^~324~^20.^0^^~4~^~BFFN~^~01211~^^^^^^^^^~02/01/2009~
-~01022~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2003~
-~01022~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2003~
-~01022~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2003~
-~01022~^~417~^21.^20^2.^~1~^^^^^^^^^^^~11/01/1976~
-~01022~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~
-~01022~^~432~^21.^20^2.^~1~^^^^^^^^^^^~02/01/2009~
-~01022~^~435~^21.^0^^~4~^~NC~^^^^^^^^^^~02/01/2009~
-~01022~^~601~^114.^1^^~1~^^^^^^^^^^^~11/01/1976~
-~01023~^~208~^413.^0^^~4~^~NC~^^^^^^^^^^~02/01/2009~
-~01023~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2003~
-~01023~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2003~
-~01023~^~268~^1728.^0^^~4~^^^^^^^^^^^~02/01/2009~
-~01023~^~301~^1011.^3^48.^~1~^^^^^^^^^^^~11/01/1976~
-~01023~^~304~^36.^0^^~4~^^^^^^^^^^^~11/01/1976~
-~01023~^~305~^605.^3^52.^~1~^^^^^^^^^^^~11/01/1976~
-~01023~^~306~^81.^1^^~1~^^^^^^^^^^^~11/01/1976~
-~01023~^~307~^714.^0^^~4~^~NR~^^^^^^^^^^~06/01/2013~
-~01023~^~318~^948.^0^^~4~^~NC~^^^^^^^^^^~02/01/2009~
-~01023~^~319~^268.^0^^~4~^~T~^^^^^^^^^^~02/01/2009~
-~01023~^~320~^271.^0^^~4~^~NC~^^^^^^^^^^~02/01/2009~
-~01023~^~321~^33.^0^^~4~^~NR~^^^^^^^^^^~01/01/2003~
-~01023~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2003~
-~01023~^~324~^24.^0^^~4~^~BFFN~^~01211~^^^^^^^^^~02/01/2009~
-~01023~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2003~
-~01023~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2003~
-~01023~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2003~
-~01023~^~417~^10.^51^1.^~1~^^^^^^^^^^^~11/01/1976~
-~01023~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~
-~01023~^~432~^10.^51^1.^~1~^^^^^^^^^^^~02/01/2009~
-~01023~^~435~^10.^0^^~4~^~NC~^^^^^^^^^^~02/01/2009~
-~01023~^~601~^110.^0^^~1~^^^^^^^^^^^~11/01/1976~
-~01024~^~208~^327.^0^^~4~^~NC~^^^^^^^^^^~02/01/2009~
-~01024~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2003~
-~01024~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2003~
-~01024~^~268~^1368.^0^^~4~^~NC~^^^^^^^^^^~02/01/2009~
-~01024~^~301~^497.^3^100.^~1~^^^^^^^^^^^~11/01/1976~
-~01024~^~304~^21.^1^^~1~^^^^^^^^^^^~11/01/1976~
-~01024~^~305~^393.^2^^~1~^^^^^^^^^^^~11/01/1976~
-~01024~^~306~^128.^1^^~1~^^^^^^^^^^^~11/01/1976~
-~01024~^~307~^800.^1^^~1~^^^^^^^^^^^~11/01/1976~
-~01024~^~318~^1155.^0^^~4~^~NC~^^^^^^^^^^~02/01/2009~
-~01024~^~319~^339.^0^^~4~^~T~^^^^^^^^^^~02/01/2009~
-~01024~^~320~^340.^0^^~4~^~NC~^^^^^^^^^^~02/01/2009~
-~01024~^~321~^15.^0^^~4~^~NR~^^^^^^^^^^~01/01/2003~
-~01024~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2003~
-~01024~^~324~^20.^0^^~4~^~BFFN~^~01211~^^^^^^^^^~02/01/2009~
-~01024~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2003~
-~01024~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2003~
-~01024~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2003~
-~01024~^~417~^58.^25^5.^~1~^^^^^^^^^^^~11/01/1976~
-~01024~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~
-~01024~^~432~^58.^25^5.^~1~^^^^^^^^^^^~02/01/2009~
-~01024~^~435~^58.^0^^~4~^~NC~^^^^^^^^^^~02/01/2009~
-~01024~^~601~^90.^1^^~1~^^^^^^^^^^^~11/01/1976~
-~01025~^~208~^373.^0^^~4~^~NC~^^^^^^^^^^~02/01/2009~
-~01025~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~12/01/2002~
-~01025~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~12/01/2002~
-~01025~^~268~^1562.^0^^~4~^~NC~^^^^^^^^^^~02/01/2009~
-~01025~^~301~^746.^6^21.^~1~^^^^^^^^^^^~11/01/1976~
-~01025~^~304~^27.^4^1.^~1~^^^^^^^^^^^~11/01/1976~
-~01025~^~305~^444.^4^9.^~1~^^^^^^^^^^^~11/01/1976~
-~01025~^~306~^81.^4^11.^~1~^^^^^^^^^^^~11/01/1976~
-~01025~^~307~^600.^0^^~4~^~O~^^^^^^^^^^~06/01/2013~
-~01025~^~318~^769.^0^^~4~^~NC~^^^^^^^^^^~02/01/2009~
-~01025~^~319~^192.^0^^~4~^~T~^^^^^^^^^^~02/01/2009~
-~01025~^~320~^198.^0^^~4~^~NC~^^^^^^^^^^~02/01/2009~
-~01025~^~321~^78.^0^^~4~^~BFFN~^~01009~^^^^^^^^^~12/01/2002~
-~01025~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~12/01/2002~
-~01025~^~324~^22.^0^^~4~^~BFFN~^~01211~^^^^^^^^^~02/01/2009~
-~01025~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~12/01/2002~
-~01025~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~12/01/2002~
-~01025~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~12/01/2002~
-~01025~^~417~^18.^0^^~4~^^^^^^^^^^^~11/01/1976~
-~01025~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~
-~01025~^~432~^18.^0^^~4~^^^^^^^^^^^~02/01/2009~
-~01025~^~435~^18.^0^^~4~^~NC~^^^^^^^^^^~02/01/2009~
-~01025~^~601~^89.^0^^~4~^^^^^^^^^^^~11/01/1976~
-~01026~^~208~^299.^0^^~4~^~NC~^^^^^^^^^^~07/01/2017~
-~01026~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2003~
-~01026~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2003~
-~01026~^~268~^1249.^0^^~4~^~NC~^^^^^^^^^^~07/01/2017~
-~01026~^~301~^505.^6^2.^~1~^~A~^^^1^494.^512.^5^498.^512.^~2, 3~^~03/01/2003~
-~01026~^~304~^20.^6^0.^~1~^~A~^^^1^20.^21.^5^19.^20.^~2, 3~^~03/01/2003~
-~01026~^~305~^354.^6^2.^~1~^~A~^^^1^348.^363.^5^347.^360.^~2, 3~^~03/01/2003~
-~01026~^~306~^76.^6^2.^~1~^~A~^^^1^71.^86.^5^70.^81.^~2, 3~^~03/01/2003~
-~01026~^~307~^486.^0^^~8~^~LC~^^^^^^^^^^~07/01/2017~
-~01026~^~318~^676.^0^^~4~^~NC~^^^^^^^^^^~02/01/2009~
-~01026~^~319~^174.^0^^~4~^~BFFN~^~01009~^^^^^^^^^~01/01/2003~
-~01026~^~320~^179.^0^^~4~^~NC~^^^^^^^^^^~02/01/2009~
-~01026~^~321~^57.^0^^~4~^~BFFN~^~01009~^^^^^^^^^~01/01/2003~
-~01026~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2003~
-~01026~^~324~^16.^0^^~4~^~BFFN~^~01009~^^^^^^^^^~02/01/2009~
-~01026~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2003~
-~01026~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2003~
-~01026~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2003~
-~01026~^~417~^7.^3^0.^~1~^~A~^^^1^7.^7.^^^^~1, 2, 3~^~01/01/2003~
-~01026~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~
-~01026~^~432~^7.^3^0.^~1~^~A~^^^1^7.^7.^^^^^~02/01/2009~
-~01026~^~435~^7.^0^^~4~^~NC~^^^^^^^^^^~02/01/2009~
-~01026~^~601~^79.^6^3.^~1~^~A~^^^1^67.^94.^5^69.^88.^~2, 3~^~03/01/2003~
-~01027~^~208~^318.^0^^~4~^~NC~^^^^^^^^^^~11/01/1976~
-~01027~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2003~
-~01027~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2003~
-~01027~^~268~^1332.^0^^~4~^^^^^^^^^^^~02/01/2009~
-~01027~^~301~^575.^0^^~1~^^^^^^^^^^^~11/01/1976~
-~01027~^~304~^21.^0^^~1~^^^^^^^^^^^~11/01/1976~
-~01027~^~305~^412.^0^^~1~^^^^^^^^^^^~11/01/1976~
-~01027~^~306~^75.^0^^~1~^^^^^^^^^^^~11/01/1976~
-~01027~^~307~^710.^0^^~4~^~NR~^^^^^^^^^^~06/01/2013~
-~01027~^~318~^745.^0^^~4~^~NC~^^^^^^^^^^~02/01/2009~
-~01027~^~319~^192.^0^^~4~^~BFFN~^~01026~^^^^^^^^^~01/01/2003~
-~01027~^~320~^197.^0^^~4~^~NC~^^^^^^^^^^~02/01/2009~
-~01027~^~321~^63.^0^^~4~^~BFFN~^~01026~^^^^^^^^^~01/01/2003~
-~01027~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2003~
-~01027~^~324~^18.^0^^~4~^~BFFN~^~01026~^^^^^^^^^~02/01/2009~
-~01027~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2003~
-~01027~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2003~
-~01027~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2003~
-~01027~^~417~^8.^0^^~1~^^^^^^^^^^^~11/01/1976~
-~01027~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~
-~01027~^~432~^8.^0^^~1~^^^^^^^^^^^~02/01/2009~
-~01027~^~435~^8.^0^^~4~^~NC~^^^^^^^^^^~02/01/2009~
-~01027~^~601~^89.^0^^~1~^^^^^^^^^^^~11/01/1976~
-~01028~^~208~^254.^0^^~4~^~NC~^^^^^^^^^^~02/01/2009~
-~01028~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2003~
-~01028~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2003~
-~01028~^~268~^1064.^0^^~4~^~NC~^^^^^^^^^^~02/01/2009~
-~01028~^~301~^782.^1^^~1~^^^^^^^^^^^~03/01/2003~
-~01028~^~304~^23.^0^^~1~^^^^^^^^^^^~11/01/1976~
-~01028~^~305~^463.^0^^~1~^^^^^^^^^^^~11/01/1976~
-~01028~^~306~^84.^0^^~1~^^^^^^^^^^^~11/01/1976~
-~01028~^~307~^619.^1^^~1~^^^^^^^^^^^~07/01/2017~
-~01028~^~318~^481.^0^^~4~^~NC~^^^^^^^^^^~02/01/2009~
-~01028~^~319~^124.^0^^~4~^~BFFN~^~01026~^^^^^^^^^~01/01/2003~
-~01028~^~320~^127.^0^^~4~^~NC~^^^^^^^^^^~02/01/2009~
-~01028~^~321~^41.^0^^~4~^~BFFN~^~01026~^^^^^^^^^~01/01/2003~
-~01028~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2003~
-~01028~^~324~^12.^0^^~4~^~BFFN~^~01026~^^^^^^^^^~02/01/2009~
-~01028~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2003~
-~01028~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2003~
-~01028~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2003~
-~01028~^~417~^9.^0^^~1~^^^^^^^^^^^~11/01/1976~
-~01028~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~
-~01028~^~432~^9.^0^^~1~^^^^^^^^^^^~02/01/2009~
-~01028~^~435~^9.^0^^~4~^~NC~^^^^^^^^^^~02/01/2009~
-~01028~^~601~^64.^1^^~1~^^^^^^^^^^^~03/01/2003~
-~01029~^~208~^295.^0^^~4~^~NC~^^^^^^^^^^~06/01/2015~
-~01029~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2003~
-~01029~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2003~
-~01029~^~268~^1236.^0^^~4~^~NC~^^^^^^^^^^~06/01/2015~
-~01029~^~301~^697.^35^8.^~1~^~A~^^^2^656.^725.^18^679.^715.^~2, 3~^~06/01/2015~
-~01029~^~304~^27.^35^0.^~1~^~A~^^^2^25.^29.^17^26.^28.^~2, 3~^~05/01/2015~
-~01029~^~305~^548.^35^6.^~1~^~A~^^^2^527.^579.^19^535.^561.^~2, 3~^~06/01/2015~
-~01029~^~306~^188.^35^3.^~1~^~A~^^^2^124.^285.^17^181.^194.^~2, 3~^~06/01/2015~
-~01029~^~307~^666.^35^11.^~1~^~A~^^^2^651.^677.^18^642.^690.^~2, 3~^~06/01/2015~
-~01029~^~318~^829.^0^^~4~^~NC~^^^^^^^^^^~06/01/2015~
-~01029~^~319~^223.^4^^~1~^~A~^^^2^210.^232.^^^^~2, 3~^~06/01/2015~
-~01029~^~320~^227.^0^^~4~^~NC~^^^^^^^^^^~02/01/2017~
-~01029~^~321~^51.^0^^~4~^~BFFN~^~01009~^^^^^^^^^~06/01/2015~
-~01029~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2003~
-~01029~^~324~^15.^0^^~4~^~BFFN~^~01009~^^^^^^^^^~02/01/2009~
-~01029~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2003~
-~01029~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2003~
-~01029~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2003~
-~01029~^~417~^27.^4^1.^~1~^~A~^^^^24.^30.^^^^^~08/01/2014~
-~01029~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~
-~01029~^~432~^27.^4^1.^~1~^~A~^^^^24.^30.^^^^^~08/01/2014~
-~01029~^~435~^27.^0^^~4~^~NC~^^^^^^^^^^~08/01/2014~
-~01029~^~601~^64.^19^0.^~1~^~A~^^^2^63.^65.^8^62.^65.^~2, 3~^~06/01/2015~
-~01030~^~208~^368.^0^^~4~^~NC~^^^^^^^^^^~02/01/2009~
-~01030~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2003~
-~01030~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2003~
-~01030~^~268~^1541.^0^^~4~^~NC~^^^^^^^^^^~02/01/2009~
-~01030~^~301~^717.^14^25.^~1~^^^^^^^^^^^~11/01/1976~
-~01030~^~304~^27.^10^0.^~1~^^^^^^^^^^^~11/01/1976~
-~01030~^~305~^468.^11^9.^~1~^^^^^^^^^^^~11/01/1976~
-~01030~^~306~^134.^11^15.^~1~^^^^^^^^^^^~11/01/1976~
-~01030~^~307~^628.^11^27.^~1~^^^^^^^^^^^~11/01/1976~
-~01030~^~318~^1012.^0^^~4~^~NC~^^^^^^^^^^~02/01/2009~
-~01030~^~319~^297.^0^^~4~^~T~^^^^^^^^^^~02/01/2009~
-~01030~^~320~^298.^0^^~4~^~NC~^^^^^^^^^^~02/01/2009~
-~01030~^~321~^13.^0^^~4~^~NR~^^^^^^^^^^~01/01/2003~
-~01030~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2003~
-~01030~^~324~^22.^0^^~4~^~BFFN~^~01211~^^^^^^^^^~02/01/2009~
-~01030~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2003~
-~01030~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2003~
-~01030~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2003~
-~01030~^~417~^12.^25^1.^~1~^^^^^^^^^^^~11/01/1976~
-~01030~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~
-~01030~^~432~^12.^25^1.^~1~^^^^^^^^^^^~02/01/2009~
-~01030~^~435~^12.^0^^~4~^~NC~^^^^^^^^^^~02/01/2009~
-~01030~^~601~^96.^4^3.^~1~^^^^^^^^^^^~11/01/1976~
-~01031~^~208~^253.^0^^~4~^~NC~^^^^^^^^^^~06/01/2008~
-~01031~^~268~^1059.^0^^~4~^~NC~^^^^^^^^^^~06/01/2008~
-~01031~^~301~^117.^2^^~1~^~A~^^^1^^^^^^^~06/01/2008~
-~01031~^~304~^10.^2^^~1~^~A~^^^1^^^^^^^~06/01/2008~
-~01031~^~305~^138.^2^^~1~^~A~^^^1^^^^^^^~06/01/2008~
-~01031~^~306~^152.^2^^~1~^~A~^^^1^^^^^^^~06/01/2008~
-~01031~^~307~^334.^2^^~1~^~A~^^^1^^^^^^^~06/01/2008~
-~01031~^~318~^841.^0^^~4~^~NC~^^^^^^^^^^~06/01/2008~
-~01031~^~319~^239.^0^^~4~^~BFFN~^~01017~^^^^^^^^^~06/01/2008~
-~01031~^~320~^241.^0^^~4~^~NC~^^^^^^^^^^~06/01/2008~
-~01031~^~321~^27.^2^^~1~^~A~^^^1^^^^^^^~06/01/2008~
-~01031~^~322~^0.^2^^~1~^~A~^^^1^^^^^^^~06/01/2008~
-~01031~^~334~^0.^2^^~1~^~A~^^^1^^^^^^^~06/01/2008~
-~01031~^~337~^0.^2^^~1~^~A~^^^1^^^^^^^~06/01/2008~
-~01031~^~417~^14.^2^^~1~^~A~^^^1^^^^^^^~06/01/2008~
-~01031~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~
-~01031~^~432~^14.^2^^~1~^~A~^^^^^^^^^^~06/01/2008~
-~01031~^~435~^14.^0^^~4~^~NC~^^^^^^^^^^~06/01/2008~
-~01031~^~601~^74.^2^^~1~^~A~^^^1^^^^^^^~06/01/2008~
-~01032~^~208~^420.^0^^~4~^~NC~^^^^^^^^^^~05/01/2014~
-~01032~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~
-~01032~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~
-~01032~^~268~^1757.^0^^~4~^~NC~^^^^^^^^^^~05/01/2014~
-~01032~^~301~^853.^11^56.^~1~^~A~^^^1^348.^1070.^5^707.^998.^~2, 3~^~05/01/2014~
-~01032~^~304~^34.^11^1.^~1~^~A~^^^1^25.^39.^5^31.^37.^~2, 3~^~05/01/2014~
-~01032~^~305~^627.^11^32.^~1~^~A~^^^1^411.^760.^5^542.^711.^~2, 3~^~05/01/2014~
-~01032~^~306~^180.^11^9.^~1~^~A~^^^1^121.^252.^8^158.^201.^~2, 3~^~05/01/2014~
-~01032~^~307~^1804.^11^82.^~1~^~A~^^^1^1440.^2350.^5^1596.^2011.^~2, 3~^~05/01/2014~
-~01032~^~318~^974.^0^^~4~^~NC~^^^^^^^^^^~05/01/2014~
-~01032~^~319~^255.^1^^~1~^~A~^^^^^^^^^^~05/01/2014~
-~01032~^~320~^262.^0^^~4~^~NC~^^^^^^^^^^~05/01/2014~
-~01032~^~321~^73.^0^^~4~^~BFFN~^~01009~^^^^^^^^^~02/01/2009~
-~01032~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~
-~01032~^~324~^21.^0^^~4~^~BFFN~^~01009~^^^^^^^^^~02/01/2009~
-~01032~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~
-~01032~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~
-~01032~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~
-~01032~^~417~^6.^1^^~1~^~A~^^^^^^^^^^~05/01/2014~
-~01032~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~
-~01032~^~432~^6.^1^^~1~^~A~^^^^^^^^^^~05/01/2014~
-~01032~^~435~^6.^0^^~4~^~NC~^^^^^^^^^^~05/01/2014~
-~01032~^~601~^86.^5^5.^~1~^~A~^^^1^73.^102.^2^63.^109.^~2, 3~^~05/01/2014~
-~01033~^~208~^392.^0^^~4~^~NC~^^^^^^^^^^~11/01/1976~
-~01033~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2001~
-~01033~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2001~
-~01033~^~268~^1641.^0^^~4~^^^^^^^^^^^~02/01/2009~
-~01033~^~301~^1184.^23^29.^~1~^^^^^^^^^^^~11/01/1976~
-~01033~^~304~^44.^4^0.^~1~^^^^^^^^^^^~11/01/1976~
-~01033~^~305~^694.^19^20.^~1~^^^^^^^^^^^~11/01/1976~
-~01033~^~306~^92.^4^5.^~1~^^^^^^^^^^^~11/01/1976~
-~01033~^~307~^1175.^0^^~8~^~LC~^^^^^^^^^^~07/01/2017~
-~01033~^~318~^781.^0^^~4~^~NC~^^^^^^^^^^~02/01/2009~
-~01033~^~319~^201.^0^^~4~^~BFFN~^~01032~^^^^^^^^^~02/01/2009~
-~01033~^~320~^207.^0^^~4~^~NC~^^^^^^^^^^~02/01/2009~
-~01033~^~321~^66.^0^^~4~^~BFFN~^~01032~^^^^^^^^^~02/01/2009~
-~01033~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~
-~01033~^~324~^19.^0^^~4~^~BFFN~^~01032~^^^^^^^^^~02/01/2009~
-~01033~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~
-~01033~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~
-~01033~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~
-~01033~^~417~^7.^20^0.^~1~^^^^^^^^^^^~11/01/1976~
-~01033~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~
-~01033~^~432~^7.^20^0.^~1~^^^^^^^^^^^~02/01/2009~
-~01033~^~435~^7.^0^^~4~^~NC~^^^^^^^^^^~02/01/2009~
-~01033~^~601~^68.^4^2.^~1~^^^^^^^^^^^~11/01/1976~
-~01034~^~208~^352.^0^^~4~^~NC~^^^^^^^^^^~02/01/2009~
-~01034~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2003~
-~01034~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2003~
-~01034~^~268~^1471.^0^^~4~^~NC~^^^^^^^^^^~02/01/2009~
-~01034~^~301~^650.^4^^~1~^^^^^^^^^^^~11/01/1976~
-~01034~^~304~^24.^0^^~4~^^^^^^^^^^^~11/01/1976~
-~01034~^~305~^360.^4^^~1~^^^^^^^^^^^~11/01/1976~
-~01034~^~306~^136.^0^^~4~^^^^^^^^^^^~11/01/1976~
-~01034~^~307~^534.^0^^~1~^^^^^^^^^^^~11/01/1976~
-~01034~^~318~^1092.^0^^~4~^~NC~^^^^^^^^^^~02/01/2009~
-~01034~^~319~^313.^0^^~4~^~T~^^^^^^^^^^~02/01/2009~
-~01034~^~320~^315.^0^^~4~^~NC~^^^^^^^^^^~02/01/2009~
-~01034~^~321~^29.^0^^~4~^~NR~^^^^^^^^^^~01/01/2003~
-~01034~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2003~
-~01034~^~324~^21.^0^^~4~^~BFFN~^~01211~^^^^^^^^^~02/01/2009~
-~01034~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2003~
-~01034~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2003~
-~01034~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2003~
-~01034~^~417~^18.^19^1.^~1~^^^^^^^^^^^~11/01/1976~
-~01034~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~
-~01034~^~432~^18.^19^1.^~1~^^^^^^^^^^^~02/01/2009~
-~01034~^~435~^18.^0^^~4~^~NC~^^^^^^^^^^~02/01/2009~
-~01034~^~601~^123.^1^^~1~^^^^^^^^^^^~11/01/1976~
-~01035~^~208~^351.^0^^~4~^~NC~^^^^^^^^^^~02/01/2009~
-~01035~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~12/01/2002~
-~01035~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~12/01/2002~
-~01035~^~268~^1471.^0^^~4~^~NC~^^^^^^^^^^~02/01/2009~
-~01035~^~301~^756.^18^17.^~1~^^^^^^^^^^^~11/01/1976~
-~01035~^~304~^28.^13^0.^~1~^^^^^^^^^^^~11/01/1976~
-~01035~^~305~^496.^13^16.^~1~^^^^^^^^^^^~11/01/1976~
-~01035~^~306~^138.^11^12.^~1~^^^^^^^^^^^~11/01/1976~
-~01035~^~307~^727.^0^^~8~^~LC~^^^^^^^^^^~07/01/2017~
-~01035~^~318~^880.^0^^~4~^~NC~^^^^^^^^^^~02/01/2009~
-~01035~^~319~^230.^0^^~4~^~T~^^^^^^^^^^~02/01/2009~
-~01035~^~320~^236.^0^^~4~^~NC~^^^^^^^^^^~02/01/2009~
-~01035~^~321~^68.^0^^~4~^~BFFN~^~01009~^^^^^^^^^~12/01/2002~
-~01035~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~12/01/2002~
-~01035~^~324~^20.^0^^~4~^~BFFN~^~01211~^^^^^^^^^~02/01/2009~
-~01035~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~12/01/2002~
-~01035~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~12/01/2002~
-~01035~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~12/01/2002~
-~01035~^~417~^10.^15^1.^~1~^^^^^^^^^^^~11/01/1976~
-~01035~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~
-~01035~^~432~^10.^15^1.^~1~^^^^^^^^^^^~02/01/2009~
-~01035~^~435~^10.^0^^~4~^~NC~^^^^^^^^^^~02/01/2009~
-~01035~^~601~^69.^4^4.^~1~^^^^^^^^^^^~11/01/1976~
-~01036~^~208~^150.^0^^~4~^~NC~^^^^^^^^^^~01/01/2017~
-~01036~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~12/01/2002~
-~01036~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~12/01/2002~
-~01036~^~268~^627.^0^^~4~^~NC~^^^^^^^^^^~01/01/2017~
-~01036~^~301~^206.^11^22.^~1~^~A~^^^1^148.^375.^5^147.^263.^~2, 3~^~01/01/2017~
-~01036~^~304~^20.^11^0.^~1~^~A~^^^1^15.^22.^5^18.^21.^~2, 3~^~01/01/2017~
-~01036~^~305~^154.^11^13.^~1~^~A~^^^1^120.^251.^5^119.^188.^~2, 3~^~01/01/2017~
-~01036~^~306~^219.^11^12.^~1~^~A~^^^1^117.^291.^5^186.^251.^~2, 3~^~01/01/2017~
-~01036~^~307~^110.^11^5.^~1~^~A~^^^1^84.^161.^5^95.^124.^~2, 3~^~01/01/2017~
-~01036~^~318~^445.^0^^~4~^~NC~^^^^^^^^^^~02/01/2009~
-~01036~^~319~^117.^0^^~4~^~T~^^^^^^^^^^~02/01/2009~
-~01036~^~320~^120.^0^^~4~^~NC~^^^^^^^^^^~02/01/2009~
-~01036~^~321~^33.^0^^~4~^~BFFN~^~01009~^^^^^^^^^~12/01/2002~
-~01036~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~12/01/2002~
-~01036~^~324~^10.^0^^~4~^~BFFN~^~01211~^^^^^^^^^~02/01/2009~
-~01036~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~12/01/2002~
-~01036~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~12/01/2002~
-~01036~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~12/01/2002~
-~01036~^~417~^4.^2^^~1~^~A~^^^1^4.^9.^^^^~1~^~01/01/2017~
-~01036~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~
-~01036~^~432~^4.^0^^~4~^~NR~^^^^^^^^^^~01/01/2017~
-~01036~^~435~^4.^0^^~4~^~NC~^^^^^^^^^^~01/01/2017~
-~01036~^~601~^49.^7^3.^~1~^~A~^^^1^42.^57.^3^38.^60.^~2, 3~^~01/01/2017~
-~01037~^~208~^138.^0^^~4~^~NC~^^^^^^^^^^~11/01/1976~
-~01037~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2003~
-~01037~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2003~
-~01037~^~268~^578.^0^^~4~^^^^^^^^^^^~02/01/2009~
-~01037~^~301~^272.^8^28.^~1~^^^^^^^^^^^~11/01/1976~
-~01037~^~304~^15.^8^1.^~1~^^^^^^^^^^^~11/01/1976~
-~01037~^~305~^183.^8^18.^~1~^^^^^^^^^^^~11/01/1976~
-~01037~^~306~^125.^8^9.^~1~^^^^^^^^^^^~11/01/1976~
-~01037~^~307~^99.^0^^~4~^~NR~^^^^^^^^^^~06/01/2013~
-~01037~^~318~^384.^0^^~4~^~NC~^^^^^^^^^^~02/01/2009~
-~01037~^~319~^105.^0^^~4~^~NC~^^^^^^^^^^~01/01/2003~
-~01037~^~320~^107.^0^^~4~^~NC~^^^^^^^^^^~02/01/2009~
-~01037~^~321~^20.^0^^~4~^~BFFN~^~01009~^^^^^^^^^~01/01/2003~
-~01037~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2003~
-~01037~^~324~^6.^0^^~4~^~BFFN~^~01211~^^^^^^^^^~02/01/2009~
-~01037~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2003~
-~01037~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2003~
-~01037~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2003~
-~01037~^~417~^13.^0^^~4~^^^^^^^^^^^~11/01/1976~
-~01037~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~
-~01037~^~432~^13.^0^^~4~^^^^^^^^^^^~02/01/2009~
-~01037~^~435~^13.^0^^~4~^~NC~^^^^^^^^^^~02/01/2009~
-~01037~^~601~^31.^0^^~1~^^^^^^^^^^^~11/01/1976~
-~01038~^~208~^387.^0^^~4~^~NC~^^^^^^^^^^~02/01/2009~
-~01038~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~12/01/2002~
-~01038~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~12/01/2002~
-~01038~^~268~^1618.^0^^~4~^^^^^^^^^^^~02/01/2009~
-~01038~^~301~^1064.^6^64.^~1~^^^^^^^^^^^~11/01/1976~
-~01038~^~304~^41.^0^^~4~^^^^^^^^^^^~11/01/1976~
-~01038~^~305~^760.^2^^~1~^^^^^^^^^^^~11/01/1976~
-~01038~^~306~^86.^0^^~4~^^^^^^^^^^^~11/01/1976~
-~01038~^~307~^1433.^0^^~4~^~NR~^^^^^^^^^^~06/01/2013~
-~01038~^~318~^415.^0^^~4~^~NC~^^^^^^^^^^~02/01/2009~
-~01038~^~319~^90.^0^^~4~^~T~^^^^^^^^^^~02/01/2009~
-~01038~^~320~^96.^0^^~4~^~NC~^^^^^^^^^^~02/01/2009~
-~01038~^~321~^69.^0^^~4~^~BFFN~^~01009~^^^^^^^^^~12/01/2002~
-~01038~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~12/01/2002~
-~01038~^~324~^20.^0^^~4~^~BFFN~^~01211~^^^^^^^^^~02/01/2009~
-~01038~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~12/01/2002~
-~01038~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~12/01/2002~
-~01038~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~12/01/2002~
-~01038~^~417~^7.^24^1.^~1~^^^^^^^^^^^~11/01/1976~
-~01038~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~
-~01038~^~432~^7.^24^1.^~1~^^^^^^^^^^^~02/01/2009~
-~01038~^~435~^7.^0^^~4~^~NC~^^^^^^^^^^~02/01/2009~
-~01038~^~601~^104.^1^^~1~^^^^^^^^^^^~11/01/1976~
-~01039~^~208~^369.^0^^~4~^~NC~^^^^^^^^^^~11/01/1976~
-~01039~^~268~^1544.^0^^~4~^^^^^^^^^^^
-~01039~^~301~^662.^12^34.^~1~^^^^^^^^^^^~11/01/1976~
-~01039~^~304~^30.^4^1.^~1~^^^^^^^^^^^~11/01/1976~
-~01039~^~305~^392.^11^17.^~1~^^^^^^^^^^^~11/01/1976~
-~01039~^~306~^91.^3^10.^~1~^^^^^^^^^^^~11/01/1976~
-~01039~^~307~^1809.^4^157.^~1~^^^^^^^^^^^~11/01/1976~
-~01039~^~318~^1047.^1^^~1~^^^^^^^^^^^~11/01/1976~
-~01039~^~319~^290.^0^^~4~^~NC~^^^^^^^^^^~06/01/2002~
-~01039~^~320~^294.^0^^~4~^~NC~^^^^^^^^^^~06/01/2002~
-~01039~^~417~^49.^24^7.^~1~^^^^^^^^^^^~11/01/1976~
-~01039~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~
-~01039~^~432~^49.^24^7.^~1~^^^^^^^^^^^~11/01/1976~
-~01039~^~435~^49.^0^^~4~^~NC~^^^^^^^^^^~01/01/2001~
-~01039~^~601~^90.^1^^~1~^^^^^^^^^^^~11/01/1976~
-~01040~^~208~^393.^0^^~4~^~NC~^^^^^^^^^^~02/01/2015~
-~01040~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2001~
-~01040~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2001~
-~01040~^~268~^1645.^0^^~4~^~NC~^^^^^^^^^^~02/01/2015~
-~01040~^~301~^890.^12^9.^~1~^~A~^^^1^842.^938.^8^867.^912.^~2, 3~^~02/01/2015~
-~01040~^~304~^33.^12^0.^~1~^~A~^^^1^32.^35.^9^32.^34.^~2, 3~^~02/01/2015~
-~01040~^~305~^574.^12^4.^~1~^~A~^^^1^553.^594.^9^563.^584.^~2, 3~^~02/01/2015~
-~01040~^~306~^72.^12^2.^~1~^~A~^^^1^57.^96.^7^65.^78.^~2, 3~^~02/01/2015~
-~01040~^~307~^187.^12^10.^~1~^~A~^^^1^144.^248.^6^159.^213.^~2, 3~^~02/01/2015~
-~01040~^~318~^1047.^4^^~1~^~AS~^^^^^^^^^^~02/01/2015~
-~01040~^~319~^283.^4^20.^~1~^~A~^^^1^226.^318.^1^32.^534.^~2, 3~^~02/01/2015~
-~01040~^~320~^288.^4^^~1~^~AS~^^^^^^^^^^~02/01/2015~
-~01040~^~321~^61.^4^3.^~1~^~A~^^^1^56.^70.^1^16.^104.^~2, 3~^~02/01/2015~
-~01040~^~322~^1.^4^0.^~1~^~A~^^^1^0.^1.^1^-1.^2.^~1, 2, 3~^~02/01/2015~
-~01040~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2015~
-~01040~^~334~^2.^4^0.^~1~^~A~^^^1^2.^2.^2^1.^2.^~2, 3~^~02/01/2015~
-~01040~^~337~^1.^4^0.^~1~^~A~^^^1^0.^2.^1^-4.^5.^~1, 2, 3~^~02/01/2015~
-~01040~^~338~^8.^4^1.^~1~^~A~^^^1^6.^12.^1^-12.^28.^~2, 3~^~02/01/2015~
-~01040~^~417~^10.^2^^~1~^~A~^^^1^8.^11.^^^^^~02/01/2015~
-~01040~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~
-~01040~^~432~^10.^2^^~1~^~A~^^^^^^^^^^~02/01/2015~
-~01040~^~435~^10.^0^^~4~^~NC~^^^^^^^^^^~02/01/2015~
-~01040~^~601~^93.^6^1.^~1~^~A~^^^1^90.^96.^2^88.^97.^~2, 3~^~02/01/2015~
-~01041~^~208~^340.^0^^~4~^~NC~^^^^^^^^^^~11/01/1976~
-~01041~^~268~^1422.^0^^~4~^^^^^^^^^^^
-~01041~^~301~^700.^2^^~1~^^^^^^^^^^^~11/01/1976~
-~01041~^~304~^13.^1^^~1~^^^^^^^^^^^~11/01/1976~
-~01041~^~305~^500.^1^^~1~^^^^^^^^^^^~11/01/1976~
-~01041~^~306~^65.^2^^~1~^^^^^^^^^^^~11/01/1976~
-~01041~^~307~^753.^2^^~1~^^^^^^^^^^^~11/01/1976~
-~01041~^~318~^1045.^1^^~1~^^^^^^^^^^^~11/01/1976~
-~01041~^~319~^236.^0^^~4~^~NC~^^^^^^^^^^~06/01/2002~
-~01041~^~320~^249.^0^^~4~^~NC~^^^^^^^^^^~06/01/2002~
-~01041~^~417~^20.^0^^~4~^^^^^^^^^^^~11/01/1976~
-~01041~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~
-~01041~^~432~^20.^0^^~4~^^^^^^^^^^^~11/01/1976~
-~01041~^~435~^20.^0^^~4~^~NC~^^^^^^^^^^~01/01/2001~
-~01041~^~601~^102.^1^^~1~^^^^^^^^^^^~11/01/1976~
-~01042~^~208~^366.^0^^~4~^~NC~^^^^^^^^^^~07/01/2012~
-~01042~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~
-~01042~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~
-~01042~^~268~^1531.^0^^~4~^~NC~^^^^^^^^^^~07/01/2012~
-~01042~^~301~^1045.^19^34.^~1~^~A~^^^1^479.^1390.^16^971.^1118.^~2, 3~^~05/01/2011~
-~01042~^~304~^26.^19^0.^~1~^~A~^^^1^23.^28.^12^25.^26.^~2, 3~^~05/01/2011~
-~01042~^~305~^641.^19^14.^~1~^~A~^^^1^336.^767.^16^609.^672.^~2, 3~^~05/01/2011~
-~01042~^~306~^132.^19^3.^~1~^~A~^^^1^99.^212.^16^123.^140.^~2, 3~^~05/01/2011~
-~01042~^~307~^1671.^19^21.^~1~^~A~^^^1^1270.^1890.^15^1626.^1716.^~2, 3~^~05/01/2011~
-~01042~^~318~^1131.^0^^~1~^~AS~^^^^^^^^^^~07/01/2012~
-~01042~^~319~^313.^3^^~1~^~A~^^^1^278.^331.^^^^~2, 3~^~07/01/2012~
-~01042~^~320~^317.^0^^~1~^~AS~^^^^^^^^^^~07/01/2012~
-~01042~^~321~^49.^3^^~1~^~A~^^^1^0.^78.^^^^~1, 2, 3~^~07/01/2012~
-~01042~^~322~^0.^3^^~1~^~A~^^^1^0.^0.^^^^~1, 2, 3~^~07/01/2012~
-~01042~^~324~^301.^1^^~1~^~A~^^^^^^^^^^~05/01/2011~
-~01042~^~334~^7.^3^^~1~^~A~^^^1^0.^11.^^^^~1, 2, 3~^~07/01/2012~
-~01042~^~337~^0.^3^^~1~^~A~^^^1^0.^0.^^^^~1, 2, 3~^~07/01/2012~
-~01042~^~338~^21.^3^^~1~^~A~^^^1^9.^28.^^^^~2, 3~^~07/01/2012~
-~01042~^~417~^8.^26^0.^~1~^^^^^^^^^^^~11/01/1976~
-~01042~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~
-~01042~^~432~^8.^26^0.^~1~^^^^^^^^^^^~08/01/2010~
-~01042~^~435~^8.^0^^~4~^~NC~^^^^^^^^^^~08/01/2010~
-~01042~^~601~^100.^3^^~1~^~A~^^^1^92.^103.^^^^~2, 3~^~05/01/2011~
-~01043~^~208~^375.^0^^~4~^~NC~^^^^^^^^^^~02/01/2009~
-~01043~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~
-~01043~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~
-~01043~^~268~^1571.^0^^~4~^^^^^^^^^^^~02/01/2009~
-~01043~^~301~^614.^0^^~1~^^^^^^^^^^^~11/01/1976~
-~01043~^~304~^22.^0^^~1~^^^^^^^^^^^~11/01/1976~
-~01043~^~305~^744.^0^^~1~^^^^^^^^^^^~11/01/1976~
-~01043~^~306~^162.^0^^~1~^^^^^^^^^^^~11/01/1976~
-~01043~^~307~^915.^0^^~4~^~NR~^^^^^^^^^^~06/01/2013~
-~01043~^~318~^1030.^0^^~4~^~NC~^^^^^^^^^^~02/01/2009~
-~01043~^~319~^231.^0^^~4~^~RA~^^^^^^^^^^~02/01/2009~
-~01043~^~320~^244.^0^^~4~^~NC~^^^^^^^^^^~02/01/2009~
-~01043~^~321~^150.^0^^~4~^~RA~^^^^^^^^^^~02/01/2009~
-~01043~^~322~^12.^0^^~4~^~RA~^^^^^^^^^^~02/01/2003~
-~01043~^~324~^22.^0^^~4~^~RA~^^^^^^^^^^~02/01/2009~
-~01043~^~334~^0.^0^^~4~^~RA~^^^^^^^^^^~02/01/2003~
-~01043~^~337~^0.^0^^~4~^~RA~^^^^^^^^^^~02/01/2003~
-~01043~^~338~^18.^0^^~4~^~RA~^^^^^^^^^^~02/01/2009~
-~01043~^~417~^8.^0^^~1~^^^^^^^^^^^~11/01/1976~
-~01043~^~431~^0.^0^^~4~^~RA~^^^^^^^^^^~02/01/2003~
-~01043~^~432~^8.^0^^~4~^~RA~^^^^^^^^^^~02/01/2009~
-~01043~^~435~^8.^0^^~4~^~NC~^^^^^^^^^^~02/01/2009~
-~01043~^~601~^94.^0^^~1~^^^^^^^^^^^~11/01/1976~
-~01044~^~208~^334.^0^^~4~^~NC~^^^^^^^^^^~02/01/2009~
-~01044~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~
-~01044~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~
-~01044~^~268~^1396.^0^^~4~^~NC~^^^^^^^^^^~02/01/2009~
-~01044~^~301~^772.^6^32.^~1~^^^^^^^^^^^~11/01/1976~
-~01044~^~304~^29.^6^0.^~1~^^^^^^^^^^^~11/01/1976~
-~01044~^~305~^762.^7^59.^~1~^^^^^^^^^^^~11/01/1976~
-~01044~^~306~^216.^6^14.^~1~^^^^^^^^^^^~11/01/1976~
-~01044~^~307~^1370.^6^64.^~1~^^^^^^^^^^^~11/01/1976~
-~01044~^~318~^746.^0^^~4~^~NC~^^^^^^^^^^~02/01/2009~
-~01044~^~319~^192.^0^^~4~^~BFFN~^~01040~^^^^^^^^^~02/01/2003~
-~01044~^~320~^198.^0^^~4~^~NC~^^^^^^^^^^~02/01/2009~
-~01044~^~321~^63.^0^^~4~^~BFFN~^~01040~^^^^^^^^^~02/01/2003~
-~01044~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~
-~01044~^~324~^18.^0^^~4~^~BFFN~^~01211~^^^^^^^^^~02/01/2009~
-~01044~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~
-~01044~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~
-~01044~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~
-~01044~^~417~^6.^0^^~4~^^^^^^^^^^^~11/01/1976~
-~01044~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~
-~01044~^~432~^6.^0^^~4~^^^^^^^^^^^~02/01/2009~
-~01044~^~435~^6.^0^^~4~^~NC~^^^^^^^^^^~02/01/2009~
-~01044~^~601~^85.^0^^~1~^^^^^^^^^^^~11/01/1976~
-~01045~^~208~^331.^0^^~4~^~NC~^^^^^^^^^^~11/01/1976~
-~01045~^~268~^1386.^0^^~4~^^^^^^^^^^^
-~01045~^~301~^497.^5^6.^~1~^^^^^^^^^^^~11/01/1976~
-~01045~^~304~^30.^1^^~1~^^^^^^^^^^^~11/01/1976~
-~01045~^~305~^400.^1^^~1~^^^^^^^^^^^~11/01/1976~
-~01045~^~306~^363.^1^^~1~^^^^^^^^^^^~11/01/1976~
-~01045~^~307~^966.^1^^~1~^^^^^^^^^^^~11/01/1976~
-~01045~^~318~^705.^5^27.^~1~^^^^^^^^^^^~11/01/1976~
-~01045~^~417~^5.^21^0.^~1~^^^^^^^^^^^~11/01/1976~
-~01045~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~
-~01045~^~432~^5.^21^0.^~1~^^^^^^^^^^^~11/01/1976~
-~01045~^~435~^5.^0^^~4~^~NC~^^^^^^^^^^~01/01/2001~
-~01045~^~601~^64.^0^^~1~^^^^^^^^^^^~11/01/1976~
-~01046~^~208~^330.^0^^~4~^~NC~^^^^^^^^^^~02/01/2009~
-~01046~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~
-~01046~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~
-~01046~^~268~^1382.^0^^~4~^~NC~^^^^^^^^^^~02/01/2009~
-~01046~^~301~^682.^10^114.^~1~^~A~^^^1^473.^1450.^9^422.^941.^~2, 3~^~05/01/2011~
-~01046~^~304~^27.^10^1.^~1~^~A~^^^1^24.^33.^9^24.^29.^~2, 3~^~05/01/2011~
-~01046~^~305~^438.^10^46.^~1~^~A~^^^1^349.^745.^9^333.^542.^~2, 3~^~05/01/2011~
-~01046~^~306~^255.^10^14.^~1~^~A~^^^1^208.^353.^9^221.^287.^~2, 3~^~05/01/2011~
-~01046~^~307~^1284.^10^36.^~1~^~A~^^^1^1100.^1490.^9^1201.^1366.^~2, 3~^~05/01/2011~
-~01046~^~318~^761.^0^^~4~^~NC~^^^^^^^^^^~02/01/2009~
-~01046~^~319~^196.^0^^~4~^~BFFN~^~01009~^^^^^^^^^~02/01/2003~
-~01046~^~320~^201.^0^^~4~^~NC~^^^^^^^^^^~02/01/2009~
-~01046~^~321~^65.^0^^~4~^~BFFN~^~01009~^^^^^^^^^~02/01/2003~
-~01046~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~
-~01046~^~324~^102.^2^^~1~^~A~^^^1^0.^204.^1^^^~1~^~05/01/2011~
-~01046~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~
-~01046~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~
-~01046~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~
-~01046~^~417~^7.^0^^~4~^^^^^^^^^^^~11/01/1976~
-~01046~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~
-~01046~^~432~^7.^0^^~4~^^^^^^^^^^^~02/01/2009~
-~01046~^~435~^7.^0^^~4~^~NC~^^^^^^^^^^~02/01/2009~
-~01046~^~601~^98.^2^^~1~^~A~^^^1^86.^109.^1^^^^~05/01/2011~
-~01047~^~208~^323.^0^^~4~^~NC~^^^^^^^^^^~11/01/1976~
-~01047~^~268~^1352.^0^^~4~^^^^^^^^^^^
-~01047~^~301~^723.^10^31.^~1~^^^^^^^^^^^~11/01/1976~
-~01047~^~304~^28.^1^^~1~^^^^^^^^^^^~11/01/1976~
-~01047~^~305~^526.^1^^~1~^^^^^^^^^^^~11/01/1976~
-~01047~^~306~^284.^1^^~1~^^^^^^^^^^^~11/01/1976~
-~01047~^~307~^1552.^1^^~1~^^^^^^^^^^^~11/01/1976~
-~01047~^~318~^856.^10^58.^~1~^^^^^^^^^^^~11/01/1976~
-~01047~^~319~^233.^0^^~4~^~NC~^^^^^^^^^^~06/01/2002~
-~01047~^~320~^237.^0^^~4~^~NC~^^^^^^^^^^~06/01/2002~
-~01047~^~417~^6.^0^^~4~^^^^^^^^^^^~11/01/1976~
-~01047~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~
-~01047~^~432~^6.^0^^~4~^^^^^^^^^^^~11/01/1976~
-~01047~^~435~^6.^0^^~4~^~NC~^^^^^^^^^^~01/01/2001~
-~01047~^~601~^82.^0^^~1~^^^^^^^^^^^~11/01/1976~
-~01048~^~208~^290.^0^^~4~^~NC~^^^^^^^^^^~02/01/2009~
-~01048~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~
-~01048~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~
-~01048~^~268~^1215.^0^^~4~^^^^^^^^^^^~02/01/2009~
-~01048~^~301~^562.^9^14.^~1~^^^^^^^^^^^~11/01/1976~
-~01048~^~304~^29.^4^2.^~1~^^^^^^^^^^^~11/01/1976~
-~01048~^~305~^875.^0^^~4~^~BFZN~^^^^^^^^^^~06/01/2011~
-~01048~^~306~^242.^4^66.^~1~^^^^^^^^^^^~11/01/1976~
-~01048~^~307~^1625.^0^^~4~^~BFZN~^^^^^^^^^^~06/01/2011~
-~01048~^~318~^653.^0^^~4~^~NC~^^^^^^^^^^~02/01/2009~
-~01048~^~319~^168.^0^^~4~^~BFFN~^~01042~^^^^^^^^^~02/01/2003~
-~01048~^~320~^173.^0^^~4~^~NC~^^^^^^^^^^~02/01/2009~
-~01048~^~321~^55.^0^^~4~^~BFFN~^~01042~^^^^^^^^^~02/01/2003~
-~01048~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~
-~01048~^~324~^16.^0^^~4~^~BFFN~^~01009~^^^^^^^^^~02/01/2009~
-~01048~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~
-~01048~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~
-~01048~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~
-~01048~^~417~^7.^3^0.^~1~^^^^^^^^^^^~11/01/1976~
-~01048~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~
-~01048~^~432~^7.^3^0.^~1~^^^^^^^^^^^~02/01/2009~
-~01048~^~435~^7.^0^^~4~^~NC~^^^^^^^^^^~02/01/2009~
-~01048~^~601~^55.^0^^~1~^^^^^^^^^^^~11/01/1976~
-~01049~^~208~^131.^0^^~4~^~NC~^^^^^^^^^^~11/01/2016~
-~01049~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~12/01/2002~
-~01049~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~12/01/2002~
-~01049~^~268~^548.^0^^~4~^~NC~^^^^^^^^^^~11/01/2016~
-~01049~^~301~^107.^10^1.^~1~^~A~^^^1^99.^114.^5^103.^111.^~2, 3~^~01/01/2015~
-~01049~^~304~^10.^10^0.^~1~^~A~^^^1^10.^10.^5^9.^10.^~2, 3~^~11/01/1976~
-~01049~^~305~^95.^10^3.^~1~^~A~^^^1^82.^106.^5^86.^103.^~2, 3~^~11/01/1976~
-~01049~^~306~^132.^10^1.^~1~^~A~^^^1^128.^140.^5^129.^135.^~2, 3~^~01/01/2015~
-~01049~^~307~^61.^10^6.^~1~^~A~^^^1^35.^88.^5^45.^76.^~2, 3~^~01/01/2015~
-~01049~^~318~^354.^0^^~4~^~NC~^^^^^^^^^^~02/01/2009~
-~01049~^~319~^95.^0^^~4~^~T~^^^^^^^^^^~02/01/2009~
-~01049~^~320~^97.^0^^~4~^~NC~^^^^^^^^^^~02/01/2009~
-~01049~^~321~^22.^0^^~4~^~BFFN~^~01001~^^^^^^^^^~12/01/2002~
-~01049~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~12/01/2002~
-~01049~^~324~^2.^1^^~1~^~A~^^^^^^^^^~1~^~01/01/2015~
-~01049~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~12/01/2002~
-~01049~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~12/01/2002~
-~01049~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~12/01/2002~
-~01049~^~417~^3.^3^0.^~1~^^^^^^^^^^^~11/01/1976~
-~01049~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~
-~01049~^~432~^3.^3^0.^~1~^^^^^^^^^^^~02/01/2009~
-~01049~^~435~^3.^0^^~4~^~NC~^^^^^^^^^^~02/01/2009~
-~01049~^~601~^35.^6^0.^~1~^~A~^^^1^33.^36.^2^32.^37.^~2, 3~^~01/01/2015~
-~01050~^~208~^195.^0^^~4~^~NC~^^^^^^^^^^~02/01/2016~
-~01050~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~12/01/2002~
-~01050~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~12/01/2002~
-~01050~^~268~^815.^0^^~4~^~NC~^^^^^^^^^^~02/01/2016~
-~01050~^~301~^91.^3^1.^~1~^~A~^^^1^89.^93.^2^85.^96.^~2, 3~^~01/01/2015~
-~01050~^~304~^9.^3^0.^~1~^~A~^^^1^9.^10.^2^7.^11.^~2, 3~^~11/01/1976~
-~01050~^~305~^92.^3^5.^~1~^~A~^^^1^85.^102.^2^69.^114.^~2, 3~^~01/01/2015~
-~01050~^~306~^136.^3^17.^~1~^~A~^^^1^118.^172.^2^59.^213.^~2, 3~^~01/01/2015~
-~01050~^~307~^72.^3^4.^~1~^~A~^^^1^66.^82.^2^50.^93.^~2, 3~^~01/01/2015~
-~01050~^~318~^452.^0^^~4~^~NC~^^^^^^^^^^~02/01/2016~
-~01050~^~319~^117.^1^^~1~^~A~^^^^^^^^^^~02/01/2016~
-~01050~^~320~^120.^0^^~4~^~NC~^^^^^^^^^^~02/01/2016~
-~01050~^~321~^37.^0^^~4~^~BFFN~^~01001~^^^^^^^^^~12/01/2002~
-~01050~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~12/01/2002~
-~01050~^~324~^44.^1^^~1~^~A~^^^^^^^^^^~01/01/2015~
-~01050~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~12/01/2002~
-~01050~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~12/01/2002~
-~01050~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~12/01/2002~
-~01050~^~417~^2.^3^0.^~1~^^^^^^^^^^^~11/01/1976~
-~01050~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~
-~01050~^~432~^2.^3^0.^~1~^^^^^^^^^^^~02/01/2009~
-~01050~^~435~^2.^0^^~4~^~NC~^^^^^^^^^^~02/01/2009~
-~01050~^~601~^59.^3^0.^~1~^~A~^^^1^59.^60.^2^58.^59.^~2, 3~^~01/01/2015~
-~01052~^~208~^292.^0^^~4~^~NC~^^^^^^^^^^~02/01/2009~
-~01052~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2003~
-~01052~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2003~
-~01052~^~268~^1223.^0^^~4~^~NC~^^^^^^^^^^~02/01/2009~
-~01052~^~301~^69.^9^4.^~1~^^^^^^^^^^^~11/01/1976~
-~01052~^~304~^7.^6^0.^~1~^^^^^^^^^^^~11/01/1976~
-~01052~^~305~^61.^8^3.^~1~^^^^^^^^^^^~11/01/1976~
-~01052~^~306~^97.^8^7.^~1~^^^^^^^^^^^~11/01/1976~
-~01052~^~307~^34.^9^2.^~1~^^^^^^^^^^^~11/01/1976~
-~01052~^~318~^1013.^0^^~4~^~NC~^^^^^^^^^^~02/01/2009~
-~01052~^~319~^274.^0^^~4~^~T~^^^^^^^^^^~02/01/2009~
-~01052~^~320~^279.^0^^~4~^~NC~^^^^^^^^^^~02/01/2009~
-~01052~^~321~^60.^0^^~4~^~BFFN~^~01001~^^^^^^^^^~01/01/2003~
-~01052~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2003~
-~01052~^~324~^23.^0^^~4~^~BFFN~^~01211~^^^^^^^^^~02/01/2009~
-~01052~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2003~
-~01052~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2003~
-~01052~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2003~
-~01052~^~417~^4.^3^0.^~1~^^^^^^^^^^^~11/01/1976~
-~01052~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~
-~01052~^~432~^4.^3^0.^~1~^^^^^^^^^^^~02/01/2009~
-~01052~^~435~^4.^0^^~4~^~NC~^^^^^^^^^^~02/01/2009~
-~01052~^~601~^111.^0^^~1~^^^^^^^^^^^~11/01/1976~
-~01053~^~208~^340.^0^^~4~^~NC~^^^^^^^^^^~01/01/2015~
-~01053~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2001~
-~01053~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2001~
-~01053~^~268~^1424.^0^^~4~^~NC~^^^^^^^^^^~11/01/2016~
-~01053~^~301~^66.^9^0.^~1~^~A~^^^1^63.^69.^6^63.^67.^~2, 3~^~01/01/2015~
-~01053~^~304~^7.^9^0.^~1~^~A~^^^1^6.^7.^6^6.^7.^~2, 3~^~11/01/1976~
-~01053~^~305~^58.^9^0.^~1~^~A~^^^1^56.^62.^6^56.^60.^~2, 3~^~01/01/2015~
-~01053~^~306~^95.^9^1.^~1~^~A~^^^1^86.^101.^6^90.^98.^~2, 3~^~01/01/2015~
-~01053~^~307~^27.^9^1.^~1~^~A~^^^1^24.^33.^6^24.^29.^~2, 3~^~01/01/2015~
-~01053~^~318~^1470.^0^^~4~^~NC~^^^^^^^^^^~02/01/2009~
-~01053~^~319~^405.^0^^~4~^~T~^^^^^^^^^^~02/01/2009~
-~01053~^~320~^411.^0^^~4~^~NC~^^^^^^^^^^~02/01/2009~
-~01053~^~321~^72.^0^^~4~^~BFFN~^~01001~^^^^^^^^^~12/01/2002~
-~01053~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~12/01/2002~
-~01053~^~324~^63.^1^^~1~^~A~^^^^^^^^^^~01/01/2015~
-~01053~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~12/01/2002~
-~01053~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~12/01/2002~
-~01053~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~12/01/2002~
-~01053~^~417~^4.^0^^~1~^^^^^^^^^^^~11/01/1976~
-~01053~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~
-~01053~^~432~^4.^0^^~1~^^^^^^^^^^^~02/01/2009~
-~01053~^~435~^4.^0^^~4~^~NC~^^^^^^^^^^~02/01/2009~
-~01053~^~601~^113.^6^1.^~1~^~A~^^^1^108.^119.^3^107.^118.^~2, 3~^~01/01/2015~
-~01054~^~208~^257.^0^^~4~^~NC~^^^^^^^^^^~02/01/2009~
-~01054~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2003~
-~01054~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2003~
-~01054~^~268~^1077.^0^^~4~^~NC~^^^^^^^^^^~02/01/2009~
-~01054~^~301~^101.^3^10.^~1~^^^^^^^^^^^~11/01/1976~
-~01054~^~304~^11.^0^^~1~^^^^^^^^^^^~11/01/1976~
-~01054~^~305~^89.^3^15.^~1~^^^^^^^^^^^~11/01/1976~
-~01054~^~306~^147.^0^^~1~^^^^^^^^^^^~11/01/1976~
-~01054~^~307~^8.^0^^~4~^~O~^^^^^^^^^^~08/01/2011~
-~01054~^~318~^685.^0^^~4~^~NC~^^^^^^^^^^~02/01/2009~
-~01054~^~319~^184.^0^^~4~^~T~^^^^^^^^^^~02/01/2009~
-~01054~^~320~^188.^0^^~4~^~NC~^^^^^^^^^^~02/01/2009~
-~01054~^~321~^43.^0^^~4~^~BFFN~^~01001~^^^^^^^^^~01/01/2003~
-~01054~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2003~
-~01054~^~324~^16.^0^^~4~^~BFFN~^~01211~^^^^^^^^^~02/01/2009~
-~01054~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2003~
-~01054~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2003~
-~01054~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2003~
-~01054~^~417~^3.^0^^~4~^^^^^^^^^^^~11/01/1976~
-~01054~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~
-~01054~^~432~^3.^0^^~4~^^^^^^^^^^^~02/01/2009~
-~01054~^~435~^3.^0^^~4~^~NC~^^^^^^^^^^~02/01/2009~
-~01054~^~601~^76.^0^^~1~^^^^^^^^^^^~11/01/1976~
-~01055~^~208~^135.^0^^~4~^~NC~^^^^^^^^^^~02/01/2009~
-~01055~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2003~
-~01055~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2003~
-~01055~^~268~^563.^0^^~4~^~NC~^^^^^^^^^^~02/01/2009~
-~01055~^~301~^104.^0^^~1~^^^^^^^^^^^~11/01/1976~
-~01055~^~304~^10.^0^^~1~^^^^^^^^^^^~11/01/1976~
-~01055~^~305~^95.^0^^~1~^^^^^^^^^^^~11/01/1976~
-~01055~^~306~^129.^0^^~1~^^^^^^^^^^^~11/01/1976~
-~01055~^~307~^89.^0^^~4~^~O~^^^^^^^^^^~08/01/2011~
-~01055~^~318~^372.^0^^~4~^~NC~^^^^^^^^^^~02/01/2009~
-~01055~^~319~^100.^0^^~4~^~T~^^^^^^^^^^~02/01/2009~
-~01055~^~320~^102.^0^^~4~^~NC~^^^^^^^^^^~02/01/2009~
-~01055~^~321~^23.^0^^~4~^~BFFN~^~01001~^^^^^^^^^~01/01/2003~
-~01055~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2003~
-~01055~^~324~^9.^0^^~4~^~BFFN~^~01211~^^^^^^^^^~02/01/2009~
-~01055~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2003~
-~01055~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2003~
-~01055~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2003~
-~01055~^~417~^11.^0^^~1~^^^^^^^^^^^~11/01/1976~
-~01055~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~
-~01055~^~432~^11.^0^^~1~^^^^^^^^^^^~02/01/2009~
-~01055~^~435~^11.^0^^~4~^~NC~^^^^^^^^^^~02/01/2009~
-~01055~^~601~^39.^0^^~1~^^^^^^^^^^^~11/01/1976~
-~01056~^~208~^198.^0^^~4~^~NC~^^^^^^^^^^~02/01/2015~
-~01056~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~12/01/2002~
-~01056~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~12/01/2002~
-~01056~^~268~^830.^0^^~4~^~NC~^^^^^^^^^^~02/01/2015~
-~01056~^~301~^101.^10^0.^~1~^~A~^^^1^97.^108.^5^98.^103.^~2, 3~^~02/01/2015~
-~01056~^~304~^10.^10^0.^~1~^~A~^^^1^9.^10.^5^9.^9.^~2, 3~^~06/01/2008~
-~01056~^~305~^76.^10^0.^~1~^~A~^^^1^73.^81.^5^73.^78.^~2, 3~^~02/01/2015~
-~01056~^~306~^125.^10^1.^~1~^~A~^^^1^106.^134.^8^120.^129.^~2, 3~^~02/01/2015~
-~01056~^~307~^31.^10^0.^~1~^~A~^^^1^27.^37.^7^29.^33.^~2, 3~^~02/01/2015~
-~01056~^~318~^447.^0^^~1~^~AS~^^^^^^^^^^~02/01/2015~
-~01056~^~319~^121.^4^11.^~1~^~A~^^^1^98.^171.^2^61.^180.^~2, 3~^~02/01/2015~
-~01056~^~320~^124.^0^^~1~^~AS~^^^^^^^^^^~02/01/2015~
-~01056~^~321~^25.^4^1.^~1~^~A~^^^1^21.^32.^1^11.^38.^~2, 3~^~02/01/2015~
-~01056~^~322~^0.^4^0.^~1~^~A~^^^1^0.^1.^1^0.^0.^~1, 2, 3~^~06/01/2008~
-~01056~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2015~
-~01056~^~334~^1.^4^0.^~1~^~A~^^^1^0.^1.^2^0.^0.^~2, 3~^~02/01/2015~
-~01056~^~337~^0.^4^0.^~1~^~A~^^^1^0.^0.^^^^~1, 2, 3~^~06/01/2008~
-~01056~^~338~^4.^4^0.^~1~^~A~^^^1^2.^5.^2^1.^6.^~2, 3~^~02/01/2015~
-~01056~^~417~^6.^2^^~1~^~A~^^^1^4.^7.^^^^~1~^~02/01/2015~
-~01056~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~
-~01056~^~432~^6.^2^^~1~^~A~^^^^^^^^^^~02/01/2015~
-~01056~^~435~^6.^0^^~4~^~NC~^^^^^^^^^^~02/01/2015~
-~01056~^~601~^59.^6^0.^~1~^~A~^^^1^53.^62.^2^55.^61.^~2, 3~^~02/01/2015~
-~01057~^~208~^88.^0^^~4~^~NC~^^^^^^^^^^~02/01/2009~
-~01057~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~
-~01057~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~
-~01057~^~268~^367.^0^^~4~^~NC~^^^^^^^^^^~02/01/2009~
-~01057~^~301~^130.^7^4.^~1~^^^^^^^^^^^~11/01/1976~
-~01057~^~304~^19.^2^^~1~^^^^^^^^^^^~11/01/1976~
-~01057~^~305~^109.^6^4.^~1~^^^^^^^^^^^~11/01/1976~
-~01057~^~306~^165.^6^9.^~1~^^^^^^^^^^^~11/01/1976~
-~01057~^~307~^54.^6^2.^~1~^^^^^^^^^^^~11/01/1976~
-~01057~^~318~^206.^0^^~4~^~NC~^^^^^^^^^^~02/01/2009~
-~01057~^~319~^58.^0^^~4~^~RC~^^^^^^^^^^~02/01/2009~
-~01057~^~320~^59.^0^^~4~^~NC~^^^^^^^^^^~02/01/2009~
-~01057~^~321~^7.^0^^~4~^~RC~^^^^^^^^^^~02/01/2009~
-~01057~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2007~
-~01057~^~324~^49.^0^^~4~^~RC~^^^^^^^^^^~02/01/2009~
-~01057~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~
-~01057~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2007~
-~01057~^~338~^54.^0^^~4~^~RC~^^^^^^^^^^~03/01/2011~
-~01057~^~417~^1.^3^0.^~1~^^^^^^^^^^^~11/01/1976~
-~01057~^~431~^0.^0^^~4~^~RC~^^^^^^^^^^~02/01/2009~
-~01057~^~432~^1.^3^0.^~1~^^^^^^^^^^^~02/01/2009~
-~01057~^~435~^1.^0^^~4~^~NC~^^^^^^^^^^~02/01/2009~
-~01057~^~601~^59.^0^^~1~^^^^^^^^^^^~11/01/1976~
-~01058~^~208~^178.^0^^~4~^~NC~^^^^^^^^^^~03/01/2007~
-~01058~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2003~
-~01058~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2003~
-~01058~^~268~^743.^0^^~4~^~NC~^^^^^^^^^^~03/01/2007~
-~01058~^~301~^113.^0^^~1~^^^^^^^^^^^~11/01/1976~
-~01058~^~304~^10.^0^^~1~^^^^^^^^^^^~11/01/1976~
-~01058~^~305~^87.^0^^~1~^^^^^^^^^^^~11/01/1976~
-~01058~^~306~^162.^0^^~1~^^^^^^^^^^^~11/01/1976~
-~01058~^~307~^48.^0^^~1~^^^^^^^^^^^~11/01/1976~
-~01058~^~318~^10.^0^^~4~^~NC~^^^^^^^^^^~03/01/2007~
-~01058~^~319~^3.^0^^~4~^~NC~^^^^^^^^^^~03/01/2007~
-~01058~^~320~^3.^0^^~4~^~NC~^^^^^^^^^^~03/01/2007~
-~01058~^~321~^0.^0^^~4~^~BFFN~^~04034~^^^^^^^^^~01/01/2003~
-~01058~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2003~
-~01058~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~
-~01058~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2003~
-~01058~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2003~
-~01058~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2003~
-~01058~^~417~^12.^0^^~1~^^^^^^^^^^^~11/01/1976~
-~01058~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~
-~01058~^~432~^12.^0^^~1~^^^^^^^^^^^~03/01/2007~
-~01058~^~435~^12.^0^^~4~^~NC~^^^^^^^^^^~03/01/2007~
-~01058~^~601~^5.^0^^~1~^^^^^^^^^^^~11/01/1976~
-~01058~^~636~^15.^0^^~4~^^^^^^^^^^^~11/01/1976~
-~01059~^~208~^63.^0^^~4~^~NC~^^^^^^^^^^~11/01/1976~
-~01059~^~268~^264.^0^^~4~^^^^^^^^^^^
-~01059~^~301~^128.^0^^~1~^^^^^^^^^^^~11/01/1976~
-~01059~^~304~^13.^0^^~1~^^^^^^^^^^^~11/01/1976~
-~01059~^~305~^97.^0^^~1~^^^^^^^^^^^~11/01/1976~
-~01059~^~306~^139.^0^^~1~^^^^^^^^^^^~11/01/1976~
-~01059~^~307~^57.^0^^~1~^^^^^^^^^^^~11/01/1976~
-~01059~^~318~^7.^0^^~1~^^^^^^^^^^^~11/01/1976~
-~01059~^~319~^2.^0^^~1~^^^^^^^^^^^~06/01/2002~
-~01059~^~320~^2.^0^^~1~^^^^^^^^^^^~06/01/2002~
-~01059~^~417~^5.^0^^~1~^^^^^^^^^^^~11/01/1976~
-~01059~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~
-~01059~^~432~^5.^0^^~1~^^^^^^^^^^^~11/01/1976~
-~01059~^~435~^5.^0^^~4~^~NC~^^^^^^^^^^~01/01/2001~
-~01059~^~601~^2.^0^^~1~^^^^^^^^^^^~11/01/1976~
-~01059~^~636~^6.^0^^~4~^^^^^^^^^^^~11/01/1976~
-~01060~^~208~^63.^0^^~4~^~NC~^^^^^^^^^^~11/01/1976~
-~01060~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2003~
-~01060~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2003~
-~01060~^~268~^262.^0^^~4~^^^^^^^^^^^~03/01/2007~
-~01060~^~301~^128.^7^5.^~1~^^^^^^^^^^^~11/01/1976~
-~01060~^~304~^13.^1^^~1~^^^^^^^^^^^~11/01/1976~
-~01060~^~305~^97.^6^5.^~1~^^^^^^^^^^^~11/01/1976~
-~01060~^~306~^139.^2^^~1~^^^^^^^^^^^~11/01/1976~
-~01060~^~307~^57.^3^3.^~1~^^^^^^^^^^^~11/01/1976~
-~01060~^~318~^7.^0^^~4~^~NC~^^^^^^^^^^~03/01/2007~
-~01060~^~319~^2.^0^^~4~^~NC~^^^^^^^^^^~03/01/2007~
-~01060~^~320~^2.^0^^~4~^~NC~^^^^^^^^^^~03/01/2007~
-~01060~^~321~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2003~
-~01060~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2003~
-~01060~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~
-~01060~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2003~
-~01060~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2003~
-~01060~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2003~
-~01060~^~417~^5.^0^^~1~^^^^^^^^^^^~11/01/1976~
-~01060~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~
-~01060~^~432~^5.^0^^~1~^^^^^^^^^^^~03/01/2007~
-~01060~^~435~^5.^0^^~4~^~NC~^^^^^^^^^^~03/01/2007~
-~01060~^~601~^2.^0^^~1~^^^^^^^^^^^~11/01/1976~
-~01060~^~636~^3.^0^^~4~^^^^^^^^^^^~11/01/1976~
-~01061~^~208~^126.^0^^~4~^~NC~^^^^^^^^^^~05/01/2013~
-~01061~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2013~
-~01061~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2013~
-~01061~^~268~^529.^0^^~4~^~NC~^^^^^^^^^^~05/01/2013~
-~01061~^~301~^789.^0^^~8~^~LC~^^^^^^^^^^~05/01/2013~
-~01061~^~304~^115.^0^^~4~^~FLC~^^^^^^^^^^~05/01/2013~
-~01061~^~305~^316.^0^^~4~^~FLC~^^^^^^^^^^~05/01/2013~
-~01061~^~306~^393.^0^^~4~^~FLC~^^^^^^^^^^~05/01/2013~
-~01061~^~307~^1316.^0^^~8~^~LC~^^^^^^^^^^~05/01/2013~
-~01061~^~318~^189.^0^^~4~^~NC~^^^^^^^^^^~05/01/2013~
-~01061~^~319~^55.^0^^~4~^~BFZN~^~43275~^^^^^^^^^~05/01/2013~
-~01061~^~320~^56.^0^^~4~^~NC~^^^^^^^^^^~05/01/2013~
-~01061~^~321~^3.^0^^~4~^~FLC~^^^^^^^^^^~05/01/2013~
-~01061~^~322~^0.^0^^~4~^~FLC~^^^^^^^^^^~05/01/2013~
-~01061~^~324~^5.^0^^~4~^~BFZN~^~43275~^^^^^^^^^~05/01/2013~
-~01061~^~334~^0.^0^^~4~^~FLC~^^^^^^^^^^~05/01/2013~
-~01061~^~337~^0.^0^^~4~^~FLC~^^^^^^^^^^~05/01/2013~
-~01061~^~338~^0.^0^^~4~^~FLC~^^^^^^^^^^~05/01/2013~
-~01061~^~417~^9.^0^^~4~^~BFZN~^~43275~^^^^^^^^^~05/01/2013~
-~01061~^~431~^0.^0^^~4~^~BFZN~^~43275~^^^^^^^^^~05/01/2013~
-~01061~^~432~^9.^0^^~4~^~BFZN~^~43275~^^^^^^^^^~05/01/2013~
-~01061~^~435~^9.^0^^~4~^~NC~^^^^^^^^^^~05/01/2013~
-~01061~^~601~^26.^0^^~8~^~LC~^^^^^^^^^^~05/01/2013~
-~01064~^~208~^93.^0^^~4~^~NC~^^^^^^^^^^~07/01/2016~
-~01064~^~268~^388.^0^^~4~^~NC~^^^^^^^^^^~07/01/2016~
-~01064~^~301~^87.^1^^~1~^~A~^^^^^^^^^^~07/01/2016~
-~01064~^~307~^40.^1^^~1~^~A~^^^^^^^^^^~07/01/2016~
-~01064~^~318~^153.^0^^~1~^~AS~^^^^^^^^^^~07/01/2016~
-~01064~^~319~^20.^1^^~1~^~A~^^^^^^^^^^~07/01/2016~
-~01064~^~320~^25.^0^^~1~^~AS~^^^^^^^^^^~07/01/2016~
-~01064~^~321~^51.^1^^~1~^~A~^^^^^^^^^^~07/01/2016~
-~01064~^~601~^4.^1^^~1~^~A~^^^^^^^^^^~07/01/2016~
-~01065~^~208~^92.^0^^~4~^~NC~^^^^^^^^^^~10/01/2016~
-~01065~^~268~^385.^0^^~4~^~NC~^^^^^^^^^^~10/01/2016~
-~01065~^~301~^93.^1^^~1~^~A~^^^^^^^^^^~07/01/2016~
-~01065~^~307~^33.^1^^~1~^~A~^^^^^^^^^^~07/01/2016~
-~01065~^~318~^62.^0^^~1~^~AS~^^^^^^^^^^~07/01/2016~
-~01065~^~319~^19.^1^^~1~^~A~^^^^^^^^^^~07/01/2016~
-~01065~^~320~^19.^0^^~1~^~AS~^^^^^^^^^^~07/01/2016~
-~01065~^~321~^0.^1^^~1~^~A~^^^^^^^^^~1~^~07/01/2016~
-~01067~^~208~^136.^0^^~4~^~NC~^^^^^^^^^^~11/01/1976~
-~01067~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~12/01/2002~
-~01067~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~12/01/2002~
-~01067~^~268~^568.^0^^~4~^^^^^^^^^^^~03/01/2007~
-~01067~^~301~^9.^8^2.^~1~^^^^^^^^^^^~11/01/1976~
-~01067~^~304~^0.^3^0.^~1~^^^^^^^^^^^~11/01/1976~
-~01067~^~305~^64.^8^13.^~1~^^^^^^^^^^^~11/01/1976~
-~01067~^~306~^191.^6^39.^~1~^^^^^^^^^^^~11/01/1976~
-~01067~^~307~^67.^0^^~4~^~O~^^^^^^^^^^~06/01/2013~
-~01067~^~318~^15.^0^^~4~^~NC~^^^^^^^^^^~03/01/2007~
-~01067~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2002~
-~01067~^~320~^1.^0^^~4~^~NC~^^^^^^^^^^~03/01/2007~
-~01067~^~321~^9.^0^^~4~^~NR~^^^^^^^^^^~12/01/2002~
-~01067~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~12/01/2002~
-~01067~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~
-~01067~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~12/01/2002~
-~01067~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~12/01/2002~
-~01067~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~12/01/2002~
-~01067~^~417~^0.^0^^~1~^^^^^^^^^^^~11/01/1976~
-~01067~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~
-~01067~^~432~^0.^0^^~1~^^^^^^^^^^^~03/01/2007~
-~01067~^~435~^0.^0^^~4~^~NC~^^^^^^^^^^~03/01/2007~
-~01067~^~601~^0.^0^^~1~^^^^^^^^^^^~11/01/1976~
-~01067~^~636~^13.^0^^~4~^^^^^^^^^^^~11/01/1976~
-~01068~^~208~^136.^0^^~4~^~NC~^^^^^^^^^^~11/01/1976~
-~01068~^~268~^571.^0^^~4~^^^^^^^^^^^
-~01068~^~301~^9.^8^2.^~1~^^^^^^^^^^^~11/01/1976~
-~01068~^~304~^0.^3^0.^~1~^^^^^^^^^^^~11/01/1976~
-~01068~^~305~^64.^8^13.^~1~^^^^^^^^^^^~11/01/1976~
-~01068~^~306~^191.^6^39.^~1~^^^^^^^^^^^~11/01/1976~
-~01068~^~307~^79.^8^17.^~1~^^^^^^^^^^^~11/01/1976~
-~01068~^~318~^89.^5^32.^~1~^^^^^^^^^^^~11/01/1976~
-~01068~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2002~
-~01068~^~320~^4.^5^1.^~1~^^^^^^^^^^^~06/01/2002~
-~01068~^~417~^0.^0^^~1~^^^^^^^^^^^~11/01/1976~
-~01068~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~
-~01068~^~432~^0.^0^^~1~^^^^^^^^^^^~11/01/1976~
-~01068~^~435~^0.^0^^~4~^~NC~^^^^^^^^^^~01/01/2001~
-~01068~^~601~^0.^0^^~1~^^^^^^^^^^^~11/01/1976~
-~01068~^~636~^9.^0^^~4~^^^^^^^^^^^~11/01/1976~
-~01069~^~208~^529.^0^^~4~^~NC~^^^^^^^^^^~02/01/2015~
-~01069~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~12/01/2002~
-~01069~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~12/01/2002~
-~01069~^~268~^2215.^0^^~4~^~NC~^^^^^^^^^^~02/01/2015~
-~01069~^~301~^2.^11^0.^~1~^~A~^^^1^1.^5.^4^1.^3.^~1, 2, 3~^~02/01/2015~
-~01069~^~304~^1.^12^0.^~1~^~A~^^^1^1.^2.^7^1.^1.^~1, 2, 3~^~02/01/2015~
-~01069~^~305~^288.^11^11.^~1~^~A~^^^1^225.^345.^4^254.^320.^~2, 3~^~02/01/2015~
-~01069~^~306~^669.^11^31.^~1~^~A~^^^1^519.^826.^4^581.^757.^~2, 3~^~02/01/2015~
-~01069~^~307~^124.^12^8.^~1~^~A~^^^1^91.^188.^5^102.^145.^~2, 3~^~02/01/2015~
-~01069~^~318~^0.^0^^~1~^~AS~^^^^^^^^^^~02/01/2015~
-~01069~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2002~
-~01069~^~320~^0.^0^^~1~^~AS~^^^^^^^^^^~02/01/2015~
-~01069~^~321~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2015~
-~01069~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~12/01/2002~
-~01069~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~
-~01069~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~12/01/2002~
-~01069~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~12/01/2002~
-~01069~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~12/01/2002~
-~01069~^~417~^0.^0^^~1~^^^^^^^^^^^~11/01/1976~
-~01069~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~
-~01069~^~432~^0.^0^^~1~^^^^^^^^^^^~12/01/2006~
-~01069~^~435~^0.^0^^~4~^~NC~^^^^^^^^^^~12/01/2006~
-~01069~^~601~^0.^0^^~1~^^^^^^^^^^^~11/01/1976~
-~01069~^~636~^32.^0^^~4~^^^^^^^^^^^~11/01/1976~
-~01070~^~208~^577.^0^^~4~^~NC~^^^^^^^^^^~11/01/1976~
-~01070~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2003~
-~01070~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2003~
-~01070~^~268~^2415.^0^^~4~^^^^^^^^^^^~02/01/2009~
-~01070~^~301~^17.^3^2.^~1~^^^^^^^^^^^~11/01/1976~
-~01070~^~304~^7.^0^^~4~^^^^^^^^^^^~11/01/1976~
-~01070~^~305~^74.^3^34.^~1~^^^^^^^^^^^~11/01/1976~
-~01070~^~306~^166.^2^^~1~^^^^^^^^^^^~11/01/1976~
-~01070~^~307~^122.^4^33.^~1~^^^^^^^^^^^~11/01/1976~
-~01070~^~318~^0.^0^^~1~^~AS~^^^^^^^^^^~02/01/2009~
-~01070~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2002~
-~01070~^~320~^0.^0^^~1~^~AS~^^^^^^^^^^~02/01/2009~
-~01070~^~321~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~
-~01070~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2003~
-~01070~^~324~^0.^0^^~4~^~BFFN~^~04513~^^^^^^^^^~02/01/2009~
-~01070~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2003~
-~01070~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2003~
-~01070~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2003~
-~01070~^~417~^0.^0^^~1~^^^^^^^^^^^~11/01/1976~
-~01070~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~
-~01070~^~432~^0.^0^^~1~^^^^^^^^^^^~02/01/2009~
-~01070~^~435~^0.^0^^~4~^~NC~^^^^^^^^^^~02/01/2009~
-~01070~^~601~^0.^0^^~1~^^^^^^^^^^^~11/01/1976~
-~01070~^~636~^36.^0^^~4~^^^^^^^^^^^~11/01/1976~
-~01071~^~208~^194.^0^^~6~^~RPI~^^^^^^^^^^~05/01/2014~
-~01071~^~262~^0.^0^^~6~^~RPI~^^^^^^^^^^~01/01/2003~
-~01071~^~263~^0.^0^^~6~^~RPI~^^^^^^^^^^~01/01/2003~
-~01071~^~268~^811.^0^^~6~^~RPI~^^^^^^^^^^~05/01/2014~
-~01071~^~301~^90.^0^^~1~^^^^^^^^^^^~11/01/1976~
-~01071~^~304~^10.^0^^~1~^^^^^^^^^^^~11/01/1976~
-~01071~^~305~^86.^0^^~1~^^^^^^^^^^^~11/01/1976~
-~01071~^~306~^151.^0^^~1~^^^^^^^^^^^~11/01/1976~
-~01071~^~307~^66.^0^^~1~^^^^^^^^^^^~11/01/1976~
-~01071~^~318~^120.^0^^~4~^~NC~^^^^^^^^^^~02/01/2009~
-~01071~^~319~^34.^0^^~6~^~RPI~^^^^^^^^^^~02/01/2009~
-~01071~^~320~^34.^0^^~4~^~NC~^^^^^^^^^^~02/01/2009~
-~01071~^~321~^5.^0^^~6~^~RPI~^^^^^^^^^^~02/01/2009~
-~01071~^~322~^0.^0^^~6~^~RPI~^^^^^^^^^^~01/01/2003~
-~01071~^~324~^38.^0^^~6~^~RPI~^^^^^^^^^^~02/01/2009~
-~01071~^~334~^0.^0^^~6~^~RPI~^^^^^^^^^^~01/01/2003~
-~01071~^~337~^0.^0^^~6~^~RPI~^^^^^^^^^^~01/01/2003~
-~01071~^~338~^0.^0^^~6~^~RPI~^^^^^^^^^^~01/01/2003~
-~01071~^~417~^4.^0^^~1~^^^^^^^^^^^~11/01/1976~
-~01071~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~
-~01071~^~432~^4.^0^^~1~^^^^^^^^^^^~02/01/2009~
-~01071~^~435~^4.^0^^~4~^~NC~^^^^^^^^^^~02/01/2009~
-~01071~^~601~^10.^0^^~1~^^^^^^^^^^^~11/01/1976~
-~01071~^~636~^0.^1^^~1~^^^^^^^^^^^~11/01/1976~
-~01072~^~208~^264.^0^^~4~^~NC~^^^^^^^^^^~11/01/1976~
-~01072~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2003~
-~01072~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2003~
-~01072~^~268~^1103.^0^^~4~^^^^^^^^^^^~03/01/2007~
-~01072~^~301~^5.^5^1.^~1~^^^^^^^^^^^~11/01/1976~
-~01072~^~304~^1.^1^^~1~^^^^^^^^^^^~11/01/1976~
-~01072~^~305~^18.^4^7.^~1~^^^^^^^^^^^~11/01/1976~
-~01072~^~306~^19.^3^13.^~1~^^^^^^^^^^^~11/01/1976~
-~01072~^~307~^62.^5^14.^~1~^^^^^^^^^^^~11/01/1976~
-~01072~^~318~^78.^0^^~4~^~NC~^^^^^^^^^^~03/01/2007~
-~01072~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2002~
-~01072~^~320~^4.^0^^~4~^~NC~^^^^^^^^^^~03/01/2007~
-~01072~^~321~^47.^0^^~4~^~NR~^^^^^^^^^^~01/01/2003~
-~01072~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2003~
-~01072~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~
-~01072~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2003~
-~01072~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2003~
-~01072~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2003~
-~01072~^~417~^0.^0^^~1~^^^^^^^^^^^~11/01/1976~
-~01072~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~
-~01072~^~432~^0.^0^^~1~^^^^^^^^^^^~03/01/2007~
-~01072~^~435~^0.^0^^~4~^~NC~^^^^^^^^^^~03/01/2007~
-~01072~^~601~^0.^1^^~1~^^^^^^^^^^^~11/01/1976~
-~01072~^~636~^20.^0^^~4~^^^^^^^^^^^~11/01/1976~
-~01073~^~208~^318.^0^^~4~^~NC~^^^^^^^^^^~11/01/1976~
-~01073~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2003~
-~01073~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2003~
-~01073~^~268~^1332.^0^^~4~^^^^^^^^^^^~03/01/2007~
-~01073~^~301~^6.^13^0.^~1~^^^^^^^^^^^~11/01/1976~
-~01073~^~304~^2.^10^0.^~1~^^^^^^^^^^^~11/01/1976~
-~01073~^~305~^8.^13^0.^~1~^^^^^^^^^^^~11/01/1976~
-~01073~^~306~^18.^10^1.^~1~^^^^^^^^^^^~11/01/1976~
-~01073~^~307~^25.^14^4.^~1~^^^^^^^^^^^~11/01/1976~
-~01073~^~318~^143.^0^^~4~^~NC~^^^^^^^^^^~03/01/2007~
-~01073~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2002~
-~01073~^~320~^7.^0^^~4~^~NC~^^^^^^^^^^~03/01/2007~
-~01073~^~321~^86.^0^^~4~^~NR~^^^^^^^^^^~01/01/2003~
-~01073~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2003~
-~01073~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~
-~01073~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2003~
-~01073~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2003~
-~01073~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2003~
-~01073~^~417~^0.^0^^~1~^^^^^^^^^^^~11/01/1976~
-~01073~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~
-~01073~^~432~^0.^0^^~1~^^^^^^^^^^^~03/01/2007~
-~01073~^~435~^0.^0^^~4~^~NC~^^^^^^^^^^~03/01/2007~
-~01073~^~601~^0.^0^^~1~^^^^^^^^^^^~11/01/1976~
-~01073~^~636~^23.^0^^~4~^^^^^^^^^^^~11/01/1976~
-~01074~^~208~^208.^0^^~4~^~NC~^^^^^^^^^^~11/01/1976~
-~01074~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2003~
-~01074~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2003~
-~01074~^~268~^872.^0^^~4~^^^^^^^^^^^~03/01/2007~
-~01074~^~301~^3.^2^^~1~^^^^^^^^^^^~11/01/1976~
-~01074~^~304~^6.^0^^~4~^^^^^^^^^^^~11/01/1976~
-~01074~^~305~^45.^2^^~1~^^^^^^^^^^^~11/01/1976~
-~01074~^~306~^161.^2^^~1~^^^^^^^^^^^~11/01/1976~
-~01074~^~307~^102.^3^28.^~1~^^^^^^^^^^^~11/01/1976~
-~01074~^~318~^0.^0^^~1~^~AS~^^^^^^^^^^~03/01/2007~
-~01074~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2002~
-~01074~^~320~^0.^0^^~1~^~AS~^^^^^^^^^^~03/01/2007~
-~01074~^~321~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2003~
-~01074~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2003~
-~01074~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~
-~01074~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2003~
-~01074~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2003~
-~01074~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2003~
-~01074~^~417~^0.^0^^~1~^^^^^^^^^^^~11/01/1976~
-~01074~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~
-~01074~^~432~^0.^0^^~1~^^^^^^^^^^^~03/01/2007~
-~01074~^~435~^0.^0^^~4~^~NC~^^^^^^^^^^~03/01/2007~
-~01074~^~601~^0.^0^^~1~^^^^^^^^^^^~11/01/1976~
-~01074~^~636~^18.^0^^~4~^^^^^^^^^^^~11/01/1976~
-~01076~^~208~^61.^0^^~4~^~NC~^^^^^^^^^^~11/01/1976~
-~01076~^~268~^257.^0^^~4~^^^^^^^^^^^
-~01076~^~301~^33.^0^^~1~^^^^^^^^^^^~11/01/1976~
-~01076~^~304~^6.^0^^~1~^^^^^^^^^^^~11/01/1976~
-~01076~^~305~^74.^0^^~1~^^^^^^^^^^^~11/01/1976~
-~01076~^~306~^114.^0^^~1~^^^^^^^^^^^~11/01/1976~
-~01076~^~307~^78.^0^^~1~^^^^^^^^^^^~11/01/1976~
-~01076~^~318~^0.^0^^~1~^^^^^^^^^^^~11/01/1976~
-~01076~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2002~
-~01076~^~320~^0.^0^^~1~^^^^^^^^^^^~06/01/2002~
-~01076~^~417~^0.^0^^~1~^^^^^^^^^^^~11/01/1976~
-~01076~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~
-~01076~^~432~^0.^0^^~1~^^^^^^^^^^^~11/01/1976~
-~01076~^~435~^0.^0^^~4~^~NC~^^^^^^^^^^~01/01/2001~
-~01076~^~601~^0.^0^^~1~^^^^^^^^^^^~11/01/1976~
-~01076~^~636~^3.^0^^~4~^^^^^^^^^^^~11/01/1976~
-~01077~^~208~^61.^0^^~4~^~NC~^^^^^^^^^^~08/01/2010~
-~01077~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2001~
-~01077~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2001~
-~01077~^~268~^254.^0^^~4~^~NC~^^^^^^^^^^~11/01/2011~
-~01077~^~301~^113.^16^1.^~1~^~A~^^^1^112.^116.^11^108.^116.^~2, 3~^~11/01/2008~
-~01077~^~304~^10.^42^0.^~1~^~A~^^^9^7.^12.^6^9.^10.^~2, 3~^~11/01/2008~
-~01077~^~305~^84.^42^1.^~1~^~A~^^^9^59.^95.^8^81.^86.^~2, 3~^~11/01/2008~
-~01077~^~306~^132.^41^1.^~1~^~A~^^^9^106.^163.^15^127.^136.^~2, 3~^~11/01/2008~
-~01077~^~307~^43.^42^0.^~1~^~A~^^^9^26.^58.^17^41.^43.^~2, 3~^~11/01/2008~
-~01077~^~318~^162.^0^^~1~^~AS~^^^^^^^^^^~11/01/2008~
-~01077~^~319~^45.^4^1.^~1~^~A~^^^^^^^^^^~11/01/2008~
-~01077~^~320~^46.^0^^~1~^~AS~^^^^^^^^^^~01/01/2009~
-~01077~^~321~^7.^10^0.^~1~^~A~^^^3^2.^9.^6^5.^8.^~2, 3~^~11/01/2008~
-~01077~^~322~^0.^10^0.^~1~^~A~^^^3^0.^0.^^^^~1, 2, 3~^~11/01/2008~
-~01077~^~324~^51.^24^3.^~1~^~A~^^^4^8.^82.^13^43.^58.^~2, 3~^~01/01/2009~
-~01077~^~334~^0.^10^0.^~1~^~A~^^^3^0.^0.^^^^~1, 2, 3~^~11/01/2008~
-~01077~^~337~^0.^6^0.^~1~^~A~^^^2^0.^0.^^^^~1, 2, 3~^~11/01/2002~
-~01077~^~338~^0.^6^0.^~1~^~A~^^^2^0.^0.^^^^~1, 2, 3~^~11/01/2002~
-~01077~^~417~^5.^8^0.^~1~^^^^^^^^^^^~08/01/2010~
-~01077~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~
-~01077~^~432~^5.^8^0.^~1~^^^^^^^^^^^~08/01/2010~
-~01077~^~435~^5.^0^^~4~^~NC~^^^^^^^^^^~08/01/2010~
-~01077~^~601~^10.^12^0.^~1~^~A~^^^1^6.^13.^11^9.^11.^~2, 3~^~03/01/2003~
-~01078~^~208~^64.^0^^~4~^~NC~^^^^^^^^^^~11/01/1976~
-~01078~^~268~^268.^0^^~4~^^^^^^^^^^^
-~01078~^~301~^119.^0^^~1~^^^^^^^^^^^~11/01/1976~
-~01078~^~304~^13.^0^^~1~^^^^^^^^^^^~11/01/1976~
-~01078~^~305~^93.^0^^~1~^^^^^^^^^^^~11/01/1976~
-~01078~^~306~^151.^0^^~1~^^^^^^^^^^^~11/01/1976~
-~01078~^~307~^49.^0^^~1~^^^^^^^^^^^~11/01/1976~
-~01078~^~318~^138.^0^^~1~^^^^^^^^^^^~11/01/1976~
-~01078~^~319~^31.^0^^~4~^~NC~^^^^^^^^^^~06/01/2002~
-~01078~^~320~^33.^0^^~4~^~NC~^^^^^^^^^^~06/01/2002~
-~01078~^~417~^5.^0^^~1~^^^^^^^^^^^~11/01/1976~
-~01078~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~
-~01078~^~432~^5.^0^^~1~^^^^^^^^^^^~11/01/1976~
-~01078~^~435~^5.^0^^~4~^~NC~^^^^^^^^^^~01/01/2001~
-~01078~^~601~^14.^0^^~1~^^^^^^^^^^^~11/01/1976~
-~01078~^~636~^0.^0^^~1~^^^^^^^^^^^~11/01/1976~
-~01079~^~208~^50.^0^^~4~^~NC~^^^^^^^^^^~08/01/2010~
-~01079~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2001~
-~01079~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2001~
-~01079~^~268~^210.^0^^~4~^~NC~^^^^^^^^^^~08/01/2010~
-~01079~^~301~^120.^4^0.^~1~^~A~^^^4^^^^^^^~12/01/2008~
-~01079~^~304~^11.^31^0.^~1~^~A~^^^9^10.^13.^11^11.^11.^~2, 3~^~12/01/2008~
-~01079~^~305~^92.^28^0.^~1~^~A~^^^9^82.^98.^7^90.^92.^~2, 3~^~12/01/2008~
-~01079~^~306~^140.^31^2.^~1~^~A~^^^9^103.^172.^15^135.^144.^~2, 3~^~12/01/2008~
-~01079~^~307~^47.^31^0.^~1~^~A~^^^9^36.^69.^14^44.^48.^~2, 3~^~12/01/2008~
-~01079~^~318~^190.^0^^~4~^~NC~^^^^^^^^^^~08/01/2010~
-~01079~^~319~^55.^0^^~4~^~T~^^^^^^^^^^~05/01/2009~
-~01079~^~320~^55.^0^^~4~^~NC~^^^^^^^^^^~08/01/2010~
-~01079~^~321~^4.^0^^~4~^~BFFN~^~01077~^^^^^^^^^~12/01/2008~
-~01079~^~322~^0.^0^^~4~^~BFFN~^~01077~^^^^^^^^^~12/01/2002~
-~01079~^~324~^49.^24^2.^~1~^~A~^^^4^0.^64.^10^42.^54.^~1, 2, 3~^~05/01/2009~
-~01079~^~334~^0.^0^^~4~^~BFFN~^~01077~^^^^^^^^^~12/01/2002~
-~01079~^~337~^0.^0^^~4~^~BFFN~^~01077~^^^^^^^^^~12/01/2002~
-~01079~^~338~^0.^0^^~4~^~BFFN~^~01077~^^^^^^^^^~12/01/2002~
-~01079~^~417~^5.^12^0.^~1~^~A~^^^1^4.^5.^11^4.^4.^~2, 3~^~12/01/2002~
-~01079~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~
-~01079~^~432~^5.^12^0.^~1~^~A~^^^1^4.^5.^11^4.^4.^^~08/01/2010~
-~01079~^~435~^5.^0^^~4~^~NC~^^^^^^^^^^~08/01/2010~
-~01079~^~601~^8.^5^0.^~1~^~A~^^^2^8.^9.^3^7.^8.^~2, 3~^~12/01/2002~
-~01079~^~638~^0.^4^0.^~1~^~A~^^^1^0.^0.^^^^~1, 2, 3~^~12/01/2002~
-~01079~^~639~^0.^4^0.^~1~^~A~^^^1^0.^0.^^^^~1, 2, 3~^~12/01/2002~
-~01079~^~641~^0.^4^0.^~1~^~A~^^^1^0.^0.^^^^~1, 2, 3~^~12/01/2002~
-~01080~^~208~^51.^0^^~4~^~NC~^^^^^^^^^^~11/01/1976~
-~01080~^~268~^213.^0^^~4~^^^^^^^^^^^~03/01/2009~
-~01080~^~301~^128.^0^^~1~^^^^^^^^^^^~11/01/1976~
-~01080~^~304~^14.^0^^~1~^^^^^^^^^^^~11/01/1976~
-~01080~^~305~^100.^0^^~1~^^^^^^^^^^^~11/01/1976~
-~01080~^~306~^162.^0^^~1~^^^^^^^^^^^~11/01/1976~
-~01080~^~307~^52.^0^^~1~^^^^^^^^^^^~11/01/1976~
-~01080~^~318~^204.^0^^~1~^^^^^^^^^^^~11/01/1976~
-~01080~^~319~^55.^0^^~4~^~NC~^^^^^^^^^^~06/01/2002~
-~01080~^~320~^56.^0^^~4~^~NC~^^^^^^^^^^~06/01/2002~
-~01080~^~324~^40.^0^^~4~^~S~^^^^^^^^^^~02/01/2001~
-~01080~^~417~^5.^0^^~1~^^^^^^^^^^^~11/01/1976~
-~01080~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~
-~01080~^~432~^5.^0^^~1~^^^^^^^^^^^~11/01/1976~
-~01080~^~435~^5.^0^^~4~^~NC~^^^^^^^^^^~03/01/2009~
-~01080~^~601~^8.^0^^~1~^^^^^^^^^^^~11/01/1976~
-~01081~^~208~^56.^0^^~4~^~NC~^^^^^^^^^^~11/01/1976~
-~01081~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~12/01/2002~
-~01081~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~12/01/2002~
-~01081~^~268~^232.^0^^~4~^^^^^^^^^^^~03/01/2009~
-~01081~^~301~^143.^0^^~1~^^^^^^^^^^^~11/01/1976~
-~01081~^~304~^16.^0^^~1~^^^^^^^^^^^~11/01/1976~
-~01081~^~305~^112.^0^^~1~^^^^^^^^^^^~11/01/1976~
-~01081~^~306~^182.^0^^~1~^^^^^^^^^^^~11/01/1976~
-~01081~^~307~^59.^0^^~1~^^^^^^^^^^^~11/01/1976~
-~01081~^~318~^5.^0^^~4~^~NC~^^^^^^^^^^~02/01/2003~
-~01081~^~320~^0.^0^^~4~^~NC~^^^^^^^^^^~02/01/2003~
-~01081~^~321~^3.^0^^~4~^~BFFN~^~01077~^^^^^^^^^~12/01/2002~
-~01081~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~12/01/2002~
-~01081~^~324~^40.^0^^~4~^~S~^^^^^^^^^^~02/01/2001~
-~01081~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~12/01/2002~
-~01081~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~12/01/2002~
-~01081~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~12/01/2002~
-~01081~^~417~^6.^0^^~1~^^^^^^^^^^^~11/01/1976~
-~01081~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~
-~01081~^~432~^6.^0^^~1~^^^^^^^^^^^~02/01/2003~
-~01081~^~435~^6.^0^^~4~^~NC~^^^^^^^^^^~03/01/2009~
-~01081~^~601~^8.^0^^~1~^^^^^^^^^^^~11/01/1976~
-~01082~^~208~^42.^0^^~4~^~NC~^^^^^^^^^^~05/01/2009~
-~01082~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2001~
-~01082~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2001~
-~01082~^~268~^177.^0^^~4~^~NC~^^^^^^^^^^~05/01/2009~
-~01082~^~301~^125.^4^1.^~1~^~A~^^^4^^^^^^^~12/01/2008~
-~01082~^~304~^11.^22^0.^~1~^~A~^^^1^9.^12.^14^10.^11.^~2, 3~^~01/01/2004~
-~01082~^~305~^95.^21^0.^~1~^~A~^^^1^86.^100.^17^94.^96.^~2, 3~^~01/01/2004~
-~01082~^~306~^150.^11^1.^~1~^~A~^^^1^^^^^^^~01/01/2004~
-~01082~^~307~^44.^23^0.^~1~^~A~^^^1^37.^58.^18^42.^45.^~2, 3~^~01/01/2004~
-~01082~^~318~^196.^0^^~4~^~NC~^^^^^^^^^^~05/01/2009~
-~01082~^~319~^58.^0^^~4~^~T~^^^^^^^^^^~05/01/2009~
-~01082~^~320~^58.^0^^~4~^~NC~^^^^^^^^^^~05/01/2009~
-~01082~^~321~^2.^0^^~4~^~BFFN~^~01077~^^^^^^^^^~12/01/2002~
-~01082~^~322~^0.^0^^~4~^~BFFN~^~01077~^^^^^^^^^~12/01/2002~
-~01082~^~324~^48.^24^2.^~1~^~A~^^^4^11.^67.^17^42.^53.^~2, 3~^~05/01/2009~
-~01082~^~334~^0.^0^^~4~^~BFFN~^~01077~^^^^^^^^^~12/01/2002~
-~01082~^~337~^0.^0^^~4~^~BFFN~^~01077~^^^^^^^^^~12/01/2002~
-~01082~^~338~^0.^0^^~4~^~BFFN~^~01077~^^^^^^^^^~12/01/2002~
-~01082~^~417~^5.^12^0.^~1~^~A~^^^1^4.^5.^11^4.^5.^~2, 3~^~12/01/2002~
-~01082~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~
-~01082~^~432~^5.^12^0.^~1~^~A~^^^1^4.^5.^11^4.^5.^^~05/01/2009~
-~01082~^~435~^5.^0^^~4~^~NC~^^^^^^^^^^~05/01/2009~
-~01082~^~601~^5.^4^0.^~1~^~A~^^^1^4.^5.^3^4.^5.^~2, 3~^~03/01/2003~
-~01082~^~638~^0.^4^0.^~1~^~A~^^^1^0.^0.^^^^~1, 2, 3~^~12/01/2002~
-~01082~^~639~^0.^4^0.^~1~^~A~^^^1^0.^0.^^^^~1, 2, 3~^~12/01/2002~
-~01082~^~641~^0.^4^0.^~1~^~A~^^^1^0.^0.^^^^~1, 2, 3~^~12/01/2002~
-~01083~^~208~^43.^0^^~4~^~NC~^^^^^^^^^^~11/01/1976~
-~01083~^~268~^178.^0^^~4~^^^^^^^^^^^~03/01/2009~
-~01083~^~301~^128.^0^^~1~^^^^^^^^^^^~11/01/1976~
-~01083~^~304~^14.^0^^~1~^^^^^^^^^^^~11/01/1976~
-~01083~^~305~^100.^0^^~1~^^^^^^^^^^^~11/01/1976~
-~01083~^~306~^162.^0^^~1~^^^^^^^^^^^~11/01/1976~
-~01083~^~307~^52.^0^^~1~^^^^^^^^^^^~11/01/1976~
-~01083~^~318~^204.^0^^~1~^^^^^^^^^^^~11/01/1976~
-~01083~^~319~^58.^0^^~4~^~NC~^^^^^^^^^^~06/01/2002~
-~01083~^~320~^59.^0^^~4~^~NC~^^^^^^^^^^~06/01/2002~
-~01083~^~324~^40.^0^^~4~^~S~^^^^^^^^^^~02/01/2001~
-~01083~^~417~^5.^0^^~1~^^^^^^^^^^^~11/01/1976~
-~01083~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~
-~01083~^~432~^5.^0^^~1~^^^^^^^^^^^~11/01/1976~
-~01083~^~435~^5.^0^^~4~^~NC~^^^^^^^^^^~03/01/2009~
-~01083~^~601~^4.^0^^~1~^^^^^^^^^^^~11/01/1976~
-~01084~^~208~^48.^0^^~4~^~NC~^^^^^^^^^^~11/01/1976~
-~01084~^~268~^203.^0^^~4~^^^^^^^^^^^~03/01/2009~
-~01084~^~301~^142.^0^^~1~^^^^^^^^^^^~11/01/1976~
-~01084~^~304~^16.^0^^~1~^^^^^^^^^^^~11/01/1976~
-~01084~^~305~^111.^0^^~1~^^^^^^^^^^^~11/01/1976~
-~01084~^~306~^180.^0^^~1~^^^^^^^^^^^~11/01/1976~
-~01084~^~307~^58.^0^^~1~^^^^^^^^^^^~11/01/1976~
-~01084~^~318~^203.^0^^~1~^^^^^^^^^^^~11/01/1976~
-~01084~^~319~^61.^0^^~1~^^^^^^^^^^^~06/01/2002~
-~01084~^~320~^61.^0^^~1~^^^^^^^^^^^~06/01/2002~
-~01084~^~324~^40.^0^^~4~^~S~^^^^^^^^^^~02/01/2001~
-~01084~^~417~^6.^0^^~1~^^^^^^^^^^^~11/01/1976~
-~01084~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~
-~01084~^~432~^6.^0^^~1~^^^^^^^^^^^~11/01/1976~
-~01084~^~435~^6.^0^^~4~^~NC~^^^^^^^^^^~03/01/2009~
-~01084~^~601~^4.^2^^~1~^^^^^^^^^^^~11/01/1976~
-~01085~^~208~^34.^0^^~4~^~NC~^^^^^^^^^^~05/01/2009~
-~01085~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2001~
-~01085~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2001~
-~01085~^~268~^143.^0^^~4~^~NC~^^^^^^^^^^~05/01/2009~
-~01085~^~301~^122.^4^0.^~1~^~A~^^^4^^^^^^^~12/01/2008~
-~01085~^~304~^11.^41^0.^~1~^~A~^^^8^6.^12.^13^10.^10.^~2, 3~^~01/01/2004~
-~01085~^~305~^101.^39^0.^~1~^~A~^^^8^51.^104.^10^99.^101.^~2, 3~^~01/01/2004~
-~01085~^~306~^156.^26^0.^~1~^~A~^^^8^149.^167.^9^154.^157.^~2, 3~^~01/01/2004~
-~01085~^~307~^42.^40^0.^~1~^~A~^^^8^30.^62.^11^40.^42.^~2, 3~^~01/01/2004~
-~01085~^~318~^204.^0^^~4~^~NC~^^^^^^^^^^~05/01/2009~
-~01085~^~319~^61.^0^^~4~^~T~^^^^^^^^^^~05/01/2009~
-~01085~^~320~^61.^0^^~4~^~NC~^^^^^^^^^^~05/01/2009~
-~01085~^~321~^0.^0^^~4~^~BFFN~^~01077~^^^^^^^^^~12/01/2002~
-~01085~^~322~^0.^0^^~4~^~BFFN~^~01077~^^^^^^^^^~12/01/2002~
-~01085~^~324~^47.^24^2.^~1~^~A~^^^4^5.^74.^11^41.^52.^~2, 3~^~05/01/2009~
-~01085~^~334~^0.^0^^~4~^~BFFN~^~01077~^^^^^^^^^~12/01/2002~
-~01085~^~337~^0.^0^^~4~^~BFFN~^~01077~^^^^^^^^^~12/01/2002~
-~01085~^~338~^0.^0^^~4~^~BFFN~^~01077~^^^^^^^^^~12/01/2002~
-~01085~^~417~^5.^10^0.^~1~^~A~^^^1^5.^5.^^^^~2, 3~^~12/01/2002~
-~01085~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~
-~01085~^~432~^5.^10^0.^~1~^~A~^^^1^5.^5.^^^^^~05/01/2009~
-~01085~^~435~^5.^0^^~4~^~NC~^^^^^^^^^^~05/01/2009~
-~01085~^~601~^2.^4^0.^~1~^^^^^^^^^^^~11/01/1976~
-~01086~^~208~^37.^0^^~4~^~NC~^^^^^^^^^^~11/01/1976~
-~01086~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2001~
-~01086~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2001~
-~01086~^~268~^154.^0^^~4~^^^^^^^^^^^~02/01/2009~
-~01086~^~301~^129.^0^^~1~^^^^^^^^^^^~11/01/1976~
-~01086~^~304~^15.^0^^~1~^^^^^^^^^^^~11/01/1976~
-~01086~^~305~^104.^0^^~1~^^^^^^^^^^^~11/01/1976~
-~01086~^~306~^171.^0^^~1~^^^^^^^^^^^~11/01/1976~
-~01086~^~307~^53.^0^^~1~^^^^^^^^^^^~11/01/1976~
-~01086~^~318~^214.^0^^~4~^~NC~^^^^^^^^^^~02/01/2009~
-~01086~^~319~^64.^0^^~4~^~BFSN~^~01085~^^^^^^^^^~02/01/2009~
-~01086~^~320~^64.^0^^~4~^~NC~^^^^^^^^^^~02/01/2009~
-~01086~^~321~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2003~
-~01086~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2003~
-~01086~^~324~^49.^0^^~4~^~BFSN~^~01085~^^^^^^^^^~02/01/2009~
-~01086~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2003~
-~01086~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2003~
-~01086~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2003~
-~01086~^~417~^5.^0^^~1~^^^^^^^^^^^~11/01/1976~
-~01086~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~
-~01086~^~432~^5.^0^^~1~^^^^^^^^^^^~02/01/2009~
-~01086~^~435~^5.^0^^~4~^~NC~^^^^^^^^^^~02/01/2009~
-~01086~^~601~^2.^0^^~1~^^^^^^^^^^^~11/01/1976~
-~01087~^~208~^41.^0^^~4~^~NC~^^^^^^^^^^~11/01/1976~
-~01087~^~268~^170.^0^^~4~^^^^^^^^^^^~03/01/2009~
-~01087~^~301~^143.^0^^~1~^^^^^^^^^^^~11/01/1976~
-~01087~^~304~^16.^0^^~1~^^^^^^^^^^^~11/01/1976~
-~01087~^~305~^112.^0^^~1~^^^^^^^^^^^~11/01/1976~
-~01087~^~306~^182.^0^^~1~^^^^^^^^^^^~11/01/1976~
-~01087~^~307~^59.^0^^~1~^^^^^^^^^^^~11/01/1976~
-~01087~^~318~^203.^0^^~1~^^^^^^^^^^^~11/01/1976~
-~01087~^~319~^61.^0^^~1~^^^^^^^^^^^~06/01/2002~
-~01087~^~320~^61.^0^^~1~^^^^^^^^^^^~06/01/2002~
-~01087~^~324~^40.^0^^~4~^~S~^^^^^^^^^^~02/01/2001~
-~01087~^~417~^6.^0^^~1~^^^^^^^^^^^~11/01/1976~
-~01087~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~
-~01087~^~432~^6.^0^^~1~^^^^^^^^^^^~11/01/1976~
-~01087~^~435~^6.^0^^~4~^~NC~^^^^^^^^^^~03/01/2009~
-~01087~^~601~^2.^0^^~1~^^^^^^^^^^^~11/01/1976~
-~01088~^~208~^40.^0^^~4~^~NC~^^^^^^^^^^~02/01/2009~
-~01088~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~12/01/2002~
-~01088~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~12/01/2002~
-~01088~^~268~^169.^0^^~4~^^^^^^^^^^^~02/01/2009~
-~01088~^~301~^116.^12^2.^~1~^^^^^^^^^^^~11/01/1976~
-~01088~^~304~^11.^9^0.^~1~^^^^^^^^^^^~11/01/1976~
-~01088~^~305~^89.^12^4.^~1~^^^^^^^^^^^~11/01/1976~
-~01088~^~306~^151.^14^6.^~1~^^^^^^^^^^^~11/01/1976~
-~01088~^~307~^148.^0^^~8~^~LC~^^^^^^^^^^~07/01/2017~
-~01088~^~318~^47.^0^^~4~^~NC~^^^^^^^^^^~02/01/2009~
-~01088~^~319~^13.^0^^~4~^~BFZN~^~01175~^^^^^^^^^~02/01/2009~
-~01088~^~320~^14.^0^^~4~^~NC~^^^^^^^^^^~02/01/2009~
-~01088~^~321~^1.^0^^~4~^~BFFN~^~01077~^^^^^^^^^~12/01/2002~
-~01088~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~12/01/2002~
-~01088~^~324~^1.^0^^~4~^~BFZN~^~01175~^^^^^^^^^~02/01/2009~
-~01088~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~12/01/2002~
-~01088~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~12/01/2002~
-~01088~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~12/01/2002~
-~01088~^~417~^5.^0^^~4~^^^^^^^^^^^~11/01/1976~
-~01088~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~
-~01088~^~432~^5.^0^^~4~^^^^^^^^^^^~02/01/2009~
-~01088~^~435~^5.^0^^~4~^~NC~^^^^^^^^^^~02/01/2009~
-~01088~^~601~^4.^4^0.^~1~^^^^^^^^^^^~11/01/1976~
-~01089~^~208~^61.^0^^~4~^~NC~^^^^^^^^^^~11/01/1976~
-~01089~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2003~
-~01089~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2003~
-~01089~^~268~^255.^0^^~4~^^^^^^^^^^^~02/01/2009~
-~01089~^~301~^101.^11^^~1~^^^^^^^^^^^~11/01/1976~
-~01089~^~304~^5.^1^^~1~^^^^^^^^^^^~11/01/1976~
-~01089~^~305~^86.^9^^~1~^^^^^^^^^^^~11/01/1976~
-~01089~^~306~^253.^11^^~1~^^^^^^^^^^^~11/01/1976~
-~01089~^~307~^3.^10^^~1~^^^^^^^^^^^~11/01/1976~
-~01089~^~318~^105.^0^^~4~^~NC~^^^^^^^^^^~02/01/2009~
-~01089~^~319~^28.^0^^~4~^~T~^^^^^^^^^^~02/01/2009~
-~01089~^~320~^29.^0^^~4~^~NC~^^^^^^^^^^~02/01/2009~
-~01089~^~321~^7.^0^^~4~^~BFFN~^~01077~^^^^^^^^^~02/01/2009~
-~01089~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2003~
-~01089~^~324~^51.^0^^~4~^~BFZN~^~01077~^^^^^^^^^~02/01/2009~
-~01089~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2003~
-~01089~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2003~
-~01089~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2003~
-~01089~^~417~^5.^0^^~4~^^^^^^^^^^^~11/01/1976~
-~01089~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~
-~01089~^~432~^5.^0^^~4~^^^^^^^^^^^~02/01/2009~
-~01089~^~435~^5.^0^^~4~^~NC~^^^^^^^^^^~06/01/2009~
-~01089~^~601~^14.^0^^~1~^^^^^^^^^^^~11/01/1976~
-~01090~^~208~^496.^0^^~4~^~NC~^^^^^^^^^^~02/01/2009~
-~01090~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2001~
-~01090~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2001~
-~01090~^~268~^2075.^0^^~4~^^^^^^^^^^^~02/01/2009~
-~01090~^~301~^912.^18^17.^~1~^^^^^^^^^^^~11/01/1976~
-~01090~^~304~^85.^15^1.^~1~^^^^^^^^^^^~11/01/1976~
-~01090~^~305~^776.^18^14.^~1~^^^^^^^^^^^~11/01/1976~
-~01090~^~306~^1330.^15^41.^~1~^^^^^^^^^^^~11/01/1976~
-~01090~^~307~^371.^7^15.^~1~^^^^^^^^^^^~11/01/1976~
-~01090~^~318~^934.^0^^~4~^~NC~^^^^^^^^^^~02/01/2009~
-~01090~^~319~^253.^0^^~4~^~NC~^^^^^^^^^^~02/01/2009~
-~01090~^~320~^258.^0^^~4~^~NC~^^^^^^^^^^~02/01/2009~
-~01090~^~321~^55.^0^^~4~^~BFFN~^~01077~^^^^^^^^^~02/01/2009~
-~01090~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~12/01/2002~
-~01090~^~324~^420.^0^^~4~^~BFFN~^~01077~^^^^^^^^^~02/01/2009~
-~01090~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~12/01/2002~
-~01090~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~12/01/2002~
-~01090~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~12/01/2002~
-~01090~^~417~^37.^0^^~1~^^^^^^^^^^^~11/01/1976~
-~01090~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~
-~01090~^~432~^37.^0^^~1~^^^^^^^^^^^~02/01/2009~
-~01090~^~435~^37.^0^^~4~^~NC~^^^^^^^^^^~02/01/2009~
-~01090~^~601~^97.^2^^~1~^^^^^^^^^^^~11/01/1976~
-~01091~^~208~^362.^0^^~4~^~NC~^^^^^^^^^^~11/01/1976~
-~01091~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2001~
-~01091~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2001~
-~01091~^~268~^1516.^0^^~4~^^^^^^^^^^^~12/01/2006~
-~01091~^~301~^1257.^12^30.^~1~^^^^^^^^^^^~11/01/1976~
-~01091~^~304~^110.^9^3.^~1~^^^^^^^^^^^~11/01/1976~
-~01091~^~305~^968.^13^25.^~1~^^^^^^^^^^^~11/01/1976~
-~01091~^~306~^1794.^2400^3.^~1~^^^^^^^^^^^~11/01/1976~
-~01091~^~307~^535.^6^17.^~1~^^^^^^^^^^^~11/01/1976~
-~01091~^~318~^22.^0^^~4~^~NC~^^^^^^^^^^~03/01/2003~
-~01091~^~319~^6.^0^^~4~^~NC~^^^^^^^^^^~11/01/2002~
-~01091~^~320~^6.^0^^~4~^~NC~^^^^^^^^^^~11/01/2002~
-~01091~^~321~^1.^0^^~4~^~BFFN~^~01077~^^^^^^^^^~11/01/2002~
-~01091~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~11/01/2002~
-~01091~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~
-~01091~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~11/01/2002~
-~01091~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~11/01/2002~
-~01091~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~11/01/2002~
-~01091~^~417~^50.^0^^~1~^^^^^^^^^^^~11/01/1976~
-~01091~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~
-~01091~^~432~^50.^0^^~1~^^^^^^^^^^^~11/01/2002~
-~01091~^~435~^50.^0^^~4~^~NC~^^^^^^^^^^~02/01/2009~
-~01091~^~601~^20.^0^^~1~^^^^^^^^^^^~11/01/1976~
-~01092~^~208~^358.^0^^~4~^~NC~^^^^^^^^^^~11/01/1976~
-~01092~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2001~
-~01092~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2001~
-~01092~^~268~^1499.^0^^~4~^^^^^^^^^^^~12/01/2006~
-~01092~^~301~^1231.^16^25.^~1~^^^^^^^^^^^~11/01/1976~
-~01092~^~304~^117.^14^11.^~1~^^^^^^^^^^^~11/01/1976~
-~01092~^~305~^985.^17^21.^~1~^^^^^^^^^^^~11/01/1976~
-~01092~^~306~^1705.^11^51.^~1~^^^^^^^^^^^~11/01/1976~
-~01092~^~307~^549.^7^15.^~1~^^^^^^^^^^^~11/01/1976~
-~01092~^~318~^2365.^0^^~4~^~NC~^^^^^^^^^^~03/01/2003~
-~01092~^~319~^709.^0^^~4~^~NC~^^^^^^^^^^~12/01/2002~
-~01092~^~320~^709.^0^^~4~^~NC~^^^^^^^^^^~12/01/2002~
-~01092~^~321~^1.^0^^~4~^~BFFN~^~01077~^^^^^^^^^~12/01/2002~
-~01092~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~12/01/2002~
-~01092~^~324~^440.^0^^~4~^~T~^^^^^^^^^^~02/01/2001~
-~01092~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~12/01/2002~
-~01092~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~12/01/2002~
-~01092~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~12/01/2002~
-~01092~^~417~^50.^0^^~1~^^^^^^^^^^^~11/01/1976~
-~01092~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~
-~01092~^~432~^50.^0^^~1~^^^^^^^^^^^~12/01/2002~
-~01092~^~435~^50.^0^^~4~^~NC~^^^^^^^^^^~02/01/2009~
-~01092~^~601~^18.^8^1.^~1~^^^^^^^^^^^~11/01/1976~
-~01093~^~208~^354.^0^^~4~^~NC~^^^^^^^^^^~11/01/1976~
-~01093~^~268~^1480.^0^^~4~^^^^^^^^^^^
-~01093~^~301~^280.^1^^~1~^^^^^^^^^^^~11/01/1976~
-~01093~^~304~^60.^1^^~1~^^^^^^^^^^^~11/01/1976~
-~01093~^~305~^1011.^1^^~1~^^^^^^^^^^^~11/01/1976~
-~01093~^~306~^680.^1^^~1~^^^^^^^^^^^~11/01/1976~
-~01093~^~307~^2280.^1^^~1~^^^^^^^^^^^~11/01/1976~
-~01093~^~318~^8.^0^^~1~^^^^^^^^^^^~11/01/1976~
-~01093~^~319~^1.^0^^~4~^~NC~^^^^^^^^^^~06/01/2002~
-~01093~^~320~^2.^0^^~4~^~NC~^^^^^^^^^^~06/01/2002~
-~01093~^~417~^50.^0^^~4~^^^^^^^^^^^~11/01/1976~
-~01093~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~
-~01093~^~432~^50.^0^^~4~^^^^^^^^^^^~11/01/1976~
-~01093~^~435~^50.^0^^~4~^~NC~^^^^^^^^^^~01/01/2001~
-~01093~^~601~^2.^0^^~1~^^^^^^^^^^^~11/01/1976~
-~01094~^~208~^387.^0^^~4~^~NC~^^^^^^^^^^~02/01/2009~
-~01094~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~12/01/2002~
-~01094~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~12/01/2002~
-~01094~^~268~^1619.^0^^~4~^~NC~^^^^^^^^^^~02/01/2009~
-~01094~^~301~^1184.^0^^~1~^^^^^^^^^^^~11/01/1976~
-~01094~^~304~^110.^0^^~1~^^^^^^^^^^^~11/01/1976~
-~01094~^~305~^933.^0^^~1~^^^^^^^^^^^~11/01/1976~
-~01094~^~306~^1592.^340^5.^~1~^^^^^^^^^^^~11/01/1976~
-~01094~^~307~^517.^0^^~1~^^^^^^^^^^^~11/01/1976~
-~01094~^~318~^175.^0^^~4~^~NC~^^^^^^^^^^~02/01/2009~
-~01094~^~319~^48.^0^^~4~^~T~^^^^^^^^^^~02/01/2009~
-~01094~^~320~^49.^0^^~4~^~NC~^^^^^^^^^^~02/01/2009~
-~01094~^~321~^9.^0^^~4~^~BFFN~^~01077~^^^^^^^^^~12/01/2002~
-~01094~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~12/01/2002~
-~01094~^~324~^20.^0^^~4~^~BFSN~^~01211~^^^^^^^^^~02/01/2009~
-~01094~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~12/01/2002~
-~01094~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~12/01/2002~
-~01094~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~12/01/2002~
-~01094~^~417~^47.^0^^~1~^^^^^^^^^^^~11/01/1976~
-~01094~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~
-~01094~^~432~^47.^0^^~1~^^^^^^^^^^^~02/01/2009~
-~01094~^~435~^47.^0^^~4~^~NC~^^^^^^^^^^~02/01/2009~
-~01094~^~601~^69.^0^^~1~^^^^^^^^^^^~11/01/1976~
-~01095~^~208~^321.^0^^~4~^~NC~^^^^^^^^^^~02/01/2009~
-~01095~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~12/01/2002~
-~01095~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~12/01/2002~
-~01095~^~268~^1342.^0^^~4~^~NC~^^^^^^^^^^~02/01/2009~
-~01095~^~301~^284.^3^6.^~1~^^^^^^^^^^^~11/01/1976~
-~01095~^~304~^26.^1^^~1~^^^^^^^^^^^~11/01/1976~
-~01095~^~305~^253.^3^17.^~1~^^^^^^^^^^^~11/01/1976~
-~01095~^~306~^371.^6^20.^~1~^^^^^^^^^^^~11/01/1976~
-~01095~^~307~^127.^6^4.^~1~^^^^^^^^^^^~11/01/1976~
-~01095~^~318~^267.^0^^~4~^~NC~^^^^^^^^^^~02/01/2009~
-~01095~^~319~^73.^0^^~4~^~T~^^^^^^^^^^~02/01/2009~
-~01095~^~320~^74.^0^^~4~^~NC~^^^^^^^^^^~02/01/2009~
-~01095~^~321~^14.^0^^~4~^~BFFN~^~01077~^^^^^^^^^~12/01/2002~
-~01095~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~12/01/2002~
-~01095~^~324~^6.^0^^~4~^~BFFN~^~01211~^^^^^^^^^~02/01/2009~
-~01095~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~12/01/2002~
-~01095~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~12/01/2002~
-~01095~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~12/01/2002~
-~01095~^~417~^11.^0^^~1~^^^^^^^^^^^~11/01/1976~
-~01095~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~
-~01095~^~432~^11.^0^^~1~^^^^^^^^^^^~02/01/2009~
-~01095~^~435~^11.^0^^~4~^~NC~^^^^^^^^^^~02/01/2009~
-~01095~^~601~^34.^0^^~1~^^^^^^^^^^^~11/01/1976~
-~01096~^~208~^134.^0^^~4~^~NC~^^^^^^^^^^~02/01/2009~
-~01096~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~12/01/2002~
-~01096~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~12/01/2002~
-~01096~^~268~^562.^0^^~4~^~NC~^^^^^^^^^^~02/01/2009~
-~01096~^~301~^261.^39^8.^~1~^^^^^^^^^^^~11/01/1976~
-~01096~^~304~^24.^6^0.^~1~^^^^^^^^^^^~11/01/1976~
-~01096~^~305~^203.^37^8.^~1~^^^^^^^^^^^~11/01/1976~
-~01096~^~306~^303.^10^8.^~1~^^^^^^^^^^^~11/01/1976~
-~01096~^~307~^106.^10^3.^~1~^^^^^^^^^^^~11/01/1976~
-~01096~^~318~^233.^0^^~4~^~NC~^^^^^^^^^^~02/01/2009~
-~01096~^~319~^64.^0^^~4~^~NC~^^^^^^^^^^~03/01/2007~
-~01096~^~320~^65.^0^^~4~^~NC~^^^^^^^^^^~02/01/2009~
-~01096~^~321~^12.^0^^~4~^~BFFN~^~01077~^^^^^^^^^~12/01/2002~
-~01096~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~12/01/2002~
-~01096~^~324~^79.^0^^~4~^~S~^^^^^^^^^^~02/01/2009~
-~01096~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~12/01/2002~
-~01096~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~12/01/2002~
-~01096~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~12/01/2002~
-~01096~^~417~^8.^1^^~1~^^^^^^^^^^^~11/01/1976~
-~01096~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~
-~01096~^~432~^8.^1^^~1~^^^^^^^^^^^~02/01/2009~
-~01096~^~435~^8.^0^^~4~^~NC~^^^^^^^^^^~02/01/2009~
-~01096~^~601~^29.^0^^~1~^^^^^^^^^^^~11/01/1976~
-~01097~^~208~^78.^0^^~4~^~NC~^^^^^^^^^^~02/01/2009~
-~01097~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2001~
-~01097~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2001~
-~01097~^~268~^326.^0^^~4~^~NC~^^^^^^^^^^~02/01/2009~
-~01097~^~301~^290.^10^14.^~1~^^^^^^^^^^^~11/01/1976~
-~01097~^~304~^27.^1^^~1~^^^^^^^^^^^~11/01/1976~
-~01097~^~305~^195.^9^9.^~1~^^^^^^^^^^^~11/01/1976~
-~01097~^~306~^332.^2^^~1~^^^^^^^^^^^~11/01/1976~
-~01097~^~307~^115.^2^^~1~^^^^^^^^^^^~11/01/1976~
-~01097~^~318~^394.^0^^~4~^~NC~^^^^^^^^^^~02/01/2009~
-~01097~^~319~^118.^0^^~4~^~T~^^^^^^^^^^~02/01/2009~
-~01097~^~320~^118.^0^^~4~^~NC~^^^^^^^^^^~02/01/2009~
-~01097~^~321~^0.^0^^~4~^~BFFN~^~01077~^^^^^^^^^~12/01/2002~
-~01097~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~12/01/2002~
-~01097~^~324~^79.^0^^~4~^~S~^^^^^^^^^^~02/01/2009~
-~01097~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~12/01/2002~
-~01097~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~12/01/2002~
-~01097~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~12/01/2002~
-~01097~^~417~^9.^1^^~1~^^^^^^^^^^^~11/01/1976~
-~01097~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~
-~01097~^~432~^9.^1^^~1~^^^^^^^^^^^~02/01/2009~
-~01097~^~435~^9.^0^^~4~^~NC~^^^^^^^^^^~02/01/2009~
-~01097~^~601~^4.^0^^~1~^^^^^^^^^^^~11/01/1976~
-~01102~^~208~^83.^0^^~4~^~NC~^^^^^^^^^^~02/01/2009~
-~01102~^~262~^1.^0^^~4~^~BFZN~^~01103~^^^^^^^^^~10/01/2013~
-~01102~^~263~^23.^0^^~4~^~RA~^^^^^^^^^^~01/01/2003~
-~01102~^~268~^349.^0^^~4~^^^^^^^^^^^~02/01/2009~
-~01102~^~301~^112.^8^3.^~1~^^^^^^^^^^^~11/01/1976~
-~01102~^~304~^13.^5^0.^~1~^^^^^^^^^^^~11/01/1976~
-~01102~^~305~^101.^5^5.^~1~^^^^^^^^^^^~11/01/1976~
-~01102~^~306~^167.^5^7.^~1~^^^^^^^^^^^~11/01/1976~
-~01102~^~307~^60.^5^5.^~1~^^^^^^^^^^^~11/01/1976~
-~01102~^~318~^98.^0^^~4~^~NC~^^^^^^^^^^~02/01/2009~
-~01102~^~319~^26.^0^^~4~^~T~^^^^^^^^^^~02/01/2009~
-~01102~^~320~^27.^0^^~4~^~NC~^^^^^^^^^^~02/01/2009~
-~01102~^~321~^7.^0^^~4~^~BFZN~^~01077~^^^^^^^^^~02/01/2009~
-~01102~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2003~
-~01102~^~324~^51.^0^^~4~^~BFZN~^~01077~^^^^^^^^^~02/01/2009~
-~01102~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2003~
-~01102~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2003~
-~01102~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2003~
-~01102~^~417~^5.^0^^~1~^^^^^^^^^^^~11/01/1976~
-~01102~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~
-~01102~^~432~^5.^0^^~1~^^^^^^^^^^^~02/01/2009~
-~01102~^~435~^5.^0^^~4~^~NC~^^^^^^^^^^~03/01/2009~
-~01102~^~601~^12.^0^^~1~^^^^^^^^^^^~11/01/1976~
-~01103~^~208~^76.^0^^~4~^~NC~^^^^^^^^^^~02/01/2009~
-~01103~^~262~^1.^1^^~1~^~A~^^^^^^^^^~1~^~02/01/2005~
-~01103~^~263~^22.^1^^~1~^~A~^^^^^^^^^^~02/01/2005~
-~01103~^~268~^320.^0^^~4~^~NC~^^^^^^^^^^~02/01/2009~
-~01103~^~301~^109.^1^^~1~^~A~^^^^^^^^^^~02/01/2005~
-~01103~^~304~^14.^2^^~1~^~A~^^^1^^^^^^^~02/01/2005~
-~01103~^~305~^102.^0^^~1~^^^^^^^^^^^~09/01/2005~
-~01103~^~306~^169.^0^^~1~^^^^^^^^^^^~09/01/2005~
-~01103~^~307~^66.^2^^~1~^~A~^^^1^^^^^^^~02/01/2005~
-~01103~^~318~^227.^0^^~1~^~AS~^^^^^^^^^^~02/01/2005~
-~01103~^~319~^63.^1^^~1~^~A~^^^^^^^^^^~02/01/2005~
-~01103~^~320~^64.^0^^~1~^~AS~^^^^^^^^^^~02/01/2005~
-~01103~^~321~^11.^2^^~1~^~A~^^^1^^^^^^^~02/01/2005~
-~01103~^~322~^0.^2^^~1~^~A~^^^1^^^^^^^~02/01/2005~
-~01103~^~324~^49.^0^^~4~^~BFZN~^~01079~^^^^^^^^^~02/01/2009~
-~01103~^~334~^0.^2^^~1~^~A~^^^1^^^^^^^~02/01/2005~
-~01103~^~337~^0.^2^^~1~^~A~^^^1^^^^^^^~02/01/2005~
-~01103~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2003~
-~01103~^~417~^2.^2^^~1~^~A~^^^1^^^^^^^~02/01/2005~
-~01103~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~
-~01103~^~432~^2.^2^^~1~^~A~^^^^^^^^^^~02/01/2009~
-~01103~^~435~^2.^0^^~4~^~NC~^^^^^^^^^^~03/01/2009~
-~01103~^~601~^8.^2^^~1~^~A~^^^1^^^^^^^~02/01/2005~
-~01103~^~638~^0.^2^^~1~^~A~^^^1^^^^^^^~02/01/2005~
-~01103~^~639~^0.^2^^~1~^~A~^^^1^^^^^^^~02/01/2005~
-~01103~^~641~^0.^2^^~1~^~A~^^^1^^^^^^^~02/01/2005~
-~01104~^~208~^64.^0^^~4~^~NC~^^^^^^^^^^~11/01/2016~
-~01104~^~262~^1.^5^0.^~1~^~A~^^^1^1.^2.^3^0.^2.^~2, 3~^~07/01/2015~
-~01104~^~263~^12.^5^1.^~1~^~A~^^^1^11.^13.^3^8.^16.^~2, 3~^~07/01/2015~
-~01104~^~268~^267.^0^^~4~^~NC~^^^^^^^^^^~11/01/2016~
-~01104~^~301~^129.^13^1.^~1~^~A~^^^1^117.^169.^10^125.^132.^~2, 3~^~07/01/2015~
-~01104~^~304~^13.^13^0.^~1~^~A~^^^1^13.^13.^10^12.^13.^~2, 3~^~11/01/1976~
-~01104~^~305~^96.^13^1.^~1~^~A~^^^1^90.^97.^9^92.^98.^~2, 3~^~07/01/2015~
-~01104~^~306~^172.^13^3.^~1~^~A~^^^1^162.^174.^9^163.^179.^~2, 3~^~07/01/2015~
-~01104~^~307~^65.^13^2.^~1~^~A~^^^1^49.^69.^9^58.^70.^~2, 3~^~07/01/2015~
-~01104~^~318~^174.^0^^~4~^~NC~^^^^^^^^^^~07/01/2015~
-~01104~^~319~^51.^3^^~1~^~A~^^^1^41.^73.^^^^~2, 3~^~07/01/2015~
-~01104~^~320~^52.^0^^~4~^~NC~^^^^^^^^^^~07/01/2015~
-~01104~^~321~^2.^0^^~4~^~BFFN~^~01077~^^^^^^^^^~01/01/2003~
-~01104~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2003~
-~01104~^~324~^43.^0^^~4~^~NR~^^^^^^^^^^~07/01/2015~
-~01104~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2003~
-~01104~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2003~
-~01104~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2003~
-~01104~^~417~^3.^1^^~8~^^^^^^^^^^^~07/01/2015~
-~01104~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~
-~01104~^~432~^3.^0^^~4~^~NR~^^^^^^^^^^~11/01/2016~
-~01104~^~435~^3.^0^^~4~^~NC~^^^^^^^^^^~07/01/2015~
-~01104~^~601~^5.^8^0.^~1~^~A~^^^1^5.^5.^5^4.^4.^~2, 3~^~07/01/2015~
-~01105~^~208~^77.^0^^~6~^~RPI~^^^^^^^^^^~02/01/2009~
-~01105~^~262~^2.^0^^~6~^~RPI~^^^^^^^^^^~01/01/2003~
-~01105~^~263~^68.^0^^~6~^~RPI~^^^^^^^^^^~01/01/2003~
-~01105~^~268~^324.^0^^~6~^~RPI~^^^^^^^^^^~08/01/2010~
-~01105~^~301~^114.^0^^~6~^~RPI~^^^^^^^^^^~08/01/2010~
-~01105~^~304~^23.^0^^~6~^~RPI~^^^^^^^^^^~08/01/2010~
-~01105~^~305~^105.^0^^~6~^~RPI~^^^^^^^^^^~08/01/2010~
-~01105~^~306~^197.^0^^~6~^~RPI~^^^^^^^^^^~08/01/2010~
-~01105~^~307~^44.^0^^~6~^~RPI~^^^^^^^^^^~08/01/2010~
-~01105~^~318~^175.^0^^~4~^~NC~^^^^^^^^^^~02/01/2017~
-~01105~^~319~^51.^0^^~6~^~RPI~^^^^^^^^^^~01/01/2003~
-~01105~^~320~^51.^0^^~4~^~NC~^^^^^^^^^^~02/01/2017~
-~01105~^~321~^4.^0^^~6~^~RPI~^^^^^^^^^^~02/01/2009~
-~01105~^~322~^0.^0^^~6~^~RPI~^^^^^^^^^^~01/01/2003~
-~01105~^~324~^45.^0^^~6~^~RPI~^^^^^^^^^^~02/01/2009~
-~01105~^~334~^0.^0^^~6~^~RPI~^^^^^^^^^^~01/01/2003~
-~01105~^~337~^0.^0^^~6~^~RPI~^^^^^^^^^^~01/01/2003~
-~01105~^~338~^0.^0^^~6~^~RPI~^^^^^^^^^^~01/01/2003~
-~01105~^~417~^5.^0^^~1~^~RPA~^^^^^^^^^^~01/01/2003~
-~01105~^~431~^0.^0^^~6~^~RPI~^^^^^^^^^^~01/01/2003~
-~01105~^~432~^5.^0^^~1~^~RPA~^^^^^^^^^^~01/01/2003~
-~01105~^~435~^5.^0^^~4~^~NC~^^^^^^^^^^~08/01/2010~
-~01105~^~601~^8.^0^^~6~^~RPI~^^^^^^^^^^~01/01/2003~
-~01105~^~638~^0.^0^^~1~^~RPA~^^^^^^^^^^~01/01/2003~
-~01105~^~639~^0.^0^^~1~^~RPA~^^^^^^^^^^~01/01/2003~
-~01105~^~641~^0.^0^^~1~^~RPA~^^^^^^^^^^~01/01/2003~
-~01106~^~208~^69.^0^^~4~^~NC~^^^^^^^^^^~02/01/2009~
-~01106~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2001~
-~01106~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2001~
-~01106~^~268~^288.^0^^~4~^~NC~^^^^^^^^^^~02/01/2009~
-~01106~^~301~^134.^94^1.^~1~^^^^^^^^^^^~11/01/1976~
-~01106~^~304~^14.^63^1.^~1~^^^^^^^^^^^~11/01/1976~
-~01106~^~305~^111.^60^2.^~1~^^^^^^^^^^^~11/01/1976~
-~01106~^~306~^204.^96^7.^~1~^^^^^^^^^^^~11/01/1976~
-~01106~^~307~^50.^68^1.^~1~^^^^^^^^^^^~11/01/1976~
-~01106~^~318~^198.^0^^~4~^~NC~^^^^^^^^^^~02/01/2009~
-~01106~^~319~^56.^0^^~4~^~T~^^^^^^^^^^~02/01/2009~
-~01106~^~320~^57.^0^^~4~^~NC~^^^^^^^^^^~02/01/2009~
-~01106~^~321~^7.^0^^~4~^~BFFN~^~01077~^^^^^^^^^~01/01/2003~
-~01106~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2003~
-~01106~^~324~^51.^0^^~4~^~BFZN~^~01077~^^^^^^^^^~02/01/2009~
-~01106~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2003~
-~01106~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2003~
-~01106~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2003~
-~01106~^~417~^1.^18^^~1~^^^^^^^^^^^~11/01/1976~
-~01106~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~
-~01106~^~432~^1.^18^^~1~^^^^^^^^^^^~02/01/2009~
-~01106~^~435~^1.^0^^~4~^~NC~^^^^^^^^^^~05/01/2009~
-~01106~^~601~^11.^36^0.^~1~^^^^^^^^^^^~11/01/1976~
-~01107~^~208~^70.^0^^~4~^~NC~^^^^^^^^^^~02/01/2009~
-~01107~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2001~
-~01107~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2001~
-~01107~^~268~^291.^0^^~4~^~NC~^^^^^^^^^^~02/01/2009~
-~01107~^~301~^32.^755^0.^~1~^^^^^^^^^^^~11/01/1976~
-~01107~^~304~^3.^303^0.^~1~^^^^^^^^^^^~11/01/1976~
-~01107~^~305~^14.^632^0.^~1~^^^^^^^^^^^~11/01/1976~
-~01107~^~306~^51.^172^0.^~1~^^^^^^^^^^^~11/01/1976~
-~01107~^~307~^17.^342^0.^~1~^^^^^^^^^^^~11/01/1976~
-~01107~^~318~^212.^0^^~4~^~NC~^^^^^^^^^^~02/01/2009~
-~01107~^~319~^60.^0^^~4~^~T~^^^^^^^^^^~02/01/2009~
-~01107~^~320~^61.^0^^~4~^~NC~^^^^^^^^^^~02/01/2009~
-~01107~^~321~^7.^0^^~4~^~BFFN~^~01077~^^^^^^^^^~01/01/2003~
-~01107~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2003~
-~01107~^~324~^3.^0^^~4~^~BFFN~^~01211~^^^^^^^^^~02/01/2009~
-~01107~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2003~
-~01107~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2003~
-~01107~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2003~
-~01107~^~417~^5.^7^0.^~1~^^^^^^^^^^^~11/01/1976~
-~01107~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~
-~01107~^~432~^5.^7^0.^~1~^^^^^^^^^^^~02/01/2009~
-~01107~^~435~^5.^0^^~4~^~NC~^^^^^^^^^^~03/01/2009~
-~01107~^~601~^14.^54^0.^~1~^^^^^^^^^^^~11/01/1976~
-~01108~^~208~^97.^0^^~4~^~NC~^^^^^^^^^^~11/01/1976~
-~01108~^~268~^404.^0^^~4~^^^^^^^^^^^
-~01108~^~301~^169.^164^1.^~1~^^^^^^^^^^^~11/01/1976~
-~01108~^~304~^31.^110^1.^~1~^^^^^^^^^^^~11/01/1976~
-~01108~^~305~^117.^113^1.^~1~^^^^^^^^^^^~11/01/1976~
-~01108~^~306~^178.^101^3.^~1~^^^^^^^^^^^~11/01/1976~
-~01108~^~307~^52.^101^1.^~1~^^^^^^^^^^^~11/01/1976~
-~01108~^~318~^178.^32^9.^~1~^^^^^^^^^^^~11/01/1976~
-~01108~^~319~^53.^32^2.^~1~^^^^^^^^^^^~06/01/2002~
-~01108~^~320~^53.^32^2.^~1~^^^^^^^^^^^~06/01/2002~
-~01108~^~417~^6.^1^^~1~^^^^^^^^^^^~11/01/1976~
-~01108~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~
-~01108~^~432~^6.^1^^~1~^^^^^^^^^^^~11/01/1976~
-~01108~^~435~^6.^0^^~4~^~NC~^^^^^^^^^^~01/01/2001~
-~01108~^~601~^19.^25^0.^~1~^^^^^^^^^^^~11/01/1976~
-~01109~^~208~^108.^0^^~4~^~NC~^^^^^^^^^^~11/01/1976~
-~01109~^~268~^451.^0^^~4~^^^^^^^^^^^
-~01109~^~301~^193.^92^^~1~^^^^^^^^^^^~11/01/1976~
-~01109~^~304~^18.^62^^~1~^^^^^^^^^^^~11/01/1976~
-~01109~^~305~^158.^92^^~1~^^^^^^^^^^^~11/01/1976~
-~01109~^~306~^137.^74^^~1~^^^^^^^^^^^~11/01/1976~
-~01109~^~307~^44.^74^^~1~^^^^^^^^^^^~11/01/1976~
-~01109~^~318~^147.^11^^~1~^^^^^^^^^^^~11/01/1976~
-~01109~^~319~^44.^11^0.^~1~^^^^^^^^^^^~06/01/2002~
-~01109~^~320~^44.^11^0.^~1~^^^^^^^^^^^~06/01/2002~
-~01109~^~417~^7.^0^^~4~^^^^^^^^^^^~11/01/1976~
-~01109~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~
-~01109~^~432~^7.^0^^~4~^^^^^^^^^^^~11/01/1976~
-~01109~^~435~^7.^0^^~4~^~NC~^^^^^^^^^^~01/01/2001~
-~01109~^~601~^27.^0^^~4~^^^^^^^^^^^~11/01/1976~
-~01110~^~208~^119.^0^^~4~^~NC~^^^^^^^^^^~11/01/1976~
-~01110~^~262~^2.^0^^~4~^~BFZN~^^^^^^^^^^~02/01/1998~
-~01110~^~263~^23.^0^^~4~^~BFZN~^^^^^^^^^^~02/01/1998~
-~01110~^~268~^496.^0^^~4~^^^^^^^^^^^~07/01/2009~
-~01110~^~301~^132.^1^^~1~^^^^^^^^^^^~11/01/1976~
-~01110~^~304~^16.^1^^~1~^^^^^^^^^^^~11/01/1976~
-~01110~^~305~^126.^1^^~1~^^^^^^^^^^^~11/01/1976~
-~01110~^~306~^224.^1^^~1~^^^^^^^^^^^~11/01/1976~
-~01110~^~307~^111.^1^^~1~^^^^^^^^^^^~11/01/1976~
-~01110~^~318~^67.^0^^~4~^~NC~^^^^^^^^^^~07/01/2009~
-~01110~^~319~^18.^0^^~4~^~NC~^^^^^^^^^^~07/01/2009~
-~01110~^~320~^18.^0^^~4~^~NC~^^^^^^^^^^~07/01/2009~
-~01110~^~321~^4.^0^^~4~^~BFFN~^~01102~^^^^^^^^^~01/01/2003~
-~01110~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2003~
-~01110~^~324~^41.^0^^~4~^~BFFN~^~01102~^^^^^^^^^~07/01/2009~
-~01110~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2003~
-~01110~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2003~
-~01110~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2003~
-~01110~^~417~^5.^7^0.^~1~^^^^^^^^^^^~11/01/1976~
-~01110~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~
-~01110~^~432~^5.^7^0.^~1~^^^^^^^^^^^~07/01/2009~
-~01110~^~435~^5.^0^^~4~^~NC~^^^^^^^^^^~07/01/2009~
-~01110~^~601~^11.^0^^~1~^^^^^^^^^^^~11/01/1976~
-~01111~^~208~^112.^0^^~4~^~NC~^^^^^^^^^^~11/01/1976~
-~01111~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2003~
-~01111~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2003~
-~01111~^~268~^468.^0^^~4~^^^^^^^^^^^~07/01/2009~
-~01111~^~301~^146.^10^5.^~1~^^^^^^^^^^^~11/01/1976~
-~01111~^~304~^12.^10^0.^~1~^^^^^^^^^^^~11/01/1976~
-~01111~^~305~^115.^10^4.^~1~^^^^^^^^^^^~11/01/1976~
-~01111~^~306~^183.^10^9.^~1~^^^^^^^^^^^~11/01/1976~
-~01111~^~307~^95.^10^2.^~1~^^^^^^^^^^^~11/01/1976~
-~01111~^~318~^91.^0^^~4~^~NC~^^^^^^^^^^~07/01/2009~
-~01111~^~319~^25.^0^^~4~^~NC~^^^^^^^^^^~01/01/2003~
-~01111~^~320~^25.^0^^~4~^~NC~^^^^^^^^^^~07/01/2009~
-~01111~^~321~^5.^0^^~4~^~BFFN~^~01077~^^^^^^^^^~01/01/2003~
-~01111~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2003~
-~01111~^~324~^48.^0^^~4~^~BFFN~^~01077~^^^^^^^^^~07/01/2009~
-~01111~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2003~
-~01111~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2003~
-~01111~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2003~
-~01111~^~417~^7.^1^^~1~^^^^^^^^^^^~11/01/1976~
-~01111~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~
-~01111~^~432~^7.^1^^~1~^^^^^^^^^^^~07/01/2009~
-~01111~^~435~^7.^0^^~4~^~NC~^^^^^^^^^^~07/01/2009~
-~01111~^~601~^12.^0^^~1~^^^^^^^^^^^~11/01/1976~
-~01112~^~208~^24.^0^^~4~^~NC~^^^^^^^^^^~11/01/1976~
-~01112~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2003~
-~01112~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2003~
-~01112~^~268~^100.^0^^~4~^^^^^^^^^^^~12/01/2006~
-~01112~^~301~^103.^15^3.^~1~^^^^^^^^^^^~11/01/1976~
-~01112~^~304~^10.^15^0.^~1~^^^^^^^^^^^~11/01/1976~
-~01112~^~305~^78.^14^3.^~1~^^^^^^^^^^^~11/01/1976~
-~01112~^~306~^143.^5^5.^~1~^^^^^^^^^^^~11/01/1976~
-~01112~^~307~^48.^5^3.^~1~^^^^^^^^^^^~11/01/1976~
-~01112~^~318~^7.^0^^~4~^~NC~^^^^^^^^^^~01/01/2003~
-~01112~^~319~^2.^0^^~4~^~NC~^^^^^^^^^^~01/01/2003~
-~01112~^~320~^2.^0^^~4~^~NC~^^^^^^^^^^~01/01/2003~
-~01112~^~321~^0.^0^^~4~^~BFFN~^~01012~^^^^^^^^^~01/01/2003~
-~01112~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2003~
-~01112~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2003~
-~01112~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2003~
-~01112~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2003~
-~01112~^~417~^2.^0^^~1~^^^^^^^^^^^~11/01/1976~
-~01112~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~
-~01112~^~432~^2.^0^^~1~^^^^^^^^^^^~01/01/2003~
-~01112~^~435~^2.^0^^~4~^~NC~^^^^^^^^^^~12/01/2006~
-~01112~^~601~^1.^0^^~4~^^^^^^^^^^^~11/01/1976~
-~01113~^~208~^339.^0^^~4~^~NC~^^^^^^^^^^~11/01/1976~
-~01113~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2003~
-~01113~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2003~
-~01113~^~268~^1419.^0^^~4~^^^^^^^^^^^~12/01/2006~
-~01113~^~301~^2054.^23^105.^~1~^^^^^^^^^^^~11/01/1976~
-~01113~^~304~^199.^19^9.^~1~^^^^^^^^^^^~11/01/1976~
-~01113~^~305~^1349.^20^82.^~1~^^^^^^^^^^^~11/01/1976~
-~01113~^~306~^2289.^20^97.^~1~^^^^^^^^^^^~11/01/1976~
-~01113~^~307~^968.^18^85.^~1~^^^^^^^^^^^~11/01/1976~
-~01113~^~318~^59.^0^^~4~^~NC~^^^^^^^^^^~03/01/2003~
-~01113~^~319~^17.^0^^~4~^~NC~^^^^^^^^^^~01/01/2003~
-~01113~^~320~^17.^0^^~4~^~NC~^^^^^^^^^^~01/01/2003~
-~01113~^~321~^1.^0^^~4~^~BFFN~^~01012~^^^^^^^^^~01/01/2003~
-~01113~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2003~
-~01113~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~
-~01113~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2003~
-~01113~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2003~
-~01113~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2003~
-~01113~^~417~^33.^10^4.^~1~^^^^^^^^^^^~11/01/1976~
-~01113~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~
-~01113~^~432~^33.^10^4.^~1~^^^^^^^^^^^~01/01/2003~
-~01113~^~435~^33.^0^^~4~^~NC~^^^^^^^^^^~12/01/2006~
-~01113~^~601~^3.^0^^~4~^^^^^^^^^^^~11/01/1976~
-~01114~^~208~^27.^0^^~4~^~NC~^^^^^^^^^^~11/01/1976~
-~01114~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2003~
-~01114~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2003~
-~01114~^~268~^112.^0^^~4~^^^^^^^^^^^~12/01/2006~
-~01114~^~301~^47.^37^1.^~1~^^^^^^^^^^^~11/01/1976~
-~01114~^~304~^8.^7^0.^~1~^^^^^^^^^^^~11/01/1976~
-~01114~^~305~^46.^37^0.^~1~^^^^^^^^^^^~11/01/1976~
-~01114~^~306~^161.^11^3.^~1~^^^^^^^^^^^~11/01/1976~
-~01114~^~307~^54.^9^4.^~1~^^^^^^^^^^^~11/01/1976~
-~01114~^~318~^12.^0^^~4~^~NC~^^^^^^^^^^~01/01/2003~
-~01114~^~319~^3.^0^^~4~^~NC~^^^^^^^^^^~01/01/2003~
-~01114~^~320~^3.^0^^~4~^~NC~^^^^^^^^^^~01/01/2003~
-~01114~^~321~^1.^0^^~4~^~BFFN~^~01012~^^^^^^^^^~01/01/2003~
-~01114~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2003~
-~01114~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2003~
-~01114~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2003~
-~01114~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2003~
-~01114~^~417~^1.^0^^~1~^^^^^^^^^^^~11/01/1976~
-~01114~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~
-~01114~^~432~^1.^0^^~1~^^^^^^^^^^^~01/01/2003~
-~01114~^~435~^1.^0^^~4~^~NC~^^^^^^^^^^~12/01/2006~
-~01114~^~601~^2.^1^^~1~^^^^^^^^^^^~11/01/1976~
-~01115~^~208~^353.^0^^~4~^~NC~^^^^^^^^^^~11/01/1976~
-~01115~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~11/01/2002~
-~01115~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~11/01/2002~
-~01115~^~268~^1476.^0^^~4~^^^^^^^^^^^~12/01/2006~
-~01115~^~301~^796.^66^31.^~1~^^^^^^^^^^^~11/01/1976~
-~01115~^~304~^176.^41^5.^~1~^^^^^^^^^^^~11/01/1976~
-~01115~^~305~^932.^65^39.^~1~^^^^^^^^^^^~11/01/1976~
-~01115~^~306~^2080.^60^50.^~1~^^^^^^^^^^^~11/01/1976~
-~01115~^~307~^1079.^62^67.^~1~^^^^^^^^^^^~11/01/1976~
-~01115~^~318~^30.^0^^~4~^~NC~^^^^^^^^^^~03/01/2003~
-~01115~^~319~^8.^0^^~4~^~NC~^^^^^^^^^^~11/01/2002~
-~01115~^~320~^8.^0^^~4~^~NC~^^^^^^^^^^~11/01/2002~
-~01115~^~321~^2.^0^^~4~^~BFFN~^~01077~^^^^^^^^^~11/01/2002~
-~01115~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~11/01/2002~
-~01115~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~
-~01115~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~11/01/2002~
-~01115~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~11/01/2002~
-~01115~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~11/01/2002~
-~01115~^~417~^12.^40^0.^~1~^^^^^^^^^^^~11/01/1976~
-~01115~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~
-~01115~^~432~^12.^40^0.^~1~^^^^^^^^^^^~11/01/2002~
-~01115~^~435~^12.^0^^~4~^~NC~^^^^^^^^^^~12/01/2006~
-~01115~^~601~^6.^0^^~1~^^^^^^^^^^^~11/01/1976~
-~01116~^~208~^61.^0^^~4~^~NC~^^^^^^^^^^~02/01/2009~
-~01116~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2003~
-~01116~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2003~
-~01116~^~268~^257.^0^^~4~^~NC~^^^^^^^^^^~02/01/2009~
-~01116~^~301~^121.^0^^~1~^^^^^^^^^^^~11/01/1976~
-~01116~^~304~^12.^0^^~1~^^^^^^^^^^^~11/01/1976~
-~01116~^~305~^95.^0^^~1~^^^^^^^^^^^~11/01/1976~
-~01116~^~306~^155.^0^^~1~^^^^^^^^^^^~11/01/1976~
-~01116~^~307~^46.^0^^~1~^^^^^^^^^^^~11/01/1976~
-~01116~^~318~^99.^0^^~4~^~NC~^^^^^^^^^^~02/01/2009~
-~01116~^~319~^27.^0^^~4~^~T~^^^^^^^^^^~02/01/2009~
-~01116~^~320~^27.^0^^~4~^~NC~^^^^^^^^^^~02/01/2009~
-~01116~^~321~^5.^0^^~4~^~BFFN~^~01077~^^^^^^^^^~01/01/2003~
-~01116~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2003~
-~01116~^~324~^2.^0^^~4~^~BFFN~^~01211~^^^^^^^^^~02/01/2009~
-~01116~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2003~
-~01116~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2003~
-~01116~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2003~
-~01116~^~417~^7.^0^^~1~^^^^^^^^^^^~11/01/1976~
-~01116~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~
-~01116~^~432~^7.^0^^~1~^^^^^^^^^^^~02/01/2009~
-~01116~^~435~^7.^0^^~4~^~NC~^^^^^^^^^^~02/01/2009~
-~01116~^~601~^13.^0^^~1~^^^^^^^^^^^~11/01/1976~
-~01117~^~208~^63.^0^^~4~^~NC~^^^^^^^^^^~02/01/2009~
-~01117~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2003~
-~01117~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2003~
-~01117~^~268~^265.^0^^~4~^~NC~^^^^^^^^^^~02/01/2009~
-~01117~^~301~^183.^14^5.^~1~^^^^^^^^^^^~11/01/1976~
-~01117~^~304~^17.^4^1.^~1~^^^^^^^^^^^~11/01/1976~
-~01117~^~305~^144.^16^5.^~1~^^^^^^^^^^^~11/01/1976~
-~01117~^~306~^234.^7^^~1~^^^^^^^^^^^~11/01/1976~
-~01117~^~307~^70.^9^^~1~^^^^^^^^^^^~11/01/1976~
-~01117~^~318~^51.^0^^~4~^~NC~^^^^^^^^^^~02/01/2009~
-~01117~^~319~^14.^0^^~4~^~T~^^^^^^^^^^~02/01/2009~
-~01117~^~320~^14.^0^^~4~^~NC~^^^^^^^^^^~02/01/2009~
-~01117~^~321~^2.^0^^~4~^~BFFN~^~01077~^^^^^^^^^~01/01/2003~
-~01117~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2003~
-~01117~^~324~^1.^0^^~4~^~BFFN~^~01211~^^^^^^^^^~02/01/2009~
-~01117~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2003~
-~01117~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2003~
-~01117~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2003~
-~01117~^~417~^11.^4^1.^~1~^^^^^^^^^^^~11/01/1976~
-~01117~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~
-~01117~^~432~^11.^4^1.^~1~^^^^^^^^^^^~02/01/2009~
-~01117~^~435~^11.^0^^~4~^~NC~^^^^^^^^^^~02/01/2009~
-~01117~^~601~^6.^5^0.^~1~^^^^^^^^^^^~11/01/1976~
-~01118~^~208~^56.^0^^~4~^~NC~^^^^^^^^^^~02/01/2009~
-~01118~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2003~
-~01118~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2003~
-~01118~^~268~^233.^0^^~4~^~NC~^^^^^^^^^^~02/01/2009~
-~01118~^~301~^199.^0^^~1~^^^^^^^^^^^~11/01/1976~
-~01118~^~304~^19.^0^^~1~^^^^^^^^^^^~11/01/1976~
-~01118~^~305~^157.^0^^~1~^^^^^^^^^^^~11/01/1976~
-~01118~^~306~^255.^0^^~1~^^^^^^^^^^^~11/01/1976~
-~01118~^~307~^77.^0^^~1~^^^^^^^^^^^~11/01/1976~
-~01118~^~318~^7.^0^^~4~^~NC~^^^^^^^^^^~02/01/2009~
-~01118~^~319~^2.^0^^~4~^~T~^^^^^^^^^^~02/01/2009~
-~01118~^~320~^2.^0^^~4~^~NC~^^^^^^^^^^~02/01/2009~
-~01118~^~321~^0.^0^^~4~^~BFFN~^~01077~^^^^^^^^^~01/01/2003~
-~01118~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2003~
-~01118~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~
-~01118~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2003~
-~01118~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2003~
-~01118~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2003~
-~01118~^~417~^12.^0^^~1~^^^^^^^^^^^~11/01/1976~
-~01118~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~
-~01118~^~432~^12.^0^^~1~^^^^^^^^^^^~02/01/2009~
-~01118~^~435~^12.^0^^~4~^~NC~^^^^^^^^^^~02/01/2009~
-~01118~^~601~^2.^0^^~1~^^^^^^^^^^^~11/01/1976~
-~01119~^~208~^85.^0^^~4~^~NC~^^^^^^^^^^~02/01/2009~
-~01119~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2003~
-~01119~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2003~
-~01119~^~268~^358.^0^^~4~^~NC~^^^^^^^^^^~02/01/2009~
-~01119~^~301~^171.^0^^~1~^^^^^^^^^^^~11/01/1976~
-~01119~^~304~^16.^0^^~1~^^^^^^^^^^^~11/01/1976~
-~01119~^~305~^135.^0^^~1~^^^^^^^^^^^~11/01/1976~
-~01119~^~306~^219.^0^^~1~^^^^^^^^^^^~11/01/1976~
-~01119~^~307~^66.^0^^~1~^^^^^^^^^^^~11/01/1976~
-~01119~^~318~^43.^0^^~4~^~NC~^^^^^^^^^^~02/01/2009~
-~01119~^~319~^12.^0^^~4~^~T~^^^^^^^^^^~02/01/2009~
-~01119~^~320~^12.^0^^~4~^~NC~^^^^^^^^^^~02/01/2009~
-~01119~^~321~^2.^0^^~4~^~BFFN~^~01077~^^^^^^^^^~01/01/2003~
-~01119~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2003~
-~01119~^~324~^1.^0^^~4~^~BFFN~^~01211~^^^^^^^^^~02/01/2009~
-~01119~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2003~
-~01119~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2003~
-~01119~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2003~
-~01119~^~417~^11.^0^^~1~^^^^^^^^^^^~11/01/1976~
-~01119~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~
-~01119~^~432~^11.^0^^~1~^^^^^^^^^^^~02/01/2009~
-~01119~^~435~^11.^0^^~4~^~NC~^^^^^^^^^^~02/01/2009~
-~01119~^~601~^5.^0^^~1~^^^^^^^^^^^~11/01/1976~
-~01120~^~208~^99.^0^^~4~^~NC~^^^^^^^^^^~02/01/2009~
-~01120~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2003~
-~01120~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2003~
-~01120~^~268~^415.^0^^~4~^~NC~^^^^^^^^^^~02/01/2009~
-~01120~^~301~^138.^0^^~1~^^^^^^^^^^^~11/01/1976~
-~01120~^~304~^13.^0^^~1~^^^^^^^^^^^~11/01/1976~
-~01120~^~305~^109.^0^^~1~^^^^^^^^^^^~11/01/1976~
-~01120~^~306~^177.^0^^~1~^^^^^^^^^^^~11/01/1976~
-~01120~^~307~^53.^0^^~1~^^^^^^^^^^^~11/01/1976~
-~01120~^~318~^40.^0^^~4~^~NC~^^^^^^^^^^~02/01/2009~
-~01120~^~319~^11.^0^^~4~^~T~^^^^^^^^^^~02/01/2009~
-~01120~^~320~^11.^0^^~4~^~NC~^^^^^^^^^^~02/01/2009~
-~01120~^~321~^2.^0^^~4~^~BFFN~^~01077~^^^^^^^^^~01/01/2003~
-~01120~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2003~
-~01120~^~324~^1.^0^^~4~^~BFFN~^~01211~^^^^^^^^^~02/01/2009~
-~01120~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2003~
-~01120~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2003~
-~01120~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2003~
-~01120~^~417~^9.^0^^~1~^^^^^^^^^^^~11/01/1976~
-~01120~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~
-~01120~^~432~^9.^0^^~1~^^^^^^^^^^^~02/01/2009~
-~01120~^~435~^9.^0^^~4~^~NC~^^^^^^^^^^~03/01/2009~
-~01120~^~601~^5.^0^^~1~^^^^^^^^^^^~11/01/1976~
-~01121~^~208~^102.^0^^~4~^~NC~^^^^^^^^^^~02/01/2009~
-~01121~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2003~
-~01121~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2003~
-~01121~^~268~^426.^0^^~4~^~NC~^^^^^^^^^^~02/01/2009~
-~01121~^~301~^152.^0^^~1~^^^^^^^^^^^~11/01/1976~
-~01121~^~304~^15.^0^^~1~^^^^^^^^^^^~11/01/1976~
-~01121~^~305~^119.^0^^~1~^^^^^^^^^^^~11/01/1976~
-~01121~^~306~^195.^0^^~1~^^^^^^^^^^^~11/01/1976~
-~01121~^~307~^58.^0^^~1~^^^^^^^^^^^~11/01/1976~
-~01121~^~318~^36.^0^^~4~^~NC~^^^^^^^^^^~02/01/2009~
-~01121~^~319~^10.^0^^~4~^~T~^^^^^^^^^^~02/01/2009~
-~01121~^~320~^10.^0^^~4~^~NC~^^^^^^^^^^~02/01/2009~
-~01121~^~321~^2.^0^^~4~^~BFFN~^~01077~^^^^^^^^^~01/01/2003~
-~01121~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2003~
-~01121~^~324~^1.^0^^~4~^~BFFN~^~01211~^^^^^^^^^~02/01/2009~
-~01121~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2003~
-~01121~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2003~
-~01121~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2003~
-~01121~^~417~^9.^0^^~1~^^^^^^^^^^^~11/01/1976~
-~01121~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~
-~01121~^~432~^9.^0^^~1~^^^^^^^^^^^~02/01/2009~
-~01121~^~435~^9.^0^^~4~^~NC~^^^^^^^^^^~02/01/2009~
-~01121~^~601~^4.^0^^~1~^^^^^^^^^^^~11/01/1976~
-~01122~^~208~^105.^0^^~4~^~NC~^^^^^^^^^^~03/01/2006~
-~01122~^~268~^440.^0^^~4~^~NC~^^^^^^^^^^~03/01/2006~
-~01122~^~301~^169.^0^^~1~^^^^^^^^^^^~11/01/1976~
-~01122~^~304~^16.^0^^~1~^^^^^^^^^^^~11/01/1976~
-~01122~^~305~^133.^0^^~1~^^^^^^^^^^^~11/01/1976~
-~01122~^~306~^216.^0^^~1~^^^^^^^^^^^~11/01/1976~
-~01122~^~307~^65.^0^^~1~^^^^^^^^^^^~11/01/1976~
-~01122~^~318~^60.^0^^~1~^^^^^^^^^^^~11/01/1976~
-~01122~^~417~^10.^0^^~1~^^^^^^^^^^^~11/01/1976~
-~01122~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~
-~01122~^~432~^10.^0^^~1~^^^^^^^^^^^~03/01/2006~
-~01122~^~435~^10.^0^^~4~^~NC~^^^^^^^^^^~03/01/2006~
-~01122~^~601~^6.^0^^~1~^^^^^^^^^^^~11/01/1976~
-~01123~^~208~^143.^0^^~4~^~NC~^^^^^^^^^^~03/01/2011~
-~01123~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2001~
-~01123~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2001~
-~01123~^~268~^599.^0^^~4~^~NC~^^^^^^^^^^~03/01/2011~
-~01123~^~301~^56.^6^0.^~1~^~A~^^^1^54.^58.^5^54.^57.^~2, 3~^~08/01/2010~
-~01123~^~304~^12.^6^0.^~1~^~A~^^^1^11.^13.^5^11.^12.^~2, 3~^~08/01/2010~
-~01123~^~305~^198.^6^1.^~1~^~A~^^^1^193.^205.^5^193.^203.^~2, 3~^~08/01/2010~
-~01123~^~306~^138.^6^1.^~1~^~A~^^^1^132.^142.^5^134.^142.^~2, 3~^~08/01/2010~
-~01123~^~307~^142.^6^1.^~1~^~A~^^^1^139.^147.^5^139.^145.^~2, 3~^~08/01/2010~
-~01123~^~318~^540.^0^^~1~^~AS~^^^^^^^^^^~08/01/2010~
-~01123~^~319~^160.^6^6.^~1~^~A~^^^1^139.^187.^5^142.^176.^~2, 3~^~08/01/2010~
-~01123~^~320~^160.^0^^~1~^~AS~^^^^^^^^^^~08/01/2010~
-~01123~^~321~^0.^6^0.^~1~^~A~^^^1^0.^0.^^^^~1, 2, 3~^~08/01/2010~
-~01123~^~322~^0.^6^0.^~1~^~A~^^^1^0.^0.^^^^~1, 2, 3~^~08/01/2010~
-~01123~^~324~^82.^10^32.^~1~^~A~^^^1^39.^368.^9^9.^154.^~2, 3~^~09/01/2010~
-~01123~^~334~^9.^6^0.^~1~^~A~^^^1^7.^12.^5^7.^10.^~2, 3~^~08/01/2010~
-~01123~^~337~^0.^6^0.^~1~^~A~^^^1^0.^0.^^^^~1, 2, 3~^~08/01/2010~
-~01123~^~338~^503.^6^20.^~1~^~A~^^^1^431.^575.^5^449.^557.^~2, 3~^~08/01/2010~
-~01123~^~417~^47.^23^4.^~1~^~A~^^^2^^^^^^^~11/01/2002~
-~01123~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~
-~01123~^~432~^47.^23^4.^~1~^~A~^^^2^^^^^^^~09/01/2010~
-~01123~^~435~^47.^0^^~4~^~NC~^^^^^^^^^^~09/01/2010~
-~01123~^~601~^372.^12^6.^~1~^~A~^^^1^344.^405.^11^356.^386.^~2, 3~^~08/01/2010~
-~01124~^~208~^52.^0^^~4~^~NC~^^^^^^^^^^~09/01/2010~
-~01124~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2001~
-~01124~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2001~
-~01124~^~268~^216.^0^^~4~^~NC~^^^^^^^^^^~09/01/2010~
-~01124~^~301~^7.^12^0.^~1~^~A~^^^1^5.^9.^11^5.^7.^~2, 3~^~03/01/2003~
-~01124~^~304~^11.^12^0.^~1~^~A~^^^1^10.^12.^11^10.^11.^~2, 3~^~03/01/2003~
-~01124~^~305~^15.^12^0.^~1~^~A~^^^1^13.^17.^11^13.^15.^~2, 3~^~03/01/2003~
-~01124~^~306~^163.^12^1.^~1~^~A~^^^1^148.^173.^11^158.^166.^~2, 3~^~03/01/2003~
-~01124~^~307~^166.^12^1.^~1~^~A~^^^1^159.^179.^11^162.^170.^~2, 3~^~03/01/2003~
-~01124~^~318~^0.^0^^~1~^~AS~^^^^^^^^^^~12/01/2006~
-~01124~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2002~
-~01124~^~320~^0.^0^^~1~^~AS~^^^^^^^^^^~12/01/2006~
-~01124~^~321~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2003~
-~01124~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2003~
-~01124~^~324~^0.^0^^~4~^~T~^^^^^^^^^^~02/01/2001~
-~01124~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2003~
-~01124~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2003~
-~01124~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2003~
-~01124~^~417~^4.^4^0.^~1~^~A~^^^1^4.^4.^^^^~1, 2, 3~^~03/01/2003~
-~01124~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~
-~01124~^~432~^4.^4^0.^~1~^~A~^^^1^4.^4.^^^^^~12/01/2006~
-~01124~^~435~^4.^0^^~4~^~NC~^^^^^^^^^^~12/01/2006~
-~01124~^~601~^0.^0^^~1~^^^^^^^^^^^~04/01/1985~
-~01125~^~208~^322.^0^^~4~^~NC~^^^^^^^^^^~09/01/2010~
-~01125~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2001~
-~01125~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2001~
-~01125~^~268~^1346.^0^^~4~^~NC~^^^^^^^^^^~09/01/2010~
-~01125~^~301~^129.^12^2.^~1~^~A~^^^1^118.^153.^11^123.^134.^~2, 3~^~03/01/2003~
-~01125~^~304~^5.^12^0.^~1~^~A~^^^1^3.^6.^11^4.^5.^~2, 3~^~03/01/2003~
-~01125~^~305~^390.^12^9.^~1~^~A~^^^1^352.^437.^11^368.^411.^~2, 3~^~03/01/2003~
-~01125~^~306~^109.^12^3.^~1~^~A~^^^1^90.^134.^11^100.^117.^~2, 3~^~03/01/2003~
-~01125~^~307~^48.^12^1.^~1~^~A~^^^1^39.^58.^11^44.^51.^~2, 3~^~03/01/2003~
-~01125~^~318~^1442.^0^^~4~^~NC~^^^^^^^^^^~09/01/2010~
-~01125~^~319~^371.^0^^~4~^~BFFN~^~01123~^^^^^^^^^~01/01/2003~
-~01125~^~320~^381.^0^^~4~^~NC~^^^^^^^^^^~09/01/2010~
-~01125~^~321~^88.^4^12.^~1~^~A~^^^1^70.^124.^3^49.^127.^~2, 3~^~01/01/2003~
-~01125~^~322~^38.^4^4.^~1~^~A~^^^1^28.^51.^3^22.^53.^~2, 3~^~01/01/2003~
-~01125~^~324~^218.^0^^~4~^~O~^^^^^^^^^^~09/01/2010~
-~01125~^~334~^33.^4^2.^~1~^~A~^^^1^25.^38.^3^24.^42.^~2, 3~^~01/01/2003~
-~01125~^~337~^0.^4^0.^~1~^~A~^^^1^0.^0.^^^^~1, 2, 3~^~01/01/2003~
-~01125~^~338~^1094.^0^^~4~^~NR~^^^^^^^^^^~01/01/2003~
-~01125~^~417~^146.^7^6.^~1~^^^^^^^^^^^~11/01/1976~
-~01125~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~
-~01125~^~432~^146.^7^6.^~1~^^^^^^^^^^^~09/01/2010~
-~01125~^~435~^146.^0^^~4~^~NC~^^^^^^^^^^~09/01/2010~
-~01125~^~601~^1085.^0^^~4~^~O~^^^^^^^^^^~08/01/2010~
-~01126~^~208~^296.^0^^~4~^~NC~^^^^^^^^^^~06/01/2015~
-~01126~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2003~
-~01126~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2003~
-~01126~^~268~^1238.^0^^~4~^~NC~^^^^^^^^^^~06/01/2015~
-~01126~^~301~^134.^15^2.^~1~^~A~^^^1^117.^158.^14^127.^140.^~4~^~04/01/2015~
-~01126~^~304~^11.^3^^~1~^~A~^^^1^10.^12.^^^^~2~^~04/01/2012~
-~01126~^~305~^420.^3^^~1~^~A~^^^1^378.^443.^^^^~2~^~04/01/2012~
-~01126~^~306~^121.^3^^~1~^~A~^^^1^118.^126.^^^^~2~^~04/01/2012~
-~01126~^~307~^67.^15^0.^~1~^~A~^^^1^61.^72.^14^64.^68.^~4~^~04/01/2015~
-~01126~^~318~^1469.^0^^~4~^~NC~^^^^^^^^^^~06/01/2015~
-~01126~^~319~^419.^15^12.^~1~^~A~^^^1^262.^466.^14^391.^445.^~4~^~04/01/2015~
-~01126~^~320~^422.^0^^~4~^~NC~^^^^^^^^^^~02/01/2017~
-~01126~^~321~^10.^3^^~1~^~A~^^^1^0.^31.^^^^~1, 2~^~04/01/2012~
-~01126~^~322~^36.^0^^~4~^~BFFN~^~01125~^^^^^^^^^~01/01/2003~
-~01126~^~324~^238.^0^^~4~^~NR~^^^^^^^^^^~06/01/2015~
-~01126~^~334~^32.^0^^~4~^~BFFN~^~01125~^^^^^^^^^~01/01/2003~
-~01126~^~337~^0.^0^^~4~^~BFFN~^~01125~^^^^^^^^^~01/01/2003~
-~01126~^~338~^904.^3^^~1~^~A~^^^1^646.^1226.^^^^~2~^~04/01/2012~
-~01126~^~417~^151.^3^^~1~^~A~^^^1^140.^169.^^^^~2~^~04/01/2012~
-~01126~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~
-~01126~^~432~^151.^3^^~1~^~A~^^^1^140.^169.^^^^^~04/01/2012~
-~01126~^~435~^151.^0^^~4~^~NC~^^^^^^^^^^~04/01/2012~
-~01126~^~601~^991.^3^^~1~^~A~^^^1^960.^1030.^^^^~2~^~07/01/2015~
-~01127~^~208~^307.^0^^~4~^~NC~^^^^^^^^^^~08/01/1997~
-~01127~^~262~^0.^0^^~4~^~BFZN~^~01125~^^^^^^^^^~04/01/2012~
-~01127~^~263~^0.^0^^~4~^~BFZN~^~01125~^^^^^^^^^~04/01/2012~
-~01127~^~268~^1283.^0^^~4~^~NC~^^^^^^^^^^~04/01/2012~
-~01127~^~301~^124.^3^^~1~^~A~^^^1^122.^126.^^^^~2~^~04/01/2012~
-~01127~^~304~^10.^3^^~1~^~A~^^^1^10.^11.^^^^~2~^~05/01/1996~
-~01127~^~305~^404.^3^^~1~^~A~^^^1^399.^407.^^^^~2~^~04/01/2012~
-~01127~^~306~^105.^3^^~1~^~A~^^^1^99.^109.^^^^~2~^~04/01/2012~
-~01127~^~307~^70.^3^^~1~^~A~^^^1^65.^74.^^^^~2~^~04/01/2012~
-~01127~^~318~^1103.^0^^~4~^~NC~^~01160~^^^^^^^^^~08/01/2012~
-~01127~^~319~^313.^0^^~4~^~BFZN~^~01160~^^^^^^^^^~08/01/2012~
-~01127~^~320~^316.^0^^~4~^~NC~^~01160~^^^^^^^^^~08/01/2012~
-~01127~^~321~^0.^3^^~1~^~A~^^^1^0.^0.^^^^~1, 2~^~04/01/2012~
-~01127~^~322~^38.^0^^~4~^~BFZN~^~01125~^^^^^^^^^~04/01/2012~
-~01127~^~324~^123.^3^^~1~^~A~^^^1^84.^182.^^^^~2~^~04/01/2012~
-~01127~^~334~^33.^0^^~4~^~BFZN~^~01125~^^^^^^^^^~04/01/2012~
-~01127~^~337~^0.^0^^~4~^~BFZN~^~01125~^^^^^^^^^~04/01/2012~
-~01127~^~338~^967.^3^^~1~^~A~^^^1^841.^1124.^^^^~2~^~04/01/2012~
-~01127~^~417~^174.^3^^~1~^~A~^^^1^163.^189.^^^^~2~^~04/01/2012~
-~01127~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~
-~01127~^~432~^174.^3^^~1~^~A~^^^1^163.^189.^^^^^~04/01/2012~
-~01127~^~435~^174.^0^^~4~^~NC~^^^^^^^^^^~04/01/2012~
-~01127~^~601~^917.^3^^~1~^~A~^^^1^876.^949.^^^^~2~^~04/01/2012~
-~01128~^~208~^196.^0^^~4~^~NC~^^^^^^^^^^~09/01/2010~
-~01128~^~262~^0.^0^^~4~^~RA~^^^^^^^^^^~01/01/2003~
-~01128~^~263~^0.^0^^~4~^~RA~^^^^^^^^^^~01/01/2003~
-~01128~^~268~^821.^0^^~4~^~NC~^^^^^^^^^^~09/01/2010~
-~01128~^~301~^62.^0^^~4~^~RA~^^^^^^^^^^~08/01/2010~
-~01128~^~304~^13.^0^^~4~^~RA~^^^^^^^^^^~08/01/2010~
-~01128~^~305~^215.^0^^~4~^~RA~^^^^^^^^^^~08/01/2010~
-~01128~^~306~^152.^0^^~4~^~RA~^^^^^^^^^^~08/01/2010~
-~01128~^~307~^207.^0^^~4~^~RA~^^^^^^^^^^~08/01/2010~
-~01128~^~318~^787.^0^^~4~^~RA~^^^^^^^^^^~08/01/2010~
-~01128~^~319~^216.^0^^~4~^~RA~^^^^^^^^^^~08/01/2010~
-~01128~^~320~^219.^0^^~4~^~RA~^^^^^^^^^^~08/01/2010~
-~01128~^~321~^35.^0^^~4~^~RA~^^^^^^^^^^~08/01/2010~
-~01128~^~322~^0.^0^^~4~^~RA~^^^^^^^^^^~01/01/2003~
-~01128~^~324~^88.^0^^~4~^~RA~^^^^^^^^^^~09/01/2010~
-~01128~^~334~^10.^0^^~4~^~RA~^^^^^^^^^^~08/01/2010~
-~01128~^~337~^0.^0^^~4~^~RA~^^^^^^^^^^~01/01/2003~
-~01128~^~338~^543.^0^^~4~^~RA~^^^^^^^^^^~08/01/2010~
-~01128~^~417~^51.^0^^~4~^~RA~^^^^^^^^^^~03/01/2003~
-~01128~^~431~^0.^0^^~4~^~RA~^^^^^^^^^^~01/01/2003~
-~01128~^~432~^51.^0^^~4~^~RA~^^^^^^^^^^~01/01/2003~
-~01128~^~435~^51.^0^^~4~^~NC~^^^^^^^^^^~09/01/2010~
-~01128~^~601~^401.^0^^~4~^~RA~^^^^^^^^^^~08/01/2010~
-~01128~^~636~^8.^0^^~4~^~RA~^^^^^^^^^^~01/01/2003~
-~01129~^~208~^155.^0^^~4~^~NC~^^^^^^^^^^~02/01/2009~
-~01129~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2003~
-~01129~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2003~
-~01129~^~268~^649.^0^^~4~^^^^^^^^^^^~02/01/2009~
-~01129~^~301~^50.^14^0.^~1~^^^^^^^^^^^~11/01/1976~
-~01129~^~304~^10.^14^0.^~1~^^^^^^^^^^^~11/01/1976~
-~01129~^~305~^172.^14^3.^~1~^^^^^^^^^^^~11/01/1976~
-~01129~^~306~^126.^14^2.^~1~^^^^^^^^^^^~11/01/1976~
-~01129~^~307~^124.^14^1.^~1~^^^^^^^^^^^~11/01/1976~
-~01129~^~318~^520.^0^^~4~^~NC~^^^^^^^^^^~09/01/2010~
-~01129~^~319~^148.^0^^~4~^~BFFN~^~01123~^^^^^^^^^~02/01/2009~
-~01129~^~320~^149.^0^^~4~^~NC~^^^^^^^^^^~09/01/2010~
-~01129~^~321~^11.^0^^~4~^~BFFN~^~01123~^^^^^^^^^~01/01/2003~
-~01129~^~322~^0.^0^^~4~^~BFFN~^~01123~^^^^^^^^^~01/01/2003~
-~01129~^~324~^87.^0^^~4~^~O~^^^^^^^^^^~09/01/2010~
-~01129~^~334~^10.^0^^~4~^~BFFN~^~01123~^^^^^^^^^~01/01/2003~
-~01129~^~337~^0.^0^^~4~^~BFFN~^~01123~^^^^^^^^^~01/01/2003~
-~01129~^~338~^353.^0^^~4~^~BFFN~^~01123~^^^^^^^^^~01/01/2003~
-~01129~^~417~^44.^14^2.^~1~^^^^^^^^^^^~11/01/1976~
-~01129~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~
-~01129~^~432~^44.^14^2.^~1~^^^^^^^^^^^~09/01/2010~
-~01129~^~435~^44.^0^^~4~^~NC~^^^^^^^^^^~09/01/2010~
-~01129~^~601~^373.^0^^~4~^~O~^^^^^^^^^^~08/01/2010~
-~01130~^~208~^154.^0^^~4~^~NC~^^^^^^^^^^~09/01/2010~
-~01130~^~262~^0.^0^^~4~^~RA~^^^^^^^^^^~01/01/2003~
-~01130~^~263~^0.^0^^~4~^~RA~^^^^^^^^^^~01/01/2003~
-~01130~^~268~^643.^0^^~4~^~NC~^^^^^^^^^^~09/01/2010~
-~01130~^~301~^48.^0^^~4~^~RA~^^^^^^^^^^~08/01/2010~
-~01130~^~304~^11.^0^^~4~^~RA~^^^^^^^^^^~08/01/2010~
-~01130~^~305~^167.^0^^~4~^~RA~^^^^^^^^^^~08/01/2010~
-~01130~^~306~^117.^0^^~4~^~RA~^^^^^^^^^^~08/01/2010~
-~01130~^~307~^155.^0^^~4~^~RA~^^^^^^^^^^~08/01/2010~
-~01130~^~318~^617.^0^^~4~^~RA~^^^^^^^^^^~08/01/2010~
-~01130~^~319~^169.^0^^~4~^~RA~^^^^^^^^^^~08/01/2010~
-~01130~^~320~^172.^0^^~4~^~RA~^^^^^^^^^^~08/01/2010~
-~01130~^~321~^28.^0^^~4~^~RA~^^^^^^^^^^~08/01/2010~
-~01130~^~322~^0.^0^^~4~^~RA~^^^^^^^^^^~01/01/2003~
-~01130~^~324~^69.^0^^~4~^~RA~^^^^^^^^^^~09/01/2010~
-~01130~^~334~^8.^0^^~4~^~RA~^^^^^^^^^^~08/01/2010~
-~01130~^~337~^0.^0^^~4~^~RA~^^^^^^^^^^~01/01/2003~
-~01130~^~338~^423.^0^^~4~^~RA~^^^^^^^^^^~08/01/2010~
-~01130~^~417~^39.^0^^~4~^~RA~^^^^^^^^^^~03/01/2007~
-~01130~^~431~^0.^0^^~4~^~RA~^^^^^^^^^^~01/01/2003~
-~01130~^~432~^39.^0^^~4~^~RA~^^^^^^^^^^~03/01/2007~
-~01130~^~435~^39.^0^^~4~^~NC~^^^^^^^^^^~09/01/2010~
-~01130~^~601~^313.^0^^~4~^~RA~^^^^^^^^^^~08/01/2010~
-~01130~^~636~^10.^0^^~1~^^^^^^^^^^^~09/01/2010~
-~01131~^~208~^143.^0^^~4~^~NC~^^^^^^^^^^~05/01/2011~
-~01131~^~262~^0.^0^^~4~^~RK~^^^^^^^^^^~03/01/2007~
-~01131~^~263~^0.^0^^~4~^~RK~^^^^^^^^^^~03/01/2007~
-~01131~^~268~^597.^0^^~4~^~NC~^^^^^^^^^^~05/01/2011~
-~01131~^~301~^56.^0^^~4~^~RK~^^^^^^^^^^~08/01/2010~
-~01131~^~304~^12.^0^^~4~^~RK~^^^^^^^^^^~08/01/2010~
-~01131~^~305~^197.^0^^~4~^~RK~^^^^^^^^^^~08/01/2010~
-~01131~^~306~^138.^0^^~4~^~RK~^^^^^^^^^^~08/01/2010~
-~01131~^~307~^297.^0^^~4~^~RK~^^^^^^^^^^~08/01/2010~
-~01131~^~318~^538.^0^^~4~^~RK~^^^^^^^^^^~08/01/2010~
-~01131~^~319~^159.^0^^~4~^~RK~^^^^^^^^^^~08/01/2010~
-~01131~^~320~^160.^0^^~4~^~RK~^^^^^^^^^^~08/01/2010~
-~01131~^~321~^0.^0^^~4~^~RK~^^^^^^^^^^~08/01/2010~
-~01131~^~322~^0.^0^^~4~^~RK~^^^^^^^^^^~03/01/2007~
-~01131~^~324~^82.^0^^~4~^~RK~^^^^^^^^^^~05/01/2011~
-~01131~^~334~^9.^0^^~4~^~RK~^^^^^^^^^^~08/01/2010~
-~01131~^~337~^0.^0^^~4~^~RK~^^^^^^^^^^~03/01/2007~
-~01131~^~338~^501.^0^^~4~^~RK~^^^^^^^^^^~08/01/2010~
-~01131~^~417~^35.^0^^~4~^~RK~^^^^^^^^^^~03/01/2007~
-~01131~^~431~^0.^0^^~4~^~RK~^^^^^^^^^^~03/01/2007~
-~01131~^~432~^35.^0^^~4~^~RK~^^^^^^^^^^~03/01/2007~
-~01131~^~435~^35.^0^^~4~^~NC~^^^^^^^^^^~09/01/2010~
-~01131~^~601~^370.^0^^~4~^~RK~^^^^^^^^^^~08/01/2010~
-~01131~^~636~^0.^0^^~4~^~RK~^^^^^^^^^^~03/01/2007~
-~01132~^~208~^149.^0^^~4~^~NC~^^^^^^^^^^~09/01/2010~
-~01132~^~262~^0.^0^^~4~^~RA~^^^^^^^^^^~01/01/2003~
-~01132~^~263~^0.^0^^~4~^~RA~^^^^^^^^^^~01/01/2003~
-~01132~^~268~^621.^0^^~4~^~NC~^^^^^^^^^^~09/01/2010~
-~01132~^~301~^66.^0^^~4~^~RA~^^^^^^^^^^~08/01/2010~
-~01132~^~304~^11.^0^^~4~^~RA~^^^^^^^^^^~08/01/2010~
-~01132~^~305~^165.^0^^~4~^~RA~^^^^^^^^^^~08/01/2010~
-~01132~^~306~^132.^0^^~4~^~RA~^^^^^^^^^^~08/01/2010~
-~01132~^~307~^145.^0^^~4~^~RA~^^^^^^^^^^~08/01/2010~
-~01132~^~318~^578.^0^^~4~^~RA~^^^^^^^^^^~08/01/2010~
-~01132~^~319~^159.^0^^~4~^~RA~^^^^^^^^^^~08/01/2010~
-~01132~^~320~^161.^0^^~4~^~RA~^^^^^^^^^^~08/01/2010~
-~01132~^~321~^26.^0^^~4~^~RA~^^^^^^^^^^~08/01/2010~
-~01132~^~322~^0.^0^^~4~^~RA~^^^^^^^^^^~01/01/2003~
-~01132~^~324~^72.^0^^~4~^~RA~^^^^^^^^^^~09/01/2010~
-~01132~^~334~^7.^0^^~4~^~RA~^^^^^^^^^^~08/01/2010~
-~01132~^~337~^0.^0^^~4~^~RA~^^^^^^^^^^~01/01/2003~
-~01132~^~338~^372.^0^^~4~^~RA~^^^^^^^^^^~08/01/2010~
-~01132~^~417~^36.^0^^~4~^~RA~^^^^^^^^^^~08/01/2010~
-~01132~^~431~^0.^0^^~4~^~RA~^^^^^^^^^^~02/01/2009~
-~01132~^~432~^36.^0^^~4~^~RA~^^^^^^^^^^~08/01/2010~
-~01132~^~435~^36.^0^^~4~^~NC~^^^^^^^^^^~09/01/2010~
-~01132~^~601~^277.^0^^~4~^~RA~^^^^^^^^^^~08/01/2010~
-~01132~^~636~^10.^0^^~1~^^^^^^^^^^^~09/01/2010~
-~01133~^~208~^592.^0^^~4~^~NC~^^^^^^^^^^~06/01/2015~
-~01133~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2001~
-~01133~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2001~
-~01133~^~268~^2476.^0^^~4~^~NC~^^^^^^^^^^~06/01/2015~
-~01133~^~301~^244.^15^8.^~1~^~A~^^^1^186.^295.^14^225.^263.^~4~^~04/01/2015~
-~01133~^~304~^34.^0^^~4~^~BFSN~^~01171~^^^^^^^^^~08/01/2012~
-~01133~^~305~^629.^3^^~1~^~A~^^^1^609.^666.^^^^~2~^~04/01/2012~
-~01133~^~306~^540.^3^^~1~^~A~^^^1^522.^571.^^^^~2~^~04/01/2012~
-~01133~^~307~^476.^15^11.^~1~^~A~^^^1^397.^547.^14^450.^501.^~4~^~04/01/2015~
-~01133~^~318~^1029.^0^^~4~^~NC~^^^^^^^^^^~02/01/2017~
-~01133~^~319~^300.^15^21.^~1~^~A~^^^1^223.^448.^14^254.^344.^~4~^~04/01/2015~
-~01133~^~320~^301.^0^^~4~^~NC~^^^^^^^^^^~02/01/2017~
-~01133~^~321~^0.^3^^~1~^~A~^^^1^0.^0.^^^^~1, 2~^~04/01/2012~
-~01133~^~322~^0.^0^^~4~^~BFSN~^~01123~^^^^^^^^^~02/01/2009~
-~01133~^~324~^331.^0^^~4~^~NR~^^^^^^^^^^~06/01/2015~
-~01133~^~334~^36.^0^^~4~^~BFSN~^~01123~^^^^^^^^^~03/01/2007~
-~01133~^~337~^0.^0^^~4~^~BFSN~^~01123~^^^^^^^^^~02/01/2009~
-~01133~^~338~^835.^3^^~1~^~A~^^^1^763.^923.^^^^~2~^~04/01/2012~
-~01133~^~417~^119.^3^^~1~^~A~^^^1^88.^165.^^^^~2~^~04/01/2012~
-~01133~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~
-~01133~^~432~^119.^3^^~1~^~A~^^^1^88.^165.^^^^^~04/01/2012~
-~01133~^~435~^119.^0^^~4~^~NC~^^^^^^^^^^~04/01/2012~
-~01133~^~601~^1630.^3^^~1~^~A~^^^1^1570.^1720.^^^^~2~^~07/01/2015~
-~01134~^~208~^615.^0^^~4~^~NC~^^^^^^^^^^~11/01/1976~
-~01134~^~268~^2574.^0^^~4~^^^^^^^^^^^
-~01134~^~301~^222.^0^^~1~^^^^^^^^^^^~11/01/1976~
-~01134~^~304~^49.^0^^~1~^^^^^^^^^^^~11/01/1976~
-~01134~^~305~^715.^0^^~1~^^^^^^^^^^^~11/01/1976~
-~01134~^~306~^515.^0^^~1~^^^^^^^^^^^~11/01/1976~
-~01134~^~307~^548.^0^^~1~^^^^^^^^^^^~11/01/1976~
-~01134~^~318~^2050.^0^^~1~^^^^^^^^^^^~11/01/1976~
-~01134~^~319~^616.^0^^~1~^^^^^^^^^^^~06/01/2002~
-~01134~^~320~^616.^0^^~1~^^^^^^^^^^^~06/01/2002~
-~01134~^~417~^193.^0^^~1~^^^^^^^^^^^~11/01/1976~
-~01134~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~
-~01134~^~432~^193.^0^^~1~^^^^^^^^^^^~11/01/1976~
-~01134~^~435~^193.^0^^~4~^~NC~^^^^^^^^^^~01/01/2001~
-~01134~^~601~^2017.^0^^~1~^^^^^^^^^^^~11/01/1976~
-~01135~^~208~^351.^0^^~4~^~NC~^^^^^^^^^^~11/01/1976~
-~01135~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2003~
-~01135~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2003~
-~01135~^~268~^1469.^0^^~4~^^^^^^^^^^^
-~01135~^~301~^83.^0^^~1~^^^^^^^^^^^~11/01/1976~
-~01135~^~304~^67.^0^^~1~^^^^^^^^^^^~11/01/1976~
-~01135~^~305~^83.^0^^~1~^^^^^^^^^^^~11/01/1976~
-~01135~^~306~^1042.^0^^~1~^^^^^^^^^^^~11/01/1976~
-~01135~^~307~^1156.^0^^~1~^^^^^^^^^^^~11/01/1976~
-~01135~^~318~^0.^0^^~4~^~NC~^^^^^^^^^^~01/01/2003~
-~01135~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2002~
-~01135~^~320~^0.^0^^~4~^~NC~^^^^^^^^^^~01/01/2003~
-~01135~^~321~^0.^0^^~4~^~BFSN~^~01124~^^^^^^^^^~01/01/2003~
-~01135~^~322~^0.^0^^~4~^~BFSN~^~01124~^^^^^^^^^~01/01/2003~
-~01135~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~08/01/2012~
-~01135~^~334~^0.^0^^~4~^~BFSN~^~01124~^^^^^^^^^~01/01/2003~
-~01135~^~337~^0.^0^^~4~^~BFSN~^~01124~^^^^^^^^^~01/01/2003~
-~01135~^~338~^0.^0^^~4~^~BFSN~^~01124~^^^^^^^^^~01/01/2003~
-~01135~^~417~^89.^0^^~1~^^^^^^^^^^^~11/01/1976~
-~01135~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~
-~01135~^~432~^89.^0^^~1~^^^^^^^^^^^~01/01/2003~
-~01135~^~435~^89.^0^^~4~^~NC~^^^^^^^^^^~01/01/2003~
-~01135~^~601~^0.^0^^~1~^^^^^^^^^^^~11/01/1976~
-~01136~^~208~^376.^0^^~4~^~NC~^^^^^^^^^^~03/01/2007~
-~01136~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2003~
-~01136~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2003~
-~01136~^~268~^1573.^0^^~4~^^^^^^^^^^^~03/01/2007~
-~01136~^~301~^89.^0^^~1~^^^^^^^^^^^~11/01/1976~
-~01136~^~304~^72.^0^^~1~^^^^^^^^^^^~11/01/1976~
-~01136~^~305~^89.^0^^~1~^^^^^^^^^^^~11/01/1976~
-~01136~^~306~^1116.^0^^~1~^^^^^^^^^^^~11/01/1976~
-~01136~^~307~^1238.^0^^~1~^^^^^^^^^^^~11/01/1976~
-~01136~^~318~^0.^0^^~1~^~AS~^^^^^^^^^^~03/01/2007~
-~01136~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2002~
-~01136~^~320~^0.^0^^~1~^~AS~^^^^^^^^^^~03/01/2007~
-~01136~^~321~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2003~
-~01136~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2003~
-~01136~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~
-~01136~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2003~
-~01136~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2003~
-~01136~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2003~
-~01136~^~417~^96.^0^^~1~^^^^^^^^^^^~11/01/1976~
-~01136~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~
-~01136~^~432~^96.^0^^~1~^^^^^^^^^^^~03/01/2007~
-~01136~^~435~^96.^0^^~4~^~NC~^^^^^^^^^^~03/01/2008~
-~01136~^~601~^0.^0^^~1~^^^^^^^^^^^~11/01/1976~
-~01137~^~208~^669.^0^^~4~^~NC~^^^^^^^^^^~06/01/2015~
-~01137~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2003~
-~01137~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2003~
-~01137~^~268~^2800.^0^^~4~^~NC~^^^^^^^^^^~06/01/2015~
-~01137~^~301~^289.^15^4.^~1~^~A~^^^1^268.^316.^14^280.^298.^~4~^~04/01/2015~
-~01137~^~304~^26.^3^^~1~^~A~^^^1^24.^27.^^^^~2~^~04/01/2012~
-~01137~^~305~^1040.^3^^~1~^~A~^^^1^1020.^1050.^^^^~2~^~04/01/2012~
-~01137~^~306~^264.^3^^~1~^~A~^^^1^256.^272.^^^^~2~^~04/01/2012~
-~01137~^~307~^149.^15^4.^~1~^~A~^^^1^116.^172.^14^138.^158.^~4~^~04/01/2015~
-~01137~^~318~^1715.^0^^~4~^~NC~^^^^^^^^^^~02/01/2017~
-~01137~^~319~^477.^15^26.^~1~^~A~^^^1^343.^696.^14^419.^534.^~4~^~04/01/2015~
-~01137~^~320~^483.^0^^~4~^~NC~^^^^^^^^^^~02/01/2017~
-~01137~^~321~^0.^3^^~1~^~A~^^^1^0.^0.^^^^~1, 2~^~04/01/2012~
-~01137~^~322~^79.^0^^~4~^~BFFN~^~01125~^^^^^^^^^~01/01/2009~
-~01137~^~324~^417.^0^^~4~^~NR~^^^^^^^^^^~06/01/2015~
-~01137~^~334~^70.^0^^~4~^~BFFN~^~01125~^^^^^^^^^~01/01/2009~
-~01137~^~337~^0.^0^^~4~^~BFFN~^~01125~^^^^^^^^^~01/01/2009~
-~01137~^~338~^1133.^3^^~1~^~A~^^^1^883.^1458.^^^^~2~^~04/01/2012~
-~01137~^~417~^209.^3^^~1~^~A~^^^1^162.^237.^^^^~2~^~04/01/2012~
-~01137~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~
-~01137~^~432~^209.^3^^~1~^~A~^^^1^162.^237.^^^^^~04/01/2012~
-~01137~^~435~^209.^0^^~4~^~NC~^^^^^^^^^^~04/01/2012~
-~01137~^~601~^2307.^3^^~1~^~A~^^^1^2280.^2340.^^^^~2~^~07/01/2015~
-~01138~^~208~^185.^0^^~4~^~NC~^^^^^^^^^^~11/01/1976~
-~01138~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2003~
-~01138~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2003~
-~01138~^~268~^776.^0^^~4~^^^^^^^^^^^~02/01/2009~
-~01138~^~301~^64.^6^4.^~1~^^^^^^^^^^^~11/01/1976~
-~01138~^~304~^17.^1^^~1~^^^^^^^^^^^~11/01/1976~
-~01138~^~305~^220.^7^12.^~1~^^^^^^^^^^^~11/01/1976~
-~01138~^~306~^222.^3^79.^~1~^^^^^^^^^^^~11/01/1976~
-~01138~^~307~^146.^2^^~1~^^^^^^^^^^^~11/01/1976~
-~01138~^~318~^674.^0^^~4~^~NC~^^^^^^^^^^~02/01/2009~
-~01138~^~319~^192.^0^^~4~^~BFFN~^~01123~^^^^^^^^^~01/01/2003~
-~01138~^~320~^194.^0^^~4~^~NC~^^^^^^^^^^~02/01/2009~
-~01138~^~321~^14.^0^^~4~^~BFFN~^~01123~^^^^^^^^^~01/01/2003~
-~01138~^~322~^0.^0^^~4~^~BFFN~^~01123~^^^^^^^^^~01/01/2003~
-~01138~^~324~^69.^0^^~4~^~BFFN~^~01123~^^^^^^^^^~02/01/2009~
-~01138~^~334~^12.^0^^~4~^~BFFN~^~01123~^^^^^^^^^~01/01/2003~
-~01138~^~337~^0.^0^^~4~^~BFFN~^~01123~^^^^^^^^^~01/01/2003~
-~01138~^~338~^459.^0^^~4~^~BFFN~^~01123~^^^^^^^^^~01/01/2003~
-~01138~^~417~^80.^1^^~1~^^^^^^^^^^^~11/01/1976~
-~01138~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~
-~01138~^~432~^80.^1^^~1~^^^^^^^^^^^~02/01/2009~
-~01138~^~435~^80.^0^^~4~^~NC~^^^^^^^^^^~02/01/2009~
-~01138~^~601~^884.^3^^~1~^^^^^^^^^^^~11/01/1976~
-~01139~^~208~^185.^0^^~4~^~NC~^^^^^^^^^^~11/01/1976~
-~01139~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2003~
-~01139~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2003~
-~01139~^~268~^775.^0^^~4~^^^^^^^^^^^~02/01/2009~
-~01139~^~301~^60.^0^^~4~^^^^^^^^^^^~11/01/1976~
-~01139~^~304~^16.^0^^~4~^^^^^^^^^^^~11/01/1976~
-~01139~^~305~^208.^0^^~4~^^^^^^^^^^^~11/01/1976~
-~01139~^~306~^210.^0^^~4~^^^^^^^^^^^~11/01/1976~
-~01139~^~307~^138.^0^^~4~^^^^^^^^^^^~11/01/1976~
-~01139~^~318~^650.^0^^~4~^~NC~^^^^^^^^^^~02/01/2009~
-~01139~^~319~^185.^0^^~4~^~BFFN~^~01123~^^^^^^^^^~01/01/2003~
-~01139~^~320~^187.^0^^~4~^~NC~^^^^^^^^^^~02/01/2009~
-~01139~^~321~^13.^0^^~4~^~BFFN~^~01123~^^^^^^^^^~01/01/2003~
-~01139~^~322~^0.^0^^~4~^~BFFN~^~01123~^^^^^^^^^~01/01/2003~
-~01139~^~324~^66.^0^^~4~^~BFFN~^~01123~^^^^^^^^^~02/01/2009~
-~01139~^~334~^12.^0^^~4~^~BFFN~^~01123~^^^^^^^^^~01/01/2003~
-~01139~^~337~^0.^0^^~4~^~BFFN~^~01123~^^^^^^^^^~01/01/2003~
-~01139~^~338~^442.^0^^~4~^~BFFN~^~01123~^^^^^^^^^~01/01/2003~
-~01139~^~417~^76.^0^^~4~^^^^^^^^^^^~11/01/1976~
-~01139~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~
-~01139~^~432~^76.^0^^~4~^^^^^^^^^^^~02/01/2009~
-~01139~^~435~^76.^0^^~4~^~NC~^^^^^^^^^^~02/01/2009~
-~01139~^~601~^852.^0^^~4~^^^^^^^^^^^~11/01/1976~
-~01140~^~208~^158.^0^^~4~^~NC~^^^^^^^^^^~11/01/1976~
-~01140~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2003~
-~01140~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2003~
-~01140~^~268~^663.^0^^~4~^^^^^^^^^^^~02/01/2009~
-~01140~^~301~^64.^2^^~1~^^^^^^^^^^^~11/01/1976~
-~01140~^~304~^13.^0^^~4~^^^^^^^^^^^~11/01/1976~
-~01140~^~305~^226.^2^^~1~^^^^^^^^^^^~11/01/1976~
-~01140~^~306~^132.^0^^~4~^^^^^^^^^^^~11/01/1976~
-~01140~^~307~^141.^0^^~4~^^^^^^^^^^^~11/01/1976~
-~01140~^~318~^543.^0^^~4~^~NC~^^^^^^^^^^~02/01/2009~
-~01140~^~319~^155.^0^^~4~^~BFFN~^~01123~^^^^^^^^^~01/01/2003~
-~01140~^~320~^156.^0^^~4~^~NC~^^^^^^^^^^~02/01/2009~
-~01140~^~321~^11.^0^^~4~^~BFFN~^~01123~^^^^^^^^^~01/01/2003~
-~01140~^~322~^0.^0^^~4~^~BFFN~^~01123~^^^^^^^^^~01/01/2003~
-~01140~^~324~^55.^0^^~4~^~BFFN~^~01123~^^^^^^^^^~02/01/2009~
-~01140~^~334~^10.^0^^~4~^~BFFN~^~01123~^^^^^^^^^~01/01/2003~
-~01140~^~337~^0.^0^^~4~^~BFFN~^~01123~^^^^^^^^^~01/01/2003~
-~01140~^~338~^369.^0^^~4~^~BFFN~^~01123~^^^^^^^^^~01/01/2003~
-~01140~^~417~^66.^0^^~4~^^^^^^^^^^^~11/01/1976~
-~01140~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~
-~01140~^~432~^66.^0^^~4~^^^^^^^^^^^~02/01/2009~
-~01140~^~435~^66.^0^^~4~^~NC~^^^^^^^^^^~02/01/2009~
-~01140~^~601~^844.^12^^~1~^^^^^^^^^^^~11/01/1976~
-~01141~^~208~^171.^0^^~4~^~NC~^^^^^^^^^^~11/01/1976~
-~01141~^~268~^716.^0^^~4~^^^^^^^^^^^
-~01141~^~301~^99.^1^^~1~^^^^^^^^^^^~11/01/1976~
-~01141~^~304~^13.^0^^~4~^^^^^^^^^^^~11/01/1976~
-~01141~^~305~^170.^1^^~1~^^^^^^^^^^^~11/01/1976~
-~01141~^~306~^142.^0^^~4~^^^^^^^^^^^~11/01/1976~
-~01141~^~307~^151.^0^^~4~^^^^^^^^^^^~11/01/1976~
-~01141~^~318~^554.^0^^~4~^^^^^^^^^^^~11/01/1976~
-~01141~^~319~^166.^0^^~4~^^^^^^^^^^^~06/01/2002~
-~01141~^~320~^166.^0^^~4~^^^^^^^^^^^~06/01/2002~
-~01141~^~417~^71.^0^^~4~^^^^^^^^^^^~11/01/1976~
-~01141~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~
-~01141~^~432~^71.^0^^~4~^^^^^^^^^^^~11/01/1976~
-~01141~^~435~^71.^0^^~4~^~NC~^^^^^^^^^^~01/01/2001~
-~01141~^~601~^933.^10^^~1~^^^^^^^^^^^~11/01/1976~
-~01144~^~208~^444.^0^^~4~^~NC~^^^^^^^^^^~03/01/2007~
-~01144~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2003~
-~01144~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2003~
-~01144~^~268~^1856.^0^^~4~^~NC~^^^^^^^^^^~03/01/2007~
-~01144~^~301~^326.^1^^~1~^^^^^^^^^^^~11/01/1976~
-~01144~^~304~^65.^0^^~4~^^^^^^^^^^^~11/01/1976~
-~01144~^~305~^478.^1^^~1~^^^^^^^^^^^~11/01/1976~
-~01144~^~306~^744.^1^^~1~^^^^^^^^^^^~11/01/1976~
-~01144~^~307~^800.^1^^~1~^^^^^^^^^^^~11/01/1976~
-~01144~^~318~^1230.^0^^~4~^~NC~^^^^^^^^^^~03/01/2007~
-~01144~^~319~^369.^0^^~4~^~NC~^^^^^^^^^^~03/01/2007~
-~01144~^~320~^369.^0^^~4~^~NC~^^^^^^^^^^~03/01/2007~
-~01144~^~321~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2003~
-~01144~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2003~
-~01144~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~
-~01144~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2003~
-~01144~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2003~
-~01144~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2003~
-~01144~^~417~^125.^0^^~4~^^^^^^^^^^^~11/01/1976~
-~01144~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~
-~01144~^~432~^125.^0^^~4~^^^^^^^^^^^~03/01/2007~
-~01144~^~435~^125.^0^^~4~^~NC~^^^^^^^^^^~03/01/2007~
-~01144~^~601~^572.^1^^~1~^^^^^^^^^^^~11/01/1976~
-~01145~^~208~^717.^0^^~4~^~NC~^^^^^^^^^^~02/01/2009~
-~01145~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2003~
-~01145~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2003~
-~01145~^~268~^2999.^0^^~4~^~NC~^^^^^^^^^^~02/01/2009~
-~01145~^~301~^24.^17^0.^~1~^~A~^^^7^19.^30.^4^22.^26.^~2, 3~^~01/01/2003~
-~01145~^~304~^2.^18^0.^~1~^~A~^^^7^1.^2.^4^1.^1.^~2, 3~^~01/01/2003~
-~01145~^~305~^24.^17^0.^~1~^~A~^^^7^19.^27.^7^22.^24.^~2, 3~^~03/01/2003~
-~01145~^~306~^24.^18^0.^~1~^~A~^^^7^17.^28.^2^20.^26.^~2, 3~^~03/01/2003~
-~01145~^~307~^11.^0^^~1~^^^^^^^^^^^~11/01/1976~
-~01145~^~318~^2499.^0^^~4~^~NC~^^^^^^^^^^~02/01/2009~
-~01145~^~319~^671.^0^^~4~^~T~^^^^^^^^^^~02/01/2009~
-~01145~^~320~^684.^0^^~4~^~NC~^^^^^^^^^^~02/01/2009~
-~01145~^~321~^158.^2^^~1~^~A~^^^^^^^^^^~01/01/2003~
-~01145~^~322~^0.^2^^~1~^~A~^^^^^^^^^^~01/01/2003~
-~01145~^~324~^0.^0^^~4~^~BFFN~^~01002~^^^^^^^^^~09/01/2015~
-~01145~^~334~^0.^2^^~1~^~A~^^^^^^^^^^~01/01/2003~
-~01145~^~337~^0.^2^^~1~^~A~^^^^^^^^^^~01/01/2003~
-~01145~^~338~^0.^2^^~1~^~A~^^^^^^^^^^~01/01/2003~
-~01145~^~417~^3.^0^^~1~^^^^^^^^^^^~02/01/1995~
-~01145~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~
-~01145~^~432~^3.^0^^~1~^^^^^^^^^^^~02/01/2009~
-~01145~^~435~^3.^0^^~4~^~NC~^^^^^^^^^^~02/01/2009~
-~01145~^~601~^215.^3^1.^~1~^~A~^^^1^213.^217.^2^209.^220.^~2, 3~^~03/01/2003~
-~01145~^~638~^0.^3^0.^~1~^~A~^^^1^0.^0.^^^^~1, 2, 3~^~01/01/2003~
-~01145~^~639~^0.^3^0.^~1~^~A~^^^1^0.^0.^^^^~1, 2, 3~^~01/01/2003~
-~01145~^~641~^4.^3^0.^~1~^~A~^^^1^4.^4.^2^3.^4.^~2, 3~^~01/01/2003~
-~01146~^~208~^415.^0^^~4~^~NC~^^^^^^^^^^~02/01/2009~
-~01146~^~262~^0.^0^^~4~^~BFZN~^~01032~^^^^^^^^^~02/01/2009~
-~01146~^~263~^0.^0^^~4~^~BFZN~^~01032~^^^^^^^^^~02/01/2009~
-~01146~^~268~^1737.^0^^~4~^~NC~^^^^^^^^^^~02/01/2009~
-~01146~^~301~^1253.^0^^~1~^^^^^^^^^^^~11/01/1976~
-~01146~^~304~^51.^4^1.^~1~^^^^^^^^^^^~11/01/1976~
-~01146~^~305~^735.^0^^~1~^^^^^^^^^^^~11/01/1976~
-~01146~^~306~^97.^0^^~1~^^^^^^^^^^^~11/01/1976~
-~01146~^~307~^1696.^0^^~1~^^^^^^^^^^^~11/01/1976~
-~01146~^~318~^865.^0^^~4~^~NC~^^^^^^^^^^~02/01/2009~
-~01146~^~319~^223.^0^^~4~^~BFZN~^~01032~^^^^^^^^^~02/01/2009~
-~01146~^~320~^229.^0^^~4~^~NC~^^^^^^^^^^~02/01/2009~
-~01146~^~321~^73.^0^^~4~^~BFZN~^~01032~^^^^^^^^^~02/01/2009~
-~01146~^~322~^0.^0^^~4~^~BFZN~^~01032~^^^^^^^^^~02/01/2009~
-~01146~^~324~^21.^0^^~4~^~BFZN~^~01032~^^^^^^^^^~02/01/2009~
-~01146~^~334~^0.^0^^~4~^~BFZN~^~01032~^^^^^^^^^~02/01/2009~
-~01146~^~337~^0.^0^^~4~^~BFZN~^~01032~^^^^^^^^^~02/01/2009~
-~01146~^~338~^0.^0^^~4~^~BFZN~^~01032~^^^^^^^^^~02/01/2009~
-~01146~^~417~^8.^20^0.^~1~^^^^^^^^^^^~11/01/1976~
-~01146~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~
-~01146~^~432~^8.^20^0.^~1~^^^^^^^^^^^~02/01/2009~
-~01146~^~435~^8.^0^^~4~^~NC~^^^^^^^^^^~02/01/2009~
-~01146~^~601~^72.^0^^~1~^^^^^^^^^^^~11/01/1976~
-~01151~^~208~^35.^0^^~4~^~NC~^^^^^^^^^^~04/01/2017~
-~01151~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~12/01/2008~
-~01151~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~12/01/2008~
-~01151~^~268~^144.^0^^~4~^~NC~^^^^^^^^^^~04/01/2017~
-~01151~^~301~^122.^4^0.^~1~^~A~^^^4^^^^^^^~12/01/2008~
-~01151~^~304~^11.^41^0.^~1~^~A~^^^8^6.^12.^13^10.^10.^~2, 3~^~12/01/2008~
-~01151~^~305~^101.^39^0.^~1~^~A~^^^8^51.^104.^10^99.^101.^~2, 3~^~12/01/2008~
-~01151~^~306~^156.^26^0.^~1~^~A~^^^8^149.^167.^9^154.^157.^~2, 3~^~12/01/2008~
-~01151~^~307~^42.^40^0.^~1~^~A~^^^8^30.^62.^11^40.^42.^~2, 3~^~12/01/2008~
-~01151~^~318~^15.^0^^~4~^~NC~^^^^^^^^^^~01/01/2009~
-~01151~^~319~^1.^0^^~4~^~BFFN~^~01211~^^^^^^^^^~12/01/2008~
-~01151~^~320~^2.^0^^~4~^~NC~^^^^^^^^^^~01/01/2009~
-~01151~^~321~^7.^0^^~4~^~BFZN~^~01211~^^^^^^^^^~12/01/2008~
-~01151~^~322~^0.^0^^~4~^~BFZN~^~01211~^^^^^^^^^~12/01/2008~
-~01151~^~324~^0.^0^^~4~^~BFFN~^~01211~^^^^^^^^^~01/01/2009~
-~01151~^~334~^0.^0^^~4~^~BFZN~^~01211~^^^^^^^^^~12/01/2008~
-~01151~^~337~^0.^0^^~4~^~BFZN~^~01211~^^^^^^^^^~12/01/2008~
-~01151~^~338~^0.^0^^~4~^~BFZN~^~01211~^^^^^^^^^~12/01/2008~
-~01151~^~417~^5.^10^0.^~1~^~A~^^^1^5.^5.^^^^~2, 3~^~12/01/2008~
-~01151~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~12/01/2008~
-~01151~^~432~^5.^10^0.^~1~^~A~^^^1^5.^5.^^^^^~01/01/2009~
-~01151~^~435~^5.^0^^~4~^~NC~^^^^^^^^^^~03/01/2009~
-~01151~^~601~^2.^0^^~1~^^^^^^^^^^^~12/01/2008~
-~01152~^~208~^56.^0^^~4~^~NC~^^^^^^^^^^~11/01/1976~
-~01152~^~268~^232.^0^^~4~^^^^^^^^^^^~03/01/2009~
-~01152~^~301~^143.^0^^~1~^^^^^^^^^^^~11/01/1976~
-~01152~^~304~^15.^0^^~1~^^^^^^^^^^^~11/01/1976~
-~01152~^~305~^112.^0^^~1~^^^^^^^^^^^~11/01/1976~
-~01152~^~306~^182.^0^^~1~^^^^^^^^^^^~11/01/1976~
-~01152~^~307~^59.^0^^~1~^^^^^^^^^^^~11/01/1976~
-~01152~^~318~^75.^0^^~1~^^^^^^^^^^^~11/01/1976~
-~01152~^~319~^16.^0^^~4~^~NC~^^^^^^^^^^~06/01/2002~
-~01152~^~320~^17.^0^^~4~^~NC~^^^^^^^^^^~06/01/2002~
-~01152~^~417~^5.^0^^~1~^^^^^^^^^^^~11/01/1976~
-~01152~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~
-~01152~^~432~^5.^0^^~1~^^^^^^^^^^^~11/01/1976~
-~01152~^~435~^5.^0^^~4~^~NC~^^^^^^^^^^~03/01/2009~
-~01152~^~601~^8.^0^^~1~^^^^^^^^^^^~11/01/1976~
-~01153~^~208~^134.^0^^~4~^~NC~^^^^^^^^^^~03/01/2006~
-~01153~^~268~^562.^0^^~4~^~NC~^^^^^^^^^^~03/01/2006~
-~01153~^~301~^261.^0^^~1~^^^^^^^^^^^~11/01/1976~
-~01153~^~304~^24.^6^0.^~1~^^^^^^^^^^^~11/01/1976~
-~01153~^~305~^203.^0^^~1~^^^^^^^^^^^~11/01/1976~
-~01153~^~306~^303.^0^^~1~^^^^^^^^^^^~11/01/1976~
-~01153~^~307~^106.^0^^~1~^^^^^^^^^^^~11/01/1976~
-~01153~^~318~^397.^0^^~1~^^^^^^^^^^^~11/01/1976~
-~01153~^~417~^8.^1^^~1~^^^^^^^^^^^~11/01/1976~
-~01153~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~
-~01153~^~432~^8.^1^^~1~^^^^^^^^^^^~03/01/2006~
-~01153~^~435~^8.^0^^~4~^~NC~^^^^^^^^^^~03/01/2006~
-~01153~^~601~^29.^0^^~1~^^^^^^^^^^^~11/01/1976~
-~01154~^~208~^362.^0^^~4~^~NC~^^^^^^^^^^~11/01/1976~
-~01154~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2003~
-~01154~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2003~
-~01154~^~268~^1516.^0^^~4~^^^^^^^^^^^~02/01/2009~
-~01154~^~301~^1257.^0^^~1~^^^^^^^^^^^~11/01/1976~
-~01154~^~304~^110.^9^3.^~1~^^^^^^^^^^^~02/01/1995~
-~01154~^~305~^968.^0^^~1~^^^^^^^^^^^~11/01/1976~
-~01154~^~306~^1794.^0^^~1~^^^^^^^^^^^~11/01/1976~
-~01154~^~307~^535.^0^^~1~^^^^^^^^^^^~11/01/1976~
-~01154~^~318~^2179.^0^^~4~^~NC~^^^^^^^^^^~02/01/2009~
-~01154~^~319~^653.^0^^~4~^~NC~^^^^^^^^^^~02/01/2009~
-~01154~^~320~^653.^0^^~4~^~NC~^^^^^^^^^^~02/01/2009~
-~01154~^~321~^1.^0^^~4~^~BFZN~^~01091~^^^^^^^^^~01/01/2003~
-~01154~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2003~
-~01154~^~324~^440.^0^^~4~^~BFZN~^~01092~^^^^^^^^^~02/01/2009~
-~01154~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2003~
-~01154~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2003~
-~01154~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2003~
-~01154~^~417~^50.^0^^~1~^^^^^^^^^^^~02/01/1995~
-~01154~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~
-~01154~^~432~^50.^0^^~1~^^^^^^^^^^^~02/01/2009~
-~01154~^~435~^50.^0^^~4~^~NC~^^^^^^^^^^~03/01/2009~
-~01154~^~601~^20.^0^^~1~^^^^^^^^^^^~11/01/1976~
-~01155~^~208~^358.^0^^~4~^^^^^^^^^^^~02/01/1995~
-~01155~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2003~
-~01155~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2003~
-~01155~^~268~^1498.^0^^~4~^^^^^^^^^^^~02/01/2009~
-~01155~^~301~^1231.^0^^~1~^^^^^^^^^^^~02/01/1995~
-~01155~^~304~^117.^14^11.^~1~^^^^^^^^^^^~02/01/1995~
-~01155~^~305~^985.^0^^~1~^^^^^^^^^^^~02/01/1995~
-~01155~^~306~^1705.^0^^~1~^^^^^^^^^^^~02/01/1995~
-~01155~^~307~^549.^0^^~1~^^^^^^^^^^^~02/01/1995~
-~01155~^~318~^15.^0^^~4~^~NC~^^^^^^^^^^~02/01/2009~
-~01155~^~319~^4.^0^^~4~^~T~^^^^^^^^^^~02/01/2009~
-~01155~^~320~^4.^0^^~4~^~NC~^^^^^^^^^^~02/01/2009~
-~01155~^~321~^1.^0^^~4~^~BFZN~^~01092~^^^^^^^^^~02/01/2009~
-~01155~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2003~
-~01155~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~
-~01155~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2003~
-~01155~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2003~
-~01155~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2003~
-~01155~^~417~^50.^0^^~4~^^^^^^^^^^^~02/01/1995~
-~01155~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~
-~01155~^~432~^50.^0^^~4~^^^^^^^^^^^~02/01/2009~
-~01155~^~435~^50.^0^^~4~^~NC~^^^^^^^^^^~06/01/2009~
-~01155~^~601~^18.^0^^~1~^^^^^^^^^^^~02/01/1995~
-~01156~^~208~^452.^0^^~4~^~NC~^^^^^^^^^^~11/01/1976~
-~01156~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2003~
-~01156~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2003~
-~01156~^~268~^1891.^0^^~4~^^^^^^^^^^^~02/01/2009~
-~01156~^~301~^895.^7^117.^~1~^^^^^^^^^^^~11/01/1976~
-~01156~^~304~^54.^7^4.^~1~^^^^^^^^^^^~11/01/1976~
-~01156~^~305~^729.^6^5.^~1~^^^^^^^^^^^~11/01/1976~
-~01156~^~306~^48.^6^15.^~1~^^^^^^^^^^^~11/01/1976~
-~01156~^~307~^423.^0^^~4~^~NR~^^^^^^^^^^~06/01/2013~
-~01156~^~318~^1745.^0^^~4~^~NC~^^^^^^^^^^~02/01/2009~
-~01156~^~319~^478.^0^^~4~^~T~^^^^^^^^^^~02/01/2009~
-~01156~^~320~^486.^0^^~4~^~NC~^^^^^^^^^^~02/01/2009~
-~01156~^~321~^91.^0^^~4~^~BFFN~^~01009~^^^^^^^^^~01/01/2003~
-~01156~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2003~
-~01156~^~324~^26.^0^^~4~^~BFFN~^~01211~^^^^^^^^^~02/01/2009~
-~01156~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2003~
-~01156~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2003~
-~01156~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2003~
-~01156~^~417~^4.^0^^~1~^^^^^^^^^^^~11/01/1976~
-~01156~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~
-~01156~^~432~^4.^0^^~1~^^^^^^^^^^^~02/01/2009~
-~01156~^~435~^4.^0^^~4~^~NC~^^^^^^^^^^~02/01/2009~
-~01156~^~601~^105.^1^^~1~^^^^^^^^^^^~11/01/1976~
-~01157~^~208~^364.^0^^~4~^~NC~^^^^^^^^^^~02/01/2009~
-~01157~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2003~
-~01157~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2003~
-~01157~^~268~^1523.^0^^~4~^^^^^^^^^^^~08/01/2012~
-~01157~^~301~^298.^29^54.^~1~^^^^^^^^^^^~11/01/1976~
-~01157~^~304~^29.^24^3.^~1~^^^^^^^^^^^~11/01/1976~
-~01157~^~305~^375.^16^27.^~1~^^^^^^^^^^^~11/01/1976~
-~01157~^~306~^158.^11^13.^~1~^^^^^^^^^^^~11/01/1976~
-~01157~^~307~^415.^0^^~4~^~NR~^^^^^^^^^^~06/01/2013~
-~01157~^~318~^1464.^0^^~4~^~NC~^^^^^^^^^^~02/01/2009~
-~01157~^~319~^401.^0^^~4~^~T~^^^^^^^^^^~02/01/2009~
-~01157~^~320~^407.^0^^~4~^~NC~^^^^^^^^^^~02/01/2009~
-~01157~^~321~^77.^0^^~4~^~BFFN~^~01009~^^^^^^^^^~01/01/2003~
-~01157~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2003~
-~01157~^~324~^22.^0^^~4~^~BFFN~^~01211~^^^^^^^^^~02/01/2009~
-~01157~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2003~
-~01157~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2003~
-~01157~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2003~
-~01157~^~417~^2.^0^^~1~^^^^^^^^^^^~11/01/1976~
-~01157~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~
-~01157~^~432~^2.^0^^~1~^^^^^^^^^^^~02/01/2009~
-~01157~^~435~^2.^0^^~4~^~NC~^^^^^^^^^^~02/01/2009~
-~01157~^~601~^79.^7^2.^~1~^^^^^^^^^^^~11/01/1976~
-~01158~^~208~^92.^0^^~4~^~NC~^^^^^^^^^^~08/01/2016~
-~01158~^~268~^385.^0^^~4~^~NC~^^^^^^^^^^~08/01/2016~
-~01158~^~301~^92.^1^^~1~^~A~^^^^^^^^^^~08/01/2016~
-~01158~^~307~^40.^1^^~1~^~A~^^^^^^^^^^~08/01/2016~
-~01158~^~318~^49.^0^^~1~^~AS~^^^^^^^^^^~08/01/2016~
-~01158~^~319~^15.^1^^~1~^~A~^^^^^^^^^^~08/01/2016~
-~01158~^~320~^15.^0^^~1~^~AS~^^^^^^^^^^~08/01/2016~
-~01158~^~321~^0.^1^^~1~^~A~^^^^^^^^^~1~^~08/01/2016~
-~01158~^~601~^7.^1^^~1~^~A~^^^^^^^^^^~08/01/2016~
-~01159~^~208~^264.^0^^~4~^~NC~^^^^^^^^^^~05/01/2014~
-~01159~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2003~
-~01159~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2003~
-~01159~^~268~^1106.^0^^~4~^~NC~^^^^^^^^^^~05/01/2014~
-~01159~^~301~^140.^69^15.^~1~^^^^^^^^^^^~11/01/1976~
-~01159~^~304~^16.^69^0.^~1~^^^^^^^^^^^~11/01/1976~
-~01159~^~305~^256.^65^10.^~1~^^^^^^^^^^^~11/01/1976~
-~01159~^~306~^26.^65^3.^~1~^^^^^^^^^^^~11/01/1976~
-~01159~^~307~^459.^0^^~4~^~NR~^^^^^^^^^^~06/01/2013~
-~01159~^~318~^1033.^0^^~4~^~NC~^^^^^^^^^^~02/01/2009~
-~01159~^~319~^283.^0^^~4~^~T~^^^^^^^^^^~02/01/2009~
-~01159~^~320~^288.^0^^~4~^~NC~^^^^^^^^^^~02/01/2009~
-~01159~^~321~^54.^0^^~4~^~BFFN~^~01009~^^^^^^^^^~01/01/2003~
-~01159~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2003~
-~01159~^~324~^15.^0^^~4~^~BFFN~^~01211~^^^^^^^^^~02/01/2009~
-~01159~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2003~
-~01159~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2003~
-~01159~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2003~
-~01159~^~417~^12.^0^^~1~^^^^^^^^^^^~11/01/1976~
-~01159~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~
-~01159~^~432~^12.^0^^~1~^^^^^^^^^^^~02/01/2009~
-~01159~^~435~^12.^0^^~4~^~NC~^^^^^^^^^^~02/01/2009~
-~01159~^~601~^46.^1^^~1~^^^^^^^^^^^~11/01/1976~
-~01160~^~208~^275.^0^^~4~^~NC~^^^^^^^^^^~04/01/2012~
-~01160~^~262~^0.^0^^~4~^~BFZN~^~01125~^^^^^^^^^~04/01/2012~
-~01160~^~263~^0.^0^^~4~^~BFZN~^~01125~^^^^^^^^^~04/01/2012~
-~01160~^~268~^1149.^0^^~4~^~NC~^^^^^^^^^^~04/01/2012~
-~01160~^~301~^113.^3^^~1~^~A~^^^1^101.^122.^^^^~2~^~04/01/2012~
-~01160~^~304~^7.^3^^~1~^~A~^^^1^5.^8.^^^^~2~^~04/01/2012~
-~01160~^~305~^414.^3^^~1~^~A~^^^1^369.^445.^^^^~2~^~04/01/2012~
-~01160~^~306~^111.^3^^~1~^~A~^^^1^103.^116.^^^^~2~^~04/01/2012~
-~01160~^~307~^3487.^3^^~1~^~A~^^^1^3080.^3760.^^^^~2~^~04/01/2012~
-~01160~^~318~^1043.^0^^~1~^~AS~^^^^^^^^^^~04/01/2012~
-~01160~^~319~^313.^3^^~1~^~A~^^^1^303.^324.^^^^~2~^~04/01/2012~
-~01160~^~320~^313.^0^^~1~^~AS~^^^^^^^^^^~04/01/2012~
-~01160~^~321~^0.^3^^~1~^~A~^^^1^0.^0.^^^^~1, 2~^~04/01/2012~
-~01160~^~322~^38.^0^^~4~^~BFZN~^~01125~^^^^^^^^^~04/01/2012~
-~01160~^~324~^126.^3^^~1~^~A~^^^1^107.^136.^^^^~2~^~04/01/2012~
-~01160~^~334~^33.^0^^~4~^~BFZN~^~01125~^^^^^^^^^~04/01/2012~
-~01160~^~337~^0.^0^^~4~^~BFZN~^~01125~^^^^^^^^^~04/01/2012~
-~01160~^~338~^712.^3^^~1~^~A~^^^1^606.^789.^^^^~2~^~04/01/2012~
-~01160~^~417~^112.^3^^~1~^~A~^^^1^65.^137.^^^^~2~^~04/01/2012~
-~01160~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~
-~01160~^~432~^112.^3^^~1~^~A~^^^1^65.^137.^^^^^~04/01/2012~
-~01160~^~435~^112.^0^^~4~^~NC~^^^^^^^^^^~04/01/2012~
-~01160~^~601~^912.^3^^~1~^~A~^^^1^842.^983.^^^^~2~^~04/01/2012~
-~01161~^~208~^248.^0^^~4~^~NC~^^^^^^^^^^~11/01/1976~
-~01161~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2003~
-~01161~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2003~
-~01161~^~268~^1038.^0^^~4~^^^^^^^^^^^~03/01/2007~
-~01161~^~301~^610.^4^182.^~1~^^^^^^^^^^^~11/01/1976~
-~01161~^~304~^41.^4^6.^~1~^^^^^^^^^^^~11/01/1976~
-~01161~^~305~^583.^4^155.^~1~^^^^^^^^^^^~11/01/1976~
-~01161~^~306~^455.^4^233.^~1~^^^^^^^^^^^~11/01/1976~
-~01161~^~307~^685.^4^272.^~1~^^^^^^^^^^^~11/01/1976~
-~01161~^~318~^1457.^0^^~4~^~NC~^^^^^^^^^^~03/01/2007~
-~01161~^~319~^437.^0^^~4~^~NC~^^^^^^^^^^~03/01/2007~
-~01161~^~320~^437.^0^^~4~^~NC~^^^^^^^^^^~03/01/2007~
-~01161~^~321~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2003~
-~01161~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2003~
-~01161~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~
-~01161~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2003~
-~01161~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2003~
-~01161~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2003~
-~01161~^~417~^11.^4^6.^~1~^^^^^^^^^^^~11/01/1976~
-~01161~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~
-~01161~^~432~^11.^4^6.^~1~^^^^^^^^^^^~03/01/2007~
-~01161~^~435~^11.^0^^~4~^~NC~^^^^^^^^^^~03/01/2007~
-~01161~^~601~^0.^4^0.^~1~^^^^^^^^^^^~11/01/1976~
-~01162~^~208~^93.^0^^~4~^~NC~^^^^^^^^^^~08/01/2016~
-~01162~^~268~^390.^0^^~4~^~NC~^^^^^^^^^^~08/01/2016~
-~01162~^~301~^89.^1^^~1~^~A~^^^^^^^^^^~08/01/2016~
-~01162~^~307~^30.^1^^~1~^~A~^^^^^^^^^^~08/01/2016~
-~01162~^~318~^199.^0^^~1~^~AS~^^^^^^^^^^~08/01/2016~
-~01162~^~319~^20.^1^^~1~^~A~^^^^^^^^^^~08/01/2016~
-~01162~^~320~^27.^0^^~1~^~AS~^^^^^^^^^^~08/01/2016~
-~01162~^~321~^80.^1^^~1~^~A~^^^^^^^^^^~08/01/2016~
-~01162~^~601~^5.^1^^~1~^~A~^^^^^^^^^^~08/01/2016~
-~01164~^~208~^197.^0^^~4~^~NC~^^^^^^^^^^~08/01/2010~
-~01164~^~262~^0.^0^^~4~^~RA~^^^^^^^^^^~03/01/2009~
-~01164~^~263~^0.^0^^~4~^~RA~^^^^^^^^^^~03/01/2009~
-~01164~^~268~^824.^0^^~4~^~NC~^^^^^^^^^^~08/01/2010~
-~01164~^~301~^311.^0^^~1~^^^^^^^^^^^~11/01/1976~
-~01164~^~304~^19.^0^^~1~^^^^^^^^^^^~11/01/1976~
-~01164~^~305~^229.^0^^~1~^^^^^^^^^^^~11/01/1976~
-~01164~^~306~^142.^0^^~1~^^^^^^^^^^^~11/01/1976~
-~01164~^~307~^493.^0^^~1~^^^^^^^^^^^~11/01/1976~
-~01164~^~318~^310.^0^^~4~^~NC~^^^^^^^^^^~08/01/2010~
-~01164~^~319~^80.^0^^~4~^~T~^^^^^^^^^^~08/01/2010~
-~01164~^~320~^82.^0^^~4~^~NC~^^^^^^^^^^~08/01/2010~
-~01164~^~321~^26.^0^^~4~^~T~^^^^^^^^^^~08/01/2010~
-~01164~^~322~^0.^0^^~4~^~RA~^^^^^^^^^^~08/01/2010~
-~01164~^~324~^41.^0^^~4~^~RA~^^^^^^^^^^~08/01/2010~
-~01164~^~334~^0.^0^^~4~^~RA~^^^^^^^^^^~08/01/2010~
-~01164~^~337~^0.^0^^~4~^~RA~^^^^^^^^^^~03/01/2009~
-~01164~^~338~^0.^0^^~4~^~RA~^^^^^^^^^^~08/01/2010~
-~01164~^~417~^10.^0^^~4~^~RA~^^^^^^^^^^~11/01/1997~
-~01164~^~431~^2.^0^^~4~^~NC~^^^^^^^^^^~05/01/2000~
-~01164~^~432~^8.^0^^~1~^^^^^^^^^^^~08/01/1993~
-~01164~^~435~^11.^0^^~4~^~NC~^^^^^^^^^^~08/01/2010~
-~01164~^~601~^38.^0^^~1~^^^^^^^^^^^~11/01/1976~
-~01164~^~636~^11.^0^^~1~^^^^^^^^^^^~11/01/1976~
-~01165~^~208~^373.^0^^~4~^~NC~^^^^^^^^^^~02/01/2009~
-~01165~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2003~
-~01165~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2003~
-~01165~^~268~^1561.^0^^~4~^~NC~^^^^^^^^^^~02/01/2009~
-~01165~^~301~^680.^2^^~1~^^^^^^^^^^^~11/01/1976~
-~01165~^~304~^28.^2^^~1~^^^^^^^^^^^~11/01/1976~
-~01165~^~305~^444.^2^^~1~^^^^^^^^^^^~11/01/1976~
-~01165~^~306~^87.^2^^~1~^^^^^^^^^^^~11/01/1976~
-~01165~^~307~^1131.^4^13.^~1~^^^^^^^^^^^~11/01/1976~
-~01165~^~318~^220.^0^^~4~^~NC~^^^^^^^^^^~02/01/2009~
-~01165~^~319~^64.^0^^~4~^~T~^^^^^^^^^^~02/01/2009~
-~01165~^~320~^64.^0^^~4~^~NC~^^^^^^^^^^~02/01/2009~
-~01165~^~321~^4.^0^^~4~^~NR~^^^^^^^^^^~01/01/2003~
-~01165~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2003~
-~01165~^~324~^22.^0^^~4~^~BFFN~^~01211~^^^^^^^^^~02/01/2009~
-~01165~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2003~
-~01165~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2003~
-~01165~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2003~
-~01165~^~417~^1.^2^^~1~^^^^^^^^^^^~11/01/1976~
-~01165~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~
-~01165~^~432~^1.^2^^~1~^^^^^^^^^^^~02/01/2009~
-~01165~^~435~^1.^0^^~4~^~NC~^^^^^^^^^^~02/01/2009~
-~01165~^~601~^105.^1^^~1~^^^^^^^^^^^~11/01/1976~
-~01166~^~208~^356.^0^^~4~^~NC~^^^^^^^^^^~11/01/1976~
-~01166~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2003~
-~01166~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2003~
-~01166~^~268~^1490.^0^^~4~^^^^^^^^^^^~02/01/2009~
-~01166~^~301~^661.^2^^~1~^^^^^^^^^^^~11/01/1976~
-~01166~^~304~^26.^2^^~1~^^^^^^^^^^^~11/01/1976~
-~01166~^~305~^443.^2^^~1~^^^^^^^^^^^~11/01/1976~
-~01166~^~306~^86.^2^^~1~^^^^^^^^^^^~11/01/1976~
-~01166~^~307~^607.^0^^~8~^~LC~^^^^^^^^^^~07/01/2017~
-~01166~^~318~^190.^0^^~4~^~NC~^^^^^^^^^^~02/01/2009~
-~01166~^~319~^55.^0^^~4~^~T~^^^^^^^^^^~02/01/2009~
-~01166~^~320~^55.^0^^~4~^~NC~^^^^^^^^^^~02/01/2009~
-~01166~^~321~^4.^0^^~4~^~NR~^^^^^^^^^^~01/01/2003~
-~01166~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2003~
-~01166~^~324~^21.^0^^~4~^~BFFN~^~01211~^^^^^^^^^~02/01/2009~
-~01166~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2003~
-~01166~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2003~
-~01166~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2003~
-~01166~^~417~^8.^2^^~1~^^^^^^^^^^^~11/01/1976~
-~01166~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~
-~01166~^~432~^8.^2^^~1~^^^^^^^^^^^~02/01/2009~
-~01166~^~435~^8.^0^^~4~^~NC~^^^^^^^^^^~02/01/2009~
-~01166~^~601~^105.^1^^~1~^^^^^^^^^^^~11/01/1976~
-~01167~^~208~^374.^0^^~4~^~NC~^^^^^^^^^^~02/01/2009~
-~01167~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2003~
-~01167~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2003~
-~01167~^~268~^1567.^0^^~4~^~NC~^^^^^^^^^^~02/01/2009~
-~01167~^~301~^651.^2^^~1~^^^^^^^^^^^~11/01/1976~
-~01167~^~304~^23.^2^^~1~^^^^^^^^^^^~11/01/1976~
-~01167~^~305~^442.^2^^~1~^^^^^^^^^^^~11/01/1976~
-~01167~^~306~^52.^2^^~1~^^^^^^^^^^^~11/01/1976~
-~01167~^~307~^617.^4^6.^~1~^^^^^^^^^^^~11/01/1976~
-~01167~^~318~^193.^0^^~4~^~NC~^^^^^^^^^^~02/01/2009~
-~01167~^~319~^56.^0^^~4~^~T~^^^^^^^^^^~02/01/2009~
-~01167~^~320~^56.^0^^~4~^~NC~^^^^^^^^^^~02/01/2009~
-~01167~^~321~^4.^0^^~4~^~NR~^^^^^^^^^^~01/01/2003~
-~01167~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2003~
-~01167~^~324~^22.^0^^~4~^~BFFN~^~01211~^^^^^^^^^~02/01/2009~
-~01167~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2003~
-~01167~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2003~
-~01167~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2003~
-~01167~^~417~^2.^2^^~1~^^^^^^^^^^^~11/01/1976~
-~01167~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~
-~01167~^~432~^2.^2^^~1~^^^^^^^^^^^~02/01/2009~
-~01167~^~435~^2.^0^^~4~^~NC~^^^^^^^^^^~02/01/2009~
-~01167~^~601~^105.^1^^~1~^^^^^^^^^^^~11/01/1976~
-~01168~^~208~^173.^0^^~4~^~NC~^^^^^^^^^^~11/01/1976~
-~01168~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2003~
-~01168~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2003~
-~01168~^~268~^724.^0^^~4~^^^^^^^^^^^~02/01/2009~
-~01168~^~301~^415.^0^^~1~^^^^^^^^^^^~11/01/1976~
-~01168~^~304~^16.^0^^~1~^^^^^^^^^^^~11/01/1976~
-~01168~^~305~^484.^35^9.^~1~^^^^^^^^^^^~11/01/1976~
-~01168~^~306~^66.^0^^~1~^^^^^^^^^^^~11/01/1976~
-~01168~^~307~^873.^0^^~4~^~NR~^^^^^^^^^^~06/01/2013~
-~01168~^~318~^207.^0^^~4~^~NC~^^^^^^^^^^~02/01/2009~
-~01168~^~319~^60.^0^^~4~^~T~^^^^^^^^^^~02/01/2009~
-~01168~^~320~^60.^0^^~4~^~NC~^^^^^^^^^^~02/01/2009~
-~01168~^~321~^4.^0^^~4~^~NR~^^^^^^^^^^~01/01/2003~
-~01168~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2003~
-~01168~^~324~^5.^0^^~4~^~BFFN~^~01211~^^^^^^^^^~02/01/2009~
-~01168~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2003~
-~01168~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2003~
-~01168~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2003~
-~01168~^~417~^11.^0^^~1~^^^^^^^^^^^~11/01/1976~
-~01168~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~
-~01168~^~432~^11.^0^^~1~^^^^^^^^^^^~02/01/2009~
-~01168~^~435~^11.^0^^~4~^~NC~^^^^^^^^^^~02/01/2009~
-~01168~^~601~^21.^0^^~1~^^^^^^^^^^^~11/01/1976~
-~01169~^~208~^398.^0^^~4~^~NC~^^^^^^^^^^~02/01/2009~
-~01169~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2003~
-~01169~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2003~
-~01169~^~268~^1666.^0^^~4~^~NC~^^^^^^^^^^~02/01/2009~
-~01169~^~301~^703.^49^9.^~1~^^^^^^^^^^^~11/01/1976~
-~01169~^~304~^27.^37^0.^~1~^^^^^^^^^^^~11/01/1976~
-~01169~^~305~^484.^35^9.^~1~^^^^^^^^^^^~11/01/1976~
-~01169~^~306~^112.^76^8.^~1~^^^^^^^^^^^~11/01/1976~
-~01169~^~307~^21.^0^^~1~^^^^^^^^^^^~11/01/1976~
-~01169~^~318~^996.^0^^~4~^~NC~^^^^^^^^^^~02/01/2009~
-~01169~^~319~^257.^0^^~4~^~T~^^^^^^^^^^~02/01/2009~
-~01169~^~320~^264.^0^^~4~^~NC~^^^^^^^^^^~02/01/2009~
-~01169~^~321~^84.^0^^~4~^~BFFN~^~01009~^^^^^^^^^~01/01/2003~
-~01169~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2003~
-~01169~^~324~^24.^0^^~4~^~BFFN~^~01211~^^^^^^^^^~02/01/2009~
-~01169~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2003~
-~01169~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2003~
-~01169~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2003~
-~01169~^~417~^18.^13^1.^~1~^^^^^^^^^^^~11/01/1976~
-~01169~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~
-~01169~^~432~^18.^13^1.^~1~^^^^^^^^^^^~02/01/2009~
-~01169~^~435~^18.^0^^~4~^~NC~^^^^^^^^^^~02/01/2009~
-~01169~^~601~^100.^13^1.^~1~^^^^^^^^^^^~11/01/1976~
-~01171~^~208~^147.^0^^~4~^~NC~^^^^^^^^^^~04/01/2015~
-~01171~^~262~^0.^0^^~4~^~BFZN~^~01123~^^^^^^^^^~04/01/2012~
-~01171~^~263~^0.^0^^~4~^~BFZN~^~01123~^^^^^^^^^~04/01/2012~
-~01171~^~268~^616.^0^^~4~^~NC~^^^^^^^^^^~04/01/2015~
-~01171~^~301~^62.^15^1.^~1~^~A~^^^1^55.^72.^14^59.^64.^~4~^~04/01/2015~
-~01171~^~304~^9.^3^^~1~^~A~^^^1^4.^11.^^^^~2~^~04/01/2012~
-~01171~^~305~^193.^3^^~1~^~A~^^^1^189.^199.^^^^~2~^~04/01/2012~
-~01171~^~306~^135.^3^^~1~^~A~^^^1^133.^137.^^^^~2~^~04/01/2012~
-~01171~^~307~^128.^15^1.^~1~^~A~^^^1^114.^136.^14^124.^132.^~4~^~04/01/2015~
-~01171~^~318~^570.^0^^~1~^~AS~^^^^^^^^^^~07/01/2015~
-~01171~^~319~^171.^15^5.^~1~^~A~^^^1^126.^213.^14^158.^183.^~4~^~04/01/2015~
-~01171~^~320~^171.^0^^~1~^~AS~^^^^^^^^^^~07/01/2015~
-~01171~^~321~^0.^3^^~1~^~A~^^^1^0.^0.^^^^~1, 2~^~04/01/2012~
-~01171~^~322~^0.^0^^~4~^~BFZN~^~01123~^^^^^^^^^~04/01/2012~
-~01171~^~324~^105.^0^^~4~^~NR~^^^^^^^^^^~06/01/2015~
-~01171~^~334~^9.^0^^~4~^~BFZN~^~01123~^^^^^^^^^~04/01/2012~
-~01171~^~337~^0.^0^^~4~^~BFZN~^~01123~^^^^^^^^^~04/01/2012~
-~01171~^~338~^471.^3^^~1~^~A~^^^1^367.^662.^^^^~2~^~04/01/2012~
-~01171~^~417~^87.^3^^~1~^~A~^^^1^72.^110.^^^^~2~^~04/01/2012~
-~01171~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~
-~01171~^~432~^87.^3^^~1~^~A~^^^1^72.^110.^^^^^~04/01/2012~
-~01171~^~435~^87.^0^^~4~^~NC~^^^^^^^^^^~04/01/2012~
-~01171~^~601~^372.^0^^~4~^~BFZN~^~01123~^^^^^^^^^~07/01/2015~
-~01172~^~208~^48.^0^^~4~^~NC~^^^^^^^^^^~04/01/2015~
-~01172~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2012~
-~01172~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2012~
-~01172~^~268~^202.^0^^~4~^~NC~^^^^^^^^^^~04/01/2015~
-~01172~^~301~^8.^15^0.^~1~^~A~^^^1^6.^12.^14^7.^9.^~4~^~04/01/2015~
-~01172~^~304~^11.^3^^~1~^~A~^^^1^10.^12.^^^^~2~^~04/01/2012~
-~01172~^~305~^13.^3^^~1~^~A~^^^1^12.^14.^^^^~2~^~05/01/1996~
-~01172~^~306~^169.^3^^~1~^~A~^^^1^149.^192.^^^^~2~^~04/01/2012~
-~01172~^~307~^169.^15^1.^~1~^~A~^^^1^154.^177.^14^165.^173.^~4~^~04/01/2012~
-~01172~^~318~^0.^0^^~1~^~AS~^^^^^^^^^^~04/01/2012~
-~01172~^~319~^0.^15^0.^~1~^~A~^^^1^0.^0.^14^0.^0.^~1, 4~^~04/01/2012~
-~01172~^~320~^0.^0^^~1~^~AS~^^^^^^^^^^~04/01/2012~
-~01172~^~321~^0.^3^^~1~^~A~^^^1^0.^0.^^^^~1, 2~^~04/01/2012~
-~01172~^~322~^0.^0^^~4~^~BFZN~^~01124~^^^^^^^^^~04/01/2012~
-~01172~^~324~^0.^3^^~1~^~A~^^^1^0.^0.^^^^~1, 2~^~04/01/2012~
-~01172~^~334~^0.^0^^~4~^~BFZN~^~01124~^^^^^^^^^~04/01/2012~
-~01172~^~337~^0.^0^^~4~^~BFZN~^~01124~^^^^^^^^^~04/01/2012~
-~01172~^~338~^20.^3^^~1~^~A~^^^1^20.^20.^^^^~1, 2~^~04/01/2012~
-~01172~^~417~^10.^3^^~1~^~A~^^^1^6.^15.^^^^~2~^~04/01/2012~
-~01172~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~
-~01172~^~432~^10.^3^^~1~^~A~^^^1^6.^15.^^^^^~04/01/2012~
-~01172~^~435~^10.^0^^~4~^~NC~^^^^^^^^^^~04/01/2012~
-~01172~^~601~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/1996~
-~01173~^~208~^382.^0^^~4~^~NC~^^^^^^^^^^~05/01/1996~
-~01173~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2003~
-~01173~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2003~
-~01173~^~268~^1598.^0^^~4~^^^^^^^^^^^
-~01173~^~301~^62.^2^^~1~^~A~^^^^^^^^^^~05/01/1996~
-~01173~^~304~^88.^2^^~1~^~A~^^^^^^^^^^~05/01/1996~
-~01173~^~305~^111.^2^^~1~^~A~^^^^^^^^^^~05/01/1996~
-~01173~^~306~^1125.^2^^~1~^~A~^^^^^^^^^^~05/01/1996~
-~01173~^~307~^1280.^2^^~1~^~A~^^^^^^^^^^~05/01/1996~
-~01173~^~318~^0.^0^^~1~^~AS~^^^^^^^^^^~01/01/2003~
-~01173~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2002~
-~01173~^~320~^0.^0^^~1~^~AS~^^^^^^^^^^~01/01/2003~
-~01173~^~321~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2003~
-~01173~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2003~
-~01173~^~324~^0.^0^^~4~^~BFZN~^~01136~^^^^^^^^^~08/01/2012~
-~01173~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2003~
-~01173~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2003~
-~01173~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2003~
-~01173~^~417~^18.^2^^~1~^~A~^^^^^^^^^^~05/01/1996~
-~01173~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~
-~01173~^~432~^18.^2^^~1~^~A~^^^^^^^^^^~01/01/2003~
-~01173~^~435~^18.^0^^~4~^~NC~^^^^^^^^^^~01/01/2003~
-~01173~^~601~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/1996~
-~01174~^~208~^50.^0^^~4~^~NC~^^^^^^^^^^~08/01/2010~
-~01174~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~12/01/2008~
-~01174~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~12/01/2008~
-~01174~^~268~^210.^0^^~4~^~NC~^^^^^^^^^^~08/01/2010~
-~01174~^~301~^120.^4^0.^~1~^~A~^^^4^^^^^^^~12/01/2008~
-~01174~^~304~^11.^31^0.^~1~^~A~^^^9^10.^13.^11^11.^11.^~2, 3~^~12/01/2008~
-~01174~^~305~^92.^28^0.^~1~^~A~^^^9^82.^98.^7^90.^92.^~2, 3~^~12/01/2008~
-~01174~^~306~^140.^31^2.^~1~^~A~^^^9^103.^172.^15^135.^144.^~2, 3~^~12/01/2008~
-~01174~^~307~^47.^31^0.^~1~^~A~^^^9^36.^69.^14^44.^48.^~2, 3~^~12/01/2008~
-~01174~^~318~^102.^0^^~4~^~NC~^^^^^^^^^^~08/01/2010~
-~01174~^~319~^27.^0^^~4~^~BFFN~^~01211~^^^^^^^^^~12/01/2008~
-~01174~^~320~^28.^0^^~4~^~NC~^^^^^^^^^^~08/01/2010~
-~01174~^~321~^7.^0^^~4~^~BFZN~^~01211~^^^^^^^^^~12/01/2008~
-~01174~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~12/01/2008~
-~01174~^~324~^1.^0^^~4~^~BFFN~^~01211~^^^^^^^^^~12/01/2008~
-~01174~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~12/01/2008~
-~01174~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~12/01/2008~
-~01174~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~12/01/2008~
-~01174~^~417~^5.^12^0.^~1~^~A~^^^1^4.^5.^11^4.^4.^~2, 3~^~12/01/2008~
-~01174~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~12/01/2008~
-~01174~^~432~^5.^12^0.^~1~^~A~^^^1^4.^5.^11^4.^4.^^~08/01/2010~
-~01174~^~435~^5.^0^^~4~^~NC~^^^^^^^^^^~08/01/2010~
-~01174~^~601~^8.^5^0.^~1~^~A~^^^2^8.^9.^3^7.^8.^~2, 3~^~12/01/2008~
-~01174~^~638~^0.^4^0.^~1~^~A~^^^1^0.^0.^^^^~1, 2, 3~^~12/01/2008~
-~01174~^~639~^0.^4^0.^~1~^~A~^^^1^0.^0.^^^^~1, 2, 3~^~12/01/2008~
-~01174~^~641~^0.^4^0.^~1~^~A~^^^1^0.^0.^^^^~1, 2, 3~^~12/01/2008~
-~01175~^~208~^42.^0^^~4~^~NC~^^^^^^^^^^~01/01/2009~
-~01175~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~12/01/2008~
-~01175~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~12/01/2008~
-~01175~^~268~^177.^0^^~4~^~NC~^^^^^^^^^^~01/01/2009~
-~01175~^~301~^125.^4^1.^~1~^~A~^^^4^^^^^^^~12/01/2008~
-~01175~^~304~^11.^22^0.^~1~^~A~^^^1^9.^12.^14^10.^11.^~2, 3~^~12/01/2008~
-~01175~^~305~^95.^21^0.^~1~^~A~^^^1^86.^100.^17^94.^96.^~2, 3~^~12/01/2008~
-~01175~^~306~^150.^11^1.^~1~^~A~^^^1^^^^^^^~12/01/2008~
-~01175~^~307~^44.^23^0.^~1~^~A~^^^1^37.^58.^18^42.^45.^~2, 3~^~12/01/2008~
-~01175~^~318~^47.^0^^~4~^~NC~^^^^^^^^^^~01/01/2009~
-~01175~^~319~^13.^0^^~4~^~BFFN~^~01211~^^^^^^^^^~12/01/2008~
-~01175~^~320~^14.^0^^~4~^~NC~^^^^^^^^^^~01/01/2009~
-~01175~^~321~^2.^0^^~4~^~BFZN~^~01082~^^^^^^^^^~12/01/2008~
-~01175~^~322~^0.^0^^~4~^~BFZN~^~01082~^^^^^^^^^~12/01/2008~
-~01175~^~324~^1.^0^^~4~^~BFFN~^~01211~^^^^^^^^^~01/01/2009~
-~01175~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~12/01/2008~
-~01175~^~337~^0.^0^^~4~^~BFZN~^~01082~^^^^^^^^^~12/01/2008~
-~01175~^~338~^0.^0^^~4~^~BFZN~^~01082~^^^^^^^^^~12/01/2008~
-~01175~^~417~^5.^12^0.^~1~^~A~^^^1^4.^5.^11^4.^5.^~2, 3~^~12/01/2008~
-~01175~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~12/01/2008~
-~01175~^~432~^5.^12^0.^~1~^~A~^^^1^4.^5.^11^4.^5.^^~01/01/2009~
-~01175~^~435~^5.^0^^~4~^~NC~^^^^^^^^^^~03/01/2009~
-~01175~^~601~^5.^4^0.^~1~^~A~^^^1^4.^5.^3^4.^5.^~2, 3~^~12/01/2008~
-~01175~^~638~^0.^4^0.^~1~^~A~^^^1^0.^0.^^^^~1, 2, 3~^~12/01/2008~
-~01175~^~639~^0.^4^0.^~1~^~A~^^^1^0.^0.^^^^~1, 2, 3~^~12/01/2008~
-~01175~^~641~^0.^4^0.^~1~^~A~^^^1^0.^0.^^^^~1, 2, 3~^~12/01/2008~
-~01178~^~208~^181.^0^^~4~^^^^^^^^^^^~02/01/2009~
-~01178~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2003~
-~01178~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2003~
-~01178~^~268~^757.^0^^~4~^^^^^^^^^^^~02/01/2009~
-~01178~^~301~^141.^0^^~8~^^^^^^^^^^^~02/01/2009~
-~01178~^~304~^11.^0^^~4~^^^^^^^^^^^~02/01/2009~
-~01178~^~305~^85.^0^^~4~^^^^^^^^^^^~02/01/2009~
-~01178~^~306~^211.^0^^~8~^^^^^^^^^^^~02/01/2009~
-~01178~^~307~^70.^0^^~8~^^^^^^^^^^^~02/01/2009~
-~01178~^~318~^436.^0^^~4~^~NC~^^^^^^^^^^~02/01/2009~
-~01178~^~319~^117.^0^^~4~^~BFFN~^~01056~^^^^^^^^^~01/01/2003~
-~01178~^~320~^119.^0^^~4~^~NC~^^^^^^^^^^~02/01/2009~
-~01178~^~321~^27.^0^^~4~^~BFFN~^~01056~^^^^^^^^^~01/01/2003~
-~01178~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2003~
-~01178~^~324~^10.^0^^~4~^~BFFN~^~01211~^^^^^^^^^~02/01/2009~
-~01178~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2003~
-~01178~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2003~
-~01178~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2003~
-~01178~^~417~^11.^0^^~4~^^^^^^^^^^^~02/01/2009~
-~01178~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2003~
-~01178~^~432~^11.^0^^~4~^^^^^^^^^^^~02/01/2009~
-~01178~^~435~^11.^0^^~4~^~NC~^^^^^^^^^^~02/01/2009~
-~01178~^~601~^35.^0^^~8~^^^^^^^^^^^~02/01/2009~
-~01179~^~208~^136.^0^^~4~^^^^^^^^^^^~06/01/2013~
-~01179~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2003~
-~01179~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2003~
-~01179~^~268~^569.^0^^~4~^^^^^^^^^^^~06/01/2013~
-~01179~^~301~^141.^0^^~8~^^^^^^^^^^^~02/01/2009~
-~01179~^~304~^10.^0^^~4~^^^^^^^^^^^~02/01/2009~
-~01179~^~305~^71.^0^^~8~^^^^^^^^^^^~02/01/2009~
-~01179~^~306~^212.^0^^~8~^^^^^^^^^^^~02/01/2009~
-~01179~^~307~^83.^0^^~4~^~NR~^^^^^^^^^^~06/01/2013~
-~01179~^~318~^328.^0^^~4~^~NC~^^^^^^^^^^~02/01/2009~
-~01179~^~319~^88.^0^^~4~^~BFFN~^~01056~^^^^^^^^^~01/01/2003~
-~01179~^~320~^90.^0^^~4~^~NC~^^^^^^^^^^~02/01/2009~
-~01179~^~321~^21.^0^^~4~^~BFFN~^~01056~^^^^^^^^^~01/01/2003~
-~01179~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2003~
-~01179~^~324~^8.^0^^~4~^~BFFN~^~01211~^^^^^^^^^~02/01/2009~
-~01179~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2003~
-~01179~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2003~
-~01179~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2003~
-~01179~^~417~^11.^0^^~4~^^^^^^^^^^^~02/01/2009~
-~01179~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2003~
-~01179~^~432~^11.^0^^~4~^^^^^^^^^^^~02/01/2009~
-~01179~^~435~^11.^0^^~4~^~NC~^^^^^^^^^^~02/01/2009~
-~01179~^~601~^35.^0^^~8~^^^^^^^^^^^~02/01/2009~
-~01180~^~208~^74.^0^^~4~^^^^^^^^^^^~01/01/2007~
-~01180~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2003~
-~01180~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2003~
-~01180~^~268~^310.^0^^~4~^^^^^^^^^^^~01/01/2007~
-~01180~^~301~^125.^0^^~8~^^^^^^^^^^^~01/01/2007~
-~01180~^~304~^10.^0^^~4~^^^^^^^^^^^~01/01/2007~
-~01180~^~305~^95.^0^^~4~^^^^^^^^^^^~01/01/2007~
-~01180~^~306~^129.^0^^~4~^^^^^^^^^^^~01/01/2007~
-~01180~^~307~^141.^0^^~8~^^^^^^^^^^^~01/01/2007~
-~01180~^~318~^255.^0^^~4~^~NC~^^^^^^^^^^~03/01/2003~
-~01180~^~319~^72.^0^^~4~^~NC~^^^^^^^^^^~01/01/2003~
-~01180~^~320~^73.^0^^~4~^~NC~^^^^^^^^^^~01/01/2003~
-~01180~^~321~^9.^0^^~4~^~NR~^^^^^^^^^^~01/01/2003~
-~01180~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2003~
-~01180~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~
-~01180~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2003~
-~01180~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2003~
-~01180~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2003~
-~01180~^~417~^11.^0^^~4~^^^^^^^^^^^~01/01/2007~
-~01180~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2003~
-~01180~^~432~^11.^0^^~4~^^^^^^^^^^^~01/01/2007~
-~01180~^~435~^11.^0^^~4~^~NC~^^^^^^^^^^~01/01/2007~
-~01180~^~601~^9.^0^^~8~^^^^^^^^^^^~01/01/2007~
-~01184~^~208~^43.^0^^~8~^~LC~^^^^^^^^^^~02/01/2009~
-~01184~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2003~
-~01184~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2003~
-~01184~^~268~^180.^0^^~8~^~LC~^^^^^^^^^^~02/01/2009~
-~01184~^~301~^143.^0^^~8~^~LC~^^^^^^^^^^~02/01/2009~
-~01184~^~304~^13.^0^^~4~^~BFZN~^^^^^^^^^^~02/01/2009~
-~01184~^~305~^109.^0^^~4~^~BFZN~^^^^^^^^^^~02/01/2009~
-~01184~^~306~^177.^0^^~4~^~BFZN~^^^^^^^^^^~02/01/2009~
-~01184~^~307~^59.^0^^~8~^~LC~^^^^^^^^^^~02/01/2009~
-~01184~^~318~^6.^0^^~4~^~NC~^^^^^^^^^^~02/01/2009~
-~01184~^~319~^2.^0^^~4~^~BFFN~^~01119~^^^^^^^^^~02/01/2009~
-~01184~^~320~^2.^0^^~4~^~NC~^^^^^^^^^^~02/01/2009~
-~01184~^~321~^0.^0^^~4~^~BFFN~^~01119~^^^^^^^^^~02/01/2009~
-~01184~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2003~
-~01184~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~
-~01184~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2003~
-~01184~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2003~
-~01184~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2003~
-~01184~^~417~^8.^0^^~4~^~BFZN~^^^^^^^^^^~02/01/2009~
-~01184~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2003~
-~01184~^~432~^8.^0^^~4~^~BFZN~^^^^^^^^^^~02/01/2009~
-~01184~^~435~^8.^0^^~4~^~NC~^^^^^^^^^^~02/01/2009~
-~01184~^~601~^2.^0^^~8~^~LC~^^^^^^^^^^~02/01/2009~
-~01185~^~208~^370.^0^^~4~^~NC~^^^^^^^^^^~01/01/2007~
-~01185~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2003~
-~01185~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2003~
-~01185~^~268~^1548.^0^^~4~^^^^^^^^^^^~01/01/2007~
-~01185~^~301~^800.^0^^~8~^~LC~^^^^^^^^^^~01/01/2007~
-~01185~^~304~^40.^0^^~4~^~BFZN~^^^^^^^^^^~01/01/2007~
-~01185~^~305~^700.^0^^~4~^~BFZN~^^^^^^^^^^~01/01/2007~
-~01185~^~306~^600.^0^^~8~^~LC~^^^^^^^^^^~01/01/2007~
-~01185~^~307~^1150.^0^^~8~^~LC~^^^^^^^^^^~01/01/2007~
-~01185~^~318~^151.^0^^~4~^~NC~^^^^^^^^^^~03/01/2003~
-~01185~^~319~^39.^0^^~4~^~BFFN~^~01009~^^^^^^^^^~01/01/2003~
-~01185~^~320~^40.^0^^~4~^~NC~^^^^^^^^^^~01/01/2003~
-~01185~^~321~^13.^0^^~4~^~BFFN~^~01009~^^^^^^^^^~01/01/2003~
-~01185~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2003~
-~01185~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~
-~01185~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2003~
-~01185~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2003~
-~01185~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2003~
-~01185~^~417~^25.^0^^~4~^~BFZN~^^^^^^^^^^~01/01/2007~
-~01185~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2003~
-~01185~^~432~^25.^0^^~4~^~BFZN~^^^^^^^^^^~01/01/2007~
-~01185~^~435~^25.^0^^~4~^~NC~^^^^^^^^^^~01/01/2007~
-~01185~^~601~^20.^0^^~8~^~LC~^^^^^^^^^^~01/01/2007~
-~01186~^~208~^105.^0^^~4~^~NC~^^^^^^^^^^~06/01/2008~
-~01186~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2003~
-~01186~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2003~
-~01186~^~268~^441.^0^^~4~^~NC~^^^^^^^^^^~06/01/2008~
-~01186~^~301~^351.^2^^~1~^~A~^^^1^^^^^^^~06/01/2008~
-~01186~^~304~^22.^2^^~1~^~A~^^^1^^^^^^^~06/01/2008~
-~01186~^~305~^523.^2^^~1~^~A~^^^1^^^^^^^~06/01/2008~
-~01186~^~306~^278.^2^^~1~^~A~^^^1^^^^^^^~06/01/2008~
-~01186~^~307~^702.^2^^~1~^~A~^^^1^^^^^^^~06/01/2008~
-~01186~^~318~^53.^0^^~4~^~NC~^^^^^^^^^^~06/01/2008~
-~01186~^~319~^10.^0^^~4~^~BFFN~^~01017~^^^^^^^^^~06/01/2008~
-~01186~^~320~^11.^0^^~4~^~NC~^^^^^^^^^^~06/01/2008~
-~01186~^~321~^11.^2^^~1~^~A~^^^1^^^^^^^~06/01/2008~
-~01186~^~322~^0.^2^^~1~^~A~^^^1^^^^^^^~06/01/2008~
-~01186~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~
-~01186~^~334~^0.^2^^~1~^~A~^^^1^^^^^^^~06/01/2008~
-~01186~^~337~^0.^2^^~1~^~A~^^^1^^^^^^^~06/01/2008~
-~01186~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2003~
-~01186~^~417~^35.^2^^~1~^~A~^^^1^^^^^^^~06/01/2008~
-~01186~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~
-~01186~^~432~^35.^2^^~1~^~A~^^^^^^^^^^~06/01/2008~
-~01186~^~435~^35.^0^^~4~^~NC~^^^^^^^^^^~06/01/2008~
-~01186~^~601~^12.^2^^~1~^~A~^^^1^^^^^^^~06/01/2008~
-~01187~^~208~^112.^0^^~9~^~MC~^^^^^^^^^^~02/01/2009~
-~01187~^~262~^2.^0^^~4~^~BFZN~^^^^^^^^^^~02/01/1998~
-~01187~^~263~^23.^0^^~4~^~BFZN~^^^^^^^^^^~02/01/1998~
-~01187~^~268~^469.^0^^~9~^~MC~^^^^^^^^^^~02/01/2009~
-~01187~^~301~^88.^0^^~9~^~MC~^^^^^^^^^^~11/01/1996~
-~01187~^~304~^40.^0^^~4~^~RA~^^^^^^^^^^~11/01/1996~
-~01187~^~305~^166.^0^^~4~^~RA~^^^^^^^^^^~11/01/1996~
-~01187~^~306~^339.^0^^~4~^~RA~^^^^^^^^^^~11/01/1996~
-~01187~^~307~^135.^0^^~9~^~MC~^^^^^^^^^^~11/01/1996~
-~01187~^~318~^0.^0^^~9~^~MC~^^^^^^^^^^~11/01/1996~
-~01187~^~319~^0.^0^^~4~^~BFFN~^~01118~^^^^^^^^^~01/01/2003~
-~01187~^~320~^0.^0^^~4~^~NC~^^^^^^^^^^~02/01/2009~
-~01187~^~321~^0.^0^^~4~^~BFFN~^~01118~^^^^^^^^^~01/01/2003~
-~01187~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2003~
-~01187~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~
-~01187~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2003~
-~01187~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2003~
-~01187~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2003~
-~01187~^~417~^12.^0^^~4~^~RA~^^^^^^^^^^~11/01/1996~
-~01187~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2003~
-~01187~^~432~^12.^0^^~4~^~RA~^^^^^^^^^^~02/01/2009~
-~01187~^~435~^12.^0^^~4~^~NC~^^^^^^^^^^~02/01/2009~
-~01187~^~601~^1.^0^^~4~^~RA~^^^^^^^^^^~11/01/1996~
-~01188~^~208~^276.^0^^~9~^~MC~^^^^^^^^^^~02/01/1999~
-~01188~^~268~^1155.^0^^~9~^~MC~^^^^^^^^^^
-~01188~^~301~^359.^0^^~9~^~MC~^^^^^^^^^^~02/01/1999~
-~01188~^~305~^806.^0^^~9~^~MC~^^^^^^^^^^~02/01/1999~
-~01188~^~306~^240.^0^^~9~^~MC~^^^^^^^^^^~02/01/1999~
-~01188~^~307~^1638.^0^^~9~^~MC~^^^^^^^^^^~02/01/1999~
-~01188~^~318~^649.^0^^~9~^~MC~^^^^^^^^^^~02/01/1999~
-~01188~^~601~^75.^0^^~9~^~MC~^^^^^^^^^^~02/01/1999~
-~01189~^~208~^215.^0^^~9~^~MC~^^^^^^^^^^~02/01/1999~
-~01189~^~268~^900.^0^^~9~^~MC~^^^^^^^^^^
-~01189~^~301~^418.^0^^~9~^~MC~^^^^^^^^^^~02/01/1999~
-~01189~^~305~^943.^0^^~9~^~MC~^^^^^^^^^^~02/01/1999~
-~01189~^~306~^297.^0^^~9~^~MC~^^^^^^^^^^~02/01/1999~
-~01189~^~307~^1705.^0^^~9~^~MC~^^^^^^^^^^~02/01/1999~
-~01189~^~318~^628.^0^^~9~^~MC~^^^^^^^^^^~02/01/1999~
-~01189~^~601~^35.^0^^~9~^~MC~^^^^^^^^^^~02/01/1999~
-~01190~^~208~^148.^0^^~9~^~MC~^^^^^^^^^^~02/01/1999~
-~01190~^~268~^619.^0^^~9~^~MC~^^^^^^^^^^
-~01190~^~301~^712.^0^^~9~^~MC~^^^^^^^^^^~02/01/1999~
-~01190~^~305~^923.^0^^~9~^~MC~^^^^^^^^^^~02/01/1999~
-~01190~^~306~^236.^0^^~9~^~MC~^^^^^^^^^^~02/01/1999~
-~01190~^~307~^1298.^0^^~9~^~MC~^^^^^^^^^^~02/01/1999~
-~01190~^~318~^2166.^0^^~9~^~MC~^^^^^^^^^^~02/01/1999~
-~01190~^~601~^16.^0^^~9~^~MC~^^^^^^^^^^~02/01/1999~
-~01191~^~208~^303.^0^^~9~^~MC~^^^^^^^^^^~02/01/1999~
-~01191~^~268~^1268.^0^^~9~^~MC~^^^^^^^^^^
-~01191~^~301~^466.^0^^~9~^~MC~^^^^^^^^^^~02/01/1999~
-~01191~^~305~^863.^0^^~9~^~MC~^^^^^^^^^^~02/01/1999~
-~01191~^~306~^335.^0^^~9~^~MC~^^^^^^^^^^~02/01/1999~
-~01191~^~307~^1499.^0^^~9~^~MC~^^^^^^^^^^~02/01/1999~
-~01191~^~318~^1107.^0^^~9~^~MC~^^^^^^^^^^~02/01/1999~
-~01191~^~601~^80.^0^^~9~^~MC~^^^^^^^^^^~02/01/1999~
-~01192~^~208~^222.^0^^~9~^~MC~^^^^^^^^^^~02/01/1999~
-~01192~^~268~^929.^0^^~9~^~MC~^^^^^^^^^^
-~01192~^~301~^574.^0^^~9~^~MC~^^^^^^^^^^~02/01/1999~
-~01192~^~305~^1024.^0^^~9~^~MC~^^^^^^^^^^~02/01/1999~
-~01192~^~306~^345.^0^^~9~^~MC~^^^^^^^^^^~02/01/1999~
-~01192~^~307~^1586.^0^^~9~^~MC~^^^^^^^^^^~02/01/1999~
-~01192~^~318~^982.^0^^~9~^~MC~^^^^^^^^^^~02/01/1999~
-~01192~^~601~^42.^0^^~9~^~MC~^^^^^^^^^^~02/01/1999~
-~01193~^~208~^152.^0^^~9~^~MC~^^^^^^^^^^~02/01/1999~
-~01193~^~268~^636.^0^^~9~^~MC~^^^^^^^^^^
-~01193~^~301~^161.^0^^~9~^~MC~^^^^^^^^^^~02/01/1999~
-~01193~^~305~^110.^0^^~9~^~MC~^^^^^^^^^^~02/01/1999~
-~01193~^~306~^210.^0^^~9~^~MC~^^^^^^^^^^~02/01/1999~
-~01193~^~307~^59.^0^^~9~^~MC~^^^^^^^^^^~02/01/1999~
-~01193~^~318~^1053.^0^^~9~^~MC~^^^^^^^^^^~02/01/1999~
-~01193~^~601~^50.^0^^~9~^~MC~^^^^^^^^^^~02/01/1999~
-~01194~^~208~^91.^0^^~9~^~MC~^^^^^^^^^^~02/01/1999~
-~01194~^~268~^381.^0^^~9~^~MC~^^^^^^^^^^
-~01194~^~301~^141.^0^^~9~^~MC~^^^^^^^^^^~02/01/1999~
-~01194~^~305~^116.^0^^~9~^~MC~^^^^^^^^^^~02/01/1999~
-~01194~^~306~^219.^0^^~9~^~MC~^^^^^^^^^^~02/01/1999~
-~01194~^~307~^72.^0^^~9~^~MC~^^^^^^^^^^~02/01/1999~
-~01194~^~318~^679.^0^^~9~^~MC~^^^^^^^^^^~02/01/1999~
-~01194~^~601~^9.^0^^~9~^~MC~^^^^^^^^^^~02/01/1999~
-~01199~^~208~^59.^0^^~4~^~NC~^^^^^^^^^^~12/01/2006~
-~01199~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~
-~01199~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~
-~01199~^~268~^247.^0^^~4~^~NC~^^^^^^^^^^~12/01/2006~
-~01199~^~301~^96.^1^^~8~^~LC~^^^^^^^^^^~02/01/2003~
-~01199~^~304~^16.^0^^~4~^~BFNN~^~01049~^^^^^^^^^~02/01/2003~
-~01199~^~305~^151.^0^^~4~^~BFNN~^~01049~^^^^^^^^^~02/01/2003~
-~01199~^~306~^206.^0^^~4~^~BFNN~^~01049~^^^^^^^^^~02/01/2003~
-~01199~^~307~^100.^0^^~4~^~O~^^^^^^^^^^~08/01/2011~
-~01199~^~318~^43.^0^^~4~^~NC~^^^^^^^^^^~12/01/2006~
-~01199~^~319~^12.^0^^~4~^~BFFN~^~01049~^^^^^^^^^~02/01/2003~
-~01199~^~320~^12.^0^^~4~^~NC~^^^^^^^^^^~12/01/2006~
-~01199~^~321~^3.^0^^~4~^~BFFN~^~01049~^^^^^^^^^~02/01/2003~
-~01199~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~
-~01199~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~
-~01199~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~
-~01199~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~
-~01199~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~
-~01199~^~417~^4.^0^^~4~^~NR~^^^^^^^^^^~02/01/2003~
-~01199~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~
-~01199~^~432~^4.^0^^~4~^~BFNN~^~01049~^^^^^^^^^~02/01/2003~
-~01199~^~435~^4.^0^^~4~^~NC~^^^^^^^^^^~12/01/2006~
-~01199~^~601~^5.^1^^~8~^~LC~^^^^^^^^^^~02/01/2003~
-~01200~^~208~^149.^1^^~1~^~A~^^^^^^^^^^~04/01/2003~
-~01200~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2003~
-~01200~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2003~
-~01200~^~268~^623.^0^^~1~^~A~^^^^^^^^^^~06/01/2003~
-~01200~^~301~^108.^1^^~1~^~A~^^^^^^^^^^~04/01/2003~
-~01200~^~304~^8.^0^^~4~^~BFAN~^~01077~^^^^^^^^^~04/01/2003~
-~01200~^~305~^68.^0^^~4~^~BFAN~^~01077~^^^^^^^^^~04/01/2003~
-~01200~^~306~^108.^0^^~4~^~BFAN~^~01077~^^^^^^^^^~04/01/2003~
-~01200~^~307~^72.^1^^~1~^~A~^^^^^^^^^^~04/01/2003~
-~01200~^~318~^175.^1^^~1~^~A~^^^^^^^^^^~04/01/2003~
-~01200~^~319~^48.^0^^~4~^~BNA~^~01077~^^^^^^^^^~06/01/2003~
-~01200~^~320~^49.^0^^~4~^~NC~^^^^^^^^^^~06/01/2003~
-~01200~^~321~^9.^0^^~4~^~BNA~^~01077~^^^^^^^^^~06/01/2003~
-~01200~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2003~
-~01200~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~
-~01200~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2003~
-~01200~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2003~
-~01200~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2003~
-~01200~^~417~^17.^0^^~4~^~NR~^^^^^^^^^^~04/01/2003~
-~01200~^~431~^0.^0^^~4~^~BFNN~^~01077~^^^^^^^^^~04/01/2003~
-~01200~^~432~^17.^0^^~4~^~BFNN~^~01077~^^^^^^^^^~04/01/2003~
-~01200~^~435~^17.^0^^~4~^~NC~^^^^^^^^^^~03/01/2007~
-~01200~^~601~^16.^1^^~1~^~A~^^^^^^^^^^~04/01/2003~
-~01202~^~208~^78.^0^^~4~^~NC~^^^^^^^^^^~02/01/2005~
-~01202~^~262~^1.^1^^~1~^~A~^^^^^^^^^~1~^~02/01/2005~
-~01202~^~263~^22.^1^^~1~^~A~^^^^^^^^^^~02/01/2005~
-~01202~^~268~^325.^0^^~4~^~NC~^^^^^^^^^^~02/01/2005~
-~01202~^~301~^194.^1^^~1~^~A~^^^^^^^^^^~02/01/2005~
-~01202~^~304~^14.^2^^~1~^~A~^^^1^^^^^^^~02/01/2005~
-~01202~^~305~^76.^2^^~1~^~A~^^^1^^^^^^^~02/01/2005~
-~01202~^~306~^123.^2^^~1~^~A~^^^1^^^^^^^~02/01/2005~
-~01202~^~307~^66.^2^^~1~^~A~^^^1^^^^^^^~02/01/2005~
-~01202~^~318~^227.^0^^~1~^~AS~^^^^^^^^^^~02/01/2005~
-~01202~^~319~^63.^1^^~1~^~A~^^^^^^^^^^~02/01/2005~
-~01202~^~320~^64.^0^^~1~^~AS~^^^^^^^^^^~02/01/2005~
-~01202~^~321~^11.^2^^~1~^~A~^^^1^^^^^^^~02/01/2005~
-~01202~^~322~^0.^2^^~1~^~A~^^^1^^^^^^^~02/01/2005~
-~01202~^~334~^0.^2^^~1~^~A~^^^1^^^^^^^~02/01/2005~
-~01202~^~337~^0.^2^^~1~^~A~^^^1^^^^^^^~02/01/2005~
-~01202~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2005~
-~01202~^~417~^2.^2^^~1~^~A~^^^1^^^^^^^~02/01/2005~
-~01202~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2005~
-~01202~^~432~^2.^2^^~1~^~A~^^^^^^^^^^~02/01/2005~
-~01202~^~435~^2.^0^^~4~^~NC~^^^^^^^^^^~06/01/2005~
-~01202~^~601~^8.^2^^~1~^~A~^^^1^^^^^^^~02/01/2005~
-~01202~^~638~^0.^2^^~1~^~A~^^^1^^^^^^^~02/01/2005~
-~01202~^~639~^0.^2^^~1~^~A~^^^1^^^^^^^~02/01/2005~
-~01202~^~641~^0.^2^^~1~^~A~^^^1^^^^^^^~02/01/2005~
-~01203~^~208~^105.^0^^~4~^~NC~^^^^^^^^^^~02/01/2009~
-~01203~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~
-~01203~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~
-~01203~^~268~^440.^0^^~4~^~NC~^^^^^^^^^^~02/01/2009~
-~01203~^~301~^152.^0^^~4~^^^^^^^^^^^~02/01/2009~
-~01203~^~304~^16.^0^^~1~^^^^^^^^^^^~02/01/2005~
-~01203~^~305~^133.^0^^~1~^^^^^^^^^^^~02/01/2005~
-~01203~^~306~^194.^0^^~4~^^^^^^^^^^^~02/01/2009~
-~01203~^~307~^58.^0^^~4~^^^^^^^^^^^~02/01/2009~
-~01203~^~318~^443.^0^^~4~^~NC~^^^^^^^^^^~02/01/2009~
-~01203~^~319~^131.^0^^~4~^~T~^^^^^^^^^^~02/01/2009~
-~01203~^~320~^131.^0^^~4~^~NC~^^^^^^^^^^~02/01/2009~
-~01203~^~321~^4.^0^^~4~^~BFNN~^~43261~^^^^^^^^^~03/01/2005~
-~01203~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~
-~01203~^~324~^1.^0^^~4~^~BFFN~^~01211~^^^^^^^^^~02/01/2009~
-~01203~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~
-~01203~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~
-~01203~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~
-~01203~^~417~^10.^0^^~1~^^^^^^^^^^^~02/01/2009~
-~01203~^~431~^0.^0^^~4~^~BFNN~^~43261~^^^^^^^^^~02/01/2009~
-~01203~^~432~^10.^0^^~4~^~NR~^^^^^^^^^^~03/01/2005~
-~01203~^~435~^10.^0^^~4~^~NC~^^^^^^^^^^~02/01/2009~
-~01203~^~601~^6.^0^^~1~^^^^^^^^^^^~02/01/2005~
-~01204~^~208~^265.^0^^~4~^~NC~^^^^^^^^^^~02/01/2009~
-~01204~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2007~
-~01204~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2007~
-~01204~^~268~^1111.^0^^~4~^~NC~^^^^^^^^^^~02/01/2009~
-~01204~^~301~^1109.^6^15.^~1~^~A~^^^1^1068.^1160.^5^1070.^1148.^~2, 3~^~05/01/2007~
-~01204~^~304~^38.^6^1.^~1~^~A~^^^1^33.^42.^5^34.^41.^~2, 3~^~05/01/2007~
-~01204~^~305~^729.^6^10.^~1~^~A~^^^1^704.^767.^5^703.^754.^~2, 3~^~05/01/2007~
-~01204~^~306~^125.^6^17.^~1~^~A~^^^1^68.^160.^5^79.^170.^~2, 3~^~05/01/2007~
-~01204~^~307~^1529.^6^51.^~1~^~A~^^^1^1367.^1713.^5^1395.^1662.^~2, 3~^~05/01/2007~
-~01204~^~318~^605.^0^^~4~^~NC~^^^^^^^^^^~02/01/2009~
-~01204~^~319~^156.^0^^~4~^~BFFN~^~01208~^^^^^^^^^~05/01/2007~
-~01204~^~320~^160.^0^^~4~^~NC~^^^^^^^^^^~02/01/2009~
-~01204~^~321~^51.^0^^~4~^~BFFN~^~01208~^^^^^^^^^~05/01/2007~
-~01204~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2007~
-~01204~^~324~^15.^0^^~4~^~BFFN~^~01211~^^^^^^^^^~02/01/2009~
-~01204~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2007~
-~01204~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2007~
-~01204~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2007~
-~01204~^~417~^10.^2^^~1~^~A~^^^1^10.^11.^1^^^^~05/01/2007~
-~01204~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2007~
-~01204~^~432~^10.^2^^~1~^~A~^^^^^^^^^^~02/01/2009~
-~01204~^~435~^10.^0^^~4~^~NC~^^^^^^^^^^~02/01/2009~
-~01204~^~601~^88.^3^6.^~1~^~A~^^^1^79.^99.^2^61.^113.^~2, 3~^~05/01/2007~
-~01205~^~208~^251.^0^^~4~^~RA~^^^^^^^^^^~03/01/2007~
-~01205~^~262~^3.^0^^~4~^~RA~^^^^^^^^^^~03/01/2007~
-~01205~^~263~^100.^0^^~4~^~RA~^^^^^^^^^^~03/01/2007~
-~01205~^~268~^1049.^0^^~4~^~RA~^^^^^^^^^^~03/01/2007~
-~01205~^~301~^6.^0^^~4~^~RA~^^^^^^^^^^~03/01/2007~
-~01205~^~304~^19.^0^^~4~^~RA~^^^^^^^^^^~03/01/2007~
-~01205~^~305~^28.^0^^~4~^~RA~^^^^^^^^^^~03/01/2007~
-~01205~^~306~^96.^0^^~4~^~RA~^^^^^^^^^^~03/01/2007~
-~01205~^~307~^67.^0^^~4~^~O~^^^^^^^^^^~06/01/2013~
-~01205~^~318~^0.^0^^~4~^~RA~^^^^^^^^^^~02/01/2009~
-~01205~^~319~^0.^0^^~4~^~RA~^^^^^^^^^^~02/01/2009~
-~01205~^~320~^0.^0^^~4~^~NC~^^^^^^^^^^~02/01/2009~
-~01205~^~321~^0.^0^^~4~^~RA~^^^^^^^^^^~02/01/2009~
-~01205~^~322~^0.^0^^~4~^~RA~^^^^^^^^^^~02/01/2009~
-~01205~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~
-~01205~^~334~^0.^0^^~4~^~RA~^^^^^^^^^^~02/01/2009~
-~01205~^~337~^0.^0^^~4~^~RA~^^^^^^^^^^~02/01/2009~
-~01205~^~338~^1.^0^^~4~^~RA~^^^^^^^^^^~03/01/2007~
-~01205~^~417~^1.^0^^~4~^~RA~^^^^^^^^^^~03/01/2007~
-~01205~^~431~^0.^0^^~4~^~RA~^^^^^^^^^^~02/01/2009~
-~01205~^~432~^1.^0^^~4~^~RA~^^^^^^^^^^~03/01/2007~
-~01205~^~435~^1.^0^^~4~^~NC~^^^^^^^^^^~02/01/2009~
-~01205~^~601~^0.^0^^~4~^~RA~^^^^^^^^^^~02/01/2009~
-~01205~^~636~^20.^0^^~4~^~RA~^^^^^^^^^^~03/01/2007~
-~01206~^~208~^482.^0^^~4~^~RA~^^^^^^^^^^~06/01/2013~
-~01206~^~262~^3.^0^^~4~^~RA~^^^^^^^^^^~03/01/2007~
-~01206~^~263~^92.^0^^~4~^~RA~^^^^^^^^^^~03/01/2007~
-~01206~^~268~^2018.^0^^~4~^~RA~^^^^^^^^^^~06/01/2013~
-~01206~^~301~^5.^0^^~4~^~RA~^^^^^^^^^^~03/01/2007~
-~01206~^~304~^17.^0^^~4~^~RA~^^^^^^^^^^~03/01/2007~
-~01206~^~305~^28.^0^^~4~^~RA~^^^^^^^^^^~03/01/2007~
-~01206~^~306~^90.^0^^~4~^~RA~^^^^^^^^^^~03/01/2007~
-~01206~^~307~^123.^0^^~4~^~NR~^^^^^^^^^^~06/01/2013~
-~01206~^~318~^0.^0^^~4~^~RA~^^^^^^^^^^~02/01/2009~
-~01206~^~319~^0.^0^^~4~^~RA~^^^^^^^^^^~02/01/2009~
-~01206~^~320~^0.^0^^~4~^~RA~^^^^^^^^^^~02/01/2009~
-~01206~^~321~^0.^0^^~4~^~RA~^^^^^^^^^^~02/01/2009~
-~01206~^~322~^0.^0^^~4~^~RA~^^^^^^^^^^~02/01/2009~
-~01206~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~
-~01206~^~334~^0.^0^^~4~^~RA~^^^^^^^^^^~02/01/2009~
-~01206~^~337~^0.^0^^~4~^~RA~^^^^^^^^^^~02/01/2009~
-~01206~^~338~^1.^0^^~4~^~RA~^^^^^^^^^^~03/01/2007~
-~01206~^~417~^1.^0^^~4~^~RA~^^^^^^^^^^~03/01/2007~
-~01206~^~431~^0.^0^^~4~^~RA~^^^^^^^^^^~02/01/2009~
-~01206~^~432~^1.^0^^~4~^~RA~^^^^^^^^^^~03/01/2007~
-~01206~^~435~^1.^0^^~4~^~NC~^^^^^^^^^^~02/01/2009~
-~01206~^~601~^0.^0^^~4~^~RA~^^^^^^^^^^~02/01/2009~
-~01206~^~636~^18.^0^^~4~^~RA~^^^^^^^^^^~03/01/2007~
-~01208~^~208~^274.^0^^~8~^^^^^^^^^^^~06/01/2013~
-~01208~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2007~
-~01208~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2007~
-~01208~^~268~^1146.^0^^~8~^^^^^^^^^^^~06/01/2013~
-~01208~^~301~^756.^18^17.^~1~^^^^^^^^^^^~04/01/2007~
-~01208~^~304~^28.^13^0.^~1~^^^^^^^^^^^~04/01/2007~
-~01208~^~305~^496.^13^16.^~1~^^^^^^^^^^^~04/01/2007~
-~01208~^~306~^138.^11^12.^~1~^^^^^^^^^^^~04/01/2007~
-~01208~^~307~^615.^0^^~4~^~NR~^^^^^^^^^^~06/01/2013~
-~01208~^~318~^532.^0^^~4~^~NC~^^^^^^^^^^~02/01/2009~
-~01208~^~319~^137.^0^^~4~^~BFFN~^~01009~^^^^^^^^^~04/01/2007~
-~01208~^~320~^141.^0^^~4~^~NC~^^^^^^^^^^~02/01/2009~
-~01208~^~321~^45.^0^^~4~^~BFFN~^~01009~^^^^^^^^^~04/01/2007~
-~01208~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2007~
-~01208~^~324~^13.^0^^~4~^~BFFN~^~01211~^^^^^^^^^~02/01/2009~
-~01208~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2007~
-~01208~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2007~
-~01208~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2007~
-~01208~^~417~^10.^15^1.^~1~^^^^^^^^^^^~04/01/2007~
-~01208~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2007~
-~01208~^~432~^10.^15^1.^~1~^^^^^^^^^^^~02/01/2009~
-~01208~^~435~^10.^0^^~4~^~NC~^^^^^^^^^^~06/01/2009~
-~01208~^~601~^55.^0^^~8~^^^^^^^^^^^~02/01/2009~
-~01209~^~208~^282.^2^^~8~^~LC~^^^1^282.^282.^1^^^^~04/01/2007~
-~01209~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2007~
-~01209~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2007~
-~01209~^~268~^1181.^2^^~8~^~LC~^^^^^^^^^^~02/01/2017~
-~01209~^~301~^1146.^2^^~8~^~LC~^^^1^882.^1411.^1^^^^~04/01/2007~
-~01209~^~304~^35.^1^^~1~^~A~^^^^^^^^^^~02/01/2009~
-~01209~^~305~^583.^1^^~1~^~A~^^^^^^^^^^~02/01/2009~
-~01209~^~306~^93.^1^^~1~^~A~^^^^^^^^^^~02/01/2009~
-~01209~^~307~^776.^2^^~8~^~LC~^^^1^705.^847.^1^^^^~04/01/2007~
-~01209~^~318~^586.^0^^~4~^~NC~^^^^^^^^^^~02/01/2009~
-~01209~^~319~^151.^0^^~4~^~BFFN~^~01009~^^^^^^^^^~04/01/2007~
-~01209~^~320~^155.^0^^~4~^~NC~^^^^^^^^^^~02/01/2009~
-~01209~^~321~^50.^0^^~4~^~BFFN~^~01009~^^^^^^^^^~04/01/2007~
-~01209~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2007~
-~01209~^~324~^14.^0^^~4~^~BFFN~^~01211~^^^^^^^^^~02/01/2009~
-~01209~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2007~
-~01209~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2007~
-~01209~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2007~
-~01209~^~417~^20.^0^^~4~^~BFNN~^~01009~^^^^^^^^^~04/01/2007~
-~01209~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2007~
-~01209~^~432~^20.^0^^~4~^~BFNN~^~01009~^^^^^^^^^~04/01/2007~
-~01209~^~435~^20.^0^^~4~^~NC~^^^^^^^^^^~05/01/2009~
-~01209~^~601~^62.^2^^~8~^~LC~^^^1^53.^71.^1^^^^~04/01/2007~
-~01211~^~208~^61.^0^^~4~^~NC~^^^^^^^^^^~08/01/2010~
-~01211~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~12/01/2008~
-~01211~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~12/01/2008~
-~01211~^~268~^256.^0^^~4~^~NC~^^^^^^^^^^~02/01/2017~
-~01211~^~301~^113.^16^1.^~1~^~A~^^^1^112.^116.^11^108.^116.^~2, 3~^~12/01/2008~
-~01211~^~304~^10.^42^0.^~1~^~A~^^^9^7.^12.^6^9.^10.^~2, 3~^~12/01/2008~
-~01211~^~305~^84.^42^1.^~1~^~A~^^^9^59.^95.^8^81.^86.^~2, 3~^~12/01/2008~
-~01211~^~306~^132.^41^1.^~1~^~A~^^^9^106.^163.^15^127.^136.^~2, 3~^~12/01/2008~
-~01211~^~307~^43.^42^0.^~1~^~A~^^^9^26.^58.^17^41.^43.^~2, 3~^~12/01/2008~
-~01211~^~318~^162.^0^^~1~^~AS~^^^^^^^^^^~12/01/2008~
-~01211~^~319~^45.^4^1.^~1~^~A~^^^^^^^^^^~12/01/2008~
-~01211~^~320~^46.^0^^~1~^~AS~^^^^^^^^^^~08/01/2010~
-~01211~^~321~^7.^10^0.^~1~^~A~^^^3^2.^9.^6^5.^8.^~2, 3~^~12/01/2008~
-~01211~^~322~^0.^10^0.^~1~^~A~^^^3^0.^0.^^^^~1, 2, 3~^~12/01/2008~
-~01211~^~324~^2.^0^^~4~^~T~^^^^^^^^^^~08/01/2010~
-~01211~^~334~^0.^10^0.^~1~^~A~^^^3^0.^0.^^^^~1, 2, 3~^~12/01/2008~
-~01211~^~337~^0.^6^0.^~1~^~A~^^^2^0.^0.^^^^~1, 2, 3~^~12/01/2008~
-~01211~^~338~^0.^6^0.^~1~^~A~^^^2^0.^0.^^^^~1, 2, 3~^~12/01/2008~
-~01211~^~417~^5.^8^0.^~1~^^^^^^^^^^^~12/01/2008~
-~01211~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~12/01/2008~
-~01211~^~432~^5.^8^0.^~1~^^^^^^^^^^^~08/01/2010~
-~01211~^~435~^5.^0^^~4~^~NC~^^^^^^^^^^~08/01/2010~
-~01211~^~601~^10.^12^0.^~1~^~A~^^^1^6.^13.^11^9.^11.^~2, 3~^~12/01/2008~
-~01212~^~208~^496.^0^^~4~^~NC~^^^^^^^^^^~02/01/2009~
-~01212~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~
-~01212~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~
-~01212~^~268~^2075.^0^^~4~^~NC~^^^^^^^^^^~02/01/2009~
-~01212~^~301~^912.^18^17.^~1~^^^^^^^^^^^~02/01/2009~
-~01212~^~304~^85.^15^1.^~1~^^^^^^^^^^^~02/01/2009~
-~01212~^~305~^776.^18^14.^~1~^^^^^^^^^^^~02/01/2009~
-~01212~^~306~^1330.^15^41.^~1~^^^^^^^^^^^~02/01/2009~
-~01212~^~307~^371.^7^15.^~1~^^^^^^^^^^^~02/01/2009~
-~01212~^~318~^934.^0^^~4~^~NC~^^^^^^^^^^~02/01/2009~
-~01212~^~319~^253.^0^^~4~^~NC~^^^^^^^^^^~02/01/2009~
-~01212~^~320~^258.^0^^~4~^~NC~^^^^^^^^^^~02/01/2009~
-~01212~^~321~^55.^0^^~4~^~BFFN~^~01077~^^^^^^^^^~02/01/2009~
-~01212~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~
-~01212~^~324~^20.^0^^~4~^~BFFN~^~01211~^^^^^^^^^~02/01/2009~
-~01212~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~
-~01212~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~
-~01212~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~
-~01212~^~417~^37.^0^^~1~^^^^^^^^^^^~02/01/2009~
-~01212~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~
-~01212~^~432~^37.^0^^~1~^^^^^^^^^^^~02/01/2009~
-~01212~^~435~^37.^0^^~4~^~NC~^^^^^^^^^^~03/01/2009~
-~01212~^~601~^97.^2^^~1~^^^^^^^^^^^~02/01/2009~
-~01215~^~208~^240.^0^^~4~^~NC~^^^^^^^^^^~04/01/2009~
-~01215~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2009~
-~01215~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2009~
-~01215~^~268~^1003.^0^^~4~^~NC~^^^^^^^^^^~07/01/2017~
-~01215~^~301~^529.^0^^~4~^^^^^^^^^^^~03/01/2009~
-~01215~^~304~^33.^0^^~4~^^^^^^^^^^^~03/01/2009~
-~01215~^~305~^829.^0^^~4~^^^^^^^^^^^~03/01/2009~
-~01215~^~306~^330.^0^^~4~^^^^^^^^^^^~03/01/2009~
-~01215~^~307~^1201.^0^^~4~^~NR~^^^^^^^^^^~07/01/2017~
-~01215~^~318~^945.^0^^~4~^~NC~^^^^^^^^^^~04/01/2009~
-~01215~^~319~^243.^0^^~4~^~BFZN~^~01042~^^^^^^^^^~03/01/2009~
-~01215~^~320~^250.^0^^~4~^~NC~^^^^^^^^^^~04/01/2009~
-~01215~^~321~^80.^0^^~4~^~BFZN~^~01042~^^^^^^^^^~03/01/2009~
-~01215~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2009~
-~01215~^~324~^212.^0^^~4~^~O~^^^^^^^^^^~04/01/2009~
-~01215~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2009~
-~01215~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2009~
-~01215~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2009~
-~01215~^~417~^18.^0^^~4~^^^^^^^^^^^~03/01/2009~
-~01215~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2009~
-~01215~^~432~^18.^0^^~4~^^^^^^^^^^^~04/01/2009~
-~01215~^~435~^18.^0^^~4~^~NC~^^^^^^^^^^~04/01/2009~
-~01215~^~601~^53.^0^^~4~^^^^^^^^^^^~03/01/2009~
-~01216~^~208~^99.^0^^~4~^~NC~^^^^^^^^^^~02/01/2009~
-~01216~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2003~
-~01216~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2003~
-~01216~^~268~^415.^0^^~4~^~NC~^^^^^^^^^^~02/01/2009~
-~01216~^~301~^138.^0^^~1~^^^^^^^^^^^~11/01/1976~
-~01216~^~304~^13.^0^^~1~^^^^^^^^^^^~11/01/1976~
-~01216~^~305~^109.^0^^~1~^^^^^^^^^^^~11/01/1976~
-~01216~^~306~^177.^0^^~1~^^^^^^^^^^^~11/01/1976~
-~01216~^~307~^53.^0^^~1~^^^^^^^^^^^~11/01/1976~
-~01216~^~318~^40.^0^^~4~^~NC~^^^^^^^^^^~02/01/2009~
-~01216~^~319~^11.^0^^~4~^~T~^^^^^^^^^^~02/01/2009~
-~01216~^~320~^11.^0^^~4~^~NC~^^^^^^^^^^~02/01/2009~
-~01216~^~321~^2.^0^^~4~^~BFFN~^^^^^^^^^^~01/01/2003~
-~01216~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2003~
-~01216~^~324~^52.^45^0.^~1~^~A~^^^2^35.^80.^26^51.^53.^~2, 3~^~05/01/2009~
-~01216~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2003~
-~01216~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2003~
-~01216~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2003~
-~01216~^~417~^9.^0^^~1~^^^^^^^^^^^~11/01/1976~
-~01216~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~
-~01216~^~432~^9.^0^^~1~^^^^^^^^^^^~02/01/2009~
-~01216~^~435~^9.^0^^~4~^~NC~^^^^^^^^^^~05/01/2009~
-~01216~^~601~^5.^0^^~1~^^^^^^^^^^^~11/01/1976~
-~01217~^~208~^102.^0^^~4~^~NC~^^^^^^^^^^~02/01/2009~
-~01217~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2003~
-~01217~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2003~
-~01217~^~268~^426.^0^^~4~^~NC~^^^^^^^^^^~02/01/2009~
-~01217~^~301~^152.^0^^~1~^^^^^^^^^^^~11/01/1976~
-~01217~^~304~^15.^0^^~1~^^^^^^^^^^^~11/01/1976~
-~01217~^~305~^119.^0^^~1~^^^^^^^^^^^~11/01/1976~
-~01217~^~306~^195.^0^^~1~^^^^^^^^^^^~11/01/1976~
-~01217~^~307~^58.^0^^~1~^^^^^^^^^^^~11/01/1976~
-~01217~^~318~^36.^0^^~4~^~NC~^^^^^^^^^^~02/01/2009~
-~01217~^~319~^10.^0^^~4~^~T~^^^^^^^^^^~02/01/2009~
-~01217~^~320~^10.^0^^~4~^~NC~^^^^^^^^^^~02/01/2009~
-~01217~^~321~^2.^0^^~4~^~BFFN~^^^^^^^^^^~01/01/2003~
-~01217~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2003~
-~01217~^~324~^52.^45^0.^~1~^~A~^^^2^35.^80.^26^51.^53.^~2, 3~^~05/01/2009~
-~01217~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2003~
-~01217~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2003~
-~01217~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2003~
-~01217~^~417~^9.^0^^~1~^^^^^^^^^^^~11/01/1976~
-~01217~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~
-~01217~^~432~^9.^0^^~1~^^^^^^^^^^^~02/01/2009~
-~01217~^~435~^9.^0^^~4~^~NC~^^^^^^^^^^~05/01/2009~
-~01217~^~601~^4.^0^^~1~^^^^^^^^^^^~11/01/1976~
-~01218~^~208~^95.^0^^~4~^~NC~^^^^^^^^^^~12/01/2006~
-~01218~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2003~
-~01218~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2003~
-~01218~^~268~^399.^0^^~4~^~NC~^^^^^^^^^^~12/01/2006~
-~01218~^~301~^152.^0^^~4~^^^^^^^^^^^~12/01/2006~
-~01218~^~304~^15.^0^^~4~^^^^^^^^^^^~12/01/2006~
-~01218~^~305~^119.^0^^~4~^^^^^^^^^^^~12/01/2006~
-~01218~^~306~^194.^0^^~4~^^^^^^^^^^^~12/01/2006~
-~01218~^~307~^58.^0^^~4~^^^^^^^^^^^~12/01/2006~
-~01218~^~318~^12.^0^^~4~^~NC~^^^^^^^^^^~12/01/2006~
-~01218~^~319~^2.^0^^~4~^~RA~^^^^^^^^^^~01/01/2003~
-~01218~^~320~^2.^0^^~4~^~NC~^^^^^^^^^^~12/01/2006~
-~01218~^~321~^4.^0^^~4~^~RA~^^^^^^^^^^~01/01/2003~
-~01218~^~322~^0.^0^^~4~^~RA~^^^^^^^^^^~01/01/2003~
-~01218~^~324~^52.^45^0.^~1~^~A~^^^2^35.^80.^26^51.^53.^~2, 3~^~05/01/2009~
-~01218~^~334~^0.^0^^~4~^~RA~^^^^^^^^^^~01/01/2003~
-~01218~^~337~^0.^0^^~4~^~RA~^^^^^^^^^^~01/01/2003~
-~01218~^~338~^8.^0^^~4~^~RA~^^^^^^^^^^~01/01/2003~
-~01218~^~417~^9.^0^^~4~^^^^^^^^^^^~12/01/2006~
-~01218~^~431~^0.^0^^~4~^~RA~^^^^^^^^^^~01/01/2003~
-~01218~^~432~^9.^0^^~4~^^^^^^^^^^^~12/01/2006~
-~01218~^~435~^9.^0^^~4~^~NC~^^^^^^^^^^~05/01/2009~
-~01218~^~601~^2.^0^^~4~^^^^^^^^^^^~12/01/2006~
-~01219~^~208~^105.^0^^~4~^~NC~^^^^^^^^^^~02/01/2009~
-~01219~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~
-~01219~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~
-~01219~^~268~^440.^0^^~4~^~NC~^^^^^^^^^^~02/01/2009~
-~01219~^~301~^152.^0^^~4~^^^^^^^^^^^~02/01/2009~
-~01219~^~304~^16.^0^^~1~^^^^^^^^^^^~02/01/2005~
-~01219~^~305~^133.^0^^~1~^^^^^^^^^^^~02/01/2005~
-~01219~^~306~^194.^0^^~4~^^^^^^^^^^^~02/01/2009~
-~01219~^~307~^58.^0^^~4~^^^^^^^^^^^~02/01/2009~
-~01219~^~318~^443.^0^^~4~^~NC~^^^^^^^^^^~02/01/2009~
-~01219~^~319~^131.^0^^~4~^~T~^^^^^^^^^^~02/01/2009~
-~01219~^~320~^131.^0^^~4~^~NC~^^^^^^^^^^~02/01/2009~
-~01219~^~321~^4.^0^^~4~^~BFNN~^^^^^^^^^^~03/01/2005~
-~01219~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~
-~01219~^~324~^52.^45^0.^~1~^~A~^^^2^35.^80.^26^51.^53.^~2, 3~^~05/01/2009~
-~01219~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~
-~01219~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~
-~01219~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~
-~01219~^~417~^10.^0^^~1~^^^^^^^^^^^~02/01/2009~
-~01219~^~431~^0.^0^^~4~^~BFNN~^^^^^^^^^^~02/01/2009~
-~01219~^~432~^10.^0^^~4~^~NR~^^^^^^^^^^~03/01/2005~
-~01219~^~435~^10.^0^^~4~^~NC~^^^^^^^^^^~05/01/2009~
-~01219~^~601~^6.^0^^~1~^^^^^^^^^^^~02/01/2005~
-~01220~^~208~^85.^0^^~4~^~NC~^^^^^^^^^^~02/01/2009~
-~01220~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2003~
-~01220~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2003~
-~01220~^~268~^358.^0^^~4~^~NC~^^^^^^^^^^~02/01/2009~
-~01220~^~301~^171.^0^^~1~^^^^^^^^^^^~11/01/1976~
-~01220~^~304~^16.^0^^~1~^^^^^^^^^^^~11/01/1976~
-~01220~^~305~^135.^0^^~1~^^^^^^^^^^^~11/01/1976~
-~01220~^~306~^219.^0^^~1~^^^^^^^^^^^~11/01/1976~
-~01220~^~307~^66.^0^^~1~^^^^^^^^^^^~11/01/1976~
-~01220~^~318~^43.^0^^~4~^~NC~^^^^^^^^^^~02/01/2009~
-~01220~^~319~^12.^0^^~4~^~T~^^^^^^^^^^~02/01/2009~
-~01220~^~320~^12.^0^^~4~^~NC~^^^^^^^^^^~02/01/2009~
-~01220~^~321~^2.^0^^~4~^~BFFN~^^^^^^^^^^~01/01/2003~
-~01220~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2003~
-~01220~^~324~^47.^0^^~4~^~NR~^^^^^^^^^^~03/01/2009~
-~01220~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2003~
-~01220~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2003~
-~01220~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2003~
-~01220~^~417~^11.^0^^~1~^^^^^^^^^^^~11/01/1976~
-~01220~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~
-~01220~^~432~^11.^0^^~1~^^^^^^^^^^^~02/01/2009~
-~01220~^~435~^11.^0^^~4~^~NC~^^^^^^^^^^~03/01/2009~
-~01220~^~601~^5.^0^^~1~^^^^^^^^^^^~11/01/1976~
-~01221~^~208~^43.^0^^~8~^~LC~^^^^^^^^^^~02/01/2009~
-~01221~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2003~
-~01221~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2003~
-~01221~^~268~^180.^0^^~8~^~LC~^^^^^^^^^^~02/01/2009~
-~01221~^~301~^143.^0^^~8~^~LC~^^^^^^^^^^~02/01/2009~
-~01221~^~304~^13.^0^^~4~^~BFZN~^^^^^^^^^^~02/01/2009~
-~01221~^~305~^109.^0^^~4~^~BFZN~^^^^^^^^^^~02/01/2009~
-~01221~^~306~^177.^0^^~4~^~BFZN~^^^^^^^^^^~02/01/2009~
-~01221~^~307~^59.^0^^~8~^~LC~^^^^^^^^^^~02/01/2009~
-~01221~^~318~^6.^0^^~4~^~NC~^^^^^^^^^^~02/01/2009~
-~01221~^~319~^2.^0^^~4~^~BFFN~^^^^^^^^^^~02/01/2009~
-~01221~^~320~^2.^0^^~4~^~NC~^^^^^^^^^^~02/01/2009~
-~01221~^~321~^0.^0^^~4~^~BFFN~^^^^^^^^^^~02/01/2009~
-~01221~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2003~
-~01221~^~324~^47.^0^^~4~^~NR~^^^^^^^^^^~03/01/2009~
-~01221~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2003~
-~01221~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2003~
-~01221~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2003~
-~01221~^~417~^8.^0^^~4~^~BFZN~^^^^^^^^^^~02/01/2009~
-~01221~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2003~
-~01221~^~432~^8.^0^^~4~^~BFZN~^^^^^^^^^^~02/01/2009~
-~01221~^~435~^8.^0^^~4~^~NC~^^^^^^^^^^~03/01/2009~
-~01221~^~601~^2.^0^^~8~^~LC~^^^^^^^^^^~02/01/2009~
-~01222~^~208~^112.^0^^~9~^~MC~^^^^^^^^^^~02/01/2009~
-~01222~^~262~^2.^0^^~4~^~BFZN~^^^^^^^^^^~02/01/1998~
-~01222~^~263~^23.^0^^~4~^~BFZN~^^^^^^^^^^~02/01/1998~
-~01222~^~268~^469.^0^^~9~^~MC~^^^^^^^^^^~02/01/2009~
-~01222~^~301~^88.^0^^~9~^~MC~^^^^^^^^^^~11/01/1996~
-~01222~^~304~^40.^0^^~4~^~RA~^^^^^^^^^^~11/01/1996~
-~01222~^~305~^166.^0^^~4~^~RA~^^^^^^^^^^~11/01/1996~
-~01222~^~306~^339.^0^^~4~^~RA~^^^^^^^^^^~11/01/1996~
-~01222~^~307~^135.^0^^~9~^~MC~^^^^^^^^^^~11/01/1996~
-~01222~^~318~^0.^0^^~9~^~MC~^^^^^^^^^^~11/01/1996~
-~01222~^~319~^0.^0^^~4~^~BFFN~^^^^^^^^^^~01/01/2003~
-~01222~^~320~^0.^0^^~4~^~NC~^^^^^^^^^^~02/01/2009~
-~01222~^~321~^0.^0^^~4~^~BFFN~^^^^^^^^^^~01/01/2003~
-~01222~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2003~
-~01222~^~324~^47.^0^^~4~^~NR~^^^^^^^^^^~03/01/2009~
-~01222~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2003~
-~01222~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2003~
-~01222~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2003~
-~01222~^~417~^12.^0^^~4~^~RA~^^^^^^^^^^~11/01/1996~
-~01222~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2003~
-~01222~^~432~^12.^0^^~4~^~RA~^^^^^^^^^^~02/01/2009~
-~01222~^~435~^12.^0^^~4~^~NC~^^^^^^^^^^~03/01/2009~
-~01222~^~601~^1.^0^^~4~^~RA~^^^^^^^^^^~11/01/1996~
-~01223~^~208~^411.^0^^~4~^~NC~^^^^^^^^^^~04/01/2009~
-~01223~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2009~
-~01223~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2009~
-~01223~^~268~^1720.^0^^~4~^~NC~^^^^^^^^^^~04/01/2009~
-~01223~^~301~^500.^1^^~8~^~LC~^^^^^^^^^^~04/01/2009~
-~01223~^~304~^200.^1^^~8~^~LC~^^^^^^^^^^~04/01/2009~
-~01223~^~305~^643.^1^^~8~^~LC~^^^^^^^^^^~04/01/2009~
-~01223~^~306~^1129.^1^^~8~^~LC~^^^^^^^^^^~04/01/2009~
-~01223~^~307~^329.^1^^~8~^~LC~^^^^^^^^^^~04/01/2009~
-~01223~^~318~^2500.^1^^~8~^~LC~^^^^^^^^^^~04/01/2009~
-~01223~^~319~^750.^0^^~4~^~NR~^^^^^^^^^^~04/01/2009~
-~01223~^~320~^750.^0^^~4~^~NC~^^^^^^^^^^~04/01/2009~
-~01223~^~321~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2009~
-~01223~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2009~
-~01223~^~324~^200.^1^^~8~^~LC~^^^^^^^^^^~04/01/2009~
-~01223~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2009~
-~01223~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2009~
-~01223~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2009~
-~01223~^~417~^200.^0^^~4~^~NR~^^^^^^^^^^~04/01/2009~
-~01223~^~431~^200.^1^^~8~^~LC~^^^^^^^^^^~04/01/2009~
-~01223~^~432~^0.^0^^~4~^~NR~^^^^^^^^^^~04/01/2009~
-~01223~^~435~^340.^0^^~4~^~NC~^^^^^^^^^^~04/01/2009~
-~01223~^~601~^21.^1^^~8~^~LC~^^^^^^^^^^~04/01/2009~
-~01224~^~208~^396.^0^^~4~^~NC~^^^^^^^^^^~04/01/2009~
-~01224~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2009~
-~01224~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2009~
-~01224~^~268~^1657.^0^^~4~^~NC~^^^^^^^^^^~04/01/2009~
-~01224~^~301~^1200.^1^^~8~^~LC~^^^^^^^^^^~04/01/2009~
-~01224~^~304~^280.^1^^~8~^~LC~^^^^^^^^^^~04/01/2009~
-~01224~^~305~^700.^1^^~8~^~LC~^^^^^^^^^^~04/01/2009~
-~01224~^~306~^840.^1^^~8~^~LC~^^^^^^^^^^~04/01/2009~
-~01224~^~307~^250.^1^^~8~^~LC~^^^^^^^^^^~04/01/2009~
-~01224~^~318~^3500.^1^^~8~^~LC~^^^^^^^^^^~04/01/2009~
-~01224~^~319~^1050.^0^^~4~^~NR~^^^^^^^^^^~04/01/2009~
-~01224~^~320~^1050.^0^^~4~^~NC~^^^^^^^^^^~04/01/2009~
-~01224~^~321~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2009~
-~01224~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2009~
-~01224~^~324~^280.^1^^~8~^~LC~^^^^^^^^^^~04/01/2009~
-~01224~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2009~
-~01224~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2009~
-~01224~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2009~
-~01224~^~417~^280.^1^^~8~^~LC~^^^^^^^^^^~04/01/2009~
-~01224~^~431~^280.^1^^~8~^~LC~^^^^^^^^^^~04/01/2009~
-~01224~^~432~^0.^0^^~1~^~AS~^^^^^^^^^^~04/01/2009~
-~01224~^~435~^476.^0^^~4~^~NC~^^^^^^^^^^~04/01/2009~
-~01224~^~601~^10.^1^^~8~^~LC~^^^^^^^^^^~04/01/2009~
-~01225~^~208~^315.^0^^~4~^~NC~^^^^^^^^^^~05/01/2009~
-~01225~^~262~^0.^0^^~4~^~BFZN~^~01095~^^^^^^^^^~03/01/2011~
-~01225~^~263~^0.^0^^~4~^~BFZN~^~01095~^^^^^^^^^~03/01/2011~
-~01225~^~268~^1318.^0^^~4~^~NC~^^^^^^^^^^~05/01/2009~
-~01225~^~301~^251.^4^15.^~1~^~A~^^^1^230.^298.^3^200.^301.^~2, 3~^~05/01/2009~
-~01225~^~304~^22.^4^1.^~1~^~A~^^^1^20.^25.^3^17.^25.^~2, 3~^~05/01/2009~
-~01225~^~305~^193.^4^12.^~1~^~A~^^^1^178.^229.^3^153.^231.^~2, 3~^~05/01/2009~
-~01225~^~306~^350.^4^27.^~1~^~A~^^^1^307.^432.^3^260.^438.^~2, 3~^~05/01/2009~
-~01225~^~307~^129.^4^11.^~1~^~A~^^^1^113.^164.^3^91.^167.^~2, 3~^~05/01/2009~
-~01225~^~318~^267.^0^^~4~^~NC~^^^^^^^^^^~03/01/2011~
-~01225~^~319~^73.^0^^~4~^~BFZN~^~01095~^^^^^^^^^~03/01/2011~
-~01225~^~320~^74.^0^^~4~^~NC~^~01095~^^^^^^^^^~03/01/2011~
-~01225~^~321~^14.^0^^~4~^~BFZN~^~01095~^^^^^^^^^~03/01/2011~
-~01225~^~322~^0.^0^^~4~^~BFZN~^~01095~^^^^^^^^^~03/01/2011~
-~01225~^~324~^6.^0^^~4~^~BFZN~^~01095~^^^^^^^^^~03/01/2011~
-~01225~^~334~^0.^0^^~4~^~BFZN~^~01095~^^^^^^^^^~03/01/2011~
-~01225~^~337~^0.^0^^~4~^~BFZN~^~01095~^^^^^^^^^~03/01/2011~
-~01225~^~338~^0.^0^^~4~^~BFZN~^~01095~^^^^^^^^^~03/01/2011~
-~01225~^~417~^11.^0^^~4~^~BFZN~^~01095~^^^^^^^^^~03/01/2011~
-~01225~^~431~^0.^0^^~4~^~BFZN~^~01095~^^^^^^^^^~03/01/2011~
-~01225~^~432~^11.^0^^~4~^~BFZN~^~01095~^^^^^^^^^~03/01/2011~
-~01225~^~435~^11.^0^^~4~^~NC~^~01095~^^^^^^^^^~03/01/2011~
-~01225~^~601~^29.^4^0.^~1~^~A~^^^1^28.^30.^3^28.^30.^~2, 3~^~05/01/2009~
-~01226~^~208~^48.^0^^~4~^~NR~^^^^^^^^^^~05/01/2009~
-~01226~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2003~
-~01226~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2003~
-~01226~^~268~^201.^0^^~4~^~NR~^^^^^^^^^^~05/01/2009~
-~01226~^~301~^73.^2^^~1~^^^^^^^^^^^~11/01/1976~
-~01226~^~304~^15.^0^^~4~^^^^^^^^^^^~11/01/1976~
-~01226~^~305~^72.^1^^~1~^^^^^^^^^^^~11/01/1976~
-~01226~^~306~^213.^1^^~1~^^^^^^^^^^^~11/01/1976~
-~01226~^~307~^199.^2^^~1~^^^^^^^^^^^~11/01/1976~
-~01226~^~318~^225.^0^^~4~^~NC~^^^^^^^^^^~03/01/2007~
-~01226~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2002~
-~01226~^~320~^11.^0^^~4~^~NC~^^^^^^^^^^~03/01/2007~
-~01226~^~321~^135.^0^^~4~^~NR~^^^^^^^^^^~03/01/2007~
-~01226~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2003~
-~01226~^~324~^66.^0^^~4~^~S~^^^^^^^^^^~05/01/2009~
-~01226~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2003~
-~01226~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2003~
-~01226~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2003~
-~01226~^~417~^16.^0^^~4~^^^^^^^^^^^~11/01/1976~
-~01226~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~
-~01226~^~432~^16.^0^^~4~^^^^^^^^^^^~03/01/2007~
-~01226~^~435~^16.^0^^~4~^~NC~^^^^^^^^^^~08/01/2009~
-~01226~^~601~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2009~
-~01226~^~636~^95.^0^^~4~^^^^^^^^^^^~11/01/1976~
-~01227~^~208~^325.^0^^~4~^~NC~^^^^^^^^^^~05/01/2010~
-~01227~^~268~^1361.^0^^~4~^~NC~^^^^^^^^^^~05/01/2010~
-~01227~^~301~^661.^6^53.^~1~^~A~^^^1^^^^^^^~05/01/2010~
-~01227~^~304~^27.^6^2.^~1~^~A~^^^1^^^^^^^~05/01/2010~
-~01227~^~305~^475.^6^34.^~1~^~A~^^^1^^^^^^^~05/01/2010~
-~01227~^~306~^116.^6^4.^~1~^~A~^^^1^^^^^^^~05/01/2010~
-~01227~^~307~^1808.^6^69.^~1~^~A~^^^1^^^^^^^~05/01/2010~
-~01227~^~318~^800.^2^^~1~^~AS~^^^^^^^^^^~05/01/2010~
-~01227~^~319~^223.^2^^~1~^~A~^^^1^^^^^^^~05/01/2010~
-~01227~^~320~^226.^2^^~1~^~AS~^^^^^^^^^^~05/01/2010~
-~01227~^~321~^33.^2^^~1~^~A~^^^1^^^^^^^~05/01/2010~
-~01227~^~322~^0.^2^^~1~^~A~^^^1^^^^^^^~05/01/2010~
-~01227~^~324~^73.^1^^~1~^~A~^^^^^^^^^^~05/01/2010~
-~01227~^~334~^2.^2^^~1~^~A~^^^1^^^^^^^~05/01/2010~
-~01227~^~337~^0.^2^^~1~^~A~^^^1^^^^^^^~05/01/2010~
-~01227~^~338~^4.^2^^~1~^~A~^^^1^^^^^^^~05/01/2010~
-~01227~^~601~^78.^6^2.^~1~^~A~^^^1^^^^^^^~05/01/2010~
-~01228~^~208~^299.^0^^~4~^~NC~^^^^^^^^^^~05/01/2010~
-~01228~^~262~^0.^0^^~4~^~BFZN~^~01026~^^^^^^^^^~03/01/2011~
-~01228~^~263~^0.^0^^~4~^~BFZN~^~01026~^^^^^^^^^~03/01/2011~
-~01228~^~268~^1250.^0^^~4~^~NC~^^^^^^^^^^~05/01/2010~
-~01228~^~301~^566.^6^11.^~1~^~A~^^^1^^^^^^^~05/01/2010~
-~01228~^~304~^24.^6^0.^~1~^~A~^^^1^^^^^^^~05/01/2010~
-~01228~^~305~^385.^6^6.^~1~^~A~^^^1^^^^^^^~05/01/2010~
-~01228~^~306~^129.^6^3.^~1~^~A~^^^1^^^^^^^~05/01/2010~
-~01228~^~307~^751.^6^62.^~1~^~A~^^^1^^^^^^^~05/01/2010~
-~01228~^~318~^806.^2^^~1~^~AS~^^^^^^^^^^~05/01/2010~
-~01228~^~319~^221.^2^^~1~^~A~^^^1^^^^^^^~05/01/2010~
-~01228~^~320~^224.^2^^~1~^~AS~^^^^^^^^^^~05/01/2010~
-~01228~^~321~^41.^2^^~1~^~A~^^^1^^^^^^^~05/01/2010~
-~01228~^~322~^0.^2^^~1~^~A~^^^1^^^^^^^~05/01/2010~
-~01228~^~324~^110.^1^^~1~^~A~^^^^^^^^^^~05/01/2010~
-~01228~^~334~^2.^2^^~1~^~A~^^^1^^^^^^^~05/01/2010~
-~01228~^~337~^0.^2^^~1~^~A~^^^1^^^^^^^~05/01/2010~
-~01228~^~338~^3.^2^^~1~^~A~^^^1^^^^^^^~05/01/2010~
-~01228~^~417~^7.^0^^~4~^~BFZN~^~01026~^^^^^^^^^~03/01/2011~
-~01228~^~431~^0.^0^^~4~^~BFZN~^~01026~^^^^^^^^^~03/01/2011~
-~01228~^~432~^7.^0^^~4~^~BFZN~^~01026~^^^^^^^^^~03/01/2011~
-~01228~^~435~^7.^0^^~4~^~NC~^^^^^^^^^^~03/01/2011~
-~01228~^~601~^69.^6^2.^~1~^~A~^^^1^^^^^^^~05/01/2010~
-~01229~^~208~^310.^0^^~4~^~NC~^^^^^^^^^^~05/01/2010~
-~01229~^~268~^1299.^0^^~4~^~NC~^^^^^^^^^^~05/01/2010~
-~01229~^~301~^690.^6^20.^~1~^~A~^^^1^^^^^^^~05/01/2010~
-~01229~^~304~^29.^6^1.^~1~^~A~^^^1^^^^^^^~05/01/2010~
-~01229~^~305~^467.^6^11.^~1~^~A~^^^1^^^^^^^~05/01/2010~
-~01229~^~306~^126.^6^13.^~1~^~A~^^^1^^^^^^^~05/01/2010~
-~01229~^~307~^704.^6^67.^~1~^~A~^^^1^^^^^^^~05/01/2010~
-~01229~^~318~^555.^2^^~1~^~AS~^^^^^^^^^^~05/01/2010~
-~01229~^~319~^155.^2^^~1~^~A~^^^1^^^^^^^~05/01/2010~
-~01229~^~320~^157.^2^^~1~^~AS~^^^^^^^^^^~05/01/2010~
-~01229~^~321~^23.^2^^~1~^~A~^^^1^^^^^^^~05/01/2010~
-~01229~^~322~^0.^2^^~1~^~A~^^^1^^^^^^^~05/01/2010~
-~01229~^~324~^27.^1^^~1~^~A~^^^^^^^^^^~05/01/2010~
-~01229~^~334~^2.^2^^~1~^~A~^^^1^^^^^^^~05/01/2010~
-~01229~^~337~^0.^2^^~1~^~A~^^^1^^^^^^^~05/01/2010~
-~01229~^~338~^3.^2^^~1~^~A~^^^1^^^^^^^~05/01/2010~
-~01229~^~601~^70.^6^4.^~1~^~A~^^^1^^^^^^^~05/01/2010~
-~01230~^~208~^62.^0^^~4~^~RA~^^^^^^^^^^~03/01/2011~
-~01230~^~262~^0.^0^^~4~^~RA~^^^^^^^^^^~03/01/2011~
-~01230~^~263~^0.^0^^~4~^~RA~^^^^^^^^^^~03/01/2011~
-~01230~^~268~^260.^0^^~4~^~RA~^^^^^^^^^^~03/01/2011~
-~01230~^~301~^115.^0^^~4~^~RA~^^^^^^^^^^~03/01/2011~
-~01230~^~304~^10.^0^^~4~^~RA~^^^^^^^^^^~03/01/2011~
-~01230~^~305~^85.^0^^~4~^~RA~^^^^^^^^^^~03/01/2011~
-~01230~^~306~^135.^0^^~4~^~RA~^^^^^^^^^^~03/01/2011~
-~01230~^~307~^105.^0^^~4~^~BFZN~^~01088~^^^^^^^^^~08/01/2011~
-~01230~^~318~^165.^0^^~4~^~NC~^^^^^^^^^^~03/01/2011~
-~01230~^~319~^46.^0^^~4~^~RA~^^^^^^^^^^~03/01/2011~
-~01230~^~320~^47.^0^^~4~^~NC~^^^^^^^^^^~03/01/2011~
-~01230~^~321~^7.^0^^~4~^~RA~^^^^^^^^^^~03/01/2011~
-~01230~^~322~^0.^0^^~4~^~RA~^^^^^^^^^^~03/01/2011~
-~01230~^~324~^52.^0^^~4~^~RA~^^^^^^^^^^~03/01/2011~
-~01230~^~334~^0.^0^^~4~^~RA~^^^^^^^^^^~03/01/2011~
-~01230~^~337~^0.^0^^~4~^~RA~^^^^^^^^^^~03/01/2011~
-~01230~^~338~^0.^0^^~4~^~RA~^^^^^^^^^^~03/01/2011~
-~01230~^~417~^5.^0^^~4~^~RA~^^^^^^^^^^~03/01/2011~
-~01230~^~431~^0.^0^^~4~^~RA~^^^^^^^^^^~03/01/2011~
-~01230~^~432~^5.^0^^~4~^~RA~^^^^^^^^^^~03/01/2011~
-~01230~^~435~^5.^0^^~4~^~NC~^^^^^^^^^^~03/01/2011~
-~01230~^~601~^11.^0^^~4~^~RA~^^^^^^^^^^~03/01/2011~
-~01231~^~208~^86.^0^^~4~^~NC~^^^^^^^^^^~03/01/2011~
-~01231~^~262~^0.^0^^~4~^~RA~^^^^^^^^^^~03/01/2011~
-~01231~^~263~^0.^0^^~4~^~RA~^^^^^^^^^^~03/01/2011~
-~01231~^~268~^361.^0^^~4~^~NC~^^^^^^^^^^~03/01/2011~
-~01231~^~301~^171.^0^^~4~^~RA~^^^^^^^^^^~03/01/2011~
-~01231~^~304~^16.^0^^~4~^~RA~^^^^^^^^^^~03/01/2011~
-~01231~^~305~^135.^0^^~4~^~RA~^^^^^^^^^^~03/01/2011~
-~01231~^~306~^219.^0^^~4~^~RA~^^^^^^^^^^~03/01/2011~
-~01231~^~307~^66.^0^^~4~^~RA~^^^^^^^^^^~03/01/2011~
-~01231~^~318~^43.^0^^~4~^~NC~^^^^^^^^^^~03/01/2011~
-~01231~^~319~^12.^0^^~4~^~RA~^^^^^^^^^^~03/01/2011~
-~01231~^~320~^12.^0^^~4~^~NC~^^^^^^^^^^~03/01/2011~
-~01231~^~321~^2.^0^^~4~^~RA~^^^^^^^^^^~03/01/2011~
-~01231~^~322~^0.^0^^~4~^~RA~^^^^^^^^^^~03/01/2011~
-~01231~^~324~^1.^0^^~4~^~RA~^^^^^^^^^^~03/01/2011~
-~01231~^~334~^0.^0^^~4~^~RA~^^^^^^^^^^~03/01/2011~
-~01231~^~337~^0.^0^^~4~^~RA~^^^^^^^^^^~03/01/2011~
-~01231~^~338~^0.^0^^~4~^~RA~^^^^^^^^^^~03/01/2011~
-~01231~^~417~^11.^0^^~4~^~RA~^^^^^^^^^^~03/01/2011~
-~01231~^~431~^0.^0^^~4~^~RA~^^^^^^^^^^~03/01/2011~
-~01231~^~432~^11.^0^^~4~^~RA~^^^^^^^^^^~03/01/2011~
-~01231~^~435~^11.^0^^~4~^~NC~^^^^^^^^^^~03/01/2011~
-~01231~^~601~^5.^0^^~4~^~RA~^^^^^^^^^^~03/01/2011~
-~01235~^~208~^104.^0^^~4~^~RA~^^^^^^^^^^~04/01/2011~
-~01235~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2011~
-~01235~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2011~
-~01235~^~268~^433.^0^^~4~^~RA~^^^^^^^^^^~04/01/2011~
-~01235~^~301~^159.^0^^~4~^~RA~^^^^^^^^^^~04/01/2011~
-~01235~^~304~^40.^0^^~4~^~RA~^^^^^^^^^^~04/01/2011~
-~01235~^~305~^129.^0^^~4~^~RA~^^^^^^^^^^~04/01/2011~
-~01235~^~306~^339.^0^^~4~^~RA~^^^^^^^^^^~04/01/2011~
-~01235~^~307~^81.^0^^~4~^~RA~^^^^^^^^^^~04/01/2011~
-~01235~^~318~^17.^0^^~4~^~NC~^^^^^^^^^^~04/01/2011~
-~01235~^~319~^1.^0^^~4~^~RA~^^^^^^^^^^~04/01/2011~
-~01235~^~320~^2.^0^^~4~^~NC~^^^^^^^^^^~04/01/2011~
-~01235~^~321~^8.^0^^~4~^~RA~^^^^^^^^^^~04/01/2011~
-~01235~^~322~^0.^0^^~4~^~RA~^^^^^^^^^^~04/01/2011~
-~01235~^~324~^0.^0^^~4~^~RA~^^^^^^^^^^~04/01/2011~
-~01235~^~334~^0.^0^^~4~^~RA~^^^^^^^^^^~04/01/2011~
-~01235~^~337~^0.^0^^~4~^~RA~^^^^^^^^^^~04/01/2011~
-~01235~^~338~^0.^0^^~4~^~RA~^^^^^^^^^^~04/01/2011~
-~01235~^~417~^12.^0^^~4~^~RA~^^^^^^^^^^~04/01/2011~
-~01235~^~431~^0.^0^^~4~^~RA~^^^^^^^^^^~04/01/2011~
-~01235~^~432~^12.^0^^~4~^~RA~^^^^^^^^^^~04/01/2011~
-~01235~^~435~^12.^0^^~4~^~NC~^^^^^^^^^^~04/01/2011~
-~01235~^~601~^4.^0^^~4~^~RA~^^^^^^^^^^~04/01/2011~
-~01236~^~208~^222.^0^^~4~^~RA~^^^^^^^^^^~04/01/2011~
-~01236~^~262~^2.^0^^~4~^~BFZN~^~19114~^^^^^^^^^~04/01/2011~
-~01236~^~263~^69.^0^^~4~^~BFZN~^~19114~^^^^^^^^^~04/01/2011~
-~01236~^~268~^930.^0^^~4~^~RA~^^^^^^^^^^~04/01/2011~
-~01236~^~301~^131.^0^^~4~^~RA~^^^^^^^^^^~04/01/2011~
-~01236~^~304~^12.^0^^~4~^~RA~^^^^^^^^^^~04/01/2011~
-~01236~^~305~^116.^0^^~4~^~RA~^^^^^^^^^^~04/01/2011~
-~01236~^~306~^177.^0^^~4~^~RA~^^^^^^^^^^~04/01/2011~
-~01236~^~307~^61.^0^^~4~^~RA~^^^^^^^^^^~04/01/2011~
-~01236~^~318~^589.^0^^~4~^~NC~^^^^^^^^^^~04/01/2011~
-~01236~^~319~^159.^0^^~4~^~RA~^^^^^^^^^^~04/01/2011~
-~01236~^~320~^162.^0^^~4~^~NC~^^^^^^^^^^~04/01/2011~
-~01236~^~321~^30.^0^^~4~^~RA~^^^^^^^^^^~04/01/2011~
-~01236~^~322~^5.^0^^~4~^~RA~^^^^^^^^^^~04/01/2011~
-~01236~^~324~^29.^0^^~4~^~RA~^^^^^^^^^^~04/01/2011~
-~01236~^~334~^5.^0^^~4~^~RA~^^^^^^^^^^~04/01/2011~
-~01236~^~337~^0.^0^^~4~^~RA~^^^^^^^^^^~04/01/2011~
-~01236~^~338~^151.^0^^~4~^~RA~^^^^^^^^^^~04/01/2011~
-~01236~^~417~^9.^0^^~4~^~RA~^^^^^^^^^^~04/01/2011~
-~01236~^~431~^0.^0^^~4~^~RA~^^^^^^^^^^~04/01/2011~
-~01236~^~432~^9.^0^^~4~^~RA~^^^^^^^^^^~04/01/2011~
-~01236~^~435~^9.^0^^~4~^~NC~^^^^^^^^^^~04/01/2011~
-~01236~^~601~^91.^0^^~4~^~RA~^^^^^^^^^^~04/01/2011~
-~01237~^~208~^331.^0^^~4~^~NC~^^^^^^^^^^~04/01/2011~
-~01237~^~262~^3.^0^^~4~^~RA~^^^^^^^^^^~04/01/2011~
-~01237~^~263~^32.^0^^~4~^~RA~^^^^^^^^^^~04/01/2011~
-~01237~^~268~^1386.^0^^~4~^~NC~^^^^^^^^^^~04/01/2011~
-~01237~^~301~^119.^0^^~4~^~RA~^^^^^^^^^^~04/01/2011~
-~01237~^~304~^28.^0^^~4~^~RA~^^^^^^^^^^~04/01/2011~
-~01237~^~305~^173.^0^^~4~^~RA~^^^^^^^^^^~04/01/2011~
-~01237~^~306~^305.^0^^~4~^~RA~^^^^^^^^^^~04/01/2011~
-~01237~^~307~^68.^0^^~4~^~RA~^^^^^^^^^^~04/01/2011~
-~01237~^~318~^123.^0^^~4~^~NC~^^^^^^^^^^~04/01/2011~
-~01237~^~319~^15.^0^^~4~^~RA~^^^^^^^^^^~04/01/2011~
-~01237~^~320~^19.^0^^~4~^~NC~^^^^^^^^^^~04/01/2011~
-~01237~^~321~^44.^0^^~4~^~RA~^^^^^^^^^^~04/01/2011~
-~01237~^~322~^0.^0^^~4~^~RA~^^^^^^^^^^~04/01/2011~
-~01237~^~324~^7.^0^^~4~^~RA~^^^^^^^^^^~04/01/2011~
-~01237~^~334~^0.^0^^~4~^~RA~^^^^^^^^^^~04/01/2011~
-~01237~^~337~^0.^0^^~4~^~RA~^^^^^^^^^^~04/01/2011~
-~01237~^~338~^0.^0^^~4~^~RA~^^^^^^^^^^~04/01/2011~
-~01237~^~417~^7.^0^^~4~^~RA~^^^^^^^^^^~04/01/2011~
-~01237~^~431~^0.^0^^~4~^~RA~^^^^^^^^^^~04/01/2011~
-~01237~^~432~^7.^0^^~4~^~RA~^^^^^^^^^^~04/01/2011~
-~01237~^~435~^7.^0^^~4~^~NC~^^^^^^^^^^~04/01/2011~
-~01237~^~601~^28.^0^^~4~^~RA~^^^^^^^^^^~04/01/2011~
-~01238~^~208~^237.^0^^~4~^~RA~^^^^^^^^^^~04/01/2011~
-~01238~^~262~^4.^0^^~4~^~RA~^^^^^^^^^^~04/01/2011~
-~01238~^~263~^122.^0^^~4~^~RA~^^^^^^^^^^~04/01/2011~
-~01238~^~268~^990.^0^^~4~^~RA~^^^^^^^^^^~04/01/2011~
-~01238~^~301~^86.^0^^~8~^~LC~^^^^^^^^^^~04/01/2011~
-~01238~^~304~^29.^0^^~4~^~RA~^^^^^^^^^^~04/01/2011~
-~01238~^~305~^72.^0^^~4~^~RA~^^^^^^^^^^~04/01/2011~
-~01238~^~306~^115.^0^^~4~^~RA~^^^^^^^^^^~04/01/2011~
-~01238~^~307~^129.^0^^~8~^~LC~^^^^^^^^^^~04/01/2011~
-~01238~^~318~^286.^0^^~4~^~NC~^^^^^^^^^^~04/01/2011~
-~01238~^~319~^86.^0^^~4~^~NR~^^^^^^^^^^~04/01/2011~
-~01238~^~320~^86.^0^^~4~^~NC~^^^^^^^^^^~04/01/2011~
-~01238~^~321~^0.^0^^~4~^~RA~^^^^^^^^^^~04/01/2011~
-~01238~^~322~^0.^0^^~4~^~RA~^^^^^^^^^^~04/01/2011~
-~01238~^~324~^0.^0^^~4~^~RA~^^^^^^^^^^~04/01/2011~
-~01238~^~334~^0.^0^^~4~^~RA~^^^^^^^^^^~04/01/2011~
-~01238~^~337~^0.^0^^~4~^~RA~^^^^^^^^^^~04/01/2011~
-~01238~^~338~^6.^0^^~4~^~RA~^^^^^^^^^^~04/01/2011~
-~01238~^~417~^34.^0^^~4~^~RA~^^^^^^^^^^~04/01/2011~
-~01238~^~431~^27.^0^^~4~^~RA~^^^^^^^^^^~04/01/2011~
-~01238~^~432~^6.^0^^~4~^~RA~^^^^^^^^^^~04/01/2011~
-~01238~^~435~^53.^0^^~4~^~NC~^^^^^^^^^^~04/01/2011~
-~01238~^~601~^21.^0^^~8~^~LC~^^^^^^^^^^~04/01/2011~
-~01239~^~208~^240.^0^^~4~^~NC~^^^^^^^^^^~04/01/2011~
-~01239~^~262~^6.^0^^~4~^~RA~^^^^^^^^^^~04/01/2011~
-~01239~^~263~^42.^0^^~4~^~RA~^^^^^^^^^^~04/01/2011~
-~01239~^~268~^1003.^0^^~4~^~NC~^^^^^^^^^^~04/01/2011~
-~01239~^~301~^73.^1^^~8~^~LC~^^^^^^^^^^~04/01/2011~
-~01239~^~304~^16.^0^^~4~^~RA~^^^^^^^^^^~04/01/2011~
-~01239~^~305~^54.^0^^~4~^~RA~^^^^^^^^^^~04/01/2011~
-~01239~^~306~^68.^0^^~4~^~RA~^^^^^^^^^^~04/01/2011~
-~01239~^~307~^162.^1^^~8~^~LC~^^^^^^^^^^~04/01/2011~
-~01239~^~318~^122.^1^^~8~^~LC~^^^^^^^^^^~04/01/2011~
-~01239~^~319~^37.^1^^~8~^~LC~^^^^^^^^^^~04/01/2011~
-~01239~^~320~^37.^0^^~4~^~NC~^^^^^^^^^^~04/01/2011~
-~01239~^~321~^0.^0^^~4~^~BFZN~^~01238~^^^^^^^^^~04/01/2011~
-~01239~^~322~^0.^0^^~4~^~BFZN~^~01238~^^^^^^^^^~04/01/2011~
-~01239~^~324~^0.^0^^~4~^~NR~^^^^^^^^^^~04/01/2011~
-~01239~^~334~^0.^0^^~4~^~BFZN~^~01238~^^^^^^^^^~04/01/2011~
-~01239~^~337~^0.^0^^~4~^~BFZN~^~01238~^^^^^^^^^~04/01/2011~
-~01239~^~338~^6.^0^^~4~^~BFZN~^~01238~^^^^^^^^^~04/01/2011~
-~01239~^~417~^5.^0^^~4~^~RA~^^^^^^^^^^~04/01/2011~
-~01239~^~431~^0.^0^^~4~^~RA~^^^^^^^^^^~04/01/2011~
-~01239~^~432~^5.^0^^~4~^~RA~^^^^^^^^^^~04/01/2011~
-~01239~^~435~^5.^0^^~4~^~NC~^^^^^^^^^^~04/01/2011~
-~01239~^~601~^6.^1^^~8~^~LC~^^^^^^^^^^~04/01/2011~
-~01240~^~208~^354.^1^^~8~^~LC~^^^^^^^^^^~04/01/2011~
-~01240~^~262~^7.^0^^~4~^~FLC~^^^^^^^^^^~04/01/2011~
-~01240~^~263~^56.^0^^~4~^~FLC~^^^^^^^^^^~04/01/2011~
-~01240~^~268~^1482.^0^^~8~^~LC~^^^^^^^^^^~04/01/2011~
-~01240~^~301~^63.^1^^~8~^~LC~^^^^^^^^^^~04/01/2011~
-~01240~^~304~^29.^0^^~4~^~FLC~^^^^^^^^^^~04/01/2011~
-~01240~^~305~^108.^0^^~4~^~FLC~^^^^^^^^^^~04/01/2011~
-~01240~^~306~^222.^0^^~4~^~FLC~^^^^^^^^^^~04/01/2011~
-~01240~^~307~^94.^1^^~8~^~LC~^^^^^^^^^^~04/01/2011~
-~01240~^~318~^104.^1^^~8~^~LC~^^^^^^^^^^~04/01/2011~
-~01240~^~319~^31.^0^^~4~^~NR~^^^^^^^^^^~04/01/2011~
-~01240~^~320~^32.^0^^~4~^~NC~^^^^^^^^^^~04/01/2011~
-~01240~^~321~^11.^0^^~4~^~FLC~^^^^^^^^^^~04/01/2011~
-~01240~^~322~^0.^0^^~4~^~FLC~^^^^^^^^^^~04/01/2011~
-~01240~^~324~^3.^0^^~4~^~FLC~^^^^^^^^^^~04/01/2011~
-~01240~^~334~^0.^0^^~4~^~FLC~^^^^^^^^^^~04/01/2011~
-~01240~^~337~^0.^0^^~4~^~FLC~^^^^^^^^^^~04/01/2011~
-~01240~^~338~^4.^0^^~4~^~FLC~^^^^^^^^^^~04/01/2011~
-~01240~^~417~^24.^0^^~4~^~FLC~^^^^^^^^^^~04/01/2011~
-~01240~^~431~^16.^0^^~4~^~FLC~^^^^^^^^^^~04/01/2011~
-~01240~^~432~^8.^0^^~4~^~FLC~^^^^^^^^^^~04/01/2011~
-~01240~^~435~^35.^0^^~4~^~NC~^^^^^^^^^^~04/01/2011~
-~01240~^~601~^21.^1^^~8~^~LC~^^^^^^^^^^~04/01/2011~
-~01241~^~208~^186.^1^^~8~^~LC~^^^^^^^^^^~04/01/2011~
-~01241~^~262~^1.^0^^~4~^~BFFN~^~01238~^^^^^^^^^~04/01/2011~
-~01241~^~263~^43.^0^^~4~^~BFFN~^~01238~^^^^^^^^^~04/01/2011~
-~01241~^~268~^777.^0^^~8~^~LC~^^^^^^^^^^~04/01/2011~
-~01241~^~301~^30.^0^^~4~^~BFFN~^~01238~^^^^^^^^^~04/01/2011~
-~01241~^~304~^10.^0^^~4~^~BFFN~^~01238~^^^^^^^^^~04/01/2011~
-~01241~^~305~^26.^0^^~4~^~BFFN~^~01238~^^^^^^^^^~04/01/2011~
-~01241~^~306~^41.^0^^~4~^~BFFN~^~01238~^^^^^^^^^~04/01/2011~
-~01241~^~307~^146.^1^^~8~^~LC~^^^^^^^^^^~08/01/2011~
-~01241~^~318~^321.^1^^~8~^~LC~^^^^^^^^^^~04/01/2011~
-~01241~^~319~^96.^0^^~4~^~NR~^^^^^^^^^^~04/01/2011~
-~01241~^~320~^96.^0^^~4~^~NC~^^^^^^^^^^~04/01/2011~
-~01241~^~321~^0.^0^^~4~^~BFFN~^~01238~^^^^^^^^^~04/01/2011~
-~01241~^~322~^0.^0^^~4~^~BFFN~^~01238~^^^^^^^^^~04/01/2011~
-~01241~^~324~^0.^0^^~4~^~NR~^^^^^^^^^^~04/01/2011~
-~01241~^~334~^0.^0^^~4~^~BFFN~^~01238~^^^^^^^^^~04/01/2011~
-~01241~^~337~^0.^0^^~4~^~BFFN~^~01238~^^^^^^^^^~04/01/2011~
-~01241~^~338~^2.^0^^~4~^~BFFN~^~01238~^^^^^^^^^~04/01/2011~
-~01241~^~417~^12.^0^^~4~^~BFFN~^~01238~^^^^^^^^^~04/01/2011~
-~01241~^~431~^10.^0^^~4~^~BFFN~^~01238~^^^^^^^^^~04/01/2011~
-~01241~^~432~^2.^0^^~4~^~BFFN~^~01238~^^^^^^^^^~04/01/2011~
-~01241~^~435~^19.^0^^~4~^~NC~^~01238~^^^^^^^^^~04/01/2011~
-~01241~^~601~^7.^1^^~8~^~LC~^^^^^^^^^^~04/01/2011~
-~01242~^~208~^200.^1^^~8~^~LC~^^^^^^^^^^~04/01/2011~
-~01242~^~262~^1.^0^^~4~^~BFZN~^~01241~^^^^^^^^^~04/01/2011~
-~01242~^~263~^43.^0^^~4~^~BFZN~^~01241~^^^^^^^^^~04/01/2011~
-~01242~^~268~^837.^0^^~8~^~LC~^^^^^^^^^^~04/01/2011~
-~01242~^~301~^86.^1^^~8~^~LC~^^^^^^^^^^~04/01/2011~
-~01242~^~304~^10.^0^^~4~^~BFZN~^~01241~^^^^^^^^^~04/01/2011~
-~01242~^~305~^26.^0^^~4~^~BFZN~^~01241~^^^^^^^^^~04/01/2011~
-~01242~^~306~^41.^0^^~4~^~BFZN~^~01241~^^^^^^^^^~04/01/2011~
-~01242~^~307~^164.^1^^~8~^~LC~^^^^^^^^^^~04/01/2011~
-~01242~^~318~^430.^0^^~4~^~NC~^^^^^^^^^^~02/01/2017~
-~01242~^~319~^129.^0^^~4~^~NR~^^^^^^^^^^~04/01/2011~
-~01242~^~320~^129.^0^^~4~^~NC~^^^^^^^^^^~04/01/2011~
-~01242~^~321~^0.^0^^~4~^~BFZN~^~01241~^^^^^^^^^~04/01/2011~
-~01242~^~322~^0.^0^^~4~^~BFZN~^~01241~^^^^^^^^^~04/01/2011~
-~01242~^~324~^0.^0^^~4~^~NR~^^^^^^^^^^~04/01/2011~
-~01242~^~334~^0.^0^^~4~^~BFZN~^~01241~^^^^^^^^^~04/01/2011~
-~01242~^~337~^0.^0^^~4~^~BFZN~^~01241~^^^^^^^^^~04/01/2011~
-~01242~^~338~^2.^0^^~4~^~BFZN~^~01241~^^^^^^^^^~04/01/2011~
-~01242~^~417~^12.^0^^~4~^~BFZN~^~01241~^^^^^^^^^~04/01/2011~
-~01242~^~431~^10.^0^^~4~^~BFZN~^~01241~^^^^^^^^^~04/01/2011~
-~01242~^~432~^2.^0^^~4~^~BFZN~^~01241~^^^^^^^^^~04/01/2011~
-~01242~^~435~^19.^0^^~4~^~NC~^~01241~^^^^^^^^^~04/01/2011~
-~01242~^~601~^21.^1^^~8~^~LC~^^^^^^^^^^~04/01/2011~
-~01243~^~208~^133.^0^^~4~^~NC~^^^^^^^^^^~02/01/2017~
-~01243~^~262~^0.^0^^~4~^~BFZN~^~19260~^^^^^^^^^~04/01/2011~
-~01243~^~263~^0.^0^^~4~^~BFZN~^~19260~^^^^^^^^^~04/01/2011~
-~01243~^~268~^557.^0^^~4~^~NC~^^^^^^^^^^~02/01/2017~
-~01243~^~301~^147.^1^^~8~^~LC~^^^^^^^^^^~04/01/2011~
-~01243~^~304~^9.^0^^~4~^~BFZN~^~19260~^^^^^^^^^~04/01/2011~
-~01243~^~305~^75.^0^^~4~^~BFZN~^~19260~^^^^^^^^^~04/01/2011~
-~01243~^~306~^196.^0^^~4~^~BFZN~^~19260~^^^^^^^^^~04/01/2011~
-~01243~^~307~^110.^1^^~8~^~LC~^^^^^^^^^^~04/01/2011~
-~01243~^~318~^461.^0^^~4~^~NC~^^^^^^^^^^~04/01/2011~
-~01243~^~319~^132.^0^^~4~^~NR~^^^^^^^^^^~04/01/2011~
-~01243~^~320~^133.^0^^~4~^~NC~^^^^^^^^^^~04/01/2011~
-~01243~^~321~^12.^0^^~4~^~BFZN~^~19260~^^^^^^^^^~04/01/2011~
-~01243~^~322~^0.^0^^~4~^~BFZN~^~19260~^^^^^^^^^~04/01/2011~
-~01243~^~324~^0.^0^^~4~^~NR~^^^^^^^^^^~04/01/2011~
-~01243~^~334~^0.^0^^~4~^~BFZN~^~19260~^^^^^^^^^~04/01/2011~
-~01243~^~337~^0.^0^^~4~^~BFZN~^~19260~^^^^^^^^^~04/01/2011~
-~01243~^~338~^0.^0^^~4~^~BFZN~^~19260~^^^^^^^^^~04/01/2011~
-~01243~^~417~^4.^0^^~4~^~BFZN~^~19260~^^^^^^^^^~04/01/2011~
-~01243~^~431~^0.^0^^~4~^~BFZN~^~19260~^^^^^^^^^~04/01/2011~
-~01243~^~432~^4.^0^^~4~^~BFZN~^~19260~^^^^^^^^^~04/01/2011~
-~01243~^~435~^4.^0^^~4~^~NC~^~19260~^^^^^^^^^~04/01/2011~
-~01243~^~601~^0.^1^^~8~^~LC~^^^^^^^^^^~04/01/2011~
-~01244~^~208~^147.^2^^~8~^~LC~^^^1^132.^162.^1^^^^~04/01/2011~
-~01244~^~262~^2.^0^^~4~^~BFZN~^~19114~^^^^^^^^^~04/01/2011~
-~01244~^~263~^69.^0^^~4~^~BFZN~^~19114~^^^^^^^^^~04/01/2011~
-~01244~^~268~^615.^0^^~8~^~LC~^^^^^^^^^^~04/01/2011~
-~01244~^~301~^184.^2^^~8~^~LC~^^^1^147.^221.^1^^^^~04/01/2011~
-~01244~^~304~^20.^0^^~4~^~BFZN~^~19114~^^^^^^^^^~04/01/2011~
-~01244~^~305~^83.^0^^~4~^~BFZN~^~19114~^^^^^^^^^~04/01/2011~
-~01244~^~306~^316.^2^^~8~^~LC~^^^1^250.^382.^1^^^^~04/01/2011~
-~01244~^~307~^92.^2^^~8~^~LC~^^^1^81.^103.^1^^^^~04/01/2011~
-~01244~^~318~^424.^0^^~4~^~NC~^^^^^^^^^^~04/01/2011~
-~01244~^~319~^60.^0^^~4~^~BFZN~^~19114~^^^^^^^^^~04/01/2011~
-~01244~^~320~^71.^0^^~4~^~NC~^^^^^^^^^^~04/01/2011~
-~01244~^~321~^135.^0^^~4~^~BFZN~^~19114~^^^^^^^^^~04/01/2011~
-~01244~^~322~^0.^0^^~4~^~BFZN~^~19114~^^^^^^^^^~04/01/2011~
-~01244~^~324~^5.^0^^~4~^~NR~^^^^^^^^^^~04/01/2011~
-~01244~^~334~^0.^0^^~4~^~BFZN~^~19114~^^^^^^^^^~04/01/2011~
-~01244~^~337~^0.^0^^~4~^~BFZN~^~19114~^^^^^^^^^~04/01/2011~
-~01244~^~338~^1.^0^^~4~^~BFZN~^~19114~^^^^^^^^^~04/01/2011~
-~01244~^~417~^4.^0^^~4~^~BFZN~^~19114~^^^^^^^^^~04/01/2011~
-~01244~^~431~^0.^0^^~4~^~BFZN~^~19114~^^^^^^^^^~04/01/2011~
-~01244~^~432~^4.^0^^~4~^~BFZN~^~19114~^^^^^^^^^~04/01/2011~
-~01244~^~435~^4.^0^^~4~^~NC~^~19114~^^^^^^^^^~04/01/2011~
-~01244~^~601~^7.^2^^~8~^~LC~^^^1^7.^7.^1^^^^~04/01/2011~
-~01249~^~208~^93.^0^^~4~^~NC~^^^^^^^^^^~08/01/2016~
-~01249~^~268~^390.^0^^~4~^~NC~^^^^^^^^^^~08/01/2016~
-~01249~^~301~^94.^1^^~1~^~A~^^^^^^^^^^~08/01/2016~
-~01249~^~307~^41.^1^^~1~^~A~^^^^^^^^^^~08/01/2016~
-~01249~^~318~^79.^0^^~1~^~AS~^^^^^^^^^^~08/01/2016~
-~01249~^~319~^24.^1^^~1~^~A~^^^^^^^^^^~08/01/2016~
-~01249~^~320~^24.^0^^~1~^~AS~^^^^^^^^^^~08/01/2016~
-~01249~^~321~^0.^1^^~1~^~A~^^^^^^^^^~1~^~08/01/2016~
-~01249~^~601~^7.^1^^~1~^~A~^^^^^^^^^^~08/01/2016~
-~01250~^~208~^88.^1^^~8~^~LC~^^^^^^^^^^~04/01/2011~
-~01250~^~262~^2.^0^^~4~^~BFZN~^~01110~^^^^^^^^^~04/01/2011~
-~01250~^~263~^23.^0^^~4~^~BFZN~^~01110~^^^^^^^^^~04/01/2011~
-~01250~^~268~^368.^0^^~8~^~LC~^^^^^^^^^^~04/01/2011~
-~01250~^~301~^110.^1^^~8~^~LC~^^^^^^^^^^~04/01/2011~
-~01250~^~304~^44.^1^^~8~^~LC~^^^^^^^^^^~04/01/2011~
-~01250~^~305~^110.^1^^~8~^~LC~^^^^^^^^^^~04/01/2011~
-~01250~^~306~^176.^1^^~8~^~LC~^^^^^^^^^^~04/01/2011~
-~01250~^~307~^92.^1^^~8~^~LC~^^^^^^^^^^~04/01/2011~
-~01250~^~318~^550.^1^^~8~^~LC~^^^^^^^^^^~04/01/2011~
-~01250~^~319~^165.^0^^~4~^~NR~^^^^^^^^^^~04/01/2011~
-~01250~^~320~^165.^0^^~4~^~NC~^^^^^^^^^^~04/01/2011~
-~01250~^~321~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2011~
-~01250~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2011~
-~01250~^~324~^44.^1^^~8~^~LC~^^^^^^^^^^~04/01/2011~
-~01250~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2011~
-~01250~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2011~
-~01250~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2011~
-~01250~^~417~^44.^1^^~8~^~LC~^^^^^^^^^^~04/01/2011~
-~01250~^~431~^44.^0^^~4~^~NR~^^^^^^^^^^~04/01/2011~
-~01250~^~432~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2011~
-~01250~^~435~^75.^0^^~4~^~NC~^^^^^^^^^^~04/01/2011~
-~01250~^~601~^2.^1^^~8~^~LC~^^^^^^^^^^~04/01/2011~
-~01251~^~208~^384.^0^^~4~^~NC~^^^^^^^^^^~07/01/2017~
-~01251~^~262~^0.^0^^~4~^~RA~^^^^^^^^^^~03/01/2011~
-~01251~^~263~^0.^0^^~4~^~RA~^^^^^^^^^^~03/01/2011~
-~01251~^~268~^1606.^0^^~4~^~NC~^^^^^^^^^^~07/01/2017~
-~01251~^~301~^659.^0^^~4~^~RA~^^^^^^^^^^~03/01/2011~
-~01251~^~304~^25.^0^^~4~^~RA~^^^^^^^^^^~03/01/2011~
-~01251~^~305~^438.^0^^~4~^~RA~^^^^^^^^^^~03/01/2011~
-~01251~^~306~^85.^0^^~4~^~RA~^^^^^^^^^^~03/01/2011~
-~01251~^~307~^607.^0^^~8~^~LC~^^^^^^^^^^~07/01/2017~
-~01251~^~318~^659.^0^^~4~^~NC~^^^^^^^^^^~03/01/2011~
-~01251~^~319~^170.^0^^~4~^~RA~^^^^^^^^^^~03/01/2011~
-~01251~^~320~^174.^0^^~4~^~NC~^^^^^^^^^^~03/01/2011~
-~01251~^~321~^56.^0^^~4~^~RA~^^^^^^^^^^~03/01/2011~
-~01251~^~322~^0.^0^^~4~^~RA~^^^^^^^^^^~03/01/2011~
-~01251~^~324~^21.^0^^~4~^~RA~^^^^^^^^^^~03/01/2011~
-~01251~^~334~^0.^0^^~4~^~RA~^^^^^^^^^^~03/01/2011~
-~01251~^~337~^0.^0^^~4~^~RA~^^^^^^^^^^~03/01/2011~
-~01251~^~338~^0.^0^^~4~^~RA~^^^^^^^^^^~03/01/2011~
-~01251~^~417~^13.^0^^~4~^~RA~^^^^^^^^^^~03/01/2011~
-~01251~^~431~^0.^0^^~4~^~RA~^^^^^^^^^^~03/01/2011~
-~01251~^~432~^13.^0^^~4~^~RA~^^^^^^^^^^~03/01/2011~
-~01251~^~435~^13.^0^^~4~^~NC~^^^^^^^^^^~03/01/2011~
-~01251~^~601~^95.^0^^~4~^~RA~^^^^^^^^^^~03/01/2011~
-~01252~^~208~^307.^0^^~4~^~NC~^^^^^^^^^^~02/01/2016~
-~01252~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2011~
-~01252~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2011~
-~01252~^~268~^1286.^0^^~4~^~NC~^^^^^^^^^^~02/01/2016~
-~01252~^~301~^1375.^16^73.^~1~^~A~^^^1^809.^2510.^5^1189.^1559.^~2, 3~^~02/01/2016~
-~01252~^~304~^34.^16^0.^~1~^~A~^^^1^23.^37.^6^32.^35.^~2, 3~^~02/01/2016~
-~01252~^~305~^768.^16^36.^~1~^~A~^^^1^470.^1290.^5^676.^858.^~2, 3~^~02/01/2016~
-~01252~^~306~^295.^16^9.^~1~^~A~^^^1^174.^357.^5^270.^320.^~2, 3~^~02/01/2016~
-~01252~^~307~^1279.^16^9.^~1~^~A~^^^1^1120.^1540.^9^1257.^1300.^~2, 3~^~02/01/2016~
-~01252~^~318~^1261.^3^^~1~^~AS~^^^^^^^^^^~06/01/2015~
-~01252~^~319~^248.^3^^~1~^~A~^^^1^212.^265.^^^^~2, 3~^~06/01/2015~
-~01252~^~320~^270.^3^^~1~^~AS~^^^^^^^^^^~06/01/2015~
-~01252~^~321~^248.^3^^~1~^~A~^^^1^114.^575.^^^^~2, 3~^~06/01/2015~
-~01252~^~322~^1.^3^^~1~^~A~^^^1^0.^2.^^^^~1, 2, 3~^~05/01/2015~
-~01252~^~324~^259.^3^^~1~^~A~^^^1^225.^282.^^^^~2, 3~^~06/01/2015~
-~01252~^~334~^23.^3^^~1~^~A~^^^1^2.^34.^^^^~2, 3~^~06/01/2015~
-~01252~^~337~^0.^3^^~1~^~A~^^^1^0.^0.^^^^~1, 2, 3~^~07/01/2012~
-~01252~^~338~^60.^3^^~1~^~A~^^^1^6.^98.^^^^~2, 3~^~06/01/2015~
-~01252~^~417~^18.^0^^~4~^~BFZN~^~01215~^^^^^^^^^~05/01/2011~
-~01252~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2011~
-~01252~^~432~^18.^0^^~4~^~BFZN~^~01215~^^^^^^^^^~05/01/2011~
-~01252~^~435~^18.^0^^~4~^~NC~^^^^^^^^^^~05/01/2011~
-~01252~^~601~^78.^3^^~1~^~A~^^^1^71.^80.^^^^~2, 3~^~05/01/2015~
-~01253~^~208~^371.^0^^~4~^~NC~^^^^^^^^^^~05/01/2011~
-~01253~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2011~
-~01253~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2011~
-~01253~^~268~^1553.^0^^~4~^~NC~^^^^^^^^^^~05/01/2011~
-~01253~^~301~^1045.^19^34.^~1~^~A~^^^1^479.^1390.^16^971.^1118.^~2, 3~^~05/01/2011~
-~01253~^~304~^26.^19^0.^~1~^~A~^^^1^23.^28.^12^25.^26.^~2, 3~^~05/01/2011~
-~01253~^~305~^641.^19^14.^~1~^~A~^^^1^336.^767.^16^609.^672.^~2, 3~^~05/01/2011~
-~01253~^~306~^132.^19^3.^~1~^~A~^^^1^99.^212.^16^123.^140.^~2, 3~^~05/01/2011~
-~01253~^~307~^1671.^19^21.^~1~^~A~^^^1^1270.^1890.^15^1626.^1716.^~2, 3~^~05/01/2011~
-~01253~^~318~^945.^0^^~4~^~NC~^^^^^^^^^^~05/01/2011~
-~01253~^~319~^243.^0^^~4~^~BFFN~^~01009~^^^^^^^^^~05/01/2011~
-~01253~^~320~^250.^0^^~4~^~NC~^^^^^^^^^^~05/01/2011~
-~01253~^~321~^80.^0^^~4~^~BFFN~^~01009~^^^^^^^^^~05/01/2011~
-~01253~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2011~
-~01253~^~324~^23.^0^^~4~^~BFFN~^~01009~^^^^^^^^^~05/01/2011~
-~01253~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2011~
-~01253~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2011~
-~01253~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2011~
-~01253~^~417~^8.^26^0.^~1~^^^^^^^^^^^~05/01/2011~
-~01253~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2011~
-~01253~^~432~^8.^26^0.^~1~^^^^^^^^^^^~05/01/2011~
-~01253~^~435~^8.^0^^~4~^~NC~^^^^^^^^^^~05/01/2011~
-~01253~^~601~^100.^3^^~1~^~A~^^^1^92.^103.^^^^~2, 3~^~05/01/2011~
-~01254~^~208~^330.^0^^~4~^~NC~^^^^^^^^^^~05/01/2011~
-~01254~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2011~
-~01254~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2011~
-~01254~^~268~^1382.^0^^~4~^~NC~^^^^^^^^^^~05/01/2011~
-~01254~^~301~^682.^10^114.^~1~^~A~^^^1^473.^1450.^9^422.^941.^~2, 3~^~05/01/2011~
-~01254~^~304~^27.^10^1.^~1~^~A~^^^1^24.^33.^9^24.^29.^~2, 3~^~05/01/2011~
-~01254~^~305~^438.^10^46.^~1~^~A~^^^1^349.^745.^9^333.^542.^~2, 3~^~05/01/2011~
-~01254~^~306~^255.^10^14.^~1~^~A~^^^1^208.^353.^9^221.^287.^~2, 3~^~05/01/2011~
-~01254~^~307~^1441.^0^^~4~^~NR~^^^^^^^^^^~06/01/2013~
-~01254~^~318~^890.^0^^~1~^~AS~^^^^^^^^^^~07/01/2012~
-~01254~^~319~^235.^1^^~1~^~A~^^^^^^^^^^~07/01/2012~
-~01254~^~320~^240.^0^^~1~^~AS~^^^^^^^^^^~07/01/2012~
-~01254~^~321~^58.^2^^~1~^~A~^^^1^41.^76.^1^^^^~07/01/2012~
-~01254~^~322~^1.^2^^~1~^~A~^^^1^1.^1.^1^^^~1~^~07/01/2012~
-~01254~^~324~^102.^2^^~1~^~A~^^^1^0.^204.^1^^^~1~^~07/01/2012~
-~01254~^~334~^11.^2^^~1~^~A~^^^1^1.^20.^1^^^^~07/01/2012~
-~01254~^~337~^0.^2^^~1~^~A~^^^1^0.^0.^^^^~1~^~07/01/2012~
-~01254~^~338~^23.^2^^~1~^~A~^^^1^7.^38.^1^^^^~07/01/2012~
-~01254~^~417~^7.^0^^~4~^^^^^^^^^^^~05/01/2011~
-~01254~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2011~
-~01254~^~432~^7.^0^^~4~^^^^^^^^^^^~05/01/2011~
-~01254~^~435~^7.^0^^~4~^~NC~^^^^^^^^^^~05/01/2011~
-~01254~^~601~^98.^2^^~1~^~A~^^^1^86.^109.^1^^^^~05/01/2011~
-~01255~^~208~^138.^0^^~4~^~NC~^^^^^^^^^^~06/01/2011~
-~01255~^~262~^0.^0^^~4~^~BFZN~^~01123~^^^^^^^^^~06/01/2011~
-~01255~^~263~^0.^0^^~4~^~BFZN~^~01123~^^^^^^^^^~06/01/2011~
-~01255~^~268~^577.^0^^~4~^~NC~^^^^^^^^^^~06/01/2011~
-~01255~^~301~^55.^3^^~1~^~A~^^^1^53.^57.^^^^~2~^~06/01/2011~
-~01255~^~304~^9.^3^^~1~^~A~^^^1^9.^9.^^^^~2~^~06/01/2011~
-~01255~^~305~^186.^3^^~1~^~A~^^^1^183.^190.^^^^~2~^~06/01/2011~
-~01255~^~306~^128.^3^^~1~^~A~^^^1^117.^135.^^^^~2~^~06/01/2011~
-~01255~^~307~^3663.^3^^~1~^~A~^^^1^3620.^3750.^^^^~2~^~06/01/2011~
-~01255~^~318~^504.^0^^~4~^~NC~^^^^^^^^^^~02/01/2017~
-~01255~^~319~^149.^3^^~1~^~A~^^^1^147.^153.^^^^~2~^~06/01/2011~
-~01255~^~320~^149.^0^^~4~^~NC~^^^^^^^^^^~02/01/2017~
-~01255~^~321~^0.^3^^~1~^~A~^^^1^0.^0.^^^^~1, 2~^~06/01/2011~
-~01255~^~322~^0.^0^^~4~^~BFZN~^~01123~^^^^^^^^^~06/01/2011~
-~01255~^~324~^61.^3^^~1~^~A~^^^1^44.^76.^^^^~1, 2~^~06/01/2011~
-~01255~^~334~^9.^0^^~4~^~BFZN~^~01123~^^^^^^^^^~06/01/2011~
-~01255~^~337~^0.^0^^~4~^~BFZN~^~01123~^^^^^^^^^~06/01/2011~
-~01255~^~338~^417.^3^^~1~^~A~^^^1^324.^500.^^^^~2~^~06/01/2011~
-~01255~^~417~^69.^3^^~1~^~A~^^^1^56.^80.^^^^~2~^~07/01/2011~
-~01255~^~431~^0.^0^^~4~^~BFZN~^~01123~^^^^^^^^^~06/01/2011~
-~01255~^~432~^69.^3^^~1~^~A~^^^1^56.^80.^^^^^~07/01/2011~
-~01255~^~435~^69.^0^^~4~^~NC~^^^^^^^^^^~07/01/2011~
-~01255~^~601~^387.^3^^~1~^~A~^^^1^357.^424.^^^^~2~^~06/01/2011~
-~01256~^~208~^59.^0^^~4~^~NC~^^^^^^^^^^~08/01/2012~
-~01256~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~08/01/2012~
-~01256~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~08/01/2012~
-~01256~^~268~^246.^0^^~4~^~NC~^^^^^^^^^^~08/01/2012~
-~01256~^~301~^110.^18^0.^~1~^~A~^^^1^108.^115.^7^109.^111.^~2, 3~^~08/01/2012~
-~01256~^~304~^11.^18^0.^~1~^~A~^^^1^10.^12.^7^10.^10.^~2, 3~^~02/01/2012~
-~01256~^~305~^135.^18^0.^~1~^~A~^^^1^130.^142.^8^133.^135.^~2, 3~^~08/01/2012~
-~01256~^~306~^141.^18^0.^~1~^~A~^^^1^132.^145.^14^140.^142.^~2, 3~^~08/01/2012~
-~01256~^~307~^36.^18^0.^~1~^~A~^^^1^33.^39.^15^34.^36.^~2, 3~^~08/01/2012~
-~01256~^~318~^4.^0^^~1~^~AS~^^^^^^^^^^~08/01/2012~
-~01256~^~319~^1.^3^^~1~^~A~^^^1^0.^2.^^^^~1, 2, 3~^~08/01/2012~
-~01256~^~320~^1.^0^^~1~^~AS~^^^^^^^^^^~08/01/2012~
-~01256~^~321~^0.^0^^~7~^~Z~^^^^^^^^^^~08/01/2012~
-~01256~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~08/01/2012~
-~01256~^~324~^0.^1^^~1~^~A~^^^^^^^^^~1~^~08/01/2012~
-~01256~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~08/01/2012~
-~01256~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~08/01/2012~
-~01256~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~08/01/2012~
-~01256~^~417~^7.^0^^~1~^~DA~^~01118~^^^^^^^^^~02/01/2012~
-~01256~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~08/01/2012~
-~01256~^~432~^7.^0^^~1~^~DA~^^^^^^^^^^~02/01/2012~
-~01256~^~435~^7.^0^^~4~^~NC~^^^^^^^^^^~08/01/2012~
-~01256~^~601~^5.^9^0.^~1~^~A~^^^1^5.^6.^4^4.^5.^~2, 3~^~08/01/2012~
-~01258~^~208~^357.^0^^~4~^~NC~^^^^^^^^^^~04/01/2015~
-~01258~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~07/01/2012~
-~01258~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~07/01/2012~
-~01258~^~268~^1495.^0^^~4~^~NC~^^^^^^^^^^~04/01/2015~
-~01258~^~301~^101.^15^8.^~1~^~A~^^^1^61.^163.^14^81.^119.^~4~^~04/01/2015~
-~01258~^~304~^82.^3^^~1~^~A~^^^1^73.^87.^^^^~2~^~07/01/2012~
-~01258~^~305~^104.^3^^~1~^~A~^^^1^97.^110.^^^^~2~^~07/01/2012~
-~01258~^~306~^884.^3^^~1~^~A~^^^1^710.^1040.^^^^~2~^~07/01/2012~
-~01258~^~307~^1299.^15^22.^~1~^~A~^^^1^1160.^1420.^14^1250.^1348.^~4~^~04/01/2015~
-~01258~^~318~^0.^0^^~1~^~AS~^^^^^^^^^^~07/01/2012~
-~01258~^~319~^0.^15^0.^~1~^~A~^^^1^0.^0.^14^0.^0.^~1, 4~^~07/01/2012~
-~01258~^~320~^0.^0^^~1~^~AS~^^^^^^^^^^~07/01/2012~
-~01258~^~321~^0.^3^^~1~^~A~^^^1^0.^0.^^^^~1, 2~^~07/01/2012~
-~01258~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~07/01/2012~
-~01258~^~324~^0.^3^^~1~^~A~^^^1^0.^0.^^^^~1, 2~^~07/01/2012~
-~01258~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~07/01/2012~
-~01258~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~07/01/2012~
-~01258~^~338~^20.^3^^~1~^~A~^^^1^20.^20.^^^^~1, 2~^~07/01/2012~
-~01258~^~417~^0.^3^^~1~^~A~^^^1^0.^0.^^^^~2~^~07/01/2012~
-~01258~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~07/01/2012~
-~01258~^~432~^0.^3^^~1~^~A~^^^1^0.^0.^^^^^~07/01/2012~
-~01258~^~435~^0.^0^^~4~^~NC~^^^^^^^^^^~07/01/2012~
-~01258~^~601~^0.^0^^~1~^^^^^^^^^^^~04/01/2015~
-~01259~^~208~^176.^0^^~4~^~NC~^^^^^^^^^^~05/01/2013~
-~01259~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2013~
-~01259~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2013~
-~01259~^~268~^738.^0^^~4~^~NC~^^^^^^^^^^~05/01/2013~
-~01259~^~301~^557.^10^85.^~1~^~A~^^^1^340.^877.^9^363.^749.^~2, 3~^~05/01/2013~
-~01259~^~304~^27.^10^2.^~1~^~A~^^^1^19.^37.^9^20.^32.^~2, 3~^~05/01/2013~
-~01259~^~305~^931.^10^50.^~1~^~A~^^^1^792.^1160.^9^816.^1045.^~2, 3~^~05/01/2013~
-~01259~^~306~^250.^10^16.^~1~^~A~^^^1^195.^315.^9^213.^286.^~2, 3~^~05/01/2013~
-~01259~^~307~^1102.^10^86.^~1~^~A~^^^1^842.^1490.^9^906.^1296.^~2, 3~^~05/01/2013~
-~01259~^~318~^656.^0^^~1~^~AS~^^^^^^^^^^~05/01/2013~
-~01259~^~319~^183.^2^^~1~^~A~^^^1^70.^296.^1^^^^~05/01/2013~
-~01259~^~320~^185.^0^^~1~^~AS~^^^^^^^^^^~05/01/2013~
-~01259~^~321~^27.^4^8.^~1~^~A~^^^1^13.^50.^3^0.^54.^~2, 3~^~05/01/2013~
-~01259~^~322~^0.^4^0.^~1~^~A~^^^1^0.^0.^3^0.^0.^~1, 2, 3~^~05/01/2013~
-~01259~^~324~^0.^0^^~4~^~NR~^^^^^^^^^^~05/01/2013~
-~01259~^~334~^1.^2^^~1~^~A~^^^1^1.^1.^1^^^^~05/01/2013~
-~01259~^~337~^0.^4^0.^~1~^~A~^^^1^0.^1.^3^0.^1.^~1, 2, 3~^~05/01/2013~
-~01259~^~338~^11.^4^6.^~1~^~A~^^^1^3.^31.^3^-9.^32.^~1, 2, 3~^~05/01/2013~
-~01259~^~417~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2013~
-~01259~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2013~
-~01259~^~432~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2013~
-~01259~^~435~^0.^0^^~4~^~NC~^^^^^^^^^^~05/01/2013~
-~01259~^~601~^38.^6^3.^~1~^~A~^^^1^30.^46.^5^29.^46.^~2, 3~^~05/01/2013~
-~01260~^~208~^316.^0^^~4~^~NC~^^^^^^^^^^~07/01/2017~
-~01260~^~262~^0.^0^^~4~^~BFZN~^^^^^^^^^^~05/01/2013~
-~01260~^~263~^0.^0^^~4~^~BFZN~^^^^^^^^^^~05/01/2013~
-~01260~^~268~^1323.^0^^~4~^~NC~^^^^^^^^^^~07/01/2017~
-~01260~^~301~^761.^5^12.^~1~^~A~^^^1^709.^823.^2^707.^814.^~2, 3~^~05/01/2013~
-~01260~^~304~^27.^5^0.^~1~^~A~^^^1^25.^31.^2^23.^30.^~2, 3~^~05/01/2013~
-~01260~^~305~^520.^5^5.^~1~^~A~^^^1^491.^545.^2^497.^541.^~2, 3~^~05/01/2013~
-~01260~^~306~^63.^5^3.^~1~^~A~^^^1^54.^82.^2^46.^78.^~2, 3~^~05/01/2013~
-~01260~^~307~^628.^5^4.^~1~^~A~^^^1^591.^643.^2^609.^646.^~2, 3~^~05/01/2013~
-~01260~^~318~^522.^0^^~4~^~NC~^^^^^^^^^^~05/01/2013~
-~01260~^~319~^142.^0^^~4~^~BFZN~^^^^^^^^^^~05/01/2013~
-~01260~^~320~^145.^0^^~4~^~NC~^^^^^^^^^^~05/01/2013~
-~01260~^~321~^28.^2^^~1~^~A~^^^1^26.^29.^^^^^~05/01/2013~
-~01260~^~322~^0.^2^^~1~^~A~^^^1^0.^0.^^^^~1~^~05/01/2013~
-~01260~^~324~^13.^0^^~4~^~NR~^^^^^^^^^^~05/01/2013~
-~01260~^~334~^1.^2^^~1~^~A~^^^1^0.^2.^^^^~1~^~05/01/2013~
-~01260~^~337~^0.^2^^~1~^~A~^^^1^0.^0.^^^^~1~^~05/01/2013~
-~01260~^~338~^4.^2^^~1~^~A~^^^1^4.^4.^^^^^~05/01/2013~
-~01260~^~417~^20.^0^^~4~^~BFZN~^^^^^^^^^^~05/01/2013~
-~01260~^~431~^0.^0^^~4~^~BFZN~^^^^^^^^^^~05/01/2013~
-~01260~^~432~^20.^0^^~4~^~BFZN~^^^^^^^^^^~05/01/2013~
-~01260~^~435~^20.^0^^~4~^~NC~^^^^^^^^^^~05/01/2013~
-~01260~^~601~^76.^4^0.^~1~^~A~^^^1^71.^81.^1^75.^76.^~2, 3~^~05/01/2013~
-~01263~^~208~^141.^0^^~8~^~LC~^^^^^^^^^^~05/01/2013~
-~01263~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2013~
-~01263~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2013~
-~01263~^~268~^590.^0^^~8~^~LC~^^^^^^^^^^~05/01/2013~
-~01263~^~301~^134.^0^^~8~^~LC~^^^^^^^^^^~05/01/2013~
-~01263~^~304~^36.^0^^~4~^~FLC~^^^^^^^^^^~05/01/2013~
-~01263~^~305~^113.^0^^~4~^~FLC~^^^^^^^^^^~05/01/2013~
-~01263~^~306~^207.^0^^~4~^~FLC~^^^^^^^^^^~05/01/2013~
-~01263~^~307~^64.^0^^~8~^~LC~^^^^^^^^^^~05/01/2013~
-~01263~^~318~^336.^0^^~8~^~LC~^^^^^^^^^^~05/01/2013~
-~01263~^~319~^90.^0^^~4~^~FLC~^^^^^^^^^^~05/01/2013~
-~01263~^~320~^91.^0^^~4~^~FLC~^^^^^^^^^^~05/01/2013~
-~01263~^~321~^5.^0^^~4~^~FLC~^^^^^^^^^^~05/01/2013~
-~01263~^~322~^0.^0^^~4~^~FLC~^^^^^^^^^^~05/01/2013~
-~01263~^~324~^26.^0^^~4~^~FLC~^^^^^^^^^^~05/01/2013~
-~01263~^~334~^0.^0^^~4~^~FLC~^^^^^^^^^^~05/01/2013~
-~01263~^~337~^0.^0^^~4~^~FLC~^^^^^^^^^^~05/01/2013~
-~01263~^~338~^2.^0^^~4~^~FLC~^^^^^^^^^^~05/01/2013~
-~01263~^~417~^17.^0^^~4~^~FLC~^^^^^^^^^^~05/01/2013~
-~01263~^~431~^12.^0^^~4~^~NR~^^^^^^^^^^~05/01/2013~
-~01263~^~432~^5.^0^^~4~^~FLC~^^^^^^^^^^~05/01/2013~
-~01263~^~435~^26.^0^^~4~^~NC~^^^^^^^^^^~05/01/2013~
-~01263~^~601~^15.^0^^~8~^~LC~^^^^^^^^^^~05/01/2013~
-~01264~^~208~^358.^0^^~8~^~LC~^^^^^^^^^^~05/01/2013~
-~01264~^~262~^0.^0^^~4~^~FLC~^^^^^^^^^^~05/01/2013~
-~01264~^~263~^0.^0^^~4~^~FLC~^^^^^^^^^^~05/01/2013~
-~01264~^~268~^1497.^0^^~8~^~LC~^^^^^^^^^^~05/01/2013~
-~01264~^~301~^63.^0^^~8~^~LC~^^^^^^^^^^~05/01/2013~
-~01264~^~304~^11.^0^^~4~^~FLC~^^^^^^^^^^~05/01/2013~
-~01264~^~305~^57.^0^^~4~^~FLC~^^^^^^^^^^~05/01/2013~
-~01264~^~306~^71.^0^^~4~^~FLC~^^^^^^^^^^~05/01/2013~
-~01264~^~307~^84.^0^^~8~^~LC~^^^^^^^^^^~05/01/2013~
-~01264~^~318~^105.^0^^~8~^~LC~^^^^^^^^^^~05/01/2013~
-~01264~^~319~^35.^0^^~4~^~FLC~^^^^^^^^^^~05/01/2013~
-~01264~^~320~^35.^0^^~4~^~FLC~^^^^^^^^^^~05/01/2013~
-~01264~^~321~^5.^0^^~4~^~FLC~^^^^^^^^^^~05/01/2013~
-~01264~^~322~^0.^0^^~4~^~FLC~^^^^^^^^^^~05/01/2013~
-~01264~^~324~^3.^0^^~4~^~FLC~^^^^^^^^^^~05/01/2013~
-~01264~^~334~^0.^0^^~4~^~FLC~^^^^^^^^^^~05/01/2013~
-~01264~^~337~^0.^0^^~4~^~FLC~^^^^^^^^^^~05/01/2013~
-~01264~^~338~^0.^0^^~4~^~FLC~^^^^^^^^^^~05/01/2013~
-~01264~^~417~^3.^0^^~4~^~FLC~^^^^^^^^^^~05/01/2013~
-~01264~^~431~^0.^0^^~4~^~FLC~^^^^^^^^^^~05/01/2013~
-~01264~^~432~^3.^0^^~4~^~FLC~^^^^^^^^^^~05/01/2013~
-~01264~^~435~^3.^0^^~4~^~NC~^^^^^^^^^^~05/01/2013~
-~01264~^~601~^16.^0^^~8~^~LC~^^^^^^^^^^~05/01/2013~
-~01265~^~208~^157.^0^^~4~^~NC~^^^^^^^^^^~05/01/2013~
-~01265~^~262~^0.^0^^~4~^~BFZN~^~01168~^^^^^^^^^~05/01/2013~
-~01265~^~263~^0.^0^^~4~^~BFZN~^~01168~^^^^^^^^^~05/01/2013~
-~01265~^~268~^657.^0^^~4~^~NC~^^^^^^^^^^~05/01/2013~
-~01265~^~301~^893.^0^^~8~^^^^^^^^^^^~05/01/2013~
-~01265~^~304~^16.^0^^~4~^~BFZN~^~01168~^^^^^^^^^~05/01/2013~
-~01265~^~305~^484.^0^^~4~^~BFZN~^~01168~^^^^^^^^^~05/01/2013~
-~01265~^~306~^66.^0^^~4~^~BFZN~^~01168~^^^^^^^^^~05/01/2013~
-~01265~^~307~^1000.^0^^~8~^^^^^^^^^^^~05/01/2013~
-~01265~^~318~^207.^0^^~4~^~NC~^^^^^^^^^^~05/01/2013~
-~01265~^~319~^60.^0^^~4~^~BFZN~^~01168~^^^^^^^^^~05/01/2013~
-~01265~^~320~^60.^0^^~4~^~NC~^^^^^^^^^^~05/01/2013~
-~01265~^~321~^4.^0^^~4~^~BFZN~^~01168~^^^^^^^^^~05/01/2013~
-~01265~^~322~^0.^0^^~4~^~BFZN~^~01168~^^^^^^^^^~05/01/2013~
-~01265~^~324~^5.^0^^~4~^~NR~^^^^^^^^^^~05/01/2013~
-~01265~^~334~^0.^0^^~4~^~BFZN~^~01168~^^^^^^^^^~05/01/2013~
-~01265~^~337~^0.^0^^~4~^~BFZN~^~01168~^^^^^^^^^~05/01/2013~
-~01265~^~338~^0.^0^^~4~^~BFZN~^~01168~^^^^^^^^^~05/01/2013~
-~01265~^~417~^11.^0^^~4~^~BFZN~^~01168~^^^^^^^^^~05/01/2013~
-~01265~^~431~^0.^0^^~4~^~BFZN~^~01168~^^^^^^^^^~05/01/2013~
-~01265~^~432~^11.^0^^~4~^~BFZN~^~01168~^^^^^^^^^~05/01/2013~
-~01265~^~435~^11.^0^^~4~^~NC~^~01168~^^^^^^^^^~05/01/2013~
-~01265~^~601~^18.^0^^~8~^^^^^^^^^^^~05/01/2013~
-~01266~^~208~^127.^0^^~4~^~NC~^^^^^^^^^^~05/01/2013~
-~01266~^~262~^0.^0^^~4~^~BFZN~^~43589~^^^^^^^^^~05/01/2013~
-~01266~^~263~^0.^0^^~4~^~BFZN~^~43589~^^^^^^^^^~05/01/2013~
-~01266~^~268~^532.^0^^~4~^~NC~^^^^^^^^^^~05/01/2013~
-~01266~^~301~^961.^0^^~4~^~BFZN~^~43589~^^^^^^^^^~05/01/2013~
-~01266~^~304~^36.^0^^~4~^~BFZN~^~43589~^^^^^^^^^~05/01/2013~
-~01266~^~305~^605.^0^^~4~^~BFZN~^~43589~^^^^^^^^^~05/01/2013~
-~01266~^~306~^111.^0^^~4~^~BFZN~^~43589~^^^^^^^^^~05/01/2013~
-~01266~^~307~^1000.^0^^~4~^~BFZN~^~01265~^^^^^^^^^~05/01/2013~
-~01266~^~318~^152.^0^^~4~^~NC~^^^^^^^^^^~05/01/2013~
-~01266~^~319~^39.^0^^~4~^~BFZN~^~43589~^^^^^^^^^~05/01/2013~
-~01266~^~320~^40.^0^^~4~^~NC~^~43589~^^^^^^^^^~05/01/2013~
-~01266~^~321~^13.^0^^~4~^~BFZN~^~43589~^^^^^^^^^~05/01/2013~
-~01266~^~322~^0.^0^^~4~^~BFZN~^~43589~^^^^^^^^^~05/01/2013~
-~01266~^~324~^4.^0^^~4~^~NR~^^^^^^^^^^~05/01/2013~
-~01266~^~334~^0.^0^^~4~^~BFZN~^~43589~^^^^^^^^^~05/01/2013~
-~01266~^~337~^0.^0^^~4~^~BFZN~^~43589~^^^^^^^^^~05/01/2013~
-~01266~^~338~^0.^0^^~4~^~BFZN~^~43589~^^^^^^^^^~05/01/2013~
-~01266~^~417~^6.^0^^~4~^~BFZN~^~43589~^^^^^^^^^~05/01/2013~
-~01266~^~431~^0.^0^^~4~^~BFZN~^~43589~^^^^^^^^^~05/01/2013~
-~01266~^~432~^6.^0^^~4~^~BFZN~^~43589~^^^^^^^^^~05/01/2013~
-~01266~^~435~^6.^0^^~4~^~NC~^~43589~^^^^^^^^^~05/01/2013~
-~01266~^~601~^18.^0^^~4~^~BFZN~^~01265~^^^^^^^^^~05/01/2013~
-~01267~^~208~^366.^0^^~4~^~NC~^^^^^^^^^^~05/01/2013~
-~01267~^~262~^0.^0^^~4~^~BFZN~^~01032~^^^^^^^^^~05/01/2013~
-~01267~^~263~^0.^0^^~4~^~BFZN~^~01032~^^^^^^^^^~05/01/2013~
-~01267~^~268~^1531.^0^^~4~^~NC~^^^^^^^^^^~05/01/2013~
-~01267~^~301~^800.^0^^~8~^^^^^^^^^^^~05/01/2013~
-~01267~^~304~^38.^0^^~4~^~BFZN~^~01032~^^^^^^^^^~05/01/2013~
-~01267~^~305~^729.^0^^~4~^~BFZN~^~01032~^^^^^^^^^~05/01/2013~
-~01267~^~306~^125.^0^^~4~^~BFZN~^~01032~^^^^^^^^^~05/01/2013~
-~01267~^~307~^1400.^0^^~8~^^^^^^^^^^^~05/01/2013~
-~01267~^~318~^865.^0^^~4~^~NC~^^^^^^^^^^~05/01/2013~
-~01267~^~319~^223.^0^^~4~^~BFZN~^~01032~^^^^^^^^^~05/01/2013~
-~01267~^~320~^229.^0^^~4~^~BFZN~^~01032~^^^^^^^^^~05/01/2013~
-~01267~^~321~^73.^0^^~4~^~BFZN~^~01032~^^^^^^^^^~05/01/2013~
-~01267~^~322~^0.^0^^~4~^~BFZN~^~01032~^^^^^^^^^~05/01/2013~
-~01267~^~324~^21.^0^^~4~^~NR~^^^^^^^^^^~05/01/2013~
-~01267~^~334~^0.^0^^~4~^~BFZN~^~01032~^^^^^^^^^~05/01/2013~
-~01267~^~337~^0.^0^^~4~^~BFZN~^~01032~^^^^^^^^^~05/01/2013~
-~01267~^~338~^0.^0^^~4~^~BFZN~^~01032~^^^^^^^^^~05/01/2013~
-~01267~^~417~^10.^0^^~4~^~BFZN~^~01032~^^^^^^^^^~05/01/2013~
-~01267~^~431~^0.^0^^~4~^~BFZN~^~01032~^^^^^^^^^~05/01/2013~
-~01267~^~432~^10.^0^^~4~^~BFZN~^~01032~^^^^^^^^^~05/01/2013~
-~01267~^~435~^10.^0^^~4~^~NC~^~01032~^^^^^^^^^~05/01/2013~
-~01267~^~601~^100.^0^^~8~^^^^^^^^^^^~05/01/2013~
-~01270~^~208~^410.^0^^~4~^~NC~^^^^^^^^^^~05/01/2014~
-~01270~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2014~
-~01270~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2014~
-~01270~^~268~^1715.^0^^~4~^~NC~^^^^^^^^^^~05/01/2014~
-~01270~^~301~^711.^18^4.^~1~^~A~^^^1^646.^747.^4^698.^723.^~2, 3~^~05/01/2014~
-~01270~^~304~^27.^18^0.^~1~^~A~^^^1^24.^30.^4^25.^27.^~2, 3~^~05/01/2014~
-~01270~^~305~^460.^18^5.^~1~^~A~^^^1^423.^492.^3^443.^476.^~2, 3~^~05/01/2014~
-~01270~^~306~^76.^18^4.^~1~^~A~^^^1^58.^94.^3^59.^91.^~2, 3~^~05/01/2014~
-~01270~^~307~^644.^18^11.^~1~^~A~^^^1^587.^699.^3^607.^680.^~2, 3~^~05/01/2014~
-~01270~^~318~^994.^0^^~4~^~NC~^^^^^^^^^^~05/01/2014~
-~01270~^~319~^256.^3^^~1~^~A~^^^1^249.^356.^^^^~2, 3~^~05/01/2014~
-~01270~^~320~^263.^0^^~4~^~NC~^^^^^^^^^^~05/01/2014~
-~01270~^~321~^85.^0^^~4~^~NR~^^^^^^^^^^~05/01/2014~
-~01270~^~322~^0.^0^^~4~^~NR~^^^^^^^^^^~05/01/2014~
-~01270~^~324~^41.^1^^~8~^~LC~^^^^^^^^^^~05/01/2014~
-~01270~^~334~^0.^0^^~4~^~NR~^^^^^^^^^^~05/01/2014~
-~01270~^~337~^0.^0^^~4~^~NR~^^^^^^^^^^~05/01/2014~
-~01270~^~338~^0.^0^^~4~^~NR~^^^^^^^^^^~05/01/2014~
-~01270~^~417~^27.^4^^~1~^~A~^^^1^14.^30.^^^^~2, 3~^~05/01/2014~
-~01270~^~431~^0.^0^^~4~^~NR~^^^^^^^^^^~05/01/2014~
-~01270~^~432~^27.^0^^~4~^~NR~^^^^^^^^^^~05/01/2014~
-~01270~^~435~^27.^0^^~4~^~NC~^^^^^^^^^^~05/01/2014~
-~01270~^~601~^99.^9^0.^~1~^~A~^^^1^97.^106.^1^94.^103.^~2, 3~^~05/01/2014~
-~01271~^~208~^304.^0^^~4~^~NC~^^^^^^^^^^~05/01/2014~
-~01271~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2014~
-~01271~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2014~
-~01271~^~268~^1273.^0^^~4~^~NC~^^^^^^^^^^~05/01/2014~
-~01271~^~301~^716.^18^16.^~1~^~A~^^^1^638.^862.^6^676.^755.^~2, 3~^~05/01/2014~
-~01271~^~304~^29.^18^1.^~1~^~A~^^^1^24.^34.^6^26.^31.^~2, 3~^~05/01/2014~
-~01271~^~305~^537.^18^12.^~1~^~A~^^^1^443.^603.^6^506.^567.^~2, 3~^~05/01/2014~
-~01271~^~306~^131.^18^6.^~1~^~A~^^^1^62.^163.^6^114.^147.^~2, 3~^~05/01/2014~
-~01271~^~307~^682.^18^24.^~1~^~A~^^^1^549.^799.^6^623.^741.^~2, 3~^~05/01/2014~
-~01271~^~318~^846.^0^^~1~^~AS~^^^^^^^^^^~05/01/2014~
-~01271~^~319~^254.^3^^~1~^~A~^^^1^168.^264.^^^^~2, 3~^~05/01/2014~
-~01271~^~320~^254.^0^^~1~^~AS~^^^^^^^^^^~05/01/2014~
-~01271~^~321~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2014~
-~01271~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2014~
-~01271~^~324~^14.^0^^~4~^~BFFN~^~01028~^^^^^^^^^~05/01/2014~
-~01271~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2014~
-~01271~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2014~
-~01271~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2014~
-~01271~^~417~^27.^4^1.^~1~^~A~^^^1^24.^30.^1^10.^42.^~2, 3~^~05/01/2014~
-~01271~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2014~
-~01271~^~432~^27.^4^1.^~1~^~A~^^^1^24.^30.^1^10.^42.^^~05/01/2014~
-~01271~^~435~^27.^0^^~4~^~NC~^^^^^^^^^^~05/01/2014~
-~01271~^~601~^65.^9^1.^~1~^~A~^^^1^63.^68.^2^59.^71.^~2, 3~^~05/01/2014~
-~01275~^~208~^71.^0^^~4~^~NC~^^^^^^^^^^~07/01/2014~
-~01275~^~268~^295.^0^^~4~^~NC~^^^^^^^^^^~07/01/2014~
-~01275~^~301~^106.^6^1.^~1~^~A~^^^1^101.^109.^5^103.^109.^~2, 3~^~07/01/2014~
-~01275~^~304~^11.^6^0.^~1~^~A~^^^1^10.^11.^5^10.^10.^~2, 3~^~07/01/2014~
-~01275~^~305~^126.^6^0.^~1~^~A~^^^1^123.^129.^5^124.^128.^~2, 3~^~07/01/2014~
-~01275~^~306~^130.^6^2.^~1~^~A~^^^1^117.^136.^5^122.^137.^~2, 3~^~07/01/2014~
-~01275~^~307~^36.^6^1.^~1~^~A~^^^1^34.^41.^5^32.^39.^~2, 3~^~07/01/2014~
-~01276~^~208~^106.^0^^~4~^~NC~^^^^^^^^^^~07/01/2014~
-~01276~^~268~^443.^0^^~4~^~NC~^^^^^^^^^^~07/01/2014~
-~01276~^~301~^86.^6^1.^~1~^~A~^^^1^82.^89.^5^83.^89.^~2, 3~^~07/01/2014~
-~01276~^~304~^10.^6^0.^~1~^~A~^^^1^9.^10.^5^9.^10.^~2, 3~^~07/01/2014~
-~01276~^~305~^110.^6^1.^~1~^~A~^^^1^106.^113.^5^106.^112.^~2, 3~^~07/01/2014~
-~01276~^~306~^131.^6^1.^~1~^~A~^^^1^125.^135.^5^126.^134.^~2, 3~^~07/01/2014~
-~01276~^~307~^34.^6^0.^~1~^~A~^^^1^33.^36.^5^32.^35.^~2, 3~^~07/01/2014~
-~01276~^~318~^13.^0^^~1~^~AS~^^^^^^^^^^~07/01/2014~
-~01276~^~320~^1.^0^^~1~^~AS~^^^^^^^^^^~07/01/2014~
-~01276~^~321~^8.^1^^~1~^~A~^^^^^^^^^^~07/01/2014~
-~01276~^~322~^0.^1^^~1~^~A~^^^^^^^^^~1~^~07/01/2014~
-~01276~^~324~^0.^2^^~1~^~A~^^^1^0.^0.^^^^~1~^~07/01/2014~
-~01276~^~334~^0.^1^^~1~^~A~^^^^^^^^^~1~^~07/01/2014~
-~01276~^~337~^0.^1^^~1~^~A~^^^^^^^^^~1~^~07/01/2014~
-~01276~^~338~^3.^1^^~1~^~A~^^^^^^^^^^~07/01/2014~
-~01276~^~601~^13.^1^^~1~^~A~^^^^^^^^^^~07/01/2014~
-~01278~^~208~^85.^0^^~4~^~NC~^^^^^^^^^^~07/01/2014~
-~01278~^~268~^354.^0^^~4~^~NC~^^^^^^^^^^~07/01/2014~
-~01278~^~301~^89.^6^0.^~1~^~A~^^^1^86.^91.^5^86.^91.^~2, 3~^~07/01/2014~
-~01278~^~304~^10.^6^0.^~1~^~A~^^^1^9.^10.^5^9.^9.^~2, 3~^~07/01/2014~
-~01278~^~305~^112.^6^0.^~1~^~A~^^^1^110.^114.^5^110.^112.^~2, 3~^~07/01/2014~
-~01278~^~306~^115.^6^2.^~1~^~A~^^^1^108.^121.^5^108.^120.^~2, 3~^~07/01/2014~
-~01278~^~307~^32.^6^1.^~1~^~A~^^^1^29.^37.^5^29.^34.^~2, 3~^~07/01/2014~
-~01278~^~324~^35.^2^^~1~^~A~^^^1^34.^37.^1^^^^~07/01/2014~
-~01280~^~208~^84.^0^^~4~^~NC~^^^^^^^^^^~07/01/2014~
-~01280~^~268~^352.^0^^~4~^~NC~^^^^^^^^^^~07/01/2014~
-~01280~^~301~^94.^6^0.^~1~^~A~^^^1^92.^98.^5^91.^96.^~2, 3~^~07/01/2014~
-~01280~^~304~^11.^6^0.^~1~^~A~^^^1^10.^11.^5^10.^11.^~2, 3~^~07/01/2014~
-~01280~^~305~^114.^6^1.^~1~^~A~^^^1^111.^118.^5^110.^117.^~2, 3~^~07/01/2014~
-~01280~^~306~^145.^6^1.^~1~^~A~^^^1^140.^151.^5^140.^149.^~2, 3~^~07/01/2014~
-~01280~^~307~^33.^6^0.^~1~^~A~^^^1^31.^35.^5^31.^34.^~2, 3~^~07/01/2014~
-~01280~^~324~^40.^1^^~1~^~A~^^^^^^^^^^~07/01/2014~
-~01280~^~417~^20.^1^^~1~^~A~^^^^^^^^^^~07/01/2014~
-~01280~^~432~^20.^1^^~1~^~A~^^^^^^^^^^~07/01/2014~
-~01284~^~208~^105.^0^^~4~^~NC~^^^^^^^^^^~11/01/2016~
-~01284~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2015~
-~01284~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2015~
-~01284~^~268~^439.^0^^~4~^~NC~^^^^^^^^^^~11/01/2016~
-~01284~^~301~^88.^9^0.^~1~^~A~^^^1^82.^96.^6^86.^90.^~2, 3~^~05/01/2015~
-~01284~^~304~^10.^9^0.^~1~^~A~^^^1^9.^10.^6^9.^10.^~2, 3~^~05/01/2015~
-~01284~^~305~^109.^9^0.^~1~^~A~^^^1^106.^113.^6^107.^111.^~2, 3~^~05/01/2015~
-~01284~^~306~^129.^9^1.^~1~^~A~^^^1^123.^135.^5^126.^131.^~2, 3~^~05/01/2015~
-~01284~^~307~^33.^9^0.^~1~^~A~^^^1^28.^36.^6^31.^33.^~2, 3~^~05/01/2015~
-~01284~^~318~^111.^0^^~4~^~NC~^^^^^^^^^^~05/01/2015~
-~01284~^~319~^30.^0^^~4~^~O~^^^^^^^^^^~05/01/2015~
-~01284~^~320~^31.^0^^~4~^~NC~^^^^^^^^^^~05/01/2015~
-~01284~^~321~^7.^2^^~1~^~A~^^^1^5.^8.^^^^^~05/01/2015~
-~01284~^~322~^0.^2^^~1~^~A~^^^1^0.^0.^^^^~1~^~05/01/2015~
-~01284~^~324~^0.^2^^~1~^~A~^^^1^0.^0.^^^^~1~^~05/01/2015~
-~01284~^~334~^0.^2^^~1~^~A~^^^1^0.^0.^^^^~1~^~05/01/2015~
-~01284~^~337~^0.^2^^~1~^~A~^^^1^0.^0.^^^^~1~^~05/01/2015~
-~01284~^~338~^7.^2^^~1~^~A~^^^1^3.^18.^^^^^~05/01/2015~
-~01284~^~417~^9.^0^^~1~^^^^^^^^^^^~05/01/2015~
-~01284~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2015~
-~01284~^~432~^9.^0^^~1~^^^^^^^^^^^~05/01/2015~
-~01284~^~435~^9.^0^^~4~^~NC~^^^^^^^^^^~05/01/2015~
-~01284~^~601~^12.^2^^~1~^~A~^^^1^8.^13.^^^^^~05/01/2015~
-~01285~^~208~^82.^0^^~4~^~NC~^^^^^^^^^^~05/01/2015~
-~01285~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2015~
-~01285~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2015~
-~01285~^~268~^342.^0^^~4~^~NC~^^^^^^^^^^~05/01/2015~
-~01285~^~301~^97.^16^0.^~1~^~A~^^^1^92.^103.^13^95.^98.^~2, 3~^~05/01/2015~
-~01285~^~304~^10.^16^0.^~1~^~A~^^^1^10.^11.^11^10.^10.^~2, 3~^~05/01/2015~
-~01285~^~305~^113.^16^0.^~1~^~A~^^^1^109.^118.^10^110.^114.^~2, 3~^~05/01/2015~
-~01285~^~306~^132.^16^1.^~1~^~A~^^^1^121.^151.^10^130.^134.^~2, 3~^~05/01/2015~
-~01285~^~307~^33.^16^0.^~1~^~A~^^^1^30.^37.^7^31.^33.^~2, 3~^~05/01/2015~
-~01285~^~318~^4.^0^^~4~^~NC~^^^^^^^^^^~02/01/2017~
-~01285~^~319~^0.^0^^~4~^~O~^^^^^^^^^^~05/01/2015~
-~01285~^~320~^0.^0^^~4~^~NC~^^^^^^^^^^~02/01/2017~
-~01285~^~321~^2.^1^^~1~^~A~^^^^^^^^^^~05/01/2015~
-~01285~^~322~^0.^1^^~1~^~A~^^^^^^^^^~1~^~05/01/2015~
-~01285~^~324~^40.^1^^~1~^~A~^^^^^^^^^^~05/01/2015~
-~01285~^~334~^0.^1^^~1~^~A~^^^^^^^^^~1~^~05/01/2015~
-~01285~^~337~^0.^1^^~1~^~A~^^^^^^^^^~1~^~05/01/2015~
-~01285~^~338~^4.^1^^~1~^~A~^^^^^^^^^^~05/01/2015~
-~01285~^~417~^20.^1^^~1~^~A~^^^^^^^^^^~05/01/2015~
-~01285~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2015~
-~01285~^~432~^20.^1^^~1~^~A~^^^^^^^^^^~05/01/2015~
-~01285~^~435~^20.^0^^~4~^~NC~^^^^^^^^^^~05/01/2015~
-~01285~^~601~^4.^1^^~1~^~A~^^^^^^^^^^~05/01/2015~
-~01286~^~208~^78.^0^^~4~^~NC~^^^^^^^^^^~05/01/2015~
-~01286~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2015~
-~01286~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2015~
-~01286~^~268~^325.^0^^~4~^~NC~^^^^^^^^^^~05/01/2015~
-~01286~^~301~^99.^15^0.^~1~^~A~^^^1^86.^109.^10^97.^100.^~2, 3~^~05/01/2015~
-~01286~^~304~^10.^15^0.^~1~^~A~^^^1^9.^11.^10^9.^10.^~2, 3~^~05/01/2015~
-~01286~^~305~^119.^15^0.^~1~^~A~^^^1^110.^129.^8^118.^120.^~2, 3~^~05/01/2015~
-~01286~^~306~^123.^15^1.^~1~^~A~^^^1^108.^136.^9^119.^127.^~2, 3~^~05/01/2015~
-~01286~^~307~^34.^15^0.^~1~^~A~^^^1^28.^41.^9^32.^35.^~2, 3~^~05/01/2015~
-~01286~^~318~^0.^0^^~4~^~NC~^^^^^^^^^^~05/01/2015~
-~01286~^~319~^0.^0^^~4~^~O~^^^^^^^^^^~05/01/2015~
-~01286~^~320~^0.^0^^~4~^~NC~^^^^^^^^^^~02/01/2017~
-~01286~^~321~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2015~
-~01286~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2015~
-~01286~^~324~^35.^2^^~1~^~A~^^^1^34.^37.^1^^^^~05/01/2015~
-~01286~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2015~
-~01286~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2015~
-~01286~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2015~
-~01286~^~417~^11.^0^^~1~^^^^^^^^^^^~05/01/2015~
-~01286~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2015~
-~01286~^~432~^11.^0^^~1~^^^^^^^^^^^~05/01/2015~
-~01286~^~435~^11.^0^^~4~^~NC~^^^^^^^^^^~05/01/2015~
-~01286~^~601~^3.^0^^~4~^~O~^^^^^^^^^^~05/01/2015~
-~01287~^~208~^73.^0^^~4~^~NC~^^^^^^^^^^~05/01/2015~
-~01287~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2015~
-~01287~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2015~
-~01287~^~268~^305.^0^^~4~^~NC~^^^^^^^^^^~05/01/2015~
-~01287~^~301~^115.^5^1.^~1~^~A~^^^1^110.^118.^4^111.^119.^~2, 3~^~05/01/2015~
-~01287~^~304~^11.^5^0.^~1~^~A~^^^1^11.^11.^4^10.^11.^~2, 3~^~05/01/2015~
-~01287~^~305~^137.^5^1.^~1~^~A~^^^1^133.^139.^4^133.^139.^~2, 3~^~05/01/2015~
-~01287~^~306~^141.^5^1.^~1~^~A~^^^1^136.^147.^4^135.^145.^~2, 3~^~05/01/2015~
-~01287~^~307~^34.^5^0.^~1~^~A~^^^1^34.^35.^4^33.^35.^~2, 3~^~05/01/2015~
-~01287~^~318~^309.^0^^~4~^~NC~^^^^^^^^^^~05/01/2015~
-~01287~^~319~^90.^0^^~4~^~O~^^^^^^^^^^~05/01/2015~
-~01287~^~320~^90.^0^^~4~^~NC~^^^^^^^^^^~05/01/2015~
-~01287~^~321~^6.^1^^~1~^~A~^^^^^^^^^^~05/01/2015~
-~01287~^~322~^0.^1^^~1~^~A~^^^^^^^^^~1~^~05/01/2015~
-~01287~^~324~^0.^0^^~4~^~O~^^^^^^^^^^~05/01/2015~
-~01287~^~334~^0.^1^^~1~^~A~^^^^^^^^^~1~^~05/01/2015~
-~01287~^~337~^0.^1^^~1~^~A~^^^^^^^^^~1~^~05/01/2015~
-~01287~^~338~^1.^1^^~1~^~A~^^^^^^^^^^~05/01/2015~
-~01287~^~417~^12.^1^^~1~^~A~^^^^^^^^^^~05/01/2015~
-~01287~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2015~
-~01287~^~432~^12.^1^^~1~^~A~^^^^^^^^^^~05/01/2015~
-~01287~^~435~^12.^0^^~4~^~NC~^^^^^^^^^^~05/01/2015~
-~01287~^~601~^10.^1^^~1~^~A~^^^^^^^^^^~05/01/2015~
-~01289~^~208~^43.^0^^~4~^~NC~^^^^^^^^^^~11/01/2016~
-~01289~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~07/01/2015~
-~01289~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~07/01/2015~
-~01289~^~268~^182.^0^^~4~^~NC~^^^^^^^^^^~11/01/2016~
-~01289~^~301~^130.^4^1.^~1~^~A~^^^1^128.^134.^3^125.^134.^~2, 3~^~07/01/2015~
-~01289~^~304~^12.^4^0.^~1~^~A~^^^1^12.^12.^3^11.^12.^~2, 3~^~07/01/2015~
-~01289~^~305~^105.^4^0.^~1~^~A~^^^1^104.^106.^3^103.^106.^~2, 3~^~07/01/2015~
-~01289~^~306~^164.^4^1.^~1~^~A~^^^1^161.^167.^3^159.^167.^~2, 3~^~07/01/2015~
-~01289~^~307~^40.^4^0.^~1~^~A~^^^1^39.^41.^3^37.^41.^~2, 3~^~07/01/2015~
-~01289~^~318~^569.^0^^~1~^~AS~^^^^^^^^^^~07/01/2015~
-~01289~^~319~^171.^1^^~1~^~A~^^^^^^^^^^~07/01/2015~
-~01289~^~320~^171.^0^^~1~^~AS~^^^^^^^^^^~07/01/2015~
-~01289~^~321~^0.^0^^~7~^~Z~^^^^^^^^^^~07/01/2015~
-~01289~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~07/01/2015~
-~01289~^~324~^41.^0^^~4~^~NR~^^^^^^^^^^~07/01/2015~
-~01289~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~07/01/2015~
-~01289~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~07/01/2015~
-~01289~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~07/01/2015~
-~01289~^~417~^13.^1^^~1~^~A~^^^^^^^^^^~07/01/2015~
-~01289~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~07/01/2015~
-~01289~^~432~^13.^1^^~1~^~A~^^^^^^^^^^~07/01/2015~
-~01289~^~435~^13.^0^^~4~^~NC~^^^^^^^^^^~07/01/2015~
-~01289~^~601~^5.^3^0.^~1~^~A~^^^1^5.^5.^2^4.^5.^~2, 3~^~07/01/2015~
-~01290~^~208~^62.^0^^~4~^~NC~^^^^^^^^^^~07/01/2015~
-~01290~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~07/01/2015~
-~01290~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~07/01/2015~
-~01290~^~268~^261.^0^^~4~^~NC~^^^^^^^^^^~07/01/2015~
-~01290~^~301~^119.^4^0.^~1~^~A~^^^1^117.^121.^3^116.^121.^~2, 3~^~07/01/2015~
-~01290~^~304~^11.^4^0.^~1~^~A~^^^1^11.^11.^3^10.^11.^~2, 3~^~07/01/2015~
-~01290~^~305~^96.^4^0.^~1~^~A~^^^1^95.^97.^3^94.^97.^~2, 3~^~07/01/2015~
-~01290~^~306~^154.^4^1.^~1~^~A~^^^1^151.^157.^3^149.^158.^~2, 3~^~07/01/2015~
-~01290~^~307~^37.^4^0.^~1~^~A~^^^1^35.^39.^3^34.^39.^~2, 3~^~07/01/2015~
-~01290~^~318~^599.^1^^~1~^~AS~^^^^^^^^^^~07/01/2015~
-~01290~^~319~^178.^1^^~1~^~A~^^^^^^^^^^~07/01/2015~
-~01290~^~320~^178.^1^^~1~^~AS~^^^^^^^^^^~07/01/2015~
-~01290~^~321~^3.^1^^~1~^~A~^^^^^^^^^^~07/01/2015~
-~01290~^~322~^0.^1^^~1~^~A~^^^^^^^^^~1~^~07/01/2015~
-~01290~^~324~^44.^0^^~4~^~NR~^^^^^^^^^^~07/01/2015~
-~01290~^~334~^0.^1^^~1~^~A~^^^^^^^^^~1~^~07/01/2015~
-~01290~^~337~^0.^1^^~1~^~A~^^^^^^^^^~1~^~07/01/2015~
-~01290~^~338~^0.^1^^~1~^~A~^^^^^^^^^~1~^~07/01/2015~
-~01290~^~417~^22.^1^^~1~^~A~^^^^^^^^^^~07/01/2015~
-~01290~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~07/01/2015~
-~01290~^~432~^22.^1^^~1~^~A~^^^^^^^^^^~07/01/2015~
-~01290~^~435~^22.^0^^~4~^~NC~^^^^^^^^^^~07/01/2015~
-~01290~^~601~^5.^3^0.^~1~^~A~^^^1^4.^5.^2^4.^4.^~2, 3~^~07/01/2015~
-~01291~^~208~^107.^0^^~4~^~NC~^^^^^^^^^^~08/01/2015~
-~01291~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2015~
-~01291~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2015~
-~01291~^~268~^448.^0^^~4~^~NC~^^^^^^^^^^~08/01/2015~
-~01291~^~301~^267.^0^^~8~^^^^^^^^^^^~06/01/2015~
-~01291~^~304~^24.^6^0.^~1~^^^^^^^^^^^~06/01/2015~
-~01291~^~305~^203.^37^8.^~1~^^^^^^^^^^^~06/01/2015~
-~01291~^~306~^303.^10^8.^~1~^^^^^^^^^^^~06/01/2015~
-~01291~^~307~^100.^0^^~8~^^^^^^^^^^^~06/01/2015~
-~01291~^~318~^192.^0^^~4~^~NC~^^^^^^^^^^~06/01/2015~
-~01291~^~319~^56.^0^^~4~^~BFFN~^~01079~^^^^^^^^^~06/01/2015~
-~01291~^~320~^56.^0^^~4~^~NC~^^^^^^^^^^~06/01/2015~
-~01291~^~321~^4.^0^^~4~^~BFFN~^~01079~^^^^^^^^^~06/01/2015~
-~01291~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2015~
-~01291~^~324~^160.^0^^~8~^^^^^^^^^^^~06/01/2015~
-~01291~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2015~
-~01291~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2015~
-~01291~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2015~
-~01291~^~417~^8.^1^^~1~^^^^^^^^^^^~06/01/2015~
-~01291~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2015~
-~01291~^~432~^8.^1^^~1~^^^^^^^^^^^~06/01/2015~
-~01291~^~435~^8.^0^^~4~^~NC~^^^^^^^^^^~06/01/2015~
-~01291~^~601~^0.^0^^~8~^^^^^^^^^^^~06/01/2015~
-~01292~^~208~^67.^0^^~4~^~NC~^^^^^^^^^^~06/01/2015~
-~01292~^~262~^1.^1^^~1~^~A~^^^^^^^^^~1~^~06/01/2015~
-~01292~^~263~^22.^1^^~1~^~A~^^^^^^^^^^~06/01/2015~
-~01292~^~268~^282.^0^^~4~^~NC~^^^^^^^^^^~06/01/2015~
-~01292~^~301~^127.^0^^~8~^^^^^^^^^^^~06/01/2015~
-~01292~^~304~^13.^5^0.^~1~^^^^^^^^^^^~06/01/2015~
-~01292~^~305~^101.^5^5.^~1~^^^^^^^^^^^~06/01/2015~
-~01292~^~306~^182.^0^^~8~^^^^^^^^^^^~06/01/2015~
-~01292~^~307~^79.^0^^~8~^~LC~^^^^^^^^^^~07/01/2017~
-~01292~^~318~^227.^0^^~1~^~AS~^^^^^^^^^^~06/01/2015~
-~01292~^~319~^63.^1^^~1~^~A~^^^^^^^^^^~06/01/2015~
-~01292~^~320~^64.^0^^~1~^~AS~^^^^^^^^^^~06/01/2015~
-~01292~^~321~^11.^2^^~1~^~A~^^^1^^^^^^^~06/01/2015~
-~01292~^~322~^0.^2^^~1~^~A~^^^1^^^^^^^~06/01/2015~
-~01292~^~324~^42.^0^^~8~^^^^^^^^^^^~06/01/2015~
-~01292~^~334~^0.^2^^~1~^~A~^^^1^^^^^^^~06/01/2015~
-~01292~^~337~^0.^2^^~1~^~A~^^^1^^^^^^^~06/01/2015~
-~01292~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2015~
-~01292~^~417~^2.^2^^~1~^~A~^^^1^^^^^^^~06/01/2015~
-~01292~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2015~
-~01292~^~432~^2.^2^^~1~^~A~^^^^^^^^^^~06/01/2015~
-~01292~^~435~^2.^0^^~4~^~NC~^^^^^^^^^^~06/01/2015~
-~01292~^~601~^2.^0^^~8~^^^^^^^^^^^~06/01/2015~
-~01293~^~208~^97.^0^^~4~^~NC~^^^^^^^^^^~08/01/2015~
-~01293~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2015~
-~01293~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2015~
-~01293~^~268~^406.^0^^~4~^~NC~^^^^^^^^^^~08/01/2015~
-~01293~^~301~^100.^0^^~8~^^^^^^^^^^^~06/01/2015~
-~01293~^~304~^11.^18^0.^~1~^~A~^^^1^10.^12.^7^10.^10.^~2, 3~^~06/01/2015~
-~01293~^~305~^135.^18^0.^~1~^~A~^^^1^130.^142.^8^133.^135.^~2, 3~^~06/01/2015~
-~01293~^~306~^141.^18^0.^~1~^~A~^^^1^132.^145.^14^140.^142.^~2, 3~^~06/01/2015~
-~01293~^~307~^35.^0^^~8~^^^^^^^^^^^~06/01/2015~
-~01293~^~318~^15.^0^^~4~^~NC~^^^^^^^^^^~06/01/2015~
-~01293~^~319~^1.^3^^~1~^~A~^^^1^0.^2.^^^^~1, 2, 3~^~06/01/2015~
-~01293~^~320~^2.^0^^~4~^~NC~^^^^^^^^^^~06/01/2015~
-~01293~^~321~^7.^0^^~4~^~BFZN~^~01077~^^^^^^^^^~06/01/2015~
-~01293~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2015~
-~01293~^~324~^0.^1^^~1~^~A~^^^^^^^^^~1~^~06/01/2015~
-~01293~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2015~
-~01293~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2015~
-~01293~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2015~
-~01293~^~417~^5.^0^^~4~^~NR~^^^^^^^^^^~06/01/2015~
-~01293~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2015~
-~01293~^~432~^5.^0^^~4~^~BFZN~^~01077~^^^^^^^^^~06/01/2015~
-~01293~^~435~^5.^0^^~4~^~NC~^^^^^^^^^^~06/01/2015~
-~01293~^~601~^13.^0^^~8~^^^^^^^^^^^~06/01/2015~
-~01294~^~208~^106.^0^^~4~^~NC~^^^^^^^^^^~06/01/2015~
-~01294~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2015~
-~01294~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2015~
-~01294~^~268~^441.^0^^~4~^~NC~^^^^^^^^^^~06/01/2015~
-~01294~^~301~^100.^0^^~8~^^^^^^^^^^^~06/01/2015~
-~01294~^~304~^10.^9^0.^~1~^~A~^^^1^9.^10.^6^9.^10.^~2, 3~^~06/01/2015~
-~01294~^~305~^109.^9^0.^~1~^~A~^^^1^106.^113.^6^107.^111.^~2, 3~^~06/01/2015~
-~01294~^~306~^113.^0^^~8~^^^^^^^^^^^~06/01/2015~
-~01294~^~307~^37.^0^^~8~^^^^^^^^^^^~06/01/2015~
-~01294~^~318~^162.^0^^~4~^~NC~^^^^^^^^^^~06/01/2015~
-~01294~^~319~^45.^0^^~4~^~BFZN~^~01077~^^^^^^^^^~06/01/2015~
-~01294~^~320~^46.^0^^~4~^~NC~^^^^^^^^^^~06/01/2015~
-~01294~^~321~^7.^2^^~1~^~A~^^^1^5.^8.^^^^^~06/01/2015~
-~01294~^~322~^0.^2^^~1~^~A~^^^1^0.^0.^^^^~1~^~06/01/2015~
-~01294~^~324~^0.^2^^~1~^~A~^^^1^0.^0.^^^^~1~^~06/01/2015~
-~01294~^~334~^0.^2^^~1~^~A~^^^1^0.^0.^^^^~1~^~06/01/2015~
-~01294~^~337~^0.^2^^~1~^~A~^^^1^0.^0.^^^^~1~^~06/01/2015~
-~01294~^~338~^7.^2^^~1~^~A~^^^1^3.^18.^^^^^~06/01/2015~
-~01294~^~417~^5.^0^^~4~^~BFZN~^~01077~^^^^^^^^^~06/01/2015~
-~01294~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2015~
-~01294~^~432~^5.^0^^~4~^~BFZN~^^^^^^^^^^~06/01/2015~
-~01294~^~435~^5.^0^^~4~^~NC~^^^^^^^^^^~06/01/2015~
-~01294~^~601~^10.^0^^~8~^^^^^^^^^^^~06/01/2015~
-~01295~^~208~^78.^0^^~4~^~NC~^^^^^^^^^^~06/01/2015~
-~01295~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2015~
-~01295~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2015~
-~01295~^~268~^328.^0^^~4~^~NC~^^^^^^^^^^~06/01/2015~
-~01295~^~301~^118.^0^^~8~^^^^^^^^^^^~06/01/2015~
-~01295~^~304~^16.^0^^~1~^^^^^^^^^^^~06/01/2015~
-~01295~^~305~^88.^0^^~8~^^^^^^^^^^^~06/01/2015~
-~01295~^~306~^141.^0^^~8~^^^^^^^^^^^~06/01/2015~
-~01295~^~307~^47.^0^^~8~^^^^^^^^^^^~06/01/2015~
-~01295~^~318~^204.^0^^~4~^~NC~^^^^^^^^^^~06/01/2015~
-~01295~^~319~^61.^0^^~4~^~BFZN~^~01085~^^^^^^^^^~06/01/2015~
-~01295~^~320~^61.^0^^~4~^~NC~^^^^^^^^^^~06/01/2015~
-~01295~^~321~^0.^0^^~4~^~BFZN~^~01085~^^^^^^^^^~06/01/2015~
-~01295~^~322~^0.^0^^~4~^~BFZN~^~01085~^^^^^^^^^~06/01/2015~
-~01295~^~324~^35.^0^^~8~^^^^^^^^^^^~06/01/2015~
-~01295~^~334~^0.^0^^~4~^~BFZN~^~01085~^^^^^^^^^~06/01/2015~
-~01295~^~337~^0.^0^^~4~^~BFZN~^~01085~^^^^^^^^^~06/01/2015~
-~01295~^~338~^0.^0^^~4~^~BFZN~^~01085~^^^^^^^^^~06/01/2015~
-~01295~^~417~^11.^0^^~1~^^^^^^^^^^^~06/01/2015~
-~01295~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2015~
-~01295~^~432~^11.^0^^~1~^^^^^^^^^^^~06/01/2015~
-~01295~^~435~^11.^0^^~4~^~NC~^^^^^^^^^^~06/01/2015~
-~01295~^~601~^3.^0^^~8~^^^^^^^^^^^~06/01/2015~
-~01297~^~208~^95.^0^^~4~^~NC~^^^^^^^^^^~08/01/2015~
-~01297~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2015~
-~01297~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2015~
-~01297~^~268~^398.^0^^~4~^~NC~^^^^^^^^^^~08/01/2015~
-~01297~^~301~^100.^0^^~8~^^^^^^^^^^^~06/01/2015~
-~01297~^~304~^10.^15^0.^~1~^~A~^^^1^9.^11.^10^9.^10.^~2, 3~^~06/01/2015~
-~01297~^~305~^119.^15^0.^~1~^~A~^^^1^110.^129.^8^118.^120.^~2, 3~^~06/01/2015~
-~01297~^~306~^123.^15^1.^~1~^~A~^^^1^108.^136.^9^119.^127.^~2, 3~^~06/01/2015~
-~01297~^~307~^40.^0^^~8~^^^^^^^^^^^~06/01/2015~
-~01297~^~318~^371.^0^^~4~^~NC~^^^^^^^^^^~06/01/2015~
-~01297~^~319~^110.^0^^~4~^~BFNN~^~01082~^^^^^^^^^~06/01/2015~
-~01297~^~320~^110.^0^^~4~^~NC~^^^^^^^^^^~06/01/2015~
-~01297~^~321~^3.^0^^~4~^~BFNN~^~01082~^^^^^^^^^~06/01/2015~
-~01297~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2015~
-~01297~^~324~^35.^2^^~1~^~A~^^^1^34.^37.^1^^^^~06/01/2015~
-~01297~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2015~
-~01297~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2015~
-~01297~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2015~
-~01297~^~417~^9.^0^^~4~^~BFNN~^~01082~^^^^^^^^^~06/01/2015~
-~01297~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2015~
-~01297~^~432~^9.^0^^~4~^~BFNN~^~01082~^^^^^^^^^~06/01/2015~
-~01297~^~435~^9.^0^^~4~^~NC~^^^^^^^^^^~06/01/2015~
-~01297~^~601~^5.^0^^~8~^^^^^^^^^^^~06/01/2015~
-~01298~^~208~^139.^0^^~4~^~NC~^^^^^^^^^^~09/01/2015~
-~01298~^~262~^0.^0^^~4~^~BFFN~^~42187~^^^^^^^^^~06/01/2015~
-~01298~^~263~^0.^0^^~4~^~BFFN~^~42187~^^^^^^^^^~06/01/2015~
-~01298~^~268~^579.^0^^~4~^~NC~^^^^^^^^^^~09/01/2015~
-~01298~^~301~^200.^0^^~8~^^^^^^^^^^^~06/01/2015~
-~01298~^~304~^7.^0^^~4~^~BFFN~^~42187~^^^^^^^^^~06/01/2015~
-~01298~^~305~^62.^0^^~4~^~BFFN~^~42187~^^^^^^^^^~06/01/2015~
-~01298~^~306~^108.^0^^~4~^~BFFN~^~42187~^^^^^^^^^~06/01/2015~
-~01298~^~307~^45.^0^^~8~^^^^^^^^^^^~06/01/2015~
-~01298~^~318~^122.^0^^~4~^~NC~^^^^^^^^^^~06/01/2015~
-~01298~^~319~^34.^0^^~4~^~BFFN~^~42187~^^^^^^^^^~06/01/2015~
-~01298~^~320~^34.^0^^~4~^~NC~^~42187~^^^^^^^^^~06/01/2015~
-~01298~^~321~^6.^0^^~4~^~BFFN~^~42187~^^^^^^^^^~06/01/2015~
-~01298~^~322~^0.^0^^~4~^~BFFN~^~42187~^^^^^^^^^~06/01/2015~
-~01298~^~324~^2.^0^^~4~^~NR~^^^^^^^^^^~06/01/2015~
-~01298~^~334~^0.^0^^~4~^~BFFN~^~42187~^^^^^^^^^~06/01/2015~
-~01298~^~337~^0.^0^^~4~^~BFFN~^~42187~^^^^^^^^^~06/01/2015~
-~01298~^~338~^0.^0^^~4~^~BFFN~^~42187~^^^^^^^^^~06/01/2015~
-~01298~^~417~^3.^0^^~4~^~BFFN~^~42187~^^^^^^^^^~06/01/2015~
-~01298~^~431~^0.^0^^~4~^~BFFN~^~42187~^^^^^^^^^~06/01/2015~
-~01298~^~432~^3.^0^^~4~^~BFFN~^~42187~^^^^^^^^^~06/01/2015~
-~01298~^~435~^3.^0^^~4~^~NC~^^^^^^^^^^~06/01/2015~
-~01298~^~601~^45.^0^^~8~^^^^^^^^^^^~06/01/2015~
-~01300~^~208~^303.^0^^~4~^~NC~^^^^^^^^^^~06/01/2015~
-~01300~^~262~^4.^0^^~4~^~BFFN~^~43506~^^^^^^^^^~06/01/2015~
-~01300~^~263~^41.^0^^~4~^~BFFN~^~43506~^^^^^^^^^~06/01/2015~
-~01300~^~268~^1266.^0^^~4~^~NC~^^^^^^^^^^~06/01/2015~
-~01300~^~301~^90.^0^^~8~^^^^^^^^^^^~06/01/2015~
-~01300~^~304~^37.^0^^~4~^~BFFN~^~43506~^^^^^^^^^~06/01/2015~
-~01300~^~305~^146.^0^^~4~^~BFFN~^~43506~^^^^^^^^^~06/01/2015~
-~01300~^~306~^304.^0^^~4~^~BFFN~^~43506~^^^^^^^^^~06/01/2015~
-~01300~^~307~^56.^0^^~8~^^^^^^^^^^^~06/01/2015~
-~01300~^~318~^281.^0^^~4~^~NC~^^^^^^^^^^~06/01/2015~
-~01300~^~319~^56.^0^^~4~^~BFFN~^~43506~^^^^^^^^^~06/01/2015~
-~01300~^~320~^61.^0^^~4~^~NC~^~43506~^^^^^^^^^~06/01/2015~
-~01300~^~321~^56.^0^^~4~^~BFFN~^~43506~^^^^^^^^^~06/01/2015~
-~01300~^~322~^0.^0^^~4~^~BFFN~^~43506~^^^^^^^^^~06/01/2015~
-~01300~^~324~^9.^0^^~4~^~NR~^^^^^^^^^^~06/01/2015~
-~01300~^~334~^0.^0^^~4~^~BFFN~^~43506~^^^^^^^^^~06/01/2015~
-~01300~^~337~^0.^0^^~4~^~BFFN~^~43506~^^^^^^^^^~06/01/2015~
-~01300~^~338~^0.^0^^~4~^~BFFN~^~43506~^^^^^^^^^~06/01/2015~
-~01300~^~417~^14.^0^^~4~^~BFFN~^~43506~^^^^^^^^^~06/01/2015~
-~01300~^~431~^0.^0^^~4~^~BFFN~^~43506~^^^^^^^^^~06/01/2015~
-~01300~^~432~^14.^0^^~4~^~BFFN~^~43506~^^^^^^^^^~06/01/2015~
-~01300~^~435~^14.^0^^~4~^~NC~^^^^^^^^^^~06/01/2015~
-~01300~^~601~^56.^0^^~8~^^^^^^^^^^^~06/01/2015~
-~01301~^~208~^254.^0^^~4~^~NC~^^^^^^^^^^~06/01/2015~
-~01301~^~262~^0.^0^^~4~^~RA~^^^^^^^^^^~06/01/2015~
-~01301~^~263~^2.^0^^~4~^~RA~^^^^^^^^^^~06/01/2015~
-~01301~^~268~^1061.^0^^~4~^~NC~^^^^^^^^^^~06/01/2015~
-~01301~^~301~^60.^0^^~8~^^^^^^^^^^^~06/01/2015~
-~01301~^~304~^20.^0^^~4~^~RA~^^^^^^^^^^~06/01/2015~
-~01301~^~305~^128.^0^^~4~^~RA~^^^^^^^^^^~06/01/2015~
-~01301~^~306~^204.^0^^~4~^~RA~^^^^^^^^^^~06/01/2015~
-~01301~^~307~^115.^0^^~8~^^^^^^^^^^^~06/01/2015~
-~01301~^~318~^410.^0^^~4~^~NC~^^^^^^^^^^~06/01/2015~
-~01301~^~319~^116.^0^^~4~^~RA~^^^^^^^^^^~06/01/2015~
-~01301~^~320~^117.^0^^~4~^~NC~^^^^^^^^^^~06/01/2015~
-~01301~^~321~^14.^0^^~4~^~RA~^^^^^^^^^^~06/01/2015~
-~01301~^~322~^0.^0^^~4~^~RA~^^^^^^^^^^~06/01/2015~
-~01301~^~324~^4.^0^^~4~^~RA~^^^^^^^^^^~06/01/2015~
-~01301~^~334~^0.^0^^~4~^~RA~^^^^^^^^^^~06/01/2015~
-~01301~^~337~^0.^0^^~4~^~RA~^^^^^^^^^^~06/01/2015~
-~01301~^~338~^2.^0^^~4~^~RA~^^^^^^^^^^~06/01/2015~
-~01301~^~417~^19.^0^^~4~^~RA~^^^^^^^^^^~06/01/2015~
-~01301~^~431~^14.^0^^~4~^~RA~^^^^^^^^^^~06/01/2015~
-~01301~^~432~^5.^0^^~4~^~RA~^^^^^^^^^^~06/01/2015~
-~01301~^~435~^29.^0^^~4~^~NC~^^^^^^^^^^~06/01/2015~
-~01301~^~601~^15.^0^^~8~^^^^^^^^^^^~06/01/2015~
-~01302~^~208~^165.^0^^~4~^~NC~^^^^^^^^^^~06/01/2015~
-~01302~^~262~^0.^0^^~4~^~RA~^^^^^^^^^^~06/01/2015~
-~01302~^~263~^0.^0^^~4~^~RA~^^^^^^^^^^~06/01/2015~
-~01302~^~268~^690.^0^^~4~^~NC~^^^^^^^^^^~06/01/2015~
-~01302~^~301~^62.^0^^~8~^^^^^^^^^^^~06/01/2015~
-~01302~^~304~^12.^0^^~4~^~RA~^^^^^^^^^^~06/01/2015~
-~01302~^~305~^84.^0^^~4~^~RA~^^^^^^^^^^~06/01/2015~
-~01302~^~306~^174.^0^^~4~^~RA~^^^^^^^^^^~06/01/2015~
-~01302~^~307~^46.^0^^~8~^^^^^^^^^^^~06/01/2015~
-~01302~^~318~^324.^0^^~4~^~NC~^^^^^^^^^^~06/01/2015~
-~01302~^~319~^92.^0^^~4~^~RA~^^^^^^^^^^~06/01/2015~
-~01302~^~320~^93.^0^^~4~^~NC~^^^^^^^^^^~06/01/2015~
-~01302~^~321~^10.^0^^~4~^~RA~^^^^^^^^^^~06/01/2015~
-~01302~^~322~^0.^0^^~4~^~RA~^^^^^^^^^^~06/01/2015~
-~01302~^~324~^2.^0^^~4~^~RA~^^^^^^^^^^~06/01/2015~
-~01302~^~334~^2.^0^^~4~^~RA~^^^^^^^^^^~06/01/2015~
-~01302~^~337~^0.^0^^~4~^~RA~^^^^^^^^^^~06/01/2015~
-~01302~^~338~^2.^0^^~4~^~RA~^^^^^^^^^^~06/01/2015~
-~01302~^~417~^6.^0^^~4~^~RA~^^^^^^^^^^~06/01/2015~
-~01302~^~431~^0.^0^^~4~^~RA~^^^^^^^^^^~06/01/2015~
-~01302~^~432~^6.^0^^~4~^~RA~^^^^^^^^^^~06/01/2015~
-~01302~^~435~^6.^0^^~4~^~NC~^^^^^^^^^^~06/01/2015~
-~01302~^~601~^8.^0^^~8~^^^^^^^^^^^~06/01/2015~
-~01303~^~208~^72.^0^^~4~^~NC~^^^^^^^^^^~07/01/2015~
-~01303~^~262~^0.^0^^~4~^~BFFN~^~01049~^^^^^^^^^~07/01/2015~
-~01303~^~263~^0.^0^^~4~^~BFFN~^~01049~^^^^^^^^^~07/01/2015~
-~01303~^~268~^300.^0^^~4~^~NC~^^^^^^^^^^~07/01/2015~
-~01303~^~301~^133.^0^^~8~^^^^^^^^^^^~07/01/2015~
-~01303~^~304~^10.^0^^~4~^~BFZN~^~01049~^^^^^^^^^~07/01/2015~
-~01303~^~305~^95.^0^^~4~^~BFZN~^~01049~^^^^^^^^^~07/01/2015~
-~01303~^~306~^132.^0^^~4~^~BFZN~^~01049~^^^^^^^^^~07/01/2015~
-~01303~^~307~^50.^0^^~8~^^^^^^^^^^^~07/01/2015~
-~01303~^~318~^170.^0^^~4~^~NC~^^^^^^^^^^~07/01/2015~
-~01303~^~319~^46.^0^^~4~^~BFFN~^~01049~^^^^^^^^^~07/01/2015~
-~01303~^~320~^47.^0^^~4~^~NC~^^^^^^^^^^~07/01/2015~
-~01303~^~321~^11.^0^^~4~^~BFFN~^~01049~^^^^^^^^^~07/01/2015~
-~01303~^~322~^0.^0^^~4~^~BFFN~^~01049~^^^^^^^^^~07/01/2015~
-~01303~^~324~^1.^0^^~4~^~BFFN~^~01049~^^^^^^^^^~07/01/2015~
-~01303~^~334~^0.^0^^~4~^~BFFN~^~01049~^^^^^^^^^~07/01/2015~
-~01303~^~337~^0.^0^^~4~^~BFFN~^~01049~^^^^^^^^^~07/01/2015~
-~01303~^~338~^0.^0^^~4~^~BFFN~^~01049~^^^^^^^^^~07/01/2015~
-~01303~^~417~^3.^0^^~4~^~BFZN~^~01049~^^^^^^^^^~07/01/2015~
-~01303~^~431~^0.^0^^~4~^~BFZN~^~01049~^^^^^^^^^~07/01/2015~
-~01303~^~432~^3.^0^^~4~^~BFZN~^~01049~^^^^^^^^^~07/01/2015~
-~01303~^~435~^3.^0^^~4~^~NC~^^^^^^^^^^~07/01/2015~
-~01303~^~601~^17.^0^^~8~^^^^^^^^^^^~07/01/2015~
-~01304~^~208~^94.^0^^~4~^~NC~^^^^^^^^^^~08/01/2016~
-~01304~^~268~^392.^0^^~4~^~NC~^^^^^^^^^^~08/01/2016~
-~01304~^~301~^92.^1^^~1~^~A~^^^^^^^^^^~08/01/2016~
-~01304~^~307~^33.^1^^~1~^~A~^^^^^^^^^^~08/01/2016~
-~01304~^~318~^70.^0^^~1~^~AS~^^^^^^^^^^~08/01/2016~
-~01304~^~319~^21.^1^^~1~^~A~^^^^^^^^^^~08/01/2016~
-~01304~^~320~^21.^0^^~1~^~AS~^^^^^^^^^^~08/01/2016~
-~01304~^~321~^0.^1^^~1~^~A~^^^^^^^^^~1~^~08/01/2016~
-~01304~^~601~^9.^1^^~1~^~A~^^^^^^^^^^~08/01/2016~
-~01305~^~208~^57.^1^^~8~^^^^1^57.^57.^^^^^~02/01/2016~
-~01305~^~262~^0.^4^0.^~1~^~A~^^^1^0.^0.^^^^~1, 2, 3~^~07/01/2015~
-~01305~^~263~^6.^4^0.^~1~^~A~^^^1^5.^6.^3^4.^6.^~2, 3~^~07/01/2015~
-~01305~^~268~^237.^0^^~8~^^^^^^^^^^^~02/01/2016~
-~01305~^~301~^122.^9^1.^~1~^~A~^^^1^116.^129.^8^118.^125.^~2, 3~^~07/01/2015~
-~01305~^~304~^13.^9^0.^~1~^~A~^^^1^12.^14.^8^12.^13.^~2, 3~^~07/01/2015~
-~01305~^~305~^98.^9^1.^~1~^~A~^^^1^93.^106.^8^94.^102.^~2, 3~^~07/01/2015~
-~01305~^~306~^168.^9^3.^~1~^~A~^^^1^156.^187.^8^159.^175.^~2, 3~^~07/01/2015~
-~01305~^~307~^66.^9^1.^~1~^~A~^^^1^61.^77.^8^61.^70.^~2, 3~^~07/01/2015~
-~01305~^~318~^321.^0^^~4~^~NC~^^^^^^^^^^~02/01/2016~
-~01305~^~319~^96.^2^^~1~^~A~^^^1^76.^115.^1^^^^~07/01/2015~
-~01305~^~320~^96.^0^^~4~^~NC~^^^^^^^^^^~02/01/2016~
-~01305~^~321~^2.^0^^~4~^~BFZN~^~01104~^^^^^^^^^~07/01/2015~
-~01305~^~322~^0.^0^^~4~^~BFZN~^~01104~^^^^^^^^^~07/01/2015~
-~01305~^~324~^60.^0^^~4~^~NR~^^^^^^^^^^~07/01/2015~
-~01305~^~334~^0.^0^^~4~^~BFZN~^~01104~^^^^^^^^^~07/01/2015~
-~01305~^~337~^0.^0^^~4~^~BFZN~^~01104~^^^^^^^^^~07/01/2015~
-~01305~^~338~^0.^0^^~4~^~BFZN~^~01104~^^^^^^^^^~07/01/2015~
-~01305~^~417~^5.^2^^~8~^^^^1^3.^6.^1^^^^~07/01/2015~
-~01305~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~07/01/2015~
-~01305~^~432~^5.^0^^~4~^~NR~^^^^^^^^^^~02/01/2016~
-~01305~^~435~^5.^0^^~4~^~NC~^^^^^^^^^^~07/01/2015~
-~01305~^~601~^5.^6^0.^~1~^~A~^^^1^5.^5.^5^4.^5.^~2, 3~^~07/01/2015~
-~01306~^~208~^265.^0^^~4~^~NC~^^^^^^^^^^~07/01/2015~
-~01306~^~262~^3.^0^^~4~^~FLC~^^^^^^^^^^~07/01/2015~
-~01306~^~263~^118.^0^^~4~^~FLC~^^^^^^^^^^~07/01/2015~
-~01306~^~268~^1110.^0^^~4~^~NC~^^^^^^^^^^~07/01/2015~
-~01306~^~301~^133.^0^^~8~^^^^^^^^^^^~07/01/2015~
-~01306~^~304~^65.^0^^~4~^~FLC~^^^^^^^^^^~07/01/2015~
-~01306~^~305~^143.^0^^~4~^~FLC~^^^^^^^^^^~07/01/2015~
-~01306~^~306~^213.^0^^~8~^^^^^^^^^^^~07/01/2015~
-~01306~^~307~^113.^0^^~8~^^^^^^^^^^^~07/01/2015~
-~01306~^~318~^89.^0^^~4~^~NC~^^^^^^^^^^~07/01/2015~
-~01306~^~319~^26.^0^^~4~^~FLC~^^^^^^^^^^~07/01/2015~
-~01306~^~320~^26.^0^^~4~^~NC~^^^^^^^^^^~07/01/2015~
-~01306~^~321~^1.^0^^~4~^~FLC~^^^^^^^^^^~07/01/2015~
-~01306~^~322~^0.^0^^~4~^~FLC~^^^^^^^^^^~07/01/2015~
-~01306~^~324~^8.^0^^~4~^~FLC~^^^^^^^^^^~07/01/2015~
-~01306~^~334~^0.^0^^~4~^~FLC~^^^^^^^^^^~07/01/2015~
-~01306~^~337~^0.^0^^~4~^~FLC~^^^^^^^^^^~07/01/2015~
-~01306~^~338~^6.^0^^~4~^~FLC~^^^^^^^^^^~07/01/2015~
-~01306~^~417~^17.^0^^~4~^~NR~^^^^^^^^^^~08/01/2015~
-~01306~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~08/01/2015~
-~01306~^~432~^17.^0^^~4~^~FLC~^^^^^^^^^^~07/01/2015~
-~01306~^~435~^17.^0^^~4~^~NC~^^^^^^^^^^~08/01/2015~
-~01306~^~601~^7.^0^^~8~^^^^^^^^^^^~07/01/2015~
-~01307~^~208~^88.^0^^~4~^~NC~^^^^^^^^^^~08/01/2016~
-~01307~^~268~^369.^0^^~4~^~NC~^^^^^^^^^^~08/01/2016~
-~01307~^~301~^88.^1^^~1~^~A~^^^^^^^^^^~08/01/2016~
-~01307~^~307~^32.^1^^~1~^~A~^^^^^^^^^^~08/01/2016~
-~01307~^~318~^51.^0^^~1~^~AS~^^^^^^^^^^~08/01/2016~
-~01307~^~319~^15.^1^^~1~^~A~^^^^^^^^^^~08/01/2016~
-~01307~^~320~^15.^0^^~1~^~AS~^^^^^^^^^^~08/01/2016~
-~01307~^~321~^0.^1^^~1~^~A~^^^^^^^^^~1~^~08/01/2016~
-~01307~^~601~^9.^1^^~1~^~A~^^^^^^^^^^~08/01/2016~
-~01308~^~208~^82.^0^^~4~^~NC~^^^^^^^^^^~10/01/2016~
-~01308~^~268~^343.^0^^~4~^~NC~^^^^^^^^^^~10/01/2016~
-~01308~^~301~^111.^1^^~1~^~A~^^^^^^^^^^~08/01/2016~
-~01308~^~307~^35.^1^^~1~^~A~^^^^^^^^^^~08/01/2016~
-~01308~^~318~^194.^0^^~1~^~AS~^^^^^^^^^^~08/01/2016~
-~01308~^~319~^58.^1^^~1~^~A~^^^^^^^^^^~08/01/2016~
-~01308~^~320~^58.^0^^~1~^~AS~^^^^^^^^^^~08/01/2016~
-~01308~^~321~^0.^1^^~1~^~A~^^^^^^^^^~1~^~08/01/2016~
-~01308~^~601~^15.^1^^~1~^~A~^^^^^^^^^^~08/01/2016~
-~01312~^~208~^78.^0^^~4~^~NC~^^^^^^^^^^~08/01/2016~
-~01312~^~268~^328.^0^^~4~^~NC~^^^^^^^^^^~08/01/2016~
-~01312~^~301~^96.^1^^~1~^~A~^^^^^^^^^^~08/01/2016~
-~01312~^~307~^44.^1^^~1~^~A~^^^^^^^^^^~08/01/2016~
-~01312~^~318~^0.^0^^~1~^~AS~^^^^^^^^^^~08/01/2016~
-~01312~^~319~^0.^1^^~1~^~A~^^^^^^^^^~1~^~08/01/2016~
-~01312~^~320~^0.^0^^~1~^~AS~^^^^^^^^^^~08/01/2016~
-~01312~^~321~^0.^1^^~1~^~A~^^^^^^^^^~1~^~08/01/2016~
-~01312~^~601~^2.^1^^~1~^~A~^^^^^^^^^^~08/01/2016~
-~01313~^~208~^80.^0^^~4~^~NC~^^^^^^^^^^~08/01/2016~
-~01313~^~268~^333.^0^^~4~^~NC~^^^^^^^^^^~08/01/2016~
-~01313~^~301~^89.^1^^~1~^~A~^^^^^^^^^^~08/01/2016~
-~01313~^~307~^32.^1^^~1~^~A~^^^^^^^^^^~08/01/2016~
-~01313~^~318~^206.^0^^~1~^~AS~^^^^^^^^^^~08/01/2016~
-~01313~^~319~^53.^1^^~1~^~A~^^^^^^^^^^~08/01/2016~
-~01313~^~320~^54.^0^^~1~^~AS~^^^^^^^^^^~08/01/2016~
-~01313~^~321~^18.^1^^~1~^~A~^^^^^^^^^^~08/01/2016~
-~01313~^~601~^5.^1^^~1~^~A~^^^^^^^^^^~08/01/2016~
-~01314~^~208~^54.^0^^~4~^~NC~^^^^^^^^^^~08/01/2016~
-~01314~^~268~^226.^0^^~4~^~NC~^^^^^^^^^^~08/01/2016~
-~01314~^~301~^112.^2^^~1~^~A~^^^1^111.^113.^1^^^^~08/01/2016~
-~01314~^~307~^37.^2^^~1~^~A~^^^1^37.^37.^^^^^~08/01/2016~
-~01314~^~318~^0.^0^^~1~^~AS~^^^^^^^^^^~08/01/2016~
-~01314~^~319~^0.^2^^~1~^~A~^^^1^0.^0.^^^^~1~^~08/01/2016~
-~01314~^~320~^0.^0^^~1~^~AS~^^^^^^^^^^~08/01/2016~
-~01314~^~321~^0.^2^^~1~^~A~^^^1^0.^0.^^^^~1~^~08/01/2016~
-~01314~^~601~^6.^2^^~1~^~A~^^^1^5.^7.^1^^^^~08/01/2016~
-~01316~^~208~^81.^0^^~4~^~NC~^^^^^^^^^^~08/01/2016~
-~01316~^~268~^337.^0^^~4~^~NC~^^^^^^^^^^~08/01/2016~
-~01316~^~301~^98.^1^^~1~^~A~^^^^^^^^^^~08/01/2016~
-~01316~^~307~^30.^1^^~1~^~A~^^^^^^^^^^~08/01/2016~
-~01316~^~318~^0.^0^^~1~^~AS~^^^^^^^^^^~08/01/2016~
-~01316~^~319~^0.^1^^~1~^~A~^^^^^^^^^~1~^~08/01/2016~
-~01316~^~320~^0.^0^^~1~^~AS~^^^^^^^^^^~08/01/2016~
-~01316~^~321~^0.^1^^~1~^~A~^^^^^^^^^~1~^~08/01/2016~
-~01316~^~601~^4.^1^^~1~^~A~^^^^^^^^^^~08/01/2016~
-~01319~^~208~^80.^1^^~1~^~A~^^^^^^^^^^~10/01/2016~
-~01319~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~10/01/2016~
-~01319~^~268~^335.^0^^~1~^~A~^^^^^^^^^^~10/01/2016~
-~01319~^~301~^93.^1^^~1~^~A~^^^^^^^^^^~10/01/2016~
-~01319~^~306~^128.^1^^~1~^~A~^^^^^^^^^^~10/01/2016~
-~01319~^~307~^31.^1^^~1~^~A~^^^^^^^^^^~10/01/2016~
-~01319~^~318~^62.^0^^~1~^~AS~^^^^^^^^^^~10/01/2016~
-~01319~^~319~^0.^1^^~1~^~A~^^^^^^^^^~1~^~10/01/2016~
-~01319~^~320~^3.^0^^~1~^~AS~^^^^^^^^^^~10/01/2016~
-~01319~^~321~^37.^1^^~1~^~A~^^^^^^^^^~1~^~10/01/2016~
-~01319~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~10/01/2016~
-~01319~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~10/01/2016~
-~01319~^~601~^4.^1^^~1~^~A~^^^^^^^^^^~10/01/2016~
-~01320~^~208~^82.^1^^~1~^~A~^^^^^^^^^^~10/01/2016~
-~01320~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~10/01/2016~
-~01320~^~268~^343.^0^^~1~^~A~^^^^^^^^^^~10/01/2016~
-~01320~^~301~^90.^1^^~1~^~A~^^^^^^^^^^~10/01/2016~
-~01320~^~306~^128.^1^^~1~^~A~^^^^^^^^^^~10/01/2016~
-~01320~^~307~^32.^1^^~1~^~A~^^^^^^^^^^~10/01/2016~
-~01320~^~318~^62.^0^^~1~^~AS~^^^^^^^^^^~10/01/2016~
-~01320~^~319~^0.^1^^~1~^~A~^^^^^^^^^~1~^~10/01/2016~
-~01320~^~320~^3.^0^^~1~^~AS~^^^^^^^^^^~10/01/2016~
-~01320~^~321~^37.^1^^~1~^~A~^^^^^^^^^~1~^~10/01/2016~
-~01320~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~10/01/2016~
-~01320~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~11/01/2016~
-~01320~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~10/01/2016~
-~01320~^~601~^4.^1^^~1~^~A~^^^^^^^^^^~10/01/2016~
-~01321~^~208~^79.^1^^~1~^~A~^^^^^^^^^^~10/01/2016~
-~01321~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~10/01/2016~
-~01321~^~268~^331.^0^^~1~^~A~^^^^^^^^^^~10/01/2016~
-~01321~^~301~^93.^1^^~1~^~A~^^^^^^^^^^~10/01/2016~
-~01321~^~304~^10.^0^^~4~^~BFZN~^^^^^^^^^^~10/01/2016~
-~01321~^~305~^112.^0^^~4~^~BFZN~^^^^^^^^^^~10/01/2016~
-~01321~^~306~^132.^1^^~1~^~A~^^^^^^^^^^~10/01/2016~
-~01321~^~307~^31.^1^^~1~^~A~^^^^^^^^^^~10/01/2016~
-~01321~^~318~^62.^0^^~1~^~AS~^^^^^^^^^^~10/01/2016~
-~01321~^~319~^0.^1^^~1~^~A~^^^^^^^^^~1~^~10/01/2016~
-~01321~^~320~^3.^0^^~1~^~AS~^^^^^^^^^^~10/01/2016~
-~01321~^~321~^37.^1^^~1~^~A~^^^^^^^^^~1~^~10/01/2016~
-~01321~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~10/01/2016~
-~01321~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~10/01/2016~
-~01321~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~10/01/2016~
-~01321~^~601~^4.^1^^~1~^~A~^^^^^^^^^^~10/01/2016~
-~01322~^~208~^95.^0^^~4~^~NC~^^^^^^^^^^~11/01/2016~
-~01322~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~10/01/2016~
-~01322~^~268~^398.^0^^~4~^~NC~^^^^^^^^^^~11/01/2016~
-~01322~^~301~^94.^1^^~1~^~A~^^^^^^^^^^~10/01/2016~
-~01322~^~306~^0.^1^^~1~^~A~^^^^^^^^^^~10/01/2016~
-~01322~^~307~^0.^1^^~1~^~A~^^^^^^^^^^~10/01/2016~
-~01322~^~318~^62.^0^^~1~^~AS~^^^^^^^^^^~10/01/2016~
-~01322~^~319~^0.^1^^~1~^~A~^^^^^^^^^~1~^~10/01/2016~
-~01322~^~320~^3.^0^^~1~^~AS~^^^^^^^^^^~10/01/2016~
-~01322~^~321~^37.^1^^~1~^~A~^^^^^^^^^~1~^~10/01/2016~
-~01322~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~10/01/2016~
-~01322~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~10/01/2016~
-~01322~^~601~^4.^1^^~1~^~A~^^^^^^^^^^~10/01/2016~
-~01323~^~208~^900.^0^^~8~^~LC~^^^^^^^^^^~12/01/2016~
-~01323~^~268~^3766.^0^^~8~^~LC~^^^^^^^^^^~12/01/2016~
-~01323~^~301~^0.^0^^~8~^~LC~^^^^^^^^^^~12/01/2016~
-~01323~^~307~^0.^0^^~8~^~LC~^^^^^^^^^^~12/01/2016~
-~01323~^~318~^4000.^0^^~8~^~LC~^^^^^^^^^^~12/01/2016~
-~01323~^~601~^300.^0^^~8~^~LC~^^^^^^^^^^~12/01/2016~
-~02001~^~208~^263.^0^^~4~^~NC~^^^^^^^^^^~01/01/1977~
-~02001~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2001~
-~02001~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2001~
-~02001~^~268~^1099.^0^^~4~^^^^^^^^^^^~06/01/2005~
-~02001~^~301~^661.^7^76.^~1~^^^^^^^^^^^~01/01/1977~
-~02001~^~304~^135.^6^12.^~1~^^^^^^^^^^^~01/01/1977~
-~02001~^~305~^113.^4^6.^~1~^^^^^^^^^^^~01/01/1977~
-~02001~^~306~^1044.^8^67.^~1~^^^^^^^^^^^~01/01/1977~
-~02001~^~307~^77.^9^7.^~1~^^^^^^^^^^^~01/01/1977~
-~02001~^~318~^540.^1^^~1~^^^^^^^^^^^~01/01/1977~
-~02001~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2002~
-~02001~^~320~^27.^1^^~1~^^^^^^^^^^^~11/01/2001~
-~02001~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~
-~02001~^~417~^36.^0^^~4~^^^^^^^^^^^~04/01/1985~
-~02001~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~
-~02001~^~432~^36.^0^^~4~^^^^^^^^^^^~11/01/2001~
-~02001~^~435~^36.^0^^~4~^~NC~^^^^^^^^^^~06/01/2005~
-~02001~^~601~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/1977~
-~02001~^~636~^61.^0^^~1~^^^^^^^^^^^~01/01/1977~
-~02002~^~208~^337.^0^^~4~^~NC~^^^^^^^^^^~01/01/1977~
-~02002~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~11/01/2001~
-~02002~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~11/01/2001~
-~02002~^~268~^1411.^0^^~4~^^^^^^^^^^^~06/01/2005~
-~02002~^~301~^646.^5^38.^~1~^^^^^^^^^^^~01/01/1977~
-~02002~^~304~^170.^1^^~1~^^^^^^^^^^^~01/01/1977~
-~02002~^~305~^440.^1^^~1~^^^^^^^^^^^~01/01/1977~
-~02002~^~306~^1441.^5^61.^~1~^^^^^^^^^^^~01/01/1977~
-~02002~^~307~^16.^6^4.^~1~^^^^^^^^^^^~01/01/1977~
-~02002~^~318~^311.^0^^~4~^^^^^^^^^^^~01/01/1977~
-~02002~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2002~
-~02002~^~320~^16.^0^^~4~^~NC~^^^^^^^^^^~11/01/2001~
-~02002~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~
-~02002~^~417~^10.^0^^~4~^^^^^^^^^^^~01/01/1977~
-~02002~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~
-~02002~^~432~^10.^0^^~4~^^^^^^^^^^^~11/01/2001~
-~02002~^~435~^10.^0^^~4~^~NC~^^^^^^^^^^~07/01/2006~
-~02002~^~601~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/1977~
-~02003~^~208~^233.^0^^~4~^~NC~^^^^^^^^^^~06/01/2010~
-~02003~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2002~
-~02003~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2002~
-~02003~^~268~^976.^0^^~4~^~NC~^^^^^^^^^^~06/01/2010~
-~02003~^~301~^2240.^1^^~1~^~A~^^^^^^^^^^~06/01/2010~
-~02003~^~304~^711.^1^^~1~^~A~^^^^^^^^^^~06/01/2010~
-~02003~^~305~^274.^1^^~1~^~A~^^^^^^^^^^~06/01/2010~
-~02003~^~306~^2630.^1^^~1~^~A~^^^^^^^^^^~06/01/2010~
-~02003~^~307~^76.^1^^~1~^~A~^^^^^^^^^^~06/01/2010~
-~02003~^~318~^744.^1^^~1~^~A~^^^^^^^^^^~06/01/2010~
-~02003~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2002~
-~02003~^~320~^37.^1^^~1~^~A~^^^^^^^^^^~06/01/2010~
-~02003~^~321~^378.^1^^~1~^~A~^^^^^^^^^^~06/01/2010~
-~02003~^~322~^113.^1^^~1~^~A~^^^^^^^^^^~06/01/2010~
-~02003~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~
-~02003~^~334~^24.^1^^~1~^~A~^^^^^^^^^^~06/01/2010~
-~02003~^~337~^393.^1^^~1~^~A~^^^^^^^^^^~02/01/2003~
-~02003~^~338~^1150.^1^^~1~^~A~^^^^^^^^^^~02/01/2003~
-~02003~^~417~^310.^1^^~1~^~A~^^^^^^^^^^~06/01/2010~
-~02003~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~
-~02003~^~432~^310.^1^^~1~^~A~^^^^^^^^^^~06/01/2010~
-~02003~^~435~^310.^0^^~4~^~NC~^^^^^^^^^^~06/01/2010~
-~02003~^~601~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/1977~
-~02003~^~636~^106.^0^^~1~^^^^^^^^^^^~01/01/1977~
-~02004~^~208~^313.^0^^~4~^~NC~^^^^^^^^^^~01/01/1977~
-~02004~^~268~^1312.^0^^~4~^^^^^^^^^^^
-~02004~^~301~^834.^4^168.^~1~^^^^^^^^^^^~01/01/1977~
-~02004~^~304~^120.^3^20.^~1~^^^^^^^^^^^~01/01/1977~
-~02004~^~305~^113.^3^8.^~1~^^^^^^^^^^^~01/01/1977~
-~02004~^~306~^529.^5^60.^~1~^^^^^^^^^^^~01/01/1977~
-~02004~^~307~^23.^4^1.^~1~^^^^^^^^^^^~01/01/1977~
-~02004~^~318~^6185.^1^^~1~^^^^^^^^^^^~01/01/1977~
-~02004~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2002~
-~02004~^~320~^309.^1^^~1~^^^^^^^^^^^~11/01/2001~
-~02004~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~
-~02004~^~417~^180.^0^^~4~^^^^^^^^^^^~12/01/1988~
-~02004~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~
-~02004~^~432~^180.^0^^~4~^^^^^^^^^^^~11/01/2001~
-~02004~^~435~^180.^0^^~4~^~NC~^^^^^^^^^^~11/01/2001~
-~02004~^~601~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/1977~
-~02005~^~208~^333.^0^^~4~^~NC~^^^^^^^^^^~01/01/1977~
-~02005~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~11/01/2001~
-~02005~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~11/01/2001~
-~02005~^~268~^1393.^0^^~4~^^^^^^^^^^^~02/01/2007~
-~02005~^~301~^689.^4^46.^~1~^^^^^^^^^^^~01/01/1977~
-~02005~^~304~^258.^2^^~1~^^^^^^^^^^^~02/01/2002~
-~02005~^~305~^568.^2^^~1~^^^^^^^^^^^~02/01/2002~
-~02005~^~306~^1351.^7^60.^~1~^^^^^^^^^^^~01/01/1977~
-~02005~^~307~^17.^7^2.^~1~^^^^^^^^^^^~01/01/1977~
-~02005~^~318~^363.^1^^~1~^^^^^^^^^^^~01/01/1977~
-~02005~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2002~
-~02005~^~320~^18.^0^^~4~^~NC~^^^^^^^^^^~06/01/2010~
-~02005~^~321~^206.^0^^~4~^~BNA~^~02030~^^^^^^^^^~06/01/2010~
-~02005~^~322~^8.^0^^~4~^~BNA~^~02030~^^^^^^^^^~06/01/2010~
-~02005~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~
-~02005~^~334~^16.^0^^~4~^~BNA~^~02030~^^^^^^^^^~06/01/2010~
-~02005~^~337~^20.^0^^~4~^~BFZN~^~02030~^^^^^^^^^~06/01/2010~
-~02005~^~338~^454.^0^^~4~^~BFZN~^~02030~^^^^^^^^^~06/01/2010~
-~02005~^~417~^10.^0^^~4~^^^^^^^^^^^~04/01/1985~
-~02005~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~
-~02005~^~432~^10.^0^^~4~^^^^^^^^^^^~06/01/2010~
-~02005~^~435~^10.^0^^~4~^~NC~^^^^^^^^^^~06/01/2010~
-~02005~^~601~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2002~
-~02005~^~636~^76.^0^^~1~^^^^^^^^^^^~01/01/1977~
-~02006~^~208~^311.^0^^~4~^~NC~^^^^^^^^^^~01/01/1977~
-~02006~^~268~^1303.^0^^~4~^^^^^^^^^^^~06/01/2005~
-~02006~^~301~^383.^7^78.^~1~^^^^^^^^^^^~01/01/1977~
-~02006~^~304~^229.^5^56.^~1~^^^^^^^^^^^~01/01/1977~
-~02006~^~305~^178.^6^17.^~1~^^^^^^^^^^^~01/01/1977~
-~02006~^~306~^1119.^21^198.^~1~^^^^^^^^^^^~01/01/1977~
-~02006~^~307~^18.^3^3.^~1~^^^^^^^^^^^~01/01/1977~
-~02006~^~318~^0.^1^^~1~^^^^^^^^^^^~01/01/1977~
-~02006~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2002~
-~02006~^~320~^0.^1^^~1~^^^^^^^^^^^~01/01/2002~
-~02006~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~
-~02006~^~601~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/1977~
-~02006~^~636~^46.^0^^~1~^^^^^^^^^^^~01/01/1977~
-~02007~^~208~^392.^0^^~4~^~NC~^^^^^^^^^^~01/01/1977~
-~02007~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~11/01/2001~
-~02007~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~11/01/2001~
-~02007~^~268~^1641.^0^^~4~^^^^^^^^^^^~02/01/2007~
-~02007~^~301~^1767.^3^185.^~1~^^^^^^^^^^^~01/01/1977~
-~02007~^~304~^440.^3^20.^~1~^^^^^^^^^^^~01/01/1977~
-~02007~^~305~^547.^3^96.^~1~^^^^^^^^^^^~01/01/1977~
-~02007~^~306~^1400.^4^40.^~1~^^^^^^^^^^^~01/01/1977~
-~02007~^~307~^160.^5^17.^~1~^^^^^^^^^^^~01/01/1977~
-~02007~^~318~^52.^1^^~1~^^^^^^^^^^^~01/01/1977~
-~02007~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2002~
-~02007~^~320~^3.^1^^~1~^^^^^^^^^^^~02/01/2007~
-~02007~^~321~^31.^0^^~4~^~O~^^^^^^^^^^~02/01/2003~
-~02007~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~
-~02007~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~
-~02007~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~
-~02007~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~
-~02007~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~
-~02007~^~417~^10.^0^^~4~^^^^^^^^^^^~04/01/1985~
-~02007~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~
-~02007~^~432~^10.^0^^~4~^^^^^^^^^^^~02/01/2007~
-~02007~^~435~^10.^0^^~4~^~NC~^^^^^^^^^^~02/01/2007~
-~02007~^~601~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/1977~
-~02007~^~636~^60.^0^^~1~^^^^^^^^^^^~01/01/1977~
-~02008~^~208~^237.^0^^~4~^~NC~^^^^^^^^^^~01/01/1977~
-~02008~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2002~
-~02008~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2002~
-~02008~^~268~^990.^0^^~4~^^^^^^^^^^^~02/01/2002~
-~02008~^~301~^1346.^2^^~1~^^^^^^^^^^^~01/01/1977~
-~02008~^~304~^130.^1^^~1~^^^^^^^^^^^~01/01/1977~
-~02008~^~305~^450.^1^^~1~^^^^^^^^^^^~01/01/1977~
-~02008~^~306~^4740.^2^^~1~^^^^^^^^^^^~01/01/1977~
-~02008~^~307~^83.^2^^~1~^^^^^^^^^^^~01/01/1977~
-~02008~^~318~^5850.^0^^~4~^^^^^^^^^^^~04/01/1985~
-~02008~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2002~
-~02008~^~320~^293.^0^^~4~^~NC~^^^^^^^^^^~02/01/2002~
-~02008~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~
-~02008~^~417~^274.^0^^~4~^^^^^^^^^^^~04/01/1985~
-~02008~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~
-~02008~^~432~^274.^0^^~4~^^^^^^^^^^^~02/01/2002~
-~02008~^~435~^274.^0^^~4~^~NC~^^^^^^^^^^~02/01/2002~
-~02008~^~601~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2002~
-~02009~^~208~^282.^0^^~4~^~NC~^^^^^^^^^^~06/01/2010~
-~02009~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~11/01/2001~
-~02009~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~11/01/2001~
-~02009~^~268~^1179.^0^^~4~^~NC~^^^^^^^^^^~06/01/2010~
-~02009~^~301~^330.^1^^~1~^~A~^^^^^^^^^^~06/01/2010~
-~02009~^~304~^149.^1^^~1~^~A~^^^^^^^^^^~06/01/2010~
-~02009~^~305~^300.^1^^~1~^~A~^^^^^^^^^^~06/01/2010~
-~02009~^~306~^1950.^1^^~1~^~A~^^^^^^^^^^~06/01/2010~
-~02009~^~307~^2867.^0^^~8~^~LC~^^^^^^^^^^~04/01/2014~
-~02009~^~318~^29650.^1^^~1~^~A~^^^^^^^^^^~02/01/2003~
-~02009~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2002~
-~02009~^~320~^1483.^1^^~1~^~A~^^^^^^^^^^~02/01/2003~
-~02009~^~321~^15000.^1^^~1~^~A~^^^^^^^^^^~02/01/2003~
-~02009~^~322~^2090.^1^^~1~^~A~^^^^^^^^^^~02/01/2003~
-~02009~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~
-~02009~^~334~^3490.^1^^~1~^~A~^^^^^^^^^^~02/01/2003~
-~02009~^~337~^21.^1^^~1~^~A~^^^^^^^^^^~02/01/2003~
-~02009~^~338~^310.^1^^~1~^~A~^^^^^^^^^^~02/01/2003~
-~02009~^~417~^28.^1^^~1~^~A~^^^^^^^^^^~06/01/2010~
-~02009~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~
-~02009~^~432~^28.^1^^~1~^~A~^^^^^^^^^^~06/01/2010~
-~02009~^~435~^28.^0^^~4~^~NC~^^^^^^^^^^~06/01/2010~
-~02009~^~601~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/1977~
-~02009~^~636~^83.^0^^~1~^^^^^^^^^^^~01/01/1977~
-~02010~^~208~^247.^0^^~4~^~NC~^^^^^^^^^^~05/01/2007~
-~02010~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~12/01/2001~
-~02010~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~12/01/2001~
-~02010~^~268~^1035.^0^^~4~^~NC~^^^^^^^^^^~05/01/2007~
-~02010~^~301~^1002.^6^38.^~11~^~JO~^^^4^903.^1265.^3^878.^1124.^~2~^~05/01/2007~
-~02010~^~304~^60.^5^7.^~1~^~A~^^^3^47.^87.^2^27.^92.^~2~^~02/01/2007~
-~02010~^~305~^64.^6^4.^~11~^~JO~^^^4^49.^83.^3^49.^77.^~2~^~05/01/2007~
-~02010~^~306~^431.^6^44.^~11~^~JO~^^^4^304.^512.^3^287.^573.^~2~^~05/01/2007~
-~02010~^~307~^10.^6^3.^~11~^~JO~^^^4^3.^19.^3^0.^20.^~1, 2~^~05/01/2007~
-~02010~^~318~^295.^0^^~1~^~AS~^^^^^^^^^^~05/01/2007~
-~02010~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2002~
-~02010~^~320~^15.^0^^~1~^~AS~^^^^^^^^^^~05/01/2007~
-~02010~^~321~^112.^5^90.^~1~^~A~^^^3^3.^353.^2^-279.^503.^~2~^~02/01/2007~
-~02010~^~322~^1.^3^0.^~1~^~A~^^^2^0.^2.^1^-10.^12.^~1, 2~^~05/01/2007~
-~02010~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~
-~02010~^~334~^129.^3^129.^~1~^~A~^^^2^0.^258.^1^-1510.^1768.^~1, 2~^~05/01/2007~
-~02010~^~337~^15.^3^14.^~1~^~A~^^^2^0.^29.^1^-170.^200.^~1, 2~^~05/01/2007~
-~02010~^~338~^222.^3^197.^~1~^~A~^^^2^19.^420.^1^-2293.^2737.^~2~^~05/01/2007~
-~02010~^~417~^6.^3^0.^~1~^~A~^^^2^5.^8.^1^5.^7.^~2~^~02/01/2007~
-~02010~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~
-~02010~^~432~^6.^3^0.^~1~^~A~^^^2^5.^8.^1^5.^7.^^~05/01/2007~
-~02010~^~435~^6.^0^^~4~^~NC~^^^^^^^^^^~05/01/2007~
-~02010~^~601~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/1977~
-~02010~^~636~^26.^0^^~1~^^^^^^^^^^^~05/01/2007~
-~02011~^~208~^274.^0^^~4~^~NC~^^^^^^^^^^~04/01/2011~
-~02011~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~
-~02011~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~
-~02011~^~268~^1145.^0^^~4~^~NC~^^^^^^^^^^~04/01/2011~
-~02011~^~301~^632.^1^^~1~^~A~^^^^^^^^^^~04/01/2011~
-~02011~^~304~^259.^1^^~1~^~A~^^^^^^^^^^~04/01/2011~
-~02011~^~305~^104.^1^^~1~^~A~^^^^^^^^^^~04/01/2011~
-~02011~^~306~^1020.^1^^~1~^~A~^^^^^^^^^^~04/01/2011~
-~02011~^~307~^277.^2^^~1~^~A~^^^2^268.^285.^1^^^^~04/01/2011~
-~02011~^~318~^160.^0^^~1~^~AS~^^^^^^^^^^~04/01/2011~
-~02011~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2002~
-~02011~^~320~^8.^0^^~1~^~AS~^^^^^^^^^^~04/01/2011~
-~02011~^~321~^45.^2^^~1~^~A~^^^2^19.^70.^1^^^^~04/01/2011~
-~02011~^~322~^0.^1^^~1~^~A~^^^^^^^^^~1~^~02/01/2003~
-~02011~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~
-~02011~^~334~^103.^1^^~1~^~A~^^^^^^^^^^~04/01/2011~
-~02011~^~337~^0.^1^^~1~^~A~^^^^^^^^^~1~^~02/01/2003~
-~02011~^~338~^0.^1^^~1~^~A~^^^^^^^^^~1~^~02/01/2003~
-~02011~^~417~^25.^1^^~1~^~A~^^^^^^^^^^~04/01/2011~
-~02011~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~
-~02011~^~432~^25.^1^^~1~^~A~^^^^^^^^^^~04/01/2011~
-~02011~^~435~^25.^0^^~4~^~NC~^^^^^^^^^^~04/01/2011~
-~02011~^~601~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/1977~
-~02011~^~636~^256.^0^^~1~^^^^^^^^^^^~07/01/2013~
-~02012~^~208~^279.^0^^~4~^~NC~^^^^^^^^^^~01/01/1977~
-~02012~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2001~
-~02012~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2001~
-~02012~^~268~^1167.^0^^~4~^^^^^^^^^^^~06/01/2009~
-~02012~^~301~^1246.^10^95.^~1~^^^^^^^^^^^~02/01/1995~
-~02012~^~304~^694.^2^^~1~^^^^^^^^^^^~11/01/2001~
-~02012~^~305~^481.^10^38.^~1~^^^^^^^^^^^~02/01/1995~
-~02012~^~306~^4466.^3^281.^~1~^^^^^^^^^^^~02/01/1995~
-~02012~^~307~^211.^1^^~1~^^^^^^^^^^^~02/01/1995~
-~02012~^~318~^5850.^0^^~4~^^^^^^^^^^^~04/01/1985~
-~02012~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2002~
-~02012~^~320~^293.^0^^~4~^~NC~^^^^^^^^^^~06/01/2009~
-~02012~^~321~^3407.^0^^~4~^~BNA~^~11165~^^^^^^^^^~02/01/2003~
-~02012~^~322~^31.^0^^~4~^~BNA~^~11165~^^^^^^^^^~02/01/2003~
-~02012~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~
-~02012~^~334~^175.^0^^~4~^~BNA~^~11165~^^^^^^^^^~02/01/2003~
-~02012~^~337~^0.^0^^~4~^~BFSN~^~11165~^^^^^^^^^~02/01/2003~
-~02012~^~338~^2428.^0^^~4~^~BFZN~^~02029~^^^^^^^^^~06/01/2009~
-~02012~^~417~^274.^0^^~4~^^^^^^^^^^^~04/01/1985~
-~02012~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~
-~02012~^~432~^274.^0^^~4~^^^^^^^^^^^~06/01/2009~
-~02012~^~435~^274.^0^^~4~^~NC~^^^^^^^^^^~06/01/2009~
-~02012~^~601~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/1977~
-~02013~^~208~^298.^0^^~4~^~NC~^^^^^^^^^^~01/01/1977~
-~02013~^~268~^1245.^0^^~4~^^^^^^^^^^^~06/01/2005~
-~02013~^~301~^709.^6^62.^~1~^^^^^^^^^^^~01/01/1977~
-~02013~^~304~^330.^3^36.^~1~^^^^^^^^^^^~01/01/1977~
-~02013~^~305~^409.^4^18.^~1~^^^^^^^^^^^~01/01/1977~
-~02013~^~306~^1267.^7^80.^~1~^^^^^^^^^^^~01/01/1977~
-~02013~^~307~^35.^7^4.^~1~^^^^^^^^^^^~01/01/1977~
-~02013~^~318~^0.^1^^~1~^^^^^^^^^^^~01/01/1977~
-~02013~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2002~
-~02013~^~320~^0.^1^^~1~^^^^^^^^^^^~06/01/2002~
-~02013~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~
-~02013~^~417~^0.^1^^~1~^^^^^^^^^^^~01/01/1977~
-~02013~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~
-~02013~^~432~^0.^1^^~1~^^^^^^^^^^^~01/01/1977~
-~02013~^~435~^0.^0^^~4~^~NC~^^^^^^^^^^~06/01/2005~
-~02013~^~601~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/1977~
-~02013~^~636~^46.^0^^~1~^^^^^^^^^^^~01/01/1977~
-~02014~^~208~^375.^0^^~4~^~NC~^^^^^^^^^^~01/01/1977~
-~02014~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~12/01/2001~
-~02014~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~12/01/2001~
-~02014~^~268~^1567.^0^^~4~^^^^^^^^^^^~02/01/2007~
-~02014~^~301~^931.^7^102.^~1~^^^^^^^^^^^~01/01/1977~
-~02014~^~304~^366.^4^33.^~1~^^^^^^^^^^^~01/01/1977~
-~02014~^~305~^499.^7^22.^~1~^^^^^^^^^^^~01/01/1977~
-~02014~^~306~^1788.^6^136.^~1~^^^^^^^^^^^~01/01/1977~
-~02014~^~307~^168.^6^18.^~1~^^^^^^^^^^^~01/01/1977~
-~02014~^~318~^1270.^1^^~1~^^^^^^^^^^^~01/01/1977~
-~02014~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2002~
-~02014~^~320~^64.^1^^~1~^^^^^^^^^^^~02/01/2007~
-~02014~^~321~^762.^0^^~4~^~BNA~^~02024~^^^^^^^^^~02/01/2003~
-~02014~^~322~^0.^0^^~4~^~BNA~^~02024~^^^^^^^^^~02/01/2003~
-~02014~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~
-~02014~^~334~^0.^0^^~4~^~BNA~^~02024~^^^^^^^^^~02/01/2003~
-~02014~^~337~^0.^0^^~4~^~BFZN~^~02024~^^^^^^^^^~02/01/2003~
-~02014~^~338~^448.^0^^~4~^~BFZN~^~02024~^^^^^^^^^~02/01/2003~
-~02014~^~417~^10.^0^^~4~^^^^^^^^^^^~04/01/1985~
-~02014~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~
-~02014~^~432~^10.^0^^~4~^^^^^^^^^^^~02/01/2007~
-~02014~^~435~^10.^0^^~4~^~NC~^^^^^^^^^^~02/01/2007~
-~02014~^~601~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/1977~
-~02014~^~636~^68.^0^^~1~^^^^^^^^^^^~01/01/1977~
-~02015~^~208~^325.^0^^~4~^~NC~^^^^^^^^^^~01/01/1977~
-~02015~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~11/01/2001~
-~02015~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~11/01/2001~
-~02015~^~268~^1359.^0^^~4~^~NC~^^^^^^^^^^~04/01/2013~
-~02015~^~301~^525.^1^^~1~^~A~^^^^^^^^^^~04/01/2013~
-~02015~^~304~^255.^1^^~1~^~A~^^^^^^^^^^~04/01/2013~
-~02015~^~305~^367.^1^^~1~^~A~^^^^^^^^^^~04/01/2013~
-~02015~^~306~^1170.^1^^~1~^~A~^^^^^^^^^^~04/01/2013~
-~02015~^~307~^52.^0^^~1~^^^^^^^^^^^~01/01/1977~
-~02015~^~318~^19.^0^^~1~^~AS~^^^^^^^^^^~04/01/2013~
-~02015~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2002~
-~02015~^~320~^1.^0^^~1~^~AS~^^^^^^^^^^~04/01/2013~
-~02015~^~321~^11.^1^^~1~^~A~^^^^^^^^^~1~^~04/01/2013~
-~02015~^~322~^0.^1^^~1~^~A~^^^^^^^^^~1~^~02/01/2003~
-~02015~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~
-~02015~^~334~^0.^1^^~1~^~A~^^^^^^^^^~1~^~02/01/2003~
-~02015~^~337~^0.^1^^~1~^~A~^^^^^^^^^~1~^~02/01/2003~
-~02015~^~338~^0.^1^^~1~^~A~^^^^^^^^^~1~^~02/01/2003~
-~02015~^~417~^56.^1^^~1~^~A~^^^^^^^^^^~04/01/2013~
-~02015~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~
-~02015~^~432~^56.^1^^~1~^~A~^^^^^^^^^^~04/01/2013~
-~02015~^~435~^56.^0^^~4~^~NC~^^^^^^^^^^~04/01/2013~
-~02015~^~601~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/1977~
-~02016~^~208~^305.^0^^~4~^~NC~^^^^^^^^^^~01/01/1977~
-~02016~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~11/01/2001~
-~02016~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~11/01/2001~
-~02016~^~268~^1276.^0^^~4~^^^^^^^^^^^~06/01/2005~
-~02016~^~301~^1516.^5^115.^~1~^^^^^^^^^^^~01/01/1977~
-~02016~^~304~^256.^4^11.^~1~^^^^^^^^^^^~01/01/1977~
-~02016~^~305~^277.^4^66.^~1~^^^^^^^^^^^~01/01/1977~
-~02016~^~306~^1186.^6^118.^~1~^^^^^^^^^^^~01/01/1977~
-~02016~^~307~^20.^4^4.^~1~^^^^^^^^^^^~01/01/1977~
-~02016~^~318~^53.^1^^~1~^^^^^^^^^^^~01/01/1977~
-~02016~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2002~
-~02016~^~320~^3.^1^^~1~^^^^^^^^^^^~11/01/2001~
-~02016~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~
-~02016~^~417~^10.^0^^~4~^^^^^^^^^^^~04/01/1985~
-~02016~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~
-~02016~^~432~^10.^0^^~4~^^^^^^^^^^^~11/01/2001~
-~02016~^~435~^10.^0^^~4~^~NC~^^^^^^^^^^~06/01/2005~
-~02016~^~601~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/1977~
-~02016~^~636~^124.^0^^~1~^^^^^^^^^^^~01/01/1977~
-~02017~^~208~^253.^0^^~4~^~NC~^^^^^^^^^^~01/01/1977~
-~02017~^~268~^1059.^0^^~4~^^^^^^^^^^^
-~02017~^~301~^1784.^4^202.^~1~^^^^^^^^^^^~01/01/1977~
-~02017~^~304~^451.^3^116.^~1~^^^^^^^^^^^~01/01/1977~
-~02017~^~305~^543.^3^163.^~1~^^^^^^^^^^^~01/01/1977~
-~02017~^~306~^3308.^4^923.^~1~^^^^^^^^^^^~01/01/1977~
-~02017~^~307~^208.^3^98.^~1~^^^^^^^^^^^~01/01/1977~
-~02017~^~318~^5850.^0^^~4~^^^^^^^^^^^~01/01/1994~
-~02017~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2002~
-~02017~^~320~^293.^0^^~4~^~NC~^^^^^^^^^^~02/01/2002~
-~02017~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~
-~02017~^~601~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/1977~
-~02018~^~208~^345.^0^^~4~^~NC~^^^^^^^^^^~01/01/1977~
-~02018~^~268~^1443.^0^^~4~^^^^^^^^^^^~06/01/2005~
-~02018~^~301~^1196.^6^74.^~1~^^^^^^^^^^^~01/01/1977~
-~02018~^~304~^385.^4^71.^~1~^^^^^^^^^^^~01/01/1977~
-~02018~^~305~^487.^4^42.^~1~^^^^^^^^^^^~01/01/1977~
-~02018~^~306~^1694.^6^56.^~1~^^^^^^^^^^^~01/01/1977~
-~02018~^~307~^88.^7^10.^~1~^^^^^^^^^^^~01/01/1977~
-~02018~^~318~^135.^1^^~1~^^^^^^^^^^^~01/01/1977~
-~02018~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2002~
-~02018~^~320~^7.^1^^~1~^^^^^^^^^^^~01/01/2002~
-~02018~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~
-~02018~^~601~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/1977~
-~02018~^~636~^66.^0^^~1~^^^^^^^^^^^~01/01/1977~
-~02019~^~208~^323.^0^^~4~^~NC~^^^^^^^^^^~01/01/1977~
-~02019~^~268~^1352.^0^^~4~^^^^^^^^^^^
-~02019~^~301~^176.^25^5.^~1~^^^^^^^^^^^~01/01/1977~
-~02019~^~304~^191.^3^61.^~1~^^^^^^^^^^^~01/01/1977~
-~02019~^~305~^296.^21^15.^~1~^^^^^^^^^^^~01/01/1977~
-~02019~^~306~^770.^4^80.^~1~^^^^^^^^^^^~01/01/1977~
-~02019~^~307~^67.^4^16.^~1~^^^^^^^^^^^~01/01/1977~
-~02019~^~318~^60.^0^^~4~^^^^^^^^^^^~11/01/1994~
-~02019~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2002~
-~02019~^~320~^3.^0^^~4~^~NC~^^^^^^^^^^~02/01/2002~
-~02019~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~
-~02019~^~417~^57.^1^^~1~^^^^^^^^^^^~01/01/1977~
-~02019~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~
-~02019~^~432~^57.^1^^~1~^^^^^^^^^^^~02/01/2002~
-~02019~^~435~^57.^0^^~4~^~NC~^^^^^^^^^^~02/01/2002~
-~02019~^~601~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/1977~
-~02019~^~636~^140.^0^^~1~^^^^^^^^^^^~01/01/1977~
-~02020~^~208~^331.^0^^~4~^~NC~^^^^^^^^^^~11/01/2008~
-~02020~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~12/01/2001~
-~02020~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~12/01/2001~
-~02020~^~268~^1386.^0^^~4~^~NC~^^^^^^^^^^~11/01/2008~
-~02020~^~301~^79.^3^11.^~1~^~A~^^^2^65.^100.^1^-68.^226.^~2, 3~^~11/01/2008~
-~02020~^~304~^77.^3^3.^~1~^~A~^^^2^67.^86.^1^36.^117.^~2, 3~^~11/01/2008~
-~02020~^~305~^414.^3^21.^~1~^~A~^^^2^350.^478.^1^142.^685.^~2, 3~^~11/01/2008~
-~02020~^~306~^1193.^3^120.^~1~^~A~^^^2^1040.^1400.^1^-331.^2718.^~2, 3~^~11/01/2008~
-~02020~^~307~^60.^3^25.^~1~^~A~^^^2^22.^99.^1^-264.^384.^~2, 3~^~11/01/2008~
-~02020~^~318~^0.^0^^~1~^~AS~^^^^^^^^^^~11/01/2008~
-~02020~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2002~
-~02020~^~320~^0.^0^^~1~^~AS~^^^^^^^^^^~11/01/2008~
-~02020~^~321~^0.^1^^~1~^~A~^^^^^^^^^~1~^~02/01/2003~
-~02020~^~322~^0.^1^^~1~^~A~^^^^^^^^^~1~^~02/01/2003~
-~02020~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~
-~02020~^~334~^0.^1^^~1~^~A~^^^^^^^^^~1~^~02/01/2003~
-~02020~^~337~^0.^1^^~1~^~A~^^^^^^^^^~1~^~02/01/2003~
-~02020~^~338~^0.^1^^~1~^~A~^^^^^^^^^~1~^~02/01/2003~
-~02020~^~417~^47.^1^^~1~^~A~^^^^^^^^^^~11/01/2008~
-~02020~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~
-~02020~^~432~^47.^1^^~1~^~A~^^^^^^^^^^~11/01/2008~
-~02020~^~435~^47.^0^^~4~^~NC~^^^^^^^^^^~11/01/2008~
-~02020~^~601~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/1977~
-~02020~^~636~^8.^0^^~1~^^^^^^^^^^^~01/01/1977~
-~02021~^~208~^335.^0^^~4~^~NC~^^^^^^^^^^~06/01/2010~
-~02021~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~12/01/2001~
-~02021~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~12/01/2001~
-~02021~^~268~^1404.^0^^~4~^~NC~^^^^^^^^^^~06/01/2010~
-~02021~^~301~^114.^1^^~1~^~A~^^^^^^^^^^~06/01/2010~
-~02021~^~304~^214.^1^^~1~^~A~^^^^^^^^^^~06/01/2010~
-~02021~^~305~^168.^1^^~1~^~A~^^^^^^^^^^~06/01/2010~
-~02021~^~306~^1320.^1^^~1~^~A~^^^^^^^^^^~06/01/2010~
-~02021~^~307~^27.^1^^~1~^~A~^^^^^^^^^^~06/01/2010~
-~02021~^~318~^30.^1^^~1~^~A~^^^^^^^^^^~06/01/2010~
-~02021~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2002~
-~02021~^~320~^2.^1^^~1~^~A~^^^^^^^^^^~06/01/2010~
-~02021~^~321~^18.^1^^~1~^~A~^^^^^^^^^^~06/01/2010~
-~02021~^~322~^0.^1^^~1~^~A~^^^^^^^^^~1~^~02/01/2003~
-~02021~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~
-~02021~^~334~^0.^1^^~1~^~A~^^^^^^^^^~1~^~02/01/2003~
-~02021~^~337~^0.^1^^~1~^~A~^^^^^^^^^~1~^~02/01/2003~
-~02021~^~338~^0.^1^^~1~^~A~^^^^^^^^^~1~^~02/01/2003~
-~02021~^~417~^13.^1^^~1~^~A~^^^^^^^^^^~06/01/2010~
-~02021~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~
-~02021~^~432~^13.^1^^~1~^~A~^^^^^^^^^^~06/01/2010~
-~02021~^~435~^13.^0^^~4~^~NC~^^^^^^^^^^~06/01/2010~
-~02021~^~601~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/1977~
-~02021~^~636~^83.^0^^~1~^^^^^^^^^^^~01/01/1977~
-~02022~^~208~^475.^0^^~4~^~NC~^^^^^^^^^^~01/01/1977~
-~02022~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~12/01/2001~
-~02022~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~12/01/2001~
-~02022~^~268~^1989.^0^^~4~^^^^^^^^^^^~06/01/2005~
-~02022~^~301~^252.^6^22.^~1~^^^^^^^^^^^~01/01/1977~
-~02022~^~304~^163.^3^3.^~1~^^^^^^^^^^^~02/01/1995~
-~02022~^~305~^110.^4^7.^~1~^^^^^^^^^^^~01/01/1977~
-~02022~^~306~^463.^6^81.^~1~^^^^^^^^^^^~01/01/1977~
-~02022~^~307~^80.^8^13.^~1~^^^^^^^^^^^~01/01/1977~
-~02022~^~318~^800.^1^^~1~^^^^^^^^^^^~01/01/1977~
-~02022~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2002~
-~02022~^~320~^40.^1^^~1~^^^^^^^^^^^~07/01/2002~
-~02022~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~
-~02022~^~417~^76.^0^^~4~^^^^^^^^^^^~04/01/1985~
-~02022~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~
-~02022~^~432~^76.^0^^~4~^^^^^^^^^^^~07/01/2002~
-~02022~^~435~^76.^0^^~4~^~NC~^^^^^^^^^^~06/01/2005~
-~02022~^~601~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/1977~
-~02022~^~636~^73.^0^^~1~^^^^^^^^^^^~01/01/1977~
-~02023~^~208~^271.^0^^~4~^~NC~^^^^^^^^^^~01/01/1977~
-~02023~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2001~
-~02023~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2001~
-~02023~^~268~^1136.^0^^~4~^^^^^^^^^^^~06/01/2009~
-~02023~^~301~^1990.^10^197.^~1~^^^^^^^^^^^~01/01/1977~
-~02023~^~304~^346.^8^15.^~1~^^^^^^^^^^^~01/01/1977~
-~02023~^~305~^306.^7^39.^~1~^^^^^^^^^^^~01/01/1977~
-~02023~^~306~^1522.^12^72.^~1~^^^^^^^^^^^~01/01/1977~
-~02023~^~307~^77.^15^9.^~1~^^^^^^^^^^^~01/01/1977~
-~02023~^~318~^8068.^1^^~1~^^^^^^^^^^^~01/01/1977~
-~02023~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2002~
-~02023~^~320~^403.^0^^~4~^~NC~^^^^^^^^^^~06/01/2009~
-~02023~^~321~^4806.^0^^~4~^~BNA~^~02027~^^^^^^^^^~02/01/2003~
-~02023~^~322~^0.^0^^~4~^~BNA~^~02027~^^^^^^^^^~02/01/2003~
-~02023~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~
-~02023~^~334~^70.^0^^~4~^~BNA~^~02027~^^^^^^^^^~02/01/2003~
-~02023~^~337~^0.^0^^~4~^~BFZN~^~02027~^^^^^^^^^~02/01/2003~
-~02023~^~338~^1895.^0^^~4~^~BFZN~^~02027~^^^^^^^^^~06/01/2009~
-~02023~^~417~^274.^0^^~4~^^^^^^^^^^^~04/01/1985~
-~02023~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~
-~02023~^~432~^274.^0^^~4~^^^^^^^^^^^~06/01/2009~
-~02023~^~435~^274.^0^^~4~^~NC~^^^^^^^^^^~06/01/2009~
-~02023~^~601~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/1977~
-~02023~^~636~^60.^0^^~1~^^^^^^^^^^^~01/01/1977~
-~02024~^~208~^508.^0^^~4~^~NC~^^^^^^^^^^~11/01/2008~
-~02024~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~12/01/2001~
-~02024~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~12/01/2001~
-~02024~^~268~^2126.^0^^~4~^~NC~^^^^^^^^^^~11/01/2008~
-~02024~^~301~^266.^4^40.^~11~^~JO~^^^3^223.^430.^2^90.^440.^~2~^~11/01/2008~
-~02024~^~304~^370.^4^1.^~11~^~JO~^^^3^366.^379.^2^362.^376.^~2~^~11/01/2008~
-~02024~^~305~^828.^4^27.^~11~^~JO~^^^3^776.^872.^2^707.^947.^~2~^~11/01/2008~
-~02024~^~306~^738.^4^5.^~11~^~JO~^^^3^693.^774.^2^713.^762.^~2~^~11/01/2008~
-~02024~^~307~^13.^4^7.^~11~^~JO~^^^3^4.^27.^2^-17.^44.^~1, 2~^~11/01/2008~
-~02024~^~318~^31.^2^^~1~^~A~^^^1^24.^38.^1^^^^~11/01/2008~
-~02024~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2002~
-~02024~^~320~^2.^2^^~1~^~A~^^^1^1.^2.^1^^^^~11/01/2008~
-~02024~^~321~^18.^2^^~1~^~A~^^^1^14.^23.^1^^^^~11/01/2008~
-~02024~^~322~^0.^3^0.^~1~^~A~^^^2^0.^0.^^^^~1, 2, 3~^~11/01/2008~
-~02024~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~
-~02024~^~334~^0.^3^0.^~1~^~A~^^^2^0.^0.^^^^~1, 2, 3~^~11/01/2008~
-~02024~^~337~^0.^3^0.^~1~^~A~^^^2^0.^0.^^^^~1, 2, 3~^~11/01/2008~
-~02024~^~338~^568.^3^117.^~1~^~A~^^^2^448.^805.^1^-930.^2066.^~2, 3~^~11/01/2008~
-~02024~^~417~^162.^1^^~1~^~A~^^^^^^^^^^~11/01/2008~
-~02024~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~
-~02024~^~432~^162.^1^^~1~^~A~^^^^^^^^^^~11/01/2008~
-~02024~^~435~^162.^0^^~4~^~NC~^^^^^^^^^^~11/01/2008~
-~02024~^~601~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/1977~
-~02024~^~636~^118.^0^^~1~^^^^^^^^^^^~01/01/1977~
-~02025~^~208~^525.^0^^~4~^~NC~^^^^^^^^^^~01/01/1977~
-~02025~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~12/01/2001~
-~02025~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~12/01/2001~
-~02025~^~268~^2196.^0^^~4~^^^^^^^^^^^~12/01/2006~
-~02025~^~301~^184.^5^22.^~1~^^^^^^^^^^^~01/01/1977~
-~02025~^~304~^183.^3^24.^~1~^^^^^^^^^^^~01/01/1977~
-~02025~^~305~^213.^4^9.^~1~^^^^^^^^^^^~01/01/1977~
-~02025~^~306~^350.^5^74.^~1~^^^^^^^^^^^~01/01/1977~
-~02025~^~307~^16.^5^2.^~1~^^^^^^^^^^^~01/01/1977~
-~02025~^~318~^102.^1^^~1~^^^^^^^^^^^~01/01/1977~
-~02025~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2002~
-~02025~^~320~^5.^0^^~4~^~NC~^^^^^^^^^^~06/01/2014~
-~02025~^~321~^28.^0^^~4~^~BNA~^~02011~^^^^^^^^^~04/01/2011~
-~02025~^~322~^0.^0^^~4~^~BNA~^~02011~^^^^^^^^^~02/01/2003~
-~02025~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~
-~02025~^~334~^66.^0^^~4~^~BNA~^~02011~^^^^^^^^^~04/01/2011~
-~02025~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~
-~02025~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~
-~02025~^~417~^76.^0^^~4~^^^^^^^^^^^~04/01/1985~
-~02025~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~
-~02025~^~432~^76.^0^^~4~^^^^^^^^^^^~12/01/2006~
-~02025~^~435~^76.^0^^~4~^~NC~^^^^^^^^^^~12/01/2006~
-~02025~^~601~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/1977~
-~02025~^~636~^62.^0^^~1~^^^^^^^^^^^~01/01/1977~
-~02026~^~208~^341.^0^^~4~^~NC~^^^^^^^^^^~03/01/2009~
-~02026~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2002~
-~02026~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2002~
-~02026~^~268~^1429.^0^^~4~^~NC~^^^^^^^^^^~03/01/2009~
-~02026~^~301~^384.^1^^~1~^~A~^^^^^^^^^^~03/01/2009~
-~02026~^~304~^113.^1^^~1~^~A~^^^^^^^^^^~03/01/2009~
-~02026~^~305~^322.^1^^~1~^~A~^^^^^^^^^^~03/01/2009~
-~02026~^~306~^985.^1^^~1~^~A~^^^^^^^^^^~03/01/2009~
-~02026~^~307~^73.^1^^~1~^~A~^^^^^^^^^^~03/01/2009~
-~02026~^~318~^0.^1^^~1~^~A~^^^^^^^^^^~02/01/2003~
-~02026~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2002~
-~02026~^~320~^0.^1^^~1~^~A~^^^^^^^^^^~02/01/2003~
-~02026~^~321~^0.^1^^~1~^~A~^^^^^^^^^~1~^~02/01/2003~
-~02026~^~322~^0.^1^^~1~^~A~^^^^^^^^^~1~^~02/01/2003~
-~02026~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~
-~02026~^~334~^0.^1^^~1~^~A~^^^^^^^^^~1~^~02/01/2003~
-~02026~^~337~^0.^1^^~1~^~A~^^^^^^^^^~1~^~02/01/2003~
-~02026~^~338~^0.^1^^~1~^~A~^^^^^^^^^~1~^~02/01/2003~
-~02026~^~417~^64.^1^^~1~^~A~^^^^^^^^^^~03/01/2009~
-~02026~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~
-~02026~^~432~^64.^1^^~1~^~A~^^^^^^^^^^~03/01/2009~
-~02026~^~435~^64.^0^^~4~^~NC~^^^^^^^^^^~03/01/2009~
-~02026~^~601~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/1977~
-~02026~^~636~^87.^0^^~1~^^^^^^^^^^^~01/01/1977~
-~02027~^~208~^265.^0^^~4~^~NC~^^^^^^^^^^~06/01/2009~
-~02027~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~
-~02027~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~
-~02027~^~268~^1107.^0^^~4~^~NC~^^^^^^^^^^~06/01/2009~
-~02027~^~301~^1597.^3^26.^~1~^~A~^^^2^1540.^1630.^1^1257.^1935.^~2, 3~^~06/01/2009~
-~02027~^~304~^270.^3^17.^~1~^~A~^^^2^238.^290.^1^49.^489.^~2, 3~^~06/01/2009~
-~02027~^~305~^148.^3^3.^~1~^~A~^^^2^139.^157.^1^109.^186.^~2, 3~^~06/01/2009~
-~02027~^~306~^1260.^3^33.^~1~^~A~^^^2^1200.^1340.^1^836.^1683.^~2, 3~^~06/01/2009~
-~02027~^~307~^25.^3^1.^~1~^~A~^^^2^17.^38.^1^10.^39.^~2, 3~^~06/01/2009~
-~02027~^~318~^1701.^2^^~1~^~A~^^^1^1359.^2044.^1^^^^~06/01/2009~
-~02027~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2002~
-~02027~^~320~^85.^2^^~1~^~A~^^^1^68.^102.^1^^^^~06/01/2009~
-~02027~^~321~^1007.^2^^~1~^~A~^^^1^802.^1212.^1^^^^~06/01/2009~
-~02027~^~322~^20.^2^^~1~^~A~^^^1^15.^25.^1^^^^~06/01/2009~
-~02027~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~
-~02027~^~334~^7.^2^^~1~^~A~^^^1^2.^13.^1^^^^~06/01/2009~
-~02027~^~337~^0.^2^^~1~^~A~^^^1^0.^0.^^^^~1~^~06/01/2009~
-~02027~^~338~^1895.^2^^~1~^~A~^^^1^1665.^2125.^1^^^^~06/01/2009~
-~02027~^~417~^237.^1^^~1~^~A~^^^^^^^^^^~06/01/2009~
-~02027~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~
-~02027~^~432~^237.^1^^~1~^~A~^^^^^^^^^^~06/01/2009~
-~02027~^~435~^237.^0^^~4~^~NC~^^^^^^^^^^~06/01/2009~
-~02027~^~601~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/1977~
-~02027~^~636~^203.^0^^~1~^^^^^^^^^^^~01/01/1977~
-~02028~^~208~^282.^0^^~4~^~NC~^^^^^^^^^^~05/01/2010~
-~02028~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~12/01/2001~
-~02028~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~12/01/2001~
-~02028~^~268~^1181.^0^^~4~^~NC~^^^^^^^^^^~05/01/2010~
-~02028~^~301~^229.^3^5.^~1~^~A~^^^2^217.^244.^1^157.^301.^~2, 3~^~04/01/2010~
-~02028~^~304~^178.^3^3.^~1~^~A~^^^2^172.^181.^1^139.^216.^~2, 3~^~04/01/2010~
-~02028~^~305~^314.^3^3.^~1~^~A~^^^2^287.^333.^1^271.^356.^~2, 3~^~04/01/2010~
-~02028~^~306~^2280.^3^120.^~1~^~A~^^^2^2040.^2580.^1^755.^3804.^~2, 3~^~04/01/2010~
-~02028~^~307~^68.^3^4.^~1~^~A~^^^2^55.^81.^1^16.^118.^~2, 3~^~04/01/2010~
-~02028~^~318~^49254.^0^^~1~^~AS~^^^^^^^^^^~04/01/2010~
-~02028~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2002~
-~02028~^~320~^2463.^0^^~1~^~AS~^^^^^^^^^^~04/01/2010~
-~02028~^~321~^26162.^8^6757.^~1~^~A~^^^4^12334.^56000.^3^4657.^47666.^~2~^~04/01/2010~
-~02028~^~322~^595.^3^24.^~1~^~A~^^^2^0.^929.^1^286.^903.^~1, 2, 3~^~04/01/2010~
-~02028~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~
-~02028~^~334~^6186.^5^3717.^~1~^~A~^^^3^2230.^19395.^2^-9810.^22182.^~2~^~04/01/2010~
-~02028~^~337~^0.^3^0.^~1~^~A~^^^2^0.^0.^^^^~1, 2, 3~^~04/01/2010~
-~02028~^~338~^18944.^5^8560.^~1~^~A~^^^3^2230.^33668.^2^-17889.^55776.^~2~^~04/01/2010~
-~02028~^~417~^49.^1^^~1~^~A~^^^^^^^^^^~04/01/2010~
-~02028~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~
-~02028~^~432~^49.^1^^~1~^~A~^^^^^^^^^^~05/01/2010~
-~02028~^~435~^49.^0^^~4~^~NC~^^^^^^^^^^~05/01/2010~
-~02028~^~601~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/1977~
-~02028~^~636~^175.^0^^~1~^^^^^^^^^^^~01/01/1977~
-~02029~^~208~^292.^0^^~4~^~NC~^^^^^^^^^^~06/01/2009~
-~02029~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~
-~02029~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~
-~02029~^~268~^1220.^0^^~4~^~NC~^^^^^^^^^^~06/01/2009~
-~02029~^~301~^1140.^3^56.^~1~^~A~^^^2^1010.^1230.^1^419.^1860.^~2, 3~^~06/01/2009~
-~02029~^~304~^400.^3^29.^~1~^~A~^^^2^357.^444.^1^31.^768.^~2, 3~^~06/01/2009~
-~02029~^~305~^436.^3^13.^~1~^~A~^^^2^418.^464.^1^270.^600.^~2, 3~^~06/01/2009~
-~02029~^~306~^2683.^3^36.^~1~^~A~^^^2^2450.^3040.^1^2217.^3149.^~2, 3~^~06/01/2009~
-~02029~^~307~^452.^14^54.^~1~^^^^^^^^^^^~01/01/1977~
-~02029~^~318~^1939.^2^^~1~^~A~^^^1^1108.^2769.^1^^^^~06/01/2009~
-~02029~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2002~
-~02029~^~320~^97.^2^^~1~^~A~^^^1^55.^138.^1^^^^~06/01/2009~
-~02029~^~321~^1152.^2^^~1~^~A~^^^1^660.^1645.^1^^^^~06/01/2009~
-~02029~^~322~^17.^2^^~1~^~A~^^^1^7.^28.^1^^^^~06/01/2009~
-~02029~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~
-~02029~^~334~^4.^2^^~1~^~A~^^^1^2.^6.^1^^^^~06/01/2009~
-~02029~^~337~^0.^2^^~1~^~A~^^^1^0.^0.^^^^~1~^~06/01/2009~
-~02029~^~338~^2428.^2^^~1~^~A~^^^1^1545.^3312.^1^^^^~06/01/2009~
-~02029~^~417~^180.^0^^~4~^^^^^^^^^^^~04/01/1985~
-~02029~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~
-~02029~^~432~^180.^0^^~4~^^^^^^^^^^^~06/01/2009~
-~02029~^~435~^180.^0^^~4~^~NC~^^^^^^^^^^~06/01/2009~
-~02029~^~601~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/1977~
-~02030~^~208~^251.^0^^~4~^~NC~^^^^^^^^^^~04/01/2010~
-~02030~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~
-~02030~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~
-~02030~^~268~^1050.^0^^~4~^~NC~^^^^^^^^^^~04/01/2010~
-~02030~^~301~^443.^6^73.^~1~^~A~^^^3^330.^652.^2^127.^757.^~2~^~04/01/2010~
-~02030~^~304~^171.^6^17.^~1~^~A~^^^3^143.^238.^2^94.^247.^~2~^~04/01/2010~
-~02030~^~305~^158.^6^8.^~1~^~A~^^^3^123.^176.^2^122.^194.^~2~^~04/01/2010~
-~02030~^~306~^1329.^6^297.^~1~^~A~^^^3^916.^2440.^2^48.^2609.^~2~^~04/01/2010~
-~02030~^~307~^20.^5^2.^~1~^~A~^^^3^15.^29.^2^8.^32.^~2~^~04/01/2010~
-~02030~^~318~^547.^0^^~1~^~AS~^^^^^^^^^^~04/01/2010~
-~02030~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2002~
-~02030~^~320~^27.^0^^~1~^~AS~^^^^^^^^^^~04/01/2010~
-~02030~^~321~^310.^4^58.^~1~^~A~^^^2^67.^540.^2^52.^566.^~2, 3~^~04/01/2010~
-~02030~^~322~^12.^4^4.^~1~^~A~^^^2^0.^34.^1^-48.^73.^~1, 2, 3~^~04/01/2010~
-~02030~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~
-~02030~^~334~^25.^4^18.^~1~^~A~^^^2^1.^85.^1^-209.^258.^~1, 2, 3~^~04/01/2010~
-~02030~^~337~^20.^4^17.^~1~^~A~^^^2^0.^69.^1^-177.^217.^~1, 2, 3~^~04/01/2010~
-~02030~^~338~^454.^4^20.^~1~^~A~^^^2^167.^721.^1^316.^591.^~2, 3~^~04/01/2010~
-~02030~^~417~^17.^3^3.^~1~^~A~^^^2^13.^23.^1^-32.^67.^~2~^~04/01/2010~
-~02030~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~
-~02030~^~432~^17.^3^3.^~1~^~A~^^^2^13.^23.^1^-32.^67.^^~04/01/2010~
-~02030~^~435~^17.^0^^~4~^~NC~^^^^^^^^^^~04/01/2010~
-~02030~^~601~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/1977~
-~02030~^~636~^92.^0^^~1~^^^^^^^^^^^~01/01/1977~
-~02031~^~208~^318.^0^^~4~^~NC~^^^^^^^^^^~01/01/1977~
-~02031~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2002~
-~02031~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2002~
-~02031~^~268~^1331.^0^^~4~^^^^^^^^^^^~12/01/2006~
-~02031~^~301~^148.^50^8.^~1~^^^^^^^^^^^~01/01/1977~
-~02031~^~304~^152.^4^10.^~1~^^^^^^^^^^^~02/01/1995~
-~02031~^~305~^293.^51^10.^~1~^^^^^^^^^^^~01/01/1977~
-~02031~^~306~^2014.^8^128.^~1~^^^^^^^^^^^~01/01/1977~
-~02031~^~307~^30.^5^8.^~1~^^^^^^^^^^^~01/01/1977~
-~02031~^~318~^41610.^2^^~1~^^^^^^^^^^^~01/01/1977~
-~02031~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2002~
-~02031~^~320~^2081.^2^^~1~^^^^^^^^^^^~12/01/2006~
-~02031~^~321~^21840.^0^^~4~^~BNA~^~02028~^^^^^^^^^~02/01/2003~
-~02031~^~322~^0.^0^^~4~^~BNA~^~02028~^^^^^^^^^~02/01/2003~
-~02031~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~
-~02031~^~334~^6252.^0^^~4~^~BNA~^~02028~^^^^^^^^^~02/01/2003~
-~02031~^~337~^0.^0^^~4~^~BFZN~^~02028~^^^^^^^^^~02/01/2003~
-~02031~^~338~^13157.^0^^~4~^~BFZN~^~02028~^^^^^^^^^~02/01/2003~
-~02031~^~417~^106.^0^^~4~^^^^^^^^^^^~04/01/1985~
-~02031~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~
-~02031~^~432~^106.^0^^~4~^^^^^^^^^^^~12/01/2006~
-~02031~^~435~^106.^0^^~4~^~NC~^^^^^^^^^^~12/01/2006~
-~02031~^~601~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/1977~
-~02031~^~636~^83.^0^^~1~^^^^^^^^^^^~01/01/1977~
-~02032~^~208~^296.^0^^~4~^~NC~^^^^^^^^^^~01/01/1977~
-~02032~^~268~^1238.^0^^~4~^^^^^^^^^^^~06/01/2005~
-~02032~^~301~^265.^12^30.^~1~^^^^^^^^^^^~01/01/1977~
-~02032~^~304~^90.^12^12.^~1~^^^^^^^^^^^~02/01/1995~
-~02032~^~305~^176.^11^12.^~1~^^^^^^^^^^^~01/01/1977~
-~02032~^~306~^73.^9^7.^~1~^^^^^^^^^^^~01/01/1977~
-~02032~^~307~^5.^7^0.^~1~^^^^^^^^^^^~01/01/1977~
-~02032~^~318~^0.^1^^~1~^^^^^^^^^^^~01/01/1977~
-~02032~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2002~
-~02032~^~320~^0.^1^^~1~^^^^^^^^^^^~03/01/2002~
-~02032~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~
-~02032~^~417~^10.^0^^~4~^^^^^^^^^^^~04/01/1985~
-~02032~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~
-~02032~^~432~^10.^0^^~4~^^^^^^^^^^^~03/01/2002~
-~02032~^~435~^10.^0^^~4~^~NC~^^^^^^^^^^~07/01/2006~
-~02032~^~601~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/1977~
-~02032~^~636~^55.^0^^~1~^^^^^^^^^^^~01/01/1977~
-~02033~^~208~^525.^0^^~4~^~NC~^^^^^^^^^^~07/01/2008~
-~02033~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2003~
-~02033~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2003~
-~02033~^~268~^2196.^0^^~4~^~NC~^^^^^^^^^^~07/01/2008~
-~02033~^~301~^1438.^3^69.^~11~^~JO~^^^3^1320.^1560.^2^1139.^1736.^~2~^~06/01/2008~
-~02033~^~304~^347.^8^11.^~1~^~A~^^^2^333.^387.^1^198.^494.^~2~^~06/01/2008~
-~02033~^~305~^870.^9^78.^~1~^~A~^^^3^788.^1277.^2^532.^1206.^~2~^~06/01/2008~
-~02033~^~306~^719.^9^44.^~1~^~A~^^^3^601.^1054.^2^528.^909.^~2~^~06/01/2008~
-~02033~^~307~^26.^5^13.^~11~^~JO~^^^3^8.^54.^2^-33.^85.^~2~^~06/01/2008~
-~02033~^~318~^0.^0^^~1~^~AS~^^^^^^^^^^~07/01/2008~
-~02033~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2002~
-~02033~^~320~^0.^0^^~1~^~AS~^^^^^^^^^^~07/01/2008~
-~02033~^~321~^0.^1^^~1~^~A~^^^^^^^^^~1~^~01/01/2003~
-~02033~^~322~^0.^1^^~1~^~A~^^^^^^^^^~1~^~01/01/2003~
-~02033~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~
-~02033~^~334~^0.^1^^~1~^~A~^^^^^^^^^~1~^~01/01/2003~
-~02033~^~337~^0.^1^^~1~^~A~^^^^^^^^^~1~^~01/01/2003~
-~02033~^~338~^0.^1^^~1~^~A~^^^^^^^^^~1~^~01/01/2003~
-~02033~^~417~^82.^1^^~1~^~A~^^^^^^^^^^~06/01/2008~
-~02033~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~
-~02033~^~432~^82.^1^^~1~^~A~^^^^^^^^^^~07/01/2008~
-~02033~^~435~^82.^0^^~4~^~NC~^^^^^^^^^^~07/01/2008~
-~02033~^~601~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/1977~
-~02033~^~638~^7.^1^^~1~^~A~^^^^^^^^^^~05/01/2011~
-~02033~^~639~^29.^1^^~1~^~A~^^^^^^^^^^~05/01/2011~
-~02033~^~641~^109.^1^^~1~^~A~^^^^^^^^^^~05/01/2011~
-~02034~^~208~^307.^0^^~4~^~NC~^^^^^^^^^^~01/01/1977~
-~02034~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~12/01/2001~
-~02034~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~12/01/2001~
-~02034~^~268~^1284.^0^^~4~^^^^^^^^^^^~12/01/2006~
-~02034~^~301~^996.^0^^~1~^^^^^^^^^^^~01/01/1977~
-~02034~^~304~^224.^0^^~1~^^^^^^^^^^^~01/01/1977~
-~02034~^~305~^171.^0^^~1~^^^^^^^^^^^~01/01/1977~
-~02034~^~306~^684.^0^^~1~^^^^^^^^^^^~01/01/1977~
-~02034~^~307~^27.^0^^~1~^^^^^^^^^^^~01/01/1977~
-~02034~^~318~^2632.^0^^~1~^^^^^^^^^^^~01/01/1977~
-~02034~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2002~
-~02034~^~320~^132.^0^^~4~^~NC~^^^^^^^^^^~07/01/2014~
-~02034~^~321~^1568.^0^^~4~^~BNA~^~02044~^^^^^^^^^~02/01/2003~
-~02034~^~322~^0.^0^^~4~^~BNA~^~02044~^^^^^^^^^~02/01/2003~
-~02034~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~
-~02034~^~334~^23.^0^^~4~^~BNA~^~02044~^^^^^^^^^~02/01/2003~
-~02034~^~337~^7.^0^^~4~^~RA~^^^^^^^^^^~07/01/2014~
-~02034~^~338~^1107.^0^^~4~^~RA~^^^^^^^^^^~07/01/2014~
-~02034~^~417~^138.^0^^~4~^^^^^^^^^^^~04/01/1985~
-~02034~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~
-~02034~^~432~^138.^0^^~4~^^^^^^^^^^^~12/01/2006~
-~02034~^~435~^138.^0^^~4~^~NC~^^^^^^^^^^~12/01/2006~
-~02034~^~601~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/1977~
-~02034~^~636~^96.^0^^~1~^^^^^^^^^^^~01/01/1977~
-~02035~^~208~^342.^0^^~4~^~NC~^^^^^^^^^^~01/01/1977~
-~02035~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~12/01/2001~
-~02035~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~12/01/2001~
-~02035~^~268~^1431.^0^^~4~^^^^^^^^^^^~12/01/2006~
-~02035~^~301~^682.^0^^~1~^^^^^^^^^^^~01/01/1977~
-~02035~^~304~^136.^0^^~1~^^^^^^^^^^^~01/01/1977~
-~02035~^~305~^118.^0^^~1~^^^^^^^^^^^~01/01/1977~
-~02035~^~306~^663.^0^^~1~^^^^^^^^^^^~01/01/1977~
-~02035~^~307~^52.^0^^~1~^^^^^^^^^^^~01/01/1977~
-~02035~^~318~^261.^0^^~1~^^^^^^^^^^^~01/01/1977~
-~02035~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2002~
-~02035~^~320~^13.^0^^~1~^^^^^^^^^^^~05/01/2011~
-~02035~^~321~^99.^0^^~4~^~BNA~^~02010~^^^^^^^^^~04/01/2011~
-~02035~^~322~^1.^0^^~4~^~BNA~^~02010~^^^^^^^^^~04/01/2011~
-~02035~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~
-~02035~^~334~^114.^0^^~4~^~BNA~^~02010~^^^^^^^^^~04/01/2011~
-~02035~^~337~^7.^0^^~4~^~RA~^^^^^^^^^^~04/01/2011~
-~02035~^~338~^100.^0^^~4~^~RA~^^^^^^^^^^~04/01/2011~
-~02035~^~417~^24.^0^^~4~^~RA~^^^^^^^^^^~04/01/2011~
-~02035~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~
-~02035~^~432~^24.^0^^~4~^~RA~^^^^^^^^^^~04/01/2011~
-~02035~^~435~^24.^0^^~4~^~NC~^^^^^^^^^^~04/01/2011~
-~02035~^~601~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/1977~
-~02035~^~636~^71.^0^^~1~^^^^^^^^^^^~01/01/1977~
-~02036~^~208~^331.^0^^~4~^~NC~^^^^^^^^^^~01/01/1977~
-~02036~^~268~^1387.^0^^~4~^^^^^^^^^^^
-~02036~^~301~^1280.^4^188.^~1~^^^^^^^^^^^~01/01/1977~
-~02036~^~304~^220.^3^5.^~1~^^^^^^^^^^^~01/01/1977~
-~02036~^~305~^70.^3^20.^~1~^^^^^^^^^^^~01/01/1977~
-~02036~^~306~^955.^5^70.^~1~^^^^^^^^^^^~01/01/1977~
-~02036~^~307~^50.^6^3.^~1~^^^^^^^^^^^~01/01/1977~
-~02036~^~318~^3128.^1^^~1~^^^^^^^^^^^~01/01/1977~
-~02036~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2002~
-~02036~^~320~^156.^1^^~1~^^^^^^^^^^^~07/01/2002~
-~02036~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~
-~02036~^~417~^307.^0^^~4~^~BFSN~^^^^^^^^^^~10/01/1998~
-~02036~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~
-~02036~^~432~^307.^0^^~4~^~BFSN~^^^^^^^^^^~07/01/2002~
-~02036~^~435~^307.^0^^~4~^~NC~^^^^^^^^^^~07/01/2002~
-~02036~^~601~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/1977~
-~02036~^~636~^58.^0^^~1~^^^^^^^^^^^~01/01/1977~
-~02037~^~208~^310.^0^^~4~^~NC~^^^^^^^^^^~01/01/1977~
-~02037~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~12/01/2001~
-~02037~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~12/01/2001~
-~02037~^~268~^1298.^0^^~4~^^^^^^^^^^^
-~02037~^~301~^111.^1^^~1~^^^^^^^^^^^~01/01/1977~
-~02037~^~304~^264.^0^^~4~^^^^^^^^^^^~04/01/1985~
-~02037~^~305~^252.^1^^~1~^^^^^^^^^^^~01/01/1977~
-~02037~^~306~^1724.^3^251.^~1~^^^^^^^^^^^~01/01/1977~
-~02037~^~307~^148.^2^^~1~^^^^^^^^^^^~12/01/2001~
-~02037~^~318~^530.^0^^~4~^^^^^^^^^^^~04/01/1985~
-~02037~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2002~
-~02037~^~320~^27.^0^^~4~^~NC~^^^^^^^^^^~12/01/2001~
-~02037~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~
-~02037~^~417~^93.^0^^~4~^^^^^^^^^^^~04/01/1985~
-~02037~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~
-~02037~^~432~^93.^0^^~4~^^^^^^^^^^^~12/01/2001~
-~02037~^~435~^93.^0^^~4~^~NC~^^^^^^^^^^~12/01/2001~
-~02037~^~601~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/1977~
-~02038~^~208~^315.^0^^~4~^~NC~^^^^^^^^^^~01/01/1977~
-~02038~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2002~
-~02038~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2002~
-~02038~^~268~^1317.^0^^~4~^^^^^^^^^^^~06/01/2009~
-~02038~^~301~^1652.^6^107.^~1~^^^^^^^^^^^~01/01/1977~
-~02038~^~304~^428.^5^19.^~1~^^^^^^^^^^^~01/01/1977~
-~02038~^~305~^91.^4^7.^~1~^^^^^^^^^^^~01/01/1977~
-~02038~^~306~^1070.^7^100.^~1~^^^^^^^^^^^~01/01/1977~
-~02038~^~307~^11.^4^3.^~1~^^^^^^^^^^^~01/01/1977~
-~02038~^~318~^5900.^1^^~1~^^^^^^^^^^^~01/01/1977~
-~02038~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2002~
-~02038~^~320~^295.^0^^~4~^~NC~^^^^^^^^^^~06/01/2009~
-~02038~^~321~^3485.^0^^~4~^~BNA~^^^^^^^^^^~02/01/2003~
-~02038~^~322~^0.^0^^~4~^~BNA~^^^^^^^^^^~02/01/2003~
-~02038~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~
-~02038~^~334~^109.^0^^~4~^~BNA~^^^^^^^^^^~02/01/2003~
-~02038~^~337~^0.^0^^~4~^~BFZN~^~02027~^^^^^^^^^~04/01/2003~
-~02038~^~338~^1895.^0^^~4~^~BFZN~^~02027~^^^^^^^^^~06/01/2009~
-~02038~^~417~^274.^0^^~4~^^^^^^^^^^^~04/01/1985~
-~02038~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~
-~02038~^~432~^274.^0^^~4~^^^^^^^^^^^~06/01/2009~
-~02038~^~435~^274.^0^^~4~^~NC~^^^^^^^^^^~06/01/2009~
-~02038~^~601~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/1977~
-~02038~^~636~^244.^0^^~1~^^^^^^^^^^^~01/01/1977~
-~02039~^~208~^272.^0^^~4~^~NC~^^^^^^^^^^~01/01/1977~
-~02039~^~268~^1138.^0^^~4~^^^^^^^^^^^
-~02039~^~301~^2132.^5^213.^~1~^^^^^^^^^^^~01/01/1977~
-~02039~^~304~^377.^3^18.^~1~^^^^^^^^^^^~01/01/1977~
-~02039~^~305~^140.^3^17.^~1~^^^^^^^^^^^~01/01/1977~
-~02039~^~306~^1051.^5^45.^~1~^^^^^^^^^^^~01/01/1977~
-~02039~^~307~^24.^7^5.^~1~^^^^^^^^^^^~01/01/1977~
-~02039~^~318~^5130.^1^^~1~^^^^^^^^^^^~01/01/1977~
-~02039~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2002~
-~02039~^~320~^257.^1^^~1~^^^^^^^^^^^~03/01/2002~
-~02039~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~
-~02039~^~601~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/1977~
-~02039~^~636~^31.^0^^~1~^^^^^^^^^^^~01/01/1977~
-~02041~^~208~^295.^0^^~4~^~NC~^^^^^^^^^^~01/01/1977~
-~02041~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2002~
-~02041~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2002~
-~02041~^~268~^1236.^0^^~4~^^^^^^^^^^^
-~02041~^~301~^1139.^4^180.^~1~^^^^^^^^^^^~01/01/1977~
-~02041~^~304~^347.^3^64.^~1~^^^^^^^^^^^~01/01/1977~
-~02041~^~305~^313.^3^12.^~1~^^^^^^^^^^^~01/01/1977~
-~02041~^~306~^3020.^6^356.^~1~^^^^^^^^^^^~01/01/1977~
-~02041~^~307~^62.^4^25.^~1~^^^^^^^^^^^~01/01/1977~
-~02041~^~318~^4200.^1^^~1~^^^^^^^^^^^~01/01/1977~
-~02041~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2002~
-~02041~^~320~^210.^1^^~1~^^^^^^^^^^^~03/01/2002~
-~02041~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~
-~02041~^~417~^274.^0^^~4~^^^^^^^^^^^~04/01/1985~
-~02041~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~
-~02041~^~432~^274.^0^^~4~^^^^^^^^^^^~03/01/2002~
-~02041~^~435~^274.^0^^~4~^~NC~^^^^^^^^^^~03/01/2002~
-~02041~^~601~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/1977~
-~02041~^~636~^81.^0^^~1~^^^^^^^^^^^~01/01/1977~
-~02042~^~208~^276.^0^^~4~^~NC~^^^^^^^^^^~01/01/1977~
-~02042~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2002~
-~02042~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2002~
-~02042~^~268~^1156.^0^^~4~^^^^^^^^^^^~06/01/2009~
-~02042~^~301~^1890.^4^196.^~1~^^^^^^^^^^^~01/01/1977~
-~02042~^~304~^220.^4^56.^~1~^^^^^^^^^^^~01/01/1977~
-~02042~^~305~^201.^4^30.^~1~^^^^^^^^^^^~01/01/1977~
-~02042~^~306~^814.^27^47.^~1~^^^^^^^^^^^~01/01/1977~
-~02042~^~307~^55.^10^12.^~1~^^^^^^^^^^^~01/01/1977~
-~02042~^~318~^3800.^1^^~1~^^^^^^^^^^^~01/01/1977~
-~02042~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2002~
-~02042~^~320~^190.^0^^~4~^~NC~^^^^^^^^^^~06/01/2009~
-~02042~^~321~^2264.^0^^~4~^~BNA~^~02044~^^^^^^^^^~02/01/2003~
-~02042~^~322~^0.^0^^~4~^~BNA~^~02044~^^^^^^^^^~02/01/2003~
-~02042~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~
-~02042~^~334~^33.^0^^~4~^~BNA~^~02044~^^^^^^^^^~02/01/2003~
-~02042~^~337~^0.^0^^~4~^~BFZN~^~02027~^^^^^^^^^~04/01/2003~
-~02042~^~338~^1895.^0^^~4~^~BFZN~^~02027~^^^^^^^^^~06/01/2009~
-~02042~^~417~^274.^0^^~4~^^^^^^^^^^^~04/01/1985~
-~02042~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~
-~02042~^~432~^274.^0^^~4~^^^^^^^^^^^~06/01/2009~
-~02042~^~435~^274.^0^^~4~^~NC~^^^^^^^^^^~06/01/2009~
-~02042~^~601~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/1977~
-~02042~^~636~^163.^0^^~1~^^^^^^^^^^^~01/01/1977~
-~02043~^~208~^312.^0^^~4~^~NC~^^^^^^^^^^~04/01/2013~
-~02043~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~
-~02043~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~
-~02043~^~268~^1305.^0^^~4~^~NC~^^^^^^^^^^~04/01/2013~
-~02043~^~301~^168.^1^^~1~^~A~^^^^^^^^^^~04/01/2013~
-~02043~^~304~^208.^1^^~1~^~A~^^^^^^^^^^~04/01/2013~
-~02043~^~305~^299.^1^^~1~^~A~^^^^^^^^^^~04/01/2013~
-~02043~^~306~^2080.^1^^~1~^~A~^^^^^^^^^^~04/01/2013~
-~02043~^~307~^27.^1^^~1~^~A~^^^^^^^^^^~04/01/2013~
-~02043~^~318~^0.^1^^~1~^~A~^^^^^^^^^^~02/01/2003~
-~02043~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2002~
-~02043~^~320~^0.^1^^~1~^~A~^^^^^^^^^^~02/01/2003~
-~02043~^~321~^0.^1^^~1~^~A~^^^^^^^^^~1~^~02/01/2003~
-~02043~^~322~^0.^1^^~1~^~A~^^^^^^^^^~1~^~02/01/2003~
-~02043~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~
-~02043~^~334~^0.^1^^~1~^~A~^^^^^^^^^~1~^~02/01/2003~
-~02043~^~337~^0.^1^^~1~^~A~^^^^^^^^^~1~^~02/01/2003~
-~02043~^~338~^0.^1^^~1~^~A~^^^^^^^^^~1~^~02/01/2003~
-~02043~^~417~^20.^1^^~1~^~A~^^^^^^^^^^~04/01/2013~
-~02043~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~
-~02043~^~432~^20.^1^^~1~^~A~^^^^^^^^^^~04/01/2013~
-~02043~^~435~^20.^0^^~4~^~NC~^^^^^^^^^^~04/01/2013~
-~02043~^~601~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/1977~
-~02044~^~208~^23.^0^^~4~^~NC~^^^^^^^^^^~12/01/2006~
-~02044~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~12/01/2006~
-~02044~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~12/01/2006~
-~02044~^~268~^94.^0^^~4~^~NC~^^^^^^^^^^~12/01/2006~
-~02044~^~301~^177.^3^23.^~1~^~A~^^^2^143.^200.^1^-115.^469.^~2~^~12/01/2006~
-~02044~^~304~^64.^3^17.^~1~^~A~^^^2^47.^82.^1^-153.^281.^~2~^~12/01/2006~
-~02044~^~305~^56.^3^12.^~1~^~A~^^^2^43.^72.^1^-106.^218.^~2~^~12/01/2006~
-~02044~^~306~^295.^3^166.^~1~^~A~^^^2^128.^565.^1^-1824.^2413.^~2~^~12/01/2006~
-~02044~^~307~^4.^2^^~1~^~A~^^^1^3.^4.^^^^^~12/01/2006~
-~02044~^~318~^5275.^0^^~1~^~AS~^^^^^^^^^^~02/01/2003~
-~02044~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2002~
-~02044~^~320~^264.^0^^~1~^~AS~^^^^^^^^^^~02/01/2003~
-~02044~^~321~^3142.^10^1361.^~1~^~A~^^^3^350.^4820.^2^-2714.^8998.^~2~^~02/01/2003~
-~02044~^~322~^0.^6^^~1~^~A~^^^^^^^^^^~12/01/2006~
-~02044~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~
-~02044~^~334~^46.^7^43.^~1~^~A~^^^2^3.^89.^1^-503.^595.^~1, 2~^~02/01/2003~
-~02044~^~337~^0.^6^^~1~^~A~^^^^^^^^^^~12/01/2006~
-~02044~^~338~^5650.^7^1400.^~1~^~A~^^^2^4250.^7050.^1^-12138.^23438.^~2~^~02/01/2003~
-~02044~^~417~^68.^3^4.^~1~^~A~^^^2^57.^73.^1^12.^124.^~2~^~12/01/2006~
-~02044~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~
-~02044~^~432~^68.^3^4.^~1~^~A~^^^2^57.^73.^1^12.^124.^^~12/01/2006~
-~02044~^~435~^68.^0^^~4~^~NC~^^^^^^^^^^~03/01/2007~
-~02044~^~601~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/1977~
-~02045~^~208~^43.^0^^~4~^~NC~^^^^^^^^^^~01/01/1977~
-~02045~^~268~^180.^0^^~4~^^^^^^^^^^^
-~02045~^~301~^208.^2^^~1~^^^^^^^^^^^~01/01/1977~
-~02045~^~304~^55.^2^^~1~^^^^^^^^^^^~01/01/1977~
-~02045~^~305~^66.^2^^~1~^^^^^^^^^^^~01/01/1977~
-~02045~^~306~^738.^2^^~1~^^^^^^^^^^^~01/01/1977~
-~02045~^~307~^61.^2^^~1~^^^^^^^^^^^~01/01/1977~
-~02045~^~318~^7718.^0^^~1~^^^^^^^^^^^~01/01/1977~
-~02045~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2002~
-~02045~^~320~^386.^0^^~1~^^^^^^^^^^^~06/01/2002~
-~02045~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~
-~02045~^~417~^150.^2^^~1~^^^^^^^^^^^~01/01/1977~
-~02045~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~
-~02045~^~432~^150.^2^^~1~^^^^^^^^^^^~01/01/1977~
-~02045~^~435~^150.^0^^~4~^~NC~^^^^^^^^^^~06/01/2003~
-~02045~^~601~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/1977~
-~02046~^~208~^60.^0^^~4~^~NC~^^^^^^^^^^~04/01/2014~
-~02046~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/1999~
-~02046~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/1999~
-~02046~^~268~^253.^0^^~4~^~NC~^^^^^^^^^^~04/01/2014~
-~02046~^~301~^63.^18^0.^~1~^~A~^^^3^58.^74.^6^61.^63.^~2, 3~^~04/01/2014~
-~02046~^~304~^48.^18^0.^~1~^~A~^^^3^45.^51.^10^47.^48.^~2, 3~^~04/01/2014~
-~02046~^~305~^108.^18^1.^~1~^~A~^^^3^99.^129.^9^105.^110.^~2, 3~^~04/01/2014~
-~02046~^~306~^152.^18^5.^~1~^~A~^^^3^133.^184.^8^140.^164.^~2, 3~^~04/01/2014~
-~02046~^~307~^1104.^12^22.^~1~^~A~^^^1^1000.^1270.^7^1050.^1156.^~2, 3~^~04/01/2014~
-~02046~^~318~^109.^3^5.^~1~^~A~^^^1^102.^124.^1^45.^172.^~2, 3~^~04/01/2014~
-~02046~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2002~
-~02046~^~320~^5.^3^0.^~1~^~A~^^^1^5.^6.^1^2.^8.^~2, 3~^~04/01/2014~
-~02046~^~321~^51.^3^2.^~1~^~A~^^^1^48.^58.^1^22.^79.^~2, 3~^~04/01/2014~
-~02046~^~322~^1.^3^0.^~1~^~A~^^^1^1.^2.^1^0.^3.^~2, 3~^~04/01/2014~
-~02046~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~
-~02046~^~334~^27.^3^1.^~1~^~A~^^^1^24.^32.^1^6.^47.^~2, 3~^~04/01/2014~
-~02046~^~337~^0.^3^0.^~1~^~A~^^^1^0.^0.^^^^~1, 2, 3~^~04/01/2006~
-~02046~^~338~^113.^3^7.^~1~^~A~^^^1^106.^133.^1^23.^203.^~2, 3~^~04/01/2014~
-~02046~^~417~^7.^4^0.^~1~^~A~^^^2^7.^8.^1^5.^9.^~2, 3~^~04/01/2006~
-~02046~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~
-~02046~^~432~^7.^4^0.^~1~^~A~^^^2^7.^8.^1^5.^9.^^~11/01/2006~
-~02046~^~435~^7.^0^^~4~^~NC~^^^^^^^^^^~11/01/2006~
-~02046~^~601~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/1985~
-~02047~^~208~^0.^0^^~4~^~NC~^^^^^^^^^^~01/01/1977~
-~02047~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~10/01/2002~
-~02047~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~10/01/2002~
-~02047~^~268~^0.^0^^~4~^^^^^^^^^^^~02/01/2006~
-~02047~^~301~^24.^3^11.^~1~^^^^^^^^^^^~01/01/1977~
-~02047~^~304~^1.^3^0.^~1~^^^^^^^^^^^~01/01/1977~
-~02047~^~305~^0.^1^^~1~^^^^^^^^^^^~01/01/1977~
-~02047~^~306~^8.^3^1.^~1~^^^^^^^^^^^~01/01/1977~
-~02047~^~307~^38758.^1^^~1~^^^^^^^^^^^~01/01/1977~
-~02047~^~318~^0.^1^^~1~^^^^^^^^^^^~01/01/1977~
-~02047~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2002~
-~02047~^~320~^0.^0^^~1~^~AS~^^^^^^^^^^~02/01/2006~
-~02047~^~321~^0.^0^^~7~^~Z~^^^^^^^^^^~10/01/2002~
-~02047~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~10/01/2002~
-~02047~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~
-~02047~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~10/01/2002~
-~02047~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~10/01/2002~
-~02047~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~10/01/2002~
-~02047~^~417~^0.^0^^~4~^^^^^^^^^^^~01/01/1977~
-~02047~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~
-~02047~^~432~^0.^0^^~4~^^^^^^^^^^^~02/01/2006~
-~02047~^~435~^0.^0^^~4~^~NC~^^^^^^^^^^~11/01/2006~
-~02047~^~601~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/1977~
-~02047~^~636~^0.^0^^~1~^^^^^^^^^^^~01/01/1977~
-~02048~^~208~^21.^0^^~4~^~NR~^^^^^^^^^^~03/01/2005~
-~02048~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~12/01/2002~
-~02048~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~12/01/2002~
-~02048~^~268~^90.^0^^~4~^~NR~^^^^^^^^^^~03/01/2005~
-~02048~^~301~^7.^4^0.^~6~^~JA~^^^2^5.^8.^2^6.^7.^~2, 3~^~03/01/2005~
-~02048~^~304~^5.^3^0.^~1~^~A~^^^1^4.^5.^2^2.^7.^~2, 3~^~02/01/2005~
-~02048~^~305~^8.^3^0.^~1~^~A~^^^1^8.^8.^2^6.^9.^~2, 3~^~02/01/2005~
-~02048~^~306~^73.^4^5.^~6~^~JA~^^^2^59.^93.^1^1.^144.^~2~^~03/01/2005~
-~02048~^~307~^5.^4^0.^~6~^~JA~^^^2^5.^8.^1^-5.^16.^~2~^~03/01/2005~
-~02048~^~318~^0.^1^^~1~^^^^^^^^^^^~01/01/1977~
-~02048~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2002~
-~02048~^~320~^0.^0^^~1~^~AS~^^^^^^^^^^~03/01/2005~
-~02048~^~321~^0.^0^^~7~^~Z~^^^^^^^^^^~12/01/2002~
-~02048~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~12/01/2002~
-~02048~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~
-~02048~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~12/01/2002~
-~02048~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~12/01/2002~
-~02048~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~12/01/2002~
-~02048~^~417~^0.^1^^~1~^^^^^^^^^^^~01/01/1977~
-~02048~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~
-~02048~^~432~^0.^1^^~1~^^^^^^^^^^^~03/01/2005~
-~02048~^~435~^0.^0^^~4~^~NC~^^^^^^^^^^~11/01/2006~
-~02048~^~601~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/1977~
-~02048~^~636~^0.^0^^~1~^^^^^^^^^^^~01/01/1977~
-~02049~^~208~^101.^0^^~4~^~NC~^^^^^^^^^^~01/01/1977~
-~02049~^~268~^423.^0^^~4~^^^^^^^^^^^
-~02049~^~301~^405.^2^^~1~^^^^^^^^^^^~01/01/1977~
-~02049~^~304~^160.^2^^~1~^^^^^^^^^^^~01/01/1977~
-~02049~^~305~^106.^2^^~1~^^^^^^^^^^^~01/01/1977~
-~02049~^~306~^609.^2^^~1~^^^^^^^^^^^~01/01/1977~
-~02049~^~307~^9.^2^^~1~^^^^^^^^^^^~01/01/1977~
-~02049~^~318~^4751.^2^^~1~^~A~^^^^^^^^^^~05/01/2003~
-~02049~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2002~
-~02049~^~320~^238.^2^^~1~^~A~^^^^^^^^^^~05/01/2003~
-~02049~^~321~^2851.^2^^~1~^~A~^^^^^^^^^^~05/01/2003~
-~02049~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~
-~02049~^~417~^45.^2^^~1~^^^^^^^^^^^~01/01/1977~
-~02049~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~
-~02049~^~432~^45.^2^^~1~^^^^^^^^^^^~05/01/2003~
-~02049~^~435~^45.^0^^~4~^~NC~^^^^^^^^^^~06/01/2003~
-~02049~^~601~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/1977~
-~02050~^~208~^288.^0^^~4~^~NC~^^^^^^^^^^~01/01/1977~
-~02050~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~09/01/2002~
-~02050~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~09/01/2002~
-~02050~^~268~^1205.^0^^~4~^^^^^^^^^^^
-~02050~^~301~^11.^4^0.^~1~^^^^^^^^^^^~01/01/1977~
-~02050~^~304~^12.^4^1.^~1~^^^^^^^^^^^~01/01/1977~
-~02050~^~305~^6.^4^0.^~1~^^^^^^^^^^^~01/01/1977~
-~02050~^~306~^148.^4^31.^~1~^^^^^^^^^^^~01/01/1977~
-~02050~^~307~^9.^4^3.^~1~^^^^^^^^^^^~01/01/1977~
-~02050~^~318~^0.^2^^~1~^^^^^^^^^^^~01/01/1977~
-~02050~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2002~
-~02050~^~320~^0.^0^^~1~^~AS~^^^^^^^^^^~09/01/2002~
-~02050~^~321~^0.^0^^~7~^~Z~^^^^^^^^^^~09/01/2002~
-~02050~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~09/01/2002~
-~02050~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~
-~02050~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~09/01/2002~
-~02050~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~09/01/2002~
-~02050~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~09/01/2002~
-~02050~^~417~^0.^2^^~1~^^^^^^^^^^^~01/01/1977~
-~02050~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~
-~02050~^~432~^0.^2^^~1~^^^^^^^^^^^~09/01/2002~
-~02050~^~435~^0.^0^^~4~^~NC~^^^^^^^^^^~10/01/2002~
-~02050~^~601~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/1977~
-~02051~^~208~^237.^0^^~4~^~NC~^^^^^^^^^^~01/01/1977~
-~02051~^~268~^992.^0^^~4~^^^^^^^^^^^
-~02051~^~301~^0.^1^^~1~^^^^^^^^^^^~01/01/1977~
-~02051~^~304~^5.^1^^~1~^^^^^^^^^^^~01/01/1977~
-~02051~^~305~^22.^1^^~1~^^^^^^^^^^^~01/01/1977~
-~02051~^~306~^98.^1^^~1~^^^^^^^^^^^~01/01/1977~
-~02051~^~307~^4.^1^^~1~^^^^^^^^^^^~01/01/1977~
-~02051~^~318~^0.^0^^~1~^^^^^^^^^^^~01/01/1977~
-~02051~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2002~
-~02051~^~320~^0.^0^^~1~^^^^^^^^^^^~06/01/2002~
-~02051~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~
-~02051~^~417~^0.^0^^~1~^^^^^^^^^^^~01/01/1977~
-~02051~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~
-~02051~^~432~^0.^0^^~1~^^^^^^^^^^^~01/01/1977~
-~02051~^~435~^0.^0^^~4~^~NC~^^^^^^^^^^~01/01/2001~
-~02051~^~601~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/1977~
-~02052~^~208~^56.^0^^~4~^~NC~^^^^^^^^^^~01/01/1977~
-~02052~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~10/01/2002~
-~02052~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~10/01/2002~
-~02052~^~268~^234.^0^^~4~^^^^^^^^^^^~04/01/2005~
-~02052~^~301~^3.^1^^~1~^^^^^^^^^^^~01/01/1977~
-~02052~^~304~^1.^1^^~1~^^^^^^^^^^^~01/01/1977~
-~02052~^~305~^0.^1^^~1~^^^^^^^^^^^~01/01/1977~
-~02052~^~306~^0.^1^^~1~^^^^^^^^^^^~01/01/1977~
-~02052~^~307~^3.^1^^~1~^^^^^^^^^^^~01/01/1977~
-~02052~^~318~^0.^0^^~1~^^^^^^^^^^^~01/01/1977~
-~02052~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2002~
-~02052~^~320~^0.^0^^~1~^~AS~^^^^^^^^^^~10/01/2002~
-~02052~^~321~^0.^0^^~7~^~Z~^^^^^^^^^^~10/01/2002~
-~02052~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~10/01/2002~
-~02052~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~
-~02052~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~10/01/2002~
-~02052~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~10/01/2002~
-~02052~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~10/01/2002~
-~02052~^~417~^0.^0^^~1~^^^^^^^^^^^~01/01/1977~
-~02052~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~
-~02052~^~432~^0.^0^^~1~^^^^^^^^^^^~10/01/2002~
-~02052~^~435~^0.^0^^~4~^~NC~^^^^^^^^^^~11/01/2006~
-~02052~^~601~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/1977~
-~02053~^~208~^18.^0^^~4~^~NR~^^^^^^^^^^~03/01/2005~
-~02053~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~12/01/2002~
-~02053~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~12/01/2002~
-~02053~^~268~^76.^0^^~4~^~NR~^^^^^^^^^^~03/01/2005~
-~02053~^~301~^6.^4^2.^~6~^~JA~^^^2^3.^8.^1^-21.^33.^~2~^~03/01/2005~
-~02053~^~304~^1.^3^0.^~1~^~A~^^^1^1.^1.^2^0.^1.^~2, 3~^~01/01/2005~
-~02053~^~305~^4.^3^0.^~1~^~A~^^^1^4.^4.^2^3.^4.^~2, 3~^~01/01/2005~
-~02053~^~306~^2.^4^0.^~6~^~JA~^^^2^1.^3.^1^0.^3.^~2~^~03/01/2005~
-~02053~^~307~^2.^4^0.^~6~^~JA~^^^2^1.^3.^1^-4.^8.^~2~^~03/01/2005~
-~02053~^~318~^0.^0^^~1~^^^^^^^^^^^~03/01/2005~
-~02053~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~12/01/2002~
-~02053~^~320~^0.^0^^~1~^~AS~^^^^^^^^^^~03/01/2005~
-~02053~^~321~^0.^0^^~7~^~Z~^^^^^^^^^^~12/01/2002~
-~02053~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~12/01/2002~
-~02053~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~
-~02053~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~12/01/2002~
-~02053~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~12/01/2002~
-~02053~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~12/01/2002~
-~02053~^~417~^0.^0^^~1~^^^^^^^^^^^~03/01/2005~
-~02053~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~12/01/2002~
-~02053~^~432~^0.^0^^~1~^^^^^^^^^^^~03/01/2005~
-~02053~^~435~^0.^0^^~4~^~NC~^^^^^^^^^^~11/01/2006~
-~02053~^~601~^0.^0^^~7~^^^^^^^^^^^~03/01/2005~
-~02054~^~208~^23.^0^^~4~^~NC~^^^^^^^^^^~04/01/1994~
-~02054~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2001~
-~02054~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2001~
-~02054~^~268~^96.^0^^~4~^^^^^^^^^^^~11/01/2006~
-~02054~^~301~^40.^2^^~1~^~A~^^^^^^^^^^~04/01/1994~
-~02054~^~304~^33.^2^^~1~^~A~^^^^^^^^^^~04/01/1994~
-~02054~^~305~^10.^2^^~1~^~A~^^^^^^^^^^~04/01/1994~
-~02054~^~306~^40.^2^^~1~^~A~^^^^^^^^^^~04/01/1994~
-~02054~^~307~^2348.^0^^~8~^~LC~^^^^^^^^^^~05/01/2014~
-~02054~^~318~^138.^2^^~1~^~A~^^^^^^^^^^~02/01/2003~
-~02054~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2002~
-~02054~^~320~^7.^2^^~1~^~A~^^^^^^^^^^~02/01/2003~
-~02054~^~321~^83.^2^^~1~^~A~^^^^^^^^^^~02/01/2003~
-~02054~^~322~^0.^2^^~1~^~A~^^^^^^^^^^~02/01/2003~
-~02054~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~
-~02054~^~334~^0.^2^^~1~^~A~^^^^^^^^^^~02/01/2003~
-~02054~^~337~^0.^0^^~4~^~BFSN~^~02011~^^^^^^^^^~02/01/2003~
-~02054~^~338~^0.^0^^~4~^~BFSN~^~02011~^^^^^^^^^~02/01/2003~
-~02054~^~417~^23.^2^^~1~^~A~^^^^^^^^^^~04/01/1994~
-~02054~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~
-~02054~^~432~^23.^2^^~1~^~A~^^^^^^^^^^~11/01/2006~
-~02054~^~435~^23.^0^^~4~^~NC~^^^^^^^^^^~11/01/2006~
-~02054~^~601~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/1994~
-~02054~^~636~^48.^1^^~1~^~A~^^^^^^^^^^~03/01/1998~
-~02055~^~208~^48.^0^^~4~^~NC~^^^^^^^^^^~03/01/1998~
-~02055~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2001~
-~02055~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2001~
-~02055~^~268~^201.^0^^~4~^^^^^^^^^^^~11/01/2006~
-~02055~^~301~^56.^2^^~1~^~A~^^^^^^^^^^~05/01/1994~
-~02055~^~304~^27.^2^^~1~^~A~^^^^^^^^^^~05/01/1994~
-~02055~^~305~^31.^2^^~1~^~A~^^^^^^^^^^~05/01/1994~
-~02055~^~306~^246.^2^^~1~^~A~^^^^^^^^^^~05/01/1994~
-~02055~^~307~^420.^0^^~8~^~LC~^^^^^^^^^^~07/01/2012~
-~02055~^~318~^2.^2^^~1~^~A~^^^^^^^^^^~12/01/1997~
-~02055~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2002~
-~02055~^~320~^0.^0^^~4~^~NC~^^^^^^^^^^~11/01/2006~
-~02055~^~321~^1.^0^^~4~^~O~^^^^^^^^^^~01/01/2003~
-~02055~^~322~^0.^2^^~1~^~A~^^^^^^^^^^~01/01/2003~
-~02055~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~
-~02055~^~334~^0.^2^^~1~^~A~^^^^^^^^^^~01/01/2003~
-~02055~^~337~^0.^0^^~4~^~BFZN~^~11429~^^^^^^^^^~01/01/2003~
-~02055~^~338~^10.^0^^~4~^~BFZN~^~11429~^^^^^^^^^~01/01/2003~
-~02055~^~417~^57.^2^^~1~^~A~^^^^^^^^^^~05/01/1994~
-~02055~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~
-~02055~^~432~^57.^2^^~1~^~A~^^^^^^^^^^~11/01/2006~
-~02055~^~435~^57.^0^^~4~^~NC~^^^^^^^^^^~11/01/2006~
-~02055~^~601~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/1985~
-~02055~^~636~^9.^1^^~1~^~A~^^^^^^^^^^~03/01/1998~
-~02063~^~208~^131.^0^^~4~^~NC~^^^^^^^^^^~04/01/1996~
-~02063~^~268~^548.^0^^~4~^^^^^^^^^^^
-~02063~^~301~^317.^2^^~1~^~A~^^^^^^^^^^~04/01/1996~
-~02063~^~304~^91.^2^^~1~^~A~^^^^^^^^^^~04/01/1996~
-~02063~^~305~^66.^2^^~1~^~A~^^^^^^^^^^~04/01/1996~
-~02063~^~306~^668.^2^^~1~^~A~^^^^^^^^^^~04/01/1996~
-~02063~^~307~^26.^2^^~1~^~A~^^^^^^^^^^~04/01/1996~
-~02063~^~318~^2924.^1^^~1~^~A~^^^^^^^^^^~04/01/1996~
-~02063~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2002~
-~02063~^~320~^146.^1^^~1~^~A~^^^^^^^^^^~06/01/2002~
-~02063~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~
-~02063~^~417~^109.^2^^~1~^~A~^^^^^^^^^^~04/01/1996~
-~02063~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~
-~02063~^~432~^109.^2^^~1~^~A~^^^^^^^^^^~04/01/1996~
-~02063~^~435~^109.^0^^~4~^~NC~^^^^^^^^^^~04/01/2001~
-~02063~^~601~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/1996~
-~02063~^~636~^44.^0^^~1~^^^^^^^^^^^~04/01/1996~
-~02064~^~208~^70.^0^^~4~^~NC~^^^^^^^^^^~04/01/1996~
-~02064~^~268~^293.^0^^~4~^^^^^^^^^^^
-~02064~^~301~^243.^2^^~1~^~A~^^^^^^^^^^~04/01/1996~
-~02064~^~304~^80.^2^^~1~^~A~^^^^^^^^^^~04/01/1996~
-~02064~^~305~^73.^2^^~1~^~A~^^^^^^^^^^~04/01/1996~
-~02064~^~306~^569.^2^^~1~^~A~^^^^^^^^^^~04/01/1996~
-~02064~^~307~^31.^2^^~1~^~A~^^^^^^^^^^~04/01/1996~
-~02064~^~318~^4248.^2^^~1~^~A~^^^^^^^^^^~04/01/1996~
-~02064~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2002~
-~02064~^~320~^212.^2^^~1~^~A~^^^^^^^^^^~06/01/2002~
-~02064~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~
-~02064~^~417~^114.^2^^~1~^~A~^^^^^^^^^^~04/01/1996~
-~02064~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~
-~02064~^~432~^114.^2^^~1~^~A~^^^^^^^^^^~04/01/1996~
-~02064~^~435~^114.^0^^~4~^~NC~^^^^^^^^^^~03/01/2001~
-~02064~^~601~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/1996~
-~02064~^~636~^13.^0^^~1~^^^^^^^^^^^~04/01/1996~
-~02065~^~208~^44.^0^^~4~^~NC~^^^^^^^^^^~04/01/1996~
-~02065~^~268~^184.^0^^~4~^~NC~^^^^^^^^^^~05/01/2010~
-~02065~^~301~^199.^2^^~1~^~A~^^^^^^^^^^~04/01/1996~
-~02065~^~304~^63.^2^^~1~^~A~^^^^^^^^^^~04/01/1996~
-~02065~^~305~^60.^2^^~1~^~A~^^^^^^^^^^~04/01/1996~
-~02065~^~306~^458.^2^^~1~^~A~^^^^^^^^^^~04/01/1996~
-~02065~^~307~^30.^2^^~1~^~A~^^^^^^^^^^~04/01/1996~
-~02065~^~318~^4054.^2^^~1~^~A~^^^^^^^^^^~04/01/1996~
-~02065~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2002~
-~02065~^~320~^203.^2^^~1~^~A~^^^^^^^^^^~06/01/2002~
-~02065~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~
-~02065~^~417~^105.^2^^~1~^~A~^^^^^^^^^^~04/01/1996~
-~02065~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~
-~02065~^~432~^105.^2^^~1~^~A~^^^^^^^^^^~04/01/1996~
-~02065~^~435~^105.^0^^~4~^~NC~^^^^^^^^^^~03/01/2001~
-~02065~^~601~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/1996~
-~02065~^~636~^10.^0^^~1~^^^^^^^^^^^~04/01/1996~
-~02066~^~208~^285.^0^^~4~^~NC~^^^^^^^^^^~04/01/1996~
-~02066~^~268~^1192.^0^^~4~^^^^^^^^^^^
-~02066~^~301~^1488.^1^^~1~^~A~^^^^^^^^^^~04/01/1996~
-~02066~^~304~^602.^1^^~1~^~A~^^^^^^^^^^~04/01/1996~
-~02066~^~305~^276.^1^^~1~^~A~^^^^^^^^^^~04/01/1996~
-~02066~^~306~^1924.^1^^~1~^~A~^^^^^^^^^^~04/01/1996~
-~02066~^~307~^344.^1^^~1~^~A~^^^^^^^^^^~04/01/1996~
-~02066~^~318~^10579.^1^^~1~^~A~^^^^^^^^^^~04/01/1996~
-~02066~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2002~
-~02066~^~320~^529.^1^^~1~^~A~^^^^^^^^^^~06/01/2002~
-~02066~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~
-~02066~^~417~^530.^1^^~1~^~A~^^^^^^^^^^~04/01/1996~
-~02066~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~
-~02066~^~432~^530.^1^^~1~^~A~^^^^^^^^^^~04/01/1996~
-~02066~^~435~^530.^0^^~4~^~NC~^^^^^^^^^^~03/01/2001~
-~02066~^~601~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/1996~
-~02066~^~636~^82.^1^^~1~^^^^^^^^^^^~04/01/1996~
-~02068~^~208~^19.^0^^~4~^~NC~^^^^^^^^^^~03/01/2006~
-~02068~^~268~^79.^0^^~4~^~NC~^^^^^^^^^^~03/01/2006~
-~02068~^~301~^6.^6^1.^~6~^~JA~^^^3^4.^10.^2^1.^11.^~2~^~03/01/2006~
-~02068~^~304~^4.^4^1.^~1~^~A~^^^2^1.^5.^1^-12.^19.^~2~^~03/01/2006~
-~02068~^~305~^8.^4^1.^~1~^~A~^^^2^7.^12.^1^-8.^25.^~2~^~03/01/2006~
-~02068~^~306~^39.^5^11.^~6~^~JA~^^^3^18.^59.^2^-10.^88.^~2~^~03/01/2006~
-~02068~^~307~^8.^6^1.^~6~^~JA~^^^3^3.^10.^2^2.^13.^~2~^~03/01/2006~
-~02068~^~318~^0.^1^^~12~^~MA~^^^^^^^^^~1~^~03/01/2006~
-~02068~^~320~^0.^0^^~4~^~NC~^^^^^^^^^^~03/01/2006~
-~02069~^~208~^88.^0^^~4~^~NC~^^^^^^^^^^~05/01/2006~
-~02069~^~268~^369.^0^^~4~^~NC~^^^^^^^^^^~05/01/2006~
-~02069~^~301~^27.^4^3.^~6~^~JA~^^^2^21.^31.^1^-12.^67.^~2~^~02/01/2006~
-~02069~^~304~^12.^3^2.^~1~^~A~^^^1^8.^16.^2^2.^21.^~2, 3~^~02/01/2006~
-~02069~^~305~^19.^3^4.^~1~^~A~^^^1^9.^26.^2^-2.^40.^~2, 3~^~02/01/2006~
-~02069~^~306~^112.^6^20.^~6~^~JA~^^^3^80.^176.^2^25.^198.^~2~^~03/01/2006~
-~02069~^~307~^23.^4^2.^~6~^~JA~^^^2^9.^31.^1^-11.^56.^~2~^~02/01/2006~
-~02069~^~318~^0.^1^^~12~^~MA~^^^^^^^^^~1~^~03/01/2006~
-~02069~^~320~^0.^0^^~4~^~NC~^^^^^^^^^^~05/01/2006~
-~02074~^~208~^0.^0^^~8~^~LC~^^^^^^^^^^~03/01/2013~
-~02074~^~268~^0.^0^^~8~^~LC~^^^^^^^^^^~03/01/2013~
-~02074~^~301~^0.^0^^~8~^~LC~^^^^^^^^^^~03/01/2013~
-~02074~^~307~^17000.^0^^~8~^~LC~^^^^^^^^^^~03/01/2013~
-~02074~^~318~^0.^0^^~8~^~LC~^^^^^^^^^^~03/01/2013~
-~02074~^~601~^0.^0^^~8~^~LC~^^^^^^^^^^~03/01/2013~
-~02075~^~208~^322.^0^^~8~^~LC~^^^^^^^^^^~03/01/2013~
-~02075~^~268~^1346.^0^^~8~^~LC~^^^^^^^^^^~03/01/2013~
-~02075~^~301~^0.^0^^~8~^~LC~^^^^^^^^^^~03/01/2013~
-~02075~^~306~^1000.^0^^~8~^~LC~^^^^^^^^^^~03/01/2013~
-~02075~^~307~^7203.^0^^~8~^~LC~^^^^^^^^^^~03/01/2013~
-~02075~^~318~^3744.^0^^~8~^~LC~^^^^^^^^^^~03/01/2013~
-~02075~^~417~^0.^0^^~8~^~LC~^^^^^^^^^^~03/01/2013~
-~02075~^~432~^0.^0^^~8~^~LC~^^^^^^^^^^~03/01/2013~
-~02075~^~601~^0.^0^^~8~^~LC~^^^^^^^^^^~03/01/2013~
-~02076~^~208~^335.^0^^~8~^~LC~^^^^^^^^^^~03/01/2013~
-~02076~^~268~^1404.^0^^~8~^~LC~^^^^^^^^^^~03/01/2013~
-~02076~^~301~^0.^0^^~8~^~LC~^^^^^^^^^^~03/01/2013~
-~02076~^~307~^4616.^0^^~8~^~LC~^^^^^^^^^^~03/01/2013~
-~02076~^~318~^2816.^0^^~8~^~LC~^^^^^^^^^^~03/01/2013~
-~02076~^~601~^0.^0^^~8~^~LC~^^^^^^^^^^~03/01/2013~
-~03000~^~208~^416.^0^^~4~^~NC~^^^^^^^^^^~01/01/2017~
-~03000~^~262~^1.^0^^~4~^~FLC~^^^^^^^^^^~02/01/2015~
-~03000~^~263~^9.^0^^~4~^~FLC~^^^^^^^^^^~08/01/2015~
-~03000~^~268~^1739.^0^^~4~^~NC~^^^^^^^^^^~01/01/2017~
-~03000~^~301~^444.^0^^~8~^~LC~^^^^^^^^^^~08/01/2015~
-~03000~^~304~^82.^0^^~4~^~FLC~^^^^^^^^^^~08/01/2015~
-~03000~^~305~^244.^0^^~4~^~FLC~^^^^^^^^^^~08/01/2015~
-~03000~^~306~^333.^0^^~8~^~LC~^^^^^^^^^^~08/01/2015~
-~03000~^~307~^375.^0^^~4~^~FLC~^^^^^^^^^^~02/01/2015~
-~03000~^~318~^7.^0^^~4~^~NC~^^^^^^^^^^~08/01/2015~
-~03000~^~319~^0.^0^^~4~^~FLC~^^^^^^^^^^~02/01/2015~
-~03000~^~320~^0.^0^^~4~^~NC~^^^^^^^^^^~02/01/2015~
-~03000~^~321~^4.^0^^~4~^~FLC~^^^^^^^^^^~08/01/2015~
-~03000~^~322~^0.^0^^~4~^~FLC~^^^^^^^^^^~02/01/2015~
-~03000~^~324~^0.^0^^~4~^~FLC~^^^^^^^^^^~02/01/2015~
-~03000~^~334~^0.^0^^~4~^~FLC~^^^^^^^^^^~02/01/2015~
-~03000~^~337~^0.^0^^~4~^~FLC~^^^^^^^^^^~02/01/2015~
-~03000~^~338~^61.^0^^~4~^~FLC~^^^^^^^^^^~08/01/2015~
-~03000~^~417~^20.^0^^~4~^~FLC~^^^^^^^^^^~08/01/2015~
-~03000~^~431~^16.^0^^~4~^~NR~^^^^^^^^^^~04/01/2016~
-~03000~^~432~^4.^0^^~4~^~NR~^^^^^^^^^^~04/01/2016~
-~03000~^~435~^31.^0^^~4~^~NC~^^^^^^^^^^~04/01/2016~
-~03000~^~601~^0.^0^^~4~^~FLC~^^^^^^^^^^~02/01/2015~
-~03000~^~636~^7.^0^^~4~^~FLC~^^^^^^^^^^~08/01/2015~
-~03000~^~638~^1.^0^^~4~^~FLC~^^^^^^^^^^~02/01/2015~
-~03000~^~639~^1.^0^^~4~^~FLC~^^^^^^^^^^~08/01/2015~
-~03000~^~641~^2.^0^^~4~^~FLC~^^^^^^^^^^~08/01/2015~
-~03001~^~208~^347.^0^^~4~^~NC~^^^^^^^^^^~04/01/2009~
-~03001~^~262~^0.^0^^~4~^~FLC~^^^^^^^^^^~04/01/2009~
-~03001~^~263~^0.^0^^~4~^~FLC~^^^^^^^^^^~04/01/2009~
-~03001~^~268~^1454.^0^^~4~^~NC~^^^^^^^^^^~04/01/2009~
-~03001~^~301~^12.^0^^~4~^~FLC~^^^^^^^^^^~04/01/2009~
-~03001~^~304~^7.^0^^~4~^~FLC~^^^^^^^^^^~04/01/2009~
-~03001~^~305~^9.^0^^~4~^~FLC~^^^^^^^^^^~04/01/2009~
-~03001~^~306~^54.^0^^~4~^~FLC~^^^^^^^^^^~04/01/2009~
-~03001~^~307~^89.^0^^~4~^~FLC~^^^^^^^^^^~04/01/2009~
-~03001~^~318~^2.^0^^~4~^~NC~^^^^^^^^^^~04/01/2009~
-~03001~^~319~^0.^0^^~4~^~FLC~^^^^^^^^^^~04/01/2009~
-~03001~^~320~^0.^0^^~4~^~NC~^^^^^^^^^^~05/01/2009~
-~03001~^~321~^1.^0^^~4~^~FLC~^^^^^^^^^^~04/01/2009~
-~03001~^~322~^0.^0^^~4~^~FLC~^^^^^^^^^^~04/01/2009~
-~03001~^~324~^0.^0^^~4~^~FLC~^^^^^^^^^^~04/01/2009~
-~03001~^~334~^0.^0^^~4~^~FLC~^^^^^^^^^^~04/01/2009~
-~03001~^~337~^0.^0^^~4~^~FLC~^^^^^^^^^^~04/01/2009~
-~03001~^~338~^2.^0^^~4~^~FLC~^^^^^^^^^^~04/01/2009~
-~03001~^~417~^1.^0^^~4~^~FLC~^^^^^^^^^^~04/01/2009~
-~03001~^~431~^0.^0^^~4~^~FLC~^^^^^^^^^^~04/01/2009~
-~03001~^~432~^1.^0^^~4~^~FLC~^^^^^^^^^^~04/01/2009~
-~03001~^~435~^1.^0^^~4~^~NC~^^^^^^^^^^~05/01/2009~
-~03001~^~601~^0.^0^^~4~^~FLC~^^^^^^^^^^~04/01/2009~
-~03002~^~208~^81.^0^^~4~^~NC~^^^^^^^^^^~07/01/2007~
-~03002~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~
-~03002~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~
-~03002~^~268~^337.^0^^~4~^~NC~^^^^^^^^^^~07/01/2007~
-~03002~^~301~^5.^2^^~1~^~A~^^^1^4.^5.^1^^^^~03/01/2007~
-~03002~^~304~^11.^2^^~1~^~A~^^^1^10.^11.^1^^^^~03/01/2007~
-~03002~^~305~^93.^4^8.^~6~^~JA~^^^2^84.^110.^2^56.^129.^~4~^~03/01/2007~
-~03002~^~306~^187.^17^17.^~6~^~JA~^^^2^160.^220.^2^110.^262.^~4~^~03/01/2007~
-~03002~^~307~^41.^0^^~8~^~LC~^^^^^^^^^^~07/01/2010~
-~03002~^~318~^0.^0^^~4~^~NC~^^^^^^^^^^~07/01/2007~
-~03002~^~319~^0.^0^^~4~^~T~^^^^^^^^^^~02/01/2003~
-~03002~^~320~^0.^0^^~4~^~NC~^^^^^^^^^^~07/01/2007~
-~03002~^~321~^0.^0^^~7~^~Z~^^^^^^^^^^~10/01/2002~
-~03002~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~10/01/2002~
-~03002~^~324~^15.^1^^~1~^~A~^^^^^^^^^~1~^~03/01/2007~
-~03002~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~10/01/2002~
-~03002~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~10/01/2002~
-~03002~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~10/01/2002~
-~03002~^~417~^8.^2^^~1~^~A~^^^1^5.^11.^1^^^^~03/01/2007~
-~03002~^~431~^0.^2^^~1~^~A~^^^1^0.^0.^^^^~1~^~03/01/2007~
-~03002~^~432~^8.^0^^~1~^~AS~^^^^^^^^^^~03/01/2007~
-~03002~^~435~^8.^0^^~4~^~NC~^^^^^^^^^^~07/01/2007~
-~03002~^~601~^51.^2^^~1~^~A~^^^1^32.^70.^1^^^^~03/01/2007~
-~03003~^~208~^81.^0^^~4~^~NC~^^^^^^^^^^~03/01/2007~
-~03003~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~
-~03003~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~
-~03003~^~268~^337.^0^^~4~^~NC~^^^^^^^^^^~03/01/2007~
-~03003~^~301~^5.^2^^~1~^~A~^^^^^^^^^^~03/01/2007~
-~03003~^~304~^11.^2^^~1~^~A~^^^^^^^^^^~03/01/2007~
-~03003~^~305~^93.^4^8.^~6~^~JA~^^^^^^^^^^~03/01/2007~
-~03003~^~306~^187.^17^17.^~6~^~JA~^^^^^^^^^^~03/01/2007~
-~03003~^~307~^41.^0^^~8~^~LC~^^^^^^^^^^~07/01/2010~
-~03003~^~318~^0.^0^^~4~^~NC~^^^^^^^^^^~03/01/2007~
-~03003~^~319~^0.^0^^~4~^~T~^^^^^^^^^^~03/01/2007~
-~03003~^~320~^0.^0^^~4~^~NC~^^^^^^^^^^~03/01/2007~
-~03003~^~321~^0.^0^^~7~^~Z~^^^^^^^^^^~10/01/2002~
-~03003~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~10/01/2002~
-~03003~^~324~^15.^1^^~1~^~A~^^^^^^^^^^~03/01/2007~
-~03003~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~10/01/2002~
-~03003~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~10/01/2002~
-~03003~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~10/01/2002~
-~03003~^~417~^8.^2^^~1~^~A~^^^^^^^^^^~03/01/2007~
-~03003~^~431~^0.^2^^~1~^~A~^^^^^^^^^^~03/01/2007~
-~03003~^~432~^8.^0^^~1~^~AS~^^^^^^^^^^~03/01/2007~
-~03003~^~435~^8.^0^^~4~^~NC~^^^^^^^^^^~03/01/2007~
-~03003~^~601~^51.^2^^~1~^~A~^^^^^^^^^^~03/01/2007~
-~03005~^~208~^81.^0^^~4~^~NC~^^^^^^^^^^~03/01/2007~
-~03005~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~
-~03005~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~
-~03005~^~268~^337.^0^^~4~^~NC~^^^^^^^^^^~03/01/2007~
-~03005~^~301~^6.^1^^~1~^~A~^^^^^^^^^^~03/01/2007~
-~03005~^~304~^11.^1^^~1~^~A~^^^^^^^^^^~03/01/2007~
-~03005~^~305~^98.^1^^~1~^~A~^^^^^^^^^^~03/01/2007~
-~03005~^~306~^170.^1^^~1~^~A~^^^^^^^^^^~03/01/2007~
-~03005~^~307~^39.^1^^~1~^~A~^^^^^^^^^^~03/01/2007~
-~03005~^~318~^0.^0^^~1~^~AS~^^^^^^^^^^~03/01/2007~
-~03005~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2007~
-~03005~^~320~^0.^0^^~1~^~AS~^^^^^^^^^^~08/01/2007~
-~03005~^~321~^0.^0^^~7~^~Z~^^^^^^^^^^~10/01/2002~
-~03005~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~10/01/2002~
-~03005~^~324~^26.^1^^~1~^~A~^^^^^^^^^^~03/01/2007~
-~03005~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~10/01/2002~
-~03005~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~10/01/2002~
-~03005~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~10/01/2002~
-~03005~^~417~^5.^1^^~1~^~A~^^^^^^^^^^~03/01/2007~
-~03005~^~431~^0.^1^^~1~^~A~^^^^^^^^^~1~^~03/01/2007~
-~03005~^~432~^5.^0^^~1~^~AS~^^^^^^^^^^~03/01/2007~
-~03005~^~435~^5.^0^^~4~^~NC~^^^^^^^^^^~08/01/2007~
-~03005~^~601~^33.^1^^~1~^~A~^^^^^^^^^^~03/01/2007~
-~03007~^~208~^124.^0^^~4~^~NC~^^^^^^^^^^~05/01/2007~
-~03007~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2005~
-~03007~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2005~
-~03007~^~268~^518.^0^^~4~^~NC~^^^^^^^^^^~05/01/2007~
-~03007~^~301~^5.^16^0.^~1~^^^^^^^^^^^~12/01/1978~
-~03007~^~304~^10.^1^^~1~^^^^^^^^^^^~12/01/1978~
-~03007~^~305~^94.^2^^~1~^^^^^^^^^^^~12/01/1978~
-~03007~^~306~^223.^1^^~1~^^^^^^^^^^^~12/01/1978~
-~03007~^~307~^42.^6^2.^~1~^^^^^^^^^^^~12/01/1978~
-~03007~^~318~^38.^0^^~4~^~NC~^^^^^^^^^^~05/01/2011~
-~03007~^~319~^11.^0^^~4~^~NC~^^^^^^^^^^~06/01/2002~
-~03007~^~320~^11.^0^^~4~^~NC~^^^^^^^^^^~06/01/2002~
-~03007~^~321~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2005~
-~03007~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2005~
-~03007~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2005~
-~03007~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2005~
-~03007~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2005~
-~03007~^~417~^2.^3^0.^~1~^^^^^^^^^^^~12/01/1978~
-~03007~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~
-~03007~^~432~^2.^3^0.^~1~^^^^^^^^^^^~12/01/1978~
-~03007~^~435~^2.^0^^~4~^~NC~^^^^^^^^^^~05/01/2007~
-~03007~^~601~^48.^0^^~4~^^^^^^^^^^^~04/01/1985~
-~03008~^~208~^97.^0^^~4~^~NC~^^^^^^^^^^~04/01/2007~
-~03008~^~262~^0.^0^^~4~^~FLA~^^^^^^^^^^~01/01/2003~
-~03008~^~263~^0.^0^^~4~^~FLA~^^^^^^^^^^~01/01/2003~
-~03008~^~268~^407.^0^^~4~^~NC~^^^^^^^^^^~04/01/2007~
-~03008~^~301~^6.^19^0.^~1~^^^^^^^^^^^~12/01/1978~
-~03008~^~304~^13.^2^^~1~^^^^^^^^^^^~12/01/1978~
-~03008~^~305~^81.^1^^~1~^^^^^^^^^^^~12/01/1978~
-~03008~^~306~^204.^14^^~1~^^^^^^^^^^^~12/01/1978~
-~03008~^~307~^44.^0^^~8~^~LC~^^^^^^^^^^~07/01/2010~
-~03008~^~318~^5.^0^^~4~^~NC~^~10011~^^^^^^^^^~03/01/2009~
-~03008~^~319~^2.^0^^~4~^~BFSN~^~10011~^^^^^^^^^~02/01/2003~
-~03008~^~320~^2.^0^^~4~^~NC~^^^^^^^^^^~03/01/2009~
-~03008~^~321~^0.^0^^~4~^~FLA~^^^^^^^^^^~01/01/2003~
-~03008~^~322~^0.^0^^~4~^~FLA~^^^^^^^^^^~01/01/2003~
-~03008~^~324~^18.^0^^~4~^~FLA~^^^^^^^^^^~03/01/2009~
-~03008~^~334~^0.^0^^~4~^~FLA~^^^^^^^^^^~01/01/2003~
-~03008~^~337~^0.^0^^~4~^~FLA~^^^^^^^^^^~01/01/2003~
-~03008~^~338~^0.^0^^~4~^~FLA~^^^^^^^^^^~01/01/2003~
-~03008~^~417~^2.^0^^~1~^^^^^^^^^^^~12/01/1978~
-~03008~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~
-~03008~^~432~^2.^0^^~4~^~FLA~^^^^^^^^^^~01/01/2003~
-~03008~^~435~^2.^0^^~4~^~NC~^^^^^^^^^^~03/01/2009~
-~03008~^~601~^24.^0^^~1~^^^^^^^^^^^~02/01/1994~
-~03009~^~208~^97.^0^^~4~^~NC~^^^^^^^^^^~03/01/2007~
-~03009~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2007~
-~03009~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2007~
-~03009~^~268~^407.^0^^~4~^~NC~^^^^^^^^^^~03/01/2007~
-~03009~^~301~^5.^3^1.^~1~^^^^^^^^^^^~03/01/2007~
-~03009~^~304~^11.^1^^~1~^^^^^^^^^^^~03/01/2007~
-~03009~^~305~^89.^1^^~1~^^^^^^^^^^^~03/01/2007~
-~03009~^~306~^210.^1^^~1~^^^^^^^^^^^~03/01/2007~
-~03009~^~307~^44.^0^^~8~^~LC~^^^^^^^^^^~07/01/2010~
-~03009~^~318~^0.^0^^~4~^~O~^^^^^^^^^^~03/01/2007~
-~03009~^~319~^0.^0^^~4~^~O~^^^^^^^^^^~03/01/2007~
-~03009~^~320~^0.^0^^~4~^~NC~^^^^^^^^^^~03/01/2007~
-~03009~^~321~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2007~
-~03009~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2007~
-~03009~^~324~^18.^0^^~4~^~FLA~^^^^^^^^^^~03/01/2009~
-~03009~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2007~
-~03009~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2007~
-~03009~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2007~
-~03009~^~417~^2.^3^^~1~^^^^^^^^^^^~03/01/2007~
-~03009~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~
-~03009~^~432~^2.^3^^~1~^^^^^^^^^^^~03/01/2007~
-~03009~^~435~^2.^0^^~4~^~NC~^^^^^^^^^^~03/01/2009~
-~03009~^~601~^29.^0^^~1~^^^^^^^^^^^~03/01/2007~
-~03010~^~208~^94.^0^^~4~^~NC~^^^^^^^^^^~01/01/2017~
-~03010~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~
-~03010~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~
-~03010~^~268~^394.^0^^~4~^~NC~^^^^^^^^^^~01/01/2017~
-~03010~^~301~^7.^2^^~6~^~JA~^^^2^7.^7.^1^^^^~03/01/2007~
-~03010~^~304~^13.^4^0.^~6~^~JA~^^^2^13.^13.^1^13.^13.^~4~^~03/01/2007~
-~03010~^~305~^104.^4^6.^~6~^~JA~^^^2^97.^110.^1^20.^186.^~4~^~03/01/2007~
-~03010~^~306~^193.^1^^~6~^~JA~^^^2^180.^205.^1^^^^~03/01/2007~
-~03010~^~307~^43.^1^^~1~^~A~^^^^^^^^^^~03/01/2007~
-~03010~^~318~^0.^0^^~4~^~NC~^^^^^^^^^^~07/01/2007~
-~03010~^~319~^0.^0^^~4~^~BFSN~^^^^^^^^^^~07/01/2007~
-~03010~^~320~^0.^0^^~4~^~NC~^^^^^^^^^^~02/01/2009~
-~03010~^~321~^0.^0^^~7~^~Z~^^^^^^^^^^~10/01/2002~
-~03010~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~10/01/2002~
-~03010~^~324~^4.^0^^~4~^~T~^^^^^^^^^^~02/01/2009~
-~03010~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~10/01/2002~
-~03010~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~10/01/2002~
-~03010~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~10/01/2002~
-~03010~^~417~^0.^1^^~1~^~A~^^^^^^^^^~1~^~03/01/2007~
-~03010~^~431~^0.^1^^~1~^~A~^^^^^^^^^~1~^~03/01/2007~
-~03010~^~432~^0.^0^^~1~^~AS~^^^^^^^^^^~03/01/2007~
-~03010~^~435~^0.^0^^~4~^~NC~^^^^^^^^^^~02/01/2009~
-~03010~^~601~^36.^1^^~1~^~A~^^^^^^^^^^~03/01/2007~
-~03011~^~208~^112.^0^^~4~^~NC~^^^^^^^^^^~05/01/2007~
-~03011~^~262~^0.^0^^~4~^~NR~^^^^^^^^^^~04/01/2005~
-~03011~^~263~^0.^0^^~4~^~NR~^^^^^^^^^^~04/01/2005~
-~03011~^~268~^468.^0^^~4~^~NC~^^^^^^^^^^~05/01/2007~
-~03011~^~301~^7.^19^0.^~1~^^^^^^^^^^^~12/01/1978~
-~03011~^~304~^10.^1^^~1~^^^^^^^^^^^~12/01/1978~
-~03011~^~305~^91.^1^^~1~^^^^^^^^^^^~12/01/1978~
-~03011~^~306~^211.^14^^~1~^^^^^^^^^^^~12/01/1978~
-~03011~^~307~^42.^0^^~8~^~LC~^^^^^^^^^^~07/01/2010~
-~03011~^~318~^27.^17^2.^~1~^^^^^^^^^^^~12/01/1978~
-~03011~^~319~^8.^0^^~4~^~NR~^^^^^^^^^^~04/01/2005~
-~03011~^~320~^8.^0^^~4~^~NC~^^^^^^^^^^~01/01/2007~
-~03011~^~321~^0.^0^^~4~^~NR~^^^^^^^^^^~04/01/2005~
-~03011~^~324~^4.^0^^~4~^~T~^^^^^^^^^^~02/01/2009~
-~03011~^~417~^2.^3^0.^~1~^^^^^^^^^^^~12/01/1978~
-~03011~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~
-~03011~^~432~^2.^3^0.^~1~^^^^^^^^^^^~01/01/2007~
-~03011~^~435~^2.^0^^~4~^~NC~^^^^^^^^^^~02/01/2009~
-~03011~^~601~^38.^0^^~1~^^^^^^^^^^^~02/01/1994~
-~03012~^~208~^130.^0^^~4~^~NC~^^^^^^^^^^~02/01/2007~
-~03012~^~262~^0.^0^^~4~^~FLA~^^^^^^^^^^~01/01/2003~
-~03012~^~263~^0.^0^^~4~^~FLA~^^^^^^^^^^~01/01/2003~
-~03012~^~268~^545.^0^^~4~^~NC~^^^^^^^^^^~02/01/2007~
-~03012~^~301~^64.^28^3.^~1~^^^^^^^^^^^~12/01/1978~
-~03012~^~304~^13.^2^^~1~^^^^^^^^^^^~12/01/1978~
-~03012~^~305~^97.^1^^~1~^^^^^^^^^^^~12/01/1978~
-~03012~^~306~^141.^14^^~1~^^^^^^^^^^^~12/01/1978~
-~03012~^~307~^49.^0^^~8~^~LC~^^^^^^^^^^~07/01/2010~
-~03012~^~318~^21.^0^^~4~^~NC~^^^^^^^^^^~02/01/2007~
-~03012~^~319~^6.^0^^~4~^~FLA~^^^^^^^^^^~01/01/2003~
-~03012~^~320~^6.^0^^~4~^~NC~^^^^^^^^^^~02/01/2007~
-~03012~^~321~^0.^0^^~4~^~FLA~^^^^^^^^^^~01/01/2003~
-~03012~^~322~^0.^0^^~4~^~FLA~^^^^^^^^^^~01/01/2003~
-~03012~^~324~^11.^0^^~4~^~FLA~^^^^^^^^^^~03/01/2009~
-~03012~^~334~^0.^0^^~4~^~FLA~^^^^^^^^^^~01/01/2003~
-~03012~^~337~^0.^0^^~4~^~FLA~^^^^^^^^^^~01/01/2003~
-~03012~^~338~^0.^0^^~4~^~FLA~^^^^^^^^^^~01/01/2003~
-~03012~^~417~^3.^0^^~4~^~FLA~^^^^^^^^^^~04/01/2003~
-~03012~^~431~^0.^0^^~4~^~FLA~^^^^^^^^^^~01/01/2003~
-~03012~^~432~^3.^0^^~4~^~FLA~^^^^^^^^^^~01/01/2003~
-~03012~^~435~^3.^0^^~4~^~NC~^^^^^^^^^^~03/01/2009~
-~03012~^~601~^61.^0^^~1~^^^^^^^^^^^~02/01/1994~
-~03013~^~208~^146.^0^^~4~^~NC~^^^^^^^^^^~05/01/2007~
-~03013~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~
-~03013~^~263~^0.^0^^~4~^~NR~^^^^^^^^^^~02/01/2003~
-~03013~^~268~^612.^0^^~4~^~NC~^^^^^^^^^^~05/01/2007~
-~03013~^~301~^55.^19^4.^~1~^^^^^^^^^^^~12/01/1978~
-~03013~^~304~^11.^1^^~1~^^^^^^^^^^^~12/01/1978~
-~03013~^~305~^90.^1^^~1~^^^^^^^^^^^~12/01/1978~
-~03013~^~306~^122.^14^^~1~^^^^^^^^^^^~12/01/1978~
-~03013~^~307~^49.^0^^~8~^~LC~^^^^^^^^^^~07/01/2010~
-~03013~^~318~^40.^0^^~1~^^^^^^^^^^^~02/01/1995~
-~03013~^~319~^11.^0^^~4~^~BFSN~^~05014~^^^^^^^^^~02/01/2003~
-~03013~^~320~^11.^0^^~4~^~NC~^^^^^^^^^^~01/01/2007~
-~03013~^~321~^0.^0^^~7~^~Z~^^^^^^^^^^~10/01/2002~
-~03013~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~10/01/2002~
-~03013~^~324~^2.^0^^~4~^~FLA~^^^^^^^^^^~03/01/2009~
-~03013~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~10/01/2002~
-~03013~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~10/01/2002~
-~03013~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~10/01/2002~
-~03013~^~417~^11.^0^^~1~^^^^^^^^^^^~12/01/1978~
-~03013~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~
-~03013~^~432~^11.^0^^~4~^~NR~^^^^^^^^^^~02/01/2003~
-~03013~^~435~^11.^0^^~4~^~NC~^^^^^^^^^^~03/01/2009~
-~03013~^~601~^59.^0^^~1~^^^^^^^^^^^~02/01/1994~
-~03014~^~208~^188.^0^^~4~^~NC~^^^^^^^^^^~12/01/1978~
-~03014~^~262~^0.^0^^~4~^~FLA~^^^^^^^^^^~03/01/2003~
-~03014~^~263~^0.^0^^~4~^~FLA~^^^^^^^^^^~03/01/2003~
-~03014~^~268~^787.^0^^~4~^^^^^^^^^^^~03/01/2005~
-~03014~^~301~^73.^7^6.^~1~^^^^^^^^^^^~12/01/1978~
-~03014~^~304~^14.^0^^~4~^^^^^^^^^^^~12/01/1978~
-~03014~^~305~^121.^1^^~1~^^^^^^^^^^^~12/01/1978~
-~03014~^~306~^106.^1^^~1~^^^^^^^^^^^~12/01/1978~
-~03014~^~307~^267.^0^^~8~^~LC~^^^^^^^^^^~04/01/2016~
-~03014~^~318~^11.^0^^~4~^~NC~^^^^^^^^^^~03/01/2009~
-~03014~^~319~^3.^0^^~4~^~BNA~^^^^^^^^^^~03/01/2003~
-~03014~^~320~^3.^0^^~4~^~NC~^^^^^^^^^^~03/01/2009~
-~03014~^~321~^0.^0^^~4~^~BNA~^^^^^^^^^^~03/01/2003~
-~03014~^~322~^0.^0^^~4~^~BNA~^^^^^^^^^^~03/01/2003~
-~03014~^~324~^4.^0^^~4~^~O~^^^^^^^^^^~03/01/2009~
-~03014~^~334~^0.^0^^~4~^~BNA~^^^^^^^^^^~03/01/2003~
-~03014~^~337~^0.^0^^~4~^~FLA~^^^^^^^^^^~03/01/2003~
-~03014~^~338~^0.^0^^~4~^~FLA~^^^^^^^^^^~03/01/2003~
-~03014~^~417~^11.^0^^~4~^^^^^^^^^^^~12/01/1978~
-~03014~^~431~^0.^0^^~4~^~NR~^^^^^^^^^^~04/01/2016~
-~03014~^~432~^11.^0^^~4~^~NR~^^^^^^^^^^~04/01/2016~
-~03014~^~435~^11.^0^^~4~^~NC~^^^^^^^^^^~04/01/2016~
-~03014~^~601~^78.^0^^~4~^^^^^^^^^^^~04/01/1985~
-~03015~^~208~^111.^0^^~4~^~NC~^^^^^^^^^^~03/01/2007~
-~03015~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~
-~03015~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~
-~03015~^~268~^463.^0^^~4~^~NC~^^^^^^^^^^~03/01/2007~
-~03015~^~301~^41.^3^9.^~1~^~A~^^^1^29.^59.^2^0.^80.^~2, 3~^~03/01/2007~
-~03015~^~304~^12.^3^0.^~1~^~A~^^^1^11.^13.^2^9.^14.^~2, 3~^~03/01/2007~
-~03015~^~305~^117.^3^3.^~1~^~A~^^^1^110.^120.^2^102.^131.^~2, 3~^~03/01/2007~
-~03015~^~306~^135.^3^13.^~1~^~A~^^^1^115.^160.^2^78.^191.^~2, 3~^~03/01/2007~
-~03015~^~307~^49.^0^^~8~^~LC~^^^^^^^^^^~07/01/2010~
-~03015~^~318~^0.^0^^~4~^~BFSN~^~05168~^^^^^^^^^~03/01/2007~
-~03015~^~319~^0.^0^^~4~^~BFSN~^~05168~^^^^^^^^^~02/01/2003~
-~03015~^~320~^0.^0^^~4~^~NC~^^^^^^^^^^~07/01/2007~
-~03015~^~321~^0.^0^^~7~^~Z~^^^^^^^^^^~10/01/2002~
-~03015~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~10/01/2002~
-~03015~^~324~^34.^1^^~1~^~A~^^^^^^^^^^~03/01/2007~
-~03015~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~10/01/2002~
-~03015~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~10/01/2002~
-~03015~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~10/01/2002~
-~03015~^~417~^8.^3^2.^~1~^~A~^^^1^4.^11.^2^0.^16.^~2, 3~^~03/01/2007~
-~03015~^~431~^0.^2^^~1~^~A~^^^1^0.^0.^^^^~1~^~03/01/2007~
-~03015~^~432~^8.^3^2.^~1~^~AS~^^^1^4.^11.^2^0.^16.^~2, 3~^~03/01/2007~
-~03015~^~435~^8.^0^^~4~^~NC~^^^^^^^^^^~07/01/2007~
-~03015~^~601~^58.^3^2.^~1~^~A~^^^1^55.^63.^2^47.^68.^~2, 3~^~03/01/2007~
-~03016~^~208~^111.^0^^~4~^~NC~^^^^^^^^^^~03/01/2007~
-~03016~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~
-~03016~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~
-~03016~^~268~^463.^0^^~4~^~NC~^^^^^^^^^^~03/01/2007~
-~03016~^~301~^41.^3^9.^~1~^~A~^^^1^29.^59.^2^0.^80.^~2, 3~^~03/01/2007~
-~03016~^~304~^12.^3^0.^~1~^~A~^^^1^11.^13.^2^9.^14.^~2, 3~^~03/01/2007~
-~03016~^~305~^117.^3^3.^~1~^~A~^^^1^110.^120.^2^102.^131.^~2, 3~^~03/01/2007~
-~03016~^~306~^135.^3^13.^~1~^~A~^^^1^115.^160.^2^78.^191.^~2, 3~^~03/01/2007~
-~03016~^~307~^49.^0^^~8~^~LC~^^^^^^^^^^~07/01/2010~
-~03016~^~318~^0.^0^^~4~^~BFSN~^~05168~^^^^^^^^^~08/01/2004~
-~03016~^~319~^0.^0^^~4~^~BFSN~^~05168~^^^^^^^^^~02/01/2003~
-~03016~^~320~^0.^0^^~4~^~NC~^^^^^^^^^^~07/01/2007~
-~03016~^~321~^0.^0^^~7~^~Z~^^^^^^^^^^~10/01/2002~
-~03016~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~10/01/2002~
-~03016~^~324~^34.^1^^~1~^~A~^^^^^^^^^^~03/01/2007~
-~03016~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~10/01/2002~
-~03016~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~10/01/2002~
-~03016~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~10/01/2002~
-~03016~^~417~^8.^3^2.^~1~^~A~^^^1^4.^11.^2^0.^16.^~2, 3~^~03/01/2007~
-~03016~^~431~^0.^2^^~1~^~A~^^^1^0.^0.^^^^~1~^~03/01/2007~
-~03016~^~432~^8.^3^2.^~1~^~AS~^^^1^4.^11.^2^0.^16.^~2, 3~^~03/01/2007~
-~03016~^~435~^8.^0^^~4~^~NC~^^^^^^^^^^~07/01/2007~
-~03016~^~601~^58.^3^2.^~1~^~A~^^^1^55.^63.^2^47.^68.^~2, 3~^~03/01/2007~
-~03017~^~208~^188.^0^^~4~^~NC~^^^^^^^^^^~05/01/2010~
-~03017~^~262~^0.^0^^~4~^~FLA~^^^^^^^^^^~03/01/2003~
-~03017~^~263~^0.^0^^~4~^~FLA~^^^^^^^^^^~03/01/2003~
-~03017~^~268~^787.^0^^~4~^~NC~^^^^^^^^^^~05/01/2010~
-~03017~^~301~^83.^1^^~1~^~A~^^^^^^^^^^~05/01/2010~
-~03017~^~304~^10.^1^^~1~^~A~^^^^^^^^^^~05/01/2010~
-~03017~^~305~^120.^1^^~1~^~A~^^^^^^^^^^~05/01/2010~
-~03017~^~306~^120.^1^^~1~^~A~^^^^^^^^^^~05/01/2010~
-~03017~^~307~^295.^0^^~8~^~LC~^^^^^^^^^^~04/01/2016~
-~03017~^~318~^19.^0^^~4~^~NC~^^^^^^^^^^~08/01/2010~
-~03017~^~319~^6.^0^^~4~^~BNA~^^^^^^^^^^~03/01/2003~
-~03017~^~320~^6.^0^^~4~^~NC~^^^^^^^^^^~05/01/2010~
-~03017~^~321~^0.^0^^~4~^~BNA~^^^^^^^^^^~03/01/2003~
-~03017~^~322~^0.^0^^~4~^~BNA~^^^^^^^^^^~03/01/2003~
-~03017~^~324~^15.^1^^~1~^~A~^^^^^^^^^~1~^~05/01/2010~
-~03017~^~334~^0.^0^^~4~^~BNA~^^^^^^^^^^~03/01/2003~
-~03017~^~337~^0.^0^^~4~^~FLA~^^^^^^^^^^~03/01/2003~
-~03017~^~338~^0.^0^^~4~^~FLA~^^^^^^^^^^~03/01/2003~
-~03017~^~417~^11.^1^^~1~^~A~^^^^^^^^^^~05/01/2010~
-~03017~^~431~^0.^0^^~4~^~NR~^^^^^^^^^^~04/01/2016~
-~03017~^~432~^11.^0^^~4~^~NR~^^^^^^^^^^~04/01/2016~
-~03017~^~435~^11.^0^^~4~^~NC~^^^^^^^^^^~04/01/2016~
-~03017~^~601~^65.^0^^~4~^^^^^^^^^^^~04/01/1985~
-~03019~^~208~^330.^0^^~4~^~NC~^^^^^^^^^^~05/01/2009~
-~03019~^~262~^0.^0^^~4~^~FLC~^^^^^^^^^^~04/01/2009~
-~03019~^~263~^0.^0^^~4~^~FLC~^^^^^^^^^^~04/01/2009~
-~03019~^~268~^1380.^0^^~4~^~NC~^^^^^^^^^^~05/01/2009~
-~03019~^~301~^18.^0^^~4~^~FLC~^^^^^^^^^^~04/01/2009~
-~03019~^~304~^9.^0^^~4~^~FLC~^^^^^^^^^^~04/01/2009~
-~03019~^~305~^23.^0^^~4~^~FLC~^^^^^^^^^^~04/01/2009~
-~03019~^~306~^312.^0^^~4~^~FLC~^^^^^^^^^^~05/01/2009~
-~03019~^~307~^14.^0^^~4~^~FLC~^^^^^^^^^^~04/01/2009~
-~03019~^~318~^233.^0^^~4~^~NC~^^^^^^^^^^~05/01/2009~
-~03019~^~319~^0.^0^^~4~^~FLC~^^^^^^^^^^~04/01/2009~
-~03019~^~320~^12.^0^^~4~^~NC~^^^^^^^^^^~05/01/2009~
-~03019~^~321~^102.^0^^~4~^~FLC~^^^^^^^^^^~04/01/2009~
-~03019~^~322~^0.^0^^~4~^~FLC~^^^^^^^^^^~04/01/2009~
-~03019~^~324~^0.^0^^~4~^~FLC~^^^^^^^^^^~04/01/2009~
-~03019~^~334~^76.^0^^~4~^~FLC~^^^^^^^^^^~04/01/2009~
-~03019~^~337~^0.^0^^~4~^~FLC~^^^^^^^^^^~04/01/2009~
-~03019~^~338~^81.^0^^~4~^~FLC~^^^^^^^^^^~04/01/2009~
-~03019~^~417~^1.^0^^~4~^~FLC~^^^^^^^^^^~04/01/2009~
-~03019~^~431~^0.^0^^~4~^~FLC~^^^^^^^^^^~04/01/2009~
-~03019~^~432~^1.^0^^~4~^~FLC~^^^^^^^^^^~04/01/2009~
-~03019~^~435~^1.^0^^~4~^~NC~^^^^^^^^^^~05/01/2009~
-~03019~^~601~^0.^0^^~4~^~FLC~^^^^^^^^^^~04/01/2009~
-~03021~^~208~^184.^0^^~4~^~NC~^^^^^^^^^^~12/01/1978~
-~03021~^~262~^0.^0^^~4~^~FLA~^^^^^^^^^^~03/01/2003~
-~03021~^~263~^0.^0^^~4~^~FLA~^^^^^^^^^^~03/01/2003~
-~03021~^~268~^770.^0^^~4~^^^^^^^^^^^~03/01/2005~
-~03021~^~301~^34.^13^1.^~1~^^^^^^^^^^^~12/01/1978~
-~03021~^~304~^11.^0^^~4~^^^^^^^^^^^~12/01/1978~
-~03021~^~305~^103.^1^^~1~^^^^^^^^^^^~12/01/1978~
-~03021~^~306~^114.^1^^~1~^^^^^^^^^^^~12/01/1978~
-~03021~^~307~^267.^0^^~8~^~LC~^^^^^^^^^^~04/01/2016~
-~03021~^~318~^69.^0^^~4~^~NC~^^^^^^^^^^~04/01/2007~
-~03021~^~319~^21.^0^^~4~^~BNA~^^^^^^^^^^~03/01/2003~
-~03021~^~320~^21.^0^^~4~^~NC~^^^^^^^^^^~04/01/2007~
-~03021~^~321~^0.^0^^~4~^~BNA~^^^^^^^^^^~03/01/2003~
-~03021~^~322~^0.^0^^~4~^~BNA~^^^^^^^^^^~03/01/2003~
-~03021~^~324~^9.^0^^~4~^~FLA~^^^^^^^^^^~03/01/2009~
-~03021~^~334~^0.^0^^~4~^~BNA~^^^^^^^^^^~03/01/2003~
-~03021~^~337~^0.^0^^~4~^~FLA~^^^^^^^^^^~03/01/2003~
-~03021~^~338~^0.^0^^~4~^~FLA~^^^^^^^^^^~03/01/2003~
-~03021~^~417~^11.^0^^~4~^~NR~^^^^^^^^^^~04/01/2016~
-~03021~^~431~^0.^0^^~4~^~NR~^^^^^^^^^^~04/01/2016~
-~03021~^~432~^11.^0^^~4~^~NR~^^^^^^^^^^~04/01/2016~
-~03021~^~435~^11.^0^^~4~^~NC~^^^^^^^^^^~04/01/2016~
-~03021~^~601~^70.^0^^~4~^^^^^^^^^^^~04/01/1985~
-~03022~^~208~^64.^0^^~4~^~NC~^^^^^^^^^^~02/01/2015~
-~03022~^~262~^0.^0^^~4~^~FLC~^^^^^^^^^^~02/01/2015~
-~03022~^~263~^0.^0^^~4~^~FLC~^^^^^^^^^^~02/01/2015~
-~03022~^~268~^266.^0^^~4~^~NC~^^^^^^^^^^~02/01/2015~
-~03022~^~301~^6.^0^^~4~^~FLC~^^^^^^^^^^~02/01/2015~
-~03022~^~304~^5.^0^^~4~^~FLC~^^^^^^^^^^~02/01/2015~
-~03022~^~305~^17.^0^^~4~^~FLC~^^^^^^^^^^~02/01/2015~
-~03022~^~306~^106.^0^^~4~^~FLC~^^^^^^^^^^~02/01/2015~
-~03022~^~307~^20.^0^^~4~^~FLC~^^^^^^^^^^~02/01/2015~
-~03022~^~318~^417.^0^^~4~^~NC~^^^^^^^^^^~02/01/2015~
-~03022~^~319~^0.^0^^~4~^~FLC~^^^^^^^^^^~02/01/2015~
-~03022~^~320~^21.^0^^~4~^~NC~^^^^^^^^^^~02/01/2015~
-~03022~^~321~^206.^0^^~4~^~FLC~^^^^^^^^^^~02/01/2015~
-~03022~^~322~^78.^0^^~4~^~FLC~^^^^^^^^^^~02/01/2015~
-~03022~^~324~^0.^0^^~4~^~FLC~^^^^^^^^^^~02/01/2015~
-~03022~^~334~^11.^0^^~4~^~FLC~^^^^^^^^^^~02/01/2015~
-~03022~^~337~^0.^0^^~4~^~FLC~^^^^^^^^^^~02/01/2015~
-~03022~^~338~^17.^0^^~4~^~FLC~^^^^^^^^^^~02/01/2015~
-~03022~^~417~^2.^0^^~4~^~FLC~^^^^^^^^^^~02/01/2015~
-~03022~^~431~^0.^0^^~4~^~FLC~^^^^^^^^^^~02/01/2015~
-~03022~^~432~^2.^0^^~4~^~FLC~^^^^^^^^^^~02/01/2015~
-~03022~^~435~^2.^0^^~4~^~NC~^^^^^^^^^^~02/01/2015~
-~03022~^~601~^2.^0^^~4~^~FLC~^^^^^^^^^^~02/01/2015~
-~03023~^~208~^344.^0^^~4~^~NC~^^^^^^^^^^~01/01/2017~
-~03023~^~262~^0.^0^^~4~^~FLC~^^^^^^^^^^~02/01/2015~
-~03023~^~263~^0.^0^^~4~^~FLC~^^^^^^^^^^~02/01/2015~
-~03023~^~268~^1440.^0^^~4~^~NC~^^^^^^^^^^~01/01/2017~
-~03023~^~301~^535.^5^10.^~1~^~A~^^^1^519.^577.^4^504.^564.^~2, 3~^~02/01/2015~
-~03023~^~304~^60.^5^0.^~1~^~A~^^^1^59.^62.^4^58.^61.^~2, 3~^~02/01/2015~
-~03023~^~305~^448.^5^6.^~1~^~A~^^^1^438.^474.^4^429.^466.^~2, 3~^~02/01/2015~
-~03023~^~306~^196.^5^2.^~1~^~A~^^^1^188.^201.^4^189.^202.^~2, 3~^~02/01/2015~
-~03023~^~307~^13.^5^1.^~1~^~A~^^^1^10.^17.^4^9.^16.^~2, 3~^~02/01/2015~
-~03023~^~318~^13.^0^^~4~^~NC~^^^^^^^^^^~02/01/2015~
-~03023~^~319~^0.^0^^~4~^~FLC~^^^^^^^^^^~02/01/2015~
-~03023~^~320~^1.^0^^~4~^~NC~^^^^^^^^^^~02/01/2015~
-~03023~^~321~^6.^0^^~4~^~FLC~^^^^^^^^^^~02/01/2015~
-~03023~^~322~^0.^0^^~4~^~FLC~^^^^^^^^^^~02/01/2015~
-~03023~^~324~^0.^0^^~4~^~FLC~^^^^^^^^^^~02/01/2015~
-~03023~^~334~^4.^0^^~4~^~FLC~^^^^^^^^^^~02/01/2015~
-~03023~^~337~^0.^0^^~4~^~FLC~^^^^^^^^^^~02/01/2015~
-~03023~^~338~^45.^0^^~4~^~FLC~^^^^^^^^^^~02/01/2015~
-~03023~^~417~^16.^3^2.^~1~^~A~^^^1^13.^20.^2^5.^25.^~2, 3~^~02/01/2015~
-~03023~^~431~^6.^0^^~4~^~NR~^^^^^^^^^^~02/01/2015~
-~03023~^~432~^10.^0^^~4~^~NR~^^^^^^^^^^~04/01/2016~
-~03023~^~435~^20.^0^^~4~^~NC~^^^^^^^^^^~04/01/2016~
-~03023~^~601~^0.^0^^~4~^~FLC~^^^^^^^^^^~02/01/2015~
-~03024~^~208~^0.^0^^~4~^~NC~^^^^^^^^^^~02/01/2015~
-~03024~^~262~^0.^0^^~4~^~FLC~^^^^^^^^^^~02/01/2015~
-~03024~^~263~^0.^0^^~4~^~FLC~^^^^^^^^^^~02/01/2015~
-~03024~^~268~^0.^0^^~4~^~FLC~^^^^^^^^^^~02/01/2015~
-~03024~^~301~^0.^0^^~4~^~NR~^^^^^^^^^^~02/01/2015~
-~03024~^~304~^0.^0^^~4~^~FLC~^^^^^^^^^^~02/01/2015~
-~03024~^~305~^0.^0^^~4~^~FLC~^^^^^^^^^^~02/01/2015~
-~03024~^~306~^0.^0^^~4~^~FLC~^^^^^^^^^^~02/01/2015~
-~03024~^~307~^0.^0^^~4~^~NR~^^^^^^^^^^~02/01/2015~
-~03024~^~318~^0.^0^^~4~^~FLC~^^^^^^^^^^~02/01/2015~
-~03024~^~319~^0.^0^^~4~^~FLC~^^^^^^^^^^~02/01/2015~
-~03024~^~320~^0.^0^^~4~^~NC~^^^^^^^^^^~02/01/2015~
-~03024~^~321~^0.^0^^~4~^~FLC~^^^^^^^^^^~02/01/2015~
-~03024~^~322~^0.^0^^~4~^~FLC~^^^^^^^^^^~02/01/2015~
-~03024~^~324~^0.^0^^~4~^~FLC~^^^^^^^^^^~02/01/2015~
-~03024~^~334~^0.^0^^~4~^~FLC~^^^^^^^^^^~02/01/2015~
-~03024~^~337~^0.^0^^~4~^~FLC~^^^^^^^^^^~02/01/2015~
-~03024~^~338~^0.^0^^~4~^~FLC~^^^^^^^^^^~02/01/2015~
-~03024~^~417~^0.^0^^~4~^~FLC~^^^^^^^^^^~02/01/2015~
-~03024~^~431~^0.^0^^~4~^~FLC~^^^^^^^^^^~02/01/2015~
-~03024~^~432~^0.^0^^~4~^~FLC~^^^^^^^^^^~02/01/2015~
-~03024~^~435~^0.^0^^~4~^~NC~^^^^^^^^^^~02/01/2015~
-~03024~^~601~^0.^0^^~4~^~FLC~^^^^^^^^^^~02/01/2015~
-~03025~^~208~^48.^0^^~4~^~NC~^^^^^^^^^^~01/01/2017~
-~03025~^~262~^0.^0^^~4~^~FLC~^^^^^^^^^^~02/01/2015~
-~03025~^~263~^0.^0^^~4~^~FLC~^^^^^^^^^^~02/01/2015~
-~03025~^~268~^201.^0^^~4~^~NC~^^^^^^^^^^~01/01/2017~
-~03025~^~301~^9.^0^^~4~^~FLC~^^^^^^^^^^~02/01/2015~
-~03025~^~304~^6.^0^^~4~^~FLC~^^^^^^^^^^~02/01/2015~
-~03025~^~305~^11.^0^^~4~^~FLC~^^^^^^^^^^~02/01/2015~
-~03025~^~306~^123.^0^^~4~^~FLC~^^^^^^^^^^~02/01/2015~
-~03025~^~307~^2.^0^^~4~^~FLC~^^^^^^^^^^~02/01/2015~
-~03025~^~318~^294.^0^^~4~^~NC~^^^^^^^^^^~02/01/2015~
-~03025~^~319~^0.^0^^~4~^~FLC~^^^^^^^^^^~02/01/2015~
-~03025~^~320~^15.^0^^~4~^~NC~^^^^^^^^^^~02/01/2015~
-~03025~^~321~^170.^0^^~4~^~FLC~^^^^^^^^^^~02/01/2015~
-~03025~^~322~^2.^0^^~4~^~FLC~^^^^^^^^^^~02/01/2015~
-~03025~^~324~^0.^0^^~4~^~FLC~^^^^^^^^^^~02/01/2015~
-~03025~^~334~^10.^0^^~4~^~FLC~^^^^^^^^^^~02/01/2015~
-~03025~^~337~^1.^0^^~4~^~FLC~^^^^^^^^^^~02/01/2015~
-~03025~^~338~^30.^0^^~4~^~FLC~^^^^^^^^^^~02/01/2015~
-~03025~^~417~^14.^0^^~4~^~FLC~^^^^^^^^^^~02/01/2015~
-~03025~^~431~^0.^0^^~4~^~FLC~^^^^^^^^^^~02/01/2015~
-~03025~^~432~^14.^0^^~4~^~FLC~^^^^^^^^^^~02/01/2015~
-~03025~^~435~^14.^0^^~4~^~NC~^^^^^^^^^^~02/01/2015~
-~03025~^~601~^0.^0^^~4~^~FLC~^^^^^^^^^^~02/01/2015~
-~03026~^~208~^46.^0^^~4~^~NC~^^^^^^^^^^~01/01/2017~
-~03026~^~262~^0.^0^^~4~^~FLC~^^^^^^^^^^~02/01/2015~
-~03026~^~263~^0.^0^^~4~^~FLC~^^^^^^^^^^~02/01/2015~
-~03026~^~268~^194.^0^^~4~^~NC~^^^^^^^^^^~01/01/2017~
-~03026~^~301~^0.^0^^~8~^~LC~^^^^^^^^^^~08/01/2015~
-~03026~^~304~^5.^0^^~4~^~FLC~^^^^^^^^^^~02/01/2015~
-~03026~^~305~^11.^0^^~4~^~FLC~^^^^^^^^^^~02/01/2015~
-~03026~^~306~^141.^0^^~8~^~LC~^^^^^^^^^^~08/01/2015~
-~03026~^~307~^0.^0^^~8~^~LC~^^^^^^^^^^~08/01/2015~
-~03026~^~318~^88.^0^^~4~^~NC~^^^^^^^^^^~02/01/2015~
-~03026~^~319~^0.^0^^~4~^~FLC~^^^^^^^^^^~02/01/2015~
-~03026~^~320~^4.^0^^~4~^~NC~^^^^^^^^^^~02/01/2015~
-~03026~^~321~^46.^0^^~4~^~FLC~^^^^^^^^^^~02/01/2015~
-~03026~^~322~^0.^0^^~4~^~FLC~^^^^^^^^^^~02/01/2015~
-~03026~^~324~^0.^0^^~4~^~FLC~^^^^^^^^^^~02/01/2015~
-~03026~^~334~^14.^0^^~4~^~FLC~^^^^^^^^^^~02/01/2015~
-~03026~^~337~^0.^0^^~4~^~FLC~^^^^^^^^^^~02/01/2015~
-~03026~^~338~^20.^0^^~4~^~FLC~^^^^^^^^^^~02/01/2015~
-~03026~^~417~^2.^0^^~4~^~FLC~^^^^^^^^^^~02/01/2015~
-~03026~^~431~^0.^0^^~4~^~FLC~^^^^^^^^^^~02/01/2015~
-~03026~^~432~^2.^0^^~4~^~FLC~^^^^^^^^^^~02/01/2015~
-~03026~^~435~^2.^0^^~4~^~NC~^^^^^^^^^^~02/01/2015~
-~03026~^~601~^0.^0^^~4~^~FLC~^^^^^^^^^^~02/01/2015~
-~03026~^~636~^0.^0^^~4~^~FLC~^^^^^^^^^^~02/01/2015~
-~03041~^~208~^48.^0^^~4~^~NC~^^^^^^^^^^~12/01/1978~
-~03041~^~268~^201.^0^^~4~^^^^^^^^^^^~04/01/2005~
-~03041~^~301~^14.^2^^~1~^^^^^^^^^^^~12/01/1978~
-~03041~^~304~^6.^0^^~1~^^^^^^^^^^^~12/01/1978~
-~03041~^~305~^28.^0^^~4~^^^^^^^^^^^~12/01/1978~
-~03041~^~306~^46.^0^^~4~^^^^^^^^^^^~12/01/1978~
-~03041~^~307~^49.^1^^~1~^^^^^^^^^^^~12/01/1978~
-~03041~^~318~^416.^2^^~1~^^^^^^^^^^^~12/01/1978~
-~03041~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2002~
-~03041~^~320~^21.^0^^~4~^~NC~^^^^^^^^^^~06/01/2002~
-~03041~^~417~^7.^3^1.^~1~^^^^^^^^^^^~12/01/1978~
-~03041~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~
-~03041~^~432~^7.^3^1.^~1~^^^^^^^^^^^~12/01/1978~
-~03041~^~435~^7.^0^^~4~^~NC~^^^^^^^^^^~04/01/2005~
-~03042~^~208~^48.^0^^~4~^~NC~^^^^^^^^^^~12/01/1978~
-~03042~^~268~^201.^0^^~4~^^^^^^^^^^^~04/01/2005~
-~03042~^~301~^14.^3^1.^~1~^^^^^^^^^^^~12/01/1978~
-~03042~^~304~^7.^3^0.^~1~^^^^^^^^^^^~12/01/1978~
-~03042~^~305~^29.^0^^~4~^^^^^^^^^^^~12/01/1978~
-~03042~^~306~^47.^0^^~4~^^^^^^^^^^^~12/01/1978~
-~03042~^~307~^52.^1^^~1~^^^^^^^^^^^~12/01/1978~
-~03042~^~318~^660.^3^49.^~1~^^^^^^^^^^^~12/01/1978~
-~03042~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2002~
-~03042~^~320~^33.^0^^~4~^~NC~^^^^^^^^^^~06/01/2002~
-~03042~^~417~^7.^0^^~1~^^^^^^^^^^^~12/01/1978~
-~03042~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~
-~03042~^~432~^7.^0^^~1~^^^^^^^^^^^~12/01/1978~
-~03042~^~435~^7.^0^^~4~^~NC~^^^^^^^^^^~04/01/2005~
-~03043~^~208~^77.^0^^~4~^~NC~^^^^^^^^^^~12/01/1978~
-~03043~^~268~^322.^0^^~4~^^^^^^^^^^^~04/01/2005~
-~03043~^~301~^18.^3^0.^~1~^^^^^^^^^^^~12/01/1978~
-~03043~^~304~^11.^1^^~1~^^^^^^^^^^^~12/01/1978~
-~03043~^~305~^40.^1^^~1~^^^^^^^^^^^~12/01/1978~
-~03043~^~306~^122.^1^^~1~^^^^^^^^^^^~12/01/1978~
-~03043~^~307~^41.^0^^~8~^~LC~^^^^^^^^^^~07/01/2010~
-~03043~^~318~^1163.^3^227.^~1~^^^^^^^^^^^~12/01/1978~
-~03043~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2002~
-~03043~^~320~^58.^0^^~4~^~NC~^^^^^^^^^^~06/01/2002~
-~03043~^~417~^6.^0^^~4~^^^^^^^^^^^~12/01/1978~
-~03043~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~
-~03043~^~432~^6.^0^^~4~^^^^^^^^^^^~12/01/1978~
-~03043~^~435~^6.^0^^~4~^~NC~^^^^^^^^^^~04/01/2005~
-~03044~^~208~^61.^0^^~9~^~MC~^^^^^^^^^^~04/01/1997~
-~03044~^~262~^0.^0^^~4~^~FLA~^^^^^^^^^^~01/01/2003~
-~03044~^~263~^0.^0^^~4~^~FLA~^^^^^^^^^^~01/01/2003~
-~03044~^~268~^255.^0^^~9~^~MC~^^^^^^^^^^~03/01/2005~
-~03044~^~301~^17.^0^^~12~^~MA~^^^^^^^^^^~04/01/1997~
-~03044~^~304~^12.^0^^~12~^~MA~^^^^^^^^^^~04/01/1997~
-~03044~^~305~^39.^0^^~12~^~MA~^^^^^^^^^^~04/01/1997~
-~03044~^~306~^112.^0^^~12~^~MA~^^^^^^^^^^~04/01/1997~
-~03044~^~307~^38.^0^^~12~^~MA~^^^^^^^^^^~04/01/1997~
-~03044~^~318~^878.^0^^~4~^~NC~^^^^^^^^^^~01/01/2017~
-~03044~^~319~^0.^0^^~4~^~FLA~^^^^^^^^^^~01/01/2003~
-~03044~^~320~^44.^0^^~4~^~NC~^^^^^^^^^^~02/01/2003~
-~03044~^~321~^420.^0^^~4~^~BNA~^^^^^^^^^^~02/01/2003~
-~03044~^~322~^213.^0^^~4~^~BNA~^^^^^^^^^^~02/01/2003~
-~03044~^~324~^2.^0^^~4~^~FLA~^^^^^^^^^^~03/01/2009~
-~03044~^~334~^0.^0^^~4~^~BNA~^^^^^^^^^^~02/01/2003~
-~03044~^~337~^42.^0^^~4~^~O~^^^^^^^^^^~02/01/2003~
-~03044~^~338~^0.^0^^~4~^~FLA~^^^^^^^^^^~01/01/2003~
-~03044~^~417~^9.^0^^~4~^~FLM~^^^^^^^^^^~02/01/2003~
-~03044~^~431~^4.^0^^~4~^~NC~^^^^^^^^^^~02/01/2003~
-~03044~^~432~^5.^0^^~4~^~NC~^^^^^^^^^^~03/01/2005~
-~03044~^~435~^12.^0^^~4~^~NC~^^^^^^^^^^~03/01/2009~
-~03044~^~601~^7.^0^^~12~^~MA~^^^^^^^^^^~04/01/1997~
-~03045~^~208~^59.^0^^~4~^~NC~^^^^^^^^^^~12/01/1978~
-~03045~^~262~^0.^0^^~4~^~FLA~^^^^^^^^^^~02/01/2003~
-~03045~^~263~^0.^0^^~4~^~FLA~^^^^^^^^^^~02/01/2003~
-~03045~^~268~^247.^0^^~4~^^^^^^^^^^^~03/01/2005~
-~03045~^~301~^14.^19^1.^~1~^^^^^^^^^^^~12/01/1978~
-~03045~^~304~^7.^3^1.^~1~^^^^^^^^^^^~12/01/1978~
-~03045~^~305~^44.^0^^~1~^^^^^^^^^^^~12/01/1978~
-~03045~^~306~^72.^13^2.^~1~^^^^^^^^^^^~12/01/1978~
-~03045~^~307~^35.^0^^~8~^~LC~^^^^^^^^^^~07/01/2010~
-~03045~^~318~^691.^19^24.^~1~^^^^^^^^^^^~12/01/1978~
-~03045~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2002~
-~03045~^~320~^35.^0^^~4~^~NC~^^^^^^^^^^~02/01/2003~
-~03045~^~321~^338.^0^^~4~^~BNA~^^^^^^^^^^~02/01/2003~
-~03045~^~322~^154.^0^^~4~^~BNA~^^^^^^^^^^~02/01/2003~
-~03045~^~324~^1.^0^^~4~^~FLA~^^^^^^^^^^~03/01/2009~
-~03045~^~334~^0.^0^^~4~^~BNA~^^^^^^^^^^~02/01/2003~
-~03045~^~337~^250.^0^^~4~^~O~^^^^^^^^^^~02/01/2003~
-~03045~^~338~^12.^0^^~4~^~O~^^^^^^^^^^~02/01/2003~
-~03045~^~417~^9.^0^^~4~^~BFZN~^^^^^^^^^^~12/01/1997~
-~03045~^~431~^3.^0^^~4~^~NC~^^^^^^^^^^~05/01/2000~
-~03045~^~432~^7.^0^^~4~^^^^^^^^^^^
-~03045~^~435~^11.^0^^~4~^~NC~^^^^^^^^^^~03/01/2009~
-~03045~^~601~^4.^0^^~4~^^^^^^^^^^^~04/01/1985~
-~03046~^~208~^99.^0^^~4~^^^^^^^^^^^~03/01/2005~
-~03046~^~262~^0.^0^^~4~^~FLA~^^^^^^^^^^~03/01/2005~
-~03046~^~263~^0.^0^^~4~^~FLA~^^^^^^^^^^~01/01/2003~
-~03046~^~268~^414.^0^^~4~^^^^^^^^^^^~03/01/2005~
-~03046~^~301~^54.^0^^~12~^^^^^^^^^^^~03/01/2005~
-~03046~^~304~^7.^0^^~4~^^^^^^^^^^^~03/01/2005~
-~03046~^~305~^56.^0^^~4~^^^^^^^^^^^~03/01/2005~
-~03046~^~306~^32.^0^^~4~^^^^^^^^^^^~03/01/2005~
-~03046~^~307~^282.^0^^~8~^~LC~^^^^^^^^^^~05/01/2010~
-~03046~^~318~^494.^0^^~4~^~NC~^^^^^^^^^^~02/01/2009~
-~03046~^~319~^32.^0^^~4~^~BNA~^^^^^^^^^^~03/01/2005~
-~03046~^~320~^51.^0^^~4~^~NC~^^^^^^^^^^~02/01/2009~
-~03046~^~321~^230.^0^^~4~^~BNA~^^^^^^^^^^~02/01/2003~
-~03046~^~322~^2.^0^^~4~^~BNA~^^^^^^^^^^~02/01/2003~
-~03046~^~324~^1.^0^^~4~^~O~^^^^^^^^^^~02/01/2009~
-~03046~^~334~^3.^0^^~4~^~BNA~^^^^^^^^^^~02/01/2003~
-~03046~^~337~^1632.^0^^~4~^~O~^^^^^^^^^^~02/01/2003~
-~03046~^~338~^69.^0^^~4~^~O~^^^^^^^^^^~02/01/2003~
-~03046~^~417~^36.^0^^~4~^~FLM~^^^^^^^^^^~12/01/1997~
-~03046~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~
-~03046~^~432~^36.^0^^~4~^~FLM~^^^^^^^^^^~02/01/2003~
-~03046~^~435~^36.^0^^~4~^~NC~^^^^^^^^^^~02/01/2009~
-~03046~^~601~^7.^0^^~4~^^^^^^^^^^^~03/01/2005~
-~03047~^~208~^63.^0^^~9~^~MC~^^^^^^^^^^~04/01/1997~
-~03047~^~262~^0.^0^^~4~^~FLA~^^^^^^^^^^~02/01/2003~
-~03047~^~263~^0.^0^^~4~^~FLA~^^^^^^^^^^~02/01/2003~
-~03047~^~268~^264.^0^^~9~^~MC~^^^^^^^^^^~03/01/2005~
-~03047~^~301~^10.^0^^~12~^~MA~^^^^^^^^^^~04/01/1997~
-~03047~^~304~^10.^0^^~12~^~MA~^^^^^^^^^^~04/01/1997~
-~03047~^~305~^38.^0^^~12~^~MA~^^^^^^^^^^~04/01/1997~
-~03047~^~306~^87.^0^^~12~^~MA~^^^^^^^^^^~04/01/1997~
-~03047~^~307~^15.^0^^~12~^~MA~^^^^^^^^^^~04/01/1997~
-~03047~^~318~^716.^0^^~12~^~MA~^^^^^^^^^^~04/01/1997~
-~03047~^~319~^0.^0^^~4~^~FLA~^^^^^^^^^^~02/01/2003~
-~03047~^~320~^36.^0^^~4~^~NC~^^^^^^^^^^~03/01/2003~
-~03047~^~321~^350.^0^^~4~^~BNA~^^^^^^^^^^~02/01/2003~
-~03047~^~322~^159.^0^^~4~^~BNA~^^^^^^^^^^~02/01/2003~
-~03047~^~324~^0.^0^^~4~^~FLA~^^^^^^^^^^~03/01/2009~
-~03047~^~334~^0.^0^^~4~^~BNA~^^^^^^^^^^~02/01/2003~
-~03047~^~337~^476.^0^^~4~^~FLA~^^^^^^^^^^~02/01/2003~
-~03047~^~338~^23.^0^^~4~^~FLA~^^^^^^^^^^~02/01/2003~
-~03047~^~417~^8.^0^^~4~^~FLM~^^^^^^^^^^~12/01/1997~
-~03047~^~431~^4.^0^^~4~^~NC~^^^^^^^^^^~05/01/2000~
-~03047~^~432~^4.^0^^~4~^^^^^^^^^^^
-~03047~^~435~^11.^0^^~4~^~NC~^^^^^^^^^^~03/01/2009~
-~03047~^~601~^8.^0^^~12~^~MA~^^^^^^^^^^~04/01/1997~
-~03048~^~208~^82.^0^^~4~^~NC~^^^^^^^^^^~02/01/2009~
-~03048~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2005~
-~03048~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2005~
-~03048~^~268~^344.^0^^~4~^~NC~^^^^^^^^^^~02/01/2009~
-~03048~^~301~^102.^0^^~12~^^^^^^^^^^^~02/01/2009~
-~03048~^~304~^9.^0^^~4~^^^^^^^^^^^~02/01/2009~
-~03048~^~305~^81.^0^^~4~^^^^^^^^^^^~02/01/2009~
-~03048~^~306~^18.^0^^~4~^^^^^^^^^^^~02/01/2009~
-~03048~^~307~^264.^0^^~8~^~LC~^^^^^^^^^^~03/01/2016~
-~03048~^~318~^73.^0^^~4~^~NC~^^^^^^^^^^~02/01/2009~
-~03048~^~319~^19.^0^^~4~^~FLA~^^^^^^^^^^~02/01/2009~
-~03048~^~320~^19.^0^^~4~^~NC~^^^^^^^^^^~02/01/2009~
-~03048~^~321~^6.^0^^~4~^~FLA~^^^^^^^^^^~02/01/2009~
-~03048~^~322~^0.^0^^~4~^~FLA~^^^^^^^^^^~02/01/2009~
-~03048~^~324~^2.^0^^~4~^~FLA~^^^^^^^^^^~02/01/2009~
-~03048~^~334~^0.^0^^~4~^~FLA~^^^^^^^^^^~02/01/2009~
-~03048~^~337~^0.^0^^~4~^~FLA~^^^^^^^^^^~02/01/2003~
-~03048~^~338~^2.^0^^~4~^~FLA~^^^^^^^^^^~02/01/2009~
-~03048~^~417~^25.^0^^~4~^~FLM~^^^^^^^^^^~12/01/1997~
-~03048~^~431~^22.^0^^~4~^~O~^^^^^^^^^^~05/01/2010~
-~03048~^~432~^3.^0^^~4~^~FLA~^^^^^^^^^^~05/01/2010~
-~03048~^~435~^40.^0^^~4~^~NC~^^^^^^^^^^~05/01/2010~
-~03048~^~601~^7.^0^^~4~^^^^^^^^^^^~02/01/2009~
-~03049~^~208~^82.^0^^~4~^~NC~^^^^^^^^^^~12/01/1978~
-~03049~^~268~^343.^0^^~4~^^^^^^^^^^^~04/01/2005~
-~03049~^~301~^11.^3^1.^~1~^^^^^^^^^^^~12/01/1978~
-~03049~^~304~^8.^1^^~1~^^^^^^^^^^^~12/01/1978~
-~03049~^~305~^35.^1^^~1~^^^^^^^^^^^~12/01/1978~
-~03049~^~306~^120.^1^^~1~^^^^^^^^^^^~12/01/1978~
-~03049~^~307~^32.^0^^~8~^~LC~^^^^^^^^^^~07/01/2010~
-~03049~^~318~^502.^3^100.^~1~^^^^^^^^^^^~12/01/1978~
-~03049~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2002~
-~03049~^~320~^25.^0^^~4~^~NC~^^^^^^^^^^~06/01/2002~
-~03049~^~417~^6.^0^^~4~^^^^^^^^^^^~12/01/1978~
-~03049~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~
-~03049~^~432~^6.^0^^~4~^^^^^^^^^^^~12/01/1978~
-~03049~^~435~^6.^0^^~4~^~NC~^^^^^^^^^^~04/01/2005~
-~03050~^~208~^68.^0^^~9~^~MC~^^^^^^^^^^~04/01/1997~
-~03050~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~
-~03050~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~
-~03050~^~268~^285.^0^^~9~^~MC~^^^^^^^^^^~04/01/2005~
-~03050~^~301~^15.^0^^~12~^~MA~^^^^^^^^^^~04/01/1997~
-~03050~^~304~^11.^0^^~12~^~MA~^^^^^^^^^^~04/01/1997~
-~03050~^~305~^35.^0^^~12~^~MA~^^^^^^^^^^~04/01/1997~
-~03050~^~306~^122.^0^^~12~^~MA~^^^^^^^^^^~04/01/1997~
-~03050~^~307~^30.^0^^~8~^~LC~^^^^^^^^^^~07/01/2010~
-~03050~^~318~^1255.^0^^~4~^~NC~^^^^^^^^^^~08/01/2010~
-~03050~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2002~
-~03050~^~320~^63.^0^^~4~^~NC~^^^^^^^^^^~10/01/2009~
-~03050~^~321~^601.^0^^~4~^~BNA~^^^^^^^^^^~02/01/2003~
-~03050~^~322~^304.^0^^~4~^~BNA~^^^^^^^^^^~02/01/2003~
-~03050~^~324~^1.^0^^~4~^~FLA~^^^^^^^^^^~03/01/2009~
-~03050~^~334~^0.^0^^~4~^~BNA~^^^^^^^^^^~02/01/2003~
-~03050~^~337~^1030.^0^^~4~^~NR~^^^^^^^^^^~08/01/2010~
-~03050~^~338~^0.^0^^~4~^~O~^^^^^^^^^^~02/01/2003~
-~03050~^~417~^27.^0^^~4~^~FLM~^^^^^^^^^^~12/01/1997~
-~03050~^~431~^24.^0^^~4~^~NC~^^^^^^^^^^~05/01/2000~
-~03050~^~432~^3.^0^^~4~^^^^^^^^^^^
-~03050~^~435~^44.^0^^~4~^~NC~^^^^^^^^^^~10/01/2009~
-~03050~^~601~^5.^0^^~4~^~FLM~^^^^^^^^^^~04/01/1997~
-~03051~^~208~^75.^0^^~4~^~NC~^^^^^^^^^^~12/01/1978~
-~03051~^~268~^314.^0^^~4~^^^^^^^^^^^
-~03051~^~301~^22.^6^^~1~^^^^^^^^^^^~12/01/1978~
-~03051~^~304~^15.^1^^~1~^^^^^^^^^^^~12/01/1978~
-~03051~^~305~^45.^1^^~1~^^^^^^^^^^^~12/01/1978~
-~03051~^~306~^163.^1^^~1~^^^^^^^^^^^~12/01/1978~
-~03051~^~307~^239.^0^^~4~^~NR~^^^^^^^^^^~07/01/2010~
-~03051~^~318~^443.^6^116.^~1~^^^^^^^^^^^~12/01/1978~
-~03051~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2002~
-~03051~^~320~^22.^0^^~4~^~NC~^^^^^^^^^^~06/01/2002~
-~03051~^~417~^32.^0^^~4~^~FLM~^^^^^^^^^^~12/01/1997~
-~03051~^~431~^26.^0^^~4~^~NC~^^^^^^^^^^~05/01/2000~
-~03051~^~432~^6.^0^^~4~^^^^^^^^^^^
-~03051~^~435~^50.^0^^~4~^~NC~^^^^^^^^^^~01/01/2001~
-~03053~^~208~^77.^0^^~4~^~NC~^^^^^^^^^^~04/01/2009~
-~03053~^~262~^0.^0^^~4~^~FLA~^^^^^^^^^^~03/01/2003~
-~03053~^~263~^0.^0^^~4~^~FLA~^^^^^^^^^^~03/01/2003~
-~03053~^~268~^321.^0^^~4~^~NC~^^^^^^^^^^~04/01/2009~
-~03053~^~301~^17.^2^^~1~^~A~^^^1^13.^20.^1^^^^~04/01/2007~
-~03053~^~304~^10.^2^^~1~^~A~^^^1^9.^11.^1^^^^~04/01/2007~
-~03053~^~305~^33.^2^^~1~^~A~^^^1^27.^38.^1^^^^~04/01/2007~
-~03053~^~306~^145.^2^^~1~^~A~^^^1^130.^160.^1^^^^~04/01/2007~
-~03053~^~307~^31.^0^^~8~^~LC~^^^^^^^^^^~07/01/2010~
-~03053~^~318~^4926.^0^^~4~^~NC~^^^^^^^^^^~08/01/2013~
-~03053~^~319~^0.^0^^~4~^~FLA~^^^^^^^^^^~03/01/2003~
-~03053~^~320~^246.^0^^~4~^~NC~^^^^^^^^^^~08/01/2013~
-~03053~^~321~^2545.^2^^~1~^~A~^^^1^2390.^2700.^1^^^^~04/01/2007~
-~03053~^~322~^810.^2^^~1~^~A~^^^1^590.^1030.^1^^^^~04/01/2007~
-~03053~^~324~^1.^0^^~4~^~NR~^^^^^^^^^^~04/01/2009~
-~03053~^~334~^11.^2^^~1~^~A~^^^1^11.^11.^^^^~1~^~04/01/2007~
-~03053~^~337~^627.^2^^~1~^~A~^^^1^233.^1020.^1^^^^~04/01/2007~
-~03053~^~338~^51.^0^^~4~^~FLA~^^^^^^^^^^~03/01/2003~
-~03053~^~417~^6.^2^^~1~^~A~^^^1^2.^9.^1^^^^~04/01/2007~
-~03053~^~431~^3.^2^^~1~^~A~^^^1^1.^4.^1^^^^~04/01/2007~
-~03053~^~432~^3.^0^^~1~^~AS~^^^^^^^^^^~04/01/2007~
-~03053~^~435~^7.^0^^~4~^~NC~^^^^^^^^^^~04/01/2009~
-~03053~^~601~^7.^2^^~1~^~A~^^^1^6.^8.^1^^^^~04/01/2007~
-~03053~^~636~^0.^0^^~4~^~FLA~^^^^^^^^^^~04/01/2007~
-~03054~^~208~^77.^0^^~4~^~NC~^^^^^^^^^^~03/01/2007~
-~03054~^~262~^0.^0^^~4~^~FLA~^^^^^^^^^^~03/01/2003~
-~03054~^~263~^0.^0^^~4~^~FLA~^^^^^^^^^^~03/01/2003~
-~03054~^~268~^321.^0^^~4~^~NC~^^^^^^^^^^~03/01/2007~
-~03054~^~301~^17.^2^^~1~^~A~^^^1^13.^20.^1^^^^~03/01/2007~
-~03054~^~304~^10.^2^^~1~^~A~^^^1^9.^11.^1^^^^~03/01/2007~
-~03054~^~305~^33.^2^^~1~^~A~^^^1^27.^38.^1^^^^~03/01/2007~
-~03054~^~306~^145.^2^^~1~^~A~^^^1^130.^160.^1^^^^~03/01/2007~
-~03054~^~307~^31.^0^^~8~^~LC~^^^^^^^^^^~07/01/2010~
-~03054~^~318~^4926.^0^^~4~^~NC~^^^^^^^^^^~04/01/2009~
-~03054~^~319~^0.^0^^~4~^~FLA~^^^^^^^^^^~03/01/2003~
-~03054~^~320~^246.^0^^~4~^~NC~^^^^^^^^^^~04/01/2009~
-~03054~^~321~^2545.^2^^~1~^~A~^^^1^2390.^2700.^1^^^^~03/01/2007~
-~03054~^~322~^810.^2^^~1~^~A~^^^1^590.^1030.^1^^^^~03/01/2007~
-~03054~^~324~^1.^0^^~4~^~FLA~^^^^^^^^^^~04/01/2009~
-~03054~^~334~^11.^2^^~1~^~A~^^^1^11.^11.^^^^~1~^~03/01/2007~
-~03054~^~337~^627.^2^^~1~^~A~^^^1^233.^1020.^1^^^^~03/01/2007~
-~03054~^~338~^51.^0^^~4~^~FLA~^^^^^^^^^^~03/01/2007~
-~03054~^~417~^6.^2^^~1~^~A~^^^1^2.^9.^1^^^^~03/01/2007~
-~03054~^~431~^3.^2^^~1~^~A~^^^1^1.^4.^1^^^^~03/01/2007~
-~03054~^~432~^3.^0^^~1~^~AS~^^^^^^^^^^~03/01/2007~
-~03054~^~435~^7.^0^^~4~^~NC~^^^^^^^^^^~04/01/2009~
-~03054~^~601~^7.^2^^~1~^~A~^^^1^6.^8.^1^^^^~03/01/2007~
-~03054~^~636~^0.^0^^~4~^~FLA~^^^^^^^^^^~03/01/2007~
-~03055~^~208~^96.^0^^~9~^~MC~^^^^^^^^^^~11/01/1996~
-~03055~^~262~^0.^0^^~4~^~FLA~^^^^^^^^^^~03/01/2003~
-~03055~^~263~^0.^0^^~4~^~FLA~^^^^^^^^^^~03/01/2003~
-~03055~^~268~^402.^0^^~9~^^^^^^^^^^^~03/01/2005~
-~03055~^~301~^19.^1^^~12~^~MA~^^^^^^^^^^~11/01/1996~
-~03055~^~304~^15.^1^^~12~^~MA~^^^^^^^^^^~11/01/1996~
-~03055~^~305~^24.^1^^~4~^~FLM~^^^^^^^^^^~11/01/1996~
-~03055~^~306~^127.^1^^~12~^~MA~^^^^^^^^^^~11/01/1996~
-~03055~^~307~^38.^0^^~8~^~LC~^^^^^^^^^^~07/01/2010~
-~03055~^~318~^4436.^0^^~4~^~NC~^^^^^^^^^^~08/01/2010~
-~03055~^~319~^0.^0^^~4~^~BNA~^^^^^^^^^^~03/01/2003~
-~03055~^~320~^222.^0^^~4~^~NC~^^^^^^^^^^~03/01/2003~
-~03055~^~321~^2165.^0^^~4~^~BNA~^^^^^^^^^^~03/01/2003~
-~03055~^~322~^993.^0^^~4~^~BNA~^^^^^^^^^^~03/01/2003~
-~03055~^~324~^1.^0^^~4~^~FLA~^^^^^^^^^^~03/01/2009~
-~03055~^~334~^0.^0^^~4~^~BNA~^^^^^^^^^^~03/01/2003~
-~03055~^~337~^0.^0^^~4~^~FLA~^^^^^^^^^^~03/01/2003~
-~03055~^~338~^58.^0^^~4~^~FLA~^^^^^^^^^^~03/01/2003~
-~03055~^~417~^11.^0^^~4~^~FLM~^^^^^^^^^^~11/01/1996~
-~03055~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2003~
-~03055~^~432~^11.^0^^~4~^~FLM~^^^^^^^^^^~03/01/2003~
-~03055~^~435~^11.^0^^~4~^~NC~^^^^^^^^^^~08/01/2009~
-~03055~^~601~^12.^1^^~12~^~MA~^^^^^^^^^^~11/01/1996~
-~03067~^~208~^51.^0^^~4~^~NC~^^^^^^^^^^~12/01/1978~
-~03067~^~268~^213.^0^^~4~^^^^^^^^^^^~04/01/2005~
-~03067~^~301~^13.^21^0.^~1~^^^^^^^^^^^~12/01/1978~
-~03067~^~304~^7.^3^0.^~1~^^^^^^^^^^^~12/01/1978~
-~03067~^~305~^49.^1^^~1~^^^^^^^^^^^~12/01/1978~
-~03067~^~306~^95.^14^^~1~^^^^^^^^^^^~12/01/1978~
-~03067~^~307~^13.^15^1.^~1~^^^^^^^^^^^~12/01/1978~
-~03067~^~318~^1483.^23^129.^~1~^^^^^^^^^^^~12/01/1978~
-~03067~^~319~^76.^0^^~4~^~NC~^^^^^^^^^^~06/01/2002~
-~03067~^~320~^138.^0^^~4~^~NC~^^^^^^^^^^~06/01/2002~
-~03067~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~
-~03067~^~417~^4.^0^^~1~^^^^^^^^^^^~12/01/1978~
-~03067~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~
-~03067~^~432~^4.^0^^~1~^^^^^^^^^^^~12/01/1978~
-~03067~^~435~^4.^0^^~4~^~NC~^^^^^^^^^^~02/01/2009~
-~03067~^~601~^5.^0^^~4~^^^^^^^^^^^~04/01/1985~
-~03068~^~208~^74.^0^^~4~^~NC~^^^^^^^^^^~04/01/2017~
-~03068~^~262~^0.^0^^~4~^~FLA~^^^^^^^^^^~03/01/2003~
-~03068~^~263~^0.^0^^~4~^~FLA~^^^^^^^^^^~03/01/2003~
-~03068~^~268~^311.^0^^~4~^~NC~^^^^^^^^^^~04/01/2017~
-~03068~^~301~^27.^0^^~1~^~A~^^^^^^^^^^~01/01/2017~
-~03068~^~304~^13.^0^^~1~^~A~^^^^^^^^^^~01/01/2017~
-~03068~^~305~^52.^0^^~1~^~A~^^^^^^^^^^~01/01/2017~
-~03068~^~306~^143.^0^^~1~^~A~^^^^^^^^^^~01/01/2017~
-~03068~^~307~^25.^0^^~1~^~A~^^^^^^^^^^~01/01/2017~
-~03068~^~318~^2182.^0^^~4~^~NC~^^^^^^^^^^~03/01/2009~
-~03068~^~319~^1.^0^^~4~^~FLA~^^^^^^^^^^~03/01/2003~
-~03068~^~320~^110.^0^^~4~^~NC~^^^^^^^^^^~03/01/2009~
-~03068~^~321~^1060.^0^^~4~^~FLA~^^^^^^^^^^~03/01/2003~
-~03068~^~322~^495.^0^^~4~^~FLA~^^^^^^^^^^~03/01/2003~
-~03068~^~324~^3.^0^^~4~^~FLA~^^^^^^^^^^~03/01/2009~
-~03068~^~334~^0.^0^^~4~^~FLA~^^^^^^^^^^~03/01/2003~
-~03068~^~337~^0.^0^^~4~^~FLA~^^^^^^^^^^~03/01/2003~
-~03068~^~338~^40.^0^^~4~^~FLA~^^^^^^^^^^~03/01/2003~
-~03068~^~417~^15.^0^^~1~^~A~^^^^^^^^^^~01/01/2017~
-~03068~^~431~^0.^0^^~4~^~NR~^^^^^^^^^^~01/01/2017~
-~03068~^~432~^15.^0^^~4~^~NR~^^^^^^^^^^~01/01/2017~
-~03068~^~435~^15.^0^^~4~^~NC~^^^^^^^^^^~01/01/2017~
-~03068~^~601~^8.^0^^~1~^~A~^^^^^^^^^^~01/01/2017~
-~03069~^~208~^74.^0^^~4~^~NC~^^^^^^^^^^~04/01/2017~
-~03069~^~262~^0.^0^^~4~^~FLA~^^^^^^^^^^~03/01/2003~
-~03069~^~263~^0.^0^^~4~^~FLA~^^^^^^^^^^~03/01/2003~
-~03069~^~268~^311.^0^^~4~^~NC~^^^^^^^^^^~04/01/2017~
-~03069~^~301~^27.^0^^~1~^~A~^^^^^^^^^^~01/01/2017~
-~03069~^~304~^13.^0^^~1~^~A~^^^^^^^^^^~01/01/2017~
-~03069~^~305~^52.^0^^~1~^~A~^^^^^^^^^^~01/01/2017~
-~03069~^~306~^143.^0^^~1~^~A~^^^^^^^^^^~01/01/2017~
-~03069~^~307~^25.^0^^~1~^~A~^^^^^^^^^^~01/01/2017~
-~03069~^~318~^1729.^0^^~4~^~NC~^^^^^^^^^^~01/01/2017~
-~03069~^~319~^1.^0^^~4~^~FLA~^^^^^^^^^^~03/01/2003~
-~03069~^~320~^87.^0^^~4~^~NC~^^^^^^^^^^~03/01/2005~
-~03069~^~321~^840.^0^^~4~^~FLA~^^^^^^^^^^~03/01/2003~
-~03069~^~322~^392.^0^^~4~^~FLA~^^^^^^^^^^~03/01/2003~
-~03069~^~324~^2.^0^^~4~^~FLA~^^^^^^^^^^~03/01/2009~
-~03069~^~334~^0.^0^^~4~^~FLA~^^^^^^^^^^~03/01/2003~
-~03069~^~337~^0.^0^^~4~^~FLA~^^^^^^^^^^~03/01/2003~
-~03069~^~338~^32.^0^^~4~^~FLA~^^^^^^^^^^~03/01/2003~
-~03069~^~417~^15.^0^^~1~^~A~^^^^^^^^^^~01/01/2017~
-~03069~^~431~^0.^0^^~4~^~NR~^^^^^^^^^^~01/01/2017~
-~03069~^~432~^15.^0^^~4~^~NR~^^^^^^^^^^~01/01/2017~
-~03069~^~435~^15.^0^^~4~^~NC~^^^^^^^^^^~01/01/2017~
-~03069~^~601~^8.^0^^~1~^~A~^^^^^^^^^^~01/01/2017~
-~03070~^~208~^50.^0^^~4~^~NC~^^^^^^^^^^~12/01/1978~
-~03070~^~262~^0.^0^^~4~^~FLA~^^^^^^^^^^~03/01/2003~
-~03070~^~263~^0.^0^^~4~^~FLA~^^^^^^^^^^~03/01/2003~
-~03070~^~268~^209.^0^^~4~^^^^^^^^^^^~03/01/2005~
-~03070~^~301~^37.^3^1.^~1~^^^^^^^^^^^~12/01/1978~
-~03070~^~304~^5.^0^^~4~^^^^^^^^^^^~12/01/1978~
-~03070~^~305~^24.^0^^~4~^^^^^^^^^^^~12/01/1978~
-~03070~^~306~^66.^0^^~4~^^^^^^^^^^^~12/01/1978~
-~03070~^~307~^16.^1^^~1~^^^^^^^^^^^~12/01/1978~
-~03070~^~318~^1384.^0^^~4~^~NC~^^^^^^^^^^~06/01/2013~
-~03070~^~319~^0.^0^^~4~^~BNA~^^^^^^^^^^~03/01/2003~
-~03070~^~320~^69.^0^^~4~^~NC~^^^^^^^^^^~03/01/2003~
-~03070~^~321~^674.^0^^~4~^~BNA~^^^^^^^^^^~03/01/2003~
-~03070~^~322~^313.^0^^~4~^~BNA~^^^^^^^^^^~03/01/2003~
-~03070~^~324~^3.^0^^~4~^~FLA~^^^^^^^^^^~03/01/2009~
-~03070~^~334~^0.^0^^~4~^~BNA~^^^^^^^^^^~03/01/2003~
-~03070~^~337~^0.^0^^~4~^~O~^^^^^^^^^^~03/01/2003~
-~03070~^~338~^40.^0^^~4~^~O~^^^^^^^^^^~03/01/2003~
-~03070~^~417~^5.^3^0.^~1~^^^^^^^^^^^~12/01/1978~
-~03070~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~
-~03070~^~432~^5.^3^0.^~1~^^^^^^^^^^^~03/01/2003~
-~03070~^~435~^5.^0^^~4~^~NC~^^^^^^^^^^~03/01/2009~
-~03070~^~601~^4.^0^^~4~^^^^^^^^^^^~04/01/1985~
-~03072~^~208~^78.^0^^~4~^~NC~^^^^^^^^^^~12/01/1978~
-~03072~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2003~
-~03072~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2003~
-~03072~^~268~^326.^0^^~4~^^^^^^^^^^^~03/01/2005~
-~03072~^~301~^36.^3^0.^~1~^^^^^^^^^^^~12/01/1978~
-~03072~^~304~^10.^1^^~1~^^^^^^^^^^^~12/01/1978~
-~03072~^~305~^51.^1^^~1~^^^^^^^^^^^~12/01/1978~
-~03072~^~306~^92.^1^^~1~^^^^^^^^^^^~12/01/1978~
-~03072~^~307~^25.^0^^~4~^~T~^^^^^^^^^^~07/01/2010~
-~03072~^~318~^1010.^0^^~4~^~NC~^^^^^^^^^^~03/01/2003~
-~03072~^~319~^2.^0^^~4~^~BNA~^^^^^^^^^^~03/01/2003~
-~03072~^~320~^52.^0^^~4~^~NC~^^^^^^^^^^~03/01/2003~
-~03072~^~321~^495.^0^^~4~^~BNA~^^^^^^^^^^~03/01/2003~
-~03072~^~322~^214.^0^^~4~^~BNA~^^^^^^^^^^~03/01/2003~
-~03072~^~324~^7.^0^^~4~^~FLA~^^^^^^^^^^~03/01/2009~
-~03072~^~334~^0.^0^^~4~^~BNA~^^^^^^^^^^~03/01/2003~
-~03072~^~337~^0.^0^^~4~^~FLA~^^^^^^^^^^~03/01/2003~
-~03072~^~338~^178.^0^^~4~^~FLA~^^^^^^^^^^~03/01/2003~
-~03072~^~417~^16.^0^^~4~^~FLM~^^^^^^^^^^~12/01/1997~
-~03072~^~431~^15.^0^^~4~^~NC~^^^^^^^^^^~05/01/2000~
-~03072~^~432~^1.^0^^~4~^^^^^^^^^^^
-~03072~^~435~^27.^0^^~4~^~NC~^^^^^^^^^^~03/01/2009~
-~03072~^~601~^29.^11^1.^~1~^^^^^^^^^^^~12/01/1978~
-~03073~^~208~^59.^0^^~9~^~MC~^^^^^^^^^^~04/01/1997~
-~03073~^~262~^0.^0^^~4~^~FLA~^^^^^^^^^^~03/01/2003~
-~03073~^~263~^0.^0^^~4~^~FLA~^^^^^^^^^^~03/01/2003~
-~03073~^~268~^247.^0^^~9~^^^^^^^^^^^~03/01/2005~
-~03073~^~301~^27.^0^^~12~^~MA~^^^^^^^^^^~04/01/1997~
-~03073~^~304~^14.^0^^~12~^~MA~^^^^^^^^^^~04/01/1997~
-~03073~^~305~^47.^0^^~12~^~MA~^^^^^^^^^^~04/01/1997~
-~03073~^~306~^158.^0^^~12~^~MA~^^^^^^^^^^~04/01/1997~
-~03073~^~307~^24.^0^^~12~^~MA~^^^^^^^^^^~04/01/1997~
-~03073~^~318~^4132.^0^^~12~^~MA~^^^^^^^^^^~04/01/1997~
-~03073~^~319~^0.^0^^~4~^~FLA~^^^^^^^^^^~03/01/2003~
-~03073~^~320~^207.^0^^~4~^~NC~^^^^^^^^^^~03/01/2003~
-~03073~^~321~^2009.^0^^~4~^~FLA~^^^^^^^^^^~03/01/2003~
-~03073~^~322~^938.^0^^~4~^~FLA~^^^^^^^^^^~03/01/2003~
-~03073~^~324~^3.^0^^~4~^~FLA~^^^^^^^^^^~03/01/2009~
-~03073~^~334~^0.^0^^~4~^~FLA~^^^^^^^^^^~03/01/2003~
-~03073~^~337~^0.^0^^~4~^~FLA~^^^^^^^^^^~03/01/2003~
-~03073~^~338~^72.^0^^~4~^~FLA~^^^^^^^^^^~03/01/2003~
-~03073~^~417~^5.^0^^~4~^~FLM~^^^^^^^^^^~04/01/1997~
-~03073~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~
-~03073~^~432~^5.^0^^~4~^~FLM~^^^^^^^^^^~03/01/2003~
-~03073~^~435~^5.^0^^~4~^~NC~^^^^^^^^^^~03/01/2009~
-~03073~^~601~^11.^0^^~12~^~MA~^^^^^^^^^^~04/01/1997~
-~03075~^~208~^63.^0^^~4~^~NC~^^^^^^^^^^~12/01/1978~
-~03075~^~268~^264.^0^^~4~^^^^^^^^^^^~04/01/2005~
-~03075~^~301~^28.^2^^~1~^^^^^^^^^^^~12/01/1978~
-~03075~^~304~^10.^0^^~4~^^^^^^^^^^^~12/01/1978~
-~03075~^~305~^31.^0^^~1~^^^^^^^^^^^~12/01/1978~
-~03075~^~306~^55.^0^^~1~^^^^^^^^^^^~12/01/1978~
-~03075~^~307~^20.^1^^~1~^^^^^^^^^^^~12/01/1978~
-~03075~^~318~^1417.^2^^~1~^^^^^^^^^^^~12/01/1978~
-~03075~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2002~
-~03075~^~320~^71.^0^^~4~^~NC~^^^^^^^^^^~06/01/2002~
-~03075~^~417~^3.^3^0.^~1~^^^^^^^^^^^~12/01/1978~
-~03075~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~
-~03075~^~432~^3.^3^0.^~1~^^^^^^^^^^^~12/01/1978~
-~03075~^~435~^3.^0^^~4~^~NC~^^^^^^^^^^~04/01/2005~
-~03076~^~208~^64.^0^^~4~^~NC~^^^^^^^^^^~12/01/1978~
-~03076~^~268~^268.^0^^~4~^^^^^^^^^^^~04/01/2005~
-~03076~^~301~^26.^4^2.^~1~^^^^^^^^^^^~12/01/1978~
-~03076~^~304~^11.^0^^~4~^^^^^^^^^^^~12/01/1978~
-~03076~^~305~^33.^1^^~1~^^^^^^^^^^^~12/01/1978~
-~03076~^~306~^59.^1^^~1~^^^^^^^^^^^~12/01/1978~
-~03076~^~307~^26.^1^^~1~^^^^^^^^^^^~12/01/1978~
-~03076~^~318~^1051.^4^72.^~1~^^^^^^^^^^^~12/01/1978~
-~03076~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2002~
-~03076~^~320~^53.^0^^~4~^~NC~^^^^^^^^^^~06/01/2002~
-~03076~^~417~^3.^0^^~1~^^^^^^^^^^^~12/01/1978~
-~03076~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~
-~03076~^~432~^3.^0^^~1~^^^^^^^^^^^~12/01/1978~
-~03076~^~435~^3.^0^^~4~^~NC~^^^^^^^^^^~04/01/2005~
-~03077~^~208~^60.^1^^~9~^~MC~^^^^^^^^^^~07/01/1998~
-~03077~^~262~^0.^0^^~4~^~FLA~^^^^^^^^^^~03/01/2003~
-~03077~^~263~^0.^0^^~4~^~FLA~^^^^^^^^^^~03/01/2003~
-~03077~^~268~^251.^0^^~9~^^^^^^^^^^^~03/01/2005~
-~03077~^~301~^14.^1^^~12~^~MA~^^^^^^^^^^~07/01/1998~
-~03077~^~304~^24.^1^^~12~^~MA~^^^^^^^^^^~07/01/1998~
-~03077~^~305~^50.^1^^~12~^~MA~^^^^^^^^^^~07/01/1998~
-~03077~^~306~^133.^1^^~12~^~MA~^^^^^^^^^^~07/01/1998~
-~03077~^~307~^11.^1^^~12~^~MA~^^^^^^^^^^~07/01/1998~
-~03077~^~318~^555.^0^^~4~^~NC~^^^^^^^^^^~02/01/2009~
-~03077~^~319~^16.^0^^~4~^~FLA~^^^^^^^^^^~03/01/2003~
-~03077~^~320~^41.^0^^~4~^~NC~^^^^^^^^^^~02/01/2009~
-~03077~^~321~^282.^0^^~4~^~FLA~^^^^^^^^^^~03/01/2003~
-~03077~^~322~^39.^0^^~4~^~FLA~^^^^^^^^^^~03/01/2003~
-~03077~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~
-~03077~^~334~^0.^0^^~4~^~FLA~^^^^^^^^^^~03/01/2003~
-~03077~^~337~^290.^0^^~4~^~FLA~^^^^^^^^^^~03/01/2003~
-~03077~^~338~^341.^0^^~4~^~FLA~^^^^^^^^^^~03/01/2003~
-~03077~^~417~^9.^0^^~4~^~FLM~^^^^^^^^^^~07/01/1998~
-~03077~^~431~^0.^0^^~4~^~FLA~^^^^^^^^^^~03/01/2003~
-~03077~^~432~^9.^0^^~4~^~FLM~^^^^^^^^^^~03/01/2003~
-~03077~^~435~^9.^0^^~4~^~NC~^^^^^^^^^^~02/01/2009~
-~03077~^~601~^5.^0^^~4~^~FLM~^^^^^^^^^^~07/01/1998~
-~03079~^~208~^44.^0^^~4~^~NC~^^^^^^^^^^~12/01/1978~
-~03079~^~268~^184.^0^^~4~^^^^^^^^^^^~04/01/2005~
-~03079~^~301~^32.^4^2.^~1~^^^^^^^^^^^~12/01/1978~
-~03079~^~304~^8.^1^^~1~^^^^^^^^^^^~12/01/1978~
-~03079~^~305~^25.^1^^~1~^^^^^^^^^^^~12/01/1978~
-~03079~^~306~^63.^1^^~1~^^^^^^^^^^^~12/01/1978~
-~03079~^~307~^21.^1^^~1~^^^^^^^^^^^~12/01/1978~
-~03079~^~318~^991.^4^87.^~1~^^^^^^^^^^^~12/01/1978~
-~03079~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2002~
-~03079~^~320~^50.^0^^~4~^~NC~^^^^^^^^^^~06/01/2002~
-~03079~^~417~^2.^3^0.^~1~^^^^^^^^^^^~12/01/1978~
-~03079~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~
-~03079~^~432~^2.^3^0.^~1~^^^^^^^^^^^~12/01/1978~
-~03079~^~435~^2.^0^^~4~^~NC~^^^^^^^^^^~04/01/2005~
-~03081~^~208~^52.^0^^~4~^~NC~^^^^^^^^^^~12/01/1978~
-~03081~^~268~^218.^0^^~4~^^^^^^^^^^^~04/01/2005~
-~03081~^~301~^32.^4^2.^~1~^^^^^^^^^^^~12/01/1978~
-~03081~^~304~^9.^0^^~1~^^^^^^^^^^^~12/01/1978~
-~03081~^~305~^29.^0^^~1~^^^^^^^^^^^~12/01/1978~
-~03081~^~306~^73.^0^^~1~^^^^^^^^^^^~12/01/1978~
-~03081~^~307~^17.^1^^~1~^^^^^^^^^^^~12/01/1978~
-~03081~^~318~^994.^4^84.^~1~^^^^^^^^^^^~12/01/1978~
-~03081~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2002~
-~03081~^~320~^50.^0^^~4~^~NC~^^^^^^^^^^~06/01/2002~
-~03081~^~417~^3.^0^^~1~^^^^^^^^^^^~12/01/1978~
-~03081~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~
-~03081~^~432~^3.^0^^~1~^^^^^^^^^^^~12/01/1978~
-~03081~^~435~^3.^0^^~4~^~NC~^^^^^^^^^^~04/01/2005~
-~03082~^~208~^52.^0^^~9~^~MC~^^^^^^^^^^~04/01/1997~
-~03082~^~262~^0.^0^^~4~^~FLA~^^^^^^^^^^~03/01/2003~
-~03082~^~263~^0.^0^^~4~^~FLA~^^^^^^^^^^~03/01/2003~
-~03082~^~268~^218.^0^^~9~^^^^^^^^^^^~03/01/2005~
-~03082~^~301~^18.^0^^~12~^~MA~^^^^^^^^^^~04/01/1997~
-~03082~^~304~^8.^0^^~12~^~MA~^^^^^^^^^^~04/01/1997~
-~03082~^~305~^34.^0^^~12~^~MA~^^^^^^^^^^~04/01/1997~
-~03082~^~306~^91.^0^^~12~^~MA~^^^^^^^^^^~04/01/1997~
-~03082~^~307~^19.^0^^~8~^~LC~^^^^^^^^^^~07/01/2010~
-~03082~^~318~^1622.^0^^~4~^~NC~^^^^^^^^^^~03/01/2009~
-~03082~^~319~^0.^0^^~4~^~FLA~^^^^^^^^^^~03/01/2003~
-~03082~^~320~^81.^0^^~4~^~NC~^^^^^^^^^^~03/01/2003~
-~03082~^~321~^789.^0^^~4~^~FLA~^^^^^^^^^^~03/01/2003~
-~03082~^~322~^368.^0^^~4~^~FLA~^^^^^^^^^^~03/01/2003~
-~03082~^~324~^0.^0^^~4~^~FLA~^^^^^^^^^^~03/01/2009~
-~03082~^~334~^0.^0^^~4~^~FLA~^^^^^^^^^^~03/01/2003~
-~03082~^~337~^0.^0^^~4~^~FLA~^^^^^^^^^^~03/01/2003~
-~03082~^~338~^38.^0^^~4~^~FLA~^^^^^^^^^^~03/01/2003~
-~03082~^~417~^4.^0^^~4~^~FLM~^^^^^^^^^^~04/01/1997~
-~03082~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~
-~03082~^~432~^4.^0^^~4~^~FLM~^^^^^^^^^^~03/01/2003~
-~03082~^~435~^4.^0^^~4~^~NC~^^^^^^^^^^~03/01/2009~
-~03082~^~601~^5.^0^^~4~^~FLM~^^^^^^^^^^~04/01/1997~
-~03083~^~208~^56.^0^^~9~^~MC~^^^^^^^^^^~04/01/1997~
-~03083~^~262~^0.^0^^~4~^~FLA~^^^^^^^^^^~03/01/2003~
-~03083~^~263~^0.^0^^~4~^~FLA~^^^^^^^^^^~03/01/2003~
-~03083~^~268~^234.^0^^~9~^~MC~^^^^^^^^^^~03/01/2005~
-~03083~^~301~^24.^0^^~12~^~MA~^^^^^^^^^^~04/01/1997~
-~03083~^~304~^9.^0^^~12~^~MA~^^^^^^^^^^~04/01/1997~
-~03083~^~305~^37.^0^^~12~^~MA~^^^^^^^^^^~04/01/1997~
-~03083~^~306~^86.^0^^~12~^~MA~^^^^^^^^^^~04/01/1997~
-~03083~^~307~^23.^0^^~8~^~LC~^^^^^^^^^^~07/01/2010~
-~03083~^~318~^1886.^0^^~4~^~NC~^^^^^^^^^^~03/01/2009~
-~03083~^~319~^0.^0^^~4~^~FLA~^^^^^^^^^^~03/01/2003~
-~03083~^~320~^94.^0^^~4~^~NC~^^^^^^^^^^~03/01/2009~
-~03083~^~321~^927.^0^^~4~^~FLA~^^^^^^^^^^~03/01/2003~
-~03083~^~322~^410.^0^^~4~^~FLA~^^^^^^^^^^~03/01/2003~
-~03083~^~324~^0.^0^^~4~^~O~^^^^^^^^^^~03/01/2009~
-~03083~^~334~^0.^0^^~4~^~FLA~^^^^^^^^^^~03/01/2003~
-~03083~^~337~^1127.^0^^~4~^~FLA~^^^^^^^^^^~03/01/2003~
-~03083~^~338~^134.^0^^~4~^~FLA~^^^^^^^^^^~03/01/2003~
-~03083~^~417~^8.^0^^~4~^~FLM~^^^^^^^^^^~04/01/1997~
-~03083~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~
-~03083~^~432~^8.^0^^~4~^~FLM~^^^^^^^^^^~03/01/2005~
-~03083~^~435~^8.^0^^~4~^~NC~^^^^^^^^^^~03/01/2009~
-~03083~^~601~^4.^0^^~4~^~FLM~^^^^^^^^^^~04/01/1997~
-~03084~^~208~^48.^0^^~9~^~MC~^^^^^^^^^^~04/01/1997~
-~03084~^~262~^0.^0^^~4~^~FLA~^^^^^^^^^^~03/01/2003~
-~03084~^~263~^0.^0^^~4~^~FLA~^^^^^^^^^^~03/01/2003~
-~03084~^~268~^201.^0^^~9~^^^^^^^^^^^~03/01/2005~
-~03084~^~301~^27.^0^^~12~^~MA~^^^^^^^^^^~04/01/1997~
-~03084~^~304~^13.^0^^~12~^~MA~^^^^^^^^^^~04/01/1997~
-~03084~^~305~^44.^0^^~12~^~MA~^^^^^^^^^^~04/01/1997~
-~03084~^~306~^102.^0^^~12~^~MA~^^^^^^^^^^~04/01/1997~
-~03084~^~307~^20.^0^^~12~^~MA~^^^^^^^^^^~04/01/1997~
-~03084~^~318~^4396.^0^^~12~^~MA~^^^^^^^^^^~04/01/1997~
-~03084~^~319~^0.^0^^~4~^~FLA~^^^^^^^^^^~03/01/2003~
-~03084~^~320~^220.^0^^~4~^~NC~^^^^^^^^^^~05/01/2007~
-~03084~^~321~^2139.^0^^~4~^~FLA~^^^^^^^^^^~03/01/2003~
-~03084~^~322~^998.^0^^~4~^~FLA~^^^^^^^^^^~03/01/2003~
-~03084~^~324~^1.^0^^~4~^~FLA~^^^^^^^^^^~03/01/2009~
-~03084~^~334~^0.^0^^~4~^~FLA~^^^^^^^^^^~03/01/2003~
-~03084~^~337~^0.^0^^~4~^~FLA~^^^^^^^^^^~03/01/2003~
-~03084~^~338~^76.^0^^~4~^~FLA~^^^^^^^^^^~03/01/2003~
-~03084~^~417~^10.^0^^~4~^~FLM~^^^^^^^^^^~04/01/1997~
-~03084~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~
-~03084~^~432~^10.^0^^~4~^~FLM~^^^^^^^^^^~03/01/2003~
-~03084~^~435~^10.^0^^~4~^~NC~^^^^^^^^^^~03/01/2009~
-~03084~^~601~^4.^0^^~4~^~FLM~^^^^^^^^^^~04/01/1997~
-~03085~^~208~^53.^0^^~9~^~MC~^^^^^^^^^^~04/01/1997~
-~03085~^~262~^0.^0^^~4~^~FLA~^^^^^^^^^^~03/01/2003~
-~03085~^~263~^0.^0^^~4~^~FLA~^^^^^^^^^^~03/01/2003~
-~03085~^~268~^222.^0^^~9~^^^^^^^^^^^~03/01/2005~
-~03085~^~301~^16.^0^^~12~^~MA~^^^^^^^^^^~04/01/1997~
-~03085~^~304~^9.^0^^~12~^~MA~^^^^^^^^^^~04/01/1997~
-~03085~^~305~^32.^0^^~12~^~MA~^^^^^^^^^^~04/01/1997~
-~03085~^~306~^98.^0^^~12~^~MA~^^^^^^^^^^~04/01/1997~
-~03085~^~307~^45.^0^^~8~^~LC~^^^^^^^^^^~07/01/2010~
-~03085~^~318~^4325.^0^^~4~^~FLA~^^^^^^^^^^~08/01/2004~
-~03085~^~319~^0.^0^^~4~^~FLA~^^^^^^^^^^~03/01/2003~
-~03085~^~320~^216.^0^^~4~^~NC~^^^^^^^^^^~05/01/2007~
-~03085~^~321~^2107.^0^^~4~^~FLA~^^^^^^^^^^~03/01/2003~
-~03085~^~322~^976.^0^^~4~^~FLA~^^^^^^^^^^~03/01/2003~
-~03085~^~324~^0.^0^^~4~^~FLA~^^^^^^^^^^~03/01/2009~
-~03085~^~334~^0.^0^^~4~^~FLA~^^^^^^^^^^~03/01/2003~
-~03085~^~337~^0.^0^^~4~^~FLA~^^^^^^^^^^~03/01/2003~
-~03085~^~338~^174.^0^^~4~^~FLA~^^^^^^^^^^~03/01/2003~
-~03085~^~417~^7.^0^^~4~^~FLM~^^^^^^^^^^~04/01/1997~
-~03085~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~
-~03085~^~432~^7.^0^^~4~^~FLM~^^^^^^^^^^~03/01/2005~
-~03085~^~435~^7.^0^^~4~^~NC~^^^^^^^^^^~03/01/2009~
-~03085~^~601~^4.^0^^~4~^~FLM~^^^^^^^^^^~04/01/1997~
-~03089~^~208~^67.^0^^~9~^~MC~^^^^^^^^^^~04/01/1997~
-~03089~^~262~^0.^0^^~4~^~FLA~^^^^^^^^^^~03/01/2003~
-~03089~^~263~^0.^0^^~4~^~FLA~^^^^^^^^^^~03/01/2003~
-~03089~^~268~^280.^0^^~9~^~MC~^^^^^^^^^^~02/01/2009~
-~03089~^~301~^66.^0^^~12~^~MA~^^^^^^^^^^~04/01/1997~
-~03089~^~304~^8.^0^^~12~^~MA~^^^^^^^^^^~04/01/1997~
-~03089~^~305~^86.^0^^~12~^~MA~^^^^^^^^^^~04/01/1997~
-~03089~^~306~^67.^0^^~12~^~MA~^^^^^^^^^^~04/01/1997~
-~03089~^~307~^88.^0^^~8~^~LC~^^^^^^^^^^~07/01/2017~
-~03089~^~318~^56.^0^^~4~^~NC~^^^^^^^^^^~02/01/2009~
-~03089~^~319~^14.^0^^~4~^~FLA~^^^^^^^^^^~02/01/2009~
-~03089~^~320~^15.^0^^~4~^~NC~^^^^^^^^^^~02/01/2009~
-~03089~^~321~^5.^0^^~4~^~FLA~^^^^^^^^^^~02/01/2009~
-~03089~^~322~^0.^0^^~4~^~FLA~^^^^^^^^^^~02/01/2009~
-~03089~^~324~^2.^0^^~4~^~O~^^^^^^^^^^~02/01/2009~
-~03089~^~334~^0.^0^^~4~^~FLA~^^^^^^^^^^~02/01/2009~
-~03089~^~337~^0.^0^^~4~^~FLA~^^^^^^^^^^~03/01/2003~
-~03089~^~338~^0.^0^^~4~^~FLA~^^^^^^^^^^~02/01/2009~
-~03089~^~417~^11.^0^^~4~^~FLM~^^^^^^^^^^~12/01/1997~
-~03089~^~431~^6.^0^^~4~^~NC~^^^^^^^^^^~05/01/2000~
-~03089~^~432~^5.^0^^~4~^^^^^^^^^^^
-~03089~^~435~^15.^0^^~4~^~NC~^^^^^^^^^^~02/01/2009~
-~03089~^~601~^7.^0^^~4~^~FLM~^^^^^^^^^^~04/01/1997~
-~03090~^~208~^61.^0^^~4~^~NC~^^^^^^^^^^~12/01/1978~
-~03090~^~262~^0.^0^^~4~^~FLA~^^^^^^^^^^~03/01/2003~
-~03090~^~263~^0.^0^^~4~^~FLA~^^^^^^^^^^~03/01/2003~
-~03090~^~268~^255.^0^^~4~^^^^^^^^^^^~03/01/2005~
-~03090~^~301~^51.^6^^~1~^^^^^^^^^^^~12/01/1978~
-~03090~^~304~^7.^1^^~1~^^^^^^^^^^^~12/01/1978~
-~03090~^~305~^59.^1^^~1~^^^^^^^^^^^~12/01/1978~
-~03090~^~306~^44.^1^^~1~^^^^^^^^^^^~12/01/1978~
-~03090~^~307~^183.^0^^~8~^~LC~^^^^^^^^^^~03/01/2016~
-~03090~^~318~^106.^0^^~4~^~NC~^^^^^^^^^^~02/01/2009~
-~03090~^~319~^29.^0^^~4~^~FLA~^^^^^^^^^^~03/01/2003~
-~03090~^~320~^30.^0^^~4~^~NC~^^^^^^^^^^~02/01/2009~
-~03090~^~321~^5.^0^^~4~^~FLA~^^^^^^^^^^~03/01/2003~
-~03090~^~322~^0.^0^^~4~^~FLA~^^^^^^^^^^~03/01/2003~
-~03090~^~324~^2.^0^^~4~^~O~^^^^^^^^^^~02/01/2009~
-~03090~^~334~^0.^0^^~4~^~FLA~^^^^^^^^^^~03/01/2003~
-~03090~^~337~^0.^0^^~4~^~FLA~^^^^^^^^^^~03/01/2003~
-~03090~^~338~^1.^0^^~4~^~FLA~^^^^^^^^^^~03/01/2003~
-~03090~^~417~^11.^0^^~4~^~FLM~^^^^^^^^^^~12/01/1997~
-~03090~^~431~^10.^0^^~4~^~NC~^^^^^^^^^^~05/01/2000~
-~03090~^~432~^2.^0^^~1~^^^^^^^^^^^
-~03090~^~435~^18.^0^^~4~^~NC~^^^^^^^^^^~02/01/2009~
-~03090~^~601~^6.^0^^~4~^^^^^^^^^^^~04/01/1985~
-~03091~^~208~^27.^0^^~4~^~NC~^^^^^^^^^^~04/01/2007~
-~03091~^~262~^0.^0^^~4~^~BFSN~^^^^^^^^^^~03/01/2003~
-~03091~^~263~^0.^0^^~4~^~BFSN~^^^^^^^^^^~03/01/2003~
-~03091~^~268~^112.^0^^~4~^~NC~^^^^^^^^^^~04/01/2007~
-~03091~^~301~^39.^26^1.^~6~^~JA~^^^2^37.^42.^2^33.^45.^~4~^~04/01/2007~
-~03091~^~304~^20.^4^2.^~6~^~JA~^^^2^17.^24.^2^11.^28.^~4~^~04/01/2007~
-~03091~^~305~^41.^2^^~1~^~A~^^^1^38.^44.^1^^^^~04/01/2007~
-~03091~^~306~^146.^17^8.^~6~^~JA~^^^2^130.^158.^2^110.^181.^~4~^~04/01/2007~
-~03091~^~307~^7.^0^^~8~^~LC~^^^^^^^^^^~07/01/2010~
-~03091~^~318~^355.^0^^~1~^~AS~^^^^^^^^^^~04/01/2007~
-~03091~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2002~
-~03091~^~320~^18.^0^^~1~^~AS~^^^^^^^^^^~04/01/2007~
-~03091~^~321~^197.^2^^~1~^~A~^^^1^195.^199.^1^^^^~04/01/2007~
-~03091~^~322~^15.^2^^~1~^~A~^^^1^11.^18.^1^^^~1~^~04/01/2007~
-~03091~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~
-~03091~^~334~^17.^2^^~1~^~A~^^^1^11.^23.^1^^^~1~^~04/01/2007~
-~03091~^~337~^0.^2^^~1~^~A~^^^1^0.^0.^^^^~1~^~04/01/2007~
-~03091~^~338~^526.^0^^~4~^~BFSN~^^^^^^^^^^~03/01/2003~
-~03091~^~417~^24.^2^^~1~^~A~^^^1^21.^26.^1^^^^~04/01/2007~
-~03091~^~431~^0.^0^^~4~^~BFSN~^^^^^^^^^^~03/01/2003~
-~03091~^~432~^24.^0^^~1~^~AS~^^^^^^^^^^~04/01/2007~
-~03091~^~435~^24.^0^^~4~^~NC~^^^^^^^^^^~04/01/2007~
-~03091~^~601~^0.^0^^~7~^^^^^^^^^^^~04/01/1985~
-~03092~^~208~^24.^0^^~4~^~NC~^^^^^^^^^^~07/01/2010~
-~03092~^~262~^0.^0^^~4~^~BFSN~^~03091~^^^^^^^^^~03/01/2003~
-~03092~^~263~^0.^0^^~4~^~BFSN~^~03091~^^^^^^^^^~03/01/2003~
-~03092~^~268~^102.^0^^~4~^~NC~^^^^^^^^^^~07/01/2010~
-~03092~^~301~^65.^13^4.^~1~^^^^^^^^^^^~12/01/1978~
-~03092~^~304~^22.^0^^~1~^^^^^^^^^^^~12/01/1978~
-~03092~^~305~^19.^0^^~1~^^^^^^^^^^^~12/01/1978~
-~03092~^~306~^128.^13^3.^~1~^^^^^^^^^^^~12/01/1978~
-~03092~^~307~^5.^0^^~8~^~LC~^^^^^^^^^^~07/01/2010~
-~03092~^~318~^433.^13^37.^~1~^^^^^^^^^^^~08/01/2004~
-~03092~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2002~
-~03092~^~320~^24.^0^^~4~^~NC~^^^^^^^^^^~03/01/2005~
-~03092~^~321~^292.^0^^~4~^~BFSN~^~03091~^^^^^^^^^~03/01/2003~
-~03092~^~322~^0.^0^^~4~^~BFSN~^~03091~^^^^^^^^^~03/01/2003~
-~03092~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~
-~03092~^~334~^0.^0^^~4~^~BFSN~^~03091~^^^^^^^^^~03/01/2003~
-~03092~^~337~^0.^0^^~4~^~BFSN~^~03091~^^^^^^^^^~03/01/2003~
-~03092~^~338~^493.^0^^~4~^~BFSN~^~03091~^^^^^^^^^~03/01/2003~
-~03092~^~417~^33.^0^^~1~^^^^^^^^^^^~12/01/1978~
-~03092~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~
-~03092~^~432~^33.^0^^~1~^^^^^^^^^^^~03/01/2005~
-~03092~^~435~^33.^0^^~4~^~NC~^^^^^^^^^^~04/01/2007~
-~03092~^~601~^0.^0^^~7~^^^^^^^^^^^~04/01/1985~
-~03093~^~208~^29.^0^^~4~^~NC~^^^^^^^^^^~04/01/2007~
-~03093~^~262~^0.^0^^~4~^~BFSN~^~11053~^^^^^^^^^~03/01/2003~
-~03093~^~263~^0.^0^^~4~^~BFSN~^~11053~^^^^^^^^^~03/01/2003~
-~03093~^~268~^123.^0^^~4~^~NC~^^^^^^^^^^~04/01/2007~
-~03093~^~301~^27.^0^^~12~^~MA~^^^^^^^^^^~06/01/1996~
-~03093~^~304~^19.^0^^~12~^~MA~^^^^^^^^^^~06/01/1996~
-~03093~^~305~^22.^0^^~12~^~MA~^^^^^^^^^^~04/01/1995~
-~03093~^~306~^116.^0^^~12~^~MA~^^^^^^^^^^~06/01/1996~
-~03093~^~307~^37.^0^^~12~^~MA~^^^^^^^^^^~06/01/1996~
-~03093~^~318~^481.^0^^~4~^~NC~^^^^^^^^^^~03/01/2003~
-~03093~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2002~
-~03093~^~320~^24.^0^^~4~^~NC~^^^^^^^^^^~03/01/2003~
-~03093~^~321~^288.^0^^~4~^~BFSN~^~11053~^^^^^^^^^~03/01/2003~
-~03093~^~322~^0.^0^^~4~^~BFSN~^~11053~^^^^^^^^^~03/01/2003~
-~03093~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~
-~03093~^~334~^0.^0^^~4~^~BFSN~^~11053~^^^^^^^^^~03/01/2003~
-~03093~^~337~^0.^0^^~4~^~BFSN~^~11053~^^^^^^^^^~03/01/2003~
-~03093~^~338~^487.^0^^~4~^~BFSN~^~11053~^^^^^^^^^~03/01/2003~
-~03093~^~417~^32.^0^^~4~^^^^^^^^^^^~04/01/1995~
-~03093~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~
-~03093~^~432~^32.^0^^~4~^^^^^^^^^^^~03/01/2003~
-~03093~^~435~^32.^0^^~4~^~NC~^^^^^^^^^^~07/01/2008~
-~03093~^~601~^0.^0^^~12~^~MA~^^^^^^^^^^~06/01/1996~
-~03096~^~208~^62.^0^^~4~^~NC~^^^^^^^^^^~04/01/2007~
-~03096~^~262~^0.^0^^~4~^~FLA~^^^^^^^^^^~03/01/2003~
-~03096~^~263~^0.^0^^~4~^~FLA~^^^^^^^^^^~03/01/2003~
-~03096~^~268~^259.^0^^~4~^~NC~^^^^^^^^^^~04/01/2007~
-~03096~^~301~^60.^1^^~12~^~MA~^^^^^^^^^^~06/01/1998~
-~03096~^~304~^20.^1^^~12~^~MA~^^^^^^^^^^~06/01/1998~
-~03096~^~305~^61.^1^^~12~^~MA~^^^^^^^^^^~06/01/1998~
-~03096~^~306~^148.^1^^~12~^~MA~^^^^^^^^^^~06/01/1998~
-~03096~^~307~^18.^1^^~12~^~MA~^^^^^^^^^^~06/01/1998~
-~03096~^~318~^85.^1^^~12~^~MA~^^^^^^^^^^~06/01/1998~
-~03096~^~319~^12.^0^^~4~^~BNA~^^^^^^^^^^~03/01/2003~
-~03096~^~320~^14.^0^^~4~^~NC~^^^^^^^^^^~03/01/2003~
-~03096~^~321~^28.^0^^~4~^~BNA~^^^^^^^^^^~03/01/2003~
-~03096~^~322~^0.^0^^~4~^~BNA~^^^^^^^^^^~03/01/2003~
-~03096~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~
-~03096~^~334~^0.^0^^~4~^~BNA~^^^^^^^^^^~03/01/2003~
-~03096~^~337~^0.^0^^~4~^~FLA~^^^^^^^^^^~03/01/2003~
-~03096~^~338~^50.^0^^~4~^~FLA~^^^^^^^^^^~03/01/2003~
-~03096~^~417~^10.^0^^~4~^~FLM~^^^^^^^^^^~06/01/1998~
-~03096~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~
-~03096~^~432~^10.^0^^~4~^~FLM~^^^^^^^^^^~03/01/2003~
-~03096~^~435~^10.^0^^~4~^~NC~^^^^^^^^^^~04/01/2007~
-~03096~^~601~^5.^0^^~4~^~FLM~^^^^^^^^^^~06/01/1998~
-~03098~^~208~^34.^0^^~4~^~NC~^^^^^^^^^^~12/01/1978~
-~03098~^~262~^0.^0^^~4~^~BFSN~^~11081~^^^^^^^^^~03/01/2003~
-~03098~^~263~^0.^0^^~4~^~BFSN~^~11081~^^^^^^^^^~03/01/2003~
-~03098~^~268~^142.^0^^~4~^^^^^^^^^^^~03/01/2005~
-~03098~^~301~^14.^15^1.^~1~^^^^^^^^^^^~12/01/1978~
-~03098~^~304~^14.^2^^~1~^^^^^^^^^^^~12/01/1978~
-~03098~^~305~^14.^1^^~1~^^^^^^^^^^^~12/01/1978~
-~03098~^~306~^182.^1^^~1~^^^^^^^^^^^~12/01/1978~
-~03098~^~307~^83.^4^^~1~^^^^^^^^^^^~12/01/1978~
-~03098~^~318~^27.^0^^~4~^~NC~^^^^^^^^^^~03/01/2003~
-~03098~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2002~
-~03098~^~320~^1.^0^^~4~^~NC~^^^^^^^^^^~04/01/2007~
-~03098~^~321~^16.^0^^~4~^~BFSN~^~11081~^^^^^^^^^~03/01/2003~
-~03098~^~322~^0.^0^^~4~^~BFSN~^~11081~^^^^^^^^^~03/01/2003~
-~03098~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~
-~03098~^~334~^0.^0^^~4~^~BFSN~^~11081~^^^^^^^^^~03/01/2003~
-~03098~^~337~^0.^0^^~4~^~BFSN~^~11081~^^^^^^^^^~03/01/2003~
-~03098~^~338~^0.^0^^~4~^~BFSN~^~11081~^^^^^^^^^~03/01/2003~
-~03098~^~417~^31.^6^3.^~1~^^^^^^^^^^^~12/01/1978~
-~03098~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~
-~03098~^~432~^31.^6^3.^~1~^^^^^^^^^^^~03/01/2003~
-~03098~^~435~^31.^0^^~4~^~NC~^^^^^^^^^^~04/01/2007~
-~03098~^~601~^0.^0^^~7~^^^^^^^^^^^~04/01/1985~
-~03099~^~208~^26.^0^^~4~^~NC~^^^^^^^^^^~07/01/2010~
-~03099~^~262~^0.^0^^~4~^~BFPN~^~11125~^^^^^^^^^~03/01/2003~
-~03099~^~263~^0.^0^^~4~^~BFPN~^~11125~^^^^^^^^^~03/01/2003~
-~03099~^~268~^109.^0^^~4~^~NC~^^^^^^^^^^~07/01/2010~
-~03099~^~301~^22.^29^1.^~1~^^^^^^^^^^^~12/01/1978~
-~03099~^~304~^9.^1^^~1~^^^^^^^^^^^~12/01/1978~
-~03099~^~305~^20.^2^^~1~^^^^^^^^^^^~12/01/1978~
-~03099~^~306~^196.^13^6.^~1~^^^^^^^^^^^~12/01/1978~
-~03099~^~307~^69.^0^^~8~^~LC~^^^^^^^^^^~07/01/2010~
-~03099~^~318~^11461.^29^341.^~1~^^^^^^^^^^^~03/01/2003~
-~03099~^~319~^0.^0^^~4~^~BNA~^~11125~^^^^^^^^^~03/01/2003~
-~03099~^~320~^573.^0^^~4~^~NC~^^^^^^^^^^~04/01/2007~
-~03099~^~321~^5575.^0^^~4~^~BNA~^~11125~^^^^^^^^^~03/01/2003~
-~03099~^~322~^2602.^0^^~4~^~BNA~^~11125~^^^^^^^^^~03/01/2003~
-~03099~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~
-~03099~^~334~^0.^0^^~4~^~BNA~^~11125~^^^^^^^^^~03/01/2003~
-~03099~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2003~
-~03099~^~338~^0.^0^^~4~^~NR~^^^^^^^^^^~03/01/2005~
-~03099~^~417~^15.^9^2.^~1~^^^^^^^^^^^~12/01/1978~
-~03099~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~
-~03099~^~432~^15.^9^2.^~1~^^^^^^^^^^^~03/01/2005~
-~03099~^~435~^15.^0^^~4~^~NC~^^^^^^^^^^~04/01/2007~
-~03099~^~601~^0.^0^^~7~^^^^^^^^^^^~04/01/1985~
-~03100~^~208~^32.^0^^~4~^~NC~^^^^^^^^^^~12/01/1978~
-~03100~^~262~^0.^0^^~4~^~BFSN~^~11125~^^^^^^^^^~03/01/2003~
-~03100~^~263~^0.^0^^~4~^~BFSN~^~11125~^^^^^^^^^~03/01/2003~
-~03100~^~268~^134.^0^^~4~^^^^^^^^^^^~03/01/2005~
-~03100~^~301~^23.^24^1.^~1~^^^^^^^^^^^~12/01/1978~
-~03100~^~304~^11.^0^^~1~^^^^^^^^^^^~12/01/1978~
-~03100~^~305~^20.^2^^~1~^^^^^^^^^^^~12/01/1978~
-~03100~^~306~^202.^13^7.^~1~^^^^^^^^^^^~12/01/1978~
-~03100~^~307~^49.^18^^~1~^^^^^^^^^^^~12/01/1978~
-~03100~^~318~^11810.^24^448.^~1~^^^^^^^^^^^~12/01/1978~
-~03100~^~319~^0.^0^^~4~^~BNA~^~11125~^^^^^^^^^~03/01/2003~
-~03100~^~320~^591.^0^^~4~^~NC~^^^^^^^^^^~04/01/2007~
-~03100~^~321~^5745.^0^^~4~^~BNA~^~11125~^^^^^^^^^~03/01/2003~
-~03100~^~322~^2682.^0^^~4~^~BNA~^~11125~^^^^^^^^^~03/01/2003~
-~03100~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~
-~03100~^~334~^0.^0^^~4~^~BNA~^~11125~^^^^^^^^^~03/01/2003~
-~03100~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2003~
-~03100~^~338~^230.^0^^~4~^~O~^^^^^^^^^^~03/01/2003~
-~03100~^~417~^17.^0^^~1~^^^^^^^^^^^~12/01/1978~
-~03100~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~
-~03100~^~432~^17.^0^^~1~^^^^^^^^^^^~03/01/2005~
-~03100~^~435~^17.^0^^~4~^~NC~^^^^^^^^^^~04/01/2007~
-~03100~^~601~^0.^0^^~7~^^^^^^^^^^^~04/01/1985~
-~03104~^~208~^28.^0^^~4~^~NC~^^^^^^^^^^~03/01/2007~
-~03104~^~262~^0.^0^^~4~^~BFSN~^^^^^^^^^^~03/01/2003~
-~03104~^~263~^0.^0^^~4~^~BFSN~^^^^^^^^^^~03/01/2003~
-~03104~^~268~^117.^0^^~4~^~NC~^^^^^^^^^^~03/01/2007~
-~03104~^~301~^24.^1^^~6~^~JA~^^^2^23.^25.^2^^^^~03/01/2007~
-~03104~^~304~^14.^4^2.^~6~^~JA~^^^2^12.^19.^2^4.^24.^~4~^~03/01/2007~
-~03104~^~305~^21.^4^5.^~6~^~JA~^^^2^15.^31.^2^-1.^42.^~4~^~03/01/2007~
-~03104~^~306~^185.^17^5.^~6~^~JA~^^^2^179.^280.^1^110.^259.^~2, 3~^~03/01/2007~
-~03104~^~307~^5.^0^^~8~^~LC~^^^^^^^^^^~07/01/2010~
-~03104~^~318~^1703.^0^^~4~^~NC~^^^^^^^^^^~03/01/2007~
-~03104~^~319~^0.^0^^~4~^~BNA~^^^^^^^^^^~03/01/2003~
-~03104~^~320~^85.^0^^~4~^~NC~^^^^^^^^^^~06/01/2009~
-~03104~^~321~^896.^1^^~1~^~A~^^^2^531.^1670.^4^^^^~03/01/2007~
-~03104~^~322~^242.^1^^~1~^~A~^^^2^0.^923.^4^^^^~03/01/2007~
-~03104~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~
-~03104~^~334~^9.^1^^~1~^~A~^^^2^0.^13.^4^^^~1~^~03/01/2007~
-~03104~^~337~^0.^8^0.^~1~^~A~^^^2^0.^0.^3^0.^0.^~1, 4~^~03/01/2007~
-~03104~^~338~^3527.^9^1850.^~1~^~A~^^^1^586.^6943.^2^-4435.^11488.^~4~^~03/01/2007~
-~03104~^~417~^8.^2^^~1~^~A~^^^1^8.^8.^^^^^~03/01/2007~
-~03104~^~431~^0.^2^^~1~^~A~^^^1^0.^0.^^^^~1~^~03/01/2007~
-~03104~^~432~^8.^0^^~1~^~AS~^^^^^^^^^^~03/01/2007~
-~03104~^~435~^8.^0^^~4~^~NC~^^^^^^^^^^~04/01/2010~
-~03104~^~601~^0.^0^^~7~^^^^^^^^^^^~04/01/1985~
-~03105~^~208~^24.^0^^~4~^~NC~^^^^^^^^^^~03/01/2007~
-~03105~^~262~^0.^0^^~4~^~BFSN~^^^^^^^^^^~03/01/2003~
-~03105~^~263~^0.^0^^~4~^~BFSN~^^^^^^^^^^~03/01/2003~
-~03105~^~268~^101.^0^^~4~^~NC~^^^^^^^^^^~03/01/2007~
-~03105~^~301~^24.^1^^~6~^~JA~^^^2^23.^25.^2^^^^~03/01/2007~
-~03105~^~304~^14.^4^2.^~6~^~JA~^^^2^12.^19.^2^4.^24.^~4~^~03/01/2007~
-~03105~^~305~^21.^4^5.^~6~^~JA~^^^2^15.^31.^2^-1.^42.^~4~^~03/01/2007~
-~03105~^~306~^185.^17^5.^~6~^~JA~^^^2^179.^280.^1^110.^259.^~2, 3~^~03/01/2007~
-~03105~^~307~^5.^0^^~8~^~LC~^^^^^^^^^^~07/01/2010~
-~03105~^~318~^1703.^0^^~4~^~NC~^^^^^^^^^^~03/01/2007~
-~03105~^~319~^0.^0^^~4~^~BNA~^^^^^^^^^^~03/01/2003~
-~03105~^~320~^85.^0^^~4~^~NC~^^^^^^^^^^~03/01/2007~
-~03105~^~321~^896.^1^^~1~^~A~^^^2^531.^1670.^4^^^^~03/01/2007~
-~03105~^~322~^242.^1^^~1~^~A~^^^2^0.^923.^4^^^^~03/01/2007~
-~03105~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~
-~03105~^~334~^9.^1^^~1~^~A~^^^2^0.^13.^4^^^~1~^~03/01/2007~
-~03105~^~337~^0.^8^0.^~1~^~A~^^^2^0.^0.^3^0.^0.^~1, 4~^~03/01/2007~
-~03105~^~338~^3527.^9^1850.^~1~^~A~^^^1^586.^6943.^2^-4435.^11488.^~4~^~03/01/2007~
-~03105~^~417~^8.^2^^~1~^~A~^^^1^8.^8.^^^^^~03/01/2007~
-~03105~^~431~^0.^2^^~1~^~A~^^^1^0.^0.^^^^~1~^~03/01/2007~
-~03105~^~432~^8.^0^^~1~^~AS~^^^^^^^^^^~03/01/2007~
-~03105~^~435~^8.^0^^~4~^~NC~^^^^^^^^^^~03/01/2007~
-~03105~^~601~^0.^0^^~7~^^^^^^^^^^^~04/01/1985~
-~03108~^~208~^57.^0^^~4~^~NC~^^^^^^^^^^~08/01/2004~
-~03108~^~262~^0.^0^^~4~^~BFSN~^~11508~^^^^^^^^^~03/01/2003~
-~03108~^~263~^0.^0^^~4~^~BFSN~^~11508~^^^^^^^^^~03/01/2003~
-~03108~^~268~^238.^0^^~4~^^^^^^^^^^^~03/01/2005~
-~03108~^~301~^16.^26^1.^~1~^^^^^^^^^^^~12/01/1978~
-~03108~^~304~^13.^2^^~1~^^^^^^^^^^^~12/01/1978~
-~03108~^~305~^24.^2^^~1~^^^^^^^^^^^~12/01/1978~
-~03108~^~306~^263.^15^^~1~^^^^^^^^^^^~12/01/1978~
-~03108~^~307~^22.^0^^~4~^~NR~^^^^^^^^^^~06/01/2010~
-~03108~^~318~^6438.^21^1046.^~1~^^^^^^^^^^^~08/01/2004~
-~03108~^~319~^0.^0^^~4~^~BNA~^~11508~^^^^^^^^^~03/01/2003~
-~03108~^~320~^322.^0^^~4~^~NC~^^^^^^^^^^~03/01/2005~
-~03108~^~321~^3863.^0^^~4~^~BNA~^~11508~^^^^^^^^^~03/01/2003~
-~03108~^~322~^0.^0^^~4~^~BNA~^~11508~^^^^^^^^^~03/01/2003~
-~03108~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~
-~03108~^~334~^0.^0^^~4~^~BNA~^~11508~^^^^^^^^^~03/01/2003~
-~03108~^~337~^0.^0^^~4~^~BFSN~^~11508~^^^^^^^^^~03/01/2003~
-~03108~^~338~^0.^0^^~4~^~BFSN~^~11508~^^^^^^^^^~03/01/2003~
-~03108~^~417~^10.^6^0.^~1~^^^^^^^^^^^~12/01/1978~
-~03108~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~
-~03108~^~432~^10.^6^0.^~1~^^^^^^^^^^^~03/01/2005~
-~03108~^~435~^10.^0^^~4~^~NC~^^^^^^^^^^~03/01/2007~
-~03108~^~601~^0.^0^^~7~^^^^^^^^^^^~04/01/1985~
-~03109~^~208~^60.^0^^~4~^~NC~^^^^^^^^^^~07/01/2010~
-~03109~^~262~^0.^0^^~4~^~BFSN~^~11508~^^^^^^^^^~03/01/2003~
-~03109~^~263~^0.^0^^~4~^~BFSN~^~11508~^^^^^^^^^~03/01/2003~
-~03109~^~268~^252.^0^^~4~^~NC~^^^^^^^^^^~07/01/2010~
-~03109~^~301~^16.^14^1.^~1~^^^^^^^^^^^~12/01/1978~
-~03109~^~304~^12.^2^^~1~^^^^^^^^^^^~12/01/1978~
-~03109~^~305~^24.^2^^~1~^^^^^^^^^^^~12/01/1978~
-~03109~^~306~^243.^15^^~1~^^^^^^^^^^^~12/01/1978~
-~03109~^~307~^18.^0^^~8~^~LC~^^^^^^^^^^~07/01/2010~
-~03109~^~318~^6636.^13^1029.^~1~^^^^^^^^^^^~08/01/2004~
-~03109~^~319~^0.^0^^~4~^~BNA~^~11508~^^^^^^^^^~03/01/2003~
-~03109~^~320~^332.^0^^~4~^~NC~^^^^^^^^^^~03/01/2005~
-~03109~^~321~^3982.^0^^~4~^~BNA~^~11508~^^^^^^^^^~03/01/2003~
-~03109~^~322~^0.^0^^~4~^~BNA~^~11508~^^^^^^^^^~03/01/2003~
-~03109~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~
-~03109~^~334~^0.^0^^~4~^~BNA~^~11508~^^^^^^^^^~03/01/2003~
-~03109~^~337~^0.^0^^~4~^~BFSN~^~11508~^^^^^^^^^~03/01/2003~
-~03109~^~338~^0.^0^^~4~^~BFSN~^~11508~^^^^^^^^^~03/01/2003~
-~03109~^~417~^10.^0^^~1~^^^^^^^^^^^~12/01/1978~
-~03109~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~
-~03109~^~432~^10.^0^^~1~^^^^^^^^^^^~03/01/2005~
-~03109~^~435~^10.^0^^~4~^~NC~^^^^^^^^^^~03/01/2007~
-~03109~^~601~^0.^0^^~7~^^^^^^^^^^^~04/01/1985~
-~03112~^~208~^52.^0^^~4~^~NC~^^^^^^^^^^~05/01/2007~
-~03112~^~262~^0.^0^^~4~^~BFSN~^~11363~^^^^^^^^^~03/01/2003~
-~03112~^~263~^0.^0^^~4~^~BFSN~^~11363~^^^^^^^^^~03/01/2003~
-~03112~^~268~^217.^0^^~4~^~NC~^^^^^^^^^^~05/01/2007~
-~03112~^~301~^4.^0^^~12~^~MA~^^^^^^^^^^~03/01/1995~
-~03112~^~304~^15.^0^^~12~^~MA~^^^^^^^^^^~06/01/1996~
-~03112~^~305~^23.^0^^~12~^~MA~^^^^^^^^^^~06/01/1996~
-~03112~^~306~^110.^0^^~12~^~MA~^^^^^^^^^^~03/01/1995~
-~03112~^~307~^57.^0^^~12~^~MA~^^^^^^^^^^~03/01/1995~
-~03112~^~318~^0.^0^^~4~^~NC~^^^^^^^^^^~03/01/2003~
-~03112~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2002~
-~03112~^~320~^0.^0^^~4~^~NC~^^^^^^^^^^~03/01/2003~
-~03112~^~321~^0.^0^^~4~^~BFSN~^~11363~^^^^^^^^^~03/01/2003~
-~03112~^~322~^0.^0^^~4~^~BFSN~^~11363~^^^^^^^^^~03/01/2003~
-~03112~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~
-~03112~^~334~^0.^0^^~4~^~BFSN~^~11363~^^^^^^^^^~03/01/2003~
-~03112~^~337~^0.^0^^~4~^~BFSN~^~11363~^^^^^^^^^~03/01/2003~
-~03112~^~338~^0.^0^^~4~^~BFSN~^~11363~^^^^^^^^^~03/01/2003~
-~03112~^~417~^6.^0^^~4~^~FLM~^^^^^^^^^^~03/01/1995~
-~03112~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~
-~03112~^~432~^6.^0^^~4~^~FLM~^^^^^^^^^^~03/01/2003~
-~03112~^~435~^6.^0^^~4~^~NC~^^^^^^^^^^~05/01/2007~
-~03112~^~601~^0.^0^^~12~^~MA~^^^^^^^^^^~03/01/1995~
-~03113~^~208~^396.^0^^~4~^~NC~^^^^^^^^^^~01/01/2016~
-~03113~^~262~^0.^0^^~4~^~NR~^^^^^^^^^^~01/01/2016~
-~03113~^~263~^0.^0^^~4~^~NR~^^^^^^^^^^~01/01/2016~
-~03113~^~268~^1656.^0^^~4~^~NC~^^^^^^^^^^~01/01/2016~
-~03113~^~301~^1245.^6^11.^~1~^~A~^^^1^1210.^1280.^5^1216.^1273.^~2, 3~^~01/01/2016~
-~03113~^~304~^109.^6^1.^~1~^~A~^^^1^105.^112.^5^106.^111.^~2, 3~^~01/01/2016~
-~03113~^~305~^459.^6^5.^~1~^~A~^^^1^444.^486.^5^444.^474.^~2, 3~^~01/01/2016~
-~03113~^~306~^597.^6^4.^~1~^~A~^^^1^583.^617.^5^585.^609.^~2, 3~^~01/01/2016~
-~03113~^~307~^23.^6^0.^~1~^~A~^^^1^23.^26.^5^22.^24.^~2, 3~^~01/01/2016~
-~03113~^~318~^0.^0^^~1~^~AS~^^^^^^^^^^~01/01/2016~
-~03113~^~319~^0.^1^^~1~^~A~^^^^^^^^^~1~^~01/01/2016~
-~03113~^~320~^0.^0^^~4~^~NC~^^^^^^^^^^~01/01/2016~
-~03113~^~321~^0.^0^^~4~^~NR~^^^^^^^^^^~01/01/2016~
-~03113~^~322~^0.^0^^~4~^~NR~^^^^^^^^^^~01/01/2016~
-~03113~^~324~^508.^0^^~4~^~NR~^^^^^^^^^^~02/01/2016~
-~03113~^~334~^0.^0^^~4~^~NR~^^^^^^^^^^~01/01/2016~
-~03113~^~337~^0.^0^^~4~^~NR~^^^^^^^^^^~01/01/2016~
-~03113~^~338~^185.^0^^~4~^~NR~^^^^^^^^^^~01/01/2016~
-~03113~^~417~^250.^3^13.^~1~^~A~^^^1^227.^273.^2^192.^307.^~2, 3~^~01/01/2016~
-~03113~^~431~^215.^0^^~4~^~NR~^^^^^^^^^^~04/01/2016~
-~03113~^~432~^35.^0^^~4~^~NR~^^^^^^^^^^~04/01/2016~
-~03113~^~435~^401.^0^^~4~^~NC~^^^^^^^^^^~04/01/2016~
-~03113~^~601~^0.^0^^~4~^~NR~^^^^^^^^^^~01/01/2016~
-~03114~^~208~^50.^0^^~4~^~NC~^^^^^^^^^^~07/01/2010~
-~03114~^~262~^0.^0^^~4~^~FLA~^^^^^^^^^^~03/01/2003~
-~03114~^~263~^0.^0^^~4~^~FLA~^^^^^^^^^^~03/01/2003~
-~03114~^~268~^211.^0^^~4~^~NC~^^^^^^^^^^~07/01/2010~
-~03114~^~301~^32.^1^^~12~^~MA~^^^^^^^^^^~06/01/1998~
-~03114~^~304~^26.^1^^~12~^~MA~^^^^^^^^^^~06/01/1998~
-~03114~^~305~^35.^1^^~12~^~MA~^^^^^^^^^^~06/01/1998~
-~03114~^~306~^352.^1^^~12~^~MA~^^^^^^^^^^~06/01/1998~
-~03114~^~307~^5.^0^^~8~^~LC~^^^^^^^^^^~07/01/2010~
-~03114~^~318~^2793.^0^^~4~^~NC~^^^^^^^^^^~07/01/2010~
-~03114~^~319~^0.^0^^~4~^~FLA~^^^^^^^^^^~03/01/2003~
-~03114~^~320~^140.^0^^~4~^~NC~^^^^^^^^^^~03/01/2003~
-~03114~^~321~^1476.^0^^~4~^~FLA~^^^^^^^^^^~03/01/2003~
-~03114~^~322~^362.^0^^~4~^~FLA~^^^^^^^^^^~03/01/2003~
-~03114~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~
-~03114~^~334~^38.^0^^~4~^~FLA~^^^^^^^^^^~03/01/2003~
-~03114~^~337~^0.^0^^~4~^~FLA~^^^^^^^^^^~03/01/2003~
-~03114~^~338~^970.^0^^~4~^~FLA~^^^^^^^^^^~03/01/2003~
-~03114~^~417~^23.^0^^~4~^~FLM~^^^^^^^^^^~06/01/1998~
-~03114~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~
-~03114~^~432~^23.^0^^~4~^~FLM~^^^^^^^^^^~03/01/2003~
-~03114~^~435~^23.^0^^~4~^~NC~^^^^^^^^^^~03/01/2007~
-~03114~^~601~^0.^0^^~4~^~FLM~^^^^^^^^^^~06/01/1998~
-~03115~^~208~^50.^0^^~4~^~NC~^^^^^^^^^^~01/01/2017~
-~03115~^~262~^0.^0^^~4~^~BFSN~^~09019~^^^^^^^^^~03/01/2003~
-~03115~^~263~^0.^0^^~4~^~BFSN~^~09019~^^^^^^^^^~03/01/2003~
-~03115~^~268~^210.^0^^~4~^~NC~^^^^^^^^^^~01/01/2017~
-~03115~^~301~^4.^0^^~1~^~A~^^^^^^^^^^~01/01/2017~
-~03115~^~304~^4.^0^^~1~^~A~^^^^^^^^^^~01/01/2017~
-~03115~^~305~^8.^0^^~1~^~A~^^^^^^^^^^~01/01/2017~
-~03115~^~306~^86.^0^^~1~^~A~^^^^^^^^^^~01/01/2017~
-~03115~^~307~^2.^0^^~1~^~A~^^^^^^^^^^~01/01/2017~
-~03115~^~318~^20.^0^^~1~^~AS~^^^^^^^^^^~01/01/2017~
-~03115~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2002~
-~03115~^~320~^1.^0^^~1~^~AS~^^^^^^^^^^~01/01/2017~
-~03115~^~321~^11.^0^^~1~^~A~^~09019~^^^^^^^^^~01/01/2017~
-~03115~^~322~^0.^0^^~1~^~A~^~09019~^^^^^^^^^~01/01/2017~
-~03115~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~
-~03115~^~334~^2.^0^^~1~^~A~^~09019~^^^^^^^^^~01/01/2017~
-~03115~^~337~^0.^0^^~4~^~BFSN~^~09019~^^^^^^^^^~03/01/2003~
-~03115~^~338~^5.^0^^~4~^~NR~^~09019~^^^^^^^^^~01/01/2017~
-~03115~^~417~^0.^0^^~1~^~A~^^^^^^^^^^~01/01/2017~
-~03115~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~
-~03115~^~432~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2017~
-~03115~^~435~^0.^0^^~4~^~NC~^^^^^^^^^^~01/01/2017~
-~03115~^~601~^0.^0^^~12~^~MA~^^^^^^^^^^~01/01/1996~
-~03116~^~208~^41.^0^^~4~^~NC~^^^^^^^^^^~07/01/2010~
-~03116~^~262~^0.^0^^~4~^~BFSN~^~09019~^^^^^^^^^~03/01/2003~
-~03116~^~263~^0.^0^^~4~^~BFSN~^~09019~^^^^^^^^^~03/01/2003~
-~03116~^~268~^172.^0^^~4~^~NC~^^^^^^^^^^~07/01/2010~
-~03116~^~301~^4.^43^^~1~^^^^^^^^^^^~12/01/1978~
-~03116~^~304~^3.^4^0.^~1~^^^^^^^^^^^~12/01/1978~
-~03116~^~305~^7.^5^^~1~^^^^^^^^^^^~12/01/1978~
-~03116~^~306~^71.^18^^~1~^^^^^^^^^^^~12/01/1978~
-~03116~^~307~^0.^0^^~8~^~LC~^^^^^^^^^^~08/01/2010~
-~03116~^~318~^28.^0^^~4~^~NC~^^^^^^^^^^~08/01/2010~
-~03116~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2002~
-~03116~^~320~^1.^0^^~4~^~NC~^^^^^^^^^^~03/01/2005~
-~03116~^~321~^12.^0^^~4~^~BFSN~^~09019~^^^^^^^^^~03/01/2003~
-~03116~^~322~^0.^0^^~4~^~BFSN~^~09019~^^^^^^^^^~03/01/2003~
-~03116~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~
-~03116~^~334~^9.^0^^~4~^~BFSN~^~09019~^^^^^^^^^~03/01/2003~
-~03116~^~337~^0.^0^^~4~^~BFSN~^~09019~^^^^^^^^^~03/01/2003~
-~03116~^~338~^17.^0^^~4~^~BFSN~^~09019~^^^^^^^^^~03/01/2003~
-~03116~^~417~^2.^6^0.^~1~^^^^^^^^^^^~12/01/1978~
-~03116~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~
-~03116~^~432~^2.^6^0.^~1~^^^^^^^^^^^~03/01/2005~
-~03116~^~435~^2.^0^^~4~^~NC~^^^^^^^^^^~03/01/2007~
-~03116~^~601~^0.^0^^~7~^^^^^^^^^^^~04/01/1985~
-~03117~^~208~^37.^0^^~4~^~NC~^^^^^^^^^^~12/01/1978~
-~03117~^~262~^0.^0^^~4~^~BFSN~^~09020~^^^^^^^^^~03/01/2003~
-~03117~^~263~^0.^0^^~4~^~BFSN~^~09020~^^^^^^^^^~03/01/2003~
-~03117~^~268~^155.^0^^~4~^^^^^^^^^^^~03/01/2005~
-~03117~^~301~^5.^46^0.^~1~^^^^^^^^^^^~12/01/1978~
-~03117~^~304~^3.^2^^~1~^^^^^^^^^^^~12/01/1978~
-~03117~^~305~^6.^3^^~1~^^^^^^^^^^^~12/01/1978~
-~03117~^~306~^77.^16^^~1~^^^^^^^^^^^~12/01/1978~
-~03117~^~307~^1.^0^^~8~^~LC~^^^^^^^^^^~07/01/2010~
-~03117~^~318~^9.^10^^~1~^^^^^^^^^^^~08/01/2004~
-~03117~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2002~
-~03117~^~320~^0.^0^^~4~^~NC~^^^^^^^^^^~03/01/2005~
-~03117~^~321~^2.^0^^~4~^~BFSN~^~09020~^^^^^^^^^~03/01/2003~
-~03117~^~322~^0.^0^^~4~^~BFSN~^~09020~^^^^^^^^^~03/01/2003~
-~03117~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~
-~03117~^~334~^2.^0^^~4~^~BFSN~^~09020~^^^^^^^^^~03/01/2003~
-~03117~^~337~^0.^0^^~4~^~BFSN~^~09020~^^^^^^^^^~03/01/2003~
-~03117~^~338~^9.^0^^~4~^~BFSN~^~09020~^^^^^^^^^~03/01/2003~
-~03117~^~417~^2.^0^^~1~^^^^^^^^^^^~12/01/1978~
-~03117~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~
-~03117~^~432~^2.^0^^~1~^^^^^^^^^^^~03/01/2005~
-~03117~^~435~^2.^0^^~4~^~NC~^^^^^^^^^^~03/01/2007~
-~03117~^~601~^0.^0^^~7~^^^^^^^^^^^~04/01/1985~
-~03118~^~208~^60.^0^^~4~^~NC~^^^^^^^^^^~04/01/2003~
-~03118~^~262~^0.^0^^~4~^~BFSN~^^^^^^^^^^~03/01/2003~
-~03118~^~263~^0.^0^^~4~^~BFSN~^^^^^^^^^^~03/01/2003~
-~03118~^~268~^250.^0^^~4~^~NC~^^^^^^^^^^~04/01/2003~
-~03118~^~301~^9.^16^1.^~1~^^^^^^^^^^^~12/01/1978~
-~03118~^~304~^4.^2^^~1~^^^^^^^^^^^~12/01/1978~
-~03118~^~305~^10.^2^^~1~^^^^^^^^^^^~12/01/1978~
-~03118~^~306~^121.^15^^~1~^^^^^^^^^^^~12/01/1978~
-~03118~^~307~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2010~
-~03118~^~318~^725.^0^^~4~^~NC~^^^^^^^^^^~04/01/2003~
-~03118~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2002~
-~03118~^~320~^36.^0^^~4~^~NC~^^^^^^^^^^~04/01/2007~
-~03118~^~321~^412.^0^^~4~^~BNA~^^^^^^^^^^~03/01/2003~
-~03118~^~322~^7.^0^^~4~^~BNA~^^^^^^^^^^~03/01/2003~
-~03118~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~
-~03118~^~334~^39.^0^^~4~^~BNA~^^^^^^^^^^~03/01/2003~
-~03118~^~337~^0.^0^^~4~^~BFSN~^^^^^^^^^^~03/01/2003~
-~03118~^~338~^11.^0^^~4~^~BFSN~^^^^^^^^^^~03/01/2003~
-~03118~^~417~^2.^9^0.^~1~^^^^^^^^^^^~12/01/1978~
-~03118~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~
-~03118~^~432~^2.^0^^~4~^~NR~^^^^^^^^^^~03/01/2003~
-~03118~^~435~^2.^0^^~4~^~NC~^^^^^^^^^^~04/01/2007~
-~03118~^~601~^0.^0^^~7~^^^^^^^^^^^~04/01/1985~
-~03119~^~208~^57.^0^^~4~^~NC~^^^^^^^^^^~12/01/1978~
-~03119~^~262~^0.^0^^~4~^~FLA~^^^^^^^^^^~01/01/2003~
-~03119~^~263~^0.^0^^~4~^~FLA~^^^^^^^^^^~01/01/2003~
-~03119~^~268~^238.^0^^~4~^^^^^^^^^^^~03/01/2005~
-~03119~^~301~^20.^13^^~1~^^^^^^^^^^^~12/01/1978~
-~03119~^~304~^8.^1^^~1~^^^^^^^^^^^~12/01/1978~
-~03119~^~305~^33.^1^^~1~^^^^^^^^^^^~12/01/1978~
-~03119~^~306~^90.^14^^~1~^^^^^^^^^^^~12/01/1978~
-~03119~^~307~^43.^21^^~1~^^^^^^^^^^^~12/01/1978~
-~03119~^~318~^69.^0^^~4~^~NC~^^^^^^^^^^~04/01/2007~
-~03119~^~319~^2.^0^^~4~^~BNA~^^^^^^^^^^~03/01/2003~
-~03119~^~320~^5.^0^^~4~^~NC~^^^^^^^^^^~04/01/2007~
-~03119~^~321~^26.^0^^~4~^~BNA~^^^^^^^^^^~03/01/2003~
-~03119~^~322~^20.^0^^~4~^~BNA~^^^^^^^^^^~03/01/2003~
-~03119~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~
-~03119~^~334~^5.^0^^~4~^~BNA~^^^^^^^^^^~03/01/2003~
-~03119~^~337~^0.^0^^~4~^~FLA~^^^^^^^^^^~01/01/2003~
-~03119~^~338~^357.^0^^~4~^~FLA~^^^^^^^^^^~01/01/2003~
-~03119~^~417~^17.^0^^~4~^~FLA~^^^^^^^^^^~04/01/2003~
-~03119~^~431~^0.^0^^~4~^~FLA~^^^^^^^^^^~01/01/2003~
-~03119~^~432~^17.^0^^~4~^~FLA~^^^^^^^^^^~01/01/2003~
-~03119~^~435~^17.^0^^~4~^~NC~^^^^^^^^^^~04/01/2007~
-~03119~^~601~^1.^0^^~4~^^^^^^^^^^^~04/01/1985~
-~03120~^~208~^65.^0^^~4~^~NC~^^^^^^^^^^~12/01/1978~
-~03120~^~262~^0.^0^^~4~^~FLA~^^^^^^^^^^~01/01/2003~
-~03120~^~263~^0.^0^^~4~^~FLA~^^^^^^^^^^~01/01/2003~
-~03120~^~268~^272.^0^^~4~^~NC~^^^^^^^^^^~03/01/2005~
-~03120~^~301~^4.^0^^~4~^~FLA~^^^^^^^^^^~01/01/2003~
-~03120~^~304~^8.^1^^~1~^^^^^^^^^^^~12/01/1978~
-~03120~^~305~^33.^1^^~1~^^^^^^^^^^^~12/01/1978~
-~03120~^~306~^81.^14^^~1~^^^^^^^^^^^~12/01/1978~
-~03120~^~307~^52.^19^^~1~^^^^^^^^^^^~12/01/1978~
-~03120~^~318~^34.^0^^~4~^~FLA~^^^^^^^^^^~02/01/2003~
-~03120~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2002~
-~03120~^~320~^2.^0^^~4~^~FLA~^^^^^^^^^^~08/01/2004~
-~03120~^~321~^13.^0^^~4~^~FLA~^^^^^^^^^^~01/01/2003~
-~03120~^~322~^10.^0^^~4~^~FLA~^^^^^^^^^^~01/01/2003~
-~03120~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~
-~03120~^~334~^3.^0^^~4~^~FLA~^^^^^^^^^^~01/01/2003~
-~03120~^~337~^0.^0^^~4~^~FLA~^^^^^^^^^^~01/01/2003~
-~03120~^~338~^423.^0^^~4~^~FLA~^^^^^^^^^^~01/01/2003~
-~03120~^~417~^20.^0^^~4~^~FLA~^^^^^^^^^^~04/01/2003~
-~03120~^~431~^0.^0^^~4~^~FLA~^^^^^^^^^^~01/01/2003~
-~03120~^~432~^20.^0^^~4~^~FLA~^^^^^^^^^^~01/01/2003~
-~03120~^~435~^20.^0^^~4~^~NC~^^^^^^^^^^~04/01/2007~
-~03120~^~601~^1.^0^^~4~^^^^^^^^^^^~04/01/1985~
-~03121~^~208~^50.^0^^~4~^~NC~^^^^^^^^^^~03/01/2007~
-~03121~^~262~^0.^0^^~4~^~BFSN~^^^^^^^^^^~03/01/2003~
-~03121~^~263~^0.^0^^~4~^~BFSN~^^^^^^^^^^~03/01/2003~
-~03121~^~268~^211.^0^^~4~^~NC~^^^^^^^^^^~03/01/2007~
-~03121~^~301~^18.^69^1.^~6~^~JA~^^^2^16.^20.^2^12.^22.^~4~^~03/01/2007~
-~03121~^~304~^17.^21^1.^~6~^~JA~^^^2^15.^19.^2^11.^23.^~4~^~03/01/2007~
-~03121~^~305~^50.^20^3.^~6~^~JA~^^^2^43.^56.^2^33.^66.^~4~^~03/01/2007~
-~03121~^~306~^106.^33^8.^~6~^~JA~^^^2^90.^117.^2^70.^141.^~4~^~03/01/2007~
-~03121~^~307~^5.^0^^~8~^~LC~^^^^^^^^^^~07/01/2010~
-~03121~^~318~^216.^0^^~1~^~AS~^^^^^^^^^^~03/01/2007~
-~03121~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2002~
-~03121~^~320~^11.^0^^~1~^~AS~^^^^^^^^^^~03/01/2007~
-~03121~^~321~^124.^1^^~1~^~A~^^^^^^^^^^~03/01/2007~
-~03121~^~322~^11.^1^^~1~^~A~^^^^^^^^^~1~^~03/01/2007~
-~03121~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~
-~03121~^~334~^0.^1^^~1~^~A~^^^^^^^^^~1~^~03/01/2007~
-~03121~^~337~^0.^1^^~1~^~A~^^^^^^^^^~1~^~03/01/2007~
-~03121~^~338~^1465.^0^^~4~^~BFSN~^^^^^^^^^^~03/01/2003~
-~03121~^~417~^28.^7^2.^~6~^~JA~^^^2^26.^31.^1^-3.^60.^~4~^~03/01/2007~
-~03121~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~
-~03121~^~432~^28.^6^2.^~6~^~JA~^^^2^26.^31.^1^-3.^60.^~4~^~03/01/2007~
-~03121~^~435~^28.^0^^~4~^~NC~^^^^^^^^^^~03/01/2007~
-~03121~^~601~^0.^0^^~7~^^^^^^^^^^^~04/01/1985~
-~03122~^~208~^64.^0^^~9~^~MC~^^^^^^^^^^~06/01/1996~
-~03122~^~262~^0.^0^^~4~^~BFSN~^~11305~^^^^^^^^^~04/01/2003~
-~03122~^~263~^0.^0^^~4~^~BFSN~^~11305~^^^^^^^^^~04/01/2003~
-~03122~^~268~^268.^0^^~9~^^^^^^^^^^^~03/01/2005~
-~03122~^~301~^21.^0^^~12~^~MA~^^^^^^^^^^~01/01/1995~
-~03122~^~304~^19.^0^^~12~^~MA~^^^^^^^^^^~06/01/1996~
-~03122~^~305~^67.^0^^~12~^~MA~^^^^^^^^^^~01/01/1995~
-~03122~^~306~^81.^0^^~12~^~MA~^^^^^^^^^^~01/01/1995~
-~03122~^~307~^48.^0^^~12~^~MA~^^^^^^^^^^~01/01/1995~
-~03122~^~318~^304.^0^^~12~^~MA~^^^^^^^^^^~06/01/1996~
-~03122~^~319~^0.^0^^~4~^~BNA~^~11305~^^^^^^^^^~04/01/2003~
-~03122~^~320~^15.^0^^~4~^~NC~^^^^^^^^^^~07/01/2008~
-~03122~^~321~^178.^0^^~4~^~BNA~^~11305~^^^^^^^^^~04/01/2003~
-~03122~^~322~^8.^0^^~4~^~BNA~^~11305~^^^^^^^^^~04/01/2003~
-~03122~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~
-~03122~^~334~^0.^0^^~4~^~BNA~^~11305~^^^^^^^^^~04/01/2003~
-~03122~^~337~^0.^0^^~4~^~BFSN~^~11305~^^^^^^^^^~04/01/2003~
-~03122~^~338~^1805.^0^^~4~^~BFSN~^~11305~^^^^^^^^^~04/01/2003~
-~03122~^~417~^35.^0^^~4~^~FLM~^^^^^^^^^^~01/01/1995~
-~03122~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~
-~03122~^~432~^35.^0^^~4~^~FLM~^^^^^^^^^^~03/01/2005~
-~03122~^~435~^35.^0^^~4~^~NC~^^^^^^^^^^~07/01/2008~
-~03122~^~601~^0.^0^^~12~^~MA~^^^^^^^^^^~01/01/1995~
-~03127~^~208~^37.^0^^~4~^~NC~^^^^^^^^^^~12/01/1978~
-~03127~^~262~^0.^0^^~4~^~BFSN~^^^^^^^^^^~03/01/2003~
-~03127~^~263~^0.^0^^~4~^~FLA~^^^^^^^^^^~03/01/2003~
-~03127~^~268~^155.^0^^~4~^^^^^^^^^^^~04/01/2005~
-~03127~^~301~^89.^14^^~1~^^^^^^^^^^^~12/01/1978~
-~03127~^~304~^55.^1^^~1~^^^^^^^^^^^~12/01/1978~
-~03127~^~305~^54.^1^^~1~^^^^^^^^^^^~12/01/1978~
-~03127~^~306~^191.^1^^~1~^^^^^^^^^^^~12/01/1978~
-~03127~^~307~^49.^1^^~1~^^^^^^^^^^^~12/01/1978~
-~03127~^~318~^4170.^4^347.^~1~^^^^^^^^^^^~12/01/1978~
-~03127~^~319~^23.^0^^~4~^~BNA~^^^^^^^^^^~03/01/2003~
-~03127~^~320~^227.^0^^~4~^~NC~^^^^^^^^^^~03/01/2003~
-~03127~^~321~^2456.^0^^~4~^~BNA~^^^^^^^^^^~03/01/2003~
-~03127~^~322~^0.^0^^~4~^~BNA~^^^^^^^^^^~03/01/2003~
-~03127~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~
-~03127~^~334~^0.^0^^~4~^~BNA~^^^^^^^^^^~03/01/2003~
-~03127~^~337~^0.^0^^~4~^~BFSN~^^^^^^^^^^~03/01/2003~
-~03127~^~338~^4505.^0^^~4~^~BFSN~^^^^^^^^^^~03/01/2003~
-~03127~^~417~^61.^3^1.^~1~^^^^^^^^^^^~12/01/1978~
-~03127~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~
-~03127~^~432~^61.^3^1.^~1~^^^^^^^^^^^~03/01/2003~
-~03127~^~435~^61.^0^^~4~^~NC~^^^^^^^^^^~05/01/2007~
-~03127~^~601~^5.^0^^~4~^^^^^^^^^^^~04/01/1985~
-~03128~^~208~^63.^0^^~4~^~NC~^^^^^^^^^^~12/01/1978~
-~03128~^~262~^0.^0^^~4~^~BFSN~^^^^^^^^^^~03/01/2003~
-~03128~^~263~^0.^0^^~4~^~BFSN~^^^^^^^^^^~03/01/2003~
-~03128~^~268~^264.^0^^~4~^^^^^^^^^^^~03/01/2005~
-~03128~^~301~^8.^22^1.^~1~^^^^^^^^^^^~12/01/1978~
-~03128~^~304~^4.^1^^~1~^^^^^^^^^^^~12/01/1978~
-~03128~^~305~^10.^2^^~1~^^^^^^^^^^^~12/01/1978~
-~03128~^~306~^125.^15^^~1~^^^^^^^^^^^~12/01/1978~
-~03128~^~307~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2010~
-~03128~^~318~^723.^16^^~1~^^^^^^^^^^^~12/01/1978~
-~03128~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2002~
-~03128~^~320~^36.^0^^~4~^~NC~^^^^^^^^^^~04/01/2007~
-~03128~^~321~^411.^0^^~4~^~BNA~^^^^^^^^^^~03/01/2003~
-~03128~^~322~^7.^0^^~4~^~BNA~^^^^^^^^^^~03/01/2003~
-~03128~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~
-~03128~^~334~^39.^0^^~4~^~BNA~^^^^^^^^^^~03/01/2003~
-~03128~^~337~^0.^0^^~4~^~BFSN~^^^^^^^^^^~03/01/2003~
-~03128~^~338~^12.^0^^~4~^~BFSN~^^^^^^^^^^~03/01/2003~
-~03128~^~417~^2.^0^^~1~^^^^^^^^^^^~12/01/1978~
-~03128~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~
-~03128~^~432~^2.^0^^~1~^^^^^^^^^^^~03/01/2005~
-~03128~^~435~^2.^0^^~4~^~NC~^^^^^^^^^^~04/01/2007~
-~03128~^~601~^0.^0^^~7~^^^^^^^^^^^~04/01/1985~
-~03129~^~208~^56.^0^^~4~^~NC~^^^^^^^^^^~04/01/2007~
-~03129~^~262~^0.^0^^~4~^~BFSN~^^^^^^^^^^~03/01/2003~
-~03129~^~263~^0.^0^^~4~^~BFSN~^^^^^^^^^^~03/01/2003~
-~03129~^~268~^236.^0^^~4~^~NC~^^^^^^^^^^~04/01/2007~
-~03129~^~301~^5.^21^0.^~1~^^^^^^^^^^^~12/01/1978~
-~03129~^~304~^10.^1^^~1~^^^^^^^^^^^~12/01/1978~
-~03129~^~305~^7.^1^^~1~^^^^^^^^^^^~12/01/1978~
-~03129~^~306~^88.^14^^~1~^^^^^^^^^^^~12/01/1978~
-~03129~^~307~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2010~
-~03129~^~318~^43.^22^8.^~1~^^^^^^^^^^^~12/01/1978~
-~03129~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2002~
-~03129~^~320~^2.^0^^~4~^~NC~^^^^^^^^^^~03/01/2005~
-~03129~^~321~^17.^0^^~4~^~BNA~^~09040~^^^^^^^^^~03/01/2003~
-~03129~^~322~^17.^0^^~4~^~BNA~^~09040~^^^^^^^^^~03/01/2003~
-~03129~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~
-~03129~^~334~^0.^0^^~4~^~BNA~^~09040~^^^^^^^^^~03/01/2003~
-~03129~^~337~^0.^0^^~4~^~BFSN~^^^^^^^^^^~03/01/2003~
-~03129~^~338~^0.^0^^~4~^~BFSN~^^^^^^^^^^~03/01/2003~
-~03129~^~417~^6.^9^0.^~1~^^^^^^^^^^^~12/01/1978~
-~03129~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~
-~03129~^~432~^6.^9^0.^~1~^^^^^^^^^^^~03/01/2005~
-~03129~^~435~^6.^0^^~4~^~NC~^^^^^^^^^^~04/01/2007~
-~03129~^~601~^0.^0^^~7~^^^^^^^^^^^~04/01/1985~
-~03130~^~208~^65.^0^^~4~^~NC~^^^^^^^^^^~03/01/2007~
-~03130~^~262~^0.^0^^~4~^~BFSN~^^^^^^^^^^~03/01/2003~
-~03130~^~263~^0.^0^^~4~^~BFSN~^^^^^^^^^^~03/01/2003~
-~03130~^~268~^271.^0^^~4~^~NC~^^^^^^^^^^~03/01/2007~
-~03130~^~301~^4.^2^^~1~^~A~^^^1^4.^4.^1^^^^~03/01/2007~
-~03130~^~304~^7.^5^0.^~6~^~JA~^^^2^6.^8.^1^3.^9.^~2, 3~^~03/01/2007~
-~03130~^~305~^15.^4^0.^~6~^~JA~^^^2^12.^20.^1^5.^24.^~2, 3~^~03/01/2007~
-~03130~^~306~^195.^2^^~1~^~A~^^^1^180.^210.^1^^^^~03/01/2007~
-~03130~^~307~^4.^0^^~8~^~LC~^^^^^^^^^^~08/01/2010~
-~03130~^~318~^686.^0^^~1~^~AS~^^^^^^^^^^~04/01/2016~
-~03130~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2007~
-~03130~^~320~^34.^0^^~1~^~AS~^^^^^^^^^^~03/01/2007~
-~03130~^~321~^378.^2^^~1~^~A~^^^1^353.^402.^1^^^^~03/01/2007~
-~03130~^~322~^0.^2^^~1~^~A~^^^1^0.^0.^^^^~1~^~03/01/2007~
-~03130~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~
-~03130~^~334~^68.^2^^~1~^~A~^^^1^55.^80.^1^^^^~03/01/2007~
-~03130~^~337~^0.^2^^~1~^~A~^^^1^0.^0.^^^^~1~^~03/01/2007~
-~03130~^~338~^163.^0^^~4~^~BFSN~^^^^^^^^^^~03/01/2003~
-~03130~^~417~^21.^2^^~1~^~A~^^^1^20.^21.^1^^^^~03/01/2007~
-~03130~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~
-~03130~^~432~^21.^0^^~1~^~AS~^^^^^^^^^^~03/01/2007~
-~03130~^~435~^21.^0^^~4~^~NC~^^^^^^^^^^~06/01/2007~
-~03130~^~601~^0.^0^^~7~^^^^^^^^^^^~04/01/1985~
-~03131~^~208~^65.^0^^~4~^~NC~^^^^^^^^^^~04/01/2007~
-~03131~^~262~^0.^0^^~4~^~BFSN~^^^^^^^^^^~03/01/2003~
-~03131~^~263~^0.^0^^~4~^~BFSN~^^^^^^^^^^~03/01/2003~
-~03131~^~268~^271.^0^^~4~^~NC~^^^^^^^^^^~04/01/2007~
-~03131~^~301~^4.^2^^~1~^~A~^^^1^4.^4.^1^^^^~04/01/2007~
-~03131~^~304~^7.^5^0.^~6~^~JA~^^^2^6.^8.^1^3.^9.^~2, 3~^~04/01/2007~
-~03131~^~305~^15.^4^0.^~6~^~JA~^^^2^12.^20.^1^5.^24.^~2, 3~^~04/01/2007~
-~03131~^~306~^195.^2^^~1~^~A~^^^1^180.^210.^1^^^^~04/01/2007~
-~03131~^~307~^4.^0^^~8~^~LC~^^^^^^^^^^~08/01/2010~
-~03131~^~318~^686.^0^^~4~^~NC~^^^^^^^^^^~04/01/2007~
-~03131~^~319~^0.^0^^~4~^~BNA~^^^^^^^^^^~03/01/2003~
-~03131~^~320~^34.^0^^~4~^~NC~^^^^^^^^^^~04/01/2007~
-~03131~^~321~^378.^2^^~1~^~A~^^^1^353.^402.^1^^^^~04/01/2007~
-~03131~^~322~^0.^2^^~1~^~A~^^^1^0.^0.^^^^~1~^~04/01/2007~
-~03131~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~
-~03131~^~334~^68.^2^^~1~^~A~^^^1^55.^80.^1^^^^~04/01/2007~
-~03131~^~337~^0.^2^^~1~^~A~^^^1^0.^0.^^^^~1~^~04/01/2007~
-~03131~^~338~^163.^0^^~4~^~BFSN~^^^^^^^^^^~03/01/2003~
-~03131~^~417~^21.^2^^~1~^~A~^^^1^20.^21.^1^^^^~04/01/2007~
-~03131~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~
-~03131~^~432~^21.^0^^~1~^~AS~^^^^^^^^^^~04/01/2007~
-~03131~^~435~^21.^0^^~4~^~NC~^^^^^^^^^^~05/01/2007~
-~03131~^~601~^0.^0^^~7~^^^^^^^^^^^~04/01/1985~
-~03132~^~208~^42.^0^^~4~^~NC~^^^^^^^^^^~04/01/2007~
-~03132~^~262~^0.^0^^~4~^~BFSN~^~09252~^^^^^^^^^~03/01/2003~
-~03132~^~263~^0.^0^^~4~^~BFSN~^~09252~^^^^^^^^^~03/01/2003~
-~03132~^~268~^174.^0^^~4~^~NC~^^^^^^^^^^~04/01/2007~
-~03132~^~301~^8.^20^0.^~1~^^^^^^^^^^^~12/01/1978~
-~03132~^~304~^8.^2^^~1~^^^^^^^^^^^~12/01/1978~
-~03132~^~305~^12.^1^^~1~^^^^^^^^^^^~12/01/1978~
-~03132~^~306~^130.^14^^~1~^^^^^^^^^^^~12/01/1978~
-~03132~^~307~^1.^0^^~8~^~LC~^^^^^^^^^^~07/01/2010~
-~03132~^~318~^17.^0^^~4~^~NC~^^^^^^^^^^~08/01/2015~
-~03132~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2002~
-~03132~^~320~^1.^0^^~4~^~NC~^^^^^^^^^^~03/01/2005~
-~03132~^~321~^9.^0^^~4~^~BFSN~^~09252~^^^^^^^^^~03/01/2003~
-~03132~^~322~^0.^0^^~4~^~BFSN~^~09252~^^^^^^^^^~03/01/2003~
-~03132~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~
-~03132~^~334~^1.^0^^~4~^~BFSN~^~09252~^^^^^^^^^~03/01/2003~
-~03132~^~337~^0.^0^^~4~^~BFSN~^~09252~^^^^^^^^^~03/01/2003~
-~03132~^~338~^36.^0^^~4~^~BFSN~^~09252~^^^^^^^^^~03/01/2003~
-~03132~^~417~^4.^9^1.^~1~^^^^^^^^^^^~12/01/1978~
-~03132~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~
-~03132~^~432~^4.^9^1.^~1~^^^^^^^^^^^~03/01/2005~
-~03132~^~435~^4.^0^^~4~^~NC~^^^^^^^^^^~04/01/2007~
-~03132~^~601~^0.^0^^~7~^^^^^^^^^^^~04/01/1985~
-~03133~^~208~^44.^0^^~4~^~NC~^^^^^^^^^^~07/01/2010~
-~03133~^~262~^0.^0^^~4~^~BFSN~^~09252~^^^^^^^^^~03/01/2003~
-~03133~^~263~^0.^0^^~4~^~BFSN~^~09252~^^^^^^^^^~03/01/2003~
-~03133~^~268~^182.^0^^~4~^~NC~^^^^^^^^^^~07/01/2010~
-~03133~^~301~^8.^16^0.^~1~^^^^^^^^^^^~12/01/1978~
-~03133~^~304~^9.^1^^~1~^^^^^^^^^^^~12/01/1978~
-~03133~^~305~^12.^1^^~1~^^^^^^^^^^^~12/01/1978~
-~03133~^~306~^115.^14^^~1~^^^^^^^^^^^~12/01/1978~
-~03133~^~307~^1.^0^^~8~^~LC~^^^^^^^^^^~07/01/2010~
-~03133~^~318~^18.^0^^~4~^~NC~^^^^^^^^^^~04/01/2007~
-~03133~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2002~
-~03133~^~320~^1.^0^^~4~^~NC~^^^^^^^^^^~04/01/2007~
-~03133~^~321~^10.^0^^~4~^~BFSN~^~09252~^^^^^^^^^~03/01/2003~
-~03133~^~322~^0.^0^^~4~^~BFSN~^~09252~^^^^^^^^^~03/01/2003~
-~03133~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~
-~03133~^~334~^1.^0^^~4~^~BFSN~^~09252~^^^^^^^^^~03/01/2003~
-~03133~^~337~^0.^0^^~4~^~BFSN~^~09252~^^^^^^^^^~03/01/2003~
-~03133~^~338~^38.^0^^~4~^~BFSN~^~09252~^^^^^^^^^~03/01/2003~
-~03133~^~417~^4.^0^^~1~^^^^^^^^^^^~12/01/1978~
-~03133~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~
-~03133~^~432~^4.^0^^~1~^^^^^^^^^^^~03/01/2005~
-~03133~^~435~^4.^0^^~4~^~NC~^^^^^^^^^^~04/01/2007~
-~03133~^~601~^0.^0^^~7~^^^^^^^^^^^~04/01/1985~
-~03134~^~208~^71.^0^^~4~^~NC~^^^^^^^^^^~12/01/1978~
-~03134~^~262~^0.^0^^~4~^~FLA~^^^^^^^^^^~01/01/2003~
-~03134~^~263~^0.^0^^~4~^~FLA~^^^^^^^^^^~01/01/2003~
-~03134~^~268~^297.^0^^~4~^^^^^^^^^^^~04/01/2007~
-~03134~^~301~^6.^14^0.^~1~^^^^^^^^^^^~12/01/1978~
-~03134~^~304~^4.^2^^~1~^^^^^^^^^^^~12/01/1978~
-~03134~^~305~^6.^1^^~1~^^^^^^^^^^^~12/01/1978~
-~03134~^~306~^85.^14^^~1~^^^^^^^^^^^~12/01/1978~
-~03134~^~307~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2010~
-~03134~^~318~^142.^0^^~4~^~NC~^^^^^^^^^^~04/01/2007~
-~03134~^~319~^0.^0^^~4~^~FLA~^^^^^^^^^^~01/01/2003~
-~03134~^~320~^7.^0^^~4~^~NC~^^^^^^^^^^~04/01/2007~
-~03134~^~321~^78.^0^^~4~^~FLA~^^^^^^^^^^~01/01/2003~
-~03134~^~322~^0.^0^^~4~^~FLA~^^^^^^^^^^~01/01/2003~
-~03134~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~
-~03134~^~334~^14.^0^^~4~^~FLA~^^^^^^^^^^~01/01/2003~
-~03134~^~337~^0.^0^^~4~^~FLA~^^^^^^^^^^~01/01/2003~
-~03134~^~338~^30.^0^^~4~^~FLA~^^^^^^^^^^~01/01/2003~
-~03134~^~417~^2.^0^^~4~^~FLA~^^^^^^^^^^~02/01/2003~
-~03134~^~431~^0.^0^^~4~^~FLA~^^^^^^^^^^~01/01/2003~
-~03134~^~432~^2.^0^^~4~^~FLA~^^^^^^^^^^~01/01/2003~
-~03134~^~435~^2.^0^^~4~^~NC~^^^^^^^^^^~04/01/2007~
-~03134~^~601~^0.^0^^~7~^^^^^^^^^^^~04/01/1985~
-~03135~^~208~^74.^0^^~4~^~NC~^^^^^^^^^^~03/01/2005~
-~03135~^~262~^0.^0^^~4~^~BFSN~^^^^^^^^^^~03/01/2003~
-~03135~^~263~^0.^0^^~4~^~BFSN~^^^^^^^^^^~03/01/2003~
-~03135~^~268~^310.^0^^~4~^^^^^^^^^^^~03/01/2005~
-~03135~^~301~^6.^15^0.^~1~^^^^^^^^^^^~12/01/1978~
-~03135~^~304~^4.^0^^~1~^^^^^^^^^^^~12/01/1978~
-~03135~^~305~^6.^0^^~1~^^^^^^^^^^^~12/01/1978~
-~03135~^~306~^83.^13^2.^~1~^^^^^^^^^^^~12/01/1978~
-~03135~^~307~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2010~
-~03135~^~318~^94.^15^16.^~1~^^^^^^^^^^^~12/01/1978~
-~03135~^~319~^0.^0^^~4~^~BNA~^^^^^^^^^^~03/01/2003~
-~03135~^~320~^5.^0^^~4~^~NC~^^^^^^^^^^~03/01/2005~
-~03135~^~321~^52.^0^^~4~^~BNA~^^^^^^^^^^~03/01/2003~
-~03135~^~322~^0.^0^^~4~^~BNA~^^^^^^^^^^~03/01/2003~
-~03135~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~
-~03135~^~334~^10.^0^^~4~^~BNA~^^^^^^^^^^~03/01/2003~
-~03135~^~337~^0.^0^^~4~^~BFSN~^^^^^^^^^^~03/01/2003~
-~03135~^~338~^29.^0^^~4~^~BFSN~^^^^^^^^^^~03/01/2003~
-~03135~^~417~^1.^0^^~1~^^^^^^^^^^^~12/01/1978~
-~03135~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~
-~03135~^~432~^1.^0^^~1~^^^^^^^^^^^~03/01/2005~
-~03135~^~435~^1.^0^^~4~^~NC~^^^^^^^^^^~03/01/2007~
-~03135~^~601~^0.^0^^~7~^^^^^^^^^^^~04/01/1985~
-~03136~^~208~^69.^0^^~4~^~NC~^^^^^^^^^^~03/01/2005~
-~03136~^~262~^0.^0^^~4~^~BFSN~^^^^^^^^^^~03/01/2003~
-~03136~^~263~^0.^0^^~4~^~BFSN~^^^^^^^^^^~03/01/2003~
-~03136~^~268~^291.^0^^~4~^~NC~^^^^^^^^^^~03/01/2005~
-~03136~^~301~^15.^11^^~1~^^^^^^^^^^^~12/01/1978~
-~03136~^~304~^10.^3^^~1~^^^^^^^^^^^~12/01/1978~
-~03136~^~305~^15.^2^^~1~^^^^^^^^^^^~12/01/1978~
-~03136~^~306~^177.^15^^~1~^^^^^^^^^^^~12/01/1978~
-~03136~^~307~^5.^19^1.^~1~^^^^^^^^^^^~03/01/2003~
-~03136~^~318~^453.^13^^~1~^^^^^^^^^^^~03/01/2003~
-~03136~^~319~^0.^0^^~4~^~BNA~^^^^^^^^^^~03/01/2003~
-~03136~^~320~^23.^0^^~4~^~NC~^^^^^^^^^^~04/01/2007~
-~03136~^~321~^228.^0^^~4~^~BNA~^~09292~^^^^^^^^^~03/01/2003~
-~03136~^~322~^33.^0^^~4~^~BNA~^~09292~^^^^^^^^^~03/01/2003~
-~03136~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~
-~03136~^~334~^54.^0^^~4~^~BNA~^~09292~^^^^^^^^^~03/01/2003~
-~03136~^~337~^0.^0^^~4~^~BFSN~^^^^^^^^^^~03/01/2003~
-~03136~^~338~^39.^0^^~4~^~BFSN~^^^^^^^^^^~03/01/2003~
-~03136~^~417~^0.^9^^~1~^^^^^^^^^^^~03/01/2003~
-~03136~^~431~^0.^0^^~4~^~FLA~^^^^^^^^^^~01/01/2003~
-~03136~^~432~^1.^0^^~4~^~FLA~^^^^^^^^^^~09/01/2004~
-~03136~^~435~^1.^0^^~4~^~NC~^^^^^^^^^^~04/01/2007~
-~03136~^~601~^0.^0^^~7~^^^^^^^^^^^~04/01/1985~
-~03137~^~208~^70.^0^^~4~^~NC~^^^^^^^^^^~12/01/1978~
-~03137~^~262~^0.^0^^~4~^~FLA~^^^^^^^^^^~01/01/2003~
-~03137~^~263~^0.^0^^~4~^~FLA~^^^^^^^^^^~01/01/2003~
-~03137~^~268~^293.^0^^~4~^^^^^^^^^^^~03/01/2005~
-~03137~^~301~^15.^10^^~1~^^^^^^^^^^^~12/01/1978~
-~03137~^~304~^10.^1^^~1~^^^^^^^^^^^~12/01/1978~
-~03137~^~305~^15.^1^^~1~^^^^^^^^^^^~12/01/1978~
-~03137~^~306~^162.^14^^~1~^^^^^^^^^^^~12/01/1978~
-~03137~^~307~^2.^15^1.^~1~^^^^^^^^^^^~12/01/1978~
-~03137~^~318~^208.^0^^~4~^~NC~^^^^^^^^^^~02/01/2003~
-~03137~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2002~
-~03137~^~320~^10.^0^^~4~^~NC~^^^^^^^^^^~02/01/2003~
-~03137~^~321~^105.^0^^~4~^~FLA~^^^^^^^^^^~01/01/2003~
-~03137~^~322~^15.^0^^~4~^~FLA~^^^^^^^^^^~01/01/2003~
-~03137~^~334~^25.^0^^~4~^~FLA~^^^^^^^^^^~01/01/2003~
-~03137~^~337~^0.^0^^~4~^~FLA~^^^^^^^^^^~01/01/2003~
-~03137~^~338~^39.^0^^~4~^~FLA~^^^^^^^^^^~01/01/2003~
-~03137~^~417~^1.^0^^~4~^~FLA~^^^^^^^^^^~02/01/2003~
-~03137~^~431~^0.^0^^~4~^~FLA~^^^^^^^^^^~01/01/2003~
-~03137~^~432~^1.^0^^~4~^~FLA~^^^^^^^^^^~01/01/2003~
-~03137~^~435~^1.^0^^~4~^~NC~^^^^^^^^^^~03/01/2005~
-~03137~^~601~^0.^0^^~7~^^^^^^^^^^^~04/01/1985~
-~03139~^~208~^100.^0^^~4~^~NC~^^^^^^^^^^~07/01/2010~
-~03139~^~262~^0.^0^^~4~^~BFSN~^~09292~^^^^^^^^^~03/01/2003~
-~03139~^~263~^0.^0^^~4~^~BFSN~^~09292~^^^^^^^^^~03/01/2003~
-~03139~^~268~^418.^0^^~4~^~NC~^^^^^^^^^^~07/01/2010~
-~03139~^~301~^21.^0^^~12~^^^^^^^^^^^~04/01/2005~
-~03139~^~304~^17.^0^^~4~^^^^^^^^^^^~04/01/2005~
-~03139~^~305~^30.^0^^~12~^^^^^^^^^^^~04/01/2005~
-~03139~^~306~^306.^0^^~12~^^^^^^^^^^^~04/01/2005~
-~03139~^~307~^1.^0^^~8~^~LC~^^^^^^^^^^~07/01/2010~
-~03139~^~318~^60.^0^^~12~^^^^^^^^^^^~04/01/2005~
-~03139~^~319~^0.^0^^~4~^~BNA~^~09292~^^^^^^^^^~04/01/2005~
-~03139~^~320~^3.^0^^~4~^~NC~^^^^^^^^^^~04/01/2005~
-~03139~^~321~^30.^0^^~4~^~BNA~^~09292~^^^^^^^^^~03/01/2003~
-~03139~^~322~^4.^0^^~4~^~BNA~^~09292~^^^^^^^^^~03/01/2003~
-~03139~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~
-~03139~^~334~^7.^0^^~4~^~BNA~^~09292~^^^^^^^^^~03/01/2003~
-~03139~^~337~^0.^0^^~4~^~BFSN~^~09292~^^^^^^^^^~03/01/2003~
-~03139~^~338~^55.^0^^~4~^~BFSN~^~09292~^^^^^^^^^~03/01/2003~
-~03139~^~417~^1.^0^^~4~^^^^^^^^^^^~04/01/2005~
-~03139~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2005~
-~03139~^~432~^1.^0^^~4~^^^^^^^^^^^~04/01/2005~
-~03139~^~435~^1.^0^^~4~^~NC~^^^^^^^^^^~05/01/2007~
-~03139~^~601~^0.^0^^~4~^^^^^^^^^^^~04/01/2005~
-~03140~^~208~^70.^0^^~4~^~T~^^^^^^^^^^~02/01/2007~
-~03140~^~262~^0.^0^^~4~^~FLA~^^^^^^^^^^~01/01/2003~
-~03140~^~263~^0.^0^^~4~^~FLA~^^^^^^^^^^~01/01/2003~
-~03140~^~268~^293.^0^^~4~^~T~^^^^^^^^^^~02/01/2007~
-~03140~^~301~^8.^0^^~4~^~FLM~^^^^^^^^^^~02/01/2007~
-~03140~^~304~^6.^1^^~12~^~MA~^^^^^^^^^^~02/01/2007~
-~03140~^~305~^4.^1^^~12~^~MA~^^^^^^^^^^~02/01/2007~
-~03140~^~306~^66.^1^^~12~^~MA~^^^^^^^^^^~02/01/2007~
-~03140~^~307~^4.^0^^~12~^~MA~^^^^^^^^^^~02/01/2007~
-~03140~^~318~^450.^0^^~4~^~NC~^~09176~^^^^^^^^^~02/01/2007~
-~03140~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2002~
-~03140~^~320~^23.^0^^~4~^~NC~^^^^^^^^^^~02/01/2007~
-~03140~^~321~^262.^0^^~4~^~FLM~^~09176~^^^^^^^^^~02/01/2007~
-~03140~^~322~^10.^0^^~4~^~FLM~^~09176~^^^^^^^^^~02/01/2007~
-~03140~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~
-~03140~^~334~^6.^0^^~4~^~FLM~^~09176~^^^^^^^^^~02/01/2007~
-~03140~^~337~^0.^0^^~4~^~FLA~^^^^^^^^^^~01/01/2003~
-~03140~^~338~^0.^0^^~4~^~FLA~^^^^^^^^^^~01/01/2003~
-~03140~^~417~^8.^0^^~4~^~FLM~^^^^^^^^^^~02/01/2007~
-~03140~^~431~^0.^0^^~4~^~FLA~^^^^^^^^^^~01/01/2003~
-~03140~^~432~^8.^0^^~4~^~NR~^^^^^^^^^^~02/01/2007~
-~03140~^~435~^8.^0^^~4~^~NC~^^^^^^^^^^~03/01/2007~
-~03140~^~601~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2007~
-~03141~^~208~^57.^0^^~9~^~MC~^^^^^^^^^^~04/01/1995~
-~03141~^~262~^0.^0^^~4~^~BFSN~^~09252~^^^^^^^^^~03/01/2003~
-~03141~^~263~^0.^0^^~4~^~BFSN~^~09252~^^^^^^^^^~03/01/2003~
-~03141~^~268~^238.^0^^~9~^^^^^^^^^^^~04/01/2007~
-~03141~^~301~^10.^0^^~12~^~MA~^^^^^^^^^^~04/01/1995~
-~03141~^~304~^7.^0^^~12~^~MA~^^^^^^^^^^~06/01/1996~
-~03141~^~305~^13.^0^^~12~^~MA~^^^^^^^^^^~04/01/1995~
-~03141~^~306~^51.^0^^~12~^~MA~^^^^^^^^^^~04/01/1995~
-~03141~^~307~^6.^0^^~12~^~MA~^^^^^^^^^^~04/01/1995~
-~03141~^~318~^21.^0^^~4~^~NC~^^^^^^^^^^~03/01/2003~
-~03141~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2002~
-~03141~^~320~^1.^0^^~4~^~NC~^^^^^^^^^^~03/01/2003~
-~03141~^~321~^12.^0^^~4~^~BFSN~^~09252~^^^^^^^^^~03/01/2003~
-~03141~^~322~^0.^0^^~4~^~BFSN~^~09252~^^^^^^^^^~03/01/2003~
-~03141~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~
-~03141~^~334~^2.^0^^~4~^~BFSN~^~09252~^^^^^^^^^~03/01/2003~
-~03141~^~337~^0.^0^^~4~^~BFSN~^~09252~^^^^^^^^^~03/01/2003~
-~03141~^~338~^44.^0^^~4~^~BFSN~^~09252~^^^^^^^^^~03/01/2003~
-~03141~^~417~^1.^0^^~4~^^^^^^^^^^^~04/01/1995~
-~03141~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~
-~03141~^~432~^1.^0^^~4~^^^^^^^^^^^~03/01/2003~
-~03141~^~435~^1.^0^^~4~^~NC~^^^^^^^^^^~07/01/2008~
-~03141~^~601~^0.^0^^~12~^~MA~^^^^^^^^^^~04/01/1995~
-~03142~^~208~^44.^0^^~4~^~NC~^^^^^^^^^^~03/01/2007~
-~03142~^~262~^0.^0^^~4~^~FLA~^^^^^^^^^^~01/01/2003~
-~03142~^~263~^0.^0^^~4~^~FLA~^^^^^^^^^^~01/01/2003~
-~03142~^~268~^185.^0^^~4~^~NC~^^^^^^^^^^~03/01/2007~
-~03142~^~301~^6.^16^0.^~1~^^^^^^^^^^^~12/01/1978~
-~03142~^~304~^4.^1^^~1~^^^^^^^^^^^~12/01/1978~
-~03142~^~305~^9.^2^^~1~^^^^^^^^^^^~12/01/1978~
-~03142~^~306~^120.^15^^~1~^^^^^^^^^^^~12/01/1978~
-~03142~^~307~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2010~
-~03142~^~318~^339.^0^^~4~^~NC~^^^^^^^^^^~04/01/2003~
-~03142~^~319~^0.^0^^~4~^~FLA~^^^^^^^^^^~01/01/2003~
-~03142~^~320~^17.^0^^~4~^~NC~^^^^^^^^^^~04/01/2003~
-~03142~^~321~^189.^0^^~4~^~FLA~^^^^^^^^^^~01/01/2003~
-~03142~^~322~^3.^0^^~4~^~FLA~^^^^^^^^^^~01/01/2003~
-~03142~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~
-~03142~^~334~^26.^0^^~4~^~FLA~^^^^^^^^^^~01/01/2003~
-~03142~^~337~^0.^0^^~4~^~FLA~^^^^^^^^^^~01/01/2003~
-~03142~^~338~^28.^0^^~4~^~FLA~^^^^^^^^^^~01/01/2003~
-~03142~^~417~^2.^0^^~4~^~FLA~^^^^^^^^^^~04/01/2003~
-~03142~^~431~^0.^0^^~4~^~FLA~^^^^^^^^^^~01/01/2003~
-~03142~^~432~^2.^0^^~4~^~FLA~^^^^^^^^^^~01/01/2003~
-~03142~^~435~^2.^0^^~4~^~NC~^^^^^^^^^^~03/01/2007~
-~03142~^~601~^0.^0^^~7~^^^^^^^^^^^~04/01/1985~
-~03143~^~208~^47.^0^^~4~^~NC~^^^^^^^^^^~12/01/1978~
-~03143~^~262~^0.^0^^~4~^~FLA~^^^^^^^^^^~01/01/2003~
-~03143~^~263~^0.^0^^~4~^~FLA~^^^^^^^^^^~01/01/2003~
-~03143~^~268~^197.^0^^~4~^^^^^^^^^^^~03/01/2007~
-~03143~^~301~^6.^18^0.^~1~^^^^^^^^^^^~12/01/1978~
-~03143~^~304~^4.^1^^~1~^^^^^^^^^^^~12/01/1978~
-~03143~^~305~^10.^2^^~1~^^^^^^^^^^^~12/01/1978~
-~03143~^~306~^109.^15^^~1~^^^^^^^^^^^~12/01/1978~
-~03143~^~307~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2010~
-~03143~^~318~^33.^0^^~4~^~NC~^^^^^^^^^^~04/01/2003~
-~03143~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2002~
-~03143~^~320~^2.^0^^~4~^~NC~^^^^^^^^^^~03/01/2003~
-~03143~^~321~^15.^0^^~4~^~FLA~^^^^^^^^^^~01/01/2003~
-~03143~^~322~^0.^0^^~4~^~FLA~^^^^^^^^^^~01/01/2003~
-~03143~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~
-~03143~^~334~^11.^0^^~4~^~FLA~^^^^^^^^^^~01/01/2003~
-~03143~^~337~^0.^0^^~4~^~FLA~^^^^^^^^^^~01/01/2003~
-~03143~^~338~^15.^0^^~4~^~FLA~^^^^^^^^^^~01/01/2003~
-~03143~^~417~^1.^0^^~4~^~FLA~^^^^^^^^^^~01/01/2003~
-~03143~^~431~^0.^0^^~4~^~FLA~^^^^^^^^^^~01/01/2003~
-~03143~^~432~^1.^0^^~4~^~FLA~^^^^^^^^^^~01/01/2003~
-~03143~^~435~^1.^0^^~4~^~NC~^^^^^^^^^^~03/01/2007~
-~03143~^~601~^0.^0^^~7~^^^^^^^^^^^~04/01/1985~
-~03144~^~208~^51.^0^^~4~^~NC~^^^^^^^^^^~02/01/1995~
-~03144~^~262~^0.^0^^~4~^~FLA~^^^^^^^^^^~03/01/2003~
-~03144~^~263~^0.^0^^~4~^~FLA~^^^^^^^^^^~03/01/2003~
-~03144~^~268~^213.^0^^~4~^^^^^^^^^^^~05/01/2007~
-~03144~^~301~^1.^0^^~1~^^^^^^^^^^^~02/01/1995~
-~03144~^~304~^4.^0^^~4~^^^^^^^^^^^~12/01/1978~
-~03144~^~305~^8.^0^^~4~^^^^^^^^^^^~12/01/1978~
-~03144~^~306~^132.^0^^~1~^^^^^^^^^^^~02/01/1995~
-~03144~^~307~^1.^0^^~8~^~LC~^^^^^^^^^^~07/01/2010~
-~03144~^~318~^45.^0^^~1~^^^^^^^^^^^~02/01/1995~
-~03144~^~319~^0.^0^^~4~^~FLA~^^^^^^^^^^~03/01/2003~
-~03144~^~320~^2.^0^^~4~^~NC~^^^^^^^^^^~03/01/2003~
-~03144~^~321~^25.^0^^~4~^~BNA~^^^^^^^^^^~03/01/2003~
-~03144~^~322~^0.^0^^~4~^~BNA~^^^^^^^^^^~03/01/2003~
-~03144~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~
-~03144~^~334~^4.^0^^~4~^~BNA~^^^^^^^^^^~03/01/2003~
-~03144~^~337~^0.^0^^~4~^~FLA~^^^^^^^^^^~03/01/2003~
-~03144~^~338~^56.^0^^~4~^~FLA~^^^^^^^^^^~03/01/2003~
-~03144~^~417~^0.^3^^~1~^^^^^^^^^^^~12/01/1978~
-~03144~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~
-~03144~^~432~^0.^3^^~1~^^^^^^^^^^^~03/01/2003~
-~03144~^~435~^0.^0^^~4~^~NC~^^^^^^^^^^~05/01/2007~
-~03144~^~601~^0.^0^^~7~^^^^^^^^^^^~04/01/1985~
-~03145~^~208~^51.^0^^~4~^~NC~^^^^^^^^^^~04/01/2003~
-~03145~^~262~^0.^0^^~4~^~BFSN~^^^^^^^^^^~03/01/2003~
-~03145~^~263~^0.^0^^~4~^~BFSN~^^^^^^^^^^~03/01/2003~
-~03145~^~268~^212.^0^^~4~^~NC~^^^^^^^^^^~04/01/2003~
-~03145~^~301~^1.^0^^~1~^^^^^^^^^^^~02/01/1995~
-~03145~^~304~^4.^0^^~4~^^^^^^^^^^^~12/01/1978~
-~03145~^~305~^8.^0^^~4~^^^^^^^^^^^~12/01/1978~
-~03145~^~306~^132.^0^^~1~^^^^^^^^^^^~02/01/1995~
-~03145~^~307~^1.^0^^~8~^~LC~^^^^^^^^^^~07/01/2010~
-~03145~^~318~^45.^0^^~4~^~NC~^^^^^^^^^^~04/01/2003~
-~03145~^~319~^0.^0^^~4~^~BNA~^^^^^^^^^^~04/01/2003~
-~03145~^~320~^2.^0^^~4~^~NC~^^^^^^^^^^~04/01/2003~
-~03145~^~321~^24.^0^^~4~^~BNA~^^^^^^^^^^~04/01/2003~
-~03145~^~322~^0.^0^^~4~^~BNA~^^^^^^^^^^~03/01/2003~
-~03145~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~
-~03145~^~334~^6.^0^^~4~^~BNA~^^^^^^^^^^~04/01/2003~
-~03145~^~337~^0.^0^^~4~^~BFSN~^^^^^^^^^^~03/01/2003~
-~03145~^~338~^47.^0^^~4~^~BFSN~^^^^^^^^^^~04/01/2003~
-~03145~^~417~^0.^0^^~1~^^^^^^^^^^^~03/01/2003~
-~03145~^~431~^0.^0^^~4~^~FLA~^^^^^^^^^^~03/01/2003~
-~03145~^~432~^0.^0^^~4~^~NR~^^^^^^^^^^~03/01/2003~
-~03145~^~435~^0.^0^^~4~^~NC~^^^^^^^^^^~03/01/2007~
-~03145~^~601~^0.^0^^~4~^^^^^^^^^^^~04/01/1985~
-~03147~^~208~^66.^0^^~4~^~PAE~^^^^^^^^^^~06/01/1996~
-~03147~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2003~
-~03147~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2003~
-~03147~^~268~^276.^0^^~4~^^^^^^^^^^^~03/01/2007~
-~03147~^~301~^5.^0^^~4~^~PAE~^^^^^^^^^^~06/01/1996~
-~03147~^~304~^9.^0^^~4~^~PAE~^^^^^^^^^^~06/01/1996~
-~03147~^~305~^12.^0^^~12~^~MA~^^^^^^^^^^~06/01/1996~
-~03147~^~306~^131.^0^^~4~^~PAE~^^^^^^^^^^~06/01/1996~
-~03147~^~307~^3.^0^^~4~^~PAE~^^^^^^^^^^~06/01/1996~
-~03147~^~318~^6.^0^^~4~^~NC~^^^^^^^^^^~03/01/2003~
-~03147~^~319~^0.^0^^~4~^~BNA~^^^^^^^^^^~03/01/2003~
-~03147~^~320~^0.^0^^~4~^~NC~^^^^^^^^^^~03/01/2003~
-~03147~^~321~^3.^0^^~4~^~BNA~^^^^^^^^^^~03/01/2003~
-~03147~^~322~^0.^0^^~4~^~BNA~^^^^^^^^^^~03/01/2003~
-~03147~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~
-~03147~^~334~^2.^0^^~4~^~BNA~^^^^^^^^^^~03/01/2003~
-~03147~^~337~^0.^0^^~4~^~FLA~^^^^^^^^^^~03/01/2003~
-~03147~^~338~^8.^0^^~4~^~BFSN~^^^^^^^^^^~03/01/2003~
-~03147~^~417~^3.^0^^~4~^~FLM~^^^^^^^^^^~04/01/1994~
-~03147~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~
-~03147~^~432~^3.^0^^~4~^~FLM~^^^^^^^^^^~03/01/2003~
-~03147~^~435~^3.^0^^~4~^~NC~^^^^^^^^^^~03/01/2007~
-~03147~^~601~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/1994~
-~03150~^~208~^37.^0^^~4~^~NC~^^^^^^^^^^~12/01/1978~
-~03150~^~268~^155.^0^^~4~^^^^^^^^^^^~04/01/2005~
-~03150~^~301~^4.^6^^~1~^^^^^^^^^^^~12/01/1978~
-~03150~^~304~^3.^2^^~1~^^^^^^^^^^^~12/01/1978~
-~03150~^~305~^6.^2^^~1~^^^^^^^^^^^~12/01/1978~
-~03150~^~306~^78.^2^^~1~^^^^^^^^^^^~12/01/1978~
-~03150~^~307~^2.^2^^~1~^^^^^^^^^^^~12/01/1978~
-~03150~^~318~^0.^0^^~1~^~AS~^^^^^^^^^^~04/01/2005~
-~03150~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2002~
-~03150~^~320~^0.^0^^~1~^~AS~^^^^^^^^^^~04/01/2005~
-~03150~^~417~^2.^3^0.^~1~^^^^^^^^^^^~12/01/1978~
-~03150~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~
-~03150~^~432~^2.^3^0.^~1~^^^^^^^^^^^~12/01/1978~
-~03150~^~435~^2.^0^^~4~^~NC~^^^^^^^^^^~07/01/2006~
-~03150~^~601~^0.^0^^~4~^^^^^^^^^^^~04/01/1985~
-~03151~^~208~^39.^0^^~4~^~NC~^^^^^^^^^^~12/01/1978~
-~03151~^~268~^163.^0^^~4~^^^^^^^^^^^~04/01/2005~
-~03151~^~301~^4.^6^^~1~^^^^^^^^^^^~12/01/1978~
-~03151~^~304~^4.^2^^~1~^^^^^^^^^^^~12/01/1978~
-~03151~^~305~^6.^2^^~1~^^^^^^^^^^^~12/01/1978~
-~03151~^~306~^76.^2^^~1~^^^^^^^^^^^~12/01/1978~
-~03151~^~307~^2.^2^^~1~^^^^^^^^^^^~12/01/1978~
-~03151~^~318~^21.^6^6.^~1~^^^^^^^^^^^~12/01/1978~
-~03151~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2002~
-~03151~^~320~^1.^0^^~4~^~NC~^^^^^^^^^^~06/01/2002~
-~03151~^~417~^2.^0^^~1~^^^^^^^^^^^~12/01/1978~
-~03151~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~
-~03151~^~432~^2.^0^^~1~^^^^^^^^^^^~12/01/1978~
-~03151~^~435~^2.^0^^~4~^~NC~^^^^^^^^^^~07/01/2006~
-~03151~^~601~^0.^0^^~4~^^^^^^^^^^^~04/01/1985~
-~03152~^~208~^58.^0^^~4~^~NC~^^^^^^^^^^~12/01/1978~
-~03152~^~262~^0.^0^^~4~^~FLA~^^^^^^^^^^~03/01/2003~
-~03152~^~263~^0.^0^^~4~^~FLA~^^^^^^^^^^~03/01/2003~
-~03152~^~268~^243.^0^^~4~^~NC~^^^^^^^^^^~06/01/2005~
-~03152~^~301~^5.^13^0.^~1~^^^^^^^^^^^~12/01/1978~
-~03152~^~304~^4.^0^^~4~^^^^^^^^^^^~12/01/1978~
-~03152~^~305~^8.^5^1.^~1~^^^^^^^^^^^~12/01/1978~
-~03152~^~306~^80.^18^2.^~1~^^^^^^^^^^^~12/01/1978~
-~03152~^~307~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2010~
-~03152~^~318~^22.^12^2.^~1~^^^^^^^^^^^~04/01/2003~
-~03152~^~319~^0.^0^^~4~^~BNA~^^^^^^^^^^~04/01/2003~
-~03152~^~320~^1.^0^^~4~^~NC~^^^^^^^^^^~04/01/2003~
-~03152~^~321~^10.^0^^~4~^~BNA~^^^^^^^^^^~04/01/2003~
-~03152~^~322~^0.^0^^~4~^~BNA~^^^^^^^^^^~04/01/2003~
-~03152~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~
-~03152~^~334~^7.^0^^~4~^~BNA~^^^^^^^^^^~04/01/2003~
-~03152~^~337~^0.^0^^~4~^~FLA~^^^^^^^^^^~03/01/2003~
-~03152~^~338~^21.^0^^~4~^~FLA~^^^^^^^^^^~04/01/2003~
-~03152~^~417~^1.^0^^~4~^~FLA~^^^^^^^^^^~04/01/2003~
-~03152~^~431~^0.^0^^~4~^~FLA~^^^^^^^^^^~03/01/2003~
-~03152~^~432~^1.^0^^~4~^~FLA~^^^^^^^^^^~04/01/2003~
-~03152~^~435~^1.^0^^~4~^~NC~^^^^^^^^^^~03/01/2007~
-~03152~^~601~^0.^0^^~4~^^^^^^^^^^^~04/01/1985~
-~03153~^~208~^58.^0^^~4~^~NC~^^^^^^^^^^~04/01/2003~
-~03153~^~262~^0.^0^^~4~^~FLA~^^^^^^^^^^~03/01/2003~
-~03153~^~263~^0.^0^^~4~^~FLA~^^^^^^^^^^~03/01/2003~
-~03153~^~268~^242.^0^^~4~^~NC~^^^^^^^^^^~04/01/2003~
-~03153~^~301~^5.^12^0.^~1~^^^^^^^^^^^~12/01/1978~
-~03153~^~304~^4.^0^^~4~^^^^^^^^^^^~12/01/1978~
-~03153~^~305~^8.^5^0.^~1~^^^^^^^^^^^~12/01/1978~
-~03153~^~306~^72.^18^3.^~1~^^^^^^^^^^^~12/01/1978~
-~03153~^~307~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2010~
-~03153~^~318~^34.^0^^~4~^~NC~^^^^^^^^^^~04/01/2003~
-~03153~^~319~^0.^0^^~4~^~BNA~^^^^^^^^^^~04/01/2003~
-~03153~^~320~^2.^0^^~4~^~NC~^^^^^^^^^^~04/01/2003~
-~03153~^~321~^15.^0^^~4~^~FLA~^^^^^^^^^^~04/01/2003~
-~03153~^~322~^1.^0^^~4~^~BNA~^^^^^^^^^^~04/01/2003~
-~03153~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~
-~03153~^~334~^9.^0^^~4~^~BNA~^^^^^^^^^^~04/01/2003~
-~03153~^~337~^0.^0^^~4~^~FLA~^^^^^^^^^^~04/01/2003~
-~03153~^~338~^21.^0^^~4~^~FLA~^^^^^^^^^^~04/01/2003~
-~03153~^~417~^1.^0^^~4~^~FLA~^^^^^^^^^^~04/01/2003~
-~03153~^~431~^0.^0^^~4~^~FLA~^^^^^^^^^^~04/01/2003~
-~03153~^~432~^1.^0^^~4~^~FLA~^^^^^^^^^^~04/01/2003~
-~03153~^~435~^1.^0^^~4~^~NC~^^^^^^^^^^~06/01/2009~
-~03153~^~601~^0.^0^^~7~^^^^^^^^^^^~04/01/1985~
-~03154~^~208~^64.^0^^~4~^~NC~^^^^^^^^^^~03/01/2007~
-~03154~^~262~^0.^0^^~4~^~FLA~^^^^^^^^^^~03/01/2003~
-~03154~^~263~^0.^0^^~4~^~FLA~^^^^^^^^^^~03/01/2003~
-~03154~^~268~^269.^0^^~4~^~NC~^^^^^^^^^^~03/01/2007~
-~03154~^~301~^8.^1^^~12~^~MA~^^^^^^^^^^~06/01/1998~
-~03154~^~304~^6.^1^^~12~^~MA~^^^^^^^^^^~06/01/1998~
-~03154~^~305~^17.^1^^~12~^~MA~^^^^^^^^^^~06/01/1998~
-~03154~^~306~^149.^1^^~12~^~MA~^^^^^^^^^^~06/01/1998~
-~03154~^~307~^3.^0^^~8~^~LC~^^^^^^^^^^~07/01/2010~
-~03154~^~318~^2050.^1^^~12~^~MA~^^^^^^^^^^~06/01/1998~
-~03154~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2002~
-~03154~^~320~^103.^0^^~4~^~NC~^^^^^^^^^^~03/01/2003~
-~03154~^~321~^1225.^0^^~4~^~FLA~^^^^^^^^^^~03/01/2003~
-~03154~^~322~^0.^0^^~4~^~FLA~^^^^^^^^^^~03/01/2003~
-~03154~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~
-~03154~^~334~^9.^0^^~4~^~FLA~^^^^^^^^^^~03/01/2003~
-~03154~^~337~^0.^0^^~4~^~FLA~^^^^^^^^^^~03/01/2003~
-~03154~^~338~^13.^0^^~4~^~FLA~^^^^^^^^^^~03/01/2003~
-~03154~^~417~^2.^0^^~4~^~FLM~^^^^^^^^^^~06/01/1998~
-~03154~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~
-~03154~^~432~^2.^0^^~4~^~FLM~^^^^^^^^^^~03/01/2003~
-~03154~^~435~^2.^0^^~4~^~NC~^^^^^^^^^^~07/01/2008~
-~03154~^~601~^0.^0^^~4~^~FLM~^^^^^^^^^^~06/01/1998~
-~03156~^~208~^68.^0^^~4~^~NC~^^^^^^^^^^~12/01/1978~
-~03156~^~262~^0.^0^^~4~^~FLA~^^^^^^^^^^~03/01/2003~
-~03156~^~263~^0.^0^^~4~^~FLA~^^^^^^^^^^~03/01/2003~
-~03156~^~268~^285.^0^^~4~^^^^^^^^^^^~03/01/2005~
-~03156~^~301~^7.^12^1.^~1~^^^^^^^^^^^~12/01/1978~
-~03156~^~304~^6.^2^^~1~^^^^^^^^^^^~12/01/1978~
-~03156~^~305~^5.^2^^~1~^^^^^^^^^^^~12/01/1978~
-~03156~^~306~^78.^15^^~1~^^^^^^^^^^^~12/01/1978~
-~03156~^~307~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2010~
-~03156~^~318~^40.^7^^~1~^^^^^^^^^^^~12/01/1978~
-~03156~^~319~^0.^0^^~4~^~BNA~^^^^^^^^^^~03/01/2003~
-~03156~^~320~^2.^0^^~4~^~NC~^^^^^^^^^^~03/01/2005~
-~03156~^~321~^23.^0^^~4~^~BNA~^^^^^^^^^^~03/01/2003~
-~03156~^~322~^1.^0^^~4~^~BNA~^^^^^^^^^^~03/01/2003~
-~03156~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~
-~03156~^~334~^0.^0^^~4~^~BNA~^^^^^^^^^^~03/01/2003~
-~03156~^~337~^0.^0^^~4~^~FLA~^^^^^^^^^^~03/01/2003~
-~03156~^~338~^2.^0^^~4~^~FLA~^^^^^^^^^^~03/01/2003~
-~03156~^~417~^6.^9^0.^~1~^^^^^^^^^^^~12/01/1978~
-~03156~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~
-~03156~^~432~^6.^9^0.^~1~^^^^^^^^^^^~03/01/2005~
-~03156~^~435~^6.^0^^~4~^~NC~^^^^^^^^^^~03/01/2007~
-~03156~^~601~^0.^0^^~7~^^^^^^^^^^^~04/01/1985~
-~03157~^~208~^65.^0^^~4~^~NC~^^^^^^^^^^~12/01/1978~
-~03157~^~262~^0.^0^^~4~^~FLA~^^^^^^^^^^~01/01/2003~
-~03157~^~263~^0.^0^^~4~^~FLA~^^^^^^^^^^~01/01/2003~
-~03157~^~268~^272.^0^^~4~^^^^^^^^^^^~03/01/2005~
-~03157~^~301~^7.^28^0.^~1~^^^^^^^^^^^~12/01/1978~
-~03157~^~304~^6.^1^^~1~^^^^^^^^^^^~12/01/1978~
-~03157~^~305~^5.^2^^~1~^^^^^^^^^^^~12/01/1978~
-~03157~^~306~^68.^15^^~1~^^^^^^^^^^^~12/01/1978~
-~03157~^~307~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2010~
-~03157~^~318~^60.^0^^~4~^~NC~^^^^^^^^^^~05/01/2003~
-~03157~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2002~
-~03157~^~320~^3.^0^^~4~^~NC~^^^^^^^^^^~03/01/2003~
-~03157~^~321~^30.^0^^~4~^~FLA~^^^^^^^^^^~01/01/2003~
-~03157~^~322~^12.^0^^~4~^~FLA~^^^^^^^^^^~01/01/2003~
-~03157~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~
-~03157~^~334~^0.^0^^~4~^~FLA~^^^^^^^^^^~01/01/2003~
-~03157~^~337~^0.^0^^~4~^~FLA~^^^^^^^^^^~01/01/2003~
-~03157~^~338~^11.^0^^~4~^~FLA~^^^^^^^^^^~01/01/2003~
-~03157~^~417~^18.^0^^~4~^~FLA~^^^^^^^^^^~05/01/2003~
-~03157~^~431~^0.^0^^~4~^~FLA~^^^^^^^^^^~01/01/2003~
-~03157~^~432~^18.^0^^~4~^~FLA~^^^^^^^^^^~01/01/2003~
-~03157~^~435~^18.^0^^~4~^~NC~^^^^^^^^^^~03/01/2007~
-~03157~^~601~^0.^0^^~7~^^^^^^^^^^^~04/01/1985~
-~03158~^~208~^41.^0^^~4~^~NC~^^^^^^^^^^~12/01/1978~
-~03158~^~262~^0.^0^^~4~^~FLA~^^^^^^^^^^~03/01/2003~
-~03158~^~263~^0.^0^^~4~^~FLA~^^^^^^^^^^~03/01/2003~
-~03158~^~268~^172.^0^^~4~^^^^^^^^^^^~03/01/2005~
-~03158~^~301~^10.^17^0.^~1~^^^^^^^^^^^~12/01/1978~
-~03158~^~304~^7.^2^^~1~^^^^^^^^^^^~12/01/1978~
-~03158~^~305~^9.^2^^~1~^^^^^^^^^^^~12/01/1978~
-~03158~^~306~^116.^15^^~1~^^^^^^^^^^^~12/01/1978~
-~03158~^~307~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2010~
-~03158~^~318~^29.^12^4.^~1~^^^^^^^^^^^~12/01/1978~
-~03158~^~319~^0.^0^^~4~^~BNA~^^^^^^^^^^~03/01/2003~
-~03158~^~320~^1.^0^^~4~^~NC~^^^^^^^^^^~03/01/2005~
-~03158~^~321~^17.^0^^~4~^~BNA~^^^^^^^^^^~03/01/2003~
-~03158~^~322~^0.^0^^~4~^~BNA~^^^^^^^^^^~03/01/2003~
-~03158~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~
-~03158~^~334~^1.^0^^~4~^~BNA~^^^^^^^^^^~03/01/2003~
-~03158~^~337~^0.^0^^~4~^~FLA~^^^^^^^^^^~03/01/2003~
-~03158~^~338~^15.^0^^~4~^~FLA~^^^^^^^^^^~03/01/2003~
-~03158~^~417~^3.^9^0.^~1~^^^^^^^^^^^~12/01/1978~
-~03158~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~
-~03158~^~432~^3.^9^0.^~1~^^^^^^^^^^^~03/01/2005~
-~03158~^~435~^3.^0^^~4~^~NC~^^^^^^^^^^~03/01/2007~
-~03158~^~601~^0.^0^^~7~^^^^^^^^^^^~04/01/1985~
-~03159~^~208~^44.^0^^~4~^~NC~^^^^^^^^^^~12/01/1978~
-~03159~^~262~^0.^0^^~4~^~FLA~^^^^^^^^^^~03/01/2003~
-~03159~^~263~^0.^0^^~4~^~FLA~^^^^^^^^^^~03/01/2003~
-~03159~^~268~^184.^0^^~4~^^^^^^^^^^^~03/01/2005~
-~03159~^~301~^10.^13^1.^~1~^^^^^^^^^^^~12/01/1978~
-~03159~^~304~^7.^2^^~1~^^^^^^^^^^^~12/01/1978~
-~03159~^~305~^10.^2^^~1~^^^^^^^^^^^~12/01/1978~
-~03159~^~306~^118.^3^^~1~^^^^^^^^^^^~12/01/1978~
-~03159~^~307~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2010~
-~03159~^~318~^32.^8^^~1~^^^^^^^^^^^~03/01/2003~
-~03159~^~319~^0.^0^^~4~^~BNA~^^^^^^^^^^~03/01/2003~
-~03159~^~320~^2.^0^^~4~^~NC~^^^^^^^^^^~03/01/2005~
-~03159~^~321~^18.^0^^~4~^~BNA~^^^^^^^^^^~03/01/2003~
-~03159~^~322~^0.^0^^~4~^~BNA~^^^^^^^^^^~03/01/2003~
-~03159~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~
-~03159~^~334~^2.^0^^~4~^~BNA~^^^^^^^^^^~03/01/2003~
-~03159~^~337~^0.^0^^~4~^~FLA~^^^^^^^^^^~03/01/2003~
-~03159~^~338~^32.^0^^~4~^~FLA~^^^^^^^^^^~03/01/2003~
-~03159~^~417~^3.^0^^~1~^^^^^^^^^^^~12/01/1978~
-~03159~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2003~
-~03159~^~432~^3.^0^^~4~^~T~^^^^^^^^^^~03/01/2003~
-~03159~^~435~^3.^0^^~4~^~NC~^^^^^^^^^^~03/01/2007~
-~03159~^~601~^0.^0^^~4~^^^^^^^^^^^~04/01/1985~
-~03160~^~208~^63.^0^^~4~^~NC~^^^^^^^^^^~12/01/1978~
-~03160~^~268~^264.^0^^~4~^^^^^^^^^^^~04/01/2005~
-~03160~^~301~^7.^6^^~1~^^^^^^^^^^^~12/01/1978~
-~03160~^~304~^5.^2^^~1~^^^^^^^^^^^~12/01/1978~
-~03160~^~305~^6.^2^^~1~^^^^^^^^^^^~12/01/1978~
-~03160~^~306~^74.^2^^~1~^^^^^^^^^^^~12/01/1978~
-~03160~^~307~^4.^2^^~1~^^^^^^^^^^^~12/01/1978~
-~03160~^~318~^184.^6^18.^~1~^^^^^^^^^^^~12/01/1978~
-~03160~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2002~
-~03160~^~320~^9.^0^^~4~^~NC~^^^^^^^^^^~06/01/2002~
-~03160~^~417~^2.^0^^~4~^^^^^^^^^^^~12/01/1978~
-~03160~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~
-~03160~^~432~^2.^0^^~4~^^^^^^^^^^^~12/01/1978~
-~03160~^~435~^2.^0^^~4~^~NC~^^^^^^^^^^~04/01/2005~
-~03161~^~208~^51.^0^^~9~^~MC~^^^^^^^^^^~06/01/1996~
-~03161~^~262~^0.^0^^~4~^~BFSN~^~09236~^^^^^^^^^~03/01/2003~
-~03161~^~263~^0.^0^^~4~^~BFSN~^~09236~^^^^^^^^^~03/01/2003~
-~03161~^~268~^213.^0^^~9~^^^^^^^^^^^~04/01/2007~
-~03161~^~301~^6.^0^^~12~^~MA~^^^^^^^^^^~01/01/1995~
-~03161~^~304~^8.^0^^~12~^~MA~^^^^^^^^^^~06/01/1996~
-~03161~^~305~^17.^0^^~12~^~MA~^^^^^^^^^^~06/01/1996~
-~03161~^~306~^83.^0^^~12~^~MA~^^^^^^^^^^~06/01/1996~
-~03161~^~307~^9.^0^^~4~^~NR~^^^^^^^^^^~06/01/2010~
-~03161~^~318~^138.^0^^~4~^~NC~^^^^^^^^^^~04/01/2007~
-~03161~^~319~^0.^0^^~4~^~BNA~^~09236~^^^^^^^^^~03/01/2003~
-~03161~^~320~^7.^0^^~4~^~NC~^^^^^^^^^^~04/01/2007~
-~03161~^~321~^69.^0^^~4~^~BNA~^~09236~^^^^^^^^^~03/01/2003~
-~03161~^~322~^0.^0^^~4~^~BNA~^~09236~^^^^^^^^^~03/01/2003~
-~03161~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~
-~03161~^~334~^28.^0^^~4~^~BNA~^~09236~^^^^^^^^^~03/01/2003~
-~03161~^~337~^0.^0^^~4~^~BFSN~^~09236~^^^^^^^^^~03/01/2003~
-~03161~^~338~^103.^0^^~4~^~BFSN~^~09236~^^^^^^^^^~03/01/2003~
-~03161~^~417~^5.^0^^~4~^~BFFN~^^^^^^^^^^~01/01/1995~
-~03161~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~
-~03161~^~432~^5.^0^^~4~^~BFFN~^^^^^^^^^^~03/01/2003~
-~03161~^~435~^5.^0^^~4~^~NC~^^^^^^^^^^~07/01/2008~
-~03161~^~601~^0.^0^^~12~^~MA~^^^^^^^^^^~01/01/1995~
-~03162~^~208~^70.^0^^~4~^~NC~^^^^^^^^^^~12/01/1978~
-~03162~^~268~^293.^0^^~4~^^^^^^^^^^^~04/01/2005~
-~03162~^~301~^7.^2^^~1~^^^^^^^^^^^~12/01/1978~
-~03162~^~304~^5.^2^^~1~^^^^^^^^^^^~12/01/1978~
-~03162~^~305~^5.^2^^~1~^^^^^^^^^^^~12/01/1978~
-~03162~^~306~^79.^2^^~1~^^^^^^^^^^^~12/01/1978~
-~03162~^~307~^5.^2^^~1~^^^^^^^^^^^~12/01/1978~
-~03162~^~318~^76.^2^^~1~^^^^^^^^^^^~12/01/1978~
-~03162~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2002~
-~03162~^~320~^4.^0^^~4~^~NC~^^^^^^^^^^~06/01/2002~
-~03162~^~417~^2.^0^^~4~^^^^^^^^^^^~12/01/1978~
-~03162~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~
-~03162~^~432~^2.^0^^~4~^^^^^^^^^^^~12/01/1978~
-~03162~^~435~^2.^0^^~4~^~NC~^^^^^^^^^^~06/01/2006~
-~03163~^~208~^83.^0^^~4~^~NC~^^^^^^^^^^~07/01/2010~
-~03163~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/1999~
-~03163~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/1999~
-~03163~^~268~^347.^0^^~4~^~NC~^^^^^^^^^^~07/01/2010~
-~03163~^~301~^5.^1^^~12~^~MA~^^^^^^^^^^~02/01/1999~
-~03163~^~304~^25.^1^^~12~^~MA~^^^^^^^^^^~02/01/1999~
-~03163~^~305~^19.^1^^~12~^~MA~^^^^^^^^^^~02/01/1999~
-~03163~^~306~^233.^1^^~12~^~MA~^^^^^^^^^^~02/01/1999~
-~03163~^~307~^2.^0^^~8~^~LC~^^^^^^^^^^~07/01/2010~
-~03163~^~318~^56.^0^^~4~^~NC~^^^^^^^^^^~04/01/2003~
-~03163~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2003~
-~03163~^~320~^3.^0^^~4~^~NC~^^^^^^^^^^~04/01/2003~
-~03163~^~321~^23.^0^^~4~^~BNA~^^^^^^^^^^~03/01/2003~
-~03163~^~322~^15.^0^^~4~^~BNA~^^^^^^^^^^~03/01/2003~
-~03163~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~
-~03163~^~334~^6.^0^^~4~^~BNA~^^^^^^^^^^~03/01/2003~
-~03163~^~337~^0.^0^^~4~^~FLA~^^^^^^^^^^~03/01/2003~
-~03163~^~338~^10.^0^^~4~^~FLA~^^^^^^^^^^~03/01/2003~
-~03163~^~417~^5.^0^^~4~^~FLM~^^^^^^^^^^~02/01/1999~
-~03163~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2003~
-~03163~^~432~^5.^0^^~4~^~FLM~^^^^^^^^^^~03/01/2003~
-~03163~^~435~^5.^0^^~4~^~NC~^^^^^^^^^^~03/01/2007~
-~03163~^~601~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/1999~
-~03164~^~208~^61.^0^^~4~^~NC~^^^^^^^^^^~12/01/1978~
-~03164~^~262~^0.^0^^~4~^~FLA~^^^^^^^^^^~03/01/2003~
-~03164~^~263~^0.^0^^~4~^~FLA~^^^^^^^^^^~03/01/2003~
-~03164~^~268~^255.^0^^~4~^^^^^^^^^^^~03/01/2005~
-~03164~^~301~^4.^7^0.^~1~^^^^^^^^^^^~12/01/1978~
-~03164~^~304~^3.^0^^~4~^^^^^^^^^^^~12/01/1978~
-~03164~^~305~^8.^5^1.^~1~^^^^^^^^^^^~12/01/1978~
-~03164~^~306~^69.^5^5.^~1~^^^^^^^^^^^~12/01/1978~
-~03164~^~307~^1.^0^^~8~^~LC~^^^^^^^^^^~07/01/2010~
-~03164~^~318~^20.^0^^~4~^~NC~^^^^^^^^^^~04/01/2007~
-~03164~^~319~^0.^0^^~4~^~BNA~^^^^^^^^^^~03/01/2003~
-~03164~^~320~^1.^0^^~4~^~NC~^^^^^^^^^^~04/01/2007~
-~03164~^~321~^10.^0^^~4~^~BNA~^^^^^^^^^^~03/01/2003~
-~03164~^~322~^0.^0^^~4~^~BNA~^^^^^^^^^^~03/01/2003~
-~03164~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~
-~03164~^~334~^5.^0^^~4~^~BNA~^^^^^^^^^^~03/01/2003~
-~03164~^~337~^0.^0^^~4~^~FLA~^^^^^^^^^^~03/01/2003~
-~03164~^~338~^24.^0^^~4~^~FLA~^^^^^^^^^^~03/01/2003~
-~03164~^~417~^4.^3^0.^~1~^^^^^^^^^^^~12/01/1978~
-~03164~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~
-~03164~^~432~^4.^3^0.^~1~^^^^^^^^^^^~03/01/2003~
-~03164~^~435~^4.^0^^~4~^~NC~^^^^^^^^^^~04/01/2007~
-~03164~^~601~^0.^0^^~4~^^^^^^^^^^^~04/01/1985~
-~03165~^~208~^62.^0^^~4~^~NC~^^^^^^^^^^~12/01/1978~
-~03165~^~262~^0.^0^^~4~^~FLA~^^^^^^^^^^~01/01/2003~
-~03165~^~263~^0.^0^^~4~^~FLA~^^^^^^^^^^~01/01/2003~
-~03165~^~268~^259.^0^^~4~^^^^^^^^^^^~03/01/2005~
-~03165~^~301~^5.^6^^~1~^^^^^^^^^^^~12/01/1978~
-~03165~^~304~^3.^0^^~4~^^^^^^^^^^^~12/01/1978~
-~03165~^~305~^7.^5^2.^~1~^^^^^^^^^^^~12/01/1978~
-~03165~^~306~^65.^4^5.^~1~^^^^^^^^^^^~12/01/1978~
-~03165~^~307~^1.^0^^~8~^~LC~^^^^^^^^^^~07/01/2010~
-~03165~^~318~^41.^0^^~4~^~FLA~^^^^^^^^^^~05/01/2003~
-~03165~^~319~^0.^0^^~4~^~FLA~^^^^^^^^^^~01/01/2003~
-~03165~^~320~^2.^0^^~4~^~NC~^^^^^^^^^^~04/01/2007~
-~03165~^~321~^22.^0^^~4~^~FLA~^^^^^^^^^^~01/01/2003~
-~03165~^~322~^0.^0^^~4~^~FLA~^^^^^^^^^^~01/01/2003~
-~03165~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~
-~03165~^~334~^6.^0^^~4~^~FLA~^^^^^^^^^^~01/01/2003~
-~03165~^~337~^0.^0^^~4~^~FLA~^^^^^^^^^^~01/01/2003~
-~03165~^~338~^43.^0^^~4~^~FLA~^^^^^^^^^^~01/01/2003~
-~03165~^~417~^3.^0^^~4~^~FLA~^^^^^^^^^^~05/01/2003~
-~03165~^~431~^0.^0^^~4~^~FLA~^^^^^^^^^^~01/01/2003~
-~03165~^~432~^3.^0^^~4~^~FLA~^^^^^^^^^^~01/01/2003~
-~03165~^~435~^3.^0^^~4~^~NC~^^^^^^^^^^~04/01/2007~
-~03165~^~601~^0.^0^^~4~^^^^^^^^^^^~04/01/1985~
-~03166~^~208~^47.^0^^~4~^~NC~^^^^^^^^^^~12/01/1978~
-~03166~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2003~
-~03166~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2003~
-~03166~^~268~^197.^0^^~4~^^^^^^^^^^^~03/01/2005~
-~03166~^~301~^4.^15^^~1~^^^^^^^^^^^~12/01/1978~
-~03166~^~304~^3.^2^^~1~^^^^^^^^^^^~12/01/1978~
-~03166~^~305~^5.^3^^~1~^^^^^^^^^^^~12/01/1978~
-~03166~^~306~^91.^16^^~1~^^^^^^^^^^^~12/01/1978~
-~03166~^~307~^8.^0^^~8~^~LC~^^^^^^^^^^~07/01/2010~
-~03166~^~318~^18.^0^^~4~^~NC~^^^^^^^^^^~04/01/2007~
-~03166~^~319~^0.^0^^~4~^~BNA~^~09016~^^^^^^^^^~03/01/2003~
-~03166~^~320~^1.^0^^~4~^~NC~^^^^^^^^^^~04/01/2007~
-~03166~^~321~^8.^0^^~4~^~BNA~^~09016~^^^^^^^^^~03/01/2003~
-~03166~^~322~^0.^0^^~4~^~BNA~^~09016~^^^^^^^^^~03/01/2003~
-~03166~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~
-~03166~^~334~^6.^0^^~4~^~BNA~^~09016~^^^^^^^^^~03/01/2003~
-~03166~^~337~^0.^0^^~4~^~BFSN~^~09016~^^^^^^^^^~03/01/2003~
-~03166~^~338~^16.^0^^~4~^~BFSN~^~09016~^^^^^^^^^~03/01/2003~
-~03166~^~417~^0.^9^^~1~^^^^^^^^^^^~12/01/1978~
-~03166~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~
-~03166~^~432~^0.^9^^~1~^^^^^^^^^^^~03/01/2005~
-~03166~^~435~^0.^0^^~4~^~NC~^^^^^^^^^^~04/01/2007~
-~03166~^~601~^0.^0^^~7~^^^^^^^^^^^~04/01/1985~
-~03167~^~208~^51.^0^^~4~^~NC~^^^^^^^^^^~03/01/2007~
-~03167~^~262~^0.^0^^~4~^~FLA~^^^^^^^^^^~03/01/2003~
-~03167~^~263~^0.^0^^~4~^~FLA~^^^^^^^^^^~03/01/2003~
-~03167~^~268~^213.^0^^~4~^~NC~^^^^^^^^^^~03/01/2007~
-~03167~^~301~^7.^0^^~12~^~MA~^^^^^^^^^^~05/01/1994~
-~03167~^~304~^6.^0^^~12~^~MA~^^^^^^^^^^~06/01/1996~
-~03167~^~305~^8.^0^^~12~^~MA~^^^^^^^^^^~05/01/1994~
-~03167~^~306~^123.^0^^~12~^~MA~^^^^^^^^^^~05/01/1994~
-~03167~^~307~^4.^0^^~12~^~MA~^^^^^^^^^^~06/01/1996~
-~03167~^~318~^9.^0^^~12~^~MA~^^^^^^^^^^~06/01/1996~
-~03167~^~319~^0.^0^^~4~^~BNA~^^^^^^^^^^~03/01/2003~
-~03167~^~320~^0.^0^^~4~^~NC~^^^^^^^^^^~03/01/2003~
-~03167~^~321~^4.^0^^~4~^~BNA~^^^^^^^^^^~03/01/2003~
-~03167~^~322~^3.^0^^~4~^~BNA~^^^^^^^^^^~03/01/2003~
-~03167~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~
-~03167~^~334~^0.^0^^~4~^~BNA~^^^^^^^^^^~03/01/2003~
-~03167~^~337~^0.^0^^~4~^~FLA~^^^^^^^^^^~03/01/2003~
-~03167~^~338~^16.^0^^~4~^~FLA~^^^^^^^^^^~03/01/2003~
-~03167~^~417~^1.^0^^~4~^~BFFN~^^^^^^^^^^~05/01/1994~
-~03167~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~
-~03167~^~432~^1.^0^^~4~^~BFFN~^^^^^^^^^^~03/01/2003~
-~03167~^~435~^1.^0^^~4~^~NC~^^^^^^^^^^~03/01/2007~
-~03167~^~601~^0.^0^^~12~^~MA~^^^^^^^^^^~05/01/1994~
-~03168~^~208~^43.^0^^~4~^~NC~^^^^^^^^^^~03/01/2007~
-~03168~^~262~^0.^0^^~4~^~FLA~^^^^^^^^^^~03/01/2003~
-~03168~^~263~^0.^0^^~4~^~FLA~^^^^^^^^^^~03/01/2003~
-~03168~^~268~^179.^0^^~4~^~NC~^^^^^^^^^^~03/01/2007~
-~03168~^~301~^3.^6^1.^~1~^^^^^^^^^^^~12/01/1978~
-~03168~^~304~^3.^2^^~1~^^^^^^^^^^^~12/01/1978~
-~03168~^~305~^4.^2^^~1~^^^^^^^^^^^~12/01/1978~
-~03168~^~306~^97.^2^^~1~^^^^^^^^^^^~12/01/1978~
-~03168~^~307~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2010~
-~03168~^~318~^63.^6^12.^~1~^^^^^^^^^^^~12/01/1978~
-~03168~^~319~^0.^0^^~4~^~FLA~^^^^^^^^^^~03/01/2003~
-~03168~^~320~^3.^0^^~4~^~NC~^^^^^^^^^^~03/01/2003~
-~03168~^~321~^31.^0^^~4~^~FLA~^^^^^^^^^^~03/01/2003~
-~03168~^~322~^0.^0^^~4~^~FLA~^^^^^^^^^^~03/01/2003~
-~03168~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~
-~03168~^~334~^13.^0^^~4~^~FLA~^^^^^^^^^^~03/01/2003~
-~03168~^~337~^0.^0^^~4~^~FLA~^^^^^^^^^^~03/01/2003~
-~03168~^~338~^29.^0^^~4~^~FLA~^^^^^^^^^^~03/01/2003~
-~03168~^~417~^1.^3^0.^~1~^^^^^^^^^^^~12/01/1978~
-~03168~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~
-~03168~^~432~^1.^3^0.^~1~^^^^^^^^^^^~03/01/2003~
-~03168~^~435~^1.^0^^~4~^~NC~^^^^^^^^^^~03/01/2007~
-~03168~^~601~^0.^0^^~7~^^^^^^^^^^^~04/01/1985~
-~03171~^~208~^72.^0^^~4~^~NC~^^^^^^^^^^~07/01/2010~
-~03171~^~262~^0.^0^^~4~^~FLA~^^^^^^^^^^~03/01/2003~
-~03171~^~263~^0.^0^^~4~^~FLA~^^^^^^^^^^~03/01/2003~
-~03171~^~268~^303.^0^^~4~^~NC~^^^^^^^^^^~07/01/2010~
-~03171~^~301~^9.^1^^~1~^^^^^^^^^^^~12/01/1978~
-~03171~^~304~^7.^0^^~4~^^^^^^^^^^^~12/01/1978~
-~03171~^~305~^15.^1^^~1~^^^^^^^^^^^~12/01/1978~
-~03171~^~306~^148.^1^^~1~^^^^^^^^^^^~12/01/1978~
-~03171~^~307~^8.^0^^~8~^~LC~^^^^^^^^^^~07/01/2010~
-~03171~^~318~^16.^0^^~4~^^^^^^^^^^^~12/01/1978~
-~03171~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2002~
-~03171~^~320~^1.^0^^~4~^~NC~^^^^^^^^^^~03/01/2005~
-~03171~^~321~^8.^0^^~4~^~BNA~^^^^^^^^^^~03/01/2003~
-~03171~^~322~^1.^0^^~4~^~BNA~^^^^^^^^^^~03/01/2003~
-~03171~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~
-~03171~^~334~^2.^0^^~4~^~BNA~^^^^^^^^^^~03/01/2003~
-~03171~^~337~^0.^0^^~4~^~FLA~^^^^^^^^^^~03/01/2003~
-~03171~^~338~^22.^0^^~4~^~FLA~^^^^^^^^^^~03/01/2003~
-~03171~^~417~^0.^3^^~1~^^^^^^^^^^^~12/01/1978~
-~03171~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~
-~03171~^~432~^0.^3^^~1~^^^^^^^^^^^~03/01/2005~
-~03171~^~435~^0.^0^^~4~^~NC~^^^^^^^^^^~03/01/2007~
-~03171~^~601~^0.^0^^~7~^^^^^^^^^^^~04/01/1985~
-~03172~^~208~^45.^0^^~4~^~NC~^^^^^^^^^^~03/01/2007~
-~03172~^~262~^0.^0^^~4~^~BFSN~^~09206~^^^^^^^^^~03/01/2003~
-~03172~^~263~^0.^0^^~4~^~BFSN~^~09206~^^^^^^^^^~03/01/2003~
-~03172~^~268~^186.^0^^~4~^~NC~^^^^^^^^^^~03/01/2007~
-~03172~^~301~^12.^19^^~1~^^^^^^^^^^^~12/01/1978~
-~03172~^~304~^9.^5^0.^~1~^^^^^^^^^^^~12/01/1978~
-~03172~^~305~^11.^3^^~1~^^^^^^^^^^^~12/01/1978~
-~03172~^~306~^184.^16^^~1~^^^^^^^^^^^~12/01/1978~
-~03172~^~307~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2010~
-~03172~^~318~^55.^18^7.^~1~^^^^^^^^^^^~12/01/1978~
-~03172~^~319~^0.^0^^~4~^~BNA~^~09206~^^^^^^^^^~03/01/2003~
-~03172~^~320~^3.^0^^~4~^~NC~^^^^^^^^^^~03/01/2003~
-~03172~^~321~^9.^0^^~4~^~BNA~^~09206~^^^^^^^^^~03/01/2003~
-~03172~^~322~^2.^0^^~4~^~BNA~^~09206~^^^^^^^^^~03/01/2003~
-~03172~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~
-~03172~^~334~^47.^0^^~4~^~BNA~^~09206~^^^^^^^^^~03/01/2003~
-~03172~^~337~^0.^0^^~4~^~BFSN~^~09206~^^^^^^^^^~03/01/2003~
-~03172~^~338~^113.^0^^~4~^~BFSN~^~09206~^^^^^^^^^~03/01/2003~
-~03172~^~417~^26.^9^0.^~1~^^^^^^^^^^^~12/01/1978~
-~03172~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~
-~03172~^~432~^26.^9^0.^~1~^^^^^^^^^^^~03/01/2003~
-~03172~^~435~^26.^0^^~4~^~NC~^^^^^^^^^^~03/01/2007~
-~03172~^~601~^0.^0^^~7~^^^^^^^^^^^~04/01/1985~
-~03173~^~208~^43.^0^^~4~^~NC~^^^^^^^^^^~12/01/1978~
-~03173~^~268~^180.^0^^~4~^^^^^^^^^^^~04/01/2005~
-~03173~^~301~^10.^4^^~1~^^^^^^^^^^^~12/01/1978~
-~03173~^~304~^5.^2^^~1~^^^^^^^^^^^~12/01/1978~
-~03173~^~305~^7.^2^^~1~^^^^^^^^^^^~12/01/1978~
-~03173~^~306~^138.^2^^~1~^^^^^^^^^^^~12/01/1978~
-~03173~^~307~^3.^6^^~1~^^^^^^^^^^^~12/01/1978~
-~03173~^~318~^73.^4^28.^~1~^^^^^^^^^^^~12/01/1978~
-~03173~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2002~
-~03173~^~320~^4.^0^^~4~^~NC~^^^^^^^^^^~06/01/2002~
-~03173~^~417~^12.^3^0.^~1~^^^^^^^^^^^~12/01/1978~
-~03173~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~
-~03173~^~432~^12.^3^0.^~1~^^^^^^^^^^^~12/01/1978~
-~03173~^~435~^12.^0^^~4~^~NC~^^^^^^^^^^~04/01/2005~
-~03174~^~208~^47.^0^^~4~^~NC~^^^^^^^^^^~12/01/1978~
-~03174~^~262~^0.^0^^~4~^~FLA~^^^^^^^^^^~03/01/2003~
-~03174~^~263~^0.^0^^~4~^~FLA~^^^^^^^^^^~03/01/2003~
-~03174~^~268~^197.^0^^~4~^^^^^^^^^^^~03/01/2005~
-~03174~^~301~^5.^2^^~1~^^^^^^^^^^^~12/01/1978~
-~03174~^~304~^6.^2^^~1~^^^^^^^^^^^~12/01/1978~
-~03174~^~305~^8.^3^^~1~^^^^^^^^^^^~12/01/1978~
-~03174~^~306~^134.^3^^~1~^^^^^^^^^^^~12/01/1978~
-~03174~^~307~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2010~
-~03174~^~318~^27.^1^^~1~^^^^^^^^^^^~12/01/1978~
-~03174~^~319~^0.^0^^~4~^~FLA~^^^^^^^^^^~03/01/2003~
-~03174~^~320~^1.^0^^~4~^~NC~^^^^^^^^^^~03/01/2003~
-~03174~^~321~^5.^0^^~4~^~BNA~^^^^^^^^^^~03/01/2003~
-~03174~^~322~^1.^0^^~4~^~BNA~^^^^^^^^^^~03/01/2003~
-~03174~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~
-~03174~^~334~^22.^0^^~4~^~BNA~^^^^^^^^^^~03/01/2003~
-~03174~^~337~^0.^0^^~4~^~FLA~^^^^^^^^^^~03/01/2003~
-~03174~^~338~^59.^0^^~4~^~FLA~^^^^^^^^^^~03/01/2003~
-~03174~^~417~^10.^6^2.^~1~^^^^^^^^^^^~12/01/1978~
-~03174~^~431~^0.^0^^~4~^~FLA~^^^^^^^^^^~03/01/2003~
-~03174~^~432~^10.^6^2.^~1~^^^^^^^^^^^~03/01/2003~
-~03174~^~435~^10.^0^^~4~^~NC~^^^^^^^^^^~03/01/2007~
-~03174~^~601~^0.^0^^~7~^^^^^^^^^^^~04/01/1985~
-~03175~^~208~^46.^0^^~4~^~NC~^^^^^^^^^^~12/01/1978~
-~03175~^~268~^192.^0^^~4~^^^^^^^^^^^~04/01/2005~
-~03175~^~301~^6.^1^^~1~^^^^^^^^^^^~12/01/1978~
-~03175~^~304~^7.^2^^~1~^^^^^^^^^^^~12/01/1978~
-~03175~^~305~^12.^2^^~1~^^^^^^^^^^^~12/01/1978~
-~03175~^~306~^199.^2^^~1~^^^^^^^^^^^~12/01/1978~
-~03175~^~307~^6.^1^^~1~^^^^^^^^^^^~12/01/1978~
-~03175~^~318~^216.^1^^~1~^^^^^^^^^^^~12/01/1978~
-~03175~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2002~
-~03175~^~320~^11.^0^^~4~^~NC~^^^^^^^^^^~06/01/2002~
-~03175~^~417~^20.^3^5.^~1~^^^^^^^^^^^~12/01/1978~
-~03175~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~
-~03175~^~432~^20.^3^5.^~1~^^^^^^^^^^^~12/01/1978~
-~03175~^~435~^20.^0^^~4~^~NC~^^^^^^^^^^~07/01/2006~
-~03175~^~601~^0.^0^^~7~^^^^^^^^^^^~04/01/1985~
-~03176~^~208~^50.^0^^~4~^~NC~^^^^^^^^^^~12/01/1978~
-~03176~^~268~^209.^0^^~4~^^^^^^^^^^^
-~03176~^~301~^17.^13^1.^~1~^^^^^^^^^^^~12/01/1978~
-~03176~^~304~^14.^0^^~4~^^^^^^^^^^^~12/01/1978~
-~03176~^~305~^13.^0^^~4~^^^^^^^^^^^~12/01/1978~
-~03176~^~306~^200.^13^3.^~1~^^^^^^^^^^^~12/01/1978~
-~03176~^~307~^3.^13^0.^~1~^^^^^^^^^^^~12/01/1978~
-~03176~^~318~^46.^13^3.^~1~^^^^^^^^^^^~12/01/1978~
-~03176~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2002~
-~03176~^~320~^2.^0^^~4~^~NC~^^^^^^^^^^~06/01/2002~
-~03176~^~417~^24.^3^1.^~1~^^^^^^^^^^^~12/01/1978~
-~03176~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~
-~03176~^~432~^24.^3^1.^~1~^^^^^^^^^^^~12/01/1978~
-~03176~^~435~^24.^0^^~4~^~NC~^^^^^^^^^^~01/01/2001~
-~03177~^~208~^48.^0^^~4~^~NC~^^^^^^^^^^~12/01/1978~
-~03177~^~268~^201.^0^^~4~^^^^^^^^^^^~04/01/2005~
-~03177~^~301~^8.^3^^~1~^^^^^^^^^^^~12/01/1978~
-~03177~^~304~^9.^2^^~1~^^^^^^^^^^^~12/01/1978~
-~03177~^~305~^9.^3^^~1~^^^^^^^^^^^~12/01/1978~
-~03177~^~306~^141.^16^^~1~^^^^^^^^^^^~12/01/1978~
-~03177~^~307~^2.^16^^~1~^^^^^^^^^^^~12/01/1978~
-~03177~^~318~^31.^2^^~1~^^^^^^^^^^^~12/01/1978~
-~03177~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2002~
-~03177~^~320~^2.^0^^~4~^~NC~^^^^^^^^^^~06/01/2002~
-~03177~^~417~^19.^3^1.^~1~^^^^^^^^^^^~12/01/1978~
-~03177~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~
-~03177~^~432~^19.^3^1.^~1~^^^^^^^^^^^~12/01/1978~
-~03177~^~435~^19.^0^^~4~^~NC~^^^^^^^^^^~07/01/2006~
-~03177~^~601~^0.^0^^~7~^^^^^^^^^^^~04/01/1985~
-~03178~^~208~^70.^0^^~4~^~NC~^^^^^^^^^^~12/01/1978~
-~03178~^~268~^293.^0^^~4~^^^^^^^^^^^
-~03178~^~301~^12.^14^^~1~^^^^^^^^^^^~12/01/1978~
-~03178~^~304~^8.^2^^~1~^^^^^^^^^^^~12/01/1978~
-~03178~^~305~^10.^2^^~1~^^^^^^^^^^^~12/01/1978~
-~03178~^~306~^181.^15^1.^~1~^^^^^^^^^^^~12/01/1978~
-~03178~^~307~^2.^15^0.^~1~^^^^^^^^^^^~12/01/1978~
-~03178~^~318~^131.^14^^~1~^^^^^^^^^^^~12/01/1978~
-~03178~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2002~
-~03178~^~320~^7.^0^^~4~^~NC~^^^^^^^^^^~06/01/2002~
-~03178~^~417~^13.^3^0.^~1~^^^^^^^^^^^~12/01/1978~
-~03178~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~
-~03178~^~432~^13.^3^0.^~1~^^^^^^^^^^^~12/01/1978~
-~03178~^~435~^13.^0^^~4~^~NC~^^^^^^^^^^~01/01/2001~
-~03179~^~208~^47.^0^^~4~^~NC~^^^^^^^^^^~07/01/2010~
-~03179~^~262~^0.^0^^~4~^~BFSN~^^^^^^^^^^~03/01/2003~
-~03179~^~263~^0.^0^^~4~^~BFSN~^^^^^^^^^^~03/01/2003~
-~03179~^~268~^197.^0^^~4~^~NC~^^^^^^^^^^~07/01/2010~
-~03179~^~301~^8.^8^^~1~^^^^^^^^^^^~12/01/1978~
-~03179~^~304~^5.^2^^~1~^^^^^^^^^^^~12/01/1978~
-~03179~^~305~^5.^2^^~1~^^^^^^^^^^^~12/01/1978~
-~03179~^~306~^101.^15^2.^~1~^^^^^^^^^^^~12/01/1978~
-~03179~^~307~^8.^0^^~8~^~LC~^^^^^^^^^^~07/01/2010~
-~03179~^~318~^42.^7^^~1~^^^^^^^^^^^~12/01/1978~
-~03179~^~319~^0.^0^^~4~^~BNA~^^^^^^^^^^~03/01/2003~
-~03179~^~320~^2.^0^^~4~^~NC~^^^^^^^^^^~03/01/2003~
-~03179~^~321~^19.^0^^~4~^~BNA~^^^^^^^^^^~03/01/2003~
-~03179~^~322~^11.^0^^~4~^~BNA~^^^^^^^^^^~03/01/2003~
-~03179~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~
-~03179~^~334~^1.^0^^~4~^~BNA~^^^^^^^^^^~03/01/2003~
-~03179~^~337~^0.^0^^~4~^~BFSN~^^^^^^^^^^~03/01/2003~
-~03179~^~338~^21.^0^^~4~^~BFSN~^^^^^^^^^^~03/01/2003~
-~03179~^~417~^7.^9^0.^~1~^^^^^^^^^^^~12/01/1978~
-~03179~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~
-~03179~^~432~^7.^9^0.^~1~^^^^^^^^^^^~03/01/2003~
-~03179~^~435~^7.^0^^~4~^~NC~^^^^^^^^^^~03/01/2007~
-~03179~^~601~^0.^0^^~7~^^^^^^^^^^^~04/01/1985~
-~03181~^~208~^376.^0^^~4~^~NC~^^^^^^^^^^~08/01/2012~
-~03181~^~262~^0.^0^^~4~^~BFSN~^~20130~^^^^^^^^^~03/01/2003~
-~03181~^~263~^0.^0^^~4~^~BFSN~^~20130~^^^^^^^^^~03/01/2003~
-~03181~^~268~^1574.^0^^~4~^~NC~^^^^^^^^^^~08/01/2012~
-~03181~^~301~^643.^0^^~8~^~LC~^^^^^^^^^^~04/01/2016~
-~03181~^~304~^115.^3^5.^~1~^^^^^^^^^^^~12/01/1978~
-~03181~^~305~^333.^0^^~8~^~LC~^^^^^^^^^^~04/01/2016~
-~03181~^~306~^467.^0^^~8~^~LC~^^^^^^^^^^~04/01/2016~
-~03181~^~307~^33.^0^^~8~^~LC~^^^^^^^^^^~04/01/2016~
-~03181~^~318~^0.^0^^~8~^~LC~^^^^^^^^^^~04/01/2016~
-~03181~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2002~
-~03181~^~320~^0.^0^^~4~^~NC~^^^^^^^^^^~08/01/2008~
-~03181~^~321~^0.^0^^~4~^~BFSN~^~20130~^^^^^^^^^~03/01/2003~
-~03181~^~322~^0.^0^^~4~^~BFSN~^~20130~^^^^^^^^^~03/01/2003~
-~03181~^~324~^286.^0^^~8~^~LC~^^^^^^^^^^~04/01/2016~
-~03181~^~334~^0.^0^^~4~^~BFSN~^~20130~^^^^^^^^^~03/01/2003~
-~03181~^~337~^0.^0^^~4~^~BFSN~^~20130~^^^^^^^^^~03/01/2003~
-~03181~^~338~^170.^0^^~4~^~BFSN~^~20130~^^^^^^^^^~03/01/2003~
-~03181~^~417~^179.^0^^~8~^~LC~^^^^^^^^^^~04/01/2016~
-~03181~^~431~^156.^0^^~4~^~NR~^^^^^^^^^^~04/01/2016~
-~03181~^~432~^23.^0^^~4~^~NR~^^^^^^^^^^~04/01/2016~
-~03181~^~435~^287.^0^^~4~^~NC~^^^^^^^^^^~04/01/2016~
-~03181~^~601~^0.^0^^~4~^~NR~^^^^^^^^^^~07/01/2015~
-~03184~^~208~^402.^0^^~4~^~NC~^^^^^^^^^^~03/01/2007~
-~03184~^~262~^0.^0^^~4~^~FLA~^^^^^^^^^^~03/01/2003~
-~03184~^~263~^0.^0^^~4~^~FLA~^^^^^^^^^^~03/01/2003~
-~03184~^~268~^1684.^0^^~4~^~NC~^^^^^^^^^^~07/01/2015~
-~03184~^~301~^600.^0^^~12~^~MA~^^^^^^^^^^~01/01/1999~
-~03184~^~304~^140.^0^^~12~^~MA~^^^^^^^^^^~01/01/1999~
-~03184~^~305~^200.^0^^~4~^~NR~^^^^^^^^^^~04/01/2016~
-~03184~^~306~^500.^0^^~4~^~NR~^^^^^^^^^^~04/01/2016~
-~03184~^~307~^66.^0^^~4~^~NR~^^^^^^^^^^~04/01/2016~
-~03184~^~318~^0.^0^^~4~^~NR~^^^^^^^^^^~04/01/2016~
-~03184~^~319~^0.^0^^~4~^~FLA~^^^^^^^^^^~03/01/2003~
-~03184~^~320~^0.^0^^~4~^~NC~^^^^^^^^^^~04/01/2016~
-~03184~^~321~^0.^0^^~4~^~NR~^^^^^^^^^^~04/01/2016~
-~03184~^~322~^0.^0^^~4~^~FLA~^^^^^^^^^^~03/01/2003~
-~03184~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~
-~03184~^~334~^0.^0^^~4~^~NR~^^^^^^^^^^~04/01/2016~
-~03184~^~337~^0.^0^^~4~^~FLA~^^^^^^^^^^~03/01/2003~
-~03184~^~338~^203.^0^^~4~^~FLA~^^^^^^^^^^~03/01/2003~
-~03184~^~417~^166.^0^^~4~^~NR~^^^^^^^^^^~04/01/2016~
-~03184~^~431~^142.^0^^~4~^~NR~^^^^^^^^^^~04/01/2016~
-~03184~^~432~^24.^0^^~4~^~NR~^^^^^^^^^^~04/01/2016~
-~03184~^~435~^265.^0^^~4~^~NC~^^^^^^^^^^~04/01/2016~
-~03184~^~601~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/1999~
-~03185~^~208~^399.^0^^~4~^~NC~^^^^^^^^^^~04/01/2016~
-~03185~^~262~^0.^0^^~4~^~FLA~^^^^^^^^^^~03/01/2003~
-~03185~^~263~^0.^0^^~4~^~FLA~^^^^^^^^^^~03/01/2003~
-~03185~^~268~^1670.^0^^~4~^~NC~^^^^^^^^^^~04/01/2016~
-~03185~^~301~^800.^0^^~8~^~LC~^^^^^^^^^^~04/01/2016~
-~03185~^~304~^100.^3^4.^~4~^~NR~^^^^^^^^^^~04/01/2016~
-~03185~^~305~^333.^0^^~4~^~NR~^^^^^^^^^^~04/01/2016~
-~03185~^~306~^467.^0^^~8~^~LC~^^^^^^^^^^~04/01/2016~
-~03185~^~307~^33.^0^^~8~^~LC~^^^^^^^^^^~04/01/2016~
-~03185~^~318~^0.^0^^~8~^~LC~^^^^^^^^^^~04/01/2016~
-~03185~^~319~^0.^0^^~4~^~FLA~^^^^^^^^^^~03/01/2003~
-~03185~^~320~^0.^0^^~4~^~NC~^^^^^^^^^^~04/01/2016~
-~03185~^~321~^0.^0^^~4~^~NR~^^^^^^^^^^~04/01/2016~
-~03185~^~322~^0.^0^^~4~^~NR~^^^^^^^^^^~04/01/2016~
-~03185~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~
-~03185~^~334~^0.^0^^~4~^~NR~^^^^^^^^^^~03/01/2003~
-~03185~^~337~^0.^0^^~4~^~FLA~^^^^^^^^^^~03/01/2003~
-~03185~^~338~^148.^0^^~4~^~O~^^^^^^^^^^~03/01/2003~
-~03185~^~417~^167.^0^^~8~^~LC~^^^^^^^^^^~04/01/2016~
-~03185~^~431~^132.^0^^~4~^~NR~^^^^^^^^^^~04/01/2016~
-~03185~^~432~^35.^0^^~4~^~NR~^^^^^^^^^^~04/01/2016~
-~03185~^~435~^259.^0^^~4~^~NC~^^^^^^^^^^~04/01/2016~
-~03185~^~601~^0.^0^^~7~^^^^^^^^^^^~04/01/1985~
-~03186~^~208~^391.^0^^~4~^~NC~^^^^^^^^^^~12/01/1978~
-~03186~^~262~^0.^0^^~4~^~FLA~^^^^^^^^^^~01/01/2003~
-~03186~^~263~^0.^0^^~4~^~FLA~^^^^^^^^^^~01/01/2003~
-~03186~^~268~^1636.^0^^~4~^^^^^^^^^^^~04/01/2005~
-~03186~^~301~^696.^1^^~1~^^^^^^^^^^^~12/01/1978~
-~03186~^~304~^90.^2^^~1~^^^^^^^^^^^~12/01/1978~
-~03186~^~305~^367.^2^^~1~^^^^^^^^^^^~12/01/1978~
-~03186~^~306~^668.^2^^~1~^^^^^^^^^^^~12/01/1978~
-~03186~^~307~^0.^0^^~8~^~LC~^^^^^^^^^^~07/01/2010~
-~03186~^~318~^125.^0^^~4~^~NC~^^^^^^^^^^~07/01/2015~
-~03186~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2002~
-~03186~^~320~^6.^0^^~4~^~NC~^^^^^^^^^^~03/01/2003~
-~03186~^~321~^51.^0^^~4~^~BNA~^^^^^^^^^^~03/01/2003~
-~03186~^~322~^49.^0^^~4~^~BNA~^^^^^^^^^^~03/01/2003~
-~03186~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~
-~03186~^~334~^0.^0^^~4~^~BNA~^^^^^^^^^^~03/01/2003~
-~03186~^~337~^0.^0^^~4~^~FLA~^^^^^^^^^^~01/01/2003~
-~03186~^~338~^96.^0^^~4~^~FLA~^^^^^^^^^^~01/01/2003~
-~03186~^~417~^17.^0^^~4~^^^^^^^^^^^~12/01/1978~
-~03186~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~
-~03186~^~432~^17.^0^^~4~^^^^^^^^^^^~03/01/2003~
-~03186~^~435~^17.^0^^~4~^~NC~^^^^^^^^^^~03/01/2007~
-~03186~^~601~^0.^0^^~7~^^^^^^^^^^^~04/01/1985~
-~03187~^~208~^82.^0^^~4~^~NC~^^^^^^^^^^~07/01/2010~
-~03187~^~262~^0.^0^^~4~^~T~^^^^^^^^^^~02/01/2003~
-~03187~^~263~^0.^0^^~4~^~T~^^^^^^^^^^~02/01/2003~
-~03187~^~268~^343.^0^^~4~^~NC~^^^^^^^^^^~07/01/2010~
-~03187~^~301~^91.^0^^~8~^~LC~^^^^^^^^^^~04/01/2016~
-~03187~^~304~^7.^0^^~4~^~NR~^^^^^^^^^^~04/01/2016~
-~03187~^~305~^29.^0^^~4~^~NR~^^^^^^^^^^~04/01/2016~
-~03187~^~306~^111.^0^^~8~^~LC~^^^^^^^^^^~04/01/2016~
-~03187~^~307~^5.^0^^~8~^~LC~^^^^^^^^^^~04/01/2016~
-~03187~^~318~^0.^0^^~8~^~LC~^^^^^^^^^^~04/01/2016~
-~03187~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2002~
-~03187~^~320~^0.^0^^~4~^~NC~^^^^^^^^^^~04/01/2016~
-~03187~^~321~^0.^0^^~4~^~NR~^^^^^^^^^^~04/01/2016~
-~03187~^~322~^0.^0^^~4~^~NR~^^^^^^^^^^~04/01/2016~
-~03187~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~
-~03187~^~334~^0.^0^^~4~^~NR~^^^^^^^^^^~04/01/2016~
-~03187~^~337~^0.^0^^~4~^~T~^^^^^^^^^^~02/01/2003~
-~03187~^~338~^10.^0^^~4~^~T~^^^^^^^^^^~02/01/2003~
-~03187~^~417~^25.^0^^~8~^~LC~^^^^^^^^^^~04/01/2016~
-~03187~^~431~^25.^0^^~4~^~NR~^^^^^^^^^^~04/01/2016~
-~03187~^~432~^0.^0^^~4~^~NC~^^^^^^^^^^~04/01/2016~
-~03187~^~435~^43.^0^^~4~^~NC~^^^^^^^^^^~04/01/2016~
-~03187~^~601~^0.^0^^~7~^^^^^^^^^^^~04/01/1985~
-~03188~^~208~^84.^0^^~4~^~NC~^^^^^^^^^^~04/01/2016~
-~03188~^~262~^0.^0^^~4~^~T~^^^^^^^^^^~02/01/2003~
-~03188~^~263~^0.^0^^~4~^~T~^^^^^^^^^^~02/01/2003~
-~03188~^~268~^350.^0^^~4~^~NC~^^^^^^^^^^~04/01/2016~
-~03188~^~301~^91.^0^^~8~^~LC~^^^^^^^^^^~04/01/2016~
-~03188~^~304~^7.^1^^~1~^^^^^^^^^^^~12/01/1978~
-~03188~^~305~^29.^1^^~1~^^^^^^^^^^^~12/01/1978~
-~03188~^~306~^111.^0^^~8~^~LC~^^^^^^^^^^~04/01/2016~
-~03188~^~307~^5.^0^^~4~^~NR~^^^^^^^^^^~04/01/2016~
-~03188~^~318~^0.^0^^~4~^~NR~^^^^^^^^^^~04/01/2016~
-~03188~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2002~
-~03188~^~320~^0.^0^^~4~^~NC~^^^^^^^^^^~04/01/2016~
-~03188~^~321~^0.^0^^~4~^~NR~^^^^^^^^^^~04/01/2016~
-~03188~^~322~^0.^0^^~4~^~NR~^^^^^^^^^^~04/01/2016~
-~03188~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~
-~03188~^~334~^0.^0^^~4~^~NR~^^^^^^^^^^~04/01/2016~
-~03188~^~337~^0.^0^^~4~^~T~^^^^^^^^^^~02/01/2003~
-~03188~^~338~^10.^0^^~4~^~T~^^^^^^^^^^~02/01/2003~
-~03188~^~417~^25.^0^^~8~^~LC~^^^^^^^^^^~04/01/2016~
-~03188~^~431~^25.^0^^~4~^~NR~^^^^^^^^^^~04/01/2016~
-~03188~^~432~^0.^0^^~4~^~NR~^^^^^^^^^^~04/01/2016~
-~03188~^~435~^43.^0^^~4~^~NC~^^^^^^^^^^~04/01/2016~
-~03188~^~601~^0.^0^^~4~^^^^^^^^^^^~04/01/1985~
-~03189~^~208~^394.^0^^~4~^~NC~^^^^^^^^^^~04/01/2015~
-~03189~^~262~^0.^0^^~4~^~BFSN~^~08120~^^^^^^^^^~03/01/2003~
-~03189~^~263~^0.^0^^~4~^~BFSN~^~08120~^^^^^^^^^~03/01/2003~
-~03189~^~268~^1649.^0^^~4~^~NC~^^^^^^^^^^~04/01/2015~
-~03189~^~301~^1160.^15^9.^~1~^~A~^^^1^756.^1280.^5^1136.^1183.^~2, 3~^~04/01/2015~
-~03189~^~304~^110.^15^1.^~1~^~A~^^^1^97.^132.^9^108.^112.^~2, 3~^~04/01/2016~
-~03189~^~305~^506.^15^5.^~1~^~A~^^^1^444.^777.^6^493.^517.^~2, 3~^~04/01/2016~
-~03189~^~306~^549.^15^3.^~1~^~A~^^^1^318.^617.^6^539.^558.^~2, 3~^~04/01/2015~
-~03189~^~307~^21.^15^0.^~1~^~A~^^^1^7.^26.^6^19.^21.^~1, 2, 3~^~04/01/2015~
-~03189~^~318~^16.^0^^~4~^^^^^^^^^^^~04/01/2016~
-~03189~^~319~^0.^3^^~1~^~A~^^^1^0.^0.^^^^~1, 2, 3~^~04/01/2015~
-~03189~^~320~^0.^0^^~4~^~NC~^^^^^^^^^^~03/01/2007~
-~03189~^~321~^0.^0^^~4~^~BFSN~^~08120~^^^^^^^^^~03/01/2003~
-~03189~^~322~^0.^0^^~4~^~BFSN~^~08120~^^^^^^^^^~03/01/2003~
-~03189~^~324~^510.^0^^~4~^~NR~^^^^^^^^^^~04/01/2015~
-~03189~^~334~^0.^0^^~4~^~BFSN~^~08120~^^^^^^^^^~03/01/2003~
-~03189~^~337~^0.^0^^~4~^~BFSN~^~08120~^^^^^^^^^~03/01/2003~
-~03189~^~338~^185.^0^^~4~^~BFSN~^~08120~^^^^^^^^^~03/01/2003~
-~03189~^~417~^247.^8^10.^~1~^~A~^^^1^217.^273.^2^202.^291.^~2, 3~^~04/01/2016~
-~03189~^~431~^212.^0^^~4~^~NR~^^^^^^^^^^~04/01/2016~
-~03189~^~432~^35.^0^^~4~^~NR~^^^^^^^^^^~04/01/2016~
-~03189~^~435~^396.^0^^~4~^~NC~^^^^^^^^^^~04/01/2016~
-~03189~^~601~^0.^0^^~7~^^^^^^^^^^^~04/01/1985~
-~03190~^~208~^399.^0^^~4~^~NC~^^^^^^^^^^~04/01/2016~
-~03190~^~262~^0.^0^^~4~^~FLA~^^^^^^^^^^~03/01/2003~
-~03190~^~263~^0.^0^^~4~^~FLA~^^^^^^^^^^~03/01/2003~
-~03190~^~268~^1671.^0^^~4~^~NC~^^^^^^^^^^~04/01/2016~
-~03190~^~301~^800.^0^^~4~^~NR~^^^^^^^^^^~04/01/2016~
-~03190~^~304~^118.^2^^~1~^^^^^^^^^^^~03/01/2003~
-~03190~^~305~^267.^0^^~8~^~LC~^^^^^^^^^^~04/01/2016~
-~03190~^~306~^600.^0^^~8~^~LC~^^^^^^^^^^~04/01/2016~
-~03190~^~307~^33.^0^^~8~^~LC~^^^^^^^^^^~04/01/2016~
-~03190~^~318~^0.^0^^~4~^~NR~^^^^^^^^^^~04/01/2016~
-~03190~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2002~
-~03190~^~320~^0.^0^^~4~^~NC~^^^^^^^^^^~04/01/2016~
-~03190~^~321~^0.^0^^~4~^~NR~^^^^^^^^^^~04/01/2016~
-~03190~^~322~^0.^0^^~4~^~NR~^^^^^^^^^^~04/01/2016~
-~03190~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~
-~03190~^~334~^0.^0^^~4~^~BNA~^^^^^^^^^^~03/01/2003~
-~03190~^~337~^0.^0^^~4~^~FLA~^^^^^^^^^^~03/01/2003~
-~03190~^~338~^157.^0^^~4~^~FLA~^^^^^^^^^^~03/01/2003~
-~03190~^~417~^167.^0^^~8~^~LC~^^^^^^^^^^~04/01/2016~
-~03190~^~431~^132.^0^^~4~^~NR~^^^^^^^^^^~04/01/2016~
-~03190~^~432~^35.^0^^~4~^~NR~^^^^^^^^^^~04/01/2016~
-~03190~^~435~^259.^0^^~4~^~NC~^^^^^^^^^^~04/01/2016~
-~03190~^~601~^0.^0^^~7~^^^^^^^^^^^~04/01/1985~
-~03191~^~208~^75.^0^^~4~^~NC~^^^^^^^^^^~04/01/2016~
-~03191~^~262~^0.^0^^~4~^~FLA~^^^^^^^^^^~03/01/2003~
-~03191~^~263~^0.^0^^~4~^~FLA~^^^^^^^^^^~03/01/2003~
-~03191~^~268~^312.^0^^~4~^~NC~^^^^^^^^^^~04/01/2016~
-~03191~^~301~^6.^0^^~8~^~LC~^^^^^^^^^^~04/01/2016~
-~03191~^~304~^11.^1^^~1~^^^^^^^^^^^~12/01/1978~
-~03191~^~305~^41.^1^^~1~^^^^^^^^^^^~12/01/1978~
-~03191~^~306~^97.^0^^~8~^~LC~^^^^^^^^^^~04/01/2016~
-~03191~^~307~^4.^0^^~8~^~LC~^^^^^^^^^^~04/01/2016~
-~03191~^~318~^0.^0^^~8~^~LC~^^^^^^^^^^~04/01/2016~
-~03191~^~319~^0.^0^^~4~^~FLA~^^^^^^^^^^~03/01/2003~
-~03191~^~320~^0.^0^^~4~^~NC~^^^^^^^^^^~04/01/2016~
-~03191~^~321~^0.^0^^~4~^~NR~^^^^^^^^^^~04/01/2016~
-~03191~^~322~^0.^0^^~4~^~NR~^^^^^^^^^^~04/01/2016~
-~03191~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~
-~03191~^~334~^0.^0^^~4~^~NR~^^^^^^^^^^~04/01/2016~
-~03191~^~337~^0.^0^^~4~^~FLA~^^^^^^^^^^~03/01/2003~
-~03191~^~338~^90.^0^^~4~^~FLA~^^^^^^^^^^~03/01/2003~
-~03191~^~417~^22.^0^^~8~^~LC~^^^^^^^^^^~04/01/2016~
-~03191~^~431~^22.^0^^~8~^~LC~^^^^^^^^^^~04/01/2016~
-~03191~^~432~^0.^0^^~4~^~NR~^^^^^^^^^^~04/01/2016~
-~03191~^~435~^38.^0^^~4~^~NC~^^^^^^^^^^~04/01/2016~
-~03191~^~601~^0.^0^^~7~^^^^^^^^^^^~04/01/1985~
-~03192~^~208~^76.^0^^~4~^~NC~^^^^^^^^^^~04/01/2016~
-~03192~^~262~^0.^0^^~4~^~FLA~^^^^^^^^^^~03/01/2003~
-~03192~^~263~^0.^0^^~4~^~FLA~^^^^^^^^^^~03/01/2003~
-~03192~^~268~^319.^0^^~4~^~NC~^^^^^^^^^^~04/01/2016~
-~03192~^~301~^6.^7^1.^~8~^~LC~^^^^^^^^^^~04/01/2016~
-~03192~^~304~^11.^1^^~1~^^^^^^^^^^^~12/01/1978~
-~03192~^~305~^41.^1^^~1~^^^^^^^^^^^~12/01/1978~
-~03192~^~306~^97.^0^^~8~^~LC~^^^^^^^^^^~04/01/2016~
-~03192~^~307~^4.^0^^~8~^~LC~^^^^^^^^^^~04/01/2016~
-~03192~^~318~^0.^0^^~4~^~NR~^^^^^^^^^^~04/01/2016~
-~03192~^~319~^0.^0^^~4~^~FLA~^^^^^^^^^^~03/01/2003~
-~03192~^~320~^0.^0^^~4~^~NC~^^^^^^^^^^~04/01/2016~
-~03192~^~321~^0.^0^^~4~^~NR~^^^^^^^^^^~04/01/2016~
-~03192~^~322~^0.^0^^~4~^~NR~^^^^^^^^^^~04/01/2016~
-~03192~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~
-~03192~^~334~^0.^0^^~4~^~NR~^^^^^^^^^^~04/01/2016~
-~03192~^~337~^0.^0^^~4~^~FLA~^^^^^^^^^^~03/01/2003~
-~03192~^~338~^17.^0^^~4~^~FLA~^^^^^^^^^^~03/01/2003~
-~03192~^~417~^22.^0^^~4~^~NR~^^^^^^^^^^~04/01/2016~
-~03192~^~431~^22.^0^^~4~^~NR~^^^^^^^^^^~04/01/2016~
-~03192~^~432~^0.^0^^~4~^~NR~^^^^^^^^^^~04/01/2016~
-~03192~^~435~^38.^0^^~4~^~NC~^^^^^^^^^^~04/01/2016~
-~03192~^~601~^0.^0^^~4~^^^^^^^^^^^~04/01/1985~
-~03193~^~208~^391.^0^^~4~^~NC~^^^^^^^^^^~12/01/1978~
-~03193~^~268~^1636.^0^^~4~^^^^^^^^^^^
-~03193~^~301~^1154.^13^13.^~1~^^^^^^^^^^^~12/01/1978~
-~03193~^~304~^146.^0^^~4~^^^^^^^^^^^~12/01/1978~
-~03193~^~305~^733.^14^29.^~1~^^^^^^^^^^^~12/01/1978~
-~03193~^~306~^259.^13^8.^~1~^^^^^^^^^^^~12/01/1978~
-~03193~^~307~^47.^13^2.^~1~^^^^^^^^^^^~12/01/1978~
-~03193~^~318~^23.^13^2.^~1~^^^^^^^^^^^~12/01/1978~
-~03193~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2002~
-~03193~^~320~^1.^0^^~4~^~NC~^^^^^^^^^^~06/01/2002~
-~03193~^~417~^35.^0^^~4~^^^^^^^^^^^~12/01/1978~
-~03193~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~
-~03193~^~432~^35.^0^^~4~^^^^^^^^^^^~12/01/1978~
-~03193~^~435~^35.^0^^~4~^~NC~^^^^^^^^^^~01/01/2001~
-~03194~^~208~^390.^0^^~4~^~NC~^^^^^^^^^^~04/01/2015~
-~03194~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2003~
-~03194~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2003~
-~03194~^~268~^1630.^0^^~4~^~NC~^^^^^^^^^^~04/01/2015~
-~03194~^~301~^860.^12^4.^~1~^~A~^^^1^747.^894.^4^849.^871.^~2, 3~^~04/01/2015~
-~03194~^~304~^37.^14^0.^~1~^~A~^^^1^28.^113.^7^36.^37.^~2, 3~^~04/01/2015~
-~03194~^~305~^273.^14^2.^~1~^~A~^^^1^231.^621.^3^264.^281.^~2, 3~^~04/01/2015~
-~03194~^~306~^281.^14^2.^~1~^~A~^^^1^95.^327.^4^273.^288.^~2, 3~^~04/01/2015~
-~03194~^~307~^32.^14^2.^~1~^~A~^^^1^7.^57.^4^26.^37.^~1, 2, 3~^~04/01/2015~
-~03194~^~318~^0.^0^^~1~^~AS~^^^^^^^^^^~04/01/2015~
-~03194~^~319~^0.^3^^~1~^~A~^^^1^0.^0.^^^^~1, 2, 3~^~04/01/2015~
-~03194~^~320~^0.^0^^~4~^~NC~^^^^^^^^^^~03/01/2003~
-~03194~^~321~^0.^0^^~4~^~BFSN~^~20061~^^^^^^^^^~03/01/2003~
-~03194~^~322~^0.^0^^~4~^~BFSN~^~20061~^^^^^^^^^~03/01/2003~
-~03194~^~324~^341.^0^^~4~^~NR~^^^^^^^^^^~04/01/2015~
-~03194~^~334~^0.^0^^~4~^~BFSN~^~20061~^^^^^^^^^~03/01/2003~
-~03194~^~337~^0.^0^^~4~^~BFSN~^~20061~^^^^^^^^^~03/01/2003~
-~03194~^~338~^0.^0^^~4~^~BFSN~^~20061~^^^^^^^^^~03/01/2003~
-~03194~^~417~^230.^8^7.^~1~^~A~^^^1^207.^268.^2^201.^259.^~2, 3~^~04/01/2015~
-~03194~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~
-~03194~^~432~^230.^8^7.^~1~^~A~^^^1^207.^268.^2^201.^259.^^~04/01/2015~
-~03194~^~435~^230.^0^^~4~^~NC~^^^^^^^^^^~04/01/2015~
-~03194~^~601~^0.^0^^~7~^^^^^^^^^^^~04/01/1985~
-~03195~^~208~^80.^0^^~4~^~NC~^^^^^^^^^^~03/01/2007~
-~03195~^~262~^0.^0^^~4~^~FLA~^^^^^^^^^^~01/01/2003~
-~03195~^~263~^0.^0^^~4~^~FLA~^^^^^^^^^^~01/01/2003~
-~03195~^~268~^334.^0^^~4~^~NC~^^^^^^^^^^~03/01/2007~
-~03195~^~301~^17.^19^0.^~1~^^^^^^^^^^^~12/01/1978~
-~03195~^~304~^3.^1^^~1~^^^^^^^^^^^~12/01/1978~
-~03195~^~305~^12.^1^^~1~^^^^^^^^^^^~12/01/1978~
-~03195~^~306~^28.^14^^~1~^^^^^^^^^^^~12/01/1978~
-~03195~^~307~^4.^0^^~8~^~LC~^^^^^^^^^^~07/01/2010~
-~03195~^~318~^21.^0^^~4~^~NC~^^^^^^^^^^~07/01/2015~
-~03195~^~319~^0.^0^^~4~^~FLA~^^^^^^^^^^~09/01/2004~
-~03195~^~320~^1.^0^^~4~^~NC~^^^^^^^^^^~04/01/2005~
-~03195~^~321~^9.^0^^~4~^~BNA~^^^^^^^^^^~03/01/2003~
-~03195~^~322~^0.^0^^~4~^~BNA~^^^^^^^^^^~03/01/2003~
-~03195~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~
-~03195~^~334~^7.^0^^~4~^~BNA~^^^^^^^^^^~03/01/2003~
-~03195~^~337~^0.^0^^~4~^~FLA~^^^^^^^^^^~01/01/2003~
-~03195~^~338~^4.^0^^~4~^~FLA~^^^^^^^^^^~01/01/2003~
-~03195~^~417~^3.^0^^~4~^~NR~^^^^^^^^^^~04/01/2014~
-~03195~^~431~^0.^0^^~4~^~FLA~^^^^^^^^^^~09/01/2004~
-~03195~^~432~^3.^0^^~4~^~NR~^^^^^^^^^^~05/01/2014~
-~03195~^~435~^3.^0^^~4~^~NC~^^^^^^^^^^~05/01/2014~
-~03195~^~601~^0.^0^^~7~^^^^^^^^^^^~04/01/1985~
-~03197~^~208~^51.^0^^~4~^~NC~^^^^^^^^^^~12/01/1978~
-~03197~^~268~^213.^0^^~4~^^^^^^^^^^^
-~03197~^~301~^24.^7^0.^~1~^^^^^^^^^^^~12/01/1978~
-~03197~^~304~^3.^1^^~1~^^^^^^^^^^^~12/01/1978~
-~03197~^~305~^40.^1^^~1~^^^^^^^^^^^~12/01/1978~
-~03197~^~306~^39.^1^^~1~^^^^^^^^^^^~12/01/1978~
-~03197~^~307~^33.^1^^~1~^^^^^^^^^^^~12/01/1978~
-~03197~^~318~^141.^6^19.^~1~^^^^^^^^^^^~12/01/1978~
-~03197~^~319~^39.^0^^~4~^~NC~^^^^^^^^^^~06/01/2002~
-~03197~^~320~^40.^0^^~4~^~NC~^^^^^^^^^^~06/01/2002~
-~03197~^~417~^3.^3^0.^~1~^^^^^^^^^^^~12/01/1978~
-~03197~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~
-~03197~^~432~^3.^3^0.^~1~^^^^^^^^^^^~12/01/1978~
-~03197~^~435~^3.^0^^~4~^~NC~^^^^^^^^^^~01/01/2001~
-~03197~^~601~^63.^1^^~1~^^^^^^^^^^^~12/01/1978~
-~03198~^~208~^52.^0^^~4~^~NC~^^^^^^^^^^~12/01/1978~
-~03198~^~268~^218.^0^^~4~^^^^^^^^^^^
-~03198~^~301~^24.^7^0.^~1~^^^^^^^^^^^~12/01/1978~
-~03198~^~304~^3.^1^^~1~^^^^^^^^^^^~12/01/1978~
-~03198~^~305~^40.^1^^~1~^^^^^^^^^^^~12/01/1978~
-~03198~^~306~^35.^1^^~1~^^^^^^^^^^^~12/01/1978~
-~03198~^~307~^33.^0^^~1~^^^^^^^^^^^~12/01/1978~
-~03198~^~318~^144.^6^17.^~1~^^^^^^^^^^^~12/01/1978~
-~03198~^~319~^40.^0^^~4~^~NC~^^^^^^^^^^~06/01/2002~
-~03198~^~320~^41.^0^^~4~^~NC~^^^^^^^^^^~06/01/2002~
-~03198~^~417~^3.^0^^~1~^^^^^^^^^^^~12/01/1978~
-~03198~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~
-~03198~^~432~^3.^0^^~1~^^^^^^^^^^^~12/01/1978~
-~03198~^~435~^3.^0^^~4~^~NC~^^^^^^^^^^~01/01/2001~
-~03198~^~601~^63.^0^^~1~^^^^^^^^^^^~04/01/1985~
-~03199~^~208~^58.^0^^~4~^^^^^^^^^^^~12/01/1978~
-~03199~^~268~^243.^0^^~4~^^^^^^^^^^^
-~03199~^~301~^27.^0^^~4~^^^^^^^^^^^~12/01/1978~
-~03199~^~304~^3.^0^^~4~^^^^^^^^^^^~12/01/1978~
-~03199~^~305~^46.^0^^~4~^^^^^^^^^^^~12/01/1978~
-~03199~^~306~^44.^0^^~4~^^^^^^^^^^^~12/01/1978~
-~03199~^~307~^38.^0^^~4~^^^^^^^^^^^~12/01/1978~
-~03199~^~318~^161.^0^^~4~^^^^^^^^^^^~12/01/1978~
-~03199~^~417~^9.^3^0.^~1~^^^^^^^^^^^~12/01/1978~
-~03199~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~
-~03199~^~432~^9.^3^0.^~1~^^^^^^^^^^^~12/01/1978~
-~03199~^~435~^9.^0^^~4~^~NC~^^^^^^^^^^~01/01/2001~
-~03199~^~601~^51.^1^^~1~^^^^^^^^^^^~12/01/1978~
-~03201~^~208~^79.^0^^~4~^~NC~^^^^^^^^^^~12/01/1978~
-~03201~^~268~^331.^0^^~4~^^^^^^^^^^^
-~03201~^~301~^28.^17^4.^~1~^^^^^^^^^^^~12/01/1978~
-~03201~^~304~^5.^1^^~1~^^^^^^^^^^^~12/01/1978~
-~03201~^~305~^50.^0^^~4~^^^^^^^^^^^~12/01/1978~
-~03201~^~306~^35.^13^1.^~1~^^^^^^^^^^^~12/01/1978~
-~03201~^~307~^48.^13^2.^~1~^^^^^^^^^^^~12/01/1978~
-~03201~^~318~^94.^13^13.^~1~^^^^^^^^^^^~12/01/1978~
-~03201~^~319~^28.^0^^~4~^~NC~^^^^^^^^^^~06/01/2002~
-~03201~^~320~^28.^0^^~4~^~NC~^^^^^^^^^^~06/01/2002~
-~03201~^~417~^4.^3^0.^~1~^^^^^^^^^^^~12/01/1978~
-~03201~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~
-~03201~^~432~^4.^3^0.^~1~^^^^^^^^^^^~12/01/1978~
-~03201~^~435~^4.^0^^~4~^~NC~^^^^^^^^^^~01/01/2001~
-~03201~^~601~^94.^0^^~4~^^^^^^^^^^^~05/01/1989~
-~03205~^~208~^402.^0^^~4~^~NC~^^^^^^^^^^~05/01/2010~
-~03205~^~262~^0.^0^^~4~^~FLA~^^^^^^^^^^~01/01/2003~
-~03205~^~263~^0.^0^^~4~^~FLA~^^^^^^^^^^~01/01/2003~
-~03205~^~268~^1681.^0^^~4~^~NC~^^^^^^^^^^~05/01/2010~
-~03205~^~301~^286.^0^^~12~^~MA~^^^^^^^^^^~06/01/1996~
-~03205~^~304~^107.^0^^~12~^~MA~^^^^^^^^^^~06/01/1996~
-~03205~^~305~^429.^0^^~12~^~MA~^^^^^^^^^^~06/01/1996~
-~03205~^~306~^346.^0^^~12~^~MA~^^^^^^^^^^~06/01/1996~
-~03205~^~307~^0.^0^^~8~^~LC~^^^^^^^^^^~05/01/2010~
-~03205~^~318~^89.^0^^~4~^~NC~^^^^^^^^^^~07/01/2015~
-~03205~^~319~^0.^0^^~4~^~BNA~^^^^^^^^^^~03/01/2003~
-~03205~^~320~^4.^0^^~4~^~NC~^^^^^^^^^^~03/01/2003~
-~03205~^~321~^41.^0^^~4~^~BNA~^^^^^^^^^^~03/01/2003~
-~03205~^~322~^12.^0^^~4~^~BNA~^^^^^^^^^^~03/01/2003~
-~03205~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~
-~03205~^~334~^13.^0^^~4~^~BNA~^^^^^^^^^^~03/01/2003~
-~03205~^~337~^0.^0^^~4~^~FLA~^^^^^^^^^^~01/01/2003~
-~03205~^~338~^32.^0^^~4~^~FLA~^^^^^^^^^^~03/01/2003~
-~03205~^~417~^234.^0^^~4~^~NR~^^^^^^^^^^~04/01/2016~
-~03205~^~431~^199.^0^^~4~^~NR~^^^^^^^^^^~04/01/2016~
-~03205~^~432~^35.^0^^~4~^~NR~^^^^^^^^^^~04/01/2016~
-~03205~^~435~^374.^0^^~4~^~NC~^^^^^^^^^^~04/01/2016~
-~03205~^~601~^0.^0^^~12~^~MA~^^^^^^^^^^~04/01/1994~
-~03206~^~208~^435.^0^^~9~^~MC~^^^^^^^^^^~11/01/1996~
-~03206~^~262~^0.^0^^~4~^~FLA~^^^^^^^^^^~03/01/2003~
-~03206~^~263~^0.^0^^~4~^~FLA~^^^^^^^^^^~03/01/2003~
-~03206~^~268~^1820.^1^^~9~^~MC~^^^^^^^^^^~05/01/2005~
-~03206~^~301~^83.^0^^~12~^~MA~^^^^^^^^^^~11/01/1996~
-~03206~^~304~^30.^0^^~12~^~MA~^^^^^^^^^^~11/01/1996~
-~03206~^~305~^189.^0^^~12~^~MA~^^^^^^^^^^~11/01/1996~
-~03206~^~306~^425.^0^^~12~^~MA~^^^^^^^^^^~11/01/1996~
-~03206~^~307~^9.^0^^~12~^~MA~^^^^^^^^^^~11/01/1996~
-~03206~^~318~^2348.^0^^~4~^~NC~^^^^^^^^^^~03/01/2003~
-~03206~^~319~^0.^0^^~4~^~BNA~^^^^^^^^^^~03/01/2003~
-~03206~^~320~^117.^0^^~4~^~NC~^^^^^^^^^^~03/01/2003~
-~03206~^~321~^1002.^0^^~4~^~BNA~^^^^^^^^^^~03/01/2003~
-~03206~^~322~^810.^0^^~4~^~BNA~^^^^^^^^^^~03/01/2003~
-~03206~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~
-~03206~^~334~^2.^0^^~4~^~BNA~^^^^^^^^^^~03/01/2003~
-~03206~^~337~^0.^0^^~4~^~FLA~^^^^^^^^^^~03/01/2003~
-~03206~^~338~^175.^0^^~4~^~FLA~^^^^^^^^^^~03/01/2003~
-~03206~^~417~^110.^0^^~4~^~FLA~^^^^^^^^^^~03/01/2003~
-~03206~^~431~^82.^0^^~4~^~FLA~^^^^^^^^^^~03/01/2003~
-~03206~^~432~^28.^0^^~4~^~FLA~^^^^^^^^^^~03/01/2003~
-~03206~^~435~^167.^0^^~4~^~NC~^^^^^^^^^^~03/01/2007~
-~03206~^~601~^4.^0^^~4~^~FLM~^^^^^^^^^^~11/01/1996~
-~03209~^~208~^477.^0^^~4~^~NC~^^^^^^^^^^~07/01/2009~
-~03209~^~262~^0.^0^^~4~^~FLA~^^^^^^^^^^~07/01/2009~
-~03209~^~263~^0.^0^^~4~^~FLA~^^^^^^^^^^~07/01/2009~
-~03209~^~268~^1997.^0^^~4~^~NC~^^^^^^^^^^~07/01/2009~
-~03209~^~301~^41.^0^^~12~^~MA~^^^^^^^^^^~01/01/1999~
-~03209~^~304~^37.^0^^~12~^~MA~^^^^^^^^^^~01/01/1999~
-~03209~^~305~^198.^0^^~12~^~MA~^^^^^^^^^^~01/01/1999~
-~03209~^~306~^245.^0^^~12~^~MA~^^^^^^^^^^~01/01/1999~
-~03209~^~307~^633.^0^^~8~^~LC~^^^^^^^^^^~07/01/2017~
-~03209~^~318~^3571.^0^^~4~^~NC~^^^^^^^^^^~07/01/2009~
-~03209~^~319~^0.^0^^~4~^~FLA~^^^^^^^^^^~07/01/2009~
-~03209~^~320~^179.^0^^~4~^~NC~^^^^^^^^^^~07/01/2009~
-~03209~^~321~^1760.^0^^~4~^~FLA~^^^^^^^^^^~07/01/2009~
-~03209~^~322~^739.^0^^~4~^~FLA~^^^^^^^^^^~07/01/2009~
-~03209~^~324~^0.^0^^~4~^~FLA~^^^^^^^^^^~07/01/2009~
-~03209~^~334~^27.^0^^~4~^~FLA~^^^^^^^^^^~07/01/2009~
-~03209~^~337~^0.^0^^~4~^~FLA~^^^^^^^^^^~07/01/2009~
-~03209~^~338~^65.^0^^~4~^~FLA~^^^^^^^^^^~07/01/2009~
-~03209~^~417~^86.^0^^~4~^~FLA~^^^^^^^^^^~07/01/2009~
-~03209~^~431~^70.^0^^~4~^~FLA~^^^^^^^^^^~07/01/2009~
-~03209~^~432~^16.^0^^~4~^~FLA~^^^^^^^^^^~07/01/2009~
-~03209~^~435~^135.^0^^~4~^~NC~^^^^^^^^^^~07/01/2009~
-~03209~^~601~^0.^0^^~4~^~FLA~^^^^^^^^^^~07/01/2009~
-~03211~^~208~^374.^0^^~4~^~NC~^^^^^^^^^^~12/01/1978~
-~03211~^~268~^1565.^0^^~4~^^^^^^^^^^^
-~03211~^~301~^751.^3^^~1~^^^^^^^^^^^~12/01/1978~
-~03211~^~304~^159.^1^^~1~^^^^^^^^^^^~12/01/1978~
-~03211~^~305~^539.^1^^~1~^^^^^^^^^^^~12/01/1978~
-~03211~^~306~^1330.^1^^~1~^^^^^^^^^^^~12/01/1978~
-~03211~^~307~^104.^2^^~1~^^^^^^^^^^^~12/01/1978~
-~03211~^~318~^54.^4^17.^~1~^^^^^^^^^^^~12/01/1978~
-~03211~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2002~
-~03211~^~320~^3.^0^^~4~^~NC~^^^^^^^^^^~06/01/2002~
-~03211~^~417~^190.^0^^~4~^^^^^^^^^^^~12/01/1978~
-~03211~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~
-~03211~^~432~^190.^0^^~4~^^^^^^^^^^^~12/01/1978~
-~03211~^~435~^190.^0^^~4~^~NC~^^^^^^^^^^~01/01/2001~
-~03211~^~601~^0.^0^^~7~^^^^^^^^^^^~04/01/1985~
-~03212~^~208~^404.^0^^~4~^~NC~^^^^^^^^^^~12/01/1978~
-~03212~^~262~^0.^0^^~4~^~FLA~^^^^^^^^^^~03/01/2003~
-~03212~^~263~^0.^0^^~4~^~FLA~^^^^^^^^^^~03/01/2003~
-~03212~^~268~^1690.^0^^~4~^^^^^^^^^^^~04/01/2005~
-~03212~^~301~^691.^1^^~1~^^^^^^^^^^^~12/01/1978~
-~03212~^~304~^141.^1^^~1~^^^^^^^^^^^~12/01/1978~
-~03212~^~305~^410.^1^^~1~^^^^^^^^^^^~12/01/1978~
-~03212~^~306~^769.^1^^~1~^^^^^^^^^^^~12/01/1978~
-~03212~^~307~^0.^0^^~8~^~LC~^^^^^^^^^^~07/01/2010~
-~03212~^~318~^29.^0^^~4~^~NC~^^^^^^^^^^~07/01/2015~
-~03212~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2002~
-~03212~^~320~^1.^0^^~4~^~NC~^^^^^^^^^^~03/01/2003~
-~03212~^~321~^12.^0^^~4~^~BNA~^^^^^^^^^^~03/01/2003~
-~03212~^~322~^11.^0^^~4~^~BNA~^^^^^^^^^^~03/01/2003~
-~03212~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~
-~03212~^~334~^0.^0^^~4~^~BNA~^^^^^^^^^^~03/01/2003~
-~03212~^~337~^0.^0^^~4~^~FLA~^^^^^^^^^^~03/01/2003~
-~03212~^~338~^39.^0^^~4~^~FLA~^^^^^^^^^^~03/01/2003~
-~03212~^~417~^12.^0^^~4~^^^^^^^^^^^~12/01/1978~
-~03212~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~
-~03212~^~432~^12.^0^^~4~^^^^^^^^^^^~03/01/2003~
-~03212~^~435~^12.^0^^~4~^~NC~^^^^^^^^^^~03/01/2007~
-~03212~^~601~^0.^0^^~4~^^^^^^^^^^^~04/01/1985~
-~03213~^~208~^433.^0^^~4~^~NC~^^^^^^^^^^~07/01/2009~
-~03213~^~262~^0.^0^^~4~^~FLA~^^^^^^^^^^~07/01/2009~
-~03213~^~263~^0.^0^^~4~^~FLA~^^^^^^^^^^~03/01/2003~
-~03213~^~268~^1812.^0^^~4~^~NC~^^^^^^^^^^~07/01/2009~
-~03213~^~301~^101.^11^4.^~1~^^^^^^^^^^^~07/01/2009~
-~03213~^~304~^49.^2^^~1~^^^^^^^^^^^~07/01/2009~
-~03213~^~305~^179.^2^^~1~^^^^^^^^^^^~07/01/2009~
-~03213~^~306~^501.^2^^~1~^^^^^^^^^^^~07/01/2009~
-~03213~^~307~^300.^0^^~8~^~LC~^^^^^^^^^^~06/01/2013~
-~03213~^~318~^23.^0^^~4~^~NC~^^^^^^^^^^~07/01/2009~
-~03213~^~319~^6.^0^^~4~^~BNA~^^^^^^^^^^~03/01/2003~
-~03213~^~320~^6.^0^^~4~^~NC~^^^^^^^^^^~07/01/2009~
-~03213~^~321~^1.^0^^~4~^~BNA~^^^^^^^^^^~03/01/2003~
-~03213~^~322~^0.^0^^~4~^~BNA~^^^^^^^^^^~03/01/2003~
-~03213~^~324~^0.^0^^~4~^~FLC~^^^^^^^^^^~08/01/2015~
-~03213~^~334~^0.^0^^~4~^~BNA~^^^^^^^^^^~03/01/2003~
-~03213~^~337~^0.^0^^~4~^~FLA~^^^^^^^^^^~07/01/2009~
-~03213~^~338~^9.^0^^~4~^~FLA~^^^^^^^^^^~07/01/2009~
-~03213~^~417~^93.^0^^~4~^~FLA~^^^^^^^^^^~07/01/2009~
-~03213~^~431~^74.^0^^~4~^~FLA~^^^^^^^^^^~07/01/2009~
-~03213~^~432~^19.^0^^~4~^~FLA~^^^^^^^^^^~07/01/2009~
-~03213~^~435~^145.^0^^~4~^~NC~^^^^^^^^^^~07/01/2009~
-~03213~^~601~^12.^0^^~4~^~FLA~^^^^^^^^^^~06/01/2009~
-~03214~^~208~^424.^0^^~4~^~NC~^^^^^^^^^^~07/01/2013~
-~03214~^~268~^1772.^0^^~4~^~NC~^^^^^^^^^^~07/01/2013~
-~03214~^~301~^32.^1^^~1~^^^^^^^^^^^~12/01/1978~
-~03214~^~304~^22.^1^^~1~^^^^^^^^^^^~12/01/1978~
-~03214~^~305~^116.^1^^~1~^^^^^^^^^^^~12/01/1978~
-~03214~^~306~^156.^1^^~1~^^^^^^^^^^^~12/01/1978~
-~03214~^~307~^319.^0^^~8~^~LC~^^^^^^^^^^~07/01/2010~
-~03214~^~318~^0.^0^^~4~^^^^^^^^^^^~07/01/2009~
-~03214~^~320~^0.^0^^~4~^~FLM~^^^^^^^^^^~07/01/2009~
-~03214~^~324~^0.^0^^~4~^~FLC~^^^^^^^^^^~07/01/2009~
-~03214~^~337~^0.^0^^~4~^~FLC~^^^^^^^^^^~07/01/2009~
-~03214~^~338~^0.^0^^~4~^~FLC~^^^^^^^^^^~07/01/2009~
-~03214~^~417~^35.^0^^~4~^~FLM~^^^^^^^^^^~12/01/1997~
-~03214~^~431~^25.^0^^~4~^~NC~^^^^^^^^^^~05/01/2000~
-~03214~^~432~^10.^0^^~4~^^^^^^^^^^^~07/01/2009~
-~03214~^~435~^53.^0^^~4~^~NC~^^^^^^^^^^~07/01/2009~
-~03214~^~601~^0.^0^^~4~^~FLC~^^^^^^^^^^~07/01/2009~
-~03215~^~208~^397.^0^^~4~^~NC~^^^^^^^^^^~07/01/2009~
-~03215~^~262~^0.^0^^~4~^~FLA~^^^^^^^^^^~03/01/2003~
-~03215~^~263~^0.^0^^~4~^~FLA~^^^^^^^^^^~03/01/2003~
-~03215~^~268~^1661.^0^^~4~^~NC~^^^^^^^^^^~07/01/2009~
-~03215~^~301~^25.^2^^~1~^^^^^^^^^^^~12/01/1978~
-~03215~^~304~^28.^2^^~1~^^^^^^^^^^^~12/01/1978~
-~03215~^~305~^110.^2^^~1~^^^^^^^^^^^~12/01/1978~
-~03215~^~306~^137.^2^^~1~^^^^^^^^^^^~12/01/1978~
-~03215~^~307~^269.^3^^~1~^^^^^^^^^^^~12/01/1978~
-~03215~^~318~^8.^0^^~4~^~NC~^^^^^^^^^^~07/01/2009~
-~03215~^~319~^0.^0^^~4~^~BNA~^^^^^^^^^^~07/01/2009~
-~03215~^~320~^0.^0^^~4~^~NC~^^^^^^^^^^~07/01/2009~
-~03215~^~321~^4.^0^^~4~^~BNA~^^^^^^^^^^~03/01/2003~
-~03215~^~322~^1.^0^^~4~^~BNA~^^^^^^^^^^~03/01/2003~
-~03215~^~324~^0.^0^^~4~^~FLA~^^^^^^^^^^~07/01/2009~
-~03215~^~334~^1.^0^^~4~^~BNA~^^^^^^^^^^~03/01/2003~
-~03215~^~337~^0.^0^^~4~^~NR~^^^^^^^^^^~07/01/2009~
-~03215~^~338~^72.^0^^~4~^~FLA~^^^^^^^^^^~07/01/2009~
-~03215~^~417~^85.^0^^~4~^~FLM~^^^^^^^^^^~12/01/1997~
-~03215~^~431~^65.^0^^~4~^~NC~^^^^^^^^^^~05/01/2000~
-~03215~^~432~^20.^0^^~4~^^^^^^^^^^^
-~03215~^~435~^131.^0^^~4~^~NC~^^^^^^^^^^~07/01/2009~
-~03215~^~601~^0.^0^^~7~^^^^^^^^^^^~04/01/1985~
-~03216~^~208~^407.^0^^~4~^~NC~^^^^^^^^^^~01/01/2017~
-~03216~^~262~^0.^0^^~4~^~NR~^^^^^^^^^^~07/01/2009~
-~03216~^~263~^0.^0^^~4~^~NR~^^^^^^^^^^~07/01/2009~
-~03216~^~268~^1703.^0^^~4~^~NC~^^^^^^^^^^~01/01/2017~
-~03216~^~301~^1278.^4^11.^~1~^~A~^^^1^1250.^1300.^3^1242.^1312.^~2, 3~^~01/01/2017~
-~03216~^~304~^63.^4^0.^~1~^~A~^^^1^63.^64.^3^62.^63.^~2, 3~^~01/01/2017~
-~03216~^~305~^186.^4^1.^~1~^~A~^^^1^183.^189.^3^180.^190.^~2, 3~^~01/01/2017~
-~03216~^~306~^318.^4^5.^~1~^~A~^^^1^308.^335.^3^299.^336.^~2, 3~^~01/01/2017~
-~03216~^~307~^259.^4^2.^~1~^~A~^^^1^256.^265.^3^252.^265.^~2, 3~^~01/01/2017~
-~03216~^~318~^116.^0^^~4~^~NC~^^^^^^^^^^~07/01/2009~
-~03216~^~319~^27.^0^^~4~^~BNA~^^^^^^^^^^~04/01/2003~
-~03216~^~320~^28.^0^^~4~^~NC~^^^^^^^^^^~07/01/2009~
-~03216~^~321~^13.^0^^~4~^~BNA~^^^^^^^^^^~04/01/2003~
-~03216~^~322~^6.^0^^~4~^~BNA~^^^^^^^^^^~04/01/2003~
-~03216~^~324~^21.^0^^~4~^~FLA~^^^^^^^^^^~07/01/2009~
-~03216~^~334~^0.^0^^~4~^~BNA~^^^^^^^^^^~04/01/2003~
-~03216~^~337~^0.^0^^~4~^~BFSN~^^^^^^^^^^~04/01/2003~
-~03216~^~338~^169.^0^^~4~^~BFSN~^^^^^^^^^^~04/01/2003~
-~03216~^~417~^49.^3^2.^~1~^~A~^^^1^45.^53.^2^39.^59.^~2, 3~^~01/01/2017~
-~03216~^~431~^29.^0^^~4~^~NC~^^^^^^^^^^~05/01/2000~
-~03216~^~432~^20.^0^^~4~^^^^^^^^^^^
-~03216~^~435~^69.^0^^~4~^~NC~^^^^^^^^^^~07/01/2009~
-~03216~^~601~^7.^0^^~4~^~FLA~^^^^^^^^^^~07/01/2009~
-~03217~^~208~^426.^0^^~4~^~NC~^^^^^^^^^^~07/01/2009~
-~03217~^~262~^0.^0^^~4~^~FLA~^^^^^^^^^^~03/01/2003~
-~03217~^~263~^0.^0^^~4~^~FLA~^^^^^^^^^^~03/01/2003~
-~03217~^~268~^1783.^0^^~4~^~NC~^^^^^^^^^^~07/01/2009~
-~03217~^~301~^20.^4^^~1~^^^^^^^^^^^~12/01/1978~
-~03217~^~304~^14.^1^^~1~^^^^^^^^^^^~12/01/1978~
-~03217~^~305~^55.^1^^~1~^^^^^^^^^^^~12/01/1978~
-~03217~^~306~^305.^1^^~1~^^^^^^^^^^^~12/01/1978~
-~03217~^~307~^227.^0^^~8~^~LC~^^^^^^^^^^~07/01/2010~
-~03217~^~318~^58.^0^^~4~^~NC~^^^^^^^^^^~07/01/2009~
-~03217~^~319~^15.^0^^~4~^~BNA~^^^^^^^^^^~03/01/2003~
-~03217~^~320~^16.^0^^~4~^~NC~^^^^^^^^^^~07/01/2009~
-~03217~^~321~^4.^0^^~4~^~BNA~^^^^^^^^^^~03/01/2003~
-~03217~^~322~^0.^0^^~4~^~BNA~^^^^^^^^^^~03/01/2003~
-~03217~^~324~^0.^0^^~4~^~FLA~^^^^^^^^^^~07/01/2009~
-~03217~^~334~^1.^0^^~4~^~BNA~^^^^^^^^^^~03/01/2003~
-~03217~^~337~^0.^0^^~4~^~FLA~^^^^^^^^^^~07/01/2009~
-~03217~^~338~^16.^0^^~4~^~FLA~^^^^^^^^^^~07/01/2009~
-~03217~^~417~^87.^0^^~4~^~FLM~^^^^^^^^^^~12/01/1997~
-~03217~^~431~^67.^0^^~4~^~NC~^^^^^^^^^^~05/01/2000~
-~03217~^~432~^20.^0^^~4~^^^^^^^^^^^
-~03217~^~435~^134.^0^^~4~^~NC~^^^^^^^^^^~07/01/2009~
-~03217~^~601~^8.^0^^~4~^~FLA~^^^^^^^^^^~07/01/2009~
-~03220~^~208~^75.^0^^~4~^~NC~^^^^^^^^^^~04/01/2003~
-~03220~^~262~^0.^0^^~4~^~FLA~^^^^^^^^^^~03/01/2003~
-~03220~^~263~^0.^0^^~4~^~FLA~^^^^^^^^^^~03/01/2003~
-~03220~^~268~^314.^0^^~4~^~NC~^^^^^^^^^^~03/01/2003~
-~03220~^~301~^5.^1^^~1~^^^^^^^^^^^~12/01/1978~
-~03220~^~304~^2.^2^^~1~^^^^^^^^^^^~12/01/1978~
-~03220~^~305~^3.^2^^~1~^^^^^^^^^^^~12/01/1978~
-~03220~^~306~^33.^2^^~1~^^^^^^^^^^^~12/01/1978~
-~03220~^~307~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2010~
-~03220~^~318~^49.^0^^~4~^~NC~^^^^^^^^^^~04/01/2003~
-~03220~^~319~^0.^0^^~4~^~BNA~^^^^^^^^^^~03/01/2003~
-~03220~^~320~^2.^0^^~4~^~NC~^^^^^^^^^^~04/01/2003~
-~03220~^~321~^21.^0^^~4~^~BNA~^^^^^^^^^^~03/01/2003~
-~03220~^~322~^0.^0^^~4~^~BNA~^^^^^^^^^^~03/01/2003~
-~03220~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~
-~03220~^~334~^16.^0^^~4~^~BNA~^^^^^^^^^^~03/01/2003~
-~03220~^~337~^0.^0^^~4~^~FLA~^^^^^^^^^^~03/01/2003~
-~03220~^~338~^15.^0^^~4~^~FLA~^^^^^^^^^^~03/01/2003~
-~03220~^~417~^1.^6^0.^~1~^^^^^^^^^^^~12/01/1978~
-~03220~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~
-~03220~^~432~^1.^0^^~4~^~NR~^^^^^^^^^^~03/01/2003~
-~03220~^~435~^1.^0^^~4~^~NC~^^^^^^^^^^~03/01/2007~
-~03220~^~601~^0.^0^^~7~^^^^^^^^^^^~04/01/1985~
-~03221~^~208~^79.^0^^~4~^~NC~^^^^^^^^^^~03/01/2005~
-~03221~^~262~^0.^0^^~4~^~FLA~^^^^^^^^^^~03/01/2003~
-~03221~^~263~^0.^0^^~4~^~FLA~^^^^^^^^^^~03/01/2003~
-~03221~^~268~^330.^0^^~4~^~NC~^^^^^^^^^^~05/01/2014~
-~03221~^~301~^3.^0^^~12~^~MA~^^^^^^^^^^~04/01/1997~
-~03221~^~304~^4.^0^^~12~^~MA~^^^^^^^^^^~04/01/1997~
-~03221~^~305~^7.^0^^~12~^~MA~^^^^^^^^^^~04/01/1997~
-~03221~^~306~^67.^0^^~12~^~MA~^^^^^^^^^^~04/01/1997~
-~03221~^~307~^3.^0^^~12~^~MA~^^^^^^^^^^~04/01/1997~
-~03221~^~318~^18.^0^^~12~^~MA~^^^^^^^^^^~03/01/2003~
-~03221~^~319~^0.^0^^~4~^~BNA~^^^^^^^^^^~03/01/2003~
-~03221~^~320~^1.^0^^~4~^~NC~^^^^^^^^^^~03/01/2005~
-~03221~^~321~^8.^0^^~4~^~BNA~^^^^^^^^^^~03/01/2003~
-~03221~^~322~^0.^0^^~4~^~BNA~^^^^^^^^^^~03/01/2003~
-~03221~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~
-~03221~^~334~^6.^0^^~4~^~BNA~^^^^^^^^^^~03/01/2003~
-~03221~^~337~^0.^0^^~4~^~FLA~^^^^^^^^^^~03/01/2003~
-~03221~^~338~^11.^0^^~4~^~FLA~^^^^^^^^^^~03/01/2003~
-~03221~^~417~^0.^0^^~4~^~NR~^^^^^^^^^^~03/01/2003~
-~03221~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~
-~03221~^~432~^0.^0^^~4~^~T~^^^^^^^^^^~02/01/2003~
-~03221~^~435~^0.^0^^~4~^~NC~^^^^^^^^^^~03/01/2007~
-~03221~^~601~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/1997~
-~03222~^~208~^78.^0^^~9~^~MC~^^^^^^^^^^~03/01/2003~
-~03222~^~262~^0.^0^^~4~^~FLA~^^^^^^^^^^~03/01/2003~
-~03222~^~263~^0.^0^^~4~^~FLA~^^^^^^^^^^~03/01/2003~
-~03222~^~268~^326.^0^^~9~^^^^^^^^^^^~03/01/2005~
-~03222~^~301~^5.^0^^~12~^~MA~^^^^^^^^^^~01/01/1995~
-~03222~^~304~^2.^0^^~12~^~MA~^^^^^^^^^^~06/01/1996~
-~03222~^~305~^6.^0^^~12~^~MA~^^^^^^^^^^~06/01/1996~
-~03222~^~306~^45.^0^^~12~^~MA~^^^^^^^^^^~06/01/1996~
-~03222~^~307~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2010~
-~03222~^~318~^31.^0^^~12~^~MA~^^^^^^^^^^~03/01/2003~
-~03222~^~319~^0.^0^^~4~^~BNA~^^^^^^^^^^~03/01/2003~
-~03222~^~320~^2.^0^^~4~^~NC~^^^^^^^^^^~03/01/2003~
-~03222~^~321~^19.^0^^~4~^~BNA~^^^^^^^^^^~03/01/2003~
-~03222~^~322~^0.^0^^~4~^~BNA~^^^^^^^^^^~03/01/2003~
-~03222~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~
-~03222~^~334~^0.^0^^~4~^~BNA~^^^^^^^^^^~03/01/2003~
-~03222~^~337~^0.^0^^~4~^~FLA~^^^^^^^^^^~03/01/2003~
-~03222~^~338~^20.^0^^~4~^~FLA~^^^^^^^^^^~03/01/2003~
-~03222~^~417~^2.^0^^~4~^~FLM~^^^^^^^^^^~01/01/1995~
-~03222~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~
-~03222~^~432~^2.^0^^~4~^~T~^^^^^^^^^^~02/01/2003~
-~03222~^~435~^2.^0^^~4~^~NC~^^^^^^^^^^~07/01/2008~
-~03222~^~601~^0.^0^^~12~^~MA~^^^^^^^^^^~01/01/1995~
-~03224~^~208~^68.^0^^~4~^~NC~^^^^^^^^^^~12/01/1978~
-~03224~^~262~^0.^0^^~4~^~FLA~^^^^^^^^^^~03/01/2003~
-~03224~^~263~^0.^0^^~4~^~FLA~^^^^^^^^^^~03/01/2003~
-~03224~^~268~^285.^0^^~4~^^^^^^^^^^^~03/01/2005~
-~03224~^~301~^5.^5^1.^~1~^^^^^^^^^^^~12/01/1978~
-~03224~^~304~^2.^1^^~1~^^^^^^^^^^^~12/01/1978~
-~03224~^~305~^7.^1^^~1~^^^^^^^^^^^~12/01/1978~
-~03224~^~306~^34.^1^^~1~^^^^^^^^^^^~12/01/1978~
-~03224~^~307~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2010~
-~03224~^~318~^261.^0^^~4~^~NC~^^^^^^^^^^~03/01/2003~
-~03224~^~319~^6.^0^^~4~^~BNA~^^^^^^^^^^~03/01/2003~
-~03224~^~320~^18.^0^^~4~^~NC~^^^^^^^^^^~03/01/2003~
-~03224~^~321~^145.^0^^~4~^~BNA~^^^^^^^^^^~03/01/2003~
-~03224~^~322~^0.^0^^~4~^~BNA~^^^^^^^^^^~03/01/2003~
-~03224~^~324~^1.^0^^~4~^~FLA~^^^^^^^^^^~03/01/2009~
-~03224~^~334~^0.^0^^~4~^~BNA~^^^^^^^^^^~03/01/2003~
-~03224~^~337~^0.^0^^~4~^~FLA~^^^^^^^^^^~03/01/2003~
-~03224~^~338~^9.^0^^~4~^~FLA~^^^^^^^^^^~03/01/2003~
-~03224~^~417~^0.^3^^~1~^^^^^^^^^^^~12/01/1978~
-~03224~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~
-~03224~^~432~^0.^3^^~1~^^^^^^^^^^^~03/01/2003~
-~03224~^~435~^0.^0^^~4~^~NC~^^^^^^^^^^~03/01/2009~
-~03224~^~601~^10.^0^^~4~^^^^^^^^^^^~04/01/1985~
-~03225~^~208~^69.^0^^~4~^~NC~^^^^^^^^^^~12/01/1978~
-~03225~^~262~^0.^0^^~4~^~FLA~^^^^^^^^^^~03/01/2003~
-~03225~^~263~^0.^0^^~4~^~FLA~^^^^^^^^^^~03/01/2003~
-~03225~^~268~^289.^0^^~4~^^^^^^^^^^^~03/01/2005~
-~03225~^~301~^5.^6^^~1~^^^^^^^^^^^~12/01/1978~
-~03225~^~304~^2.^1^^~1~^^^^^^^^^^^~12/01/1978~
-~03225~^~305~^7.^1^^~1~^^^^^^^^^^^~12/01/1978~
-~03225~^~306~^33.^1^^~1~^^^^^^^^^^^~12/01/1978~
-~03225~^~307~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2010~
-~03225~^~318~^261.^0^^~4~^~NC~^^^^^^^^^^~03/01/2003~
-~03225~^~319~^6.^0^^~4~^~BNA~^^^^^^^^^^~03/01/2003~
-~03225~^~320~^18.^0^^~4~^~NC~^^^^^^^^^^~03/01/2003~
-~03225~^~321~^145.^0^^~4~^~BNA~^^^^^^^^^^~03/01/2003~
-~03225~^~322~^0.^0^^~4~^~BNA~^^^^^^^^^^~03/01/2003~
-~03225~^~324~^1.^0^^~4~^~FLA~^^^^^^^^^^~03/01/2009~
-~03225~^~334~^0.^0^^~4~^~BNA~^^^^^^^^^^~03/01/2003~
-~03225~^~337~^0.^0^^~4~^~FLA~^^^^^^^^^^~03/01/2003~
-~03225~^~338~^9.^0^^~4~^~FLA~^^^^^^^^^^~03/01/2003~
-~03225~^~417~^0.^0^^~1~^^^^^^^^^^^~12/01/1978~
-~03225~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~
-~03225~^~432~^0.^0^^~1~^^^^^^^^^^^~03/01/2003~
-~03225~^~435~^0.^0^^~4~^~NC~^^^^^^^^^^~03/01/2009~
-~03225~^~601~^10.^0^^~4~^^^^^^^^^^^~04/01/1985~
-~03226~^~208~^80.^0^^~4~^~NC~^^^^^^^^^^~12/01/1978~
-~03226~^~268~^335.^0^^~4~^^^^^^^^^^^~04/01/2005~
-~03226~^~301~^32.^1^^~1~^^^^^^^^^^^~12/01/1978~
-~03226~^~304~^5.^1^^~1~^^^^^^^^^^^~12/01/1978~
-~03226~^~305~^28.^1^^~1~^^^^^^^^^^^~12/01/1978~
-~03226~^~306~^86.^1^^~1~^^^^^^^^^^^~12/01/1978~
-~03226~^~307~^20.^0^^~4~^^^^^^^^^^^~12/01/1978~
-~03226~^~318~^115.^1^^~1~^^^^^^^^^^^~12/01/1978~
-~03226~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2002~
-~03226~^~320~^6.^0^^~4~^~NC~^^^^^^^^^^~06/01/2002~
-~03226~^~417~^8.^3^0.^~1~^^^^^^^^^^^~12/01/1978~
-~03226~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~
-~03226~^~432~^8.^3^0.^~1~^^^^^^^^^^^~12/01/1978~
-~03226~^~435~^8.^0^^~4~^~NC~^^^^^^^^^^~04/01/2005~
-~03226~^~601~^3.^0^^~4~^^^^^^^^^^^~04/01/1985~
-~03227~^~208~^65.^0^^~4~^~NC~^^^^^^^^^^~12/01/1978~
-~03227~^~262~^0.^0^^~4~^~FLA~^^^^^^^^^^~01/01/2003~
-~03227~^~263~^0.^0^^~4~^~FLA~^^^^^^^^^^~01/01/2003~
-~03227~^~268~^272.^0^^~4~^^^^^^^^^^^~03/01/2005~
-~03227~^~301~^4.^1^^~1~^^^^^^^^^^^~03/01/2003~
-~03227~^~304~^2.^0^^~4~^^^^^^^^^^^~12/01/1978~
-~03227~^~305~^5.^1^^~1~^^^^^^^^^^^~12/01/1978~
-~03227~^~306~^54.^1^^~1~^^^^^^^^^^^~12/01/1978~
-~03227~^~307~^7.^4^^~1~^^^^^^^^^^^~12/01/1978~
-~03227~^~318~^138.^0^^~4~^~NC~^^^^^^^^^^~05/01/2003~
-~03227~^~319~^0.^0^^~4~^~FLA~^^^^^^^^^^~01/01/2003~
-~03227~^~320~^7.^0^^~4~^~NC~^^^^^^^^^^~03/01/2003~
-~03227~^~321~^69.^0^^~4~^~BNA~^^^^^^^^^^~03/01/2003~
-~03227~^~322~^0.^0^^~4~^~BNA~^^^^^^^^^^~03/01/2003~
-~03227~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~
-~03227~^~334~^28.^0^^~4~^~BNA~^^^^^^^^^^~03/01/2003~
-~03227~^~337~^0.^0^^~4~^~FLA~^^^^^^^^^^~01/01/2003~
-~03227~^~338~^39.^0^^~4~^~FLA~^^^^^^^^^^~01/01/2003~
-~03227~^~417~^2.^0^^~4~^~FLA~^^^^^^^^^^~05/01/2003~
-~03227~^~431~^0.^0^^~4~^~FLA~^^^^^^^^^^~01/01/2003~
-~03227~^~432~^2.^0^^~4~^~FLA~^^^^^^^^^^~01/01/2003~
-~03227~^~435~^2.^0^^~4~^~NC~^^^^^^^^^^~03/01/2007~
-~03227~^~601~^0.^0^^~4~^^^^^^^^^^^~04/01/1985~
-~03228~^~208~^67.^0^^~4~^~NC~^^^^^^^^^^~12/01/1978~
-~03228~^~262~^0.^0^^~4~^~FLA~^^^^^^^^^^~01/01/2003~
-~03228~^~263~^0.^0^^~4~^~FLA~^^^^^^^^^^~01/01/2003~
-~03228~^~268~^280.^0^^~4~^^^^^^^^^^^~03/01/2005~
-~03228~^~301~^4.^1^^~1~^^^^^^^^^^^~12/01/1978~
-~03228~^~304~^2.^0^^~4~^^^^^^^^^^^~12/01/1978~
-~03228~^~305~^6.^1^^~1~^^^^^^^^^^^~12/01/1978~
-~03228~^~306~^56.^1^^~1~^^^^^^^^^^^~12/01/1978~
-~03228~^~307~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2010~
-~03228~^~318~^138.^0^^~4~^~FLA~^^^^^^^^^^~08/01/2004~
-~03228~^~319~^0.^0^^~4~^~FLA~^^^^^^^^^^~01/01/2003~
-~03228~^~320~^7.^0^^~4~^~FLA~^^^^^^^^^^~08/01/2004~
-~03228~^~321~^68.^0^^~4~^~FLA~^^^^^^^^^^~01/01/2003~
-~03228~^~322~^0.^0^^~4~^~FLA~^^^^^^^^^^~01/01/2003~
-~03228~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~
-~03228~^~334~^28.^0^^~4~^~FLA~^^^^^^^^^^~01/01/2003~
-~03228~^~337~^0.^0^^~4~^~FLA~^^^^^^^^^^~01/01/2003~
-~03228~^~338~^39.^0^^~4~^~FLA~^^^^^^^^^^~01/01/2003~
-~03228~^~417~^3.^0^^~4~^~FLA~^^^^^^^^^^~05/01/2003~
-~03228~^~431~^1.^0^^~4~^~FLA~^^^^^^^^^^~01/01/2003~
-~03228~^~432~^2.^0^^~4~^~FLA~^^^^^^^^^^~01/01/2003~
-~03228~^~435~^4.^0^^~4~^~NC~^^^^^^^^^^~05/01/2007~
-~03228~^~601~^0.^0^^~4~^^^^^^^^^^^~04/01/1985~
-~03229~^~208~^60.^0^^~4~^~NC~^^^^^^^^^^~12/01/1978~
-~03229~^~268~^251.^0^^~4~^^^^^^^^^^^
-~03229~^~301~^10.^13^1.^~1~^^^^^^^^^^^~12/01/1978~
-~03229~^~304~^2.^0^^~4~^^^^^^^^^^^~12/01/1978~
-~03229~^~305~^5.^0^^~4~^^^^^^^^^^^~12/01/1978~
-~03229~^~306~^83.^13^4.^~1~^^^^^^^^^^^~12/01/1978~
-~03229~^~307~^9.^13^1.^~1~^^^^^^^^^^^~12/01/1978~
-~03229~^~318~^184.^13^39.^~1~^^^^^^^^^^^~12/01/1978~
-~03229~^~320~^56.^0^^~4~^~NR~^^^^^^^^^^~05/01/2013~
-~03229~^~417~^2.^3^0.^~1~^^^^^^^^^^^~12/01/1978~
-~03229~^~432~^2.^3^0.^~1~^^^^^^^^^^^~08/01/2012~
-~03230~^~208~^60.^0^^~4~^~NC~^^^^^^^^^^~12/01/1978~
-~03230~^~268~^251.^0^^~4~^^^^^^^^^^^
-~03230~^~301~^11.^13^0.^~1~^^^^^^^^^^^~12/01/1978~
-~03230~^~304~^2.^0^^~4~^^^^^^^^^^^~12/01/1978~
-~03230~^~305~^5.^0^^~4~^^^^^^^^^^^~12/01/1978~
-~03230~^~306~^93.^13^2.^~1~^^^^^^^^^^^~12/01/1978~
-~03230~^~307~^9.^13^0.^~1~^^^^^^^^^^^~12/01/1978~
-~03230~^~318~^196.^13^40.^~1~^^^^^^^^^^^~12/01/1978~
-~03230~^~320~^26.^0^^~4~^~NR~^^^^^^^^^^~09/01/2012~
-~03230~^~417~^2.^0^^~1~^^^^^^^^^^^~12/01/1978~
-~03230~^~432~^2.^0^^~1~^^^^^^^^^^^~08/01/2012~
-~03233~^~208~^81.^0^^~4~^~NC~^^^^^^^^^^~12/01/1978~
-~03233~^~262~^0.^0^^~4~^~FLA~^^^^^^^^^^~03/01/2003~
-~03233~^~263~^0.^0^^~4~^~FLA~^^^^^^^^^^~03/01/2003~
-~03233~^~268~^339.^0^^~4~^^^^^^^^^^^~03/01/2005~
-~03233~^~301~^31.^16^4.^~1~^^^^^^^^^^^~12/01/1978~
-~03233~^~304~^9.^1^^~1~^^^^^^^^^^^~12/01/1978~
-~03233~^~305~^31.^1^^~1~^^^^^^^^^^^~12/01/1978~
-~03233~^~306~^81.^14^^~1~^^^^^^^^^^^~12/01/1978~
-~03233~^~307~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2010~
-~03233~^~318~^37.^0^^~4~^~NC~^^^^^^^^^^~07/01/2010~
-~03233~^~319~^11.^0^^~4~^~BNA~^^^^^^^^^^~03/01/2003~
-~03233~^~320~^11.^0^^~4~^~NC~^^^^^^^^^^~03/01/2003~
-~03233~^~321~^0.^0^^~4~^~BNA~^^^^^^^^^^~03/01/2003~
-~03233~^~322~^0.^0^^~4~^~BNA~^^^^^^^^^^~03/01/2003~
-~03233~^~324~^0.^0^^~4~^~NR~^^^^^^^^^^~08/01/2015~
-~03233~^~334~^0.^0^^~4~^~BNA~^^^^^^^^^^~03/01/2003~
-~03233~^~337~^0.^0^^~4~^~FLA~^^^^^^^^^^~03/01/2003~
-~03233~^~338~^0.^0^^~4~^~FLA~^^^^^^^^^^~03/01/2003~
-~03233~^~417~^5.^3^0.^~1~^^^^^^^^^^^~12/01/1978~
-~03233~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~
-~03233~^~432~^5.^3^0.^~1~^^^^^^^^^^^~03/01/2003~
-~03233~^~435~^5.^0^^~4~^~NC~^^^^^^^^^^~03/01/2009~
-~03233~^~601~^0.^0^^~7~^^^^^^^^^^^~04/01/1985~
-~03235~^~208~^59.^0^^~4~^~NC~^^^^^^^^^^~12/01/1978~
-~03235~^~262~^0.^0^^~4~^~FLA~^^^^^^^^^^~03/01/2003~
-~03235~^~263~^0.^0^^~4~^~FLA~^^^^^^^^^^~03/01/2003~
-~03235~^~268~^247.^0^^~4~^^^^^^^^^^^~03/01/2005~
-~03235~^~301~^9.^7^2.^~1~^^^^^^^^^^^~12/01/1978~
-~03235~^~304~^5.^1^^~1~^^^^^^^^^^^~12/01/1978~
-~03235~^~305~^7.^1^^~1~^^^^^^^^^^^~12/01/1978~
-~03235~^~306~^94.^14^^~1~^^^^^^^^^^^~12/01/1978~
-~03235~^~307~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2010~
-~03235~^~318~^132.^0^^~4~^~NC~^^^^^^^^^^~03/01/2003~
-~03235~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2002~
-~03235~^~320~^7.^0^^~4~^~NC~^^^^^^^^^^~03/01/2003~
-~03235~^~321~^64.^0^^~4~^~FLA~^^^^^^^^^^~03/01/2003~
-~03235~^~322~^2.^0^^~4~^~FLA~^^^^^^^^^^~03/01/2003~
-~03235~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~
-~03235~^~334~^27.^0^^~4~^~FLA~^^^^^^^^^^~03/01/2003~
-~03235~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2003~
-~03235~^~338~^43.^0^^~4~^~FLA~^^^^^^^^^^~03/01/2003~
-~03235~^~417~^3.^9^0.^~1~^^^^^^^^^^^~12/01/1978~
-~03235~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~
-~03235~^~432~^3.^9^0.^~1~^^^^^^^^^^^~03/01/2003~
-~03235~^~435~^3.^0^^~4~^~NC~^^^^^^^^^^~03/01/2007~
-~03235~^~601~^0.^0^^~7~^^^^^^^^^^^~04/01/1985~
-~03236~^~208~^63.^0^^~4~^~NC~^^^^^^^^^^~12/01/1978~
-~03236~^~262~^0.^0^^~4~^~FLA~^^^^^^^^^^~03/01/2003~
-~03236~^~263~^0.^0^^~4~^~FLA~^^^^^^^^^^~03/01/2003~
-~03236~^~268~^264.^0^^~4~^^^^^^^^^^^~03/01/2005~
-~03236~^~301~^9.^7^2.^~1~^^^^^^^^^^^~12/01/1978~
-~03236~^~304~^5.^1^^~1~^^^^^^^^^^^~12/01/1978~
-~03236~^~305~^8.^1^^~1~^^^^^^^^^^^~12/01/1978~
-~03236~^~306~^95.^14^^~1~^^^^^^^^^^^~12/01/1978~
-~03236~^~307~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2010~
-~03236~^~318~^132.^0^^~4~^~NC~^^^^^^^^^^~03/01/2005~
-~03236~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2002~
-~03236~^~320~^7.^0^^~4~^~NC~^^^^^^^^^^~03/01/2005~
-~03236~^~321~^64.^0^^~4~^~FLA~^^^^^^^^^^~03/01/2003~
-~03236~^~322~^2.^0^^~4~^~FLA~^^^^^^^^^^~03/01/2003~
-~03236~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~
-~03236~^~334~^27.^0^^~4~^~FLA~^^^^^^^^^^~03/01/2003~
-~03236~^~337~^0.^0^^~4~^~FLA~^^^^^^^^^^~03/01/2003~
-~03236~^~338~^43.^0^^~4~^~FLA~^^^^^^^^^^~03/01/2003~
-~03236~^~417~^4.^0^^~1~^^^^^^^^^^^~12/01/1978~
-~03236~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~
-~03236~^~432~^4.^0^^~4~^~NR~^^^^^^^^^^~03/01/2003~
-~03236~^~435~^4.^0^^~4~^~NC~^^^^^^^^^^~03/01/2007~
-~03236~^~601~^0.^0^^~7~^^^^^^^^^^^~04/01/1985~
-~03238~^~208~^60.^0^^~4~^~NC~^^^^^^^^^^~12/01/1978~
-~03238~^~268~^251.^0^^~4~^^^^^^^^^^^
-~03238~^~301~^10.^13^1.^~1~^^^^^^^^^^^~12/01/1978~
-~03238~^~304~^5.^0^^~4~^^^^^^^^^^^~12/01/1978~
-~03238~^~305~^8.^0^^~4~^^^^^^^^^^^~12/01/1978~
-~03238~^~306~^58.^13^2.^~1~^^^^^^^^^^^~12/01/1978~
-~03238~^~307~^7.^13^1.^~1~^^^^^^^^^^^~12/01/1978~
-~03238~^~318~^20.^13^2.^~1~^^^^^^^^^^^~12/01/1978~
-~03238~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2002~
-~03238~^~320~^1.^0^^~4~^~NC~^^^^^^^^^^~06/01/2002~
-~03238~^~417~^3.^0^^~4~^^^^^^^^^^^~12/01/1978~
-~03238~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~
-~03238~^~432~^3.^0^^~4~^^^^^^^^^^^~12/01/1978~
-~03238~^~435~^3.^0^^~4~^~NC~^^^^^^^^^^~01/01/2001~
-~03245~^~208~^85.^0^^~4~^~NC~^^^^^^^^^^~12/01/1978~
-~03245~^~262~^0.^0^^~4~^~FLA~^^^^^^^^^^~03/01/2003~
-~03245~^~263~^0.^0^^~4~^~FLA~^^^^^^^^^^~03/01/2003~
-~03245~^~268~^356.^0^^~4~^~NC~^^^^^^^^^^~03/01/2005~
-~03245~^~301~^55.^36^1.^~1~^^^^^^^^^^^~12/01/1978~
-~03245~^~304~^5.^2^^~1~^^^^^^^^^^^~12/01/1978~
-~03245~^~305~^45.^2^^~1~^^^^^^^^^^^~12/01/1978~
-~03245~^~306~^66.^15^^~1~^^^^^^^^^^^~12/01/1978~
-~03245~^~307~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2010~
-~03245~^~318~^64.^7^^~1~^^^^^^^^^^^~12/01/1978~
-~03245~^~319~^18.^0^^~4~^~BNA~^^^^^^^^^^~03/01/2003~
-~03245~^~320~^18.^0^^~4~^~NC~^^^^^^^^^^~03/01/2003~
-~03245~^~321~^2.^0^^~4~^~BNA~^^^^^^^^^^~03/01/2003~
-~03245~^~322~^1.^0^^~4~^~BNA~^^^^^^^^^^~03/01/2003~
-~03245~^~324~^21.^0^^~4~^~FLA~^^^^^^^^^^~03/01/2009~
-~03245~^~334~^1.^0^^~4~^~BNA~^^^^^^^^^^~03/01/2003~
-~03245~^~337~^0.^0^^~4~^~FLA~^^^^^^^^^^~03/01/2003~
-~03245~^~338~^39.^0^^~4~^~FLA~^^^^^^^^^^~03/01/2003~
-~03245~^~417~^6.^3^0.^~1~^^^^^^^^^^^~12/01/1978~
-~03245~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~
-~03245~^~432~^6.^3^0.^~1~^^^^^^^^^^^~03/01/2003~
-~03245~^~435~^6.^0^^~4~^~NC~^^^^^^^^^^~03/01/2009~
-~03245~^~601~^8.^0^^~4~^^^^^^^^^^^~04/01/1985~
-~03246~^~208~^86.^0^^~4~^~NC~^^^^^^^^^^~03/01/2005~
-~03246~^~262~^0.^0^^~4~^~FLA~^^^^^^^^^^~03/01/2003~
-~03246~^~263~^0.^0^^~4~^~FLA~^^^^^^^^^^~03/01/2003~
-~03246~^~268~^360.^0^^~9~^^^^^^^^^^^~03/01/2005~
-~03246~^~301~^54.^0^^~12~^~MA~^^^^^^^^^^~04/01/1997~
-~03246~^~304~^5.^0^^~12~^~MA~^^^^^^^^^^~04/01/1997~
-~03246~^~305~^55.^0^^~12~^~MA~^^^^^^^^^^~04/01/1997~
-~03246~^~306~^68.^0^^~12~^~MA~^^^^^^^^^^~04/01/1997~
-~03246~^~307~^26.^0^^~12~^~MA~^^^^^^^^^^~04/01/1997~
-~03246~^~318~^47.^0^^~12~^~MA~^^^^^^^^^^~04/01/1997~
-~03246~^~319~^13.^0^^~4~^~BNA~^^^^^^^^^^~03/01/2003~
-~03246~^~320~^13.^0^^~4~^~NC~^^^^^^^^^^~03/01/2005~
-~03246~^~321~^1.^0^^~4~^~BNA~^^^^^^^^^^~03/01/2003~
-~03246~^~322~^1.^0^^~4~^~BNA~^^^^^^^^^^~03/01/2003~
-~03246~^~324~^19.^0^^~4~^~FLA~^^^^^^^^^^~03/01/2009~
-~03246~^~334~^1.^0^^~4~^~BNA~^^^^^^^^^^~03/01/2003~
-~03246~^~337~^0.^0^^~4~^~FLA~^^^^^^^^^^~03/01/2003~
-~03246~^~338~^39.^0^^~4~^~FLA~^^^^^^^^^^~03/01/2003~
-~03246~^~417~^6.^0^^~4~^~FLM~^^^^^^^^^^~04/01/1997~
-~03246~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~
-~03246~^~432~^6.^0^^~4~^~FLM~^^^^^^^^^^~03/01/2005~
-~03246~^~435~^6.^0^^~4~^~NC~^^^^^^^^^^~03/01/2009~
-~03246~^~601~^38.^0^^~4~^~FLM~^^^^^^^^^^~04/01/1997~
-~03265~^~208~^46.^0^^~4~^~NC~^^^^^^^^^^~08/01/2004~
-~03265~^~262~^0.^0^^~4~^~FLA~^^^^^^^^^^~01/01/2003~
-~03265~^~263~^0.^0^^~4~^~FLA~^^^^^^^^^^~01/01/2003~
-~03265~^~268~^194.^0^^~4~^~NC~^^^^^^^^^^~03/01/2005~
-~03265~^~301~^6.^18^^~1~^^^^^^^^^^^~12/01/1978~
-~03265~^~304~^6.^0^^~9~^~MC~^^^^^^^^^^~06/01/2006~
-~03265~^~305~^5.^3^^~1~^^^^^^^^^^^~12/01/1978~
-~03265~^~306~^90.^16^^~1~^^^^^^^^^^^~12/01/1978~
-~03265~^~307~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2010~
-~03265~^~318~^4.^0^^~4~^~FLA~^^^^^^^^^^~08/01/2004~
-~03265~^~319~^0.^0^^~4~^~FLA~^^^^^^^^^^~01/01/2003~
-~03265~^~320~^0.^0^^~4~^~FLA~^^^^^^^^^^~08/01/2004~
-~03265~^~321~^2.^0^^~4~^~BNA~^^^^^^^^^^~03/01/2003~
-~03265~^~322~^0.^0^^~4~^~BNA~^^^^^^^^^^~03/01/2003~
-~03265~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~
-~03265~^~334~^0.^0^^~4~^~BNA~^^^^^^^^^^~03/01/2003~
-~03265~^~337~^0.^0^^~4~^~FLA~^^^^^^^^^^~01/01/2003~
-~03265~^~338~^0.^0^^~4~^~FLA~^^^^^^^^^^~01/01/2003~
-~03265~^~417~^1.^0^^~4~^~FLA~^^^^^^^^^^~01/01/2003~
-~03265~^~431~^0.^0^^~4~^~FLA~^^^^^^^^^^~01/01/2003~
-~03265~^~432~^1.^0^^~4~^~FLA~^^^^^^^^^^~01/01/2003~
-~03265~^~435~^1.^0^^~4~^~NC~^^^^^^^^^^~03/01/2007~
-~03265~^~601~^0.^0^^~7~^^^^^^^^^^^~04/01/1985~
-~03267~^~208~^52.^1^^~9~^~MC~^^^^^^^^^^~06/01/1998~
-~03267~^~262~^0.^0^^~4~^~FLA~^^^^^^^^^^~03/01/2003~
-~03267~^~263~^0.^0^^~4~^~FLA~^^^^^^^^^^~03/01/2003~
-~03267~^~268~^218.^0^^~9~^^^^^^^^^^^~03/01/2005~
-~03267~^~301~^64.^1^^~12~^~MA~^^^^^^^^^^~07/01/1998~
-~03267~^~304~^7.^1^^~12~^~MA~^^^^^^^^^^~06/01/1998~
-~03267~^~305~^11.^1^^~12~^~MA~^^^^^^^^^^~06/01/1998~
-~03267~^~306~^86.^1^^~12~^~MA~^^^^^^^^^^~06/01/1998~
-~03267~^~307~^4.^1^^~12~^~MA~^^^^^^^^^^~06/01/1998~
-~03267~^~318~^3.^0^^~4~^~FLM~^^^^^^^^^^~06/01/1998~
-~03267~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2002~
-~03267~^~320~^0.^0^^~4~^~NC~^^^^^^^^^^~03/01/2003~
-~03267~^~321~^2.^0^^~4~^~BNA~^^^^^^^^^^~03/01/2003~
-~03267~^~322~^0.^0^^~4~^~BNA~^^^^^^^^^^~03/01/2003~
-~03267~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~
-~03267~^~334~^0.^0^^~4~^~BNA~^^^^^^^^^^~03/01/2003~
-~03267~^~337~^0.^0^^~4~^~FLA~^^^^^^^^^^~03/01/2003~
-~03267~^~338~^21.^0^^~4~^~FLA~^^^^^^^^^^~03/01/2003~
-~03267~^~417~^1.^0^^~4~^~FLM~^^^^^^^^^^~06/01/1998~
-~03267~^~431~^0.^0^^~4~^~FLA~^^^^^^^^^^~03/01/2003~
-~03267~^~432~^1.^0^^~4~^~FLA~^^^^^^^^^^~03/01/2003~
-~03267~^~435~^1.^0^^~4~^~NC~^^^^^^^^^^~07/01/2008~
-~03267~^~601~^0.^0^^~4~^~FLM~^^^^^^^^^^~06/01/1998~
-~03269~^~208~^46.^0^^~4~^~NC~^^^^^^^^^^~03/01/2007~
-~03269~^~262~^0.^0^^~4~^~FLA~^^^^^^^^^^~03/01/2003~
-~03269~^~263~^0.^0^^~4~^~FLA~^^^^^^^^^^~03/01/2003~
-~03269~^~268~^191.^0^^~4~^~NC~^^^^^^^^^^~03/01/2007~
-~03269~^~301~^127.^1^^~12~^~MA~^^^^^^^^^^~06/01/1998~
-~03269~^~304~^6.^1^^~12~^~MA~^^^^^^^^^^~06/01/1998~
-~03269~^~305~^8.^1^^~12~^~MA~^^^^^^^^^^~06/01/1998~
-~03269~^~306~^92.^1^^~12~^~MA~^^^^^^^^^^~06/01/1998~
-~03269~^~307~^3.^0^^~4~^~FLM~^^^^^^^^^^~06/01/1998~
-~03269~^~318~^0.^0^^~4~^~NC~^^^^^^^^^^~03/01/2003~
-~03269~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2003~
-~03269~^~320~^0.^0^^~4~^~NC~^^^^^^^^^^~03/01/2003~
-~03269~^~321~^0.^0^^~4~^~FLA~^^^^^^^^^^~03/01/2003~
-~03269~^~322~^0.^0^^~4~^~FLA~^^^^^^^^^^~03/01/2003~
-~03269~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~
-~03269~^~334~^0.^0^^~4~^~FLA~^^^^^^^^^^~03/01/2003~
-~03269~^~337~^0.^0^^~4~^~FLA~^^^^^^^^^^~03/01/2003~
-~03269~^~338~^0.^0^^~4~^~FLA~^^^^^^^^^^~03/01/2003~
-~03269~^~417~^0.^0^^~4~^~FLM~^^^^^^^^^^~04/01/2003~
-~03269~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2003~
-~03269~^~432~^0.^0^^~4~^~FLM~^^^^^^^^^^~03/01/2003~
-~03269~^~435~^0.^0^^~4~^~NC~^^^^^^^^^^~03/01/2007~
-~03269~^~601~^0.^0^^~4~^~FLM~^^^^^^^^^^~06/01/1998~
-~03274~^~208~^53.^0^^~9~^~MC~^^^^^^^^^^~04/01/1997~
-~03274~^~262~^0.^0^^~4~^~FLA~^^^^^^^^^^~03/01/2003~
-~03274~^~263~^0.^0^^~4~^~FLA~^^^^^^^^^^~03/01/2003~
-~03274~^~268~^222.^0^^~9~^^^^^^^^^^^~03/01/2005~
-~03274~^~301~^27.^0^^~12~^~MA~^^^^^^^^^^~04/01/1997~
-~03274~^~304~^8.^0^^~12~^~MA~^^^^^^^^^^~04/01/1997~
-~03274~^~305~^32.^0^^~12~^~MA~^^^^^^^^^^~04/01/1997~
-~03274~^~306~^83.^0^^~12~^~MA~^^^^^^^^^^~04/01/1997~
-~03274~^~307~^34.^0^^~8~^~LC~^^^^^^^^^^~07/01/2010~
-~03274~^~318~^2612.^0^^~12~^~MA~^^^^^^^^^^~04/01/1997~
-~03274~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2002~
-~03274~^~320~^131.^0^^~4~^~NC~^^^^^^^^^^~03/01/2003~
-~03274~^~321~^1270.^0^^~4~^~BNA~^^^^^^^^^^~03/01/2003~
-~03274~^~322~^592.^0^^~4~^~BNA~^^^^^^^^^^~03/01/2003~
-~03274~^~324~^2.^0^^~4~^~FLA~^^^^^^^^^^~03/01/2009~
-~03274~^~334~^0.^0^^~4~^~BNA~^^^^^^^^^^~03/01/2003~
-~03274~^~337~^0.^0^^~4~^~FLA~^^^^^^^^^^~03/01/2003~
-~03274~^~338~^36.^0^^~4~^~FLA~^^^^^^^^^^~03/01/2003~
-~03274~^~417~^3.^0^^~4~^~FLM~^^^^^^^^^^~04/01/1997~
-~03274~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~
-~03274~^~432~^3.^0^^~4~^~FLM~^^^^^^^^^^~03/01/2003~
-~03274~^~435~^3.^0^^~4~^~NC~^^^^^^^^^^~03/01/2009~
-~03274~^~601~^7.^0^^~12~^~MA~^^^^^^^^^^~04/01/1997~
-~03278~^~208~^41.^0^^~4~^~NC~^^^^^^^^^^~12/01/1978~
-~03278~^~268~^172.^0^^~4~^^^^^^^^^^^
-~03278~^~301~^22.^13^2.^~1~^^^^^^^^^^^~12/01/1978~
-~03278~^~304~^11.^0^^~4~^^^^^^^^^^^~12/01/1978~
-~03278~^~305~^24.^0^^~4~^^^^^^^^^^^~12/01/1978~
-~03278~^~306~^121.^13^4.^~1~^^^^^^^^^^^~12/01/1978~
-~03278~^~307~^38.^0^^~8~^~LC~^^^^^^^^^^~07/01/2010~
-~03278~^~318~^2728.^13^274.^~1~^^^^^^^^^^^~12/01/1978~
-~03278~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2002~
-~03278~^~320~^136.^0^^~4~^~NC~^^^^^^^^^^~06/01/2002~
-~03278~^~417~^8.^3^1.^~1~^^^^^^^^^^^~12/01/1978~
-~03278~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~
-~03278~^~432~^8.^3^1.^~1~^^^^^^^^^^^~12/01/1978~
-~03278~^~435~^8.^0^^~4~^~NC~^^^^^^^^^^~01/01/2001~
-~03279~^~208~^34.^0^^~4~^~NC~^^^^^^^^^^~02/01/2015~
-~03279~^~262~^0.^0^^~4~^~FLC~^^^^^^^^^^~02/01/2015~
-~03279~^~263~^0.^0^^~4~^~FLC~^^^^^^^^^^~02/01/2015~
-~03279~^~268~^142.^0^^~4~^~NC~^^^^^^^^^^~02/01/2015~
-~03279~^~301~^17.^13^1.^~1~^^^^^^^^^^^~12/01/1978~
-~03279~^~304~^13.^0^^~4~^~FLC~^^^^^^^^^^~02/01/2015~
-~03279~^~305~^30.^0^^~4~^~FLC~^^^^^^^^^^~02/01/2015~
-~03279~^~306~^112.^13^3.^~1~^^^^^^^^^^^~12/01/1978~
-~03279~^~307~^40.^0^^~4~^~FLC~^^^^^^^^^^~02/01/2015~
-~03279~^~318~^9246.^0^^~4~^~NC~^^^^^^^^^^~02/01/2015~
-~03279~^~319~^0.^0^^~4~^~FLC~^^^^^^^^^^~02/01/2015~
-~03279~^~320~^462.^0^^~4~^~NC~^^^^^^^^^^~02/01/2015~
-~03279~^~321~^4989.^0^^~4~^~FLC~^^^^^^^^^^~02/01/2015~
-~03279~^~322~^1117.^0^^~4~^~FLC~^^^^^^^^^^~02/01/2015~
-~03279~^~324~^0.^0^^~4~^~FLC~^^^^^^^^^^~02/01/2015~
-~03279~^~334~^0.^0^^~4~^~FLC~^^^^^^^^^^~02/01/2015~
-~03279~^~337~^0.^0^^~4~^~FLC~^^^^^^^^^^~02/01/2015~
-~03279~^~338~^178.^0^^~4~^~FLC~^^^^^^^^^^~02/01/2015~
-~03279~^~417~^11.^0^^~4~^~FLC~^^^^^^^^^^~02/01/2015~
-~03279~^~431~^0.^0^^~4~^~FLC~^^^^^^^^^^~02/01/2015~
-~03279~^~432~^11.^0^^~4~^~FLC~^^^^^^^^^^~02/01/2015~
-~03279~^~435~^11.^0^^~4~^~NC~^^^^^^^^^^~02/01/2015~
-~03279~^~601~^0.^0^^~4~^~FLC~^^^^^^^^^^~02/01/2015~
-~03280~^~208~^67.^0^^~4~^~NC~^^^^^^^^^^~12/01/1978~
-~03280~^~262~^0.^0^^~4~^~FLA~^^^^^^^^^^~03/01/2003~
-~03280~^~263~^0.^0^^~4~^~FLA~^^^^^^^^^^~03/01/2003~
-~03280~^~268~^280.^0^^~4~^^^^^^^^^^^~03/01/2005~
-~03280~^~301~^8.^14^^~1~^^^^^^^^^^^~12/01/1978~
-~03280~^~304~^12.^0^^~1~^^^^^^^^^^^~12/01/1978~
-~03280~^~305~^9.^1^^~1~^^^^^^^^^^^~12/01/1978~
-~03280~^~306~^108.^14^^~1~^^^^^^^^^^^~12/01/1978~
-~03280~^~307~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2010~
-~03280~^~318~^44.^14^^~1~^^^^^^^^^^^~12/01/1978~
-~03280~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2002~
-~03280~^~320~^2.^0^^~4~^~NC~^^^^^^^^^^~03/01/2003~
-~03280~^~321~^18.^0^^~4~^~BNA~^^^^^^^^^^~03/01/2003~
-~03280~^~322~^17.^0^^~4~^~BNA~^^^^^^^^^^~03/01/2003~
-~03280~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~
-~03280~^~334~^0.^0^^~4~^~BNA~^^^^^^^^^^~03/01/2003~
-~03280~^~337~^0.^0^^~4~^~FLA~^^^^^^^^^^~03/01/2003~
-~03280~^~338~^6.^0^^~4~^~FLA~^^^^^^^^^^~03/01/2003~
-~03280~^~417~^6.^0^^~1~^^^^^^^^^^^~12/01/1978~
-~03280~^~431~^0.^0^^~4~^~FLA~^^^^^^^^^^~03/01/2003~
-~03280~^~432~^6.^0^^~4~^~FLA~^^^^^^^^^^~03/01/2003~
-~03280~^~435~^6.^0^^~4~^~NC~^^^^^^^^^^~03/01/2007~
-~03280~^~601~^0.^0^^~4~^^^^^^^^^^^~04/01/1985~
-~03282~^~208~^36.^0^^~4~^~NC~^^^^^^^^^^~03/01/2003~
-~03282~^~262~^0.^0^^~4~^~FLA~^^^^^^^^^^~03/01/2003~
-~03282~^~263~^0.^0^^~4~^~FLA~^^^^^^^^^^~03/01/2003~
-~03282~^~268~^151.^0^^~4~^~NC~^^^^^^^^^^~03/01/2003~
-~03282~^~301~^11.^7^^~1~^^^^^^^^^^^~12/01/1978~
-~03282~^~304~^11.^1^^~1~^^^^^^^^^^^~12/01/1978~
-~03282~^~305~^25.^1^^~1~^^^^^^^^^^^~12/01/1978~
-~03282~^~306~^170.^1^^~1~^^^^^^^^^^^~12/01/1978~
-~03282~^~307~^36.^3^^~1~^^^^^^^^^^^~12/01/1978~
-~03282~^~318~^4195.^0^^~4~^~NC~^^^^^^^^^^~06/01/2013~
-~03282~^~319~^0.^0^^~4~^~BNA~^^^^^^^^^^~03/01/2003~
-~03282~^~320~^210.^0^^~4~^~NC~^^^^^^^^^^~03/01/2003~
-~03282~^~321~^2060.^0^^~4~^~BNA~^^^^^^^^^^~03/01/2003~
-~03282~^~322~^915.^0^^~4~^~BNA~^^^^^^^^^^~03/01/2003~
-~03282~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~
-~03282~^~334~^0.^0^^~4~^~BNA~^^^^^^^^^^~03/01/2003~
-~03282~^~337~^0.^0^^~4~^~FLA~^^^^^^^^^^~03/01/2003~
-~03282~^~338~^497.^0^^~4~^~FLA~^^^^^^^^^^~03/01/2003~
-~03282~^~417~^4.^0^^~1~^^^^^^^^^^^~12/01/1978~
-~03282~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~
-~03282~^~432~^4.^0^^~1~^^^^^^^^^^^~03/01/2003~
-~03282~^~435~^4.^0^^~4~^~NC~^^^^^^^^^^~03/01/2007~
-~03282~^~601~^0.^0^^~4~^^^^^^^^^^^~04/01/1985~
-~03283~^~208~^32.^0^^~4~^~NC~^^^^^^^^^^~03/01/2003~
-~03283~^~262~^0.^0^^~4~^~FLA~^^^^^^^^^^~03/01/2003~
-~03283~^~263~^0.^0^^~4~^~FLA~^^^^^^^^^^~03/01/2003~
-~03283~^~268~^132.^0^^~4~^~NC~^^^^^^^^^^~03/01/2003~
-~03283~^~301~^28.^17^3.^~1~^^^^^^^^^^^~12/01/1978~
-~03283~^~304~^21.^2^^~1~^^^^^^^^^^^~12/01/1978~
-~03283~^~305~^28.^1^^~1~^^^^^^^^^^^~12/01/1978~
-~03283~^~306~^168.^14^^~1~^^^^^^^^^^^~12/01/1978~
-~03283~^~307~^31.^0^^~8~^~LC~^^^^^^^^^^~07/01/2010~
-~03283~^~318~^6067.^19^232.^~1~^^^^^^^^^^^~12/01/1978~
-~03283~^~319~^0.^0^^~4~^~BNA~^^^^^^^^^^~03/01/2003~
-~03283~^~320~^303.^0^^~4~^~NC~^^^^^^^^^^~03/01/2003~
-~03283~^~321~^3270.^0^^~4~^~BNA~^^^^^^^^^^~03/01/2003~
-~03283~^~322~^740.^0^^~4~^~BNA~^^^^^^^^^^~03/01/2003~
-~03283~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~
-~03283~^~334~^0.^0^^~4~^~BNA~^^^^^^^^^^~03/01/2003~
-~03283~^~337~^0.^0^^~4~^~FLA~^^^^^^^^^^~03/01/2003~
-~03283~^~338~^1374.^0^^~4~^~FLA~^^^^^^^^^^~03/01/2003~
-~03283~^~417~^40.^16^2.^~1~^^^^^^^^^^^~12/01/1978~
-~03283~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~
-~03283~^~432~^40.^16^2.^~1~^^^^^^^^^^^~03/01/2003~
-~03283~^~435~^40.^0^^~4~^~NC~^^^^^^^^^^~03/01/2007~
-~03283~^~601~^0.^0^^~4~^^^^^^^^^^^~04/01/1985~
-~03286~^~208~^36.^0^^~4~^~NC~^^^^^^^^^^~05/01/2003~
-~03286~^~262~^0.^0^^~4~^~FLA~^^^^^^^^^^~04/01/2003~
-~03286~^~263~^0.^0^^~4~^~FLA~^^^^^^^^^^~04/01/2003~
-~03286~^~268~^150.^0^^~4~^~NC~^^^^^^^^^^~04/01/2003~
-~03286~^~301~^13.^8^1.^~1~^^^^^^^^^^^~12/01/1978~
-~03286~^~304~^10.^2^^~1~^^^^^^^^^^^~12/01/1978~
-~03286~^~305~^22.^1^^~1~^^^^^^^^^^^~12/01/1978~
-~03286~^~306~^127.^1^^~1~^^^^^^^^^^^~12/01/1978~
-~03286~^~307~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2010~
-~03286~^~318~^3166.^0^^~4~^~NC~^^^^^^^^^^~05/01/2003~
-~03286~^~319~^0.^0^^~4~^~FLA~^^^^^^^^^^~04/01/2003~
-~03286~^~320~^158.^0^^~4~^~NC~^^^^^^^^^^~04/01/2003~
-~03286~^~321~^1550.^0^^~4~^~FLA~^^^^^^^^^^~04/01/2003~
-~03286~^~322~^699.^0^^~4~^~FLA~^^^^^^^^^^~04/01/2003~
-~03286~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~
-~03286~^~334~^0.^0^^~4~^~FLA~^^^^^^^^^^~04/01/2003~
-~03286~^~337~^0.^0^^~4~^~FLA~^^^^^^^^^^~04/01/2003~
-~03286~^~338~^381.^0^^~4~^~FLA~^^^^^^^^^^~04/01/2003~
-~03286~^~417~^4.^6^0.^~1~^^^^^^^^^^^~12/01/1978~
-~03286~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~
-~03286~^~432~^4.^6^0.^~1~^^^^^^^^^^^~04/01/2003~
-~03286~^~435~^4.^0^^~4~^~NC~^^^^^^^^^^~03/01/2007~
-~03286~^~601~^0.^0^^~4~^^^^^^^^^^^~04/01/1985~
-~03287~^~208~^57.^0^^~4~^~NC~^^^^^^^^^^~07/01/2010~
-~03287~^~262~^0.^0^^~4~^~FLA~^^^^^^^^^^~03/01/2003~
-~03287~^~263~^0.^0^^~4~^~FLA~^^^^^^^^^^~03/01/2003~
-~03287~^~268~^239.^0^^~4~^~NC~^^^^^^^^^^~07/01/2010~
-~03287~^~301~^8.^22^0.^~1~^^^^^^^^^^^~12/01/1978~
-~03287~^~304~^7.^0^^~1~^^^^^^^^^^^~12/01/1978~
-~03287~^~305~^30.^1^^~1~^^^^^^^^^^^~12/01/1978~
-~03287~^~306~^46.^13^2.^~1~^^^^^^^^^^^~12/01/1978~
-~03287~^~307~^26.^0^^~8~^~LC~^^^^^^^^^^~07/01/2010~
-~03287~^~318~^656.^0^^~4~^~NC~^^^^^^^^^^~03/01/2005~
-~03287~^~319~^0.^0^^~4~^~BNA~^^^^^^^^^^~03/01/2003~
-~03287~^~320~^33.^0^^~4~^~NC~^^^^^^^^^^~03/01/2003~
-~03287~^~321~^320.^0^^~4~^~BNA~^^^^^^^^^^~03/01/2003~
-~03287~^~322~^146.^0^^~4~^~BNA~^^^^^^^^^^~03/01/2003~
-~03287~^~324~^1.^0^^~4~^~FLA~^^^^^^^^^^~03/01/2009~
-~03287~^~334~^0.^0^^~4~^~BNA~^^^^^^^^^^~03/01/2003~
-~03287~^~337~^1030.^0^^~4~^~FLA~^^^^^^^^^^~03/01/2003~
-~03287~^~338~^163.^0^^~4~^~FLA~^^^^^^^^^^~03/01/2003~
-~03287~^~417~^12.^0^^~4~^~FLM~^^^^^^^^^^~02/01/1998~
-~03287~^~431~^7.^0^^~4~^~NC~^^^^^^^^^^~05/01/2000~
-~03287~^~432~^6.^0^^~1~^^^^^^^^^^^
-~03287~^~435~^17.^0^^~4~^~NC~^^^^^^^^^^~03/01/2009~
-~03287~^~601~^8.^0^^~4~^^^^^^^^^^^~04/01/1985~
-~03289~^~208~^62.^0^^~9~^~MC~^^^^^^^^^^~06/01/1996~
-~03289~^~262~^0.^0^^~4~^~FLA~^^^^^^^^^^~03/01/2003~
-~03289~^~263~^0.^0^^~4~^~FLA~^^^^^^^^^^~03/01/2003~
-~03289~^~268~^259.^0^^~9~^^^^^^^^^^^~03/01/2005~
-~03289~^~301~^4.^0^^~12~^~MA~^^^^^^^^^^~04/01/1994~
-~03289~^~304~^7.^0^^~12~^~MA~^^^^^^^^^^~06/01/1996~
-~03289~^~305~^34.^0^^~12~^~MA~^^^^^^^^^^~06/01/1996~
-~03289~^~306~^120.^0^^~12~^~MA~^^^^^^^^^^~06/01/1996~
-~03289~^~307~^9.^0^^~12~^~MA~^^^^^^^^^^~04/01/1994~
-~03289~^~318~^6.^0^^~12~^~MA~^^^^^^^^^^~06/01/1996~
-~03289~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2002~
-~03289~^~320~^0.^0^^~4~^~NC~^^^^^^^^^^~03/01/2003~
-~03289~^~321~^3.^0^^~4~^~BNA~^^^^^^^^^^~03/01/2003~
-~03289~^~322~^0.^0^^~4~^~BNA~^^^^^^^^^^~03/01/2003~
-~03289~^~324~^3.^0^^~4~^~FLA~^^^^^^^^^^~03/01/2009~
-~03289~^~334~^2.^0^^~4~^~BNA~^^^^^^^^^^~03/01/2003~
-~03289~^~337~^0.^0^^~4~^~FLA~^^^^^^^^^^~03/01/2003~
-~03289~^~338~^14.^0^^~4~^~FLA~^^^^^^^^^^~03/01/2003~
-~03289~^~417~^2.^0^^~4~^~FLM~^^^^^^^^^^~04/01/1994~
-~03289~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~
-~03289~^~432~^2.^0^^~4~^~FLM~^^^^^^^^^^~03/01/2003~
-~03289~^~435~^2.^0^^~4~^~NC~^^^^^^^^^^~03/01/2009~
-~03289~^~601~^8.^0^^~12~^~MA~^^^^^^^^^^~04/01/1994~
-~03290~^~208~^59.^0^^~9~^~MC~^^^^^^^^^^~05/01/1994~
-~03290~^~262~^0.^0^^~4~^~FLA~^^^^^^^^^^~03/01/2003~
-~03290~^~263~^0.^0^^~4~^~FLA~^^^^^^^^^^~03/01/2003~
-~03290~^~268~^247.^0^^~9~^^^^^^^^^^^~03/01/2005~
-~03290~^~301~^22.^0^^~12~^~MA~^^^^^^^^^^~06/01/1996~
-~03290~^~304~^13.^0^^~12~^~MA~^^^^^^^^^^~05/01/1994~
-~03290~^~305~^45.^0^^~12~^~MA~^^^^^^^^^^~05/01/1994~
-~03290~^~306~^226.^0^^~12~^~MA~^^^^^^^^^^~06/01/1996~
-~03290~^~307~^69.^0^^~8~^~LC~^^^^^^^^^^~07/01/2010~
-~03290~^~318~^14452.^0^^~12~^~MA~^^^^^^^^^^~06/01/1996~
-~03290~^~319~^0.^0^^~4~^~BNA~^^^^^^^^^^~03/01/2003~
-~03290~^~320~^723.^0^^~4~^~NC~^^^^^^^^^^~03/01/2009~
-~03290~^~321~^6813.^0^^~4~^~BNA~^^^^^^^^^^~03/01/2003~
-~03290~^~322~^3716.^0^^~4~^~BNA~^^^^^^^^^^~03/01/2003~
-~03290~^~324~^1.^0^^~4~^~FLA~^^^^^^^^^^~03/01/2009~
-~03290~^~334~^0.^0^^~4~^~BNA~^^^^^^^^^^~03/01/2003~
-~03290~^~337~^1.^0^^~4~^~FLA~^^^^^^^^^^~03/01/2003~
-~03290~^~338~^139.^0^^~4~^~FLA~^^^^^^^^^^~03/01/2003~
-~03290~^~417~^17.^0^^~4~^~FLM~^^^^^^^^^^~05/01/1994~
-~03290~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~
-~03290~^~432~^17.^0^^~4~^~FLM~^^^^^^^^^^~03/01/2003~
-~03290~^~435~^17.^0^^~4~^~NC~^^^^^^^^^^~03/01/2009~
-~03290~^~601~^8.^0^^~4~^~FLM~^^^^^^^^^^~05/01/1994~
-~03293~^~208~^57.^0^^~4~^^^^^^^^^^^~03/01/2005~
-~03293~^~262~^0.^0^^~4~^~FLA~^^^^^^^^^^~01/01/2003~
-~03293~^~263~^0.^0^^~4~^~FLA~^^^^^^^^^^~01/01/2003~
-~03293~^~268~^238.^0^^~4~^^^^^^^^^^^~03/01/2005~
-~03293~^~301~^3.^0^^~9~^^^^^^^^^^^~03/01/2005~
-~03293~^~304~^11.^0^^~9~^^^^^^^^^^^~03/01/2005~
-~03293~^~305~^32.^0^^~9~^^^^^^^^^^^~03/01/2005~
-~03293~^~306~^265.^0^^~9~^^^^^^^^^^^~03/01/2005~
-~03293~^~307~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2010~
-~03293~^~318~^133.^0^^~9~^^^^^^^^^^^~03/01/2005~
-~03293~^~319~^0.^0^^~4~^~FLA~^^^^^^^^^^~01/01/2003~
-~03293~^~320~^7.^0^^~4~^~NC~^^^^^^^^^^~03/01/2003~
-~03293~^~321~^73.^0^^~4~^~BNA~^^^^^^^^^^~03/01/2003~
-~03293~^~322~^0.^0^^~4~^~BNA~^^^^^^^^^^~03/01/2003~
-~03293~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~
-~03293~^~334~^13.^0^^~4~^~BNA~^^^^^^^^^^~03/01/2003~
-~03293~^~337~^0.^0^^~4~^~FLA~^^^^^^^^^^~01/01/2003~
-~03293~^~338~^65.^0^^~4~^~FLA~^^^^^^^^^^~03/01/2003~
-~03293~^~417~^6.^0^^~4~^~FLA~^^^^^^^^^^~04/01/2003~
-~03293~^~431~^0.^0^^~4~^~FLA~^^^^^^^^^^~01/01/2003~
-~03293~^~432~^6.^0^^~4~^~FLA~^^^^^^^^^^~03/01/2003~
-~03293~^~435~^6.^0^^~4~^~NC~^^^^^^^^^^~07/01/2008~
-~03293~^~601~^0.^0^^~4~^^^^^^^^^^^~03/01/2005~
-~03296~^~208~^60.^0^^~4~^~NC~^^^^^^^^^^~07/01/2010~
-~03296~^~262~^0.^0^^~4~^~NR~^^^^^^^^^^~03/01/2003~
-~03296~^~263~^0.^0^^~4~^~NR~^^^^^^^^^^~03/01/2003~
-~03296~^~268~^249.^0^^~4~^~NC~^^^^^^^^^^~07/01/2010~
-~03296~^~301~^11.^0^^~12~^~MA~^^^^^^^^^^~04/01/1995~
-~03296~^~304~^14.^0^^~12~^~MA~^^^^^^^^^^~05/01/1996~
-~03296~^~305~^63.^0^^~12~^~MA~^^^^^^^^^^~05/01/1996~
-~03296~^~306~^107.^0^^~12~^~MA~^^^^^^^^^^~05/01/1996~
-~03296~^~307~^176.^0^^~8~^~LC~^^^^^^^^^^~01/01/2018~
-~03296~^~318~^2268.^0^^~4~^~NC~^^^^^^^^^^~03/01/2009~
-~03296~^~319~^0.^0^^~4~^~BNA~^^^^^^^^^^~03/01/2003~
-~03296~^~320~^113.^0^^~4~^~NC~^^^^^^^^^^~03/01/2007~
-~03296~^~321~^1116.^0^^~4~^~BNA~^^^^^^^^^^~03/01/2003~
-~03296~^~322~^489.^0^^~4~^~BNA~^^^^^^^^^^~03/01/2003~
-~03296~^~324~^2.^0^^~4~^~NR~^^^^^^^^^^~03/01/2009~
-~03296~^~334~^0.^0^^~4~^~BNA~^^^^^^^^^^~03/01/2003~
-~03296~^~337~^1175.^0^^~4~^~FLA~^^^^^^^^^^~04/01/2015~
-~03296~^~338~^137.^0^^~4~^~FLA~^^^^^^^^^^~04/01/2015~
-~03296~^~417~^3.^0^^~4~^^^^^^^^^^^~04/01/1995~
-~03296~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~
-~03296~^~432~^3.^0^^~4~^^^^^^^^^^^~03/01/2003~
-~03296~^~435~^3.^0^^~4~^~NC~^^^^^^^^^^~03/01/2009~
-~03296~^~601~^7.^0^^~12~^~MA~^^^^^^^^^^~04/01/1995~
-~03297~^~208~^65.^0^^~9~^~MC~^^^^^^^^^^~04/01/1997~
-~03297~^~262~^0.^0^^~4~^~FLA~^^^^^^^^^^~03/01/2003~
-~03297~^~263~^0.^0^^~4~^~FLA~^^^^^^^^^^~03/01/2003~
-~03297~^~268~^272.^0^^~9~^~MC~^^^^^^^^^^~03/01/2005~
-~03297~^~301~^18.^0^^~12~^~MA~^^^^^^^^^^~04/01/1997~
-~03297~^~304~^6.^0^^~12~^~MA~^^^^^^^^^^~04/01/1997~
-~03297~^~305~^32.^0^^~12~^~MA~^^^^^^^^^^~04/01/1997~
-~03297~^~306~^95.^0^^~12~^~MA~^^^^^^^^^^~04/01/1997~
-~03297~^~307~^12.^0^^~12~^~MA~^^^^^^^^^^~04/01/1997~
-~03297~^~318~^30.^0^^~4~^~NC~^^^^^^^^^^~03/01/2009~
-~03297~^~319~^0.^0^^~4~^~FLA~^^^^^^^^^^~03/01/2003~
-~03297~^~320~^2.^0^^~4~^~NC~^^^^^^^^^^~03/01/2009~
-~03297~^~321~^13.^0^^~4~^~BNA~^^^^^^^^^^~03/01/2003~
-~03297~^~322~^0.^0^^~4~^~BNA~^^^^^^^^^^~03/01/2003~
-~03297~^~324~^1.^0^^~4~^~O~^^^^^^^^^^~03/01/2009~
-~03297~^~334~^10.^0^^~4~^~BNA~^^^^^^^^^^~03/01/2003~
-~03297~^~337~^0.^0^^~4~^~FLA~^^^^^^^^^^~03/01/2003~
-~03297~^~338~^16.^0^^~4~^~FLA~^^^^^^^^^^~03/01/2003~
-~03297~^~417~^1.^0^^~4~^~FLM~^^^^^^^^^^~04/01/1997~
-~03297~^~431~^0.^0^^~4~^~FLA~^^^^^^^^^^~03/01/2003~
-~03297~^~432~^1.^0^^~4~^~FLA~^^^^^^^^^^~03/01/2003~
-~03297~^~435~^1.^0^^~4~^~NC~^^^^^^^^^^~03/01/2009~
-~03297~^~601~^5.^0^^~4~^~FLM~^^^^^^^^^^~04/01/1997~
-~03298~^~208~^62.^0^^~4~^~NC~^^^^^^^^^^~03/01/2007~
-~03298~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2007~
-~03298~^~263~^0.^0^^~4~^~O~^^^^^^^^^^~03/01/2007~
-~03298~^~268~^259.^0^^~4~^~NC~^^^^^^^^^^~03/01/2007~
-~03298~^~301~^37.^1^^~1~^~A~^^^^^^^^^^~03/01/2007~
-~03298~^~304~^12.^1^^~1~^~A~^^^^^^^^^^~03/01/2007~
-~03298~^~305~^58.^1^^~1~^~A~^^^^^^^^^^~03/01/2007~
-~03298~^~306~^170.^1^^~1~^~A~^^^^^^^^^^~03/01/2007~
-~03298~^~307~^17.^1^^~1~^~A~^^^^^^^^^^~03/01/2007~
-~03298~^~318~^474.^0^^~4~^~NC~^^^^^^^^^^~03/01/2009~
-~03298~^~319~^1.^0^^~4~^~O~^^^^^^^^^^~03/01/2007~
-~03298~^~320~^24.^0^^~4~^~NC~^^^^^^^^^^~03/01/2009~
-~03298~^~321~^278.^0^^~4~^~O~^^^^^^^^^^~03/01/2007~
-~03298~^~322~^9.^0^^~4~^~O~^^^^^^^^^^~03/01/2007~
-~03298~^~324~^1.^0^^~4~^~FLC~^^^^^^^^^^~04/01/2009~
-~03298~^~334~^0.^0^^~4~^~O~^^^^^^^^^^~03/01/2007~
-~03298~^~337~^0.^1^^~1~^~A~^^^^^^^^^~1~^~03/01/2007~
-~03298~^~338~^511.^0^^~4~^~O~^^^^^^^^^^~03/01/2007~
-~03298~^~417~^69.^2^^~1~^~A~^^^1^66.^72.^1^^^^~03/01/2007~
-~03298~^~431~^10.^2^^~1~^~A~^^^1^10.^10.^^^^^~03/01/2007~
-~03298~^~432~^59.^0^^~1~^~AS~^^^^^^^^^^~03/01/2007~
-~03298~^~435~^76.^0^^~4~^~NC~^^^^^^^^^^~04/01/2009~
-~03298~^~601~^13.^1^^~1~^~A~^^^^^^^^^^~03/01/2007~
-~03301~^~208~^29.^0^^~4~^~NC~^^^^^^^^^^~02/01/2016~
-~03301~^~262~^0.^0^^~4~^~FLC~^^^^^^^^^^~04/01/2011~
-~03301~^~263~^0.^0^^~4~^~FLC~^^^^^^^^^^~04/01/2011~
-~03301~^~268~^123.^0^^~4~^~NC~^^^^^^^^^^~02/01/2016~
-~03301~^~301~^71.^1^^~8~^~LC~^^^^^^^^^^~04/01/2011~
-~03301~^~304~^3.^0^^~4~^~FLC~^^^^^^^^^^~04/01/2011~
-~03301~^~305~^3.^0^^~4~^~FLC~^^^^^^^^^^~04/01/2011~
-~03301~^~306~^22.^1^^~8~^~LC~^^^^^^^^^^~04/01/2011~
-~03301~^~307~^11.^1^^~8~^~LC~^^^^^^^^^^~04/01/2011~
-~03301~^~318~^4.^0^^~4~^~NC~^^^^^^^^^^~04/01/2011~
-~03301~^~319~^0.^0^^~4~^~FLC~^^^^^^^^^^~04/01/2011~
-~03301~^~320~^0.^0^^~4~^~NC~^^^^^^^^^^~04/01/2011~
-~03301~^~321~^2.^0^^~4~^~FLC~^^^^^^^^^^~04/01/2011~
-~03301~^~322~^0.^0^^~4~^~FLC~^^^^^^^^^^~04/01/2011~
-~03301~^~324~^0.^0^^~4~^~FLC~^^^^^^^^^^~04/01/2011~
-~03301~^~334~^0.^0^^~4~^~FLC~^^^^^^^^^^~04/01/2011~
-~03301~^~337~^0.^0^^~4~^~FLC~^^^^^^^^^^~04/01/2011~
-~03301~^~338~^34.^0^^~4~^~FLC~^^^^^^^^^^~04/01/2011~
-~03301~^~417~^1.^0^^~4~^~FLC~^^^^^^^^^^~04/01/2011~
-~03301~^~431~^0.^0^^~4~^~FLC~^^^^^^^^^^~04/01/2011~
-~03301~^~432~^1.^0^^~4~^~FLC~^^^^^^^^^^~04/01/2011~
-~03301~^~435~^1.^0^^~4~^~NC~^^^^^^^^^^~04/01/2011~
-~03301~^~601~^0.^1^^~8~^~LC~^^^^^^^^^^~04/01/2011~
-~03302~^~208~^380.^0^^~4~^~NC~^^^^^^^^^^~02/01/2016~
-~03302~^~262~^0.^0^^~4~^~FLC~^^^^^^^^^^~04/01/2011~
-~03302~^~263~^0.^0^^~4~^~FLC~^^^^^^^^^^~04/01/2011~
-~03302~^~268~^1592.^0^^~4~^~NC~^^^^^^^^^^~02/01/2016~
-~03302~^~301~^457.^1^^~8~^~LC~^^^^^^^^^^~04/01/2011~
-~03302~^~304~^53.^0^^~4~^~FLC~^^^^^^^^^^~04/01/2011~
-~03302~^~305~^382.^0^^~4~^~FLC~^^^^^^^^^^~04/01/2011~
-~03302~^~306~^714.^1^^~8~^~LC~^^^^^^^^^^~04/01/2011~
-~03302~^~307~^286.^1^^~8~^~LC~^^^^^^^^^^~04/01/2011~
-~03302~^~318~^1396.^0^^~4~^~NC~^^^^^^^^^^~04/01/2011~
-~03302~^~319~^45.^0^^~4~^~FLC~^^^^^^^^^^~04/01/2011~
-~03302~^~320~^107.^0^^~4~^~NC~^^^^^^^^^^~04/01/2011~
-~03302~^~321~^686.^0^^~4~^~FLC~^^^^^^^^^^~04/01/2011~
-~03302~^~322~^0.^0^^~4~^~FLC~^^^^^^^^^^~04/01/2011~
-~03302~^~324~^3.^0^^~4~^~FLC~^^^^^^^^^^~04/01/2011~
-~03302~^~334~^122.^0^^~4~^~FLC~^^^^^^^^^^~04/01/2011~
-~03302~^~337~^0.^0^^~4~^~FLC~^^^^^^^^^^~04/01/2011~
-~03302~^~338~^294.^0^^~4~^~FLC~^^^^^^^^^^~04/01/2011~
-~03302~^~417~^55.^0^^~4~^~FLC~^^^^^^^^^^~04/01/2011~
-~03302~^~431~^0.^0^^~4~^~FLC~^^^^^^^^^^~04/01/2011~
-~03302~^~432~^55.^0^^~4~^~FLC~^^^^^^^^^^~04/01/2011~
-~03302~^~435~^55.^0^^~4~^~NC~^^^^^^^^^^~04/01/2011~
-~03302~^~601~^0.^1^^~8~^~LC~^^^^^^^^^^~04/01/2011~
-~03302~^~638~^0.^0^^~4~^~FLC~^^^^^^^^^^~04/01/2011~
-~03302~^~639~^0.^0^^~4~^~FLC~^^^^^^^^^^~04/01/2011~
-~03302~^~641~^0.^0^^~4~^~FLC~^^^^^^^^^^~04/01/2011~
-~03303~^~208~^74.^0^^~9~^~MC~^^^^^^^^^^~02/01/1999~
-~03303~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/1999~
-~03303~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/1999~
-~03303~^~268~^310.^0^^~9~^~MC~^^^^^^^^^^~03/01/2005~
-~03303~^~301~^30.^1^^~12~^~MA~^^^^^^^^^^~02/01/1999~
-~03303~^~304~^13.^1^^~12~^~MA~^^^^^^^^^^~02/01/1999~
-~03303~^~305~^25.^0^^~4~^~FLM~^^^^^^^^^^~02/01/1999~
-~03303~^~306~^200.^1^^~12~^~MA~^^^^^^^^^^~02/01/1999~
-~03303~^~307~^22.^1^^~12~^~MA~^^^^^^^^^^~02/01/1999~
-~03303~^~318~^4318.^0^^~4~^~NC~^^^^^^^^^^~04/01/2007~
-~03303~^~319~^1.^0^^~4~^~BNA~^^^^^^^^^^~03/01/2003~
-~03303~^~320~^216.^0^^~4~^~NC~^^^^^^^^^^~04/01/2007~
-~03303~^~321~^2590.^0^^~4~^~BNA~^^^^^^^^^^~03/01/2003~
-~03303~^~322~^0.^0^^~4~^~BNA~^^^^^^^^^^~03/01/2003~
-~03303~^~324~^4.^0^^~4~^~FLA~^^^^^^^^^^~03/01/2009~
-~03303~^~334~^0.^0^^~4~^~BNA~^^^^^^^^^^~03/01/2003~
-~03303~^~337~^0.^0^^~4~^~FLA~^^^^^^^^^^~03/01/2003~
-~03303~^~338~^0.^0^^~4~^~FLA~^^^^^^^^^^~03/01/2003~
-~03303~^~417~^6.^0^^~4~^~FLM~^^^^^^^^^^~02/01/1999~
-~03303~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~
-~03303~^~432~^6.^0^^~4~^~FLM~^^^^^^^^^^~03/01/2003~
-~03303~^~435~^6.^0^^~4~^~NC~^^^^^^^^^^~03/01/2009~
-~03303~^~601~^11.^1^^~12~^~MA~^^^^^^^^^^~02/01/1999~
-~03303~^~636~^0.^0^^~4~^~FLM~^^^^^^^^^^~02/01/1999~
-~03376~^~208~^71.^0^^~4~^~NC~^^^^^^^^^^~10/01/2016~
-~03376~^~268~^298.^0^^~4~^~NC~^^^^^^^^^^~10/01/2016~
-~03376~^~301~^61.^0^^~12~^~MA~^^^^^^^^^^~10/01/2016~
-~03376~^~304~^6.^0^^~12~^~MA~^^^^^^^^^^~10/01/2016~
-~03376~^~305~^34.^0^^~12~^~MA~^^^^^^^^^^~10/01/2016~
-~03376~^~306~^84.^0^^~12~^~MA~^^^^^^^^^^~10/01/2016~
-~03376~^~307~^21.^0^^~12~^~MA~^^^^^^^^^^~10/01/2016~
-~03376~^~318~^230.^0^^~12~^~MA~^^^^^^^^^^~10/01/2016~
-~03376~^~319~^70.^0^^~12~^~MA~^^^^^^^^^^~10/01/2016~
-~03376~^~320~^70.^0^^~12~^~MA~^^^^^^^^^^~10/01/2016~
-~03376~^~324~^59.^0^^~12~^~MA~^^^^^^^^^^~10/01/2016~
-~03376~^~417~^13.^0^^~12~^~MA~^^^^^^^^^^~10/01/2016~
-~03376~^~431~^13.^0^^~12~^~MA~^^^^^^^^^^~10/01/2016~
-~03376~^~432~^0.^0^^~4~^~NR~^^^^^^^^^^~10/01/2016~
-~03376~^~435~^21.^0^^~4~^~NC~^^^^^^^^^^~10/01/2016~
-~03376~^~601~^4.^0^^~12~^~MA~^^^^^^^^^^~10/01/2016~
-~03381~^~208~^514.^0^^~4~^~NC~^^^^^^^^^^~10/01/2016~
-~03381~^~268~^2150.^0^^~4~^~NC~^^^^^^^^^^~10/01/2016~
-~03381~^~301~^390.^0^^~12~^~MA~^^^^^^^^^^~10/01/2016~
-~03381~^~304~^40.^0^^~12~^~MA~^^^^^^^^^^~10/01/2016~
-~03381~^~305~^220.^0^^~12~^~MA~^^^^^^^^^^~10/01/2016~
-~03381~^~306~^540.^0^^~12~^~MA~^^^^^^^^^^~10/01/2016~
-~03381~^~307~^135.^0^^~12~^~MA~^^^^^^^^^^~10/01/2016~
-~03381~^~318~^1500.^0^^~12~^~MA~^^^^^^^^^^~10/01/2016~
-~03381~^~319~^450.^0^^~12~^~MA~^^^^^^^^^^~10/01/2016~
-~03381~^~320~^450.^0^^~12~^~MA~^^^^^^^^^^~10/01/2016~
-~03381~^~324~^300.^0^^~12~^~MA~^^^^^^^^^^~10/01/2016~
-~03381~^~417~^80.^0^^~12~^~MA~^^^^^^^^^^~10/01/2016~
-~03381~^~431~^80.^0^^~12~^~MA~^^^^^^^^^^~10/01/2016~
-~03381~^~432~^0.^0^^~12~^~MA~^^^^^^^^^^~10/01/2016~
-~03381~^~435~^136.^0^^~4~^~NC~^^^^^^^^^^~10/01/2016~
-~03381~^~601~^32.^0^^~12~^~MA~^^^^^^^^^^~10/01/2016~
-~03382~^~208~^81.^0^^~4~^~NC~^^^^^^^^^^~10/01/2016~
-~03382~^~268~^339.^0^^~4~^~NC~^^^^^^^^^^~10/01/2016~
-~03382~^~301~^139.^0^^~12~^~MA~^^^^^^^^^^~10/01/2016~
-~03382~^~304~^7.^0^^~12~^~MA~^^^^^^^^^^~10/01/2016~
-~03382~^~305~^70.^0^^~12~^~MA~^^^^^^^^^^~10/01/2016~
-~03382~^~306~^77.^0^^~12~^~MA~^^^^^^^^^^~10/01/2016~
-~03382~^~307~^55.^0^^~12~^~MA~^^^^^^^^^^~10/01/2016~
-~03382~^~318~^1050.^0^^~12~^~MA~^^^^^^^^^^~10/01/2016~
-~03382~^~319~^320.^0^^~12~^~MA~^^^^^^^^^^~10/01/2016~
-~03382~^~320~^320.^0^^~12~^~MA~^^^^^^^^^^~10/01/2016~
-~03382~^~324~^230.^0^^~12~^~MA~^^^^^^^^^^~10/01/2016~
-~03382~^~417~^31.^0^^~12~^~MA~^^^^^^^^^^~10/01/2016~
-~03382~^~431~^0.^0^^~4~^~NR~^^^^^^^^^^~10/01/2016~
-~03382~^~432~^31.^0^^~12~^~MA~^^^^^^^^^^~10/01/2016~
-~03382~^~435~^31.^0^^~4~^~NC~^^^^^^^^^^~10/01/2016~
-~03382~^~601~^7.^0^^~12~^~MA~^^^^^^^^^^~10/01/2016~
-~03384~^~208~^101.^0^^~4~^~NC~^^^^^^^^^^~10/01/2016~
-~03384~^~268~^421.^0^^~4~^~NC~^^^^^^^^^^~10/01/2016~
-~03384~^~301~^159.^0^^~12~^~MA~^^^^^^^^^^~10/01/2016~
-~03384~^~304~^9.^0^^~12~^~MA~^^^^^^^^^^~10/01/2016~
-~03384~^~305~^87.^0^^~12~^~MA~^^^^^^^^^^~10/01/2016~
-~03384~^~306~^95.^0^^~12~^~MA~^^^^^^^^^^~10/01/2016~
-~03384~^~307~^68.^0^^~12~^~MA~^^^^^^^^^^~10/01/2016~
-~03384~^~318~^1300.^0^^~12~^~MA~^^^^^^^^^^~10/01/2016~
-~03384~^~319~^400.^0^^~12~^~MA~^^^^^^^^^^~10/01/2016~
-~03384~^~320~^400.^0^^~12~^~MA~^^^^^^^^^^~10/01/2016~
-~03384~^~324~^290.^0^^~12~^~MA~^^^^^^^^^^~10/01/2016~
-~03384~^~417~^39.^0^^~12~^~MA~^^^^^^^^^^~10/01/2016~
-~03384~^~431~^0.^0^^~4~^~NR~^^^^^^^^^^~10/01/2016~
-~03384~^~432~^39.^0^^~12~^~MA~^^^^^^^^^^~10/01/2016~
-~03384~^~435~^39.^0^^~4~^~NC~^^^^^^^^^^~10/01/2016~
-~03384~^~601~^8.^0^^~12~^~MA~^^^^^^^^^^~10/01/2016~
-~03385~^~208~^513.^0^^~12~^~MA~^^^^^^^^^^~10/01/2016~
-~03385~^~268~^2146.^0^^~12~^~MA~^^^^^^^^^^~10/01/2016~
-~03385~^~301~^420.^0^^~12~^~MA~^^^^^^^^^^~10/01/2016~
-~03385~^~304~^41.^0^^~12~^~MA~^^^^^^^^^^~10/01/2016~
-~03385~^~305~^230.^0^^~12~^~MA~^^^^^^^^^^~10/01/2016~
-~03385~^~306~^550.^0^^~12~^~MA~^^^^^^^^^^~10/01/2016~
-~03385~^~307~^184.^0^^~12~^~MA~^^^^^^^^^^~10/01/2016~
-~03385~^~318~^1530.^0^^~12~^~MA~^^^^^^^^^^~10/01/2016~
-~03385~^~319~^460.^0^^~12~^~MA~^^^^^^^^^^~10/01/2016~
-~03385~^~320~^460.^0^^~12~^~MA~^^^^^^^^^^~10/01/2016~
-~03385~^~324~^380.^0^^~12~^~MA~^^^^^^^^^^~10/01/2016~
-~03385~^~417~^82.^0^^~12~^~MA~^^^^^^^^^^~10/01/2016~
-~03385~^~431~^0.^0^^~4~^~NR~^^^^^^^^^^~10/01/2016~
-~03385~^~432~^82.^0^^~12~^~MA~^^^^^^^^^^~10/01/2016~
-~03385~^~435~^82.^0^^~4~^~NC~^^^^^^^^^^~10/01/2016~
-~03385~^~601~^17.^0^^~12~^~MA~^^^^^^^^^^~10/01/2016~
-~03386~^~208~^513.^0^^~4~^~NC~^^^^^^^^^^~10/01/2016~
-~03386~^~268~^2148.^0^^~4~^~NC~^^^^^^^^^^~10/01/2016~
-~03386~^~301~^420.^0^^~12~^~MA~^^^^^^^^^^~10/01/2016~
-~03386~^~304~^41.^0^^~12~^~MA~^^^^^^^^^^~10/01/2016~
-~03386~^~305~^230.^0^^~12~^~MA~^^^^^^^^^^~10/01/2016~
-~03386~^~306~^550.^0^^~12~^~MA~^^^^^^^^^^~10/01/2016~
-~03386~^~307~^183.^0^^~12~^~MA~^^^^^^^^^^~10/01/2016~
-~03386~^~318~^1520.^0^^~12~^~MA~^^^^^^^^^^~10/01/2016~
-~03386~^~319~^460.^0^^~12~^~MA~^^^^^^^^^^~10/01/2016~
-~03386~^~320~^460.^0^^~12~^~MA~^^^^^^^^^^~10/01/2016~
-~03386~^~324~^300.^0^^~12~^~MA~^^^^^^^^^^~10/01/2016~
-~03386~^~417~^81.^0^^~12~^~MA~^^^^^^^^^^~10/01/2016~
-~03386~^~431~^81.^0^^~12~^~MA~^^^^^^^^^^~10/01/2016~
-~03386~^~432~^0.^0^^~12~^~MA~^^^^^^^^^^~10/01/2016~
-~03386~^~435~^138.^0^^~4~^~NC~^^^^^^^^^^~10/01/2016~
-~03386~^~601~^17.^0^^~12~^~MA~^^^^^^^^^^~10/01/2016~
-~03387~^~208~^68.^0^^~4~^~NC~^^^^^^^^^^~10/01/2016~
-~03387~^~268~^284.^0^^~4~^~NC~^^^^^^^^^^~10/01/2016~
-~03387~^~301~^54.^0^^~12~^~MA~^^^^^^^^^^~10/01/2016~
-~03387~^~304~^5.^0^^~12~^~MA~^^^^^^^^^^~10/01/2016~
-~03387~^~305~^30.^0^^~12~^~MA~^^^^^^^^^^~10/01/2016~
-~03387~^~306~^71.^0^^~12~^~MA~^^^^^^^^^^~10/01/2016~
-~03387~^~307~^24.^0^^~12~^~MA~^^^^^^^^^^~10/01/2016~
-~03387~^~318~^200.^0^^~12~^~MA~^^^^^^^^^^~10/01/2016~
-~03387~^~319~^59.^0^^~12~^~MA~^^^^^^^^^^~10/01/2016~
-~03387~^~320~^59.^0^^~12~^~MA~^^^^^^^^^^~10/01/2016~
-~03387~^~324~^39.^0^^~12~^~MA~^^^^^^^^^^~10/01/2016~
-~03387~^~417~^11.^0^^~12~^~MA~^^^^^^^^^^~10/01/2016~
-~03387~^~431~^11.^0^^~12~^~MA~^^^^^^^^^^~10/01/2016~
-~03387~^~432~^0.^0^^~4~^~NR~^^^^^^^^^^~10/01/2016~
-~03387~^~435~^18.^0^^~4~^~NC~^^^^^^^^^^~10/01/2016~
-~03387~^~601~^2.^0^^~12~^~MA~^^^^^^^^^^~10/01/2016~
-~03388~^~208~^68.^0^^~4~^~NC~^^^^^^^^^^~10/01/2016~
-~03388~^~268~^284.^0^^~4~^~NC~^^^^^^^^^^~10/01/2016~
-~03388~^~301~^54.^0^^~12~^~MA~^^^^^^^^^^~11/01/2016~
-~03388~^~304~^5.^0^^~12~^~MA~^^^^^^^^^^~11/01/2016~
-~03388~^~305~^34.^0^^~12~^~MA~^^^^^^^^^^~11/01/2016~
-~03388~^~306~^84.^0^^~12~^~MA~^^^^^^^^^^~11/01/2016~
-~03388~^~318~^200.^0^^~12~^~MA~^^^^^^^^^^~11/01/2016~
-~03388~^~319~^59.^0^^~12~^~MA~^^^^^^^^^^~11/01/2016~
-~03388~^~320~^59.^0^^~12~^~MA~^^^^^^^^^^~11/01/2016~
-~03388~^~324~^39.^0^^~12~^~MA~^^^^^^^^^^~11/01/2016~
-~03388~^~417~^11.^0^^~12~^~MA~^^^^^^^^^^~11/01/2016~
-~03388~^~432~^0.^0^^~12~^~MA~^^^^^^^^^^~11/01/2016~
-~03388~^~435~^18.^0^^~12~^~MA~^^^^^^^^^^~11/01/2016~
-~03389~^~208~^485.^0^^~4~^~NC~^^^^^^^^^^~10/01/2016~
-~03389~^~268~^2029.^0^^~4~^~NC~^^^^^^^^^^~10/01/2016~
-~03389~^~301~^620.^0^^~12~^~MA~^^^^^^^^^^~10/01/2016~
-~03389~^~304~^48.^0^^~12~^~MA~^^^^^^^^^^~10/01/2016~
-~03389~^~305~^350.^0^^~12~^~MA~^^^^^^^^^^~10/01/2016~
-~03389~^~306~^590.^0^^~12~^~MA~^^^^^^^^^^~10/01/2016~
-~03389~^~307~^178.^0^^~12~^~MA~^^^^^^^^^^~10/01/2016~
-~03389~^~318~^1440.^0^^~12~^~MA~^^^^^^^^^^~10/01/2016~
-~03389~^~319~^430.^0^^~12~^~MA~^^^^^^^^^^~10/01/2016~
-~03389~^~320~^430.^0^^~12~^~MA~^^^^^^^^^^~10/01/2016~
-~03389~^~324~^290.^0^^~12~^~MA~^^^^^^^^^^~10/01/2016~
-~03389~^~417~^77.^0^^~12~^~MA~^^^^^^^^^^~10/01/2016~
-~03389~^~431~^77.^0^^~12~^~MA~^^^^^^^^^^~10/01/2016~
-~03389~^~432~^0.^0^^~4~^~NR~^^^^^^^^^^~10/01/2016~
-~03389~^~435~^131.^0^^~4~^~NC~^^^^^^^^^^~10/01/2016~
-~03390~^~208~^69.^0^^~4~^~NC~^^^^^^^^^^~10/01/2016~
-~03390~^~268~^287.^0^^~4~^~NC~^^^^^^^^^^~10/01/2016~
-~03390~^~301~^62.^0^^~12~^~MA~^^^^^^^^^^~10/01/2016~
-~03390~^~304~^5.^0^^~12~^~MA~^^^^^^^^^^~10/01/2016~
-~03390~^~305~^34.^0^^~12~^~MA~^^^^^^^^^^~10/01/2016~
-~03390~^~306~^72.^0^^~12~^~MA~^^^^^^^^^^~10/01/2016~
-~03390~^~307~^31.^0^^~12~^~MA~^^^^^^^^^^~10/01/2016~
-~03390~^~318~^230.^0^^~12~^~MA~^^^^^^^^^^~10/01/2016~
-~03390~^~319~^69.^0^^~12~^~MA~^^^^^^^^^^~10/01/2016~
-~03390~^~320~^69.^0^^~12~^~MA~^^^^^^^^^^~10/01/2016~
-~03390~^~324~^33.^0^^~12~^~MA~^^^^^^^^^^~10/01/2016~
-~03390~^~417~^11.^0^^~12~^~MA~^^^^^^^^^^~10/01/2016~
-~03390~^~431~^11.^0^^~12~^~MA~^^^^^^^^^^~10/01/2016~
-~03390~^~432~^0.^0^^~4~^~NR~^^^^^^^^^^~10/01/2016~
-~03390~^~435~^18.^0^^~4~^~NC~^^^^^^^^^^~10/01/2016~
-~03391~^~208~^72.^0^^~4~^~NC~^^^^^^^^^^~10/01/2016~
-~03391~^~268~^302.^0^^~4~^~NC~^^^^^^^^^^~10/01/2016~
-~03391~^~301~^73.^0^^~12~^~MA~^^^^^^^^^^~10/01/2016~
-~03391~^~304~^6.^0^^~12~^~MA~^^^^^^^^^^~10/01/2016~
-~03391~^~305~^41.^0^^~12~^~MA~^^^^^^^^^^~10/01/2016~
-~03391~^~306~^86.^0^^~12~^~MA~^^^^^^^^^^~10/01/2016~
-~03391~^~307~^37.^0^^~12~^~MA~^^^^^^^^^^~10/01/2016~
-~03391~^~318~^270.^0^^~4~^~NR~^^^^^^^^^^~10/01/2016~
-~03391~^~319~^82.^0^^~12~^~MA~^^^^^^^^^^~10/01/2016~
-~03391~^~320~^82.^0^^~4~^~NR~^^^^^^^^^^~10/01/2016~
-~03391~^~321~^0.^0^^~12~^~MA~^^^^^^^^^^~10/01/2016~
-~03391~^~324~^39.^0^^~12~^~MA~^^^^^^^^^^~10/01/2016~
-~03391~^~417~^13.^0^^~12~^~MA~^^^^^^^^^^~10/01/2016~
-~03391~^~431~^13.^0^^~12~^~MA~^^^^^^^^^^~10/01/2016~
-~03391~^~432~^0.^0^^~4~^~NR~^^^^^^^^^^~10/01/2016~
-~03391~^~435~^21.^0^^~4~^~NC~^^^^^^^^^^~10/01/2016~
-~03392~^~208~^512.^0^^~4~^~NC~^^^^^^^^^^~11/01/2016~
-~03392~^~268~^2144.^0^^~4~^~NC~^^^^^^^^^^~11/01/2016~
-~03392~^~301~^470.^0^^~12~^~MA~^^^^^^^^^^~11/01/2016~
-~03392~^~304~^55.^0^^~12~^~MA~^^^^^^^^^^~11/01/2016~
-~03392~^~305~^260.^0^^~12~^~MA~^^^^^^^^^^~11/01/2016~
-~03392~^~306~^550.^0^^~12~^~MA~^^^^^^^^^^~11/01/2016~
-~03392~^~307~^230.^0^^~12~^~MA~^^^^^^^^^^~11/01/2016~
-~03392~^~318~^1490.^0^^~12~^~MA~^^^^^^^^^^~11/01/2016~
-~03392~^~319~^450.^0^^~12~^~MA~^^^^^^^^^^~11/01/2016~
-~03392~^~320~^450.^0^^~12~^~MA~^^^^^^^^^^~11/01/2016~
-~03392~^~324~^250.^0^^~12~^~MA~^^^^^^^^^^~11/01/2016~
-~03392~^~417~^80.^0^^~12~^~MA~^^^^^^^^^^~11/01/2016~
-~03392~^~431~^80.^0^^~12~^~MA~^^^^^^^^^^~11/01/2016~
-~03392~^~432~^0.^0^^~4~^~NR~^^^^^^^^^^~11/01/2016~
-~03392~^~435~^136.^0^^~4~^~NC~^^^^^^^^^^~11/01/2016~
-~03393~^~208~^68.^0^^~4~^~NC~^^^^^^^^^^~10/01/2016~
-~03393~^~268~^284.^0^^~4~^~NC~^^^^^^^^^^~10/01/2016~
-~03393~^~301~^54.^0^^~12~^~MA~^^^^^^^^^^~11/01/2016~
-~03393~^~304~^5.^0^^~12~^~MA~^^^^^^^^^^~11/01/2016~
-~03393~^~305~^30.^0^^~12~^~MA~^^^^^^^^^^~11/01/2016~
-~03393~^~306~^71.^0^^~12~^~MA~^^^^^^^^^^~11/01/2016~
-~03393~^~307~^24.^0^^~4~^~O~^^^^^^^^^^~10/01/2016~
-~03393~^~318~^200.^0^^~12~^~MA~^^^^^^^^^^~11/01/2016~
-~03393~^~319~^59.^0^^~12~^~MA~^^^^^^^^^^~11/01/2016~
-~03393~^~320~^59.^0^^~12~^~MA~^^^^^^^^^^~11/01/2016~
-~03393~^~324~^49.^0^^~12~^~MA~^^^^^^^^^^~11/01/2016~
-~03393~^~417~^11.^0^^~12~^~MA~^^^^^^^^^^~11/01/2016~
-~03393~^~431~^11.^0^^~12~^~MA~^^^^^^^^^^~11/01/2016~
-~03393~^~432~^0.^0^^~12~^~MA~^^^^^^^^^^~11/01/2016~
-~03393~^~435~^18.^0^^~4~^~NC~^^^^^^^^^^~10/01/2016~
-~03681~^~208~^84.^0^^~4~^~NC~^^^^^^^^^^~02/01/2009~
-~03681~^~262~^0.^0^^~6~^~RPI~^^^^^^^^^^~02/01/2009~
-~03681~^~263~^0.^0^^~6~^~RPI~^^^^^^^^^^~02/01/2009~
-~03681~^~268~^352.^0^^~4~^~NC~^^^^^^^^^^~02/01/2009~
-~03681~^~301~^162.^0^^~1~^~RPA~^^^^^^^^^^~02/01/2009~
-~03681~^~304~^18.^0^^~1~^~RPA~^^^^^^^^^^~02/01/2009~
-~03681~^~305~^110.^0^^~1~^~RPA~^^^^^^^^^^~02/01/2009~
-~03681~^~306~^151.^0^^~1~^~RPA~^^^^^^^^^^~02/01/2009~
-~03681~^~307~^43.^0^^~1~^~RPA~^^^^^^^^^^~02/01/2009~
-~03681~^~318~^150.^0^^~6~^~RPI~^^^^^^^^^^~02/01/2009~
-~03681~^~319~^42.^0^^~6~^~RPI~^^^^^^^^^^~02/01/2009~
-~03681~^~320~^43.^0^^~6~^~RPI~^^^^^^^^^^~02/01/2009~
-~03681~^~321~^6.^0^^~6~^~RPI~^^^^^^^^^^~02/01/2009~
-~03681~^~322~^0.^0^^~6~^~RPI~^^^^^^^^^^~02/01/2009~
-~03681~^~324~^47.^0^^~1~^~RPA~^^^^^^^^^^~02/01/2009~
-~03681~^~334~^0.^0^^~6~^~RPI~^^^^^^^^^^~02/01/2009~
-~03681~^~337~^0.^0^^~6~^~RPI~^^^^^^^^^^~02/01/2009~
-~03681~^~338~^12.^0^^~6~^~RPI~^^^^^^^^^^~02/01/2009~
-~03681~^~417~^7.^0^^~1~^~RPA~^^^^^^^^^^~02/01/2009~
-~03681~^~431~^0.^0^^~6~^~RPI~^^^^^^^^^^~02/01/2009~
-~03681~^~432~^7.^0^^~1~^~RPA~^^^^^^^^^^~02/01/2009~
-~03681~^~435~^7.^0^^~4~^~NC~^^^^^^^^^^~02/01/2009~
-~03681~^~601~^10.^0^^~6~^~RPI~^^^^^^^^^^~02/01/2009~
-~03682~^~208~^111.^0^^~4~^~NC~^^^^^^^^^^~12/01/1978~
-~03682~^~268~^464.^0^^~4~^^^^^^^^^^^
-~03682~^~301~^218.^0^^~1~^^^^^^^^^^^~12/01/1978~
-~03682~^~304~^48.^0^^~1~^^^^^^^^^^^~12/01/1978~
-~03682~^~305~^177.^0^^~1~^^^^^^^^^^^~12/01/1978~
-~03682~^~306~^349.^0^^~1~^^^^^^^^^^^~12/01/1978~
-~03682~^~307~^49.^0^^~1~^^^^^^^^^^^~12/01/1978~
-~03682~^~318~^105.^0^^~4~^^^^^^^^^^^~12/01/1978~
-~03682~^~417~^35.^0^^~1~^^^^^^^^^^^~12/01/1978~
-~03682~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~
-~03682~^~432~^35.^0^^~1~^^^^^^^^^^^~12/01/1978~
-~03682~^~435~^35.^0^^~4~^~NC~^^^^^^^^^^~01/01/2001~
-~03685~^~208~^96.^0^^~4~^~NC~^^^^^^^^^^~02/01/2009~
-~03685~^~262~^0.^0^^~4~^~RA~^^^^^^^^^^~02/01/2009~
-~03685~^~263~^0.^0^^~4~^~RA~^^^^^^^^^^~02/01/2009~
-~03685~^~268~^402.^0^^~4~^~NC~^^^^^^^^^^~02/01/2009~
-~03685~^~301~^220.^0^^~4~^~RA~^^^^^^^^^^~05/01/2009~
-~03685~^~304~^20.^0^^~4~^~RA~^^^^^^^^^^~02/01/2009~
-~03685~^~305~^118.^0^^~4~^~RA~^^^^^^^^^^~02/01/2009~
-~03685~^~306~^166.^0^^~4~^~RA~^^^^^^^^^^~02/01/2009~
-~03685~^~307~^42.^0^^~4~^~RA~^^^^^^^^^^~02/01/2009~
-~03685~^~318~^146.^0^^~4~^~RA~^^^^^^^^^^~02/01/2009~
-~03685~^~319~^40.^0^^~4~^~RA~^^^^^^^^^^~02/01/2009~
-~03685~^~320~^41.^0^^~4~^~RA~^^^^^^^^^^~02/01/2009~
-~03685~^~321~^7.^0^^~4~^~RA~^^^^^^^^^^~02/01/2009~
-~03685~^~322~^1.^0^^~4~^~RA~^^^^^^^^^^~02/01/2009~
-~03685~^~324~^45.^0^^~4~^~RA~^^^^^^^^^^~02/01/2009~
-~03685~^~334~^0.^0^^~4~^~RA~^^^^^^^^^^~02/01/2009~
-~03685~^~337~^0.^0^^~4~^~RA~^^^^^^^^^^~02/01/2009~
-~03685~^~338~^16.^0^^~4~^~RA~^^^^^^^^^^~02/01/2009~
-~03685~^~417~^9.^0^^~4~^~RA~^^^^^^^^^^~02/01/2009~
-~03685~^~431~^0.^0^^~4~^~RA~^^^^^^^^^^~02/01/2009~
-~03685~^~432~^9.^0^^~4~^~RA~^^^^^^^^^^~02/01/2009~
-~03685~^~435~^9.^0^^~4~^~NC~^^^^^^^^^^~05/01/2009~
-~03685~^~601~^9.^0^^~4~^~RA~^^^^^^^^^^~02/01/2009~
-~03686~^~208~^86.^0^^~4~^~NC~^^^^^^^^^^~05/01/2009~
-~03686~^~262~^0.^0^^~4~^~RA~^^^^^^^^^^~02/01/2009~
-~03686~^~263~^0.^0^^~4~^~RA~^^^^^^^^^^~02/01/2009~
-~03686~^~268~^362.^0^^~4~^~NC~^^^^^^^^^^~05/01/2009~
-~03686~^~301~^153.^0^^~4~^~RA~^^^^^^^^^^~02/01/2009~
-~03686~^~304~^18.^0^^~4~^~RA~^^^^^^^^^^~02/01/2009~
-~03686~^~305~^111.^0^^~4~^~RA~^^^^^^^^^^~02/01/2009~
-~03686~^~306~^178.^0^^~4~^~RA~^^^^^^^^^^~02/01/2009~
-~03686~^~307~^48.^0^^~4~^~RA~^^^^^^^^^^~02/01/2009~
-~03686~^~318~^155.^0^^~4~^~RA~^^^^^^^^^^~02/01/2009~
-~03686~^~319~^42.^0^^~4~^~RA~^^^^^^^^^^~02/01/2009~
-~03686~^~320~^43.^0^^~4~^~RA~^^^^^^^^^^~02/01/2009~
-~03686~^~321~^8.^0^^~4~^~RA~^^^^^^^^^^~02/01/2009~
-~03686~^~322~^2.^0^^~4~^~RA~^^^^^^^^^^~02/01/2009~
-~03686~^~324~^47.^0^^~4~^~RA~^^^^^^^^^^~02/01/2009~
-~03686~^~334~^0.^0^^~4~^~RA~^^^^^^^^^^~02/01/2009~
-~03686~^~337~^0.^0^^~4~^~RA~^^^^^^^^^^~02/01/2009~
-~03686~^~338~^12.^0^^~4~^~RA~^^^^^^^^^^~02/01/2009~
-~03686~^~417~^6.^0^^~4~^~RA~^^^^^^^^^^~02/01/2009~
-~03686~^~431~^0.^0^^~4~^~RA~^^^^^^^^^^~02/01/2009~
-~03686~^~432~^6.^0^^~4~^~RA~^^^^^^^^^^~02/01/2009~
-~03686~^~435~^6.^0^^~4~^~NC~^^^^^^^^^^~05/01/2009~
-~03686~^~601~^10.^0^^~4~^~RA~^^^^^^^^^^~02/01/2009~
-~03689~^~208~^116.^0^^~4~^~NC~^^^^^^^^^^~12/01/1978~
-~03689~^~268~^485.^0^^~4~^^^^^^^^^^^~02/01/2009~
-~03689~^~301~^220.^0^^~1~^^^^^^^^^^^~12/01/1978~
-~03689~^~304~^35.^0^^~1~^^^^^^^^^^^~12/01/1978~
-~03689~^~305~^160.^0^^~1~^^^^^^^^^^^~12/01/1978~
-~03689~^~306~^204.^0^^~1~^^^^^^^^^^^~12/01/1978~
-~03689~^~307~^46.^0^^~1~^^^^^^^^^^^~12/01/1978~
-~03689~^~318~^105.^0^^~4~^^^^^^^^^^^~12/01/1978~
-~03689~^~319~^19.^0^^~4~^~NC~^^^^^^^^^^~06/01/2002~
-~03689~^~320~^22.^0^^~4~^~NC~^^^^^^^^^^~06/01/2002~
-~03689~^~417~^10.^0^^~1~^^^^^^^^^^^~12/01/1978~
-~03689~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~
-~03689~^~432~^10.^0^^~1~^^^^^^^^^^^~12/01/1978~
-~03689~^~435~^10.^0^^~4~^~NC~^^^^^^^^^^~02/01/2009~
-~03689~^~601~^11.^0^^~4~^^^^^^^^^^^~01/01/1994~
-~03690~^~208~^86.^0^^~4~^~NC~^^^^^^^^^^~02/01/2009~
-~03690~^~262~^0.^0^^~4~^~RA~^^^^^^^^^^~02/01/2009~
-~03690~^~263~^0.^0^^~4~^~RA~^^^^^^^^^^~02/01/2009~
-~03690~^~268~^362.^0^^~4~^~NC~^^^^^^^^^^~02/01/2009~
-~03690~^~301~^153.^0^^~4~^~RA~^^^^^^^^^^~02/01/2009~
-~03690~^~304~^18.^0^^~4~^~RA~^^^^^^^^^^~02/01/2009~
-~03690~^~305~^111.^0^^~4~^~RA~^^^^^^^^^^~02/01/2009~
-~03690~^~306~^178.^0^^~4~^~RA~^^^^^^^^^^~02/01/2009~
-~03690~^~307~^48.^0^^~4~^~RA~^^^^^^^^^^~02/01/2009~
-~03690~^~318~^155.^0^^~4~^~RA~^^^^^^^^^^~02/01/2009~
-~03690~^~319~^42.^0^^~4~^~RA~^^^^^^^^^^~02/01/2009~
-~03690~^~320~^43.^0^^~4~^~RA~^^^^^^^^^^~02/01/2009~
-~03690~^~321~^8.^0^^~4~^~RA~^^^^^^^^^^~02/01/2009~
-~03690~^~322~^2.^0^^~4~^~RA~^^^^^^^^^^~02/01/2009~
-~03690~^~324~^47.^0^^~4~^~RA~^^^^^^^^^^~02/01/2009~
-~03690~^~334~^0.^0^^~4~^~RA~^^^^^^^^^^~02/01/2009~
-~03690~^~337~^0.^0^^~4~^~RA~^^^^^^^^^^~02/01/2009~
-~03690~^~338~^12.^0^^~4~^~RA~^^^^^^^^^^~02/01/2009~
-~03690~^~417~^6.^0^^~4~^~RA~^^^^^^^^^^~02/01/2009~
-~03690~^~431~^0.^0^^~4~^~RA~^^^^^^^^^^~02/01/2009~
-~03690~^~432~^6.^0^^~4~^~RA~^^^^^^^^^^~02/01/2009~
-~03690~^~435~^6.^0^^~4~^~NC~^^^^^^^^^^~02/01/2009~
-~03690~^~601~^10.^0^^~4~^~RA~^^^^^^^^^^~02/01/2009~
-~03693~^~208~^115.^0^^~4~^~NC~^^^^^^^^^^~12/01/1978~
-~03693~^~268~^481.^0^^~4~^^^^^^^^^^^
-~03693~^~301~^289.^0^^~1~^^^^^^^^^^^~12/01/1978~
-~03693~^~304~^35.^0^^~4~^^^^^^^^^^^~12/01/1978~
-~03693~^~305~^198.^0^^~1~^^^^^^^^^^^~12/01/1978~
-~03693~^~306~^170.^0^^~1~^^^^^^^^^^^~12/01/1978~
-~03693~^~307~^49.^0^^~1~^^^^^^^^^^^~12/01/1978~
-~03693~^~417~^10.^0^^~4~^^^^^^^^^^^~12/01/1978~
-~03693~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~
-~03693~^~432~^10.^0^^~4~^^^^^^^^^^^~12/01/1978~
-~03693~^~435~^10.^0^^~4~^~NC~^^^^^^^^^^~01/01/2001~
-~03694~^~208~^85.^0^^~4~^~NC~^^^^^^^^^^~02/01/2009~
-~03694~^~262~^0.^0^^~4~^~RA~^^^^^^^^^^~02/01/2009~
-~03694~^~263~^0.^0^^~4~^~RA~^^^^^^^^^^~02/01/2009~
-~03694~^~268~^357.^0^^~4~^~NC~^^^^^^^^^^~02/01/2009~
-~03694~^~301~^168.^0^^~4~^~RA~^^^^^^^^^^~02/01/2009~
-~03694~^~304~^25.^0^^~4~^~RA~^^^^^^^^^^~02/01/2009~
-~03694~^~305~^122.^0^^~4~^~RA~^^^^^^^^^^~02/01/2009~
-~03694~^~306~^151.^0^^~4~^~RA~^^^^^^^^^^~02/01/2009~
-~03694~^~307~^42.^0^^~4~^~RA~^^^^^^^^^^~02/01/2009~
-~03694~^~318~^150.^0^^~4~^~RA~^^^^^^^^^^~02/01/2009~
-~03694~^~319~^42.^0^^~4~^~RA~^^^^^^^^^^~02/01/2009~
-~03694~^~320~^42.^0^^~4~^~NC~^^^^^^^^^^~02/01/2009~
-~03694~^~321~^6.^0^^~4~^~RA~^^^^^^^^^^~02/01/2009~
-~03694~^~322~^0.^0^^~4~^~RA~^^^^^^^^^^~02/01/2009~
-~03694~^~324~^47.^0^^~4~^~RA~^^^^^^^^^^~02/01/2009~
-~03694~^~334~^0.^0^^~4~^~RA~^^^^^^^^^^~02/01/2009~
-~03694~^~337~^0.^0^^~4~^~RA~^^^^^^^^^^~02/01/2009~
-~03694~^~338~^0.^0^^~4~^~RA~^^^^^^^^^^~02/01/2009~
-~03694~^~417~^6.^0^^~4~^~RA~^^^^^^^^^^~02/01/2009~
-~03694~^~431~^0.^0^^~4~^~RA~^^^^^^^^^^~02/01/2009~
-~03694~^~432~^6.^0^^~4~^~RA~^^^^^^^^^^~02/01/2009~
-~03694~^~435~^6.^0^^~4~^~NC~^^^^^^^^^^~02/01/2009~
-~03694~^~601~^10.^0^^~4~^~RA~^^^^^^^^^^~02/01/2009~
-~03696~^~208~^115.^0^^~4~^~NC~^^^^^^^^^^~12/01/1978~
-~03696~^~268~^481.^0^^~4~^^^^^^^^^^^
-~03696~^~301~^291.^0^^~1~^^^^^^^^^^^~12/01/1978~
-~03696~^~304~^45.^0^^~4~^^^^^^^^^^^~12/01/1978~
-~03696~^~305~^181.^0^^~1~^^^^^^^^^^^~12/01/1978~
-~03696~^~306~^141.^0^^~1~^^^^^^^^^^^~12/01/1978~
-~03696~^~307~^49.^0^^~1~^^^^^^^^^^^~12/01/1978~
-~03696~^~318~^108.^0^^~4~^~NC~^^^^^^^^^^~04/01/2002~
-~03696~^~319~^19.^0^^~4~^~NR~^^^^^^^^^^~04/01/2002~
-~03696~^~320~^21.^0^^~4~^~NC~^^^^^^^^^^~04/01/2002~
-~03696~^~321~^27.^0^^~4~^~NR~^^^^^^^^^^~04/01/2002~
-~03696~^~417~^8.^0^^~4~^^^^^^^^^^^~12/01/1978~
-~03696~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~
-~03696~^~432~^8.^0^^~4~^^^^^^^^^^^~12/01/1978~
-~03696~^~435~^8.^0^^~4~^~NC~^^^^^^^^^^~04/01/2002~
-~03704~^~208~^115.^0^^~4~^~NC~^^^^^^^^^^~12/01/1978~
-~03704~^~268~^481.^0^^~4~^^^^^^^^^^^
-~03704~^~301~^294.^0^^~1~^^^^^^^^^^^~12/01/1978~
-~03704~^~304~^28.^0^^~4~^^^^^^^^^^^~12/01/1978~
-~03704~^~305~^184.^0^^~1~^^^^^^^^^^^~12/01/1978~
-~03704~^~306~^171.^0^^~1~^^^^^^^^^^^~12/01/1978~
-~03704~^~307~^48.^0^^~1~^^^^^^^^^^^~12/01/1978~
-~03704~^~417~^11.^0^^~4~^^^^^^^^^^^~12/01/1978~
-~03704~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~
-~03704~^~432~^11.^0^^~4~^^^^^^^^^^^~12/01/1978~
-~03704~^~435~^11.^0^^~4~^~NC~^^^^^^^^^^~01/01/2001~
-~03711~^~208~^112.^0^^~4~^~NC~^^^^^^^^^^~12/01/1978~
-~03711~^~268~^469.^0^^~4~^^^^^^^^^^^
-~03711~^~301~^223.^0^^~1~^^^^^^^^^^^~12/01/1978~
-~03711~^~304~^37.^0^^~1~^^^^^^^^^^^~12/01/1978~
-~03711~^~305~^166.^0^^~1~^^^^^^^^^^^~12/01/1978~
-~03711~^~306~^346.^0^^~1~^^^^^^^^^^^~12/01/1978~
-~03711~^~307~^58.^0^^~1~^^^^^^^^^^^~12/01/1978~
-~03711~^~417~^28.^0^^~4~^^^^^^^^^^^~12/01/1978~
-~03711~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~
-~03711~^~432~^28.^0^^~4~^^^^^^^^^^^~12/01/1978~
-~03711~^~435~^28.^0^^~4~^~NC~^^^^^^^^^^~01/01/2001~
-~03712~^~208~^86.^0^^~4~^~NC~^^^^^^^^^^~02/01/2009~
-~03712~^~262~^0.^0^^~4~^~RA~^^^^^^^^^^~02/01/2009~
-~03712~^~263~^0.^0^^~4~^~RA~^^^^^^^^^^~02/01/2009~
-~03712~^~268~^360.^0^^~4~^~NC~^^^^^^^^^^~02/01/2009~
-~03712~^~301~^156.^0^^~4~^~RA~^^^^^^^^^^~02/01/2009~
-~03712~^~304~^20.^0^^~4~^~RA~^^^^^^^^^^~02/01/2009~
-~03712~^~305~^109.^0^^~4~^~RA~^^^^^^^^^^~02/01/2009~
-~03712~^~306~^180.^0^^~4~^~RA~^^^^^^^^^^~02/01/2009~
-~03712~^~307~^47.^0^^~4~^~RA~^^^^^^^^^^~02/01/2009~
-~03712~^~318~^152.^0^^~4~^~RA~^^^^^^^^^^~02/01/2009~
-~03712~^~319~^42.^0^^~4~^~RA~^^^^^^^^^^~02/01/2009~
-~03712~^~320~^43.^0^^~4~^~RA~^^^^^^^^^^~02/01/2009~
-~03712~^~321~^7.^0^^~4~^~RA~^^^^^^^^^^~02/01/2009~
-~03712~^~322~^1.^0^^~4~^~RA~^^^^^^^^^^~02/01/2009~
-~03712~^~324~^47.^0^^~4~^~RA~^^^^^^^^^^~02/01/2009~
-~03712~^~334~^0.^0^^~4~^~RA~^^^^^^^^^^~02/01/2009~
-~03712~^~337~^0.^0^^~4~^~RA~^^^^^^^^^^~02/01/2009~
-~03712~^~338~^3.^0^^~4~^~RA~^^^^^^^^^^~02/01/2009~
-~03712~^~417~^6.^0^^~4~^~RA~^^^^^^^^^^~02/01/2009~
-~03712~^~431~^0.^0^^~4~^~RA~^^^^^^^^^^~02/01/2009~
-~03712~^~432~^6.^0^^~4~^~RA~^^^^^^^^^^~02/01/2009~
-~03712~^~435~^6.^0^^~4~^~NC~^^^^^^^^^^~02/01/2009~
-~03712~^~601~^10.^0^^~4~^~RA~^^^^^^^^^^~02/01/2009~
-~03801~^~208~^127.^0^^~9~^^^^^^^^^^^~06/01/1994~
-~03801~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~
-~03801~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~
-~03801~^~268~^531.^0^^~9~^^^^^^^^^^^~05/01/2004~
-~03801~^~301~^81.^0^^~4~^~T~^^^^^^^^^^~03/01/2003~
-~03801~^~304~^9.^0^^~9~^~MC~^^^^^^^^^^~05/01/2004~
-~03801~^~305~^46.^0^^~12~^^^^^^^^^^^~06/01/1994~
-~03801~^~306~^137.^0^^~9~^~MC~^^^^^^^^^^~05/01/2004~
-~03801~^~307~^34.^0^^~9~^~MC~^^^^^^^^^^~05/01/2004~
-~03801~^~318~^381.^0^^~9~^~MC~^^^^^^^^^^~05/01/2004~
-~03801~^~319~^114.^0^^~4~^~T~^^^^^^^^^^~02/01/2003~
-~03801~^~320~^114.^0^^~4~^~NC~^^^^^^^^^^~02/01/2003~
-~03801~^~321~^0.^0^^~4~^~T~^^^^^^^^^^~02/01/2003~
-~03801~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~
-~03801~^~324~^76.^0^^~9~^~MC~^^^^^^^^^^~12/01/2007~
-~03801~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~
-~03801~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~
-~03801~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~
-~03801~^~417~^19.^0^^~4~^~T~^^^^^^^^^^~03/01/2003~
-~03801~^~431~^19.^0^^~4~^~NR~^^^^^^^^^^~02/01/2003~
-~03801~^~432~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~
-~03801~^~435~^32.^0^^~4~^~NC~^^^^^^^^^^~12/01/2007~
-~03801~^~601~^2.^0^^~4~^~NR~^^^^^^^^^^~05/01/2007~
-~03802~^~208~^509.^0^^~4~^~NC~^^^^^^^^^^~05/01/2004~
-~03802~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~
-~03802~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~
-~03802~^~268~^2131.^0^^~4~^~NC~^^^^^^^^^^~05/01/2004~
-~03802~^~301~^343.^0^^~9~^~MC~^^^^^^^^^^~06/01/2007~
-~03802~^~304~^36.^0^^~9~^~MC~^^^^^^^^^^~05/01/2004~
-~03802~^~305~^184.^0^^~9~^~MC~^^^^^^^^^^~05/01/2004~
-~03802~^~306~^553.^0^^~9~^~MC~^^^^^^^^^^~05/01/2004~
-~03802~^~307~^138.^0^^~9~^~MC~^^^^^^^^^^~05/01/2004~
-~03802~^~318~^1537.^0^^~4~^~NC~^^^^^^^^^^~04/01/2003~
-~03802~^~319~^461.^0^^~4~^~T~^^^^^^^^^^~02/01/2003~
-~03802~^~320~^461.^0^^~4~^~NC~^^^^^^^^^^~06/01/2007~
-~03802~^~321~^0.^0^^~4~^~T~^^^^^^^^^^~02/01/2003~
-~03802~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~
-~03802~^~324~^307.^0^^~9~^~MC~^^^^^^^^^^~12/01/2007~
-~03802~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~
-~03802~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~
-~03802~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~
-~03802~^~417~^77.^0^^~9~^~MC~^^^^^^^^^^~05/01/2004~
-~03802~^~431~^77.^0^^~9~^~MC~^^^^^^^^^^~05/01/2004~
-~03802~^~432~^0.^0^^~4~^~NC~^^^^^^^^^^~02/01/2003~
-~03802~^~435~^131.^0^^~4~^~NC~^^^^^^^^^^~12/01/2007~
-~03802~^~601~^32.^0^^~12~^~MA~^^^^^^^^^^~05/01/2004~
-~03805~^~208~^520.^0^^~9~^~MC~^^^^^^^^^^~05/01/2004~
-~03805~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~
-~03805~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~
-~03805~^~268~^2176.^0^^~9~^~MC~^^^^^^^^^^~05/01/2004~
-~03805~^~301~^400.^0^^~12~^~MA~^^^^^^^^^^~01/01/1996~
-~03805~^~304~^41.^0^^~12~^~MA~^^^^^^^^^^~01/01/1996~
-~03805~^~305~^270.^0^^~12~^~MA~^^^^^^^^^^~01/01/1996~
-~03805~^~306~^560.^0^^~12~^~MA~^^^^^^^^^^~01/01/1996~
-~03805~^~307~^139.^0^^~9~^~MC~^^^^^^^^^^~05/01/2004~
-~03805~^~318~^1567.^0^^~4~^~NC~^^^^^^^^^^~01/01/2009~
-~03805~^~319~^470.^0^^~9~^~MC~^^^^^^^^^^~05/01/2004~
-~03805~^~320~^470.^0^^~9~^~MC~^^^^^^^^^^~05/01/2004~
-~03805~^~321~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~
-~03805~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~
-~03805~^~324~^310.^0^^~4~^~S~^^^^^^^^^^~02/01/2003~
-~03805~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~
-~03805~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~
-~03805~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~
-~03805~^~417~^83.^0^^~12~^~MA~^^^^^^^^^^~01/01/1996~
-~03805~^~431~^83.^0^^~4~^~S~^^^^^^^^^^~02/01/2003~
-~03805~^~432~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~
-~03805~^~435~^141.^0^^~4~^~NC~^^^^^^^^^^~01/01/2009~
-~03805~^~601~^17.^0^^~9~^~MC~^^^^^^^^^^~05/01/2004~
-~03808~^~208~^511.^0^^~4~^~NC~^~03805~^^^^^^^^^~05/01/2004~
-~03808~^~262~^0.^0^^~4~^~BFZN~^~03805~^^^^^^^^^~04/01/2004~
-~03808~^~263~^0.^0^^~4~^~BFZN~^~03805~^^^^^^^^^~04/01/2004~
-~03808~^~268~^2138.^0^^~4~^~NC~^~03805~^^^^^^^^^~05/01/2004~
-~03808~^~301~^400.^0^^~4~^~BFZN~^~03805~^^^^^^^^^~04/01/2004~
-~03808~^~304~^41.^0^^~4~^~BFZN~^~03805~^^^^^^^^^~04/01/2004~
-~03808~^~305~^270.^0^^~4~^~BFZN~^~03805~^^^^^^^^^~04/01/2004~
-~03808~^~306~^560.^0^^~4~^~BFZN~^~03805~^^^^^^^^^~04/01/2004~
-~03808~^~307~^139.^0^^~9~^~MC~^~03805~^^^^^^^^^~05/01/2004~
-~03808~^~318~^1567.^0^^~4~^~NC~^~03805~^^^^^^^^^~10/01/2016~
-~03808~^~319~^470.^0^^~9~^~MC~^~03805~^^^^^^^^^~05/01/2004~
-~03808~^~320~^470.^0^^~4~^~NC~^~03805~^^^^^^^^^~10/01/2016~
-~03808~^~321~^0.^0^^~4~^~BFZN~^~03805~^^^^^^^^^~04/01/2004~
-~03808~^~322~^0.^0^^~4~^~BFZN~^~03805~^^^^^^^^^~04/01/2004~
-~03808~^~324~^310.^0^^~4~^~BFZN~^~03805~^^^^^^^^^~04/01/2004~
-~03808~^~334~^0.^0^^~4~^~BFZN~^~03805~^^^^^^^^^~04/01/2004~
-~03808~^~337~^0.^0^^~4~^~BFZN~^~03805~^^^^^^^^^~04/01/2004~
-~03808~^~338~^0.^0^^~4~^~BFZN~^~03805~^^^^^^^^^~04/01/2004~
-~03808~^~417~^83.^0^^~4~^~BFZN~^~03805~^^^^^^^^^~04/01/2004~
-~03808~^~431~^83.^0^^~4~^~BFZN~^~03805~^^^^^^^^^~04/01/2004~
-~03808~^~432~^0.^0^^~4~^~BFZN~^~03805~^^^^^^^^^~04/01/2004~
-~03808~^~435~^141.^0^^~4~^~NC~^~03805~^^^^^^^^^~05/01/2007~
-~03808~^~601~^17.^0^^~9~^~MC~^~03805~^^^^^^^^^~05/01/2004~
-~03812~^~208~^68.^0^^~4~^~NC~^^^^^^^^^^~10/01/2016~
-~03812~^~262~^0.^0^^~4~^~BFZN~^^^^^^^^^^~04/01/2004~
-~03812~^~263~^0.^0^^~4~^~BFZN~^^^^^^^^^^~04/01/2004~
-~03812~^~268~^285.^0^^~4~^~NC~^^^^^^^^^^~10/01/2016~
-~03812~^~301~^51.^0^^~12~^~MA~^^^^^^^^^^~10/01/2016~
-~03812~^~304~^5.^0^^~12~^~MA~^^^^^^^^^^~10/01/2016~
-~03812~^~305~^28.^0^^~12~^~MA~^^^^^^^^^^~10/01/2016~
-~03812~^~306~^71.^0^^~12~^~MA~^^^^^^^^^^~10/01/2016~
-~03812~^~307~^18.^0^^~12~^~MA~^^^^^^^^^^~10/01/2016~
-~03812~^~318~^197.^0^^~4~^~NC~^^^^^^^^^^~10/01/2016~
-~03812~^~319~^59.^0^^~12~^~MA~^^^^^^^^^^~10/01/2016~
-~03812~^~320~^59.^0^^~4~^~NC~^^^^^^^^^^~10/01/2016~
-~03812~^~321~^0.^0^^~4~^~BFZN~^^^^^^^^^^~04/01/2004~
-~03812~^~322~^0.^0^^~4~^~BFZN~^^^^^^^^^^~04/01/2004~
-~03812~^~324~^39.^0^^~12~^~MA~^^^^^^^^^^~10/01/2016~
-~03812~^~334~^0.^0^^~4~^~BFZN~^^^^^^^^^^~04/01/2004~
-~03812~^~337~^0.^0^^~4~^~BFZN~^^^^^^^^^^~04/01/2004~
-~03812~^~338~^0.^0^^~4~^~BFZN~^^^^^^^^^^~04/01/2004~
-~03812~^~417~^11.^0^^~12~^~MA~^^^^^^^^^^~10/01/2016~
-~03812~^~431~^11.^0^^~12~^~MA~^^^^^^^^^^~10/01/2016~
-~03812~^~432~^0.^0^^~4~^~BFZN~^^^^^^^^^^~04/01/2004~
-~03812~^~435~^18.^0^^~4~^~NC~^^^^^^^^^^~10/01/2016~
-~03812~^~601~^2.^0^^~12~^~MA~^^^^^^^^^^~10/01/2016~
-~03815~^~208~^64.^0^^~4~^~NR~^^^^^^^^^^~08/01/2010~
-~03815~^~262~^0.^0^^~4~^~BFZN~^^^^^^^^^^~04/01/2004~
-~03815~^~263~^0.^0^^~4~^~BFZN~^^^^^^^^^^~04/01/2004~
-~03815~^~268~^268.^0^^~4~^~NR~^^^^^^^^^^~08/01/2010~
-~03815~^~301~^51.^0^^~4~^~BFZN~^^^^^^^^^^~04/01/2004~
-~03815~^~304~^5.^0^^~9~^~MC~^^^^^^^^^^~05/01/2004~
-~03815~^~305~^35.^0^^~4~^~BFZN~^^^^^^^^^^~04/01/2004~
-~03815~^~306~^71.^0^^~4~^~BFZN~^^^^^^^^^^~07/01/2004~
-~03815~^~307~^18.^0^^~9~^~MC~^^^^^^^^^^~09/01/2005~
-~03815~^~318~^193.^0^^~4~^~NC~^^^^^^^^^^~03/01/2009~
-~03815~^~319~^58.^0^^~9~^~MC~^^^^^^^^^^~05/01/2004~
-~03815~^~320~^58.^0^^~4~^~NC~^^^^^^^^^^~03/01/2009~
-~03815~^~321~^0.^0^^~4~^~BFZN~^^^^^^^^^^~04/01/2004~
-~03815~^~322~^0.^0^^~4~^~BFZN~^^^^^^^^^^~04/01/2004~
-~03815~^~324~^40.^0^^~9~^~MC~^^^^^^^^^^~05/01/2004~
-~03815~^~334~^0.^0^^~4~^~BFZN~^^^^^^^^^^~04/01/2004~
-~03815~^~337~^0.^0^^~4~^~BFZN~^^^^^^^^^^~04/01/2004~
-~03815~^~338~^0.^0^^~4~^~BFZN~^^^^^^^^^^~05/01/2004~
-~03815~^~417~^11.^0^^~9~^~MC~^^^^^^^^^^~05/01/2004~
-~03815~^~431~^11.^0^^~9~^~MC~^^^^^^^^^^~05/01/2004~
-~03815~^~432~^0.^0^^~4~^~BFZN~^^^^^^^^^^~04/01/2004~
-~03815~^~435~^18.^0^^~4~^~NC~^^^^^^^^^^~03/01/2009~
-~03815~^~601~^1.^0^^~9~^~MC~^^^^^^^^^^~09/01/2005~
-~03818~^~208~^131.^0^^~9~^~MC~^^^^^^^^^^~04/01/2006~
-~03818~^~262~^0.^0^^~4~^~NR~^^^^^^^^^^~05/01/2007~
-~03818~^~263~^0.^0^^~4~^~NR~^^^^^^^^^^~05/01/2007~
-~03818~^~268~^547.^0^^~9~^~MC~^^^^^^^^^^~04/01/2006~
-~03818~^~301~^102.^0^^~4~^~BFZN~^^^^^^^^^^~04/01/2004~
-~03818~^~304~^11.^0^^~4~^~BFZN~^^^^^^^^^^~04/01/2004~
-~03818~^~305~^70.^0^^~4~^~BFZN~^^^^^^^^^^~04/01/2004~
-~03818~^~306~^142.^0^^~4~^~BFZN~^^^^^^^^^^~04/01/2004~
-~03818~^~307~^39.^0^^~4~^~BFZN~^^^^^^^^^^~04/01/2004~
-~03818~^~318~^394.^0^^~4~^~BFZN~^^^^^^^^^^~04/01/2004~
-~03818~^~319~^118.^0^^~4~^~BFZN~^^^^^^^^^^~04/01/2004~
-~03818~^~320~^118.^0^^~4~^~NC~^^^^^^^^^^~05/01/2009~
-~03818~^~321~^0.^0^^~4~^~NR~^^^^^^^^^^~05/01/2007~
-~03818~^~322~^0.^0^^~4~^~NR~^^^^^^^^^^~05/01/2007~
-~03818~^~324~^79.^0^^~9~^~MC~^^^^^^^^^^~12/01/2007~
-~03818~^~334~^0.^0^^~4~^~NR~^^^^^^^^^^~05/01/2007~
-~03818~^~337~^0.^0^^~4~^~NR~^^^^^^^^^^~05/01/2007~
-~03818~^~338~^0.^0^^~4~^~NR~^^^^^^^^^^~05/01/2007~
-~03818~^~417~^21.^0^^~4~^~BFZN~^^^^^^^^^^~04/01/2004~
-~03818~^~431~^21.^0^^~4~^~NR~^^^^^^^^^^~05/01/2007~
-~03818~^~432~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2007~
-~03818~^~435~^36.^0^^~4~^~NC~^^^^^^^^^^~05/01/2009~
-~03818~^~601~^2.^0^^~4~^~BFZN~^^^^^^^^^^~04/01/2004~
-~03821~^~208~^517.^0^^~4~^~NC~^^^^^^^^^^~10/01/2016~
-~03821~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~
-~03821~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~
-~03821~^~268~^2162.^0^^~4~^~NC~^^^^^^^^^^~10/01/2016~
-~03821~^~301~^470.^0^^~12~^~MA~^^^^^^^^^^~10/01/2016~
-~03821~^~304~^40.^0^^~12~^~MA~^^^^^^^^^^~10/01/2016~
-~03821~^~305~^260.^0^^~12~^~MA~^^^^^^^^^^~10/01/2016~
-~03821~^~306~^550.^0^^~12~^~MA~^^^^^^^^^^~01/01/1996~
-~03821~^~307~^240.^0^^~9~^~MC~^^^^^^^^^^~05/01/2004~
-~03821~^~318~^1767.^0^^~4~^~NC~^^^^^^^^^^~10/01/2016~
-~03821~^~319~^530.^0^^~12~^~MA~^^^^^^^^^^~10/01/2016~
-~03821~^~320~^530.^0^^~4~^~NC~^^^^^^^^^^~10/01/2016~
-~03821~^~321~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~
-~03821~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~
-~03821~^~324~^250.^0^^~12~^~MA~^^^^^^^^^^~10/01/2016~
-~03821~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~
-~03821~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~
-~03821~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~
-~03821~^~417~^80.^0^^~9~^~MC~^^^^^^^^^^~05/01/2004~
-~03821~^~431~^80.^0^^~9~^~MC~^^^^^^^^^^~05/01/2004~
-~03821~^~432~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2004~
-~03821~^~435~^136.^0^^~4~^~NC~^^^^^^^^^^~11/01/2007~
-~03821~^~601~^2.^0^^~9~^~MC~^^^^^^^^^^~05/01/2004~
-~03822~^~208~^67.^0^^~4~^~NC~^^^^^^^^^^~05/01/2007~
-~03822~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~
-~03822~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~
-~03822~^~268~^280.^0^^~4~^~NC~^^^^^^^^^^~10/01/2016~
-~03822~^~301~^62.^0^^~12~^~MA~^^^^^^^^^^~10/01/2016~
-~03822~^~304~^5.^0^^~12~^~MA~^^^^^^^^^^~10/01/2016~
-~03822~^~305~^34.^0^^~12~^~MA~^^^^^^^^^^~10/01/2016~
-~03822~^~306~^73.^0^^~12~^~MA~^^^^^^^^^^~10/01/2016~
-~03822~^~307~^31.^0^^~9~^~MC~^^^^^^^^^^~05/01/2004~
-~03822~^~318~^233.^0^^~4~^~NC~^^^^^^^^^^~10/01/2016~
-~03822~^~319~^70.^0^^~12~^~MA~^^^^^^^^^^~10/01/2016~
-~03822~^~320~^70.^0^^~4~^~NC~^^^^^^^^^^~10/01/2016~
-~03822~^~321~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~
-~03822~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~
-~03822~^~324~^33.^0^^~12~^~MA~^^^^^^^^^^~10/01/2016~
-~03822~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~
-~03822~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~
-~03822~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~
-~03822~^~417~^11.^0^^~12~^~MA~^^^^^^^^^^~10/01/2016~
-~03822~^~431~^11.^0^^~12~^~MA~^^^^^^^^^^~10/01/2016~
-~03822~^~432~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~
-~03822~^~435~^18.^0^^~4~^~NC~^^^^^^^^^^~11/01/2007~
-~03822~^~601~^0.^0^^~9~^~MC~^^^^^^^^^^~05/01/2004~
-~03823~^~208~^63.^0^^~4~^~NC~^^^^^^^^^^~05/01/2007~
-~03823~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~
-~03823~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~
-~03823~^~268~^262.^0^^~4~^~NC~^^^^^^^^^^~05/01/2007~
-~03823~^~301~^69.^0^^~12~^~MA~^^^^^^^^^^~01/01/1996~
-~03823~^~304~^7.^0^^~9~^~MC~^^^^^^^^^^~05/01/2004~
-~03823~^~305~^54.^0^^~12~^~MA~^^^^^^^^^^~01/01/1996~
-~03823~^~306~^79.^0^^~12~^~MA~^^^^^^^^^^~01/01/1996~
-~03823~^~307~^23.^0^^~9~^~MC~^^^^^^^^^^~05/01/2004~
-~03823~^~318~^194.^0^^~9~^~MC~^^^^^^^^^^~05/01/2004~
-~03823~^~319~^59.^0^^~4~^~NC~^^^^^^^^^^~06/01/2002~
-~03823~^~320~^58.^0^^~9~^~MC~^^^^^^^^^^~05/01/2004~
-~03823~^~321~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~
-~03823~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~
-~03823~^~324~^40.^0^^~9~^~MC~^^^^^^^^^^~05/01/2004~
-~03823~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~
-~03823~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~
-~03823~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~
-~03823~^~417~^11.^0^^~9~^~MC~^^^^^^^^^^~05/01/2004~
-~03823~^~431~^11.^0^^~9~^~MC~^^^^^^^^^^~05/01/2004~
-~03823~^~432~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~
-~03823~^~435~^18.^0^^~4~^~NC~^^^^^^^^^^~05/01/2007~
-~03823~^~601~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/1996~
-~03825~^~208~^64.^0^^~9~^~MC~^^^^^^^^^^~05/01/2004~
-~03825~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2007~
-~03825~^~268~^268.^0^^~9~^~MC~^^^^^^^^^^~05/01/2004~
-~03825~^~301~^51.^0^^~4~^~BFZN~^^^^^^^^^^~04/01/2004~
-~03825~^~304~^5.^0^^~9~^~MC~^^^^^^^^^^~05/01/2004~
-~03825~^~305~^35.^0^^~4~^~BFZN~^^^^^^^^^^~04/01/2004~
-~03825~^~306~^71.^0^^~4~^~BFZN~^^^^^^^^^^~04/01/2004~
-~03825~^~307~^18.^0^^~9~^~MC~^^^^^^^^^^~05/01/2004~
-~03825~^~318~^194.^0^^~9~^~MC~^^^^^^^^^^~05/01/2004~
-~03825~^~319~^58.^0^^~9~^~MC~^^^^^^^^^^~05/01/2004~
-~03825~^~320~^58.^0^^~4~^~NC~^^^^^^^^^^~05/01/2009~
-~03825~^~321~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2007~
-~03825~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2007~
-~03825~^~324~^40.^0^^~9~^~MC~^^^^^^^^^^~05/01/2004~
-~03825~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2007~
-~03825~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2007~
-~03825~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2007~
-~03825~^~417~^11.^0^^~9~^~MC~^^^^^^^^^^~05/01/2004~
-~03825~^~431~^11.^0^^~9~^~MC~^^^^^^^^^^~05/01/2004~
-~03825~^~432~^0.^0^^~9~^~MC~^^^^^^^^^^~05/01/2004~
-~03825~^~435~^18.^0^^~4~^~NC~^^^^^^^^^^~05/01/2009~
-~03825~^~601~^1.^0^^~9~^~MC~^^^^^^^^^^~05/01/2004~
-~03832~^~208~^68.^0^^~4~^~NC~^^^^^^^^^^~10/01/2016~
-~03832~^~262~^0.^0^^~4~^~BFZN~^^^^^^^^^^~04/01/2004~
-~03832~^~263~^0.^0^^~4~^~BFZN~^^^^^^^^^^~04/01/2004~
-~03832~^~268~^285.^0^^~4~^~NC~^^^^^^^^^^~10/01/2016~
-~03832~^~301~^51.^0^^~12~^~MA~^^^^^^^^^^~10/01/2016~
-~03832~^~304~^5.^0^^~12~^~MA~^^^^^^^^^^~10/01/2016~
-~03832~^~305~^28.^0^^~12~^~MA~^^^^^^^^^^~10/01/2016~
-~03832~^~306~^71.^0^^~12~^~MA~^^^^^^^^^^~10/01/2016~
-~03832~^~307~^18.^0^^~12~^~MA~^^^^^^^^^^~10/01/2016~
-~03832~^~318~^197.^0^^~4~^~NC~^^^^^^^^^^~10/01/2016~
-~03832~^~319~^59.^0^^~12~^~MA~^^^^^^^^^^~10/01/2016~
-~03832~^~320~^59.^0^^~4~^~NC~^^^^^^^^^^~10/01/2016~
-~03832~^~321~^0.^0^^~4~^~BFZN~^^^^^^^^^^~04/01/2004~
-~03832~^~322~^0.^0^^~4~^~BFZN~^^^^^^^^^^~04/01/2004~
-~03832~^~324~^39.^0^^~12~^~MA~^^^^^^^^^^~10/01/2016~
-~03832~^~334~^0.^0^^~4~^~BFZN~^^^^^^^^^^~04/01/2004~
-~03832~^~337~^0.^0^^~4~^~BFZN~^^^^^^^^^^~04/01/2004~
-~03832~^~338~^0.^0^^~4~^~BFZN~^^^^^^^^^^~04/01/2004~
-~03832~^~417~^11.^0^^~9~^~MC~^^^^^^^^^^~05/01/2004~
-~03832~^~431~^11.^0^^~9~^~MC~^^^^^^^^^^~05/01/2004~
-~03832~^~432~^0.^0^^~4~^~BFZN~^^^^^^^^^^~04/01/2004~
-~03832~^~435~^18.^0^^~4~^~NC~^^^^^^^^^^~03/01/2009~
-~03832~^~601~^2.^0^^~12~^~MA~^^^^^^^^^^~10/01/2016~
-~03837~^~208~^524.^0^^~4~^~NC~^^^^^^^^^^~05/01/2004~
-~03837~^~262~^0.^0^^~4~^~O~^^^^^^^^^^~05/01/2004~
-~03837~^~263~^0.^0^^~4~^~O~^^^^^^^^^^~05/01/2004~
-~03837~^~268~^2191.^0^^~4~^~NC~^^^^^^^^^^~05/01/2004~
-~03837~^~301~^288.^0^^~4~^~T~^^^^^^^^^^~03/01/2004~
-~03837~^~304~^31.^0^^~12~^~MA~^^^^^^^^^^~03/01/2003~
-~03837~^~305~^144.^0^^~12~^~MA~^^^^^^^^^^~03/01/2003~
-~03837~^~306~^411.^0^^~12~^~MA~^^^^^^^^^^~03/01/2003~
-~03837~^~307~^123.^0^^~12~^~MA~^^^^^^^^^^~03/01/2003~
-~03837~^~318~^1541.^0^^~4~^~NC~^^^^^^^^^^~07/01/2008~
-~03837~^~319~^462.^0^^~4~^~T~^^^^^^^^^^~02/01/2003~
-~03837~^~320~^462.^0^^~4~^~NC~^^^^^^^^^^~07/01/2008~
-~03837~^~321~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~
-~03837~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~
-~03837~^~324~^308.^0^^~4~^~T~^^^^^^^^^^~02/01/2003~
-~03837~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~
-~03837~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~
-~03837~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~
-~03837~^~417~^77.^0^^~4~^~T~^^^^^^^^^^~03/01/2004~
-~03837~^~431~^77.^0^^~4~^~T~^^^^^^^^^^~03/01/2004~
-~03837~^~432~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~
-~03837~^~435~^131.^0^^~4~^~NC~^^^^^^^^^^~07/01/2008~
-~03837~^~601~^17.^0^^~5~^~ML~^^^^^^^^^^~02/01/1998~
-~03838~^~208~^514.^0^^~4~^~NC~^^^^^^^^^^~10/01/2016~
-~03838~^~262~^0.^0^^~4~^~BFZN~^^^^^^^^^^~04/01/2004~
-~03838~^~263~^0.^0^^~4~^~BFZN~^^^^^^^^^^~04/01/2004~
-~03838~^~268~^2150.^0^^~4~^~NC~^^^^^^^^^^~10/01/2016~
-~03838~^~301~^470.^0^^~12~^~MA~^^^^^^^^^^~10/01/2016~
-~03838~^~304~^40.^0^^~12~^~MA~^^^^^^^^^^~10/01/2016~
-~03838~^~305~^260.^0^^~12~^~MA~^^^^^^^^^^~10/01/2016~
-~03838~^~306~^560.^0^^~12~^~MA~^^^^^^^^^^~10/01/2016~
-~03838~^~307~^240.^0^^~12~^~MA~^^^^^^^^^^~10/01/2016~
-~03838~^~318~^1500.^0^^~4~^~NC~^^^^^^^^^^~05/01/2013~
-~03838~^~319~^450.^0^^~9~^~MC~^^^^^^^^^^~05/01/2004~
-~03838~^~320~^450.^0^^~4~^~NC~^^^^^^^^^^~05/01/2013~
-~03838~^~321~^0.^0^^~4~^~BFZN~^^^^^^^^^^~04/01/2004~
-~03838~^~322~^0.^0^^~4~^~BFZN~^^^^^^^^^^~04/01/2004~
-~03838~^~324~^250.^0^^~4~^~BFZN~^^^^^^^^^^~04/01/2004~
-~03838~^~334~^0.^0^^~4~^~BFZN~^^^^^^^^^^~04/01/2004~
-~03838~^~337~^0.^0^^~4~^~BFZN~^^^^^^^^^^~04/01/2004~
-~03838~^~338~^0.^0^^~4~^~BFZN~^^^^^^^^^^~04/01/2004~
-~03838~^~417~^79.^0^^~4~^~BFZN~^^^^^^^^^^~04/01/2004~
-~03838~^~431~^79.^0^^~4~^~NR~^^^^^^^^^^~04/01/2004~
-~03838~^~432~^0.^0^^~4~^~BFZN~^^^^^^^^^^~04/01/2004~
-~03838~^~435~^134.^0^^~4~^~NC~^^^^^^^^^^~07/01/2007~
-~03838~^~601~^0.^0^^~4~^~BFZN~^^^^^^^^^^~04/01/2004~
-~03841~^~208~^66.^0^^~9~^~MC~^^^^^^^^^^~01/01/1998~
-~03841~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~
-~03841~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~
-~03841~^~268~^276.^0^^~9~^~MC~^^^^^^^^^^~03/01/2004~
-~03841~^~301~^69.^1^^~12~^~MA~^^^^^^^^^^~01/01/1998~
-~03841~^~304~^5.^1^^~12~^~MA~^^^^^^^^^^~01/01/1998~
-~03841~^~305~^49.^1^^~12~^~MA~^^^^^^^^^^~01/01/1998~
-~03841~^~306~^71.^1^^~12~^~MA~^^^^^^^^^^~01/01/1998~
-~03841~^~307~^29.^1^^~12~^~MA~^^^^^^^^^^~03/01/2003~
-~03841~^~318~^197.^0^^~4~^~NC~^^^^^^^^^^~03/01/2004~
-~03841~^~319~^59.^0^^~4~^~NR~^^^^^^^^^^~02/01/2003~
-~03841~^~320~^59.^0^^~4~^~NC~^^^^^^^^^^~03/01/2004~
-~03841~^~321~^0.^0^^~4~^~T~^^^^^^^^^^~02/01/2003~
-~03841~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~
-~03841~^~324~^39.^0^^~9~^~MC~^^^^^^^^^^~05/01/2004~
-~03841~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~
-~03841~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~
-~03841~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~
-~03841~^~417~^10.^1^^~12~^~MA~^^^^^^^^^^~01/01/1998~
-~03841~^~431~^10.^0^^~4~^~T~^^^^^^^^^^~02/01/2003~
-~03841~^~432~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~
-~03841~^~435~^17.^0^^~4~^~NC~^^^^^^^^^^~05/01/2007~
-~03841~^~601~^0.^1^^~12~^~MA~^^^^^^^^^^~01/01/1998~
-~03842~^~208~^128.^0^^~4~^~T~^^^^^^^^^^~03/01/2004~
-~03842~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~
-~03842~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~
-~03842~^~268~^536.^0^^~4~^~T~^^^^^^^^^^~04/01/2004~
-~03842~^~301~^134.^0^^~5~^~ML~^^^^^^^^^^~02/01/1998~
-~03842~^~304~^10.^0^^~5~^~ML~^^^^^^^^^^~02/01/1998~
-~03842~^~305~^96.^0^^~5~^~ML~^^^^^^^^^^~02/01/1998~
-~03842~^~306~^138.^0^^~5~^~ML~^^^^^^^^^^~02/01/1998~
-~03842~^~307~^56.^0^^~5~^~ML~^^^^^^^^^^~02/01/1998~
-~03842~^~318~^380.^0^^~4~^~NC~^^^^^^^^^^~04/01/2004~
-~03842~^~319~^114.^0^^~4~^~T~^^^^^^^^^^~02/01/2003~
-~03842~^~320~^114.^0^^~4~^~NC~^^^^^^^^^^~04/01/2004~
-~03842~^~321~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~
-~03842~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~
-~03842~^~324~^77.^0^^~4~^~T~^^^^^^^^^^~02/01/2003~
-~03842~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~
-~03842~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~
-~03842~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~
-~03842~^~417~^19.^0^^~5~^~ML~^^^^^^^^^^~02/01/1998~
-~03842~^~431~^19.^0^^~4~^~T~^^^^^^^^^^~02/01/2003~
-~03842~^~432~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~
-~03842~^~435~^33.^0^^~4~^~NC~^^^^^^^^^^~07/01/2008~
-~03842~^~601~^0.^0^^~5~^~ML~^^^^^^^^^^~02/01/1998~
-~03843~^~208~^517.^0^^~4~^~NC~^^^^^^^^^^~03/01/2004~
-~03843~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~
-~03843~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~
-~03843~^~268~^2165.^0^^~4~^~NC~^^^^^^^^^^~05/01/2004~
-~03843~^~301~^540.^0^^~4~^~T~^^^^^^^^^^~03/01/2004~
-~03843~^~304~^39.^1^^~12~^~MA~^^^^^^^^^^~01/01/1998~
-~03843~^~305~^386.^0^^~4~^~T~^^^^^^^^^^~03/01/2004~
-~03843~^~306~^555.^0^^~4~^~T~^^^^^^^^^^~03/01/2004~
-~03843~^~307~^226.^0^^~4~^~T~^^^^^^^^^^~03/01/2004~
-~03843~^~318~^1543.^0^^~9~^~MC~^^^^^^^^^^~05/01/2004~
-~03843~^~319~^463.^0^^~4~^~NR~^^^^^^^^^^~05/01/2004~
-~03843~^~320~^462.^0^^~4~^~NC~^^^^^^^^^^~04/01/2004~
-~03843~^~321~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~
-~03843~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~
-~03843~^~324~^309.^0^^~4~^~T~^^^^^^^^^^~03/01/2004~
-~03843~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~
-~03843~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~
-~03843~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~
-~03843~^~417~^77.^1^^~12~^~MA~^^^^^^^^^^~01/01/1998~
-~03843~^~431~^77.^0^^~4~^~T~^^^^^^^^^^~02/01/2003~
-~03843~^~432~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~
-~03843~^~435~^131.^0^^~4~^~NC~^^^^^^^^^^~06/01/2008~
-~03843~^~601~^0.^1^^~12~^~MA~^^^^^^^^^^~01/01/1998~
-~03844~^~208~^68.^0^^~4~^~NC~^^^^^^^^^^~10/01/2016~
-~03844~^~262~^0.^0^^~4~^~BFZN~^^^^^^^^^^~04/01/2004~
-~03844~^~263~^0.^0^^~4~^~BFZN~^^^^^^^^^^~04/01/2004~
-~03844~^~268~^283.^0^^~4~^~NC~^^^^^^^^^^~10/01/2016~
-~03844~^~301~^62.^0^^~12~^~MA~^^^^^^^^^^~11/01/2016~
-~03844~^~304~^5.^0^^~12~^~MA~^^^^^^^^^^~11/01/2016~
-~03844~^~305~^34.^0^^~12~^~MA~^^^^^^^^^^~11/01/2016~
-~03844~^~306~^72.^0^^~12~^~MA~^^^^^^^^^^~11/01/2016~
-~03844~^~307~^31.^0^^~12~^~MA~^^^^^^^^^^~11/01/2016~
-~03844~^~318~^197.^0^^~4~^~NC~^^^^^^^^^^~10/01/2016~
-~03844~^~319~^59.^0^^~12~^~MA~^^^^^^^^^^~11/01/2016~
-~03844~^~320~^59.^0^^~4~^~NC~^^^^^^^^^^~10/01/2016~
-~03844~^~321~^0.^0^^~4~^~BFZN~^^^^^^^^^^~04/01/2004~
-~03844~^~322~^0.^0^^~4~^~BFZN~^^^^^^^^^^~04/01/2004~
-~03844~^~324~^33.^0^^~12~^~MA~^^^^^^^^^^~11/01/2016~
-~03844~^~334~^0.^0^^~4~^~BFZN~^^^^^^^^^^~04/01/2004~
-~03844~^~337~^0.^0^^~4~^~BFZN~^^^^^^^^^^~04/01/2004~
-~03844~^~338~^0.^0^^~4~^~BFZN~^^^^^^^^^^~04/01/2004~
-~03844~^~417~^11.^0^^~12~^~MA~^^^^^^^^^^~11/01/2016~
-~03844~^~431~^11.^0^^~12~^~MA~^^^^^^^^^^~11/01/2016~
-~03844~^~432~^0.^0^^~12~^~MA~^^^^^^^^^^~11/01/2016~
-~03844~^~435~^18.^0^^~4~^~NC~^^^^^^^^^^~10/01/2016~
-~03844~^~601~^0.^0^^~9~^~MC~^^^^^^^^^^~05/01/2004~
-~03845~^~208~^68.^0^^~4~^~NC~^^^^^^^^^^~10/01/2016~
-~03845~^~262~^0.^0^^~4~^~BFZN~^^^^^^^^^^~04/01/2004~
-~03845~^~263~^0.^0^^~4~^~BFZN~^^^^^^^^^^~04/01/2004~
-~03845~^~268~^283.^0^^~4~^~NC~^^^^^^^^^^~10/01/2016~
-~03845~^~301~^62.^0^^~4~^~BFZN~^^^^^^^^^^~04/01/2004~
-~03845~^~304~^5.^0^^~12~^~MA~^^^^^^^^^^~10/01/2016~
-~03845~^~305~^34.^0^^~12~^~MA~^^^^^^^^^^~10/01/2016~
-~03845~^~306~^72.^0^^~4~^~BFZN~^^^^^^^^^^~04/01/2004~
-~03845~^~307~^31.^0^^~4~^~BFZN~^^^^^^^^^^~04/01/2004~
-~03845~^~318~^197.^0^^~4~^~NC~^^^^^^^^^^~10/01/2016~
-~03845~^~319~^59.^0^^~12~^~MA~^^^^^^^^^^~10/01/2016~
-~03845~^~320~^59.^0^^~4~^~NC~^^^^^^^^^^~10/01/2016~
-~03845~^~321~^0.^0^^~4~^~BFZN~^^^^^^^^^^~04/01/2004~
-~03845~^~322~^0.^0^^~4~^~BFZN~^^^^^^^^^^~04/01/2004~
-~03845~^~324~^33.^0^^~9~^~MC~^^^^^^^^^^~05/01/2004~
-~03845~^~334~^0.^0^^~4~^~BFZN~^^^^^^^^^^~04/01/2004~
-~03845~^~337~^0.^0^^~4~^~BFZN~^^^^^^^^^^~04/01/2004~
-~03845~^~338~^0.^0^^~4~^~BFZN~^^^^^^^^^^~04/01/2004~
-~03845~^~417~^11.^0^^~9~^~MC~^^^^^^^^^^~05/01/2004~
-~03845~^~431~^11.^0^^~9~^~MC~^^^^^^^^^^~05/01/2004~
-~03845~^~432~^0.^0^^~4~^~BFZN~^^^^^^^^^^~04/01/2004~
-~03845~^~435~^18.^0^^~4~^~NC~^^^^^^^^^^~03/01/2009~
-~03845~^~601~^0.^0^^~4~^~BFZN~^^^^^^^^^^~04/01/2004~
-~03846~^~208~^66.^0^^~4~^~T~^^^^^^^^^^~03/01/2004~
-~03846~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~
-~03846~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~
-~03846~^~268~^276.^0^^~4~^~T~^^^^^^^^^^~03/01/2004~
-~03846~^~301~^69.^1^^~12~^~MA~^^^^^^^^^^~01/01/1998~
-~03846~^~304~^5.^1^^~12~^~MA~^^^^^^^^^^~01/01/1998~
-~03846~^~305~^49.^1^^~12~^~MA~^^^^^^^^^^~01/01/1998~
-~03846~^~306~^77.^1^^~12~^~MA~^^^^^^^^^^~01/01/1998~
-~03846~^~307~^29.^1^^~12~^~MA~^^^^^^^^^^~01/01/1998~
-~03846~^~318~^197.^0^^~4~^~NC~^^^^^^^^^^~03/01/2004~
-~03846~^~319~^59.^0^^~4~^~T~^^^^^^^^^^~02/01/2003~
-~03846~^~320~^59.^0^^~4~^~NC~^^^^^^^^^^~03/01/2004~
-~03846~^~321~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~
-~03846~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~
-~03846~^~324~^29.^0^^~4~^~T~^^^^^^^^^^~02/01/2003~
-~03846~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~
-~03846~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~
-~03846~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~
-~03846~^~417~^10.^1^^~12~^~MA~^^^^^^^^^^~01/01/1998~
-~03846~^~431~^10.^0^^~4~^~T~^^^^^^^^^^~02/01/2003~
-~03846~^~432~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~
-~03846~^~435~^17.^0^^~4~^~NC~^^^^^^^^^^~02/01/2007~
-~03846~^~601~^1.^1^^~12~^~MA~^^^^^^^^^^~01/01/1998~
-~03849~^~208~^505.^0^^~4~^~NC~^^^^^^^^^^~10/01/2016~
-~03849~^~262~^0.^0^^~4~^~NR~^^^^^^^^^^~03/01/2005~
-~03849~^~263~^0.^0^^~4~^~NR~^^^^^^^^^^~03/01/2005~
-~03849~^~268~^2112.^0^^~4~^~NC~^^^^^^^^^^~10/01/2016~
-~03849~^~301~^600.^0^^~12~^~MA~^^^^^^^^^^~10/01/2016~
-~03849~^~304~^40.^0^^~12~^~MA~^^^^^^^^^^~10/01/2016~
-~03849~^~305~^330.^1^^~12~^~MA~^^^^^^^^^^~04/01/2006~
-~03849~^~306~^520.^0^^~12~^~MA~^~03808~^^^^^^^^^~10/01/2016~
-~03849~^~307~^184.^0^^~12~^~MA~^^^^^^^^^^~10/01/2016~
-~03849~^~318~^2233.^0^^~4~^~NC~^^^^^^^^^^~10/01/2016~
-~03849~^~319~^670.^0^^~12~^~MA~^~03808~^^^^^^^^^~10/01/2016~
-~03849~^~320~^670.^0^^~4~^~NC~^^^^^^^^^^~10/01/2016~
-~03849~^~321~^0.^0^^~4~^~BFSN~^~03808~^^^^^^^^^~04/01/2011~
-~03849~^~322~^0.^0^^~4~^~BFSN~^~03808~^^^^^^^^^~04/01/2011~
-~03849~^~324~^370.^0^^~12~^~MA~^^^^^^^^^^~10/01/2016~
-~03849~^~334~^0.^0^^~4~^~BFSN~^~03808~^^^^^^^^^~04/01/2011~
-~03849~^~337~^0.^0^^~4~^~BFSN~^~03808~^^^^^^^^^~04/01/2011~
-~03849~^~338~^0.^0^^~4~^~BFSN~^~03808~^^^^^^^^^~04/01/2011~
-~03849~^~417~^128.^0^^~4~^~NR~^^^^^^^^^^~10/01/2016~
-~03849~^~431~^84.^0^^~4~^~BFSN~^~03808~^^^^^^^^^~04/01/2011~
-~03849~^~432~^44.^0^^~4~^~NC~^^^^^^^^^^~04/01/2011~
-~03849~^~435~^187.^0^^~4~^~NC~^~03808~^^^^^^^^^~04/01/2011~
-~03849~^~601~^16.^0^^~4~^~BFFN~^~03808~^^^^^^^^^~04/01/2011~
-~03851~^~208~^127.^0^^~4~^~NC~^^^^^^^^^^~03/01/2004~
-~03851~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~
-~03851~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~
-~03851~^~268~^530.^0^^~4~^~NC~^^^^^^^^^^~03/01/2004~
-~03851~^~301~^99.^0^^~5~^~ML~^^^^^^^^^^~02/01/1998~
-~03851~^~304~^8.^0^^~5~^~ML~^^^^^^^^^^~02/01/1998~
-~03851~^~305~^54.^0^^~4~^~T~^^^^^^^^^^~03/01/2004~
-~03851~^~306~^134.^0^^~5~^~ML~^^^^^^^^^^~02/01/1998~
-~03851~^~307~^31.^0^^~5~^~ML~^^^^^^^^^^~02/01/1998~
-~03851~^~318~^382.^0^^~9~^~MC~^^^^^^^^^^~05/01/2004~
-~03851~^~319~^114.^0^^~4~^~T~^^^^^^^^^^~02/01/2003~
-~03851~^~320~^114.^0^^~4~^~NC~^^^^^^^^^^~03/01/2004~
-~03851~^~321~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~
-~03851~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~
-~03851~^~324~^76.^0^^~4~^~T~^^^^^^^^^^~02/01/2003~
-~03851~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~
-~03851~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~
-~03851~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~
-~03851~^~417~^19.^0^^~5~^~ML~^^^^^^^^^^~02/01/1998~
-~03851~^~431~^19.^0^^~4~^~T~^^^^^^^^^^~02/01/2003~
-~03851~^~432~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~
-~03851~^~435~^33.^0^^~4~^~NC~^^^^^^^^^^~05/01/2007~
-~03851~^~601~^3.^0^^~5~^~ML~^^^^^^^^^^~03/01/1998~
-~03852~^~208~^512.^0^^~4~^~NC~^^^^^^^^^^~10/01/2016~
-~03852~^~262~^0.^0^^~4~^~BFZN~^^^^^^^^^^~04/01/2004~
-~03852~^~263~^0.^0^^~4~^~BFZN~^^^^^^^^^^~04/01/2004~
-~03852~^~268~^2143.^0^^~4~^~NC~^^^^^^^^^^~10/01/2016~
-~03852~^~301~^530.^0^^~9~^~MC~^^^^^^^^^^~03/01/2006~
-~03852~^~304~^41.^0^^~12~^~MA~^^^^^^^^^^~10/01/2016~
-~03852~^~305~^350.^0^^~12~^~MA~^^^^^^^^^^~10/01/2016~
-~03852~^~306~^610.^0^^~12~^~MA~^^^^^^^^^^~10/01/2016~
-~03852~^~307~^183.^0^^~12~^~MA~^^^^^^^^^^~10/01/2016~
-~03852~^~318~^1533.^0^^~4~^~NC~^^^^^^^^^^~10/01/2016~
-~03852~^~319~^460.^0^^~12~^~MA~^^^^^^^^^^~10/01/2016~
-~03852~^~320~^460.^0^^~4~^~NC~^^^^^^^^^^~10/01/2016~
-~03852~^~321~^0.^0^^~4~^~BFZN~^^^^^^^^^^~04/01/2004~
-~03852~^~322~^0.^0^^~4~^~BFZN~^^^^^^^^^^~04/01/2004~
-~03852~^~324~^310.^0^^~12~^~MA~^^^^^^^^^^~10/01/2016~
-~03852~^~334~^0.^0^^~4~^~BFZN~^^^^^^^^^^~04/01/2004~
-~03852~^~337~^0.^0^^~4~^~BFZN~^^^^^^^^^^~04/01/2004~
-~03852~^~338~^0.^0^^~4~^~BFZN~^^^^^^^^^^~04/01/2004~
-~03852~^~417~^81.^0^^~12~^~MA~^^^^^^^^^^~10/01/2016~
-~03852~^~431~^81.^0^^~12~^~MA~^^^^^^^^^^~10/01/2016~
-~03852~^~432~^0.^0^^~4~^~BFZN~^^^^^^^^^^~04/01/2004~
-~03852~^~435~^138.^0^^~4~^~NC~^^^^^^^^^^~10/01/2016~
-~03852~^~601~^0.^0^^~4~^~BFZN~^^^^^^^^^^~04/01/2004~
-~03853~^~208~^522.^0^^~4~^~NC~^^^^^^^^^^~02/01/2007~
-~03853~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~
-~03853~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~
-~03853~^~268~^2185.^0^^~4~^~NC~^^^^^^^^^^~02/01/2007~
-~03853~^~301~^410.^0^^~4~^~T~^^^^^^^^^^~03/01/2004~
-~03853~^~304~^32.^0^^~4~^~T~^^^^^^^^^^~03/01/2004~
-~03853~^~305~^221.^0^^~4~^~T~^^^^^^^^^^~03/01/2004~
-~03853~^~306~^552.^0^^~4~^~T~^^^^^^^^^^~03/01/2004~
-~03853~^~307~^126.^0^^~5~^~ML~^^^^^^^^^^~02/01/1998~
-~03853~^~318~^1577.^0^^~4~^~NC~^^^^^^^^^^~07/01/2008~
-~03853~^~319~^473.^0^^~4~^~T~^^^^^^^^^^~02/01/2003~
-~03853~^~320~^473.^0^^~4~^~NC~^^^^^^^^^^~04/01/2004~
-~03853~^~321~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~
-~03853~^~322~^0.^0^^~4~^~T~^^^^^^^^^^~02/01/2003~
-~03853~^~324~^316.^0^^~4~^~T~^^^^^^^^^^~03/01/2004~
-~03853~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~
-~03853~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~
-~03853~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~
-~03853~^~417~^79.^0^^~5~^~ML~^^^^^^^^^^~02/01/1998~
-~03853~^~431~^79.^0^^~4~^~T~^^^^^^^^^^~02/01/2003~
-~03853~^~432~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~
-~03853~^~435~^134.^0^^~4~^~NC~^^^^^^^^^^~07/01/2008~
-~03853~^~601~^14.^0^^~5~^~ML~^^^^^^^^^^~03/01/1998~
-~03854~^~208~^67.^0^^~4~^~NC~^^^^^^^^^^~10/01/2016~
-~03854~^~262~^0.^0^^~4~^~BFZN~^^^^^^^^^^~04/01/2004~
-~03854~^~263~^0.^0^^~4~^~BFZN~^^^^^^^^^^~04/01/2004~
-~03854~^~268~^282.^0^^~4~^~NC~^^^^^^^^^^~10/01/2016~
-~03854~^~301~^68.^0^^~12~^~MA~^^^^^^^^^^~11/01/2016~
-~03854~^~304~^5.^0^^~12~^~MA~^^^^^^^^^^~11/01/2016~
-~03854~^~305~^45.^0^^~12~^~MA~^^^^^^^^^^~11/01/2016~
-~03854~^~306~^78.^0^^~12~^~MA~^^^^^^^^^^~11/01/2016~
-~03854~^~307~^23.^0^^~12~^~MA~^^^^^^^^^^~11/01/2016~
-~03854~^~318~^197.^0^^~4~^~NC~^^^^^^^^^^~10/01/2016~
-~03854~^~319~^59.^0^^~12~^~MA~^^^^^^^^^^~11/01/2016~
-~03854~^~320~^59.^0^^~4~^~NC~^^^^^^^^^^~10/01/2016~
-~03854~^~321~^0.^0^^~4~^~BFZN~^^^^^^^^^^~04/01/2004~
-~03854~^~322~^0.^0^^~4~^~BFZN~^^^^^^^^^^~04/01/2004~
-~03854~^~324~^39.^0^^~12~^~MA~^^^^^^^^^^~11/01/2016~
-~03854~^~334~^0.^0^^~4~^~BFZN~^^^^^^^^^^~04/01/2004~
-~03854~^~337~^0.^0^^~4~^~BFZN~^^^^^^^^^^~04/01/2004~
-~03854~^~338~^0.^0^^~4~^~BFZN~^^^^^^^^^^~04/01/2004~
-~03854~^~417~^10.^0^^~12~^~MA~^^^^^^^^^^~11/01/2016~
-~03854~^~431~^10.^0^^~12~^~MA~^^^^^^^^^^~11/01/2016~
-~03854~^~432~^0.^0^^~4~^~BFZN~^^^^^^^^^^~05/01/2004~
-~03854~^~435~^18.^0^^~4~^~NC~^^^^^^^^^^~10/01/2016~
-~03854~^~601~^0.^0^^~4~^~BFZN~^^^^^^^^^^~04/01/2004~
-~03857~^~208~^64.^0^^~4~^~NC~^~03823~^^^^^^^^^~04/01/2004~
-~03857~^~262~^0.^0^^~4~^~BFZN~^~03823~^^^^^^^^^~04/01/2004~
-~03857~^~263~^0.^0^^~4~^~BFZN~^~03823~^^^^^^^^^~04/01/2004~
-~03857~^~268~^268.^0^^~4~^~NC~^~03823~^^^^^^^^^~05/01/2004~
-~03857~^~301~^69.^0^^~4~^~BFZN~^~03823~^^^^^^^^^~04/01/2004~
-~03857~^~304~^5.^0^^~12~^~MA~^~03823~^^^^^^^^^~10/01/2016~
-~03857~^~305~^45.^0^^~12~^~MA~^~03823~^^^^^^^^^~10/01/2016~
-~03857~^~306~^79.^0^^~4~^~BFZN~^~03823~^^^^^^^^^~04/01/2004~
-~03857~^~307~^24.^0^^~12~^~MA~^~03823~^^^^^^^^^~10/01/2016~
-~03857~^~318~^197.^0^^~4~^~NC~^~03823~^^^^^^^^^~10/01/2016~
-~03857~^~319~^59.^0^^~12~^~MA~^~03823~^^^^^^^^^~10/01/2016~
-~03857~^~320~^59.^0^^~4~^~NC~^~03823~^^^^^^^^^~10/01/2016~
-~03857~^~321~^0.^0^^~4~^~BFZN~^~03823~^^^^^^^^^~04/01/2004~
-~03857~^~322~^0.^0^^~4~^~BFZN~^~03823~^^^^^^^^^~04/01/2004~
-~03857~^~324~^39.^0^^~12~^~MA~^~03823~^^^^^^^^^~10/01/2016~
-~03857~^~334~^0.^0^^~4~^~BFZN~^~03823~^^^^^^^^^~04/01/2004~
-~03857~^~337~^0.^0^^~4~^~BFZN~^~03823~^^^^^^^^^~04/01/2004~
-~03857~^~338~^0.^0^^~4~^~BFZN~^~03823~^^^^^^^^^~04/01/2004~
-~03857~^~417~^11.^0^^~9~^~MC~^~03823~^^^^^^^^^~05/01/2004~
-~03857~^~431~^11.^0^^~9~^~MC~^~03823~^^^^^^^^^~05/01/2004~
-~03857~^~432~^0.^0^^~4~^~BFZN~^~03823~^^^^^^^^^~04/01/2004~
-~03857~^~435~^18.^0^^~4~^~NC~^~03823~^^^^^^^^^~03/01/2009~
-~03857~^~601~^0.^0^^~4~^~BFZN~^~03823~^^^^^^^^^~04/01/2004~
-~03859~^~208~^64.^0^^~12~^~MA~^~03805~^^^^^^^^^~03/01/2009~
-~03859~^~262~^0.^0^^~4~^~BFZN~^~03805~^^^^^^^^^~04/01/2004~
-~03859~^~263~^0.^0^^~4~^~BFZN~^~03805~^^^^^^^^^~04/01/2004~
-~03859~^~268~^269.^0^^~12~^~MA~^~03805~^^^^^^^^^~05/01/2011~
-~03859~^~301~^67.^0^^~12~^~MA~^~03805~^^^^^^^^^~03/01/2009~
-~03859~^~304~^7.^0^^~12~^~MA~^~03805~^^^^^^^^^~03/01/2009~
-~03859~^~305~^41.^0^^~12~^~MA~^~03805~^^^^^^^^^~03/01/2009~
-~03859~^~306~^74.^0^^~12~^~MA~^~03805~^^^^^^^^^~03/01/2009~
-~03859~^~307~^26.^0^^~12~^~MA~^~03805~^^^^^^^^^~03/01/2009~
-~03859~^~318~^193.^0^^~4~^~NC~^~03805~^^^^^^^^^~04/01/2009~
-~03859~^~319~^58.^0^^~4~^~NR~^~03805~^^^^^^^^^~04/01/2009~
-~03859~^~320~^58.^0^^~4~^~NC~^~03805~^^^^^^^^^~05/01/2009~
-~03859~^~321~^0.^0^^~12~^~MA~^~03805~^^^^^^^^^~03/01/2009~
-~03859~^~322~^0.^0^^~12~^~MA~^~03805~^^^^^^^^^~03/01/2009~
-~03859~^~324~^39.^0^^~12~^~MA~^~03805~^^^^^^^^^~03/01/2009~
-~03859~^~334~^0.^0^^~12~^~MA~^~03805~^^^^^^^^^~03/01/2009~
-~03859~^~337~^0.^0^^~4~^~BFZN~^~03805~^^^^^^^^^~03/01/2009~
-~03859~^~338~^0.^0^^~4~^~BFZN~^~03805~^^^^^^^^^~03/01/2009~
-~03859~^~417~^10.^0^^~12~^~MA~^~03805~^^^^^^^^^~03/01/2009~
-~03859~^~431~^10.^0^^~12~^~MA~^~03805~^^^^^^^^^~03/01/2009~
-~03859~^~432~^0.^0^^~12~^~MA~^~03805~^^^^^^^^^~03/01/2009~
-~03859~^~435~^17.^0^^~4~^~NC~^~03805~^^^^^^^^^~05/01/2009~
-~03859~^~601~^2.^0^^~4~^~NR~^~03805~^^^^^^^^^~03/01/2009~
-~03860~^~208~^99.^0^^~4~^~NC~^^^^^^^^^^~03/01/2005~
-~03860~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~
-~03860~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~
-~03860~^~268~^414.^0^^~4~^~NC~^^^^^^^^^^~03/01/2006~
-~03860~^~301~^93.^0^^~5~^~ML~^^^^^^^^^^~02/01/1998~
-~03860~^~304~^19.^0^^~5~^~ML~^^^^^^^^^^~02/01/1998~
-~03860~^~305~^76.^0^^~5~^~ML~^^^^^^^^^^~02/01/1998~
-~03860~^~306~^125.^0^^~5~^~ML~^^^^^^^^^^~02/01/1998~
-~03860~^~307~^36.^0^^~5~^~ML~^^^^^^^^^^~02/01/1998~
-~03860~^~318~^246.^0^^~4~^~NC~^^^^^^^^^^~03/01/2003~
-~03860~^~319~^74.^0^^~4~^~T~^^^^^^^^^^~02/01/2003~
-~03860~^~320~^74.^0^^~4~^~NC~^^^^^^^^^^~06/01/2007~
-~03860~^~321~^0.^0^^~4~^~T~^^^^^^^^^^~02/01/2003~
-~03860~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~
-~03860~^~324~^48.^0^^~4~^~T~^^^^^^^^^^~02/01/2003~
-~03860~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~
-~03860~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~
-~03860~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~
-~03860~^~417~^35.^0^^~5~^~ML~^^^^^^^^^^~02/01/1998~
-~03860~^~431~^36.^0^^~4~^~T~^^^^^^^^^^~02/01/2003~
-~03860~^~432~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~
-~03860~^~435~^60.^0^^~4~^~NC~^^^^^^^^^^~04/01/2009~
-~03860~^~601~^2.^0^^~5~^~ML~^^^^^^^^^^~02/01/1998~
-~03861~^~208~^480.^0^^~4~^~NC~^~03929~^^^^^^^^^~04/01/2006~
-~03861~^~262~^0.^0^^~4~^~BFZN~^~03929~^^^^^^^^^~05/01/2004~
-~03861~^~263~^0.^0^^~4~^~BFZN~^~03929~^^^^^^^^^~05/01/2004~
-~03861~^~268~^2007.^0^^~4~^~NC~^~03929~^^^^^^^^^~04/01/2006~
-~03861~^~301~^920.^0^^~9~^~MC~^~03929~^^^^^^^^^~05/01/2004~
-~03861~^~304~^52.^0^^~9~^~MC~^~03929~^^^^^^^^^~05/01/2004~
-~03861~^~305~^620.^0^^~9~^~MC~^~03929~^^^^^^^^^~05/01/2004~
-~03861~^~306~^570.^0^^~9~^~MC~^~03929~^^^^^^^^^~05/01/2004~
-~03861~^~307~^171.^0^^~9~^~MC~^~03929~^^^^^^^^^~05/01/2004~
-~03861~^~318~^1420.^0^^~4~^~BFZN~^~03929~^^^^^^^^^~05/01/2004~
-~03861~^~319~^430.^0^^~9~^~MC~^~03929~^^^^^^^^^~05/01/2004~
-~03861~^~320~^430.^0^^~4~^~NC~^~03929~^^^^^^^^^~01/01/2009~
-~03861~^~321~^0.^0^^~4~^~BFZN~^~03929~^^^^^^^^^~05/01/2004~
-~03861~^~322~^0.^0^^~4~^~BFZN~^~03929~^^^^^^^^^~05/01/2004~
-~03861~^~324~^284.^0^^~9~^~MC~^^^^^^^^^^~11/01/2007~
-~03861~^~334~^0.^0^^~4~^~BFZN~^~03929~^^^^^^^^^~05/01/2004~
-~03861~^~337~^0.^0^^~4~^~BFZN~^~03929~^^^^^^^^^~05/01/2004~
-~03861~^~338~^0.^0^^~4~^~BFZN~^~03929~^^^^^^^^^~05/01/2004~
-~03861~^~417~^76.^0^^~4~^~BFZN~^~03929~^^^^^^^^^~05/01/2004~
-~03861~^~431~^76.^0^^~4~^~BFZN~^~03929~^^^^^^^^^~05/01/2004~
-~03861~^~432~^0.^0^^~4~^~BFZN~^~03929~^^^^^^^^^~05/01/2004~
-~03861~^~435~^129.^0^^~4~^~NC~^~03929~^^^^^^^^^~01/01/2009~
-~03861~^~601~^0.^0^^~4~^~BFZN~^~03929~^^^^^^^^^~05/01/2004~
-~03864~^~208~^67.^0^^~4~^~NC~^~03930~^^^^^^^^^~04/01/2006~
-~03864~^~262~^0.^0^^~4~^~BFZN~^~03930~^^^^^^^^^~05/01/2004~
-~03864~^~263~^0.^0^^~4~^~BFZN~^~03930~^^^^^^^^^~05/01/2004~
-~03864~^~268~^281.^0^^~4~^~NC~^~03930~^^^^^^^^^~04/01/2006~
-~03864~^~301~^128.^0^^~9~^~MC~^~03930~^^^^^^^^^~05/01/2004~
-~03864~^~304~^7.^0^^~9~^~MC~^~03930~^^^^^^^^^~05/01/2004~
-~03864~^~305~^85.^0^^~9~^~MC~^~03930~^^^^^^^^^~05/01/2004~
-~03864~^~306~^79.^0^^~9~^~MC~^~03930~^^^^^^^^^~05/01/2004~
-~03864~^~307~^23.^0^^~9~^~MC~^~03930~^^^^^^^^^~05/01/2004~
-~03864~^~318~^194.^0^^~4~^~NC~^~03930~^^^^^^^^^~05/01/2004~
-~03864~^~319~^58.^0^^~4~^~BFZN~^~03930~^^^^^^^^^~05/01/2004~
-~03864~^~320~^58.^0^^~4~^~NC~^~03930~^^^^^^^^^~05/01/2004~
-~03864~^~321~^0.^0^^~4~^~BFZN~^~03930~^^^^^^^^^~05/01/2004~
-~03864~^~322~^0.^0^^~4~^~BFZN~^~03930~^^^^^^^^^~05/01/2004~
-~03864~^~324~^40.^0^^~9~^~MC~^~03930~^^^^^^^^^~05/01/2004~
-~03864~^~334~^0.^0^^~4~^~BFZN~^~03930~^^^^^^^^^~05/01/2004~
-~03864~^~337~^0.^0^^~4~^~BFZN~^~03930~^^^^^^^^^~05/01/2004~
-~03864~^~338~^0.^0^^~4~^~BFZN~^~03930~^^^^^^^^^~05/01/2004~
-~03864~^~417~^11.^0^^~9~^~MC~^~03930~^^^^^^^^^~05/01/2004~
-~03864~^~431~^11.^0^^~9~^~MC~^~03930~^^^^^^^^^~05/01/2004~
-~03864~^~432~^0.^0^^~4~^~BFZN~^~03930~^^^^^^^^^~05/01/2004~
-~03864~^~435~^18.^0^^~4~^~NC~^~03930~^^^^^^^^^~05/01/2009~
-~03864~^~601~^0.^0^^~4~^~BFZN~^~03930~^^^^^^^^^~05/01/2004~
-~03867~^~208~^503.^0^^~4~^~NC~^^^^^^^^^^~04/01/2009~
-~03867~^~262~^0.^0^^~4~^~BFZN~^^^^^^^^^^~05/01/2004~
-~03867~^~263~^0.^0^^~4~^~BFZN~^^^^^^^^^^~05/01/2004~
-~03867~^~268~^2104.^0^^~4~^~NC~^^^^^^^^^^~04/01/2009~
-~03867~^~301~^526.^0^^~12~^~MA~^^^^^^^^^^~03/01/2009~
-~03867~^~304~^55.^0^^~12~^~MA~^^^^^^^^^^~03/01/2009~
-~03867~^~305~^316.^0^^~12~^~MA~^^^^^^^^^^~03/01/2009~
-~03867~^~306~^581.^0^^~12~^~MA~^^^^^^^^^^~03/01/2009~
-~03867~^~307~^200.^0^^~12~^~MA~^^^^^^^^^^~03/01/2009~
-~03867~^~318~^1503.^0^^~4~^~NC~^^^^^^^^^^~05/01/2009~
-~03867~^~319~^451.^0^^~4~^~NR~^^^^^^^^^^~04/01/2009~
-~03867~^~320~^451.^0^^~4~^~NC~^^^^^^^^^^~05/01/2009~
-~03867~^~321~^0.^0^^~12~^~MA~^^^^^^^^^^~03/01/2009~
-~03867~^~322~^0.^0^^~12~^~MA~^^^^^^^^^^~03/01/2009~
-~03867~^~324~^301.^0^^~12~^~MA~^^^^^^^^^^~03/01/2009~
-~03867~^~334~^0.^0^^~12~^~MA~^^^^^^^^^^~03/01/2009~
-~03867~^~337~^0.^0^^~12~^~MA~^^^^^^^^^^~03/01/2009~
-~03867~^~338~^0.^0^^~12~^~MA~^^^^^^^^^^~03/01/2009~
-~03867~^~417~^80.^0^^~12~^~MA~^^^^^^^^^^~03/01/2009~
-~03867~^~431~^80.^0^^~12~^~MA~^^^^^^^^^^~03/01/2009~
-~03867~^~432~^0.^0^^~12~^~MA~^^^^^^^^^^~03/01/2009~
-~03867~^~435~^136.^0^^~4~^~NC~^^^^^^^^^^~05/01/2009~
-~03867~^~601~^6.^0^^~4~^~NR~^^^^^^^^^^~03/01/2009~
-~03870~^~208~^99.^0^^~4~^~NC~^^^^^^^^^^~04/01/2009~
-~03870~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~
-~03870~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~
-~03870~^~268~^413.^0^^~4~^~NC~^^^^^^^^^^~04/01/2009~
-~03870~^~301~^92.^0^^~5~^~ML~^^^^^^^^^^~04/01/2009~
-~03870~^~304~^19.^0^^~5~^~ML~^^^^^^^^^^~04/01/2009~
-~03870~^~305~^80.^0^^~5~^~ML~^^^^^^^^^^~04/01/2009~
-~03870~^~306~^124.^0^^~5~^~ML~^^^^^^^^^^~04/01/2009~
-~03870~^~307~^36.^0^^~5~^~ML~^^^^^^^^^^~04/01/2009~
-~03870~^~318~^152.^0^^~5~^~ML~^^^^^^^^^^~04/01/2009~
-~03870~^~319~^46.^0^^~4~^~NR~^^^^^^^^^^~04/01/2009~
-~03870~^~320~^46.^0^^~4~^~NR~^^^^^^^^^^~04/01/2009~
-~03870~^~321~^0.^0^^~4~^~T~^^^^^^^^^^~02/01/2003~
-~03870~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~
-~03870~^~324~^48.^0^^~5~^~ML~^^^^^^^^^^~04/01/2009~
-~03870~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~
-~03870~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~
-~03870~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~
-~03870~^~417~^28.^0^^~5~^~ML~^^^^^^^^^^~04/01/2009~
-~03870~^~431~^28.^0^^~5~^~ML~^^^^^^^^^^~04/01/2009~
-~03870~^~432~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2009~
-~03870~^~435~^48.^0^^~4~^~NC~^^^^^^^^^^~04/01/2009~
-~03870~^~601~^2.^0^^~5~^~ML~^^^^^^^^^^~02/01/1998~
-~03928~^~208~^502.^0^^~9~^~MC~^^^^^^^^^^~05/01/2004~
-~03928~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2002~
-~03928~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2002~
-~03928~^~268~^2102.^0^^~9~^~MC~^^^^^^^^^^~05/01/2004~
-~03928~^~301~^526.^0^^~12~^~MA~^^^^^^^^^^~05/01/2004~
-~03928~^~304~^55.^0^^~12~^~MA~^^^^^^^^^^~03/01/2003~
-~03928~^~305~^316.^0^^~9~^~MC~^^^^^^^^^^~05/01/2004~
-~03928~^~306~^581.^0^^~12~^~MA~^^^^^^^^^^~03/01/2003~
-~03928~^~307~^180.^0^^~9~^~MC~^^^^^^^^^^~05/01/2004~
-~03928~^~318~^1503.^0^^~4~^~NR~^^^^^^^^^^~05/01/2004~
-~03928~^~319~^466.^0^^~4~^~O~^^^^^^^^^^~04/01/2003~
-~03928~^~320~^466.^0^^~4~^~NC~^^^^^^^^^^~04/01/2003~
-~03928~^~321~^0.^0^^~4~^~T~^^^^^^^^^^~04/01/2003~
-~03928~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~
-~03928~^~324~^309.^0^^~9~^~MC~^^^^^^^^^^~11/01/2007~
-~03928~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~
-~03928~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~
-~03928~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~
-~03928~^~417~^80.^0^^~12~^~MA~^^^^^^^^^^~03/01/2003~
-~03928~^~431~^80.^0^^~4~^~NR~^^^^^^^^^^~02/01/2003~
-~03928~^~432~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~
-~03928~^~435~^136.^0^^~4~^~NC~^^^^^^^^^^~06/01/2009~
-~03928~^~601~^0.^0^^~4~^^^^^^^^^^^~06/01/1994~
-~03929~^~208~^480.^0^^~4~^~NC~^^^^^^^^^^~05/01/2004~
-~03929~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~
-~03929~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~
-~03929~^~268~^2007.^0^^~4~^~NC~^^^^^^^^^^~05/01/2004~
-~03929~^~301~^920.^0^^~9~^~MC~^^^^^^^^^^~05/01/2004~
-~03929~^~304~^52.^0^^~9~^~MC~^^^^^^^^^^~05/01/2004~
-~03929~^~305~^620.^0^^~9~^~MC~^^^^^^^^^^~05/01/2004~
-~03929~^~306~^570.^0^^~9~^~MC~^^^^^^^^^^~05/01/2004~
-~03929~^~307~^171.^0^^~9~^~MC~^^^^^^^^^^~05/01/2004~
-~03929~^~318~^1420.^0^^~4~^~NC~^^^^^^^^^^~04/01/2004~
-~03929~^~319~^430.^0^^~9~^~MC~^^^^^^^^^^~05/01/2004~
-~03929~^~320~^430.^0^^~9~^~MC~^^^^^^^^^^~05/01/2004~
-~03929~^~321~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~
-~03929~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~
-~03929~^~324~^284.^0^^~9~^~MC~^^^^^^^^^^~11/01/2007~
-~03929~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~
-~03929~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~
-~03929~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~
-~03929~^~417~^76.^0^^~12~^~MA~^^^^^^^^^^~02/01/2003~
-~03929~^~431~^76.^0^^~9~^~MC~^^^^^^^^^^~05/01/2004~
-~03929~^~432~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~
-~03929~^~435~^129.^0^^~4~^~NC~^^^^^^^^^^~03/01/2009~
-~03929~^~601~^0.^0^^~4~^~BFFY~^^^^^^^^^^~05/01/2004~
-~03930~^~208~^67.^0^^~4~^~NC~^^^^^^^^^^~05/01/2004~
-~03930~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~
-~03930~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~
-~03930~^~268~^281.^0^^~4~^~NC~^^^^^^^^^^~05/01/2004~
-~03930~^~301~^128.^0^^~9~^~MC~^^^^^^^^^^~05/01/2004~
-~03930~^~304~^7.^0^^~9~^~MC~^^^^^^^^^^~05/01/2004~
-~03930~^~305~^85.^0^^~9~^~MC~^^^^^^^^^^~05/01/2004~
-~03930~^~306~^79.^0^^~9~^~MC~^^^^^^^^^^~05/01/2004~
-~03930~^~307~^23.^0^^~9~^~MC~^^^^^^^^^^~05/01/2004~
-~03930~^~318~^194.^0^^~4~^~NC~^^^^^^^^^^~05/01/2004~
-~03930~^~319~^58.^0^^~4~^~NC~^^^^^^^^^^~06/01/2002~
-~03930~^~320~^58.^0^^~4~^~NC~^^^^^^^^^^~05/01/2007~
-~03930~^~321~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~
-~03930~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~
-~03930~^~324~^40.^0^^~9~^~MC~^^^^^^^^^^~05/01/2004~
-~03930~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~
-~03930~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~
-~03930~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~
-~03930~^~417~^11.^0^^~9~^~MC~^^^^^^^^^^~05/01/2004~
-~03930~^~431~^11.^0^^~9~^~MC~^^^^^^^^^^~05/01/2004~
-~03930~^~432~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2004~
-~03930~^~435~^18.^0^^~4~^~NC~^^^^^^^^^^~05/01/2007~
-~03930~^~601~^0.^0^^~9~^~MC~^^^^^^^^^^~09/01/1998~
-~03934~^~208~^68.^0^^~4~^~FLC~^^^^^^^^^^~04/01/2005~
-~03934~^~262~^0.^0^^~4~^~FLC~^^^^^^^^^^~04/01/2005~
-~03934~^~263~^0.^0^^~4~^~FLC~^^^^^^^^^^~04/01/2005~
-~03934~^~268~^287.^0^^~4~^~FLC~^^^^^^^^^^~04/01/2005~
-~03934~^~301~^18.^0^^~4~^~FLC~^^^^^^^^^^~04/01/2005~
-~03934~^~304~^10.^0^^~4~^~FLC~^^^^^^^^^^~04/01/2005~
-~03934~^~305~^29.^0^^~4~^~FLC~^^^^^^^^^^~04/01/2005~
-~03934~^~306~^154.^0^^~4~^~FLC~^^^^^^^^^^~04/01/2005~
-~03934~^~307~^14.^0^^~8~^~LC~^^^^^^^^^^~07/01/2010~
-~03934~^~318~^2496.^0^^~4~^~NC~^^^^^^^^^^~07/01/2008~
-~03934~^~319~^1.^0^^~4~^~FLC~^^^^^^^^^^~04/01/2005~
-~03934~^~320~^126.^0^^~4~^~NC~^^^^^^^^^^~04/01/2007~
-~03934~^~321~^1488.^0^^~4~^~FLC~^^^^^^^^^^~04/01/2005~
-~03934~^~322~^12.^0^^~4~^~FLC~^^^^^^^^^^~04/01/2005~
-~03934~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~
-~03934~^~334~^3.^0^^~4~^~FLC~^^^^^^^^^^~04/01/2005~
-~03934~^~337~^0.^0^^~4~^~FLC~^^^^^^^^^^~04/01/2005~
-~03934~^~338~^215.^0^^~4~^~FLC~^^^^^^^^^^~04/01/2005~
-~03934~^~417~^14.^0^^~4~^~FLC~^^^^^^^^^^~04/01/2005~
-~03934~^~431~^0.^0^^~4~^~FLC~^^^^^^^^^^~04/01/2005~
-~03934~^~432~^14.^0^^~4~^~FLC~^^^^^^^^^^~04/01/2005~
-~03934~^~435~^14.^0^^~4~^~NC~^^^^^^^^^^~07/01/2008~
-~03934~^~601~^1.^0^^~4~^~FLC~^^^^^^^^^^~04/01/2005~
-~03935~^~208~^67.^0^^~4~^~NC~^^^^^^^^^^~05/01/2007~
-~03935~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~
-~03935~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~
-~03935~^~268~^280.^0^^~4~^~NC~^^^^^^^^^^~05/01/2007~
-~03935~^~301~^69.^1^^~12~^~MA~^^^^^^^^^^~01/01/1998~
-~03935~^~304~^5.^1^^~12~^~MA~^^^^^^^^^^~01/01/1998~
-~03935~^~305~^49.^1^^~12~^~MA~^^^^^^^^^^~01/01/1998~
-~03935~^~306~^77.^1^^~12~^~MA~^^^^^^^^^^~01/01/1998~
-~03935~^~307~^29.^1^^~12~^~MA~^^^^^^^^^^~01/01/1998~
-~03935~^~318~^197.^0^^~4~^~NC~^^^^^^^^^^~03/01/2004~
-~03935~^~319~^59.^0^^~4~^~T~^^^^^^^^^^~02/01/2003~
-~03935~^~320~^59.^0^^~4~^~NC~^^^^^^^^^^~05/01/2009~
-~03935~^~321~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~
-~03935~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~
-~03935~^~324~^29.^0^^~4~^~T~^^^^^^^^^^~02/01/2003~
-~03935~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~
-~03935~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~
-~03935~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~
-~03935~^~417~^10.^1^^~12~^~MA~^^^^^^^^^^~01/01/1998~
-~03935~^~431~^10.^0^^~4~^~T~^^^^^^^^^^~02/01/2003~
-~03935~^~432~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~
-~03935~^~435~^17.^0^^~4~^~NC~^^^^^^^^^^~05/01/2009~
-~03935~^~601~^1.^1^^~12~^~MA~^^^^^^^^^^~01/01/1998~
-~03936~^~208~^63.^0^^~4~^~NC~^^^^^^^^^^~05/01/2004~
-~03936~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~
-~03936~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~
-~03936~^~268~^262.^0^^~4~^~NC~^^^^^^^^^^~05/01/2004~
-~03936~^~301~^41.^0^^~12~^^^^^^^^^^^~06/01/1994~
-~03936~^~304~^5.^0^^~12~^^^^^^^^^^^~04/01/1985~
-~03936~^~305~^28.^0^^~12~^^^^^^^^^^^~06/01/1994~
-~03936~^~306~^55.^0^^~12~^^^^^^^^^^^~06/01/1994~
-~03936~^~307~^14.^0^^~12~^^^^^^^^^^^~06/01/1994~
-~03936~^~318~^197.^0^^~4~^~NC~^^^^^^^^^^~04/01/2004~
-~03936~^~319~^59.^0^^~4~^~NR~^^^^^^^^^^~02/01/2003~
-~03936~^~320~^59.^0^^~4~^~NC~^^^^^^^^^^~07/01/2009~
-~03936~^~321~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~
-~03936~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~
-~03936~^~324~^38.^0^^~4~^~NR~^^^^^^^^^^~01/01/2009~
-~03936~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~
-~03936~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~
-~03936~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~
-~03936~^~417~^5.^0^^~12~^^^^^^^^^^^~04/01/1985~
-~03936~^~431~^5.^0^^~4~^~NR~^^^^^^^^^^~02/01/2003~
-~03936~^~432~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~
-~03936~^~435~^9.^0^^~4~^~NC~^^^^^^^^^^~07/01/2009~
-~03936~^~601~^4.^0^^~4~^^^^^^^^^^^~06/01/1994~
-~03937~^~208~^130.^0^^~4~^~NC~^^^^^^^^^^~02/01/2007~
-~03937~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~
-~03937~^~263~^0.^0^^~4~^~NR~^^^^^^^^^^~02/01/2003~
-~03937~^~268~^545.^0^^~4~^~NC~^^^^^^^^^^~02/01/2007~
-~03937~^~301~^83.^0^^~4~^^^^^^^^^^^~06/01/1994~
-~03937~^~304~^9.^0^^~4~^^^^^^^^^^^~06/01/1994~
-~03937~^~305~^55.^0^^~4~^^^^^^^^^^^~06/01/1994~
-~03937~^~306~^109.^0^^~4~^^^^^^^^^^^~06/01/1994~
-~03937~^~307~^29.^0^^~4~^^^^^^^^^^^~06/01/1994~
-~03937~^~318~^393.^0^^~4~^~NC~^^^^^^^^^^~04/01/2004~
-~03937~^~319~^118.^0^^~4~^~NR~^^^^^^^^^^~02/01/2003~
-~03937~^~320~^118.^0^^~4~^~NC~^^^^^^^^^^~04/01/2004~
-~03937~^~321~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~
-~03937~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~
-~03937~^~324~^76.^0^^~4~^~NR~^^^^^^^^^^~01/01/2009~
-~03937~^~334~^0.^0^^~4~^~NR~^^^^^^^^^^~02/01/2003~
-~03937~^~337~^0.^0^^~4~^~NR~^^^^^^^^^^~02/01/2003~
-~03937~^~338~^0.^0^^~4~^~NR~^^^^^^^^^^~02/01/2003~
-~03937~^~417~^10.^0^^~4~^^^^^^^^^^^~06/01/1994~
-~03937~^~431~^10.^0^^~4~^~NR~^^^^^^^^^^~02/01/2003~
-~03937~^~432~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~
-~03937~^~435~^17.^0^^~4~^~NC~^^^^^^^^^^~01/01/2009~
-~03937~^~601~^8.^0^^~4~^^^^^^^^^^^~06/01/1994~
-~03938~^~208~^524.^0^^~4~^~NC~^^^^^^^^^^~05/01/2004~
-~03938~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~
-~03938~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~
-~03938~^~268~^2192.^0^^~4~^~NC~^^^^^^^^^^~05/01/2004~
-~03938~^~301~^331.^0^^~12~^^^^^^^^^^^~06/01/1994~
-~03938~^~304~^36.^0^^~12~^^^^^^^^^^^~06/01/1994~
-~03938~^~305~^221.^0^^~12~^^^^^^^^^^^~06/01/1994~
-~03938~^~306~^441.^0^^~12~^^^^^^^^^^^~06/01/1994~
-~03938~^~307~^118.^0^^~12~^^^^^^^^^^^~06/01/1994~
-~03938~^~318~^1577.^0^^~4~^~NC~^^^^^^^^^^~02/01/2007~
-~03938~^~319~^473.^0^^~4~^~NR~^^^^^^^^^^~02/01/2003~
-~03938~^~320~^473.^0^^~4~^~NC~^^^^^^^^^^~04/01/2004~
-~03938~^~321~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~
-~03938~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~
-~03938~^~324~^303.^0^^~4~^~NR~^^^^^^^^^^~05/01/2009~
-~03938~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~
-~03938~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~
-~03938~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~
-~03938~^~417~^39.^0^^~12~^^^^^^^^^^^~06/01/1994~
-~03938~^~431~^39.^0^^~4~^~NR~^^^^^^^^^^~02/01/2003~
-~03938~^~432~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~
-~03938~^~435~^66.^0^^~4~^~NC~^^^^^^^^^^~05/01/2009~
-~03938~^~601~^32.^0^^~12~^^^^^^^^^^^~06/01/1994~
-~03939~^~208~^63.^0^^~4~^~NC~^^^^^^^^^^~04/01/2004~
-~03939~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~
-~03939~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~
-~03939~^~268~^264.^0^^~4~^~NC~^^^^^^^^^^~05/01/2004~
-~03939~^~301~^59.^0^^~12~^^^^^^^^^^^~06/01/1994~
-~03939~^~304~^7.^0^^~12~^^^^^^^^^^^~04/01/1985~
-~03939~^~305~^41.^0^^~12~^^^^^^^^^^^~06/01/1994~
-~03939~^~306~^69.^0^^~12~^^^^^^^^^^^~06/01/1994~
-~03939~^~307~^18.^0^^~12~^^^^^^^^^^^~06/01/1994~
-~03939~^~318~^247.^0^^~4~^~NC~^^^^^^^^^^~03/01/2004~
-~03939~^~319~^56.^0^^~4~^~O~^^^^^^^^^^~02/01/2003~
-~03939~^~320~^59.^0^^~4~^~NC~^^^^^^^^^^~03/01/2004~
-~03939~^~321~^37.^0^^~4~^~O~^^^^^^^^^^~02/01/2003~
-~03939~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~
-~03939~^~324~^37.^0^^~4~^~NR~^^^^^^^^^^~04/01/2008~
-~03939~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~
-~03939~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~
-~03939~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~
-~03939~^~417~^5.^0^^~12~^^^^^^^^^^^~04/01/1985~
-~03939~^~431~^5.^0^^~4~^~NR~^^^^^^^^^^~02/01/2003~
-~03939~^~432~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~
-~03939~^~435~^9.^0^^~4~^~NC~^^^^^^^^^^~05/01/2009~
-~03939~^~601~^0.^0^^~7~^^^^^^^^^^^~04/01/1985~
-~03940~^~208~^126.^0^^~4~^~NC~^^^^^^^^^^~04/01/2003~
-~03940~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~
-~03940~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~
-~03940~^~268~^528.^0^^~4~^~NC~^^^^^^^^^^~02/01/2003~
-~03940~^~301~^118.^0^^~4~^~NR~^^^^^^^^^^~04/01/2003~
-~03940~^~304~^14.^0^^~4~^^^^^^^^^^^~06/01/1994~
-~03940~^~305~^82.^0^^~4~^^^^^^^^^^^~06/01/1994~
-~03940~^~306~^138.^0^^~4~^^^^^^^^^^^~06/01/1994~
-~03940~^~307~^36.^0^^~4~^^^^^^^^^^^~06/01/1994~
-~03940~^~318~^393.^0^^~4~^~NC~^^^^^^^^^^~05/01/2006~
-~03940~^~319~^118.^0^^~4~^~O~^^^^^^^^^^~04/01/2003~
-~03940~^~320~^118.^0^^~4~^~NC~^^^^^^^^^^~07/01/2009~
-~03940~^~321~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2003~
-~03940~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~
-~03940~^~324~^86.^0^^~9~^~MC~^^^^^^^^^^~11/01/2007~
-~03940~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~
-~03940~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~
-~03940~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~
-~03940~^~417~^10.^0^^~4~^^^^^^^^^^^~06/01/1994~
-~03940~^~431~^10.^0^^~4~^~NR~^^^^^^^^^^~02/01/2003~
-~03940~^~432~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~
-~03940~^~435~^17.^0^^~4~^~NC~^^^^^^^^^^~07/01/2009~
-~03940~^~601~^0.^0^^~7~^^^^^^^^^^^~06/01/1994~
-~03941~^~208~^508.^0^^~4~^~NC~^^^^^^^^^^~04/01/2004~
-~03941~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~
-~03941~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~
-~03941~^~268~^2125.^0^^~4~^~NC~^^^^^^^^^^~05/01/2004~
-~03941~^~301~^453.^0^^~12~^^^^^^^^^^^~06/01/1994~
-~03941~^~304~^51.^0^^~12~^^^^^^^^^^^~06/01/1994~
-~03941~^~305~^317.^0^^~12~^^^^^^^^^^^~06/01/1994~
-~03941~^~306~^528.^0^^~12~^^^^^^^^^^^~06/01/1994~
-~03941~^~307~^151.^0^^~12~^^^^^^^^^^^~06/01/1994~
-~03941~^~318~^1577.^0^^~4~^~NC~^^^^^^^^^^~04/01/2004~
-~03941~^~319~^473.^0^^~4~^~O~^^^^^^^^^^~04/01/2003~
-~03941~^~320~^473.^0^^~4~^~NC~^^^^^^^^^^~04/01/2004~
-~03941~^~321~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2003~
-~03941~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~
-~03941~^~324~^303.^0^^~12~^~MA~^^^^^^^^^^~02/01/2003~
-~03941~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~
-~03941~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~
-~03941~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~
-~03941~^~417~^38.^0^^~12~^^^^^^^^^^^~06/01/1994~
-~03941~^~431~^38.^0^^~12~^~MA~^^^^^^^^^^~02/01/2003~
-~03941~^~432~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~
-~03941~^~435~^64.^0^^~4~^~NC~^^^^^^^^^^~05/01/2009~
-~03941~^~601~^0.^0^^~4~^^^^^^^^^^^~06/01/1994~
-~03942~^~208~^71.^0^^~4~^~NC~^^^^^^^^^^~10/01/2016~
-~03942~^~262~^0.^0^^~4~^~BFZN~^^^^^^^^^^~04/01/2004~
-~03942~^~263~^0.^0^^~4~^~BFZN~^^^^^^^^^^~04/01/2004~
-~03942~^~268~^298.^0^^~4~^~NC~^^^^^^^^^^~10/01/2016~
-~03942~^~301~^51.^0^^~12~^~MA~^^^^^^^^^^~10/01/2016~
-~03942~^~304~^5.^0^^~12~^~MA~^^^^^^^^^^~10/01/2016~
-~03942~^~305~^35.^0^^~12~^~MA~^^^^^^^^^^~10/01/2016~
-~03942~^~306~^71.^0^^~12~^~MA~^^^^^^^^^^~10/01/2016~
-~03942~^~307~^26.^0^^~12~^~MA~^^^^^^^^^^~10/01/2016~
-~03942~^~318~^197.^0^^~4~^~NC~^^^^^^^^^^~10/01/2016~
-~03942~^~319~^59.^0^^~12~^~MA~^^^^^^^^^^~10/01/2016~
-~03942~^~320~^59.^0^^~4~^~NC~^^^^^^^^^^~10/01/2016~
-~03942~^~321~^0.^0^^~4~^~BFZN~^^^^^^^^^^~04/01/2004~
-~03942~^~322~^0.^0^^~4~^~BFZN~^^^^^^^^^^~04/01/2004~
-~03942~^~324~^39.^0^^~12~^~MA~^^^^^^^^^^~10/01/2016~
-~03942~^~334~^0.^0^^~4~^~BFZN~^^^^^^^^^^~04/01/2004~
-~03942~^~337~^0.^0^^~4~^~BFZN~^^^^^^^^^^~04/01/2004~
-~03942~^~338~^0.^0^^~4~^~BFZN~^^^^^^^^^^~04/01/2004~
-~03942~^~417~^11.^0^^~12~^~MA~^^^^^^^^^^~10/01/2016~
-~03942~^~431~^11.^0^^~12~^~MA~^^^^^^^^^^~10/01/2016~
-~03942~^~432~^0.^0^^~4~^~BFZN~^^^^^^^^^^~04/01/2004~
-~03942~^~435~^18.^0^^~4~^~NC~^^^^^^^^^^~10/01/2016~
-~03942~^~601~^1.^0^^~12~^~MA~^^^^^^^^^^~10/01/2016~
-~03943~^~208~^504.^0^^~4~^~NC~^^^^^^^^^^~10/01/2016~
-~03943~^~262~^0.^0^^~4~^~BFZN~^^^^^^^^^^~04/01/2004~
-~03943~^~263~^0.^0^^~4~^~BFZN~^^^^^^^^^^~04/01/2004~
-~03943~^~268~^2110.^0^^~4~^~NC~^^^^^^^^^^~10/01/2016~
-~03943~^~301~^390.^0^^~12~^~MA~^^^^^^^^^^~10/01/2016~
-~03943~^~304~^40.^0^^~12~^~MA~^^^^^^^^^^~10/01/2016~
-~03943~^~305~^260.^0^^~12~^~MA~^^^^^^^^^^~10/01/2016~
-~03943~^~306~^540.^0^^~12~^~MA~^^^^^^^^^^~10/01/2016~
-~03943~^~307~^200.^0^^~12~^~MA~^^^^^^^^^^~10/01/2016~
-~03943~^~318~^1500.^0^^~4~^~NC~^^^^^^^^^^~10/01/2016~
-~03943~^~319~^450.^0^^~12~^~MA~^^^^^^^^^^~10/01/2016~
-~03943~^~320~^450.^0^^~4~^~NC~^^^^^^^^^^~10/01/2016~
-~03943~^~321~^0.^0^^~4~^~BFZN~^^^^^^^^^^~04/01/2004~
-~03943~^~322~^0.^0^^~4~^~BFZN~^^^^^^^^^^~04/01/2004~
-~03943~^~324~^300.^0^^~12~^~MA~^^^^^^^^^^~10/01/2016~
-~03943~^~334~^0.^0^^~4~^~BFZN~^^^^^^^^^^~04/01/2004~
-~03943~^~337~^0.^0^^~4~^~BFZN~^^^^^^^^^^~04/01/2004~
-~03943~^~338~^0.^0^^~4~^~BFZN~^^^^^^^^^^~04/01/2004~
-~03943~^~417~^80.^0^^~12~^~MA~^^^^^^^^^^~10/01/2016~
-~03943~^~431~^80.^0^^~12~^~MA~^^^^^^^^^^~10/01/2016~
-~03943~^~432~^0.^0^^~4~^~BFZN~^^^^^^^^^^~02/01/2007~
-~03943~^~435~^136.^0^^~4~^~NC~^^^^^^^^^^~10/01/2016~
-~03943~^~601~^1.^0^^~12~^~MA~^^^^^^^^^^~10/01/2016~
-~03944~^~208~^69.^0^^~4~^~NC~^^^^^^^^^^~08/01/2009~
-~03944~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2004~
-~03944~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2004~
-~03944~^~268~^290.^0^^~4~^~NC~^^^^^^^^^^~03/01/2007~
-~03944~^~301~^72.^0^^~9~^~MC~^^^^^^^^^^~03/01/2007~
-~03944~^~304~^6.^0^^~9~^~MC~^^^^^^^^^^~03/01/2007~
-~03944~^~305~^42.^0^^~9~^~MC~^^^^^^^^^^~03/01/2007~
-~03944~^~306~^97.^0^^~9~^~MC~^^^^^^^^^^~03/01/2007~
-~03944~^~307~^23.^0^^~9~^~MC~^^^^^^^^^^~03/01/2007~
-~03944~^~318~^315.^0^^~4~^~NR~^^^^^^^^^^~03/01/2007~
-~03944~^~319~^94.^0^^~4~^~NR~^^^^^^^^^^~03/01/2007~
-~03944~^~320~^94.^0^^~4~^~NC~^^^^^^^^^^~03/01/2007~
-~03944~^~321~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2004~
-~03944~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~
-~03944~^~324~^48.^0^^~9~^~MC~^^^^^^^^^^~03/01/2007~
-~03944~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~
-~03944~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~
-~03944~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~
-~03944~^~417~^17.^0^^~9~^~MC~^^^^^^^^^^~03/01/2007~
-~03944~^~431~^17.^0^^~9~^~MC~^^^^^^^^^^~03/01/2007~
-~03944~^~432~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~
-~03944~^~435~^29.^0^^~4~^~NC~^^^^^^^^^^~08/01/2009~
-~03944~^~601~^2.^0^^~12~^~MA~^^^^^^^^^^~03/01/1998~
-~03945~^~208~^520.^0^^~4~^~NC~^^^^^^^^^^~08/01/2009~
-~03945~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2004~
-~03945~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2004~
-~03945~^~268~^2174.^0^^~4~^~NC~^^^^^^^^^^~08/01/2009~
-~03945~^~301~^541.^0^^~9~^~MC~^^^^^^^^^^~03/01/2007~
-~03945~^~304~^46.^0^^~9~^~MC~^^^^^^^^^^~03/01/2007~
-~03945~^~305~^319.^0^^~9~^~MC~^^^^^^^^^^~03/01/2007~
-~03945~^~306~^731.^0^^~9~^~MC~^^^^^^^^^^~03/01/2007~
-~03945~^~307~^170.^0^^~9~^~MC~^^^^^^^^^^~03/01/2007~
-~03945~^~318~^2371.^0^^~4~^~NC~^^^^^^^^^^~08/01/2008~
-~03945~^~319~^711.^0^^~4~^~NR~^^^^^^^^^^~03/01/2007~
-~03945~^~320~^711.^0^^~4~^~NC~^^^^^^^^^^~08/01/2008~
-~03945~^~321~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2004~
-~03945~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~
-~03945~^~324~^361.^0^^~4~^~NR~^^^^^^^^^^~03/01/2007~
-~03945~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~
-~03945~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~
-~03945~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~
-~03945~^~417~^128.^0^^~9~^~MC~^^^^^^^^^^~03/01/2007~
-~03945~^~431~^128.^0^^~4~^~NR~^^^^^^^^^^~03/01/2007~
-~03945~^~432~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~
-~03945~^~435~^218.^0^^~4~^~NC~^^^^^^^^^^~08/01/2009~
-~03945~^~601~^14.^0^^~4~^~NR~^^^^^^^^^^~03/01/2007~
-~03946~^~208~^68.^0^^~4~^~NC~^^^^^^^^^^~08/01/2009~
-~03946~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2004~
-~03946~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2004~
-~03946~^~268~^283.^0^^~4~^~NC~^^^^^^^^^^~08/01/2009~
-~03946~^~301~^58.^0^^~4~^~NR~^^^^^^^^^^~03/01/2007~
-~03946~^~304~^3.^0^^~4~^~NR~^^^^^^^^^^~03/01/2007~
-~03946~^~305~^39.^0^^~4~^~NR~^^^^^^^^^^~03/01/2007~
-~03946~^~306~^74.^0^^~4~^~NR~^^^^^^^^^^~03/01/2007~
-~03946~^~307~^21.^0^^~4~^~NR~^^^^^^^^^^~03/01/2007~
-~03946~^~318~^208.^0^^~4~^~NC~^^^^^^^^^^~05/01/2011~
-~03946~^~319~^62.^0^^~4~^~NR~^^^^^^^^^^~03/01/2007~
-~03946~^~320~^62.^0^^~4~^~NC~^^^^^^^^^^~03/01/2007~
-~03946~^~321~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2004~
-~03946~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~
-~03946~^~324~^40.^0^^~4~^~NR~^^^^^^^^^^~03/01/2007~
-~03946~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~
-~03946~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~
-~03946~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~
-~03946~^~417~^10.^0^^~4~^~NR~^^^^^^^^^^~03/01/2007~
-~03946~^~431~^10.^0^^~4~^~NR~^^^^^^^^^^~03/01/2007~
-~03946~^~432~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~
-~03946~^~435~^18.^0^^~4~^~NC~^^^^^^^^^^~08/01/2009~
-~03946~^~601~^2.^0^^~12~^~MA~^^^^^^^^^^~03/01/1998~
-~03947~^~208~^128.^0^^~4~^~NC~^^^^^^^^^^~08/01/2009~
-~03947~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2004~
-~03947~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2004~
-~03947~^~268~^536.^0^^~4~^~NC~^^^^^^^^^^~08/01/2009~
-~03947~^~301~^108.^0^^~9~^~MC~^^^^^^^^^^~03/01/2007~
-~03947~^~304~^8.^0^^~9~^~MC~^^^^^^^^^^~03/01/2007~
-~03947~^~305~^72.^0^^~9~^~MC~^^^^^^^^^^~03/01/2007~
-~03947~^~306~^138.^0^^~9~^~MC~^^^^^^^^^^~03/01/2007~
-~03947~^~307~^39.^0^^~9~^~MC~^^^^^^^^^^~03/01/2007~
-~03947~^~318~^385.^0^^~9~^~MC~^^^^^^^^^^~03/01/2007~
-~03947~^~319~^116.^0^^~4~^~NR~^^^^^^^^^^~03/01/2007~
-~03947~^~320~^116.^0^^~4~^~NR~^^^^^^^^^^~03/01/2007~
-~03947~^~321~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2004~
-~03947~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~
-~03947~^~324~^74.^0^^~4~^~NR~^^^^^^^^^^~03/01/2007~
-~03947~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~
-~03947~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~
-~03947~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~
-~03947~^~417~^19.^0^^~9~^~MC~^^^^^^^^^^~03/01/2007~
-~03947~^~431~^19.^0^^~9~^~MC~^^^^^^^^^^~03/01/2007~
-~03947~^~432~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~
-~03947~^~435~^33.^0^^~4~^~NC~^^^^^^^^^^~08/01/2009~
-~03947~^~601~^4.^0^^~4~^~NR~^^^^^^^^^^~03/01/2007~
-~03948~^~208~^520.^0^^~4~^~NC~^^^^^^^^^^~08/01/2009~
-~03948~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2004~
-~03948~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2004~
-~03948~^~268~^2175.^0^^~4~^~NC~^^^^^^^^^^~08/01/2009~
-~03948~^~301~^436.^0^^~4~^~NR~^^^^^^^^^^~03/01/2007~
-~03948~^~304~^30.^0^^~4~^~NR~^^^^^^^^^^~03/01/2007~
-~03948~^~305~^293.^0^^~4~^~NR~^^^^^^^^^^~03/01/2007~
-~03948~^~306~^557.^0^^~4~^~NR~^^^^^^^^^^~03/01/2007~
-~03948~^~307~^158.^0^^~4~^~NR~^^^^^^^^^^~03/01/2007~
-~03948~^~318~^1559.^0^^~4~^~NC~^^^^^^^^^^~05/01/2011~
-~03948~^~319~^468.^0^^~4~^~NR~^^^^^^^^^^~03/01/2007~
-~03948~^~320~^468.^0^^~4~^~NC~^^^^^^^^^^~03/01/2007~
-~03948~^~321~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2004~
-~03948~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~
-~03948~^~324~^369.^0^^~4~^~NR~^^^^^^^^^^~03/01/2007~
-~03948~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~
-~03948~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~
-~03948~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~
-~03948~^~417~^75.^0^^~4~^~NR~^^^^^^^^^^~03/01/2007~
-~03948~^~431~^75.^0^^~4~^~NR~^^^^^^^^^^~03/01/2007~
-~03948~^~432~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~
-~03948~^~435~^128.^0^^~4~^~NC~^^^^^^^^^^~08/01/2009~
-~03948~^~601~^15.^0^^~4~^~NR~^^^^^^^^^^~03/01/2007~
-~03949~^~208~^66.^0^^~4~^~NC~^^^^^^^^^^
-~03949~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~
-~03949~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~
-~03949~^~268~^275.^0^^~4~^~NC~^^^^^^^^^^
-~03949~^~301~^53.^0^^~9~^~MC~^^^^^^^^^^~03/01/2007~
-~03949~^~304~^4.^1^^~12~^~MA~^^^^^^^^^^~01/01/1998~
-~03949~^~305~^28.^1^^~12~^~MA~^^^^^^^^^^~01/01/1998~
-~03949~^~306~^69.^1^^~12~^~MA~^^^^^^^^^^~01/01/1998~
-~03949~^~307~^16.^1^^~12~^~MA~^^^^^^^^^^~01/01/1998~
-~03949~^~318~^197.^0^^~4~^~NC~^^^^^^^^^^~05/01/2006~
-~03949~^~319~^59.^0^^~4~^~T~^^^^^^^^^^~02/01/2003~
-~03949~^~320~^59.^0^^~4~^~NC~^^^^^^^^^^~05/01/2004~
-~03949~^~321~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2004~
-~03949~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~
-~03949~^~324~^39.^0^^~4~^~T~^^^^^^^^^^~02/01/2003~
-~03949~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~
-~03949~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~
-~03949~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~
-~03949~^~417~^10.^1^^~12~^~MA~^^^^^^^^^^~01/01/1998~
-~03949~^~431~^10.^0^^~4~^~T~^^^^^^^^^^~02/01/2003~
-~03949~^~432~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~
-~03949~^~435~^17.^0^^~4~^~NC~^^^^^^^^^^~06/01/2008~
-~03949~^~601~^2.^1^^~12~^~MA~^^^^^^^^^^~03/01/1998~
-~03950~^~208~^522.^0^^~4~^~NC~^^^^^^^^^^~02/01/2007~
-~03950~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~
-~03950~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~
-~03950~^~268~^2185.^0^^~4~^~NC~^^^^^^^^^^~02/01/2007~
-~03950~^~301~^410.^0^^~4~^~T~^^^^^^^^^^~03/01/2004~
-~03950~^~304~^32.^0^^~4~^~T~^^^^^^^^^^~03/01/2004~
-~03950~^~305~^221.^0^^~4~^~T~^^^^^^^^^^~03/01/2004~
-~03950~^~306~^552.^0^^~4~^~T~^^^^^^^^^^~03/01/2004~
-~03950~^~307~^126.^0^^~5~^~ML~^^^^^^^^^^~02/01/1998~
-~03950~^~318~^1578.^0^^~9~^~MC~^^^^^^^^^^~05/01/2004~
-~03950~^~319~^473.^0^^~4~^~T~^^^^^^^^^^~02/01/2003~
-~03950~^~320~^473.^0^^~4~^~NC~^^^^^^^^^^~05/01/2007~
-~03950~^~321~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~
-~03950~^~322~^0.^0^^~4~^~T~^^^^^^^^^^~02/01/2003~
-~03950~^~324~^316.^0^^~4~^~T~^^^^^^^^^^~03/01/2004~
-~03950~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~
-~03950~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~
-~03950~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~
-~03950~^~417~^79.^0^^~5~^~ML~^^^^^^^^^^~02/01/1998~
-~03950~^~431~^79.^0^^~4~^~T~^^^^^^^^^^~02/01/2003~
-~03950~^~432~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~
-~03950~^~435~^134.^0^^~4~^~NC~^^^^^^^^^^~06/01/2008~
-~03950~^~601~^14.^0^^~5~^~ML~^^^^^^^^^^~03/01/1998~
-~03951~^~208~^127.^0^^~4~^~NC~^^^^^^^^^^~03/01/2004~
-~03951~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~
-~03951~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~
-~03951~^~268~^530.^0^^~4~^~NC~^^^^^^^^^^~03/01/2004~
-~03951~^~301~^99.^0^^~5~^~ML~^^^^^^^^^^~02/01/1998~
-~03951~^~304~^8.^0^^~5~^~ML~^^^^^^^^^^~02/01/1998~
-~03951~^~305~^54.^0^^~4~^~T~^^^^^^^^^^~03/01/2004~
-~03951~^~306~^134.^0^^~5~^~ML~^^^^^^^^^^~02/01/1998~
-~03951~^~307~^31.^0^^~5~^~ML~^^^^^^^^^^~02/01/1998~
-~03951~^~318~^382.^0^^~9~^~MC~^^^^^^^^^^~05/01/2004~
-~03951~^~319~^114.^0^^~4~^~T~^^^^^^^^^^~02/01/2003~
-~03951~^~320~^114.^0^^~4~^~NC~^^^^^^^^^^~05/01/2007~
-~03951~^~321~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~
-~03951~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~
-~03951~^~324~^76.^0^^~4~^~T~^^^^^^^^^^~02/01/2003~
-~03951~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~
-~03951~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~
-~03951~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~
-~03951~^~417~^19.^0^^~5~^~ML~^^^^^^^^^^~02/01/1998~
-~03951~^~431~^19.^0^^~4~^~T~^^^^^^^^^^~02/01/2003~
-~03951~^~432~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~
-~03951~^~435~^33.^0^^~4~^~NC~^^^^^^^^^^~06/01/2008~
-~03951~^~601~^3.^0^^~5~^~ML~^^^^^^^^^^~03/01/1998~
-~03952~^~208~^128.^0^^~4~^~T~^^^^^^^^^^~03/01/2004~
-~03952~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~
-~03952~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~
-~03952~^~268~^536.^0^^~4~^~T~^^^^^^^^^^~04/01/2004~
-~03952~^~301~^134.^0^^~5~^~ML~^^^^^^^^^^~02/01/1998~
-~03952~^~304~^10.^0^^~5~^~ML~^^^^^^^^^^~02/01/1998~
-~03952~^~305~^96.^0^^~5~^~ML~^^^^^^^^^^~02/01/1998~
-~03952~^~306~^138.^0^^~5~^~ML~^^^^^^^^^^~02/01/1998~
-~03952~^~307~^56.^0^^~5~^~ML~^^^^^^^^^^~02/01/1998~
-~03952~^~318~^380.^0^^~4~^~NC~^^^^^^^^^^~04/01/2004~
-~03952~^~319~^114.^0^^~4~^~T~^^^^^^^^^^~02/01/2003~
-~03952~^~320~^114.^0^^~4~^~NC~^^^^^^^^^^~04/01/2004~
-~03952~^~321~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~
-~03952~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~
-~03952~^~324~^77.^0^^~4~^~T~^^^^^^^^^^~02/01/2003~
-~03952~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~
-~03952~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~
-~03952~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~
-~03952~^~417~^19.^0^^~5~^~ML~^^^^^^^^^^~02/01/1998~
-~03952~^~431~^19.^0^^~4~^~T~^^^^^^^^^^~02/01/2003~
-~03952~^~432~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~
-~03952~^~435~^33.^0^^~4~^~NC~^^^^^^^^^^~07/01/2008~
-~03952~^~601~^0.^0^^~5~^~ML~^^^^^^^^^^~02/01/1998~
-~03953~^~208~^66.^0^^~4~^~NC~^^^^^^^^^^~05/01/2007~
-~03953~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~
-~03953~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~
-~03953~^~268~^274.^0^^~4~^~NC~^^^^^^^^^^~05/01/2007~
-~03953~^~301~^69.^1^^~12~^~MA~^^^^^^^^^^~01/01/1998~
-~03953~^~304~^5.^1^^~12~^~MA~^^^^^^^^^^~01/01/1998~
-~03953~^~305~^49.^1^^~12~^~MA~^^^^^^^^^^~01/01/1998~
-~03953~^~306~^71.^1^^~12~^~MA~^^^^^^^^^^~01/01/1998~
-~03953~^~307~^29.^1^^~12~^~MA~^^^^^^^^^^~03/01/2003~
-~03953~^~318~^197.^0^^~4~^~NC~^^^^^^^^^^~03/01/2004~
-~03953~^~319~^59.^0^^~4~^~NR~^^^^^^^^^^~02/01/2003~
-~03953~^~320~^59.^0^^~4~^~NC~^^^^^^^^^^~05/01/2007~
-~03953~^~321~^0.^0^^~4~^~T~^^^^^^^^^^~02/01/2003~
-~03953~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~
-~03953~^~324~^39.^0^^~9~^~MC~^^^^^^^^^^~05/01/2004~
-~03953~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~
-~03953~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~
-~03953~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~
-~03953~^~417~^10.^1^^~12~^~MA~^^^^^^^^^^~01/01/1998~
-~03953~^~431~^10.^0^^~4~^~T~^^^^^^^^^^~02/01/2003~
-~03953~^~432~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~
-~03953~^~435~^17.^0^^~4~^~NC~^^^^^^^^^^~06/01/2009~
-~03953~^~601~^0.^1^^~12~^~MA~^^^^^^^^^^~01/01/1998~
-~03954~^~208~^517.^0^^~4~^~NC~^^^^^^^^^^~03/01/2004~
-~03954~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~
-~03954~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~
-~03954~^~268~^2165.^0^^~4~^~NC~^^^^^^^^^^~05/01/2004~
-~03954~^~301~^540.^0^^~4~^~T~^^^^^^^^^^~03/01/2004~
-~03954~^~304~^39.^1^^~12~^~MA~^^^^^^^^^^~01/01/1998~
-~03954~^~305~^386.^0^^~4~^~T~^^^^^^^^^^~03/01/2004~
-~03954~^~306~^555.^0^^~4~^~T~^^^^^^^^^^~03/01/2004~
-~03954~^~307~^226.^0^^~4~^~T~^^^^^^^^^^~03/01/2004~
-~03954~^~318~^1543.^0^^~9~^~MC~^^^^^^^^^^~05/01/2004~
-~03954~^~319~^462.^0^^~4~^~NC~^^^^^^^^^^~05/01/2004~
-~03954~^~320~^462.^0^^~4~^~NC~^^^^^^^^^^~04/01/2004~
-~03954~^~321~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~
-~03954~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~
-~03954~^~324~^309.^0^^~4~^~T~^^^^^^^^^^~03/01/2004~
-~03954~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~
-~03954~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~
-~03954~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~
-~03954~^~417~^77.^1^^~12~^~MA~^^^^^^^^^^~01/01/1998~
-~03954~^~431~^77.^0^^~4~^~T~^^^^^^^^^^~02/01/2003~
-~03954~^~432~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~
-~03954~^~435~^131.^0^^~4~^~NC~^^^^^^^^^^~07/01/2008~
-~03954~^~601~^0.^1^^~12~^~MA~^^^^^^^^^^~01/01/1998~
-~03955~^~208~^73.^0^^~4~^~NC~^^^^^^^^^^~10/01/2016~
-~03955~^~262~^0.^0^^~4~^~BFFN~^~03849~^^^^^^^^^~05/01/2007~
-~03955~^~263~^0.^0^^~4~^~BFFN~^~03849~^^^^^^^^^~05/01/2007~
-~03955~^~268~^306.^0^^~4~^~NC~^^^^^^^^^^~10/01/2016~
-~03955~^~301~^86.^0^^~12~^~MA~^^^^^^^^^^~05/01/2007~
-~03955~^~304~^6.^0^^~12~^~MA~^^^^^^^^^^~10/01/2016~
-~03955~^~305~^48.^0^^~12~^~MA~^^^^^^^^^^~10/01/2016~
-~03955~^~306~^76.^0^^~12~^~MA~^^^^^^^^^^~10/01/2016~
-~03955~^~307~^27.^0^^~12~^~MA~^^^^^^^^^^~10/01/2016~
-~03955~^~318~^323.^0^^~4~^~NC~^^^^^^^^^^~10/01/2016~
-~03955~^~319~^97.^0^^~12~^~MA~^^^^^^^^^^~10/01/2016~
-~03955~^~320~^97.^0^^~4~^~NC~^~03849~^^^^^^^^^~10/01/2016~
-~03955~^~321~^0.^0^^~4~^~BFFN~^~03849~^^^^^^^^^~05/01/2007~
-~03955~^~322~^0.^0^^~4~^~BFFN~^~03849~^^^^^^^^^~05/01/2007~
-~03955~^~324~^54.^0^^~12~^~MA~^^^^^^^^^^~10/01/2016~
-~03955~^~334~^0.^0^^~4~^~BFFN~^~03849~^^^^^^^^^~05/01/2007~
-~03955~^~337~^0.^0^^~4~^~BFFN~^~03849~^^^^^^^^^~05/01/2007~
-~03955~^~338~^0.^0^^~4~^~BFFN~^~03849~^^^^^^^^^~05/01/2007~
-~03955~^~417~^19.^0^^~12~^~MA~^^^^^^^^^^~10/01/2016~
-~03955~^~431~^19.^0^^~12~^~MA~^^^^^^^^^^~10/01/2016~
-~03955~^~432~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2007~
-~03955~^~435~^32.^0^^~4~^~NC~^^^^^^^^^^~10/01/2016~
-~03955~^~601~^1.^0^^~4~^~O~^^^^^^^^^^~05/01/2007~
-~03956~^~208~^98.^0^^~4~^~NC~^^^^^^^^^^~04/01/2009~
-~03956~^~262~^0.^0^^~4~^~FLC~^^^^^^^^^^~04/01/2009~
-~03956~^~263~^0.^0^^~4~^~FLC~^^^^^^^^^^~04/01/2009~
-~03956~^~268~^411.^0^^~4~^~NC~^^^^^^^^^^~04/01/2009~
-~03956~^~301~^107.^0^^~4~^~FLC~^^^^^^^^^^~04/01/2009~
-~03956~^~304~^15.^0^^~4~^~FLC~^^^^^^^^^^~04/01/2009~
-~03956~^~305~^95.^0^^~4~^~FLC~^^^^^^^^^^~04/01/2009~
-~03956~^~306~^149.^0^^~4~^~FLC~^^^^^^^^^^~04/01/2009~
-~03956~^~307~^41.^0^^~4~^~FLC~^^^^^^^^^^~04/01/2009~
-~03956~^~318~^86.^0^^~4~^~NC~^^^^^^^^^^~05/01/2009~
-~03956~^~319~^23.^0^^~4~^~FLC~^^^^^^^^^^~04/01/2009~
-~03956~^~320~^24.^0^^~4~^~NC~^^^^^^^^^^~05/01/2009~
-~03956~^~321~^5.^0^^~4~^~FLC~^^^^^^^^^^~04/01/2009~
-~03956~^~322~^0.^0^^~4~^~FLC~^^^^^^^^^^~04/01/2009~
-~03956~^~324~^3.^0^^~4~^~FLC~^^^^^^^^^^~04/01/2009~
-~03956~^~334~^0.^0^^~4~^~FLC~^^^^^^^^^^~04/01/2009~
-~03956~^~337~^0.^0^^~4~^~FLC~^^^^^^^^^^~04/01/2009~
-~03956~^~338~^6.^0^^~4~^~FLC~^^^^^^^^^^~04/01/2009~
-~03956~^~417~^8.^0^^~4~^~FLC~^^^^^^^^^^~04/01/2009~
-~03956~^~431~^0.^0^^~4~^~FLC~^^^^^^^^^^~04/01/2009~
-~03956~^~432~^8.^0^^~4~^~FLC~^^^^^^^^^^~04/01/2009~
-~03956~^~435~^8.^0^^~4~^~NC~^^^^^^^^^^~05/01/2009~
-~03956~^~601~^14.^0^^~4~^~FLC~^^^^^^^^^^~04/01/2009~
-~03957~^~208~^517.^1^^~4~^~NC~^^^^^^^^^^~05/01/2007~
-~03957~^~262~^0.^0^^~4~^~NR~^^^^^^^^^^~02/01/2009~
-~03957~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~
-~03957~^~268~^2165.^0^^~4~^~NC~^^^^^^^^^^~05/01/2007~
-~03957~^~301~^534.^1^^~4~^~BFSN~^^^^^^^^^^~05/01/2007~
-~03957~^~304~^38.^0^^~4~^~BFSN~^^^^^^^^^^~05/01/2007~
-~03957~^~305~^382.^0^^~4~^~BFSN~^^^^^^^^^^~05/01/2007~
-~03957~^~306~^598.^0^^~4~^~BFSN~^~03935~^^^^^^^^^~05/01/2007~
-~03957~^~307~^224.^0^^~4~^~BFSN~^^^^^^^^^^~05/01/2007~
-~03957~^~318~^1528.^0^^~4~^~NC~^^^^^^^^^^~02/01/2009~
-~03957~^~319~^458.^0^^~4~^~BFFN~^~03935~^^^^^^^^^~05/01/2007~
-~03957~^~320~^458.^0^^~4~^~NC~^~03935~^^^^^^^^^~02/01/2009~
-~03957~^~321~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~
-~03957~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~
-~03957~^~324~^229.^0^^~4~^~BFSN~^^^^^^^^^^~05/01/2007~
-~03957~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~
-~03957~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~
-~03957~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~
-~03957~^~417~^76.^1^^~4~^~BFSN~^^^^^^^^^^~05/01/2007~
-~03957~^~431~^76.^0^^~4~^~BFSN~^~03935~^^^^^^^^^~05/01/2007~
-~03957~^~432~^0.^0^^~4~^~BFSN~^~03935~^^^^^^^^^~05/01/2007~
-~03957~^~435~^130.^0^^~4~^~NC~^~03935~^^^^^^^^^~02/01/2009~
-~03957~^~601~^8.^0^^~4~^~BFFN~^~03935~^^^^^^^^^~05/01/2007~
-~03959~^~208~^48.^0^^~4~^~NC~^^^^^^^^^^~05/01/2012~
-~03959~^~262~^0.^0^^~4~^~FLA~^^^^^^^^^^~05/01/2009~
-~03959~^~263~^0.^0^^~4~^~FLA~^^^^^^^^^^~05/01/2009~
-~03959~^~268~^202.^0^^~4~^~NC~^^^^^^^^^^~05/01/2009~
-~03959~^~301~^20.^0^^~4~^~FLA~^^^^^^^^^^~05/01/2012~
-~03959~^~304~^8.^0^^~4~^~FLA~^^^^^^^^^^~12/01/2008~
-~03959~^~305~^24.^0^^~4~^~FLA~^^^^^^^^^^~05/01/2012~
-~03959~^~306~^118.^0^^~4~^~FLA~^^^^^^^^^^~05/01/2009~
-~03959~^~307~^176.^0^^~4~^~FLA~^^^^^^^^^^~05/01/2009~
-~03959~^~318~^84.^0^^~4~^~FLA~^^^^^^^^^^~05/01/2012~
-~03959~^~319~^11.^0^^~4~^~FLA~^^^^^^^^^^~05/01/2012~
-~03959~^~320~^13.^0^^~4~^~FLA~^^^^^^^^^^~05/01/2012~
-~03959~^~321~^28.^0^^~4~^~FLA~^^^^^^^^^^~05/01/2012~
-~03959~^~322~^2.^0^^~4~^~FLA~^^^^^^^^^^~12/01/2008~
-~03959~^~324~^0.^0^^~4~^~FLA~^^^^^^^^^^~03/01/2009~
-~03959~^~334~^0.^0^^~4~^~FLA~^^^^^^^^^^~12/01/2008~
-~03959~^~337~^0.^0^^~4~^~FLA~^^^^^^^^^^~03/01/2009~
-~03959~^~338~^98.^0^^~4~^~FLA~^^^^^^^^^^~05/01/2012~
-~03959~^~417~^6.^0^^~4~^~FLA~^^^^^^^^^^~05/01/2012~
-~03959~^~431~^0.^0^^~4~^~FLA~^^^^^^^^^^~03/01/2009~
-~03959~^~432~^6.^0^^~4~^~FLA~^^^^^^^^^^~05/01/2012~
-~03959~^~435~^6.^0^^~4~^~NC~^^^^^^^^^^~05/01/2012~
-~03959~^~601~^4.^0^^~4~^~FLA~^^^^^^^^^^~05/01/2012~
-~03959~^~638~^0.^0^^~4~^~FLA~^^^^^^^^^^~03/01/2009~
-~03959~^~639~^0.^0^^~4~^~FLA~^^^^^^^^^^~03/01/2009~
-~03959~^~641~^0.^0^^~4~^~FLA~^^^^^^^^^^~12/01/2008~
-~03960~^~208~^66.^0^^~9~^^^^^^^^^^^~06/01/1994~
-~03960~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~
-~03960~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~
-~03960~^~268~^276.^0^^~9~^^^^^^^^^^^~05/01/2004~
-~03960~^~301~^42.^0^^~12~^^^^^^^^^^^~04/01/1991~
-~03960~^~304~^5.^0^^~9~^~MC~^^^^^^^^^^~05/01/2004~
-~03960~^~305~^24.^0^^~12~^^^^^^^^^^^~06/01/1994~
-~03960~^~306~^71.^0^^~9~^~MC~^^^^^^^^^^~06/01/2004~
-~03960~^~307~^18.^0^^~9~^~MC~^^^^^^^^^^~05/01/2004~
-~03960~^~318~^200.^0^^~4~^~NC~^^^^^^^^^^~05/01/2009~
-~03960~^~319~^60.^0^^~4~^~T~^^^^^^^^^^~02/01/2003~
-~03960~^~320~^60.^0^^~4~^~NC~^^^^^^^^^^~05/01/2009~
-~03960~^~321~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~
-~03960~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~
-~03960~^~324~^42.^0^^~9~^~MC~^^^^^^^^^^~12/01/2007~
-~03960~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~
-~03960~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~
-~03960~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~
-~03960~^~417~^10.^0^^~9~^~MC~^^^^^^^^^^~05/01/2004~
-~03960~^~431~^10.^0^^~9~^~MC~^^^^^^^^^^~05/01/2004~
-~03960~^~432~^0.^0^^~9~^~MC~^^^^^^^^^^~05/01/2004~
-~03960~^~435~^17.^0^^~4~^~NC~^^^^^^^^^^~05/01/2009~
-~03960~^~601~^4.^0^^~12~^~MA~^^^^^^^^^^~05/01/2004~
-~03961~^~208~^66.^0^^~4~^~NR~^^^^^^^^^^~01/01/2009~
-~03961~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~
-~03961~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~
-~03961~^~268~^276.^0^^~4~^~NR~^^^^^^^^^^~01/01/2009~
-~03961~^~301~^42.^0^^~9~^~MC~^^^^^^^^^^~01/01/2009~
-~03961~^~304~^5.^0^^~9~^~MC~^^^^^^^^^^~01/01/2009~
-~03961~^~305~^24.^0^^~9~^~MC~^^^^^^^^^^~01/01/2009~
-~03961~^~306~^71.^0^^~9~^~MC~^^^^^^^^^^~01/01/2009~
-~03961~^~307~^18.^0^^~9~^~MC~^^^^^^^^^^~01/01/2009~
-~03961~^~318~^200.^0^^~4~^~NC~^^^^^^^^^^~01/01/2009~
-~03961~^~319~^60.^0^^~4~^~O~^^^^^^^^^^~05/01/2009~
-~03961~^~320~^60.^0^^~4~^~NC~^^^^^^^^^^~05/01/2009~
-~03961~^~321~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2009~
-~03961~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~
-~03961~^~324~^42.^0^^~9~^~MC~^^^^^^^^^^~01/01/2009~
-~03961~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~
-~03961~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~
-~03961~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~
-~03961~^~417~^10.^0^^~9~^~MC~^^^^^^^^^^~01/01/2009~
-~03961~^~431~^10.^0^^~9~^~MC~^^^^^^^^^^~01/01/2009~
-~03961~^~432~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~
-~03961~^~435~^17.^0^^~4~^~NC~^^^^^^^^^^~05/01/2009~
-~03961~^~601~^4.^0^^~12~^~MA~^^^^^^^^^^~01/01/2009~
-~03963~^~208~^68.^0^^~4~^~NC~^^^^^^^^^^~10/01/2016~
-~03963~^~262~^0.^0^^~9~^~MC~^^^^^^^^^^~04/01/2009~
-~03963~^~263~^0.^0^^~9~^~MC~^^^^^^^^^^~04/01/2009~
-~03963~^~268~^284.^0^^~4~^~NC~^^^^^^^^^^~10/01/2016~
-~03963~^~301~^54.^0^^~12~^~MA~^^^^^^^^^^~10/01/2016~
-~03963~^~304~^5.^0^^~12~^~MA~^^^^^^^^^^~10/01/2016~
-~03963~^~305~^30.^0^^~9~^~MC~^^^^^^^^^^~04/01/2009~
-~03963~^~306~^71.^0^^~9~^~MC~^^^^^^^^^^~04/01/2009~
-~03963~^~307~^24.^0^^~12~^~MA~^^^^^^^^^^~10/01/2016~
-~03963~^~318~^197.^0^^~4~^~NC~^^^^^^^^^^~10/01/2016~
-~03963~^~319~^59.^0^^~12~^~MA~^^^^^^^^^^~10/01/2016~
-~03963~^~320~^59.^0^^~4~^~NC~^^^^^^^^^^~10/01/2016~
-~03963~^~321~^0.^0^^~4~^~NR~^^^^^^^^^^~01/01/2009~
-~03963~^~322~^0.^0^^~4~^~NR~^^^^^^^^^^~01/01/2009~
-~03963~^~324~^39.^0^^~12~^~MA~^^^^^^^^^^~10/01/2016~
-~03963~^~334~^0.^0^^~4~^~NR~^^^^^^^^^^~01/01/2009~
-~03963~^~337~^0.^0^^~12~^~MA~^^^^^^^^^^~10/01/2016~
-~03963~^~338~^0.^0^^~12~^~MA~^^^^^^^^^^~10/01/2016~
-~03963~^~417~^10.^0^^~9~^~MC~^^^^^^^^^^~04/01/2009~
-~03963~^~431~^10.^0^^~9~^~MC~^^^^^^^^^^~04/01/2009~
-~03963~^~432~^0.^0^^~9~^~MC~^^^^^^^^^^~04/01/2009~
-~03963~^~435~^18.^0^^~4~^~NC~^^^^^^^^^^~05/01/2009~
-~03963~^~601~^2.^0^^~12~^~MA~^^^^^^^^^^~10/01/2016~
-~03964~^~208~^344.^0^^~4~^~NC~^^^^^^^^^^~05/01/2009~
-~03964~^~262~^0.^0^^~4~^~FLC~^^^^^^^^^^~05/01/2009~
-~03964~^~263~^0.^0^^~4~^~FLC~^^^^^^^^^^~05/01/2009~
-~03964~^~268~^1439.^0^^~4~^~NC~^^^^^^^^^^~05/01/2009~
-~03964~^~301~^1053.^0^^~9~^~MC~^^^^^^^^^^~05/01/2009~
-~03964~^~304~^19.^0^^~4~^~FLC~^^^^^^^^^^~02/01/2009~
-~03964~^~305~^247.^0^^~4~^~FLC~^^^^^^^^^^~02/01/2009~
-~03964~^~306~^180.^0^^~4~^~FLC~^^^^^^^^^^~02/01/2009~
-~03964~^~307~^157.^0^^~8~^~LC~^^^^^^^^^^~06/01/2013~
-~03964~^~318~^277.^0^^~4~^~NC~^^^^^^^^^^~05/01/2009~
-~03964~^~319~^0.^0^^~4~^~FLC~^^^^^^^^^^~02/01/2009~
-~03964~^~320~^14.^0^^~4~^~NC~^^^^^^^^^^~06/01/2009~
-~03964~^~321~^166.^0^^~4~^~FLC~^^^^^^^^^^~02/01/2009~
-~03964~^~322~^0.^0^^~4~^~FLC~^^^^^^^^^^~02/01/2009~
-~03964~^~324~^0.^0^^~4~^~FLC~^^^^^^^^^^~05/01/2009~
-~03964~^~334~^0.^0^^~4~^~FLC~^^^^^^^^^^~02/01/2009~
-~03964~^~337~^0.^0^^~4~^~FLC~^^^^^^^^^^~05/01/2009~
-~03964~^~338~^33.^0^^~4~^~FLC~^^^^^^^^^^~02/01/2009~
-~03964~^~417~^65.^0^^~4~^~FLC~^^^^^^^^^^~02/01/2009~
-~03964~^~431~^48.^0^^~4~^~FLC~^^^^^^^^^^~05/01/2009~
-~03964~^~432~^17.^0^^~4~^~FLC~^^^^^^^^^^~02/01/2009~
-~03964~^~435~^98.^0^^~4~^~NC~^^^^^^^^^^~06/01/2009~
-~03964~^~601~^1.^0^^~4~^~FLC~^^^^^^^^^^~02/01/2009~
-~03965~^~208~^92.^0^^~4~^~NC~^^^^^^^^^^~04/01/2009~
-~03965~^~262~^0.^0^^~4~^~FLC~^^^^^^^^^^~04/01/2009~
-~03965~^~263~^0.^0^^~4~^~FLC~^^^^^^^^^^~04/01/2009~
-~03965~^~268~^385.^0^^~4~^~NC~^^^^^^^^^^~04/01/2009~
-~03965~^~301~^98.^0^^~4~^~FLC~^^^^^^^^^^~04/01/2009~
-~03965~^~304~^15.^0^^~4~^~FLC~^^^^^^^^^^~04/01/2009~
-~03965~^~305~^86.^0^^~4~^~FLC~^^^^^^^^^^~04/01/2009~
-~03965~^~306~^143.^0^^~4~^~FLC~^^^^^^^^^^~04/01/2009~
-~03965~^~307~^38.^0^^~4~^~FLC~^^^^^^^^^^~04/01/2009~
-~03965~^~318~^82.^0^^~4~^~NC~^^^^^^^^^^~05/01/2009~
-~03965~^~319~^21.^0^^~4~^~FLC~^^^^^^^^^^~04/01/2009~
-~03965~^~320~^22.^0^^~4~^~NC~^^^^^^^^^^~05/01/2009~
-~03965~^~321~^7.^0^^~4~^~FLC~^^^^^^^^^^~04/01/2009~
-~03965~^~322~^0.^0^^~4~^~FLC~^^^^^^^^^^~04/01/2009~
-~03965~^~324~^2.^0^^~4~^~FLC~^^^^^^^^^^~04/01/2009~
-~03965~^~334~^1.^0^^~4~^~FLC~^^^^^^^^^^~04/01/2009~
-~03965~^~337~^0.^0^^~4~^~FLC~^^^^^^^^^^~04/01/2009~
-~03965~^~338~^13.^0^^~4~^~FLC~^^^^^^^^^^~04/01/2009~
-~03965~^~417~^7.^0^^~4~^~FLC~^^^^^^^^^^~04/01/2009~
-~03965~^~431~^0.^0^^~4~^~FLC~^^^^^^^^^^~04/01/2009~
-~03965~^~432~^7.^0^^~4~^~FLC~^^^^^^^^^^~04/01/2009~
-~03965~^~435~^7.^0^^~4~^~NC~^^^^^^^^^^~05/01/2009~
-~03965~^~601~^10.^0^^~4~^~FLC~^^^^^^^^^^~04/01/2009~
-~03966~^~208~^132.^0^^~4~^~NC~^^^^^^^^^^~07/01/2009~
-~03966~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~07/01/2009~
-~03966~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~07/01/2009~
-~03966~^~268~^553.^0^^~4~^~NC~^^^^^^^^^^~07/01/2009~
-~03966~^~301~^139.^0^^~12~^~MA~^^^^^^^^^^~07/01/2009~
-~03966~^~304~^15.^0^^~12~^~MA~^^^^^^^^^^~07/01/2009~
-~03966~^~305~^84.^0^^~12~^~MA~^^^^^^^^^^~07/01/2009~
-~03966~^~306~^154.^0^^~12~^~MA~^^^^^^^^^^~07/01/2009~
-~03966~^~307~^53.^0^^~12~^~MA~^^^^^^^^^^~07/01/2009~
-~03966~^~318~^397.^0^^~4~^~NC~^^^^^^^^^^~05/01/2011~
-~03966~^~319~^119.^0^^~4~^~NR~^^^^^^^^^^~07/01/2009~
-~03966~^~320~^119.^0^^~4~^~NC~^^^^^^^^^^~07/01/2009~
-~03966~^~321~^0.^0^^~7~^~Z~^^^^^^^^^^~07/01/2009~
-~03966~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~07/01/2009~
-~03966~^~324~^80.^0^^~12~^~MA~^^^^^^^^^^~07/01/2009~
-~03966~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~07/01/2009~
-~03966~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~07/01/2009~
-~03966~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~07/01/2009~
-~03966~^~417~^21.^0^^~12~^~MA~^^^^^^^^^^~07/01/2009~
-~03966~^~431~^21.^0^^~12~^~MA~^^^^^^^^^^~07/01/2009~
-~03966~^~432~^0.^0^^~7~^~Z~^^^^^^^^^^~07/01/2009~
-~03966~^~435~^36.^0^^~4~^~NC~^^^^^^^^^^~07/01/2009~
-~03966~^~601~^2.^0^^~12~^~MA~^^^^^^^^^^~07/01/2009~
-~03967~^~208~^505.^0^^~4~^~NC~^^^^^^^^^^~10/01/2016~
-~03967~^~262~^0.^0^^~4~^~BFSN~^~03968~^^^^^^^^^~04/01/2006~
-~03967~^~263~^0.^0^^~4~^~BFSN~^~03968~^^^^^^^^^~03/01/2005~
-~03967~^~268~^2113.^0^^~4~^~NC~^^^^^^^^^^~10/01/2016~
-~03967~^~301~^970.^0^^~12~^~MA~^^^^^^^^^^~10/01/2016~
-~03967~^~304~^40.^1^^~12~^~MA~^^^^^^^^^^~04/01/2011~
-~03967~^~305~^650.^0^^~12~^~MA~^^^^^^^^^^~10/01/2016~
-~03967~^~306~^650.^1^^~12~^~MA~^^^^^^^^^^~04/01/2011~
-~03967~^~307~^179.^0^^~12~^~MA~^^^^^^^^^^~10/01/2016~
-~03967~^~318~^1500.^0^^~4~^~NC~^^^^^^^^^^~10/01/2016~
-~03967~^~319~^450.^0^^~12~^~MA~^^^^^^^^^^~10/01/2016~
-~03967~^~320~^450.^0^^~4~^~NC~^^^^^^^^^^~10/01/2016~
-~03967~^~321~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2011~
-~03967~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2011~
-~03967~^~324~^300.^1^^~12~^~MA~^^^^^^^^^^~04/01/2006~
-~03967~^~334~^0.^0^^~4~^~BFSN~^~03968~^^^^^^^^^~03/01/2005~
-~03967~^~337~^0.^0^^~4~^~BFSN~^~03968~^^^^^^^^^~03/01/2005~
-~03967~^~338~^0.^0^^~4~^~BFSN~^~03968~^^^^^^^^^~03/01/2005~
-~03967~^~417~^79.^0^^~12~^~MA~^~03968~^^^^^^^^^~10/01/2016~
-~03967~^~431~^79.^0^^~12~^~MA~^~03968~^^^^^^^^^~10/01/2016~
-~03967~^~432~^0.^0^^~7~^~Z~^~03968~^^^^^^^^^~04/01/2011~
-~03967~^~435~^134.^0^^~4~^~NC~^~03968~^^^^^^^^^~10/01/2016~
-~03967~^~601~^7.^0^^~4~^~BFFN~^~03968~^^^^^^^^^~04/01/2011~
-~03968~^~208~^64.^0^^~4~^~NC~^^^^^^^^^^~05/01/2011~
-~03968~^~262~^0.^0^^~4~^~NR~^^^^^^^^^^~04/01/2011~
-~03968~^~263~^0.^0^^~4~^~NR~^^^^^^^^^^~04/01/2011~
-~03968~^~268~^268.^0^^~4~^~NC~^^^^^^^^^^~05/01/2011~
-~03968~^~301~^133.^0^^~4~^~NR~^^^^^^^^^^~04/01/2011~
-~03968~^~304~^5.^0^^~4~^~NR~^^^^^^^^^^~04/01/2011~
-~03968~^~305~^89.^0^^~4~^~NR~^^^^^^^^^^~04/01/2011~
-~03968~^~306~^89.^0^^~4~^~NR~^^^^^^^^^^~04/01/2011~
-~03968~^~307~^25.^0^^~4~^~NR~^^^^^^^^^^~04/01/2011~
-~03968~^~318~^193.^0^^~4~^~NC~^^^^^^^^^^~04/01/2011~
-~03968~^~319~^58.^0^^~4~^~NR~^^^^^^^^^^~04/01/2011~
-~03968~^~320~^58.^0^^~4~^~NC~^^^^^^^^^^~04/01/2011~
-~03968~^~321~^0.^0^^~4~^~NR~^^^^^^^^^^~04/01/2011~
-~03968~^~322~^0.^0^^~4~^~NR~^^^^^^^^^^~04/01/2011~
-~03968~^~324~^41.^0^^~4~^~NR~^^^^^^^^^^~04/01/2011~
-~03968~^~334~^0.^0^^~4~^~NR~^^^^^^^^^^~04/01/2011~
-~03968~^~337~^0.^0^^~4~^~NR~^^^^^^^^^^~04/01/2011~
-~03968~^~338~^0.^0^^~4~^~NR~^^^^^^^^^^~04/01/2011~
-~03968~^~417~^11.^0^^~4~^~NR~^^^^^^^^^^~04/01/2011~
-~03968~^~431~^11.^0^^~4~^~NR~^^^^^^^^^^~04/01/2011~
-~03968~^~432~^0.^0^^~4~^~NR~^^^^^^^^^^~04/01/2014~
-~03968~^~435~^19.^0^^~4~^~NC~^^^^^^^^^^~04/01/2014~
-~03968~^~601~^1.^0^^~4~^~NR~^^^^^^^^^^~04/01/2011~
-~03980~^~208~^516.^0^^~4~^~NC~^^^^^^^^^^~10/01/2016~
-~03980~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2011~
-~03980~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2011~
-~03980~^~268~^2158.^0^^~4~^~NC~^^^^^^^^^^~10/01/2016~
-~03980~^~301~^420.^1^^~12~^~MA~^^^^^^^^^^~04/01/2011~
-~03980~^~304~^41.^1^^~12~^~MA~^^^^^^^^^^~04/01/2011~
-~03980~^~305~^230.^0^^~12~^~MA~^^^^^^^^^^~10/01/2016~
-~03980~^~306~^550.^0^^~12~^~MA~^^^^^^^^^^~10/01/2016~
-~03980~^~307~^185.^1^^~12~^~MA~^^^^^^^^^^~04/01/2011~
-~03980~^~318~^1533.^0^^~4~^~NC~^^^^^^^^^^~10/01/2016~
-~03980~^~319~^460.^0^^~4~^~NR~^~03963~^^^^^^^^^~07/01/2012~
-~03980~^~320~^460.^0^^~4~^~NC~^~03963~^^^^^^^^^~07/01/2012~
-~03980~^~321~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2011~
-~03980~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2011~
-~03980~^~324~^310.^1^^~12~^~MA~^^^^^^^^^^~04/01/2011~
-~03980~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2011~
-~03980~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2011~
-~03980~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2011~
-~03980~^~417~^82.^1^^~12~^~MA~^^^^^^^^^^~04/01/2011~
-~03980~^~431~^82.^0^^~4~^~NR~^^^^^^^^^^~04/01/2011~
-~03980~^~432~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2011~
-~03980~^~435~^139.^0^^~4~^~NC~^~03963~^^^^^^^^^~04/01/2011~
-~03980~^~601~^17.^0^^~12~^~MA~^^^^^^^^^^~10/01/2016~
-~03982~^~208~^65.^0^^~4~^~NC~^^^^^^^^^^~03/01/2013~
-~03982~^~262~^0.^0^^~4~^~NR~^^^^^^^^^^~02/01/2013~
-~03982~^~263~^0.^0^^~4~^~NR~^^^^^^^^^^~02/01/2013~
-~03982~^~268~^273.^0^^~4~^~NC~^^^^^^^^^^~03/01/2013~
-~03982~^~301~^128.^0^^~9~^~MC~^^^^^^^^^^~02/01/2013~
-~03982~^~304~^7.^0^^~9~^~MC~^^^^^^^^^^~02/01/2013~
-~03982~^~305~^85.^0^^~9~^~MC~^^^^^^^^^^~02/01/2013~
-~03982~^~306~^79.^0^^~9~^~MC~^^^^^^^^^^~02/01/2013~
-~03982~^~307~^24.^0^^~9~^~MC~^^^^^^^^^^~02/01/2013~
-~03982~^~318~^199.^0^^~4~^~NC~^^^^^^^^^^~02/01/2013~
-~03982~^~319~^60.^0^^~4~^~NR~^^^^^^^^^^~02/01/2013~
-~03982~^~320~^60.^0^^~4~^~NC~^^^^^^^^^^~02/01/2013~
-~03982~^~321~^0.^0^^~4~^~NR~^^^^^^^^^^~02/01/2013~
-~03982~^~322~^0.^0^^~4~^~NR~^^^^^^^^^^~02/01/2013~
-~03982~^~324~^39.^0^^~9~^~MC~^^^^^^^^^^~02/01/2013~
-~03982~^~334~^0.^0^^~4~^~NR~^^^^^^^^^^~02/01/2013~
-~03982~^~337~^0.^0^^~4~^~NR~^^^^^^^^^^~02/01/2013~
-~03982~^~338~^0.^0^^~4~^~NR~^^^^^^^^^^~02/01/2013~
-~03982~^~417~^11.^0^^~4~^~NR~^^^^^^^^^^~02/01/2013~
-~03982~^~431~^11.^0^^~4~^~NR~^^^^^^^^^^~02/01/2013~
-~03982~^~432~^0.^0^^~4~^~NR~^^^^^^^^^^~02/01/2013~
-~03982~^~435~^18.^0^^~4~^~NC~^^^^^^^^^^~02/01/2013~
-~03982~^~601~^0.^0^^~4~^~NR~^^^^^^^^^^~02/01/2013~
-~03983~^~208~^66.^0^^~9~^~MC~^^^^^^^^^^~02/01/2013~
-~03983~^~262~^0.^0^^~4~^~NR~^^^^^^^^^^~02/01/2013~
-~03983~^~263~^0.^0^^~4~^~NR~^^^^^^^^^^~02/01/2013~
-~03983~^~268~^275.^0^^~9~^~MC~^^^^^^^^^^~02/01/2013~
-~03983~^~301~^62.^0^^~9~^~MC~^^^^^^^^^^~02/01/2013~
-~03983~^~304~^7.^0^^~9~^~MC~^^^^^^^^^^~02/01/2013~
-~03983~^~305~^34.^0^^~9~^~MC~^^^^^^^^^^~02/01/2013~
-~03983~^~306~^72.^0^^~9~^~MC~^^^^^^^^^^~02/01/2013~
-~03983~^~307~^31.^0^^~9~^~MC~^^^^^^^^^^~02/01/2013~
-~03983~^~318~^197.^0^^~9~^~MC~^^^^^^^^^^~02/01/2013~
-~03983~^~319~^59.^0^^~4~^~NR~^^^^^^^^^^~02/01/2013~
-~03983~^~320~^59.^0^^~4~^~NC~^^^^^^^^^^~02/01/2013~
-~03983~^~321~^0.^0^^~4~^~NR~^^^^^^^^^^~02/01/2013~
-~03983~^~322~^0.^0^^~4~^~NR~^^^^^^^^^^~02/01/2013~
-~03983~^~324~^33.^0^^~9~^~MC~^^^^^^^^^^~02/01/2013~
-~03983~^~334~^0.^0^^~4~^~NR~^^^^^^^^^^~02/01/2013~
-~03983~^~337~^0.^0^^~4~^~NR~^^^^^^^^^^~02/01/2013~
-~03983~^~338~^0.^0^^~4~^~NR~^^^^^^^^^^~02/01/2013~
-~03983~^~417~^11.^0^^~9~^~MC~^^^^^^^^^^~02/01/2013~
-~03983~^~431~^11.^0^^~4~^~NR~^^^^^^^^^^~02/01/2013~
-~03983~^~432~^0.^0^^~4~^~NR~^^^^^^^^^^~02/01/2013~
-~03983~^~435~^18.^0^^~4~^~NC~^^^^^^^^^^~02/01/2013~
-~03983~^~601~^0.^0^^~4~^~NR~^^^^^^^^^^~02/01/2013~
-~03984~^~208~^63.^0^^~4~^~NC~^^^^^^^^^^~10/01/2016~
-~03984~^~262~^0.^0^^~12~^~MA~^^^^^^^^^^~10/01/2016~
-~03984~^~263~^0.^0^^~12~^~MA~^^^^^^^^^^~10/01/2016~
-~03984~^~268~^265.^0^^~4~^~NC~^^^^^^^^^^~10/01/2016~
-~03984~^~301~^108.^0^^~9~^~MC~^^^^^^^^^^~02/01/2013~
-~03984~^~304~^6.^0^^~12~^~MA~^^^^^^^^^^~10/01/2016~
-~03984~^~305~^59.^0^^~12~^~MA~^^^^^^^^^^~10/01/2016~
-~03984~^~306~^64.^0^^~9~^~MC~^^^^^^^^^^~02/01/2013~
-~03984~^~307~^46.^0^^~12~^~MA~^^^^^^^^^^~10/01/2016~
-~03984~^~318~^900.^0^^~4~^~NC~^^^^^^^^^^~10/01/2016~
-~03984~^~319~^270.^0^^~12~^~MA~^^^^^^^^^^~10/01/2016~
-~03984~^~320~^270.^0^^~4~^~NC~^^^^^^^^^^~10/01/2016~
-~03984~^~321~^0.^0^^~12~^~MA~^^^^^^^^^^~10/01/2016~
-~03984~^~322~^0.^0^^~12~^~MA~^^^^^^^^^^~10/01/2016~
-~03984~^~324~^200.^0^^~12~^~MA~^^^^^^^^^^~10/01/2016~
-~03984~^~334~^0.^0^^~12~^~MA~^^^^^^^^^^~10/01/2016~
-~03984~^~337~^0.^0^^~12~^~MA~^^^^^^^^^^~10/01/2016~
-~03984~^~338~^0.^0^^~12~^~MA~^^^^^^^^^^~10/01/2016~
-~03984~^~417~^26.^0^^~9~^~MC~^^^^^^^^^^~02/01/2013~
-~03984~^~431~^26.^0^^~12~^~MA~^^^^^^^^^^~10/01/2016~
-~03984~^~432~^0.^0^^~12~^~MA~^^^^^^^^^^~10/01/2016~
-~03984~^~435~^45.^0^^~4~^~NC~^^^^^^^^^^~02/01/2013~
-~03984~^~601~^5.^0^^~12~^~MA~^^^^^^^^^^~10/01/2016~
-~03985~^~208~^81.^0^^~4~^~NC~^^^^^^^^^^~10/01/2016~
-~03985~^~262~^0.^0^^~12~^~MA~^^^^^^^^^^~10/01/2016~
-~03985~^~263~^0.^0^^~12~^~MA~^^^^^^^^^^~10/01/2016~
-~03985~^~268~^339.^0^^~4~^~NC~^^^^^^^^^^~10/01/2016~
-~03985~^~301~^129.^0^^~12~^~MA~^^^^^^^^^^~10/01/2016~
-~03985~^~304~^7.^0^^~12~^~MA~^^^^^^^^^^~10/01/2016~
-~03985~^~305~^70.^0^^~12~^~MA~^^^^^^^^^^~10/01/2016~
-~03985~^~306~^76.^0^^~12~^~MA~^^^^^^^^^^~10/01/2016~
-~03985~^~307~^55.^0^^~12~^~MA~^^^^^^^^^^~10/01/2016~
-~03985~^~318~^828.^0^^~4~^~NC~^^^^^^^^^^~05/01/2013~
-~03985~^~319~^248.^0^^~12~^~MA~^^^^^^^^^^~10/01/2016~
-~03985~^~320~^248.^0^^~4~^~NC~^^^^^^^^^^~02/01/2013~
-~03985~^~321~^0.^0^^~12~^~MA~^^^^^^^^^^~10/01/2016~
-~03985~^~322~^0.^0^^~12~^~MA~^^^^^^^^^^~10/01/2016~
-~03985~^~324~^157.^0^^~9~^~MC~^^^^^^^^^^~02/01/2013~
-~03985~^~334~^0.^0^^~12~^~MA~^^^^^^^^^^~10/01/2016~
-~03985~^~337~^0.^0^^~12~^~MA~^^^^^^^^^^~10/01/2016~
-~03985~^~338~^0.^0^^~12~^~MA~^^^^^^^^^^~10/01/2016~
-~03985~^~417~^31.^0^^~12~^~MA~^^^^^^^^^^~10/01/2016~
-~03985~^~431~^31.^0^^~12~^~MA~^^^^^^^^^^~10/01/2016~
-~03985~^~432~^0.^0^^~12~^~MA~^^^^^^^^^^~10/01/2016~
-~03985~^~435~^53.^0^^~4~^~NC~^^^^^^^^^^~10/01/2016~
-~03985~^~601~^6.^0^^~12~^~MA~^^^^^^^^^^~10/01/2016~
-~03986~^~208~^68.^0^^~4~^~NC~^^^^^^^^^^~10/01/2016~
-~03986~^~262~^0.^0^^~12~^~MA~^^^^^^^^^^~10/01/2016~
-~03986~^~263~^0.^0^^~12~^~MA~^^^^^^^^^^~10/01/2016~
-~03986~^~268~^285.^0^^~4~^~NC~^^^^^^^^^^~10/01/2016~
-~03986~^~301~^51.^0^^~9~^~MC~^^^^^^^^^^~02/01/2013~
-~03986~^~304~^5.^0^^~12~^~MA~^^^^^^^^^^~10/01/2016~
-~03986~^~305~^28.^0^^~9~^~MC~^^^^^^^^^^~02/01/2013~
-~03986~^~306~^71.^0^^~12~^~MA~^^^^^^^^^^~10/01/2016~
-~03986~^~307~^18.^0^^~12~^~MA~^^^^^^^^^^~10/01/2016~
-~03986~^~318~^197.^0^^~4~^~NC~^^^^^^^^^^~10/01/2016~
-~03986~^~319~^59.^0^^~12~^~MA~^^^^^^^^^^~10/01/2016~
-~03986~^~320~^59.^0^^~4~^~NC~^^^^^^^^^^~10/01/2016~
-~03986~^~321~^0.^0^^~12~^~MA~^^^^^^^^^^~10/01/2016~
-~03986~^~322~^0.^0^^~12~^~MA~^^^^^^^^^^~10/01/2016~
-~03986~^~324~^49.^0^^~9~^~MC~^^^^^^^^^^~02/01/2013~
-~03986~^~334~^0.^0^^~12~^~MA~^^^^^^^^^^~10/01/2016~
-~03986~^~337~^0.^0^^~12~^~MA~^^^^^^^^^^~10/01/2016~
-~03986~^~338~^0.^0^^~12~^~MA~^^^^^^^^^^~10/01/2016~
-~03986~^~417~^11.^0^^~12~^~MA~^^^^^^^^^^~10/01/2016~
-~03986~^~431~^11.^0^^~12~^~MA~^^^^^^^^^^~10/01/2016~
-~03986~^~432~^0.^0^^~12~^~MA~^^^^^^^^^^~10/01/2016~
-~03986~^~435~^18.^0^^~4~^~NC~^^^^^^^^^^~02/01/2013~
-~03986~^~601~^3.^0^^~12~^~MA~^^^^^^^^^^~10/01/2016~
-~03987~^~208~^65.^0^^~4~^~NC~^^^^^^^^^^~02/01/2013~
-~03987~^~262~^0.^0^^~4~^~NR~^^^^^^^^^^~02/01/2013~
-~03987~^~263~^0.^0^^~4~^~NR~^^^^^^^^^^~02/01/2013~
-~03987~^~268~^274.^0^^~4~^~NC~^^^^^^^^^^~02/01/2013~
-~03987~^~301~^125.^0^^~9~^~MC~^^^^^^^^^^~02/01/2013~
-~03987~^~304~^7.^0^^~9~^~MC~^^^^^^^^^^~02/01/2013~
-~03987~^~305~^70.^0^^~9~^~MC~^^^^^^^^^^~02/01/2013~
-~03987~^~306~^76.^0^^~9~^~MC~^^^^^^^^^^~02/01/2013~
-~03987~^~307~^26.^0^^~9~^~MC~^^^^^^^^^^~02/01/2013~
-~03987~^~318~^199.^0^^~4~^~NC~^^^^^^^^^^~02/01/2013~
-~03987~^~319~^60.^0^^~4~^~NR~^^^^^^^^^^~02/01/2013~
-~03987~^~320~^60.^0^^~4~^~NC~^^^^^^^^^^~02/01/2013~
-~03987~^~321~^0.^0^^~4~^~NR~^^^^^^^^^^~02/01/2013~
-~03987~^~322~^0.^0^^~4~^~NR~^^^^^^^^^^~02/01/2013~
-~03987~^~324~^39.^0^^~9~^~MC~^^^^^^^^^^~02/01/2013~
-~03987~^~334~^0.^0^^~4~^~NR~^^^^^^^^^^~02/01/2013~
-~03987~^~337~^0.^0^^~4~^~NR~^^^^^^^^^^~02/01/2013~
-~03987~^~338~^0.^0^^~4~^~NR~^^^^^^^^^^~02/01/2013~
-~03987~^~417~^10.^0^^~4~^~NR~^^^^^^^^^^~02/01/2013~
-~03987~^~431~^10.^0^^~4~^~NR~^^^^^^^^^^~02/01/2013~
-~03987~^~432~^0.^0^^~4~^~NR~^^^^^^^^^^~02/01/2013~
-~03987~^~435~^17.^0^^~4~^~NC~^^^^^^^^^^~02/01/2013~
-~03987~^~601~^0.^0^^~4~^~NR~^^^^^^^^^^~02/01/2013~
-~03988~^~208~^65.^0^^~4~^~NC~^^^^^^^^^^~02/01/2013~
-~03988~^~262~^0.^0^^~4~^~NR~^^^^^^^^^^~02/01/2013~
-~03988~^~263~^0.^0^^~4~^~NR~^^^^^^^^^^~02/01/2013~
-~03988~^~268~^273.^0^^~4~^~NC~^^^^^^^^^^~02/01/2013~
-~03988~^~301~^44.^0^^~9~^~MC~^^^^^^^^^^~02/01/2013~
-~03988~^~304~^5.^0^^~9~^~MC~^^^^^^^^^^~02/01/2013~
-~03988~^~305~^25.^0^^~9~^~MC~^^^^^^^^^^~02/01/2013~
-~03988~^~306~^71.^0^^~9~^~MC~^^^^^^^^^^~02/01/2013~
-~03988~^~307~^18.^0^^~9~^~MC~^^^^^^^^^^~02/01/2013~
-~03988~^~318~^199.^0^^~4~^~NC~^^^^^^^^^^~02/01/2013~
-~03988~^~319~^60.^0^^~4~^~NR~^^^^^^^^^^~02/01/2013~
-~03988~^~320~^60.^0^^~4~^~NC~^^^^^^^^^^~02/01/2013~
-~03988~^~321~^0.^0^^~4~^~NR~^^^^^^^^^^~02/01/2013~
-~03988~^~322~^0.^0^^~4~^~NR~^^^^^^^^^^~02/01/2013~
-~03988~^~324~^39.^0^^~9~^~MC~^^^^^^^^^^~02/01/2013~
-~03988~^~334~^0.^0^^~4~^~NR~^^^^^^^^^^~02/01/2013~
-~03988~^~337~^0.^0^^~4~^~NR~^^^^^^^^^^~02/01/2013~
-~03988~^~338~^0.^0^^~4~^~NR~^^^^^^^^^^~02/01/2013~
-~03988~^~417~^10.^0^^~9~^~MC~^^^^^^^^^^~02/01/2013~
-~03988~^~431~^10.^0^^~4~^~NR~^^^^^^^^^^~02/01/2013~
-~03988~^~432~^0.^0^^~4~^~NR~^^^^^^^^^^~02/01/2013~
-~03988~^~435~^17.^0^^~4~^~NC~^^^^^^^^^^~02/01/2013~
-~03988~^~601~^0.^0^^~9~^~MC~^^^^^^^^^^~02/01/2013~
-~03989~^~208~^66.^0^^~4~^~NC~^^^^^^^^^^~02/01/2013~
-~03989~^~262~^0.^0^^~9~^~MC~^^^^^^^^^^~02/01/2013~
-~03989~^~263~^0.^0^^~4~^~NR~^^^^^^^^^^~02/01/2013~
-~03989~^~268~^277.^0^^~4~^~NC~^^^^^^^^^^~02/01/2013~
-~03989~^~301~^125.^0^^~9~^~MC~^^^^^^^^^^~02/01/2013~
-~03989~^~304~^0.^0^^~9~^~MC~^^^^^^^^^^~02/01/2013~
-~03989~^~305~^70.^0^^~9~^~MC~^^^^^^^^^^~02/01/2013~
-~03989~^~306~^71.^0^^~9~^~MC~^^^^^^^^^^~02/01/2013~
-~03989~^~307~^18.^0^^~9~^~MC~^^^^^^^^^^~02/01/2013~
-~03989~^~318~^199.^0^^~4~^~NC~^^^^^^^^^^~02/01/2013~
-~03989~^~319~^60.^0^^~4~^~NR~^^^^^^^^^^~02/01/2013~
-~03989~^~320~^60.^0^^~4~^~NC~^^^^^^^^^^~02/01/2013~
-~03989~^~321~^0.^0^^~4~^~NR~^^^^^^^^^^~02/01/2013~
-~03989~^~322~^0.^0^^~4~^~NR~^^^^^^^^^^~02/01/2013~
-~03989~^~324~^39.^0^^~9~^~MC~^^^^^^^^^^~02/01/2013~
-~03989~^~334~^0.^0^^~4~^~NR~^^^^^^^^^^~02/01/2013~
-~03989~^~337~^0.^0^^~4~^~NR~^^^^^^^^^^~02/01/2013~
-~03989~^~338~^0.^0^^~4~^~NR~^^^^^^^^^^~02/01/2013~
-~03989~^~417~^10.^0^^~9~^~MC~^^^^^^^^^^~02/01/2013~
-~03989~^~431~^10.^0^^~4~^~NR~^^^^^^^^^^~02/01/2013~
-~03989~^~432~^0.^0^^~4~^~NR~^^^^^^^^^^~02/01/2013~
-~03989~^~435~^17.^0^^~4~^~NC~^^^^^^^^^^~02/01/2013~
-~03989~^~601~^0.^0^^~9~^~MC~^^^^^^^^^^~02/01/2013~
-~03990~^~208~^66.^0^^~4~^~NR~^^^^^^^^^^~02/01/2013~
-~03990~^~262~^0.^0^^~4~^~NR~^^^^^^^^^^~02/01/2013~
-~03990~^~263~^0.^0^^~4~^~NR~^^^^^^^^^^~02/01/2013~
-~03990~^~268~^273.^0^^~4~^~NC~^^^^^^^^^^~02/01/2013~
-~03990~^~301~^44.^0^^~9~^~MC~^^^^^^^^^^~02/01/2013~
-~03990~^~304~^5.^0^^~9~^~MC~^^^^^^^^^^~02/01/2013~
-~03990~^~305~^25.^0^^~9~^~MC~^^^^^^^^^^~02/01/2013~
-~03990~^~306~^71.^0^^~9~^~MC~^^^^^^^^^^~02/01/2013~
-~03990~^~307~^18.^0^^~9~^~MC~^^^^^^^^^^~02/01/2013~
-~03990~^~318~^199.^0^^~4~^~NC~^^^^^^^^^^~02/01/2013~
-~03990~^~319~^60.^0^^~4~^~NR~^^^^^^^^^^~02/01/2013~
-~03990~^~320~^60.^0^^~4~^~NC~^^^^^^^^^^~02/01/2013~
-~03990~^~321~^0.^0^^~4~^~NR~^^^^^^^^^^~02/01/2013~
-~03990~^~322~^0.^0^^~4~^~NR~^^^^^^^^^^~02/01/2013~
-~03990~^~324~^39.^0^^~9~^~MC~^^^^^^^^^^~02/01/2013~
-~03990~^~334~^0.^0^^~4~^~NR~^^^^^^^^^^~02/01/2013~
-~03990~^~337~^0.^0^^~4~^~NR~^^^^^^^^^^~02/01/2013~
-~03990~^~338~^0.^0^^~4~^~NR~^^^^^^^^^^~02/01/2013~
-~03990~^~417~^10.^0^^~9~^~MC~^^^^^^^^^^~02/01/2013~
-~03990~^~431~^10.^0^^~4~^~NR~^^^^^^^^^^~02/01/2013~
-~03990~^~432~^0.^0^^~4~^~NR~^^^^^^^^^^~02/01/2013~
-~03990~^~435~^17.^0^^~4~^~NC~^^^^^^^^^^~02/01/2013~
-~03990~^~601~^0.^0^^~9~^~MC~^^^^^^^^^^~02/01/2013~
-~03991~^~208~^66.^0^^~4~^~NC~^^^^^^^^^^~02/01/2013~
-~03991~^~262~^0.^0^^~9~^~MC~^^^^^^^^^^~02/01/2013~
-~03991~^~263~^0.^0^^~4~^~BFFN~^~03986~^^^^^^^^^~02/01/2013~
-~03991~^~268~^278.^0^^~4~^~NC~^^^^^^^^^^~02/01/2013~
-~03991~^~301~^128.^0^^~9~^~MC~^^^^^^^^^^~02/01/2013~
-~03991~^~304~^6.^0^^~9~^~MC~^^^^^^^^^^~02/01/2013~
-~03991~^~305~^85.^0^^~9~^~MC~^^^^^^^^^^~02/01/2013~
-~03991~^~306~^98.^0^^~9~^~MC~^^^^^^^^^^~02/01/2013~
-~03991~^~307~^20.^0^^~9~^~MC~^^^^^^^^^^~02/01/2013~
-~03991~^~318~^199.^0^^~4~^~NC~^^^^^^^^^^~02/01/2013~
-~03991~^~319~^60.^0^^~4~^~NR~^^^^^^^^^^~02/01/2013~
-~03991~^~320~^60.^0^^~4~^~NC~^^^^^^^^^^~02/01/2013~
-~03991~^~321~^0.^0^^~4~^~NR~^^^^^^^^^^~02/01/2013~
-~03991~^~322~^0.^0^^~4~^~NR~^^^^^^^^^^~02/01/2013~
-~03991~^~324~^39.^0^^~9~^~MC~^^^^^^^^^^~02/01/2013~
-~03991~^~334~^0.^0^^~4~^~NR~^^^^^^^^^^~02/01/2013~
-~03991~^~337~^0.^0^^~4~^~NR~^^^^^^^^^^~02/01/2013~
-~03991~^~338~^0.^0^^~4~^~NR~^^^^^^^^^^~02/01/2013~
-~03991~^~417~^10.^0^^~9~^~MC~^^^^^^^^^^~02/01/2013~
-~03991~^~431~^10.^0^^~4~^~NR~^^^^^^^^^^~02/01/2013~
-~03991~^~432~^0.^0^^~4~^~NR~^^^^^^^^^^~02/01/2013~
-~03991~^~435~^17.^0^^~4~^~NC~^^^^^^^^^^~02/01/2013~
-~03991~^~601~^0.^0^^~9~^~MC~^^^^^^^^^^~02/01/2013~
-~03992~^~208~^66.^0^^~9~^~MC~^^^^^^^^^^~02/01/2013~
-~03992~^~262~^0.^0^^~9~^~MC~^^^^^^^^^^~02/01/2013~
-~03992~^~263~^0.^0^^~4~^~BFFN~^~03857~^^^^^^^^^~02/01/2013~
-~03992~^~268~^274.^0^^~9~^~MC~^^^^^^^^^^~02/01/2013~
-~03992~^~301~^69.^0^^~9~^~MC~^^^^^^^^^^~02/01/2013~
-~03992~^~304~^5.^0^^~9~^~MC~^^^^^^^^^^~02/01/2013~
-~03992~^~305~^49.^0^^~9~^~MC~^^^^^^^^^^~02/01/2013~
-~03992~^~306~^71.^0^^~9~^~MC~^^^^^^^^^^~02/01/2013~
-~03992~^~307~^29.^0^^~9~^~MC~^^^^^^^^^^~02/01/2013~
-~03992~^~318~^199.^0^^~4~^~NC~^^^^^^^^^^~02/01/2013~
-~03992~^~319~^60.^0^^~4~^~NR~^^^^^^^^^^~02/01/2013~
-~03992~^~320~^60.^0^^~4~^~NC~^^^^^^^^^^~02/01/2013~
-~03992~^~321~^0.^0^^~4~^~NR~^^^^^^^^^^~02/01/2013~
-~03992~^~322~^0.^0^^~4~^~NR~^^^^^^^^^^~02/01/2013~
-~03992~^~324~^39.^0^^~9~^~MC~^^^^^^^^^^~02/01/2013~
-~03992~^~334~^0.^0^^~4~^~NR~^^^^^^^^^^~02/01/2013~
-~03992~^~337~^0.^0^^~4~^~NR~^^^^^^^^^^~02/01/2013~
-~03992~^~338~^0.^0^^~4~^~NR~^^^^^^^^^^~02/01/2013~
-~03992~^~417~^10.^0^^~9~^~MC~^^^^^^^^^^~02/01/2013~
-~03992~^~431~^10.^0^^~4~^~NR~^^^^^^^^^^~02/01/2013~
-~03992~^~432~^0.^0^^~4~^~NR~^^^^^^^^^^~02/01/2013~
-~03992~^~435~^17.^0^^~4~^~NC~^^^^^^^^^^~02/01/2013~
-~03992~^~601~^0.^0^^~9~^~MC~^^^^^^^^^^~02/01/2013~
-~03993~^~208~^66.^0^^~9~^~MC~^^^^^^^^^^~03/01/2013~
-~03993~^~262~^0.^0^^~4~^~NR~^^^^^^^^^^~03/01/2013~
-~03993~^~263~^0.^0^^~4~^~NR~^^^^^^^^^^~03/01/2013~
-~03993~^~268~^274.^0^^~9~^~MC~^^^^^^^^^^~03/01/2013~
-~03993~^~301~^55.^0^^~9~^~MC~^^^^^^^^^^~03/01/2013~
-~03993~^~304~^4.^0^^~9~^~MC~^^^^^^^^^^~03/01/2013~
-~03993~^~305~^37.^0^^~9~^~MC~^^^^^^^^^^~03/01/2013~
-~03993~^~306~^70.^0^^~9~^~MC~^^^^^^^^^^~03/01/2013~
-~03993~^~307~^20.^0^^~9~^~MC~^^^^^^^^^^~03/01/2013~
-~03993~^~318~^199.^0^^~4~^~NC~^^^^^^^^^^~05/01/2013~
-~03993~^~319~^60.^0^^~4~^~NR~^^^^^^^^^^~03/01/2013~
-~03993~^~320~^60.^0^^~4~^~NC~^^^^^^^^^^~03/01/2013~
-~03993~^~321~^0.^0^^~4~^~NR~^^^^^^^^^^~03/01/2013~
-~03993~^~322~^0.^0^^~4~^~NR~^^^^^^^^^^~03/01/2013~
-~03993~^~324~^39.^0^^~9~^~MC~^^^^^^^^^^~03/01/2013~
-~03993~^~334~^0.^0^^~4~^~NR~^^^^^^^^^^~03/01/2013~
-~03993~^~337~^0.^0^^~4~^~NR~^^^^^^^^^^~03/01/2013~
-~03993~^~338~^0.^0^^~4~^~NR~^^^^^^^^^^~03/01/2013~
-~03993~^~417~^10.^0^^~9~^~MC~^^^^^^^^^^~03/01/2013~
-~03993~^~431~^10.^0^^~4~^~NR~^^^^^^^^^^~03/01/2013~
-~03993~^~432~^0.^0^^~4~^~NR~^^^^^^^^^^~03/01/2013~
-~03993~^~435~^17.^0^^~4~^~NC~^^^^^^^^^^~03/01/2013~
-~03993~^~601~^0.^0^^~9~^~MC~^^^^^^^^^^~03/01/2013~
-~03994~^~208~^109.^0^^~4~^~NC~^^^^^^^^^^~05/01/2013~
-~03994~^~262~^0.^0^^~4~^~FLC~^^^^^^^^^^~03/01/2013~
-~03994~^~263~^0.^0^^~4~^~FLC~^^^^^^^^^^~03/01/2013~
-~03994~^~268~^457.^0^^~4~^~NC~^^^^^^^^^^~05/01/2013~
-~03994~^~301~^0.^0^^~9~^~MC~^^^^^^^^^^~03/01/2013~
-~03994~^~304~^30.^0^^~4~^~FLC~^^^^^^^^^^~05/01/2013~
-~03994~^~305~^24.^0^^~4~^~FLC~^^^^^^^^^^~03/01/2013~
-~03994~^~306~^395.^0^^~4~^~FLC~^^^^^^^^^^~05/01/2013~
-~03994~^~307~^1.^0^^~4~^~FLC~^^^^^^^^^^~05/01/2013~
-~03994~^~318~^69.^0^^~4~^~NC~^^^^^^^^^^~05/01/2013~
-~03994~^~319~^0.^0^^~4~^~FLC~^^^^^^^^^^~03/01/2013~
-~03994~^~320~^3.^0^^~4~^~NC~^^^^^^^^^^~03/01/2013~
-~03994~^~321~^28.^0^^~4~^~FLC~^^^^^^^^^^~05/01/2013~
-~03994~^~322~^27.^0^^~4~^~FLC~^^^^^^^^^^~05/01/2013~
-~03994~^~324~^0.^0^^~4~^~FLC~^^^^^^^^^^~03/01/2013~
-~03994~^~334~^0.^0^^~4~^~FLC~^^^^^^^^^^~03/01/2013~
-~03994~^~337~^0.^0^^~4~^~FLC~^^^^^^^^^^~03/01/2013~
-~03994~^~338~^24.^0^^~4~^~FLC~^^^^^^^^^^~05/01/2013~
-~03994~^~417~^22.^0^^~4~^~FLC~^^^^^^^^^^~03/01/2013~
-~03994~^~431~^0.^0^^~4~^~FLC~^^^^^^^^^^~03/01/2013~
-~03994~^~432~^22.^0^^~4~^~FLC~^^^^^^^^^^~03/01/2013~
-~03994~^~435~^22.^0^^~4~^~NC~^^^^^^^^^^~03/01/2013~
-~03994~^~601~^0.^0^^~4~^~FLC~^^^^^^^^^^~03/01/2013~
-~03994~^~636~^17.^0^^~4~^~FLC~^^^^^^^^^^~03/01/2013~
-~03995~^~208~^92.^0^^~4~^~NC~^^^^^^^^^^~03/01/2013~
-~03995~^~262~^0.^0^^~4~^~FLC~^^^^^^^^^^~03/01/2013~
-~03995~^~263~^0.^0^^~4~^~FLC~^^^^^^^^^^~03/01/2013~
-~03995~^~268~^385.^0^^~4~^~NC~^^^^^^^^^^~03/01/2013~
-~03995~^~301~^0.^0^^~9~^~MC~^^^^^^^^^^~03/01/2013~
-~03995~^~304~^23.^0^^~4~^~FLC~^^^^^^^^^^~03/01/2013~
-~03995~^~305~^20.^0^^~4~^~FLC~^^^^^^^^^^~03/01/2013~
-~03995~^~306~^283.^0^^~9~^~MC~^^^^^^^^^^~03/01/2013~
-~03995~^~307~^0.^0^^~9~^~MC~^^^^^^^^^^~03/01/2013~
-~03995~^~318~^51.^0^^~9~^~MC~^^^^^^^^^^~03/01/2013~
-~03995~^~319~^0.^0^^~4~^~BNA~^~09040~^^^^^^^^^~03/01/2013~
-~03995~^~320~^3.^0^^~4~^~NR~^^^^^^^^^^~03/01/2013~
-~03995~^~321~^20.^0^^~4~^~BNA~^~09040~^^^^^^^^^~03/01/2013~
-~03995~^~322~^20.^0^^~4~^~BNA~^~09040~^^^^^^^^^~03/01/2013~
-~03995~^~324~^0.^0^^~4~^~FLC~^^^^^^^^^^~03/01/2013~
-~03995~^~334~^0.^0^^~4~^~BNA~^~09040~^^^^^^^^^~03/01/2013~
-~03995~^~337~^0.^0^^~4~^~FLC~^^^^^^^^^^~03/01/2013~
-~03995~^~338~^47.^0^^~4~^~FLC~^^^^^^^^^^~03/01/2013~
-~03995~^~417~^20.^0^^~4~^~FLC~^^^^^^^^^^~03/01/2013~
-~03995~^~431~^0.^0^^~4~^~FLC~^^^^^^^^^^~03/01/2013~
-~03995~^~432~^20.^0^^~4~^~FLC~^^^^^^^^^^~03/01/2013~
-~03995~^~435~^20.^0^^~4~^~NC~^^^^^^^^^^~03/01/2013~
-~03995~^~601~^0.^0^^~4~^~FLC~^^^^^^^^^^~03/01/2013~
-~03995~^~636~^11.^0^^~4~^~FLC~^^^^^^^^^^~03/01/2013~
-~03996~^~208~^407.^0^^~4~^~NC~^^^^^^^^^^~04/01/2016~
-~03996~^~262~^0.^0^^~4~^~FLC~^^^^^^^^^^~03/01/2013~
-~03996~^~263~^0.^0^^~4~^~FLC~^^^^^^^^^^~03/01/2013~
-~03996~^~268~^1702.^0^^~4~^~NC~^^^^^^^^^^~04/01/2016~
-~03996~^~301~^800.^0^^~8~^~LC~^^^^^^^^^^~04/01/2016~
-~03996~^~304~^95.^0^^~4~^~FLC~^^^^^^^^^^~03/01/2013~
-~03996~^~305~^333.^0^^~8~^~LC~^^^^^^^^^^~04/01/2016~
-~03996~^~306~^467.^0^^~8~^~LC~^^^^^^^^^^~04/01/2016~
-~03996~^~307~^33.^0^^~8~^~LC~^^^^^^^^^^~04/01/2016~
-~03996~^~318~^0.^0^^~4~^~NC~^^^^^^^^^^~03/01/2013~
-~03996~^~319~^0.^0^^~4~^~FLC~^^^^^^^^^^~03/01/2013~
-~03996~^~320~^0.^0^^~4~^~NC~^^^^^^^^^^~03/01/2013~
-~03996~^~321~^0.^0^^~4~^~FLC~^^^^^^^^^^~03/01/2013~
-~03996~^~322~^0.^0^^~4~^~FLC~^^^^^^^^^^~03/01/2013~
-~03996~^~324~^0.^0^^~4~^~FLC~^^^^^^^^^^~03/01/2013~
-~03996~^~334~^0.^0^^~4~^~FLC~^^^^^^^^^^~03/01/2013~
-~03996~^~337~^0.^0^^~4~^~FLC~^^^^^^^^^^~03/01/2013~
-~03996~^~338~^64.^0^^~4~^~FLC~^^^^^^^^^^~03/01/2013~
-~03996~^~417~^167.^0^^~8~^~LC~^^^^^^^^^^~04/01/2016~
-~03996~^~431~^139.^0^^~4~^~NR~^^^^^^^^^^~04/01/2016~
-~03996~^~432~^27.^0^^~4~^~NR~^^^^^^^^^^~04/01/2016~
-~03996~^~435~^264.^0^^~4~^~NC~^^^^^^^^^^~04/01/2016~
-~03996~^~601~^0.^0^^~4~^~FLC~^^^^^^^^^^~03/01/2013~
-~03997~^~208~^391.^0^^~4~^~NC~^^^^^^^^^^~03/01/2013~
-~03997~^~262~^0.^0^^~4~^~FLC~^^^^^^^^^^~03/01/2013~
-~03997~^~263~^0.^0^^~4~^~FLC~^^^^^^^^^^~03/01/2013~
-~03997~^~268~^1635.^0^^~4~^~NC~^^^^^^^^^^~03/01/2013~
-~03997~^~301~^0.^0^^~9~^~MC~^^^^^^^^^^~03/01/2013~
-~03997~^~304~^47.^0^^~4~^~FLC~^^^^^^^^^^~03/01/2013~
-~03997~^~305~^127.^0^^~4~^~FLC~^^^^^^^^^^~03/01/2013~
-~03997~^~306~^504.^0^^~4~^~FLC~^^^^^^^^^^~03/01/2013~
-~03997~^~307~^313.^0^^~9~^~MC~^^^^^^^^^^~03/01/2013~
-~03997~^~318~^1.^0^^~4~^~NC~^^^^^^^^^^~03/01/2013~
-~03997~^~319~^0.^0^^~4~^~FLC~^^^^^^^^^^~03/01/2013~
-~03997~^~320~^0.^0^^~4~^~NC~^^^^^^^^^^~03/01/2013~
-~03997~^~321~^0.^0^^~4~^~FLC~^^^^^^^^^^~03/01/2013~
-~03997~^~322~^0.^0^^~4~^~FLC~^^^^^^^^^^~03/01/2013~
-~03997~^~324~^0.^0^^~4~^~FLC~^^^^^^^^^^~03/01/2013~
-~03997~^~334~^0.^0^^~4~^~FLC~^^^^^^^^^^~03/01/2013~
-~03997~^~337~^0.^0^^~4~^~FLC~^^^^^^^^^^~03/01/2013~
-~03997~^~338~^0.^0^^~4~^~FLC~^^^^^^^^^^~03/01/2013~
-~03997~^~417~^14.^0^^~4~^~FLC~^^^^^^^^^^~03/01/2013~
-~03997~^~431~^0.^0^^~4~^~FLC~^^^^^^^^^^~03/01/2013~
-~03997~^~432~^14.^0^^~4~^~FLC~^^^^^^^^^^~03/01/2013~
-~03997~^~435~^14.^0^^~4~^~NC~^^^^^^^^^^~03/01/2013~
-~03997~^~601~^0.^0^^~4~^~FLC~^^^^^^^^^^~03/01/2013~
-~03997~^~636~^0.^0^^~4~^~FLC~^^^^^^^^^^~03/01/2013~
-~03998~^~208~^503.^0^^~4~^~NC~^^^^^^^^^^~03/01/2013~
-~03998~^~262~^0.^0^^~4~^~FLC~^^^^^^^^^^~03/01/2013~
-~03998~^~263~^0.^0^^~4~^~FLC~^^^^^^^^^^~03/01/2013~
-~03998~^~268~^2107.^0^^~4~^~NC~^^^^^^^^^^~03/01/2013~
-~03998~^~301~^285.^0^^~9~^~MC~^^^^^^^^^^~04/01/2013~
-~03998~^~304~^69.^0^^~4~^~FLC~^^^^^^^^^^~03/01/2013~
-~03998~^~305~^1044.^0^^~4~^~FLC~^^^^^^^^^^~03/01/2013~
-~03998~^~306~^214.^0^^~9~^~MC~^^^^^^^^^^~03/01/2013~
-~03998~^~307~^500.^0^^~8~^~LC~^^^^^^^^^^~07/01/2017~
-~03998~^~318~^265.^0^^~4~^~NC~^^^^^^^^^^~03/01/2013~
-~03998~^~319~^31.^0^^~4~^~FLC~^^^^^^^^^^~03/01/2013~
-~03998~^~320~^39.^0^^~4~^~NC~^^^^^^^^^^~03/01/2013~
-~03998~^~321~^75.^0^^~4~^~FLC~^^^^^^^^^^~03/01/2013~
-~03998~^~322~^43.^0^^~4~^~FLC~^^^^^^^^^^~03/01/2013~
-~03998~^~324~^3.^0^^~4~^~FLC~^^^^^^^^^^~03/01/2013~
-~03998~^~334~^0.^0^^~4~^~FLC~^^^^^^^^^^~03/01/2013~
-~03998~^~337~^0.^0^^~4~^~FLC~^^^^^^^^^^~03/01/2013~
-~03998~^~338~^914.^0^^~4~^~FLC~^^^^^^^^^^~03/01/2013~
-~03998~^~417~^19.^0^^~4~^~FLC~^^^^^^^^^^~03/01/2013~
-~03998~^~431~^0.^0^^~4~^~FLC~^^^^^^^^^^~03/01/2013~
-~03998~^~432~^19.^0^^~4~^~FLC~^^^^^^^^^^~03/01/2013~
-~03998~^~435~^19.^0^^~4~^~NC~^^^^^^^^^^~03/01/2013~
-~03998~^~601~^13.^0^^~4~^~FLC~^^^^^^^^^^~03/01/2013~
-~03999~^~208~^514.^0^^~9~^~MC~^^^^^^^^^^~05/01/2013~
-~03999~^~262~^0.^0^^~9~^~MC~^^^^^^^^^^~05/01/2013~
-~03999~^~263~^0.^0^^~4~^~BFFN~^~03993~^^^^^^^^^~05/01/2013~
-~03999~^~268~^2151.^0^^~9~^~MC~^^^^^^^^^^~05/01/2013~
-~03999~^~301~^432.^0^^~9~^~MC~^^^^^^^^^^~05/01/2013~
-~03999~^~304~^31.^0^^~9~^~MC~^^^^^^^^^^~05/01/2013~
-~03999~^~305~^288.^0^^~9~^~MC~^^^^^^^^^^~05/01/2013~
-~03999~^~306~^550.^0^^~9~^~MC~^^^^^^^^^^~05/01/2013~
-~03999~^~307~^154.^0^^~9~^~MC~^^^^^^^^^^~05/01/2013~
-~03999~^~318~^1557.^0^^~4~^~NC~^^^^^^^^^^~05/01/2013~
-~03999~^~319~^467.^0^^~4~^~NR~^^^^^^^^^^~05/01/2013~
-~03999~^~320~^467.^0^^~4~^~NC~^^^^^^^^^^~05/01/2013~
-~03999~^~321~^0.^0^^~4~^~NR~^^^^^^^^^^~05/01/2013~
-~03999~^~322~^0.^0^^~4~^~NR~^^^^^^^^^^~05/01/2013~
-~03999~^~324~^308.^0^^~9~^~MC~^^^^^^^^^^~05/01/2013~
-~03999~^~334~^0.^0^^~4~^~NR~^^^^^^^^^^~05/01/2013~
-~03999~^~337~^0.^0^^~4~^~NR~^^^^^^^^^^~05/01/2013~
-~03999~^~338~^0.^0^^~4~^~NR~^^^^^^^^^^~05/01/2013~
-~03999~^~417~^77.^0^^~9~^~MC~^^^^^^^^^^~05/01/2013~
-~03999~^~431~^77.^0^^~4~^~NR~^^^^^^^^^^~05/01/2013~
-~03999~^~432~^0.^0^^~4~^~NR~^^^^^^^^^^~05/01/2013~
-~03999~^~435~^131.^0^^~4~^~NC~^^^^^^^^^^~05/01/2013~
-~03999~^~601~^0.^0^^~9~^~MC~^^^^^^^^^^~05/01/2013~
-~04001~^~208~^902.^0^^~4~^~NC~^^^^^^^^^^~03/01/2009~
-~04001~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2003~
-~04001~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2003~
-~04001~^~268~^3774.^0^^~4~^~NC~^^^^^^^^^^~03/01/2009~
-~04001~^~301~^0.^0^^~4~^^^^^^^^^^^~06/01/1979~
-~04001~^~304~^0.^0^^~4~^^^^^^^^^^^~06/01/1979~
-~04001~^~305~^0.^0^^~4~^^^^^^^^^^^~06/01/1979~
-~04001~^~306~^0.^1^^~1~^^^^^^^^^^^~06/01/1979~
-~04001~^~307~^0.^1^^~1~^^^^^^^^^^^~06/01/1979~
-~04001~^~318~^0.^0^^~1~^~AS~^^^^^^^^^^~03/01/2009~
-~04001~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2002~
-~04001~^~320~^0.^0^^~1~^~AS~^^^^^^^^^^~03/01/2009~
-~04001~^~321~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2003~
-~04001~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2003~
-~04001~^~324~^28.^0^^~4~^~NR~^^^^^^^^^^~03/01/2009~
-~04001~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2003~
-~04001~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2003~
-~04001~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2003~
-~04001~^~417~^0.^0^^~4~^^^^^^^^^^^~06/01/1979~
-~04001~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~
-~04001~^~432~^0.^0^^~4~^^^^^^^^^^^~03/01/2009~
-~04001~^~435~^0.^0^^~4~^~NC~^^^^^^^^^^~03/01/2009~
-~04001~^~601~^109.^0^^~1~^^^^^^^^^^^~06/01/1979~
-~04001~^~636~^0.^0^^~4~^^^^^^^^^^^~06/01/1979~
-~04002~^~208~^902.^0^^~4~^~NC~^^^^^^^^^^~03/01/2007~
-~04002~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2003~
-~04002~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2003~
-~04002~^~268~^3774.^0^^~4~^^^^^^^^^^^~03/01/2009~
-~04002~^~301~^0.^1^^~4~^^^^^^^^^^^~06/01/1979~
-~04002~^~304~^0.^1^^~4~^^^^^^^^^^^~06/01/1979~
-~04002~^~305~^0.^0^^~4~^^^^^^^^^^^~06/01/1979~
-~04002~^~306~^0.^3^^~1~^^^^^^^^^^^~06/01/1979~
-~04002~^~307~^0.^3^^~1~^^^^^^^^^^^~06/01/1979~
-~04002~^~318~^0.^0^^~1~^~AS~^^^^^^^^^^~03/01/2009~
-~04002~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2002~
-~04002~^~320~^0.^0^^~1~^~AS~^^^^^^^^^^~03/01/2009~
-~04002~^~321~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2003~
-~04002~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2003~
-~04002~^~324~^102.^0^^~4~^~BFFN~^~10007~^^^^^^^^^~03/01/2009~
-~04002~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2003~
-~04002~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2003~
-~04002~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2003~
-~04002~^~417~^0.^0^^~4~^^^^^^^^^^^~06/01/1979~
-~04002~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~
-~04002~^~432~^0.^0^^~4~^^^^^^^^^^^~03/01/2009~
-~04002~^~435~^0.^0^^~4~^~NC~^^^^^^^^^^~03/01/2009~
-~04002~^~601~^95.^0^^~1~^^^^^^^^^^^~06/01/1979~
-~04002~^~636~^0.^0^^~4~^^^^^^^^^^^~06/01/1979~
-~04011~^~208~^334.^0^^~9~^~MC~^^^^^^^^^^~02/01/1999~
-~04011~^~268~^1397.^0^^~9~^~MC~^^^^^^^^^^~04/01/2011~
-~04011~^~301~^6.^0^^~9~^~MC~^^^^^^^^^^~02/01/1999~
-~04011~^~305~^58.^0^^~9~^~MC~^^^^^^^^^^~02/01/1999~
-~04011~^~306~^52.^0^^~9~^~MC~^^^^^^^^^^~02/01/1999~
-~04011~^~307~^633.^1^^~8~^~LC~^^^^^^^^^^~04/01/2011~
-~04011~^~318~^185.^0^^~9~^~MC~^^^^^^^^^^~02/01/1999~
-~04011~^~601~^35.^0^^~9~^~MC~^^^^^^^^^^~02/01/1999~
-~04013~^~208~^64.^0^^~4~^~NC~^^^^^^^^^^~07/01/2015~
-~04013~^~262~^0.^0^^~4~^~BFZN~^~04641~^^^^^^^^^~07/01/2015~
-~04013~^~263~^0.^0^^~4~^~BFZN~^~04641~^^^^^^^^^~07/01/2015~
-~04013~^~268~^268.^0^^~4~^~NC~^^^^^^^^^^~07/01/2015~
-~04013~^~301~^6.^0^^~9~^~MC~^^^^^^^^^^~02/01/1999~
-~04013~^~304~^2.^0^^~4~^~BFZN~^~04641~^^^^^^^^^~07/01/2015~
-~04013~^~305~^27.^0^^~9~^~MC~^^^^^^^^^^~02/01/1999~
-~04013~^~306~^50.^0^^~9~^~MC~^^^^^^^^^^~02/01/1999~
-~04013~^~307~^750.^0^^~9~^~MC~^^^^^^^^^^~02/01/1999~
-~04013~^~318~^50.^0^^~4~^~NC~^^^^^^^^^^~07/01/2015~
-~04013~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~07/01/2015~
-~04013~^~320~^2.^0^^~4~^~NC~^^^^^^^^^^~07/01/2015~
-~04013~^~321~^30.^0^^~4~^~BFZN~^~04641~^^^^^^^^^~07/01/2015~
-~04013~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~07/01/2015~
-~04013~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~07/01/2015~
-~04013~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~07/01/2015~
-~04013~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~07/01/2015~
-~04013~^~338~^27.^0^^~4~^~BFZN~^~04641~^^^^^^^^^~07/01/2015~
-~04013~^~417~^4.^0^^~4~^~BFZN~^~04641~^^^^^^^^^~07/01/2015~
-~04013~^~431~^0.^0^^~4~^~BFZN~^~04641~^^^^^^^^^~07/01/2015~
-~04013~^~432~^4.^0^^~4~^~BFZN~^~04641~^^^^^^^^^~07/01/2015~
-~04013~^~435~^4.^0^^~4~^~NC~^^^^^^^^^^~07/01/2015~
-~04013~^~601~^0.^0^^~7~^~Z~^^^^^^^^^^~07/01/2015~
-~04014~^~208~^84.^0^^~9~^~MC~^^^^^^^^^^~02/01/1999~
-~04014~^~268~^351.^0^^~9~^~MC~^^^^^^^^^^
-~04014~^~301~^6.^0^^~9~^~MC~^^^^^^^^^^~02/01/1999~
-~04014~^~305~^5.^0^^~9~^~MC~^^^^^^^^^^~02/01/1999~
-~04014~^~306~^49.^0^^~9~^~MC~^^^^^^^^^^~02/01/1999~
-~04014~^~307~^788.^0^^~9~^~MC~^^^^^^^^^^~02/01/1999~
-~04014~^~318~^69.^0^^~9~^~MC~^^^^^^^^^^~02/01/1999~
-~04014~^~601~^9.^0^^~9~^~MC~^^^^^^^^^^~02/01/1999~
-~04015~^~208~^355.^0^^~4~^~NC~^^^^^^^^^^~12/01/2007~
-~04015~^~262~^0.^0^^~4~^~FLC~^^^^^^^^^^~06/01/2005~
-~04015~^~263~^0.^0^^~4~^~FLC~^^^^^^^^^^~06/01/2005~
-~04015~^~268~^1485.^0^^~4~^~NC~^^^^^^^^^^~12/01/2007~
-~04015~^~301~^13.^1^^~9~^~MC~^^^^^^^^^^~12/01/2007~
-~04015~^~304~^10.^0^^~4~^~FLC~^^^^^^^^^^~06/01/2005~
-~04015~^~305~^20.^0^^~4~^~FLC~^^^^^^^^^^~06/01/2005~
-~04015~^~306~^173.^0^^~4~^~FLC~^^^^^^^^^^~06/01/2005~
-~04015~^~307~^1133.^0^^~4~^~O~^^^^^^^^^^~06/01/2010~
-~04015~^~318~^577.^0^^~4~^~O~^^^^^^^^^^~12/01/2007~
-~04015~^~319~^0.^0^^~4~^~FLC~^^^^^^^^^^~06/01/2005~
-~04015~^~320~^29.^0^^~4~^~NC~^^^^^^^^^^~12/01/2007~
-~04015~^~321~^320.^0^^~4~^~FLC~^~04015~^^^^^^^^^~12/01/2007~
-~04015~^~322~^2.^0^^~4~^~BNA~^~04015~^^^^^^^^^~12/01/2007~
-~04015~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~
-~04015~^~334~^49.^0^^~4~^~BNA~^~04015~^^^^^^^^^~12/01/2007~
-~04015~^~337~^3576.^0^^~4~^~FLC~^^^^^^^^^^~06/01/2005~
-~04015~^~338~^173.^0^^~4~^~FLC~^^^^^^^^^^~06/01/2005~
-~04015~^~417~^5.^0^^~4~^~FLC~^^^^^^^^^^~06/01/2005~
-~04015~^~431~^0.^0^^~4~^~FLC~^^^^^^^^^^~06/01/2005~
-~04015~^~432~^5.^0^^~4~^~FLC~^^^^^^^^^^~06/01/2005~
-~04015~^~435~^5.^0^^~4~^~NC~^^^^^^^^^^~12/01/2007~
-~04015~^~601~^0.^1^^~9~^~MC~^^^^^^^^^^~12/01/2007~
-~04016~^~208~^443.^0^^~4~^~NC~^^^^^^^^^^~06/01/1979~
-~04016~^~262~^0.^0^^~4~^~BFZN~^~04114~^^^^^^^^^~02/01/2003~
-~04016~^~263~^0.^0^^~4~^~BFZN~^~04114~^^^^^^^^^~02/01/2003~
-~04016~^~268~^1854.^0^^~4~^^^^^^^^^^^~04/01/2004~
-~04016~^~301~^19.^0^^~4~^^^^^^^^^^^~06/01/1979~
-~04016~^~304~^0.^0^^~4~^^^^^^^^^^^~06/01/1979~
-~04016~^~305~^37.^0^^~4~^^^^^^^^^^^~06/01/1979~
-~04016~^~306~^157.^0^^~4~^^^^^^^^^^^~06/01/1979~
-~04016~^~307~^1000.^0^^~1~^^^^^^^^^^^~06/01/1979~
-~04016~^~318~^36.^0^^~4~^~NC~^^^^^^^^^^~04/01/2004~
-~04016~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2002~
-~04016~^~320~^2.^0^^~4~^~NC~^^^^^^^^^^~04/01/2004~
-~04016~^~321~^21.^0^^~4~^~BFZN~^~04114~^^^^^^^^^~02/01/2003~
-~04016~^~322~^0.^0^^~4~^~BFZN~^~04114~^^^^^^^^^~02/01/2003~
-~04016~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~
-~04016~^~334~^2.^0^^~4~^~BFZN~^~04114~^^^^^^^^^~02/01/2003~
-~04016~^~337~^16.^0^^~4~^~BFZN~^~04114~^^^^^^^^^~02/01/2003~
-~04016~^~338~^0.^0^^~4~^~BFZN~^~04114~^^^^^^^^^~02/01/2003~
-~04016~^~417~^0.^0^^~4~^^^^^^^^^^^~06/01/1979~
-~04016~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~
-~04016~^~432~^0.^0^^~4~^^^^^^^^^^^~04/01/2004~
-~04016~^~435~^0.^0^^~4~^~NC~^^^^^^^^^^~04/01/2007~
-~04016~^~601~^0.^6^0.^~1~^^^^^^^^^^^~06/01/1979~
-~04017~^~208~^379.^0^^~4~^~NC~^^^^^^^^^^~06/01/2013~
-~04017~^~262~^0.^0^^~4~^~FLA~^^^^^^^^^^~02/01/2003~
-~04017~^~263~^0.^0^^~4~^~FLA~^^^^^^^^^^~02/01/2003~
-~04017~^~268~^1584.^0^^~4~^~NC~^^^^^^^^^^~06/01/2013~
-~04017~^~301~^17.^6^0.^~1~^~A~^^^1^14.^19.^5^15.^19.^~2, 3~^~02/01/2003~
-~04017~^~304~^8.^6^0.^~1~^~A~^^^1^7.^8.^5^7.^8.^~2, 3~^~02/01/2003~
-~04017~^~305~^27.^6^0.^~1~^~A~^^^1^24.^30.^5^25.^28.^~2, 3~^~02/01/2003~
-~04017~^~306~^107.^6^2.^~1~^~A~^^^1^98.^115.^5^100.^113.^~2, 3~^~02/01/2003~
-~04017~^~307~^962.^0^^~4~^~O~^^^^^^^^^^~06/01/2013~
-~04017~^~318~^213.^0^^~4~^~NC~^^^^^^^^^^~06/01/2013~
-~04017~^~319~^4.^0^^~4~^~FLA~^^^^^^^^^^~02/01/2003~
-~04017~^~320~^14.^0^^~4~^~NC~^^^^^^^^^^~07/01/2004~
-~04017~^~321~^92.^6^6.^~1~^~A~^^^1^72.^122.^5^74.^108.^~2, 3~^~02/01/2003~
-~04017~^~322~^2.^0^^~4~^~FLA~^^^^^^^^^^~06/01/2013~
-~04017~^~324~^0.^0^^~4~^~BFZN~^~04120~^^^^^^^^^~07/01/2013~
-~04017~^~334~^52.^6^3.^~1~^~A~^^^1^40.^64.^5^43.^60.^~2, 3~^~02/01/2003~
-~04017~^~337~^2597.^6^163.^~1~^~A~^^^1^1955.^3027.^5^2176.^3016.^~2, 3~^~02/01/2003~
-~04017~^~338~^29.^0^^~4~^~FLA~^^^^^^^^^^~02/01/2003~
-~04017~^~417~^0.^2^^~1~^~A~^^^1^0.^0.^^^^~1~^~02/01/2003~
-~04017~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~
-~04017~^~432~^0.^2^^~1~^~A~^^^^^^^^^^~04/01/2004~
-~04017~^~435~^0.^0^^~4~^~NC~^^^^^^^^^^~03/01/2009~
-~04017~^~601~^26.^2^^~1~^~A~^^^1^24.^28.^1^^^^~02/01/2003~
-~04018~^~208~^250.^0^^~4~^~NC~^^^^^^^^^^~05/01/2014~
-~04018~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2002~
-~04018~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2002~
-~04018~^~268~^1046.^0^^~4~^~NC~^^^^^^^^^^~05/01/2014~
-~04018~^~301~^5.^6^0.^~1~^~A~^^^1^4.^5.^5^4.^4.^~2, 3~^~05/01/2014~
-~04018~^~304~^2.^6^0.^~1~^~A~^^^1^2.^2.^5^2.^2.^~2, 3~^~06/01/1979~
-~04018~^~305~^13.^6^0.^~1~^~A~^^^1^13.^14.^5^12.^13.^~2, 3~^~05/01/2014~
-~04018~^~306~^36.^6^0.^~1~^~A~^^^1^34.^38.^5^34.^37.^~2, 3~^~05/01/2014~
-~04018~^~307~^653.^6^5.^~1~^~A~^^^1^636.^667.^5^639.^666.^~2, 3~^~05/01/2014~
-~04018~^~318~^29.^0^^~1~^~AS~^^^^^^^^^^~05/01/2014~
-~04018~^~319~^5.^2^^~1~^~A~^^^1^4.^5.^1^^^^~05/01/2014~
-~04018~^~320~^5.^0^^~1~^~AS~^^^^^^^^^^~05/01/2014~
-~04018~^~321~^6.^2^^~1~^~A~^^^1^6.^7.^1^^^^~05/01/2014~
-~04018~^~322~^0.^2^^~1~^~A~^^^1^0.^0.^^^^~1~^~05/01/2014~
-~04018~^~324~^0.^3^0.^~1~^~A~^^^1^0.^0.^^^^~1, 2, 3~^~05/01/2014~
-~04018~^~334~^4.^2^^~1~^~A~^^^1^3.^4.^1^^^^~05/01/2014~
-~04018~^~337~^0.^2^^~1~^~A~^^^1^0.^0.^^^^~1~^~05/01/2014~
-~04018~^~338~^28.^2^^~1~^~A~^^^1^25.^30.^1^^^^~05/01/2014~
-~04018~^~417~^6.^2^^~1~^~A~^^^1^6.^6.^^^^~1~^~05/01/2014~
-~04018~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~
-~04018~^~432~^6.^0^^~4~^~NR~^^^^^^^^^^~12/01/2006~
-~04018~^~435~^6.^0^^~4~^~NC~^^^^^^^^^^~03/01/2009~
-~04018~^~601~^19.^3^0.^~1~^~A~^^^1^18.^19.^2^17.^19.^~2, 3~^~05/01/2014~
-~04018~^~636~^97.^2^^~1~^^^^^^^^^^^~06/01/1979~
-~04020~^~208~^222.^0^^~4~^~NC~^^^^^^^^^^~12/01/2007~
-~04020~^~262~^0.^0^^~4~^~FLA~^^^^^^^^^^~02/01/2003~
-~04020~^~263~^0.^0^^~4~^~FLA~^^^^^^^^^^~02/01/2003~
-~04020~^~268~^928.^0^^~4~^~NC~^^^^^^^^^^~12/01/2007~
-~04020~^~301~^11.^5^1.^~6~^~JA~^^^2^8.^14.^3^7.^15.^~4~^~12/01/2007~
-~04020~^~304~^8.^3^0.^~1~^~A~^^^1^8.^8.^2^7.^8.^~2, 3~^~02/01/2003~
-~04020~^~305~^16.^3^1.^~1~^~A~^^^1^13.^19.^2^8.^23.^~2, 3~^~02/01/2003~
-~04020~^~306~^107.^3^1.^~1~^~A~^^^1^105.^111.^2^98.^115.^~2, 3~^~02/01/2003~
-~04020~^~307~^838.^0^^~4~^~O~^^^^^^^^^^~06/01/2010~
-~04020~^~318~^541.^0^^~4~^~NC~^^^^^^^^^^~12/01/2007~
-~04020~^~319~^0.^0^^~4~^~FLA~^^^^^^^^^^~02/01/2003~
-~04020~^~320~^27.^0^^~4~^~NC~^^^^^^^^^^~12/01/2007~
-~04020~^~321~^289.^3^20.^~1~^~A~^^^1^256.^326.^2^202.^376.^~2, 3~^~02/01/2003~
-~04020~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~
-~04020~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~
-~04020~^~334~^70.^3^2.^~1~^~A~^^^1^68.^75.^2^60.^80.^~2, 3~^~02/01/2003~
-~04020~^~337~^2530.^3^165.^~1~^~A~^^^1^2243.^2815.^2^1819.^3240.^~2, 3~^~02/01/2003~
-~04020~^~338~^124.^0^^~4~^~NR~^^^^^^^^^^~02/01/2003~
-~04020~^~417~^2.^0^^~4~^~FLA~^^^^^^^^^^~12/01/2007~
-~04020~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~
-~04020~^~432~^2.^0^^~4~^~FLA~^^^^^^^^^^~12/01/2007~
-~04020~^~435~^2.^0^^~4~^~NC~^^^^^^^^^^~12/01/2007~
-~04020~^~601~^0.^2^^~12~^~MA~^^^^0.^0.^^^^^~12/01/2007~
-~04021~^~208~^102.^0^^~4~^~NC~^^^^^^^^^^~05/01/2012~
-~04021~^~262~^0.^0^^~4~^~FLA~^^^^^^^^^^~02/01/2003~
-~04021~^~263~^0.^0^^~4~^~FLA~^^^^^^^^^^~02/01/2003~
-~04021~^~268~^425.^0^^~4~^~NC~^^^^^^^^^^~05/01/2012~
-~04021~^~301~^15.^10^0.^~1~^~A~^^^1^15.^16.^8^15.^15.^~2, 3~^~05/01/2012~
-~04021~^~304~^4.^10^0.^~1~^~A~^^^1^4.^5.^5^4.^4.^~2, 3~^~02/01/2003~
-~04021~^~305~^12.^10^0.^~1~^~A~^^^1^11.^14.^5^11.^12.^~2, 3~^~05/01/2012~
-~04021~^~306~^90.^10^3.^~1~^~A~^^^1^49.^138.^5^82.^97.^~2, 3~^~05/01/2012~
-~04021~^~307~^891.^0^^~4~^~O~^^^^^^^^^^~06/01/2013~
-~04021~^~318~^12.^0^^~4~^~NC~^^^^^^^^^^~04/01/2004~
-~04021~^~319~^0.^0^^~4~^~FLA~^^^^^^^^^^~02/01/2003~
-~04021~^~320~^1.^0^^~4~^~NC~^^^^^^^^^^~04/01/2004~
-~04021~^~321~^7.^3^7.^~1~^~A~^^^1^0.^22.^2^-24.^38.^~1, 2, 3~^~02/01/2003~
-~04021~^~322~^0.^0^^~4~^~FLA~^^^^^^^^^^~05/01/2012~
-~04021~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~
-~04021~^~334~^0.^3^0.^~1~^~A~^^^1^0.^0.^^^^~1, 2, 3~^~02/01/2003~
-~04021~^~337~^0.^3^0.^~1~^~A~^^^1^0.^0.^^^^~2, 3~^~02/01/2003~
-~04021~^~338~^0.^0^^~4~^~FLA~^^^^^^^^^^~02/01/2003~
-~04021~^~417~^3.^0^^~4~^~FLA~^^^^^^^^^^~05/01/2012~
-~04021~^~431~^0.^0^^~4~^~FLA~^^^^^^^^^^~05/01/2012~
-~04021~^~432~^3.^0^^~4~^~FLA~^^^^^^^^^^~05/01/2012~
-~04021~^~435~^3.^0^^~4~^~NC~^^^^^^^^^^~05/01/2012~
-~04021~^~601~^0.^0^^~4~^~FLA~^^^^^^^^^^~05/01/2012~
-~04021~^~636~^17.^0^^~4~^~FLA~^^^^^^^^^^~05/01/2012~
-~04022~^~208~^141.^0^^~4~^~NC~^^^^^^^^^^~06/01/1979~
-~04022~^~262~^0.^0^^~4~^~FLA~^^^^^^^^^^~03/01/2003~
-~04022~^~263~^0.^0^^~4~^~FLA~^^^^^^^^^^~03/01/2003~
-~04022~^~268~^592.^0^^~4~^^^^^^^^^^^~12/01/2003~
-~04022~^~301~^19.^0^^~1~^^^^^^^^^^^~06/01/1979~
-~04022~^~304~^0.^0^^~4~^^^^^^^^^^^~06/01/1979~
-~04022~^~305~^37.^0^^~1~^^^^^^^^^^^~06/01/1979~
-~04022~^~306~^157.^0^^~1~^^^^^^^^^^^~06/01/1979~
-~04022~^~307~^868.^0^^~1~^^^^^^^^^^^~06/01/1979~
-~04022~^~318~^33.^0^^~4~^~NC~^^^^^^^^^^~03/01/2003~
-~04022~^~319~^0.^0^^~4~^~FLA~^^^^^^^^^^~03/01/2003~
-~04022~^~320~^2.^0^^~4~^~NC~^^^^^^^^^^~03/01/2003~
-~04022~^~321~^20.^0^^~4~^~FLA~^^^^^^^^^^~03/01/2003~
-~04022~^~322~^1.^0^^~4~^~FLA~^^^^^^^^^^~03/01/2003~
-~04022~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~
-~04022~^~334~^0.^0^^~4~^~FLA~^^^^^^^^^^~03/01/2003~
-~04022~^~337~^628.^0^^~4~^~FLA~^^^^^^^^^^~03/01/2003~
-~04022~^~338~^0.^0^^~4~^~FLA~^^^^^^^^^^~03/01/2003~
-~04022~^~417~^3.^0^^~4~^^^^^^^^^^^~06/01/1979~
-~04022~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~
-~04022~^~432~^3.^0^^~4~^^^^^^^^^^^~03/01/2003~
-~04022~^~435~^3.^0^^~4~^~NC~^^^^^^^^^^~04/01/2007~
-~04022~^~601~^6.^3^0.^~1~^^^^^^^^^^^~06/01/1979~
-~04022~^~636~^10.^0^^~4~^^^^^^^^^^^~06/01/1979~
-~04023~^~208~^195.^0^^~4~^~NC~^^^^^^^^^^~12/01/2007~
-~04023~^~262~^0.^0^^~4~^~FLA~^^^^^^^^^^~02/01/2003~
-~04023~^~263~^0.^0^^~4~^~FLA~^^^^^^^^^^~02/01/2003~
-~04023~^~268~^815.^0^^~4~^~NC~^^^^^^^^^^~12/01/2007~
-~04023~^~301~^27.^4^10.^~6~^~JA~^^^2^16.^60.^3^-7.^61.^~4~^~12/01/2007~
-~04023~^~304~^7.^3^0.^~1~^~A~^^^1^7.^7.^2^6.^7.^~2, 3~^~02/01/2003~
-~04023~^~305~^14.^3^0.^~1~^~A~^^^1^13.^15.^2^11.^16.^~2, 3~^~02/01/2003~
-~04023~^~306~^202.^3^3.^~1~^~A~^^^1^195.^206.^2^187.^216.^~2, 3~^~02/01/2003~
-~04023~^~307~^955.^0^^~4~^~O~^^^^^^^^^^~06/01/2010~
-~04023~^~318~^311.^0^^~4~^~NC~^^^^^^^^^^~12/01/2007~
-~04023~^~319~^0.^0^^~4~^~FLA~^^^^^^^^^^~12/01/2007~
-~04023~^~320~^16.^0^^~4~^~NC~^^^^^^^^^^~12/01/2007~
-~04023~^~321~^154.^2^^~1~^~A~^^^1^0.^307.^1^^^~1~^~02/01/2003~
-~04023~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~
-~04023~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~
-~04023~^~334~^65.^2^^~1~^~A~^^^1^28.^102.^1^^^^~02/01/2003~
-~04023~^~337~^3097.^2^^~1~^~A~^^^1^2615.^3578.^1^^^^~02/01/2003~
-~04023~^~338~^100.^0^^~4~^~NR~^^^^^^^^^^~02/01/2003~
-~04023~^~417~^0.^1^^~1~^~A~^^^^^^^^^~1~^~02/01/2003~
-~04023~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~
-~04023~^~432~^0.^1^^~1~^~A~^^^^^^^^^^~12/01/2007~
-~04023~^~435~^0.^0^^~4~^~NC~^^^^^^^^^^~12/01/2007~
-~04023~^~601~^11.^2^^~6~^~JA~^^^2^1.^20.^1^^^^~12/01/2007~
-~04025~^~208~^680.^0^^~4~^~NC~^^^^^^^^^^~04/01/2012~
-~04025~^~262~^0.^0^^~4~^~FLC~^^^^^^^^^^~04/01/2007~
-~04025~^~263~^0.^0^^~4~^~FLC~^^^^^^^^^^~04/01/2007~
-~04025~^~268~^2844.^0^^~4~^~NC~^^^^^^^^^^~04/01/2012~
-~04025~^~301~^8.^12^0.^~1~^~A~^^^1^7.^8.^5^7.^7.^~2, 3~^~04/01/2012~
-~04025~^~304~^1.^12^0.^~1~^~A~^^^1^1.^1.^6^1.^1.^~2, 3~^~04/01/2007~
-~04025~^~305~^21.^12^0.^~1~^~A~^^^1^20.^24.^5^20.^21.^~2, 3~^~04/01/2012~
-~04025~^~306~^20.^12^2.^~1~^~A~^^^1^11.^32.^6^13.^27.^~2, 3~^~04/01/2012~
-~04025~^~307~^635.^12^7.^~1~^~A~^^^1^518.^709.^5^615.^655.^~2, 3~^~04/01/2012~
-~04025~^~318~^65.^0^^~1~^~AS~^^^^^^^^^^~04/01/2012~
-~04025~^~319~^15.^4^0.^~1~^~A~^^^1^14.^17.^1^9.^21.^~2, 3~^~04/01/2012~
-~04025~^~320~^16.^0^^~1~^~AS~^^^^^^^^^^~04/01/2012~
-~04025~^~321~^6.^6^0.^~1~^~A~^^^1^1.^8.^2^4.^7.^~2, 3~^~04/01/2012~
-~04025~^~322~^0.^6^0.^~1~^~A~^^^1^0.^1.^2^0.^0.^~1, 2, 3~^~04/01/2012~
-~04025~^~324~^7.^0^^~4~^~FLA~^^^^^^^^^^~03/01/2009~
-~04025~^~334~^4.^6^0.^~1~^~A~^^^1^1.^5.^3^3.^4.^~2, 3~^~04/01/2012~
-~04025~^~337~^0.^6^0.^~1~^~A~^^^1^0.^0.^^^^~1, 2, 3~^~04/01/2012~
-~04025~^~338~^12.^6^2.^~1~^~A~^^^1^5.^21.^2^4.^19.^~2, 3~^~04/01/2012~
-~04025~^~417~^5.^3^0.^~1~^~A~^^^1^5.^6.^2^3.^7.^~1, 2, 3~^~04/01/2007~
-~04025~^~431~^0.^0^^~4~^~FLA~^^^^^^^^^^~04/01/2007~
-~04025~^~432~^5.^0^^~4~^~NR~^^^^^^^^^^~04/01/2007~
-~04025~^~435~^5.^0^^~4~^~NC~^^^^^^^^^^~03/01/2009~
-~04025~^~601~^42.^12^0.^~1~^~A~^^^1^39.^50.^6^41.^43.^~2, 3~^~04/01/2012~
-~04025~^~638~^39.^3^1.^~1~^~A~^^^1^35.^41.^2^31.^45.^~2, 3~^~02/01/2003~
-~04025~^~639~^39.^3^4.^~1~^~A~^^^1^30.^46.^2^19.^59.^~2, 3~^~02/01/2003~
-~04025~^~641~^102.^3^6.^~1~^~A~^^^1^89.^110.^2^73.^130.^~2, 3~^~02/01/2003~
-~04026~^~208~^717.^0^^~4~^~NC~^^^^^^^^^^~06/01/1979~
-~04026~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~11/01/2002~
-~04026~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~11/01/2002~
-~04026~^~268~^2999.^0^^~4~^^^^^^^^^^^~12/01/2003~
-~04026~^~301~^18.^0^^~1~^^^^^^^^^^^~06/01/1979~
-~04026~^~304~^1.^0^^~4~^^^^^^^^^^^~06/01/1979~
-~04026~^~305~^28.^0^^~1~^^^^^^^^^^^~06/01/1979~
-~04026~^~306~^34.^0^^~1~^^^^^^^^^^^~06/01/1979~
-~04026~^~307~^568.^408^2.^~1~^^^^^^^^^^^~06/01/1979~
-~04026~^~318~^280.^0^^~1~^^^^^^^^^^^~06/01/1979~
-~04026~^~319~^84.^0^^~4~^~NR~^^^^^^^^^^~11/01/2002~
-~04026~^~320~^84.^0^^~1~^^^^^^^^^^^~11/01/2002~
-~04026~^~321~^0.^0^^~7~^~Z~^^^^^^^^^^~11/01/2002~
-~04026~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~11/01/2002~
-~04026~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~11/01/2002~
-~04026~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~11/01/2002~
-~04026~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~11/01/2002~
-~04026~^~417~^8.^0^^~4~^^^^^^^^^^^~06/01/1979~
-~04026~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~
-~04026~^~432~^8.^0^^~4~^^^^^^^^^^^~11/01/2002~
-~04026~^~435~^8.^0^^~4~^~NC~^^^^^^^^^^~03/01/2005~
-~04026~^~601~^59.^0^^~4~^^^^^^^^^^^~06/01/1979~
-~04026~^~636~^347.^0^^~4~^^^^^^^^^^^~06/01/1979~
-~04027~^~208~^232.^0^^~4~^~NC~^^^^^^^^^^~06/01/1979~
-~04027~^~262~^0.^0^^~4~^~BFZN~^~04029~^^^^^^^^^~03/01/2003~
-~04027~^~263~^0.^0^^~4~^~BFZN~^~04029~^^^^^^^^^~03/01/2003~
-~04027~^~268~^969.^0^^~4~^^^^^^^^^^^~12/01/2006~
-~04027~^~301~^0.^0^^~4~^^^^^^^^^^^~06/01/1979~
-~04027~^~304~^0.^0^^~4~^^^^^^^^^^^~06/01/1979~
-~04027~^~305~^0.^0^^~4~^^^^^^^^^^^~06/01/1979~
-~04027~^~306~^10.^0^^~4~^^^^^^^^^^^~06/01/1979~
-~04027~^~307~^497.^1^^~1~^^^^^^^^^^^~06/01/1979~
-~04027~^~318~^0.^0^^~4~^^^^^^^^^^^~06/01/1979~
-~04027~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2002~
-~04027~^~320~^0.^0^^~4~^~NC~^^^^^^^^^^~12/01/2006~
-~04027~^~321~^0.^0^^~4~^~BFZN~^~04029~^^^^^^^^^~03/01/2003~
-~04027~^~322~^0.^0^^~4~^~BFZN~^~04029~^^^^^^^^^~03/01/2003~
-~04027~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~
-~04027~^~334~^0.^0^^~4~^~BFZN~^~04029~^^^^^^^^^~03/01/2003~
-~04027~^~337~^0.^0^^~4~^~BFZN~^~04029~^^^^^^^^^~03/01/2003~
-~04027~^~338~^0.^0^^~4~^~BFZN~^~04029~^^^^^^^^^~03/01/2003~
-~04027~^~417~^0.^0^^~4~^^^^^^^^^^^~06/01/1979~
-~04027~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~
-~04027~^~432~^0.^0^^~4~^^^^^^^^^^^~12/01/2006~
-~04027~^~435~^0.^0^^~4~^~NC~^^^^^^^^^^~12/01/2006~
-~04027~^~601~^24.^2^^~1~^^^^^^^^^^^~06/01/1979~
-~04027~^~636~^62.^2^^~1~^^^^^^^^^^^~06/01/1979~
-~04028~^~208~^97.^0^^~4~^~NC~^^^^^^^^^^~06/01/1979~
-~04028~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2002~
-~04028~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2002~
-~04028~^~268~^404.^0^^~4~^^^^^^^^^^^~12/01/2003~
-~04028~^~301~^72.^0^^~4~^^^^^^^^^^^~06/01/1979~
-~04028~^~304~^7.^0^^~4~^^^^^^^^^^^~06/01/1979~
-~04028~^~305~^57.^0^^~4~^^^^^^^^^^^~06/01/1979~
-~04028~^~306~^97.^0^^~4~^^^^^^^^^^^~06/01/1979~
-~04028~^~307~^504.^1^^~1~^^^^^^^^^^^~06/01/1979~
-~04028~^~318~^13.^0^^~4~^^^^^^^^^^^~06/01/1979~
-~04028~^~319~^4.^0^^~4~^~NC~^^^^^^^^^^~03/01/2002~
-~04028~^~320~^4.^0^^~4~^~NC~^^^^^^^^^^~03/01/2002~
-~04028~^~417~^3.^0^^~4~^^^^^^^^^^^~06/01/1979~
-~04028~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~
-~04028~^~432~^3.^0^^~4~^^^^^^^^^^^~06/01/1979~
-~04028~^~435~^3.^0^^~4~^~NC~^^^^^^^^^^~12/01/2003~
-~04028~^~601~^43.^1^^~1~^^^^^^^^^^^~06/01/1979~
-~04028~^~636~^6.^0^^~4~^^^^^^^^^^^~06/01/1979~
-~04029~^~208~^482.^0^^~4~^~NC~^^^^^^^^^^~06/01/1979~
-~04029~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2003~
-~04029~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2003~
-~04029~^~268~^2016.^0^^~4~^^^^^^^^^^^~12/01/2003~
-~04029~^~301~^0.^0^^~4~^^^^^^^^^^^~06/01/1979~
-~04029~^~304~^0.^0^^~4~^^^^^^^^^^^~06/01/1979~
-~04029~^~305~^0.^0^^~4~^^^^^^^^^^^~06/01/1979~
-~04029~^~306~^10.^0^^~4~^^^^^^^^^^^~06/01/1979~
-~04029~^~307~^353.^1^^~1~^^^^^^^^^^^~06/01/1979~
-~04029~^~318~^0.^0^^~4~^^^^^^^^^^^~06/01/1979~
-~04029~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2002~
-~04029~^~320~^0.^0^^~1~^~AS~^^^^^^^^^^~03/01/2003~
-~04029~^~321~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2003~
-~04029~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2003~
-~04029~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~
-~04029~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2003~
-~04029~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2003~
-~04029~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2003~
-~04029~^~417~^0.^0^^~4~^^^^^^^^^^^~06/01/1979~
-~04029~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~
-~04029~^~432~^0.^0^^~4~^^^^^^^^^^^~03/01/2003~
-~04029~^~435~^0.^0^^~4~^~NC~^^^^^^^^^^~03/01/2007~
-~04029~^~601~^0.^2^^~1~^^^^^^^^^^^~06/01/1979~
-~04029~^~636~^216.^2^^~1~^^^^^^^^^^^~06/01/1979~
-~04030~^~208~^389.^0^^~4~^~NC~^^^^^^^^^^~06/01/1979~
-~04030~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2002~
-~04030~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2002~
-~04030~^~268~^1628.^0^^~4~^^^^^^^^^^^~03/01/2009~
-~04030~^~301~^14.^0^^~4~^^^^^^^^^^^~02/01/1995~
-~04030~^~304~^2.^0^^~4~^^^^^^^^^^^~02/01/1995~
-~04030~^~305~^26.^0^^~4~^^^^^^^^^^^~02/01/1995~
-~04030~^~306~^35.^0^^~4~^^^^^^^^^^^~06/01/1979~
-~04030~^~307~^1000.^0^^~4~^^^^^^^^^^^~06/01/1979~
-~04030~^~318~^220.^0^^~4~^^^^^^^^^^^~03/01/2009~
-~04030~^~319~^13.^0^^~4~^~FLM~^^^^^^^^^^~03/01/2009~
-~04030~^~320~^22.^0^^~4~^~NC~^^^^^^^^^^~03/01/2009~
-~04030~^~321~^94.^0^^~4~^~BFZN~^~43329~^^^^^^^^^~03/01/2003~
-~04030~^~322~^1.^0^^~4~^~BFZN~^~43329~^^^^^^^^^~03/01/2003~
-~04030~^~324~^4.^0^^~4~^~BFFN~^~04018~^^^^^^^^^~03/01/2009~
-~04030~^~334~^27.^0^^~4~^~BFZN~^~43329~^^^^^^^^^~03/01/2003~
-~04030~^~337~^0.^0^^~4~^~BFZN~^~43329~^^^^^^^^^~03/01/2003~
-~04030~^~338~^87.^0^^~4~^~BFZN~^~43329~^^^^^^^^^~03/01/2003~
-~04030~^~417~^6.^0^^~4~^^^^^^^^^^^~02/01/1995~
-~04030~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~
-~04030~^~432~^6.^0^^~4~^^^^^^^^^^^~03/01/2009~
-~04030~^~435~^6.^0^^~4~^~NC~^^^^^^^^^^~03/01/2009~
-~04030~^~601~^76.^7^5.^~1~^^^^^^^^^^^~06/01/1979~
-~04030~^~636~^75.^0^^~4~^^^^^^^^^^^~06/01/1979~
-~04031~^~208~^884.^0^^~4~^~NC~^^^^^^^^^^~06/01/1979~
-~04031~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~11/01/2002~
-~04031~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~11/01/2002~
-~04031~^~268~^3699.^0^^~4~^^^^^^^^^^^~12/01/2006~
-~04031~^~301~^0.^0^^~4~^^^^^^^^^^^~06/01/1979~
-~04031~^~304~^0.^0^^~4~^^^^^^^^^^^~06/01/1979~
-~04031~^~305~^0.^0^^~4~^^^^^^^^^^^~06/01/1979~
-~04031~^~306~^0.^0^^~4~^^^^^^^^^^^~06/01/1979~
-~04031~^~307~^0.^0^^~4~^^^^^^^^^^^~06/01/1979~
-~04031~^~318~^0.^0^^~1~^~AS~^^^^^^^^^^~11/01/2002~
-~04031~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2002~
-~04031~^~320~^0.^0^^~4~^~NC~^^^^^^^^^^~11/01/2002~
-~04031~^~321~^0.^0^^~7~^~Z~^^^^^^^^^^~11/01/2002~
-~04031~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~11/01/2002~
-~04031~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~
-~04031~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~11/01/2002~
-~04031~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~11/01/2002~
-~04031~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~11/01/2002~
-~04031~^~417~^0.^0^^~7~^~Z~^^^^^^^^^^~11/01/2002~
-~04031~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~
-~04031~^~432~^0.^0^^~7~^~Z~^^^^^^^^^^~11/01/2002~
-~04031~^~435~^0.^0^^~4~^~NC~^^^^^^^^^^~04/01/2010~
-~04031~^~601~^0.^0^^~4~^^^^^^^^^^^~06/01/1979~
-~04031~^~636~^200.^0^^~4~^^^^^^^^^^^~06/01/1979~
-~04034~^~208~^884.^0^^~4~^~NC~^^^^^^^^^^~06/01/1979~
-~04034~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~11/01/2002~
-~04034~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~11/01/2002~
-~04034~^~268~^3699.^0^^~4~^^^^^^^^^^^~12/01/2006~
-~04034~^~301~^0.^0^^~4~^^^^^^^^^^^~06/01/1979~
-~04034~^~304~^0.^0^^~4~^^^^^^^^^^^~06/01/1979~
-~04034~^~305~^0.^0^^~4~^^^^^^^^^^^~06/01/1979~
-~04034~^~306~^0.^0^^~4~^^^^^^^^^^^~06/01/1979~
-~04034~^~307~^0.^0^^~4~^^^^^^^^^^^~06/01/1979~
-~04034~^~318~^0.^0^^~1~^~AS~^^^^^^^^^^~11/01/2002~
-~04034~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2002~
-~04034~^~320~^0.^0^^~4~^~NC~^^^^^^^^^^~11/01/2002~
-~04034~^~321~^0.^0^^~7~^~Z~^^^^^^^^^^~11/01/2002~
-~04034~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~11/01/2002~
-~04034~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~
-~04034~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~11/01/2002~
-~04034~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~11/01/2002~
-~04034~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~11/01/2002~
-~04034~^~417~^0.^0^^~7~^~Z~^^^^^^^^^^~11/01/2002~
-~04034~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~
-~04034~^~432~^0.^0^^~7~^~Z~^^^^^^^^^^~11/01/2002~
-~04034~^~435~^0.^0^^~4~^~NC~^^^^^^^^^^~04/01/2008~
-~04034~^~601~^0.^0^^~4~^^^^^^^^^^^~06/01/1979~
-~04034~^~636~^132.^0^^~1~^^^^^^^^^^^~06/01/1979~
-~04037~^~208~^884.^0^^~4~^~NC~^^^^^^^^^^~06/01/1979~
-~04037~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~11/01/2002~
-~04037~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~11/01/2002~
-~04037~^~268~^3699.^0^^~4~^^^^^^^^^^^~12/01/2003~
-~04037~^~301~^0.^0^^~4~^^^^^^^^^^^~06/01/1979~
-~04037~^~304~^0.^0^^~4~^^^^^^^^^^^~06/01/1979~
-~04037~^~305~^0.^0^^~4~^^^^^^^^^^^~06/01/1979~
-~04037~^~306~^0.^0^^~4~^^^^^^^^^^^~06/01/1979~
-~04037~^~307~^0.^0^^~4~^^^^^^^^^^^~06/01/1979~
-~04037~^~318~^0.^0^^~1~^~AS~^^^^^^^^^^~11/01/2002~
-~04037~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2002~
-~04037~^~320~^0.^0^^~4~^~NC~^^^^^^^^^^~11/01/2002~
-~04037~^~321~^0.^0^^~7~^~Z~^^^^^^^^^^~11/01/2002~
-~04037~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~11/01/2002~
-~04037~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~11/01/2002~
-~04037~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~11/01/2002~
-~04037~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~11/01/2002~
-~04037~^~417~^0.^0^^~7~^~Z~^^^^^^^^^^~11/01/2002~
-~04037~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~
-~04037~^~432~^0.^0^^~7~^~Z~^^^^^^^^^^~11/01/2002~
-~04037~^~435~^0.^0^^~4~^~NC~^^^^^^^^^^~07/01/2009~
-~04037~^~601~^0.^0^^~4~^^^^^^^^^^^~06/01/1979~
-~04037~^~636~^1190.^2^^~1~^^^^^^^^^^^~06/01/1979~
-~04038~^~208~^884.^0^^~4~^~NC~^^^^^^^^^^~06/01/1979~
-~04038~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~11/01/2002~
-~04038~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~11/01/2002~
-~04038~^~268~^3699.^0^^~4~^^^^^^^^^^^~12/01/2003~
-~04038~^~301~^0.^0^^~4~^^^^^^^^^^^~06/01/1979~
-~04038~^~304~^0.^0^^~4~^^^^^^^^^^^~06/01/1979~
-~04038~^~305~^0.^0^^~4~^^^^^^^^^^^~06/01/1979~
-~04038~^~306~^0.^0^^~4~^^^^^^^^^^^~06/01/1979~
-~04038~^~307~^0.^0^^~4~^^^^^^^^^^^~06/01/1979~
-~04038~^~318~^0.^0^^~1~^~AS~^^^^^^^^^^~11/01/2002~
-~04038~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2002~
-~04038~^~320~^0.^0^^~4~^~NC~^^^^^^^^^^~11/01/2002~
-~04038~^~321~^0.^0^^~7~^~Z~^^^^^^^^^^~11/01/2002~
-~04038~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~11/01/2002~
-~04038~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~
-~04038~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~11/01/2002~
-~04038~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~11/01/2002~
-~04038~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~11/01/2002~
-~04038~^~417~^0.^0^^~7~^~Z~^^^^^^^^^^~11/01/2002~
-~04038~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~
-~04038~^~432~^0.^0^^~7~^~Z~^^^^^^^^^^~11/01/2002~
-~04038~^~435~^0.^0^^~4~^~NC~^^^^^^^^^^~04/01/2007~
-~04038~^~601~^0.^0^^~4~^^^^^^^^^^^~06/01/1979~
-~04038~^~636~^553.^0^^~1~^^^^^^^^^^^~06/01/1979~
-~04042~^~208~^884.^0^^~4~^~NC~^^^^^^^^^^~06/01/1979~
-~04042~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~11/01/2002~
-~04042~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~11/01/2002~
-~04042~^~268~^3699.^0^^~4~^^^^^^^^^^^~04/01/2007~
-~04042~^~301~^0.^9^0.^~1~^^^^^^^^^^^~06/01/1979~
-~04042~^~304~^0.^8^0.^~1~^^^^^^^^^^^~06/01/1979~
-~04042~^~305~^0.^0^^~4~^^^^^^^^^^^~06/01/1979~
-~04042~^~306~^0.^6^0.^~1~^^^^^^^^^^^~06/01/1979~
-~04042~^~307~^0.^11^0.^~1~^^^^^^^^^^^~06/01/1979~
-~04042~^~318~^0.^0^^~4~^^^^^^^^^^^~11/01/2002~
-~04042~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2002~
-~04042~^~320~^0.^0^^~4~^~NC~^^^^^^^^^^~11/01/2002~
-~04042~^~321~^0.^0^^~7~^~Z~^^^^^^^^^^~11/01/2002~
-~04042~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~11/01/2002~
-~04042~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~
-~04042~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~11/01/2002~
-~04042~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~11/01/2002~
-~04042~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~11/01/2002~
-~04042~^~417~^0.^0^^~4~^^^^^^^^^^^~06/01/1979~
-~04042~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~
-~04042~^~432~^0.^0^^~7~^~Z~^^^^^^^^^^~11/01/2002~
-~04042~^~435~^0.^0^^~4~^~NC~^^^^^^^^^^~04/01/2007~
-~04042~^~601~^0.^0^^~4~^^^^^^^^^^^~06/01/1979~
-~04042~^~636~^207.^8^43.^~1~^^^^^^^^^^^~06/01/1979~
-~04044~^~208~^884.^0^^~4~^~NC~^^^^^^^^^^~06/01/1979~
-~04044~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~11/01/2002~
-~04044~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~11/01/2002~
-~04044~^~268~^3699.^0^^~4~^^^^^^^^^^^~04/01/2007~
-~04044~^~301~^0.^3^0.^~1~^^^^^^^^^^^~06/01/1979~
-~04044~^~304~^0.^3^0.^~1~^^^^^^^^^^^~06/01/1979~
-~04044~^~305~^0.^10^0.^~1~^^^^^^^^^^^~06/01/1979~
-~04044~^~306~^0.^1^^~1~^~A~^^^^^^^^^~1~^~03/01/2007~
-~04044~^~307~^0.^1^^~1~^~A~^^^^^^^^^~1~^~03/01/2007~
-~04044~^~318~^0.^0^^~1~^~AS~^^^^^^^^^^~11/01/2002~
-~04044~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2002~
-~04044~^~320~^0.^0^^~4~^~NC~^^^^^^^^^^~11/01/2002~
-~04044~^~321~^0.^0^^~7~^~Z~^^^^^^^^^^~11/01/2002~
-~04044~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~11/01/2002~
-~04044~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~
-~04044~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~11/01/2002~
-~04044~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~11/01/2002~
-~04044~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~11/01/2002~
-~04044~^~417~^0.^0^^~7~^~Z~^^^^^^^^^^~11/01/2002~
-~04044~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~
-~04044~^~432~^0.^0^^~7~^~Z~^^^^^^^^^^~11/01/2002~
-~04044~^~435~^0.^0^^~4~^~NC~^^^^^^^^^^~04/01/2007~
-~04044~^~601~^0.^0^^~4~^^^^^^^^^^^~04/01/2007~
-~04044~^~638~^59.^3^3.^~1~^~A~^^^1^53.^65.^2^43.^74.^~2, 3~^~03/01/2007~
-~04044~^~639~^62.^3^3.^~1~^~A~^^^1^56.^66.^2^48.^75.^~2, 3~^~03/01/2007~
-~04044~^~641~^172.^3^5.^~1~^~A~^^^1^161.^180.^2^147.^195.^~2, 3~^~03/01/2007~
-~04047~^~208~^892.^0^^~4~^~NC~^^^^^^^^^^~03/01/2015~
-~04047~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~10/01/2002~
-~04047~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~10/01/2002~
-~04047~^~268~^3730.^0^^~4~^~NC~^^^^^^^^^^~03/01/2015~
-~04047~^~301~^1.^4^0.^~1~^~A~^^^1^1.^1.^3^0.^1.^~1, 2, 3~^~03/01/2015~
-~04047~^~304~^0.^4^0.^~1~^~A~^^^1^0.^0.^^^^~1, 2, 3~^~06/01/1979~
-~04047~^~305~^0.^4^0.^~1~^~A~^^^1^0.^0.^^^^~1, 2, 3~^~06/01/1979~
-~04047~^~306~^0.^4^0.^~1~^~A~^^^1^0.^0.^^^^~1, 2, 3~^~06/01/1979~
-~04047~^~307~^0.^4^0.^~1~^~A~^^^1^0.^0.^^^^~1, 2, 3~^~06/01/1979~
-~04047~^~318~^0.^0^^~1~^~AS~^^^^^^^^^^~10/01/2002~
-~04047~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2002~
-~04047~^~320~^0.^0^^~1~^~AS~^^^^^^^^^^~10/01/2002~
-~04047~^~321~^0.^1^^~1~^~A~^^^^^^^^^^~10/01/2002~
-~04047~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~10/01/2002~
-~04047~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~
-~04047~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~10/01/2002~
-~04047~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~10/01/2002~
-~04047~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~10/01/2002~
-~04047~^~417~^0.^1^^~1~^^^^^^^^^^^~06/01/1979~
-~04047~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~
-~04047~^~432~^0.^1^^~1~^^^^^^^^^^^~10/01/2002~
-~04047~^~435~^0.^0^^~4~^~NC~^^^^^^^^^^~07/01/2009~
-~04047~^~601~^0.^1^^~1~^^^^^^^^^^^~06/01/1979~
-~04047~^~636~^86.^19^1.^~1~^^^^^^^^^^^~06/01/1979~
-~04053~^~208~^884.^0^^~4~^~NC~^^^^^^^^^^~03/01/2005~
-~04053~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~10/01/2002~
-~04053~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~10/01/2002~
-~04053~^~268~^3699.^0^^~4~^~NC~^^^^^^^^^^~03/01/2005~
-~04053~^~301~^1.^4^0.^~1~^~A~^^^1^1.^1.^3^0.^1.^~2, 3~^~03/01/2005~
-~04053~^~304~^0.^4^0.^~1~^~A~^^^1^0.^0.^3^0.^0.^~1, 2, 3~^~03/01/2005~
-~04053~^~305~^0.^4^0.^~1~^~A~^^^1^0.^0.^^^^~1, 2, 3~^~03/01/2005~
-~04053~^~306~^1.^4^0.^~1~^~A~^^^1^0.^1.^3^0.^1.^~2, 3~^~03/01/2005~
-~04053~^~307~^2.^4^0.^~1~^~A~^^^1^2.^3.^3^1.^3.^~2, 3~^~03/01/2005~
-~04053~^~318~^0.^0^^~4~^^^^^^^^^^^~06/01/1979~
-~04053~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2002~
-~04053~^~320~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2005~
-~04053~^~321~^0.^0^^~7~^~Z~^^^^^^^^^^~10/01/2002~
-~04053~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~10/01/2002~
-~04053~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~
-~04053~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~10/01/2002~
-~04053~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~10/01/2002~
-~04053~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~10/01/2002~
-~04053~^~417~^0.^0^^~4~^^^^^^^^^^^~06/01/1979~
-~04053~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~10/01/2002~
-~04053~^~432~^0.^0^^~4~^^^^^^^^^^^~03/01/2005~
-~04053~^~435~^0.^0^^~4~^~NC~^^^^^^^^^^~04/01/2006~
-~04053~^~601~^0.^0^^~4~^^^^^^^^^^^~06/01/1979~
-~04053~^~636~^221.^13^41.^~1~^^^^^^^^^^^~06/01/1979~
-~04055~^~208~^884.^0^^~4~^~NC~^^^^^^^^^^~06/01/1979~
-~04055~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~11/01/2002~
-~04055~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~11/01/2002~
-~04055~^~268~^3699.^0^^~4~^^^^^^^^^^^~12/01/2006~
-~04055~^~301~^0.^0^^~4~^^^^^^^^^^^~06/01/1979~
-~04055~^~304~^0.^0^^~4~^^^^^^^^^^^~06/01/1979~
-~04055~^~305~^0.^1^^~1~^^^^^^^^^^^~06/01/1979~
-~04055~^~306~^0.^0^^~4~^^^^^^^^^^^~06/01/1979~
-~04055~^~307~^0.^0^^~4~^^^^^^^^^^^~06/01/1979~
-~04055~^~318~^0.^0^^~1~^~AS~^^^^^^^^^^~11/01/2002~
-~04055~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2002~
-~04055~^~320~^0.^0^^~4~^~NC~^^^^^^^^^^~11/01/2002~
-~04055~^~321~^0.^0^^~7~^~Z~^^^^^^^^^^~11/01/2002~
-~04055~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~11/01/2002~
-~04055~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~11/01/2002~
-~04055~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~11/01/2002~
-~04055~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~11/01/2002~
-~04055~^~417~^0.^0^^~7~^~Z~^^^^^^^^^^~11/01/2002~
-~04055~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~
-~04055~^~432~^0.^0^^~7~^~Z~^^^^^^^^^^~11/01/2002~
-~04055~^~435~^0.^0^^~4~^~NC~^^^^^^^^^^~07/01/2009~
-~04055~^~601~^0.^0^^~4~^^^^^^^^^^^~06/01/1979~
-~04058~^~208~^884.^0^^~4~^~NC~^^^^^^^^^^~06/01/1979~
-~04058~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~11/01/2002~
-~04058~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~11/01/2002~
-~04058~^~268~^3699.^0^^~4~^^^^^^^^^^^~12/01/2003~
-~04058~^~301~^0.^0^^~4~^^^^^^^^^^^~06/01/1979~
-~04058~^~304~^0.^0^^~4~^^^^^^^^^^^~06/01/1979~
-~04058~^~305~^0.^0^^~4~^^^^^^^^^^^~06/01/1979~
-~04058~^~306~^0.^0^^~4~^^^^^^^^^^^~06/01/1979~
-~04058~^~307~^0.^0^^~4~^^^^^^^^^^^~06/01/1979~
-~04058~^~318~^0.^0^^~1~^~AS~^^^^^^^^^^~11/01/2002~
-~04058~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2002~
-~04058~^~320~^0.^0^^~4~^~NC~^^^^^^^^^^~11/01/2002~
-~04058~^~321~^0.^0^^~7~^~Z~^^^^^^^^^^~11/01/2002~
-~04058~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~11/01/2002~
-~04058~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~
-~04058~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~11/01/2002~
-~04058~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~11/01/2002~
-~04058~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~11/01/2002~
-~04058~^~417~^0.^0^^~7~^~Z~^^^^^^^^^^~11/01/2002~
-~04058~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~
-~04058~^~432~^0.^0^^~7~^~Z~^^^^^^^^^^~11/01/2002~
-~04058~^~435~^0.^0^^~4~^~NC~^^^^^^^^^^~12/01/2006~
-~04058~^~601~^0.^0^^~4~^^^^^^^^^^^~06/01/1979~
-~04058~^~636~^865.^0^^~1~^^^^^^^^^^^~06/01/1979~
-~04060~^~208~^884.^0^^~4~^~NC~^^^^^^^^^^~06/01/1979~
-~04060~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~11/01/2002~
-~04060~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~11/01/2002~
-~04060~^~268~^3699.^0^^~4~^^^^^^^^^^^~07/01/2009~
-~04060~^~301~^0.^1^^~1~^^^^^^^^^^^~06/01/1979~
-~04060~^~304~^0.^1^^~1~^^^^^^^^^^^~06/01/1979~
-~04060~^~305~^0.^0^^~4~^^^^^^^^^^^~06/01/1979~
-~04060~^~306~^0.^0^^~4~^^^^^^^^^^^~06/01/1979~
-~04060~^~307~^0.^1^^~1~^^^^^^^^^^^~06/01/1979~
-~04060~^~318~^0.^0^^~1~^~AS~^^^^^^^^^^~11/01/2002~
-~04060~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2002~
-~04060~^~320~^0.^0^^~4~^~NC~^^^^^^^^^^~11/01/2002~
-~04060~^~321~^0.^0^^~7~^~Z~^^^^^^^^^^~11/01/2002~
-~04060~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~11/01/2002~
-~04060~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~11/01/2002~
-~04060~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~11/01/2002~
-~04060~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~11/01/2002~
-~04060~^~417~^0.^0^^~7~^~Z~^^^^^^^^^^~11/01/2002~
-~04060~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~
-~04060~^~432~^0.^0^^~7~^~Z~^^^^^^^^^^~11/01/2002~
-~04060~^~435~^0.^0^^~4~^~NC~^^^^^^^^^^~07/01/2009~
-~04060~^~601~^0.^0^^~4~^^^^^^^^^^^~06/01/1979~
-~04060~^~636~^100.^0^^~4~^^^^^^^^^^^~06/01/1979~
-~04073~^~208~^719.^0^^~4~^~NC~^^^^^^^^^^~06/01/1979~
-~04073~^~268~^3007.^0^^~4~^^^^^^^^^^^~12/01/2006~
-~04073~^~301~^30.^0^^~1~^^^^^^^^^^^~06/01/1979~
-~04073~^~304~^3.^0^^~1~^^^^^^^^^^^~06/01/1979~
-~04073~^~305~^23.^0^^~1~^^^^^^^^^^^~06/01/1979~
-~04073~^~306~^42.^0^^~1~^^^^^^^^^^^~06/01/1979~
-~04073~^~307~^943.^337^9.^~1~^^^^^^^^^^^~06/01/1979~
-~04073~^~318~^3577.^0^^~4~^~NC~^^^^^^^^^^~11/01/2002~
-~04073~^~319~^768.^0^^~4~^~CAZN~^^^^^^^^^^~11/01/2002~
-~04073~^~320~^819.^0^^~4~^~NC~^^^^^^^^^^~11/01/2002~
-~04073~^~321~^610.^0^^~4~^~CAZN~^^^^^^^^^^~11/01/2002~
-~04073~^~322~^0.^0^^~4~^~CAZN~^^^^^^^^^^~11/01/2002~
-~04073~^~334~^0.^0^^~4~^~CAZN~^^^^^^^^^^~11/01/2002~
-~04073~^~337~^0.^0^^~4~^~CAZN~^^^^^^^^^^~11/01/2002~
-~04073~^~338~^0.^0^^~4~^~CAZN~^^^^^^^^^^~11/01/2002~
-~04073~^~417~^1.^0^^~1~^^^^^^^^^^^~06/01/1979~
-~04073~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~
-~04073~^~432~^1.^0^^~1~^^^^^^^^^^^~11/01/2002~
-~04073~^~435~^1.^0^^~4~^~NC~^^^^^^^^^^~12/01/2006~
-~04073~^~601~^0.^0^^~4~^^^^^^^^^^^~06/01/1979~
-~04073~^~636~^146.^1^^~1~^^^^^^^^^^^~06/01/1979~
-~04114~^~208~^240.^0^^~4~^~NC~^^^^^^^^^^~05/01/2012~
-~04114~^~262~^0.^0^^~4~^~FLA~^^^^^^^^^^~02/01/2003~
-~04114~^~263~^0.^0^^~4~^~FLA~^^^^^^^^^^~02/01/2003~
-~04114~^~268~^1005.^0^^~4~^~NC~^^^^^^^^^^~05/01/2012~
-~04114~^~301~^13.^12^0.^~1~^~A~^^^1^12.^14.^9^12.^13.^~2, 3~^~05/01/2012~
-~04114~^~304~^5.^12^0.^~1~^~A~^^^1^4.^5.^10^4.^4.^~2, 3~^~05/01/2012~
-~04114~^~305~^15.^12^0.^~1~^~A~^^^1^13.^17.^9^14.^15.^~2, 3~^~05/01/2012~
-~04114~^~306~^84.^12^2.^~1~^~A~^^^1^59.^123.^10^78.^89.^~2, 3~^~05/01/2012~
-~04114~^~307~^993.^12^6.^~1~^~A~^^^1^929.^1060.^8^978.^1006.^~2, 3~^~05/01/2012~
-~04114~^~318~^36.^0^^~4~^~NC~^^^^^^^^^^~04/01/2007~
-~04114~^~319~^0.^0^^~4~^~FLA~^^^^^^^^^^~02/01/2003~
-~04114~^~320~^2.^0^^~4~^~NC~^^^^^^^^^^~04/01/2007~
-~04114~^~321~^21.^6^7.^~1~^~A~^^^1^0.^49.^5^0.^40.^~1, 2, 3~^~02/01/2003~
-~04114~^~322~^0.^0^^~4~^~FLA~^^^^^^^^^^~05/01/2012~
-~04114~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~
-~04114~^~334~^2.^6^1.^~1~^~A~^^^1^0.^11.^5^-2.^6.^~1, 2, 3~^~02/01/2003~
-~04114~^~337~^16.^6^10.^~1~^~A~^^^1^0.^52.^5^-10.^42.^~2, 3~^~02/01/2003~
-~04114~^~338~^0.^0^^~4~^~FLA~^^^^^^^^^^~02/01/2003~
-~04114~^~417~^0.^0^^~4~^~FLA~^^^^^^^^^^~05/01/2012~
-~04114~^~431~^0.^0^^~4~^~FLA~^^^^^^^^^^~05/01/2012~
-~04114~^~432~^0.^0^^~4~^~FLA~^^^^^^^^^^~05/01/2012~
-~04114~^~435~^0.^0^^~4~^~NC~^^^^^^^^^^~04/01/2007~
-~04114~^~601~^0.^0^^~4~^~FLA~^^^^^^^^^^~05/01/2012~
-~04114~^~636~^71.^0^^~4~^~FLA~^^^^^^^^^^~05/01/2012~
-~04120~^~208~^419.^0^^~4~^~NC~^^^^^^^^^^~10/01/2016~
-~04120~^~262~^0.^0^^~4~^~FLA~^^^^^^^^^^~02/01/2003~
-~04120~^~263~^0.^0^^~4~^~FLA~^^^^^^^^^^~02/01/2003~
-~04120~^~268~^1753.^0^^~4~^~NC~^^^^^^^^^^~10/01/2016~
-~04120~^~301~^27.^17^4.^~1~^~A~^^^1^11.^55.^16^17.^36.^~2, 3~^~10/01/2016~
-~04120~^~304~^7.^17^0.^~1~^~A~^^^1^3.^9.^16^6.^7.^~2, 3~^~10/01/2016~
-~04120~^~305~^25.^17^3.^~1~^~A~^^^1^12.^48.^16^17.^32.^~2, 3~^~10/01/2016~
-~04120~^~306~^108.^17^12.^~1~^~A~^^^1^38.^176.^16^81.^133.^~2, 3~^~10/01/2016~
-~04120~^~307~^661.^17^35.^~1~^~A~^^^1^420.^935.^16^585.^737.^~2, 3~^~10/01/2016~
-~04120~^~318~^464.^0^^~4~^~NC~^^^^^^^^^^~12/01/2007~
-~04120~^~319~^0.^0^^~4~^~FLA~^^^^^^^^^^~02/01/2003~
-~04120~^~320~^23.^0^^~4~^~NC~^^^^^^^^^^~12/01/2007~
-~04120~^~321~^232.^5^38.^~1~^~A~^^^1^85.^287.^4^125.^338.^~2, 3~^~02/01/2003~
-~04120~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~
-~04120~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~
-~04120~^~334~^92.^5^19.^~1~^~A~^^^1^15.^118.^4^37.^146.^~2, 3~^~02/01/2003~
-~04120~^~337~^373.^5^297.^~1~^~A~^^^1^57.^1562.^4^-452.^1198.^~2, 3~^~02/01/2003~
-~04120~^~338~^0.^0^^~4~^~NR~^^^^^^^^^^~02/01/2003~
-~04120~^~417~^0.^1^^~1~^~A~^^^^^^^^^~1~^~02/01/2003~
-~04120~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~
-~04120~^~432~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2007~
-~04120~^~435~^0.^0^^~4~^~NC~^^^^^^^^^^~12/01/2007~
-~04120~^~601~^0.^0^^~4~^^^^^^^^^^^~02/01/1995~
-~04128~^~208~^349.^0^^~4~^~NC~^^^^^^^^^^~12/01/2016~
-~04128~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~11/01/2002~
-~04128~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~11/01/2002~
-~04128~^~268~^1459.^0^^~4~^~NC~^^^^^^^^^^~12/01/2016~
-~04128~^~301~^6.^5^0.^~1~^~A~^^^1^5.^6.^4^5.^5.^~2, 3~^~03/01/2007~
-~04128~^~304~^1.^5^0.^~1~^~A~^^^1^0.^1.^4^0.^0.^~1, 2, 3~^~03/01/2007~
-~04128~^~305~^7.^5^0.^~1~^~A~^^^1^7.^8.^4^6.^7.^~2, 3~^~12/01/2016~
-~04128~^~306~^51.^5^0.^~1~^~A~^^^1^48.^53.^4^48.^54.^~2, 3~^~12/01/2016~
-~04128~^~307~^584.^5^11.^~1~^~A~^^^1^557.^619.^4^552.^615.^~2, 3~^~12/01/2016~
-~04128~^~318~^5339.^0^^~4~^~NC~^^^^^^^^^^~12/01/2016~
-~04128~^~319~^1297.^3^94.^~1~^~A~^^^1^1110.^1410.^2^892.^1701.^~2, 3~^~03/01/2007~
-~04128~^~320~^1348.^0^^~4~^~NC~^^^^^^^^^^~04/01/2017~
-~04128~^~321~^610.^0^^~4~^~CAZN~^^^^^^^^^^~12/01/2016~
-~04128~^~322~^0.^0^^~4~^~CAZN~^^^^^^^^^^~11/01/2002~
-~04128~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2009~
-~04128~^~334~^0.^0^^~4~^~CAZN~^^^^^^^^^^~11/01/2002~
-~04128~^~337~^0.^0^^~4~^~CAZN~^^^^^^^^^^~11/01/2002~
-~04128~^~338~^0.^0^^~4~^~CAZN~^^^^^^^^^^~11/01/2002~
-~04128~^~417~^3.^1^^~1~^~A~^^^^^^^^^^~12/01/2016~
-~04128~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~
-~04128~^~432~^1.^0^^~4~^~NR~^^^^^^^^^^~03/01/2007~
-~04128~^~435~^1.^0^^~4~^~NC~^^^^^^^^^^~03/01/2009~
-~04128~^~601~^0.^0^^~4~^~NC~^^^^^^^^^^~04/01/2017~
-~04133~^~208~^631.^0^^~4~^~NC~^^^^^^^^^^~06/01/1979~
-~04133~^~268~^2640.^0^^~4~^^^^^^^^^^^~12/01/2003~
-~04133~^~301~^6.^0^^~1~^^^^^^^^^^^~06/01/1979~
-~04133~^~304~^0.^0^^~4~^^^^^^^^^^^~06/01/1979~
-~04133~^~305~^3.^0^^~1~^^^^^^^^^^^~06/01/1979~
-~04133~^~306~^24.^0^^~1~^^^^^^^^^^^~06/01/1979~
-~04133~^~307~^658.^0^^~1~^^^^^^^^^^^~06/01/1979~
-~04133~^~318~^514.^0^^~1~^^^^^^^^^^^~06/01/1979~
-~04133~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2002~
-~04133~^~320~^26.^0^^~1~^^^^^^^^^^^~03/01/2002~
-~04133~^~417~^0.^0^^~4~^^^^^^^^^^^~06/01/1979~
-~04133~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~
-~04133~^~432~^0.^0^^~4~^^^^^^^^^^^~06/01/1979~
-~04133~^~435~^0.^0^^~4~^~NC~^^^^^^^^^^~12/01/2003~
-~04133~^~601~^0.^0^^~4~^^^^^^^^^^^~06/01/1979~
-~04133~^~636~^176.^0^^~4~^^^^^^^^^^^~06/01/1979~
-~04135~^~208~^449.^0^^~4~^~NC~^^^^^^^^^^~06/01/1979~
-~04135~^~262~^0.^0^^~4~^~FLC~^^^^^^^^^^~03/01/2003~
-~04135~^~263~^0.^0^^~4~^~FLC~^^^^^^^^^^~03/01/2003~
-~04135~^~268~^1878.^0^^~4~^^^^^^^^^^^~12/01/2003~
-~04135~^~301~^0.^0^^~4~^^^^^^^^^^^~06/01/1979~
-~04135~^~304~^0.^0^^~4~^^^^^^^^^^^~06/01/1979~
-~04135~^~305~^0.^0^^~4~^^^^^^^^^^^~06/01/1979~
-~04135~^~306~^8.^0^^~1~^^^^^^^^^^^~06/01/1979~
-~04135~^~307~^1.^0^^~1~^^^^^^^^^^^~06/01/1979~
-~04135~^~318~^0.^0^^~4~^^^^^^^^^^^~06/01/1979~
-~04135~^~319~^0.^0^^~4~^~FLC~^^^^^^^^^^~03/01/2003~
-~04135~^~320~^0.^0^^~4~^~NC~^^^^^^^^^^~03/01/2003~
-~04135~^~321~^0.^0^^~4~^~FLC~^^^^^^^^^^~03/01/2003~
-~04135~^~322~^0.^0^^~4~^~FLC~^^^^^^^^^^~03/01/2003~
-~04135~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~
-~04135~^~334~^0.^0^^~4~^~FLC~^^^^^^^^^^~03/01/2003~
-~04135~^~337~^0.^0^^~4~^~FLC~^^^^^^^^^^~03/01/2003~
-~04135~^~338~^0.^0^^~4~^~FLC~^^^^^^^^^^~03/01/2003~
-~04135~^~417~^0.^0^^~4~^^^^^^^^^^^~06/01/1979~
-~04135~^~431~^0.^0^^~4~^~FLC~^^^^^^^^^^~03/01/2003~
-~04135~^~432~^0.^0^^~4~^~FLC~^^^^^^^^^^~03/01/2003~
-~04135~^~435~^0.^0^^~4~^~NC~^^^^^^^^^^~04/01/2007~
-~04135~^~601~^0.^0^^~4~^^^^^^^^^^^~06/01/1979~
-~04135~^~636~^66.^0^^~4~^^^^^^^^^^^~06/01/1979~
-~04141~^~208~^459.^0^^~4~^~NC~^^^^^^^^^^~02/01/2003~
-~04141~^~262~^0.^0^^~4~^~FLA~^^^^^^^^^^~02/01/2003~
-~04141~^~263~^0.^0^^~4~^~FLA~^^^^^^^^^^~02/01/2003~
-~04141~^~268~^1919.^0^^~4~^~NC~^^^^^^^^^^~02/01/2003~
-~04141~^~301~^24.^5^5.^~1~^~A~^^^1^8.^33.^4^8.^38.^~2, 3~^~02/01/2003~
-~04141~^~304~^5.^5^0.^~1~^~A~^^^1^5.^6.^4^4.^5.^~2, 3~^~02/01/2003~
-~04141~^~305~^19.^5^3.^~1~^~A~^^^1^9.^29.^4^8.^29.^~2, 3~^~02/01/2003~
-~04141~^~306~^67.^5^6.^~1~^~A~^^^1^43.^77.^4^49.^83.^~2, 3~^~02/01/2003~
-~04141~^~307~^0.^0^^~1~^^^^^^^^^^^~02/01/2003~
-~04141~^~318~^464.^0^^~4~^~NC~^^^^^^^^^^~02/01/2003~
-~04141~^~319~^0.^0^^~4~^~FLA~^^^^^^^^^^~02/01/2003~
-~04141~^~320~^23.^0^^~4~^~NC~^^^^^^^^^^~02/01/2003~
-~04141~^~321~^232.^5^38.^~1~^~A~^^^1^85.^287.^4^125.^338.^~2, 3~^~02/01/2003~
-~04141~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~
-~04141~^~334~^92.^5^19.^~1~^~A~^^^1^15.^118.^4^37.^146.^~2, 3~^~02/01/2003~
-~04141~^~337~^373.^5^297.^~1~^~A~^^^1^57.^1562.^4^-452.^1198.^~2, 3~^~02/01/2003~
-~04141~^~338~^0.^0^^~4~^~NR~^^^^^^^^^^~02/01/2003~
-~04141~^~417~^0.^1^^~1~^~A~^^^^^^^^^~1~^~02/01/2003~
-~04141~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~
-~04141~^~432~^0.^1^^~1~^~A~^^^^^^^^^^~02/01/2003~
-~04141~^~435~^0.^0^^~4~^~NC~^^^^^^^^^^~10/01/2004~
-~04141~^~601~^0.^0^^~1~^^^^^^^^^^^~06/01/1979~
-~04142~^~208~^233.^0^^~4~^~NC~^^^^^^^^^^~02/01/2003~
-~04142~^~262~^0.^0^^~4~^~FLA~^^^^^^^^^^~02/01/2003~
-~04142~^~263~^0.^0^^~4~^~FLA~^^^^^^^^^^~02/01/2003~
-~04142~^~268~^974.^0^^~4~^~NC~^^^^^^^^^^~02/01/2003~
-~04142~^~301~^11.^3^1.^~1~^~A~^^^1^8.^14.^2^3.^18.^~2, 3~^~02/01/2003~
-~04142~^~304~^8.^3^0.^~1~^~A~^^^1^8.^8.^2^7.^8.^~2, 3~^~02/01/2003~
-~04142~^~305~^16.^3^1.^~1~^~A~^^^1^13.^19.^2^8.^23.^~2, 3~^~02/01/2003~
-~04142~^~306~^107.^3^1.^~1~^~A~^^^1^105.^111.^2^98.^115.^~2, 3~^~02/01/2003~
-~04142~^~307~^30.^0^^~1~^^^^^^^^^^^~02/01/2003~
-~04142~^~318~^541.^0^^~4~^~NC~^^^^^^^^^^~02/01/2003~
-~04142~^~319~^0.^0^^~4~^~FLA~^^^^^^^^^^~02/01/2003~
-~04142~^~320~^27.^0^^~4~^~NC~^^^^^^^^^^~02/01/2003~
-~04142~^~321~^289.^3^20.^~1~^~A~^^^1^256.^326.^2^202.^376.^~2, 3~^~02/01/2003~
-~04142~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~
-~04142~^~334~^70.^3^2.^~1~^~A~^^^1^68.^75.^2^60.^80.^~2, 3~^~02/01/2003~
-~04142~^~337~^2530.^3^165.^~1~^~A~^^^1^2243.^2815.^2^1819.^3240.^~2, 3~^~02/01/2003~
-~04142~^~338~^124.^0^^~4~^~NR~^^^^^^^^^^~02/01/2003~
-~04142~^~417~^2.^0^^~4~^~NR~^^^^^^^^^^~02/01/2003~
-~04142~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~
-~04142~^~432~^2.^0^^~4~^~FLA~^^^^^^^^^^~02/01/2003~
-~04142~^~435~^2.^0^^~4~^~NC~^^^^^^^^^^~12/01/2003~
-~04142~^~601~^0.^0^^~1~^^^^^^^^^^^~06/01/1979~
-~04143~^~208~^292.^0^^~4~^~NC~^^^^^^^^^^~02/01/2003~
-~04143~^~262~^0.^0^^~4~^~FLA~^^^^^^^^^^~02/01/2003~
-~04143~^~263~^0.^0^^~4~^~FLA~^^^^^^^^^^~02/01/2003~
-~04143~^~268~^1222.^0^^~4~^~NC~^^^^^^^^^^~02/01/2003~
-~04143~^~301~^7.^6^1.^~1~^~A~^^^1^4.^13.^5^3.^10.^~2, 3~^~02/01/2003~
-~04143~^~304~^3.^6^0.^~1~^~A~^^^1^3.^4.^5^2.^3.^~2, 3~^~02/01/2003~
-~04143~^~305~^9.^6^0.^~1~^~A~^^^1^7.^12.^5^7.^11.^~2, 3~^~02/01/2003~
-~04143~^~306~^48.^6^3.^~1~^~A~^^^1^39.^61.^5^38.^57.^~2, 3~^~02/01/2003~
-~04143~^~307~^30.^0^^~1~^^^^^^^^^^^~02/01/2003~
-~04143~^~318~^36.^0^^~4~^~NC~^^^^^^^^^^~02/01/2003~
-~04143~^~319~^0.^0^^~4~^~FLA~^^^^^^^^^^~02/01/2003~
-~04143~^~320~^2.^0^^~4~^~NC~^^^^^^^^^^~02/01/2003~
-~04143~^~321~^21.^6^7.^~1~^~A~^^^1^0.^49.^5^0.^40.^~1, 2, 3~^~02/01/2003~
-~04143~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~
-~04143~^~334~^2.^6^1.^~1~^~A~^^^1^0.^11.^5^-2.^6.^~1, 2, 3~^~02/01/2003~
-~04143~^~337~^16.^6^10.^~1~^~A~^^^1^0.^52.^5^-10.^42.^~2, 3~^~02/01/2003~
-~04143~^~338~^0.^0^^~4~^~NR~^^^^^^^^^^~02/01/2003~
-~04143~^~417~^0.^2^^~1~^~A~^^^1^0.^0.^^^^~1~^~02/01/2003~
-~04143~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~
-~04143~^~432~^0.^2^^~1~^~A~^^^^^^^^^^~02/01/2003~
-~04143~^~435~^0.^0^^~4~^~NC~^^^^^^^^^^~12/01/2003~
-~04143~^~601~^67.^0^^~1~^^^^^^^^^^^~06/01/1979~
-~04144~^~208~^76.^0^^~4~^~NC~^^^^^^^^^^~02/01/2003~
-~04144~^~262~^0.^0^^~4~^~FLA~^^^^^^^^^^~02/01/2003~
-~04144~^~263~^0.^0^^~4~^~FLA~^^^^^^^^^^~02/01/2003~
-~04144~^~268~^317.^0^^~4~^~NC~^^^^^^^^^^~02/01/2003~
-~04144~^~301~^9.^3^0.^~1~^~A~^^^1^8.^9.^2^7.^9.^~2, 3~^~02/01/2003~
-~04144~^~304~^4.^3^0.^~1~^~A~^^^1^4.^4.^2^3.^4.^~2, 3~^~02/01/2003~
-~04144~^~305~^11.^3^0.^~1~^~A~^^^1^10.^11.^2^9.^12.^~2, 3~^~02/01/2003~
-~04144~^~306~^85.^3^7.^~1~^~A~^^^1^77.^99.^2^54.^115.^~2, 3~^~02/01/2003~
-~04144~^~307~^30.^0^^~1~^^^^^^^^^^^~02/01/2003~
-~04144~^~318~^12.^0^^~4~^~NC~^^^^^^^^^^~02/01/2003~
-~04144~^~319~^0.^0^^~4~^~FLA~^^^^^^^^^^~02/01/2003~
-~04144~^~320~^1.^0^^~4~^~NC~^^^^^^^^^^~02/01/2003~
-~04144~^~321~^7.^3^7.^~1~^~A~^^^1^0.^22.^2^-24.^38.^~1, 2, 3~^~02/01/2003~
-~04144~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~
-~04144~^~334~^0.^3^0.^~1~^~A~^^^1^0.^0.^^^^~1, 2, 3~^~02/01/2003~
-~04144~^~337~^0.^3^0.^~1~^~A~^^^1^0.^0.^^^^~2, 3~^~02/01/2003~
-~04144~^~338~^0.^0^^~4~^~NR~^^^^^^^^^^~02/01/2003~
-~04144~^~417~^0.^1^^~1~^~A~^^^^^^^^^~1~^~02/01/2003~
-~04144~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~
-~04144~^~432~^0.^1^^~1~^~A~^^^^^^^^^^~02/01/2003~
-~04144~^~435~^0.^0^^~4~^~NC~^^^^^^^^^^~12/01/2003~
-~04144~^~601~^6.^0^^~1~^^^^^^^^^^^~06/01/1979~
-~04145~^~208~^717.^0^^~4~^~NC~^^^^^^^^^^~06/01/1979~
-~04145~^~268~^2999.^0^^~4~^^^^^^^^^^^~12/01/2003~
-~04145~^~301~^18.^0^^~1~^^^^^^^^^^^~06/01/1979~
-~04145~^~305~^28.^0^^~1~^^^^^^^^^^^~06/01/1979~
-~04145~^~306~^34.^0^^~1~^^^^^^^^^^^~06/01/1979~
-~04145~^~307~^30.^0^^~1~^^^^^^^^^^^~06/01/1979~
-~04145~^~318~^280.^0^^~1~^^^^^^^^^^^~06/01/1979~
-~04145~^~319~^84.^0^^~4~^~NC~^^^^^^^^^^~03/01/2002~
-~04145~^~320~^84.^0^^~1~^^^^^^^^^^^~03/01/2002~
-~04145~^~601~^59.^0^^~1~^^^^^^^^^^^~06/01/1979~
-~04146~^~208~^631.^0^^~4~^~NC~^^^^^^^^^^~06/01/1979~
-~04146~^~268~^2640.^0^^~4~^^^^^^^^^^^~12/01/2003~
-~04146~^~301~^6.^0^^~1~^^^^^^^^^^^~06/01/1979~
-~04146~^~305~^3.^0^^~1~^^^^^^^^^^^~06/01/1979~
-~04146~^~306~^24.^0^^~1~^^^^^^^^^^^~06/01/1979~
-~04146~^~307~^658.^0^^~1~^^^^^^^^^^^~06/01/1979~
-~04146~^~318~^0.^0^^~1~^^^^^^^^^^^~06/01/1979~
-~04146~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~07/01/2002~
-~04146~^~320~^0.^0^^~7~^~Z~^^^^^^^^^^~07/01/2002~
-~04146~^~601~^0.^0^^~1~^^^^^^^^^^^~06/01/1979~
-~04367~^~208~^132.^0^^~4~^~NC~^^^^^^^^^^~03/01/2003~
-~04367~^~262~^0.^0^^~4~^~FLA~^^^^^^^^^^~03/01/2003~
-~04367~^~263~^0.^0^^~4~^~FLA~^^^^^^^^^^~03/01/2003~
-~04367~^~268~^551.^0^^~4~^~NC~^^^^^^^^^^~03/01/2003~
-~04367~^~301~^5.^3^0.^~1~^~A~^^^1^4.^6.^2^2.^6.^~2, 3~^~03/01/2003~
-~04367~^~304~^3.^3^0.^~1~^~A~^^^1^3.^3.^2^2.^3.^~2, 3~^~03/01/2003~
-~04367~^~305~^0.^3^0.^~1~^~A~^^^1^0.^1.^2^0.^0.^~2, 3~^~03/01/2003~
-~04367~^~306~^84.^3^4.^~1~^~A~^^^1^75.^89.^2^65.^101.^~2, 3~^~03/01/2003~
-~04367~^~307~^853.^0^^~4~^~O~^^^^^^^^^^~06/01/2010~
-~04367~^~318~^75.^0^^~1~^~AS~^^^^^^^^^^~03/01/2003~
-~04367~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2003~
-~04367~^~320~^4.^0^^~4~^~NC~^^^^^^^^^^~03/01/2003~
-~04367~^~321~^38.^3^4.^~1~^~A~^^^1^30.^44.^2^20.^55.^~2, 3~^~03/01/2003~
-~04367~^~322~^0.^0^^~4~^~FLA~^^^^^^^^^^~03/01/2003~
-~04367~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~
-~04367~^~334~^15.^2^^~1~^~A~^^^1^10.^19.^1^^^^~03/01/2003~
-~04367~^~337~^319.^3^12.^~1~^~A~^^^1^294.^336.^2^263.^374.^~2, 3~^~03/01/2003~
-~04367~^~338~^0.^0^^~4~^~FLA~^^^^^^^^^^~03/01/2003~
-~04367~^~417~^14.^1^^~1~^~A~^^^^^^^^^^~03/01/2003~
-~04367~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2003~
-~04367~^~432~^14.^1^^~1~^~A~^^^^^^^^^^~03/01/2003~
-~04367~^~435~^14.^0^^~4~^~NC~^^^^^^^^^^~04/01/2007~
-~04367~^~601~^0.^0^^~7~^^^^^^^^^^^~12/01/2003~
-~04501~^~208~^884.^0^^~4~^^^^^^^^^^^~06/01/1979~
-~04501~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~11/01/2002~
-~04501~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~11/01/2002~
-~04501~^~268~^3699.^0^^~4~^^^^^^^^^^^~12/01/2003~
-~04501~^~301~^0.^0^^~4~^^^^^^^^^^^~06/01/1979~
-~04501~^~304~^0.^0^^~4~^^^^^^^^^^^~06/01/1979~
-~04501~^~305~^0.^0^^~4~^^^^^^^^^^^~06/01/1979~
-~04501~^~306~^0.^0^^~4~^^^^^^^^^^^~06/01/1979~
-~04501~^~307~^0.^0^^~4~^^^^^^^^^^^~06/01/1979~
-~04501~^~318~^0.^0^^~1~^~AS~^^^^^^^^^^~11/01/2002~
-~04501~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2002~
-~04501~^~320~^0.^0^^~4~^~NC~^^^^^^^^^^~11/01/2002~
-~04501~^~321~^0.^0^^~7~^~Z~^^^^^^^^^^~11/01/2002~
-~04501~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~11/01/2002~
-~04501~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~11/01/2002~
-~04501~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~11/01/2002~
-~04501~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~11/01/2002~
-~04501~^~417~^0.^0^^~7~^~Z~^^^^^^^^^^~11/01/2002~
-~04501~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~
-~04501~^~432~^0.^0^^~7~^~Z~^^^^^^^^^^~11/01/2002~
-~04501~^~435~^0.^0^^~4~^~NC~^^^^^^^^^^~07/01/2009~
-~04501~^~601~^0.^0^^~7~^^^^^^^^^^^~06/01/1979~
-~04501~^~636~^201.^0^^~1~^^^^^^^^^^^~06/01/1979~
-~04502~^~208~^884.^0^^~4~^~NC~^^^^^^^^^^~06/01/1979~
-~04502~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~11/01/2002~
-~04502~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~11/01/2002~
-~04502~^~268~^3699.^0^^~4~^^^^^^^^^^^~12/01/2003~
-~04502~^~301~^0.^0^^~4~^^^^^^^^^^^~06/01/1979~
-~04502~^~304~^0.^0^^~4~^^^^^^^^^^^~06/01/1979~
-~04502~^~305~^0.^0^^~4~^^^^^^^^^^^~06/01/1979~
-~04502~^~306~^0.^0^^~4~^^^^^^^^^^^~06/01/1979~
-~04502~^~307~^0.^0^^~4~^^^^^^^^^^^~06/01/1979~
-~04502~^~318~^0.^0^^~1~^~AS~^^^^^^^^^^~11/01/2002~
-~04502~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2002~
-~04502~^~320~^0.^0^^~4~^~NC~^^^^^^^^^^~11/01/2002~
-~04502~^~321~^0.^0^^~7~^~Z~^^^^^^^^^^~11/01/2002~
-~04502~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~11/01/2002~
-~04502~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~
-~04502~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~11/01/2002~
-~04502~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~11/01/2002~
-~04502~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~11/01/2002~
-~04502~^~417~^0.^0^^~7~^~Z~^^^^^^^^^^~11/01/2002~
-~04502~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~
-~04502~^~432~^0.^0^^~7~^~Z~^^^^^^^^^^~11/01/2002~
-~04502~^~435~^0.^0^^~4~^~NC~^^^^^^^^^^~07/01/2009~
-~04502~^~601~^0.^0^^~4~^^^^^^^^^^^~06/01/1979~
-~04502~^~636~^324.^9^14.^~1~^^^^^^^^^^^~06/01/1979~
-~04506~^~208~^884.^0^^~4~^~NC~^^^^^^^^^^~06/01/1979~
-~04506~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~11/01/2002~
-~04506~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~11/01/2002~
-~04506~^~268~^3699.^0^^~4~^^^^^^^^^^^~03/01/2004~
-~04506~^~301~^0.^0^^~4~^^^^^^^^^^^~06/01/1979~
-~04506~^~304~^0.^0^^~4~^^^^^^^^^^^~06/01/1979~
-~04506~^~305~^0.^0^^~4~^^^^^^^^^^^~06/01/1979~
-~04506~^~306~^0.^0^^~4~^^^^^^^^^^^~06/01/1979~
-~04506~^~307~^0.^0^^~4~^^^^^^^^^^^~06/01/1979~
-~04506~^~318~^0.^0^^~4~^^^^^^^^^^^~06/01/1979~
-~04506~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2002~
-~04506~^~320~^0.^0^^~4~^~NC~^^^^^^^^^^~01/01/2003~
-~04506~^~321~^0.^0^^~7~^~Z~^^^^^^^^^^~11/01/2002~
-~04506~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~11/01/2002~
-~04506~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~
-~04506~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~11/01/2002~
-~04506~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~11/01/2002~
-~04506~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~11/01/2002~
-~04506~^~417~^0.^0^^~7~^~Z~^^^^^^^^^^~11/01/2002~
-~04506~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~
-~04506~^~432~^0.^0^^~7~^~Z~^^^^^^^^^^~11/01/2002~
-~04506~^~435~^0.^0^^~4~^~NC~^^^^^^^^^^~07/01/2009~
-~04506~^~601~^0.^0^^~4~^^^^^^^^^^^~06/01/1979~
-~04506~^~636~^100.^0^^~4~^^^^^^^^^^^~06/01/1979~
-~04510~^~208~^884.^0^^~4~^~NC~^^^^^^^^^^~06/01/1979~
-~04510~^~262~^0.^0^^~4~^~BFZN~^^^^^^^^^^~12/01/2002~
-~04510~^~263~^0.^0^^~4~^~BFZN~^^^^^^^^^^~12/01/2002~
-~04510~^~268~^3699.^0^^~4~^^^^^^^^^^^~12/01/2003~
-~04510~^~301~^0.^0^^~4~^^^^^^^^^^^~06/01/1979~
-~04510~^~304~^0.^0^^~4~^^^^^^^^^^^~06/01/1979~
-~04510~^~305~^0.^0^^~4~^^^^^^^^^^^~06/01/1979~
-~04510~^~306~^0.^0^^~4~^^^^^^^^^^^~06/01/1979~
-~04510~^~307~^0.^0^^~4~^^^^^^^^^^^~06/01/1979~
-~04510~^~318~^0.^0^^~4~^^^^^^^^^^^~06/01/1979~
-~04510~^~319~^0.^0^^~4~^~BFZN~^^^^^^^^^^~12/01/2002~
-~04510~^~320~^0.^0^^~4~^~NC~^^^^^^^^^^~12/01/2002~
-~04510~^~321~^0.^0^^~4~^~BFZN~^^^^^^^^^^~12/01/2002~
-~04510~^~322~^0.^0^^~4~^~BFZN~^^^^^^^^^^~12/01/2002~
-~04510~^~334~^0.^0^^~4~^~BFZN~^^^^^^^^^^~12/01/2002~
-~04510~^~337~^0.^0^^~4~^~BFZN~^^^^^^^^^^~12/01/2002~
-~04510~^~338~^0.^0^^~4~^~BFZN~^^^^^^^^^^~12/01/2002~
-~04510~^~417~^0.^0^^~4~^^^^^^^^^^^~06/01/1979~
-~04510~^~431~^0.^0^^~4~^~BFZN~^^^^^^^^^^~12/01/2002~
-~04510~^~432~^0.^0^^~7~^~Z~^^^^^^^^^^~12/01/2002~
-~04510~^~435~^0.^0^^~4~^~NC~^^^^^^^^^^~07/01/2009~
-~04510~^~601~^0.^0^^~4~^^^^^^^^^^^~06/01/1979~
-~04510~^~636~^444.^0^^~1~^^^^^^^^^^^~06/01/1979~
-~04511~^~208~^884.^0^^~4~^~NC~^^^^^^^^^^~06/01/1979~
-~04511~^~262~^0.^0^^~4~^~BFZN~^~04510~^^^^^^^^^~12/01/2002~
-~04511~^~263~^0.^0^^~4~^~BFZN~^~04510~^^^^^^^^^~12/01/2002~
-~04511~^~268~^3699.^0^^~4~^^^^^^^^^^^~12/01/2003~
-~04511~^~301~^0.^0^^~4~^^^^^^^^^^^~06/01/1979~
-~04511~^~304~^0.^0^^~4~^^^^^^^^^^^~06/01/1979~
-~04511~^~305~^0.^0^^~4~^^^^^^^^^^^~06/01/1979~
-~04511~^~306~^0.^0^^~4~^^^^^^^^^^^~06/01/1979~
-~04511~^~307~^0.^0^^~4~^^^^^^^^^^^~06/01/1979~
-~04511~^~318~^0.^0^^~4~^^^^^^^^^^^~06/01/1979~
-~04511~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2002~
-~04511~^~320~^0.^0^^~4~^~NC~^^^^^^^^^^~06/01/2010~
-~04511~^~321~^0.^0^^~4~^~BFZN~^~04510~^^^^^^^^^~12/01/2002~
-~04511~^~322~^0.^0^^~4~^~BFZN~^~04510~^^^^^^^^^~12/01/2002~
-~04511~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~
-~04511~^~334~^0.^0^^~4~^~BFZN~^~04510~^^^^^^^^^~12/01/2002~
-~04511~^~337~^0.^0^^~4~^~BFZN~^~04510~^^^^^^^^^~12/01/2002~
-~04511~^~338~^0.^0^^~4~^~BFZN~^~04510~^^^^^^^^^~12/01/2002~
-~04511~^~417~^0.^0^^~4~^^^^^^^^^^^~06/01/1979~
-~04511~^~431~^0.^0^^~4~^~BFZN~^~04510~^^^^^^^^^~12/01/2002~
-~04511~^~432~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2010~
-~04511~^~435~^0.^0^^~4~^~NC~^~04510~^^^^^^^^^~06/01/2010~
-~04511~^~601~^0.^0^^~4~^^^^^^^^^^^~06/01/1979~
-~04511~^~636~^444.^0^^~4~^^^^^^^^^^^~06/01/1979~
-~04513~^~208~^862.^0^^~4~^~NC~^^^^^^^^^^~06/01/1979~
-~04513~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~11/01/2002~
-~04513~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~11/01/2002~
-~04513~^~268~^3607.^0^^~4~^^^^^^^^^^^~12/01/2003~
-~04513~^~301~^0.^1^^~1~^^^^^^^^^^^~06/01/1979~
-~04513~^~304~^0.^1^^~1~^^^^^^^^^^^~06/01/1979~
-~04513~^~305~^0.^1^^~1~^^^^^^^^^^^~06/01/1979~
-~04513~^~306~^0.^1^^~1~^^^^^^^^^^^~06/01/1979~
-~04513~^~307~^0.^1^^~1~^^^^^^^^^^^~06/01/1979~
-~04513~^~318~^0.^0^^~1~^~AS~^^^^^^^^^^~11/01/2002~
-~04513~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2002~
-~04513~^~320~^0.^0^^~4~^~NC~^^^^^^^^^^~11/01/2002~
-~04513~^~321~^0.^0^^~7~^~Z~^^^^^^^^^^~11/01/2002~
-~04513~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~11/01/2002~
-~04513~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~
-~04513~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~11/01/2002~
-~04513~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~11/01/2002~
-~04513~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~11/01/2002~
-~04513~^~417~^0.^0^^~7~^~Z~^^^^^^^^^^~11/01/2002~
-~04513~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~
-~04513~^~432~^0.^0^^~7~^~Z~^^^^^^^^^^~11/01/2002~
-~04513~^~435~^0.^0^^~4~^~NC~^^^^^^^^^^~12/01/2006~
-~04513~^~601~^0.^1^^~1~^^^^^^^^^^^~06/01/1979~
-~04513~^~636~^95.^14^0.^~1~^^^^^^^^^^^~06/01/1979~
-~04514~^~208~^884.^0^^~4~^~NC~^^^^^^^^^^~06/01/1979~
-~04514~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~11/01/2002~
-~04514~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~11/01/2002~
-~04514~^~268~^3699.^0^^~4~^^^^^^^^^^^~12/01/2003~
-~04514~^~301~^0.^0^^~4~^^^^^^^^^^^~06/01/1979~
-~04514~^~304~^0.^0^^~4~^^^^^^^^^^^~06/01/1979~
-~04514~^~305~^0.^0^^~4~^^^^^^^^^^^~06/01/1979~
-~04514~^~306~^0.^0^^~4~^^^^^^^^^^^~06/01/1979~
-~04514~^~307~^0.^0^^~4~^^^^^^^^^^^~06/01/1979~
-~04514~^~318~^0.^0^^~1~^~AS~^^^^^^^^^^~11/01/2002~
-~04514~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2002~
-~04514~^~320~^0.^0^^~4~^~NC~^^^^^^^^^^~11/01/2002~
-~04514~^~321~^0.^0^^~7~^~Z~^^^^^^^^^^~11/01/2002~
-~04514~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~11/01/2002~
-~04514~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~11/01/2002~
-~04514~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~11/01/2002~
-~04514~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~11/01/2002~
-~04514~^~417~^0.^0^^~7~^~Z~^^^^^^^^^^~11/01/2002~
-~04514~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~
-~04514~^~432~^0.^0^^~7~^~Z~^^^^^^^^^^~11/01/2002~
-~04514~^~435~^0.^0^^~4~^~NC~^^^^^^^^^^~07/01/2009~
-~04514~^~601~^0.^0^^~4~^^^^^^^^^^^~06/01/1979~
-~04514~^~636~^276.^0^^~4~^^^^^^^^^^^~06/01/1979~
-~04515~^~208~^884.^0^^~4~^~NC~^^^^^^^^^^~06/01/1979~
-~04515~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~11/01/2002~
-~04515~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~11/01/2002~
-~04515~^~268~^3699.^0^^~4~^^^^^^^^^^^~12/01/2003~
-~04515~^~301~^0.^0^^~4~^^^^^^^^^^^~06/01/1979~
-~04515~^~304~^0.^0^^~4~^^^^^^^^^^^~06/01/1979~
-~04515~^~305~^0.^0^^~4~^^^^^^^^^^^~06/01/1979~
-~04515~^~306~^0.^0^^~4~^^^^^^^^^^^~06/01/1979~
-~04515~^~307~^0.^0^^~4~^^^^^^^^^^^~06/01/1979~
-~04515~^~318~^0.^0^^~1~^~AS~^^^^^^^^^^~11/01/2002~
-~04515~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2002~
-~04515~^~320~^0.^0^^~4~^~NC~^^^^^^^^^^~11/01/2002~
-~04515~^~321~^0.^0^^~7~^~Z~^^^^^^^^^^~11/01/2002~
-~04515~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~11/01/2002~
-~04515~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~11/01/2002~
-~04515~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~11/01/2002~
-~04515~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~11/01/2002~
-~04515~^~417~^0.^0^^~7~^~Z~^^^^^^^^^^~11/01/2002~
-~04515~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~
-~04515~^~432~^0.^0^^~7~^~Z~^^^^^^^^^^~11/01/2002~
-~04515~^~435~^0.^0^^~4~^~NC~^^^^^^^^^^~07/01/2009~
-~04515~^~601~^0.^0^^~4~^^^^^^^^^^^~06/01/1979~
-~04515~^~636~^100.^0^^~4~^^^^^^^^^^^~06/01/1979~
-~04516~^~208~^884.^0^^~4~^~NC~^^^^^^^^^^~06/01/1979~
-~04516~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~11/01/2002~
-~04516~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~11/01/2002~
-~04516~^~268~^3699.^0^^~4~^^^^^^^^^^^~12/01/2003~
-~04516~^~301~^0.^0^^~4~^^^^^^^^^^^~06/01/1979~
-~04516~^~304~^0.^0^^~4~^^^^^^^^^^^~06/01/1979~
-~04516~^~305~^0.^0^^~4~^^^^^^^^^^^~06/01/1979~
-~04516~^~306~^0.^0^^~4~^^^^^^^^^^^~06/01/1979~
-~04516~^~307~^0.^0^^~4~^^^^^^^^^^^~06/01/1979~
-~04516~^~318~^0.^0^^~1~^~AS~^^^^^^^^^^~11/01/2002~
-~04516~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2002~
-~04516~^~320~^0.^0^^~4~^~NC~^^^^^^^^^^~11/01/2002~
-~04516~^~321~^0.^0^^~7~^~Z~^^^^^^^^^^~11/01/2002~
-~04516~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~11/01/2002~
-~04516~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~11/01/2002~
-~04516~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~11/01/2002~
-~04516~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~11/01/2002~
-~04516~^~417~^0.^0^^~7~^~Z~^^^^^^^^^^~11/01/2002~
-~04516~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~
-~04516~^~432~^0.^0^^~7~^~Z~^^^^^^^^^^~11/01/2002~
-~04516~^~435~^0.^0^^~4~^~NC~^^^^^^^^^^~07/01/2009~
-~04516~^~601~^0.^0^^~4~^^^^^^^^^^^~06/01/1979~
-~04516~^~636~^102.^0^^~4~^^^^^^^^^^^~06/01/1979~
-~04517~^~208~^884.^0^^~4~^~NC~^^^^^^^^^^~06/01/1979~
-~04517~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~11/01/2002~
-~04517~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~11/01/2002~
-~04517~^~268~^3699.^0^^~4~^^^^^^^^^^^~12/01/2003~
-~04517~^~301~^0.^0^^~4~^^^^^^^^^^^~06/01/1979~
-~04517~^~304~^0.^0^^~4~^^^^^^^^^^^~06/01/1979~
-~04517~^~305~^0.^0^^~4~^^^^^^^^^^^~06/01/1979~
-~04517~^~306~^0.^0^^~4~^^^^^^^^^^^~06/01/1979~
-~04517~^~307~^0.^0^^~4~^^^^^^^^^^^~06/01/1979~
-~04517~^~318~^0.^0^^~1~^~AS~^^^^^^^^^^~11/01/2002~
-~04517~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2002~
-~04517~^~320~^0.^0^^~4~^~NC~^^^^^^^^^^~11/01/2002~
-~04517~^~321~^0.^0^^~7~^~Z~^^^^^^^^^^~11/01/2002~
-~04517~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~11/01/2002~
-~04517~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~11/01/2002~
-~04517~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~11/01/2002~
-~04517~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~11/01/2002~
-~04517~^~417~^0.^0^^~7~^~Z~^^^^^^^^^^~11/01/2002~
-~04517~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~
-~04517~^~432~^0.^0^^~7~^~Z~^^^^^^^^^^~11/01/2002~
-~04517~^~435~^0.^0^^~4~^~NC~^^^^^^^^^^~07/01/2009~
-~04517~^~601~^0.^0^^~4~^^^^^^^^^^^~06/01/1979~
-~04517~^~636~^180.^0^^~4~^^^^^^^^^^^~06/01/1979~
-~04518~^~208~^900.^0^^~4~^~NC~^^^^^^^^^^~08/01/2012~
-~04518~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~11/01/2002~
-~04518~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~11/01/2002~
-~04518~^~268~^3766.^0^^~4~^~NC~^^^^^^^^^^~08/01/2012~
-~04518~^~301~^0.^0^^~4~^^^^^^^^^^^~06/01/1979~
-~04518~^~304~^0.^0^^~4~^^^^^^^^^^^~06/01/1979~
-~04518~^~305~^0.^0^^~4~^^^^^^^^^^^~06/01/1979~
-~04518~^~306~^0.^0^^~4~^^^^^^^^^^^~06/01/1979~
-~04518~^~307~^0.^0^^~4~^^^^^^^^^^^~06/01/1979~
-~04518~^~318~^0.^0^^~4~^^^^^^^^^^^~04/01/2004~
-~04518~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2002~
-~04518~^~320~^0.^0^^~1~^~AS~^^^^^^^^^^~04/01/2004~
-~04518~^~321~^0.^0^^~7~^~Z~^^^^^^^^^^~11/01/2002~
-~04518~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~11/01/2002~
-~04518~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~
-~04518~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~11/01/2002~
-~04518~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~11/01/2002~
-~04518~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~11/01/2002~
-~04518~^~417~^0.^0^^~4~^^^^^^^^^^^~04/01/2004~
-~04518~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~
-~04518~^~432~^0.^0^^~7~^~Z~^^^^^^^^^^~11/01/2002~
-~04518~^~435~^0.^0^^~4~^~NC~^^^^^^^^^^~07/01/2009~
-~04518~^~601~^0.^0^^~4~^^^^^^^^^^^~06/01/1979~
-~04518~^~638~^56.^4^^~1~^~A~^^^1^42.^68.^^^^~2~^~08/01/2012~
-~04518~^~639~^189.^4^^~1~^~A~^^^1^172.^197.^^^^~2~^~08/01/2012~
-~04518~^~641~^621.^4^^~1~^~A~^^^1^557.^647.^^^^~2~^~08/01/2012~
-~04528~^~208~^884.^0^^~4~^~NC~^^^^^^^^^^~04/01/2007~
-~04528~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~11/01/2002~
-~04528~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~11/01/2002~
-~04528~^~268~^3699.^0^^~4~^^^^^^^^^^^~04/01/2007~
-~04528~^~301~^0.^0^^~4~^^^^^^^^^^^~06/01/1979~
-~04528~^~304~^0.^0^^~4~^^^^^^^^^^^~06/01/1979~
-~04528~^~305~^0.^0^^~4~^^^^^^^^^^^~06/01/1979~
-~04528~^~306~^0.^0^^~4~^^^^^^^^^^^~06/01/1979~
-~04528~^~307~^0.^0^^~4~^^^^^^^^^^^~06/01/1979~
-~04528~^~318~^0.^0^^~1~^~AS~^^^^^^^^^^~11/01/2002~
-~04528~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2002~
-~04528~^~320~^0.^0^^~4~^~NC~^^^^^^^^^^~11/01/2002~
-~04528~^~321~^0.^0^^~7~^~Z~^^^^^^^^^^~11/01/2002~
-~04528~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~11/01/2002~
-~04528~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~
-~04528~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~11/01/2002~
-~04528~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~11/01/2002~
-~04528~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~11/01/2002~
-~04528~^~417~^0.^0^^~7~^~Z~^^^^^^^^^^~11/01/2002~
-~04528~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~
-~04528~^~432~^0.^0^^~7~^~Z~^^^^^^^^^^~11/01/2002~
-~04528~^~435~^0.^0^^~4~^~NC~^^^^^^^^^^~07/01/2009~
-~04528~^~601~^0.^0^^~4~^^^^^^^^^^^~06/01/1979~
-~04528~^~636~^176.^0^^~1~^^^^^^^^^^^~06/01/1979~
-~04529~^~208~^884.^0^^~4~^~NC~^^^^^^^^^^~06/01/1979~
-~04529~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~11/01/2002~
-~04529~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~11/01/2002~
-~04529~^~268~^3699.^0^^~4~^^^^^^^^^^^~12/01/2003~
-~04529~^~301~^0.^0^^~4~^^^^^^^^^^^~06/01/1979~
-~04529~^~304~^0.^0^^~4~^^^^^^^^^^^~06/01/1979~
-~04529~^~305~^0.^0^^~4~^^^^^^^^^^^~06/01/1979~
-~04529~^~306~^0.^0^^~4~^^^^^^^^^^^~06/01/1979~
-~04529~^~307~^0.^0^^~4~^^^^^^^^^^^~06/01/1979~
-~04529~^~318~^0.^0^^~1~^~AS~^^^^^^^^^^~11/01/2002~
-~04529~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2002~
-~04529~^~320~^0.^0^^~4~^~NC~^^^^^^^^^^~11/01/2002~
-~04529~^~321~^0.^0^^~7~^~Z~^^^^^^^^^^~11/01/2002~
-~04529~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~11/01/2002~
-~04529~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~
-~04529~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~11/01/2002~
-~04529~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~11/01/2002~
-~04529~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~11/01/2002~
-~04529~^~417~^0.^0^^~7~^~Z~^^^^^^^^^^~11/01/2002~
-~04529~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~
-~04529~^~432~^0.^0^^~7~^~Z~^^^^^^^^^^~11/01/2002~
-~04529~^~435~^0.^0^^~4~^~NC~^^^^^^^^^^~07/01/2009~
-~04529~^~601~^0.^0^^~4~^^^^^^^^^^^~06/01/1979~
-~04529~^~636~^266.^0^^~4~^^^^^^^^^^^~06/01/1979~
-~04530~^~208~^884.^0^^~4~^~NC~^^^^^^^^^^~06/01/1979~
-~04530~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~11/01/2002~
-~04530~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~11/01/2002~
-~04530~^~268~^3699.^0^^~4~^^^^^^^^^^^~12/01/2003~
-~04530~^~301~^0.^0^^~4~^^^^^^^^^^^~06/01/1979~
-~04530~^~304~^0.^0^^~4~^^^^^^^^^^^~06/01/1979~
-~04530~^~305~^0.^0^^~4~^^^^^^^^^^^~06/01/1979~
-~04530~^~306~^0.^0^^~4~^^^^^^^^^^^~06/01/1979~
-~04530~^~307~^0.^0^^~4~^^^^^^^^^^^~06/01/1979~
-~04530~^~318~^0.^0^^~1~^~AS~^^^^^^^^^^~11/01/2002~
-~04530~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2002~
-~04530~^~320~^0.^0^^~4~^~NC~^^^^^^^^^^~11/01/2002~
-~04530~^~321~^0.^0^^~7~^~Z~^^^^^^^^^^~11/01/2002~
-~04530~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~11/01/2002~
-~04530~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~11/01/2002~
-~04530~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~11/01/2002~
-~04530~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~11/01/2002~
-~04530~^~417~^0.^0^^~7~^~Z~^^^^^^^^^^~11/01/2002~
-~04530~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~
-~04530~^~432~^0.^0^^~7~^~Z~^^^^^^^^^^~11/01/2002~
-~04530~^~435~^0.^0^^~4~^~NC~^^^^^^^^^^~07/01/2009~
-~04530~^~601~^0.^0^^~4~^^^^^^^^^^^~06/01/1979~
-~04530~^~636~^266.^0^^~4~^^^^^^^^^^^~06/01/1979~
-~04531~^~208~^763.^0^^~4~^~NC~^^^^^^^^^^~06/01/1979~
-~04531~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~11/01/2002~
-~04531~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~11/01/2002~
-~04531~^~268~^3192.^0^^~4~^^^^^^^^^^^~12/01/2003~
-~04531~^~301~^0.^1^^~1~^^^^^^^^^^^~06/01/1979~
-~04531~^~304~^0.^1^^~1~^^^^^^^^^^^~06/01/1979~
-~04531~^~305~^0.^1^^~1~^^^^^^^^^^^~06/01/1979~
-~04531~^~306~^0.^1^^~1~^^^^^^^^^^^~06/01/1979~
-~04531~^~307~^0.^1^^~1~^^^^^^^^^^^~06/01/1979~
-~04531~^~318~^0.^0^^~4~^~NC~^^^^^^^^^^~11/01/2002~
-~04531~^~319~^0.^0^^~4~^~BFZN~^~04044~^^^^^^^^^~11/01/2002~
-~04531~^~320~^0.^0^^~4~^~NC~^^^^^^^^^^~11/01/2002~
-~04531~^~321~^0.^0^^~4~^~BFZN~^~04044~^^^^^^^^^~11/01/2002~
-~04531~^~322~^0.^0^^~4~^~BFZN~^~04044~^^^^^^^^^~11/01/2002~
-~04531~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~
-~04531~^~334~^0.^0^^~4~^~BFZN~^~04044~^^^^^^^^^~11/01/2002~
-~04531~^~337~^0.^0^^~4~^~BFZN~^~04044~^^^^^^^^^~11/01/2002~
-~04531~^~338~^0.^0^^~4~^~BFZN~^~04044~^^^^^^^^^~11/01/2002~
-~04531~^~417~^0.^1^^~1~^^^^^^^^^^^~06/01/1979~
-~04531~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~
-~04531~^~432~^0.^1^^~1~^^^^^^^^^^^~11/01/2002~
-~04531~^~435~^0.^0^^~4~^~NC~^^^^^^^^^^~07/01/2009~
-~04531~^~601~^0.^1^^~1~^^^^^^^^^^^~06/01/1979~
-~04532~^~208~^884.^0^^~4~^~NC~^^^^^^^^^^~06/01/1979~
-~04532~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~11/01/2002~
-~04532~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~11/01/2002~
-~04532~^~268~^3699.^0^^~4~^^^^^^^^^^^~12/01/2003~
-~04532~^~301~^0.^0^^~4~^^^^^^^^^^^~06/01/1979~
-~04532~^~304~^0.^0^^~4~^^^^^^^^^^^~06/01/1979~
-~04532~^~305~^0.^0^^~4~^^^^^^^^^^^~06/01/1979~
-~04532~^~306~^0.^0^^~4~^^^^^^^^^^^~06/01/1979~
-~04532~^~307~^0.^0^^~4~^^^^^^^^^^^~06/01/1979~
-~04532~^~318~^0.^0^^~1~^~AS~^^^^^^^^^^~11/01/2002~
-~04532~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2002~
-~04532~^~320~^0.^0^^~4~^~NC~^^^^^^^^^^~11/01/2002~
-~04532~^~321~^0.^0^^~7~^~Z~^^^^^^^^^^~11/01/2002~
-~04532~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~11/01/2002~
-~04532~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~11/01/2002~
-~04532~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~11/01/2002~
-~04532~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~11/01/2002~
-~04532~^~417~^0.^0^^~7~^~Z~^^^^^^^^^^~11/01/2002~
-~04532~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~
-~04532~^~432~^0.^0^^~7~^~Z~^^^^^^^^^^~11/01/2002~
-~04532~^~435~^0.^0^^~4~^~NC~^^^^^^^^^^~07/01/2009~
-~04532~^~601~^0.^0^^~4~^^^^^^^^^^^~06/01/1979~
-~04532~^~636~^120.^0^^~4~^^^^^^^^^^^~06/01/1979~
-~04534~^~208~^884.^0^^~4~^~NC~^^^^^^^^^^~06/01/1979~
-~04534~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~11/01/2002~
-~04534~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~11/01/2002~
-~04534~^~268~^3699.^0^^~4~^^^^^^^^^^^~07/01/2009~
-~04534~^~301~^0.^0^^~4~^^^^^^^^^^^~06/01/1979~
-~04534~^~304~^0.^0^^~4~^^^^^^^^^^^~06/01/1979~
-~04534~^~305~^0.^0^^~4~^^^^^^^^^^^~06/01/1979~
-~04534~^~306~^0.^0^^~4~^^^^^^^^^^^~06/01/1979~
-~04534~^~307~^0.^0^^~4~^^^^^^^^^^^~06/01/1979~
-~04534~^~318~^0.^0^^~1~^~AS~^^^^^^^^^^~11/01/2002~
-~04534~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2002~
-~04534~^~320~^0.^0^^~4~^~NC~^^^^^^^^^^~11/01/2002~
-~04534~^~321~^0.^0^^~7~^~Z~^^^^^^^^^^~11/01/2002~
-~04534~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~11/01/2002~
-~04534~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~11/01/2002~
-~04534~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~11/01/2002~
-~04534~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~11/01/2002~
-~04534~^~417~^0.^0^^~7~^~Z~^^^^^^^^^^~11/01/2002~
-~04534~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~
-~04534~^~432~^0.^0^^~7~^~Z~^^^^^^^^^^~11/01/2002~
-~04534~^~435~^0.^0^^~4~^~NC~^^^^^^^^^^~07/01/2009~
-~04534~^~601~^0.^0^^~4~^^^^^^^^^^^~06/01/1979~
-~04534~^~636~^95.^0^^~4~^^^^^^^^^^^~06/01/1979~
-~04536~^~208~^884.^0^^~4~^~NC~^^^^^^^^^^~06/01/1979~
-~04536~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~11/01/2002~
-~04536~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~11/01/2002~
-~04536~^~268~^3699.^0^^~4~^^^^^^^^^^^~12/01/2003~
-~04536~^~301~^0.^0^^~4~^^^^^^^^^^^~06/01/1979~
-~04536~^~304~^0.^0^^~4~^^^^^^^^^^^~06/01/1979~
-~04536~^~305~^0.^0^^~4~^^^^^^^^^^^~06/01/1979~
-~04536~^~306~^0.^0^^~4~^^^^^^^^^^^~06/01/1979~
-~04536~^~307~^0.^0^^~4~^^^^^^^^^^^~06/01/1979~
-~04536~^~318~^0.^0^^~1~^~AS~^^^^^^^^^^~11/01/2002~
-~04536~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2002~
-~04536~^~320~^0.^0^^~4~^~NC~^^^^^^^^^^~11/01/2002~
-~04536~^~321~^0.^0^^~7~^~Z~^^^^^^^^^^~11/01/2002~
-~04536~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~11/01/2002~
-~04536~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~11/01/2002~
-~04536~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~11/01/2002~
-~04536~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~11/01/2002~
-~04536~^~417~^0.^0^^~7~^~Z~^^^^^^^^^^~11/01/2002~
-~04536~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~
-~04536~^~432~^0.^0^^~7~^~Z~^^^^^^^^^^~11/01/2002~
-~04536~^~435~^0.^0^^~4~^~NC~^^^^^^^^^^~07/01/2009~
-~04536~^~601~^0.^0^^~4~^^^^^^^^^^^~06/01/1979~
-~04536~^~636~^357.^0^^~4~^^^^^^^^^^^~06/01/1979~
-~04539~^~208~^484.^0^^~4~^~NC~^^^^^^^^^^~06/01/2013~
-~04539~^~262~^0.^0^^~4~^~FLM~^^^^^^^^^^~12/01/2007~
-~04539~^~263~^0.^0^^~4~^~FLM~^^^^^^^^^^~12/01/2007~
-~04539~^~268~^2027.^0^^~4~^~NC~^^^^^^^^^^~06/01/2013~
-~04539~^~301~^37.^2^^~9~^~MC~^^^1^29.^45.^1^^^^~12/01/2007~
-~04539~^~304~^8.^0^^~4~^~FLM~^^^^^^^^^^~12/01/2007~
-~04539~^~305~^74.^0^^~1~^^^^^^^^^^^~06/01/1979~
-~04539~^~306~^88.^0^^~4~^~FLM~^^^^^^^^^^~12/01/2007~
-~04539~^~307~^642.^0^^~4~^~O~^^^^^^^^^^~06/01/2013~
-~04539~^~318~^73.^2^^~9~^~MC~^^^1^69.^78.^1^^^^~12/01/2007~
-~04539~^~319~^14.^0^^~4~^~FLM~^^^^^^^^^^~06/01/2013~
-~04539~^~320~^14.^0^^~4~^~FLM~^^^^^^^^^^~06/01/2013~
-~04539~^~321~^4.^0^^~4~^~FLM~^^^^^^^^^^~12/01/2007~
-~04539~^~322~^1.^0^^~4~^~FLM~^^^^^^^^^^~12/01/2007~
-~04539~^~324~^3.^0^^~4~^~FLM~^^^^^^^^^^~06/01/2013~
-~04539~^~334~^1.^0^^~4~^~FLM~^^^^^^^^^^~12/01/2007~
-~04539~^~337~^0.^0^^~4~^~FLM~^^^^^^^^^^~12/01/2007~
-~04539~^~338~^26.^0^^~4~^~FLM~^^^^^^^^^^~12/01/2007~
-~04539~^~417~^5.^0^^~4~^~FLM~^^^^^^^^^^~04/01/2014~
-~04539~^~431~^0.^0^^~4~^~FLM~^^^^^^^^^^~12/01/2007~
-~04539~^~432~^5.^0^^~4~^~FLM~^^^^^^^^^^~06/01/2013~
-~04539~^~435~^5.^0^^~4~^~NC~^^^^^^^^^^~06/01/2013~
-~04539~^~601~^31.^0^^~4~^~FLM~^^^^^^^^^^~12/01/2007~
-~04541~^~208~^884.^0^^~4~^~NC~^^^^^^^^^^~06/01/1979~
-~04541~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~11/01/2002~
-~04541~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~11/01/2002~
-~04541~^~268~^3699.^0^^~4~^^^^^^^^^^^~12/01/2003~
-~04541~^~301~^0.^0^^~4~^^^^^^^^^^^~06/01/1979~
-~04541~^~304~^0.^0^^~4~^^^^^^^^^^^~06/01/1979~
-~04541~^~305~^0.^0^^~4~^^^^^^^^^^^~06/01/1979~
-~04541~^~306~^0.^0^^~4~^^^^^^^^^^^~06/01/1979~
-~04541~^~307~^0.^0^^~4~^^^^^^^^^^^~06/01/1979~
-~04541~^~318~^0.^0^^~1~^~AS~^^^^^^^^^^~11/01/2002~
-~04541~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2002~
-~04541~^~320~^0.^0^^~4~^~NC~^^^^^^^^^^~11/01/2002~
-~04541~^~321~^0.^0^^~7~^~Z~^^^^^^^^^^~11/01/2002~
-~04541~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~11/01/2002~
-~04541~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~11/01/2002~
-~04541~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~11/01/2002~
-~04541~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~11/01/2002~
-~04541~^~417~^0.^0^^~7~^~Z~^^^^^^^^^^~11/01/2002~
-~04541~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~
-~04541~^~432~^0.^0^^~7~^~Z~^^^^^^^^^^~11/01/2002~
-~04541~^~435~^0.^0^^~4~^~NC~^^^^^^^^^^~07/01/2009~
-~04541~^~601~^0.^0^^~4~^^^^^^^^^^^~06/01/1979~
-~04541~^~636~^95.^0^^~4~^^^^^^^^^^^~06/01/1979~
-~04542~^~208~^900.^0^^~4~^~NC~^^^^^^^^^^~03/01/2009~
-~04542~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2003~
-~04542~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2003~
-~04542~^~268~^3766.^0^^~4~^~NC~^^^^^^^^^^~03/01/2009~
-~04542~^~301~^0.^0^^~4~^^^^^^^^^^^~06/01/1979~
-~04542~^~304~^0.^0^^~4~^^^^^^^^^^^~06/01/1979~
-~04542~^~305~^0.^0^^~4~^^^^^^^^^^^~06/01/1979~
-~04542~^~306~^0.^0^^~4~^^^^^^^^^^^~06/01/1979~
-~04542~^~307~^0.^0^^~4~^^^^^^^^^^^~06/01/1979~
-~04542~^~318~^0.^0^^~1~^~AS~^^^^^^^^^^~03/01/2009~
-~04542~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2002~
-~04542~^~320~^0.^0^^~1~^~AS~^^^^^^^^^^~03/01/2009~
-~04542~^~321~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2003~
-~04542~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2003~
-~04542~^~324~^191.^0^^~4~^~NR~^^^^^^^^^^~03/01/2009~
-~04542~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2003~
-~04542~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2003~
-~04542~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2003~
-~04542~^~417~^0.^0^^~4~^^^^^^^^^^^~06/01/1979~
-~04542~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~
-~04542~^~432~^0.^0^^~4~^^^^^^^^^^^~03/01/2009~
-~04542~^~435~^0.^0^^~4~^~NC~^^^^^^^^^^~03/01/2009~
-~04542~^~601~^85.^0^^~1~^^^^^^^^^^^~06/01/1979~
-~04542~^~636~^0.^0^^~4~^^^^^^^^^^^~06/01/1979~
-~04543~^~208~^884.^0^^~4~^~NC~^^^^^^^^^^~06/01/1979~
-~04543~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~11/01/2002~
-~04543~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~11/01/2002~
-~04543~^~268~^3699.^0^^~4~^^^^^^^^^^^~12/01/2003~
-~04543~^~301~^0.^0^^~4~^^^^^^^^^^^~06/01/1979~
-~04543~^~304~^0.^0^^~4~^^^^^^^^^^^~06/01/1979~
-~04543~^~305~^0.^0^^~4~^^^^^^^^^^^~06/01/1979~
-~04543~^~306~^0.^0^^~4~^^^^^^^^^^^~06/01/1979~
-~04543~^~307~^0.^0^^~4~^^^^^^^^^^^~06/01/1979~
-~04543~^~318~^0.^0^^~4~^^^^^^^^^^^~06/01/1979~
-~04543~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2002~
-~04543~^~320~^0.^0^^~4~^~NC~^^^^^^^^^^~11/01/2002~
-~04543~^~321~^0.^0^^~7~^~Z~^^^^^^^^^^~11/01/2002~
-~04543~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~11/01/2002~
-~04543~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~
-~04543~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~11/01/2002~
-~04543~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~11/01/2002~
-~04543~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~11/01/2002~
-~04543~^~417~^0.^0^^~7~^~Z~^^^^^^^^^^~11/01/2002~
-~04543~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~
-~04543~^~432~^0.^0^^~7~^~Z~^^^^^^^^^^~11/01/2002~
-~04543~^~435~^0.^0^^~4~^~NC~^^^^^^^^^^~07/01/2009~
-~04543~^~601~^0.^0^^~4~^^^^^^^^^^^~06/01/1979~
-~04543~^~636~^152.^0^^~4~^^^^^^^^^^^~06/01/1979~
-~04544~^~208~^900.^0^^~4~^~NC~^^^^^^^^^^~06/01/1979~
-~04544~^~262~^0.^0^^~4~^~BFZN~^~04615~^^^^^^^^^~03/01/2003~
-~04544~^~263~^0.^0^^~4~^~BFZN~^~04615~^^^^^^^^^~03/01/2003~
-~04544~^~268~^3766.^0^^~4~^^^^^^^^^^^~12/01/2003~
-~04544~^~301~^0.^0^^~4~^^^^^^^^^^^~06/01/1979~
-~04544~^~304~^0.^0^^~4~^^^^^^^^^^^~06/01/1979~
-~04544~^~305~^0.^0^^~4~^^^^^^^^^^^~06/01/1979~
-~04544~^~306~^0.^0^^~4~^^^^^^^^^^^~06/01/1979~
-~04544~^~307~^0.^0^^~4~^^^^^^^^^^^~06/01/1979~
-~04544~^~318~^0.^0^^~4~^^^^^^^^^^^~06/01/1979~
-~04544~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2002~
-~04544~^~320~^0.^0^^~4~^~NC~^^^^^^^^^^~03/01/2003~
-~04544~^~321~^0.^0^^~4~^~BFZN~^~04615~^^^^^^^^^~03/01/2003~
-~04544~^~322~^0.^0^^~4~^~BFZN~^~04615~^^^^^^^^^~03/01/2003~
-~04544~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~
-~04544~^~334~^0.^0^^~4~^~BFZN~^~04615~^^^^^^^^^~03/01/2003~
-~04544~^~337~^0.^0^^~4~^~BFZN~^~04615~^^^^^^^^^~03/01/2003~
-~04544~^~338~^0.^0^^~4~^~BFZN~^~04615~^^^^^^^^^~03/01/2003~
-~04544~^~417~^0.^0^^~4~^^^^^^^^^^^~06/01/1979~
-~04544~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~
-~04544~^~432~^0.^0^^~4~^^^^^^^^^^^~03/01/2003~
-~04544~^~435~^0.^0^^~4~^~NC~^^^^^^^^^^~04/01/2007~
-~04544~^~601~^56.^0^^~4~^^^^^^^^^^^~06/01/1979~
-~04544~^~636~^13.^0^^~4~^^^^^^^^^^^~06/01/1979~
-~04545~^~208~^884.^0^^~4~^~NC~^^^^^^^^^^~06/01/1979~
-~04545~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~11/01/2002~
-~04545~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~11/01/2002~
-~04545~^~268~^3699.^0^^~4~^^^^^^^^^^^~07/01/2009~
-~04545~^~301~^0.^0^^~4~^^^^^^^^^^^~06/01/1979~
-~04545~^~304~^0.^0^^~4~^^^^^^^^^^^~06/01/1979~
-~04545~^~305~^0.^0^^~4~^^^^^^^^^^^~06/01/1979~
-~04545~^~306~^0.^0^^~4~^^^^^^^^^^^~06/01/1979~
-~04545~^~307~^0.^0^^~4~^^^^^^^^^^^~06/01/1979~
-~04545~^~318~^0.^0^^~1~^~AS~^^^^^^^^^^~11/01/2002~
-~04545~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2002~
-~04545~^~320~^0.^0^^~4~^~NC~^^^^^^^^^^~11/01/2002~
-~04545~^~321~^0.^0^^~7~^~Z~^^^^^^^^^^~11/01/2002~
-~04545~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~11/01/2002~
-~04545~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~11/01/2002~
-~04545~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~11/01/2002~
-~04545~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~11/01/2002~
-~04545~^~417~^0.^0^^~7~^~Z~^^^^^^^^^^~11/01/2002~
-~04545~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~
-~04545~^~432~^0.^0^^~7~^~Z~^^^^^^^^^^~11/01/2002~
-~04545~^~435~^0.^0^^~4~^~NC~^^^^^^^^^^~07/01/2009~
-~04545~^~601~^0.^0^^~4~^^^^^^^^^^^~06/01/1979~
-~04545~^~636~^10.^0^^~4~^^^^^^^^^^^~06/01/1979~
-~04546~^~208~^884.^0^^~4~^~NC~^^^^^^^^^^~06/01/1979~
-~04546~^~268~^3699.^0^^~4~^^^^^^^^^^^~12/01/2003~
-~04546~^~301~^0.^0^^~4~^^^^^^^^^^^~06/01/1979~
-~04546~^~304~^0.^0^^~4~^^^^^^^^^^^~06/01/1979~
-~04546~^~305~^0.^0^^~4~^^^^^^^^^^^~06/01/1979~
-~04546~^~306~^0.^0^^~4~^^^^^^^^^^^~06/01/1979~
-~04546~^~307~^0.^0^^~4~^^^^^^^^^^^~06/01/1979~
-~04546~^~318~^0.^0^^~4~^^^^^^^^^^^~06/01/1979~
-~04546~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2002~
-~04546~^~320~^0.^0^^~4~^^^^^^^^^^^~06/01/2002~
-~04546~^~417~^0.^0^^~4~^^^^^^^^^^^~06/01/1979~
-~04546~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~
-~04546~^~432~^0.^0^^~4~^^^^^^^^^^^~06/01/1979~
-~04546~^~435~^0.^0^^~4~^~NC~^^^^^^^^^^~06/01/2005~
-~04546~^~601~^0.^0^^~4~^^^^^^^^^^^~06/01/1979~
-~04546~^~636~^200.^0^^~4~^^^^^^^^^^^~06/01/1979~
-~04548~^~208~^884.^0^^~4~^~NC~^^^^^^^^^^~06/01/1979~
-~04548~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~11/01/2002~
-~04548~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~11/01/2002~
-~04548~^~268~^3699.^0^^~4~^^^^^^^^^^^~12/01/2006~
-~04548~^~301~^0.^0^^~4~^^^^^^^^^^^~06/01/1979~
-~04548~^~304~^0.^0^^~4~^^^^^^^^^^^~06/01/1979~
-~04548~^~305~^0.^0^^~4~^^^^^^^^^^^~06/01/1979~
-~04548~^~306~^0.^0^^~4~^^^^^^^^^^^~06/01/1979~
-~04548~^~307~^0.^0^^~4~^^^^^^^^^^^~06/01/1979~
-~04548~^~318~^0.^0^^~1~^~AS~^^^^^^^^^^~11/01/2002~
-~04548~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2002~
-~04548~^~320~^0.^0^^~4~^~NC~^^^^^^^^^^~11/01/2002~
-~04548~^~321~^0.^0^^~7~^~Z~^^^^^^^^^^~11/01/2002~
-~04548~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~11/01/2002~
-~04548~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~
-~04548~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~11/01/2002~
-~04548~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~11/01/2002~
-~04548~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~11/01/2002~
-~04548~^~417~^0.^0^^~7~^~Z~^^^^^^^^^^~11/01/2002~
-~04548~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~
-~04548~^~432~^0.^0^^~7~^~Z~^^^^^^^^^^~11/01/2002~
-~04548~^~435~^0.^0^^~4~^~NC~^^^^^^^^^^~12/01/2006~
-~04548~^~601~^0.^0^^~4~^^^^^^^^^^^~06/01/1979~
-~04548~^~636~^200.^0^^~4~^^^^^^^^^^^~06/01/1979~
-~04549~^~208~^900.^0^^~4~^~NC~^^^^^^^^^^~06/01/1979~
-~04549~^~268~^3766.^0^^~4~^^^^^^^^^^^
-~04549~^~301~^0.^0^^~4~^^^^^^^^^^^~06/01/1979~
-~04549~^~304~^0.^0^^~4~^^^^^^^^^^^~06/01/1979~
-~04549~^~305~^0.^0^^~4~^^^^^^^^^^^~06/01/1979~
-~04549~^~306~^0.^0^^~4~^^^^^^^^^^^~06/01/1979~
-~04549~^~307~^0.^0^^~4~^^^^^^^^^^^~06/01/1979~
-~04549~^~318~^0.^0^^~4~^^^^^^^^^^^~06/01/1979~
-~04549~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2002~
-~04549~^~320~^0.^0^^~4~^^^^^^^^^^^~06/01/2002~
-~04549~^~417~^0.^0^^~4~^^^^^^^^^^^~06/01/1979~
-~04549~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~
-~04549~^~432~^0.^0^^~4~^^^^^^^^^^^~06/01/1979~
-~04549~^~435~^0.^0^^~4~^~NC~^^^^^^^^^^~04/01/2003~
-~04549~^~601~^56.^0^^~4~^^^^^^^^^^^~06/01/1979~
-~04549~^~636~^13.^0^^~4~^^^^^^^^^^^~06/01/1979~
-~04550~^~208~^900.^0^^~4~^~NC~^^^^^^^^^^~06/01/1979~
-~04550~^~268~^3766.^0^^~4~^^^^^^^^^^^
-~04550~^~301~^0.^0^^~4~^^^^^^^^^^^~06/01/1979~
-~04550~^~304~^0.^0^^~4~^^^^^^^^^^^~06/01/1979~
-~04550~^~305~^0.^0^^~4~^^^^^^^^^^^~06/01/1979~
-~04550~^~306~^0.^0^^~4~^^^^^^^^^^^~06/01/1979~
-~04550~^~307~^0.^0^^~4~^^^^^^^^^^^~06/01/1979~
-~04550~^~318~^0.^0^^~4~^^^^^^^^^^^~06/01/1979~
-~04550~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2002~
-~04550~^~320~^0.^0^^~4~^^^^^^^^^^^~06/01/2002~
-~04550~^~417~^0.^0^^~4~^^^^^^^^^^^~06/01/1979~
-~04550~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~
-~04550~^~432~^0.^0^^~4~^^^^^^^^^^^~06/01/1979~
-~04550~^~435~^0.^0^^~4~^~NC~^^^^^^^^^^~01/01/2001~
-~04550~^~601~^100.^0^^~4~^^^^^^^^^^^~06/01/1979~
-~04550~^~636~^32.^0^^~4~^^^^^^^^^^^~06/01/1979~
-~04551~^~208~^884.^0^^~4~^~NC~^^^^^^^^^^~06/01/1979~
-~04551~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~11/01/2002~
-~04551~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~11/01/2002~
-~04551~^~268~^3699.^0^^~4~^^^^^^^^^^^~04/01/2007~
-~04551~^~301~^0.^0^^~4~^^^^^^^^^^^~06/01/1979~
-~04551~^~304~^0.^0^^~4~^^^^^^^^^^^~06/01/1979~
-~04551~^~305~^0.^0^^~4~^^^^^^^^^^^~06/01/1979~
-~04551~^~306~^0.^0^^~4~^^^^^^^^^^^~06/01/1979~
-~04551~^~307~^0.^0^^~4~^^^^^^^^^^^~06/01/1979~
-~04551~^~318~^0.^0^^~1~^~AS~^^^^^^^^^^~11/01/2002~
-~04551~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2002~
-~04551~^~320~^0.^0^^~4~^~NC~^^^^^^^^^^~11/01/2002~
-~04551~^~321~^0.^0^^~7~^~Z~^^^^^^^^^^~11/01/2002~
-~04551~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~11/01/2002~
-~04551~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~
-~04551~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~11/01/2002~
-~04551~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~11/01/2002~
-~04551~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~11/01/2002~
-~04551~^~417~^0.^0^^~7~^~Z~^^^^^^^^^^~11/01/2002~
-~04551~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~
-~04551~^~432~^0.^0^^~7~^~Z~^^^^^^^^^^~11/01/2002~
-~04551~^~435~^0.^0^^~4~^~NC~^^^^^^^^^^~04/01/2007~
-~04551~^~601~^0.^0^^~4~^^^^^^^^^^^~06/01/1979~
-~04551~^~636~^86.^0^^~4~^^^^^^^^^^^~06/01/1979~
-~04554~^~208~^884.^0^^~4~^~NC~^^^^^^^^^^~06/01/1979~
-~04554~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~11/01/2002~
-~04554~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~11/01/2002~
-~04554~^~268~^3699.^0^^~4~^^^^^^^^^^^~12/01/2006~
-~04554~^~301~^0.^0^^~4~^^^^^^^^^^^~06/01/1979~
-~04554~^~304~^0.^0^^~4~^^^^^^^^^^^~06/01/1979~
-~04554~^~305~^0.^0^^~4~^^^^^^^^^^^~06/01/1979~
-~04554~^~306~^0.^0^^~4~^^^^^^^^^^^~06/01/1979~
-~04554~^~307~^0.^0^^~4~^^^^^^^^^^^~06/01/1979~
-~04554~^~318~^0.^0^^~1~^~AS~^^^^^^^^^^~11/01/2002~
-~04554~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2002~
-~04554~^~320~^0.^0^^~4~^~NC~^^^^^^^^^^~11/01/2002~
-~04554~^~321~^0.^0^^~7~^~Z~^^^^^^^^^^~11/01/2002~
-~04554~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~11/01/2002~
-~04554~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~
-~04554~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~11/01/2002~
-~04554~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~11/01/2002~
-~04554~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~11/01/2002~
-~04554~^~417~^0.^0^^~7~^~Z~^^^^^^^^^^~11/01/2002~
-~04554~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~
-~04554~^~432~^0.^0^^~7~^~Z~^^^^^^^^^^~11/01/2002~
-~04554~^~435~^0.^0^^~4~^~NC~^^^^^^^^^^~12/01/2006~
-~04554~^~601~^0.^0^^~4~^^^^^^^^^^^~06/01/1979~
-~04554~^~636~^200.^0^^~4~^^^^^^^^^^^~06/01/1979~
-~04556~^~208~^884.^0^^~4~^~NC~^^^^^^^^^^~06/01/1979~
-~04556~^~268~^3699.^0^^~4~^^^^^^^^^^^
-~04556~^~301~^0.^0^^~4~^^^^^^^^^^^~06/01/1979~
-~04556~^~304~^0.^0^^~4~^^^^^^^^^^^~06/01/1979~
-~04556~^~305~^0.^0^^~4~^^^^^^^^^^^~06/01/1979~
-~04556~^~306~^0.^0^^~4~^^^^^^^^^^^~06/01/1979~
-~04556~^~307~^0.^0^^~4~^^^^^^^^^^^~06/01/1979~
-~04556~^~318~^0.^0^^~4~^^^^^^^^^^^~06/01/1979~
-~04556~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2002~
-~04556~^~320~^0.^0^^~4~^^^^^^^^^^^~06/01/2002~
-~04556~^~417~^0.^0^^~4~^^^^^^^^^^^~06/01/1979~
-~04556~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~
-~04556~^~432~^0.^0^^~4~^^^^^^^^^^^~06/01/1979~
-~04556~^~435~^0.^0^^~4~^~NC~^^^^^^^^^^~01/01/2001~
-~04556~^~601~^0.^0^^~4~^^^^^^^^^^^~06/01/1979~
-~04556~^~636~^49.^0^^~4~^^^^^^^^^^^~06/01/1979~
-~04559~^~208~^884.^0^^~4~^~NC~^^^^^^^^^^~06/01/1979~
-~04559~^~268~^3699.^0^^~4~^^^^^^^^^^^
-~04559~^~301~^0.^0^^~4~^^^^^^^^^^^~06/01/1979~
-~04559~^~304~^0.^0^^~4~^^^^^^^^^^^~06/01/1979~
-~04559~^~305~^0.^0^^~4~^^^^^^^^^^^~06/01/1979~
-~04559~^~306~^0.^0^^~4~^^^^^^^^^^^~06/01/1979~
-~04559~^~307~^0.^0^^~4~^^^^^^^^^^^~06/01/1979~
-~04559~^~318~^0.^0^^~4~^^^^^^^^^^^~06/01/1979~
-~04559~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2002~
-~04559~^~320~^0.^0^^~4~^^^^^^^^^^^~06/01/2002~
-~04559~^~417~^0.^0^^~4~^^^^^^^^^^^~06/01/1979~
-~04559~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~
-~04559~^~432~^0.^0^^~4~^^^^^^^^^^^~06/01/1979~
-~04559~^~435~^0.^0^^~4~^~NC~^^^^^^^^^^~01/01/2001~
-~04559~^~601~^0.^0^^~4~^^^^^^^^^^^~06/01/1979~
-~04559~^~636~^148.^1^^~1~^^^^^^^^^^^~06/01/1979~
-~04560~^~208~^884.^0^^~4~^~NC~^^^^^^^^^^~06/01/1979~
-~04560~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~11/01/2002~
-~04560~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~11/01/2002~
-~04560~^~268~^3699.^0^^~4~^^^^^^^^^^^
-~04560~^~301~^0.^0^^~4~^^^^^^^^^^^~06/01/1979~
-~04560~^~304~^0.^0^^~4~^^^^^^^^^^^~06/01/1979~
-~04560~^~305~^0.^0^^~4~^^^^^^^^^^^~06/01/1979~
-~04560~^~306~^0.^0^^~4~^^^^^^^^^^^~06/01/1979~
-~04560~^~307~^0.^0^^~4~^^^^^^^^^^^~06/01/1979~
-~04560~^~318~^0.^0^^~1~^~AS~^^^^^^^^^^~11/01/2002~
-~04560~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2002~
-~04560~^~320~^0.^0^^~4~^~NC~^^^^^^^^^^~11/01/2002~
-~04560~^~321~^0.^0^^~7~^~Z~^^^^^^^^^^~11/01/2002~
-~04560~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~11/01/2002~
-~04560~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~11/01/2002~
-~04560~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~11/01/2002~
-~04560~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~11/01/2002~
-~04560~^~417~^0.^0^^~7~^~Z~^^^^^^^^^^~11/01/2002~
-~04560~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~
-~04560~^~432~^0.^0^^~7~^~Z~^^^^^^^^^^~11/01/2002~
-~04560~^~435~^0.^0^^~4~^~NC~^^^^^^^^^^~01/01/2001~
-~04560~^~601~^0.^0^^~4~^^^^^^^^^^^~06/01/1979~
-~04560~^~636~^181.^0^^~4~^^^^^^^^^^^~06/01/1979~
-~04570~^~208~^884.^0^^~4~^~NC~^^^^^^^^^^~06/01/1979~
-~04570~^~268~^3699.^0^^~4~^^^^^^^^^^^
-~04570~^~301~^0.^0^^~4~^^^^^^^^^^^~06/01/1979~
-~04570~^~304~^0.^0^^~4~^^^^^^^^^^^~06/01/1979~
-~04570~^~305~^0.^0^^~4~^^^^^^^^^^^~06/01/1979~
-~04570~^~306~^0.^0^^~4~^^^^^^^^^^^~06/01/1979~
-~04570~^~307~^0.^0^^~4~^^^^^^^^^^^~06/01/1979~
-~04570~^~318~^0.^0^^~4~^^^^^^^^^^^~06/01/1979~
-~04570~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2002~
-~04570~^~320~^0.^0^^~4~^^^^^^^^^^^~06/01/2002~
-~04570~^~417~^0.^0^^~4~^^^^^^^^^^^~06/01/1979~
-~04570~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~
-~04570~^~432~^0.^0^^~4~^^^^^^^^^^^~06/01/1979~
-~04570~^~435~^0.^0^^~4~^~NC~^^^^^^^^^^~01/01/2001~
-~04570~^~601~^0.^0^^~4~^^^^^^^^^^^~06/01/1979~
-~04570~^~636~^49.^0^^~4~^^^^^^^^^^^~06/01/1979~
-~04572~^~208~^884.^0^^~4~^~NC~^^^^^^^^^^~06/01/1979~
-~04572~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~11/01/2002~
-~04572~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~11/01/2002~
-~04572~^~268~^3699.^0^^~4~^^^^^^^^^^^~07/01/2009~
-~04572~^~301~^0.^0^^~4~^^^^^^^^^^^~06/01/1979~
-~04572~^~304~^0.^0^^~4~^^^^^^^^^^^~06/01/1979~
-~04572~^~305~^0.^0^^~4~^^^^^^^^^^^~06/01/1979~
-~04572~^~306~^0.^0^^~4~^^^^^^^^^^^~06/01/1979~
-~04572~^~307~^0.^0^^~4~^^^^^^^^^^^~06/01/1979~
-~04572~^~318~^0.^0^^~1~^~AS~^^^^^^^^^^~11/01/2002~
-~04572~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2002~
-~04572~^~320~^0.^0^^~4~^~NC~^^^^^^^^^^~11/01/2002~
-~04572~^~321~^0.^0^^~7~^~Z~^^^^^^^^^^~11/01/2002~
-~04572~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~11/01/2002~
-~04572~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~11/01/2002~
-~04572~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~11/01/2002~
-~04572~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~11/01/2002~
-~04572~^~417~^0.^0^^~7~^~Z~^^^^^^^^^^~11/01/2002~
-~04572~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~
-~04572~^~432~^0.^0^^~7~^~Z~^^^^^^^^^^~11/01/2002~
-~04572~^~435~^0.^0^^~4~^~NC~^^^^^^^^^^~07/01/2009~
-~04572~^~601~^0.^0^^~4~^^^^^^^^^^^~06/01/1979~
-~04572~^~636~^0.^0^^~4~^^^^^^^^^^^~06/01/1979~
-~04573~^~208~^884.^0^^~4~^~NC~^^^^^^^^^^~06/01/1979~
-~04573~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~11/01/2002~
-~04573~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~11/01/2002~
-~04573~^~268~^3699.^0^^~4~^^^^^^^^^^^~07/01/2009~
-~04573~^~301~^0.^0^^~4~^^^^^^^^^^^~06/01/1979~
-~04573~^~304~^0.^0^^~4~^^^^^^^^^^^~06/01/1979~
-~04573~^~305~^0.^0^^~4~^^^^^^^^^^^~06/01/1979~
-~04573~^~306~^0.^0^^~4~^^^^^^^^^^^~06/01/1979~
-~04573~^~307~^0.^0^^~4~^^^^^^^^^^^~06/01/1979~
-~04573~^~318~^0.^0^^~1~^~AS~^^^^^^^^^^~11/01/2002~
-~04573~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2002~
-~04573~^~320~^0.^0^^~4~^~NC~^^^^^^^^^^~11/01/2002~
-~04573~^~321~^0.^0^^~7~^~Z~^^^^^^^^^^~11/01/2002~
-~04573~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~11/01/2002~
-~04573~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~11/01/2002~
-~04573~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~11/01/2002~
-~04573~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~11/01/2002~
-~04573~^~417~^0.^0^^~7~^~Z~^^^^^^^^^^~11/01/2002~
-~04573~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~
-~04573~^~432~^0.^0^^~7~^~Z~^^^^^^^^^^~11/01/2002~
-~04573~^~435~^0.^0^^~4~^~NC~^^^^^^^^^^~07/01/2009~
-~04573~^~601~^0.^0^^~4~^^^^^^^^^^^~06/01/1979~
-~04573~^~636~^95.^0^^~4~^^^^^^^^^^^~06/01/1979~
-~04575~^~208~^900.^0^^~4~^~NC~^^^^^^^^^^~06/01/1979~
-~04575~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2003~
-~04575~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2003~
-~04575~^~268~^3767.^0^^~4~^^^^^^^^^^^~03/01/2009~
-~04575~^~301~^0.^0^^~4~^^^^^^^^^^^~06/01/1979~
-~04575~^~304~^0.^0^^~4~^^^^^^^^^^^~06/01/1979~
-~04575~^~305~^0.^0^^~4~^^^^^^^^^^^~06/01/1979~
-~04575~^~306~^0.^0^^~4~^^^^^^^^^^^~06/01/1979~
-~04575~^~307~^0.^0^^~4~^^^^^^^^^^^~06/01/1979~
-~04575~^~318~^0.^0^^~1~^~AS~^^^^^^^^^^~03/01/2009~
-~04575~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2002~
-~04575~^~320~^0.^0^^~1~^~AS~^^^^^^^^^^~03/01/2009~
-~04575~^~321~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2003~
-~04575~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2003~
-~04575~^~324~^191.^0^^~4~^~BFZN~^~04542~^^^^^^^^^~03/01/2009~
-~04575~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2003~
-~04575~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2003~
-~04575~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2003~
-~04575~^~417~^0.^0^^~4~^^^^^^^^^^^~06/01/1979~
-~04575~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~
-~04575~^~432~^0.^0^^~4~^^^^^^^^^^^~03/01/2009~
-~04575~^~435~^0.^0^^~4~^~NC~^^^^^^^^^^~03/01/2009~
-~04575~^~601~^102.^0^^~1~^^^^^^^^^^^~06/01/1979~
-~04575~^~636~^0.^0^^~4~^^^^^^^^^^^~06/01/1979~
-~04576~^~208~^900.^0^^~4~^~NC~^^^^^^^^^^~06/01/1979~
-~04576~^~268~^3767.^0^^~4~^^^^^^^^^^^
-~04576~^~301~^0.^0^^~4~^^^^^^^^^^^~06/01/1979~
-~04576~^~304~^0.^0^^~4~^^^^^^^^^^^~06/01/1979~
-~04576~^~305~^0.^0^^~4~^^^^^^^^^^^~06/01/1979~
-~04576~^~306~^0.^0^^~4~^^^^^^^^^^^~06/01/1979~
-~04576~^~307~^0.^0^^~4~^^^^^^^^^^^~06/01/1979~
-~04576~^~318~^0.^0^^~4~^^^^^^^^^^^~06/01/1979~
-~04576~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2002~
-~04576~^~320~^0.^0^^~4~^^^^^^^^^^^~06/01/2002~
-~04576~^~417~^0.^0^^~4~^^^^^^^^^^^~06/01/1979~
-~04576~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~
-~04576~^~432~^0.^0^^~4~^^^^^^^^^^^~06/01/1979~
-~04576~^~435~^0.^0^^~4~^~NC~^^^^^^^^^^~01/01/2001~
-~04576~^~601~^100.^0^^~1~^^^^^^^^^^^~06/01/1979~
-~04576~^~636~^0.^0^^~4~^^^^^^^^^^^~06/01/1979~
-~04581~^~208~^884.^0^^~4~^~NC~^^^^^^^^^^~06/01/1979~
-~04581~^~268~^3699.^0^^~4~^^^^^^^^^^^~03/01/2006~
-~04581~^~301~^0.^0^^~4~^^^^^^^^^^^~06/01/1979~
-~04581~^~304~^0.^0^^~4~^^^^^^^^^^^~06/01/1979~
-~04581~^~305~^0.^0^^~4~^^^^^^^^^^^~06/01/1979~
-~04581~^~306~^0.^0^^~4~^^^^^^^^^^^~06/01/1979~
-~04581~^~307~^0.^0^^~4~^^^^^^^^^^^~06/01/1979~
-~04581~^~318~^0.^0^^~4~^^^^^^^^^^^~06/01/1979~
-~04581~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2002~
-~04581~^~320~^0.^0^^~4~^^^^^^^^^^^~06/01/2002~
-~04581~^~417~^0.^0^^~4~^^^^^^^^^^^~06/01/1979~
-~04581~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~
-~04581~^~432~^0.^0^^~4~^^^^^^^^^^^~06/01/1979~
-~04581~^~435~^0.^0^^~4~^~NC~^^^^^^^^^^~07/01/2009~
-~04582~^~208~^884.^0^^~4~^~NC~^^^^^^^^^^~06/01/1979~
-~04582~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2001~
-~04582~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2001~
-~04582~^~268~^3699.^0^^~4~^^^^^^^^^^^~04/01/2007~
-~04582~^~301~^0.^0^^~4~^^^^^^^^^^^~06/01/1979~
-~04582~^~304~^0.^0^^~4~^^^^^^^^^^^~06/01/1979~
-~04582~^~305~^0.^0^^~4~^^^^^^^^^^^~06/01/1979~
-~04582~^~306~^0.^0^^~4~^^^^^^^^^^^~06/01/1979~
-~04582~^~307~^0.^0^^~4~^^^^^^^^^^^~06/01/1979~
-~04582~^~318~^0.^0^^~1~^~AS~^^^^^^^^^^~04/01/2007~
-~04582~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2002~
-~04582~^~320~^0.^0^^~1~^~AS~^^^^^^^^^^~04/01/2007~
-~04582~^~321~^0.^0^^~7~^~Z~^^^^^^^^^^~11/01/2002~
-~04582~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~11/01/2002~
-~04582~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~
-~04582~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~11/01/2002~
-~04582~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~11/01/2002~
-~04582~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~11/01/2002~
-~04582~^~417~^0.^0^^~7~^~Z~^^^^^^^^^^~11/01/2002~
-~04582~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~
-~04582~^~432~^0.^0^^~7~^~Z~^^^^^^^^^^~11/01/2002~
-~04582~^~435~^0.^0^^~4~^~NC~^^^^^^^^^^~07/01/2009~
-~04582~^~601~^0.^0^^~4~^^^^^^^^^^^~03/01/2007~
-~04582~^~638~^3.^4^0.^~1~^~A~^^^1^2.^3.^3^2.^3.^~2, 3~^~03/01/2007~
-~04582~^~639~^241.^4^9.^~1~^~A~^^^1^223.^260.^3^211.^269.^~2, 3~^~03/01/2007~
-~04582~^~641~^413.^4^14.^~1~^~A~^^^1^382.^442.^3^366.^458.^~2, 3~^~03/01/2007~
-~04583~^~208~^884.^0^^~4~^~NC~^^^^^^^^^^~06/01/1979~
-~04583~^~268~^3699.^0^^~4~^^^^^^^^^^^~03/01/2006~
-~04583~^~301~^0.^0^^~4~^^^^^^^^^^^~06/01/1979~
-~04583~^~304~^0.^0^^~4~^^^^^^^^^^^~06/01/1979~
-~04583~^~305~^0.^0^^~4~^^^^^^^^^^^~06/01/1979~
-~04583~^~306~^0.^0^^~4~^^^^^^^^^^^~06/01/1979~
-~04583~^~307~^0.^0^^~4~^^^^^^^^^^^~06/01/1979~
-~04583~^~318~^0.^0^^~4~^^^^^^^^^^^~06/01/1979~
-~04583~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2002~
-~04583~^~320~^0.^0^^~4~^^^^^^^^^^^~06/01/2002~
-~04583~^~417~^0.^0^^~4~^^^^^^^^^^^~06/01/1979~
-~04583~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~
-~04583~^~432~^0.^0^^~4~^^^^^^^^^^^~06/01/1979~
-~04583~^~435~^0.^0^^~4~^~NC~^^^^^^^^^^~07/01/2009~
-~04584~^~208~^884.^0^^~4~^~NC~^^^^^^^^^^~06/01/1979~
-~04584~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~11/01/2002~
-~04584~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~11/01/2002~
-~04584~^~268~^3699.^0^^~4~^^^^^^^^^^^~06/01/2009~
-~04584~^~301~^0.^0^^~4~^^^^^^^^^^^~06/01/1979~
-~04584~^~304~^0.^0^^~4~^^^^^^^^^^^~06/01/1979~
-~04584~^~305~^0.^0^^~4~^^^^^^^^^^^~06/01/1979~
-~04584~^~306~^0.^0^^~4~^^^^^^^^^^^~06/01/1979~
-~04584~^~307~^0.^0^^~4~^^^^^^^^^^^~06/01/1979~
-~04584~^~318~^0.^0^^~1~^~AS~^^^^^^^^^^~11/01/2002~
-~04584~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2002~
-~04584~^~320~^0.^0^^~4~^~NC~^^^^^^^^^^~11/01/2002~
-~04584~^~321~^0.^0^^~7~^~Z~^^^^^^^^^^~11/01/2002~
-~04584~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~11/01/2002~
-~04584~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2009~
-~04584~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~11/01/2002~
-~04584~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~11/01/2002~
-~04584~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~11/01/2002~
-~04584~^~417~^0.^0^^~7~^~Z~^^^^^^^^^^~11/01/2002~
-~04584~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~
-~04584~^~432~^0.^0^^~7~^~Z~^^^^^^^^^^~11/01/2002~
-~04584~^~435~^0.^0^^~4~^~NC~^^^^^^^^^^~07/01/2009~
-~04584~^~601~^0.^0^^~4~^^^^^^^^^^^~01/01/1994~
-~04585~^~208~^727.^0^^~4~^~NC~^^^^^^^^^^~06/01/2013~
-~04585~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2001~
-~04585~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2001~
-~04585~^~268~^3043.^0^^~4~^~NC~^^^^^^^^^^~06/01/2013~
-~04585~^~301~^10.^1^^~1~^~A~^^^^^^^^^^~04/01/2006~
-~04585~^~304~^1.^1^^~1~^~A~^^^^^^^^^^~04/01/2006~
-~04585~^~305~^10.^1^^~1~^~A~^^^^^^^^^^~04/01/2006~
-~04585~^~306~^22.^1^^~1~^~A~^^^^^^^^^^~04/01/2006~
-~04585~^~307~^719.^0^^~4~^~O~^^^^^^^^^^~06/01/2013~
-~04585~^~318~^3571.^1^^~5~^~ML~^^^^^^^^^^~02/01/2009~
-~04585~^~319~^768.^0^^~4~^~CAZN~^^^^^^^^^^~11/01/2002~
-~04585~^~320~^819.^0^^~4~^~NC~^^^^^^^^^^~02/01/2009~
-~04585~^~321~^610.^0^^~4~^~CAZN~^^^^^^^^^^~11/01/2002~
-~04585~^~322~^0.^0^^~4~^~CAZN~^^^^^^^^^^~11/01/2002~
-~04585~^~324~^1.^0^^~4~^~FLA~^^^^^^^^^^~02/01/2009~
-~04585~^~334~^0.^0^^~4~^~CAZN~^^^^^^^^^^~11/01/2002~
-~04585~^~337~^0.^0^^~4~^~CAZN~^^^^^^^^^^~11/01/2002~
-~04585~^~338~^0.^0^^~4~^~CAZN~^^^^^^^^^^~11/01/2002~
-~04585~^~417~^2.^1^^~1~^^^^^^^^^^^~06/01/1979~
-~04585~^~431~^0.^0^^~4~^~FLA~^^^^^^^^^^~06/01/2013~
-~04585~^~432~^2.^0^^~4~^~NR~^^^^^^^^^^~04/01/2006~
-~04585~^~435~^2.^0^^~4~^~NC~^^^^^^^^^^~03/01/2009~
-~04585~^~601~^12.^1^^~1~^~A~^^^^^^^^^^~04/01/2006~
-~04586~^~208~^884.^0^^~4~^~NC~^^^^^^^^^^~06/01/1979~
-~04586~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~11/01/2002~
-~04586~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~11/01/2002~
-~04586~^~268~^3699.^0^^~4~^^^^^^^^^^^
-~04586~^~301~^0.^0^^~4~^^^^^^^^^^^~06/01/1979~
-~04586~^~304~^0.^0^^~4~^^^^^^^^^^^~06/01/1979~
-~04586~^~305~^0.^0^^~4~^^^^^^^^^^^~06/01/1979~
-~04586~^~306~^0.^0^^~4~^^^^^^^^^^^~06/01/1979~
-~04586~^~307~^0.^0^^~4~^^^^^^^^^^^~06/01/1979~
-~04586~^~318~^0.^0^^~1~^~AS~^^^^^^^^^^~11/01/2002~
-~04586~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2002~
-~04586~^~320~^0.^0^^~4~^~NC~^^^^^^^^^^~11/01/2002~
-~04586~^~321~^0.^0^^~7~^~Z~^^^^^^^^^^~11/01/2002~
-~04586~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~11/01/2002~
-~04586~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~11/01/2002~
-~04586~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~11/01/2002~
-~04586~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~11/01/2002~
-~04586~^~417~^0.^0^^~7~^~Z~^^^^^^^^^^~11/01/2002~
-~04586~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~
-~04586~^~432~^0.^0^^~7~^~Z~^^^^^^^^^^~11/01/2002~
-~04586~^~435~^0.^0^^~4~^~NC~^^^^^^^^^^~01/01/2001~
-~04586~^~601~^0.^0^^~4~^^^^^^^^^^^~06/01/1979~
-~04587~^~208~^884.^0^^~4~^~NC~^^^^^^^^^^~06/01/1979~
-~04587~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~11/01/2002~
-~04587~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~11/01/2002~
-~04587~^~268~^3699.^0^^~4~^^^^^^^^^^^
-~04587~^~301~^0.^0^^~4~^^^^^^^^^^^~06/01/1979~
-~04587~^~304~^0.^0^^~4~^^^^^^^^^^^~06/01/1979~
-~04587~^~305~^0.^0^^~4~^^^^^^^^^^^~06/01/1979~
-~04587~^~306~^0.^0^^~4~^^^^^^^^^^^~06/01/1979~
-~04587~^~307~^0.^0^^~4~^^^^^^^^^^^~06/01/1979~
-~04587~^~318~^0.^0^^~1~^~AS~^^^^^^^^^^~11/01/2002~
-~04587~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2002~
-~04587~^~320~^0.^0^^~4~^~NC~^^^^^^^^^^~11/01/2002~
-~04587~^~321~^0.^0^^~7~^~Z~^^^^^^^^^^~11/01/2002~
-~04587~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~11/01/2002~
-~04587~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~11/01/2002~
-~04587~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~11/01/2002~
-~04587~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~11/01/2002~
-~04587~^~417~^0.^0^^~7~^~Z~^^^^^^^^^^~11/01/2002~
-~04587~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~
-~04587~^~432~^0.^0^^~7~^~Z~^^^^^^^^^^~11/01/2002~
-~04587~^~435~^0.^0^^~4~^~NC~^^^^^^^^^^~01/01/2001~
-~04587~^~601~^0.^0^^~4~^^^^^^^^^^^~06/01/1979~
-~04588~^~208~^884.^0^^~4~^~NC~^^^^^^^^^^~06/01/1979~
-~04588~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~11/01/2002~
-~04588~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~11/01/2002~
-~04588~^~268~^3699.^0^^~4~^^^^^^^^^^^~07/01/2009~
-~04588~^~301~^0.^0^^~4~^^^^^^^^^^^~06/01/1979~
-~04588~^~304~^0.^0^^~4~^^^^^^^^^^^~06/01/1979~
-~04588~^~305~^0.^0^^~4~^^^^^^^^^^^~06/01/1979~
-~04588~^~306~^0.^0^^~4~^^^^^^^^^^^~06/01/1979~
-~04588~^~307~^0.^0^^~4~^^^^^^^^^^^~06/01/1979~
-~04588~^~318~^0.^0^^~4~^^^^^^^^^^^~06/01/1979~
-~04588~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2002~
-~04588~^~320~^0.^0^^~4~^~NC~^^^^^^^^^^~11/01/2002~
-~04588~^~321~^0.^0^^~7~^~Z~^^^^^^^^^^~11/01/2002~
-~04588~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~11/01/2002~
-~04588~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~11/01/2002~
-~04588~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~11/01/2002~
-~04588~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~11/01/2002~
-~04588~^~417~^0.^0^^~7~^~Z~^^^^^^^^^^~11/01/2002~
-~04588~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~
-~04588~^~432~^0.^0^^~7~^~Z~^^^^^^^^^^~11/01/2002~
-~04588~^~435~^0.^0^^~4~^~NC~^^^^^^^^^^~07/01/2009~
-~04588~^~601~^0.^0^^~4~^^^^^^^^^^^~06/01/1979~
-~04589~^~208~^902.^0^^~4~^~NC~^^^^^^^^^^~06/01/1979~
-~04589~^~268~^3774.^0^^~4~^^^^^^^^^^^~03/01/2006~
-~04589~^~301~^0.^0^^~4~^^^^^^^^^^^~06/01/1979~
-~04589~^~304~^0.^0^^~4~^^^^^^^^^^^~06/01/1979~
-~04589~^~305~^0.^0^^~4~^^^^^^^^^^^~06/01/1979~
-~04589~^~306~^0.^0^^~4~^^^^^^^^^^^~06/01/1979~
-~04589~^~307~^0.^0^^~4~^^^^^^^^^^^~06/01/1979~
-~04589~^~318~^100000.^1^^~1~^^^^^^^^^^^~06/01/1979~
-~04589~^~319~^30000.^1^^~1~^^^^^^^^^^^~06/01/2002~
-~04589~^~320~^30000.^1^^~1~^^^^^^^^^^^~06/01/2002~
-~04589~^~324~^10000.^0^^~4~^~T~^^^^^^^^^^~02/01/2001~
-~04589~^~417~^0.^0^^~4~^^^^^^^^^^^~06/01/1979~
-~04589~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~
-~04589~^~432~^0.^0^^~4~^^^^^^^^^^^~06/01/1979~
-~04589~^~435~^0.^0^^~4~^~NC~^^^^^^^^^^~03/01/2009~
-~04589~^~601~^570.^1^^~1~^^^^^^^^^^^~06/01/1979~
-~04590~^~208~^902.^0^^~4~^~NC~^^^^^^^^^^~06/01/1979~
-~04590~^~268~^3774.^0^^~4~^^^^^^^^^^^~03/01/2006~
-~04590~^~301~^0.^0^^~4~^^^^^^^^^^^~06/01/1979~
-~04590~^~304~^0.^0^^~4~^^^^^^^^^^^~06/01/1979~
-~04590~^~305~^0.^0^^~4~^^^^^^^^^^^~06/01/1979~
-~04590~^~306~^0.^0^^~4~^^^^^^^^^^^~06/01/1979~
-~04590~^~307~^0.^0^^~4~^^^^^^^^^^^~06/01/1979~
-~04590~^~318~^0.^0^^~4~^^^^^^^^^^^~06/01/1979~
-~04590~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2002~
-~04590~^~320~^0.^0^^~4~^^^^^^^^^^^~06/01/2002~
-~04590~^~417~^0.^0^^~4~^^^^^^^^^^^~06/01/1979~
-~04590~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~
-~04590~^~432~^0.^0^^~4~^^^^^^^^^^^~06/01/1979~
-~04590~^~435~^0.^0^^~4~^~NC~^^^^^^^^^^~03/01/2006~
-~04590~^~601~^766.^1^^~1~^^^^^^^^^^^~06/01/1979~
-~04591~^~208~^902.^0^^~4~^~NC~^^^^^^^^^^~06/01/1979~
-~04591~^~268~^3774.^0^^~4~^^^^^^^^^^^~03/01/2006~
-~04591~^~301~^0.^0^^~4~^^^^^^^^^^^~06/01/1979~
-~04591~^~304~^0.^0^^~4~^^^^^^^^^^^~06/01/1979~
-~04591~^~305~^0.^0^^~4~^^^^^^^^^^^~06/01/1979~
-~04591~^~306~^0.^0^^~4~^^^^^^^^^^^~06/01/1979~
-~04591~^~307~^0.^0^^~4~^^^^^^^^^^^~06/01/1979~
-~04591~^~318~^0.^0^^~4~^^^^^^^^^^^~06/01/1979~
-~04591~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2002~
-~04591~^~320~^0.^0^^~4~^^^^^^^^^^^~06/01/2002~
-~04591~^~417~^0.^0^^~4~^^^^^^^^^^^~06/01/1979~
-~04591~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~
-~04591~^~432~^0.^0^^~4~^^^^^^^^^^^~06/01/1979~
-~04591~^~435~^0.^0^^~4~^~NC~^^^^^^^^^^~03/01/2006~
-~04591~^~601~^521.^1^^~1~^^^^^^^^^^^~06/01/1979~
-~04592~^~208~^902.^0^^~4~^~NC~^^^^^^^^^^~06/01/1979~
-~04592~^~268~^3774.^0^^~4~^^^^^^^^^^^~03/01/2006~
-~04592~^~301~^0.^0^^~4~^^^^^^^^^^^~06/01/1979~
-~04592~^~304~^0.^0^^~4~^^^^^^^^^^^~06/01/1979~
-~04592~^~305~^0.^0^^~4~^^^^^^^^^^^~06/01/1979~
-~04592~^~306~^0.^0^^~4~^^^^^^^^^^^~06/01/1979~
-~04592~^~307~^0.^0^^~4~^^^^^^^^^^^~06/01/1979~
-~04592~^~318~^0.^0^^~4~^^^^^^^^^^^~06/01/1979~
-~04592~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2002~
-~04592~^~320~^0.^0^^~4~^^^^^^^^^^^~06/01/2002~
-~04592~^~417~^0.^0^^~4~^^^^^^^^^^^~06/01/1979~
-~04592~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~
-~04592~^~432~^0.^0^^~4~^^^^^^^^^^^~06/01/1979~
-~04592~^~435~^0.^0^^~4~^~NC~^^^^^^^^^^~03/01/2006~
-~04592~^~601~^500.^1^^~1~^^^^^^^^^^^~06/01/1979~
-~04593~^~208~^902.^0^^~4~^~NC~^^^^^^^^^^~06/01/1979~
-~04593~^~268~^3774.^0^^~4~^^^^^^^^^^^~03/01/2006~
-~04593~^~301~^0.^0^^~4~^^^^^^^^^^^~06/01/1979~
-~04593~^~304~^0.^0^^~4~^^^^^^^^^^^~06/01/1979~
-~04593~^~305~^0.^0^^~4~^^^^^^^^^^^~06/01/1979~
-~04593~^~306~^0.^0^^~4~^^^^^^^^^^^~06/01/1979~
-~04593~^~307~^0.^0^^~4~^^^^^^^^^^^~06/01/1979~
-~04593~^~318~^0.^0^^~4~^^^^^^^^^^^~06/01/1979~
-~04593~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2002~
-~04593~^~320~^0.^0^^~4~^^^^^^^^^^^~06/01/2002~
-~04593~^~417~^0.^0^^~4~^^^^^^^^^^^~06/01/1979~
-~04593~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~
-~04593~^~432~^0.^0^^~4~^^^^^^^^^^^~06/01/1979~
-~04593~^~435~^0.^0^^~4~^~NC~^^^^^^^^^^~03/01/2006~
-~04593~^~601~^485.^1^^~1~^^^^^^^^^^^~06/01/1979~
-~04594~^~208~^902.^0^^~4~^~NC~^^^^^^^^^^~06/01/1979~
-~04594~^~268~^3774.^0^^~4~^^^^^^^^^^^~03/01/2006~
-~04594~^~301~^0.^0^^~4~^^^^^^^^^^^~06/01/1979~
-~04594~^~304~^0.^0^^~4~^^^^^^^^^^^~06/01/1979~
-~04594~^~305~^0.^0^^~4~^^^^^^^^^^^~06/01/1979~
-~04594~^~306~^0.^0^^~4~^^^^^^^^^^^~06/01/1979~
-~04594~^~307~^0.^0^^~4~^^^^^^^^^^^~06/01/1979~
-~04594~^~318~^0.^0^^~4~^^^^^^^^^^^~06/01/1979~
-~04594~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2002~
-~04594~^~320~^0.^0^^~4~^^^^^^^^^^^~06/01/2002~
-~04594~^~324~^332.^0^^~4~^~T~^^^^^^^^^^~02/01/2001~
-~04594~^~417~^0.^0^^~4~^^^^^^^^^^^~06/01/1979~
-~04594~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~
-~04594~^~432~^0.^0^^~4~^^^^^^^^^^^~06/01/1979~
-~04594~^~435~^0.^0^^~4~^~NC~^^^^^^^^^^~03/01/2009~
-~04594~^~601~^710.^1^^~1~^^^^^^^^^^^~06/01/1979~
-~04595~^~208~^884.^0^^~4~^~NC~^^^^^^^^^^~06/01/1979~
-~04595~^~268~^3699.^0^^~4~^^^^^^^^^^^
-~04595~^~301~^0.^0^^~4~^^^^^^^^^^^~06/01/1979~
-~04595~^~304~^0.^0^^~4~^^^^^^^^^^^~06/01/1979~
-~04595~^~305~^0.^0^^~4~^^^^^^^^^^^~06/01/1979~
-~04595~^~306~^0.^0^^~4~^^^^^^^^^^^~06/01/1979~
-~04595~^~307~^0.^0^^~4~^^^^^^^^^^^~06/01/1979~
-~04595~^~318~^0.^0^^~4~^^^^^^^^^^^~06/01/1979~
-~04595~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2002~
-~04595~^~320~^0.^0^^~4~^^^^^^^^^^^~06/01/2002~
-~04595~^~417~^0.^0^^~4~^^^^^^^^^^^~06/01/1979~
-~04595~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~
-~04595~^~432~^0.^0^^~4~^^^^^^^^^^^~06/01/1979~
-~04595~^~435~^0.^0^^~4~^~NC~^^^^^^^^^^~01/01/2001~
-~04595~^~601~^0.^0^^~4~^^^^^^^^^^^~06/01/1979~
-~04600~^~208~^362.^0^^~4~^^^^^^^^^^^~02/01/2009~
-~04600~^~262~^0.^0^^~4~^~BFZN~^~42307~^^^^^^^^^~03/01/2003~
-~04600~^~263~^0.^0^^~4~^~BFZN~^~42307~^^^^^^^^^~03/01/2003~
-~04600~^~268~^1515.^0^^~4~^^^^^^^^^^^~02/01/2009~
-~04600~^~301~^24.^0^^~4~^^^^^^^^^^^~02/01/2009~
-~04600~^~304~^2.^0^^~4~^^^^^^^^^^^~02/01/2009~
-~04600~^~305~^20.^0^^~4~^^^^^^^^^^^~02/01/2009~
-~04600~^~306~^36.^0^^~4~^^^^^^^^^^^~02/01/2009~
-~04600~^~307~^786.^0^^~4~^^^^^^^^^^^~02/01/2009~
-~04600~^~318~^3571.^0^^~5~^~ML~^^^^^^^^^^~02/01/2009~
-~04600~^~319~^768.^0^^~4~^~BFZN~^~42307~^^^^^^^^^~03/01/2003~
-~04600~^~320~^819.^0^^~4~^~NC~^^^^^^^^^^~02/01/2009~
-~04600~^~321~^610.^0^^~4~^~BFZN~^~42307~^^^^^^^^^~03/01/2003~
-~04600~^~322~^0.^0^^~4~^~BFZN~^~42307~^^^^^^^^^~03/01/2003~
-~04600~^~324~^1.^0^^~4~^~BFZN~^~04585~^^^^^^^^^~02/01/2009~
-~04600~^~334~^0.^0^^~4~^~BFZN~^~42307~^^^^^^^^^~03/01/2003~
-~04600~^~337~^0.^0^^~4~^~BFZN~^~42307~^^^^^^^^^~03/01/2003~
-~04600~^~338~^0.^0^^~4~^~BFZN~^~42307~^^^^^^^^^~03/01/2003~
-~04600~^~417~^1.^0^^~4~^^^^^^^^^^^~02/01/2009~
-~04600~^~431~^0.^0^^~4~^~BFZN~^~42307~^^^^^^^^^~03/01/2003~
-~04600~^~432~^1.^0^^~4~^~FLM~^^^^^^^^^^~02/01/2009~
-~04600~^~435~^1.^0^^~4~^~NC~^^^^^^^^^^~03/01/2009~
-~04600~^~601~^0.^0^^~4~^^^^^^^^^^^~02/01/2009~
-~04601~^~208~^499.^0^^~4~^~NC~^^^^^^^^^^~09/01/2015~
-~04601~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~
-~04601~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~
-~04601~^~268~^2088.^0^^~4~^^^^^^^^^^^~09/01/2015~
-~04601~^~301~^48.^0^^~1~^^^^^^^^^^^~03/01/2009~
-~04601~^~304~^5.^0^^~1~^^^^^^^^^^^~03/01/2009~
-~04601~^~305~^34.^0^^~1~^^^^^^^^^^^~03/01/2009~
-~04601~^~306~^71.^0^^~1~^^^^^^^^^^^~03/01/2009~
-~04601~^~307~^450.^0^^~1~^^^^^^^^^^^~03/01/2009~
-~04601~^~318~^1698.^0^^~4~^~NC~^^^^^^^^^^~03/01/2009~
-~04601~^~319~^456.^0^^~4~^~BFFN~^~01001~^^^^^^^^^~02/01/2003~
-~04601~^~320~^465.^0^^~4~^~NC~^^^^^^^^^^~03/01/2009~
-~04601~^~321~^107.^0^^~4~^~BFFN~^~01001~^^^^^^^^^~02/01/2003~
-~04601~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~
-~04601~^~324~^0.^0^^~4~^~BFFN~^~01002~^^^^^^^^^~09/01/2015~
-~04601~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~
-~04601~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~
-~04601~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~
-~04601~^~417~^1.^0^^~1~^^^^^^^^^^^~03/01/2009~
-~04601~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2007~
-~04601~^~432~^1.^0^^~1~^^^^^^^^^^^~03/01/2009~
-~04601~^~435~^1.^0^^~4~^~NC~^^^^^^^^^^~03/01/2009~
-~04601~^~601~^106.^0^^~4~^^^^^^^^^^^~03/01/2009~
-~04602~^~208~^499.^0^^~4~^~NC~^^^^^^^^^^~03/01/2009~
-~04602~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~
-~04602~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~
-~04602~^~268~^2088.^0^^~4~^^^^^^^^^^^~03/01/2009~
-~04602~^~301~^48.^0^^~1~^^^^^^^^^^^~03/01/2009~
-~04602~^~304~^5.^0^^~1~^^^^^^^^^^^~03/01/2009~
-~04602~^~305~^34.^0^^~1~^^^^^^^^^^^~03/01/2009~
-~04602~^~306~^71.^0^^~1~^^^^^^^^^^^~03/01/2009~
-~04602~^~307~^36.^0^^~1~^^^^^^^^^^^~03/01/2009~
-~04602~^~318~^1698.^0^^~4~^~NC~^^^^^^^^^^~03/01/2009~
-~04602~^~319~^456.^0^^~4~^~BFZN~^~04601~^^^^^^^^^~04/01/2007~
-~04602~^~320~^465.^0^^~4~^~NC~^^^^^^^^^^~03/01/2009~
-~04602~^~321~^107.^0^^~4~^~BFZN~^~04601~^^^^^^^^^~04/01/2007~
-~04602~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~
-~04602~^~324~^0.^0^^~4~^~BFFN~^~01002~^^^^^^^^^~09/01/2015~
-~04602~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~
-~04602~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~
-~04602~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~
-~04602~^~417~^1.^0^^~1~^^^^^^^^^^^~03/01/2009~
-~04602~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~
-~04602~^~432~^1.^0^^~1~^^^^^^^^^^^~03/01/2009~
-~04602~^~435~^1.^0^^~4~^~NC~^^^^^^^^^^~03/01/2009~
-~04602~^~601~^106.^0^^~4~^^^^^^^^^^^~03/01/2009~
-~04609~^~208~^897.^0^^~4~^~RA~^^^^^^^^^^~03/01/2009~
-~04609~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2003~
-~04609~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2003~
-~04609~^~268~^3753.^0^^~4~^^^^^^^^^^^~03/01/2009~
-~04609~^~301~^0.^0^^~4~^~RA~^^^^^^^^^^~03/01/2009~
-~04609~^~304~^0.^0^^~4~^~RA~^^^^^^^^^^~03/01/2009~
-~04609~^~305~^0.^0^^~4~^~RA~^^^^^^^^^^~03/01/2009~
-~04609~^~306~^0.^0^^~4~^~RA~^^^^^^^^^^~03/01/2009~
-~04609~^~307~^150.^0^^~4~^~RA~^^^^^^^^^^~03/01/2009~
-~04609~^~318~^0.^0^^~4~^~NC~^^^^^^^^^^~03/01/2009~
-~04609~^~319~^0.^0^^~4~^~BFFN~^~04002~^^^^^^^^^~01/01/2003~
-~04609~^~320~^0.^0^^~4~^~NC~^^^^^^^^^^~03/01/2009~
-~04609~^~321~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2003~
-~04609~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2003~
-~04609~^~324~^101.^0^^~4~^~BFFN~^~04002~^^^^^^^^^~03/01/2009~
-~04609~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2003~
-~04609~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2003~
-~04609~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2003~
-~04609~^~417~^0.^0^^~4~^~RA~^^^^^^^^^^~03/01/2009~
-~04609~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2003~
-~04609~^~432~^0.^0^^~4~^~RA~^^^^^^^^^^~03/01/2009~
-~04609~^~435~^0.^0^^~4~^~NC~^^^^^^^^^^~03/01/2009~
-~04609~^~601~^95.^0^^~4~^~RA~^^^^^^^^^^~03/01/2009~
-~04610~^~208~^717.^0^^~4~^~NC~^^^^^^^^^^~03/01/2009~
-~04610~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~11/01/2002~
-~04610~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~11/01/2002~
-~04610~^~268~^2999.^0^^~4~^~NC~^^^^^^^^^^~03/01/2009~
-~04610~^~301~^3.^8^0.^~1~^~A~^^^1^2.^4.^7^2.^3.^~2, 3~^~03/01/2009~
-~04610~^~304~^3.^0^^~4~^~BFZN~^^^^^^^^^^~03/01/2009~
-~04610~^~305~^5.^8^0.^~1~^~A~^^^1^5.^7.^7^4.^5.^~2, 3~^~03/01/2009~
-~04610~^~306~^18.^6^0.^~1~^~A~^^^1^15.^20.^5^15.^19.^~2, 3~^~03/01/2009~
-~04610~^~307~^751.^0^^~4~^~O~^^^^^^^^^^~07/01/2010~
-~04610~^~318~^3571.^1^^~5~^~ML~^^^^^^^^^^~03/01/2009~
-~04610~^~319~^768.^0^^~4~^~CAZN~^^^^^^^^^^~03/01/2007~
-~04610~^~320~^819.^0^^~4~^~NC~^^^^^^^^^^~03/01/2009~
-~04610~^~321~^610.^0^^~4~^~CAZN~^^^^^^^^^^~11/01/2002~
-~04610~^~322~^0.^0^^~4~^~CAZN~^^^^^^^^^^~11/01/2002~
-~04610~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2009~
-~04610~^~334~^0.^0^^~4~^~CAZN~^^^^^^^^^^~11/01/2002~
-~04610~^~337~^0.^0^^~4~^~CAZN~^^^^^^^^^^~11/01/2002~
-~04610~^~338~^0.^0^^~4~^~CAZN~^^^^^^^^^^~11/01/2002~
-~04610~^~417~^1.^0^^~4~^~BFZN~^^^^^^^^^^~03/01/2009~
-~04610~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~11/01/2002~
-~04610~^~432~^1.^0^^~4~^~BFZN~^^^^^^^^^^~03/01/2009~
-~04610~^~435~^1.^0^^~4~^~NC~^^^^^^^^^^~03/01/2009~
-~04610~^~601~^0.^0^^~4~^~BFZN~^^^^^^^^^^~03/01/2009~
-~04610~^~638~^35.^1^^~1~^~A~^^^^^^^^^^~03/01/2009~
-~04610~^~639~^75.^1^^~1~^~A~^^^^^^^^^^~03/01/2009~
-~04610~^~641~^275.^1^^~1~^~A~^^^1^275.^275.^^^^^~03/01/2009~
-~04611~^~208~^713.^0^^~4~^~NC~^^^^^^^^^^~03/01/2009~
-~04611~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~11/01/2002~
-~04611~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~11/01/2002~
-~04611~^~268~^2981.^0^^~4~^~NC~^^^^^^^^^^~03/01/2009~
-~04611~^~301~^3.^2^^~1~^~A~^^^1^2.^4.^1^^^^~03/01/2007~
-~04611~^~304~^1.^2^^~1~^~A~^^^1^1.^1.^1^^^^~03/01/2007~
-~04611~^~305~^5.^2^^~1~^~A~^^^1^4.^6.^1^^^^~03/01/2007~
-~04611~^~306~^17.^2^^~1~^~A~^^^1^11.^23.^1^^^^~03/01/2007~
-~04611~^~307~^657.^2^^~1~^~A~^^^1^606.^708.^1^^^^~03/01/2007~
-~04611~^~318~^3571.^1^^~5~^~ML~^^^^^^^^^^~03/01/2009~
-~04611~^~319~^768.^0^^~4~^~CAZN~^^^^^^^^^^~11/01/2002~
-~04611~^~320~^819.^0^^~4~^~NC~^^^^^^^^^^~03/01/2009~
-~04611~^~321~^610.^0^^~4~^~CAZN~^^^^^^^^^^~11/01/2002~
-~04611~^~322~^0.^0^^~4~^~CAZN~^^^^^^^^^^~11/01/2002~
-~04611~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2009~
-~04611~^~334~^0.^0^^~4~^~CAZN~^^^^^^^^^^~11/01/2002~
-~04611~^~337~^0.^0^^~4~^~CAZN~^^^^^^^^^^~11/01/2002~
-~04611~^~338~^0.^0^^~4~^~CAZN~^^^^^^^^^^~11/01/2002~
-~04611~^~417~^1.^0^^~4~^~BFZN~^^^^^^^^^^~03/01/2009~
-~04611~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~11/01/2002~
-~04611~^~432~^1.^0^^~4~^~BFZN~^^^^^^^^^^~03/01/2009~
-~04611~^~435~^1.^0^^~4~^~NC~^^^^^^^^^^~03/01/2009~
-~04611~^~601~^0.^0^^~4~^~BFZN~^^^^^^^^^^~03/01/2009~
-~04611~^~636~^210.^0^^~1~^~AS~^^^^^^^^^^~03/01/2007~
-~04611~^~638~^37.^1^^~1~^~A~^^^^^^^^^^~03/01/2007~
-~04611~^~639~^48.^1^^~1~^~A~^^^^^^^^^^~03/01/2007~
-~04611~^~641~^112.^1^^~1~^~A~^^^^^^^^^^~03/01/2007~
-~04612~^~208~^537.^0^^~4~^~NC~^^^^^^^^^^~03/01/2009~
-~04612~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~11/01/2002~
-~04612~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~11/01/2002~
-~04612~^~268~^2248.^0^^~4~^~NC~^^^^^^^^^^~03/01/2009~
-~04612~^~301~^21.^0^^~1~^^^^^^^^^^^~03/01/2003~
-~04612~^~304~^2.^0^^~1~^^^^^^^^^^^~03/01/2003~
-~04612~^~305~^16.^0^^~1~^^^^^^^^^^^~03/01/2003~
-~04612~^~306~^30.^0^^~1~^^^^^^^^^^^~03/01/2003~
-~04612~^~307~^785.^0^^~4~^^^^^^^^^^^~03/01/2007~
-~04612~^~318~^3571.^0^^~5~^~ML~^^^^^^^^^^~03/01/2003~
-~04612~^~319~^768.^0^^~4~^~NR~^^^^^^^^^^~03/01/2007~
-~04612~^~320~^819.^0^^~4~^~NC~^^^^^^^^^^~03/01/2007~
-~04612~^~321~^610.^0^^~4~^~CAZN~^^^^^^^^^^~11/01/2002~
-~04612~^~322~^0.^0^^~4~^~CAZN~^^^^^^^^^^~11/01/2002~
-~04612~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2009~
-~04612~^~334~^0.^0^^~4~^~CAZN~^^^^^^^^^^~11/01/2002~
-~04612~^~337~^0.^0^^~4~^~CAZN~^^^^^^^^^^~11/01/2002~
-~04612~^~338~^0.^0^^~4~^~CAZN~^^^^^^^^^^~11/01/2002~
-~04612~^~417~^1.^0^^~1~^^^^^^^^^^^~03/01/2003~
-~04612~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~11/01/2002~
-~04612~^~432~^1.^0^^~1~^^^^^^^^^^^~03/01/2007~
-~04612~^~435~^1.^0^^~4~^~NC~^^^^^^^^^^~03/01/2009~
-~04612~^~601~^0.^0^^~4~^^^^^^^^^^^~03/01/2003~
-~04612~^~638~^31.^1^^~1~^~A~^^^^^^^^^^~03/01/2007~
-~04612~^~639~^34.^1^^~1~^~A~^^^^^^^^^^~03/01/2007~
-~04612~^~641~^94.^1^^~1~^~A~^^^^^^^^^^~03/01/2007~
-~04613~^~208~^533.^0^^~4~^~NC~^^^^^^^^^^~07/01/2010~
-~04613~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~11/01/2002~
-~04613~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~11/01/2002~
-~04613~^~268~^2230.^0^^~4~^~NC~^^^^^^^^^^~07/01/2010~
-~04613~^~301~^21.^0^^~4~^~BFZN~^^^^^^^^^^~03/01/2007~
-~04613~^~304~^2.^0^^~4~^~BFZN~^^^^^^^^^^~03/01/2007~
-~04613~^~305~^16.^0^^~4~^~BFZN~^^^^^^^^^^~03/01/2007~
-~04613~^~306~^30.^0^^~4~^~BFZN~^^^^^^^^^^~03/01/2007~
-~04613~^~307~^615.^0^^~8~^~LC~^^^^^^^^^^~07/01/2010~
-~04613~^~318~^3571.^0^^~5~^~ML~^^^^^^^^^^~03/01/2007~
-~04613~^~319~^768.^0^^~4~^~CAZN~^^^^^^^^^^~12/01/2006~
-~04613~^~320~^819.^0^^~4~^~NC~^^^^^^^^^^~07/01/2010~
-~04613~^~321~^610.^0^^~4~^~CAZN~^^^^^^^^^^~11/01/2002~
-~04613~^~322~^0.^0^^~4~^~CAZN~^^^^^^^^^^~11/01/2002~
-~04613~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2009~
-~04613~^~334~^0.^0^^~4~^~CAZN~^^^^^^^^^^~11/01/2002~
-~04613~^~337~^0.^0^^~4~^~CAZN~^^^^^^^^^^~11/01/2002~
-~04613~^~338~^0.^0^^~4~^~CAZN~^^^^^^^^^^~11/01/2002~
-~04613~^~417~^1.^0^^~4~^~BFZN~^^^^^^^^^^~03/01/2007~
-~04613~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~11/01/2002~
-~04613~^~432~^1.^0^^~4~^~BFZN~^^^^^^^^^^~07/01/2010~
-~04613~^~435~^1.^0^^~4~^~NC~^^^^^^^^^^~07/01/2010~
-~04613~^~601~^1.^1^^~1~^~A~^^^^^^^^^^~03/01/2007~
-~04614~^~208~^526.^0^^~4~^~RA~^^^^^^^^^^~03/01/2003~
-~04614~^~262~^0.^0^^~4~^~RA~^^^^^^^^^^~03/01/2003~
-~04614~^~263~^0.^0^^~4~^~RA~^^^^^^^^^^~03/01/2003~
-~04614~^~268~^2199.^0^^~4~^~RA~^^^^^^^^^^~03/01/2003~
-~04614~^~301~^21.^0^^~4~^~RA~^^^^^^^^^^~03/01/2003~
-~04614~^~304~^2.^0^^~4~^~RA~^^^^^^^^^^~03/01/2003~
-~04614~^~305~^16.^0^^~4~^~RA~^^^^^^^^^^~03/01/2003~
-~04614~^~306~^30.^0^^~4~^~RA~^^^^^^^^^^~03/01/2003~
-~04614~^~307~^700.^0^^~4~^~RA~^^^^^^^^^^~07/01/2010~
-~04614~^~318~^3571.^0^^~4~^~RA~^^^^^^^^^^~03/01/2003~
-~04614~^~319~^768.^0^^~4~^~RA~^^^^^^^^^^~03/01/2003~
-~04614~^~320~^819.^0^^~4~^~NC~^^^^^^^^^^~04/01/2003~
-~04614~^~321~^610.^0^^~4~^~RA~^^^^^^^^^^~03/01/2003~
-~04614~^~322~^0.^0^^~4~^~RA~^^^^^^^^^^~03/01/2003~
-~04614~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2009~
-~04614~^~334~^0.^0^^~4~^~RA~^^^^^^^^^^~03/01/2003~
-~04614~^~337~^0.^0^^~4~^~RA~^^^^^^^^^^~03/01/2003~
-~04614~^~338~^0.^0^^~4~^~RA~^^^^^^^^^^~03/01/2003~
-~04614~^~417~^1.^0^^~4~^~RA~^^^^^^^^^^~03/01/2003~
-~04614~^~431~^0.^0^^~4~^~RA~^^^^^^^^^^~03/01/2003~
-~04614~^~432~^1.^0^^~4~^~RA~^^^^^^^^^^~03/01/2003~
-~04614~^~435~^1.^0^^~4~^~NC~^^^^^^^^^^~03/01/2009~
-~04614~^~601~^1.^0^^~4~^~RA~^^^^^^^^^^~03/01/2003~
-~04614~^~638~^25.^0^^~4~^~RA~^^^^^^^^^^~03/01/2003~
-~04614~^~639~^28.^0^^~4~^~RA~^^^^^^^^^^~03/01/2003~
-~04614~^~641~^74.^0^^~4~^~RA~^^^^^^^^^^~03/01/2003~
-~04615~^~208~^884.^0^^~4~^~NC~^^^^^^^^^^~05/01/2010~
-~04615~^~262~^0.^0^^~4~^~BFZN~^~04031~^^^^^^^^^~03/01/2003~
-~04615~^~263~^0.^0^^~4~^~BFZN~^~04031~^^^^^^^^^~03/01/2003~
-~04615~^~268~^3699.^0^^~4~^~NC~^^^^^^^^^^~05/01/2010~
-~04615~^~301~^1.^6^0.^~1~^~A~^^^1^1.^2.^5^0.^1.^~1, 2, 3~^~04/01/2006~
-~04615~^~304~^0.^6^0.^~1~^~A~^^^1^0.^0.^5^0.^0.^~2, 3~^~04/01/2006~
-~04615~^~305~^0.^6^0.^~1~^~A~^^^1^0.^0.^^^^~1, 2, 3~^~04/01/2006~
-~04615~^~306~^0.^6^0.^~1~^~A~^^^1^0.^0.^^^^~1, 2, 3~^~04/01/2006~
-~04615~^~307~^4.^6^0.^~1~^~A~^^^1^3.^6.^5^3.^5.^~1, 2, 3~^~04/01/2006~
-~04615~^~318~^0.^0^^~4~^~BFZN~^^^^^^^^^^~06/01/2006~
-~04615~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2003~
-~04615~^~320~^0.^0^^~4~^~NC~^^^^^^^^^^~05/01/2010~
-~04615~^~321~^0.^0^^~4~^~BFZN~^~04031~^^^^^^^^^~03/01/2003~
-~04615~^~322~^0.^0^^~4~^~BFZN~^~04031~^^^^^^^^^~03/01/2003~
-~04615~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~
-~04615~^~334~^0.^0^^~4~^~BFZN~^~04031~^^^^^^^^^~03/01/2003~
-~04615~^~337~^0.^0^^~4~^~BFZN~^~04031~^^^^^^^^^~03/01/2003~
-~04615~^~338~^0.^0^^~4~^~BFZN~^~04031~^^^^^^^^^~03/01/2003~
-~04615~^~417~^0.^0^^~4~^~BFZN~^^^^^^^^^^~06/01/2006~
-~04615~^~431~^0.^0^^~4~^~BFZN~^~04031~^^^^^^^^^~03/01/2003~
-~04615~^~432~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2010~
-~04615~^~435~^0.^0^^~4~^~NC~^^^^^^^^^^~05/01/2010~
-~04615~^~601~^0.^6^0.^~1~^~A~^^^1^0.^0.^^^^~1, 2, 3~^~04/01/2006~
-~04615~^~638~^51.^6^5.^~1~^~A~^^^1^27.^64.^5^36.^65.^~2, 3~^~04/01/2006~
-~04615~^~639~^50.^6^3.^~1~^~A~^^^1^33.^57.^5^41.^59.^~2, 3~^~04/01/2006~
-~04615~^~641~^138.^6^14.^~1~^~A~^^^1^84.^168.^5^101.^173.^~2, 3~^~04/01/2006~
-~04617~^~208~^717.^0^^~4~^~BFZN~^~04610~^^^^^^^^^~03/01/2009~
-~04617~^~262~^0.^0^^~4~^~BFZN~^~04610~^^^^^^^^^~03/01/2009~
-~04617~^~263~^0.^0^^~4~^~BFZN~^~04610~^^^^^^^^^~03/01/2009~
-~04617~^~268~^2999.^0^^~4~^~BFZN~^^^^^^^^^^~03/01/2009~
-~04617~^~301~^3.^0^^~4~^~BFZN~^~04610~^^^^^^^^^~03/01/2009~
-~04617~^~304~^3.^0^^~4~^~BFZN~^~04610~^^^^^^^^^~03/01/2009~
-~04617~^~305~^5.^0^^~4~^~BFZN~^~04610~^^^^^^^^^~03/01/2009~
-~04617~^~306~^18.^0^^~4~^~BFZN~^~04610~^^^^^^^^^~03/01/2009~
-~04617~^~307~^2.^0^^~4~^~O~^~04610~^^^^^^^^^~03/01/2009~
-~04617~^~318~^3577.^0^^~4~^~NC~^^^^^^^^^^~03/01/2009~
-~04617~^~319~^768.^0^^~4~^~BFZN~^~04610~^^^^^^^^^~03/01/2009~
-~04617~^~320~^819.^0^^~4~^~BFZN~^~04610~^^^^^^^^^~03/01/2009~
-~04617~^~321~^610.^0^^~4~^~BFZN~^~04610~^^^^^^^^^~03/01/2009~
-~04617~^~322~^0.^0^^~4~^~BFZN~^~04610~^^^^^^^^^~03/01/2009~
-~04617~^~324~^0.^0^^~4~^~BFZN~^~04610~^^^^^^^^^~03/01/2009~
-~04617~^~334~^0.^0^^~4~^~BFZN~^~04610~^^^^^^^^^~03/01/2009~
-~04617~^~337~^0.^0^^~4~^~BFZN~^~04610~^^^^^^^^^~03/01/2009~
-~04617~^~338~^0.^0^^~4~^~BFZN~^~04610~^^^^^^^^^~03/01/2009~
-~04617~^~417~^1.^0^^~4~^~BFZN~^~04610~^^^^^^^^^~03/01/2009~
-~04617~^~431~^0.^0^^~4~^~BFZN~^~04610~^^^^^^^^^~03/01/2009~
-~04617~^~432~^1.^0^^~4~^~BFZN~^~04610~^^^^^^^^^~03/01/2009~
-~04617~^~435~^1.^0^^~4~^~NC~^~04610~^^^^^^^^^~03/01/2009~
-~04617~^~601~^0.^0^^~4~^~BFZN~^~04610~^^^^^^^^^~03/01/2009~
-~04618~^~208~^713.^0^^~4~^~BFZN~^~04611~^^^^^^^^^~03/01/2007~
-~04618~^~262~^0.^0^^~4~^~BFZN~^~04611~^^^^^^^^^~03/01/2009~
-~04618~^~263~^0.^0^^~4~^~BFZN~^~04611~^^^^^^^^^~03/01/2009~
-~04618~^~268~^2981.^0^^~4~^~BFZN~^^^^^^^^^^~03/01/2009~
-~04618~^~301~^3.^0^^~4~^~BFZN~^~04611~^^^^^^^^^~03/01/2007~
-~04618~^~304~^1.^0^^~4~^~BFZN~^~04611~^^^^^^^^^~03/01/2007~
-~04618~^~305~^5.^0^^~4~^~BFZN~^~04611~^^^^^^^^^~03/01/2007~
-~04618~^~306~^17.^0^^~4~^~BFZN~^~04611~^^^^^^^^^~03/01/2007~
-~04618~^~307~^28.^0^^~4~^~BFZN~^^^^^^^^^^~03/01/2009~
-~04618~^~318~^3577.^0^^~4~^~NC~^^^^^^^^^^~03/01/2009~
-~04618~^~319~^768.^0^^~4~^~BFZN~^~04611~^^^^^^^^^~03/01/2007~
-~04618~^~320~^819.^0^^~4~^~BFZN~^~04611~^^^^^^^^^~03/01/2007~
-~04618~^~321~^610.^0^^~4~^~BFZN~^~04611~^^^^^^^^^~03/01/2007~
-~04618~^~322~^0.^0^^~4~^~BFZN~^~04611~^^^^^^^^^~03/01/2009~
-~04618~^~324~^0.^0^^~4~^~BFZN~^~04611~^^^^^^^^^~03/01/2009~
-~04618~^~334~^0.^0^^~4~^~BFZN~^~04611~^^^^^^^^^~03/01/2009~
-~04618~^~337~^0.^0^^~4~^~BFZN~^~04611~^^^^^^^^^~03/01/2009~
-~04618~^~338~^0.^0^^~4~^~BFZN~^~04611~^^^^^^^^^~03/01/2009~
-~04618~^~417~^1.^0^^~4~^~BFZN~^~04611~^^^^^^^^^~03/01/2007~
-~04618~^~431~^0.^0^^~4~^~BFZN~^~04611~^^^^^^^^^~03/01/2009~
-~04618~^~432~^1.^0^^~4~^~BFZN~^~04611~^^^^^^^^^~03/01/2007~
-~04618~^~435~^1.^0^^~4~^~NC~^~04611~^^^^^^^^^~03/01/2009~
-~04618~^~601~^0.^0^^~4~^~BFZN~^~04611~^^^^^^^^^~03/01/2007~
-~04620~^~208~^533.^0^^~4~^~BFZN~^~04613~^^^^^^^^^~03/01/2007~
-~04620~^~262~^0.^0^^~4~^~BFZN~^~04613~^^^^^^^^^~03/01/2009~
-~04620~^~263~^0.^0^^~4~^~BFZN~^~04613~^^^^^^^^^~03/01/2009~
-~04620~^~268~^2230.^0^^~4~^~BFZN~^^^^^^^^^^~03/01/2009~
-~04620~^~301~^21.^0^^~4~^~BFZN~^~04613~^^^^^^^^^~03/01/2007~
-~04620~^~304~^2.^0^^~4~^~BFZN~^~04613~^^^^^^^^^~03/01/2007~
-~04620~^~305~^16.^0^^~4~^~BFZN~^~04613~^^^^^^^^^~03/01/2007~
-~04620~^~306~^30.^0^^~4~^~BFZN~^~04613~^^^^^^^^^~03/01/2007~
-~04620~^~307~^2.^0^^~4~^~O~^^^^^^^^^^~03/01/2009~
-~04620~^~318~^3577.^0^^~4~^~NC~^^^^^^^^^^~03/01/2009~
-~04620~^~319~^768.^0^^~4~^~BFZN~^~04613~^^^^^^^^^~03/01/2007~
-~04620~^~320~^819.^0^^~4~^~BFZN~^~04613~^^^^^^^^^~03/01/2007~
-~04620~^~321~^610.^0^^~4~^~BFZN~^~04613~^^^^^^^^^~03/01/2007~
-~04620~^~322~^0.^0^^~4~^~BFZN~^~04613~^^^^^^^^^~03/01/2009~
-~04620~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2009~
-~04620~^~334~^0.^0^^~4~^~BFZN~^~04613~^^^^^^^^^~03/01/2009~
-~04620~^~337~^0.^0^^~4~^~BFZN~^~04613~^^^^^^^^^~03/01/2009~
-~04620~^~338~^0.^0^^~4~^~BFZN~^~04613~^^^^^^^^^~03/01/2009~
-~04620~^~417~^1.^0^^~4~^~BFZN~^~04613~^^^^^^^^^~03/01/2007~
-~04620~^~431~^0.^0^^~4~^~BFZN~^~04613~^^^^^^^^^~03/01/2009~
-~04620~^~432~^1.^0^^~4~^~BFZN~^~04613~^^^^^^^^^~03/01/2007~
-~04620~^~435~^1.^0^^~4~^~NC~^~04613~^^^^^^^^^~03/01/2009~
-~04620~^~601~^1.^0^^~4~^~BFZN~^~04613~^^^^^^^^^~03/01/2007~
-~04624~^~208~^43.^0^^~4~^~NC~^^^^^^^^^^~12/01/2006~
-~04624~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~11/01/2002~
-~04624~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~11/01/2002~
-~04624~^~268~^180.^0^^~4~^^^^^^^^^^^~12/01/2006~
-~04624~^~301~^38.^0^^~4~^~RA~^^^^^^^^^^~12/01/2006~
-~04624~^~304~^4.^0^^~4~^~RA~^^^^^^^^^^~12/01/2006~
-~04624~^~305~^30.^0^^~4~^~RA~^^^^^^^^^^~12/01/2006~
-~04624~^~306~^50.^0^^~4~^~RA~^^^^^^^^^^~12/01/2006~
-~04624~^~307~^833.^0^^~8~^~LC~^^^^^^^^^^~12/01/2006~
-~04624~^~318~^3571.^0^^~5~^~ML~^^^^^^^^^^~12/01/2006~
-~04624~^~319~^768.^0^^~4~^~CAZN~^^^^^^^^^^~11/01/2002~
-~04624~^~320~^819.^0^^~4~^~NC~^^^^^^^^^^~04/01/2003~
-~04624~^~321~^610.^0^^~4~^~CAZN~^^^^^^^^^^~11/01/2002~
-~04624~^~322~^0.^0^^~4~^~CAZN~^^^^^^^^^^~11/01/2002~
-~04624~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2009~
-~04624~^~334~^0.^0^^~4~^~CAZN~^^^^^^^^^^~11/01/2002~
-~04624~^~337~^0.^0^^~4~^~CAZN~^^^^^^^^^^~11/01/2002~
-~04624~^~338~^0.^0^^~4~^~CAZN~^^^^^^^^^^~11/01/2002~
-~04624~^~417~^2.^0^^~4~^~RA~^^^^^^^^^^~12/01/2006~
-~04624~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~11/01/2002~
-~04624~^~432~^2.^0^^~4~^~RA~^^^^^^^^^^~12/01/2006~
-~04624~^~435~^2.^0^^~4~^~NC~^^^^^^^^^^~03/01/2009~
-~04624~^~601~^1.^0^^~4~^~RA~^^^^^^^^^^~12/01/2006~
-~04626~^~208~^630.^0^^~9~^~MC~^^^^^^^^^^~01/01/1999~
-~04626~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~11/01/2002~
-~04626~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~11/01/2002~
-~04626~^~268~^2636.^0^^~9~^^^^^^^^^^^~12/01/2006~
-~04626~^~301~^20.^0^^~4~^~BFZN~^^^^^^^^^^~01/01/1999~
-~04626~^~304~^2.^0^^~4~^~BFZN~^^^^^^^^^^~01/01/1999~
-~04626~^~305~^16.^0^^~4~^~BFZN~^^^^^^^^^^~01/01/1999~
-~04626~^~306~^25.^0^^~4~^~BFZN~^^^^^^^^^^~01/01/1999~
-~04626~^~307~^590.^0^^~9~^~MC~^^^^^^^^^^~01/01/1999~
-~04626~^~318~^3577.^0^^~4~^~NC~^^^^^^^^^^~11/01/2002~
-~04626~^~319~^768.^0^^~4~^~CAZN~^^^^^^^^^^~11/01/2002~
-~04626~^~320~^819.^0^^~4~^~NC~^^^^^^^^^^~11/01/2002~
-~04626~^~321~^610.^0^^~4~^~CAZN~^^^^^^^^^^~11/01/2002~
-~04626~^~322~^0.^0^^~4~^~CAZN~^^^^^^^^^^~11/01/2002~
-~04626~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~
-~04626~^~334~^0.^0^^~4~^~CAZN~^^^^^^^^^^~11/01/2002~
-~04626~^~337~^0.^0^^~4~^~CAZN~^^^^^^^^^^~11/01/2002~
-~04626~^~338~^0.^0^^~4~^~CAZN~^^^^^^^^^^~11/01/2002~
-~04626~^~417~^1.^0^^~4~^~BFZN~^^^^^^^^^^~01/01/1999~
-~04626~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~11/01/2002~
-~04626~^~432~^1.^0^^~4~^~BFZN~^^^^^^^^^^~11/01/2002~
-~04626~^~435~^1.^0^^~4~^~NC~^^^^^^^^^^~03/01/2009~
-~04626~^~601~^0.^0^^~9~^~MC~^^^^^^^^^^~01/01/1999~
-~04627~^~208~^330.^0^^~9~^~MC~^^^^^^^^^^~01/01/1999~
-~04627~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~11/01/2002~
-~04627~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~11/01/2002~
-~04627~^~268~^1381.^0^^~9~^^^^^^^^^^^~10/01/2004~
-~04627~^~301~^50.^0^^~4~^~BFZN~^^^^^^^^^^~01/01/1999~
-~04627~^~304~^5.^0^^~4~^~BFZN~^^^^^^^^^^~01/01/1999~
-~04627~^~305~^39.^0^^~4~^~BFZN~^^^^^^^^^^~01/01/1999~
-~04627~^~306~^64.^0^^~4~^~BFZN~^^^^^^^^^^~01/01/1999~
-~04627~^~307~^630.^0^^~9~^~MC~^^^^^^^^^^~01/01/1999~
-~04627~^~318~^3577.^0^^~4~^~NC~^^^^^^^^^^~11/01/2002~
-~04627~^~319~^768.^0^^~4~^~CAZN~^^^^^^^^^^~11/01/2002~
-~04627~^~320~^819.^0^^~4~^~NC~^^^^^^^^^^~11/01/2002~
-~04627~^~321~^610.^0^^~4~^~CAZN~^^^^^^^^^^~11/01/2002~
-~04627~^~322~^0.^0^^~4~^~CAZN~^^^^^^^^^^~11/01/2002~
-~04627~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~
-~04627~^~334~^0.^0^^~4~^~CAZN~^^^^^^^^^^~11/01/2002~
-~04627~^~337~^0.^0^^~4~^~CAZN~^^^^^^^^^^~11/01/2002~
-~04627~^~338~^0.^0^^~4~^~CAZN~^^^^^^^^^^~11/01/2002~
-~04627~^~417~^3.^0^^~4~^~BFZN~^^^^^^^^^^~01/01/1999~
-~04627~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~11/01/2002~
-~04627~^~432~^3.^0^^~4~^~BFZN~^^^^^^^^^^~11/01/2002~
-~04627~^~435~^3.^0^^~4~^~NC~^^^^^^^^^^~03/01/2009~
-~04627~^~601~^0.^0^^~9~^~MC~^^^^^^^^^^~01/01/1999~
-~04628~^~208~^717.^0^^~4~^~NC~^^^^^^^^^^~03/01/2007~
-~04628~^~268~^2999.^0^^~4~^~NC~^^^^^^^^^^~03/01/2007~
-~04628~^~301~^3.^8^0.^~1~^~A~^^^1^2.^4.^7^2.^3.^~2, 3~^~02/01/2001~
-~04628~^~304~^1.^8^0.^~1~^~A~^^^1^1.^1.^7^0.^0.^~2, 3~^~02/01/2001~
-~04628~^~305~^5.^8^0.^~1~^~A~^^^1^5.^7.^7^4.^5.^~2, 3~^~02/01/2001~
-~04628~^~306~^18.^6^0.^~1~^~A~^^^1^15.^20.^5^15.^19.^~2, 3~^~02/01/2001~
-~04628~^~307~^654.^8^19.^~1~^~A~^^^1^522.^706.^7^606.^701.^~2, 3~^~02/01/2001~
-~04628~^~417~^1.^2^^~1~^~A~^^^^^^^^^^~05/01/2007~
-~04628~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2001~
-~04628~^~432~^1.^2^^~1~^~A~^^^^^^^^^^~03/01/2007~
-~04628~^~435~^1.^0^^~4~^~NC~^^^^^^^^^^~05/01/2007~
-~04628~^~601~^0.^4^0.^~1~^~A~^^^1^0.^0.^^^^~2, 3~^~02/01/2001~
-~04628~^~638~^35.^1^^~1~^~A~^^^^^^^^^^~03/01/2007~
-~04628~^~639~^75.^1^^~1~^~A~^^^^^^^^^^~03/01/2007~
-~04628~^~641~^275.^1^^~1~^~A~^^^^^^^^^^~03/01/2007~
-~04629~^~208~^628.^0^^~4~^~NC~^^^^^^^^^^~05/01/2009~
-~04629~^~268~^2627.^0^^~4~^~NC~^^^^^^^^^^~05/01/2009~
-~04629~^~301~^7.^10^1.^~1~^~A~^^^1^6.^8.^1^-6.^19.^~4~^~02/01/2001~
-~04629~^~304~^2.^10^0.^~1~^~A~^^^1^2.^2.^1^-1.^4.^~4~^~02/01/2001~
-~04629~^~305~^10.^10^0.^~1~^~A~^^^1^10.^11.^1^-2.^22.^~4~^~02/01/2001~
-~04629~^~306~^46.^10^5.^~1~^~A~^^^1^38.^49.^1^-27.^118.^~4~^~02/01/2001~
-~04629~^~307~^700.^10^8.^~1~^~A~^^^1^689.^705.^1^590.^809.^~4~^~02/01/2001~
-~04629~^~318~^3571.^4^^~8~^~LC~^^^1^3571.^3571.^^^^~2~^~03/01/2007~
-~04629~^~417~^1.^3^0.^~1~^~A~^^^1^1.^1.^1^0.^2.^~4~^~02/01/2001~
-~04629~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2001~
-~04629~^~432~^1.^3^0.^~1~^~A~^^^1^1.^1.^1^0.^2.^^~03/01/2007~
-~04629~^~435~^1.^0^^~4~^~NC~^^^^^^^^^^~05/01/2009~
-~04629~^~601~^0.^6^0.^~1~^~A~^^^1^0.^0.^1^0.^0.^~4~^~02/01/2001~
-~04629~^~638~^25.^6^0.^~1~^~A~^^^1^24.^26.^1^15.^34.^~4~^~02/01/2001~
-~04629~^~639~^31.^6^0.^~1~^~A~^^^1^31.^31.^1^26.^34.^~4~^~02/01/2001~
-~04629~^~641~^81.^6^2.^~1~^~A~^^^1^80.^84.^1^54.^107.^~4~^~02/01/2001~
-~04630~^~208~^401.^0^^~4~^~NC~^^^^^^^^^^~11/01/2016~
-~04630~^~268~^1679.^0^^~4~^~NC~^^^^^^^^^^~11/01/2016~
-~04630~^~301~^2.^18^0.^~1~^~A~^^^1^0.^5.^17^0.^2.^~1, 2, 3~^~11/01/2016~
-~04630~^~304~^1.^18^0.^~1~^~A~^^^1^0.^1.^17^0.^0.^~1, 2, 3~^~03/01/2002~
-~04630~^~305~^4.^18^0.^~1~^~A~^^^1^3.^4.^17^3.^4.^~2, 3~^~03/01/2002~
-~04630~^~306~^17.^18^3.^~1~^~A~^^^1^5.^64.^17^8.^24.^~2, 3~^~11/01/2016~
-~04630~^~307~^716.^18^21.^~1~^~A~^^^1^618.^894.^17^669.^761.^~2, 3~^~11/01/2016~
-~04630~^~417~^1.^1^^~1~^~A~^^^^^^^^^~1~^~11/01/2016~
-~04630~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2002~
-~04630~^~432~^1.^1^^~1~^~A~^^^^^^^^^^~11/01/2016~
-~04630~^~435~^1.^0^^~4~^~NC~^^^^^^^^^^~11/01/2016~
-~04631~^~208~^44.^0^^~4~^~NC~^^^^^^^^^^~04/01/2002~
-~04631~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2003~
-~04631~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2003~
-~04631~^~268~^184.^0^^~4~^~NC~^^^^^^^^^^~04/01/2002~
-~04631~^~301~^8.^2^^~1~^~A~^^^1^8.^8.^1^^^^~04/01/2002~
-~04631~^~304~^1.^2^^~1~^~A~^^^1^1.^1.^^^^^~04/01/2002~
-~04631~^~305~^2.^2^^~1~^~A~^^^1^1.^3.^1^^^~1~^~04/01/2002~
-~04631~^~306~^36.^2^^~1~^~A~^^^1^36.^37.^1^^^^~04/01/2002~
-~04631~^~307~^580.^2^^~1~^~A~^^^1^579.^580.^1^^^^~04/01/2002~
-~04631~^~318~^3307.^0^^~4~^^^^^^^^^^^~12/01/2006~
-~04631~^~319~^993.^0^^~4~^~NC~^^^^^^^^^^~04/01/2003~
-~04631~^~320~^993.^0^^~4~^~NC~^^^^^^^^^^~04/01/2003~
-~04631~^~321~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2003~
-~04631~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2003~
-~04631~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~
-~04631~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2003~
-~04631~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2003~
-~04631~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2003~
-~04631~^~417~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2002~
-~04631~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~07/01/2002~
-~04631~^~432~^0.^0^^~7~^~Z~^^^^^^^^^^~07/01/2002~
-~04631~^~435~^0.^0^^~4~^~NC~^^^^^^^^^^~03/01/2009~
-~04631~^~601~^0.^2^^~1~^~A~^^^1^0.^0.^1^^^^~04/01/2002~
-~04631~^~638~^1.^2^^~1~^~A~^^^1^1.^1.^1^^^^~04/01/2002~
-~04631~^~639~^1.^2^^~1~^~A~^^^1^1.^1.^1^^^^~04/01/2002~
-~04631~^~641~^2.^2^^~1~^~A~^^^1^2.^2.^1^^^^~04/01/2002~
-~04633~^~208~^175.^0^^~4~^^^^^^^^^^^~12/01/2006~
-~04633~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2003~
-~04633~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2003~
-~04633~^~268~^732.^0^^~4~^^^^^^^^^^^~12/01/2006~
-~04633~^~301~^0.^0^^~4~^^^^^^^^^^^~12/01/2006~
-~04633~^~304~^1.^0^^~4~^^^^^^^^^^^~12/01/2006~
-~04633~^~305~^14.^0^^~4~^^^^^^^^^^^~12/01/2006~
-~04633~^~306~^25.^0^^~4~^^^^^^^^^^^~12/01/2006~
-~04633~^~307~^733.^0^^~8~^^^^^^^^^^^~12/01/2006~
-~04633~^~318~^3577.^0^^~4~^~NC~^^^^^^^^^^~03/01/2003~
-~04633~^~319~^768.^0^^~4~^~CAZN~^^^^^^^^^^~11/01/2002~
-~04633~^~320~^819.^0^^~4~^~NC~^^^^^^^^^^~03/01/2003~
-~04633~^~321~^610.^0^^~4~^~CAZN~^^^^^^^^^^~11/01/2002~
-~04633~^~322~^0.^0^^~4~^~CAZN~^^^^^^^^^^~11/01/2002~
-~04633~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~
-~04633~^~334~^0.^0^^~4~^~CAZN~^^^^^^^^^^~11/01/2002~
-~04633~^~337~^0.^0^^~4~^~CAZN~^^^^^^^^^^~11/01/2002~
-~04633~^~338~^0.^0^^~4~^~CAZN~^^^^^^^^^^~11/01/2002~
-~04633~^~417~^0.^0^^~4~^^^^^^^^^^^~12/01/2006~
-~04633~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2003~
-~04633~^~432~^0.^0^^~4~^^^^^^^^^^^~12/01/2006~
-~04633~^~435~^0.^0^^~4~^~NC~^^^^^^^^^^~03/01/2009~
-~04633~^~601~^0.^0^^~7~^^^^^^^^^^^~12/01/2006~
-~04634~^~208~^175.^0^^~4~^~BFZN~^~04633~^^^^^^^^^~03/01/2003~
-~04634~^~262~^0.^0^^~4~^~BFZN~^~04633~^^^^^^^^^~03/01/2003~
-~04634~^~263~^0.^0^^~4~^~BFZN~^~04633~^^^^^^^^^~03/01/2003~
-~04634~^~268~^732.^0^^~4~^~BFZN~^~04633~^^^^^^^^^~03/01/2003~
-~04634~^~301~^0.^0^^~4~^~BFZN~^~04633~^^^^^^^^^~03/01/2003~
-~04634~^~304~^1.^0^^~4~^~BFZN~^~04633~^^^^^^^^^~03/01/2003~
-~04634~^~305~^14.^0^^~4~^~BFZN~^~04633~^^^^^^^^^~03/01/2003~
-~04634~^~306~^25.^0^^~4~^~BFZN~^~04633~^^^^^^^^^~03/01/2003~
-~04634~^~307~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2003~
-~04634~^~318~^3577.^0^^~4~^~BFZN~^~04633~^^^^^^^^^~04/01/2003~
-~04634~^~319~^768.^0^^~4~^~BFZN~^~04633~^^^^^^^^^~03/01/2003~
-~04634~^~320~^819.^0^^~4~^~BFZN~^~04633~^^^^^^^^^~04/01/2003~
-~04634~^~321~^610.^0^^~4~^~BFZN~^~04633~^^^^^^^^^~03/01/2003~
-~04634~^~322~^0.^0^^~4~^~BFZN~^~04633~^^^^^^^^^~03/01/2003~
-~04634~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~
-~04634~^~334~^0.^0^^~4~^~BFZN~^~04633~^^^^^^^^^~03/01/2003~
-~04634~^~337~^0.^0^^~4~^~BFZN~^~04633~^^^^^^^^^~03/01/2003~
-~04634~^~338~^0.^0^^~4~^~BFZN~^~04633~^^^^^^^^^~03/01/2003~
-~04634~^~417~^0.^0^^~4~^~BFZN~^~04633~^^^^^^^^^~03/01/2003~
-~04634~^~431~^0.^0^^~4~^~BFZN~^~04633~^^^^^^^^^~03/01/2003~
-~04634~^~432~^0.^0^^~4~^~BFZN~^~04633~^^^^^^^^^~03/01/2003~
-~04634~^~435~^0.^0^^~4~^~NC~^~04633~^^^^^^^^^~03/01/2009~
-~04634~^~601~^0.^0^^~4~^~BFZN~^~04633~^^^^^^^^^~03/01/2003~
-~04635~^~208~^132.^0^^~4~^~NC~^^^^^^^^^^~02/01/2003~
-~04635~^~262~^0.^0^^~4~^~FLA~^^^^^^^^^^~02/01/2003~
-~04635~^~263~^0.^0^^~4~^~FLA~^^^^^^^^^^~02/01/2003~
-~04635~^~268~^554.^0^^~4~^~NC~^^^^^^^^^^~02/01/2003~
-~04635~^~301~^11.^3^2.^~1~^~A~^^^1^9.^17.^2^0.^23.^~2, 3~^~02/01/2003~
-~04635~^~304~^4.^3^0.^~1~^~A~^^^1^3.^5.^2^2.^5.^~2, 3~^~02/01/2003~
-~04635~^~305~^1.^3^0.^~1~^~A~^^^1^1.^2.^2^0.^1.^~2, 3~^~02/01/2003~
-~04635~^~306~^122.^3^3.^~1~^~A~^^^1^116.^129.^2^105.^139.^~2, 3~^~02/01/2003~
-~04635~^~307~^788.^0^^~4~^~O~^^^^^^^^^^~07/01/2010~
-~04635~^~318~^11.^0^^~4~^~NC~^^^^^^^^^^~02/01/2003~
-~04635~^~319~^0.^0^^~4~^~FLA~^^^^^^^^^^~02/01/2003~
-~04635~^~320~^1.^0^^~4~^~NC~^^^^^^^^^^~02/01/2003~
-~04635~^~321~^0.^3^0.^~1~^~A~^^^1^0.^0.^^^^~1, 2, 3~^~02/01/2003~
-~04635~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~
-~04635~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~
-~04635~^~334~^13.^3^6.^~1~^~A~^^^1^0.^21.^2^-15.^41.^~1, 2, 3~^~02/01/2003~
-~04635~^~337~^1587.^3^77.^~1~^~A~^^^1^1475.^1737.^2^1251.^1922.^~2, 3~^~02/01/2003~
-~04635~^~338~^0.^0^^~4~^~NR~^^^^^^^^^^~02/01/2003~
-~04635~^~417~^12.^1^^~1~^~A~^^^^^^^^^^~02/01/2003~
-~04635~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~
-~04635~^~432~^12.^1^^~1~^~A~^^^^^^^^^^~02/01/2003~
-~04635~^~435~^12.^0^^~4~^~NC~^^^^^^^^^^~04/01/2007~
-~04635~^~601~^5.^1^^~1~^~A~^^^^^^^^^^~02/01/2003~
-~04636~^~208~^47.^0^^~4~^~NC~^^^^^^^^^^~07/01/2010~
-~04636~^~262~^0.^0^^~4~^~FLA~^^^^^^^^^^~02/01/2003~
-~04636~^~263~^0.^0^^~4~^~FLA~^^^^^^^^^^~02/01/2003~
-~04636~^~268~^195.^0^^~4~^~NC~^^^^^^^^^^~07/01/2010~
-~04636~^~301~^30.^3^6.^~1~^~A~^^^1^17.^40.^2^0.^59.^~2, 3~^~02/01/2003~
-~04636~^~304~^5.^3^0.^~1~^~A~^^^1^4.^5.^2^3.^5.^~2, 3~^~02/01/2003~
-~04636~^~305~^109.^3^54.^~1~^~A~^^^1^1.^179.^2^-126.^345.^~2, 3~^~02/01/2003~
-~04636~^~306~^102.^3^5.^~1~^~A~^^^1^92.^109.^2^80.^124.^~2, 3~^~02/01/2003~
-~04636~^~307~^1129.^3^35.^~1~^~A~^^^1^1073.^1195.^2^976.^1281.^~2, 3~^~07/01/2010~
-~04636~^~318~^77.^0^^~4~^~NC~^^^^^^^^^^~07/01/2010~
-~04636~^~319~^0.^0^^~4~^~FLA~^^^^^^^^^^~02/01/2003~
-~04636~^~320~^4.^0^^~4~^~NC~^^^^^^^^^^~07/01/2010~
-~04636~^~321~^40.^3^11.^~1~^~A~^^^1^20.^59.^2^-8.^88.^~2, 3~^~02/01/2003~
-~04636~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~
-~04636~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~
-~04636~^~334~^11.^3^6.^~1~^~A~^^^1^0.^21.^2^-15.^36.^~1, 2, 3~^~02/01/2003~
-~04636~^~337~^5.^3^5.^~1~^~A~^^^1^0.^15.^2^-16.^26.^~2, 3~^~02/01/2003~
-~04636~^~338~^0.^0^^~4~^~NR~^^^^^^^^^^~02/01/2003~
-~04636~^~417~^12.^1^^~1~^~A~^^^^^^^^^^~02/01/2003~
-~04636~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~
-~04636~^~432~^12.^1^^~1~^~A~^^^^^^^^^^~07/01/2010~
-~04636~^~435~^12.^0^^~4~^~NC~^^^^^^^^^^~07/01/2010~
-~04636~^~601~^2.^1^^~1~^~A~^^^^^^^^^^~02/01/2003~
-~04638~^~208~^119.^0^^~4~^~NC~^^^^^^^^^^~05/01/2005~
-~04638~^~262~^0.^0^^~4~^~FLA~^^^^^^^^^^~02/01/2003~
-~04638~^~263~^0.^0^^~4~^~FLA~^^^^^^^^^^~02/01/2003~
-~04638~^~268~^497.^0^^~4~^~NC~^^^^^^^^^^~05/01/2005~
-~04638~^~301~^50.^3^11.^~1~^~A~^^^1^29.^69.^2^0.^99.^~2, 3~^~02/01/2003~
-~04638~^~304~^8.^3^1.^~1~^~A~^^^1^4.^10.^2^0.^14.^~2, 3~^~02/01/2003~
-~04638~^~305~^113.^3^19.^~1~^~A~^^^1^75.^142.^2^26.^198.^~2, 3~^~02/01/2003~
-~04638~^~306~^111.^3^6.^~1~^~A~^^^1^103.^125.^2^81.^140.^~2, 3~^~02/01/2003~
-~04638~^~307~^897.^0^^~4~^~O~^^^^^^^^^^~06/01/2010~
-~04638~^~318~^3.^0^^~4~^~FLA~^^^^^^^^^^~02/01/2003~
-~04638~^~319~^1.^0^^~4~^~FLA~^^^^^^^^^^~02/01/2003~
-~04638~^~320~^1.^0^^~4~^~FLA~^^^^^^^^^^~02/01/2003~
-~04638~^~321~^0.^0^^~4~^~FLA~^^^^^^^^^^~02/01/2003~
-~04638~^~322~^0.^0^^~4~^~FLA~^^^^^^^^^^~02/01/2003~
-~04638~^~334~^0.^0^^~4~^~FLA~^^^^^^^^^^~02/01/2003~
-~04638~^~337~^0.^0^^~4~^~FLA~^^^^^^^^^^~02/01/2003~
-~04638~^~338~^4.^0^^~4~^~FLA~^^^^^^^^^^~02/01/2003~
-~04638~^~417~^6.^3^2.^~1~^~A~^^^1^3.^10.^2^-3.^15.^~2, 3~^~02/01/2003~
-~04638~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~
-~04638~^~432~^6.^3^2.^~1~^~A~^^^1^3.^10.^2^-3.^15.^^~05/01/2005~
-~04638~^~435~^6.^0^^~4~^~NC~^^^^^^^^^^~05/01/2005~
-~04638~^~601~^7.^3^4.^~1~^~A~^^^1^2.^16.^2^-11.^25.^~2, 3~^~02/01/2003~
-~04639~^~208~^430.^0^^~4~^~NC~^^^^^^^^^^~09/01/2015~
-~04639~^~262~^0.^0^^~4~^~FLA~^^^^^^^^^^~02/01/2003~
-~04639~^~263~^0.^0^^~4~^~FLA~^^^^^^^^^^~02/01/2003~
-~04639~^~268~^1798.^0^^~4~^~NC~^^^^^^^^^^~09/01/2015~
-~04639~^~301~^28.^18^1.^~1~^~A~^^^1^18.^47.^5^24.^31.^~2, 3~^~07/01/2013~
-~04639~^~304~^5.^18^0.^~1~^~A~^^^1^3.^6.^6^4.^5.^~2, 3~^~02/01/2003~
-~04639~^~305~^186.^18^7.^~1~^~A~^^^1^83.^257.^5^167.^205.^~2, 3~^~07/01/2015~
-~04639~^~306~^64.^18^2.^~1~^~A~^^^1^49.^98.^6^56.^70.^~2, 3~^~07/01/2013~
-~04639~^~307~^901.^18^6.^~1~^~A~^^^1^810.^1040.^10^886.^916.^~2, 3~^~09/01/2015~
-~04639~^~318~^69.^0^^~1~^~AS~^^^^^^^^^^~07/01/2015~
-~04639~^~319~^13.^3^^~1~^~A~^^^1^5.^23.^^^^~2, 3~^~07/01/2013~
-~04639~^~320~^15.^0^^~1~^~AS~^^^^^^^^^^~07/01/2015~
-~04639~^~321~^14.^9^8.^~1~^~A~^^^1^2.^84.^2^-23.^52.^~2, 3~^~07/01/2015~
-~04639~^~322~^0.^9^0.^~1~^~A~^^^1^0.^1.^3^0.^0.^~1, 2, 3~^~07/01/2013~
-~04639~^~324~^3.^2^^~1~^~A~^^^1^0.^8.^^^^~1~^~07/01/2013~
-~04639~^~334~^1.^9^0.^~1~^~A~^^^1^0.^1.^5^0.^0.^~2, 3~^~07/01/2013~
-~04639~^~337~^0.^9^0.^~1~^~A~^^^1^0.^3.^3^0.^1.^~1, 2, 3~^~07/01/2015~
-~04639~^~338~^21.^9^1.^~1~^~A~^^^1^16.^32.^3^14.^27.^~2, 3~^~07/01/2013~
-~04639~^~417~^4.^3^^~1~^~A~^^^1^4.^4.^^^^~1, 2, 3~^~02/01/2003~
-~04639~^~431~^0.^0^^~4~^~FLA~^^^^^^^^^^~02/01/2009~
-~04639~^~432~^4.^0^^~4~^~NR~^^^^^^^^^^~02/01/2009~
-~04639~^~435~^4.^0^^~4~^~NC~^^^^^^^^^^~05/01/2009~
-~04639~^~601~^26.^9^0.^~1~^~A~^^^1^19.^31.^4^24.^27.^~2, 3~^~07/01/2013~
-~04640~^~208~^196.^0^^~4~^~NC~^^^^^^^^^^~12/01/2007~
-~04640~^~262~^0.^0^^~4~^~FLA~^^^^^^^^^^~02/01/2003~
-~04640~^~263~^0.^0^^~4~^~FLA~^^^^^^^^^^~02/01/2003~
-~04640~^~268~^821.^0^^~4~^~NC~^^^^^^^^^^~12/01/2007~
-~04640~^~301~^40.^4^12.^~6~^~JA~^^^2^24.^47.^1^-116.^196.^~4~^~12/01/2007~
-~04640~^~304~^6.^3^1.^~1~^~A~^^^1^4.^9.^2^0.^11.^~2, 3~^~02/01/2003~
-~04640~^~305~^193.^3^38.^~1~^~A~^^^1^144.^269.^2^28.^358.^~2, 3~^~02/01/2003~
-~04640~^~306~^132.^3^6.^~1~^~A~^^^1^123.^145.^2^102.^160.^~2, 3~^~02/01/2003~
-~04640~^~307~^1120.^0^^~4~^~O~^^^^^^^^^^~06/01/2010~
-~04640~^~318~^67.^0^^~4~^~NC~^^^^^^^^^^~12/01/2007~
-~04640~^~319~^17.^0^^~4~^~FLA~^^^^^^^^^^~02/01/2003~
-~04640~^~320~^18.^0^^~4~^~NC~^^^^^^^^^^~12/01/2007~
-~04640~^~321~^4.^0^^~4~^~FLA~^^^^^^^^^^~12/01/2007~
-~04640~^~322~^2.^0^^~4~^~FLA~^^^^^^^^^^~12/01/2007~
-~04640~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2009~
-~04640~^~334~^2.^0^^~4~^~FLA~^^^^^^^^^^~12/01/2007~
-~04640~^~337~^0.^0^^~4~^~FLA~^^^^^^^^^^~02/01/2003~
-~04640~^~338~^49.^0^^~4~^~FLA~^^^^^^^^^^~12/01/2007~
-~04640~^~417~^4.^3^0.^~1~^~A~^^^1^3.^6.^2^1.^7.^~2, 3~^~02/01/2003~
-~04640~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~
-~04640~^~432~^4.^3^0.^~1~^~A~^^^1^3.^6.^2^1.^7.^^~12/01/2007~
-~04640~^~435~^4.^0^^~4~^~NC~^^^^^^^^^^~03/01/2009~
-~04640~^~601~^16.^5^8.^~6~^~JA~^^^2^5.^21.^1^-91.^123.^~4~^~12/01/2007~
-~04641~^~208~^238.^0^^~4~^~NC~^^^^^^^^^^~05/01/2012~
-~04641~^~262~^0.^0^^~4~^~BFZN~^~43329~^^^^^^^^^~03/01/2003~
-~04641~^~263~^0.^0^^~4~^~BFZN~^~43329~^^^^^^^^^~03/01/2003~
-~04641~^~268~^997.^0^^~4~^~NC~^^^^^^^^^^~05/01/2012~
-~04641~^~301~^6.^12^0.^~1~^~A~^^^1^6.^7.^6^6.^6.^~2, 3~^~04/01/2012~
-~04641~^~304~^2.^12^0.^~1~^~A~^^^1^1.^3.^7^1.^1.^~2, 3~^~03/01/2003~
-~04641~^~305~^15.^12^0.^~1~^~A~^^^1^7.^37.^8^14.^15.^~2, 3~^~04/01/2012~
-~04641~^~306~^31.^12^3.^~1~^~A~^^^1^12.^70.^6^22.^39.^~2, 3~^~04/01/2012~
-~04641~^~307~^827.^0^^~4~^~O~^^^^^^^^^^~06/01/2013~
-~04641~^~318~^70.^0^^~1~^~AS~^^^^^^^^^^~04/01/2012~
-~04641~^~319~^5.^4^0.^~1~^~A~^^^1^5.^6.^1^2.^8.^~2, 3~^~04/01/2012~
-~04641~^~320~^8.^0^^~1~^~AS~^^^^^^^^^^~04/01/2012~
-~04641~^~321~^30.^6^0.^~1~^~A~^^^1^4.^104.^2^27.^32.^~2, 3~^~04/01/2012~
-~04641~^~322~^0.^6^0.^~1~^~A~^^^1^0.^0.^2^0.^0.^~1, 2, 3~^~04/01/2012~
-~04641~^~324~^0.^0^^~4~^~BFZN~^~43329~^^^^^^^^^~02/01/2011~
-~04641~^~334~^3.^6^0.^~1~^~A~^^^1^1.^4.^2^2.^3.^~2, 3~^~04/01/2012~
-~04641~^~337~^0.^6^0.^~1~^~A~^^^1^0.^0.^^^^~1, 2, 3~^~04/01/2012~
-~04641~^~338~^27.^6^1.^~1~^~A~^^^1^21.^29.^2^18.^35.^~2, 3~^~04/01/2012~
-~04641~^~417~^4.^0^^~4~^~FLA~^^^^^^^^^^~03/01/2003~
-~04641~^~431~^0.^2^^~1~^~A~^^^1^0.^0.^^^^~1~^~03/01/2003~
-~04641~^~432~^4.^0^^~4~^~FLA~^^^^^^^^^^~03/01/2003~
-~04641~^~435~^4.^0^^~4~^~NC~^^^^^^^^^^~10/01/2004~
-~04641~^~601~^16.^12^0.^~1~^~A~^^^1^13.^23.^10^14.^16.^~2, 3~^~04/01/2012~
-~04641~^~638~^21.^3^1.^~1~^~A~^^^1^19.^23.^2^15.^25.^~2, 3~^~03/01/2003~
-~04641~^~639~^19.^3^1.^~1~^~A~^^^1^16.^22.^2^10.^27.^~2, 3~^~03/01/2003~
-~04641~^~641~^48.^3^3.^~1~^~A~^^^1^42.^52.^2^34.^61.^~2, 3~^~03/01/2003~
-~04642~^~208~^884.^0^^~4~^~NC~^^^^^^^^^^~03/01/2004~
-~04642~^~262~^0.^0^^~4~^~BFZN~^~04060~^^^^^^^^^~03/01/2004~
-~04642~^~263~^0.^0^^~4~^~BFZN~^~04060~^^^^^^^^^~03/01/2004~
-~04642~^~268~^3699.^0^^~4~^~NC~^^^^^^^^^^~03/01/2004~
-~04642~^~301~^0.^0^^~4~^~BFZN~^~04060~^^^^^^^^^~03/01/2004~
-~04642~^~304~^0.^0^^~4~^~BFZN~^~04060~^^^^^^^^^~03/01/2004~
-~04642~^~305~^0.^0^^~4~^~BFZN~^~04060~^^^^^^^^^~03/01/2004~
-~04642~^~306~^0.^0^^~4~^~BFZN~^~04060~^^^^^^^^^~03/01/2004~
-~04642~^~307~^0.^0^^~4~^~BFZN~^~04060~^^^^^^^^^~03/01/2004~
-~04642~^~318~^0.^0^^~4~^~BFZN~^~04060~^^^^^^^^^~03/01/2004~
-~04642~^~319~^0.^0^^~4~^~BFZN~^~04060~^^^^^^^^^~03/01/2004~
-~04642~^~320~^0.^0^^~4~^~BFZN~^~04060~^^^^^^^^^~03/01/2004~
-~04642~^~321~^0.^0^^~4~^~BFZN~^~04060~^^^^^^^^^~03/01/2004~
-~04642~^~322~^0.^0^^~4~^~BFZN~^~04060~^^^^^^^^^~03/01/2004~
-~04642~^~334~^0.^0^^~4~^~BFZN~^~04060~^^^^^^^^^~03/01/2004~
-~04642~^~337~^0.^0^^~4~^~BFZN~^~04060~^^^^^^^^^~03/01/2004~
-~04642~^~338~^0.^0^^~4~^~BFZN~^~04060~^^^^^^^^^~03/01/2004~
-~04642~^~417~^0.^0^^~4~^~BFZN~^~04060~^^^^^^^^^~03/01/2004~
-~04642~^~431~^0.^0^^~4~^~BFZN~^~04060~^^^^^^^^^~03/01/2004~
-~04642~^~432~^0.^0^^~4~^~BFZN~^~04060~^^^^^^^^^~03/01/2004~
-~04642~^~435~^0.^0^^~4~^~NC~^~04060~^^^^^^^^^~07/01/2009~
-~04642~^~601~^0.^0^^~4~^~BFZN~^~04060~^^^^^^^^^~03/01/2004~
-~04643~^~208~^884.^0^^~4~^~NC~^^^^^^^^^^~12/01/2006~
-~04643~^~262~^0.^0^^~4~^~BFZN~^~04582~^^^^^^^^^~03/01/2004~
-~04643~^~263~^0.^0^^~4~^~BFZN~^~04582~^^^^^^^^^~03/01/2004~
-~04643~^~268~^3699.^0^^~4~^~NC~^^^^^^^^^^~12/01/2006~
-~04643~^~301~^0.^0^^~4~^~BFZN~^~04582~^^^^^^^^^~03/01/2004~
-~04643~^~304~^0.^0^^~4~^~BFZN~^~04582~^^^^^^^^^~03/01/2004~
-~04643~^~305~^0.^0^^~4~^~BFZN~^~04582~^^^^^^^^^~03/01/2004~
-~04643~^~306~^0.^0^^~4~^~BFZN~^~04582~^^^^^^^^^~03/01/2004~
-~04643~^~307~^0.^0^^~4~^~BFZN~^~04582~^^^^^^^^^~03/01/2004~
-~04643~^~318~^0.^0^^~4~^~BFZN~^~04582~^^^^^^^^^~03/01/2004~
-~04643~^~319~^0.^0^^~4~^~BFZN~^~04582~^^^^^^^^^~03/01/2004~
-~04643~^~320~^0.^0^^~4~^~BFZN~^~04582~^^^^^^^^^~03/01/2004~
-~04643~^~321~^0.^0^^~4~^~BFZN~^~04582~^^^^^^^^^~03/01/2004~
-~04643~^~322~^0.^0^^~4~^~BFZN~^~04582~^^^^^^^^^~03/01/2004~
-~04643~^~334~^0.^0^^~4~^~BFZN~^~04582~^^^^^^^^^~03/01/2004~
-~04643~^~337~^0.^0^^~4~^~BFZN~^~04582~^^^^^^^^^~03/01/2004~
-~04643~^~338~^0.^0^^~4~^~BFZN~^~04582~^^^^^^^^^~03/01/2004~
-~04643~^~417~^0.^0^^~4~^~BFZN~^~04582~^^^^^^^^^~03/01/2004~
-~04643~^~431~^0.^0^^~4~^~BFZN~^~04582~^^^^^^^^^~03/01/2004~
-~04643~^~432~^0.^0^^~4~^~BFZN~^~04582~^^^^^^^^^~03/01/2004~
-~04643~^~435~^0.^0^^~4~^~NC~^~04582~^^^^^^^^^~07/01/2008~
-~04643~^~601~^0.^0^^~4~^~BFZN~^~04582~^^^^^^^^^~03/01/2004~
-~04644~^~208~^884.^0^^~4~^~BFZN~^~04582~^^^^^^^^^~03/01/2004~
-~04644~^~262~^0.^0^^~4~^~BFZN~^~04582~^^^^^^^^^~03/01/2004~
-~04644~^~263~^0.^0^^~4~^~BFZN~^~04582~^^^^^^^^^~03/01/2004~
-~04644~^~268~^3699.^0^^~4~^~BFZN~^^^^^^^^^^~03/01/2007~
-~04644~^~301~^0.^0^^~4~^~BFZN~^~04582~^^^^^^^^^~03/01/2004~
-~04644~^~304~^0.^0^^~4~^~BFZN~^~04582~^^^^^^^^^~03/01/2004~
-~04644~^~305~^0.^0^^~4~^~BFZN~^~04582~^^^^^^^^^~03/01/2004~
-~04644~^~306~^0.^0^^~4~^~BFZN~^~04582~^^^^^^^^^~03/01/2004~
-~04644~^~307~^0.^0^^~4~^~BFZN~^~04582~^^^^^^^^^~03/01/2004~
-~04644~^~318~^0.^0^^~4~^~BFZN~^~04582~^^^^^^^^^~03/01/2007~
-~04644~^~319~^0.^0^^~4~^~BFZN~^~04582~^^^^^^^^^~03/01/2004~
-~04644~^~320~^0.^0^^~4~^~BFZN~^~04582~^^^^^^^^^~03/01/2007~
-~04644~^~321~^0.^0^^~4~^~BFZN~^~04582~^^^^^^^^^~03/01/2004~
-~04644~^~322~^0.^0^^~4~^~BFZN~^~04582~^^^^^^^^^~03/01/2004~
-~04644~^~334~^0.^0^^~4~^~BFZN~^~04582~^^^^^^^^^~03/01/2004~
-~04644~^~337~^0.^0^^~4~^~BFZN~^~04582~^^^^^^^^^~03/01/2004~
-~04644~^~338~^0.^0^^~4~^~BFZN~^~04582~^^^^^^^^^~03/01/2004~
-~04644~^~417~^0.^0^^~4~^~BFZN~^~04582~^^^^^^^^^~03/01/2004~
-~04644~^~431~^0.^0^^~4~^~BFZN~^~04582~^^^^^^^^^~03/01/2004~
-~04644~^~432~^0.^0^^~4~^~BFZN~^~04582~^^^^^^^^^~03/01/2004~
-~04644~^~435~^0.^0^^~4~^~NC~^~04582~^^^^^^^^^~07/01/2009~
-~04644~^~601~^0.^0^^~4~^~BFZN~^~04582~^^^^^^^^^~03/01/2004~
-~04645~^~208~^884.^0^^~4~^~BFZN~^~04582~^^^^^^^^^~03/01/2007~
-~04645~^~262~^0.^0^^~4~^~BFZN~^~04582~^^^^^^^^^~03/01/2007~
-~04645~^~263~^0.^0^^~4~^~BFZN~^~04582~^^^^^^^^^~03/01/2007~
-~04645~^~268~^3699.^0^^~4~^~BFZN~^^^^^^^^^^~03/01/2007~
-~04645~^~301~^0.^0^^~4~^~BFZN~^~04582~^^^^^^^^^~03/01/2007~
-~04645~^~304~^0.^0^^~4~^~BFZN~^~04582~^^^^^^^^^~03/01/2007~
-~04645~^~305~^0.^0^^~4~^~BFZN~^~04582~^^^^^^^^^~03/01/2007~
-~04645~^~306~^0.^0^^~4~^~BFZN~^~04582~^^^^^^^^^~03/01/2007~
-~04645~^~307~^0.^0^^~4~^~BFZN~^~04582~^^^^^^^^^~03/01/2007~
-~04645~^~318~^0.^0^^~4~^~BFZN~^~04582~^^^^^^^^^~03/01/2007~
-~04645~^~319~^0.^0^^~4~^~BFZN~^~04582~^^^^^^^^^~03/01/2007~
-~04645~^~320~^0.^0^^~4~^~BFZN~^~04582~^^^^^^^^^~03/01/2007~
-~04645~^~321~^0.^0^^~4~^~BFZN~^~04582~^^^^^^^^^~03/01/2007~
-~04645~^~322~^0.^0^^~4~^~BFZN~^~04582~^^^^^^^^^~03/01/2007~
-~04645~^~334~^0.^0^^~4~^~BFZN~^~04582~^^^^^^^^^~03/01/2007~
-~04645~^~337~^0.^0^^~4~^~BFZN~^~04582~^^^^^^^^^~03/01/2007~
-~04645~^~338~^0.^0^^~4~^~BFZN~^~04582~^^^^^^^^^~03/01/2007~
-~04645~^~417~^0.^0^^~4~^~BFZN~^~04582~^^^^^^^^^~03/01/2007~
-~04645~^~431~^0.^0^^~4~^~BFZN~^~04582~^^^^^^^^^~03/01/2007~
-~04645~^~432~^0.^0^^~4~^~BFZN~^~04582~^^^^^^^^^~03/01/2007~
-~04645~^~435~^0.^0^^~4~^~NC~^~04582~^^^^^^^^^~07/01/2009~
-~04645~^~601~^0.^0^^~4~^~BFZN~^~04582~^^^^^^^^^~03/01/2007~
-~04646~^~208~^884.^0^^~4~^~NC~^^^^^^^^^^~03/01/2004~
-~04646~^~262~^0.^0^^~4~^~BFZN~^~04047~^^^^^^^^^~03/01/2004~
-~04646~^~263~^0.^0^^~4~^~BFZN~^~04047~^^^^^^^^^~03/01/2004~
-~04646~^~268~^3699.^0^^~4~^~NC~^^^^^^^^^^~03/01/2004~
-~04646~^~301~^0.^0^^~4~^~BFZN~^~04047~^^^^^^^^^~03/01/2004~
-~04646~^~304~^0.^0^^~4~^~BFZN~^~04047~^^^^^^^^^~03/01/2004~
-~04646~^~305~^0.^0^^~4~^~BFZN~^~04047~^^^^^^^^^~03/01/2004~
-~04646~^~306~^0.^0^^~4~^~BFZN~^~04047~^^^^^^^^^~03/01/2004~
-~04646~^~307~^0.^0^^~4~^~BFZN~^~04047~^^^^^^^^^~03/01/2004~
-~04646~^~318~^0.^0^^~4~^~BFZN~^~04047~^^^^^^^^^~03/01/2004~
-~04646~^~319~^0.^0^^~4~^~BFZN~^~04047~^^^^^^^^^~03/01/2004~
-~04646~^~320~^0.^0^^~4~^~BFZN~^~04047~^^^^^^^^^~03/01/2004~
-~04646~^~321~^0.^0^^~4~^~BFZN~^~04047~^^^^^^^^^~03/01/2004~
-~04646~^~322~^0.^0^^~4~^~BFZN~^~04047~^^^^^^^^^~03/01/2004~
-~04646~^~334~^0.^0^^~4~^~BFZN~^~04047~^^^^^^^^^~03/01/2004~
-~04646~^~337~^0.^0^^~4~^~BFZN~^~04047~^^^^^^^^^~03/01/2004~
-~04646~^~338~^0.^0^^~4~^~BFZN~^~04047~^^^^^^^^^~03/01/2004~
-~04646~^~417~^0.^0^^~4~^~BFZN~^~04047~^^^^^^^^^~03/01/2004~
-~04646~^~431~^0.^0^^~4~^~BFZN~^~04047~^^^^^^^^^~03/01/2004~
-~04646~^~432~^0.^0^^~4~^~BFZN~^~04047~^^^^^^^^^~03/01/2004~
-~04646~^~435~^0.^0^^~4~^~NC~^~04047~^^^^^^^^^~12/01/2006~
-~04646~^~601~^0.^0^^~4~^~BFZN~^~04047~^^^^^^^^^~03/01/2004~
-~04646~^~636~^86.^0^^~4~^~BFZN~^~04047~^^^^^^^^^~03/01/2004~
-~04648~^~208~^884.^0^^~4~^~NC~^^^^^^^^^^~12/01/2006~
-~04648~^~262~^0.^0^^~4~^~BFZN~^~04034~^^^^^^^^^~03/01/2004~
-~04648~^~263~^0.^0^^~4~^~BFZN~^~04034~^^^^^^^^^~03/01/2004~
-~04648~^~268~^3699.^0^^~4~^~NC~^^^^^^^^^^~12/01/2006~
-~04648~^~301~^0.^0^^~4~^~BFZN~^~04034~^^^^^^^^^~03/01/2004~
-~04648~^~304~^0.^0^^~4~^~BFZN~^~04034~^^^^^^^^^~03/01/2004~
-~04648~^~305~^0.^0^^~4~^~BFZN~^~04034~^^^^^^^^^~03/01/2004~
-~04648~^~306~^0.^0^^~4~^~BFZN~^~04034~^^^^^^^^^~03/01/2004~
-~04648~^~307~^0.^0^^~4~^~BFZN~^~04034~^^^^^^^^^~03/01/2004~
-~04648~^~318~^0.^0^^~4~^~BFZN~^~04034~^^^^^^^^^~03/01/2004~
-~04648~^~319~^0.^0^^~4~^~BFZN~^~04034~^^^^^^^^^~03/01/2004~
-~04648~^~320~^0.^0^^~4~^~BFZN~^~04034~^^^^^^^^^~03/01/2004~
-~04648~^~321~^0.^0^^~4~^~BFZN~^~04034~^^^^^^^^^~03/01/2004~
-~04648~^~322~^0.^0^^~4~^~BFZN~^~04034~^^^^^^^^^~03/01/2004~
-~04648~^~334~^0.^0^^~4~^~BFZN~^~04034~^^^^^^^^^~03/01/2004~
-~04648~^~337~^0.^0^^~4~^~BFZN~^~04034~^^^^^^^^^~03/01/2004~
-~04648~^~338~^0.^0^^~4~^~BFZN~^~04034~^^^^^^^^^~03/01/2004~
-~04648~^~417~^0.^0^^~4~^~BFZN~^~04034~^^^^^^^^^~03/01/2004~
-~04648~^~431~^0.^0^^~4~^~BFZN~^~04034~^^^^^^^^^~03/01/2004~
-~04648~^~432~^0.^0^^~4~^~BFZN~^~04034~^^^^^^^^^~03/01/2004~
-~04648~^~435~^0.^0^^~4~^~NC~^~04034~^^^^^^^^^~07/01/2009~
-~04648~^~601~^0.^0^^~4~^~BFZN~^~04034~^^^^^^^^^~03/01/2004~
-~04648~^~636~^132.^0^^~4~^~BFZN~^~04034~^^^^^^^^^~03/01/2004~
-~04649~^~208~^884.^0^^~4~^~NC~^^^^^^^^^^~12/01/2006~
-~04649~^~262~^0.^0^^~4~^~BFZN~^~04034~^^^^^^^^^~03/01/2004~
-~04649~^~263~^0.^0^^~4~^~BFZN~^~04034~^^^^^^^^^~03/01/2004~
-~04649~^~268~^3699.^0^^~4~^~NC~^^^^^^^^^^~12/01/2006~
-~04649~^~301~^0.^0^^~4~^~BFZN~^~04034~^^^^^^^^^~03/01/2004~
-~04649~^~304~^0.^0^^~4~^~BFZN~^~04034~^^^^^^^^^~03/01/2004~
-~04649~^~305~^0.^0^^~4~^~BFZN~^~04034~^^^^^^^^^~03/01/2004~
-~04649~^~306~^0.^0^^~4~^~BFZN~^~04034~^^^^^^^^^~03/01/2004~
-~04649~^~307~^0.^0^^~4~^~BFZN~^~04034~^^^^^^^^^~03/01/2004~
-~04649~^~318~^0.^0^^~4~^~BFZN~^~04034~^^^^^^^^^~03/01/2004~
-~04649~^~319~^0.^0^^~4~^~BFZN~^~04034~^^^^^^^^^~03/01/2004~
-~04649~^~320~^0.^0^^~4~^~BFZN~^~04034~^^^^^^^^^~03/01/2004~
-~04649~^~321~^0.^0^^~4~^~BFZN~^~04034~^^^^^^^^^~03/01/2004~
-~04649~^~322~^0.^0^^~4~^~BFZN~^~04034~^^^^^^^^^~03/01/2004~
-~04649~^~334~^0.^0^^~4~^~BFZN~^~04034~^^^^^^^^^~03/01/2004~
-~04649~^~337~^0.^0^^~4~^~BFZN~^~04034~^^^^^^^^^~03/01/2004~
-~04649~^~338~^0.^0^^~4~^~BFZN~^~04034~^^^^^^^^^~03/01/2004~
-~04649~^~417~^0.^0^^~4~^~BFZN~^~04034~^^^^^^^^^~03/01/2004~
-~04649~^~431~^0.^0^^~4~^~BFZN~^~04034~^^^^^^^^^~03/01/2004~
-~04649~^~432~^0.^0^^~4~^~BFZN~^~04034~^^^^^^^^^~03/01/2004~
-~04649~^~435~^0.^0^^~4~^~NC~^~04034~^^^^^^^^^~12/01/2006~
-~04649~^~601~^0.^0^^~4~^~BFZN~^~04034~^^^^^^^^^~03/01/2004~
-~04649~^~636~^132.^0^^~4~^~BFZN~^~04034~^^^^^^^^^~03/01/2004~
-~04650~^~208~^884.^0^^~4~^~BFZN~^~04044~^^^^^^^^^~03/01/2004~
-~04650~^~262~^0.^0^^~4~^~BFZN~^~04044~^^^^^^^^^~03/01/2004~
-~04650~^~263~^0.^0^^~4~^~BFZN~^~04044~^^^^^^^^^~03/01/2004~
-~04650~^~268~^3699.^0^^~4~^~BFZN~^^^^^^^^^^~12/01/2006~
-~04650~^~301~^0.^0^^~4~^~BFZN~^~04044~^^^^^^^^^~03/01/2004~
-~04650~^~304~^0.^0^^~4~^~BFZN~^~04044~^^^^^^^^^~03/01/2004~
-~04650~^~305~^0.^0^^~4~^~BFZN~^~04044~^^^^^^^^^~03/01/2004~
-~04650~^~306~^0.^0^^~4~^~BFZN~^~04044~^^^^^^^^^~03/01/2004~
-~04650~^~307~^0.^0^^~4~^~BFZN~^~04044~^^^^^^^^^~03/01/2004~
-~04650~^~318~^0.^0^^~4~^~BFZN~^~04044~^^^^^^^^^~03/01/2004~
-~04650~^~319~^0.^0^^~4~^~BFZN~^~04044~^^^^^^^^^~03/01/2004~
-~04650~^~320~^0.^0^^~4~^~BFZN~^~04044~^^^^^^^^^~03/01/2004~
-~04650~^~321~^0.^0^^~4~^~BFZN~^~04044~^^^^^^^^^~03/01/2004~
-~04650~^~322~^0.^0^^~4~^~BFZN~^~04044~^^^^^^^^^~03/01/2004~
-~04650~^~334~^0.^0^^~4~^~BFZN~^~04044~^^^^^^^^^~03/01/2004~
-~04650~^~337~^0.^0^^~4~^~BFZN~^~04044~^^^^^^^^^~03/01/2004~
-~04650~^~338~^0.^0^^~4~^~BFZN~^~04044~^^^^^^^^^~03/01/2004~
-~04650~^~417~^0.^0^^~4~^~BFZN~^~04044~^^^^^^^^^~03/01/2004~
-~04650~^~431~^0.^0^^~4~^~BFZN~^~04044~^^^^^^^^^~03/01/2004~
-~04650~^~432~^0.^0^^~4~^~BFZN~^~04044~^^^^^^^^^~03/01/2004~
-~04650~^~435~^0.^0^^~4~^~NC~^~04044~^^^^^^^^^~07/01/2009~
-~04650~^~601~^0.^0^^~4~^~BFZN~^~04044~^^^^^^^^^~03/01/2004~
-~04650~^~636~^250.^0^^~4~^~BFZN~^~04044~^^^^^^^^^~03/01/2004~
-~04651~^~208~^884.^0^^~4~^~NC~^^^^^^^^^^~12/01/2006~
-~04651~^~262~^0.^0^^~4~^~BFZN~^~04034~^^^^^^^^^~03/01/2004~
-~04651~^~263~^0.^0^^~4~^~BFZN~^~04034~^^^^^^^^^~03/01/2004~
-~04651~^~268~^3699.^0^^~4~^~NC~^^^^^^^^^^~12/01/2006~
-~04651~^~301~^0.^0^^~4~^~BFZN~^~04034~^^^^^^^^^~03/01/2004~
-~04651~^~304~^0.^0^^~4~^~BFZN~^~04034~^^^^^^^^^~03/01/2004~
-~04651~^~305~^0.^0^^~4~^~BFZN~^~04034~^^^^^^^^^~03/01/2004~
-~04651~^~306~^0.^0^^~4~^~BFZN~^~04034~^^^^^^^^^~03/01/2004~
-~04651~^~307~^0.^0^^~4~^~BFZN~^~04034~^^^^^^^^^~03/01/2004~
-~04651~^~318~^0.^0^^~4~^~BFZN~^~04034~^^^^^^^^^~03/01/2004~
-~04651~^~319~^0.^0^^~4~^~BFZN~^~04034~^^^^^^^^^~03/01/2004~
-~04651~^~320~^0.^0^^~4~^~BFZN~^~04034~^^^^^^^^^~03/01/2004~
-~04651~^~321~^0.^0^^~4~^~BFZN~^~04034~^^^^^^^^^~03/01/2004~
-~04651~^~322~^0.^0^^~4~^~BFZN~^~04034~^^^^^^^^^~03/01/2004~
-~04651~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~
-~04651~^~334~^0.^0^^~4~^~BFZN~^~04034~^^^^^^^^^~03/01/2004~
-~04651~^~337~^0.^0^^~4~^~BFZN~^~04034~^^^^^^^^^~03/01/2004~
-~04651~^~338~^0.^0^^~4~^~BFZN~^~04034~^^^^^^^^^~03/01/2004~
-~04651~^~417~^0.^0^^~4~^~BFZN~^~04034~^^^^^^^^^~03/01/2004~
-~04651~^~431~^0.^0^^~4~^~BFZN~^~04034~^^^^^^^^^~03/01/2004~
-~04651~^~432~^0.^0^^~4~^~BFZN~^~04034~^^^^^^^^^~03/01/2004~
-~04651~^~435~^0.^0^^~4~^~NC~^~04034~^^^^^^^^^~07/01/2009~
-~04651~^~601~^0.^0^^~4~^~BFZN~^~04034~^^^^^^^^^~03/01/2004~
-~04651~^~636~^132.^0^^~4~^~BFZN~^~04034~^^^^^^^^^~03/01/2004~
-~04652~^~208~^884.^0^^~4~^~NC~^^^^^^^^^^~12/01/2006~
-~04652~^~262~^0.^0^^~4~^~BFZN~^~04034~^^^^^^^^^~03/01/2004~
-~04652~^~263~^0.^0^^~4~^~BFZN~^~04034~^^^^^^^^^~03/01/2004~
-~04652~^~268~^3699.^0^^~4~^~NC~^^^^^^^^^^~12/01/2006~
-~04652~^~301~^0.^0^^~4~^~BFZN~^~04034~^^^^^^^^^~03/01/2004~
-~04652~^~304~^0.^0^^~4~^~BFZN~^~04034~^^^^^^^^^~03/01/2004~
-~04652~^~305~^0.^0^^~4~^~BFZN~^~04034~^^^^^^^^^~03/01/2004~
-~04652~^~306~^0.^0^^~4~^~BFZN~^~04034~^^^^^^^^^~03/01/2004~
-~04652~^~307~^0.^0^^~4~^~BFZN~^~04034~^^^^^^^^^~03/01/2004~
-~04652~^~318~^0.^0^^~4~^~BFZN~^~04034~^^^^^^^^^~03/01/2004~
-~04652~^~319~^0.^0^^~4~^~BFZN~^~04034~^^^^^^^^^~03/01/2004~
-~04652~^~320~^0.^0^^~4~^~BFZN~^~04034~^^^^^^^^^~03/01/2004~
-~04652~^~321~^0.^0^^~4~^~BFZN~^~04034~^^^^^^^^^~03/01/2004~
-~04652~^~322~^0.^0^^~4~^~BFZN~^~04034~^^^^^^^^^~03/01/2004~
-~04652~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~
-~04652~^~334~^0.^0^^~4~^~BFZN~^~04034~^^^^^^^^^~03/01/2004~
-~04652~^~337~^0.^0^^~4~^~BFZN~^~04034~^^^^^^^^^~03/01/2004~
-~04652~^~338~^0.^0^^~4~^~BFZN~^~04034~^^^^^^^^^~03/01/2004~
-~04652~^~417~^0.^0^^~4~^~BFZN~^~04034~^^^^^^^^^~03/01/2004~
-~04652~^~431~^0.^0^^~4~^~BFZN~^~04034~^^^^^^^^^~03/01/2004~
-~04652~^~432~^0.^0^^~4~^~BFZN~^~04034~^^^^^^^^^~03/01/2004~
-~04652~^~435~^0.^0^^~4~^~NC~^~04034~^^^^^^^^^~07/01/2009~
-~04652~^~601~^0.^0^^~4~^~BFZN~^~04034~^^^^^^^^^~03/01/2004~
-~04652~^~636~^132.^0^^~4~^~BFZN~^~04034~^^^^^^^^^~03/01/2004~
-~04653~^~208~^884.^0^^~4~^~NC~^^^^^^^^^^~12/01/2006~
-~04653~^~262~^0.^0^^~4~^~BFZN~^~04034~^^^^^^^^^~03/01/2004~
-~04653~^~263~^0.^0^^~4~^~BFZN~^~04034~^^^^^^^^^~03/01/2004~
-~04653~^~268~^3699.^0^^~4~^~NC~^^^^^^^^^^~12/01/2006~
-~04653~^~301~^0.^0^^~4~^~BFZN~^~04034~^^^^^^^^^~03/01/2004~
-~04653~^~304~^0.^0^^~4~^~BFZN~^~04034~^^^^^^^^^~03/01/2004~
-~04653~^~305~^0.^0^^~4~^~BFZN~^~04034~^^^^^^^^^~03/01/2004~
-~04653~^~306~^0.^0^^~4~^~BFZN~^~04034~^^^^^^^^^~03/01/2004~
-~04653~^~307~^0.^0^^~4~^~BFZN~^~04034~^^^^^^^^^~03/01/2004~
-~04653~^~318~^0.^0^^~4~^~BFZN~^~04034~^^^^^^^^^~03/01/2004~
-~04653~^~319~^0.^0^^~4~^~BFZN~^~04034~^^^^^^^^^~03/01/2004~
-~04653~^~320~^0.^0^^~4~^~BFZN~^~04034~^^^^^^^^^~03/01/2004~
-~04653~^~321~^0.^0^^~4~^~BFZN~^~04034~^^^^^^^^^~03/01/2004~
-~04653~^~322~^0.^0^^~4~^~BFZN~^~04034~^^^^^^^^^~03/01/2004~
-~04653~^~334~^0.^0^^~4~^~BFZN~^~04034~^^^^^^^^^~03/01/2004~
-~04653~^~337~^0.^0^^~4~^~BFZN~^~04034~^^^^^^^^^~03/01/2004~
-~04653~^~338~^0.^0^^~4~^~BFZN~^~04034~^^^^^^^^^~03/01/2004~
-~04653~^~417~^0.^0^^~4~^~BFZN~^~04034~^^^^^^^^^~03/01/2004~
-~04653~^~431~^0.^0^^~4~^~BFZN~^~04034~^^^^^^^^^~03/01/2004~
-~04653~^~432~^0.^0^^~4~^~BFZN~^~04034~^^^^^^^^^~03/01/2004~
-~04653~^~435~^0.^0^^~4~^~NC~^~04034~^^^^^^^^^~07/01/2009~
-~04653~^~601~^0.^0^^~4~^~BFZN~^~04034~^^^^^^^^^~03/01/2004~
-~04653~^~636~^132.^0^^~4~^~BFZN~^~04034~^^^^^^^^^~03/01/2004~
-~04654~^~208~^884.^0^^~4~^~NC~^^^^^^^^^^~03/01/2004~
-~04654~^~262~^0.^0^^~4~^~BFZN~^~04543~^^^^^^^^^~03/01/2004~
-~04654~^~263~^0.^0^^~4~^~BFZN~^~04543~^^^^^^^^^~03/01/2004~
-~04654~^~268~^3699.^0^^~4~^~NC~^^^^^^^^^^~03/01/2004~
-~04654~^~301~^0.^0^^~4~^~BFZN~^~04543~^^^^^^^^^~03/01/2004~
-~04654~^~304~^0.^0^^~4~^~BFZN~^~04543~^^^^^^^^^~03/01/2004~
-~04654~^~305~^0.^0^^~4~^~BFZN~^~04543~^^^^^^^^^~03/01/2004~
-~04654~^~306~^0.^0^^~4~^~BFZN~^~04543~^^^^^^^^^~03/01/2004~
-~04654~^~307~^0.^0^^~4~^~BFZN~^~04543~^^^^^^^^^~03/01/2004~
-~04654~^~318~^0.^0^^~4~^~BFZN~^~04543~^^^^^^^^^~03/01/2004~
-~04654~^~319~^0.^0^^~4~^~BFZN~^~04543~^^^^^^^^^~03/01/2004~
-~04654~^~320~^0.^0^^~4~^~BFZN~^~04543~^^^^^^^^^~03/01/2004~
-~04654~^~321~^0.^0^^~4~^~BFZN~^~04543~^^^^^^^^^~03/01/2004~
-~04654~^~322~^0.^0^^~4~^~BFZN~^~04543~^^^^^^^^^~03/01/2004~
-~04654~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~
-~04654~^~334~^0.^0^^~4~^~BFZN~^~04543~^^^^^^^^^~03/01/2004~
-~04654~^~337~^0.^0^^~4~^~BFZN~^~04543~^^^^^^^^^~03/01/2004~
-~04654~^~338~^0.^0^^~4~^~BFZN~^~04543~^^^^^^^^^~03/01/2004~
-~04654~^~417~^0.^0^^~4~^~BFZN~^~04543~^^^^^^^^^~03/01/2004~
-~04654~^~431~^0.^0^^~4~^~BFZN~^~04543~^^^^^^^^^~03/01/2004~
-~04654~^~432~^0.^0^^~4~^~BFZN~^~04543~^^^^^^^^^~03/01/2004~
-~04654~^~435~^0.^0^^~4~^~NC~^~04543~^^^^^^^^^~12/01/2006~
-~04654~^~601~^0.^0^^~4~^~BFZN~^~04543~^^^^^^^^^~03/01/2004~
-~04654~^~636~^152.^0^^~4~^~BFZN~^~04543~^^^^^^^^^~03/01/2004~
-~04655~^~208~^628.^0^^~4~^~NC~^^^^^^^^^^~05/01/2010~
-~04655~^~262~^0.^0^^~4~^~BFZN~^~04615~^^^^^^^^^~05/01/2004~
-~04655~^~263~^0.^0^^~4~^~BFZN~^~04615~^^^^^^^^^~05/01/2004~
-~04655~^~268~^2626.^0^^~4~^~NC~^^^^^^^^^^~05/01/2010~
-~04655~^~301~^0.^0^^~4~^~BFZN~^~04615~^^^^^^^^^~05/01/2004~
-~04655~^~304~^0.^0^^~4~^~BFZN~^~04615~^^^^^^^^^~05/01/2004~
-~04655~^~305~^0.^0^^~4~^~BFZN~^~04615~^^^^^^^^^~05/01/2004~
-~04655~^~306~^0.^0^^~4~^~BFZN~^~04615~^^^^^^^^^~05/01/2004~
-~04655~^~307~^864.^0^^~8~^~LC~^^^^^^^^^^~05/01/2004~
-~04655~^~318~^0.^0^^~8~^~LC~^^^^^^^^^^~05/01/2004~
-~04655~^~319~^0.^0^^~4~^~BFZN~^~04615~^^^^^^^^^~05/01/2004~
-~04655~^~320~^0.^0^^~4~^~BFZN~^~04615~^^^^^^^^^~05/01/2004~
-~04655~^~321~^0.^0^^~4~^~BFZN~^~04615~^^^^^^^^^~05/01/2004~
-~04655~^~322~^0.^0^^~4~^~BFZN~^~04615~^^^^^^^^^~05/01/2004~
-~04655~^~334~^0.^0^^~4~^~BFZN~^~04615~^^^^^^^^^~05/01/2004~
-~04655~^~337~^0.^0^^~4~^~BFZN~^~04615~^^^^^^^^^~05/01/2004~
-~04655~^~338~^0.^0^^~4~^~BFZN~^~04615~^^^^^^^^^~05/01/2004~
-~04655~^~417~^0.^0^^~4~^~BFZN~^~04615~^^^^^^^^^~05/01/2004~
-~04655~^~431~^0.^0^^~4~^~BFZN~^~04615~^^^^^^^^^~05/01/2004~
-~04655~^~432~^0.^0^^~4~^~BFZN~^~04615~^^^^^^^^^~05/01/2004~
-~04655~^~435~^0.^0^^~4~^~NC~^~04615~^^^^^^^^^~05/01/2010~
-~04655~^~601~^0.^0^^~8~^~LC~^^^^^^^^^^~05/01/2004~
-~04656~^~208~^884.^0^^~4~^~NC~^^^^^^^^^^~03/01/2004~
-~04656~^~262~^0.^0^^~4~^~BFZN~^~04513~^^^^^^^^^~03/01/2004~
-~04656~^~263~^0.^0^^~4~^~BFZN~^~04513~^^^^^^^^^~03/01/2004~
-~04656~^~268~^3699.^0^^~4~^~NC~^^^^^^^^^^~03/01/2004~
-~04656~^~301~^1.^1^^~1~^~A~^^^^^^^^^^~03/01/2004~
-~04656~^~304~^0.^1^^~1~^~A~^^^^^^^^^~1~^~03/01/2004~
-~04656~^~305~^0.^1^^~1~^~A~^^^^^^^^^~1~^~03/01/2004~
-~04656~^~306~^2.^1^^~1~^~A~^^^^^^^^^^~03/01/2004~
-~04656~^~307~^6.^1^^~1~^~A~^^^^^^^^^^~03/01/2004~
-~04656~^~318~^0.^0^^~4~^~BFZN~^~04513~^^^^^^^^^~03/01/2004~
-~04656~^~319~^0.^0^^~4~^~BFZN~^~04513~^^^^^^^^^~03/01/2004~
-~04656~^~320~^0.^0^^~4~^~BFZN~^~04513~^^^^^^^^^~03/01/2004~
-~04656~^~321~^0.^0^^~4~^~BFZN~^~04513~^^^^^^^^^~03/01/2004~
-~04656~^~322~^0.^0^^~4~^~BFZN~^~04513~^^^^^^^^^~03/01/2004~
-~04656~^~334~^0.^0^^~4~^~BFZN~^~04513~^^^^^^^^^~03/01/2004~
-~04656~^~337~^0.^0^^~4~^~BFZN~^~04513~^^^^^^^^^~03/01/2004~
-~04656~^~338~^0.^0^^~4~^~BFZN~^~04513~^^^^^^^^^~03/01/2004~
-~04656~^~417~^0.^0^^~4~^~BFZN~^~04513~^^^^^^^^^~03/01/2004~
-~04656~^~431~^0.^0^^~4~^~BFZN~^~04513~^^^^^^^^^~03/01/2004~
-~04656~^~432~^0.^0^^~4~^~BFZN~^~04513~^^^^^^^^^~03/01/2004~
-~04656~^~435~^0.^0^^~4~^~NC~^~04513~^^^^^^^^^~07/01/2009~
-~04656~^~601~^0.^0^^~4~^~BFZN~^~04513~^^^^^^^^^~03/01/2004~
-~04656~^~636~^95.^0^^~4~^~BFZN~^~04513~^^^^^^^^^~03/01/2004~
-~04657~^~208~^884.^0^^~4~^~NC~^^^^^^^^^^~03/01/2004~
-~04657~^~262~^0.^0^^~4~^~BFZN~^~04513~^^^^^^^^^~03/01/2004~
-~04657~^~263~^0.^0^^~4~^~BFZN~^~04513~^^^^^^^^^~03/01/2004~
-~04657~^~268~^3699.^0^^~4~^~NC~^^^^^^^^^^~03/01/2004~
-~04657~^~301~^1.^1^^~1~^~A~^^^^^^^^^^~03/01/2004~
-~04657~^~304~^0.^1^^~1~^~A~^^^^^^^^^~1~^~03/01/2004~
-~04657~^~305~^0.^1^^~1~^~A~^^^^^^^^^~1~^~03/01/2004~
-~04657~^~306~^1.^1^^~1~^~A~^^^^^^^^^~1~^~03/01/2004~
-~04657~^~307~^6.^1^^~1~^~A~^^^^^^^^^^~03/01/2004~
-~04657~^~318~^0.^0^^~4~^~BFZN~^~04513~^^^^^^^^^~03/01/2004~
-~04657~^~319~^0.^0^^~4~^~BFZN~^~04513~^^^^^^^^^~03/01/2004~
-~04657~^~320~^0.^0^^~4~^~BFZN~^~04513~^^^^^^^^^~03/01/2004~
-~04657~^~321~^0.^0^^~4~^~BFZN~^~04513~^^^^^^^^^~03/01/2004~
-~04657~^~322~^0.^0^^~4~^~BFZN~^~04513~^^^^^^^^^~03/01/2004~
-~04657~^~334~^0.^0^^~4~^~BFZN~^~04513~^^^^^^^^^~03/01/2004~
-~04657~^~337~^0.^0^^~4~^~BFZN~^~04513~^^^^^^^^^~03/01/2004~
-~04657~^~338~^0.^0^^~4~^~BFZN~^~04513~^^^^^^^^^~03/01/2004~
-~04657~^~417~^0.^0^^~4~^~BFZN~^~04513~^^^^^^^^^~03/01/2004~
-~04657~^~431~^0.^0^^~4~^~BFZN~^~04513~^^^^^^^^^~03/01/2004~
-~04657~^~432~^0.^0^^~4~^~BFZN~^~04513~^^^^^^^^^~03/01/2004~
-~04657~^~435~^0.^0^^~4~^~NC~^~04513~^^^^^^^^^~07/01/2009~
-~04657~^~601~^0.^0^^~4~^~BFZN~^~04513~^^^^^^^^^~03/01/2004~
-~04657~^~636~^95.^0^^~4~^~BFZN~^~04513~^^^^^^^^^~03/01/2004~
-~04658~^~208~^884.^0^^~4~^~NC~^^^^^^^^^^~03/01/2004~
-~04658~^~262~^0.^0^^~4~^~BFZN~^~04513~^^^^^^^^^~03/01/2004~
-~04658~^~263~^0.^0^^~4~^~BFZN~^~04513~^^^^^^^^^~03/01/2004~
-~04658~^~268~^3699.^0^^~4~^~NC~^^^^^^^^^^~03/01/2004~
-~04658~^~301~^1.^1^^~1~^~A~^^^^^^^^^^~03/01/2004~
-~04658~^~304~^0.^1^^~1~^~A~^^^^^^^^^~1~^~03/01/2004~
-~04658~^~305~^0.^1^^~1~^~A~^^^^^^^^^~1~^~03/01/2004~
-~04658~^~306~^1.^1^^~1~^~A~^^^^^^^^^^~03/01/2004~
-~04658~^~307~^6.^1^^~1~^~A~^^^^^^^^^^~03/01/2004~
-~04658~^~318~^0.^0^^~4~^~BFZN~^~04513~^^^^^^^^^~03/01/2004~
-~04658~^~319~^0.^0^^~4~^~BFZN~^~04513~^^^^^^^^^~03/01/2004~
-~04658~^~320~^0.^0^^~4~^~BFZN~^~04513~^^^^^^^^^~03/01/2004~
-~04658~^~321~^0.^0^^~4~^~BFZN~^~04513~^^^^^^^^^~03/01/2004~
-~04658~^~322~^0.^0^^~4~^~BFZN~^~04513~^^^^^^^^^~03/01/2004~
-~04658~^~334~^0.^0^^~4~^~BFZN~^~04513~^^^^^^^^^~03/01/2004~
-~04658~^~337~^0.^0^^~4~^~BFZN~^~04513~^^^^^^^^^~03/01/2004~
-~04658~^~338~^0.^0^^~4~^~BFZN~^~04513~^^^^^^^^^~03/01/2004~
-~04658~^~417~^0.^0^^~4~^~BFZN~^~04513~^^^^^^^^^~03/01/2004~
-~04658~^~431~^0.^0^^~4~^~BFZN~^~04513~^^^^^^^^^~03/01/2004~
-~04658~^~432~^0.^0^^~4~^~BFZN~^~04513~^^^^^^^^^~03/01/2004~
-~04658~^~435~^0.^0^^~4~^~NC~^~04513~^^^^^^^^^~07/01/2009~
-~04658~^~601~^0.^0^^~4~^~BFZN~^~04513~^^^^^^^^^~03/01/2004~
-~04658~^~636~^95.^0^^~4~^~BFZN~^~04513~^^^^^^^^^~03/01/2004~
-~04659~^~208~^884.^0^^~4~^~NC~^^^^^^^^^^~03/01/2004~
-~04659~^~262~^0.^0^^~4~^~BFZN~^~04047~^^^^^^^^^~03/01/2004~
-~04659~^~263~^0.^0^^~4~^~BFZN~^~04047~^^^^^^^^^~03/01/2004~
-~04659~^~268~^3699.^0^^~4~^~NC~^^^^^^^^^^~03/01/2004~
-~04659~^~301~^2.^1^^~1~^~A~^^^^^^^^^^~03/01/2004~
-~04659~^~304~^0.^1^^~1~^~A~^^^^^^^^^~1~^~03/01/2004~
-~04659~^~305~^0.^1^^~1~^~A~^^^^^^^^^~1~^~03/01/2004~
-~04659~^~306~^2.^1^^~1~^~A~^^^^^^^^^^~03/01/2004~
-~04659~^~307~^5.^1^^~1~^~A~^^^^^^^^^^~03/01/2004~
-~04659~^~318~^0.^0^^~4~^~BFZN~^~04047~^^^^^^^^^~03/01/2004~
-~04659~^~319~^0.^0^^~4~^~BFZN~^~04047~^^^^^^^^^~03/01/2004~
-~04659~^~320~^0.^0^^~4~^~BFZN~^~04047~^^^^^^^^^~03/01/2004~
-~04659~^~321~^0.^0^^~4~^~BFZN~^~04047~^^^^^^^^^~03/01/2004~
-~04659~^~322~^0.^0^^~4~^~BFZN~^~04047~^^^^^^^^^~03/01/2004~
-~04659~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~
-~04659~^~334~^0.^0^^~4~^~BFZN~^~04047~^^^^^^^^^~03/01/2004~
-~04659~^~337~^0.^0^^~4~^~BFZN~^~04047~^^^^^^^^^~03/01/2004~
-~04659~^~338~^0.^0^^~4~^~BFZN~^~04047~^^^^^^^^^~03/01/2004~
-~04659~^~417~^0.^0^^~4~^~BFZN~^~04047~^^^^^^^^^~03/01/2004~
-~04659~^~431~^0.^0^^~4~^~BFZN~^~04047~^^^^^^^^^~03/01/2004~
-~04659~^~432~^0.^0^^~4~^~BFZN~^~04047~^^^^^^^^^~03/01/2004~
-~04659~^~435~^0.^0^^~4~^~NC~^~04047~^^^^^^^^^~07/01/2009~
-~04659~^~601~^0.^0^^~4~^~BFZN~^~04047~^^^^^^^^^~03/01/2004~
-~04659~^~636~^86.^0^^~4~^~BFZN~^~04047~^^^^^^^^^~03/01/2004~
-~04660~^~208~^884.^0^^~4~^~NC~^^^^^^^^^^~03/01/2004~
-~04660~^~262~^0.^0^^~4~^~BFZN~^~04513~^^^^^^^^^~03/01/2004~
-~04660~^~263~^0.^0^^~4~^~BFZN~^~04513~^^^^^^^^^~03/01/2004~
-~04660~^~268~^3699.^0^^~4~^~NC~^^^^^^^^^^~03/01/2004~
-~04660~^~301~^1.^1^^~1~^~A~^^^^^^^^^^~03/01/2004~
-~04660~^~304~^0.^1^^~1~^~A~^^^^^^^^^~1~^~03/01/2004~
-~04660~^~305~^0.^1^^~1~^~A~^^^^^^^^^~1~^~03/01/2004~
-~04660~^~306~^2.^1^^~1~^~A~^^^^^^^^^^~03/01/2004~
-~04660~^~307~^6.^1^^~1~^~A~^^^^^^^^^^~03/01/2004~
-~04660~^~318~^0.^0^^~4~^~BFZN~^~04513~^^^^^^^^^~03/01/2004~
-~04660~^~319~^0.^0^^~4~^~BFZN~^~04513~^^^^^^^^^~03/01/2004~
-~04660~^~320~^0.^0^^~4~^~BFZN~^~04513~^^^^^^^^^~03/01/2004~
-~04660~^~321~^0.^0^^~4~^~BFZN~^~04513~^^^^^^^^^~03/01/2004~
-~04660~^~322~^0.^0^^~4~^~BFZN~^~04513~^^^^^^^^^~03/01/2004~
-~04660~^~334~^0.^0^^~4~^~BFZN~^~04513~^^^^^^^^^~03/01/2004~
-~04660~^~337~^0.^0^^~4~^~BFZN~^~04513~^^^^^^^^^~03/01/2004~
-~04660~^~338~^0.^0^^~4~^~BFZN~^~04513~^^^^^^^^^~03/01/2004~
-~04660~^~417~^0.^0^^~4~^~BFZN~^~04513~^^^^^^^^^~03/01/2004~
-~04660~^~431~^0.^0^^~4~^~BFZN~^~04513~^^^^^^^^^~03/01/2004~
-~04660~^~432~^0.^0^^~4~^~BFZN~^~04513~^^^^^^^^^~03/01/2004~
-~04660~^~435~^0.^0^^~4~^~NC~^~04513~^^^^^^^^^~07/01/2009~
-~04660~^~601~^0.^0^^~4~^~BFZN~^~04513~^^^^^^^^^~03/01/2004~
-~04660~^~636~^95.^0^^~4~^~BFZN~^~04513~^^^^^^^^^~03/01/2004~
-~04661~^~208~^880.^0^^~4~^~NC~^^^^^^^^^^~03/01/2004~
-~04661~^~262~^0.^0^^~4~^~BFZN~^~04047~^^^^^^^^^~03/01/2004~
-~04661~^~263~^0.^0^^~4~^~BFZN~^~04047~^^^^^^^^^~03/01/2004~
-~04661~^~268~^3680.^0^^~4~^~NC~^^^^^^^^^^~03/01/2004~
-~04661~^~301~^1.^1^^~1~^~A~^^^^^^^^^^~03/01/2004~
-~04661~^~304~^0.^1^^~1~^~A~^^^^^^^^^~1~^~03/01/2004~
-~04661~^~305~^0.^1^^~1~^~A~^^^^^^^^^~1~^~03/01/2004~
-~04661~^~306~^2.^1^^~1~^~A~^^^^^^^^^^~03/01/2004~
-~04661~^~307~^7.^1^^~1~^~A~^^^^^^^^^^~03/01/2004~
-~04661~^~318~^0.^0^^~4~^~BFZN~^~04047~^^^^^^^^^~03/01/2004~
-~04661~^~319~^0.^0^^~4~^~BFZN~^~04047~^^^^^^^^^~03/01/2004~
-~04661~^~320~^0.^0^^~4~^~BFZN~^~04047~^^^^^^^^^~03/01/2004~
-~04661~^~321~^0.^0^^~4~^~BFZN~^~04047~^^^^^^^^^~03/01/2004~
-~04661~^~322~^0.^0^^~4~^~BFZN~^~04047~^^^^^^^^^~03/01/2004~
-~04661~^~334~^0.^0^^~4~^~BFZN~^~04047~^^^^^^^^^~03/01/2004~
-~04661~^~337~^0.^0^^~4~^~BFZN~^~04047~^^^^^^^^^~03/01/2004~
-~04661~^~338~^0.^0^^~4~^~BFZN~^~04047~^^^^^^^^^~03/01/2004~
-~04661~^~417~^0.^0^^~4~^~BFZN~^~04047~^^^^^^^^^~03/01/2004~
-~04661~^~431~^0.^0^^~4~^~BFZN~^~04047~^^^^^^^^^~03/01/2004~
-~04661~^~432~^0.^0^^~4~^~BFZN~^~04047~^^^^^^^^^~03/01/2004~
-~04661~^~435~^0.^0^^~4~^~NC~^~04047~^^^^^^^^^~07/01/2009~
-~04661~^~601~^0.^0^^~4~^~BFZN~^~04047~^^^^^^^^^~03/01/2004~
-~04661~^~636~^86.^0^^~4~^~BFZN~^~04047~^^^^^^^^^~03/01/2004~
-~04662~^~208~^880.^0^^~4~^~NC~^^^^^^^^^^~03/01/2004~
-~04662~^~262~^0.^0^^~4~^~BFZN~^~04513~^^^^^^^^^~03/01/2004~
-~04662~^~263~^0.^0^^~4~^~BFZN~^~04513~^^^^^^^^^~03/01/2004~
-~04662~^~268~^3680.^0^^~4~^~NC~^^^^^^^^^^~03/01/2004~
-~04662~^~301~^1.^1^^~1~^~A~^^^^^^^^^^~03/01/2004~
-~04662~^~304~^0.^1^^~1~^~A~^^^^^^^^^~1~^~03/01/2004~
-~04662~^~305~^0.^1^^~1~^~A~^^^^^^^^^~1~^~03/01/2004~
-~04662~^~306~^4.^1^^~1~^~A~^^^^^^^^^^~03/01/2004~
-~04662~^~307~^6.^1^^~1~^~A~^^^^^^^^^^~03/01/2004~
-~04662~^~318~^0.^0^^~4~^~BFZN~^~04513~^^^^^^^^^~03/01/2004~
-~04662~^~319~^0.^0^^~4~^~BFZN~^~04513~^^^^^^^^^~03/01/2004~
-~04662~^~320~^0.^0^^~4~^~BFZN~^~04513~^^^^^^^^^~03/01/2004~
-~04662~^~321~^0.^0^^~4~^~BFZN~^~04513~^^^^^^^^^~03/01/2004~
-~04662~^~322~^0.^0^^~4~^~BFZN~^~04513~^^^^^^^^^~03/01/2004~
-~04662~^~334~^0.^0^^~4~^~BFZN~^~04513~^^^^^^^^^~03/01/2004~
-~04662~^~337~^0.^0^^~4~^~BFZN~^~04513~^^^^^^^^^~03/01/2004~
-~04662~^~338~^0.^0^^~4~^~BFZN~^~04513~^^^^^^^^^~03/01/2004~
-~04662~^~417~^0.^0^^~4~^~BFZN~^~04513~^^^^^^^^^~03/01/2004~
-~04662~^~431~^0.^0^^~4~^~BFZN~^~04513~^^^^^^^^^~03/01/2004~
-~04662~^~432~^0.^0^^~4~^~BFZN~^~04513~^^^^^^^^^~03/01/2004~
-~04662~^~435~^0.^0^^~4~^~NC~^~04513~^^^^^^^^^~07/01/2009~
-~04662~^~601~^0.^0^^~4~^~BFZN~^~04513~^^^^^^^^^~03/01/2004~
-~04662~^~636~^95.^0^^~4~^~BFZN~^~04513~^^^^^^^^^~03/01/2004~
-~04663~^~208~^884.^0^^~4~^~NC~^^^^^^^^^^~03/01/2004~
-~04663~^~262~^0.^0^^~4~^~BFZN~^~04513~^^^^^^^^^~03/01/2004~
-~04663~^~263~^0.^0^^~4~^~BFZN~^~04513~^^^^^^^^^~03/01/2004~
-~04663~^~268~^3699.^0^^~4~^~NC~^^^^^^^^^^~03/01/2004~
-~04663~^~301~^2.^1^^~1~^~A~^^^^^^^^^^~03/01/2004~
-~04663~^~304~^0.^1^^~1~^~A~^^^^^^^^^~1~^~03/01/2004~
-~04663~^~305~^0.^1^^~1~^~A~^^^^^^^^^~1~^~03/01/2004~
-~04663~^~306~^1.^1^^~1~^~A~^^^^^^^^^~1~^~03/01/2004~
-~04663~^~307~^6.^1^^~1~^~A~^^^^^^^^^^~03/01/2004~
-~04663~^~318~^0.^0^^~4~^~BFZN~^~04513~^^^^^^^^^~03/01/2004~
-~04663~^~319~^0.^0^^~4~^~BFZN~^~04513~^^^^^^^^^~03/01/2004~
-~04663~^~320~^0.^0^^~4~^~BFZN~^~04513~^^^^^^^^^~03/01/2004~
-~04663~^~321~^0.^0^^~4~^~BFZN~^~04513~^^^^^^^^^~03/01/2004~
-~04663~^~322~^0.^0^^~4~^~BFZN~^~04513~^^^^^^^^^~03/01/2004~
-~04663~^~334~^0.^0^^~4~^~BFZN~^~04513~^^^^^^^^^~03/01/2004~
-~04663~^~337~^0.^0^^~4~^~BFZN~^~04513~^^^^^^^^^~03/01/2004~
-~04663~^~338~^0.^0^^~4~^~BFZN~^~04513~^^^^^^^^^~03/01/2004~
-~04663~^~417~^0.^0^^~4~^~BFZN~^~04513~^^^^^^^^^~03/01/2004~
-~04663~^~431~^0.^0^^~4~^~BFZN~^~04513~^^^^^^^^^~03/01/2004~
-~04663~^~432~^0.^0^^~4~^~BFZN~^~04513~^^^^^^^^^~03/01/2004~
-~04663~^~435~^0.^0^^~4~^~NC~^~04513~^^^^^^^^^~12/01/2006~
-~04663~^~601~^0.^0^^~4~^~BFZN~^~04513~^^^^^^^^^~03/01/2004~
-~04663~^~636~^95.^0^^~4~^~BFZN~^~04513~^^^^^^^^^~03/01/2004~
-~04664~^~208~^884.^0^^~4~^~NC~^^^^^^^^^^~03/01/2004~
-~04664~^~262~^0.^0^^~4~^~BFZN~^~04034~^^^^^^^^^~03/01/2004~
-~04664~^~263~^0.^0^^~4~^~BFZN~^~04034~^^^^^^^^^~03/01/2004~
-~04664~^~268~^3699.^0^^~4~^~NC~^^^^^^^^^^~03/01/2004~
-~04664~^~301~^0.^0^^~4~^~BFZN~^~04034~^^^^^^^^^~03/01/2004~
-~04664~^~304~^0.^0^^~4~^~BFZN~^~04034~^^^^^^^^^~03/01/2004~
-~04664~^~305~^0.^0^^~4~^~BFZN~^~04034~^^^^^^^^^~03/01/2004~
-~04664~^~306~^0.^0^^~4~^~BFZN~^~04034~^^^^^^^^^~03/01/2004~
-~04664~^~307~^0.^0^^~4~^~BFZN~^~04034~^^^^^^^^^~03/01/2004~
-~04664~^~318~^0.^0^^~4~^~BFZN~^~04034~^^^^^^^^^~03/01/2004~
-~04664~^~319~^0.^0^^~4~^~BFZN~^~04034~^^^^^^^^^~03/01/2004~
-~04664~^~320~^0.^0^^~4~^~BFZN~^~04034~^^^^^^^^^~03/01/2004~
-~04664~^~321~^0.^0^^~4~^~BFZN~^~04034~^^^^^^^^^~03/01/2004~
-~04664~^~322~^0.^0^^~4~^~BFZN~^~04034~^^^^^^^^^~03/01/2004~
-~04664~^~334~^0.^0^^~4~^~BFZN~^~04034~^^^^^^^^^~03/01/2004~
-~04664~^~337~^0.^0^^~4~^~BFZN~^~04034~^^^^^^^^^~03/01/2004~
-~04664~^~338~^0.^0^^~4~^~BFZN~^~04034~^^^^^^^^^~03/01/2004~
-~04664~^~417~^0.^0^^~4~^~BFZN~^~04034~^^^^^^^^^~03/01/2004~
-~04664~^~431~^0.^0^^~4~^~BFZN~^~04034~^^^^^^^^^~03/01/2004~
-~04664~^~432~^0.^0^^~4~^~BFZN~^~04034~^^^^^^^^^~03/01/2004~
-~04664~^~435~^0.^0^^~4~^~NC~^~04034~^^^^^^^^^~07/01/2009~
-~04664~^~601~^0.^0^^~4~^~BFZN~^~04034~^^^^^^^^^~03/01/2004~
-~04664~^~636~^132.^0^^~4~^~BFZN~^~04034~^^^^^^^^^~03/01/2004~
-~04665~^~208~^714.^0^^~8~^~LC~^^^^^^^^^^~05/01/2004~
-~04665~^~262~^0.^0^^~4~^~BFZN~^^^^^^^^^^~05/01/2004~
-~04665~^~263~^0.^0^^~4~^~BFZN~^^^^^^^^^^~05/01/2004~
-~04665~^~268~^2989.^0^^~8~^~LC~^^^^^^^^^^~05/01/2004~
-~04665~^~301~^66.^0^^~4~^~BFZN~^^^^^^^^^^~05/01/2004~
-~04665~^~304~^6.^0^^~4~^~BFZN~^^^^^^^^^^~05/01/2004~
-~04665~^~305~^51.^0^^~4~^~BFZN~^^^^^^^^^^~05/01/2004~
-~04665~^~306~^94.^0^^~4~^~BFZN~^^^^^^^^^^~05/01/2004~
-~04665~^~307~^879.^0^^~8~^~LC~^^^^^^^^^^~05/01/2004~
-~04665~^~318~^4286.^0^^~8~^~LC~^^^^^^^^^^~05/01/2004~
-~04665~^~319~^981.^0^^~4~^~NR~^^^^^^^^^^~05/01/2004~
-~04665~^~320~^1032.^0^^~4~^~NC~^^^^^^^^^^~05/01/2004~
-~04665~^~321~^610.^0^^~4~^~BFZN~^^^^^^^^^^~05/01/2004~
-~04665~^~322~^0.^0^^~4~^~BFZN~^^^^^^^^^^~05/01/2004~
-~04665~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2009~
-~04665~^~334~^0.^0^^~4~^~BFZN~^^^^^^^^^^~05/01/2004~
-~04665~^~337~^0.^0^^~4~^~BFZN~^^^^^^^^^^~05/01/2004~
-~04665~^~417~^3.^0^^~4~^~BFZN~^^^^^^^^^^~05/01/2004~
-~04665~^~431~^0.^0^^~4~^~BFZN~^^^^^^^^^^~05/01/2004~
-~04665~^~432~^3.^0^^~4~^~BFZN~^^^^^^^^^^~05/01/2004~
-~04665~^~435~^3.^0^^~4~^~NC~^^^^^^^^^^~03/01/2009~
-~04665~^~601~^0.^0^^~8~^~LC~^^^^^^^^^^~05/01/2004~
-~04666~^~208~^884.^0^^~4~^~BFZN~^~04554~^^^^^^^^^~04/01/2004~
-~04666~^~262~^0.^0^^~4~^~BFZN~^~04554~^^^^^^^^^~04/01/2004~
-~04666~^~263~^0.^0^^~4~^~BFZN~^~04554~^^^^^^^^^~04/01/2004~
-~04666~^~268~^3699.^0^^~4~^~BFZN~^~04554~^^^^^^^^^~04/01/2004~
-~04666~^~301~^0.^0^^~4~^~BFZN~^~04554~^^^^^^^^^~04/01/2004~
-~04666~^~304~^0.^0^^~4~^~BFZN~^~04554~^^^^^^^^^~04/01/2004~
-~04666~^~305~^0.^0^^~4~^~BFZN~^~04554~^^^^^^^^^~04/01/2004~
-~04666~^~306~^0.^0^^~4~^~BFZN~^~04554~^^^^^^^^^~04/01/2004~
-~04666~^~307~^0.^0^^~4~^~BFZN~^~04554~^^^^^^^^^~04/01/2004~
-~04666~^~318~^0.^0^^~4~^~BFZN~^~04554~^^^^^^^^^~04/01/2004~
-~04666~^~319~^0.^0^^~4~^~BFZN~^~04554~^^^^^^^^^~04/01/2004~
-~04666~^~320~^0.^0^^~4~^~BFZN~^~04554~^^^^^^^^^~04/01/2004~
-~04666~^~321~^0.^0^^~4~^~BFZN~^~04554~^^^^^^^^^~04/01/2004~
-~04666~^~322~^0.^0^^~4~^~BFZN~^~04554~^^^^^^^^^~04/01/2004~
-~04666~^~324~^0.^0^^~4~^~BFZN~^~04554~^^^^^^^^^~05/01/2010~
-~04666~^~334~^0.^0^^~4~^~BFZN~^~04554~^^^^^^^^^~04/01/2004~
-~04666~^~337~^0.^0^^~4~^~BFZN~^~04554~^^^^^^^^^~04/01/2004~
-~04666~^~338~^0.^0^^~4~^~BFZN~^~04554~^^^^^^^^^~04/01/2004~
-~04666~^~417~^0.^0^^~4~^~BFZN~^~04554~^^^^^^^^^~04/01/2004~
-~04666~^~431~^0.^0^^~4~^~BFZN~^~04554~^^^^^^^^^~04/01/2004~
-~04666~^~432~^0.^0^^~4~^~BFZN~^~04554~^^^^^^^^^~04/01/2004~
-~04666~^~435~^0.^0^^~4~^~NC~^~04554~^^^^^^^^^~05/01/2010~
-~04666~^~601~^0.^0^^~4~^~BFZN~^~04554~^^^^^^^^^~04/01/2004~
-~04667~^~208~^884.^0^^~4~^~BFZN~^~04554~^^^^^^^^^~04/01/2004~
-~04667~^~262~^0.^0^^~4~^~BFZN~^~04554~^^^^^^^^^~04/01/2004~
-~04667~^~263~^0.^0^^~4~^~BFZN~^~04554~^^^^^^^^^~04/01/2004~
-~04667~^~268~^3699.^0^^~4~^~BFZN~^~04554~^^^^^^^^^~04/01/2004~
-~04667~^~301~^0.^0^^~4~^~BFZN~^~04554~^^^^^^^^^~04/01/2004~
-~04667~^~304~^0.^0^^~4~^~BFZN~^~04554~^^^^^^^^^~04/01/2004~
-~04667~^~305~^0.^0^^~4~^~BFZN~^~04554~^^^^^^^^^~04/01/2004~
-~04667~^~306~^0.^0^^~4~^~BFZN~^~04554~^^^^^^^^^~04/01/2004~
-~04667~^~307~^0.^0^^~4~^~BFZN~^~04554~^^^^^^^^^~04/01/2004~
-~04667~^~318~^0.^0^^~4~^~BFZN~^~04554~^^^^^^^^^~04/01/2004~
-~04667~^~319~^0.^0^^~4~^~BFZN~^~04554~^^^^^^^^^~04/01/2004~
-~04667~^~320~^0.^0^^~4~^~BFZN~^~04554~^^^^^^^^^~04/01/2004~
-~04667~^~321~^0.^0^^~4~^~BFZN~^~04554~^^^^^^^^^~04/01/2004~
-~04667~^~322~^0.^0^^~4~^~BFZN~^~04554~^^^^^^^^^~04/01/2004~
-~04667~^~334~^0.^0^^~4~^~BFZN~^~04554~^^^^^^^^^~04/01/2004~
-~04667~^~337~^0.^0^^~4~^~BFZN~^~04554~^^^^^^^^^~04/01/2004~
-~04667~^~338~^0.^0^^~4~^~BFZN~^~04554~^^^^^^^^^~04/01/2004~
-~04667~^~417~^0.^0^^~4~^~BFZN~^~04554~^^^^^^^^^~04/01/2004~
-~04667~^~431~^0.^0^^~4~^~BFZN~^~04554~^^^^^^^^^~04/01/2004~
-~04667~^~432~^0.^0^^~4~^~BFZN~^~04554~^^^^^^^^^~04/01/2004~
-~04667~^~435~^0.^0^^~4~^~NC~^~04554~^^^^^^^^^~05/01/2010~
-~04667~^~601~^0.^0^^~4~^~BFZN~^~04554~^^^^^^^^^~04/01/2004~
-~04667~^~636~^200.^0^^~4~^~BFZN~^~04554~^^^^^^^^^~04/01/2004~
-~04668~^~208~^714.^0^^~8~^~LC~^^^^^^^^^^~05/01/2004~
-~04668~^~268~^2989.^0^^~8~^~LC~^^^^^^^^^^~01/01/2005~
-~04668~^~301~^3.^0^^~4~^~BFZN~^~04628~^^^^^^^^^~01/01/2005~
-~04668~^~304~^1.^0^^~4~^~BFZN~^~04628~^^^^^^^^^~01/01/2005~
-~04668~^~305~^5.^0^^~4~^~BFZN~^~04628~^^^^^^^^^~01/01/2005~
-~04668~^~306~^18.^0^^~4~^~BFZN~^~04628~^^^^^^^^^~01/01/2005~
-~04668~^~307~^886.^0^^~8~^~LC~^^^^^^^^^^~05/01/2004~
-~04668~^~318~^3571.^0^^~8~^~LC~^^^^^^^^^^~05/01/2004~
-~04668~^~417~^1.^0^^~4~^~BFZN~^~04628~^^^^^^^^^~01/01/2005~
-~04668~^~431~^0.^0^^~4~^~BFZN~^~04628~^^^^^^^^^~01/01/2005~
-~04668~^~432~^1.^0^^~4~^~BFZN~^~04628~^^^^^^^^^~01/01/2005~
-~04668~^~435~^1.^0^^~4~^~NC~^~04628~^^^^^^^^^~01/01/2008~
-~04668~^~601~^0.^0^^~8~^~LC~^^^^^^^^^^~05/01/2004~
-~04669~^~208~^884.^0^^~4~^~NC~^~04044~^^^^^^^^^~04/01/2004~
-~04669~^~262~^0.^0^^~4~^~BFZN~^~04044~^^^^^^^^^~04/01/2004~
-~04669~^~263~^0.^0^^~4~^~BFZN~^~04044~^^^^^^^^^~04/01/2004~
-~04669~^~268~^3699.^0^^~4~^~NC~^~04044~^^^^^^^^^~04/01/2004~
-~04669~^~301~^0.^0^^~4~^~BFZN~^~04044~^^^^^^^^^~04/01/2004~
-~04669~^~304~^0.^0^^~4~^~BFZN~^~04044~^^^^^^^^^~04/01/2004~
-~04669~^~305~^0.^0^^~4~^~BFZN~^~04044~^^^^^^^^^~04/01/2004~
-~04669~^~306~^0.^0^^~4~^~BFZN~^~04044~^^^^^^^^^~04/01/2004~
-~04669~^~307~^0.^0^^~4~^~BFZN~^~04044~^^^^^^^^^~04/01/2004~
-~04669~^~318~^0.^0^^~4~^~BFZN~^~04044~^^^^^^^^^~04/01/2004~
-~04669~^~319~^0.^0^^~4~^~BFZN~^~04044~^^^^^^^^^~04/01/2004~
-~04669~^~320~^0.^0^^~4~^~BFZN~^~04044~^^^^^^^^^~04/01/2004~
-~04669~^~321~^0.^0^^~4~^~BFZN~^~04044~^^^^^^^^^~04/01/2004~
-~04669~^~322~^0.^0^^~4~^~BFZN~^~04044~^^^^^^^^^~04/01/2004~
-~04669~^~334~^0.^0^^~4~^~BFZN~^~04044~^^^^^^^^^~04/01/2004~
-~04669~^~337~^0.^0^^~4~^~BFZN~^~04044~^^^^^^^^^~04/01/2004~
-~04669~^~338~^0.^0^^~4~^~BFZN~^~04044~^^^^^^^^^~04/01/2004~
-~04669~^~417~^0.^0^^~4~^~BFZN~^~04044~^^^^^^^^^~04/01/2004~
-~04669~^~431~^0.^0^^~4~^~BFZN~^~04044~^^^^^^^^^~04/01/2004~
-~04669~^~432~^0.^0^^~4~^~BFZN~^~04044~^^^^^^^^^~04/01/2004~
-~04669~^~435~^0.^0^^~4~^~NC~^~04044~^^^^^^^^^~03/01/2007~
-~04669~^~601~^0.^0^^~4~^~BFZN~^~04044~^^^^^^^^^~04/01/2004~
-~04669~^~636~^250.^0^^~4~^~BFZN~^~04044~^^^^^^^^^~04/01/2004~
-~04673~^~208~^583.^0^^~4~^~NC~^^^^^^^^^^~01/01/2009~
-~04673~^~268~^2438.^0^^~4~^~NC~^^^^^^^^^^~01/01/2009~
-~04673~^~305~^4.^0^^~9~^~MC~^^^^^^^^^^~05/01/2004~
-~04673~^~306~^28.^0^^~9~^~MC~^^^^^^^^^^~05/01/2004~
-~04673~^~307~^646.^0^^~9~^~MC~^^^^^^^^^^~05/01/2004~
-~04673~^~318~^3819.^0^^~9~^~MC~^^^^^^^^^^~05/01/2004~
-~04673~^~601~^0.^0^^~9~^~MC~^^^^^^^^^^~05/01/2004~
-~04674~^~208~^337.^0^^~9~^~MC~^^^^^^^^^^~03/01/2007~
-~04674~^~268~^1410.^0^^~9~^~MC~^^^^^^^^^^~03/01/2007~
-~04674~^~301~^3.^1^^~1~^~A~^^^^^^^^^^~03/01/2007~
-~04674~^~304~^1.^1^^~1~^~A~^^^^^^^^^^~03/01/2007~
-~04674~^~305~^1.^1^^~1~^~A~^^^^^^^^^^~03/01/2007~
-~04674~^~306~^32.^1^^~1~^~A~^^^^^^^^^^~03/01/2007~
-~04674~^~307~^580.^1^^~1~^~A~^^^^^^^^^^~03/01/2007~
-~04674~^~318~^5161.^0^^~9~^~MC~^^^^^^^^^^~03/01/2007~
-~04674~^~319~^1410.^1^^~1~^~A~^^^^^^^^^^~03/01/2007~
-~04674~^~320~^1433.^0^^~4~^~NC~^^^^^^^^^^~03/01/2007~
-~04675~^~208~^158.^0^^~9~^~MC~^^^^^^^^^^~05/01/2004~
-~04675~^~268~^661.^0^^~9~^~MC~^^^^^^^^^^~05/01/2004~
-~04675~^~305~^0.^0^^~9~^~MC~^^^^^^^^^^~05/01/2004~
-~04675~^~306~^12.^0^^~9~^~MC~^^^^^^^^^^~05/01/2004~
-~04675~^~307~^755.^0^^~9~^~MC~^^^^^^^^^^~05/01/2004~
-~04675~^~318~^4489.^0^^~9~^~MC~^^^^^^^^^^~05/01/2004~
-~04675~^~601~^0.^0^^~9~^~MC~^^^^^^^^^^~05/01/2004~
-~04676~^~208~^47.^0^^~9~^~MC~^^^^^^^^^^~05/01/2004~
-~04676~^~268~^197.^0^^~9~^~MC~^^^^^^^^^^~05/01/2004~
-~04676~^~305~^0.^0^^~9~^~MC~^^^^^^^^^^~05/01/2004~
-~04676~^~306~^26.^0^^~9~^~MC~^^^^^^^^^^~05/01/2004~
-~04676~^~307~^829.^0^^~9~^~MC~^^^^^^^^^^~05/01/2004~
-~04676~^~318~^5772.^0^^~9~^~MC~^^^^^^^^^^~05/01/2004~
-~04676~^~601~^0.^0^^~9~^~MC~^^^^^^^^^^~05/01/2004~
-~04677~^~208~^605.^0^^~9~^~MC~^^^^^^^^^^~05/01/2009~
-~04677~^~268~^2531.^0^^~9~^~MC~^^^^^^^^^^~05/01/2009~
-~04677~^~305~^23.^0^^~9~^~MC~^^^^^^^^^^~05/01/2004~
-~04677~^~306~^71.^0^^~9~^~MC~^^^^^^^^^^~05/01/2004~
-~04677~^~307~^729.^0^^~9~^~MC~^^^^^^^^^^~05/01/2004~
-~04677~^~318~^5407.^0^^~9~^~MC~^^^^^^^^^^~05/01/2004~
-~04677~^~601~^23.^1^^~1~^~A~^^^^^^^^^^~01/01/2009~
-~04677~^~636~^3.^0^^~9~^~MC~^^^^^^^^^^~05/01/2004~
-~04677~^~638~^0.^0^^~9~^~MC~^^^^^^^^^^~05/01/2004~
-~04677~^~639~^0.^0^^~9~^~MC~^^^^^^^^^^~05/01/2004~
-~04677~^~641~^3.^0^^~9~^~MC~^^^^^^^^^^~05/01/2004~
-~04678~^~208~^884.^0^^~4~^~NC~^^^^^^^^^^~05/01/2005~
-~04678~^~268~^3699.^0^^~4~^~NC~^^^^^^^^^^~05/01/2005~
-~04678~^~307~^0.^0^^~9~^~MC~^^^^^^^^^^~05/01/2005~
-~04678~^~318~^0.^0^^~9~^~MC~^^^^^^^^^^~05/01/2005~
-~04678~^~324~^0.^0^^~9~^~MC~^^^^^^^^^^~05/01/2005~
-~04678~^~601~^0.^0^^~9~^~MC~^^^^^^^^^^~05/01/2005~
-~04678~^~639~^202.^1^^~1~^~A~^^^^^^^^^^~05/01/2005~
-~04678~^~641~^426.^1^^~1~^~A~^^^^^^^^^^~05/01/2005~
-~04679~^~208~^792.^1^^~9~^~MC~^^^^^^^^^^~04/01/2006~
-~04679~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2013~
-~04679~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2013~
-~04679~^~268~^3314.^0^^~9~^~MC~^^^^^^^^^^~04/01/2006~
-~04679~^~301~^0.^1^^~9~^~MC~^^^^^^^^^^~04/01/2006~
-~04679~^~304~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2013~
-~04679~^~305~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2013~
-~04679~^~306~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2013~
-~04679~^~307~^59.^1^^~9~^~MC~^^^^^^^^^^~04/01/2006~
-~04679~^~318~^0.^0^^~1~^~AS~^^^^^^^^^^~05/01/2013~
-~04679~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2013~
-~04679~^~320~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2013~
-~04679~^~321~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2013~
-~04679~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2013~
-~04679~^~324~^0.^0^^~4~^~NR~^^^^^^^^^^~05/01/2013~
-~04679~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2013~
-~04679~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2013~
-~04679~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2013~
-~04679~^~417~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2013~
-~04679~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2013~
-~04679~^~432~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2013~
-~04679~^~435~^0.^0^^~4~^~NC~^^^^^^^^^^~05/01/2013~
-~04679~^~601~^0.^1^^~9~^~MC~^^^^^^^^^^~04/01/2006~
-~04683~^~208~^606.^0^^~4~^~NC~^^^^^^^^^^~03/01/2007~
-~04683~^~268~^2537.^0^^~4~^~NC~^^^^^^^^^^~03/01/2007~
-~04683~^~307~^536.^5^^~11~^~JO~^^^1^393.^643.^^^^~2~^~03/01/2007~
-~04683~^~318~^3571.^5^^~11~^~JO~^^^1^3571.^3571.^^^^~2~^~03/01/2007~
-~04684~^~208~^730.^0^^~4~^~NC~^^^^^^^^^^~03/01/2007~
-~04684~^~268~^3055.^0^^~4~^~NC~^^^^^^^^^^~03/01/2007~
-~04684~^~307~^714.^0^^~8~^~LC~^^^^^^^^^^~03/01/2007~
-~04685~^~208~^884.^0^^~4~^~NC~^^^^^^^^^^~03/01/2007~
-~04685~^~268~^3699.^0^^~4~^~NC~^^^^^^^^^^~03/01/2007~
-~04685~^~307~^0.^0^^~8~^~LC~^^^^^^^^^^~03/01/2007~
-~04686~^~208~^207.^0^^~4~^~NC~^^^^^^^^^^~03/01/2007~
-~04686~^~262~^0.^0^^~4~^~FLC~^^^^^^^^^^~03/01/2007~
-~04686~^~263~^0.^0^^~4~^~FLC~^^^^^^^^^^~03/01/2007~
-~04686~^~268~^866.^0^^~4~^~NC~^^^^^^^^^^~03/01/2007~
-~04686~^~301~^67.^2^^~8~^~LC~^^^2^0.^133.^1^^^^~03/01/2007~
-~04686~^~304~^12.^0^^~4~^~FLC~^^^^^^^^^^~03/01/2007~
-~04686~^~305~^28.^0^^~4~^~FLC~^^^^^^^^^^~03/01/2007~
-~04686~^~306~^55.^0^^~4~^~FLC~^^^^^^^^^^~03/01/2007~
-~04686~^~307~^701.^0^^~4~^~O~^^^^^^^^^^~06/01/2013~
-~04686~^~318~^14.^0^^~4~^~FLC~^^^^^^^^^^~03/01/2007~
-~04686~^~319~^0.^0^^~4~^~FLC~^^^^^^^^^^~03/01/2007~
-~04686~^~320~^1.^0^^~4~^~NC~^^^^^^^^^^~03/01/2007~
-~04686~^~321~^6.^0^^~4~^~FLC~^^^^^^^^^^~03/01/2007~
-~04686~^~322~^0.^0^^~4~^~FLC~^^^^^^^^^^~03/01/2007~
-~04686~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2009~
-~04686~^~334~^5.^0^^~4~^~FLC~^^^^^^^^^^~03/01/2007~
-~04686~^~337~^0.^0^^~4~^~FLC~^^^^^^^^^^~03/01/2007~
-~04686~^~338~^4.^0^^~4~^~FLC~^^^^^^^^^^~03/01/2007~
-~04686~^~417~^2.^0^^~4~^~FLC~^^^^^^^^^^~03/01/2007~
-~04686~^~431~^0.^0^^~4~^~FLC~^^^^^^^^^^~03/01/2007~
-~04686~^~432~^2.^0^^~4~^~FLC~^^^^^^^^^^~03/01/2007~
-~04686~^~435~^2.^0^^~4~^~NC~^^^^^^^^^^~03/01/2009~
-~04686~^~601~^0.^2^^~8~^~LC~^^^2^0.^0.^^^^^~03/01/2007~
-~04687~^~208~^357.^0^^~8~^~LC~^^^^^^^^^^~05/01/2007~
-~04687~^~268~^1494.^0^^~8~^~LC~^^^^^^^^^^~05/01/2007~
-~04687~^~301~^4.^1^^~1~^~A~^^^^^^^^^^~04/01/2007~
-~04687~^~304~^1.^1^^~1~^~A~^^^^^^^^^^~04/01/2007~
-~04687~^~305~^4.^1^^~1~^~A~^^^^^^^^^^~04/01/2007~
-~04687~^~306~^4.^1^^~1~^~A~^^^^^^^^^^~04/01/2007~
-~04687~^~307~^670.^1^^~1~^~A~^^^^^^^^^^~04/01/2007~
-~04687~^~318~^4567.^0^^~1~^~AS~^^^^^^^^^^~04/01/2007~
-~04687~^~319~^1370.^1^^~1~^~A~^^^^^^^^^^~04/01/2007~
-~04687~^~320~^1370.^0^^~1~^~AS~^^^^^^^^^^~04/01/2007~
-~04688~^~208~^165.^9^5.^~9~^~MC~^^^1^149.^196.^8^151.^178.^~4~^~12/01/2007~
-~04688~^~268~^690.^9^^~9~^~MC~^^^^^^^^^^~08/01/2009~
-~04688~^~301~^6.^9^0.^~9~^~MC~^^^1^4.^8.^8^4.^6.^~4~^~12/01/2007~
-~04688~^~307~^1102.^9^89.^~9~^~MC~^^^1^697.^1603.^8^894.^1308.^~4~^~12/01/2007~
-~04688~^~318~^347.^9^226.^~9~^~MC~^^^1^4.^2123.^8^-174.^869.^~4~^~12/01/2007~
-~04688~^~601~^0.^9^0.^~9~^~MC~^^^1^0.^0.^8^0.^0.^~4~^~12/01/2007~
-~04689~^~208~^333.^1^^~8~^~LC~^^^^^^^^^^~01/01/2009~
-~04689~^~268~^1393.^1^^~8~^~LC~^^^^^^^^^^~08/01/2009~
-~04689~^~301~^13.^2^^~1~^~A~^^^1^13.^13.^1^^^^~01/01/2009~
-~04689~^~304~^2.^2^^~1~^~A~^^^1^2.^2.^1^^^^~01/01/2009~
-~04689~^~305~^27.^2^^~1~^~A~^^^1^27.^27.^1^^^^~01/01/2009~
-~04689~^~306~^63.^2^^~1~^~A~^^^1^45.^82.^1^^^^~01/01/2009~
-~04689~^~307~^848.^2^^~1~^~A~^^^1^839.^857.^1^^^^~01/01/2009~
-~04689~^~318~^0.^1^^~8~^~LC~^^^^^^^^^~1~^~01/01/2009~
-~04689~^~320~^0.^0^^~4~^~NC~^^^^^^^^^^~01/01/2009~
-~04689~^~601~^33.^1^^~8~^~LC~^^^^^^^^^^~01/01/2009~
-~04690~^~208~^339.^0^^~4~^~BFZN~^~04128~^^^^^^^^^~04/01/2009~
-~04690~^~262~^0.^0^^~4~^~BFZN~^~04128~^^^^^^^^^~04/01/2009~
-~04690~^~263~^0.^0^^~4~^~BFZN~^~04128~^^^^^^^^^~04/01/2009~
-~04690~^~268~^1417.^0^^~4~^~BFZN~^^^^^^^^^^~04/01/2009~
-~04690~^~301~^6.^4^0.^~1~^~A~^^^2^3.^11.^2^3.^7.^~2, 3~^~03/01/2009~
-~04690~^~304~^1.^4^0.^~1~^~A~^^^2^1.^2.^2^0.^1.^~2, 3~^~03/01/2009~
-~04690~^~305~^5.^4^1.^~1~^~A~^^^2^1.^9.^2^0.^10.^~2, 3~^~03/01/2009~
-~04690~^~306~^34.^4^10.^~1~^~A~^^^2^4.^51.^2^-10.^78.^~2, 3~^~03/01/2009~
-~04690~^~307~^589.^4^23.^~1~^~A~^^^2^537.^670.^2^486.^691.^~2, 3~^~03/01/2009~
-~04690~^~318~^4322.^0^^~1~^~AS~^^^^^^^^^^~03/01/2009~
-~04690~^~319~^1297.^3^94.^~1~^~A~^^^1^1110.^1410.^2^892.^1701.^~2, 3~^~03/01/2009~
-~04690~^~320~^1297.^0^^~1~^~AS~^^^^^^^^^^~03/01/2009~
-~04690~^~321~^0.^0^^~4~^~BFZN~^~04128~^^^^^^^^^~03/01/2009~
-~04690~^~322~^0.^0^^~4~^~BFZN~^~04128~^^^^^^^^^~04/01/2009~
-~04690~^~324~^429.^0^^~4~^~O~^^^^^^^^^^~04/01/2009~
-~04690~^~334~^0.^0^^~4~^~BFZN~^~04128~^^^^^^^^^~04/01/2009~
-~04690~^~337~^0.^0^^~4~^~BFZN~^~04128~^^^^^^^^^~04/01/2009~
-~04690~^~338~^0.^0^^~4~^~BFZN~^~04128~^^^^^^^^^~04/01/2009~
-~04690~^~417~^1.^0^^~4~^~BFZN~^~04128~^^^^^^^^^~03/01/2009~
-~04690~^~431~^0.^0^^~4~^~BFZN~^~04128~^^^^^^^^^~04/01/2009~
-~04690~^~432~^1.^0^^~4~^~BFZN~^~04128~^^^^^^^^^~03/01/2009~
-~04690~^~435~^1.^0^^~4~^~NC~^~04128~^^^^^^^^^~04/01/2009~
-~04690~^~601~^0.^0^^~4~^~BFZN~^~04128~^^^^^^^^^~03/01/2009~
-~04691~^~208~^717.^0^^~4~^~NR~^~04610~^^^^^^^^^~03/01/2009~
-~04691~^~262~^0.^0^^~4~^~BFZN~^~04610~^^^^^^^^^~03/01/2009~
-~04691~^~263~^0.^0^^~4~^~BFZN~^~04610~^^^^^^^^^~03/01/2009~
-~04691~^~268~^2999.^0^^~4~^~NR~^^^^^^^^^^~03/01/2009~
-~04691~^~301~^3.^0^^~4~^~BFZN~^~04610~^^^^^^^^^~03/01/2009~
-~04691~^~304~^3.^0^^~4~^~BFZN~^~04610~^^^^^^^^^~03/01/2009~
-~04691~^~305~^5.^0^^~4~^~BFZN~^~04610~^^^^^^^^^~03/01/2009~
-~04691~^~306~^18.^0^^~4~^~BFZN~^~04610~^^^^^^^^^~03/01/2009~
-~04691~^~307~^751.^0^^~4~^~O~^~04610~^^^^^^^^^~07/01/2010~
-~04691~^~318~^3577.^0^^~4~^~NC~^^^^^^^^^^~03/01/2009~
-~04691~^~319~^768.^0^^~4~^~BFZN~^~04610~^^^^^^^^^~03/01/2009~
-~04691~^~320~^819.^0^^~4~^~BFZN~^~04610~^^^^^^^^^~03/01/2009~
-~04691~^~321~^610.^0^^~4~^~BFZN~^~04610~^^^^^^^^^~03/01/2009~
-~04691~^~322~^0.^0^^~4~^~BFZN~^~04610~^^^^^^^^^~03/01/2009~
-~04691~^~324~^429.^1^^~8~^~LC~^^^^^^^^^^~03/01/2009~
-~04691~^~334~^0.^0^^~4~^~BFZN~^~04610~^^^^^^^^^~03/01/2009~
-~04691~^~337~^0.^0^^~4~^~BFZN~^~04610~^^^^^^^^^~03/01/2009~
-~04691~^~338~^0.^0^^~4~^~BFZN~^~04610~^^^^^^^^^~03/01/2009~
-~04691~^~417~^1.^0^^~4~^~BFZN~^~04610~^^^^^^^^^~03/01/2009~
-~04691~^~431~^0.^0^^~4~^~BFZN~^~04610~^^^^^^^^^~03/01/2009~
-~04691~^~432~^1.^0^^~4~^~BFZN~^~04610~^^^^^^^^^~03/01/2009~
-~04691~^~435~^1.^0^^~4~^~NC~^~04610~^^^^^^^^^~03/01/2009~
-~04691~^~601~^0.^0^^~4~^~BFZN~^~04610~^^^^^^^^^~03/01/2009~
-~04691~^~636~^410.^0^^~1~^~AS~^^^^^^^^^^~03/01/2009~
-~04691~^~638~^35.^1^^~1~^~A~^^^^^^^^^^~03/01/2009~
-~04691~^~639~^75.^1^^~1~^~A~^^^^^^^^^^~03/01/2009~
-~04691~^~641~^275.^1^^~1~^~A~^^^^^^^^^^~03/01/2009~
-~04692~^~208~^713.^0^^~4~^~NC~^~04611~^^^^^^^^^~03/01/2009~
-~04692~^~262~^0.^0^^~4~^~BFZN~^~04611~^^^^^^^^^~03/01/2009~
-~04692~^~263~^0.^0^^~4~^~BFZN~^~04611~^^^^^^^^^~03/01/2009~
-~04692~^~268~^2981.^0^^~4~^~NC~^^^^^^^^^^~03/01/2009~
-~04692~^~301~^3.^2^^~1~^~A~^^^1^2.^4.^1^^^^~03/01/2009~
-~04692~^~304~^1.^2^^~1~^~A~^^^1^1.^1.^1^^^^~03/01/2009~
-~04692~^~305~^5.^2^^~1~^~A~^^^1^4.^6.^1^^^^~03/01/2009~
-~04692~^~306~^17.^2^^~1~^~A~^^^1^11.^23.^1^^^^~03/01/2009~
-~04692~^~307~^657.^2^^~1~^~A~^^^1^606.^708.^1^^^^~03/01/2009~
-~04692~^~318~^3577.^0^^~4~^~NC~^^^^^^^^^^~03/01/2009~
-~04692~^~319~^768.^0^^~4~^~BFZN~^~04611~^^^^^^^^^~03/01/2009~
-~04692~^~320~^819.^0^^~4~^~BFZN~^~04611~^^^^^^^^^~03/01/2009~
-~04692~^~321~^610.^0^^~4~^~BFZN~^~04611~^^^^^^^^^~03/01/2009~
-~04692~^~322~^0.^0^^~4~^~BFZN~^~04611~^^^^^^^^^~03/01/2009~
-~04692~^~324~^429.^1^^~8~^~LC~^^^^^^^^^^~03/01/2009~
-~04692~^~334~^0.^0^^~4~^~BFZN~^~04611~^^^^^^^^^~03/01/2009~
-~04692~^~337~^0.^0^^~4~^~BFZN~^~04611~^^^^^^^^^~03/01/2009~
-~04692~^~338~^0.^0^^~4~^~BFZN~^~04611~^^^^^^^^^~03/01/2009~
-~04692~^~417~^1.^0^^~4~^~BFZN~^~04611~^^^^^^^^^~03/01/2009~
-~04692~^~431~^0.^0^^~4~^~BFZN~^~04611~^^^^^^^^^~03/01/2009~
-~04692~^~432~^1.^0^^~4~^~BFZN~^~04611~^^^^^^^^^~03/01/2009~
-~04692~^~435~^1.^0^^~4~^~NC~^~04611~^^^^^^^^^~03/01/2009~
-~04692~^~601~^0.^0^^~4~^~BFZN~^~04611~^^^^^^^^^~03/01/2009~
-~04692~^~636~^210.^0^^~1~^~AS~^^^^^^^^^^~03/01/2009~
-~04692~^~638~^37.^1^^~1~^~A~^^^^^^^^^^~03/01/2009~
-~04692~^~639~^48.^1^^~1~^~A~^^^^^^^^^^~03/01/2009~
-~04692~^~641~^112.^1^^~1~^~A~^^^^^^^^^^~03/01/2009~
-~04693~^~208~^537.^0^^~4~^~NC~^~04612~^^^^^^^^^~03/01/2009~
-~04693~^~262~^0.^0^^~4~^~BFZN~^~04612~^^^^^^^^^~03/01/2009~
-~04693~^~263~^0.^0^^~4~^~BFZN~^~04612~^^^^^^^^^~03/01/2009~
-~04693~^~268~^2247.^0^^~4~^~NC~^^^^^^^^^^~03/01/2009~
-~04693~^~301~^21.^0^^~4~^~BFZN~^~04612~^^^^^^^^^~03/01/2009~
-~04693~^~304~^2.^0^^~4~^~BFZN~^~04612~^^^^^^^^^~03/01/2009~
-~04693~^~305~^16.^0^^~4~^~BFZN~^~04612~^^^^^^^^^~03/01/2009~
-~04693~^~306~^30.^0^^~4~^~BFZN~^~04612~^^^^^^^^^~03/01/2009~
-~04693~^~307~^785.^0^^~4~^~BFZN~^~04612~^^^^^^^^^~03/01/2009~
-~04693~^~318~^3577.^0^^~4~^~NC~^^^^^^^^^^~03/01/2009~
-~04693~^~319~^768.^0^^~4~^~BFZN~^~04612~^^^^^^^^^~03/01/2009~
-~04693~^~320~^819.^0^^~4~^~BFZN~^~04612~^^^^^^^^^~03/01/2009~
-~04693~^~321~^610.^0^^~4~^~BFZN~^~04612~^^^^^^^^^~03/01/2009~
-~04693~^~322~^0.^0^^~4~^~BFZN~^~04612~^^^^^^^^^~03/01/2009~
-~04693~^~324~^429.^1^^~8~^~LC~^^^^^^^^^^~03/01/2009~
-~04693~^~334~^0.^0^^~4~^~BFZN~^~04612~^^^^^^^^^~03/01/2009~
-~04693~^~337~^0.^0^^~4~^~BFZN~^~04612~^^^^^^^^^~03/01/2009~
-~04693~^~338~^0.^0^^~4~^~BFZN~^~04612~^^^^^^^^^~03/01/2009~
-~04693~^~417~^1.^0^^~4~^~BFZN~^~04612~^^^^^^^^^~03/01/2009~
-~04693~^~431~^0.^0^^~4~^~BFZN~^~04612~^^^^^^^^^~03/01/2009~
-~04693~^~432~^1.^0^^~4~^~BFZN~^~04612~^^^^^^^^^~03/01/2009~
-~04693~^~435~^1.^0^^~4~^~NC~^~04612~^^^^^^^^^~03/01/2009~
-~04693~^~601~^0.^0^^~4~^~BFZN~^~04612~^^^^^^^^^~03/01/2009~
-~04693~^~636~^167.^0^^~1~^~AS~^^^^^^^^^^~03/01/2009~
-~04693~^~638~^31.^1^^~1~^~A~^^^^^^^^^^~03/01/2009~
-~04693~^~639~^34.^1^^~1~^~A~^^^^^^^^^^~03/01/2009~
-~04693~^~641~^94.^1^^~1~^~A~^^^^^^^^^^~03/01/2009~
-~04694~^~208~^533.^0^^~4~^~NC~^^^^^^^^^^~03/01/2009~
-~04694~^~262~^0.^0^^~4~^~BFZN~^~04613~^^^^^^^^^~03/01/2009~
-~04694~^~263~^0.^0^^~4~^~BFZN~^~04613~^^^^^^^^^~03/01/2009~
-~04694~^~268~^2229.^0^^~4~^~NC~^^^^^^^^^^~03/01/2009~
-~04694~^~301~^21.^0^^~4~^~BFZN~^~04613~^^^^^^^^^~03/01/2009~
-~04694~^~304~^2.^0^^~4~^~BFZN~^~04613~^^^^^^^^^~03/01/2009~
-~04694~^~305~^16.^0^^~4~^~BFZN~^~04613~^^^^^^^^^~03/01/2009~
-~04694~^~306~^30.^0^^~4~^~BFZN~^~04613~^^^^^^^^^~03/01/2009~
-~04694~^~307~^785.^0^^~4~^~BFZN~^~04613~^^^^^^^^^~03/01/2009~
-~04694~^~318~^3577.^0^^~4~^~NC~^^^^^^^^^^~03/01/2009~
-~04694~^~319~^768.^0^^~4~^~BFZN~^~04613~^^^^^^^^^~03/01/2009~
-~04694~^~320~^819.^0^^~4~^~BFZN~^~04613~^^^^^^^^^~03/01/2009~
-~04694~^~321~^610.^0^^~4~^~BFZN~^~04613~^^^^^^^^^~03/01/2009~
-~04694~^~322~^0.^0^^~4~^~BFZN~^~04613~^^^^^^^^^~03/01/2009~
-~04694~^~324~^429.^1^^~8~^~LC~^^^^^^^^^^~03/01/2009~
-~04694~^~334~^0.^0^^~4~^~BFZN~^~04613~^^^^^^^^^~03/01/2009~
-~04694~^~337~^0.^0^^~4~^~BFZN~^~04613~^^^^^^^^^~03/01/2009~
-~04694~^~338~^0.^0^^~4~^~BFZN~^~04613~^^^^^^^^^~03/01/2009~
-~04694~^~417~^1.^0^^~4~^~BFZN~^~04613~^^^^^^^^^~03/01/2009~
-~04694~^~431~^0.^0^^~4~^~BFZN~^~04613~^^^^^^^^^~03/01/2009~
-~04694~^~432~^1.^0^^~4~^~BFZN~^~04613~^^^^^^^^^~03/01/2009~
-~04694~^~435~^1.^0^^~4~^~NC~^~04613~^^^^^^^^^~03/01/2009~
-~04694~^~601~^1.^0^^~4~^~BFZN~^~04613~^^^^^^^^^~03/01/2009~
-~04695~^~208~^535.^0^^~4~^~NC~^~04614~^^^^^^^^^~03/01/2009~
-~04695~^~262~^0.^0^^~4~^~BFZN~^~04614~^^^^^^^^^~03/01/2009~
-~04695~^~263~^0.^0^^~4~^~BFZN~^~04614~^^^^^^^^^~03/01/2009~
-~04695~^~268~^2238.^0^^~4~^~NC~^^^^^^^^^^~03/01/2009~
-~04695~^~301~^21.^0^^~4~^~BFZN~^~04614~^^^^^^^^^~03/01/2009~
-~04695~^~304~^2.^0^^~4~^~BFZN~^~04614~^^^^^^^^^~03/01/2009~
-~04695~^~305~^16.^0^^~4~^~BFZN~^~04614~^^^^^^^^^~03/01/2009~
-~04695~^~306~^30.^0^^~4~^~BFZN~^~04614~^^^^^^^^^~03/01/2009~
-~04695~^~307~^785.^0^^~4~^~BFZN~^~04614~^^^^^^^^^~03/01/2009~
-~04695~^~318~^3577.^0^^~4~^~NC~^^^^^^^^^^~03/01/2009~
-~04695~^~319~^768.^0^^~4~^~BFZN~^~04614~^^^^^^^^^~03/01/2009~
-~04695~^~320~^819.^0^^~4~^~BFZN~^~04614~^^^^^^^^^~03/01/2009~
-~04695~^~321~^610.^0^^~4~^~BFZN~^~04614~^^^^^^^^^~03/01/2009~
-~04695~^~322~^0.^0^^~4~^~BFZN~^~04614~^^^^^^^^^~03/01/2009~
-~04695~^~324~^429.^1^^~8~^~LC~^^^^^^^^^^~03/01/2009~
-~04695~^~334~^0.^0^^~4~^~BFZN~^~04614~^^^^^^^^^~03/01/2009~
-~04695~^~337~^0.^0^^~4~^~BFZN~^~04614~^^^^^^^^^~03/01/2009~
-~04695~^~338~^0.^0^^~4~^~BFZN~^~04614~^^^^^^^^^~03/01/2009~
-~04695~^~417~^1.^0^^~4~^~BFZN~^~04614~^^^^^^^^^~03/01/2009~
-~04695~^~431~^0.^0^^~4~^~BFZN~^~04614~^^^^^^^^^~03/01/2009~
-~04695~^~432~^1.^0^^~4~^~BFZN~^~04614~^^^^^^^^^~03/01/2009~
-~04695~^~435~^1.^0^^~4~^~NC~^~04614~^^^^^^^^^~03/01/2009~
-~04695~^~601~^1.^0^^~4~^~BFZN~^~04614~^^^^^^^^^~03/01/2009~
-~04696~^~208~^717.^0^^~4~^~NC~^^^^^^^^^^~03/01/2009~
-~04696~^~262~^0.^0^^~4~^~BFZN~^^^^^^^^^^~03/01/2009~
-~04696~^~263~^0.^0^^~4~^~BFZN~^^^^^^^^^^~03/01/2009~
-~04696~^~268~^2999.^0^^~4~^~NC~^^^^^^^^^^~03/01/2009~
-~04696~^~301~^3.^0^^~4~^~BFZN~^^^^^^^^^^~03/01/2009~
-~04696~^~304~^3.^0^^~4~^~BFZN~^^^^^^^^^^~03/01/2009~
-~04696~^~305~^5.^0^^~4~^~BFZN~^^^^^^^^^^~03/01/2009~
-~04696~^~306~^18.^0^^~4~^~BFZN~^^^^^^^^^^~03/01/2009~
-~04696~^~307~^2.^0^^~4~^~BFZN~^~04617~^^^^^^^^^~03/01/2009~
-~04696~^~318~^3577.^0^^~4~^~NC~^^^^^^^^^^~03/01/2009~
-~04696~^~319~^768.^0^^~4~^~BFZN~^^^^^^^^^^~03/01/2009~
-~04696~^~320~^819.^0^^~4~^~BFZN~^^^^^^^^^^~03/01/2009~
-~04696~^~321~^610.^0^^~4~^~BFZN~^^^^^^^^^^~03/01/2009~
-~04696~^~322~^0.^0^^~4~^~BFZN~^^^^^^^^^^~03/01/2009~
-~04696~^~324~^429.^1^^~8~^~LC~^^^^^^^^^^~03/01/2009~
-~04696~^~334~^0.^0^^~4~^~BFZN~^^^^^^^^^^~03/01/2009~
-~04696~^~337~^0.^0^^~4~^~BFZN~^^^^^^^^^^~03/01/2009~
-~04696~^~338~^0.^0^^~4~^~BFZN~^^^^^^^^^^~03/01/2009~
-~04696~^~417~^1.^0^^~4~^~BFZN~^^^^^^^^^^~03/01/2009~
-~04696~^~431~^0.^0^^~4~^~BFZN~^^^^^^^^^^~03/01/2009~
-~04696~^~432~^1.^0^^~4~^~BFZN~^^^^^^^^^^~03/01/2009~
-~04696~^~435~^1.^0^^~4~^~NC~^^^^^^^^^^~03/01/2009~
-~04696~^~601~^0.^0^^~4~^~BFZN~^^^^^^^^^^~03/01/2009~
-~04697~^~208~^542.^0^^~4~^~NC~^~04620~^^^^^^^^^~03/01/2009~
-~04697~^~262~^0.^0^^~4~^~BFZN~^~04620~^^^^^^^^^~03/01/2009~
-~04697~^~263~^0.^0^^~4~^~BFZN~^~04620~^^^^^^^^^~03/01/2009~
-~04697~^~268~^2269.^0^^~4~^~NC~^^^^^^^^^^~03/01/2009~
-~04697~^~301~^21.^0^^~4~^~BFZN~^~04620~^^^^^^^^^~03/01/2009~
-~04697~^~304~^2.^0^^~4~^~BFZN~^~04620~^^^^^^^^^~03/01/2009~
-~04697~^~305~^16.^0^^~4~^~BFZN~^~04620~^^^^^^^^^~03/01/2009~
-~04697~^~306~^30.^0^^~4~^~BFZN~^~04620~^^^^^^^^^~03/01/2009~
-~04697~^~307~^2.^0^^~4~^~BFZN~^~04620~^^^^^^^^^~03/01/2009~
-~04697~^~318~^3577.^0^^~4~^~NC~^^^^^^^^^^~03/01/2009~
-~04697~^~319~^768.^0^^~4~^~BFZN~^~04620~^^^^^^^^^~03/01/2009~
-~04697~^~320~^819.^0^^~4~^~BFZN~^~04620~^^^^^^^^^~03/01/2009~
-~04697~^~321~^610.^0^^~4~^~BFZN~^~04620~^^^^^^^^^~03/01/2009~
-~04697~^~322~^0.^0^^~4~^~BFZN~^~04620~^^^^^^^^^~03/01/2009~
-~04697~^~324~^429.^1^^~8~^~LC~^^^^^^^^^^~03/01/2009~
-~04697~^~334~^0.^0^^~4~^~BFZN~^~04620~^^^^^^^^^~03/01/2009~
-~04697~^~337~^0.^0^^~4~^~BFZN~^~04620~^^^^^^^^^~03/01/2009~
-~04697~^~338~^0.^0^^~4~^~BFZN~^~04620~^^^^^^^^^~03/01/2009~
-~04697~^~417~^1.^0^^~4~^~BFZN~^~04620~^^^^^^^^^~03/01/2009~
-~04697~^~431~^0.^0^^~4~^~BFZN~^~04620~^^^^^^^^^~03/01/2009~
-~04697~^~432~^1.^0^^~4~^~BFZN~^~04620~^^^^^^^^^~03/01/2009~
-~04697~^~435~^1.^0^^~4~^~NC~^~04620~^^^^^^^^^~03/01/2009~
-~04697~^~601~^1.^0^^~4~^~BFZN~^~04620~^^^^^^^^^~03/01/2009~
-~04698~^~208~^900.^0^^~4~^~NC~^~04582~^^^^^^^^^~05/01/2010~
-~04698~^~262~^0.^0^^~4~^~BFZN~^~04582~^^^^^^^^^~05/01/2010~
-~04698~^~263~^0.^0^^~4~^~BFZN~^~04582~^^^^^^^^^~05/01/2010~
-~04698~^~268~^3766.^0^^~4~^~NC~^^^^^^^^^^~05/01/2010~
-~04698~^~301~^0.^0^^~4~^~BFZN~^~04582~^^^^^^^^^~05/01/2010~
-~04698~^~304~^0.^0^^~4~^~BFZN~^~04582~^^^^^^^^^~05/01/2010~
-~04698~^~305~^0.^0^^~4~^~BFZN~^~04582~^^^^^^^^^~05/01/2010~
-~04698~^~306~^0.^0^^~4~^~BFZN~^~04582~^^^^^^^^^~05/01/2010~
-~04698~^~307~^0.^0^^~4~^~BFZN~^~04582~^^^^^^^^^~05/01/2010~
-~04698~^~318~^0.^0^^~4~^~NC~^^^^^^^^^^~05/01/2010~
-~04698~^~319~^0.^0^^~4~^~BFZN~^~04582~^^^^^^^^^~05/01/2010~
-~04698~^~320~^0.^0^^~4~^~BFZN~^~04582~^^^^^^^^^~05/01/2010~
-~04698~^~321~^0.^0^^~4~^~BFZN~^~04582~^^^^^^^^^~05/01/2010~
-~04698~^~322~^0.^0^^~4~^~BFZN~^~04582~^^^^^^^^^~05/01/2010~
-~04698~^~324~^0.^0^^~4~^~BFZN~^^^^^^^^^^~05/01/2010~
-~04698~^~334~^0.^0^^~4~^~BFZN~^~04582~^^^^^^^^^~05/01/2010~
-~04698~^~337~^0.^0^^~4~^~BFZN~^~04582~^^^^^^^^^~05/01/2010~
-~04698~^~338~^0.^0^^~4~^~BFZN~^~04582~^^^^^^^^^~05/01/2010~
-~04698~^~417~^0.^0^^~4~^~BFZN~^~04582~^^^^^^^^^~05/01/2010~
-~04698~^~431~^0.^0^^~4~^~BFZN~^~04582~^^^^^^^^^~05/01/2010~
-~04698~^~432~^0.^0^^~4~^~BFZN~^~04582~^^^^^^^^^~05/01/2010~
-~04698~^~435~^0.^0^^~4~^~NC~^~04582~^^^^^^^^^~05/01/2010~
-~04698~^~601~^0.^0^^~4~^~BFZN~^~04582~^^^^^^^^^~05/01/2010~
-~04699~^~208~^900.^0^^~4~^~NC~^~04044~^^^^^^^^^~05/01/2010~
-~04699~^~262~^0.^0^^~4~^~BFZN~^~04044~^^^^^^^^^~05/01/2010~
-~04699~^~263~^0.^0^^~4~^~BFZN~^~04044~^^^^^^^^^~05/01/2010~
-~04699~^~268~^3766.^0^^~4~^~NC~^^^^^^^^^^~05/01/2010~
-~04699~^~301~^0.^0^^~4~^~BFZN~^~04044~^^^^^^^^^~05/01/2010~
-~04699~^~304~^0.^0^^~4~^~BFZN~^~04044~^^^^^^^^^~05/01/2010~
-~04699~^~305~^0.^0^^~4~^~BFZN~^~04044~^^^^^^^^^~05/01/2010~
-~04699~^~306~^0.^0^^~4~^~BFZN~^~04044~^^^^^^^^^~05/01/2010~
-~04699~^~307~^0.^0^^~4~^~BFZN~^~04044~^^^^^^^^^~05/01/2010~
-~04699~^~318~^0.^0^^~4~^~NC~^^^^^^^^^^~05/01/2010~
-~04699~^~319~^0.^0^^~4~^~BFZN~^~04044~^^^^^^^^^~05/01/2010~
-~04699~^~320~^0.^0^^~4~^~BFZN~^~04044~^^^^^^^^^~05/01/2010~
-~04699~^~321~^0.^0^^~4~^~BFZN~^~04044~^^^^^^^^^~05/01/2010~
-~04699~^~322~^0.^0^^~4~^~BFZN~^~04044~^^^^^^^^^~05/01/2010~
-~04699~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2010~
-~04699~^~334~^0.^0^^~4~^~BFZN~^~04044~^^^^^^^^^~05/01/2010~
-~04699~^~337~^0.^0^^~4~^~BFZN~^~04044~^^^^^^^^^~05/01/2010~
-~04699~^~338~^0.^0^^~4~^~BFZN~^~04044~^^^^^^^^^~05/01/2010~
-~04699~^~417~^0.^0^^~4~^~BFZN~^~04044~^^^^^^^^^~05/01/2010~
-~04699~^~431~^0.^0^^~4~^~BFZN~^~04044~^^^^^^^^^~05/01/2010~
-~04699~^~432~^0.^0^^~4~^~BFZN~^~04044~^^^^^^^^^~05/01/2010~
-~04699~^~435~^0.^0^^~4~^~NC~^~04044~^^^^^^^^^~05/01/2010~
-~04699~^~601~^0.^0^^~4~^~BFZN~^~04044~^^^^^^^^^~05/01/2010~
-~04700~^~208~^884.^0^^~4~^~NC~^~04044~^^^^^^^^^~06/01/2010~
-~04700~^~262~^0.^0^^~4~^~BFZN~^~04044~^^^^^^^^^~06/01/2010~
-~04700~^~263~^0.^0^^~4~^~BFZN~^~04044~^^^^^^^^^~06/01/2010~
-~04700~^~268~^3699.^0^^~4~^~BFZN~^^^^^^^^^^~06/01/2010~
-~04700~^~301~^0.^0^^~4~^~BFZN~^~04044~^^^^^^^^^~06/01/2010~
-~04700~^~304~^0.^0^^~4~^~BFZN~^~04044~^^^^^^^^^~06/01/2010~
-~04700~^~305~^0.^0^^~4~^~BFZN~^~04044~^^^^^^^^^~06/01/2010~
-~04700~^~306~^0.^0^^~4~^~BFZN~^~04044~^^^^^^^^^~06/01/2010~
-~04700~^~307~^0.^0^^~4~^~BFZN~^~04044~^^^^^^^^^~06/01/2010~
-~04700~^~318~^0.^0^^~4~^~NC~^^^^^^^^^^~06/01/2010~
-~04700~^~319~^0.^0^^~4~^~BFZN~^~04044~^^^^^^^^^~06/01/2010~
-~04700~^~320~^0.^0^^~4~^~BFZN~^~04044~^^^^^^^^^~06/01/2010~
-~04700~^~321~^0.^0^^~4~^~BFZN~^~04044~^^^^^^^^^~06/01/2010~
-~04700~^~322~^0.^0^^~4~^~BFZN~^~04044~^^^^^^^^^~06/01/2010~
-~04700~^~324~^0.^0^^~4~^~BFZN~^~04044~^^^^^^^^^~06/01/2010~
-~04700~^~334~^0.^0^^~4~^~BFZN~^~04044~^^^^^^^^^~06/01/2010~
-~04700~^~337~^0.^0^^~4~^~BFZN~^~04044~^^^^^^^^^~06/01/2010~
-~04700~^~338~^0.^0^^~4~^~BFZN~^~04044~^^^^^^^^^~06/01/2010~
-~04700~^~417~^0.^0^^~4~^~BFZN~^~04044~^^^^^^^^^~06/01/2010~
-~04700~^~431~^0.^0^^~4~^~BFZN~^~04044~^^^^^^^^^~06/01/2010~
-~04700~^~432~^0.^0^^~4~^~BFZN~^~04044~^^^^^^^^^~06/01/2010~
-~04700~^~435~^0.^0^^~4~^~NC~^~04044~^^^^^^^^^~06/01/2010~
-~04700~^~601~^0.^0^^~4~^~BFZN~^~04044~^^^^^^^^^~06/01/2010~
-~04701~^~208~^884.^0^^~4~^~NC~^~04044~^^^^^^^^^~06/01/2010~
-~04701~^~262~^0.^0^^~4~^~BFZN~^~04044~^^^^^^^^^~06/01/2010~
-~04701~^~263~^0.^0^^~4~^~BFZN~^~04044~^^^^^^^^^~06/01/2010~
-~04701~^~268~^3699.^0^^~4~^~NC~^^^^^^^^^^~06/01/2010~
-~04701~^~301~^0.^0^^~4~^~BFZN~^~04044~^^^^^^^^^~06/01/2010~
-~04701~^~304~^0.^0^^~4~^~BFZN~^~04044~^^^^^^^^^~06/01/2010~
-~04701~^~305~^0.^0^^~4~^~BFZN~^~04044~^^^^^^^^^~06/01/2010~
-~04701~^~306~^0.^0^^~4~^~BFZN~^~04044~^^^^^^^^^~06/01/2010~
-~04701~^~307~^0.^0^^~4~^~BFZN~^~04044~^^^^^^^^^~06/01/2010~
-~04701~^~318~^0.^0^^~4~^~NC~^^^^^^^^^^~06/01/2010~
-~04701~^~319~^0.^0^^~4~^~BFZN~^~04044~^^^^^^^^^~06/01/2010~
-~04701~^~320~^0.^0^^~4~^~BFZN~^~04044~^^^^^^^^^~06/01/2010~
-~04701~^~321~^0.^0^^~4~^~BFZN~^~04044~^^^^^^^^^~06/01/2010~
-~04701~^~322~^0.^0^^~4~^~BFZN~^~04044~^^^^^^^^^~06/01/2010~
-~04701~^~324~^0.^0^^~4~^~BFZN~^~04044~^^^^^^^^^~06/01/2010~
-~04701~^~334~^0.^0^^~4~^~BFZN~^~04044~^^^^^^^^^~06/01/2010~
-~04701~^~337~^0.^0^^~4~^~BFZN~^~04044~^^^^^^^^^~06/01/2010~
-~04701~^~338~^0.^0^^~4~^~BFZN~^~04044~^^^^^^^^^~06/01/2010~
-~04701~^~417~^0.^0^^~4~^~BFZN~^~04044~^^^^^^^^^~06/01/2010~
-~04701~^~431~^0.^0^^~4~^~BFZN~^~04044~^^^^^^^^^~06/01/2010~
-~04701~^~432~^0.^0^^~4~^~BFZN~^~04044~^^^^^^^^^~06/01/2010~
-~04701~^~435~^0.^0^^~4~^~NC~^~04044~^^^^^^^^^~06/01/2010~
-~04701~^~601~^0.^0^^~4~^~BFZN~^~04044~^^^^^^^^^~06/01/2010~
-~04702~^~208~^884.^0^^~4~^~BFZN~^~04502~^^^^^^^^^~06/01/2010~
-~04702~^~262~^0.^0^^~4~^~BFZN~^~04502~^^^^^^^^^~06/01/2010~
-~04702~^~263~^0.^0^^~4~^~BFZN~^~04502~^^^^^^^^^~06/01/2010~
-~04702~^~268~^3699.^0^^~4~^~BFZN~^^^^^^^^^^~06/01/2010~
-~04702~^~301~^0.^0^^~4~^~BFZN~^~04502~^^^^^^^^^~06/01/2010~
-~04702~^~304~^0.^0^^~4~^~BFZN~^~04502~^^^^^^^^^~06/01/2010~
-~04702~^~305~^0.^0^^~4~^~BFZN~^~04502~^^^^^^^^^~06/01/2010~
-~04702~^~306~^0.^0^^~4~^~BFZN~^~04502~^^^^^^^^^~06/01/2010~
-~04702~^~307~^0.^0^^~4~^~BFZN~^~04502~^^^^^^^^^~06/01/2010~
-~04702~^~318~^0.^0^^~4~^~NC~^^^^^^^^^^~06/01/2010~
-~04702~^~319~^0.^0^^~4~^~BFZN~^~04502~^^^^^^^^^~06/01/2010~
-~04702~^~320~^0.^0^^~4~^~BFZN~^~04502~^^^^^^^^^~06/01/2010~
-~04702~^~321~^0.^0^^~4~^~BFZN~^~04502~^^^^^^^^^~06/01/2010~
-~04702~^~322~^0.^0^^~4~^~BFZN~^~04502~^^^^^^^^^~06/01/2010~
-~04702~^~324~^0.^0^^~4~^~BFZN~^~04502~^^^^^^^^^~06/01/2010~
-~04702~^~334~^0.^0^^~4~^~BFZN~^~04502~^^^^^^^^^~06/01/2010~
-~04702~^~337~^0.^0^^~4~^~BFZN~^~04502~^^^^^^^^^~06/01/2010~
-~04702~^~338~^0.^0^^~4~^~BFZN~^~04502~^^^^^^^^^~06/01/2010~
-~04702~^~417~^0.^0^^~4~^~BFZN~^~04502~^^^^^^^^^~06/01/2010~
-~04702~^~431~^0.^0^^~4~^~BFZN~^~04502~^^^^^^^^^~06/01/2010~
-~04702~^~432~^0.^0^^~4~^~BFZN~^~04502~^^^^^^^^^~06/01/2010~
-~04702~^~435~^0.^0^^~4~^~NC~^~04502~^^^^^^^^^~06/01/2010~
-~04702~^~601~^0.^0^^~4~^~BFZN~^~04502~^^^^^^^^^~06/01/2010~
-~04703~^~208~^464.^0^^~4~^~NC~^^^^^^^^^^~01/01/2011~
-~04703~^~262~^0.^0^^~4~^~FLC~^^^^^^^^^^~01/01/2011~
-~04703~^~263~^0.^0^^~4~^~FLC~^^^^^^^^^^~01/01/2011~
-~04703~^~268~^1943.^0^^~4~^~NC~^^^^^^^^^^~01/01/2011~
-~04703~^~301~^12.^0^^~4~^~FLC~^^^^^^^^^^~01/01/2011~
-~04703~^~304~^5.^0^^~4~^~FLC~^^^^^^^^^^~01/01/2011~
-~04703~^~305~^22.^0^^~4~^~FLC~^^^^^^^^^^~01/01/2011~
-~04703~^~306~^20.^0^^~4~^~FLC~^^^^^^^^^^~01/01/2011~
-~04703~^~307~^512.^0^^~4~^~O~^^^^^^^^^^~06/01/2013~
-~04703~^~318~^70.^0^^~4~^~FLC~^^^^^^^^^^~01/01/2011~
-~04703~^~319~^10.^0^^~4~^~FLC~^^^^^^^^^^~01/01/2011~
-~04703~^~320~^12.^0^^~4~^~FLC~^^^^^^^^^^~01/01/2011~
-~04703~^~321~^18.^0^^~4~^~FLC~^^^^^^^^^^~01/01/2011~
-~04703~^~322~^1.^0^^~4~^~FLC~^^^^^^^^^^~01/01/2011~
-~04703~^~324~^6.^0^^~4~^~FLC~^^^^^^^^^^~01/01/2011~
-~04703~^~334~^7.^0^^~4~^~FLC~^^^^^^^^^^~01/01/2011~
-~04703~^~337~^0.^0^^~4~^~FLC~^^^^^^^^^^~01/01/2011~
-~04703~^~338~^41.^0^^~4~^~FLC~^^^^^^^^^^~01/01/2011~
-~04703~^~417~^5.^0^^~4~^~FLC~^^^^^^^^^^~01/01/2011~
-~04703~^~431~^0.^0^^~4~^~FLC~^^^^^^^^^^~01/01/2011~
-~04703~^~432~^5.^0^^~4~^~FLC~^^^^^^^^^^~01/01/2011~
-~04703~^~435~^5.^0^^~4~^~NC~^^^^^^^^^^~01/01/2011~
-~04703~^~601~^29.^0^^~4~^~FLC~^^^^^^^^^^~01/01/2011~
-~04704~^~208~^399.^0^^~4~^~NC~^^^^^^^^^^~01/01/2011~
-~04704~^~262~^0.^0^^~4~^~FLC~^^^^^^^^^^~01/01/2011~
-~04704~^~263~^0.^0^^~4~^~FLC~^^^^^^^^^^~01/01/2011~
-~04704~^~268~^1668.^0^^~4~^~NC~^^^^^^^^^^~01/01/2011~
-~04704~^~301~^59.^0^^~4~^~FLC~^^^^^^^^^^~01/01/2011~
-~04704~^~304~^9.^0^^~4~^~FLC~^^^^^^^^^^~01/01/2011~
-~04704~^~305~^49.^0^^~4~^~FLC~^^^^^^^^^^~01/01/2011~
-~04704~^~306~^61.^0^^~4~^~FLC~^^^^^^^^^^~01/01/2011~
-~04704~^~307~^933.^0^^~4~^~O~^^^^^^^^^^~06/01/2013~
-~04704~^~318~^180.^0^^~4~^~FLC~^^^^^^^^^^~01/01/2011~
-~04704~^~319~^50.^0^^~4~^~FLC~^^^^^^^^^^~01/01/2011~
-~04704~^~320~^51.^0^^~4~^~FLC~^^^^^^^^^^~01/01/2011~
-~04704~^~321~^8.^0^^~4~^~FLC~^^^^^^^^^^~01/01/2011~
-~04704~^~322~^0.^0^^~4~^~FLC~^^^^^^^^^^~01/01/2011~
-~04704~^~324~^4.^0^^~4~^~FLC~^^^^^^^^^^~01/01/2011~
-~04704~^~334~^0.^0^^~4~^~FLC~^^^^^^^^^^~01/01/2011~
-~04704~^~337~^0.^0^^~4~^~FLC~^^^^^^^^^^~01/01/2011~
-~04704~^~338~^0.^0^^~4~^~FLC~^^^^^^^^^^~01/01/2011~
-~04704~^~417~^3.^0^^~4~^~FLC~^^^^^^^^^^~01/01/2011~
-~04704~^~431~^0.^0^^~4~^~FLC~^^^^^^^^^^~01/01/2011~
-~04704~^~432~^3.^0^^~4~^~FLC~^^^^^^^^^^~01/01/2011~
-~04704~^~435~^3.^0^^~4~^~NC~^^^^^^^^^^~01/01/2011~
-~04704~^~601~^15.^1^^~8~^~LC~^^^^^^^^^^~01/01/2011~
-~04705~^~208~^131.^0^^~4~^~NC~^^^^^^^^^^~12/01/2010~
-~04705~^~262~^0.^0^^~4~^~FLC~^^^^^^^^^^~12/01/2010~
-~04705~^~263~^0.^0^^~4~^~FLC~^^^^^^^^^^~12/01/2010~
-~04705~^~268~^547.^0^^~4~^~NC~^^^^^^^^^^~12/01/2010~
-~04705~^~301~^33.^0^^~4~^~FLC~^^^^^^^^^^~12/01/2010~
-~04705~^~304~^4.^0^^~4~^~FLC~^^^^^^^^^^~12/01/2010~
-~04705~^~305~^30.^0^^~4~^~FLC~^^^^^^^^^^~12/01/2010~
-~04705~^~306~^48.^0^^~4~^~FLC~^^^^^^^^^^~12/01/2010~
-~04705~^~307~^1265.^0^^~4~^~FLC~^^^^^^^^^^~12/01/2010~
-~04705~^~318~^4.^0^^~4~^~FLC~^^^^^^^^^^~12/01/2010~
-~04705~^~319~^1.^0^^~4~^~FLC~^^^^^^^^^^~12/01/2010~
-~04705~^~320~^1.^0^^~4~^~FLC~^^^^^^^^^^~12/01/2010~
-~04705~^~321~^0.^0^^~4~^~FLC~^^^^^^^^^^~12/01/2010~
-~04705~^~322~^0.^0^^~4~^~FLC~^^^^^^^^^^~12/01/2010~
-~04705~^~324~^0.^0^^~4~^~FLC~^^^^^^^^^^~12/01/2010~
-~04705~^~334~^0.^0^^~4~^~FLC~^^^^^^^^^^~12/01/2010~
-~04705~^~337~^0.^0^^~4~^~FLC~^^^^^^^^^^~12/01/2010~
-~04705~^~338~^0.^0^^~4~^~FLC~^^^^^^^^^^~12/01/2010~
-~04705~^~417~^2.^0^^~4~^~FLC~^^^^^^^^^^~12/01/2010~
-~04705~^~431~^0.^0^^~4~^~FLC~^^^^^^^^^^~12/01/2010~
-~04705~^~432~^2.^0^^~4~^~FLC~^^^^^^^^^^~12/01/2010~
-~04705~^~435~^2.^0^^~4~^~NC~^^^^^^^^^^~12/01/2010~
-~04705~^~601~^1.^0^^~4~^~FLC~^^^^^^^^^^~12/01/2010~
-~04706~^~208~^169.^0^^~4~^~FLC~^^^^^^^^^^~12/01/2010~
-~04706~^~262~^0.^0^^~4~^~FLC~^^^^^^^^^^~12/01/2010~
-~04706~^~263~^0.^0^^~4~^~FLC~^^^^^^^^^^~12/01/2010~
-~04706~^~268~^705.^0^^~4~^~FLC~^^^^^^^^^^~12/01/2010~
-~04706~^~301~^24.^0^^~4~^~FLC~^^^^^^^^^^~12/01/2010~
-~04706~^~304~^13.^0^^~4~^~FLC~^^^^^^^^^^~12/01/2010~
-~04706~^~305~^37.^0^^~4~^~FLC~^^^^^^^^^^~12/01/2010~
-~04706~^~306~^69.^0^^~4~^~FLC~^^^^^^^^^^~12/01/2010~
-~04706~^~307~^1004.^2^^~8~^~LC~^^^1^941.^1067.^1^^^^~12/01/2010~
-~04706~^~318~^18.^0^^~4~^~FLC~^^^^^^^^^^~12/01/2010~
-~04706~^~319~^4.^0^^~4~^~FLC~^^^^^^^^^^~12/01/2010~
-~04706~^~320~^5.^0^^~4~^~FLC~^^^^^^^^^^~12/01/2010~
-~04706~^~321~^2.^0^^~4~^~FLC~^^^^^^^^^^~12/01/2010~
-~04706~^~322~^0.^0^^~4~^~FLC~^^^^^^^^^^~12/01/2010~
-~04706~^~324~^0.^0^^~4~^~FLC~^^^^^^^^^^~12/01/2010~
-~04706~^~334~^0.^0^^~4~^~FLC~^^^^^^^^^^~12/01/2010~
-~04706~^~337~^0.^0^^~4~^~FLC~^^^^^^^^^^~12/01/2010~
-~04706~^~338~^15.^0^^~4~^~FLC~^^^^^^^^^^~12/01/2010~
-~04706~^~417~^9.^0^^~4~^~FLC~^^^^^^^^^^~12/01/2010~
-~04706~^~431~^0.^0^^~4~^~FLC~^^^^^^^^^^~12/01/2010~
-~04706~^~432~^9.^0^^~4~^~FLC~^^^^^^^^^^~12/01/2010~
-~04706~^~435~^9.^0^^~4~^~NC~^^^^^^^^^^~12/01/2010~
-~04706~^~601~^1.^0^^~4~^~FLC~^^^^^^^^^^~12/01/2010~
-~04707~^~208~^878.^0^^~4~^~NC~^^^^^^^^^^~05/01/2011~
-~04707~^~268~^3675.^0^^~4~^~NC~^^^^^^^^^^~05/01/2011~
-~04707~^~301~^9.^1^^~1~^~A~^^^^^^^^^^~05/01/2011~
-~04707~^~304~^15.^1^^~1~^~A~^^^^^^^^^^~05/01/2011~
-~04707~^~305~^27.^1^^~1~^~A~^^^^^^^^^^~05/01/2011~
-~04707~^~306~^31.^1^^~1~^~A~^^^^^^^^^^~05/01/2011~
-~04707~^~307~^6.^1^^~1~^~A~^^^^^^^^^^~05/01/2011~
-~04707~^~601~^0.^1^^~1~^~A~^^^^^^^^^~1~^~05/01/2011~
-~04707~^~638~^31.^1^^~1~^~A~^^^^^^^^^^~05/01/2011~
-~04707~^~639~^112.^1^^~1~^~A~^^^^^^^^^^~05/01/2011~
-~04707~^~641~^235.^1^^~1~^~A~^^^^^^^^^^~05/01/2011~
-~04708~^~208~^361.^0^^~4~^~NC~^^^^^^^^^^~05/01/2013~
-~04708~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2013~
-~04708~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2013~
-~04708~^~268~^1512.^0^^~4~^~NC~^^^^^^^^^^~05/01/2013~
-~04708~^~301~^0.^0^^~8~^^^^^^^^^^^~05/01/2013~
-~04708~^~304~^2.^12^0.^~1~^~A~^^^1^1.^3.^7^1.^1.^~2, 3~^~05/01/2013~
-~04708~^~305~^15.^12^0.^~1~^~A~^^^1^7.^37.^8^14.^15.^~2, 3~^~05/01/2013~
-~04708~^~306~^31.^12^3.^~1~^~A~^^^1^12.^70.^6^22.^39.^~2, 3~^~05/01/2013~
-~04708~^~307~^800.^0^^~8~^^^^^^^^^^^~05/01/2013~
-~04708~^~318~^70.^0^^~1~^~AS~^^^^^^^^^^~05/01/2013~
-~04708~^~319~^5.^4^0.^~1~^~A~^^^1^5.^6.^1^2.^8.^~2, 3~^~05/01/2013~
-~04708~^~320~^8.^0^^~1~^~AS~^^^^^^^^^^~05/01/2013~
-~04708~^~321~^30.^6^0.^~1~^~A~^^^1^4.^104.^2^27.^32.^~2, 3~^~05/01/2013~
-~04708~^~322~^0.^6^0.^~1~^~A~^^^1^0.^0.^2^0.^0.^~1, 2, 3~^~05/01/2013~
-~04708~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2013~
-~04708~^~334~^3.^6^0.^~1~^~A~^^^1^1.^4.^2^2.^3.^~2, 3~^~05/01/2013~
-~04708~^~337~^0.^6^0.^~1~^~A~^^^1^0.^0.^^^^~1, 2, 3~^~05/01/2013~
-~04708~^~338~^27.^6^1.^~1~^~A~^^^1^21.^29.^2^18.^35.^~2, 3~^~05/01/2013~
-~04708~^~417~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2013~
-~04708~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2013~
-~04708~^~432~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2013~
-~04708~^~435~^0.^0^^~4~^~NC~^^^^^^^^^^~05/01/2013~
-~04708~^~601~^33.^0^^~8~^^^^^^^^^^^~05/01/2013~
-~04709~^~208~^158.^0^^~4~^~NC~^^^^^^^^^^~07/01/2015~
-~04709~^~262~^0.^0^^~4~^~BFFN~^~04018~^^^^^^^^^~07/01/2015~
-~04709~^~263~^0.^0^^~4~^~BFFN~^~04018~^^^^^^^^^~07/01/2015~
-~04709~^~268~^662.^0^^~4~^~NC~^^^^^^^^^^~07/01/2015~
-~04709~^~301~^5.^0^^~4~^~BFZN~^~04018~^^^^^^^^^~07/01/2015~
-~04709~^~304~^2.^0^^~4~^~BFZN~^~04018~^^^^^^^^^~07/01/2015~
-~04709~^~305~^13.^0^^~4~^~BFZN~^~04018~^^^^^^^^^~07/01/2015~
-~04709~^~306~^36.^0^^~4~^~BFZN~^~04018~^^^^^^^^^~07/01/2015~
-~04709~^~307~^833.^0^^~8~^^^^^^^^^^^~07/01/2015~
-~04709~^~318~^13.^0^^~4~^~NC~^^^^^^^^^^~07/01/2015~
-~04709~^~319~^2.^0^^~4~^~BFFN~^~04018~^^^^^^^^^~07/01/2015~
-~04709~^~320~^2.^0^^~4~^~NC~^^^^^^^^^^~07/01/2015~
-~04709~^~321~^3.^0^^~4~^~BFFN~^~04018~^^^^^^^^^~07/01/2015~
-~04709~^~322~^0.^0^^~4~^~BFFN~^~04018~^^^^^^^^^~07/01/2015~
-~04709~^~324~^0.^0^^~4~^~NR~^^^^^^^^^^~07/01/2015~
-~04709~^~334~^2.^0^^~4~^~BFFN~^~04018~^^^^^^^^^~07/01/2015~
-~04709~^~337~^0.^0^^~4~^~BFFN~^~04018~^^^^^^^^^~07/01/2015~
-~04709~^~338~^13.^0^^~4~^~BFFN~^~04018~^^^^^^^^^~07/01/2015~
-~04709~^~417~^6.^0^^~4~^~BFZN~^~04018~^^^^^^^^^~07/01/2015~
-~04709~^~431~^0.^0^^~4~^~BFZN~^~04018~^^^^^^^^^~07/01/2015~
-~04709~^~432~^6.^0^^~4~^~BFZN~^~04018~^^^^^^^^^~07/01/2015~
-~04709~^~435~^6.^0^^~4~^~NC~^^^^^^^^^^~07/01/2015~
-~04709~^~601~^0.^0^^~8~^^^^^^^^^^^~07/01/2015~
-~05000~^~208~^144.^0^^~4~^~NC~^^^^^^^^^^~05/01/2012~
-~05000~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2012~
-~05000~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2012~
-~05000~^~268~^604.^0^^~4~^~NC~^^^^^^^^^^~05/01/2012~
-~05000~^~301~^13.^0^^~4~^~BFNN~^^^^^^^^^^~05/01/2012~
-~05000~^~304~^25.^0^^~4~^~BFNN~^^^^^^^^^^~05/01/2012~
-~05000~^~305~^246.^0^^~4~^~BFNN~^^^^^^^^^^~05/01/2012~
-~05000~^~306~^284.^0^^~4~^~BFNN~^^^^^^^^^^~05/01/2012~
-~05000~^~307~^328.^0^^~4~^~BFNN~^^^^^^^^^^~05/01/2012~
-~05000~^~318~^17.^0^^~4~^~NC~^^^^^^^^^^~07/01/2013~
-~05000~^~319~^5.^0^^~4~^~BFSN~^^^^^^^^^^~05/01/2012~
-~05000~^~320~^5.^0^^~4~^~NC~^^^^^^^^^^~06/01/2013~
-~05000~^~321~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2012~
-~05000~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2012~
-~05000~^~324~^0.^0^^~4~^~BFFN~^^^^^^^^^^~05/01/2013~
-~05000~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2012~
-~05000~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2012~
-~05000~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2012~
-~05000~^~417~^11.^0^^~4~^~BFPN~^^^^^^^^^^~05/01/2012~
-~05000~^~431~^0.^0^^~4~^~BFPN~^^^^^^^^^^~05/01/2012~
-~05000~^~432~^8.^4^2.^~1~^~A~^^^1^4.^13.^3^1.^14.^~2, 3~^~05/01/2012~
-~05000~^~435~^8.^0^^~4~^~NC~^^^^^^^^^^~05/01/2012~
-~05000~^~601~^86.^0^^~4~^~BFSN~^^^^^^^^^^~05/01/2012~
-~05001~^~208~^213.^0^^~4~^~NC~^^^^^^^^^^~08/01/1979~
-~05001~^~268~^891.^0^^~4~^^^^^^^^^^^~05/01/2006~
-~05001~^~301~^11.^0^^~1~^^^^^^^^^^^~08/01/1979~
-~05001~^~304~^20.^0^^~1~^^^^^^^^^^^~08/01/1979~
-~05001~^~305~^149.^0^^~1~^^^^^^^^^^^~08/01/1979~
-~05001~^~306~^189.^0^^~1~^^^^^^^^^^^~08/01/1979~
-~05001~^~307~^70.^0^^~1~^^^^^^^^^^^~08/01/1979~
-~05001~^~318~^771.^0^^~1~^^^^^^^^^^^~08/01/1979~
-~05001~^~319~^232.^0^^~1~^^^^^^^^^^^~06/01/2002~
-~05001~^~320~^232.^0^^~1~^^^^^^^^^^^~06/01/2002~
-~05001~^~417~^30.^0^^~1~^^^^^^^^^^^~08/01/1979~
-~05001~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~
-~05001~^~432~^30.^0^^~1~^^^^^^^^^^^~08/01/1979~
-~05001~^~435~^30.^0^^~4~^~NC~^^^^^^^^^^~05/01/2006~
-~05001~^~601~^90.^0^^~1~^^^^^^^^^^^~08/01/1979~
-~05002~^~208~^291.^0^^~4~^~NC~^^^^^^^^^^~08/01/1979~
-~05002~^~268~^1218.^0^^~4~^^^^^^^^^^^
-~05002~^~301~^21.^0^^~1~^^^^^^^^^^^~08/01/1979~
-~05002~^~304~^21.^0^^~1~^^^^^^^^^^^~08/01/1979~
-~05002~^~305~^158.^0^^~1~^^^^^^^^^^^~08/01/1979~
-~05002~^~306~^190.^0^^~1~^^^^^^^^^^^~08/01/1979~
-~05002~^~307~^284.^0^^~1~^^^^^^^^^^^~08/01/1979~
-~05002~^~318~^603.^0^^~1~^^^^^^^^^^^~08/01/1979~
-~05002~^~319~^181.^0^^~1~^^^^^^^^^^^~06/01/2002~
-~05002~^~320~^181.^0^^~1~^^^^^^^^^^^~06/01/2002~
-~05002~^~417~^32.^0^^~4~^~RA~^^^^^^^^^^~10/01/1997~
-~05002~^~431~^9.^0^^~4~^~NC~^^^^^^^^^^~05/01/2000~
-~05002~^~432~^23.^0^^~1~^^^^^^^^^^^~08/01/1979~
-~05002~^~435~^38.^0^^~4~^~NC~^^^^^^^^^^~01/01/2001~
-~05002~^~601~^103.^0^^~1~^^^^^^^^^^^~08/01/1979~
-~05003~^~208~^272.^0^^~4~^~NC~^^^^^^^^^^~08/01/1979~
-~05003~^~268~^1138.^0^^~4~^^^^^^^^^^^
-~05003~^~301~^17.^0^^~1~^^^^^^^^^^^~08/01/1979~
-~05003~^~304~^25.^0^^~1~^^^^^^^^^^^~08/01/1979~
-~05003~^~305~^194.^0^^~1~^^^^^^^^^^^~08/01/1979~
-~05003~^~306~^237.^0^^~1~^^^^^^^^^^^~08/01/1979~
-~05003~^~307~^86.^0^^~1~^^^^^^^^^^^~08/01/1979~
-~05003~^~318~^826.^0^^~1~^^^^^^^^^^^~08/01/1979~
-~05003~^~319~^248.^0^^~1~^^^^^^^^^^^~06/01/2002~
-~05003~^~320~^248.^0^^~1~^^^^^^^^^^^~06/01/2002~
-~05003~^~417~^31.^0^^~4~^~RA~^^^^^^^^^^~02/01/1998~
-~05003~^~431~^2.^0^^~4~^~NC~^^^^^^^^^^~05/01/2000~
-~05003~^~432~^29.^0^^~1~^^^^^^^^^^^~08/01/1979~
-~05003~^~435~^32.^0^^~4~^~NC~^^^^^^^^^^~01/01/2001~
-~05003~^~601~^112.^0^^~1~^^^^^^^^^^^~08/01/1979~
-~05004~^~208~^234.^0^^~4~^~NC~^^^^^^^^^^~08/01/1979~
-~05004~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~09/01/2002~
-~05004~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~09/01/2002~
-~05004~^~268~^979.^0^^~4~^^^^^^^^^^^~03/01/2009~
-~05004~^~301~^15.^0^^~1~^^^^^^^^^^^~08/01/1979~
-~05004~^~304~^23.^0^^~1~^^^^^^^^^^^~08/01/1979~
-~05004~^~305~^182.^0^^~1~^^^^^^^^^^^~08/01/1979~
-~05004~^~306~^212.^0^^~1~^^^^^^^^^^^~08/01/1979~
-~05004~^~307~^79.^0^^~1~^^^^^^^^^^^~08/01/1979~
-~05004~^~318~^636.^0^^~1~^^^^^^^^^^^~08/01/1979~
-~05004~^~319~^191.^0^^~4~^~NR~^^^^^^^^^^~03/01/2003~
-~05004~^~320~^191.^0^^~4~^~NC~^^^^^^^^^^~03/01/2009~
-~05004~^~321~^0.^0^^~7~^~Z~^^^^^^^^^^~09/01/2002~
-~05004~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~09/01/2002~
-~05004~^~324~^1.^0^^~4~^~PIK~^^^^^^^^^^~03/01/2009~
-~05004~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~09/01/2002~
-~05004~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~09/01/2002~
-~05004~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~09/01/2002~
-~05004~^~417~^29.^0^^~1~^^^^^^^^^^^~08/01/1979~
-~05004~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~
-~05004~^~432~^29.^0^^~1~^^^^^^^^^^^~03/01/2009~
-~05004~^~435~^29.^0^^~4~^~NC~^^^^^^^^^^~03/01/2009~
-~05004~^~601~^107.^0^^~1~^^^^^^^^^^^~08/01/1979~
-~05005~^~208~^216.^0^^~4~^~NC~^^^^^^^^^^~08/01/1979~
-~05005~^~268~^904.^0^^~4~^^^^^^^^^^^
-~05005~^~301~^14.^0^^~1~^^^^^^^^^^^~08/01/1979~
-~05005~^~304~^19.^0^^~1~^^^^^^^^^^^~08/01/1979~
-~05005~^~305~^144.^0^^~1~^^^^^^^^^^^~08/01/1979~
-~05005~^~306~^163.^0^^~1~^^^^^^^^^^^~08/01/1979~
-~05005~^~307~^66.^0^^~1~^^^^^^^^^^^~08/01/1979~
-~05005~^~318~^579.^0^^~1~^^^^^^^^^^^~08/01/1979~
-~05005~^~319~^174.^0^^~1~^^^^^^^^^^^~06/01/2013~
-~05005~^~320~^174.^0^^~1~^^^^^^^^^^^~06/01/2002~
-~05005~^~417~^27.^0^^~1~^^^^^^^^^^^~08/01/1979~
-~05005~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~
-~05005~^~432~^27.^0^^~1~^^^^^^^^^^^~08/01/1979~
-~05005~^~435~^27.^0^^~4~^~NC~^^^^^^^^^^~01/01/2001~
-~05005~^~601~^97.^0^^~1~^^^^^^^^^^^~08/01/1979~
-~05006~^~208~^215.^0^^~4~^~NC~^^^^^^^^^^~08/01/1979~
-~05006~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~08/01/2002~
-~05006~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~08/01/2002~
-~05006~^~268~^900.^0^^~4~^^^^^^^^^^^~08/01/2009~
-~05006~^~301~^11.^24^0.^~1~^^^^^^^^^^^~08/01/1979~
-~05006~^~304~^20.^24^0.^~1~^^^^^^^^^^^~08/01/1979~
-~05006~^~305~^147.^24^2.^~1~^^^^^^^^^^^~08/01/1979~
-~05006~^~306~^189.^24^4.^~1~^^^^^^^^^^^~08/01/1979~
-~05006~^~307~^70.^24^1.^~1~^^^^^^^^^^^~08/01/1979~
-~05006~^~318~^137.^0^^~4~^~NC~^^^^^^^^^^~04/01/2016~
-~05006~^~319~^41.^0^^~4~^~NR~^^^^^^^^^^~08/01/2002~
-~05006~^~320~^41.^0^^~4~^~NC~^^^^^^^^^^~08/01/2009~
-~05006~^~321~^0.^0^^~7~^~Z~^^^^^^^^^^~08/01/2002~
-~05006~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~08/01/2002~
-~05006~^~324~^10.^0^^~4~^~PIK~^^^^^^^^^^~08/01/2009~
-~05006~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~08/01/2002~
-~05006~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~08/01/2002~
-~05006~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~08/01/2002~
-~05006~^~417~^6.^0^^~1~^^^^^^^^^^^~08/01/1979~
-~05006~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~
-~05006~^~432~^6.^0^^~1~^^^^^^^^^^^~08/01/2009~
-~05006~^~435~^6.^0^^~4~^~NC~^^^^^^^^^^~08/01/2009~
-~05006~^~601~^75.^0^^~1~^^^^^^^^^^^~08/01/1979~
-~05007~^~208~^289.^0^^~4~^~NC~^^^^^^^^^^~08/01/1979~
-~05007~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~09/01/2002~
-~05007~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~09/01/2002~
-~05007~^~268~^1209.^0^^~4~^^^^^^^^^^^~02/01/2009~
-~05007~^~301~^21.^0^^~1~^^^^^^^^^^^~08/01/1979~
-~05007~^~304~^21.^0^^~1~^^^^^^^^^^^~08/01/1979~
-~05007~^~305~^155.^0^^~1~^^^^^^^^^^^~08/01/1979~
-~05007~^~306~^185.^0^^~1~^^^^^^^^^^^~08/01/1979~
-~05007~^~307~^292.^0^^~1~^^^^^^^^^^^~08/01/1979~
-~05007~^~318~^93.^0^^~1~^^^^^^^^^^^~08/01/1979~
-~05007~^~319~^28.^0^^~4~^~NR~^^^^^^^^^^~09/01/2002~
-~05007~^~320~^28.^0^^~4~^~NC~^^^^^^^^^^~02/01/2009~
-~05007~^~321~^0.^0^^~7~^~Z~^^^^^^^^^^~09/01/2002~
-~05007~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~09/01/2002~
-~05007~^~324~^7.^0^^~4~^~BFFN~^^^^^^^^^^~02/01/2009~
-~05007~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~09/01/2002~
-~05007~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~09/01/2002~
-~05007~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~09/01/2002~
-~05007~^~417~^18.^0^^~4~^~RA~^^^^^^^^^^~10/01/1997~
-~05007~^~431~^10.^0^^~4~^~NC~^^^^^^^^^^~05/01/2000~
-~05007~^~432~^8.^0^^~1~^^^^^^^^^^^~08/01/1979~
-~05007~^~435~^25.^0^^~4~^~NC~^^^^^^^^^^~02/01/2009~
-~05007~^~601~^87.^0^^~1~^^^^^^^^^^^~08/01/1979~
-~05008~^~208~^269.^0^^~4~^~NC~^^^^^^^^^^~08/01/1979~
-~05008~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~09/01/2002~
-~05008~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~09/01/2002~
-~05008~^~268~^1125.^0^^~4~^^^^^^^^^^^~02/01/2009~
-~05008~^~301~^17.^0^^~1~^^^^^^^^^^^~08/01/1979~
-~05008~^~304~^25.^0^^~1~^^^^^^^^^^^~08/01/1979~
-~05008~^~305~^191.^0^^~1~^^^^^^^^^^^~08/01/1979~
-~05008~^~306~^234.^0^^~1~^^^^^^^^^^^~08/01/1979~
-~05008~^~307~^84.^0^^~1~^^^^^^^^^^^~08/01/1979~
-~05008~^~318~^89.^0^^~1~^^^^^^^^^^^~02/01/2006~
-~05008~^~319~^27.^0^^~4~^~NR~^^^^^^^^^^~09/01/2002~
-~05008~^~320~^27.^0^^~4~^~NC~^^^^^^^^^^~02/01/2009~
-~05008~^~321~^0.^0^^~7~^~Z~^^^^^^^^^^~09/01/2002~
-~05008~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~09/01/2002~
-~05008~^~324~^6.^0^^~4~^~BFFN~^^^^^^^^^^~02/01/2009~
-~05008~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~09/01/2002~
-~05008~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~09/01/2002~
-~05008~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~09/01/2002~
-~05008~^~417~^9.^0^^~4~^~RA~^^^^^^^^^^~10/01/1997~
-~05008~^~431~^3.^0^^~4~^~NC~^^^^^^^^^^~05/01/2000~
-~05008~^~432~^6.^0^^~1~^^^^^^^^^^^~08/01/1979~
-~05008~^~435~^11.^0^^~4~^~NC~^^^^^^^^^^~02/01/2009~
-~05008~^~601~^90.^0^^~1~^^^^^^^^^^^~08/01/1979~
-~05009~^~208~^239.^0^^~4~^~NC~^^^^^^^^^^~08/01/1979~
-~05009~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~09/01/2002~
-~05009~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~09/01/2002~
-~05009~^~268~^1000.^0^^~4~^^^^^^^^^^^~03/01/2009~
-~05009~^~301~^15.^16^0.^~1~^^^^^^^^^^^~08/01/1979~
-~05009~^~304~^23.^16^0.^~1~^^^^^^^^^^^~08/01/1979~
-~05009~^~305~^182.^16^3.^~1~^^^^^^^^^^^~08/01/1979~
-~05009~^~306~^223.^16^5.^~1~^^^^^^^^^^^~08/01/1979~
-~05009~^~307~^82.^16^1.^~1~^^^^^^^^^^^~08/01/1979~
-~05009~^~318~^161.^0^^~1~^^^^^^^^^^^~08/01/2004~
-~05009~^~319~^48.^0^^~4~^~NR~^^^^^^^^^^~10/01/2004~
-~05009~^~320~^48.^0^^~4~^~NC~^^^^^^^^^^~03/01/2009~
-~05009~^~321~^0.^0^^~7~^~Z~^^^^^^^^^^~09/01/2002~
-~05009~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~09/01/2002~
-~05009~^~324~^2.^0^^~4~^~PIK~^^^^^^^^^^~03/01/2009~
-~05009~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~09/01/2002~
-~05009~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~09/01/2002~
-~05009~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~09/01/2002~
-~05009~^~417~^5.^0^^~1~^^^^^^^^^^^~08/01/1979~
-~05009~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~
-~05009~^~432~^5.^0^^~1~^^^^^^^^^^^~03/01/2009~
-~05009~^~435~^5.^0^^~4~^~NC~^^^^^^^^^^~03/01/2009~
-~05009~^~601~^88.^0^^~1~^^^^^^^^^^^~08/01/1979~
-~05010~^~208~^219.^0^^~4~^~NC~^^^^^^^^^^~08/01/1979~
-~05010~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~11/01/2002~
-~05010~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~11/01/2002~
-~05010~^~268~^916.^0^^~4~^^^^^^^^^^^~03/01/2009~
-~05010~^~301~^13.^16^0.^~1~^^^^^^^^^^^~08/01/1979~
-~05010~^~304~^19.^16^0.^~1~^^^^^^^^^^^~08/01/1979~
-~05010~^~305~^139.^16^2.^~1~^^^^^^^^^^^~08/01/1979~
-~05010~^~306~^166.^16^6.^~1~^^^^^^^^^^^~08/01/1979~
-~05010~^~307~^67.^16^1.^~1~^^^^^^^^^^^~08/01/1979~
-~05010~^~318~^146.^0^^~1~^^^^^^^^^^^~08/01/2004~
-~05010~^~319~^44.^0^^~4~^~NR~^^^^^^^^^^~10/01/2004~
-~05010~^~320~^44.^0^^~4~^~NC~^^^^^^^^^^~03/01/2009~
-~05010~^~321~^0.^0^^~7~^~Z~^^^^^^^^^^~11/01/2002~
-~05010~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~11/01/2002~
-~05010~^~324~^1.^0^^~4~^~PIK~^^^^^^^^^^~03/01/2009~
-~05010~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~11/01/2002~
-~05010~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~11/01/2002~
-~05010~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~11/01/2002~
-~05010~^~417~^5.^0^^~1~^^^^^^^^^^^~08/01/1979~
-~05010~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~
-~05010~^~432~^5.^0^^~1~^^^^^^^^^^^~03/01/2009~
-~05010~^~435~^5.^0^^~4~^~NC~^^^^^^^^^^~03/01/2009~
-~05010~^~601~^78.^0^^~1~^^^^^^^^^^^~08/01/1979~
-~05011~^~208~^119.^0^^~4~^~NC~^^^^^^^^^^~08/01/1979~
-~05011~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~08/01/2002~
-~05011~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~08/01/2002~
-~05011~^~268~^498.^0^^~4~^^^^^^^^^^^~03/01/2009~
-~05011~^~301~^12.^24^0.^~1~^^^^^^^^^^^~08/01/1979~
-~05011~^~304~^25.^24^0.^~1~^^^^^^^^^^^~08/01/1979~
-~05011~^~305~^173.^24^3.^~1~^^^^^^^^^^^~08/01/1979~
-~05011~^~306~^229.^24^5.^~1~^^^^^^^^^^^~08/01/1979~
-~05011~^~307~^77.^24^1.^~1~^^^^^^^^^^^~08/01/1979~
-~05011~^~318~^53.^0^^~4~^~NC~^^^^^^^^^^~04/01/2016~
-~05011~^~319~^16.^0^^~4~^~NR~^^^^^^^^^^~08/01/2002~
-~05011~^~320~^16.^0^^~4~^~NC~^^^^^^^^^^~03/01/2009~
-~05011~^~321~^0.^0^^~7~^~Z~^^^^^^^^^^~08/01/2002~
-~05011~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~08/01/2002~
-~05011~^~324~^5.^0^^~4~^~BFZN~^^^^^^^^^^~03/01/2009~
-~05011~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~08/01/2002~
-~05011~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~08/01/2002~
-~05011~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~08/01/2002~
-~05011~^~417~^7.^0^^~1~^^^^^^^^^^^~08/01/1979~
-~05011~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~
-~05011~^~432~^7.^0^^~1~^^^^^^^^^^^~03/01/2009~
-~05011~^~435~^7.^0^^~4~^~NC~^^^^^^^^^^~03/01/2009~
-~05011~^~601~^70.^0^^~1~^^^^^^^^^^^~08/01/1979~
-~05012~^~208~^219.^0^^~4~^~NC~^^^^^^^^^^~08/01/1979~
-~05012~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~09/01/2002~
-~05012~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~09/01/2002~
-~05012~^~268~^916.^0^^~4~^^^^^^^^^^^~03/01/2009~
-~05012~^~301~^17.^0^^~1~^^^^^^^^^^^~08/01/1979~
-~05012~^~304~^27.^0^^~1~^^^^^^^^^^^~08/01/1979~
-~05012~^~305~^205.^0^^~1~^^^^^^^^^^^~08/01/1979~
-~05012~^~306~^257.^0^^~1~^^^^^^^^^^^~08/01/1979~
-~05012~^~307~^91.^0^^~1~^^^^^^^^^^^~08/01/1979~
-~05012~^~318~^59.^0^^~1~^^^^^^^^^^^~04/01/2005~
-~05012~^~319~^18.^0^^~4~^~NR~^^^^^^^^^^~09/01/2002~
-~05012~^~320~^18.^0^^~4~^~NC~^^^^^^^^^^~03/01/2009~
-~05012~^~321~^0.^0^^~7~^~Z~^^^^^^^^^^~09/01/2002~
-~05012~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~09/01/2002~
-~05012~^~324~^5.^0^^~4~^~BFZN~^^^^^^^^^^~03/01/2009~
-~05012~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~09/01/2002~
-~05012~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~09/01/2002~
-~05012~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~09/01/2002~
-~05012~^~417~^7.^0^^~1~^^^^^^^^^^^~08/01/1979~
-~05012~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~
-~05012~^~432~^7.^0^^~1~^^^^^^^^^^^~03/01/2009~
-~05012~^~435~^7.^0^^~4~^~NC~^^^^^^^^^^~03/01/2009~
-~05012~^~601~^94.^0^^~1~^^^^^^^^^^^~08/01/1979~
-~05013~^~208~^190.^0^^~4~^~NC~^^^^^^^^^^~08/01/1979~
-~05013~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~08/01/2002~
-~05013~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~08/01/2002~
-~05013~^~268~^795.^0^^~4~^^^^^^^^^^^~03/01/2009~
-~05013~^~301~^15.^16^0.^~1~^^^^^^^^^^^~08/01/1979~
-~05013~^~304~^25.^16^0.^~1~^^^^^^^^^^^~08/01/1979~
-~05013~^~305~^195.^16^4.^~1~^^^^^^^^^^^~08/01/1979~
-~05013~^~306~^243.^16^5.^~1~^^^^^^^^^^^~08/01/1979~
-~05013~^~307~^86.^16^1.^~1~^^^^^^^^^^^~08/01/1979~
-~05013~^~318~^53.^0^^~1~^^^^^^^^^^^~08/01/2004~
-~05013~^~319~^16.^0^^~4~^~NR~^^^^^^^^^^~08/01/2002~
-~05013~^~320~^16.^0^^~4~^~NC~^^^^^^^^^^~03/01/2009~
-~05013~^~321~^0.^0^^~7~^~Z~^^^^^^^^^^~08/01/2002~
-~05013~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~08/01/2002~
-~05013~^~324~^5.^0^^~4~^~BFZN~^^^^^^^^^^~03/01/2009~
-~05013~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~08/01/2002~
-~05013~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~08/01/2002~
-~05013~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~08/01/2002~
-~05013~^~417~^6.^0^^~1~^^^^^^^^^^^~08/01/1979~
-~05013~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~
-~05013~^~432~^6.^0^^~1~^^^^^^^^^^^~03/01/2009~
-~05013~^~435~^6.^0^^~4~^~NC~^^^^^^^^^^~03/01/2009~
-~05013~^~601~^89.^0^^~1~^^^^^^^^^^^~08/01/1979~
-~05014~^~208~^177.^0^^~4~^~NC~^^^^^^^^^^~08/01/1979~
-~05014~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~09/01/2002~
-~05014~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~09/01/2002~
-~05014~^~268~^741.^0^^~4~^^^^^^^^^^^~03/01/2009~
-~05014~^~301~^14.^16^0.^~1~^^^^^^^^^^^~08/01/1979~
-~05014~^~304~^21.^16^0.^~1~^^^^^^^^^^^~08/01/1979~
-~05014~^~305~^150.^16^2.^~1~^^^^^^^^^^^~08/01/1979~
-~05014~^~306~^180.^16^6.^~1~^^^^^^^^^^^~08/01/1979~
-~05014~^~307~^70.^16^2.^~1~^^^^^^^^^^^~08/01/1979~
-~05014~^~318~^50.^0^^~1~^^^^^^^^^^^~08/01/1979~
-~05014~^~319~^15.^0^^~4~^~NR~^^^^^^^^^^~09/01/2002~
-~05014~^~320~^15.^0^^~4~^~NC~^^^^^^^^^^~03/01/2009~
-~05014~^~321~^0.^0^^~7~^~Z~^^^^^^^^^^~09/01/2002~
-~05014~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~09/01/2002~
-~05014~^~324~^5.^0^^~4~^~BFZN~^^^^^^^^^^~03/01/2009~
-~05014~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~09/01/2002~
-~05014~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~09/01/2002~
-~05014~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~09/01/2002~
-~05014~^~417~^6.^0^^~1~^^^^^^^^^^^~08/01/1979~
-~05014~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~
-~05014~^~432~^6.^0^^~1~^^^^^^^^^^^~03/01/2009~
-~05014~^~435~^6.^0^^~4~^~NC~^^^^^^^^^^~03/01/2009~
-~05014~^~601~^83.^0^^~1~^^^^^^^^^^^~08/01/1979~
-~05015~^~208~^349.^0^^~4~^~NC~^^^^^^^^^^~08/01/1979~
-~05015~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2003~
-~05015~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2003~
-~05015~^~268~^1460.^0^^~4~^^^^^^^^^^^~08/01/2009~
-~05015~^~301~^11.^24^0.^~1~^^^^^^^^^^^~08/01/1979~
-~05015~^~304~^13.^24^0.^~1~^^^^^^^^^^^~08/01/1979~
-~05015~^~305~^100.^24^3.^~1~^^^^^^^^^^^~08/01/1979~
-~05015~^~306~^103.^24^4.^~1~^^^^^^^^^^^~08/01/1979~
-~05015~^~307~^63.^24^1.^~1~^^^^^^^^^^^~08/01/1979~
-~05015~^~318~^262.^18^59.^~1~^^^^^^^^^^^~08/01/1979~
-~05015~^~319~^76.^0^^~4~^~NR~^^^^^^^^^^~03/01/2003~
-~05015~^~320~^76.^0^^~4~^~NC~^^^^^^^^^^~08/01/2009~
-~05015~^~321~^6.^0^^~4~^~NR~^^^^^^^^^^~03/01/2003~
-~05015~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2003~
-~05015~^~324~^24.^0^^~4~^~T~^^^^^^^^^^~08/01/2009~
-~05015~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2003~
-~05015~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2003~
-~05015~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2003~
-~05015~^~417~^3.^0^^~1~^^^^^^^^^^^~08/01/1979~
-~05015~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~
-~05015~^~432~^3.^0^^~1~^^^^^^^^^^^~08/01/2009~
-~05015~^~435~^3.^0^^~4~^~NC~^^^^^^^^^^~08/01/2009~
-~05015~^~601~^109.^8^3.^~1~^^^^^^^^^^^~08/01/1979~
-~05016~^~208~^394.^0^^~4~^~NC~^^^^^^^^^^~08/01/1979~
-~05016~^~268~^1648.^0^^~4~^^^^^^^^^^^~03/01/2009~
-~05016~^~301~^26.^0^^~1~^^^^^^^^^^^~08/01/1979~
-~05016~^~304~^12.^0^^~1~^^^^^^^^^^^~08/01/1979~
-~05016~^~305~^80.^0^^~1~^^^^^^^^^^^~08/01/1979~
-~05016~^~306~^75.^0^^~1~^^^^^^^^^^^~08/01/1979~
-~05016~^~307~^581.^0^^~1~^^^^^^^^^^^~08/01/1979~
-~05016~^~318~^138.^0^^~1~^^^^^^^^^^^~08/01/1979~
-~05016~^~319~^41.^0^^~4~^~NR~^^^^^^^^^^~05/01/2009~
-~05016~^~324~^7.^0^^~4~^~BFZN~^^^^^^^^^^~03/01/2009~
-~05016~^~417~^40.^0^^~4~^~RA~^^^^^^^^^^~02/01/1998~
-~05016~^~431~^31.^0^^~4~^~NC~^^^^^^^^^^~05/01/2000~
-~05016~^~432~^9.^0^^~1~^^^^^^^^^^^~08/01/1979~
-~05016~^~435~^62.^0^^~4~^~NC~^^^^^^^^^^~05/01/2009~
-~05016~^~601~^74.^0^^~1~^^^^^^^^^^^~08/01/1979~
-~05017~^~208~^502.^0^^~4~^~NC~^^^^^^^^^^~08/01/1979~
-~05017~^~268~^2100.^0^^~4~^^^^^^^^^^^
-~05017~^~301~^14.^0^^~1~^^^^^^^^^^^~08/01/1979~
-~05017~^~304~^17.^0^^~1~^^^^^^^^^^^~08/01/1979~
-~05017~^~305~^126.^0^^~1~^^^^^^^^^^^~08/01/1979~
-~05017~^~306~^125.^0^^~1~^^^^^^^^^^^~08/01/1979~
-~05017~^~307~^53.^0^^~1~^^^^^^^^^^^~08/01/1979~
-~05017~^~318~^232.^0^^~1~^^^^^^^^^^^~08/01/1979~
-~05017~^~319~^70.^0^^~1~^^^^^^^^^^^~06/01/2002~
-~05017~^~320~^70.^0^^~1~^^^^^^^^^^^~06/01/2002~
-~05017~^~417~^33.^0^^~4~^~RA~^^^^^^^^^^~02/01/1998~
-~05017~^~431~^29.^0^^~4~^~NC~^^^^^^^^^^~05/01/2000~
-~05017~^~432~^4.^0^^~1~^^^^^^^^^^^~08/01/1979~
-~05017~^~435~^53.^0^^~4~^~NC~^^^^^^^^^^~01/01/2001~
-~05017~^~601~^73.^0^^~1~^^^^^^^^^^^~08/01/1979~
-~05018~^~208~^454.^0^^~4~^~NC~^^^^^^^^^^~08/01/1979~
-~05018~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~08/01/2002~
-~05018~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~08/01/2002~
-~05018~^~268~^1900.^0^^~4~^^^^^^^^^^^~03/01/2009~
-~05018~^~301~^14.^16^0.^~1~^^^^^^^^^^^~08/01/1979~
-~05018~^~304~^15.^16^0.^~1~^^^^^^^^^^^~08/01/1979~
-~05018~^~305~^125.^16^2.^~1~^^^^^^^^^^^~08/01/1979~
-~05018~^~306~^136.^16^7.^~1~^^^^^^^^^^^~08/01/1979~
-~05018~^~307~^65.^16^2.^~1~^^^^^^^^^^^~08/01/1979~
-~05018~^~318~^260.^0^^~4~^~NC~^^^^^^^^^^~10/01/2013~
-~05018~^~319~^78.^0^^~4~^~NR~^^^^^^^^^^~08/01/2002~
-~05018~^~320~^78.^0^^~4~^~NC~^^^^^^^^^^~03/01/2009~
-~05018~^~321~^0.^0^^~7~^~Z~^^^^^^^^^^~08/01/2002~
-~05018~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~08/01/2002~
-~05018~^~324~^8.^0^^~4~^~BFFN~^^^^^^^^^^~03/01/2009~
-~05018~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~08/01/2002~
-~05018~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~08/01/2002~
-~05018~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~08/01/2002~
-~05018~^~417~^2.^0^^~1~^^^^^^^^^^^~08/01/1979~
-~05018~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~
-~05018~^~432~^2.^0^^~1~^^^^^^^^^^^~03/01/2009~
-~05018~^~435~^2.^0^^~4~^~NC~^^^^^^^^^^~03/01/2009~
-~05018~^~601~^83.^0^^~1~^^^^^^^^^^^~08/01/1979~
-~05019~^~208~^363.^0^^~4~^~NC~^^^^^^^^^^~08/01/1979~
-~05019~^~268~^1519.^0^^~4~^^^^^^^^^^^~03/01/2009~
-~05019~^~301~^12.^16^1.^~1~^^^^^^^^^^^~08/01/1979~
-~05019~^~304~^13.^16^0.^~1~^^^^^^^^^^^~08/01/1979~
-~05019~^~305~^99.^16^2.^~1~^^^^^^^^^^^~08/01/1979~
-~05019~^~306~^117.^16^6.^~1~^^^^^^^^^^^~08/01/1979~
-~05019~^~307~^56.^16^1.^~1~^^^^^^^^^^^~08/01/1979~
-~05019~^~318~^198.^0^^~1~^^^^^^^^^^^~08/01/1979~
-~05019~^~319~^59.^0^^~4~^~NR~^^^^^^^^^^~05/01/2009~
-~05019~^~324~^7.^0^^~4~^~BFZN~^^^^^^^^^^~03/01/2009~
-~05019~^~417~^2.^0^^~1~^^^^^^^^^^^~08/01/1979~
-~05019~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~
-~05019~^~432~^2.^0^^~1~^^^^^^^^^^^~03/01/2009~
-~05019~^~435~^2.^0^^~4~^~NC~^^^^^^^^^^~05/01/2009~
-~05019~^~601~^63.^0^^~1~^^^^^^^^^^^~08/01/1979~
-~05020~^~208~^124.^0^^~4~^~NC~^^^^^^^^^^~08/01/1979~
-~05020~^~268~^519.^0^^~4~^^^^^^^^^^^
-~05020~^~301~^10.^0^^~1~^^^^^^^^^^^~08/01/1979~
-~05020~^~304~^18.^0^^~1~^^^^^^^^^^^~08/01/1979~
-~05020~^~305~^197.^0^^~1~^^^^^^^^^^^~08/01/1979~
-~05020~^~306~^228.^0^^~1~^^^^^^^^^^^~08/01/1979~
-~05020~^~307~^77.^0^^~1~^^^^^^^^^^^~08/01/1979~
-~05020~^~318~^8847.^0^^~1~^^^^^^^^^^^~08/01/1979~
-~05020~^~319~^2657.^0^^~1~^^^^^^^^^^^~06/01/2002~
-~05020~^~320~^2657.^0^^~1~^^^^^^^^^^^~06/01/2002~
-~05020~^~417~^345.^0^^~1~^^^^^^^^^^^~08/01/1979~
-~05020~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~
-~05020~^~432~^345.^0^^~1~^^^^^^^^^^^~08/01/1979~
-~05020~^~435~^345.^0^^~4~^~NC~^^^^^^^^^^~01/01/2001~
-~05020~^~601~^262.^0^^~1~^^^^^^^^^^^~08/01/1979~
-~05021~^~208~^277.^0^^~4~^~NC~^^^^^^^^^^~08/01/1979~
-~05021~^~268~^1159.^0^^~4~^^^^^^^^^^^
-~05021~^~301~^18.^0^^~1~^^^^^^^^^^^~08/01/1979~
-~05021~^~304~^25.^0^^~1~^^^^^^^^^^^~08/01/1979~
-~05021~^~305~^286.^0^^~1~^^^^^^^^^^^~08/01/1979~
-~05021~^~306~^330.^0^^~1~^^^^^^^^^^^~08/01/1979~
-~05021~^~307~^113.^0^^~1~^^^^^^^^^^^~08/01/1979~
-~05021~^~318~^11929.^0^^~1~^^^^^^^^^^^~08/01/1979~
-~05021~^~319~^3582.^0^^~1~^^^^^^^^^^^~06/01/2002~
-~05021~^~320~^3582.^0^^~1~^^^^^^^^^^^~06/01/2002~
-~05021~^~417~^379.^0^^~1~^^^^^^^^^^^~08/01/1979~
-~05021~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~
-~05021~^~432~^379.^0^^~1~^^^^^^^^^^^~08/01/1979~
-~05021~^~435~^379.^0^^~4~^~NC~^^^^^^^^^^~01/01/2001~
-~05021~^~601~^446.^0^^~1~^^^^^^^^^^^~08/01/1979~
-~05022~^~208~^157.^0^^~4~^~NC~^^^^^^^^^^~03/01/2009~
-~05022~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~08/01/2004~
-~05022~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~08/01/2004~
-~05022~^~268~^655.^0^^~4~^~NC~^^^^^^^^^^~03/01/2009~
-~05022~^~301~^14.^0^^~4~^~PAE~^^^^^^^^^^~03/01/2003~
-~05022~^~304~^14.^0^^~4~^~PAE~^^^^^^^^^^~03/01/2003~
-~05022~^~305~^289.^0^^~4~^~PAE~^^^^^^^^^^~03/01/2003~
-~05022~^~306~^224.^0^^~4~^~PAE~^^^^^^^^^^~03/01/2003~
-~05022~^~307~^67.^0^^~4~^~PAE~^^^^^^^^^^~03/01/2003~
-~05022~^~318~^5869.^0^^~4~^~PAE~^^^^^^^^^^~03/01/2003~
-~05022~^~319~^1751.^0^^~4~^~PAE~^^^^^^^^^^~03/01/2003~
-~05022~^~320~^1753.^0^^~4~^~NC~^^^^^^^^^^~03/01/2003~
-~05022~^~321~^13.^0^^~4~^~PAE~^^^^^^^^^^~09/01/2004~
-~05022~^~322~^5.^0^^~4~^~PAE~^^^^^^^^^^~09/01/2004~
-~05022~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2009~
-~05022~^~334~^5.^0^^~4~^~PAE~^^^^^^^^^^~09/01/2004~
-~05022~^~337~^12.^0^^~4~^~PAE~^^^^^^^^^^~09/01/2004~
-~05022~^~338~^37.^0^^~4~^~PIE~^^^^^^^^^^~09/01/2004~
-~05022~^~417~^257.^0^^~4~^~PAE~^^^^^^^^^^~04/01/2003~
-~05022~^~431~^0.^0^^~4~^~PIE~^^^^^^^^^^~03/01/2003~
-~05022~^~432~^257.^0^^~4~^~PAE~^^^^^^^^^^~04/01/2003~
-~05022~^~435~^257.^0^^~4~^~NC~^^^^^^^^^^~03/01/2009~
-~05022~^~601~^442.^0^^~4~^~PAE~^^^^^^^^^^~03/01/2003~
-~05023~^~208~^94.^0^^~4~^~NC~^^^^^^^^^^~03/01/2004~
-~05023~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~
-~05023~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~
-~05023~^~268~^393.^0^^~4~^~NC~^^^^^^^^^^~03/01/2004~
-~05023~^~301~^11.^1^^~1~^~A~^^^^^^^^^^~02/01/2003~
-~05023~^~304~^15.^1^^~1~^~A~^^^^^^^^^^~02/01/2003~
-~05023~^~305~^148.^1^^~1~^~A~^^^^^^^^^^~02/01/2003~
-~05023~^~306~^237.^1^^~1~^~A~^^^^^^^^^^~02/01/2003~
-~05023~^~307~^69.^1^^~1~^~A~^^^^^^^^^^~02/01/2003~
-~05023~^~318~^64.^0^^~1~^~AS~^^^^^^^^^^~02/01/2003~
-~05023~^~319~^19.^1^^~1~^~A~^^^^^^^^^^~02/01/2003~
-~05023~^~320~^19.^0^^~1~^~AS~^^^^^^^^^^~02/01/2003~
-~05023~^~321~^0.^1^^~1~^~A~^^^^^^^^^~1~^~02/01/2003~
-~05023~^~322~^0.^1^^~1~^~A~^^^^^^^^^~1~^~02/01/2003~
-~05023~^~334~^0.^1^^~1~^~A~^^^^^^^^^~1~^~02/01/2003~
-~05023~^~337~^0.^1^^~1~^~A~^^^^^^^^^~1~^~02/01/2003~
-~05023~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~
-~05023~^~417~^5.^1^^~1~^~A~^^^^^^^^^^~04/01/2003~
-~05023~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~
-~05023~^~432~^5.^1^^~1~^~A~^^^^^^^^^^~04/01/2003~
-~05023~^~435~^5.^0^^~4~^~NC~^^^^^^^^^^~03/01/2004~
-~05023~^~601~^240.^1^^~1~^~A~^^^^^^^^^^~02/01/2003~
-~05024~^~208~^154.^0^^~4~^~NC~^^^^^^^^^^~06/01/2008~
-~05024~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~09/01/2002~
-~05024~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~09/01/2002~
-~05024~^~268~^644.^0^^~4~^~NC~^^^^^^^^^^~06/01/2008~
-~05024~^~301~^17.^1^^~1~^~A~^^^^^^^^^^~02/01/2003~
-~05024~^~304~^3.^1^^~1~^~A~^^^^^^^^^^~02/01/2003~
-~05024~^~305~^189.^1^^~1~^~A~^^^^^^^^^^~02/01/2003~
-~05024~^~306~^179.^1^^~1~^~A~^^^^^^^^^^~02/01/2003~
-~05024~^~307~^56.^1^^~1~^~A~^^^^^^^^^^~02/01/2003~
-~05024~^~318~^0.^0^^~1~^~AS~^^^^^^^^^^~02/01/2003~
-~05024~^~319~^0.^1^^~1~^~A~^^^^^^^^^~1~^~02/01/2003~
-~05024~^~320~^0.^0^^~1~^~AS~^^^^^^^^^^~02/01/2003~
-~05024~^~321~^0.^1^^~1~^~A~^^^^^^^^^~1~^~04/01/2005~
-~05024~^~322~^0.^1^^~1~^~A~^^^^^^^^^~1~^~04/01/2005~
-~05024~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2009~
-~05024~^~334~^0.^1^^~1~^~A~^^^^^^^^^~1~^~04/01/2005~
-~05024~^~337~^0.^1^^~1~^~A~^^^^^^^^^~1~^~04/01/2005~
-~05024~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~09/01/2002~
-~05024~^~417~^5.^1^^~1~^~A~^^^^^^^^^^~04/01/2003~
-~05024~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~
-~05024~^~432~^5.^1^^~1~^~A~^^^^^^^^^^~11/01/2006~
-~05024~^~435~^5.^0^^~4~^~NC~^^^^^^^^^^~03/01/2009~
-~05024~^~601~^370.^1^^~1~^~A~^^^^^^^^^^~02/01/2003~
-~05025~^~208~^153.^0^^~4~^~NC~^^^^^^^^^^~08/01/1979~
-~05025~^~268~^640.^0^^~4~^^^^^^^^^^^
-~05025~^~301~^12.^9^1.^~1~^^^^^^^^^^^~08/01/1979~
-~05025~^~304~^15.^11^0.^~1~^^^^^^^^^^^~08/01/1979~
-~05025~^~305~^177.^11^4.^~1~^^^^^^^^^^^~08/01/1979~
-~05025~^~306~^176.^11^6.^~1~^^^^^^^^^^^~08/01/1979~
-~05025~^~307~^74.^11^2.^~1~^^^^^^^^^^^~08/01/1979~
-~05025~^~318~^30.^0^^~1~^^^^^^^^^^^~08/01/1979~
-~05025~^~319~^9.^0^^~1~^^^^^^^^^^^~06/01/2002~
-~05025~^~320~^9.^0^^~1~^^^^^^^^^^^~06/01/2002~
-~05025~^~417~^72.^3^^~1~^^^^^^^^^^^~08/01/1979~
-~05025~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~
-~05025~^~432~^72.^3^^~1~^^^^^^^^^^^~08/01/1979~
-~05025~^~435~^72.^0^^~4~^~NC~^^^^^^^^^^~01/01/2001~
-~05025~^~601~^136.^1^^~1~^^^^^^^^^^^~08/01/1979~
-~05026~^~208~^185.^0^^~4~^~NC~^^^^^^^^^^~08/01/1979~
-~05026~^~268~^774.^0^^~4~^^^^^^^^^^^
-~05026~^~301~^19.^8^1.^~1~^^^^^^^^^^^~08/01/1979~
-~05026~^~304~^20.^8^0.^~1~^^^^^^^^^^^~08/01/1979~
-~05026~^~305~^199.^8^2.^~1~^^^^^^^^^^^~08/01/1979~
-~05026~^~306~^132.^8^3.^~1~^^^^^^^^^^^~08/01/1979~
-~05026~^~307~^48.^8^1.^~1~^^^^^^^^^^^~08/01/1979~
-~05026~^~318~^28.^0^^~1~^^^^^^^^^^^~08/01/1979~
-~05026~^~319~^8.^0^^~1~^^^^^^^^^^^~06/01/2002~
-~05026~^~320~^8.^0^^~1~^^^^^^^^^^^~06/01/2002~
-~05026~^~417~^80.^0^^~1~^^^^^^^^^^^~08/01/1979~
-~05026~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~
-~05026~^~432~^80.^0^^~1~^^^^^^^^^^^~08/01/1979~
-~05026~^~435~^80.^0^^~4~^~NC~^^^^^^^^^^~01/01/2001~
-~05026~^~601~^242.^0^^~1~^^^^^^^^^^^~08/01/1979~
-~05027~^~208~^119.^0^^~4~^~NC~^^^^^^^^^^~03/01/2009~
-~05027~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~09/01/2002~
-~05027~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~09/01/2002~
-~05027~^~268~^496.^0^^~4~^~NC~^^^^^^^^^^~03/01/2009~
-~05027~^~301~^8.^4^1.^~1~^~A~^^^1^5.^10.^3^4.^10.^~2, 3~^~02/01/2003~
-~05027~^~304~^19.^4^0.^~1~^~A~^^^1^18.^20.^3^17.^20.^~2, 3~^~02/01/2003~
-~05027~^~305~^297.^4^8.^~1~^~A~^^^1^274.^312.^3^270.^322.^~2, 3~^~02/01/2003~
-~05027~^~306~^230.^4^13.^~1~^~A~^^^1^193.^254.^3^186.^273.^~2, 3~^~02/01/2003~
-~05027~^~307~^71.^4^5.^~1~^~A~^^^1^57.^82.^3^53.^88.^~2, 3~^~02/01/2003~
-~05027~^~318~^11078.^0^^~1~^~AS~^^^^^^^^^^~01/01/2003~
-~05027~^~319~^3290.^4^239.^~1~^~A~^^^1^2890.^3880.^3^2527.^4052.^~2, 3~^~02/01/2003~
-~05027~^~320~^3296.^0^^~1~^~AS~^^^^^^^^^^~01/01/2003~
-~05027~^~321~^56.^4^^~1~^~A~^^^1^36.^89.^^^^~2~^~09/01/2004~
-~05027~^~322~^11.^4^^~1~^~A~^^^1^11.^11.^^^^~1, 2~^~09/01/2004~
-~05027~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2009~
-~05027~^~334~^11.^4^^~1~^~A~^^^1^11.^11.^^^^~1, 2~^~09/01/2004~
-~05027~^~337~^40.^4^^~1~^~A~^^^1^25.^69.^^^^~2~^~09/01/2004~
-~05027~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~08/01/2004~
-~05027~^~417~^588.^4^46.^~1~^~A~^^^1^457.^675.^3^438.^736.^~2, 3~^~02/01/2003~
-~05027~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~
-~05027~^~432~^588.^4^46.^~1~^~A~^^^1^457.^675.^3^438.^736.^^~03/01/2006~
-~05027~^~435~^588.^0^^~4~^~NC~^^^^^^^^^^~03/01/2009~
-~05027~^~601~^345.^4^5.^~1~^~A~^^^1^331.^356.^3^327.^361.^~2, 3~^~09/01/2004~
-~05028~^~208~^167.^0^^~4~^~NC~^^^^^^^^^^~08/01/2007~
-~05028~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~09/01/2002~
-~05028~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~09/01/2002~
-~05028~^~268~^697.^0^^~4~^~NC~^^^^^^^^^^~08/01/2007~
-~05028~^~301~^11.^4^2.^~1~^~A~^^^1^8.^18.^3^3.^18.^~2, 3~^~02/01/2003~
-~05028~^~304~^25.^4^0.^~1~^~A~^^^1^24.^25.^3^24.^25.^~2, 3~^~02/01/2003~
-~05028~^~305~^405.^4^5.^~1~^~A~^^^1^393.^417.^3^389.^421.^~2, 3~^~02/01/2003~
-~05028~^~306~^263.^4^13.^~1~^~A~^^^1^229.^295.^3^219.^307.^~2, 3~^~02/01/2003~
-~05028~^~307~^76.^4^3.^~1~^~A~^^^1^67.^83.^3^64.^86.^~2, 3~^~02/01/2003~
-~05028~^~318~^13328.^0^^~1~^~AS~^^^^^^^^^^~01/01/2003~
-~05028~^~319~^3978.^4^437.^~1~^~A~^^^1^3170.^5220.^3^2584.^5370.^~2, 3~^~02/01/2003~
-~05028~^~320~^3981.^0^^~1~^~AS~^^^^^^^^^^~01/01/2003~
-~05028~^~321~^30.^4^8.^~1~^~A~^^^1^11.^53.^3^2.^58.^~1, 2, 3~^~02/01/2003~
-~05028~^~322~^11.^4^0.^~1~^~A~^^^1^11.^11.^^^^~1, 2, 3~^~02/01/2003~
-~05028~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2009~
-~05028~^~334~^11.^4^0.^~1~^~A~^^^1^11.^11.^^^^~1, 2, 3~^~02/01/2003~
-~05028~^~337~^21.^4^7.^~1~^~A~^^^1^0.^34.^3^-2.^44.^~1, 2, 3~^~02/01/2003~
-~05028~^~338~^83.^0^^~4~^~NR~^^^^^^^^^^~04/01/2006~
-~05028~^~417~^578.^4^46.^~1~^~A~^^^1^466.^693.^3^429.^726.^~2, 3~^~02/01/2003~
-~05028~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~
-~05028~^~432~^578.^4^46.^~1~^~A~^^^1^466.^693.^3^429.^726.^^~08/01/2007~
-~05028~^~435~^578.^0^^~4~^~NC~^^^^^^^^^^~03/01/2009~
-~05028~^~601~^563.^4^22.^~1~^~A~^^^1^510.^614.^3^490.^635.^~2, 3~^~10/01/2004~
-~05029~^~208~^186.^0^^~4~^~NC~^^^^^^^^^^~08/01/1979~
-~05029~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~10/01/2002~
-~05029~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~10/01/2002~
-~05029~^~268~^778.^0^^~4~^^^^^^^^^^^
-~05029~^~301~^11.^24^0.^~1~^^^^^^^^^^^~08/01/1979~
-~05029~^~304~^23.^24^0.^~1~^^^^^^^^^^^~08/01/1979~
-~05029~^~305~^163.^24^3.^~1~^^^^^^^^^^^~08/01/1979~
-~05029~^~306~^204.^24^4.^~1~^^^^^^^^^^^~08/01/1979~
-~05029~^~307~^65.^24^1.^~1~^^^^^^^^^^^~08/01/1979~
-~05029~^~318~^97.^0^^~4~^~NC~^^^^^^^^^^~04/01/2016~
-~05029~^~319~^29.^0^^~4~^~NR~^^^^^^^^^^~09/01/2002~
-~05029~^~320~^29.^0^^~4~^~NC~^^^^^^^^^^~04/01/2016~
-~05029~^~321~^0.^0^^~7~^~Z~^^^^^^^^^^~10/01/2002~
-~05029~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~10/01/2002~
-~05029~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~10/01/2002~
-~05029~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~10/01/2002~
-~05029~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~10/01/2002~
-~05029~^~417~^4.^0^^~1~^^^^^^^^^^^~08/01/1979~
-~05029~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~
-~05029~^~432~^4.^0^^~1~^^^^^^^^^^^~10/01/2002~
-~05029~^~435~^4.^0^^~4~^~NC~^^^^^^^^^^~10/01/2002~
-~05029~^~601~^67.^0^^~1~^^^^^^^^^^^~08/01/1979~
-~05030~^~208~^277.^0^^~4~^~NC~^^^^^^^^^^~08/01/1979~
-~05030~^~268~^1159.^0^^~4~^^^^^^^^^^^
-~05030~^~301~^20.^0^^~1~^^^^^^^^^^^~08/01/1979~
-~05030~^~304~^22.^0^^~1~^^^^^^^^^^^~08/01/1979~
-~05030~^~305~^168.^0^^~1~^^^^^^^^^^^~08/01/1979~
-~05030~^~306~^185.^0^^~1~^^^^^^^^^^^~08/01/1979~
-~05030~^~307~^287.^0^^~1~^^^^^^^^^^^~08/01/1979~
-~05030~^~318~^79.^0^^~1~^^^^^^^^^^^~08/01/1979~
-~05030~^~319~^24.^0^^~1~^^^^^^^^^^^~06/01/2002~
-~05030~^~320~^24.^0^^~1~^^^^^^^^^^^~06/01/2002~
-~05030~^~417~^16.^0^^~4~^~RA~^^^^^^^^^^~10/01/1997~
-~05030~^~431~^10.^0^^~4~^~NC~^^^^^^^^^^~05/01/2000~
-~05030~^~432~^6.^0^^~1~^^^^^^^^^^^~08/01/1979~
-~05030~^~435~^23.^0^^~4~^~NC~^^^^^^^^^^~01/01/2001~
-~05030~^~601~^84.^0^^~1~^^^^^^^^^^^~08/01/1979~
-~05031~^~208~^246.^0^^~4~^~NC~^^^^^^^^^^~08/01/1979~
-~05031~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~09/01/2002~
-~05031~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~09/01/2002~
-~05031~^~268~^1029.^0^^~4~^^^^^^^^^^^~03/01/2009~
-~05031~^~301~^16.^0^^~1~^^^^^^^^^^^~08/01/1979~
-~05031~^~304~^27.^0^^~1~^^^^^^^^^^^~08/01/1979~
-~05031~^~305~^213.^0^^~1~^^^^^^^^^^^~08/01/1979~
-~05031~^~306~^239.^0^^~1~^^^^^^^^^^^~08/01/1979~
-~05031~^~307~^77.^0^^~1~^^^^^^^^^^^~08/01/1979~
-~05031~^~318~^68.^0^^~1~^^^^^^^^^^^~08/01/1979~
-~05031~^~319~^20.^0^^~4~^~NR~^^^^^^^^^^~09/01/2002~
-~05031~^~320~^20.^0^^~4~^~NC~^^^^^^^^^^~03/01/2009~
-~05031~^~321~^0.^0^^~7~^~Z~^^^^^^^^^^~09/01/2002~
-~05031~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~09/01/2002~
-~05031~^~324~^5.^0^^~4~^~BFFN~^~05008~^^^^^^^^^~03/01/2009~
-~05031~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~09/01/2002~
-~05031~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~09/01/2002~
-~05031~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~09/01/2002~
-~05031~^~417~^7.^0^^~4~^~RA~^^^^^^^^^^~10/01/1997~
-~05031~^~431~^3.^0^^~4~^~NC~^^^^^^^^^^~05/01/2000~
-~05031~^~432~^4.^0^^~1~^^^^^^^^^^^~08/01/1979~
-~05031~^~435~^9.^0^^~4~^~NC~^^^^^^^^^^~03/01/2009~
-~05031~^~601~^87.^0^^~1~^^^^^^^^^^^~08/01/1979~
-~05032~^~208~^222.^0^^~4~^~NC~^^^^^^^^^^~08/01/1979~
-~05032~^~268~^929.^0^^~4~^^^^^^^^^^^
-~05032~^~301~^15.^16^0.^~1~^^^^^^^^^^^~08/01/1979~
-~05032~^~304~^25.^16^0.^~1~^^^^^^^^^^^~08/01/1979~
-~05032~^~305~^200.^16^5.^~1~^^^^^^^^^^^~08/01/1979~
-~05032~^~306~^227.^16^5.^~1~^^^^^^^^^^^~08/01/1979~
-~05032~^~307~^75.^16^2.^~1~^^^^^^^^^^^~08/01/1979~
-~05032~^~318~^110.^0^^~1~^^^^^^^^^^^~08/01/1979~
-~05032~^~319~^33.^0^^~1~^^^^^^^^^^^~06/01/2002~
-~05032~^~320~^33.^0^^~1~^^^^^^^^^^^~06/01/2002~
-~05032~^~417~^3.^0^^~1~^^^^^^^^^^^~08/01/1979~
-~05032~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~
-~05032~^~432~^3.^0^^~1~^^^^^^^^^^^~08/01/1979~
-~05032~^~435~^3.^0^^~4~^~NC~^^^^^^^^^^~01/01/2001~
-~05032~^~601~^84.^0^^~1~^^^^^^^^^^^~08/01/1979~
-~05033~^~208~^201.^0^^~4~^~NC~^^^^^^^^^^~08/01/1979~
-~05033~^~268~^841.^0^^~4~^^^^^^^^^^^
-~05033~^~301~^13.^16^0.^~1~^^^^^^^^^^^~08/01/1979~
-~05033~^~304~^20.^16^0.^~1~^^^^^^^^^^^~08/01/1979~
-~05033~^~305~^146.^16^3.^~1~^^^^^^^^^^^~08/01/1979~
-~05033~^~306~^167.^16^6.^~1~^^^^^^^^^^^~08/01/1979~
-~05033~^~307~^63.^16^2.^~1~^^^^^^^^^^^~08/01/1979~
-~05033~^~318~^96.^0^^~1~^^^^^^^^^^^~08/01/1979~
-~05033~^~319~^29.^0^^~1~^^^^^^^^^^^~06/01/2002~
-~05033~^~320~^29.^0^^~1~^^^^^^^^^^^~06/01/2002~
-~05033~^~417~^3.^0^^~1~^^^^^^^^^^^~08/01/1979~
-~05033~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~
-~05033~^~432~^3.^0^^~1~^^^^^^^^^^^~08/01/1979~
-~05033~^~435~^3.^0^^~4~^~NC~^^^^^^^^^^~01/01/2001~
-~05033~^~601~^74.^0^^~1~^^^^^^^^^^^~08/01/1979~
-~05034~^~208~^237.^0^^~4~^~NC~^^^^^^^^^^~08/01/1979~
-~05034~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~10/01/2002~
-~05034~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~10/01/2002~
-~05034~^~268~^992.^0^^~4~^^^^^^^^^^^
-~05034~^~301~^11.^24^0.^~1~^^^^^^^^^^^~08/01/1979~
-~05034~^~304~^19.^24^0.^~1~^^^^^^^^^^^~08/01/1979~
-~05034~^~305~^136.^24^2.^~1~^^^^^^^^^^^~08/01/1979~
-~05034~^~306~^178.^24^4.^~1~^^^^^^^^^^^~08/01/1979~
-~05034~^~307~^73.^24^1.^~1~^^^^^^^^^^^~08/01/1979~
-~05034~^~318~^163.^0^^~4~^~NC~^^^^^^^^^^~04/01/2016~
-~05034~^~319~^49.^0^^~4~^~NR~^^^^^^^^^^~09/01/2002~
-~05034~^~320~^49.^0^^~4~^~NC~^^^^^^^^^^~10/01/2002~
-~05034~^~321~^0.^0^^~7~^~Z~^^^^^^^^^^~10/01/2002~
-~05034~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~10/01/2002~
-~05034~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~10/01/2002~
-~05034~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~10/01/2002~
-~05034~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~10/01/2002~
-~05034~^~417~^7.^0^^~1~^^^^^^^^^^^~08/01/1979~
-~05034~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~
-~05034~^~432~^7.^0^^~1~^^^^^^^^^^^~10/01/2002~
-~05034~^~435~^7.^0^^~4~^~NC~^^^^^^^^^^~10/01/2002~
-~05034~^~601~^81.^0^^~1~^^^^^^^^^^^~08/01/1979~
-~05035~^~208~^298.^0^^~4~^~NC~^^^^^^^^^^~08/01/1979~
-~05035~^~268~^1247.^0^^~4~^^^^^^^^^^^
-~05035~^~301~^21.^0^^~1~^^^^^^^^^^^~08/01/1979~
-~05035~^~304~^20.^0^^~1~^^^^^^^^^^^~08/01/1979~
-~05035~^~305~^145.^0^^~1~^^^^^^^^^^^~08/01/1979~
-~05035~^~306~^185.^0^^~1~^^^^^^^^^^^~08/01/1979~
-~05035~^~307~^295.^0^^~1~^^^^^^^^^^^~08/01/1979~
-~05035~^~318~^103.^0^^~1~^^^^^^^^^^^~08/01/1979~
-~05035~^~319~^31.^0^^~1~^^^^^^^^^^^~06/01/2002~
-~05035~^~320~^31.^0^^~1~^^^^^^^^^^^~06/01/2002~
-~05035~^~417~^18.^0^^~4~^~RA~^^^^^^^^^^~10/01/1997~
-~05035~^~431~^9.^0^^~4~^~NC~^^^^^^^^^^~05/01/2000~
-~05035~^~432~^9.^0^^~1~^^^^^^^^^^^~08/01/1979~
-~05035~^~435~^24.^0^^~4~^~NC~^^^^^^^^^^~01/01/2001~
-~05035~^~601~^89.^0^^~1~^^^^^^^^^^^~08/01/1979~
-~05036~^~208~^285.^0^^~4~^~NC~^^^^^^^^^^~08/01/1979~
-~05036~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~09/01/2002~
-~05036~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~09/01/2002~
-~05036~^~268~^1192.^0^^~4~^^^^^^^^^^^
-~05036~^~301~^17.^0^^~1~^^^^^^^^^^^~08/01/1979~
-~05036~^~304~^24.^0^^~1~^^^^^^^^^^^~08/01/1979~
-~05036~^~305~^176.^0^^~1~^^^^^^^^^^^~08/01/1979~
-~05036~^~306~^230.^0^^~1~^^^^^^^^^^^~08/01/1979~
-~05036~^~307~^89.^0^^~1~^^^^^^^^^^^~08/01/1979~
-~05036~^~318~^104.^0^^~1~^^^^^^^^^^^~08/01/1979~
-~05036~^~319~^31.^0^^~4~^~NR~^^^^^^^^^^~09/01/2002~
-~05036~^~320~^31.^0^^~1~^^^^^^^^^^^~09/01/2002~
-~05036~^~321~^0.^0^^~7~^~Z~^^^^^^^^^^~09/01/2002~
-~05036~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~09/01/2002~
-~05036~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~09/01/2002~
-~05036~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~09/01/2002~
-~05036~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~09/01/2002~
-~05036~^~417~^11.^0^^~4~^~RA~^^^^^^^^^^~10/01/1997~
-~05036~^~431~^3.^0^^~4~^~NC~^^^^^^^^^^~05/01/2000~
-~05036~^~432~^8.^0^^~1~^^^^^^^^^^^~08/01/1979~
-~05036~^~435~^13.^0^^~4~^~NC~^^^^^^^^^^~09/01/2002~
-~05036~^~601~^92.^0^^~1~^^^^^^^^^^^~08/01/1979~
-~05037~^~208~^253.^0^^~4~^~NC~^^^^^^^^^^~08/01/1979~
-~05037~^~268~^1059.^0^^~4~^^^^^^^^^^^
-~05037~^~301~^15.^16^0.^~1~^^^^^^^^^^^~08/01/1979~
-~05037~^~304~^22.^16^0.^~1~^^^^^^^^^^^~08/01/1979~
-~05037~^~305~^168.^16^3.^~1~^^^^^^^^^^^~08/01/1979~
-~05037~^~306~^220.^16^5.^~1~^^^^^^^^^^^~08/01/1979~
-~05037~^~307~^87.^16^1.^~1~^^^^^^^^^^^~08/01/1979~
-~05037~^~318~^201.^0^^~1~^^^^^^^^^^^~08/01/1979~
-~05037~^~319~^60.^0^^~1~^^^^^^^^^^^~06/01/2002~
-~05037~^~320~^60.^0^^~1~^^^^^^^^^^^~06/01/2002~
-~05037~^~417~^7.^0^^~1~^^^^^^^^^^^~08/01/1979~
-~05037~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~
-~05037~^~432~^7.^0^^~1~^^^^^^^^^^^~08/01/1979~
-~05037~^~435~^7.^0^^~4~^~NC~^^^^^^^^^^~01/01/2001~
-~05037~^~601~^91.^0^^~1~^^^^^^^^^^^~08/01/1979~
-~05038~^~208~^233.^0^^~4~^~NC~^^^^^^^^^^~08/01/1979~
-~05038~^~268~^975.^0^^~4~^^^^^^^^^^^
-~05038~^~301~^14.^16^0.^~1~^^^^^^^^^^^~08/01/1979~
-~05038~^~304~^18.^16^0.^~1~^^^^^^^^^^^~08/01/1979~
-~05038~^~305~^133.^16^2.^~1~^^^^^^^^^^^~08/01/1979~
-~05038~^~306~^166.^16^6.^~1~^^^^^^^^^^^~08/01/1979~
-~05038~^~307~^70.^16^1.^~1~^^^^^^^^^^^~08/01/1979~
-~05038~^~318~^186.^0^^~1~^^^^^^^^^^^~08/01/1979~
-~05038~^~319~^56.^0^^~1~^^^^^^^^^^^~06/01/2002~
-~05038~^~320~^56.^0^^~1~^^^^^^^^^^^~06/01/2002~
-~05038~^~417~^6.^0^^~1~^^^^^^^^^^^~08/01/1979~
-~05038~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~
-~05038~^~432~^6.^0^^~1~^^^^^^^^^^^~08/01/1979~
-~05038~^~435~^6.^0^^~4~^~NC~^^^^^^^^^^~01/01/2001~
-~05038~^~601~^82.^0^^~1~^^^^^^^^^^^~08/01/1979~
-~05039~^~208~^114.^0^^~4~^~NC~^^^^^^^^^^~08/01/1979~
-~05039~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~10/01/2002~
-~05039~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~10/01/2002~
-~05039~^~268~^477.^0^^~4~^^^^^^^^^^^
-~05039~^~301~^12.^24^0.^~1~^^^^^^^^^^^~08/01/1979~
-~05039~^~304~^27.^24^0.^~1~^^^^^^^^^^^~08/01/1979~
-~05039~^~305~^187.^24^3.^~1~^^^^^^^^^^^~08/01/1979~
-~05039~^~306~^239.^24^5.^~1~^^^^^^^^^^^~08/01/1979~
-~05039~^~307~^68.^24^1.^~1~^^^^^^^^^^^~08/01/1979~
-~05039~^~318~^27.^0^^~4~^~NC~^^^^^^^^^^~06/01/2003~
-~05039~^~319~^8.^0^^~4~^~NR~^^^^^^^^^^~10/01/2002~
-~05039~^~320~^8.^0^^~4~^~NC~^^^^^^^^^^~06/01/2003~
-~05039~^~321~^0.^0^^~7~^~Z~^^^^^^^^^^~10/01/2002~
-~05039~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~10/01/2002~
-~05039~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~10/01/2002~
-~05039~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~10/01/2002~
-~05039~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~10/01/2002~
-~05039~^~417~^4.^0^^~1~^^^^^^^^^^^~08/01/1979~
-~05039~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~
-~05039~^~432~^4.^0^^~1~^^^^^^^^^^^~10/01/2002~
-~05039~^~435~^4.^0^^~4~^~NC~^^^^^^^^^^~06/01/2003~
-~05039~^~601~^58.^0^^~1~^^^^^^^^^^^~08/01/1979~
-~05040~^~208~^192.^0^^~4~^~NC~^^^^^^^^^^~08/01/1979~
-~05040~^~268~^803.^0^^~4~^^^^^^^^^^^
-~05040~^~301~^16.^0^^~1~^^^^^^^^^^^~08/01/1979~
-~05040~^~304~^29.^0^^~1~^^^^^^^^^^^~08/01/1979~
-~05040~^~305~^231.^0^^~1~^^^^^^^^^^^~08/01/1979~
-~05040~^~306~^263.^0^^~1~^^^^^^^^^^^~08/01/1979~
-~05040~^~307~^81.^0^^~1~^^^^^^^^^^^~08/01/1979~
-~05040~^~318~^30.^0^^~1~^^^^^^^^^^^~08/01/1979~
-~05040~^~319~^9.^0^^~1~^^^^^^^^^^^~06/01/2002~
-~05040~^~320~^9.^0^^~1~^^^^^^^^^^^~06/01/2002~
-~05040~^~417~^4.^0^^~1~^^^^^^^^^^^~08/01/1979~
-~05040~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~
-~05040~^~432~^4.^0^^~1~^^^^^^^^^^^~08/01/1979~
-~05040~^~435~^4.^0^^~4~^~NC~^^^^^^^^^^~01/01/2001~
-~05040~^~601~^90.^0^^~1~^^^^^^^^^^^~08/01/1979~
-~05041~^~208~^173.^0^^~4~^~NC~^^^^^^^^^^~08/01/1979~
-~05041~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~09/01/2002~
-~05041~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~09/01/2002~
-~05041~^~268~^724.^0^^~4~^^^^^^^^^^^~03/01/2009~
-~05041~^~301~^15.^16^0.^~1~^^^^^^^^^^^~08/01/1979~
-~05041~^~304~^27.^16^0.^~1~^^^^^^^^^^^~08/01/1979~
-~05041~^~305~^216.^16^6.^~1~^^^^^^^^^^^~08/01/1979~
-~05041~^~306~^247.^16^6.^~1~^^^^^^^^^^^~08/01/1979~
-~05041~^~307~^77.^16^2.^~1~^^^^^^^^^^^~08/01/1979~
-~05041~^~318~^29.^0^^~1~^^^^^^^^^^^~08/01/2004~
-~05041~^~319~^9.^0^^~4~^~NR~^^^^^^^^^^~10/01/2004~
-~05041~^~320~^9.^0^^~4~^~NC~^^^^^^^^^^~03/01/2009~
-~05041~^~321~^0.^0^^~7~^~Z~^^^^^^^^^^~09/01/2002~
-~05041~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~09/01/2002~
-~05041~^~324~^5.^0^^~4~^~BFZN~^^^^^^^^^^~03/01/2009~
-~05041~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~09/01/2002~
-~05041~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~09/01/2002~
-~05041~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~09/01/2002~
-~05041~^~417~^4.^0^^~1~^^^^^^^^^^^~08/01/1979~
-~05041~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~
-~05041~^~432~^4.^0^^~1~^^^^^^^^^^^~03/01/2009~
-~05041~^~435~^4.^0^^~4~^~NC~^^^^^^^^^^~03/01/2009~
-~05041~^~601~^85.^0^^~1~^^^^^^^^^^^~08/01/1979~
-~05042~^~208~^159.^0^^~4~^~NC~^^^^^^^^^^~08/01/1979~
-~05042~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~09/01/2002~
-~05042~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~09/01/2002~
-~05042~^~268~^665.^0^^~4~^^^^^^^^^^^~03/01/2009~
-~05042~^~301~^13.^16^0.^~1~^^^^^^^^^^^~08/01/1979~
-~05042~^~304~^22.^16^0.^~1~^^^^^^^^^^^~08/01/1979~
-~05042~^~305~^159.^16^3.^~1~^^^^^^^^^^^~08/01/1979~
-~05042~^~306~^180.^16^7.^~1~^^^^^^^^^^^~08/01/1979~
-~05042~^~307~^65.^16^2.^~1~^^^^^^^^^^^~08/01/1979~
-~05042~^~318~^27.^0^^~1~^^^^^^^^^^^~08/01/2004~
-~05042~^~319~^8.^0^^~4~^~NR~^^^^^^^^^^~09/01/2002~
-~05042~^~320~^8.^0^^~4~^~NC~^^^^^^^^^^~03/01/2009~
-~05042~^~321~^0.^0^^~7~^~Z~^^^^^^^^^^~09/01/2002~
-~05042~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~09/01/2002~
-~05042~^~324~^5.^0^^~4~^~BFZN~^^^^^^^^^^~03/01/2009~
-~05042~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~09/01/2002~
-~05042~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~09/01/2002~
-~05042~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~09/01/2002~
-~05042~^~417~^3.^0^^~1~^^^^^^^^^^^~08/01/1979~
-~05042~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~
-~05042~^~432~^3.^0^^~1~^^^^^^^^^^^~03/01/2009~
-~05042~^~435~^3.^0^^~4~^~NC~^^^^^^^^^^~03/01/2009~
-~05042~^~601~^77.^0^^~1~^^^^^^^^^^^~08/01/1979~
-~05043~^~208~^125.^0^^~4~^~NC~^^^^^^^^^^~08/01/1979~
-~05043~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~10/01/2002~
-~05043~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~10/01/2002~
-~05043~^~268~^523.^0^^~4~^^^^^^^^^^^
-~05043~^~301~^12.^24^0.^~1~^^^^^^^^^^^~08/01/1979~
-~05043~^~304~^23.^24^0.^~1~^^^^^^^^^^^~08/01/1979~
-~05043~^~305~^162.^24^3.^~1~^^^^^^^^^^^~08/01/1979~
-~05043~^~306~^222.^24^5.^~1~^^^^^^^^^^^~08/01/1979~
-~05043~^~307~^85.^24^1.^~1~^^^^^^^^^^^~08/01/1979~
-~05043~^~318~^72.^0^^~1~^^^^^^^^^^^~08/01/1979~
-~05043~^~319~^22.^0^^~4~^~NR~^^^^^^^^^^~10/01/2002~
-~05043~^~320~^22.^0^^~1~^^^^^^^^^^^~04/01/2003~
-~05043~^~321~^0.^0^^~7~^~Z~^^^^^^^^^^~10/01/2002~
-~05043~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~10/01/2002~
-~05043~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~10/01/2002~
-~05043~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~10/01/2002~
-~05043~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~10/01/2002~
-~05043~^~417~^10.^0^^~1~^^^^^^^^^^^~08/01/1979~
-~05043~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~
-~05043~^~432~^10.^0^^~1~^^^^^^^^^^^~04/01/2003~
-~05043~^~435~^10.^0^^~4~^~NC~^^^^^^^^^^~04/01/2003~
-~05043~^~601~^80.^0^^~1~^^^^^^^^^^^~08/01/1979~
-~05044~^~208~^239.^0^^~4~^~NC~^^^^^^^^^^~08/01/1979~
-~05044~^~268~^1000.^0^^~4~^^^^^^^^^^^
-~05044~^~301~^18.^0^^~1~^^^^^^^^^^^~08/01/1979~
-~05044~^~304~^25.^0^^~1~^^^^^^^^^^^~08/01/1979~
-~05044~^~305~^187.^0^^~1~^^^^^^^^^^^~08/01/1979~
-~05044~^~306~^253.^0^^~1~^^^^^^^^^^^~08/01/1979~
-~05044~^~307~^97.^0^^~1~^^^^^^^^^^^~08/01/1979~
-~05044~^~318~^79.^0^^~1~^^^^^^^^^^^~08/01/1979~
-~05044~^~319~^24.^0^^~1~^^^^^^^^^^^~06/01/2002~
-~05044~^~320~^24.^0^^~1~^^^^^^^^^^^~06/01/2002~
-~05044~^~417~^9.^0^^~1~^^^^^^^^^^^~08/01/1979~
-~05044~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~
-~05044~^~432~^9.^0^^~1~^^^^^^^^^^^~08/01/1979~
-~05044~^~435~^9.^0^^~4~^~NC~^^^^^^^^^^~01/01/2001~
-~05044~^~601~^96.^0^^~1~^^^^^^^^^^^~08/01/1979~
-~05045~^~208~^205.^0^^~4~^~NC~^^^^^^^^^^~08/01/1979~
-~05045~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~09/01/2002~
-~05045~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~09/01/2002~
-~05045~^~268~^858.^0^^~4~^^^^^^^^^^^~03/01/2009~
-~05045~^~301~^15.^16^0.^~1~^^^^^^^^^^^~08/01/1979~
-~05045~^~304~^23.^16^0.^~1~^^^^^^^^^^^~08/01/1979~
-~05045~^~305~^179.^16^3.^~1~^^^^^^^^^^^~08/01/1979~
-~05045~^~306~^240.^16^5.^~1~^^^^^^^^^^^~08/01/1979~
-~05045~^~307~^93.^16^1.^~1~^^^^^^^^^^^~08/01/1979~
-~05045~^~318~^72.^0^^~1~^^^^^^^^^^^~11/01/2006~
-~05045~^~319~^22.^0^^~4~^~NR~^^^^^^^^^^~09/01/2002~
-~05045~^~320~^22.^0^^~4~^~NC~^^^^^^^^^^~03/01/2009~
-~05045~^~321~^0.^0^^~7~^~Z~^^^^^^^^^^~09/01/2002~
-~05045~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~09/01/2002~
-~05045~^~324~^5.^0^^~4~^~BFZN~^^^^^^^^^^~03/01/2009~
-~05045~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~09/01/2002~
-~05045~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~09/01/2002~
-~05045~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~09/01/2002~
-~05045~^~417~^8.^0^^~1~^^^^^^^^^^^~08/01/1979~
-~05045~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~
-~05045~^~432~^8.^0^^~1~^^^^^^^^^^^~03/01/2009~
-~05045~^~435~^8.^0^^~4~^~NC~^^^^^^^^^^~03/01/2009~
-~05045~^~601~^93.^0^^~1~^^^^^^^^^^^~08/01/1979~
-~05046~^~208~^192.^0^^~4~^~NC~^^^^^^^^^^~08/01/1979~
-~05046~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~09/01/2002~
-~05046~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~09/01/2002~
-~05046~^~268~^803.^0^^~4~^^^^^^^^^^^~03/01/2009~
-~05046~^~301~^14.^16^0.^~1~^^^^^^^^^^^~08/01/1979~
-~05046~^~304~^20.^16^0.^~1~^^^^^^^^^^^~08/01/1979~
-~05046~^~305~^143.^16^2.^~1~^^^^^^^^^^^~08/01/1979~
-~05046~^~306~^181.^16^6.^~1~^^^^^^^^^^^~08/01/1979~
-~05046~^~307~^74.^16^2.^~1~^^^^^^^^^^^~08/01/1979~
-~05046~^~318~^69.^0^^~1~^^^^^^^^^^^~08/01/2004~
-~05046~^~319~^21.^0^^~4~^~NR~^^^^^^^^^^~10/01/2004~
-~05046~^~320~^21.^0^^~4~^~NC~^^^^^^^^^^~03/01/2009~
-~05046~^~321~^0.^0^^~7~^~Z~^^^^^^^^^^~09/01/2002~
-~05046~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~09/01/2002~
-~05046~^~324~^5.^0^^~4~^~BFZN~^^^^^^^^^^~03/01/2009~
-~05046~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~09/01/2002~
-~05046~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~09/01/2002~
-~05046~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~09/01/2002~
-~05046~^~417~^7.^0^^~1~^^^^^^^^^^^~08/01/1979~
-~05046~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~
-~05046~^~432~^7.^0^^~1~^^^^^^^^^^^~03/01/2009~
-~05046~^~435~^7.^0^^~4~^~NC~^^^^^^^^^^~03/01/2009~
-~05046~^~601~^88.^0^^~1~^^^^^^^^^^^~08/01/1979~
-~05047~^~208~^629.^0^^~4~^~NC~^^^^^^^^^^~08/01/1979~
-~05047~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2002~
-~05047~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2002~
-~05047~^~268~^2632.^0^^~4~^^^^^^^^^^^~04/01/2009~
-~05047~^~301~^7.^24^0.^~1~^^^^^^^^^^^~08/01/1979~
-~05047~^~304~^6.^24^0.^~1~^^^^^^^^^^^~08/01/1979~
-~05047~^~305~^54.^24^1.^~1~^^^^^^^^^^^~08/01/1979~
-~05047~^~306~^64.^24^2.^~1~^^^^^^^^^^^~08/01/1979~
-~05047~^~307~^32.^24^1.^~1~^^^^^^^^^^^~08/01/1979~
-~05047~^~318~^509.^6^139.^~1~^^^^^^^^^^^~01/01/2007~
-~05047~^~319~^125.^0^^~4~^~O~^^^^^^^^^^~01/01/2007~
-~05047~^~320~^125.^0^^~4~^~NC~^^^^^^^^^^~04/01/2009~
-~05047~^~321~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2009~
-~05047~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~09/01/2002~
-~05047~^~324~^130.^0^^~4~^~BFFN~^~04542~^^^^^^^^^~04/01/2009~
-~05047~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2003~
-~05047~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~09/01/2002~
-~05047~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~09/01/2002~
-~05047~^~417~^1.^0^^~1~^^^^^^^^^^^~08/01/1979~
-~05047~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~
-~05047~^~432~^1.^0^^~1~^^^^^^^^^^^~04/01/2009~
-~05047~^~435~^1.^0^^~4~^~NC~^^^^^^^^^^~04/01/2009~
-~05047~^~601~^58.^8^3.^~1~^^^^^^^^^^^~08/01/1979~
-~05048~^~208~^319.^0^^~4~^~NC~^^^^^^^^^^~08/01/1979~
-~05048~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~10/01/2002~
-~05048~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~10/01/2002~
-~05048~^~268~^1335.^0^^~4~^^^^^^^^^^^
-~05048~^~301~^13.^24^0.^~1~^^^^^^^^^^^~08/01/1979~
-~05048~^~304~^15.^24^0.^~1~^^^^^^^^^^^~08/01/1979~
-~05048~^~305~^113.^24^2.^~1~^^^^^^^^^^^~08/01/1979~
-~05048~^~306~^144.^24^3.^~1~^^^^^^^^^^^~08/01/1979~
-~05048~^~307~^64.^24^1.^~1~^^^^^^^^^^^~08/01/1979~
-~05048~^~318~^251.^0^^~1~^^^^^^^^^^^~08/01/1979~
-~05048~^~319~^75.^0^^~4~^~O~^^^^^^^^^^~06/01/2003~
-~05048~^~320~^75.^0^^~4~^~NC~^^^^^^^^^^~06/01/2003~
-~05048~^~321~^0.^0^^~7~^~Z~^^^^^^^^^^~10/01/2002~
-~05048~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~10/01/2002~
-~05048~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~10/01/2002~
-~05048~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~10/01/2002~
-~05048~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~10/01/2002~
-~05048~^~417~^6.^0^^~1~^^^^^^^^^^^~08/01/1979~
-~05048~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~
-~05048~^~432~^6.^0^^~1~^^^^^^^^^^^~06/01/2003~
-~05048~^~435~^6.^0^^~4~^~NC~^^^^^^^^^^~06/01/2003~
-~05048~^~601~^79.^0^^~1~^^^^^^^^^^^~08/01/1979~
-~05049~^~208~^331.^0^^~4~^~NC~^^^^^^^^^^~08/01/1979~
-~05049~^~268~^1385.^0^^~4~^^^^^^^^^^^
-~05049~^~301~^26.^0^^~1~^^^^^^^^^^^~08/01/1979~
-~05049~^~304~^19.^0^^~1~^^^^^^^^^^^~08/01/1979~
-~05049~^~305~^137.^0^^~1~^^^^^^^^^^^~08/01/1979~
-~05049~^~306~^180.^0^^~1~^^^^^^^^^^^~08/01/1979~
-~05049~^~307~^317.^0^^~1~^^^^^^^^^^^~08/01/1979~
-~05049~^~318~^119.^0^^~1~^^^^^^^^^^^~08/01/1979~
-~05049~^~319~^36.^0^^~1~^^^^^^^^^^^~06/01/2002~
-~05049~^~320~^36.^0^^~1~^^^^^^^^^^^~06/01/2002~
-~05049~^~417~^20.^0^^~4~^~RA~^^^^^^^^^^~10/01/1997~
-~05049~^~431~^11.^0^^~4~^~NC~^^^^^^^^^^~05/01/2000~
-~05049~^~432~^9.^0^^~1~^^^^^^^^^^^~08/01/1979~
-~05049~^~435~^28.^0^^~4~^~NC~^^^^^^^^^^~01/01/2001~
-~05049~^~601~^88.^0^^~1~^^^^^^^^^^^~08/01/1979~
-~05050~^~208~^331.^0^^~4~^~NC~^^^^^^^^^^~08/01/1979~
-~05050~^~268~^1385.^0^^~4~^^^^^^^^^^^
-~05050~^~301~^24.^0^^~1~^^^^^^^^^^^~08/01/1979~
-~05050~^~304~^23.^0^^~1~^^^^^^^^^^^~08/01/1979~
-~05050~^~305~^166.^0^^~1~^^^^^^^^^^^~08/01/1979~
-~05050~^~306~^226.^0^^~1~^^^^^^^^^^^~08/01/1979~
-~05050~^~307~^90.^0^^~1~^^^^^^^^^^^~08/01/1979~
-~05050~^~318~^123.^0^^~1~^^^^^^^^^^^~08/01/1979~
-~05050~^~319~^37.^0^^~1~^^^^^^^^^^^~06/01/2002~
-~05050~^~320~^37.^0^^~1~^^^^^^^^^^^~06/01/2002~
-~05050~^~417~^15.^0^^~4~^~RA~^^^^^^^^^^~10/01/1997~
-~05050~^~431~^7.^0^^~4~^~NC~^^^^^^^^^^~05/01/2000~
-~05050~^~432~^8.^0^^~1~^^^^^^^^^^^~08/01/1979~
-~05050~^~435~^20.^0^^~4~^~NC~^^^^^^^^^^~01/01/2001~
-~05050~^~601~^89.^0^^~1~^^^^^^^^^^^~08/01/1979~
-~05051~^~208~^300.^0^^~4~^~NC~^^^^^^^^^^~08/01/1979~
-~05051~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~09/01/2002~
-~05051~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~09/01/2002~
-~05051~^~268~^1255.^0^^~4~^^^^^^^^^^^~03/01/2009~
-~05051~^~301~^21.^16^0.^~1~^^^^^^^^^^^~08/01/1979~
-~05051~^~304~^20.^16^0.^~1~^^^^^^^^^^^~08/01/1979~
-~05051~^~305~^154.^16^4.^~1~^^^^^^^^^^^~08/01/1979~
-~05051~^~306~^210.^16^6.^~1~^^^^^^^^^^^~08/01/1979~
-~05051~^~307~^87.^16^2.^~1~^^^^^^^^^^^~08/01/1979~
-~05051~^~318~^348.^0^^~1~^^^^^^^^^^^~08/01/2004~
-~05051~^~319~^105.^0^^~4~^~NR~^^^^^^^^^^~10/01/2004~
-~05051~^~320~^105.^0^^~4~^~NC~^^^^^^^^^^~03/01/2009~
-~05051~^~321~^0.^0^^~7~^~Z~^^^^^^^^^^~09/01/2002~
-~05051~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~09/01/2002~
-~05051~^~324~^2.^0^^~4~^~PIK~^^^^^^^^^^~03/01/2009~
-~05051~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~09/01/2002~
-~05051~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~09/01/2002~
-~05051~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~09/01/2002~
-~05051~^~417~^6.^0^^~1~^^^^^^^^^^^~08/01/1979~
-~05051~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~
-~05051~^~432~^6.^0^^~1~^^^^^^^^^^^~03/01/2009~
-~05051~^~435~^6.^0^^~4~^~NC~^^^^^^^^^^~03/01/2009~
-~05051~^~601~^88.^0^^~1~^^^^^^^^^^^~08/01/1979~
-~05052~^~208~^258.^0^^~4~^~NC~^^^^^^^^^^~08/01/1979~
-~05052~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~09/01/2002~
-~05052~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~09/01/2002~
-~05052~^~268~^1079.^0^^~4~^^^^^^^^^^^~03/01/2009~
-~05052~^~301~^18.^16^1.^~1~^^^^^^^^^^^~08/01/1979~
-~05052~^~304~^16.^16^0.^~1~^^^^^^^^^^^~08/01/1979~
-~05052~^~305~^120.^16^1.^~1~^^^^^^^^^^^~08/01/1979~
-~05052~^~306~^145.^16^6.^~1~^^^^^^^^^^^~08/01/1979~
-~05052~^~307~^64.^16^1.^~1~^^^^^^^^^^^~08/01/1979~
-~05052~^~318~^308.^0^^~1~^^^^^^^^^^^~08/01/2004~
-~05052~^~319~^88.^0^^~4~^~NR~^^^^^^^^^^~09/01/2002~
-~05052~^~320~^88.^0^^~4~^~NC~^^^^^^^^^^~03/01/2009~
-~05052~^~321~^0.^0^^~7~^~Z~^^^^^^^^^^~09/01/2002~
-~05052~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~09/01/2002~
-~05052~^~324~^2.^0^^~4~^~PIK~^^^^^^^^^^~03/01/2009~
-~05052~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~09/01/2002~
-~05052~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~09/01/2002~
-~05052~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~09/01/2002~
-~05052~^~417~^5.^0^^~1~^^^^^^^^^^^~08/01/1979~
-~05052~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~
-~05052~^~432~^5.^0^^~1~^^^^^^^^^^^~03/01/2009~
-~05052~^~435~^5.^0^^~4~^~NC~^^^^^^^^^^~03/01/2009~
-~05052~^~601~^78.^0^^~1~^^^^^^^^^^^~08/01/1979~
-~05053~^~208~^137.^0^^~4~^~NC~^^^^^^^^^^~08/01/1979~
-~05053~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~09/01/2002~
-~05053~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~09/01/2002~
-~05053~^~268~^573.^0^^~4~^^^^^^^^^^^
-~05053~^~301~^17.^24^1.^~1~^^^^^^^^^^^~08/01/1979~
-~05053~^~304~^22.^24^0.^~1~^^^^^^^^^^^~08/01/1979~
-~05053~^~305~^151.^24^3.^~1~^^^^^^^^^^^~08/01/1979~
-~05053~^~306~^204.^24^5.^~1~^^^^^^^^^^^~08/01/1979~
-~05053~^~307~^82.^24^1.^~1~^^^^^^^^^^^~08/01/1979~
-~05053~^~318~^100.^0^^~4~^~NC~^^^^^^^^^^~04/01/2016~
-~05053~^~319~^30.^0^^~4~^~NR~^^^^^^^^^^~09/01/2002~
-~05053~^~320~^30.^0^^~4~^~NC~^^^^^^^^^^~10/01/2002~
-~05053~^~321~^0.^0^^~7~^~Z~^^^^^^^^^^~09/01/2002~
-~05053~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~09/01/2002~
-~05053~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~09/01/2002~
-~05053~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~09/01/2002~
-~05053~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~09/01/2002~
-~05053~^~417~^9.^0^^~1~^^^^^^^^^^^~08/01/1979~
-~05053~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~
-~05053~^~432~^9.^0^^~1~^^^^^^^^^^^~10/01/2002~
-~05053~^~435~^9.^0^^~4~^~NC~^^^^^^^^^^~10/01/2002~
-~05053~^~601~^81.^0^^~1~^^^^^^^^^^^~08/01/1979~
-~05054~^~208~^288.^0^^~4~^~NC~^^^^^^^^^^~08/01/1979~
-~05054~^~268~^1205.^0^^~4~^^^^^^^^^^^
-~05054~^~301~^26.^0^^~1~^^^^^^^^^^^~08/01/1979~
-~05054~^~304~^25.^0^^~1~^^^^^^^^^^^~08/01/1979~
-~05054~^~305~^176.^0^^~1~^^^^^^^^^^^~08/01/1979~
-~05054~^~306~^251.^0^^~1~^^^^^^^^^^^~08/01/1979~
-~05054~^~307~^99.^0^^~1~^^^^^^^^^^^~08/01/1979~
-~05054~^~318~^98.^0^^~1~^^^^^^^^^^^~08/01/1979~
-~05054~^~319~^29.^0^^~1~^^^^^^^^^^^~06/01/2002~
-~05054~^~320~^29.^0^^~1~^^^^^^^^^^^~06/01/2002~
-~05054~^~417~^9.^0^^~1~^^^^^^^^^^^~08/01/1979~
-~05054~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~
-~05054~^~432~^9.^0^^~1~^^^^^^^^^^^~08/01/1979~
-~05054~^~435~^9.^0^^~4~^~NC~^^^^^^^^^^~01/01/2001~
-~05054~^~601~^93.^0^^~1~^^^^^^^^^^^~08/01/1979~
-~05055~^~208~^239.^0^^~4~^~NC~^^^^^^^^^^~08/01/1979~
-~05055~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~09/01/2002~
-~05055~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~09/01/2002~
-~05055~^~268~^1000.^0^^~4~^^^^^^^^^^^~03/01/2009~
-~05055~^~301~^24.^16^0.^~1~^^^^^^^^^^^~08/01/1979~
-~05055~^~304~^22.^16^0.^~1~^^^^^^^^^^^~08/01/1979~
-~05055~^~305~^165.^16^5.^~1~^^^^^^^^^^^~08/01/1979~
-~05055~^~306~^237.^16^7.^~1~^^^^^^^^^^^~08/01/1979~
-~05055~^~307~^96.^16^2.^~1~^^^^^^^^^^^~08/01/1979~
-~05055~^~318~^0.^0^^~1~^~AS~^^^^^^^^^^~05/01/2011~
-~05055~^~320~^0.^0^^~1~^~AS~^^^^^^^^^^~05/01/2011~
-~05055~^~321~^0.^0^^~7~^~Z~^^^^^^^^^^~09/01/2002~
-~05055~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~09/01/2002~
-~05055~^~324~^5.^0^^~4~^~BFZN~^^^^^^^^^^~03/01/2009~
-~05055~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~09/01/2002~
-~05055~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~09/01/2002~
-~05055~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~09/01/2002~
-~05055~^~417~^7.^0^^~1~^^^^^^^^^^^~08/01/1979~
-~05055~^~432~^7.^0^^~1~^^^^^^^^^^^~03/01/2009~
-~05055~^~601~^90.^0^^~1~^^^^^^^^^^^~08/01/1979~
-~05056~^~208~^209.^0^^~4~^~NC~^^^^^^^^^^~08/01/1979~
-~05056~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~09/01/2002~
-~05056~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~09/01/2002~
-~05056~^~268~^874.^0^^~4~^^^^^^^^^^^~03/01/2009~
-~05056~^~301~^21.^16^1.^~1~^^^^^^^^^^^~08/01/1979~
-~05056~^~304~^17.^16^0.^~1~^^^^^^^^^^^~08/01/1979~
-~05056~^~305~^130.^16^2.^~1~^^^^^^^^^^^~08/01/1979~
-~05056~^~306~^158.^16^6.^~1~^^^^^^^^^^^~08/01/1979~
-~05056~^~307~^67.^16^2.^~1~^^^^^^^^^^^~08/01/1979~
-~05056~^~318~^90.^0^^~1~^^^^^^^^^^^~08/01/1979~
-~05056~^~319~^27.^0^^~4~^~NR~^^^^^^^^^^~09/01/2002~
-~05056~^~320~^27.^0^^~4~^~NC~^^^^^^^^^^~03/01/2009~
-~05056~^~321~^0.^0^^~7~^~Z~^^^^^^^^^^~09/01/2002~
-~05056~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~09/01/2002~
-~05056~^~324~^5.^0^^~4~^~BFZN~^^^^^^^^^^~03/01/2009~
-~05056~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~09/01/2002~
-~05056~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~09/01/2002~
-~05056~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~09/01/2002~
-~05056~^~417~^7.^0^^~1~^^^^^^^^^^^~08/01/1979~
-~05056~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~
-~05056~^~432~^7.^0^^~1~^^^^^^^^^^^~03/01/2009~
-~05056~^~435~^7.^0^^~4~^~NC~^^^^^^^^^^~03/01/2009~
-~05056~^~601~^85.^0^^~1~^^^^^^^^^^^~08/01/1979~
-~05057~^~208~^172.^0^^~4~^~NC~^^^^^^^^^^~08/01/1979~
-~05057~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~08/01/2004~
-~05057~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~08/01/2004~
-~05057~^~268~^720.^0^^~4~^^^^^^^^^^^~08/01/2009~
-~05057~^~301~^11.^24^0.^~1~^^^^^^^^^^^~08/01/1979~
-~05057~^~304~^25.^24^0.^~1~^^^^^^^^^^^~08/01/1979~
-~05057~^~305~^174.^24^3.^~1~^^^^^^^^^^^~08/01/1979~
-~05057~^~306~^220.^24^5.^~1~^^^^^^^^^^^~08/01/1979~
-~05057~^~307~^63.^24^1.^~1~^^^^^^^^^^^~08/01/1979~
-~05057~^~318~^83.^0^^~1~^^^^^^^^^^^~08/01/1979~
-~05057~^~319~^24.^0^^~4~^~NR~^^^^^^^^^^~09/01/2002~
-~05057~^~320~^24.^0^^~4~^~NC~^^^^^^^^^^~08/01/2009~
-~05057~^~321~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2002~
-~05057~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2002~
-~05057~^~324~^16.^0^^~4~^~PIK~^^^^^^^^^^~08/01/2009~
-~05057~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2002~
-~05057~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2002~
-~05057~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2002~
-~05057~^~417~^4.^4^0.^~1~^^^^^^^^^^^~08/01/1979~
-~05057~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~
-~05057~^~432~^4.^4^0.^~1~^^^^^^^^^^^~08/01/2009~
-~05057~^~435~^4.^0^^~4~^~NC~^^^^^^^^^^~08/01/2009~
-~05057~^~601~^64.^0^^~1~^^^^^^^^^^^~08/01/1979~
-~05058~^~208~^260.^0^^~4~^~NC~^^^^^^^^^^~08/01/1979~
-~05058~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~09/01/2002~
-~05058~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~09/01/2002~
-~05058~^~268~^1088.^0^^~4~^^^^^^^^^^^~03/01/2009~
-~05058~^~301~^20.^0^^~1~^^^^^^^^^^^~08/01/1979~
-~05058~^~304~^24.^0^^~1~^^^^^^^^^^^~08/01/1979~
-~05058~^~305~^185.^0^^~1~^^^^^^^^^^^~08/01/1979~
-~05058~^~306~^201.^0^^~1~^^^^^^^^^^^~08/01/1979~
-~05058~^~307~^275.^0^^~1~^^^^^^^^^^^~08/01/1979~
-~05058~^~318~^67.^0^^~1~^^^^^^^^^^^~02/01/2007~
-~05058~^~319~^20.^0^^~4~^~NR~^^^^^^^^^^~09/01/2002~
-~05058~^~320~^20.^0^^~4~^~NC~^^^^^^^^^^~03/01/2009~
-~05058~^~321~^0.^0^^~7~^~Z~^^^^^^^^^^~09/01/2002~
-~05058~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~09/01/2002~
-~05058~^~324~^6.^0^^~4~^~PIE~^^^^^^^^^^~03/01/2009~
-~05058~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~09/01/2002~
-~05058~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~09/01/2002~
-~05058~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~09/01/2002~
-~05058~^~417~^15.^0^^~4~^~RA~^^^^^^^^^^~10/01/1997~
-~05058~^~431~^9.^0^^~4~^~NC~^^^^^^^^^^~05/01/2000~
-~05058~^~432~^6.^0^^~1~^^^^^^^^^^^~08/01/1979~
-~05058~^~435~^21.^0^^~4~^~NC~^^^^^^^^^^~03/01/2009~
-~05058~^~601~^85.^0^^~1~^^^^^^^^^^^~08/01/1979~
-~05059~^~208~^222.^0^^~4~^~NC~^^^^^^^^^^~08/01/1979~
-~05059~^~268~^929.^0^^~4~^^^^^^^^^^^
-~05059~^~301~^16.^0^^~1~^^^^^^^^^^^~08/01/1979~
-~05059~^~304~^30.^0^^~1~^^^^^^^^^^^~08/01/1979~
-~05059~^~305~^233.^0^^~1~^^^^^^^^^^^~08/01/1979~
-~05059~^~306~^259.^0^^~1~^^^^^^^^^^^~08/01/1979~
-~05059~^~307~^76.^0^^~1~^^^^^^^^^^^~08/01/1979~
-~05059~^~318~^50.^0^^~1~^^^^^^^^^^^~08/01/1979~
-~05059~^~319~^15.^0^^~1~^^^^^^^^^^^~06/01/2002~
-~05059~^~320~^15.^0^^~1~^^^^^^^^^^^~06/01/2002~
-~05059~^~417~^6.^0^^~4~^~RA~^^^^^^^^^^~10/01/1997~
-~05059~^~431~^2.^0^^~4~^~NC~^^^^^^^^^^~05/01/2000~
-~05059~^~432~^4.^0^^~1~^^^^^^^^^^^~08/01/1979~
-~05059~^~435~^7.^0^^~4~^~NC~^^^^^^^^^^~01/01/2001~
-~05059~^~601~^89.^0^^~1~^^^^^^^^^^^~08/01/1979~
-~05060~^~208~^197.^0^^~4~^~NC~^^^^^^^^^^~04/01/2005~
-~05060~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~09/01/2002~
-~05060~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~09/01/2002~
-~05060~^~268~^824.^0^^~4~^^^^^^^^^^^~03/01/2009~
-~05060~^~301~^14.^17^0.^~1~^^^^^^^^^^^~08/01/1979~
-~05060~^~304~^27.^17^0.^~1~^^^^^^^^^^^~08/01/1979~
-~05060~^~305~^214.^17^6.^~1~^^^^^^^^^^^~08/01/1979~
-~05060~^~306~^245.^17^7.^~1~^^^^^^^^^^^~08/01/1979~
-~05060~^~307~^71.^17^3.^~1~^^^^^^^^^^^~08/01/1979~
-~05060~^~318~^93.^0^^~1~^^^^^^^^^^^~08/01/2004~
-~05060~^~319~^28.^0^^~4~^~NR~^^^^^^^^^^~10/01/2004~
-~05060~^~320~^28.^0^^~4~^~NC~^^^^^^^^^^~03/01/2009~
-~05060~^~321~^0.^0^^~7~^~Z~^^^^^^^^^^~09/01/2002~
-~05060~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~09/01/2002~
-~05060~^~324~^5.^0^^~4~^~PIK~^^^^^^^^^^~03/01/2009~
-~05060~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~09/01/2002~
-~05060~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~09/01/2002~
-~05060~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~09/01/2002~
-~05060~^~417~^4.^0^^~1~^^^^^^^^^^^~08/01/1979~
-~05060~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~
-~05060~^~432~^4.^0^^~1~^^^^^^^^^^^~03/01/2009~
-~05060~^~435~^4.^0^^~4~^~NC~^^^^^^^^^^~03/01/2009~
-~05060~^~601~^84.^0^^~1~^^^^^^^^^^^~08/01/1979~
-~05061~^~208~^184.^0^^~4~^~NC~^^^^^^^^^^~05/01/2005~
-~05061~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~09/01/2002~
-~05061~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~09/01/2002~
-~05061~^~268~^770.^0^^~4~^^^^^^^^^^^~03/01/2009~
-~05061~^~301~^13.^16^0.^~1~^^^^^^^^^^^~08/01/1979~
-~05061~^~304~^22.^16^0.^~1~^^^^^^^^^^^~08/01/1979~
-~05061~^~305~^156.^16^3.^~1~^^^^^^^^^^^~08/01/1979~
-~05061~^~306~^178.^16^7.^~1~^^^^^^^^^^^~08/01/1979~
-~05061~^~307~^62.^16^2.^~1~^^^^^^^^^^^~08/01/1979~
-~05061~^~318~^82.^0^^~1~^^^^^^^^^^^~08/01/2004~
-~05061~^~319~^25.^0^^~4~^~NR~^^^^^^^^^^~10/01/2004~
-~05061~^~320~^25.^0^^~4~^~NC~^^^^^^^^^^~03/01/2009~
-~05061~^~321~^0.^0^^~7~^~Z~^^^^^^^^^^~09/01/2002~
-~05061~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~09/01/2002~
-~05061~^~324~^5.^0^^~4~^~PIK~^^^^^^^^^^~03/01/2009~
-~05061~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~09/01/2002~
-~05061~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~09/01/2002~
-~05061~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~09/01/2002~
-~05061~^~417~^3.^0^^~1~^^^^^^^^^^^~08/01/1979~
-~05061~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~
-~05061~^~432~^3.^0^^~1~^^^^^^^^^^^~03/01/2009~
-~05061~^~435~^3.^0^^~4~^~NC~^^^^^^^^^^~03/01/2009~
-~05061~^~601~^75.^0^^~1~^^^^^^^^^^^~08/01/1979~
-~05062~^~208~^120.^0^^~4~^~NC~^^^^^^^^^^~04/01/2013~
-~05062~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2002~
-~05062~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2002~
-~05062~^~268~^501.^0^^~4~^~NC~^^^^^^^^^^~04/01/2013~
-~05062~^~301~^5.^6^0.^~1~^~A~^^^1^4.^6.^5^3.^5.^~2, 3~^~04/01/2009~
-~05062~^~304~^28.^6^0.^~1~^~A~^^^1^27.^30.^5^27.^29.^~2, 3~^~04/01/2013~
-~05062~^~305~^213.^6^2.^~1~^~A~^^^1^207.^222.^5^206.^219.^~2, 3~^~04/01/2013~
-~05062~^~306~^334.^6^3.^~1~^~A~^^^1^321.^343.^5^325.^342.^~2, 3~^~04/01/2013~
-~05062~^~307~^45.^6^2.^~1~^~A~^^^1^38.^52.^5^39.^51.^~2, 3~^~04/01/2013~
-~05062~^~318~^30.^0^^~1~^~AS~^^^^^^^^^^~08/01/2015~
-~05062~^~319~^9.^2^^~1~^~A~^^^1^0.^18.^^^^~1~^~08/01/2015~
-~05062~^~320~^9.^0^^~1~^~AS~^^^^^^^^^^~08/01/2015~
-~05062~^~321~^0.^0^^~7~^~Z~^^^^^^^^^^~09/01/2002~
-~05062~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~09/01/2002~
-~05062~^~324~^1.^0^^~4~^~BFFN~^~05071~^^^^^^^^^~05/01/2013~
-~05062~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~09/01/2002~
-~05062~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~09/01/2002~
-~05062~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~09/01/2002~
-~05062~^~417~^9.^0^^~4~^~BFPN~^^^^^^^^^^~05/01/2013~
-~05062~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~
-~05062~^~432~^9.^0^^~4~^~BFPN~^^^^^^^^^^~05/01/2013~
-~05062~^~435~^9.^0^^~4~^~NC~^^^^^^^^^^~05/01/2013~
-~05062~^~601~^73.^3^2.^~1~^~A~^^^1^70.^79.^2^60.^85.^~2, 3~^~04/01/2013~
-~05063~^~208~^187.^0^^~4~^~NC~^^^^^^^^^^~08/01/1979~
-~05063~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~09/01/2002~
-~05063~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~09/01/2002~
-~05063~^~268~^782.^0^^~4~^^^^^^^^^^^~03/01/2009~
-~05063~^~301~^16.^0^^~1~^^^^^^^^^^^~08/01/1979~
-~05063~^~304~^31.^0^^~1~^^^^^^^^^^^~08/01/1979~
-~05063~^~305~^246.^0^^~1~^^^^^^^^^^^~08/01/1979~
-~05063~^~306~^276.^0^^~1~^^^^^^^^^^^~08/01/1979~
-~05063~^~307~^79.^0^^~1~^^^^^^^^^^^~08/01/1979~
-~05063~^~318~^23.^0^^~1~^^^^^^^^^^^~08/01/1979~
-~05063~^~319~^7.^0^^~4~^~NR~^^^^^^^^^^~09/01/2002~
-~05063~^~320~^7.^0^^~4~^~NC~^^^^^^^^^^~03/01/2009~
-~05063~^~321~^0.^0^^~7~^~Z~^^^^^^^^^^~09/01/2002~
-~05063~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~09/01/2002~
-~05063~^~324~^5.^0^^~4~^~BFZN~^^^^^^^^^^~03/01/2009~
-~05063~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~09/01/2002~
-~05063~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~09/01/2002~
-~05063~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~09/01/2002~
-~05063~^~417~^4.^0^^~1~^^^^^^^^^^^~08/01/1979~
-~05063~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~
-~05063~^~432~^4.^0^^~1~^^^^^^^^^^^~03/01/2009~
-~05063~^~435~^4.^0^^~4~^~NC~^^^^^^^^^^~03/01/2009~
-~05063~^~601~^91.^0^^~1~^^^^^^^^^^^~08/01/1979~
-~05064~^~208~^165.^0^^~4~^~NC~^^^^^^^^^^~08/01/1979~
-~05064~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~09/01/2002~
-~05064~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~09/01/2002~
-~05064~^~268~^690.^0^^~4~^^^^^^^^^^^~03/01/2009~
-~05064~^~301~^15.^16^0.^~1~^^^^^^^^^^^~08/01/1979~
-~05064~^~304~^29.^16^0.^~1~^^^^^^^^^^^~08/01/1979~
-~05064~^~305~^228.^16^7.^~1~^^^^^^^^^^^~08/01/1979~
-~05064~^~306~^256.^16^7.^~1~^^^^^^^^^^^~08/01/1979~
-~05064~^~307~^74.^16^3.^~1~^^^^^^^^^^^~08/01/1979~
-~05064~^~318~^21.^0^^~1~^^^^^^^^^^^~11/01/2006~
-~05064~^~319~^6.^0^^~4~^~NR~^^^^^^^^^^~09/01/2002~
-~05064~^~320~^6.^0^^~4~^~NC~^^^^^^^^^^~03/01/2009~
-~05064~^~321~^0.^0^^~7~^~Z~^^^^^^^^^^~09/01/2002~
-~05064~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~09/01/2002~
-~05064~^~324~^5.^0^^~4~^~BFZN~^^^^^^^^^^~03/01/2009~
-~05064~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~09/01/2002~
-~05064~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~09/01/2002~
-~05064~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~09/01/2002~
-~05064~^~417~^4.^0^^~1~^^^^^^^^^^^~08/01/1979~
-~05064~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~
-~05064~^~432~^4.^0^^~1~^^^^^^^^^^^~03/01/2009~
-~05064~^~435~^4.^0^^~4~^~NC~^^^^^^^^^^~03/01/2009~
-~05064~^~601~^85.^0^^~1~^^^^^^^^^^^~08/01/1979~
-~05065~^~208~^151.^0^^~4~^~NC~^^^^^^^^^^~08/01/1979~
-~05065~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~09/01/2002~
-~05065~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~09/01/2002~
-~05065~^~268~^632.^0^^~4~^^^^^^^^^^^~03/01/2009~
-~05065~^~301~^13.^16^0.^~1~^^^^^^^^^^^~08/01/1979~
-~05065~^~304~^24.^16^0.^~1~^^^^^^^^^^^~08/01/1979~
-~05065~^~305~^165.^16^3.^~1~^^^^^^^^^^^~08/01/1979~
-~05065~^~306~^187.^16^8.^~1~^^^^^^^^^^^~08/01/1979~
-~05065~^~307~^63.^16^3.^~1~^^^^^^^^^^^~08/01/1979~
-~05065~^~318~^19.^0^^~1~^^^^^^^^^^^~08/01/2004~
-~05065~^~319~^6.^0^^~4~^~NR~^^^^^^^^^^~10/01/2004~
-~05065~^~320~^6.^0^^~4~^~NC~^^^^^^^^^^~03/01/2009~
-~05065~^~321~^0.^0^^~7~^~Z~^^^^^^^^^^~09/01/2002~
-~05065~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~09/01/2002~
-~05065~^~324~^5.^0^^~4~^~BFZN~^^^^^^^^^^~03/01/2009~
-~05065~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~09/01/2002~
-~05065~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~09/01/2002~
-~05065~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~09/01/2002~
-~05065~^~417~^3.^0^^~1~^^^^^^^^^^^~08/01/1979~
-~05065~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~
-~05065~^~432~^3.^0^^~1~^^^^^^^^^^^~03/01/2009~
-~05065~^~435~^3.^0^^~4~^~NC~^^^^^^^^^^~03/01/2009~
-~05065~^~601~^77.^0^^~1~^^^^^^^^^^^~08/01/1979~
-~05066~^~208~^161.^0^^~4~^~NC~^^^^^^^^^^~02/01/2013~
-~05066~^~262~^0.^0^^~4~^~PIK~^^^^^^^^^^~05/01/2011~
-~05066~^~263~^0.^0^^~4~^~PIK~^^^^^^^^^^~05/01/2011~
-~05066~^~268~^672.^0^^~4~^~NC~^^^^^^^^^^~02/01/2013~
-~05066~^~301~^8.^0^^~1~^~PAK~^^^^^^^^^^~02/01/2013~
-~05066~^~304~^18.^0^^~1~^~PAK~^^^^^^^^^^~02/01/2013~
-~05066~^~305~^163.^0^^~1~^~PAK~^^^^^^^^^^~02/01/2013~
-~05066~^~306~^211.^0^^~1~^~PAK~^^^^^^^^^^~02/01/2013~
-~05066~^~307~^106.^0^^~1~^~PAK~^^^^^^^^^^~02/01/2013~
-~05066~^~318~^46.^0^^~1~^~AS~^^^^^^^^^^~07/01/2011~
-~05066~^~319~^14.^0^^~1~^~PAK~^^^^^^^^^^~07/01/2011~
-~05066~^~320~^14.^0^^~1~^~AS~^^^^^^^^^^~07/01/2011~
-~05066~^~321~^0.^0^^~1~^~PAK~^^^^^^^^^^~05/01/2011~
-~05066~^~322~^0.^0^^~1~^~PAK~^^^^^^^^^^~05/01/2011~
-~05066~^~324~^2.^0^^~1~^~PAK~^^^^^^^^^^~05/01/2011~
-~05066~^~334~^0.^0^^~1~^~PAK~^^^^^^^^^^~05/01/2011~
-~05066~^~337~^0.^0^^~1~^~PAK~^^^^^^^^^^~05/01/2011~
-~05066~^~338~^102.^0^^~1~^~PAK~^^^^^^^^^^~05/01/2011~
-~05066~^~417~^3.^0^^~4~^~PIK~^^^^^^^^^^~05/01/2011~
-~05066~^~431~^0.^0^^~4~^~PIK~^^^^^^^^^^~05/01/2011~
-~05066~^~432~^3.^0^^~4~^~PIK~^^^^^^^^^^~05/01/2011~
-~05066~^~435~^3.^0^^~4~^~NC~^^^^^^^^^^~05/01/2011~
-~05066~^~601~^92.^0^^~1~^~PAK~^^^^^^^^^^~07/01/2011~
-~05067~^~208~^268.^0^^~4~^~NC~^^^^^^^^^^~08/01/1979~
-~05067~^~268~^1121.^0^^~4~^^^^^^^^^^^
-~05067~^~301~^17.^0^^~1~^^^^^^^^^^^~08/01/1979~
-~05067~^~304~^20.^0^^~1~^^^^^^^^^^^~08/01/1979~
-~05067~^~305~^147.^0^^~1~^^^^^^^^^^^~08/01/1979~
-~05067~^~306~^186.^0^^~1~^^^^^^^^^^^~08/01/1979~
-~05067~^~307~^269.^0^^~1~^^^^^^^^^^^~08/01/1979~
-~05067~^~318~^86.^0^^~1~^^^^^^^^^^^~08/01/1979~
-~05067~^~319~^26.^0^^~1~^^^^^^^^^^^~06/01/2002~
-~05067~^~320~^26.^0^^~1~^^^^^^^^^^^~06/01/2002~
-~05067~^~417~^18.^0^^~4~^~RA~^^^^^^^^^^~10/01/1997~
-~05067~^~431~^9.^0^^~4~^~NC~^^^^^^^^^^~05/01/2000~
-~05067~^~432~^9.^0^^~1~^^^^^^^^^^^~08/01/1979~
-~05067~^~435~^24.^0^^~4~^~NC~^^^^^^^^^^~01/01/2001~
-~05067~^~601~^86.^0^^~1~^^^^^^^^^^^~08/01/1979~
-~05068~^~208~^245.^0^^~4~^~NC~^^^^^^^^^^~08/01/1979~
-~05068~^~268~^1025.^0^^~4~^^^^^^^^^^^
-~05068~^~301~^12.^0^^~1~^^^^^^^^^^^~08/01/1979~
-~05068~^~304~^23.^0^^~1~^^^^^^^^^^^~08/01/1979~
-~05068~^~305~^176.^0^^~1~^^^^^^^^^^^~08/01/1979~
-~05068~^~306~^229.^0^^~1~^^^^^^^^^^^~08/01/1979~
-~05068~^~307~^89.^0^^~1~^^^^^^^^^^^~08/01/1979~
-~05068~^~318~^84.^0^^~1~^^^^^^^^^^^~08/01/1979~
-~05068~^~319~^25.^0^^~1~^^^^^^^^^^^~06/01/2002~
-~05068~^~320~^25.^0^^~1~^^^^^^^^^^^~06/01/2002~
-~05068~^~417~^10.^0^^~4~^~RA~^^^^^^^^^^~10/01/1997~
-~05068~^~431~^2.^0^^~4~^~NC~^^^^^^^^^^~05/01/2000~
-~05068~^~432~^8.^0^^~1~^^^^^^^^^^^~08/01/1979~
-~05068~^~435~^11.^0^^~4~^~NC~^^^^^^^^^^~01/01/2001~
-~05068~^~601~^90.^0^^~1~^^^^^^^^^^^~08/01/1979~
-~05069~^~208~^191.^0^^~4~^~PIK~^^^^^^^^^^~02/01/2013~
-~05069~^~262~^0.^0^^~4~^~PIK~^^^^^^^^^^~05/01/2011~
-~05069~^~263~^0.^0^^~4~^~PIK~^^^^^^^^^^~05/01/2011~
-~05069~^~268~^797.^0^^~4~^~PIK~^^^^^^^^^^~02/01/2013~
-~05069~^~301~^11.^0^^~1~^~PAK~^^^^^^^^^^~02/01/2013~
-~05069~^~304~^22.^0^^~1~^~PAK~^^^^^^^^^^~02/01/2013~
-~05069~^~305~^195.^0^^~1~^~PAK~^^^^^^^^^^~02/01/2013~
-~05069~^~306~^247.^0^^~1~^~PAK~^^^^^^^^^^~02/01/2013~
-~05069~^~307~^123.^0^^~1~^~PAK~^^^^^^^^^^~02/01/2013~
-~05069~^~318~^40.^0^^~4~^~NC~^^^^^^^^^^~04/01/2016~
-~05069~^~319~^12.^0^^~1~^~PAK~^^^^^^^^^^~05/01/2011~
-~05069~^~320~^12.^0^^~4~^~NC~^^^^^^^^^^~02/01/2013~
-~05069~^~321~^0.^0^^~4~^~PIK~^^^^^^^^^^~05/01/2011~
-~05069~^~322~^0.^0^^~4~^~PIK~^^^^^^^^^^~05/01/2011~
-~05069~^~324~^2.^0^^~1~^~PAK~^^^^^^^^^^~05/01/2011~
-~05069~^~334~^0.^0^^~4~^~PIK~^^^^^^^^^^~05/01/2011~
-~05069~^~337~^0.^0^^~4~^~PIK~^^^^^^^^^^~05/01/2011~
-~05069~^~338~^11.^0^^~4~^~PIK~^^^^^^^^^^~05/01/2011~
-~05069~^~417~^4.^0^^~4~^~PIK~^^^^^^^^^^~05/01/2011~
-~05069~^~431~^0.^0^^~4~^~PIK~^^^^^^^^^^~05/01/2011~
-~05069~^~432~^4.^0^^~4~^~PIK~^^^^^^^^^^~05/01/2011~
-~05069~^~435~^4.^0^^~4~^~NC~^^^^^^^^^^~05/01/2011~
-~05069~^~601~^130.^0^^~1~^~PAK~^^^^^^^^^^~05/01/2011~
-~05070~^~208~^204.^0^^~4~^~NC~^^^^^^^^^^~08/01/1979~
-~05070~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~11/01/2002~
-~05070~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~11/01/2002~
-~05070~^~268~^854.^0^^~4~^^^^^^^^^^^~03/01/2009~
-~05070~^~301~^11.^16^0.^~1~^^^^^^^^^^^~08/01/1979~
-~05070~^~304~^20.^16^0.^~1~^^^^^^^^^^^~08/01/1979~
-~05070~^~305~^141.^16^3.^~1~^^^^^^^^^^^~08/01/1979~
-~05070~^~306~^184.^16^6.^~1~^^^^^^^^^^^~08/01/1979~
-~05070~^~307~^76.^16^1.^~1~^^^^^^^^^^^~08/01/1979~
-~05070~^~318~^91.^0^^~1~^^^^^^^^^^^~08/01/2004~
-~05070~^~319~^27.^0^^~4~^~NR~^^^^^^^^^^~10/01/2004~
-~05070~^~320~^27.^0^^~4~^~NC~^^^^^^^^^^~03/01/2009~
-~05070~^~321~^0.^0^^~7~^~Z~^^^^^^^^^^~11/01/2002~
-~05070~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~11/01/2002~
-~05070~^~324~^5.^0^^~4~^~PIK~^^^^^^^^^^~03/01/2009~
-~05070~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~11/01/2002~
-~05070~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~11/01/2002~
-~05070~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~11/01/2002~
-~05070~^~417~^7.^0^^~1~^^^^^^^^^^^~08/01/1979~
-~05070~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~
-~05070~^~432~^7.^0^^~1~^^^^^^^^^^^~03/01/2009~
-~05070~^~435~^7.^0^^~4~^~NC~^^^^^^^^^^~03/01/2009~
-~05070~^~601~^83.^0^^~1~^^^^^^^^^^^~08/01/1979~
-~05071~^~208~^116.^0^^~4~^~NC~^^^^^^^^^^~02/01/2013~
-~05071~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2002~
-~05071~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2002~
-~05071~^~268~^487.^0^^~4~^~NC~^^^^^^^^^^~02/01/2013~
-~05071~^~301~^9.^6^0.^~1~^~A~^^^2^5.^12.^4^7.^9.^~2, 3~^~02/01/2013~
-~05071~^~304~^20.^6^0.^~1~^~A~^^^2^15.^22.^1^12.^27.^~2, 3~^~02/01/2013~
-~05071~^~305~^174.^6^5.^~1~^~A~^^^2^150.^184.^1^116.^231.^~2, 3~^~02/01/2013~
-~05071~^~306~^225.^6^6.^~1~^~A~^^^2^181.^251.^2^196.^253.^~2, 3~^~02/01/2013~
-~05071~^~307~^114.^6^8.^~1~^~A~^^^2^94.^142.^1^24.^203.^~2, 3~^~02/01/2013~
-~05071~^~318~^22.^1^^~1~^~AS~^^^^^^^^^^~04/01/2011~
-~05071~^~319~^7.^1^^~1~^~A~^^^^^^^^^^~04/01/2011~
-~05071~^~320~^7.^1^^~1~^~AS~^^^^^^^^^^~04/01/2011~
-~05071~^~321~^0.^1^^~1~^~A~^^^^^^^^^~1~^~04/01/2011~
-~05071~^~322~^0.^1^^~1~^~A~^^^^^^^^^~1~^~04/01/2011~
-~05071~^~324~^1.^1^^~1~^~A~^^^^^^^^^~1~^~04/01/2011~
-~05071~^~334~^0.^1^^~1~^~A~^^^^^^^^^~1~^~04/01/2011~
-~05071~^~337~^0.^1^^~1~^~A~^^^^^^^^^~1~^~04/01/2011~
-~05071~^~338~^102.^1^^~1~^~A~^^^^^^^^^^~04/01/2011~
-~05071~^~417~^4.^0^^~4~^~BFPN~^~05062~^^^^^^^^^~04/01/2011~
-~05071~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~
-~05071~^~432~^4.^0^^~4~^~BFPN~^^^^^^^^^^~04/01/2011~
-~05071~^~435~^4.^0^^~4~^~NC~^^^^^^^^^^~04/01/2011~
-~05071~^~601~^89.^5^1.^~1~^~A~^^^2^86.^94.^3^85.^93.^~2, 3~^~02/01/2013~
-~05072~^~208~^195.^0^^~4~^~NC~^^^^^^^^^^~08/01/1979~
-~05072~^~268~^816.^0^^~4~^^^^^^^^^^^
-~05072~^~301~^12.^0^^~1~^^^^^^^^^^^~08/01/1979~
-~05072~^~304~^24.^0^^~1~^^^^^^^^^^^~08/01/1979~
-~05072~^~305~^186.^0^^~1~^^^^^^^^^^^~08/01/1979~
-~05072~^~306~^249.^0^^~1~^^^^^^^^^^^~08/01/1979~
-~05072~^~307~^96.^0^^~1~^^^^^^^^^^^~08/01/1979~
-~05072~^~318~^61.^0^^~1~^^^^^^^^^^^~08/01/1979~
-~05072~^~319~^18.^0^^~1~^^^^^^^^^^^~06/01/2002~
-~05072~^~320~^18.^0^^~1~^^^^^^^^^^^~06/01/2002~
-~05072~^~417~^9.^0^^~1~^^^^^^^^^^^~08/01/1979~
-~05072~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~
-~05072~^~432~^9.^0^^~1~^^^^^^^^^^^~08/01/1979~
-~05072~^~435~^9.^0^^~4~^~NC~^^^^^^^^^^~01/01/2001~
-~05072~^~601~^94.^0^^~1~^^^^^^^^^^^~08/01/1979~
-~05073~^~208~^155.^0^^~4~^~NC~^^^^^^^^^^~02/01/2013~
-~05073~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~11/01/2002~
-~05073~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~11/01/2002~
-~05073~^~268~^648.^0^^~4~^~NC~^^^^^^^^^^~02/01/2013~
-~05073~^~301~^11.^6^0.^~1~^~A~^^^2^8.^13.^3^8.^12.^~2, 3~^~02/01/2013~
-~05073~^~304~^22.^6^0.^~1~^~A~^^^2^18.^25.^2^19.^25.^~2, 3~^~02/01/2013~
-~05073~^~305~^200.^6^3.^~1~^~A~^^^2^190.^212.^1^167.^232.^~2, 3~^~04/01/2011~
-~05073~^~306~^256.^6^4.^~1~^~A~^^^2^225.^274.^2^235.^276.^~2, 3~^~02/01/2013~
-~05073~^~307~^128.^6^8.^~1~^~A~^^^2^111.^172.^1^34.^221.^~2, 3~^~02/01/2013~
-~05073~^~318~^21.^0^^~1~^~AS~^^^^^^^^^^~04/01/2011~
-~05073~^~319~^6.^1^^~1~^~A~^^^^^^^^^^~04/01/2011~
-~05073~^~320~^6.^0^^~1~^~AS~^^^^^^^^^^~04/01/2011~
-~05073~^~321~^0.^0^^~7~^~Z~^^^^^^^^^^~11/01/2002~
-~05073~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~11/01/2002~
-~05073~^~324~^1.^1^^~1~^~A~^^^^^^^^^~1~^~04/01/2011~
-~05073~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~11/01/2002~
-~05073~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~11/01/2002~
-~05073~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~11/01/2002~
-~05073~^~417~^4.^0^^~4~^~BFPN~^~05062~^^^^^^^^^~04/01/2011~
-~05073~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~
-~05073~^~432~^4.^0^^~4~^~BFPN~^^^^^^^^^^~04/01/2011~
-~05073~^~435~^4.^0^^~4~^~NC~^^^^^^^^^^~04/01/2011~
-~05073~^~601~^130.^5^2.^~1~^~A~^^^2^122.^137.^3^121.^138.^~2, 3~^~04/01/2011~
-~05074~^~208~^169.^0^^~4~^~NC~^^^^^^^^^^~08/01/1979~
-~05074~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~11/01/2002~
-~05074~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~11/01/2002~
-~05074~^~268~^707.^0^^~4~^^^^^^^^^^^~03/01/2009~
-~05074~^~301~^11.^16^0.^~1~^^^^^^^^^^^~08/01/1979~
-~05074~^~304~^21.^16^0.^~1~^^^^^^^^^^^~08/01/1979~
-~05074~^~305~^150.^16^3.^~1~^^^^^^^^^^^~08/01/1979~
-~05074~^~306~^199.^16^6.^~1~^^^^^^^^^^^~08/01/1979~
-~05074~^~307~^80.^16^2.^~1~^^^^^^^^^^^~08/01/1979~
-~05074~^~318~^57.^0^^~1~^^^^^^^^^^^~08/01/2004~
-~05074~^~319~^17.^0^^~4~^~NR~^^^^^^^^^^~11/01/2002~
-~05074~^~320~^17.^0^^~4~^~NC~^^^^^^^^^^~03/01/2009~
-~05074~^~321~^0.^0^^~7~^~Z~^^^^^^^^^^~11/01/2002~
-~05074~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~11/01/2002~
-~05074~^~324~^5.^0^^~4~^~BFZN~^^^^^^^^^^~03/01/2009~
-~05074~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~11/01/2002~
-~05074~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~11/01/2002~
-~05074~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~11/01/2002~
-~05074~^~417~^8.^0^^~1~^^^^^^^^^^^~08/01/1979~
-~05074~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~
-~05074~^~432~^8.^0^^~1~^^^^^^^^^^^~03/01/2009~
-~05074~^~435~^8.^0^^~4~^~NC~^^^^^^^^^^~03/01/2009~
-~05074~^~601~^88.^0^^~1~^^^^^^^^^^^~04/01/2005~
-~05075~^~208~^214.^0^^~4~^~PIK~^^^^^^^^^^~08/01/2011~
-~05075~^~262~^0.^0^^~4~^~PIK~^^^^^^^^^^~05/01/2011~
-~05075~^~263~^0.^0^^~4~^~PIK~^^^^^^^^^^~05/01/2011~
-~05075~^~268~^897.^0^^~4~^~PIK~^^^^^^^^^^~08/01/2011~
-~05075~^~301~^9.^0^^~1~^~PAK~^^^^^^^^^^~05/01/2011~
-~05075~^~304~^19.^0^^~1~^~PAK~^^^^^^^^^^~05/01/2011~
-~05075~^~305~^155.^0^^~1~^~PAK~^^^^^^^^^^~08/01/2011~
-~05075~^~306~^203.^0^^~1~^~PAK~^^^^^^^^^^~08/01/2011~
-~05075~^~307~^84.^0^^~1~^~PAK~^^^^^^^^^^~08/01/2011~
-~05075~^~318~^92.^0^^~4~^~NC~^^^^^^^^^^~04/01/2016~
-~05075~^~319~^28.^0^^~4~^~PIK~^^^^^^^^^^~08/01/2011~
-~05075~^~320~^28.^0^^~4~^~NC~^^^^^^^^^^~08/01/2011~
-~05075~^~321~^0.^0^^~4~^~PIK~^^^^^^^^^^~05/01/2011~
-~05075~^~322~^0.^0^^~4~^~PIK~^^^^^^^^^^~05/01/2011~
-~05075~^~324~^2.^0^^~1~^~PAK~^^^^^^^^^^~08/01/2011~
-~05075~^~334~^0.^0^^~4~^~PIK~^^^^^^^^^^~05/01/2011~
-~05075~^~337~^0.^0^^~4~^~PIK~^^^^^^^^^^~05/01/2011~
-~05075~^~338~^91.^0^^~4~^~PIK~^^^^^^^^^^~08/01/2011~
-~05075~^~417~^4.^0^^~4~^~PIK~^^^^^^^^^^~05/01/2011~
-~05075~^~431~^0.^0^^~4~^~PIK~^^^^^^^^^^~04/01/2005~
-~05075~^~432~^4.^0^^~4~^~PIK~^^^^^^^^^^~05/01/2011~
-~05075~^~435~^4.^0^^~4~^~NC~^^^^^^^^^^~05/01/2011~
-~05075~^~601~^93.^0^^~1~^~PAK~^^^^^^^^^^~08/01/2011~
-~05076~^~208~^273.^0^^~4~^~NC~^^^^^^^^^^~08/01/1979~
-~05076~^~268~^1142.^0^^~4~^^^^^^^^^^^
-~05076~^~301~^18.^0^^~1~^^^^^^^^^^^~08/01/1979~
-~05076~^~304~^20.^0^^~1~^^^^^^^^^^^~08/01/1979~
-~05076~^~305~^152.^0^^~1~^^^^^^^^^^^~08/01/1979~
-~05076~^~306~^189.^0^^~1~^^^^^^^^^^^~08/01/1979~
-~05076~^~307~^279.^0^^~1~^^^^^^^^^^^~08/01/1979~
-~05076~^~318~^91.^0^^~1~^^^^^^^^^^^~08/01/1979~
-~05076~^~319~^27.^0^^~1~^^^^^^^^^^^~06/01/2002~
-~05076~^~320~^27.^0^^~1~^^^^^^^^^^^~06/01/2002~
-~05076~^~417~^18.^0^^~4~^~RA~^^^^^^^^^^~10/01/1997~
-~05076~^~431~^9.^0^^~4~^~NC~^^^^^^^^^^~05/01/2000~
-~05076~^~432~^9.^0^^~1~^^^^^^^^^^^~08/01/1979~
-~05076~^~435~^24.^0^^~4~^~NC~^^^^^^^^^^~01/01/2001~
-~05076~^~601~^90.^0^^~1~^^^^^^^^^^^~08/01/1979~
-~05077~^~208~^254.^0^^~4~^~NC~^^^^^^^^^^~08/01/1979~
-~05077~^~268~^1063.^0^^~4~^^^^^^^^^^^
-~05077~^~301~^13.^0^^~1~^^^^^^^^^^^~08/01/1979~
-~05077~^~304~^24.^0^^~1~^^^^^^^^^^^~08/01/1979~
-~05077~^~305~^182.^0^^~1~^^^^^^^^^^^~08/01/1979~
-~05077~^~306~^233.^0^^~1~^^^^^^^^^^^~08/01/1979~
-~05077~^~307~^88.^0^^~1~^^^^^^^^^^^~08/01/1979~
-~05077~^~318~^92.^0^^~1~^^^^^^^^^^^~08/01/1979~
-~05077~^~319~^28.^0^^~1~^^^^^^^^^^^~06/01/2002~
-~05077~^~320~^28.^0^^~1~^^^^^^^^^^^~06/01/2002~
-~05077~^~417~^11.^0^^~4~^~RA~^^^^^^^^^^~10/01/1997~
-~05077~^~431~^3.^0^^~4~^~NC~^^^^^^^^^^~05/01/2000~
-~05077~^~432~^8.^0^^~1~^^^^^^^^^^^~08/01/1979~
-~05077~^~435~^13.^0^^~4~^~NC~^^^^^^^^^^~01/01/2001~
-~05077~^~601~^94.^0^^~1~^^^^^^^^^^^~08/01/1979~
-~05078~^~208~^184.^0^^~4~^~PIK~^^^^^^^^^^~08/01/2011~
-~05078~^~262~^0.^0^^~4~^~PIK~^^^^^^^^^^~05/01/2011~
-~05078~^~263~^0.^0^^~4~^~PIK~^^^^^^^^^^~05/01/2011~
-~05078~^~268~^769.^0^^~4~^~PIK~^^^^^^^^^^~08/01/2011~
-~05078~^~301~^12.^0^^~1~^~PAK~^^^^^^^^^^~08/01/2011~
-~05078~^~304~^23.^0^^~1~^~PAK~^^^^^^^^^^~08/01/2011~
-~05078~^~305~^202.^0^^~1~^~PAK~^^^^^^^^^^~08/01/2011~
-~05078~^~306~^264.^0^^~1~^~PAK~^^^^^^^^^^~08/01/2011~
-~05078~^~307~^98.^0^^~1~^~PAK~^^^^^^^^^^~08/01/2011~
-~05078~^~318~^68.^0^^~1~^~PAK~^^^^^^^^^^~08/01/2011~
-~05078~^~319~^20.^0^^~4~^~PIK~^^^^^^^^^^~08/01/2011~
-~05078~^~320~^20.^0^^~4~^~PIK~^^^^^^^^^^~08/01/2011~
-~05078~^~321~^0.^0^^~4~^~PIK~^^^^^^^^^^~05/01/2011~
-~05078~^~322~^0.^0^^~4~^~PIK~^^^^^^^^^^~05/01/2011~
-~05078~^~324~^4.^0^^~4~^~PIK~^^^^^^^^^^~08/01/2011~
-~05078~^~334~^0.^0^^~4~^~PIK~^^^^^^^^^^~05/01/2011~
-~05078~^~337~^0.^0^^~4~^~PIK~^^^^^^^^^^~05/01/2011~
-~05078~^~338~^0.^0^^~4~^~PIK~^^^^^^^^^^~08/01/2011~
-~05078~^~417~^5.^0^^~4~^~PIK~^^^^^^^^^^~08/01/2011~
-~05078~^~431~^0.^0^^~4~^~PIK~^^^^^^^^^^~05/01/2011~
-~05078~^~432~^5.^0^^~4~^~PIK~^^^^^^^^^^~08/01/2011~
-~05078~^~435~^5.^0^^~4~^~NC~^^^^^^^^^^~08/01/2011~
-~05078~^~601~^127.^0^^~1~^~PAK~^^^^^^^^^^~08/01/2011~
-~05079~^~208~^220.^0^^~4~^~NC~^^^^^^^^^^~08/01/1979~
-~05079~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~11/01/2002~
-~05079~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~11/01/2002~
-~05079~^~268~^920.^0^^~4~^^^^^^^^^^^~03/01/2009~
-~05079~^~301~^11.^16^0.^~1~^^^^^^^^^^^~08/01/1979~
-~05079~^~304~^20.^16^0.^~1~^^^^^^^^^^^~08/01/1979~
-~05079~^~305~^139.^16^2.^~1~^^^^^^^^^^^~08/01/1979~
-~05079~^~306~^176.^16^6.^~1~^^^^^^^^^^^~08/01/1979~
-~05079~^~307~^73.^16^1.^~1~^^^^^^^^^^^~08/01/1979~
-~05079~^~318~^124.^0^^~1~^^^^^^^^^^^~08/01/2004~
-~05079~^~319~^37.^0^^~4~^~NR~^^^^^^^^^^~10/01/2004~
-~05079~^~320~^37.^0^^~4~^~NC~^^^^^^^^^^~03/01/2009~
-~05079~^~321~^0.^0^^~7~^~Z~^^^^^^^^^^~11/01/2002~
-~05079~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~11/01/2002~
-~05079~^~324~^5.^0^^~4~^~PIK~^^^^^^^^^^~03/01/2009~
-~05079~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~11/01/2002~
-~05079~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~11/01/2002~
-~05079~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~11/01/2002~
-~05079~^~417~^6.^0^^~1~^^^^^^^^^^^~08/01/1979~
-~05079~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~
-~05079~^~432~^6.^0^^~1~^^^^^^^^^^^~03/01/2009~
-~05079~^~435~^6.^0^^~4~^~NC~^^^^^^^^^^~03/01/2009~
-~05079~^~601~^84.^0^^~1~^^^^^^^^^^^~08/01/1979~
-~05080~^~208~^120.^0^^~4~^~PIK~^^^^^^^^^^~08/01/1979~
-~05080~^~262~^0.^0^^~4~^~PIK~^^^^^^^^^^~05/01/2011~
-~05080~^~263~^0.^0^^~4~^~PIK~^^^^^^^^^^~05/01/2011~
-~05080~^~268~^501.^0^^~4~^~PIK~^^^^^^^^^^~05/01/2011~
-~05080~^~301~^10.^0^^~1~^~PAK~^^^^^^^^^^~05/01/2011~
-~05080~^~304~^23.^0^^~1~^~PAK~^^^^^^^^^^~08/01/1979~
-~05080~^~305~^180.^0^^~1~^~PAK~^^^^^^^^^^~05/01/2011~
-~05080~^~306~^238.^0^^~1~^~PAK~^^^^^^^^^^~05/01/2011~
-~05080~^~307~^96.^0^^~1~^~PAK~^^^^^^^^^^~08/01/2011~
-~05080~^~318~^32.^0^^~1~^~PAK~^^^^^^^^^^~08/01/2011~
-~05080~^~319~^10.^0^^~4~^~PIK~^^^^^^^^^^~05/01/2011~
-~05080~^~320~^10.^0^^~4~^~NC~^^^^^^^^^^~05/01/2011~
-~05080~^~321~^0.^0^^~4~^~PIK~^^^^^^^^^^~05/01/2011~
-~05080~^~322~^0.^0^^~4~^~PIK~^^^^^^^^^^~05/01/2011~
-~05080~^~324~^1.^0^^~1~^~PAK~^^^^^^^^^^~05/01/2011~
-~05080~^~334~^0.^0^^~4~^~PIK~^^^^^^^^^^~05/01/2011~
-~05080~^~337~^0.^0^^~4~^~PIK~^^^^^^^^^^~05/01/2011~
-~05080~^~338~^95.^0^^~4~^~PIK~^^^^^^^^^^~05/01/2011~
-~05080~^~417~^4.^0^^~4~^~PIK~^^^^^^^^^^~05/01/2011~
-~05080~^~431~^0.^0^^~4~^~PIK~^^^^^^^^^^~05/01/2011~
-~05080~^~432~^4.^0^^~4~^~PIK~^^^^^^^^^^~05/01/2011~
-~05080~^~435~^4.^0^^~4~^~NC~^^^^^^^^^^~05/01/2011~
-~05080~^~601~^91.^0^^~1~^~PAK~^^^^^^^^^^~05/01/2011~
-~05081~^~208~^208.^0^^~4~^~NC~^^^^^^^^^^~08/01/1979~
-~05081~^~268~^870.^0^^~4~^^^^^^^^^^^
-~05081~^~301~^13.^0^^~1~^^^^^^^^^^^~08/01/1979~
-~05081~^~304~^25.^0^^~1~^^^^^^^^^^^~08/01/1979~
-~05081~^~305~^193.^0^^~1~^^^^^^^^^^^~08/01/1979~
-~05081~^~306~^254.^0^^~1~^^^^^^^^^^^~08/01/1979~
-~05081~^~307~^96.^0^^~1~^^^^^^^^^^^~08/01/1979~
-~05081~^~318~^66.^0^^~1~^^^^^^^^^^^~08/01/1979~
-~05081~^~319~^20.^0^^~1~^^^^^^^^^^^~06/01/2002~
-~05081~^~320~^20.^0^^~1~^^^^^^^^^^^~06/01/2002~
-~05081~^~417~^9.^0^^~1~^^^^^^^^^^^~08/01/1979~
-~05081~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~
-~05081~^~432~^9.^0^^~1~^^^^^^^^^^^~08/01/1979~
-~05081~^~435~^9.^0^^~4~^~NC~^^^^^^^^^^~01/01/2001~
-~05081~^~601~^99.^0^^~1~^^^^^^^^^^^~08/01/1979~
-~05082~^~208~^174.^0^^~4~^~PIK~^^^^^^^^^^~05/01/2011~
-~05082~^~262~^0.^0^^~4~^~PIK~^^^^^^^^^^~05/01/2011~
-~05082~^~263~^0.^0^^~4~^~PIK~^^^^^^^^^^~05/01/2011~
-~05082~^~268~^727.^0^^~4~^~PIK~^^^^^^^^^^~05/01/2011~
-~05082~^~301~^12.^0^^~1~^~PAK~^^^^^^^^^^~08/01/1979~
-~05082~^~304~^24.^0^^~1~^~PAK~^^^^^^^^^^~08/01/1979~
-~05082~^~305~^205.^0^^~1~^~PAK~^^^^^^^^^^~05/01/2011~
-~05082~^~306~^269.^0^^~1~^~PAK~^^^^^^^^^^~05/01/2011~
-~05082~^~307~^99.^0^^~1~^~PAK~^^^^^^^^^^~05/01/2011~
-~05082~^~318~^22.^0^^~1~^~PAK~^^^^^^^^^^~05/01/2011~
-~05082~^~319~^7.^0^^~1~^~PAK~^^^^^^^^^^~05/01/2011~
-~05082~^~320~^7.^0^^~1~^~PAK~^^^^^^^^^^~05/01/2011~
-~05082~^~321~^0.^0^^~4~^~PIK~^^^^^^^^^^~05/01/2011~
-~05082~^~322~^0.^0^^~4~^~PIK~^^^^^^^^^^~05/01/2011~
-~05082~^~324~^5.^0^^~4~^~PIK~^^^^^^^^^^~03/01/2009~
-~05082~^~334~^0.^0^^~4~^~PIK~^^^^^^^^^^~05/01/2011~
-~05082~^~337~^0.^0^^~4~^~PIK~^^^^^^^^^^~05/01/2011~
-~05082~^~338~^0.^0^^~4~^~PIK~^^^^^^^^^^~05/01/2011~
-~05082~^~417~^5.^0^^~4~^~PIK~^^^^^^^^^^~05/01/2011~
-~05082~^~431~^0.^0^^~4~^~PIK~^^^^^^^^^^~05/01/2011~
-~05082~^~432~^5.^0^^~4~^~PIK~^^^^^^^^^^~05/01/2011~
-~05082~^~435~^5.^0^^~4~^~NC~^^^^^^^^^^~05/01/2011~
-~05082~^~601~^128.^0^^~1~^~PAK~^^^^^^^^^^~05/01/2011~
-~05083~^~208~^185.^0^^~4~^~NC~^^^^^^^^^^~08/01/1979~
-~05083~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~11/01/2002~
-~05083~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~11/01/2002~
-~05083~^~268~^774.^0^^~4~^^^^^^^^^^^~03/01/2009~
-~05083~^~301~^11.^16^0.^~1~^^^^^^^^^^^~08/01/1979~
-~05083~^~304~^21.^16^0.^~1~^^^^^^^^^^^~08/01/1979~
-~05083~^~305~^149.^16^2.^~1~^^^^^^^^^^^~08/01/1979~
-~05083~^~306~^190.^16^6.^~1~^^^^^^^^^^^~08/01/1979~
-~05083~^~307~^78.^16^2.^~1~^^^^^^^^^^^~08/01/1979~
-~05083~^~318~^60.^0^^~1~^^^^^^^^^^^~08/01/1979~
-~05083~^~319~^18.^0^^~4~^~NR~^^^^^^^^^^~11/01/2002~
-~05083~^~320~^18.^0^^~4~^~NC~^^^^^^^^^^~03/01/2009~
-~05083~^~321~^0.^0^^~7~^~Z~^^^^^^^^^^~11/01/2002~
-~05083~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~11/01/2002~
-~05083~^~324~^5.^0^^~4~^~BFZN~^^^^^^^^^^~03/01/2009~
-~05083~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~11/01/2002~
-~05083~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~11/01/2002~
-~05083~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~11/01/2002~
-~05083~^~417~^8.^0^^~1~^^^^^^^^^^^~08/01/1979~
-~05083~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~
-~05083~^~432~^8.^0^^~1~^^^^^^^^^^^~03/01/2009~
-~05083~^~435~^8.^0^^~4~^~NC~^^^^^^^^^^~03/01/2009~
-~05083~^~601~^89.^0^^~1~^^^^^^^^^^^~04/01/2005~
-~05084~^~208~^297.^0^^~4~^~NC~^^^^^^^^^^~08/01/1979~
-~05084~^~268~^1243.^0^^~4~^^^^^^^^^^^
-~05084~^~301~^18.^8^0.^~1~^^^^^^^^^^^~08/01/1979~
-~05084~^~304~^13.^8^0.^~1~^^^^^^^^^^^~08/01/1979~
-~05084~^~305~^112.^8^1.^~1~^^^^^^^^^^^~08/01/1979~
-~05084~^~306~^137.^8^7.^~1~^^^^^^^^^^^~08/01/1979~
-~05084~^~307~^64.^8^1.^~1~^^^^^^^^^^^~08/01/1979~
-~05084~^~318~^216.^0^^~1~^^^^^^^^^^^~08/01/1979~
-~05084~^~319~^65.^0^^~1~^^^^^^^^^^^~06/01/2002~
-~05084~^~320~^65.^0^^~1~^^^^^^^^^^^~06/01/2002~
-~05084~^~417~^5.^0^^~1~^^^^^^^^^^^~08/01/1979~
-~05084~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~
-~05084~^~432~^5.^0^^~1~^^^^^^^^^^^~08/01/1979~
-~05084~^~435~^5.^0^^~4~^~NC~^^^^^^^^^^~10/01/2002~
-~05084~^~601~^99.^0^^~1~^^^^^^^^^^^~08/01/1979~
-~05085~^~208~^330.^0^^~4~^~NC~^^^^^^^^^^~08/01/1979~
-~05085~^~268~^1381.^0^^~4~^^^^^^^^^^^
-~05085~^~301~^31.^0^^~1~^^^^^^^^^^^~08/01/1979~
-~05085~^~304~^16.^0^^~1~^^^^^^^^^^^~08/01/1979~
-~05085~^~305~^115.^0^^~1~^^^^^^^^^^^~08/01/1979~
-~05085~^~306~^151.^0^^~1~^^^^^^^^^^^~08/01/1979~
-~05085~^~307~^276.^0^^~1~^^^^^^^^^^^~08/01/1979~
-~05085~^~318~^170.^0^^~1~^^^^^^^^^^^~08/01/1979~
-~05085~^~319~^51.^0^^~1~^^^^^^^^^^^~06/01/2002~
-~05085~^~320~^51.^0^^~1~^^^^^^^^^^^~06/01/2002~
-~05085~^~417~^15.^0^^~4~^~RA~^^^^^^^^^^~02/01/1998~
-~05085~^~431~^8.^0^^~4~^~NC~^^^^^^^^^^~05/01/2000~
-~05085~^~432~^7.^0^^~1~^^^^^^^^^^^~08/01/1979~
-~05085~^~435~^21.^0^^~4~^~NC~^^^^^^^^^^~01/01/2001~
-~05085~^~601~^91.^0^^~1~^^^^^^^^^^^~08/01/1979~
-~05086~^~208~^332.^0^^~4~^~NC~^^^^^^^^^^~08/01/1979~
-~05086~^~268~^1389.^0^^~4~^^^^^^^^^^^
-~05086~^~301~^31.^0^^~1~^^^^^^^^^^^~08/01/1979~
-~05086~^~304~^19.^0^^~1~^^^^^^^^^^^~08/01/1979~
-~05086~^~305~^132.^0^^~1~^^^^^^^^^^^~08/01/1979~
-~05086~^~306~^180.^0^^~1~^^^^^^^^^^^~08/01/1979~
-~05086~^~307~^82.^0^^~1~^^^^^^^^^^^~08/01/1979~
-~05086~^~318~^190.^0^^~1~^^^^^^^^^^^~08/01/1979~
-~05086~^~319~^57.^0^^~1~^^^^^^^^^^^~06/01/2002~
-~05086~^~320~^57.^0^^~1~^^^^^^^^^^^~06/01/2002~
-~05086~^~417~^11.^0^^~4~^~RA~^^^^^^^^^^~02/01/1998~
-~05086~^~431~^5.^0^^~4~^~NC~^^^^^^^^^^~05/01/2000~
-~05086~^~432~^6.^0^^~1~^^^^^^^^^^^~08/01/1979~
-~05086~^~435~^15.^0^^~4~^~NC~^^^^^^^^^^~01/01/2001~
-~05086~^~601~^94.^0^^~1~^^^^^^^^^^^~08/01/1979~
-~05087~^~208~^247.^0^^~4~^~NC~^^^^^^^^^^~08/01/1979~
-~05087~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~12/01/2002~
-~05087~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~12/01/2002~
-~05087~^~268~^1033.^0^^~4~^^^^^^^^^^^~03/01/2009~
-~05087~^~301~^27.^8^1.^~1~^^^^^^^^^^^~08/01/1979~
-~05087~^~304~^13.^8^0.^~1~^^^^^^^^^^^~08/01/1979~
-~05087~^~305~^122.^8^4.^~1~^^^^^^^^^^^~08/01/1979~
-~05087~^~306~^108.^8^4.^~1~^^^^^^^^^^^~08/01/1979~
-~05087~^~307~^52.^8^2.^~1~^^^^^^^^^^^~08/01/1979~
-~05087~^~318~^161.^0^^~1~^^^^^^^^^^^~08/01/2004~
-~05087~^~319~^48.^0^^~4~^~NR~^^^^^^^^^^~10/01/2004~
-~05087~^~320~^48.^0^^~4~^~NC~^^^^^^^^^^~03/01/2009~
-~05087~^~321~^0.^0^^~7~^~Z~^^^^^^^^^^~12/01/2002~
-~05087~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~12/01/2002~
-~05087~^~324~^6.^0^^~4~^~PIK~^^^^^^^^^^~03/01/2009~
-~05087~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~12/01/2002~
-~05087~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~12/01/2002~
-~05087~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~12/01/2002~
-~05087~^~417~^3.^0^^~1~^^^^^^^^^^^~08/01/1979~
-~05087~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~
-~05087~^~432~^3.^0^^~1~^^^^^^^^^^^~03/01/2009~
-~05087~^~435~^3.^0^^~4~^~NC~^^^^^^^^^^~03/01/2009~
-~05087~^~601~^70.^0^^~1~^^^^^^^^^^^~08/01/1979~
-~05088~^~208~^154.^0^^~4~^~NC~^^^^^^^^^^~08/01/1979~
-~05088~^~268~^644.^0^^~4~^^^^^^^^^^^
-~05088~^~301~^27.^8^1.^~1~^^^^^^^^^^^~08/01/1979~
-~05088~^~304~^17.^8^0.^~1~^^^^^^^^^^^~08/01/1979~
-~05088~^~305~^113.^8^2.^~1~^^^^^^^^^^^~08/01/1979~
-~05088~^~306~^175.^8^8.^~1~^^^^^^^^^^^~08/01/1979~
-~05088~^~307~^81.^8^1.^~1~^^^^^^^^^^^~08/01/1979~
-~05088~^~318~^146.^0^^~1~^^^^^^^^^^^~08/01/1979~
-~05088~^~319~^44.^0^^~1~^^^^^^^^^^^~06/01/2002~
-~05088~^~320~^44.^0^^~1~^^^^^^^^^^^~06/01/2002~
-~05088~^~417~^8.^0^^~1~^^^^^^^^^^^~08/01/1979~
-~05088~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~
-~05088~^~432~^8.^0^^~1~^^^^^^^^^^^~08/01/1979~
-~05088~^~435~^8.^0^^~4~^~NC~^^^^^^^^^^~09/01/2002~
-~05088~^~601~^83.^0^^~1~^^^^^^^^^^^~08/01/1979~
-~05089~^~208~^229.^0^^~4~^~NC~^^^^^^^^^^~08/01/1979~
-~05089~^~268~^958.^0^^~4~^^^^^^^^^^^
-~05089~^~301~^41.^0^^~1~^^^^^^^^^^^~08/01/1979~
-~05089~^~304~^20.^0^^~1~^^^^^^^^^^^~08/01/1979~
-~05089~^~305~^135.^0^^~1~^^^^^^^^^^^~08/01/1979~
-~05089~^~306~^213.^0^^~1~^^^^^^^^^^^~08/01/1979~
-~05089~^~307~^99.^0^^~1~^^^^^^^^^^^~08/01/1979~
-~05089~^~318~^162.^0^^~1~^^^^^^^^^^^~08/01/1979~
-~05089~^~319~^49.^0^^~1~^^^^^^^^^^^~06/01/2002~
-~05089~^~320~^49.^0^^~1~^^^^^^^^^^^~06/01/2002~
-~05089~^~417~^8.^0^^~1~^^^^^^^^^^^~08/01/1979~
-~05089~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~
-~05089~^~432~^8.^0^^~1~^^^^^^^^^^^~08/01/1979~
-~05089~^~435~^8.^0^^~4~^~NC~^^^^^^^^^^~01/01/2001~
-~05089~^~601~^105.^0^^~1~^^^^^^^^^^^~08/01/1979~
-~05090~^~208~^179.^0^^~4~^~NC~^^^^^^^^^^~08/01/1979~
-~05090~^~268~^749.^0^^~4~^^^^^^^^^^^~03/01/2009~
-~05090~^~301~^44.^8^2.^~1~^^^^^^^^^^^~08/01/1979~
-~05090~^~304~^16.^8^0.^~1~^^^^^^^^^^^~08/01/1979~
-~05090~^~305~^128.^8^6.^~1~^^^^^^^^^^^~08/01/1979~
-~05090~^~306~^140.^8^6.^~1~^^^^^^^^^^^~08/01/1979~
-~05090~^~307~^64.^8^1.^~1~^^^^^^^^^^^~08/01/1979~
-~05090~^~318~^121.^0^^~1~^^^^^^^^^^^~08/01/1979~
-~05090~^~319~^36.^0^^~4~^~NR~^^^^^^^^^^~05/01/2009~
-~05090~^~324~^5.^0^^~4~^~BFZN~^^^^^^^^^^~03/01/2009~
-~05090~^~417~^6.^0^^~1~^^^^^^^^^^^~08/01/1979~
-~05090~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~
-~05090~^~432~^6.^0^^~1~^^^^^^^^^^^~03/01/2009~
-~05090~^~435~^6.^0^^~4~^~NC~^^^^^^^^^^~05/01/2009~
-~05090~^~601~^79.^0^^~1~^^^^^^^^^^^~08/01/1979~
-~05091~^~208~^221.^0^^~4~^~NC~^^^^^^^^^^~02/01/2013~
-~05091~^~262~^0.^0^^~4~^~PIK~^^^^^^^^^^~05/01/2011~
-~05091~^~263~^0.^0^^~4~^~PIK~^^^^^^^^^^~05/01/2011~
-~05091~^~268~^926.^0^^~4~^~NC~^^^^^^^^^^~02/01/2013~
-~05091~^~301~^7.^0^^~1~^~PAK~^^^^^^^^^^~02/01/2013~
-~05091~^~304~^18.^0^^~1~^~PAK~^^^^^^^^^^~02/01/2013~
-~05091~^~305~^157.^0^^~1~^~PAK~^^^^^^^^^^~02/01/2013~
-~05091~^~306~^204.^0^^~1~^~PAK~^^^^^^^^^^~02/01/2013~
-~05091~^~307~^81.^0^^~1~^~PAK~^^^^^^^^^^~02/01/2013~
-~05091~^~318~^78.^0^^~1~^~AS~^^^^^^^^^^~05/01/2011~
-~05091~^~319~^23.^0^^~1~^~PAK~^^^^^^^^^^~05/01/2011~
-~05091~^~320~^23.^0^^~1~^~AS~^^^^^^^^^^~05/01/2011~
-~05091~^~321~^0.^0^^~1~^~PAK~^^^^^^^^^^~05/01/2011~
-~05091~^~322~^0.^0^^~1~^~PAK~^^^^^^^^^^~05/01/2011~
-~05091~^~324~^3.^0^^~1~^~PAK~^^^^^^^^^^~05/01/2011~
-~05091~^~334~^0.^0^^~1~^~PAK~^^^^^^^^^^~05/01/2011~
-~05091~^~337~^0.^0^^~1~^~PAK~^^^^^^^^^^~05/01/2011~
-~05091~^~338~^108.^0^^~1~^~PAK~^^^^^^^^^^~05/01/2011~
-~05091~^~417~^3.^0^^~4~^~PIK~^^^^^^^^^^~05/01/2011~
-~05091~^~431~^0.^0^^~4~^~PIK~^^^^^^^^^^~03/01/2003~
-~05091~^~432~^3.^0^^~4~^~PIK~^^^^^^^^^^~05/01/2011~
-~05091~^~435~^3.^0^^~4~^~NC~^^^^^^^^^^~05/01/2011~
-~05091~^~601~^98.^0^^~1~^~PAK~^^^^^^^^^^~05/01/2011~
-~05092~^~208~^277.^0^^~4~^~NC~^^^^^^^^^^~08/01/1979~
-~05092~^~268~^1159.^0^^~4~^^^^^^^^^^^
-~05092~^~301~^18.^0^^~1~^^^^^^^^^^^~08/01/1979~
-~05092~^~304~^21.^0^^~1~^^^^^^^^^^^~08/01/1979~
-~05092~^~305~^155.^0^^~1~^^^^^^^^^^^~08/01/1979~
-~05092~^~306~^192.^0^^~1~^^^^^^^^^^^~08/01/1979~
-~05092~^~307~^288.^0^^~1~^^^^^^^^^^^~08/01/1979~
-~05092~^~318~^95.^0^^~1~^^^^^^^^^^^~08/01/1979~
-~05092~^~319~^29.^0^^~1~^^^^^^^^^^^~06/01/2002~
-~05092~^~320~^29.^0^^~1~^^^^^^^^^^^~06/01/2002~
-~05092~^~417~^19.^0^^~4~^~RA~^^^^^^^^^^~10/01/1997~
-~05092~^~431~^10.^0^^~4~^~NC~^^^^^^^^^^~05/01/2000~
-~05092~^~432~^9.^0^^~1~^^^^^^^^^^^~08/01/1979~
-~05092~^~435~^26.^0^^~4~^~NC~^^^^^^^^^^~01/01/2001~
-~05092~^~601~^93.^0^^~1~^^^^^^^^^^^~08/01/1979~
-~05093~^~208~^262.^0^^~4~^~NC~^^^^^^^^^^~08/01/1979~
-~05093~^~268~^1096.^0^^~4~^^^^^^^^^^^
-~05093~^~301~^14.^0^^~1~^^^^^^^^^^^~08/01/1979~
-~05093~^~304~^25.^0^^~1~^^^^^^^^^^^~08/01/1979~
-~05093~^~305~^187.^0^^~1~^^^^^^^^^^^~08/01/1979~
-~05093~^~306~^237.^0^^~1~^^^^^^^^^^^~08/01/1979~
-~05093~^~307~^88.^0^^~1~^^^^^^^^^^^~08/01/1979~
-~05093~^~318~^98.^0^^~1~^^^^^^^^^^^~08/01/1979~
-~05093~^~319~^29.^0^^~1~^^^^^^^^^^^~06/01/2002~
-~05093~^~320~^29.^0^^~1~^^^^^^^^^^^~06/01/2002~
-~05093~^~417~^12.^0^^~4~^~RA~^^^^^^^^^^~10/01/1997~
-~05093~^~431~^4.^0^^~4~^~NC~^^^^^^^^^^~05/01/2000~
-~05093~^~432~^8.^0^^~1~^^^^^^^^^^^~08/01/1979~
-~05093~^~435~^15.^0^^~4~^~NC~^^^^^^^^^^~01/01/2001~
-~05093~^~601~^97.^0^^~1~^^^^^^^^^^^~08/01/1979~
-~05094~^~208~^232.^0^^~4~^~NC~^^^^^^^^^^~02/01/2013~
-~05094~^~262~^0.^0^^~4~^~PIK~^^^^^^^^^^~05/01/2011~
-~05094~^~263~^0.^0^^~4~^~PIK~^^^^^^^^^^~05/01/2011~
-~05094~^~268~^971.^0^^~4~^~NC~^^^^^^^^^^~02/01/2013~
-~05094~^~301~^9.^0^^~1~^~PAK~^^^^^^^^^^~02/01/2013~
-~05094~^~304~^22.^0^^~1~^~PAK~^^^^^^^^^^~08/01/1979~
-~05094~^~305~^216.^0^^~1~^~PAK~^^^^^^^^^^~02/01/2013~
-~05094~^~306~^253.^0^^~1~^~PAK~^^^^^^^^^^~02/01/2013~
-~05094~^~307~^102.^0^^~1~^~PAK~^^^^^^^^^^~02/01/2013~
-~05094~^~318~^55.^0^^~1~^~PAK~^^^^^^^^^^~05/01/2011~
-~05094~^~319~^16.^0^^~1~^~PAK~^^^^^^^^^^~05/01/2011~
-~05094~^~320~^16.^0^^~1~^~PAK~^^^^^^^^^^~05/01/2011~
-~05094~^~321~^0.^0^^~4~^~PIK~^^^^^^^^^^~05/01/2011~
-~05094~^~322~^0.^0^^~4~^~PIK~^^^^^^^^^^~05/01/2011~
-~05094~^~324~^7.^0^^~1~^~PAK~^^^^^^^^^^~05/01/2011~
-~05094~^~334~^0.^0^^~4~^~PIK~^^^^^^^^^^~05/01/2011~
-~05094~^~337~^0.^0^^~4~^~PIK~^^^^^^^^^^~05/01/2011~
-~05094~^~338~^17.^0^^~4~^~PIK~^^^^^^^^^^~05/01/2011~
-~05094~^~417~^4.^0^^~4~^~PIK~^^^^^^^^^^~05/01/2011~
-~05094~^~431~^0.^0^^~4~^~PIK~^^^^^^^^^^~05/01/2011~
-~05094~^~432~^4.^0^^~4~^~PIK~^^^^^^^^^^~05/01/2011~
-~05094~^~435~^4.^0^^~4~^~NC~^^^^^^^^^^~05/01/2011~
-~05094~^~601~^133.^0^^~1~^~PAK~^^^^^^^^^^~02/01/2013~
-~05095~^~208~^232.^0^^~4~^~NC~^^^^^^^^^^~08/01/1979~
-~05095~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~11/01/2002~
-~05095~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~11/01/2002~
-~05095~^~268~^971.^0^^~4~^^^^^^^^^^^~03/01/2009~
-~05095~^~301~^11.^16^0.^~1~^^^^^^^^^^^~08/01/1979~
-~05095~^~304~^19.^16^0.^~1~^^^^^^^^^^^~08/01/1979~
-~05095~^~305~^139.^16^2.^~1~^^^^^^^^^^^~08/01/1979~
-~05095~^~306~^170.^16^6.^~1~^^^^^^^^^^^~08/01/1979~
-~05095~^~307~^71.^16^2.^~1~^^^^^^^^^^^~08/01/1979~
-~05095~^~318~^151.^0^^~1~^^^^^^^^^^^~08/01/2004~
-~05095~^~319~^45.^0^^~4~^~NR~^^^^^^^^^^~10/01/2004~
-~05095~^~320~^45.^0^^~4~^~NC~^^^^^^^^^^~03/01/2009~
-~05095~^~321~^0.^0^^~7~^~Z~^^^^^^^^^^~11/01/2002~
-~05095~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~11/01/2002~
-~05095~^~324~^5.^0^^~4~^~PIK~^^^^^^^^^^~03/01/2009~
-~05095~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~11/01/2002~
-~05095~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~11/01/2002~
-~05095~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~11/01/2002~
-~05095~^~417~^6.^0^^~1~^^^^^^^^^^^~08/01/1979~
-~05095~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~
-~05095~^~432~^6.^0^^~1~^^^^^^^^^^^~03/01/2009~
-~05095~^~435~^6.^0^^~4~^~NC~^^^^^^^^^^~03/01/2009~
-~05095~^~601~^84.^0^^~1~^^^^^^^^^^^~08/01/1979~
-~05096~^~208~^121.^0^^~4~^~NC~^^^^^^^^^^~02/01/2013~
-~05096~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2002~
-~05096~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2002~
-~05096~^~268~^507.^0^^~4~^~NC~^^^^^^^^^^~02/01/2013~
-~05096~^~301~^7.^6^0.^~1~^~A~^^^2^5.^10.^3^6.^8.^~2, 3~^~02/01/2013~
-~05096~^~304~^23.^6^0.^~1~^~A~^^^2^20.^24.^2^20.^24.^~2, 3~^~04/01/2011~
-~05096~^~305~^185.^6^5.^~1~^~A~^^^2^169.^200.^3^166.^203.^~2, 3~^~02/01/2013~
-~05096~^~306~^242.^6^5.^~1~^~A~^^^2^226.^261.^3^225.^258.^~2, 3~^~02/01/2013~
-~05096~^~307~^95.^6^7.^~1~^~A~^^^2^82.^129.^1^29.^160.^~2, 3~^~02/01/2013~
-~05096~^~318~^24.^1^^~1~^~AS~^^^^^^^^^^~04/01/2011~
-~05096~^~319~^7.^1^^~1~^~A~^^^^^^^^^^~04/01/2011~
-~05096~^~320~^7.^1^^~1~^~AS~^^^^^^^^^^~04/01/2011~
-~05096~^~321~^0.^1^^~1~^~A~^^^^^^^^^~1~^~04/01/2011~
-~05096~^~322~^0.^1^^~1~^~A~^^^^^^^^^~1~^~04/01/2011~
-~05096~^~324~^1.^1^^~1~^~A~^^^^^^^^^~1~^~04/01/2011~
-~05096~^~334~^0.^1^^~1~^~A~^^^^^^^^^~1~^~04/01/2011~
-~05096~^~337~^0.^1^^~1~^~A~^^^^^^^^^~1~^~04/01/2011~
-~05096~^~338~^110.^1^^~1~^~A~^^^^^^^^^^~04/01/2011~
-~05096~^~417~^4.^0^^~4~^~BFPN~^~05062~^^^^^^^^^~04/01/2011~
-~05096~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~
-~05096~^~432~^4.^0^^~4~^~BFPN~^^^^^^^^^^~04/01/2011~
-~05096~^~435~^4.^0^^~4~^~NC~^^^^^^^^^^~04/01/2011~
-~05096~^~601~^94.^5^1.^~1~^~A~^^^2^92.^101.^3^88.^99.^~2, 3~^~02/01/2013~
-~05097~^~208~^218.^0^^~4~^~NC~^^^^^^^^^^~08/01/1979~
-~05097~^~268~^912.^0^^~4~^^^^^^^^^^^~04/01/2009~
-~05097~^~301~^13.^0^^~1~^^^^^^^^^^^~08/01/1979~
-~05097~^~304~^26.^0^^~1~^^^^^^^^^^^~08/01/1979~
-~05097~^~305~^199.^0^^~1~^^^^^^^^^^^~08/01/1979~
-~05097~^~306~^259.^0^^~1~^^^^^^^^^^^~08/01/1979~
-~05097~^~307~^95.^0^^~1~^^^^^^^^^^^~08/01/1979~
-~05097~^~318~^70.^0^^~1~^^^^^^^^^^^~08/01/1979~
-~05097~^~319~^21.^0^^~4~^~NR~^^^^^^^^^^~05/01/2009~
-~05097~^~324~^8.^2^^~1~^~A~^^^1^3.^14.^^^^^~04/01/2009~
-~05097~^~417~^9.^0^^~1~^^^^^^^^^^^~08/01/1979~
-~05097~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~
-~05097~^~432~^9.^0^^~1~^^^^^^^^^^^~04/01/2009~
-~05097~^~435~^9.^0^^~4~^~NC~^^^^^^^^^^~05/01/2009~
-~05097~^~601~^102.^0^^~1~^^^^^^^^^^^~08/01/1979~
-~05098~^~208~^179.^0^^~4~^~NC~^^^^^^^^^^~02/01/2013~
-~05098~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~09/01/2002~
-~05098~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~09/01/2002~
-~05098~^~268~^750.^0^^~4~^~NC~^^^^^^^^^^~02/01/2013~
-~05098~^~301~^9.^6^0.^~1~^~A~^^^2^8.^10.^3^8.^9.^~2, 3~^~02/01/2013~
-~05098~^~304~^24.^6^0.^~1~^~A~^^^2^22.^25.^2^20.^26.^~2, 3~^~08/01/1979~
-~05098~^~305~^230.^6^14.^~1~^~A~^^^2^210.^302.^1^53.^407.^~2, 3~^~02/01/2013~
-~05098~^~306~^269.^6^5.^~1~^~A~^^^2^237.^284.^2^240.^296.^~2, 3~^~02/01/2013~
-~05098~^~307~^106.^6^3.^~1~^~A~^^^2^80.^154.^2^91.^120.^~2, 3~^~02/01/2013~
-~05098~^~318~^27.^0^^~1~^~AS~^^^^^^^^^^~04/01/2011~
-~05098~^~319~^8.^1^^~1~^~A~^^^^^^^^^^~04/01/2011~
-~05098~^~320~^8.^0^^~1~^~AS~^^^^^^^^^^~04/01/2011~
-~05098~^~321~^0.^0^^~7~^~Z~^^^^^^^^^^~09/01/2002~
-~05098~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~09/01/2002~
-~05098~^~324~^7.^1^^~1~^~A~^^^^^^^^^^~04/01/2011~
-~05098~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~09/01/2002~
-~05098~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~09/01/2002~
-~05098~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~09/01/2002~
-~05098~^~417~^5.^0^^~4~^~BFPN~^~05062~^^^^^^^^^~04/01/2011~
-~05098~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~
-~05098~^~432~^5.^0^^~4~^~BFPN~^^^^^^^^^^~04/01/2011~
-~05098~^~435~^5.^0^^~4~^~NC~^^^^^^^^^^~04/01/2011~
-~05098~^~601~^133.^5^1.^~1~^~A~^^^2^126.^137.^3^129.^136.^~2, 3~^~02/01/2013~
-~05099~^~208~^195.^0^^~4~^~NC~^^^^^^^^^^~08/01/1979~
-~05099~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~11/01/2002~
-~05099~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~11/01/2002~
-~05099~^~268~^816.^0^^~4~^^^^^^^^^^^~03/01/2009~
-~05099~^~301~^11.^16^0.^~1~^^^^^^^^^^^~08/01/1979~
-~05099~^~304~^21.^16^0.^~1~^^^^^^^^^^^~08/01/1979~
-~05099~^~305~^149.^16^3.^~1~^^^^^^^^^^^~08/01/1979~
-~05099~^~306~^183.^16^6.^~1~^^^^^^^^^^^~08/01/1979~
-~05099~^~307~^75.^16^2.^~1~^^^^^^^^^^^~08/01/1979~
-~05099~^~318~^62.^0^^~1~^^^^^^^^^^^~08/01/2004~
-~05099~^~319~^19.^0^^~4~^~NR~^^^^^^^^^^~10/01/2004~
-~05099~^~320~^19.^0^^~4~^~NC~^^^^^^^^^^~03/01/2009~
-~05099~^~321~^0.^0^^~7~^~Z~^^^^^^^^^^~11/01/2002~
-~05099~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~11/01/2002~
-~05099~^~324~^5.^0^^~4~^~BFZN~^^^^^^^^^^~03/01/2009~
-~05099~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~11/01/2002~
-~05099~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~11/01/2002~
-~05099~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~11/01/2002~
-~05099~^~417~^7.^0^^~1~^^^^^^^^^^^~08/01/1979~
-~05099~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~
-~05099~^~432~^7.^0^^~1~^^^^^^^^^^^~03/01/2009~
-~05099~^~435~^7.^0^^~4~^~NC~^^^^^^^^^^~03/01/2009~
-~05099~^~601~^90.^0^^~1~^^^^^^^^^^^~08/01/1979~
-~05100~^~208~^191.^0^^~4~^~NC~^^^^^^^^^^~04/01/2013~
-~05100~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2002~
-~05100~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2002~
-~05100~^~268~^798.^0^^~4~^~NC~^^^^^^^^^^~04/01/2013~
-~05100~^~301~^11.^6^0.^~1~^~A~^^^1^10.^13.^5^9.^11.^~2, 3~^~04/01/2013~
-~05100~^~304~^16.^6^0.^~1~^~A~^^^1^15.^17.^5^15.^16.^~2, 3~^~04/01/2013~
-~05100~^~305~^123.^6^2.^~1~^~A~^^^1^114.^130.^5^117.^128.^~2, 3~^~04/01/2013~
-~05100~^~306~^187.^6^3.^~1~^~A~^^^1^178.^198.^5^179.^194.^~2, 3~^~04/01/2013~
-~05100~^~307~^84.^6^5.^~1~^~A~^^^1^74.^112.^5^69.^99.^~2, 3~^~04/01/2013~
-~05100~^~318~^29.^0^^~4~^~NC~^^^^^^^^^^~09/01/2015~
-~05100~^~319~^9.^0^^~4~^~BFSN~^~05071~^^^^^^^^^~04/01/2013~
-~05100~^~320~^9.^0^^~4~^~NC~^^^^^^^^^^~09/01/2015~
-~05100~^~321~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2002~
-~05100~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2002~
-~05100~^~324~^5.^0^^~4~^~BFFN~^~05071~^^^^^^^^^~04/01/2013~
-~05100~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2002~
-~05100~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2002~
-~05100~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2002~
-~05100~^~417~^7.^0^^~4~^~BFPN~^^^^^^^^^^~05/01/2013~
-~05100~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2009~
-~05100~^~432~^7.^0^^~4~^~BFPN~^^^^^^^^^^~05/01/2013~
-~05100~^~435~^7.^0^^~4~^~NC~^^^^^^^^^^~05/01/2013~
-~05100~^~601~^111.^3^2.^~1~^~A~^^^1^106.^114.^2^100.^121.^~2, 3~^~04/01/2013~
-~05101~^~208~^324.^0^^~4~^~NC~^^^^^^^^^^~08/01/1979~
-~05101~^~268~^1356.^0^^~4~^^^^^^^^^^^
-~05101~^~301~^20.^0^^~1~^^^^^^^^^^^~08/01/1979~
-~05101~^~304~^16.^0^^~1~^^^^^^^^^^^~08/01/1979~
-~05101~^~305~^121.^0^^~1~^^^^^^^^^^^~08/01/1979~
-~05101~^~306~^138.^0^^~1~^^^^^^^^^^^~08/01/1979~
-~05101~^~307~^320.^0^^~1~^^^^^^^^^^^~08/01/1979~
-~05101~^~318~^113.^0^^~1~^^^^^^^^^^^~08/01/1979~
-~05101~^~319~^34.^0^^~1~^^^^^^^^^^^~06/01/2002~
-~05101~^~320~^34.^0^^~1~^^^^^^^^^^^~06/01/2002~
-~05101~^~417~^18.^0^^~4~^~RA~^^^^^^^^^^~10/01/1997~
-~05101~^~431~^12.^0^^~4~^~NC~^^^^^^^^^^~05/01/2000~
-~05101~^~432~^6.^0^^~1~^^^^^^^^^^^~08/01/1979~
-~05101~^~435~^26.^0^^~4~^~NC~^^^^^^^^^^~01/01/2001~
-~05101~^~601~^79.^0^^~1~^^^^^^^^^^^~08/01/1979~
-~05102~^~208~^321.^0^^~4~^~NC~^^^^^^^^^^~08/01/1979~
-~05102~^~268~^1343.^0^^~4~^^^^^^^^^^^
-~05102~^~301~^15.^0^^~1~^^^^^^^^^^^~08/01/1979~
-~05102~^~304~^19.^0^^~1~^^^^^^^^^^^~08/01/1979~
-~05102~^~305~^150.^0^^~1~^^^^^^^^^^^~08/01/1979~
-~05102~^~306~^177.^0^^~1~^^^^^^^^^^^~08/01/1979~
-~05102~^~307~^77.^0^^~1~^^^^^^^^^^^~08/01/1979~
-~05102~^~318~^125.^0^^~1~^^^^^^^^^^^~08/01/1979~
-~05102~^~319~^38.^0^^~1~^^^^^^^^^^^~06/01/2002~
-~05102~^~320~^38.^0^^~1~^^^^^^^^^^^~06/01/2002~
-~05102~^~417~^6.^0^^~4~^~RA~^^^^^^^^^^~10/01/1997~
-~05102~^~431~^3.^0^^~4~^~NC~^^^^^^^^^^~05/01/2000~
-~05102~^~432~^3.^0^^~1~^^^^^^^^^^^~08/01/1979~
-~05102~^~435~^8.^0^^~4~^~NC~^^^^^^^^^^~01/01/2001~
-~05102~^~601~^81.^0^^~1~^^^^^^^^^^^~08/01/1979~
-~05103~^~208~^254.^0^^~4~^~NC~^^^^^^^^^^~04/01/2013~
-~05103~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~11/01/2002~
-~05103~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~11/01/2002~
-~05103~^~268~^1062.^0^^~4~^~NC~^^^^^^^^^^~04/01/2013~
-~05103~^~301~^18.^6^1.^~1~^~A~^^^1^15.^21.^5^15.^20.^~2, 3~^~04/01/2013~
-~05103~^~304~^19.^6^0.^~1~^~A~^^^1^18.^20.^5^18.^19.^~2, 3~^~08/01/1979~
-~05103~^~305~^147.^6^1.^~1~^~A~^^^1^142.^155.^5^142.^151.^~2, 3~^~04/01/2013~
-~05103~^~306~^212.^6^5.^~1~^~A~^^^1^202.^234.^5^198.^225.^~2, 3~^~04/01/2013~
-~05103~^~307~^98.^6^6.^~1~^~A~^^^1^84.^131.^5^79.^115.^~2, 3~^~04/01/2013~
-~05103~^~318~^39.^0^^~4~^~NC~^^^^^^^^^^~04/01/2013~
-~05103~^~319~^12.^0^^~4~^~BFSN~^~05071~^^^^^^^^^~04/01/2013~
-~05103~^~320~^12.^0^^~4~^~NC~^^^^^^^^^^~04/01/2013~
-~05103~^~321~^0.^0^^~7~^~Z~^^^^^^^^^^~11/01/2002~
-~05103~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~11/01/2002~
-~05103~^~324~^7.^0^^~4~^~BFFN~^~05071~^^^^^^^^^~04/01/2013~
-~05103~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~11/01/2002~
-~05103~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~11/01/2002~
-~05103~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~11/01/2002~
-~05103~^~417~^9.^0^^~4~^~BFPN~^^^^^^^^^^~05/01/2013~
-~05103~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~
-~05103~^~432~^9.^0^^~4~^~BFPN~^^^^^^^^^^~05/01/2013~
-~05103~^~435~^9.^0^^~4~^~NC~^^^^^^^^^^~05/01/2013~
-~05103~^~601~^141.^3^6.^~1~^~A~^^^1^129.^148.^2^115.^166.^~2, 3~^~04/01/2013~
-~05104~^~208~^249.^0^^~4~^~NC~^^^^^^^^^^~08/01/1979~
-~05104~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~11/01/2002~
-~05104~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~11/01/2002~
-~05104~^~268~^1042.^0^^~4~^^^^^^^^^^^~03/01/2009~
-~05104~^~301~^12.^16^0.^~1~^^^^^^^^^^^~08/01/1979~
-~05104~^~304~^16.^16^0.^~1~^^^^^^^^^^^~08/01/1979~
-~05104~^~305~^121.^16^2.^~1~^^^^^^^^^^^~08/01/1979~
-~05104~^~306~^139.^16^5.^~1~^^^^^^^^^^^~08/01/1979~
-~05104~^~307~^67.^16^2.^~1~^^^^^^^^^^^~08/01/1979~
-~05104~^~318~^133.^0^^~1~^^^^^^^^^^^~08/01/2004~
-~05104~^~319~^40.^0^^~4~^~NR~^^^^^^^^^^~11/01/2002~
-~05104~^~320~^40.^0^^~4~^~NC~^^^^^^^^^^~03/01/2009~
-~05104~^~321~^0.^0^^~7~^~Z~^^^^^^^^^^~11/01/2002~
-~05104~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~11/01/2002~
-~05104~^~324~^5.^0^^~4~^~PIK~^^^^^^^^^^~03/01/2009~
-~05104~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~11/01/2002~
-~05104~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~11/01/2002~
-~05104~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~11/01/2002~
-~05104~^~417~^3.^0^^~1~^^^^^^^^^^^~08/01/1979~
-~05104~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~
-~05104~^~432~^3.^0^^~1~^^^^^^^^^^^~03/01/2009~
-~05104~^~435~^3.^0^^~4~^~NC~^^^^^^^^^^~03/01/2009~
-~05104~^~601~^70.^0^^~1~^^^^^^^^^^^~04/01/2005~
-~05105~^~208~^126.^0^^~4~^~NC~^^^^^^^^^^~08/01/1979~
-~05105~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2002~
-~05105~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2002~
-~05105~^~268~^527.^0^^~4~^^^^^^^^^^^~03/01/2009~
-~05105~^~301~^13.^24^0.^~1~^^^^^^^^^^^~08/01/1979~
-~05105~^~304~^22.^24^0.^~1~^^^^^^^^^^^~08/01/1979~
-~05105~^~305~^155.^24^3.^~1~^^^^^^^^^^^~08/01/1979~
-~05105~^~306~^194.^24^4.^~1~^^^^^^^^^^^~08/01/1979~
-~05105~^~307~^81.^24^2.^~1~^^^^^^^^^^^~08/01/1979~
-~05105~^~318~^59.^0^^~1~^^^^^^^^^^^~08/01/1979~
-~05105~^~319~^18.^0^^~4~^~NR~^^^^^^^^^^~10/01/2002~
-~05105~^~320~^18.^0^^~4~^~NC~^^^^^^^^^^~03/01/2009~
-~05105~^~321~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2002~
-~05105~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2002~
-~05105~^~324~^5.^0^^~4~^~BFZN~^^^^^^^^^^~03/01/2009~
-~05105~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2002~
-~05105~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2002~
-~05105~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2002~
-~05105~^~417~^4.^0^^~1~^^^^^^^^^^^~08/01/1979~
-~05105~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~
-~05105~^~432~^4.^0^^~1~^^^^^^^^^^^~03/01/2009~
-~05105~^~435~^4.^0^^~4~^~NC~^^^^^^^^^^~03/01/2009~
-~05105~^~601~^57.^0^^~1~^^^^^^^^^^^~04/01/2005~
-~05106~^~208~^211.^0^^~4~^~NC~^^^^^^^^^^~08/01/1979~
-~05106~^~268~^883.^0^^~4~^^^^^^^^^^^~04/01/2009~
-~05106~^~301~^15.^0^^~1~^^^^^^^^^^^~08/01/1979~
-~05106~^~304~^21.^0^^~1~^^^^^^^^^^^~08/01/1979~
-~05106~^~305~^164.^0^^~1~^^^^^^^^^^^~08/01/1979~
-~05106~^~306~^208.^0^^~1~^^^^^^^^^^^~08/01/1979~
-~05106~^~307~^91.^0^^~1~^^^^^^^^^^^~08/01/1979~
-~05106~^~318~^61.^0^^~1~^^^^^^^^^^^~08/01/1979~
-~05106~^~319~^18.^0^^~4~^~NR~^^^^^^^^^^~05/01/2009~
-~05106~^~324~^3.^2^^~1~^~A~^^^1^3.^4.^^^^^~04/01/2009~
-~05106~^~417~^4.^0^^~1~^^^^^^^^^^^~08/01/1979~
-~05106~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~
-~05106~^~432~^4.^0^^~1~^^^^^^^^^^^~04/01/2009~
-~05106~^~435~^4.^0^^~4~^~NC~^^^^^^^^^^~05/01/2009~
-~05106~^~601~^84.^0^^~1~^^^^^^^^^^^~08/01/1979~
-~05107~^~208~^203.^0^^~4~^~NC~^^^^^^^^^^~08/01/1979~
-~05107~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~11/01/2002~
-~05107~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~11/01/2002~
-~05107~^~268~^849.^0^^~4~^^^^^^^^^^^~03/01/2009~
-~05107~^~301~^16.^16^0.^~1~^^^^^^^^^^^~08/01/1979~
-~05107~^~304~^21.^16^0.^~1~^^^^^^^^^^^~08/01/1979~
-~05107~^~305~^166.^16^4.^~1~^^^^^^^^^^^~08/01/1979~
-~05107~^~306~^210.^16^6.^~1~^^^^^^^^^^^~08/01/1979~
-~05107~^~307~^92.^16^2.^~1~^^^^^^^^^^^~08/01/1979~
-~05107~^~318~^61.^0^^~1~^^^^^^^^^^^~08/01/2004~
-~05107~^~319~^18.^0^^~4~^~NR~^^^^^^^^^^~10/01/2004~
-~05107~^~320~^18.^0^^~4~^~NC~^^^^^^^^^^~03/01/2009~
-~05107~^~321~^0.^0^^~7~^~Z~^^^^^^^^^^~11/01/2002~
-~05107~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~11/01/2002~
-~05107~^~324~^5.^0^^~4~^~BFZN~^^^^^^^^^^~03/01/2009~
-~05107~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~11/01/2002~
-~05107~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~11/01/2002~
-~05107~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~11/01/2002~
-~05107~^~417~^4.^0^^~1~^^^^^^^^^^^~08/01/1979~
-~05107~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~
-~05107~^~432~^4.^0^^~1~^^^^^^^^^^^~03/01/2009~
-~05107~^~435~^4.^0^^~4~^~NC~^^^^^^^^^^~03/01/2009~
-~05107~^~601~^85.^0^^~1~^^^^^^^^^^^~08/01/1979~
-~05108~^~208~^181.^0^^~4~^~NC~^^^^^^^^^^~04/01/2005~
-~05108~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~11/01/2002~
-~05108~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~11/01/2002~
-~05108~^~268~^757.^0^^~4~^^^^^^^^^^^~03/01/2009~
-~05108~^~301~^13.^16^0.^~1~^^^^^^^^^^^~08/01/1979~
-~05108~^~304~^18.^16^0.^~1~^^^^^^^^^^^~08/01/1979~
-~05108~^~305~^134.^16^4.^~1~^^^^^^^^^^^~08/01/1979~
-~05108~^~306~^153.^16^5.^~1~^^^^^^^^^^^~08/01/1979~
-~05108~^~307~^73.^16^2.^~1~^^^^^^^^^^^~08/01/1979~
-~05108~^~318~^54.^0^^~4~^~NC~^^^^^^^^^^~04/01/2016~
-~05108~^~319~^16.^0^^~4~^~NR~^^^^^^^^^^~10/01/2004~
-~05108~^~320~^16.^0^^~4~^~NC~^^^^^^^^^^~03/01/2009~
-~05108~^~321~^0.^0^^~7~^~Z~^^^^^^^^^^~11/01/2002~
-~05108~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~11/01/2002~
-~05108~^~324~^5.^0^^~4~^~BFZN~^^^^^^^^^^~03/01/2009~
-~05108~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~11/01/2002~
-~05108~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~11/01/2002~
-~05108~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~11/01/2002~
-~05108~^~417~^3.^0^^~1~^^^^^^^^^^^~08/01/1979~
-~05108~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~
-~05108~^~432~^3.^0^^~1~^^^^^^^^^^^~03/01/2009~
-~05108~^~435~^3.^0^^~4~^~NC~^^^^^^^^^^~03/01/2009~
-~05108~^~601~^74.^0^^~1~^^^^^^^^^^^~08/01/1979~
-~05109~^~208~^213.^0^^~4~^~NC~^^^^^^^^^^~08/01/1979~
-~05109~^~268~^891.^0^^~4~^^^^^^^^^^^
-~05109~^~301~^10.^0^^~1~^^^^^^^^^^^~08/01/1979~
-~05109~^~304~^19.^0^^~1~^^^^^^^^^^^~08/01/1979~
-~05109~^~305~^165.^0^^~1~^^^^^^^^^^^~08/01/1979~
-~05109~^~306~^196.^0^^~1~^^^^^^^^^^^~08/01/1979~
-~05109~^~307~^69.^0^^~1~^^^^^^^^^^^~08/01/1979~
-~05109~^~318~^843.^0^^~1~^^^^^^^^^^^~08/01/1979~
-~05109~^~319~^253.^0^^~1~^^^^^^^^^^^~06/01/2002~
-~05109~^~320~^253.^0^^~1~^^^^^^^^^^^~06/01/2002~
-~05109~^~417~^26.^0^^~1~^^^^^^^^^^^~08/01/1979~
-~05109~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~
-~05109~^~432~^26.^0^^~1~^^^^^^^^^^^~08/01/1979~
-~05109~^~435~^26.^0^^~4~^~NC~^^^^^^^^^^~01/01/2001~
-~05109~^~601~^86.^0^^~1~^^^^^^^^^^^~08/01/1979~
-~05110~^~208~^220.^0^^~4~^~NC~^^^^^^^^^^~08/01/1979~
-~05110~^~268~^920.^0^^~4~^^^^^^^^^^^
-~05110~^~301~^13.^0^^~1~^^^^^^^^^^^~08/01/1979~
-~05110~^~304~^20.^0^^~1~^^^^^^^^^^^~08/01/1979~
-~05110~^~305~^179.^0^^~1~^^^^^^^^^^^~08/01/1979~
-~05110~^~306~^204.^0^^~1~^^^^^^^^^^^~08/01/1979~
-~05110~^~307~^71.^0^^~1~^^^^^^^^^^^~08/01/1979~
-~05110~^~318~^597.^0^^~1~^^^^^^^^^^^~08/01/1979~
-~05110~^~319~^179.^0^^~1~^^^^^^^^^^^~06/01/2002~
-~05110~^~320~^179.^0^^~1~^^^^^^^^^^^~06/01/2002~
-~05110~^~417~^23.^0^^~1~^^^^^^^^^^^~08/01/1979~
-~05110~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~
-~05110~^~432~^23.^0^^~1~^^^^^^^^^^^~08/01/1979~
-~05110~^~435~^23.^0^^~4~^~NC~^^^^^^^^^^~01/01/2001~
-~05110~^~601~^94.^0^^~1~^^^^^^^^^^^~08/01/1979~
-~05111~^~208~^133.^0^^~4~^~NC~^^^^^^^^^^~04/01/2014~
-~05111~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2014~
-~05111~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2014~
-~05111~^~268~^558.^0^^~4~^~NC~^^^^^^^^^^~04/01/2014~
-~05111~^~301~^4.^3^0.^~1~^~A~^^^1^3.^4.^2^3.^3.^~4~^~04/01/2014~
-~05111~^~304~^29.^3^0.^~1~^~A~^^^1^28.^30.^2^26.^30.^~4~^~04/01/2014~
-~05111~^~305~^256.^3^1.^~1~^~A~^^^1^255.^258.^2^251.^260.^~4~^~04/01/2014~
-~05111~^~306~^336.^3^2.^~1~^~A~^^^1^330.^339.^2^323.^347.^~4~^~04/01/2014~
-~05111~^~307~^50.^3^0.^~1~^~A~^^^1^49.^52.^2^46.^53.^~4~^~04/01/2014~
-~05111~^~318~^38.^0^^~1~^~AS~^^^^^^^^^^~04/01/2014~
-~05111~^~319~^11.^1^^~1~^~A~^^^^^^^^^^~04/01/2014~
-~05111~^~320~^11.^0^^~1~^~AS~^^^^^^^^^^~04/01/2014~
-~05111~^~321~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2014~
-~05111~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2014~
-~05111~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2014~
-~05111~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2014~
-~05111~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2014~
-~05111~^~601~^80.^3^2.^~1~^~A~^^^1^75.^85.^2^68.^92.^~4~^~04/01/2014~
-~05112~^~208~^223.^0^^~4~^~NC~^^^^^^^^^^~08/01/1979~
-~05112~^~268~^933.^0^^~4~^^^^^^^^^^^~02/01/2006~
-~05112~^~301~^12.^0^^~1~^^^^^^^^^^^~08/01/1979~
-~05112~^~304~^20.^0^^~1~^^^^^^^^^^^~08/01/1979~
-~05112~^~305~^179.^0^^~1~^^^^^^^^^^^~08/01/1979~
-~05112~^~306~^211.^0^^~1~^^^^^^^^^^^~08/01/1979~
-~05112~^~307~^73.^0^^~1~^^^^^^^^^^^~08/01/1979~
-~05112~^~318~^83.^0^^~1~^^^^^^^^^^^~08/01/1979~
-~05112~^~417~^5.^0^^~1~^^^^^^^^^^^~08/01/1979~
-~05112~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~
-~05112~^~432~^5.^0^^~1~^^^^^^^^^^^~02/01/2006~
-~05112~^~435~^5.^0^^~4~^~NC~^^^^^^^^^^~02/01/2006~
-~05112~^~601~^76.^0^^~1~^^^^^^^^^^^~08/01/1979~
-~05113~^~208~^111.^0^^~4~^~NC~^^^^^^^^^^~08/01/1979~
-~05113~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~10/01/2002~
-~05113~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~10/01/2002~
-~05113~^~268~^464.^0^^~4~^^^^^^^^^^^
-~05113~^~301~^10.^0^^~1~^^^^^^^^^^^~08/01/1979~
-~05113~^~304~^23.^0^^~1~^^^^^^^^^^^~08/01/1979~
-~05113~^~305~^198.^0^^~1~^^^^^^^^^^^~08/01/1979~
-~05113~^~306~^238.^0^^~1~^^^^^^^^^^^~08/01/1979~
-~05113~^~307~^75.^0^^~1~^^^^^^^^^^^~08/01/1979~
-~05113~^~318~^45.^0^^~1~^^^^^^^^^^^~08/01/1979~
-~05113~^~319~^13.^0^^~4~^~NR~^^^^^^^^^^~10/01/2002~
-~05113~^~320~^13.^0^^~4~^~NC~^^^^^^^^^^~10/01/2002~
-~05113~^~321~^0.^0^^~7~^~Z~^^^^^^^^^^~10/01/2002~
-~05113~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~10/01/2002~
-~05113~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~10/01/2002~
-~05113~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~10/01/2002~
-~05113~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~10/01/2002~
-~05113~^~417~^7.^0^^~1~^^^^^^^^^^^~08/01/1979~
-~05113~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~
-~05113~^~432~^7.^0^^~1~^^^^^^^^^^^~10/01/2002~
-~05113~^~435~^7.^0^^~4~^~NC~^^^^^^^^^^~10/01/2002~
-~05113~^~601~^65.^0^^~1~^^^^^^^^^^^~08/01/1979~
-~05114~^~208~^167.^0^^~4~^~NC~^^^^^^^^^^~08/01/1979~
-~05114~^~268~^699.^0^^~4~^^^^^^^^^^^
-~05114~^~301~^12.^0^^~1~^^^^^^^^^^^~08/01/1979~
-~05114~^~304~^21.^0^^~1~^^^^^^^^^^^~08/01/1979~
-~05114~^~305~^192.^0^^~1~^^^^^^^^^^^~08/01/1979~
-~05114~^~306~^229.^0^^~1~^^^^^^^^^^^~08/01/1979~
-~05114~^~307~^75.^0^^~1~^^^^^^^^^^^~08/01/1979~
-~05114~^~318~^41.^0^^~1~^^^^^^^^^^^~08/01/1979~
-~05114~^~319~^12.^0^^~1~^^^^^^^^^^^~06/01/2002~
-~05114~^~320~^12.^0^^~1~^^^^^^^^^^^~06/01/2002~
-~05114~^~417~^5.^0^^~1~^^^^^^^^^^^~08/01/1979~
-~05114~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~
-~05114~^~432~^5.^0^^~1~^^^^^^^^^^^~08/01/1979~
-~05114~^~435~^5.^0^^~4~^~NC~^^^^^^^^^^~01/01/2001~
-~05114~^~601~^75.^0^^~1~^^^^^^^^^^^~08/01/1979~
-~05115~^~208~^127.^0^^~4~^~NC~^^^^^^^^^^~08/01/1979~
-~05115~^~268~^531.^0^^~4~^^^^^^^^^^^
-~05115~^~301~^10.^0^^~1~^^^^^^^^^^^~08/01/1979~
-~05115~^~304~^17.^0^^~1~^^^^^^^^^^^~08/01/1979~
-~05115~^~305~^184.^0^^~1~^^^^^^^^^^^~08/01/1979~
-~05115~^~306~^227.^0^^~1~^^^^^^^^^^^~08/01/1979~
-~05115~^~307~^77.^0^^~1~^^^^^^^^^^^~08/01/1979~
-~05115~^~318~^9592.^0^^~1~^^^^^^^^^^^~08/01/1979~
-~05115~^~319~^2880.^0^^~1~^^^^^^^^^^^~06/01/2002~
-~05115~^~320~^2880.^0^^~1~^^^^^^^^^^^~06/01/2002~
-~05115~^~417~^276.^0^^~1~^^^^^^^^^^^~08/01/1979~
-~05115~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~
-~05115~^~432~^276.^0^^~1~^^^^^^^^^^^~08/01/1979~
-~05115~^~435~^276.^0^^~4~^~NC~^^^^^^^^^^~01/01/2001~
-~05115~^~601~^236.^0^^~1~^^^^^^^^^^^~08/01/1979~
-~05116~^~208~^165.^0^^~4~^~NC~^^^^^^^^^^~08/01/1979~
-~05116~^~268~^690.^0^^~4~^^^^^^^^^^^
-~05116~^~301~^12.^0^^~1~^^^^^^^^^^^~08/01/1979~
-~05116~^~304~^20.^0^^~1~^^^^^^^^^^^~08/01/1979~
-~05116~^~305~^213.^0^^~1~^^^^^^^^^^^~08/01/1979~
-~05116~^~306~^160.^0^^~1~^^^^^^^^^^^~08/01/1979~
-~05116~^~307~^60.^0^^~1~^^^^^^^^^^^~08/01/1979~
-~05116~^~318~^8136.^0^^~1~^^^^^^^^^^^~08/01/1979~
-~05116~^~319~^2443.^0^^~1~^^^^^^^^^^^~06/01/2002~
-~05116~^~320~^2443.^0^^~1~^^^^^^^^^^^~06/01/2002~
-~05116~^~417~^303.^0^^~1~^^^^^^^^^^^~08/01/1979~
-~05116~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~
-~05116~^~432~^303.^0^^~1~^^^^^^^^^^^~08/01/1979~
-~05116~^~435~^303.^0^^~4~^~NC~^^^^^^^^^^~01/01/2001~
-~05116~^~601~^357.^0^^~1~^^^^^^^^^^^~08/01/1979~
-~05117~^~208~^109.^0^^~4~^~NC~^^^^^^^^^^~08/01/1979~
-~05117~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~10/01/2002~
-~05117~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~10/01/2002~
-~05117~^~268~^456.^0^^~4~^^^^^^^^^^^
-~05117~^~301~^11.^3^1.^~1~^^^^^^^^^^^~08/01/1979~
-~05117~^~304~^25.^2^^~1~^^^^^^^^^^^~08/01/1979~
-~05117~^~305~^223.^7^17.^~1~^^^^^^^^^^^~08/01/1979~
-~05117~^~306~^252.^2^^~1~^^^^^^^^^^^~08/01/1979~
-~05117~^~307~^51.^6^5.^~1~^^^^^^^^^^^~08/01/1979~
-~05117~^~318~^27.^0^^~1~^^^^^^^^^^^~08/01/1979~
-~05117~^~319~^8.^0^^~4~^~NR~^^^^^^^^^^~10/01/2002~
-~05117~^~320~^8.^0^^~1~^^^^^^^^^^^~10/01/2002~
-~05117~^~321~^0.^0^^~7~^~Z~^^^^^^^^^^~10/01/2002~
-~05117~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~10/01/2002~
-~05117~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~10/01/2002~
-~05117~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~10/01/2002~
-~05117~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~10/01/2002~
-~05117~^~417~^4.^0^^~1~^^^^^^^^^^^~08/01/1979~
-~05117~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~
-~05117~^~432~^4.^0^^~1~^^^^^^^^^^^~10/01/2002~
-~05117~^~435~^4.^0^^~4~^~NC~^^^^^^^^^^~10/01/2002~
-~05117~^~601~^57.^0^^~1~^^^^^^^^^^^~08/01/1979~
-~05118~^~208~^153.^0^^~4~^~NC~^^^^^^^^^^~08/01/1979~
-~05118~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~11/01/2002~
-~05118~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~11/01/2002~
-~05118~^~268~^640.^0^^~4~^^^^^^^^^^^~03/01/2009~
-~05118~^~301~^13.^0^^~1~^^^^^^^^^^^~08/01/1979~
-~05118~^~304~^23.^0^^~1~^^^^^^^^^^^~08/01/1979~
-~05118~^~305~^217.^0^^~1~^^^^^^^^^^^~08/01/1979~
-~05118~^~306~^236.^0^^~1~^^^^^^^^^^^~08/01/1979~
-~05118~^~307~^51.^0^^~1~^^^^^^^^^^^~08/01/1979~
-~05118~^~318~^25.^0^^~1~^^^^^^^^^^^~08/01/2004~
-~05118~^~319~^8.^0^^~4~^~NR~^^^^^^^^^^~10/01/2004~
-~05118~^~320~^8.^0^^~4~^~NC~^^^^^^^^^^~03/01/2009~
-~05118~^~321~^0.^0^^~7~^~Z~^^^^^^^^^^~11/01/2002~
-~05118~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~11/01/2002~
-~05118~^~324~^5.^0^^~4~^~BFZN~^^^^^^^^^^~03/01/2009~
-~05118~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~11/01/2002~
-~05118~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~11/01/2002~
-~05118~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~11/01/2002~
-~05118~^~417~^3.^0^^~1~^^^^^^^^^^^~08/01/1979~
-~05118~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~
-~05118~^~432~^3.^0^^~1~^^^^^^^^^^^~03/01/2009~
-~05118~^~435~^3.^0^^~4~^~NC~^^^^^^^^^^~03/01/2009~
-~05118~^~601~^75.^0^^~1~^^^^^^^^^^^~08/01/1979~
-~05119~^~208~^113.^0^^~4~^~NC~^^^^^^^^^^~08/01/1979~
-~05119~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~10/01/2002~
-~05119~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~10/01/2002~
-~05119~^~268~^473.^0^^~4~^^^^^^^^^^^
-~05119~^~301~^9.^3^1.^~1~^^^^^^^^^^^~08/01/1979~
-~05119~^~304~^21.^2^^~1~^^^^^^^^^^^~08/01/1979~
-~05119~^~305~^178.^3^29.^~1~^^^^^^^^^^^~08/01/1979~
-~05119~^~306~^227.^2^^~1~^^^^^^^^^^^~08/01/1979~
-~05119~^~307~^95.^2^^~1~^^^^^^^^^^^~08/01/1979~
-~05119~^~318~^60.^0^^~1~^^^^^^^^^^^~08/01/1979~
-~05119~^~319~^18.^0^^~4~^~NR~^^^^^^^^^^~10/01/2002~
-~05119~^~320~^18.^0^^~4~^~NC~^^^^^^^^^^~10/01/2002~
-~05119~^~321~^0.^0^^~7~^~Z~^^^^^^^^^^~10/01/2002~
-~05119~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~10/01/2002~
-~05119~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~10/01/2002~
-~05119~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~10/01/2002~
-~05119~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~10/01/2002~
-~05119~^~417~^9.^0^^~1~^^^^^^^^^^^~08/01/1979~
-~05119~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~
-~05119~^~432~^9.^0^^~1~^^^^^^^^^^^~10/01/2002~
-~05119~^~435~^9.^0^^~4~^~NC~^^^^^^^^^^~10/01/2002~
-~05119~^~601~^72.^0^^~1~^^^^^^^^^^^~08/01/1979~
-~05120~^~208~^178.^0^^~4~^~NC~^^^^^^^^^^~08/01/1979~
-~05120~^~268~^745.^0^^~4~^^^^^^^^^^^
-~05120~^~301~^11.^0^^~1~^^^^^^^^^^^~08/01/1979~
-~05120~^~304~^20.^0^^~1~^^^^^^^^^^^~08/01/1979~
-~05120~^~305~^171.^0^^~1~^^^^^^^^^^^~08/01/1979~
-~05120~^~306~^224.^0^^~1~^^^^^^^^^^^~08/01/1979~
-~05120~^~307~^95.^0^^~1~^^^^^^^^^^^~08/01/1979~
-~05120~^~318~^54.^0^^~1~^^^^^^^^^^^~08/01/1979~
-~05120~^~319~^16.^0^^~1~^^^^^^^^^^^~06/01/2002~
-~05120~^~320~^16.^0^^~1~^^^^^^^^^^^~06/01/2002~
-~05120~^~417~^7.^0^^~1~^^^^^^^^^^^~08/01/1979~
-~05120~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~
-~05120~^~432~^7.^0^^~1~^^^^^^^^^^^~08/01/1979~
-~05120~^~435~^7.^0^^~4~^~NC~^^^^^^^^^^~01/01/2001~
-~05120~^~601~^75.^0^^~1~^^^^^^^^^^^~08/01/1979~
-~05121~^~208~^251.^0^^~4~^~NC~^^^^^^^^^^~08/01/1979~
-~05121~^~268~^1050.^0^^~4~^^^^^^^^^^^
-~05121~^~301~^10.^0^^~1~^^^^^^^^^^^~08/01/1979~
-~05121~^~304~^20.^0^^~1~^^^^^^^^^^^~08/01/1979~
-~05121~^~305~^173.^0^^~1~^^^^^^^^^^^~08/01/1979~
-~05121~^~306~^204.^0^^~1~^^^^^^^^^^^~08/01/1979~
-~05121~^~307~^71.^0^^~1~^^^^^^^^^^^~08/01/1979~
-~05121~^~318~^1102.^0^^~1~^^^^^^^^^^^~08/01/1979~
-~05121~^~319~^331.^0^^~1~^^^^^^^^^^^~06/01/2002~
-~05121~^~320~^331.^0^^~1~^^^^^^^^^^^~06/01/2002~
-~05121~^~417~^37.^0^^~1~^^^^^^^^^^^~08/01/1979~
-~05121~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~
-~05121~^~432~^37.^0^^~1~^^^^^^^^^^^~08/01/1979~
-~05121~^~435~^37.^0^^~4~^~NC~^^^^^^^^^^~01/01/2001~
-~05121~^~601~^87.^0^^~1~^^^^^^^^^^^~08/01/1979~
-~05122~^~208~^214.^0^^~4~^~PIE~^^^^^^^^^^~03/01/2009~
-~05122~^~262~^0.^0^^~4~^~PIE~^^^^^^^^^^~03/01/2009~
-~05122~^~263~^0.^0^^~4~^~PIE~^^^^^^^^^^~03/01/2009~
-~05122~^~268~^894.^0^^~4~^~PIE~^^^^^^^^^^~03/01/2009~
-~05122~^~301~^13.^0^^~4~^~PIE~^^^^^^^^^^~04/01/2003~
-~05122~^~304~^19.^0^^~4~^~PIE~^^^^^^^^^^~04/01/2003~
-~05122~^~305~^151.^0^^~4~^~PIE~^^^^^^^^^^~04/01/2003~
-~05122~^~306~^171.^0^^~4~^~PIE~^^^^^^^^^^~04/01/2003~
-~05122~^~307~^67.^0^^~4~^~PIE~^^^^^^^^^^~04/01/2003~
-~05122~^~318~^609.^0^^~4~^~PIE~^^^^^^^^^^~03/01/2009~
-~05122~^~319~^182.^0^^~4~^~PIE~^^^^^^^^^^~03/01/2009~
-~05122~^~320~^182.^0^^~4~^~PIE~^^^^^^^^^^~03/01/2009~
-~05122~^~321~^1.^0^^~4~^~PIE~^^^^^^^^^^~09/01/2004~
-~05122~^~322~^0.^0^^~4~^~PIE~^^^^^^^^^^~09/01/2004~
-~05122~^~324~^1.^0^^~4~^~PIE~^^^^^^^^^^~03/01/2009~
-~05122~^~334~^0.^0^^~4~^~PIE~^^^^^^^^^^~09/01/2004~
-~05122~^~337~^1.^0^^~4~^~PIE~^^^^^^^^^^~09/01/2004~
-~05122~^~338~^3.^0^^~4~^~PIE~^^^^^^^^^^~09/01/2004~
-~05122~^~417~^25.^0^^~4~^~PIE~^^^^^^^^^^~04/01/2003~
-~05122~^~431~^0.^0^^~4~^~PIE~^^^^^^^^^^~04/01/2003~
-~05122~^~432~^25.^0^^~4~^~PIE~^^^^^^^^^^~04/01/2003~
-~05122~^~435~^25.^0^^~4~^~NC~^^^^^^^^^^~03/01/2009~
-~05122~^~601~^107.^0^^~4~^~PIE~^^^^^^^^^^~04/01/2003~
-~05123~^~208~^258.^0^^~4~^~NC~^^^^^^^^^^~08/01/1979~
-~05123~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~10/01/2002~
-~05123~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~10/01/2002~
-~05123~^~268~^1079.^0^^~4~^^^^^^^^^^^
-~05123~^~301~^10.^0^^~1~^^^^^^^^^^^~08/01/1979~
-~05123~^~304~^20.^0^^~1~^^^^^^^^^^^~08/01/1979~
-~05123~^~305~^172.^0^^~1~^^^^^^^^^^^~08/01/1979~
-~05123~^~306~^204.^0^^~1~^^^^^^^^^^^~08/01/1979~
-~05123~^~307~^71.^0^^~1~^^^^^^^^^^^~08/01/1979~
-~05123~^~318~^178.^0^^~1~^^^^^^^^^^^~08/01/1979~
-~05123~^~319~^52.^0^^~4~^~NR~^^^^^^^^^^~10/01/2002~
-~05123~^~320~^52.^0^^~4~^~NC~^^^^^^^^^^~10/01/2002~
-~05123~^~321~^0.^0^^~7~^~Z~^^^^^^^^^^~10/01/2002~
-~05123~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~10/01/2002~
-~05123~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~10/01/2002~
-~05123~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~10/01/2002~
-~05123~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~10/01/2002~
-~05123~^~417~^6.^0^^~1~^^^^^^^^^^^~08/01/1979~
-~05123~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~
-~05123~^~432~^6.^0^^~1~^^^^^^^^^^^~10/01/2002~
-~05123~^~435~^6.^0^^~4~^~NC~^^^^^^^^^^~10/01/2002~
-~05123~^~601~^71.^0^^~1~^^^^^^^^^^^~08/01/1979~
-~05124~^~208~^285.^0^^~4~^~NC~^^^^^^^^^^~08/01/1979~
-~05124~^~268~^1192.^0^^~4~^^^^^^^^^^^
-~05124~^~301~^13.^0^^~1~^^^^^^^^^^^~08/01/1979~
-~05124~^~304~^20.^0^^~1~^^^^^^^^^^^~08/01/1979~
-~05124~^~305~^180.^0^^~1~^^^^^^^^^^^~08/01/1979~
-~05124~^~306~^182.^0^^~1~^^^^^^^^^^^~08/01/1979~
-~05124~^~307~^73.^0^^~1~^^^^^^^^^^^~08/01/1979~
-~05124~^~318~^131.^0^^~1~^^^^^^^^^^^~08/01/1979~
-~05124~^~319~^39.^0^^~1~^^^^^^^^^^^~06/01/2002~
-~05124~^~320~^39.^0^^~1~^^^^^^^^^^^~06/01/2002~
-~05124~^~417~^5.^0^^~1~^^^^^^^^^^^~08/01/1979~
-~05124~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~
-~05124~^~432~^5.^0^^~1~^^^^^^^^^^^~08/01/1979~
-~05124~^~435~^5.^0^^~4~^~NC~^^^^^^^^^^~01/01/2001~
-~05124~^~601~^79.^0^^~1~^^^^^^^^^^^~08/01/1979~
-~05125~^~208~^148.^0^^~4~^~NC~^^^^^^^^^^~08/01/1979~
-~05125~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~07/01/2002~
-~05125~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~07/01/2002~
-~05125~^~268~^619.^0^^~4~^^^^^^^^^^^~08/01/2004~
-~05125~^~301~^10.^0^^~1~^^^^^^^^^^^~08/01/1979~
-~05125~^~304~^24.^0^^~1~^^^^^^^^^^^~08/01/1979~
-~05125~^~305~^209.^0^^~1~^^^^^^^^^^^~08/01/1979~
-~05125~^~306~^251.^0^^~1~^^^^^^^^^^^~08/01/1979~
-~05125~^~307~^79.^0^^~1~^^^^^^^^^^^~08/01/1979~
-~05125~^~318~^105.^0^^~1~^^^^^^^^^^^~08/01/2004~
-~05125~^~319~^32.^0^^~4~^~NR~^^^^^^^^^^~07/01/2002~
-~05125~^~320~^32.^0^^~1~^^^^^^^^^^^~08/01/2004~
-~05125~^~321~^0.^0^^~7~^~Z~^^^^^^^^^^~07/01/2002~
-~05125~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~07/01/2002~
-~05125~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~07/01/2002~
-~05125~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~07/01/2002~
-~05125~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~07/01/2002~
-~05125~^~417~^7.^0^^~1~^^^^^^^^^^^~08/01/1979~
-~05125~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~
-~05125~^~432~^7.^0^^~1~^^^^^^^^^^^~08/01/2004~
-~05125~^~435~^7.^0^^~4~^~NC~^^^^^^^^^^~08/01/2004~
-~05125~^~601~^63.^0^^~1~^^^^^^^^^^^~08/01/1979~
-~05126~^~208~^237.^0^^~4~^~NC~^^^^^^^^^^~08/01/1979~
-~05126~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~07/01/2002~
-~05126~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~07/01/2002~
-~05126~^~268~^992.^0^^~4~^^^^^^^^^^^
-~05126~^~301~^13.^0^^~1~^^^^^^^^^^^~08/01/1979~
-~05126~^~304~^22.^0^^~1~^^^^^^^^^^^~08/01/1979~
-~05126~^~305~^204.^0^^~1~^^^^^^^^^^^~08/01/1979~
-~05126~^~306~^202.^0^^~1~^^^^^^^^^^^~08/01/1979~
-~05126~^~307~^78.^0^^~1~^^^^^^^^^^^~08/01/1979~
-~05126~^~318~^112.^0^^~4~^~NC~^^^^^^^^^^~12/01/2002~
-~05126~^~319~^34.^0^^~4~^~NR~^^^^^^^^^^~07/01/2002~
-~05126~^~320~^34.^0^^~4~^~NC~^^^^^^^^^^~12/01/2002~
-~05126~^~321~^0.^0^^~7~^~Z~^^^^^^^^^^~07/01/2002~
-~05126~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~07/01/2002~
-~05126~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~07/01/2002~
-~05126~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~07/01/2002~
-~05126~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~07/01/2002~
-~05126~^~417~^6.^0^^~1~^^^^^^^^^^^~08/01/1979~
-~05126~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~
-~05126~^~432~^6.^0^^~1~^^^^^^^^^^^~12/01/2002~
-~05126~^~435~^6.^0^^~4~^~NC~^^^^^^^^^^~03/01/2003~
-~05126~^~601~^83.^0^^~1~^^^^^^^^^^^~08/01/1979~
-~05127~^~208~^168.^0^^~4~^~NC~^^^^^^^^^^~08/01/1979~
-~05127~^~268~^703.^0^^~4~^^^^^^^^^^^
-~05127~^~301~^10.^0^^~1~^^^^^^^^^^^~08/01/1979~
-~05127~^~304~^18.^0^^~1~^^^^^^^^^^^~08/01/1979~
-~05127~^~305~^198.^0^^~1~^^^^^^^^^^^~08/01/1979~
-~05127~^~306~^226.^0^^~1~^^^^^^^^^^^~08/01/1979~
-~05127~^~307~^77.^0^^~1~^^^^^^^^^^^~08/01/1979~
-~05127~^~318~^10497.^0^^~1~^^^^^^^^^^^~08/01/1979~
-~05127~^~319~^3152.^0^^~1~^^^^^^^^^^^~06/01/2002~
-~05127~^~320~^3152.^0^^~1~^^^^^^^^^^^~06/01/2002~
-~05127~^~417~^350.^0^^~1~^^^^^^^^^^^~08/01/1979~
-~05127~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~
-~05127~^~432~^350.^0^^~1~^^^^^^^^^^^~08/01/1979~
-~05127~^~435~^350.^0^^~4~^~NC~^^^^^^^^^^~01/01/2001~
-~05127~^~601~^240.^0^^~1~^^^^^^^^^^^~08/01/1979~
-~05128~^~208~^194.^0^^~4~^~NC~^^^^^^^^^^~08/01/1979~
-~05128~^~268~^812.^0^^~4~^^^^^^^^^^^
-~05128~^~301~^13.^0^^~1~^^^^^^^^^^^~08/01/1979~
-~05128~^~304~^20.^0^^~1~^^^^^^^^^^^~08/01/1979~
-~05128~^~305~^223.^0^^~1~^^^^^^^^^^^~08/01/1979~
-~05128~^~306~^154.^0^^~1~^^^^^^^^^^^~08/01/1979~
-~05128~^~307~^56.^0^^~1~^^^^^^^^^^^~08/01/1979~
-~05128~^~318~^9536.^0^^~1~^^^^^^^^^^^~08/01/1979~
-~05128~^~319~^2864.^0^^~1~^^^^^^^^^^^~06/01/2002~
-~05128~^~320~^2864.^0^^~1~^^^^^^^^^^^~06/01/2002~
-~05128~^~417~^367.^0^^~1~^^^^^^^^^^^~08/01/1979~
-~05128~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~
-~05128~^~432~^367.^0^^~1~^^^^^^^^^^^~08/01/1979~
-~05128~^~435~^367.^0^^~4~^~NC~^^^^^^^^^^~01/01/2001~
-~05128~^~601~^355.^0^^~1~^^^^^^^^^^^~08/01/1979~
-~05129~^~208~^137.^0^^~4~^~NC~^^^^^^^^^^~08/01/1979~
-~05129~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~10/01/2002~
-~05129~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~10/01/2002~
-~05129~^~268~^573.^0^^~4~^^^^^^^^^^^
-~05129~^~301~^11.^0^^~1~^^^^^^^^^^^~08/01/1979~
-~05129~^~304~^26.^0^^~1~^^^^^^^^^^^~08/01/1979~
-~05129~^~305~^231.^0^^~1~^^^^^^^^^^^~08/01/1979~
-~05129~^~306~^261.^0^^~1~^^^^^^^^^^^~08/01/1979~
-~05129~^~307~^53.^0^^~1~^^^^^^^^^^^~08/01/1979~
-~05129~^~318~^70.^0^^~1~^^^^^^^^^^^~08/01/1979~
-~05129~^~319~^21.^0^^~4~^~NR~^^^^^^^^^^~10/01/2002~
-~05129~^~320~^21.^0^^~4~^~NC~^^^^^^^^^^~04/01/2003~
-~05129~^~321~^0.^0^^~7~^~Z~^^^^^^^^^^~10/01/2002~
-~05129~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~10/01/2002~
-~05129~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~10/01/2002~
-~05129~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~10/01/2002~
-~05129~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~10/01/2002~
-~05129~^~417~^4.^0^^~1~^^^^^^^^^^^~08/01/1979~
-~05129~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~
-~05129~^~432~^4.^0^^~1~^^^^^^^^^^^~04/01/2003~
-~05129~^~435~^4.^0^^~4~^~NC~^^^^^^^^^^~04/01/2003~
-~05129~^~601~^47.^24^1.^~1~^^^^^^^^^^^~08/01/1979~
-~05130~^~208~^213.^0^^~4~^~NC~^^^^^^^^^^~08/01/1979~
-~05130~^~268~^891.^0^^~4~^^^^^^^^^^^
-~05130~^~301~^14.^0^^~1~^^^^^^^^^^^~08/01/1979~
-~05130~^~304~^23.^0^^~1~^^^^^^^^^^^~08/01/1979~
-~05130~^~305~^225.^0^^~1~^^^^^^^^^^^~08/01/1979~
-~05130~^~306~^199.^0^^~1~^^^^^^^^^^^~08/01/1979~
-~05130~^~307~^58.^0^^~1~^^^^^^^^^^^~08/01/1979~
-~05130~^~318~^73.^0^^~1~^^^^^^^^^^^~08/01/1979~
-~05130~^~319~^22.^0^^~1~^^^^^^^^^^^~06/01/2002~
-~05130~^~320~^22.^0^^~1~^^^^^^^^^^^~06/01/2002~
-~05130~^~417~^4.^0^^~1~^^^^^^^^^^^~08/01/1979~
-~05130~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~
-~05130~^~432~^4.^0^^~1~^^^^^^^^^^^~08/01/1979~
-~05130~^~435~^4.^0^^~4~^~NC~^^^^^^^^^^~07/01/2002~
-~05130~^~601~^70.^0^^~1~^^^^^^^^^^^~08/01/1979~
-~05131~^~208~^157.^0^^~4~^~NC~^^^^^^^^^^~08/01/1979~
-~05131~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~10/01/2002~
-~05131~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~10/01/2002~
-~05131~^~268~^657.^0^^~4~^^^^^^^^^^^
-~05131~^~301~^10.^0^^~1~^^^^^^^^^^^~08/01/1979~
-~05131~^~304~^23.^0^^~1~^^^^^^^^^^^~08/01/1979~
-~05131~^~305~^190.^0^^~1~^^^^^^^^^^^~08/01/1979~
-~05131~^~306~^242.^0^^~1~^^^^^^^^^^^~08/01/1979~
-~05131~^~307~^101.^0^^~1~^^^^^^^^^^^~08/01/1979~
-~05131~^~318~^135.^0^^~1~^^^^^^^^^^^~08/01/1979~
-~05131~^~319~^41.^0^^~4~^~NR~^^^^^^^^^^~10/01/2002~
-~05131~^~320~^41.^0^^~1~^^^^^^^^^^^~04/01/2003~
-~05131~^~321~^0.^0^^~7~^~Z~^^^^^^^^^^~10/01/2002~
-~05131~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~10/01/2002~
-~05131~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~10/01/2002~
-~05131~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~10/01/2002~
-~05131~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~10/01/2002~
-~05131~^~417~^10.^0^^~1~^^^^^^^^^^^~08/01/1979~
-~05131~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~
-~05131~^~432~^10.^0^^~1~^^^^^^^^^^^~04/01/2003~
-~05131~^~435~^10.^0^^~4~^~NC~^^^^^^^^^^~04/01/2003~
-~05131~^~601~^77.^4^3.^~1~^^^^^^^^^^^~08/01/1979~
-~05132~^~208~^258.^0^^~4~^~NC~^^^^^^^^^^~08/01/1979~
-~05132~^~268~^1079.^0^^~4~^^^^^^^^^^^
-~05132~^~301~^12.^0^^~1~^^^^^^^^^^^~08/01/1979~
-~05132~^~304~^22.^0^^~1~^^^^^^^^^^^~08/01/1979~
-~05132~^~305~^187.^0^^~1~^^^^^^^^^^^~08/01/1979~
-~05132~^~306~^204.^0^^~1~^^^^^^^^^^^~08/01/1979~
-~05132~^~307~^95.^0^^~1~^^^^^^^^^^^~08/01/1979~
-~05132~^~318~^145.^0^^~1~^^^^^^^^^^^~08/01/1979~
-~05132~^~319~^44.^0^^~1~^^^^^^^^^^^~06/01/2002~
-~05132~^~320~^44.^0^^~1~^^^^^^^^^^^~06/01/2002~
-~05132~^~417~^8.^0^^~1~^^^^^^^^^^^~08/01/1979~
-~05132~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~
-~05132~^~432~^8.^0^^~1~^^^^^^^^^^^~08/01/1979~
-~05132~^~435~^8.^0^^~4~^~NC~^^^^^^^^^^~07/01/2002~
-~05132~^~601~^95.^0^^~1~^^^^^^^^^^^~08/01/1979~
-~05133~^~208~^232.^0^^~4~^~NC~^^^^^^^^^^~08/01/1979~
-~05133~^~268~^971.^0^^~4~^^^^^^^^^^^
-~05133~^~301~^11.^0^^~1~^^^^^^^^^^^~08/01/1979~
-~05133~^~304~^21.^0^^~1~^^^^^^^^^^^~08/01/1979~
-~05133~^~305~^181.^0^^~1~^^^^^^^^^^^~08/01/1979~
-~05133~^~306~^213.^0^^~1~^^^^^^^^^^^~08/01/1979~
-~05133~^~307~^47.^0^^~1~^^^^^^^^^^^~08/01/1979~
-~05133~^~318~^905.^0^^~1~^^^^^^^^^^^~08/01/1979~
-~05133~^~319~^272.^0^^~1~^^^^^^^^^^^~06/01/2002~
-~05133~^~320~^272.^0^^~1~^^^^^^^^^^^~06/01/2002~
-~05133~^~417~^27.^0^^~1~^^^^^^^^^^^~08/01/1979~
-~05133~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~
-~05133~^~432~^27.^0^^~1~^^^^^^^^^^^~08/01/1979~
-~05133~^~435~^27.^0^^~4~^~NC~^^^^^^^^^^~01/01/2001~
-~05133~^~601~^87.^0^^~1~^^^^^^^^^^^~08/01/1979~
-~05134~^~208~^226.^0^^~4~^~NC~^^^^^^^^^^~08/01/1979~
-~05134~^~268~^946.^0^^~4~^^^^^^^^^^^
-~05134~^~301~^15.^0^^~1~^^^^^^^^^^^~08/01/1979~
-~05134~^~304~^23.^0^^~1~^^^^^^^^^^^~08/01/1979~
-~05134~^~305~^239.^0^^~1~^^^^^^^^^^^~08/01/1979~
-~05134~^~306~^243.^0^^~1~^^^^^^^^^^^~08/01/1979~
-~05134~^~307~^50.^0^^~1~^^^^^^^^^^^~08/01/1979~
-~05134~^~318~^734.^0^^~1~^^^^^^^^^^^~08/01/1979~
-~05134~^~319~^220.^0^^~1~^^^^^^^^^^^~06/01/2002~
-~05134~^~320~^220.^0^^~1~^^^^^^^^^^^~06/01/2002~
-~05134~^~417~^26.^0^^~1~^^^^^^^^^^^~08/01/1979~
-~05134~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~
-~05134~^~432~^26.^0^^~1~^^^^^^^^^^^~08/01/1979~
-~05134~^~435~^26.^0^^~4~^~NC~^^^^^^^^^^~01/01/2001~
-~05134~^~601~^103.^0^^~1~^^^^^^^^^^^~08/01/1979~
-~05135~^~208~^234.^0^^~4~^~NC~^^^^^^^^^^~08/01/1979~
-~05135~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~10/01/2002~
-~05135~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~10/01/2002~
-~05135~^~268~^979.^0^^~4~^^^^^^^^^^^
-~05135~^~301~^11.^0^^~1~^^^^^^^^^^^~08/01/1979~
-~05135~^~304~^21.^0^^~1~^^^^^^^^^^^~08/01/1979~
-~05135~^~305~^183.^0^^~1~^^^^^^^^^^^~08/01/1979~
-~05135~^~306~^217.^0^^~1~^^^^^^^^^^^~08/01/1979~
-~05135~^~307~^45.^0^^~1~^^^^^^^^^^^~08/01/1979~
-~05135~^~318~^129.^0^^~1~^^^^^^^^^^^~08/01/1979~
-~05135~^~319~^37.^0^^~4~^~NR~^^^^^^^^^^~10/01/2002~
-~05135~^~320~^37.^0^^~4~^~NC~^^^^^^^^^^~04/01/2003~
-~05135~^~321~^0.^0^^~7~^~Z~^^^^^^^^^^~10/01/2002~
-~05135~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~10/01/2002~
-~05135~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~10/01/2002~
-~05135~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~10/01/2002~
-~05135~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~10/01/2002~
-~05135~^~417~^6.^0^^~1~^^^^^^^^^^^~08/01/1979~
-~05135~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~
-~05135~^~432~^6.^0^^~1~^^^^^^^^^^^~04/01/2003~
-~05135~^~435~^6.^0^^~4~^~NC~^^^^^^^^^^~04/01/2003~
-~05135~^~601~^75.^0^^~1~^^^^^^^^^^^~08/01/1979~
-~05136~^~208~^229.^0^^~4~^~NC~^^^^^^^^^^~08/01/1979~
-~05136~^~268~^958.^0^^~4~^^^^^^^^^^^~02/01/2006~
-~05136~^~301~^14.^0^^~1~^^^^^^^^^^^~08/01/1979~
-~05136~^~304~^24.^0^^~1~^^^^^^^^^^^~08/01/1979~
-~05136~^~305~^246.^0^^~1~^^^^^^^^^^^~08/01/1979~
-~05136~^~306~^255.^0^^~1~^^^^^^^^^^^~08/01/1979~
-~05136~^~307~^49.^0^^~1~^^^^^^^^^^^~08/01/1979~
-~05136~^~318~^68.^0^^~1~^^^^^^^^^^^~08/01/1979~
-~05136~^~417~^6.^0^^~1~^^^^^^^^^^^~08/01/1979~
-~05136~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~
-~05136~^~432~^6.^0^^~1~^^^^^^^^^^^~02/01/2006~
-~05136~^~435~^6.^0^^~4~^~NC~^^^^^^^^^^~02/01/2006~
-~05136~^~601~^86.^0^^~1~^^^^^^^^^^^~08/01/1979~
-~05137~^~208~^130.^0^^~4~^~NC~^^^^^^^^^^~08/01/1979~
-~05137~^~268~^544.^0^^~4~^^^^^^^^^^^
-~05137~^~301~^10.^0^^~1~^^^^^^^^^^^~08/01/1979~
-~05137~^~304~^18.^0^^~1~^^^^^^^^^^^~08/01/1979~
-~05137~^~305~^207.^0^^~1~^^^^^^^^^^^~08/01/1979~
-~05137~^~306~^226.^0^^~1~^^^^^^^^^^^~08/01/1979~
-~05137~^~307~^77.^0^^~1~^^^^^^^^^^^~08/01/1979~
-~05137~^~318~^14566.^0^^~1~^^^^^^^^^^^~08/01/1979~
-~05137~^~319~^4374.^0^^~1~^^^^^^^^^^^~06/01/2002~
-~05137~^~320~^4374.^0^^~1~^^^^^^^^^^^~06/01/2002~
-~05137~^~417~^394.^0^^~1~^^^^^^^^^^^~08/01/1979~
-~05137~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~
-~05137~^~432~^394.^0^^~1~^^^^^^^^^^^~08/01/1979~
-~05137~^~435~^394.^0^^~4~^~NC~^^^^^^^^^^~01/01/2001~
-~05137~^~601~^292.^0^^~1~^^^^^^^^^^^~08/01/1979~
-~05138~^~208~^164.^0^^~4~^~NC~^^^^^^^^^^~08/01/1979~
-~05138~^~268~^686.^0^^~4~^^^^^^^^^^^
-~05138~^~301~^13.^0^^~1~^^^^^^^^^^^~08/01/1979~
-~05138~^~304~^20.^0^^~1~^^^^^^^^^^^~08/01/1979~
-~05138~^~305~^235.^0^^~1~^^^^^^^^^^^~08/01/1979~
-~05138~^~306~^153.^0^^~1~^^^^^^^^^^^~08/01/1979~
-~05138~^~307~^55.^0^^~1~^^^^^^^^^^^~08/01/1979~
-~05138~^~318~^13266.^0^^~1~^^^^^^^^^^^~08/01/1979~
-~05138~^~319~^3984.^0^^~1~^^^^^^^^^^^~06/01/2002~
-~05138~^~320~^3984.^0^^~1~^^^^^^^^^^^~06/01/2002~
-~05138~^~417~^414.^0^^~1~^^^^^^^^^^^~08/01/1979~
-~05138~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~
-~05138~^~432~^414.^0^^~1~^^^^^^^^^^^~08/01/1979~
-~05138~^~435~^414.^0^^~4~^~NC~^^^^^^^^^^~01/01/2001~
-~05138~^~601~^434.^0^^~1~^^^^^^^^^^^~08/01/1979~
-~05139~^~208~^404.^0^^~4~^~NC~^^^^^^^^^^~08/01/1979~
-~05139~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~11/01/2002~
-~05139~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~11/01/2002~
-~05139~^~268~^1690.^0^^~4~^^^^^^^^^^^~08/01/2009~
-~05139~^~301~^11.^0^^~1~^^^^^^^^^^^~08/01/1979~
-~05139~^~304~^15.^0^^~1~^^^^^^^^^^^~08/01/1979~
-~05139~^~305~^139.^0^^~1~^^^^^^^^^^^~08/01/1979~
-~05139~^~306~^209.^0^^~1~^^^^^^^^^^^~08/01/1979~
-~05139~^~307~^63.^0^^~1~^^^^^^^^^^^~08/01/1979~
-~05139~^~318~^168.^20^5.^~1~^^^^^^^^^^^~01/01/2004~
-~05139~^~319~^50.^0^^~4~^~NR~^^^^^^^^^^~01/01/2004~
-~05139~^~320~^50.^0^^~4~^~NC~^^^^^^^^^^~08/01/2009~
-~05139~^~321~^0.^0^^~7~^~Z~^^^^^^^^^^~11/01/2002~
-~05139~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~11/01/2002~
-~05139~^~324~^26.^0^^~4~^~BFFN~^~05006~^^^^^^^^^~08/01/2009~
-~05139~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~11/01/2002~
-~05139~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~11/01/2002~
-~05139~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~11/01/2002~
-~05139~^~417~^13.^0^^~1~^^^^^^^^^^^~08/01/1979~
-~05139~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~
-~05139~^~432~^13.^0^^~1~^^^^^^^^^^^~08/01/2009~
-~05139~^~435~^13.^0^^~4~^~NC~^^^^^^^^^^~08/01/2009~
-~05139~^~601~^76.^0^^~1~^^^^^^^^^^^~08/01/1979~
-~05140~^~208~^337.^0^^~4~^~NC~^^^^^^^^^^~08/01/1979~
-~05140~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~11/01/2002~
-~05140~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~11/01/2002~
-~05140~^~268~^1410.^0^^~4~^^^^^^^^^^^~03/01/2009~
-~05140~^~301~^11.^0^^~1~^^^^^^^^^^^~08/01/1979~
-~05140~^~304~^16.^0^^~1~^^^^^^^^^^^~08/01/1979~
-~05140~^~305~^156.^0^^~1~^^^^^^^^^^^~08/01/1979~
-~05140~^~306~^204.^0^^~1~^^^^^^^^^^^~08/01/1979~
-~05140~^~307~^59.^0^^~1~^^^^^^^^^^^~08/01/1979~
-~05140~^~318~^210.^0^^~1~^^^^^^^^^^^~01/01/2003~
-~05140~^~319~^63.^0^^~4~^~NR~^^^^^^^^^^~11/01/2002~
-~05140~^~320~^63.^0^^~4~^~NC~^^^^^^^^^^~03/01/2009~
-~05140~^~321~^0.^0^^~7~^~Z~^^^^^^^^^^~11/01/2002~
-~05140~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~11/01/2002~
-~05140~^~324~^3.^0^^~4~^~BFFN~^~05009~^^^^^^^^^~03/01/2009~
-~05140~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~11/01/2002~
-~05140~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~11/01/2002~
-~05140~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~11/01/2002~
-~05140~^~417~^6.^0^^~1~^^^^^^^^^^^~08/01/1979~
-~05140~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~
-~05140~^~432~^6.^0^^~1~^^^^^^^^^^^~03/01/2009~
-~05140~^~435~^6.^0^^~4~^~NC~^^^^^^^^^^~03/01/2009~
-~05140~^~601~^84.^0^^~1~^^^^^^^^^^^~08/01/1979~
-~05141~^~208~^135.^0^^~4~^~NC~^^^^^^^^^^~03/01/2009~
-~05141~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~11/01/2002~
-~05141~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~11/01/2002~
-~05141~^~268~^566.^0^^~4~^~NC~^^^^^^^^^^~03/01/2009~
-~05141~^~301~^11.^2^^~1~^^^^^^^^^^^~08/01/1979~
-~05141~^~304~^19.^1^^~1~^^^^^^^^^^^~08/01/1979~
-~05141~^~305~^203.^2^^~1~^^^^^^^^^^^~08/01/1979~
-~05141~^~306~^271.^3^^~1~^^^^^^^^^^^~08/01/1979~
-~05141~^~307~^74.^5^7.^~1~^^^^^^^^^^^~08/01/1979~
-~05141~^~318~^79.^0^^~1~^^^^^^^^^^^~08/01/2004~
-~05141~^~319~^24.^0^^~4~^~NR~^^^^^^^^^^~10/01/2004~
-~05141~^~320~^24.^0^^~4~^~NC~^^^^^^^^^^~03/01/2009~
-~05141~^~321~^0.^0^^~7~^~Z~^^^^^^^^^^~11/01/2002~
-~05141~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~11/01/2002~
-~05141~^~324~^3.^0^^~4~^~BFNN~^^^^^^^^^^~03/01/2009~
-~05141~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~11/01/2002~
-~05141~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~11/01/2002~
-~05141~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~11/01/2002~
-~05141~^~417~^25.^1^^~1~^^^^^^^^^^^~08/01/1979~
-~05141~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~
-~05141~^~432~^25.^1^^~1~^^^^^^^^^^^~03/01/2009~
-~05141~^~435~^25.^0^^~4~^~NC~^^^^^^^^^^~03/01/2009~
-~05141~^~601~^77.^1^^~1~^^^^^^^^^^^~08/01/1979~
-~05142~^~208~^201.^0^^~4~^~NC~^^^^^^^^^^~08/01/1979~
-~05142~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~11/01/2002~
-~05142~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~11/01/2002~
-~05142~^~268~^841.^0^^~4~^^^^^^^^^^^~03/01/2009~
-~05142~^~301~^12.^0^^~1~^^^^^^^^^^^~08/01/1979~
-~05142~^~304~^20.^0^^~1~^^^^^^^^^^^~08/01/1979~
-~05142~^~305~^203.^0^^~1~^^^^^^^^^^^~08/01/1979~
-~05142~^~306~^252.^0^^~1~^^^^^^^^^^^~08/01/1979~
-~05142~^~307~^65.^0^^~1~^^^^^^^^^^^~08/01/1979~
-~05142~^~318~^77.^0^^~1~^^^^^^^^^^^~08/01/2004~
-~05142~^~319~^23.^0^^~4~^~NR~^^^^^^^^^^~11/01/2002~
-~05142~^~320~^23.^0^^~4~^~NC~^^^^^^^^^^~03/01/2009~
-~05142~^~321~^0.^0^^~7~^~Z~^^^^^^^^^^~11/01/2002~
-~05142~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~11/01/2002~
-~05142~^~324~^4.^0^^~4~^~BFNN~^^^^^^^^^^~03/01/2009~
-~05142~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~11/01/2002~
-~05142~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~11/01/2002~
-~05142~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~11/01/2002~
-~05142~^~417~^10.^0^^~1~^^^^^^^^^^^~08/01/1979~
-~05142~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~
-~05142~^~432~^10.^0^^~1~^^^^^^^^^^^~03/01/2009~
-~05142~^~435~^10.^0^^~4~^~NC~^^^^^^^^^^~03/01/2009~
-~05142~^~601~^89.^0^^~1~^^^^^^^^^^^~08/01/1979~
-~05143~^~208~^136.^0^^~4~^~NC~^^^^^^^^^^~08/01/1979~
-~05143~^~268~^569.^0^^~4~^^^^^^^^^^^
-~05143~^~301~^11.^20^0.^~1~^^^^^^^^^^^~08/01/1979~
-~05143~^~304~^24.^0^^~4~^^^^^^^^^^^~08/01/1979~
-~05143~^~305~^269.^20^5.^~1~^^^^^^^^^^^~08/01/1979~
-~05143~^~306~^230.^0^^~4~^^^^^^^^^^^~08/01/1979~
-~05143~^~307~^140.^0^^~4~^^^^^^^^^^^~08/01/1979~
-~05143~^~318~^39907.^8^1166.^~1~^^^^^^^^^^^~08/01/1979~
-~05143~^~319~^11984.^8^350.^~1~^^^^^^^^^^^~06/01/2002~
-~05143~^~320~^11984.^8^350.^~1~^^^^^^^^^^^~06/01/2002~
-~05143~^~417~^738.^0^^~4~^^^^^^^^^^^~08/01/1979~
-~05143~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~
-~05143~^~432~^738.^0^^~4~^^^^^^^^^^^~08/01/1979~
-~05143~^~435~^738.^0^^~4~^~NC~^^^^^^^^^^~01/01/2001~
-~05143~^~601~^515.^3^144.^~1~^^^^^^^^^^^~08/01/1979~
-~05144~^~208~^211.^0^^~4~^~NC~^^^^^^^^^^~08/01/1979~
-~05144~^~268~^883.^0^^~4~^^^^^^^^^^^
-~05144~^~301~^5.^0^^~1~^^^^^^^^^^^~08/01/1979~
-~05144~^~304~^20.^0^^~1~^^^^^^^^^^^~08/01/1979~
-~05144~^~305~^168.^0^^~1~^^^^^^^^^^^~08/01/1979~
-~05144~^~306~^249.^0^^~1~^^^^^^^^^^^~08/01/1979~
-~05144~^~307~^56.^0^^~1~^^^^^^^^^^^~08/01/1979~
-~05144~^~318~^88.^0^^~4~^^^^^^^^^^^~08/01/1979~
-~05144~^~319~^26.^0^^~4~^^^^^^^^^^^~06/01/2002~
-~05144~^~320~^26.^0^^~4~^^^^^^^^^^^~06/01/2002~
-~05144~^~417~^21.^0^^~4~^^^^^^^^^^^~08/01/1979~
-~05144~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~
-~05144~^~432~^21.^0^^~4~^^^^^^^^^^^~08/01/1979~
-~05144~^~435~^21.^0^^~4~^~NC~^^^^^^^^^^~01/01/2001~
-~05144~^~601~^80.^1^^~1~^^^^^^^^^^^~08/01/1979~
-~05145~^~208~^123.^0^^~4~^~NC~^^^^^^^^^^~08/01/1979~
-~05145~^~268~^515.^0^^~4~^^^^^^^^^^^
-~05145~^~301~^3.^17^0.^~1~^^^^^^^^^^^~08/01/1979~
-~05145~^~304~^22.^16^0.^~1~^^^^^^^^^^^~08/01/1979~
-~05145~^~305~^186.^17^5.^~1~^^^^^^^^^^^~08/01/1979~
-~05145~^~306~^268.^17^6.^~1~^^^^^^^^^^^~08/01/1979~
-~05145~^~307~^57.^17^3.^~1~^^^^^^^^^^^~08/01/1979~
-~05145~^~318~^53.^0^^~1~^^^^^^^^^^^~08/01/1979~
-~05145~^~319~^16.^0^^~1~^^^^^^^^^^^~06/01/2002~
-~05145~^~320~^16.^0^^~1~^^^^^^^^^^^~06/01/2002~
-~05145~^~417~^25.^0^^~4~^^^^^^^^^^^~08/01/1979~
-~05145~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~
-~05145~^~432~^25.^0^^~4~^^^^^^^^^^^~08/01/1979~
-~05145~^~435~^25.^0^^~4~^~NC~^^^^^^^^^^~01/01/2001~
-~05145~^~601~^77.^0^^~4~^^^^^^^^^^^~08/01/1979~
-~05146~^~208~^371.^0^^~4~^~NC~^^^^^^^^^^~08/01/1979~
-~05146~^~268~^1552.^0^^~4~^^^^^^^^^^^
-~05146~^~301~^12.^2^^~1~^^^^^^^^^^^~08/01/1979~
-~05146~^~304~^18.^0^^~1~^^^^^^^^^^^~08/01/1979~
-~05146~^~305~^234.^3^49.^~1~^^^^^^^^^^^~08/01/1979~
-~05146~^~306~^308.^0^^~1~^^^^^^^^^^^~08/01/1979~
-~05146~^~307~^73.^0^^~1~^^^^^^^^^^^~08/01/1979~
-~05146~^~318~^55.^10^1.^~1~^^^^^^^^^^^~08/01/1979~
-~05146~^~319~^17.^10^0.^~1~^^^^^^^^^^^~06/01/2002~
-~05146~^~320~^17.^10^0.^~1~^^^^^^^^^^^~06/01/2002~
-~05146~^~417~^4.^10^0.^~1~^^^^^^^^^^^~08/01/1979~
-~05146~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~
-~05146~^~432~^4.^10^0.^~1~^^^^^^^^^^^~08/01/1979~
-~05146~^~435~^4.^0^^~4~^~NC~^^^^^^^^^^~01/01/2001~
-~05146~^~601~^80.^0^^~1~^^^^^^^^^^^~08/01/1979~
-~05147~^~208~^305.^0^^~4~^~NC~^^^^^^^^^^~08/01/1979~
-~05147~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~11/01/2002~
-~05147~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~11/01/2002~
-~05147~^~268~^1276.^0^^~4~^^^^^^^^^^^~03/01/2009~
-~05147~^~301~^13.^0^^~1~^^^^^^^^^^^~08/01/1979~
-~05147~^~304~^22.^0^^~1~^^^^^^^^^^^~08/01/1979~
-~05147~^~305~^270.^0^^~1~^^^^^^^^^^^~08/01/1979~
-~05147~^~306~^329.^0^^~1~^^^^^^^^^^^~08/01/1979~
-~05147~^~307~^70.^0^^~1~^^^^^^^^^^^~08/01/1979~
-~05147~^~318~^70.^0^^~1~^^^^^^^^^^^~01/01/2003~
-~05147~^~319~^21.^0^^~4~^~NR~^^^^^^^^^^~11/01/2002~
-~05147~^~320~^21.^0^^~4~^~NC~^^^^^^^^^^~03/01/2009~
-~05147~^~321~^0.^0^^~7~^~Z~^^^^^^^^^^~11/01/2002~
-~05147~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~11/01/2002~
-~05147~^~324~^3.^0^^~4~^~BFFN~^~05140~^^^^^^^^^~03/01/2009~
-~05147~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~11/01/2002~
-~05147~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~11/01/2002~
-~05147~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~11/01/2002~
-~05147~^~417~^2.^0^^~1~^^^^^^^^^^^~08/01/1979~
-~05147~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~
-~05147~^~432~^2.^0^^~1~^^^^^^^^^^^~03/01/2009~
-~05147~^~435~^2.^0^^~4~^~NC~^^^^^^^^^^~03/01/2009~
-~05147~^~601~^91.^0^^~1~^^^^^^^^^^^~08/01/1979~
-~05148~^~208~^161.^0^^~4~^~NC~^^^^^^^^^^~08/01/1979~
-~05148~^~268~^674.^0^^~4~^^^^^^^^^^^
-~05148~^~301~^13.^0^^~1~^^^^^^^^^^^~08/01/1979~
-~05148~^~304~^24.^1^^~1~^^^^^^^^^^^~08/01/1979~
-~05148~^~305~^312.^1^^~1~^^^^^^^^^^^~08/01/1979~
-~05148~^~306~^420.^0^^~1~^^^^^^^^^^^~08/01/1979~
-~05148~^~307~^87.^0^^~1~^^^^^^^^^^^~08/01/1979~
-~05148~^~318~^40.^0^^~4~^^^^^^^^^^^~08/01/1979~
-~05148~^~319~^12.^0^^~4~^^^^^^^^^^^~06/01/2002~
-~05148~^~320~^12.^0^^~4~^^^^^^^^^^^~06/01/2002~
-~05148~^~417~^31.^0^^~4~^^^^^^^^^^^~08/01/1979~
-~05148~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~
-~05148~^~432~^31.^0^^~4~^^^^^^^^^^^~08/01/1979~
-~05148~^~435~^31.^0^^~4~^~NC~^^^^^^^^^^~01/01/2001~
-~05148~^~601~^84.^1^^~1~^^^^^^^^^^^~08/01/1979~
-~05149~^~208~^238.^0^^~4~^~NC~^^^^^^^^^^~08/01/1979~
-~05149~^~268~^996.^0^^~4~^^^^^^^^^^^
-~05149~^~301~^14.^0^^~1~^^^^^^^^^^^~08/01/1979~
-~05149~^~304~^25.^0^^~1~^^^^^^^^^^^~08/01/1979~
-~05149~^~305~^309.^0^^~1~^^^^^^^^^^^~08/01/1979~
-~05149~^~306~^388.^0^^~1~^^^^^^^^^^^~08/01/1979~
-~05149~^~307~^76.^0^^~1~^^^^^^^^^^^~08/01/1979~
-~05149~^~318~^40.^0^^~4~^^^^^^^^^^^~08/01/1979~
-~05149~^~319~^12.^0^^~4~^^^^^^^^^^^~06/01/2002~
-~05149~^~320~^12.^0^^~4~^^^^^^^^^^^~06/01/2002~
-~05149~^~417~^12.^0^^~4~^^^^^^^^^^^~08/01/1979~
-~05149~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~
-~05149~^~432~^12.^0^^~4~^^^^^^^^^^^~08/01/1979~
-~05149~^~435~^12.^0^^~4~^~NC~^^^^^^^^^^~01/01/2001~
-~05149~^~601~^96.^0^^~1~^^^^^^^^^^^~08/01/1979~
-~05150~^~208~^133.^0^^~4~^~NC~^^^^^^^^^^~08/01/1979~
-~05150~^~268~^556.^0^^~4~^^^^^^^^^^^
-~05150~^~301~^43.^4^6.^~1~^^^^^^^^^^^~08/01/1979~
-~05150~^~304~^24.^4^2.^~1~^^^^^^^^^^^~08/01/1979~
-~05150~^~305~^261.^4^27.^~1~^^^^^^^^^^^~08/01/1979~
-~05150~^~306~^230.^1^^~1~^^^^^^^^^^^~08/01/1979~
-~05150~^~307~^140.^1^^~1~^^^^^^^^^^^~08/01/1979~
-~05150~^~318~^30998.^13^1467.^~1~^^^^^^^^^^^~08/01/1979~
-~05150~^~319~^9309.^13^440.^~1~^^^^^^^^^^^~06/01/2002~
-~05150~^~320~^9309.^13^440.^~1~^^^^^^^^^^^~06/01/2002~
-~05150~^~417~^738.^0^^~4~^^^^^^^^^^^~08/01/1979~
-~05150~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~
-~05150~^~432~^738.^0^^~4~^^^^^^^^^^^~08/01/1979~
-~05150~^~435~^738.^0^^~4~^~NC~^^^^^^^^^^~01/01/2001~
-~05150~^~601~^515.^0^^~4~^^^^^^^^^^^~08/01/1979~
-~05151~^~208~^158.^0^^~4~^~NC~^^^^^^^^^^~08/01/1979~
-~05151~^~268~^661.^0^^~4~^^^^^^^^^^^
-~05151~^~301~^11.^0^^~4~^^^^^^^^^^^~08/01/1979~
-~05151~^~304~^22.^0^^~4~^^^^^^^^^^^~08/01/1979~
-~05151~^~305~^153.^0^^~4~^^^^^^^^^^^~08/01/1979~
-~05151~^~306~^193.^0^^~4~^^^^^^^^^^^~08/01/1979~
-~05151~^~307~^67.^0^^~4~^^^^^^^^^^^~08/01/1979~
-~05151~^~318~^92.^0^^~4~^^^^^^^^^^^~08/01/1979~
-~05151~^~319~^28.^0^^~4~^^^^^^^^^^^~06/01/2002~
-~05151~^~320~^28.^0^^~4~^^^^^^^^^^^~06/01/2002~
-~05151~^~417~^5.^0^^~4~^^^^^^^^^^^~08/01/1979~
-~05151~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~
-~05151~^~432~^5.^0^^~4~^^^^^^^^^^^~08/01/1979~
-~05151~^~435~^5.^0^^~4~^~NC~^^^^^^^^^^~01/01/2001~
-~05151~^~601~^74.^0^^~4~^^^^^^^^^^^~08/01/1979~
-~05152~^~208~^110.^0^^~4~^~NC~^^^^^^^^^^~08/01/1979~
-~05152~^~268~^460.^0^^~4~^^^^^^^^^^^
-~05152~^~301~^11.^0^^~4~^^^^^^^^^^^~08/01/1979~
-~05152~^~304~^24.^0^^~4~^^^^^^^^^^^~08/01/1979~
-~05152~^~305~^169.^0^^~4~^^^^^^^^^^^~08/01/1979~
-~05152~^~306~^220.^0^^~4~^^^^^^^^^^^~08/01/1979~
-~05152~^~307~^69.^0^^~4~^^^^^^^^^^^~08/01/1979~
-~05152~^~318~^41.^0^^~4~^^^^^^^^^^^~08/01/1979~
-~05152~^~319~^12.^0^^~4~^^^^^^^^^^^~06/01/2002~
-~05152~^~320~^12.^0^^~4~^^^^^^^^^^^~06/01/2002~
-~05152~^~417~^6.^0^^~4~^^^^^^^^^^^~08/01/1979~
-~05152~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~
-~05152~^~432~^6.^0^^~4~^^^^^^^^^^^~08/01/1979~
-~05152~^~435~^6.^0^^~4~^~NC~^^^^^^^^^^~01/01/2001~
-~05152~^~601~^63.^1^^~1~^^^^^^^^^^^~08/01/1979~
-~05153~^~208~^181.^0^^~4~^~NC~^^^^^^^^^^~08/01/1979~
-~05153~^~268~^757.^0^^~4~^^^^^^^^^^^
-~05153~^~301~^12.^0^^~1~^^^^^^^^^^^~08/01/1979~
-~05153~^~304~^20.^0^^~1~^^^^^^^^^^^~08/01/1979~
-~05153~^~305~^214.^0^^~1~^^^^^^^^^^^~08/01/1979~
-~05153~^~306~^243.^0^^~1~^^^^^^^^^^^~08/01/1979~
-~05153~^~307~^40.^0^^~1~^^^^^^^^^^^~08/01/1979~
-~05153~^~318~^177.^0^^~1~^^^^^^^^^^^~08/01/1979~
-~05153~^~319~^53.^0^^~1~^^^^^^^^^^^~06/01/2002~
-~05153~^~320~^53.^0^^~1~^^^^^^^^^^^~06/01/2002~
-~05153~^~417~^6.^0^^~4~^^^^^^^^^^^~08/01/1979~
-~05153~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~
-~05153~^~432~^6.^0^^~4~^^^^^^^^^^^~08/01/1979~
-~05153~^~435~^6.^0^^~4~^~NC~^^^^^^^^^^~01/01/2001~
-~05153~^~601~^71.^0^^~4~^^^^^^^^^^^~08/01/1979~
-~05154~^~208~^133.^0^^~4~^~NC~^^^^^^^^^^~08/01/1979~
-~05154~^~268~^556.^0^^~4~^^^^^^^^^^^
-~05154~^~301~^13.^0^^~1~^^^^^^^^^^^~08/01/1979~
-~05154~^~304~^20.^0^^~1~^^^^^^^^^^^~08/01/1979~
-~05154~^~305~^230.^0^^~1~^^^^^^^^^^^~08/01/1979~
-~05154~^~306~^262.^0^^~1~^^^^^^^^^^^~08/01/1979~
-~05154~^~307~^37.^0^^~1~^^^^^^^^^^^~08/01/1979~
-~05154~^~318~^165.^0^^~1~^^^^^^^^^^^~08/01/1979~
-~05154~^~319~^50.^0^^~1~^^^^^^^^^^^~06/01/2002~
-~05154~^~320~^50.^0^^~1~^^^^^^^^^^^~06/01/2002~
-~05154~^~417~^6.^0^^~4~^^^^^^^^^^^~08/01/1979~
-~05154~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~
-~05154~^~432~^6.^0^^~4~^^^^^^^^^^^~08/01/1979~
-~05154~^~435~^6.^0^^~4~^~NC~^^^^^^^^^^~01/01/2001~
-~05154~^~601~^66.^0^^~4~^^^^^^^^^^^~08/01/1979~
-~05155~^~208~^133.^0^^~4~^~NC~^^^^^^^^^^~08/01/1979~
-~05155~^~268~^556.^0^^~4~^^^^^^^^^^^
-~05155~^~301~^3.^25^0.^~1~^^^^^^^^^^^~08/01/1979~
-~05155~^~304~^21.^24^1.^~1~^^^^^^^^^^^~08/01/1979~
-~05155~^~305~^200.^25^9.^~1~^^^^^^^^^^^~08/01/1979~
-~05155~^~306~^242.^25^15.^~1~^^^^^^^^^^^~08/01/1979~
-~05155~^~307~^33.^25^1.^~1~^^^^^^^^^^^~08/01/1979~
-~05155~^~318~^147.^0^^~1~^^^^^^^^^^^~08/01/1979~
-~05155~^~319~^44.^0^^~1~^^^^^^^^^^^~06/01/2002~
-~05155~^~320~^44.^0^^~1~^^^^^^^^^^^~06/01/2002~
-~05155~^~417~^4.^0^^~4~^^^^^^^^^^^~08/01/1979~
-~05155~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~
-~05155~^~432~^4.^0^^~4~^^^^^^^^^^^~08/01/1979~
-~05155~^~435~^4.^0^^~4~^~NC~^^^^^^^^^^~01/01/2001~
-~05155~^~601~^58.^0^^~4~^^^^^^^^^^^~08/01/1979~
-~05156~^~208~^134.^0^^~4~^~NC~^^^^^^^^^^~08/01/1979~
-~05156~^~268~^561.^0^^~4~^^^^^^^^^^^
-~05156~^~301~^29.^14^6.^~1~^^^^^^^^^^^~08/01/1979~
-~05156~^~304~^20.^14^0.^~1~^^^^^^^^^^^~08/01/1979~
-~05156~^~305~^280.^14^23.^~1~^^^^^^^^^^^~08/01/1979~
-~05156~^~306~^296.^14^12.^~1~^^^^^^^^^^^~08/01/1979~
-~05156~^~307~^45.^14^1.^~1~^^^^^^^^^^^~08/01/1979~
-~05156~^~318~^195.^0^^~1~^^^^^^^^^^^~08/01/1979~
-~05156~^~319~^59.^0^^~1~^^^^^^^^^^^~06/01/2002~
-~05156~^~320~^59.^0^^~1~^^^^^^^^^^^~06/01/2002~
-~05156~^~417~^10.^0^^~4~^^^^^^^^^^^~08/01/1979~
-~05156~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~
-~05156~^~432~^10.^0^^~4~^^^^^^^^^^^~08/01/1979~
-~05156~^~435~^10.^0^^~4~^~NC~^^^^^^^^^^~01/01/2001~
-~05156~^~601~^80.^0^^~4~^^^^^^^^^^^~08/01/1979~
-~05157~^~208~^192.^0^^~4~^~NC~^^^^^^^^^^~08/01/1979~
-~05157~^~268~^803.^0^^~4~^^^^^^^^^^^
-~05157~^~301~^13.^0^^~1~^^^^^^^^^^^~08/01/1979~
-~05157~^~304~^23.^0^^~4~^^^^^^^^^^^~08/01/1979~
-~05157~^~305~^275.^0^^~1~^^^^^^^^^^^~08/01/1979~
-~05157~^~306~^216.^0^^~1~^^^^^^^^^^^~08/01/1979~
-~05157~^~307~^53.^0^^~1~^^^^^^^^^^^~08/01/1979~
-~05157~^~318~^243.^5^5.^~1~^^^^^^^^^^^~08/01/1979~
-~05157~^~319~^73.^5^1.^~1~^^^^^^^^^^^~06/01/2002~
-~05157~^~320~^73.^5^1.^~1~^^^^^^^^^^^~06/01/2002~
-~05157~^~417~^8.^5^0.^~1~^^^^^^^^^^^~08/01/1979~
-~05157~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~
-~05157~^~432~^8.^5^0.^~1~^^^^^^^^^^^~08/01/1979~
-~05157~^~435~^8.^0^^~4~^~NC~^^^^^^^^^^~01/01/2001~
-~05157~^~601~^76.^0^^~4~^^^^^^^^^^^~08/01/1979~
-~05158~^~208~^134.^0^^~4~^~NC~^^^^^^^^^^~08/01/1979~
-~05158~^~268~^561.^0^^~4~^^^^^^^^^^^
-~05158~^~301~^13.^1^^~1~^^^^^^^^^^^~08/01/1979~
-~05158~^~304~^25.^0^^~4~^^^^^^^^^^^~08/01/1979~
-~05158~^~305~^307.^1^^~1~^^^^^^^^^^^~08/01/1979~
-~05158~^~306~^237.^1^^~1~^^^^^^^^^^^~08/01/1979~
-~05158~^~307~^51.^1^^~1~^^^^^^^^^^^~08/01/1979~
-~05158~^~318~^57.^0^^~1~^^^^^^^^^^^~08/01/1979~
-~05158~^~319~^17.^0^^~1~^^^^^^^^^^^~06/01/2002~
-~05158~^~320~^17.^0^^~1~^^^^^^^^^^^~06/01/2002~
-~05158~^~417~^7.^0^^~4~^^^^^^^^^^^~08/01/1979~
-~05158~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~
-~05158~^~432~^7.^0^^~4~^^^^^^^^^^^~08/01/1979~
-~05158~^~435~^7.^0^^~4~^~NC~^^^^^^^^^^~01/01/2001~
-~05158~^~601~^70.^0^^~4~^^^^^^^^^^^~08/01/1979~
-~05159~^~208~^123.^0^^~4~^~NC~^^^^^^^^^^~08/01/1979~
-~05159~^~268~^515.^0^^~4~^^^^^^^^^^^
-~05159~^~301~^10.^3^0.^~1~^^^^^^^^^^^~08/01/1979~
-~05159~^~304~^28.^0^^~4~^^^^^^^^^^^~08/01/1979~
-~05159~^~305~^228.^3^9.^~1~^^^^^^^^^^^~08/01/1979~
-~05159~^~306~^260.^4^33.^~1~^^^^^^^^^^^~08/01/1979~
-~05159~^~307~^55.^4^6.^~1~^^^^^^^^^^^~08/01/1979~
-~05159~^~318~^37.^3^18.^~1~^^^^^^^^^^^~08/01/1979~
-~05159~^~319~^11.^3^5.^~1~^^^^^^^^^^^~06/01/2002~
-~05159~^~320~^11.^3^5.^~1~^^^^^^^^^^^~06/01/2002~
-~05159~^~417~^4.^0^^~4~^^^^^^^^^^^~08/01/1979~
-~05159~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~
-~05159~^~432~^4.^0^^~4~^^^^^^^^^^^~08/01/1979~
-~05159~^~435~^4.^0^^~4~^~NC~^^^^^^^^^^~01/01/2001~
-~05159~^~601~^58.^0^^~4~^^^^^^^^^^^~08/01/1979~
-~05160~^~208~^294.^0^^~4~^~NC~^^^^^^^^^^~08/01/1979~
-~05160~^~268~^1230.^0^^~4~^^^^^^^^^^^
-~05160~^~301~^12.^0^^~4~^^^^^^^^^^^~08/01/1979~
-~05160~^~304~^22.^0^^~4~^^^^^^^^^^^~08/01/1979~
-~05160~^~305~^248.^0^^~4~^^^^^^^^^^^~08/01/1979~
-~05160~^~306~^199.^0^^~4~^^^^^^^^^^^~08/01/1979~
-~05160~^~307~^54.^0^^~4~^^^^^^^^^^^~08/01/1979~
-~05160~^~318~^243.^0^^~4~^^^^^^^^^^^~08/01/1979~
-~05160~^~319~^73.^0^^~4~^^^^^^^^^^^~06/01/2002~
-~05160~^~320~^73.^0^^~4~^^^^^^^^^^^~06/01/2002~
-~05160~^~417~^6.^0^^~4~^^^^^^^^^^^~08/01/1979~
-~05160~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~
-~05160~^~432~^6.^0^^~4~^^^^^^^^^^^~08/01/1979~
-~05160~^~435~^6.^0^^~4~^~NC~^^^^^^^^^^~01/01/2001~
-~05160~^~601~^95.^0^^~4~^^^^^^^^^^^~08/01/1979~
-~05161~^~208~^142.^0^^~4~^~NC~^^^^^^^^^^~08/01/1979~
-~05161~^~268~^594.^0^^~4~^^^^^^^^^^^
-~05161~^~301~^13.^0^^~4~^^^^^^^^^^^~08/01/1979~
-~05161~^~304~^25.^0^^~4~^^^^^^^^^^^~08/01/1979~
-~05161~^~305~^307.^0^^~4~^^^^^^^^^^^~08/01/1979~
-~05161~^~306~^237.^0^^~4~^^^^^^^^^^^~08/01/1979~
-~05161~^~307~^51.^0^^~4~^^^^^^^^^^^~08/01/1979~
-~05161~^~318~^94.^0^^~4~^^^^^^^^^^^~08/01/1979~
-~05161~^~319~^28.^0^^~4~^^^^^^^^^^^~06/01/2002~
-~05161~^~320~^28.^0^^~4~^^^^^^^^^^^~06/01/2002~
-~05161~^~417~^7.^0^^~4~^^^^^^^^^^^~08/01/1979~
-~05161~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~
-~05161~^~432~^7.^0^^~4~^^^^^^^^^^^~08/01/1979~
-~05161~^~435~^7.^0^^~4~^~NC~^^^^^^^^^^~01/01/2001~
-~05161~^~601~^90.^0^^~4~^^^^^^^^^^^~08/01/1979~
-~05162~^~208~^134.^0^^~4~^~NC~^^^^^^^^^^~08/01/1979~
-~05162~^~268~^561.^0^^~4~^^^^^^^^^^^
-~05162~^~301~^10.^0^^~4~^^^^^^^^^^^~08/01/1979~
-~05162~^~304~^28.^0^^~4~^^^^^^^^^^^~08/01/1979~
-~05162~^~305~^228.^0^^~4~^^^^^^^^^^^~08/01/1979~
-~05162~^~306~^260.^0^^~4~^^^^^^^^^^^~08/01/1979~
-~05162~^~307~^55.^0^^~4~^^^^^^^^^^^~08/01/1979~
-~05162~^~318~^57.^0^^~4~^^^^^^^^^^^~08/01/1979~
-~05162~^~319~^17.^0^^~4~^^^^^^^^^^^~06/01/2002~
-~05162~^~320~^17.^0^^~4~^^^^^^^^^^^~06/01/2002~
-~05162~^~417~^4.^0^^~4~^^^^^^^^^^^~08/01/1979~
-~05162~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~
-~05162~^~432~^4.^0^^~4~^^^^^^^^^^^~08/01/1979~
-~05162~^~435~^4.^0^^~4~^~NC~^^^^^^^^^^~01/01/2001~
-~05162~^~601~^90.^1^^~1~^^^^^^^^^^^~08/01/1979~
-~05165~^~208~^144.^0^^~4~^~NC~^^^^^^^^^^~03/01/2017~
-~05165~^~262~^0.^0^^~4~^~PIK~^^^^^^^^^^~08/01/2012~
-~05165~^~263~^0.^0^^~4~^~PIK~^^^^^^^^^^~08/01/2012~
-~05165~^~268~^602.^0^^~4~^~NC~^^^^^^^^^^~03/01/2017~
-~05165~^~301~^11.^0^^~1~^~PAK~^^^^^^^^^^~08/01/2012~
-~05165~^~304~^25.^0^^~1~^~PAK~^^^^^^^^^^~08/01/2012~
-~05165~^~305~^183.^0^^~1~^~PAK~^^^^^^^^^^~08/01/2012~
-~05165~^~306~^224.^0^^~1~^~PAK~^^^^^^^^^^~08/01/2012~
-~05165~^~307~^112.^0^^~1~^~PAK~^^^^^^^^^^~08/01/2012~
-~05165~^~318~^56.^0^^~4~^~NC~^^^^^^^^^^~12/01/2016~
-~05165~^~319~^17.^0^^~1~^~PAK~^^^^^^^^^^~08/01/2012~
-~05165~^~320~^17.^0^^~4~^~NC~^^^^^^^^^^~12/01/2016~
-~05165~^~321~^0.^0^^~4~^~PIK~^^^^^^^^^^~08/01/2012~
-~05165~^~322~^0.^0^^~4~^~PIK~^^^^^^^^^^~08/01/2012~
-~05165~^~324~^12.^0^^~1~^~PAK~^^^^^^^^^^~08/01/2012~
-~05165~^~334~^0.^0^^~4~^~PIK~^^^^^^^^^^~08/01/2012~
-~05165~^~337~^0.^0^^~4~^~PIK~^^^^^^^^^^~08/01/2012~
-~05165~^~338~^0.^0^^~4~^~PIK~^^^^^^^^^^~08/01/2012~
-~05165~^~417~^7.^0^^~4~^~PIK~^^^^^^^^^^~08/01/2012~
-~05165~^~431~^0.^0^^~4~^~PIK~^^^^^^^^^^~08/01/2012~
-~05165~^~432~^7.^0^^~4~^~PIK~^^^^^^^^^^~08/01/2012~
-~05165~^~435~^7.^0^^~4~^~NC~^^^^^^^^^^~08/01/2012~
-~05165~^~601~^72.^0^^~1~^~PAK~^^^^^^^^^^~08/01/2012~
-~05166~^~208~^189.^0^^~4~^~PIK~^^^^^^^^^^~08/01/2012~
-~05166~^~262~^0.^0^^~4~^~PIK~^^^^^^^^^^~08/01/2012~
-~05166~^~263~^0.^0^^~4~^~PIK~^^^^^^^^^^~08/01/2012~
-~05166~^~268~^790.^0^^~4~^~PIK~^^^^^^^^^^~08/01/2012~
-~05166~^~301~^14.^0^^~1~^~PAK~^^^^^^^^^^~08/01/2012~
-~05166~^~304~^30.^0^^~1~^~PAK~^^^^^^^^^^~08/01/2012~
-~05166~^~305~^223.^0^^~1~^~PAK~^^^^^^^^^^~08/01/2012~
-~05166~^~306~^239.^0^^~1~^~PAK~^^^^^^^^^^~08/01/2012~
-~05166~^~307~^103.^0^^~1~^~PAK~^^^^^^^^^^~08/01/2012~
-~05166~^~318~^39.^0^^~1~^~PAK~^^^^^^^^^^~08/01/2012~
-~05166~^~319~^12.^0^^~1~^~PAK~^^^^^^^^^^~08/01/2012~
-~05166~^~320~^12.^0^^~1~^~PAK~^^^^^^^^^^~08/01/2012~
-~05166~^~321~^0.^0^^~4~^~PIK~^^^^^^^^^^~08/01/2012~
-~05166~^~322~^0.^0^^~4~^~PIK~^^^^^^^^^^~08/01/2012~
-~05166~^~324~^15.^0^^~1~^~PAK~^^^^^^^^^^~08/01/2012~
-~05166~^~334~^0.^0^^~4~^~PIK~^^^^^^^^^^~08/01/2012~
-~05166~^~337~^0.^0^^~4~^~PIK~^^^^^^^^^^~08/01/2012~
-~05166~^~338~^0.^0^^~4~^~PIK~^^^^^^^^^^~08/01/2012~
-~05166~^~417~^9.^0^^~4~^~PIK~^^^^^^^^^^~08/01/2012~
-~05166~^~431~^0.^0^^~4~^~PIK~^^^^^^^^^^~08/01/2012~
-~05166~^~432~^9.^0^^~4~^~PIK~^^^^^^^^^^~08/01/2012~
-~05166~^~435~^9.^0^^~4~^~NC~^^^^^^^^^^~08/01/2012~
-~05166~^~601~^109.^0^^~1~^~PAK~^^^^^^^^^^~08/01/2012~
-~05167~^~208~^115.^0^^~4~^~NC~^^^^^^^^^^~03/01/2016~
-~05167~^~262~^0.^0^^~4~^~PIK~^^^^^^^^^^~08/01/2012~
-~05167~^~263~^0.^0^^~4~^~PIK~^^^^^^^^^^~08/01/2012~
-~05167~^~268~^479.^0^^~4~^~NC~^^^^^^^^^^~03/01/2016~
-~05167~^~301~^11.^0^^~1~^~PAK~^^^^^^^^^^~08/01/2012~
-~05167~^~304~^27.^0^^~1~^~PAK~^^^^^^^^^^~08/01/2012~
-~05167~^~305~^190.^0^^~1~^~PAK~^^^^^^^^^^~08/01/2012~
-~05167~^~306~^235.^0^^~1~^~PAK~^^^^^^^^^^~08/01/2012~
-~05167~^~307~^118.^0^^~1~^~PAK~^^^^^^^^^^~08/01/2012~
-~05167~^~318~^30.^0^^~1~^~PAK~^^^^^^^^^^~08/01/2012~
-~05167~^~319~^9.^0^^~1~^~PAK~^^^^^^^^^^~08/01/2012~
-~05167~^~320~^9.^0^^~1~^~PAK~^^^^^^^^^^~08/01/2012~
-~05167~^~321~^0.^0^^~4~^~PIK~^^^^^^^^^^~08/01/2012~
-~05167~^~322~^0.^0^^~4~^~PIK~^^^^^^^^^^~08/01/2012~
-~05167~^~324~^8.^0^^~1~^~PAK~^^^^^^^^^^~08/01/2012~
-~05167~^~334~^0.^0^^~4~^~PIK~^^^^^^^^^^~08/01/2012~
-~05167~^~337~^0.^0^^~4~^~PIK~^^^^^^^^^^~08/01/2012~
-~05167~^~338~^0.^0^^~4~^~PIK~^^^^^^^^^^~08/01/2012~
-~05167~^~417~^7.^0^^~4~^~PIK~^^^^^^^^^^~08/01/2012~
-~05167~^~431~^0.^0^^~4~^~PIK~^^^^^^^^^^~08/01/2012~
-~05167~^~432~^7.^0^^~4~^~PIK~^^^^^^^^^^~08/01/2012~
-~05167~^~435~^7.^0^^~4~^~NC~^^^^^^^^^^~08/01/2012~
-~05167~^~601~^67.^0^^~1~^~PAK~^^^^^^^^^^~08/01/2012~
-~05168~^~208~^159.^0^^~4~^~PIK~^^^^^^^^^^~08/01/2012~
-~05168~^~262~^0.^0^^~4~^~PIK~^^^^^^^^^^~08/01/2012~
-~05168~^~263~^0.^0^^~4~^~PIK~^^^^^^^^^^~08/01/2012~
-~05168~^~268~^664.^0^^~4~^~PIK~^^^^^^^^^^~08/01/2012~
-~05168~^~301~^13.^0^^~1~^~PAK~^^^^^^^^^^~08/01/2012~
-~05168~^~304~^29.^0^^~1~^~PAK~^^^^^^^^^^~08/01/2012~
-~05168~^~305~^222.^0^^~1~^~PAK~^^^^^^^^^^~08/01/2012~
-~05168~^~306~^239.^0^^~1~^~PAK~^^^^^^^^^^~08/01/2012~
-~05168~^~307~^101.^0^^~1~^~PAK~^^^^^^^^^^~08/01/2012~
-~05168~^~318~^14.^0^^~1~^~PAK~^^^^^^^^^^~08/01/2012~
-~05168~^~319~^4.^0^^~1~^~PAK~^^^^^^^^^^~08/01/2012~
-~05168~^~320~^4.^0^^~1~^~PAK~^^^^^^^^^^~08/01/2012~
-~05168~^~321~^0.^0^^~4~^~PIK~^^^^^^^^^^~08/01/2012~
-~05168~^~322~^0.^0^^~4~^~PIK~^^^^^^^^^^~08/01/2012~
-~05168~^~324~^10.^0^^~1~^~PAK~^^^^^^^^^^~08/01/2012~
-~05168~^~334~^0.^0^^~4~^~PIK~^^^^^^^^^^~08/01/2012~
-~05168~^~337~^0.^0^^~4~^~PIK~^^^^^^^^^^~08/01/2012~
-~05168~^~338~^0.^0^^~4~^~PIK~^^^^^^^^^^~08/01/2012~
-~05168~^~417~^9.^0^^~4~^~PIK~^^^^^^^^^^~08/01/2012~
-~05168~^~431~^0.^0^^~4~^~PIK~^^^^^^^^^^~08/01/2012~
-~05168~^~432~^9.^0^^~4~^~PIK~^^^^^^^^^^~08/01/2012~
-~05168~^~435~^9.^0^^~4~^~NC~^^^^^^^^^^~08/01/2012~
-~05168~^~601~^101.^0^^~1~^~PAK~^^^^^^^^^^~08/01/2012~
-~05169~^~208~^407.^0^^~4~^~NC~^^^^^^^^^^~08/01/2012~
-~05169~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~08/01/2012~
-~05169~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~08/01/2012~
-~05169~^~268~^1704.^0^^~4~^~NC~^^^^^^^^^^~07/01/2015~
-~05169~^~301~^13.^4^0.^~1~^~A~^^^^12.^14.^^^^^~08/01/2012~
-~05169~^~304~^11.^2^^~1~^~A~^^^1^11.^11.^1^^^^~08/01/2012~
-~05169~^~305~^120.^2^^~1~^~A~^^^1^115.^124.^1^^^^~08/01/2012~
-~05169~^~306~^124.^2^^~1~^~A~^^^1^121.^128.^1^^^^~08/01/2012~
-~05169~^~307~^62.^2^^~1~^~A~^^^1^58.^66.^1^^^^~08/01/2012~
-~05169~^~318~^284.^0^^~1~^~AS~^^^^^^^^^^~08/01/2015~
-~05169~^~319~^85.^2^^~1~^~A~^^^^84.^87.^^^^^~08/01/2012~
-~05169~^~320~^85.^0^^~1~^~AS~^^^^^^^^^^~08/01/2012~
-~05169~^~321~^0.^0^^~7~^~Z~^^^^^^^^^^~08/01/2012~
-~05169~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~08/01/2012~
-~05169~^~324~^46.^1^^~1~^~A~^^^^^^^^^^~08/01/2012~
-~05169~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~08/01/2012~
-~05169~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~08/01/2012~
-~05169~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~08/01/2012~
-~05169~^~417~^4.^0^^~4~^~BFPN~^^^^^^^^^^~08/01/2012~
-~05169~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~
-~05169~^~432~^4.^0^^~4~^~BFPN~^^^^^^^^^^~08/01/2012~
-~05169~^~435~^4.^0^^~4~^~NC~^^^^^^^^^^~05/01/2009~
-~05169~^~601~^122.^2^^~1~^~A~^^^1^107.^137.^1^^^^~08/01/2012~
-~05170~^~208~^459.^0^^~4~^~NC~^^^^^^^^^^~08/01/2012~
-~05170~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~08/01/2012~
-~05170~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~08/01/2012~
-~05170~^~268~^1920.^0^^~4~^~NC~^^^^^^^^^^~08/01/2012~
-~05170~^~301~^21.^2^^~1~^~A~^^^1^17.^25.^1^^^^~08/01/2012~
-~05170~^~304~^33.^2^^~1~^~A~^^^1^31.^34.^1^^^^~08/01/2012~
-~05170~^~305~^233.^2^^~1~^~A~^^^1^224.^243.^1^^^^~08/01/2012~
-~05170~^~306~^242.^2^^~1~^~A~^^^1^234.^250.^1^^^^~08/01/2012~
-~05170~^~307~^116.^2^^~1~^~A~^^^1^103.^130.^1^^^^~08/01/2012~
-~05170~^~318~^262.^0^^~1~^~AS~^^^^^^^^^^~08/01/2012~
-~05170~^~319~^79.^2^^~1~^~A~^^^^76.^81.^^^^^~08/01/2012~
-~05170~^~320~^79.^0^^~1~^~AS~^^^^^^^^^^~08/01/2012~
-~05170~^~321~^0.^0^^~7~^~Z~^^^^^^^^^^~08/01/2012~
-~05170~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~08/01/2012~
-~05170~^~324~^54.^1^^~1~^~A~^^^^^^^^^^~08/01/2012~
-~05170~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~08/01/2012~
-~05170~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~08/01/2012~
-~05170~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~08/01/2012~
-~05170~^~417~^8.^0^^~4~^~BFPN~^^^^^^^^^^~08/01/2012~
-~05170~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~
-~05170~^~432~^8.^0^^~4~^~BFPN~^^^^^^^^^^~08/01/2012~
-~05170~^~435~^8.^0^^~4~^~NC~^^^^^^^^^^~08/01/2012~
-~05170~^~601~^177.^2^^~1~^~A~^^^1^168.^186.^1^^^^~08/01/2012~
-~05171~^~208~^124.^0^^~4~^~PIK~^^^^^^^^^^~08/01/2012~
-~05171~^~262~^0.^0^^~4~^~PIK~^^^^^^^^^^~08/01/2012~
-~05171~^~263~^0.^0^^~4~^~PIK~^^^^^^^^^^~08/01/2012~
-~05171~^~268~^518.^0^^~4~^~PIK~^^^^^^^^^^~08/01/2012~
-~05171~^~301~^18.^0^^~1~^~PAK~^^^^^^^^^^~08/01/2012~
-~05171~^~304~^22.^0^^~1~^~PAK~^^^^^^^^^^~08/01/2012~
-~05171~^~305~^223.^0^^~1~^~PAK~^^^^^^^^^^~08/01/2012~
-~05171~^~306~^198.^0^^~1~^~PAK~^^^^^^^^^^~08/01/2012~
-~05171~^~307~^136.^0^^~1~^~PAK~^^^^^^^^^^~08/01/2012~
-~05171~^~318~^13129.^0^^~4~^~NC~^^^^^^^^^^~08/01/2012~
-~05171~^~319~^3939.^0^^~1~^~PAK~^^^^^^^^^^~08/01/2012~
-~05171~^~320~^3939.^0^^~4~^~NC~^^^^^^^^^^~08/01/2012~
-~05171~^~321~^0.^0^^~4~^~PIK~^^^^^^^^^^~08/01/2012~
-~05171~^~322~^0.^0^^~4~^~PIK~^^^^^^^^^^~08/01/2012~
-~05171~^~324~^34.^0^^~1~^~PAK~^^^^^^^^^^~08/01/2012~
-~05171~^~334~^0.^0^^~4~^~PIK~^^^^^^^^^^~08/01/2012~
-~05171~^~337~^0.^0^^~4~^~PIK~^^^^^^^^^^~08/01/2012~
-~05171~^~338~^0.^0^^~4~^~PIK~^^^^^^^^^^~08/01/2012~
-~05171~^~417~^331.^0^^~1~^~PAK~^^^^^^^^^^~08/01/2012~
-~05171~^~431~^0.^0^^~4~^~PIK~^^^^^^^^^^~08/01/2012~
-~05171~^~432~^331.^0^^~1~^~PAK~^^^^^^^^^^~08/01/2012~
-~05171~^~435~^331.^0^^~4~^~NC~^^^^^^^^^^~08/01/2012~
-~05171~^~601~^333.^0^^~1~^~PAK~^^^^^^^^^^~08/01/2012~
-~05172~^~208~^173.^0^^~4~^~PIK~^^^^^^^^^^~08/01/2012~
-~05172~^~262~^0.^0^^~4~^~PIK~^^^^^^^^^^~04/01/2005~
-~05172~^~263~^0.^0^^~4~^~PIK~^^^^^^^^^^~04/01/2005~
-~05172~^~268~^722.^0^^~4~^~PIK~^^^^^^^^^^~08/01/2012~
-~05172~^~301~^18.^0^^~1~^~PAK~^^^^^^^^^^~08/01/2012~
-~05172~^~304~^25.^0^^~1~^~PAK~^^^^^^^^^^~08/01/2012~
-~05172~^~305~^249.^0^^~1~^~PAK~^^^^^^^^^^~08/01/2012~
-~05172~^~306~^177.^0^^~1~^~PAK~^^^^^^^^^^~08/01/2012~
-~05172~^~307~^117.^0^^~1~^~PAK~^^^^^^^^^^~08/01/2012~
-~05172~^~318~^15397.^0^^~1~^~PAK~^^^^^^^^^^~08/01/2012~
-~05172~^~319~^4619.^0^^~1~^~PAK~^^^^^^^^^^~08/01/2012~
-~05172~^~320~^4619.^0^^~1~^~PAK~^^^^^^^^^^~08/01/2012~
-~05172~^~321~^0.^0^^~4~^~PIK~^^^^^^^^^^~04/01/2005~
-~05172~^~322~^0.^0^^~4~^~PIK~^^^^^^^^^^~04/01/2005~
-~05172~^~324~^0.^0^^~4~^~PIK~^^^^^^^^^^~08/01/2012~
-~05172~^~334~^0.^0^^~4~^~PIK~^^^^^^^^^^~04/01/2005~
-~05172~^~337~^0.^0^^~4~^~PIK~^^^^^^^^^^~08/01/2012~
-~05172~^~338~^0.^0^^~4~^~PIK~^^^^^^^^^^~04/01/2005~
-~05172~^~417~^303.^0^^~1~^~PAK~^^^^^^^^^^~08/01/2012~
-~05172~^~431~^0.^0^^~4~^~PIK~^^^^^^^^^^~04/01/2003~
-~05172~^~432~^303.^0^^~1~^~PAK~^^^^^^^^^^~08/01/2012~
-~05172~^~435~^303.^0^^~4~^~NC~^^^^^^^^^^~08/01/2012~
-~05172~^~601~^521.^0^^~1~^~PAK~^^^^^^^^^^~08/01/2012~
-~05173~^~208~^111.^0^^~4~^~NC~^^^^^^^^^^~08/01/2012~
-~05173~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~
-~05173~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~
-~05173~^~268~^463.^0^^~4~^~NC~^^^^^^^^^^~08/01/2012~
-~05173~^~301~^16.^4^0.^~1~^~A~^^^1^15.^18.^3^14.^17.^~2, 3~^~08/01/2012~
-~05173~^~304~^19.^4^0.^~1~^~A~^^^1^17.^20.^3^16.^20.^~2, 3~^~08/01/2012~
-~05173~^~305~^164.^4^1.^~1~^~A~^^^1^160.^169.^3^157.^170.^~2, 3~^~08/01/2012~
-~05173~^~306~^185.^4^3.^~1~^~A~^^^1^175.^194.^3^172.^197.^~2, 3~^~08/01/2012~
-~05173~^~307~^147.^4^9.^~1~^~A~^^^1^131.^172.^3^115.^177.^~2, 3~^~08/01/2012~
-~05173~^~318~^154.^0^^~1~^~AS~^^^^^^^^^^~08/01/2012~
-~05173~^~319~^46.^1^^~1~^~A~^^^^^^^^^^~08/01/2012~
-~05173~^~320~^46.^0^^~1~^~AS~^^^^^^^^^^~08/01/2012~
-~05173~^~321~^0.^0^^~7~^~Z~^^^^^^^^^^~08/01/2012~
-~05173~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~08/01/2012~
-~05173~^~324~^19.^1^^~1~^~A~^^^^^^^^^^~08/01/2012~
-~05173~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~08/01/2012~
-~05173~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~08/01/2012~
-~05173~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~
-~05173~^~417~^6.^1^^~1~^~A~^^^^^^^^^^~04/01/2003~
-~05173~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~
-~05173~^~432~^6.^1^^~1~^~A~^^^^^^^^^^~03/01/2006~
-~05173~^~435~^6.^0^^~4~^~NC~^^^^^^^^^^~03/01/2006~
-~05173~^~601~^271.^4^13.^~1~^~A~^^^1^239.^306.^3^227.^315.^~2, 3~^~08/01/2012~
-~05174~^~208~^155.^0^^~4~^~NC~^^^^^^^^^^~08/01/2012~
-~05174~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~
-~05174~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~
-~05174~^~268~^648.^0^^~4~^~NC~^^^^^^^^^^~08/01/2012~
-~05174~^~301~^17.^4^0.^~1~^~A~^^^1^16.^18.^3^16.^18.^~2, 3~^~08/01/2012~
-~05174~^~304~^21.^4^0.^~1~^~A~^^^1^20.^22.^3^19.^22.^~2, 3~^~08/01/2012~
-~05174~^~305~^187.^4^4.^~1~^~A~^^^1^182.^199.^3^173.^199.^~2, 3~^~08/01/2012~
-~05174~^~306~^193.^4^5.^~1~^~A~^^^1^179.^201.^3^176.^209.^~2, 3~^~08/01/2012~
-~05174~^~307~^127.^4^5.^~1~^~A~^^^1^120.^143.^3^110.^143.^~2, 3~^~08/01/2012~
-~05174~^~318~^37.^0^^~1~^~AS~^^^^^^^^^^~08/01/2012~
-~05174~^~319~^11.^1^^~1~^~A~^^^^^^^^^^~08/01/2012~
-~05174~^~320~^11.^0^^~1~^~AS~^^^^^^^^^^~08/01/2012~
-~05174~^~321~^0.^0^^~7~^~Z~^^^^^^^^^^~08/01/2004~
-~05174~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~08/01/2004~
-~05174~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2009~
-~05174~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~08/01/2004~
-~05174~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~08/01/2004~
-~05174~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~
-~05174~^~417~^13.^1^^~1~^~A~^^^^^^^^^^~04/01/2003~
-~05174~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~
-~05174~^~432~^13.^1^^~1~^~A~^^^^^^^^^^~03/01/2006~
-~05174~^~435~^13.^0^^~4~^~NC~^^^^^^^^^^~03/01/2009~
-~05174~^~601~^452.^4^16.^~1~^~A~^^^1^412.^494.^3^398.^505.^~2, 3~^~08/01/2012~
-~05175~^~208~^140.^0^^~4~^~NC~^^^^^^^^^^~08/01/2012~
-~05175~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~
-~05175~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~
-~05175~^~268~^586.^0^^~4~^~NC~^^^^^^^^^^~08/01/2012~
-~05175~^~301~^18.^4^0.^~1~^~A~^^^1^17.^20.^3^16.^19.^~2, 3~^~08/01/2012~
-~05175~^~304~^21.^4^0.^~1~^~A~^^^1^19.^23.^3^18.^24.^~2, 3~^~08/01/2012~
-~05175~^~305~^183.^4^3.^~1~^~A~^^^1^175.^191.^3^172.^194.^~2, 3~^~08/01/2012~
-~05175~^~306~^179.^4^5.^~1~^~A~^^^1^166.^193.^3^160.^197.^~2, 3~^~08/01/2012~
-~05175~^~307~^129.^4^5.^~1~^~A~^^^1^113.^138.^3^111.^145.^~2, 3~^~08/01/2012~
-~05175~^~318~^305.^0^^~1~^~AS~^^^^^^^^^^~09/01/2012~
-~05175~^~319~^80.^1^^~1~^~A~^^^^^^^^^^~08/01/2012~
-~05175~^~320~^82.^0^^~1~^~AS~^^^^^^^^^^~09/01/2012~
-~05175~^~321~^23.^1^^~1~^~A~^^^^^^^^^^~09/01/2012~
-~05175~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~08/01/2012~
-~05175~^~324~^17.^1^^~1~^~A~^^^^^^^^^^~08/01/2012~
-~05175~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~08/01/2012~
-~05175~^~337~^21.^1^^~1~^~A~^^^^^^^^^^~09/01/2012~
-~05175~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~08/01/2012~
-~05175~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~
-~05175~^~601~^225.^4^8.^~1~^~A~^^^1^203.^244.^3^197.^253.^~2, 3~^~08/01/2012~
-~05176~^~208~^174.^0^^~4~^~NC~^^^^^^^^^^~08/01/2012~
-~05176~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~
-~05176~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~
-~05176~^~268~^728.^0^^~4~^~NC~^^^^^^^^^^~08/01/2012~
-~05176~^~301~^21.^4^0.^~1~^~A~^^^1^20.^22.^3^19.^22.^~2, 3~^~08/01/2012~
-~05176~^~304~^28.^4^0.^~1~^~A~^^^1^28.^29.^3^27.^28.^~2, 3~^~08/01/2012~
-~05176~^~305~^241.^4^14.^~1~^~A~^^^1^198.^261.^3^194.^288.^~2, 3~^~08/01/2012~
-~05176~^~306~^203.^4^4.^~1~^~A~^^^1^195.^215.^3^188.^217.^~2, 3~^~08/01/2012~
-~05176~^~307~^140.^4^6.^~1~^~A~^^^1^128.^160.^3^118.^162.^~2, 3~^~08/01/2012~
-~05176~^~318~^54.^0^^~1~^~AS~^^^^^^^^^^~08/01/2012~
-~05176~^~319~^16.^1^^~1~^~A~^^^^^^^^^^~08/01/2012~
-~05176~^~320~^16.^0^^~1~^~AS~^^^^^^^^^^~08/01/2012~
-~05176~^~321~^0.^0^^~7~^~Z~^^^^^^^^^^~08/01/2004~
-~05176~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~08/01/2004~
-~05176~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2009~
-~05176~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~08/01/2004~
-~05176~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~10/01/2013~
-~05176~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~
-~05176~^~417~^8.^1^^~1~^~A~^^^^^^^^^^~04/01/2003~
-~05176~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~
-~05176~^~432~^8.^1^^~1~^~A~^^^^^^^^^^~03/01/2006~
-~05176~^~435~^8.^0^^~4~^~NC~^^^^^^^^^^~03/01/2009~
-~05176~^~601~^359.^5^24.^~1~^~A~^^^1^263.^390.^4^291.^425.^~2, 3~^~08/01/2012~
-~05177~^~208~^128.^0^^~4~^~NC~^^^^^^^^^^~08/01/2012~
-~05177~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~
-~05177~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~
-~05177~^~268~^534.^0^^~4~^~NC~^^^^^^^^^^~08/01/2012~
-~05177~^~301~^20.^4^1.^~1~^~A~^^^1^16.^25.^3^14.^26.^~2, 3~^~08/01/2012~
-~05177~^~304~^24.^4^0.^~1~^~A~^^^1^24.^25.^3^23.^24.^~2, 3~^~08/01/2012~
-~05177~^~305~^279.^4^11.^~1~^~A~^^^1^259.^312.^3^242.^315.^~2, 3~^~02/01/2003~
-~05177~^~306~^214.^4^5.^~1~^~A~^^^1^201.^225.^3^197.^230.^~2, 3~^~08/01/2012~
-~05177~^~307~^131.^4^11.^~1~^~A~^^^1^111.^163.^3^93.^167.^~2, 3~^~08/01/2012~
-~05177~^~318~^26901.^0^^~1~^~AS~^^^^^^^^^^~09/01/2012~
-~05177~^~319~^8056.^1^^~1~^~A~^^^^^^^^^^~08/01/2012~
-~05177~^~320~^8058.^0^^~1~^~AS~^^^^^^^^^^~09/01/2012~
-~05177~^~321~^29.^1^^~1~^~A~^^^^^^^^^^~09/01/2012~
-~05177~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~08/01/2012~
-~05177~^~324~^50.^1^^~1~^~A~^^^^^^^^^^~08/01/2012~
-~05177~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~08/01/2012~
-~05177~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~08/01/2012~
-~05177~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2006~
-~05177~^~417~^677.^1^^~1~^~A~^^^^^^^^^^~04/01/2003~
-~05177~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~
-~05177~^~432~^677.^1^^~1~^~A~^^^^^^^^^^~03/01/2006~
-~05177~^~435~^677.^0^^~4~^~NC~^^^^^^^^^^~03/01/2006~
-~05177~^~601~^415.^3^5.^~1~^~A~^^^1^404.^423.^2^390.^440.^~2, 3~^~08/01/2012~
-~05178~^~208~^189.^0^^~4~^~NC~^^^^^^^^^^~08/01/2012~
-~05178~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2003~
-~05178~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2003~
-~05178~^~268~^791.^0^^~4~^~NC~^^^^^^^^^^~08/01/2012~
-~05178~^~301~^19.^4^0.^~1~^~A~^^^1^16.^20.^3^15.^21.^~2, 3~^~08/01/2012~
-~05178~^~304~^26.^4^1.^~1~^~A~^^^1^25.^29.^3^23.^29.^~2, 3~^~08/01/2012~
-~05178~^~305~^312.^4^8.^~1~^~A~^^^1^298.^336.^3^284.^340.^~2, 3~^~08/01/2012~
-~05178~^~306~^153.^4^17.^~1~^~A~^^^1^107.^194.^3^96.^210.^~2, 3~^~08/01/2012~
-~05178~^~307~^98.^4^11.^~1~^~A~^^^1^74.^127.^3^62.^133.^~2, 3~^~08/01/2012~
-~05178~^~318~^35836.^0^^~1~^~AS~^^^^^^^^^^~08/01/2012~
-~05178~^~319~^10751.^1^^~1~^~A~^^^^^^^^^^~08/01/2012~
-~05178~^~320~^10751.^0^^~1~^~AS~^^^^^^^^^^~08/01/2012~
-~05178~^~321~^0.^0^^~7~^~Z~^^^^^^^^^^~08/01/2012~
-~05178~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~08/01/2012~
-~05178~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~08/01/2012~
-~05178~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~08/01/2012~
-~05178~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2003~
-~05178~^~417~^691.^1^^~1~^~A~^^^^^^^^^^~04/01/2003~
-~05178~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~
-~05178~^~432~^691.^1^^~1~^~A~^^^^^^^^^^~03/01/2006~
-~05178~^~435~^691.^0^^~4~^~NC~^^^^^^^^^^~03/01/2006~
-~05178~^~601~^648.^3^43.^~1~^~A~^^^1^575.^727.^2^459.^837.^~2, 3~^~08/01/2012~
-~05179~^~208~^125.^0^^~4~^~NC~^^^^^^^^^^~08/01/2012~
-~05179~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~08/01/2012~
-~05179~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~08/01/2012~
-~05179~^~268~^523.^0^^~4~^~NC~^^^^^^^^^^~08/01/2012~
-~05179~^~301~^24.^3^0.^~1~^~A~^^^1^24.^25.^2^22.^25.^~4~^~08/01/2012~
-~05179~^~304~^15.^3^0.^~1~^~A~^^^1^15.^16.^2^13.^17.^~4~^~08/01/2012~
-~05179~^~305~^160.^3^6.^~1~^~A~^^^1^148.^170.^2^132.^186.^~4~^~08/01/2012~
-~05179~^~306~^133.^3^5.^~1~^~A~^^^1^123.^141.^2^110.^154.^~4~^~08/01/2012~
-~05179~^~307~^233.^3^19.^~1~^~A~^^^1^200.^267.^2^150.^315.^~4~^~08/01/2012~
-~05179~^~318~^43.^0^^~4~^~NC~^^^^^^^^^^~08/01/2012~
-~05179~^~319~^13.^0^^~4~^~BFSN~^~05694~^^^^^^^^^~08/01/2012~
-~05179~^~320~^13.^0^^~4~^~NC~^^^^^^^^^^~08/01/2012~
-~05179~^~321~^0.^0^^~7~^~Z~^^^^^^^^^^~08/01/2012~
-~05179~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~08/01/2012~
-~05179~^~324~^13.^0^^~4~^~BFSN~^~05694~^^^^^^^^^~08/01/2012~
-~05179~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~08/01/2012~
-~05179~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~08/01/2012~
-~05179~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~08/01/2012~
-~05179~^~417~^5.^0^^~4~^~BFPN~^^^^^^^^^^~08/01/2012~
-~05179~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~
-~05179~^~432~^5.^0^^~4~^~BFPN~^^^^^^^^^^~08/01/2012~
-~05179~^~435~^5.^0^^~4~^~NC~^^^^^^^^^^~08/01/2012~
-~05179~^~601~^115.^0^^~4~^~BFFN~^~05694~^^^^^^^^^~08/01/2012~
-~05180~^~208~^162.^0^^~4~^~NC~^^^^^^^^^^~08/01/2012~
-~05180~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~11/01/2002~
-~05180~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~11/01/2002~
-~05180~^~268~^679.^0^^~4~^~NC~^^^^^^^^^^~08/01/2012~
-~05180~^~301~^58.^3^12.^~1~^~A~^^^1^40.^82.^2^3.^111.^~4~^~08/01/2012~
-~05180~^~304~^18.^3^0.^~1~^~A~^^^1^17.^20.^2^14.^21.^~4~^~08/01/2012~
-~05180~^~305~^182.^3^8.^~1~^~A~^^^1^168.^197.^2^146.^218.^~4~^~08/01/2012~
-~05180~^~306~^114.^3^3.^~1~^~A~^^^1^110.^121.^2^100.^128.^~4~^~08/01/2012~
-~05180~^~307~^246.^3^16.^~1~^~A~^^^1^214.^269.^2^174.^317.^~4~^~08/01/2012~
-~05180~^~318~^0.^0^^~1~^~AS~^^^^^^^^^^~08/01/1979~
-~05180~^~319~^0.^0^^~4~^~NR~^^^^^^^^^^~11/01/2002~
-~05180~^~320~^0.^0^^~1~^~AS~^^^^^^^^^^~08/01/2012~
-~05180~^~321~^0.^0^^~7~^~Z~^^^^^^^^^^~11/01/2002~
-~05180~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~11/01/2002~
-~05180~^~324~^12.^0^^~4~^~BFFN~^~05695~^^^^^^^^^~08/01/2012~
-~05180~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~11/01/2002~
-~05180~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~11/01/2002~
-~05180~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~11/01/2002~
-~05180~^~417~^7.^0^^~4~^~BFPN~^^^^^^^^^^~08/01/2012~
-~05180~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~
-~05180~^~432~^7.^0^^~4~^~BFPN~^^^^^^^^^^~08/01/2012~
-~05180~^~435~^7.^0^^~4~^~NC~^^^^^^^^^^~08/01/2012~
-~05180~^~601~^128.^0^^~4~^~BFFN~^~05695~^^^^^^^^^~08/01/2012~
-~05181~^~208~^161.^0^^~4~^~PIK~^^^^^^^^^^~08/01/2012~
-~05181~^~262~^0.^0^^~4~^~PIK~^^^^^^^^^^~08/01/2012~
-~05181~^~263~^0.^0^^~4~^~PIK~^^^^^^^^^^~08/01/2012~
-~05181~^~268~^673.^0^^~4~^~PIK~^^^^^^^^^^~08/01/2012~
-~05181~^~301~^11.^0^^~1~^~PAK~^^^^^^^^^^~08/01/2012~
-~05181~^~304~^25.^0^^~1~^~PAK~^^^^^^^^^^~08/01/2012~
-~05181~^~305~^188.^0^^~1~^~PAK~^^^^^^^^^^~08/01/2012~
-~05181~^~306~^223.^0^^~1~^~PAK~^^^^^^^^^^~08/01/2012~
-~05181~^~307~^105.^0^^~1~^~PAK~^^^^^^^^^^~08/01/2012~
-~05181~^~318~^62.^0^^~1~^~PAK~^^^^^^^^^^~08/01/2012~
-~05181~^~319~^19.^0^^~1~^~PAK~^^^^^^^^^^~08/01/2012~
-~05181~^~320~^19.^0^^~1~^~PAK~^^^^^^^^^^~08/01/2012~
-~05181~^~321~^0.^0^^~4~^~PIK~^^^^^^^^^^~08/01/2012~
-~05181~^~322~^0.^0^^~4~^~PIK~^^^^^^^^^^~08/01/2012~
-~05181~^~324~^11.^0^^~1~^~PAK~^^^^^^^^^^~08/01/2012~
-~05181~^~334~^0.^0^^~4~^~PIK~^^^^^^^^^^~08/01/2012~
-~05181~^~337~^0.^0^^~4~^~PIK~^^^^^^^^^^~08/01/2012~
-~05181~^~338~^0.^0^^~4~^~PIK~^^^^^^^^^^~08/01/2012~
-~05181~^~417~^7.^0^^~4~^~PIK~^^^^^^^^^^~08/01/2012~
-~05181~^~431~^0.^0^^~4~^~PIK~^^^^^^^^^^~08/01/2012~
-~05181~^~432~^7.^0^^~4~^~PIK~^^^^^^^^^^~08/01/2012~
-~05181~^~435~^7.^0^^~4~^~NC~^^^^^^^^^^~01/01/2001~
-~05181~^~601~^67.^0^^~1~^~PAK~^^^^^^^^^^~08/01/2012~
-~05182~^~208~^177.^0^^~4~^~PIK~^^^^^^^^^^~08/01/2012~
-~05182~^~262~^0.^0^^~4~^~PIK~^^^^^^^^^^~08/01/2012~
-~05182~^~263~^0.^0^^~4~^~PIK~^^^^^^^^^^~08/01/2012~
-~05182~^~268~^739.^0^^~4~^~PIK~^^^^^^^^^^~08/01/2012~
-~05182~^~301~^11.^0^^~1~^~PAK~^^^^^^^^^^~08/01/2012~
-~05182~^~304~^32.^0^^~1~^~PAK~^^^^^^^^^^~08/01/2012~
-~05182~^~305~^230.^0^^~1~^~PAK~^^^^^^^^^^~08/01/2012~
-~05182~^~306~^248.^0^^~1~^~PAK~^^^^^^^^^^~08/01/2012~
-~05182~^~307~^101.^0^^~1~^~PAK~^^^^^^^^^^~08/01/2012~
-~05182~^~318~^35.^0^^~1~^~PAK~^^^^^^^^^^~08/01/2012~
-~05182~^~319~^10.^0^^~1~^~PAK~^^^^^^^^^^~08/01/2012~
-~05182~^~320~^10.^0^^~1~^~PAK~^^^^^^^^^^~08/01/2012~
-~05182~^~321~^0.^0^^~4~^~PIK~^^^^^^^^^^~08/01/2012~
-~05182~^~322~^0.^0^^~4~^~PIK~^^^^^^^^^^~08/01/2012~
-~05182~^~324~^14.^0^^~1~^~PAK~^^^^^^^^^^~08/01/2012~
-~05182~^~334~^0.^0^^~4~^~PIK~^^^^^^^^^^~08/01/2012~
-~05182~^~337~^0.^0^^~4~^~PIK~^^^^^^^^^^~08/01/2012~
-~05182~^~338~^0.^0^^~4~^~PIK~^^^^^^^^^^~08/01/2012~
-~05182~^~417~^9.^0^^~4~^~PIK~^^^^^^^^^^~08/01/2012~
-~05182~^~431~^0.^0^^~4~^~PIK~^^^^^^^^^^~08/01/2012~
-~05182~^~432~^9.^0^^~4~^~PIK~^^^^^^^^^^~08/01/2012~
-~05182~^~435~^9.^0^^~4~^~NC~^^^^^^^^^^~08/01/2012~
-~05182~^~601~^89.^0^^~1~^~PAK~^^^^^^^^^^~08/01/2012~
-~05183~^~208~^166.^0^^~4~^~NC~^^^^^^^^^^~03/01/2016~
-~05183~^~262~^0.^0^^~4~^~PIK~^^^^^^^^^^~08/01/2012~
-~05183~^~263~^0.^0^^~4~^~PIK~^^^^^^^^^^~08/01/2012~
-~05183~^~268~^695.^0^^~4~^~NC~^^^^^^^^^^~03/01/2016~
-~05183~^~301~^11.^0^^~1~^~PAK~^^^^^^^^^^~08/01/2012~
-~05183~^~304~^22.^0^^~1~^~PAK~^^^^^^^^^^~08/01/2012~
-~05183~^~305~^166.^0^^~1~^~PAK~^^^^^^^^^^~08/01/2012~
-~05183~^~306~^208.^0^^~1~^~PAK~^^^^^^^^^^~08/01/2012~
-~05183~^~307~^113.^0^^~1~^~PAK~^^^^^^^^^^~08/01/2012~
-~05183~^~318~^86.^0^^~1~^~PAK~^^^^^^^^^^~08/01/2012~
-~05183~^~319~^26.^0^^~1~^~PAK~^^^^^^^^^^~08/01/2012~
-~05183~^~320~^26.^0^^~1~^~PAK~^^^^^^^^^^~08/01/2012~
-~05183~^~321~^0.^0^^~4~^~PIK~^^^^^^^^^^~08/01/2012~
-~05183~^~322~^0.^0^^~4~^~PIK~^^^^^^^^^^~08/01/2012~
-~05183~^~324~^19.^0^^~1~^~PAK~^^^^^^^^^^~08/01/2012~
-~05183~^~334~^0.^0^^~4~^~PIK~^^^^^^^^^^~08/01/2012~
-~05183~^~337~^0.^0^^~4~^~PIK~^^^^^^^^^^~08/01/2012~
-~05183~^~338~^0.^0^^~4~^~PIK~^^^^^^^^^^~08/01/2012~
-~05183~^~417~^6.^0^^~4~^~PIK~^^^^^^^^^^~08/01/2012~
-~05183~^~431~^0.^0^^~4~^~PIK~^^^^^^^^^^~08/01/2012~
-~05183~^~432~^6.^0^^~4~^~PIK~^^^^^^^^^^~08/01/2012~
-~05183~^~435~^6.^0^^~4~^~NC~^^^^^^^^^^~08/01/2012~
-~05183~^~601~^87.^0^^~1~^~PAK~^^^^^^^^^^~08/01/2012~
-~05184~^~208~^206.^0^^~4~^~PIK~^^^^^^^^^^~08/01/2012~
-~05184~^~262~^0.^0^^~4~^~PIK~^^^^^^^^^^~08/01/2012~
-~05184~^~263~^0.^0^^~4~^~PIK~^^^^^^^^^^~08/01/2012~
-~05184~^~268~^864.^0^^~4~^~PIK~^^^^^^^^^^~08/01/2012~
-~05184~^~301~^17.^0^^~1~^~PAK~^^^^^^^^^^~08/01/2012~
-~05184~^~304~^27.^0^^~1~^~PAK~^^^^^^^^^^~08/01/2012~
-~05184~^~305~^215.^0^^~1~^~PAK~^^^^^^^^^^~08/01/2012~
-~05184~^~306~^228.^0^^~1~^~PAK~^^^^^^^^^^~08/01/2012~
-~05184~^~307~^105.^0^^~1~^~PAK~^^^^^^^^^^~08/01/2012~
-~05184~^~318~^47.^0^^~1~^~PAK~^^^^^^^^^^~08/01/2012~
-~05184~^~319~^14.^0^^~1~^~PAK~^^^^^^^^^^~08/01/2012~
-~05184~^~320~^14.^0^^~1~^~PAK~^^^^^^^^^^~08/01/2012~
-~05184~^~321~^0.^0^^~4~^~PIK~^^^^^^^^^^~08/01/2012~
-~05184~^~322~^0.^0^^~4~^~PIK~^^^^^^^^^^~08/01/2012~
-~05184~^~324~^15.^0^^~1~^~PAK~^^^^^^^^^^~08/01/2012~
-~05184~^~334~^0.^0^^~4~^~PIK~^^^^^^^^^^~08/01/2012~
-~05184~^~337~^0.^0^^~4~^~PIK~^^^^^^^^^^~08/01/2012~
-~05184~^~338~^0.^0^^~4~^~PIK~^^^^^^^^^^~08/01/2012~
-~05184~^~417~^9.^0^^~4~^~PIK~^^^^^^^^^^~08/01/2012~
-~05184~^~431~^0.^0^^~4~^~PIK~^^^^^^^^^^~08/01/2012~
-~05184~^~432~^9.^0^^~4~^~PIK~^^^^^^^^^^~08/01/2012~
-~05184~^~435~^9.^0^^~4~^~NC~^^^^^^^^^^~03/01/2009~
-~05184~^~601~^134.^0^^~1~^~PAK~^^^^^^^^^^~08/01/2012~
-~05185~^~208~^114.^0^^~4~^~NC~^^^^^^^^^^~08/01/2012~
-~05185~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~08/01/2012~
-~05185~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~08/01/2012~
-~05185~^~268~^479.^0^^~4~^~NC~^^^^^^^^^^~08/01/2012~
-~05185~^~301~^11.^4^0.^~1~^~A~^^^1^9.^12.^3^9.^12.^~2, 3~^~08/01/2012~
-~05185~^~304~^28.^4^1.^~1~^~A~^^^1^24.^31.^3^23.^32.^~2, 3~^~08/01/2012~
-~05185~^~305~^201.^4^6.^~1~^~A~^^^1^189.^213.^3^180.^221.^~2, 3~^~08/01/2012~
-~05185~^~306~^242.^10^5.^~1~^~A~^^^^215.^262.^^^^^~08/01/2012~
-~05185~^~307~^113.^4^6.^~1~^~A~^^^1^101.^130.^3^93.^132.^~2, 3~^~08/01/2012~
-~05185~^~318~^20.^0^^~1~^~AS~^^^^^^^^^^~08/01/2012~
-~05185~^~319~^6.^1^^~1~^~A~^^^^^^^^^^~08/01/2012~
-~05185~^~320~^6.^0^^~1~^~AS~^^^^^^^^^^~08/01/2012~
-~05185~^~321~^0.^0^^~7~^~Z~^^^^^^^^^^~08/01/2012~
-~05185~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~08/01/2012~
-~05185~^~324~^5.^1^^~1~^~A~^^^^^^^^^~1~^~08/01/2012~
-~05185~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~08/01/2012~
-~05185~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~08/01/2012~
-~05185~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~08/01/2012~
-~05185~^~417~^7.^0^^~4~^~BFPN~^^^^^^^^^^~08/01/2012~
-~05185~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~
-~05185~^~432~^7.^0^^~4~^~BFPN~^^^^^^^^^^~08/01/2012~
-~05185~^~435~^7.^0^^~4~^~NC~^^^^^^^^^^~08/01/2012~
-~05185~^~601~^57.^4^1.^~1~^~A~^^^1^55.^60.^3^53.^60.^~2, 3~^~08/01/2012~
-~05186~^~208~^147.^0^^~4~^~NC~^^^^^^^^^^~08/01/2012~
-~05186~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~12/01/2002~
-~05186~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~12/01/2002~
-~05186~^~268~^617.^0^^~4~^~NC~^^^^^^^^^^~08/01/2012~
-~05186~^~301~^9.^4^0.^~1~^~A~^^^1^8.^11.^3^7.^11.^~2, 3~^~08/01/2012~
-~05186~^~304~^32.^4^1.^~1~^~A~^^^1^29.^34.^3^28.^34.^~2, 3~^~08/01/2012~
-~05186~^~305~^230.^4^6.^~1~^~A~^^^1^215.^246.^3^208.^250.^~2, 3~^~08/01/2012~
-~05186~^~306~^249.^10^3.^~1~^~A~^^^^236.^265.^^^^^~08/01/2012~
-~05186~^~307~^99.^4^8.^~1~^~A~^^^1^82.^118.^3^72.^125.^~2, 3~^~08/01/2012~
-~05186~^~318~^11.^0^^~1~^~AS~^^^^^^^^^^~08/01/2012~
-~05186~^~319~^3.^1^^~1~^~A~^^^^^^^^^^~08/01/2012~
-~05186~^~320~^3.^0^^~1~^~AS~^^^^^^^^^^~08/01/2012~
-~05186~^~321~^0.^0^^~7~^~Z~^^^^^^^^^^~12/01/2002~
-~05186~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~12/01/2002~
-~05186~^~324~^10.^1^^~1~^~A~^^^^^^^^^~1~^~08/01/2012~
-~05186~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~12/01/2002~
-~05186~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~12/01/2002~
-~05186~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~12/01/2002~
-~05186~^~417~^10.^0^^~4~^~BFPN~^^^^^^^^^^~08/01/2012~
-~05186~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~
-~05186~^~432~^10.^0^^~4~^~BFPN~^^^^^^^^^^~08/01/2012~
-~05186~^~435~^10.^0^^~4~^~NC~^^^^^^^^^^~08/01/2012~
-~05186~^~601~^80.^4^2.^~1~^~A~^^^1^74.^88.^3^70.^88.^~2, 3~^~08/01/2012~
-~05187~^~208~^108.^0^^~4~^~NC~^^^^^^^^^^~08/01/2012~
-~05187~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~08/01/2012~
-~05187~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~08/01/2012~
-~05187~^~268~^453.^0^^~4~^~NC~^^^^^^^^^^~07/01/2015~
-~05187~^~301~^11.^4^0.^~1~^~A~^^^1^9.^13.^3^8.^13.^~4~^~08/01/2012~
-~05187~^~304~^25.^4^0.^~1~^~A~^^^1^23.^26.^3^22.^27.^~4~^~08/01/2012~
-~05187~^~305~^176.^4^15.^~1~^~A~^^^1^133.^204.^3^127.^224.^~4~^~08/01/2012~
-~05187~^~306~^226.^10^5.^~1~^~A~^^^^185.^243.^^^^^~08/01/2012~
-~05187~^~307~^124.^4^10.^~1~^~A~^^^1^101.^151.^3^90.^157.^~4~^~08/01/2012~
-~05187~^~318~^43.^0^^~1~^~AS~^^^^^^^^^^~08/01/2012~
-~05187~^~319~^13.^1^^~1~^~A~^^^^^^^^^^~08/01/2012~
-~05187~^~320~^13.^0^^~1~^~AS~^^^^^^^^^^~08/01/2012~
-~05187~^~321~^0.^0^^~7~^~Z~^^^^^^^^^^~08/01/2012~
-~05187~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~08/01/2012~
-~05187~^~324~^13.^1^^~1~^~A~^^^^^^^^^~1~^~08/01/2012~
-~05187~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~08/01/2012~
-~05187~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~08/01/2012~
-~05187~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~08/01/2012~
-~05187~^~417~^7.^0^^~4~^~BFPN~^^^^^^^^^^~08/01/2012~
-~05187~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~
-~05187~^~432~^7.^0^^~4~^~BFPN~^^^^^^^^^^~08/01/2012~
-~05187~^~435~^7.^0^^~4~^~NC~^^^^^^^^^^~08/01/2012~
-~05187~^~601~^79.^4^8.^~1~^~A~^^^1^54.^93.^3^52.^106.^~2, 3~^~08/01/2012~
-~05188~^~208~^173.^0^^~4~^~NC~^^^^^^^^^^~08/01/2012~
-~05188~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~12/01/2002~
-~05188~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~12/01/2002~
-~05188~^~268~^723.^0^^~4~^~NC~^^^^^^^^^^~08/01/2012~
-~05188~^~301~^17.^4^1.^~1~^~A~^^^1^14.^19.^3^13.^20.^~2, 3~^~08/01/2012~
-~05188~^~304~^27.^4^0.^~1~^~A~^^^1^25.^27.^3^25.^27.^~2, 3~^~08/01/2012~
-~05188~^~305~^212.^4^9.^~1~^~A~^^^1^198.^240.^3^181.^242.^~2, 3~^~08/01/2012~
-~05188~^~306~^227.^10^5.^~1~^~A~^^^^188.^240.^^^^^~08/01/2012~
-~05188~^~307~^104.^4^13.^~1~^~A~^^^1^65.^123.^3^61.^145.^~2, 3~^~08/01/2012~
-~05188~^~318~^18.^0^^~1~^~AS~^^^^^^^^^^~08/01/2012~
-~05188~^~319~^5.^1^^~1~^~A~^^^^^^^^^^~08/01/2012~
-~05188~^~320~^5.^0^^~1~^~AS~^^^^^^^^^^~08/01/2012~
-~05188~^~321~^0.^0^^~7~^~Z~^^^^^^^^^^~12/01/2002~
-~05188~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~12/01/2002~
-~05188~^~324~^10.^1^^~1~^~A~^^^^^^^^^~1~^~08/01/2012~
-~05188~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~12/01/2002~
-~05188~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~12/01/2002~
-~05188~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~12/01/2002~
-~05188~^~417~^9.^0^^~4~^~BFPN~^^^^^^^^^^~08/01/2012~
-~05188~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~
-~05188~^~432~^9.^0^^~4~^~BFPN~^^^^^^^^^^~08/01/2012~
-~05188~^~435~^9.^0^^~4~^~NC~^^^^^^^^^^~03/01/2009~
-~05188~^~601~^128.^4^12.^~1~^~A~^^^1^111.^164.^3^89.^166.^~2, 3~^~08/01/2012~
-~05190~^~208~^244.^0^^~4~^~NC~^^^^^^^^^^~03/01/2009~
-~05190~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~12/01/2002~
-~05190~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~12/01/2002~
-~05190~^~268~^1020.^0^^~4~^~NC~^^^^^^^^^^~03/01/2009~
-~05190~^~301~^33.^0^^~1~^^^^^^^^^^^~08/01/1979~
-~05190~^~304~^22.^0^^~1~^^^^^^^^^^^~08/01/1979~
-~05190~^~305~^189.^0^^~1~^^^^^^^^^^^~08/01/1979~
-~05190~^~306~^260.^0^^~1~^^^^^^^^^^^~08/01/1979~
-~05190~^~307~^73.^0^^~1~^^^^^^^^^^^~08/01/1979~
-~05190~^~318~^0.^0^^~1~^^^^^^^^^^^~08/01/1979~
-~05190~^~319~^0.^0^^~4~^~NR~^^^^^^^^^^~12/01/2002~
-~05190~^~320~^0.^0^^~4~^~NC~^^^^^^^^^^~03/01/2009~
-~05190~^~321~^0.^0^^~7~^~Z~^^^^^^^^^^~12/01/2002~
-~05190~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~12/01/2002~
-~05190~^~324~^1.^0^^~4~^~BFFN~^~05051~^^^^^^^^^~03/01/2009~
-~05190~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~12/01/2002~
-~05190~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~12/01/2002~
-~05190~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~12/01/2002~
-~05190~^~417~^8.^0^^~1~^^^^^^^^^^^~08/01/1979~
-~05190~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~
-~05190~^~432~^8.^0^^~1~^^^^^^^^^^^~03/01/2009~
-~05190~^~435~^8.^0^^~4~^~NC~^^^^^^^^^^~03/01/2009~
-~05190~^~601~^91.^0^^~1~^^^^^^^^^^^~08/01/1979~
-~05191~^~208~^157.^0^^~4~^~NC~^^^^^^^^^^~08/01/1979~
-~05191~^~268~^657.^0^^~4~^^^^^^^^^^^
-~05191~^~301~^13.^0^^~1~^^^^^^^^^^^~08/01/1979~
-~05191~^~304~^24.^0^^~1~^^^^^^^^^^^~08/01/1979~
-~05191~^~305~^186.^0^^~1~^^^^^^^^^^^~08/01/1979~
-~05191~^~306~^275.^0^^~1~^^^^^^^^^^^~08/01/1979~
-~05191~^~307~^59.^0^^~1~^^^^^^^^^^^~08/01/1979~
-~05191~^~318~^6.^0^^~1~^^^^^^^^^^^~08/01/1979~
-~05191~^~319~^2.^0^^~1~^^^^^^^^^^^~06/01/2002~
-~05191~^~320~^2.^0^^~1~^^^^^^^^^^^~06/01/2002~
-~05191~^~417~^7.^0^^~1~^^^^^^^^^^^~08/01/1979~
-~05191~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~
-~05191~^~432~^7.^0^^~1~^^^^^^^^^^^~08/01/1979~
-~05191~^~435~^7.^0^^~4~^~NC~^^^^^^^^^^~01/01/2001~
-~05191~^~601~^65.^0^^~1~^^^^^^^^^^^~08/01/1979~
-~05192~^~208~^189.^0^^~4~^~NC~^^^^^^^^^^~08/01/1979~
-~05192~^~268~^791.^0^^~4~^^^^^^^^^^^
-~05192~^~301~^21.^0^^~1~^^^^^^^^^^^~08/01/1979~
-~05192~^~304~^27.^0^^~1~^^^^^^^^^^^~08/01/1979~
-~05192~^~305~^210.^0^^~1~^^^^^^^^^^^~08/01/1979~
-~05192~^~306~^288.^0^^~1~^^^^^^^^^^^~08/01/1979~
-~05192~^~307~^63.^0^^~1~^^^^^^^^^^^~08/01/1979~
-~05192~^~318~^0.^0^^~1~^^^^^^^^^^^~08/01/1979~
-~05192~^~319~^0.^0^^~1~^^^^^^^^^^^~06/01/2002~
-~05192~^~320~^0.^0^^~1~^^^^^^^^^^^~06/01/2002~
-~05192~^~417~^6.^0^^~1~^^^^^^^^^^^~08/01/1979~
-~05192~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~
-~05192~^~432~^6.^0^^~1~^^^^^^^^^^^~08/01/1979~
-~05192~^~435~^6.^0^^~4~^~NC~^^^^^^^^^^~01/01/2001~
-~05192~^~601~^74.^0^^~1~^^^^^^^^^^^~08/01/1979~
-~05193~^~208~^144.^0^^~4~^~NC~^^^^^^^^^^~08/01/1979~
-~05193~^~268~^602.^0^^~4~^^^^^^^^^^^
-~05193~^~301~^17.^0^^~1~^^^^^^^^^^^~08/01/1979~
-~05193~^~304~^21.^0^^~1~^^^^^^^^^^^~08/01/1979~
-~05193~^~305~^177.^0^^~1~^^^^^^^^^^^~08/01/1979~
-~05193~^~306~^273.^0^^~1~^^^^^^^^^^^~08/01/1979~
-~05193~^~307~^74.^0^^~1~^^^^^^^^^^^~08/01/1979~
-~05193~^~318~^3.^0^^~1~^^^^^^^^^^^~08/01/1979~
-~05193~^~319~^1.^0^^~1~^^^^^^^^^^^~06/01/2002~
-~05193~^~320~^1.^0^^~1~^^^^^^^^^^^~06/01/2002~
-~05193~^~417~^10.^0^^~1~^^^^^^^^^^^~08/01/1979~
-~05193~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~
-~05193~^~432~^10.^0^^~1~^^^^^^^^^^^~08/01/1979~
-~05193~^~435~^10.^0^^~4~^~NC~^^^^^^^^^^~01/01/2001~
-~05193~^~601~^71.^0^^~1~^^^^^^^^^^^~08/01/1979~
-~05194~^~208~^208.^0^^~4~^~NC~^^^^^^^^^^~08/01/1979~
-~05194~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~12/01/2002~
-~05194~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~12/01/2002~
-~05194~^~268~^870.^0^^~4~^^^^^^^^^^^~03/01/2009~
-~05194~^~301~^32.^0^^~1~^^^^^^^^^^^~08/01/1979~
-~05194~^~304~^23.^0^^~1~^^^^^^^^^^^~08/01/1979~
-~05194~^~305~^199.^0^^~1~^^^^^^^^^^^~08/01/1979~
-~05194~^~306~^280.^0^^~1~^^^^^^^^^^^~08/01/1979~
-~05194~^~307~^77.^0^^~1~^^^^^^^^^^^~08/01/1979~
-~05194~^~318~^0.^0^^~1~^^^^^^^^^^^~08/01/1979~
-~05194~^~319~^0.^0^^~4~^~NR~^^^^^^^^^^~12/01/2002~
-~05194~^~320~^0.^0^^~4~^~NC~^^^^^^^^^^~03/01/2009~
-~05194~^~321~^0.^0^^~7~^~Z~^^^^^^^^^^~12/01/2002~
-~05194~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~12/01/2002~
-~05194~^~324~^4.^0^^~4~^~BFFN~^~05078~^^^^^^^^^~03/01/2009~
-~05194~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~12/01/2002~
-~05194~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~12/01/2002~
-~05194~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~12/01/2002~
-~05194~^~417~^9.^0^^~1~^^^^^^^^^^^~08/01/1979~
-~05194~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~
-~05194~^~432~^9.^0^^~1~^^^^^^^^^^^~03/01/2009~
-~05194~^~435~^9.^0^^~4~^~NC~^^^^^^^^^^~03/01/2009~
-~05194~^~601~^85.^0^^~1~^^^^^^^^^^^~08/01/1979~
-~05195~^~208~^197.^0^^~4~^~NC~^^^^^^^^^^~08/01/1979~
-~05195~^~268~^824.^0^^~4~^^^^^^^^^^^
-~05195~^~301~^14.^0^^~1~^^^^^^^^^^^~08/01/1979~
-~05195~^~304~^21.^0^^~1~^^^^^^^^^^^~08/01/1979~
-~05195~^~305~^165.^0^^~1~^^^^^^^^^^^~08/01/1979~
-~05195~^~306~^240.^0^^~1~^^^^^^^^^^^~08/01/1979~
-~05195~^~307~^55.^0^^~1~^^^^^^^^^^^~08/01/1979~
-~05195~^~318~^11.^0^^~1~^^^^^^^^^^^~08/01/1979~
-~05195~^~319~^3.^0^^~1~^^^^^^^^^^^~06/01/2002~
-~05195~^~320~^3.^0^^~1~^^^^^^^^^^^~06/01/2002~
-~05195~^~417~^7.^0^^~1~^^^^^^^^^^^~08/01/1979~
-~05195~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~
-~05195~^~432~^7.^0^^~1~^^^^^^^^^^^~08/01/1979~
-~05195~^~435~^7.^0^^~4~^~NC~^^^^^^^^^^~01/01/2001~
-~05195~^~601~^70.^0^^~1~^^^^^^^^^^^~08/01/1979~
-~05196~^~208~^229.^0^^~4~^~NC~^^^^^^^^^^~08/01/1979~
-~05196~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~12/01/2002~
-~05196~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~12/01/2002~
-~05196~^~268~^958.^0^^~4~^^^^^^^^^^^~03/01/2009~
-~05196~^~301~^24.^0^^~1~^^^^^^^^^^^~08/01/1979~
-~05196~^~304~^25.^0^^~1~^^^^^^^^^^^~08/01/1979~
-~05196~^~305~^197.^0^^~1~^^^^^^^^^^^~08/01/1979~
-~05196~^~306~^266.^0^^~1~^^^^^^^^^^^~08/01/1979~
-~05196~^~307~^61.^0^^~1~^^^^^^^^^^^~08/01/1979~
-~05196~^~318~^0.^0^^~1~^^^^^^^^^^^~08/01/1979~
-~05196~^~319~^0.^0^^~4~^~NR~^^^^^^^^^^~12/01/2002~
-~05196~^~320~^0.^0^^~4~^~NC~^^^^^^^^^^~03/01/2009~
-~05196~^~321~^0.^0^^~7~^~Z~^^^^^^^^^^~12/01/2002~
-~05196~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~12/01/2002~
-~05196~^~324~^4.^0^^~4~^~BFFN~^~05103~^^^^^^^^^~03/01/2009~
-~05196~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~12/01/2002~
-~05196~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~12/01/2002~
-~05196~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~12/01/2002~
-~05196~^~417~^6.^0^^~1~^^^^^^^^^^^~08/01/1979~
-~05196~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~
-~05196~^~432~^6.^0^^~1~^^^^^^^^^^^~03/01/2009~
-~05196~^~435~^6.^0^^~4~^~NC~^^^^^^^^^^~03/01/2009~
-~05196~^~601~^81.^0^^~1~^^^^^^^^^^^~08/01/1979~
-~05200~^~208~^172.^0^^~4~^~NC~^^^^^^^^^^~08/01/1979~
-~05200~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~12/01/2002~
-~05200~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~12/01/2002~
-~05200~^~268~^720.^0^^~4~^^^^^^^^^^^~03/01/2009~
-~05200~^~301~^22.^6^1.^~1~^^^^^^^^^^^~08/01/1979~
-~05200~^~304~^25.^6^0.^~1~^^^^^^^^^^^~08/01/1979~
-~05200~^~305~^198.^6^3.^~1~^^^^^^^^^^^~08/01/1979~
-~05200~^~306~^250.^6^1.^~1~^^^^^^^^^^^~08/01/1979~
-~05200~^~307~^66.^6^2.^~1~^^^^^^^^^^^~08/01/1979~
-~05200~^~318~^0.^2^^~1~^^^^^^^^^^^~08/01/1979~
-~05200~^~319~^0.^0^^~4~^~NR~^^^^^^^^^^~12/01/2002~
-~05200~^~320~^0.^0^^~4~^~NC~^^^^^^^^^^~03/01/2009~
-~05200~^~321~^0.^0^^~7~^~Z~^^^^^^^^^^~12/01/2002~
-~05200~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~12/01/2002~
-~05200~^~324~^1.^0^^~4~^~BFFN~^~05009~^^^^^^^^^~03/01/2009~
-~05200~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~12/01/2002~
-~05200~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~12/01/2002~
-~05200~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~12/01/2002~
-~05200~^~417~^7.^0^^~1~^^^^^^^^^^^~08/01/1979~
-~05200~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~
-~05200~^~432~^7.^0^^~1~^^^^^^^^^^^~03/01/2009~
-~05200~^~435~^7.^0^^~4~^~NC~^^^^^^^^^^~03/01/2009~
-~05200~^~601~^105.^6^5.^~1~^^^^^^^^^^^~08/01/1979~
-~05215~^~208~^113.^0^^~4~^~NC~^^^^^^^^^^~01/01/2013~
-~05215~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2013~
-~05215~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2013~
-~05215~^~268~^475.^0^^~4~^~NC~^^^^^^^^^^~01/01/2013~
-~05215~^~301~^11.^4^0.^~1~^~A~^^^^9.^13.^^^^^~01/01/2013~
-~05215~^~304~^25.^4^0.^~1~^~A~^^^^23.^26.^^^^^~01/01/2013~
-~05215~^~305~^176.^4^15.^~1~^~A~^^^^133.^204.^^^^^~01/01/2013~
-~05215~^~306~^226.^10^5.^~1~^~A~^^^^185.^243.^^^^^~01/01/2013~
-~05215~^~307~^124.^4^10.^~1~^~A~^^^^101.^151.^^^^^~01/01/2013~
-~05215~^~318~^43.^0^^~1~^~AS~^^^^^^^^^^~01/01/2013~
-~05215~^~319~^13.^1^^~1~^~A~^^^^^^^^^^~01/01/2013~
-~05215~^~320~^13.^0^^~1~^~AS~^^^^^^^^^^~01/01/2013~
-~05215~^~321~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2013~
-~05215~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2013~
-~05215~^~324~^13.^1^^~1~^~A~^^^^^^^^^~1~^~01/01/2013~
-~05215~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2013~
-~05215~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2013~
-~05215~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2013~
-~05215~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~
-~05215~^~601~^79.^4^8.^~1~^~A~^^^^54.^93.^^^^^~01/01/2013~
-~05216~^~208~^173.^0^^~4~^~NC~^^^^^^^^^^~01/01/2013~
-~05216~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2013~
-~05216~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2013~
-~05216~^~268~^723.^0^^~4~^~NC~^^^^^^^^^^~01/01/2013~
-~05216~^~301~^17.^4^1.^~1~^~A~^^^^14.^19.^^^^^~01/01/2013~
-~05216~^~304~^27.^4^0.^~1~^~A~^^^^25.^27.^^^^^~01/01/2013~
-~05216~^~305~^212.^4^9.^~1~^~A~^^^^198.^240.^^^^^~01/01/2013~
-~05216~^~306~^227.^10^5.^~1~^~A~^^^^188.^240.^^^^^~01/01/2013~
-~05216~^~307~^104.^4^13.^~1~^~A~^^^^65.^123.^^^^^~01/01/2013~
-~05216~^~318~^18.^0^^~1~^~AS~^^^^^^^^^^~01/01/2013~
-~05216~^~319~^5.^1^^~1~^~A~^^^^^^^^^^~01/01/2013~
-~05216~^~320~^5.^0^^~1~^~AS~^^^^^^^^^^~01/01/2013~
-~05216~^~321~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2013~
-~05216~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2013~
-~05216~^~324~^10.^1^^~1~^~A~^^^^^^^^^~1~^~01/01/2013~
-~05216~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2013~
-~05216~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2013~
-~05216~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2013~
-~05216~^~417~^9.^0^^~4~^~BFPN~^^^^^^^^^^~01/01/2013~
-~05216~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~
-~05216~^~432~^9.^0^^~4~^~BFPN~^^^^^^^^^^~01/01/2013~
-~05216~^~435~^9.^0^^~4~^~NC~^^^^^^^^^^~01/01/2013~
-~05216~^~601~^128.^4^12.^~1~^~A~^^^^111.^164.^^^^^~01/01/2013~
-~05219~^~208~^114.^0^^~4~^~NC~^^^^^^^^^^~01/01/2013~
-~05219~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2013~
-~05219~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2013~
-~05219~^~268~^479.^0^^~4~^~NC~^^^^^^^^^^~01/01/2013~
-~05219~^~301~^11.^4^0.^~1~^~A~^^^^9.^12.^^^^^~01/01/2013~
-~05219~^~304~^28.^4^1.^~1~^~A~^^^^24.^31.^^^^^~08/01/1979~
-~05219~^~305~^201.^4^6.^~1~^~A~^^^^189.^213.^^^^^~01/01/2013~
-~05219~^~306~^242.^10^5.^~1~^~A~^^^^215.^262.^^^^^~01/01/2013~
-~05219~^~307~^113.^4^6.^~1~^~A~^^^^101.^130.^^^^^~01/01/2013~
-~05219~^~318~^20.^0^^~1~^~AS~^^^^^^^^^^~01/01/2013~
-~05219~^~319~^6.^1^^~1~^~A~^^^^^^^^^^~01/01/2013~
-~05219~^~320~^6.^0^^~1~^~AS~^^^^^^^^^^~01/01/2013~
-~05219~^~321~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2013~
-~05219~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2013~
-~05219~^~324~^5.^1^^~1~^~A~^^^^^^^^^~1~^~01/01/2013~
-~05219~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2013~
-~05219~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2013~
-~05219~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2013~
-~05219~^~417~^7.^0^^~4~^~BFPN~^^^^^^^^^^~01/01/2013~
-~05219~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~
-~05219~^~432~^7.^0^^~4~^~BFPN~^^^^^^^^^^~01/01/2013~
-~05219~^~435~^7.^0^^~4~^~NC~^^^^^^^^^^~01/01/2013~
-~05219~^~601~^57.^4^1.^~1~^~A~^^^^55.^60.^^^^^~01/01/2013~
-~05220~^~208~^147.^0^^~4~^~NC~^^^^^^^^^^~01/01/2013~
-~05220~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~12/01/2002~
-~05220~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~12/01/2002~
-~05220~^~268~^617.^0^^~4~^~NC~^^^^^^^^^^~01/01/2013~
-~05220~^~301~^9.^4^0.^~1~^~A~^^^^8.^11.^^^^^~01/01/2013~
-~05220~^~304~^32.^4^1.^~1~^~A~^^^^29.^34.^^^^^~01/01/2013~
-~05220~^~305~^230.^4^6.^~1~^~A~^^^^215.^246.^^^^^~01/01/2013~
-~05220~^~306~^249.^10^3.^~1~^~A~^^^^236.^265.^^^^^~01/01/2013~
-~05220~^~307~^99.^4^8.^~1~^~A~^^^^82.^118.^^^^^~01/01/2013~
-~05220~^~318~^11.^0^^~1~^~AS~^^^^^^^^^^~01/01/2013~
-~05220~^~319~^3.^1^^~1~^~A~^^^^^^^^^^~01/01/2013~
-~05220~^~320~^3.^0^^~1~^~AS~^^^^^^^^^^~01/01/2013~
-~05220~^~321~^0.^0^^~7~^~Z~^^^^^^^^^^~12/01/2002~
-~05220~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~12/01/2002~
-~05220~^~324~^10.^1^^~1~^~A~^^^^^^^^^~1~^~01/01/2013~
-~05220~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~12/01/2002~
-~05220~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~12/01/2002~
-~05220~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~12/01/2002~
-~05220~^~417~^9.^0^^~4~^~BFPN~^^^^^^^^^^~01/01/2013~
-~05220~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~
-~05220~^~432~^9.^0^^~4~^~BFPN~^^^^^^^^^^~01/01/2013~
-~05220~^~435~^9.^0^^~4~^~NC~^^^^^^^^^^~01/01/2013~
-~05220~^~601~^80.^4^2.^~1~^~A~^^^^74.^88.^^^^^~01/01/2013~
-~05227~^~208~^115.^0^^~4~^~NC~^^^^^^^^^^~03/01/2016~
-~05227~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2013~
-~05227~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2013~
-~05227~^~268~^481.^0^^~4~^~NC~^^^^^^^^^^~03/01/2016~
-~05227~^~301~^11.^4^0.^~1~^~A~^^^^9.^12.^^^^^~01/01/2013~
-~05227~^~304~^28.^4^1.^~1~^~A~^^^^24.^31.^^^^^~01/01/2013~
-~05227~^~305~^201.^4^6.^~1~^~A~^^^^189.^213.^^^^^~01/01/2013~
-~05227~^~306~^242.^10^5.^~1~^~A~^^^^215.^262.^^^^^~01/01/2013~
-~05227~^~307~^113.^4^6.^~1~^~A~^^^^101.^130.^^^^^~01/01/2013~
-~05227~^~318~^20.^0^^~1~^~AS~^^^^^^^^^^~01/01/2013~
-~05227~^~319~^6.^1^^~1~^~A~^^^^^^^^^^~01/01/2013~
-~05227~^~320~^6.^0^^~1~^~AS~^^^^^^^^^^~01/01/2013~
-~05227~^~321~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2013~
-~05227~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2013~
-~05227~^~324~^5.^1^^~1~^~A~^^^^^^^^^~1~^~01/01/2013~
-~05227~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2013~
-~05227~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2013~
-~05227~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2013~
-~05227~^~417~^7.^0^^~4~^~BFPN~^^^^^^^^^^~01/01/2013~
-~05227~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~
-~05227~^~432~^7.^0^^~4~^~BFPN~^^^^^^^^^^~01/01/2013~
-~05227~^~435~^7.^0^^~4~^~NC~^^^^^^^^^^~01/01/2001~
-~05227~^~601~^57.^4^1.^~1~^~A~^^^^55.^60.^^^^^~01/01/2013~
-~05228~^~208~^147.^0^^~4~^~NC~^^^^^^^^^^~01/01/2013~
-~05228~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~12/01/2002~
-~05228~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~12/01/2002~
-~05228~^~268~^617.^0^^~4~^~NC~^^^^^^^^^^~01/01/2013~
-~05228~^~301~^9.^4^0.^~1~^~A~^^^^8.^11.^^^^^~01/01/2013~
-~05228~^~304~^32.^4^1.^~1~^~A~^^^^29.^34.^^^^^~01/01/2013~
-~05228~^~305~^230.^4^6.^~1~^~A~^^^^215.^246.^^^^^~01/01/2013~
-~05228~^~306~^249.^10^3.^~1~^~A~^^^^236.^265.^^^^^~01/01/2013~
-~05228~^~307~^99.^4^8.^~1~^~A~^^^^82.^118.^^^^^~01/01/2013~
-~05228~^~318~^11.^0^^~1~^~AS~^^^^^^^^^^~01/01/2013~
-~05228~^~319~^3.^1^^~1~^~A~^^^^^^^^^^~01/01/2013~
-~05228~^~320~^3.^0^^~1~^~AS~^^^^^^^^^^~01/01/2013~
-~05228~^~321~^0.^0^^~7~^~Z~^^^^^^^^^^~12/01/2002~
-~05228~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~12/01/2002~
-~05228~^~324~^10.^1^^~1~^~A~^^^^^^^^^~1~^~01/01/2013~
-~05228~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~12/01/2002~
-~05228~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~12/01/2002~
-~05228~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~12/01/2002~
-~05228~^~417~^10.^0^^~4~^~BFPN~^^^^^^^^^^~01/01/2013~
-~05228~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~
-~05228~^~432~^10.^0^^~4~^~BFPN~^^^^^^^^^^~01/01/2013~
-~05228~^~435~^10.^0^^~4~^~NC~^^^^^^^^^^~01/01/2013~
-~05228~^~601~^80.^4^2.^~1~^~A~^^^^74.^88.^^^^^~01/01/2013~
-~05236~^~208~^482.^0^^~4~^~NC~^^^^^^^^^^~08/01/1979~
-~05236~^~268~^2017.^0^^~4~^^^^^^^^^^^
-~05236~^~301~^32.^15^1.^~1~^^^^^^^^^^^~08/01/1979~
-~05236~^~304~^15.^15^0.^~1~^^^^^^^^^^^~08/01/1979~
-~05236~^~305~^133.^15^4.^~1~^^^^^^^^^^^~08/01/1979~
-~05236~^~306~^155.^15^3.^~1~^^^^^^^^^^^~08/01/1979~
-~05236~^~307~^44.^15^1.^~1~^^^^^^^^^^^~08/01/1979~
-~05236~^~318~^0.^3^0.^~1~^^^^^^^^^^^~08/01/1979~
-~05236~^~319~^0.^3^0.^~1~^^^^^^^^^^^~06/01/2002~
-~05236~^~320~^0.^3^0.^~1~^^^^^^^^^^^~06/01/2002~
-~05236~^~417~^4.^0^^~1~^^^^^^^^^^^~08/01/1979~
-~05236~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~
-~05236~^~432~^4.^0^^~1~^^^^^^^^^^^~08/01/1979~
-~05236~^~435~^4.^0^^~4~^~NC~^^^^^^^^^^~01/01/2001~
-~05236~^~601~^106.^15^2.^~1~^^^^^^^^^^^~08/01/1979~
-~05277~^~208~^165.^0^^~4~^~NC~^^^^^^^^^^~08/01/1979~
-~05277~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2003~
-~05277~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2003~
-~05277~^~268~^690.^0^^~4~^^^^^^^^^^^~03/01/2009~
-~05277~^~301~^14.^11^1.^~1~^^^^^^^^^^^~08/01/1979~
-~05277~^~304~^12.^1^^~1~^^^^^^^^^^^~08/01/1979~
-~05277~^~305~^111.^0^^~4~^^^^^^^^^^^~08/01/1979~
-~05277~^~306~^138.^12^13.^~1~^^^^^^^^^^^~08/01/1979~
-~05277~^~307~^503.^4^46.^~1~^^^^^^^^^^^~08/01/1979~
-~05277~^~318~^113.^0^^~4~^~NC~^^^^^^^^^^~04/01/2016~
-~05277~^~319~^34.^0^^~4~^~NR~^^^^^^^^^^~01/01/2003~
-~05277~^~320~^34.^0^^~4~^~NC~^^^^^^^^^^~03/01/2009~
-~05277~^~321~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2003~
-~05277~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2003~
-~05277~^~324~^5.^0^^~4~^~BFZN~^^^^^^^^^^~03/01/2009~
-~05277~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2003~
-~05277~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2003~
-~05277~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2003~
-~05277~^~417~^4.^0^^~4~^^^^^^^^^^^~08/01/1979~
-~05277~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~
-~05277~^~432~^4.^0^^~4~^^^^^^^^^^^~03/01/2009~
-~05277~^~435~^4.^0^^~4~^~NC~^^^^^^^^^^~03/01/2009~
-~05277~^~601~^62.^0^^~4~^^^^^^^^^^^~08/01/1979~
-~05282~^~208~^462.^0^^~4~^~NC~^^^^^^^^^^~08/01/1979~
-~05282~^~268~^1933.^0^^~4~^^^^^^^^^^^
-~05282~^~301~^70.^0^^~4~^^^^^^^^^^^~08/01/1979~
-~05282~^~304~^13.^0^^~4~^^^^^^^^^^^~08/01/1979~
-~05282~^~305~^200.^0^^~4~^^^^^^^^^^^~08/01/1979~
-~05282~^~306~^138.^0^^~4~^^^^^^^^^^^~08/01/1979~
-~05282~^~307~^697.^0^^~4~^^^^^^^^^^^~08/01/1979~
-~05282~^~318~^3333.^0^^~4~^^^^^^^^^^^~08/01/1979~
-~05282~^~319~^1001.^0^^~4~^^^^^^^^^^^~06/01/2002~
-~05282~^~320~^1001.^0^^~4~^^^^^^^^^^^~06/01/2002~
-~05282~^~417~^60.^0^^~4~^^^^^^^^^^^~08/01/1979~
-~05282~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~
-~05282~^~432~^60.^0^^~4~^^^^^^^^^^^~08/01/1979~
-~05282~^~435~^60.^0^^~4~^~NC~^^^^^^^^^^~01/01/2001~
-~05282~^~601~^150.^1^^~1~^^^^^^^^^^^~08/01/1979~
-~05284~^~208~^169.^0^^~4~^~NC~^^^^^^^^^^~08/01/2012~
-~05284~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2003~
-~05284~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2003~
-~05284~^~268~^706.^0^^~4~^~NC~^^^^^^^^^^~08/01/2012~
-~05284~^~301~^12.^9^0.^~1~^^^^^^^^^^^~08/01/1979~
-~05284~^~304~^20.^0^^~4~^^^^^^^^^^^~08/01/1979~
-~05284~^~305~^162.^0^^~4~^^^^^^^^^^^~08/01/1979~
-~05284~^~306~^224.^0^^~4~^^^^^^^^^^^~08/01/1979~
-~05284~^~307~^518.^0^^~8~^~LC~^^^^^^^^^^~08/01/2012~
-~05284~^~318~^0.^0^^~4~^^^^^^^^^^^~08/01/1979~
-~05284~^~319~^0.^0^^~4~^~NR~^^^^^^^^^^~01/01/2003~
-~05284~^~320~^0.^0^^~4~^~NC~^^^^^^^^^^~03/01/2009~
-~05284~^~321~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2003~
-~05284~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2003~
-~05284~^~324~^11.^0^^~4~^~NR~^^^^^^^^^^~03/01/2009~
-~05284~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2003~
-~05284~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2003~
-~05284~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2003~
-~05284~^~417~^6.^0^^~4~^^^^^^^^^^^~08/01/1979~
-~05284~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~
-~05284~^~432~^6.^0^^~4~^^^^^^^^^^^~03/01/2009~
-~05284~^~435~^6.^0^^~4~^~NC~^^^^^^^^^^~03/01/2009~
-~05284~^~601~^66.^0^^~4~^^^^^^^^^^^~08/01/1979~
-~05285~^~208~^138.^0^^~4~^~NC~^^^^^^^^^^~08/01/1979~
-~05285~^~268~^577.^0^^~4~^^^^^^^^^^^
-~05285~^~301~^1.^6^0.^~1~^^^^^^^^^^^~08/01/1979~
-~05285~^~304~^17.^0^^~4~^^^^^^^^^^^~08/01/1979~
-~05285~^~305~^240.^6^16.^~1~^^^^^^^^^^^~08/01/1979~
-~05285~^~306~^310.^6^9.^~1~^^^^^^^^^^^~08/01/1979~
-~05285~^~307~^850.^6^61.^~1~^^^^^^^^^^^~08/01/1979~
-~05285~^~318~^0.^0^^~4~^^^^^^^^^^^~08/01/1979~
-~05285~^~319~^0.^0^^~4~^^^^^^^^^^^~06/01/2002~
-~05285~^~320~^0.^0^^~4~^^^^^^^^^^^~06/01/2002~
-~05285~^~417~^5.^0^^~4~^^^^^^^^^^^~08/01/1979~
-~05285~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~
-~05285~^~432~^5.^0^^~4~^^^^^^^^^^^~08/01/1979~
-~05285~^~435~^5.^0^^~4~^~NC~^^^^^^^^^^~01/01/2001~
-~05285~^~601~^55.^0^^~4~^^^^^^^^^^^~08/01/1979~
-~05286~^~208~^67.^0^^~4~^~NC~^^^^^^^^^^~08/01/1979~
-~05286~^~268~^280.^0^^~4~^^^^^^^^^^^
-~05286~^~301~^14.^4^2.^~1~^^^^^^^^^^^~08/01/1979~
-~05286~^~304~^8.^4^0.^~1~^^^^^^^^^^^~08/01/1979~
-~05286~^~305~^81.^4^7.^~1~^^^^^^^^^^^~08/01/1979~
-~05286~^~306~^61.^0^^~4~^^^^^^^^^^^~08/01/1979~
-~05286~^~307~^554.^4^54.^~1~^^^^^^^^^^^~08/01/1979~
-~05286~^~318~^42.^4^12.^~1~^^^^^^^^^^^~08/01/1979~
-~05286~^~319~^13.^4^3.^~1~^^^^^^^^^^^~06/01/2002~
-~05286~^~320~^13.^4^3.^~1~^^^^^^^^^^^~06/01/2002~
-~05286~^~417~^4.^0^^~4~^^^^^^^^^^^~08/01/1979~
-~05286~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~
-~05286~^~432~^4.^0^^~4~^^^^^^^^^^^~08/01/1979~
-~05286~^~435~^4.^0^^~4~^~NC~^^^^^^^^^^~01/01/2001~
-~05286~^~601~^18.^0^^~4~^^^^^^^^^^^~08/01/1979~
-~05293~^~208~^126.^0^^~4~^~NC~^^^^^^^^^^~08/01/1979~
-~05293~^~268~^527.^0^^~4~^^^^^^^^^^^
-~05293~^~301~^9.^16^0.^~1~^^^^^^^^^^^~08/01/1979~
-~05293~^~304~^21.^5^1.^~1~^^^^^^^^^^^~08/01/1979~
-~05293~^~305~^214.^5^11.^~1~^^^^^^^^^^^~08/01/1979~
-~05293~^~306~^248.^17^14.^~1~^^^^^^^^^^^~08/01/1979~
-~05293~^~307~^397.^19^33.^~1~^^^^^^^^^^^~08/01/1979~
-~05293~^~318~^0.^0^^~1~^^^^^^^^^^^~08/01/1979~
-~05293~^~319~^0.^0^^~1~^^^^^^^^^^^~06/01/2002~
-~05293~^~320~^0.^0^^~1~^^^^^^^^^^^~06/01/2002~
-~05293~^~417~^5.^0^^~4~^^^^^^^^^^^~08/01/1979~
-~05293~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~
-~05293~^~432~^5.^0^^~4~^^^^^^^^^^^~08/01/1979~
-~05293~^~435~^5.^0^^~4~^~NC~^^^^^^^^^^~01/01/2001~
-~05293~^~601~^42.^13^1.^~1~^^^^^^^^^^^~08/01/1979~
-~05294~^~208~^157.^0^^~4~^~NC~^^^^^^^^^^~08/01/1979~
-~05294~^~268~^657.^0^^~4~^^^^^^^^^^^
-~05294~^~301~^8.^7^1.^~1~^^^^^^^^^^^~08/01/1979~
-~05294~^~304~^17.^1^^~1~^^^^^^^^^^^~08/01/1979~
-~05294~^~305~^171.^1^^~1~^^^^^^^^^^^~08/01/1979~
-~05294~^~306~^241.^7^12.^~1~^^^^^^^^^^^~08/01/1979~
-~05294~^~307~^437.^7^51.^~1~^^^^^^^^^^^~08/01/1979~
-~05294~^~318~^0.^0^^~1~^^^^^^^^^^^~08/01/1979~
-~05294~^~319~^0.^0^^~1~^^^^^^^^^^^~06/01/2002~
-~05294~^~320~^0.^0^^~1~^^^^^^^^^^^~06/01/2002~
-~05294~^~417~^6.^0^^~4~^^^^^^^^^^^~08/01/1979~
-~05294~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~
-~05294~^~432~^6.^0^^~4~^^^^^^^^^^^~08/01/1979~
-~05294~^~435~^6.^0^^~4~^~NC~^^^^^^^^^^~01/01/2001~
-~05294~^~601~^62.^6^5.^~1~^^^^^^^^^^^~08/01/1979~
-~05295~^~208~^120.^0^^~4~^~NC~^^^^^^^^^^~08/01/1979~
-~05295~^~268~^502.^0^^~4~^^^^^^^^^^^
-~05295~^~301~^1.^1^^~1~^^^^^^^^^^^~08/01/1979~
-~05295~^~304~^20.^0^^~4~^^^^^^^^^^^~08/01/1979~
-~05295~^~305~^158.^0^^~4~^^^^^^^^^^^~08/01/1979~
-~05295~^~306~^360.^6^4.^~1~^^^^^^^^^^^~08/01/1979~
-~05295~^~307~^678.^18^77.^~1~^^^^^^^^^^^~08/01/1979~
-~05295~^~318~^0.^0^^~4~^^^^^^^^^^^~08/01/1979~
-~05295~^~319~^0.^0^^~4~^^^^^^^^^^^~06/01/2002~
-~05295~^~320~^0.^0^^~4~^^^^^^^^^^^~06/01/2002~
-~05295~^~417~^7.^0^^~4~^^^^^^^^^^^~08/01/1979~
-~05295~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~
-~05295~^~432~^7.^0^^~4~^^^^^^^^^^^~08/01/1979~
-~05295~^~435~^7.^0^^~4~^~NC~^^^^^^^^^^~01/01/2001~
-~05295~^~601~^53.^0^^~4~^^^^^^^^^^^~08/01/1979~
-~05300~^~208~^279.^0^^~4~^~NC~^^^^^^^^^^~08/01/1979~
-~05300~^~268~^1167.^0^^~4~^^^^^^^^^^^
-~05300~^~301~^14.^11^1.^~1~^^^^^^^^^^^~08/01/1979~
-~05300~^~304~^15.^0^^~4~^^^^^^^^^^^~08/01/1979~
-~05300~^~305~^234.^11^22.^~1~^^^^^^^^^^^~08/01/1979~
-~05300~^~306~^260.^11^6.^~1~^^^^^^^^^^^~08/01/1979~
-~05300~^~307~^838.^11^28.^~1~^^^^^^^^^^^~08/01/1979~
-~05300~^~318~^40.^0^^~4~^^^^^^^^^^^~08/01/1979~
-~05300~^~319~^12.^0^^~4~^^^^^^^^^^^~06/01/2002~
-~05300~^~320~^12.^0^^~4~^^^^^^^^^^^~06/01/2002~
-~05300~^~417~^29.^0^^~4~^~RA~^^^^^^^^^^~10/01/1997~
-~05300~^~431~^20.^0^^~4~^~NC~^^^^^^^^^^~05/01/2000~
-~05300~^~432~^9.^0^^~4~^^^^^^^^^^^~08/01/1979~
-~05300~^~435~^43.^0^^~4~^~NC~^^^^^^^^^^~01/01/2001~
-~05300~^~601~^64.^0^^~4~^^^^^^^^^^^~08/01/1979~
-~05301~^~208~^272.^0^^~4~^~NC~^^^^^^^^^^~08/01/1979~
-~05301~^~268~^1138.^0^^~4~^^^^^^^^^^^
-~05301~^~301~^138.^19^^~1~^^^^^^^^^^^~08/01/1979~
-~05301~^~304~^12.^3^^~1~^^^^^^^^^^^~08/01/1979~
-~05301~^~305~^132.^3^^~1~^^^^^^^^^^^~08/01/1979~
-~05301~^~306~^104.^3^^~1~^^^^^^^^^^^~08/01/1979~
-~05301~^~307~^40.^3^^~1~^^^^^^^^^^^~08/01/1979~
-~05301~^~318~^245.^0^^~4~^^^^^^^^^^^~08/01/1979~
-~05301~^~319~^74.^0^^~4~^^^^^^^^^^^~06/01/2002~
-~05301~^~320~^74.^0^^~4~^^^^^^^^^^^~06/01/2002~
-~05301~^~417~^6.^0^^~4~^^^^^^^^^^^~08/01/1979~
-~05301~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~
-~05301~^~432~^6.^0^^~4~^^^^^^^^^^^~08/01/1979~
-~05301~^~435~^6.^0^^~4~^~NC~^^^^^^^^^^~01/01/2001~
-~05301~^~601~^130.^0^^~4~^^^^^^^^^^^~08/01/1979~
-~05302~^~208~^199.^0^^~4~^~NC~^^^^^^^^^^~08/01/1979~
-~05302~^~268~^833.^0^^~4~^^^^^^^^^^^
-~05302~^~301~^123.^16^^~1~^^^^^^^^^^^~08/01/1979~
-~05302~^~304~^13.^3^^~1~^^^^^^^^^^^~08/01/1979~
-~05302~^~305~^154.^3^^~1~^^^^^^^^^^^~08/01/1979~
-~05302~^~306~^128.^3^^~1~^^^^^^^^^^^~08/01/1979~
-~05302~^~307~^51.^3^^~1~^^^^^^^^^^^~08/01/1979~
-~05302~^~318~^107.^0^^~4~^^^^^^^^^^^~08/01/1979~
-~05302~^~319~^32.^0^^~4~^^^^^^^^^^^~06/01/2002~
-~05302~^~320~^32.^0^^~4~^^^^^^^^^^^~06/01/2002~
-~05302~^~417~^9.^0^^~4~^^^^^^^^^^^~08/01/1979~
-~05302~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~
-~05302~^~432~^9.^0^^~4~^^^^^^^^^^^~08/01/1979~
-~05302~^~435~^9.^0^^~4~^~NC~^^^^^^^^^^~01/01/2001~
-~05302~^~601~^104.^0^^~4~^^^^^^^^^^^~08/01/1979~
-~05303~^~208~^243.^0^^~4~^~NC~^^^^^^^^^^~08/01/1979~
-~05303~^~268~^1017.^0^^~4~^^^^^^^^^^^
-~05303~^~301~^187.^6^^~1~^^^^^^^^^^^~08/01/1979~
-~05303~^~304~^12.^0^^~4~^^^^^^^^^^^~08/01/1979~
-~05303~^~305~^132.^0^^~4~^^^^^^^^^^^~08/01/1979~
-~05303~^~306~^104.^0^^~4~^^^^^^^^^^^~08/01/1979~
-~05303~^~307~^40.^0^^~4~^^^^^^^^^^^~08/01/1979~
-~05303~^~318~^149.^0^^~4~^^^^^^^^^^^~08/01/1979~
-~05303~^~319~^45.^0^^~4~^^^^^^^^^^^~06/01/2002~
-~05303~^~320~^45.^0^^~4~^^^^^^^^^^^~06/01/2002~
-~05303~^~417~^5.^0^^~4~^^^^^^^^^^^~08/01/1979~
-~05303~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~
-~05303~^~432~^5.^0^^~4~^^^^^^^^^^^~08/01/1979~
-~05303~^~435~^5.^0^^~4~^~NC~^^^^^^^^^^~01/01/2001~
-~05303~^~601~^143.^7^7.^~1~^^^^^^^^^^^~08/01/1979~
-~05304~^~208~^201.^0^^~4~^~NC~^^^^^^^^^^~08/01/1979~
-~05304~^~268~^841.^0^^~4~^^^^^^^^^^^
-~05304~^~301~^145.^6^^~1~^^^^^^^^^^^~08/01/1979~
-~05304~^~304~^13.^0^^~4~^^^^^^^^^^^~08/01/1979~
-~05304~^~305~^115.^0^^~4~^^^^^^^^^^^~08/01/1979~
-~05304~^~306~^173.^0^^~4~^^^^^^^^^^^~08/01/1979~
-~05304~^~307~^48.^0^^~4~^^^^^^^^^^^~08/01/1979~
-~05304~^~318~^0.^0^^~4~^^^^^^^^^^^~08/01/1979~
-~05304~^~319~^0.^0^^~4~^^^^^^^^^^^~06/01/2002~
-~05304~^~320~^0.^0^^~4~^^^^^^^^^^^~06/01/2002~
-~05304~^~417~^7.^0^^~4~^^^^^^^^^^^~08/01/1979~
-~05304~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~
-~05304~^~432~^7.^0^^~4~^^^^^^^^^^^~08/01/1979~
-~05304~^~435~^7.^0^^~4~^~NC~^^^^^^^^^^~01/01/2001~
-~05304~^~601~^95.^0^^~4~^^^^^^^^^^^~08/01/1979~
-~05305~^~208~^148.^0^^~4~^~NC~^^^^^^^^^^~07/01/2010~
-~05305~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~09/01/2002~
-~05305~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~09/01/2002~
-~05305~^~268~^618.^0^^~4~^~NC~^^^^^^^^^^~07/01/2010~
-~05305~^~301~^19.^12^3.^~1~^~A~^^^1^3.^44.^11^10.^27.^~2, 3~^~04/01/2010~
-~05305~^~304~^23.^12^1.^~1~^~A~^^^1^18.^29.^11^20.^25.^~2, 3~^~04/01/2010~
-~05305~^~305~^200.^12^6.^~1~^~A~^^^1^165.^243.^11^184.^215.^~2, 3~^~04/01/2010~
-~05305~^~306~^237.^12^12.^~1~^~A~^^^1^195.^306.^11^208.^264.^~2, 3~^~04/01/2010~
-~05305~^~307~^58.^12^2.^~1~^~A~^^^1^46.^73.^11^51.^64.^~2, 3~^~04/01/2010~
-~05305~^~318~^66.^0^^~1~^~AS~^^^^^^^^^^~04/01/2010~
-~05305~^~319~^20.^3^6.^~1~^~A~^^^1^7.^30.^2^-8.^48.^~2, 3~^~04/01/2010~
-~05305~^~320~^20.^0^^~1~^~AS~^^^^^^^^^^~04/01/2010~
-~05305~^~321~^0.^0^^~7~^~Z~^^^^^^^^^^~09/01/2002~
-~05305~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~09/01/2002~
-~05305~^~324~^14.^0^^~4~^~NR~^^^^^^^^^^~07/01/2010~
-~05305~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~09/01/2002~
-~05305~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~09/01/2002~
-~05305~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~09/01/2002~
-~05305~^~417~^7.^0^^~4~^~BFNN~^^^^^^^^^^~04/01/2010~
-~05305~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~
-~05305~^~432~^7.^0^^~4~^~BFNN~^^^^^^^^^^~07/01/2010~
-~05305~^~435~^7.^0^^~4~^~NC~^^^^^^^^^^~07/01/2010~
-~05305~^~601~^69.^12^3.^~1~^~A~^^^1^54.^80.^11^62.^75.^~2, 3~^~04/01/2010~
-~05306~^~208~^203.^0^^~4~^~NC~^^^^^^^^^^~04/01/2010~
-~05306~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~09/01/2002~
-~05306~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~09/01/2002~
-~05306~^~268~^850.^0^^~4~^~NC~^^^^^^^^^^~04/01/2010~
-~05306~^~301~^28.^24^3.^~1~^~A~^^^1^4.^63.^23^20.^36.^~2, 3~^~04/01/2010~
-~05306~^~304~^30.^24^0.^~1~^~A~^^^1^24.^36.^23^27.^31.^~2, 3~^~04/01/2010~
-~05306~^~305~^254.^24^6.^~1~^~A~^^^1^206.^314.^23^239.^267.^~2, 3~^~04/01/2010~
-~05306~^~306~^294.^24^10.^~1~^~A~^^^1^214.^379.^23^273.^314.^~2, 3~^~04/01/2010~
-~05306~^~307~^78.^24^3.^~1~^~A~^^^1^53.^106.^23^71.^84.^~2, 3~^~04/01/2010~
-~05306~^~318~^79.^0^^~1~^~AS~^^^^^^^^^^~04/01/2010~
-~05306~^~319~^24.^6^4.^~1~^~A~^^^1^8.^35.^5^10.^36.^~2, 3~^~04/01/2010~
-~05306~^~320~^24.^0^^~1~^~AS~^^^^^^^^^^~04/01/2010~
-~05306~^~321~^0.^0^^~7~^~Z~^^^^^^^^^^~09/01/2002~
-~05306~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~09/01/2002~
-~05306~^~324~^8.^0^^~4~^~NR~^^^^^^^^^^~03/01/2009~
-~05306~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~09/01/2002~
-~05306~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~09/01/2002~
-~05306~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~09/01/2002~
-~05306~^~417~^7.^0^^~4~^~BFNN~^^^^^^^^^^~04/01/2010~
-~05306~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~
-~05306~^~432~^7.^0^^~4~^~BFNN~^^^^^^^^^^~04/01/2010~
-~05306~^~435~^7.^0^^~4~^~NC~^^^^^^^^^^~04/01/2010~
-~05306~^~601~^93.^24^3.^~1~^~A~^^^1^58.^121.^23^84.^100.^~2, 3~^~04/01/2010~
-~05307~^~208~^200.^0^^~4~^~NC~^^^^^^^^^^~08/01/1979~
-~05307~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~10/01/2002~
-~05307~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~10/01/2002~
-~05307~^~268~^837.^0^^~4~^^^^^^^^^^^
-~05307~^~301~^11.^0^^~1~^^^^^^^^^^^~08/01/1979~
-~05307~^~304~^18.^0^^~1~^^^^^^^^^^^~08/01/1979~
-~05307~^~305~^140.^0^^~1~^^^^^^^^^^^~08/01/1979~
-~05307~^~306~^236.^0^^~1~^^^^^^^^^^^~08/01/1979~
-~05307~^~307~^61.^0^^~1~^^^^^^^^^^^~08/01/1979~
-~05307~^~318~^108.^0^^~1~^^^^^^^^^^^~08/01/1979~
-~05307~^~319~^32.^0^^~4~^~NR~^^^^^^^^^^~10/01/2002~
-~05307~^~320~^32.^0^^~4~^~NC~^^^^^^^^^^~04/01/2003~
-~05307~^~321~^0.^0^^~7~^~Z~^^^^^^^^^^~10/01/2002~
-~05307~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~10/01/2002~
-~05307~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~10/01/2002~
-~05307~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~10/01/2002~
-~05307~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~10/01/2002~
-~05307~^~417~^3.^0^^~1~^^^^^^^^^^^~08/01/1979~
-~05307~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~
-~05307~^~432~^3.^0^^~1~^^^^^^^^^^^~04/01/2003~
-~05307~^~435~^3.^0^^~4~^~NC~^^^^^^^^^^~04/01/2003~
-~05307~^~601~^101.^0^^~1~^^^^^^^^^^^~08/01/1979~
-~05308~^~208~^259.^0^^~4~^~NC~^^^^^^^^^^~03/01/2009~
-~05308~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~10/01/2002~
-~05308~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~10/01/2002~
-~05308~^~268~^1085.^0^^~4~^~NC~^^^^^^^^^^~03/01/2009~
-~05308~^~301~^13.^0^^~1~^^^^^^^^^^^~08/01/1979~
-~05308~^~304~^18.^0^^~1~^^^^^^^^^^^~08/01/1979~
-~05308~^~305~^146.^0^^~1~^^^^^^^^^^^~08/01/1979~
-~05308~^~306~^245.^0^^~1~^^^^^^^^^^^~08/01/1979~
-~05308~^~307~^64.^0^^~1~^^^^^^^^^^^~08/01/1979~
-~05308~^~318~^106.^0^^~1~^^^^^^^^^^^~08/01/2004~
-~05308~^~319~^32.^0^^~4~^~NR~^^^^^^^^^^~10/01/2004~
-~05308~^~320~^32.^0^^~4~^~NC~^^^^^^^^^^~03/01/2009~
-~05308~^~321~^0.^0^^~7~^~Z~^^^^^^^^^^~10/01/2002~
-~05308~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~10/01/2002~
-~05308~^~324~^2.^0^^~4~^~BFFN~^~05009~^^^^^^^^^~03/01/2009~
-~05308~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~10/01/2002~
-~05308~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~10/01/2002~
-~05308~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~10/01/2002~
-~05308~^~417~^2.^0^^~1~^^^^^^^^^^^~08/01/1979~
-~05308~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~
-~05308~^~432~^2.^0^^~1~^^^^^^^^^^^~03/01/2009~
-~05308~^~435~^2.^0^^~4~^~NC~^^^^^^^^^^~03/01/2009~
-~05308~^~601~^131.^0^^~1~^^^^^^^^^^^~08/01/1979~
-~05309~^~208~^116.^0^^~4~^~NC~^^^^^^^^^^~08/01/1979~
-~05309~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~10/01/2002~
-~05309~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~10/01/2002~
-~05309~^~268~^485.^0^^~4~^^^^^^^^^^^
-~05309~^~301~^12.^0^^~1~^^^^^^^^^^^~08/01/1979~
-~05309~^~304~^21.^0^^~1~^^^^^^^^^^^~08/01/1979~
-~05309~^~305~^160.^0^^~1~^^^^^^^^^^^~08/01/1979~
-~05309~^~306~^269.^0^^~1~^^^^^^^^^^^~08/01/1979~
-~05309~^~307~^68.^0^^~1~^^^^^^^^^^^~08/01/1979~
-~05309~^~318~^75.^0^^~1~^^^^^^^^^^^~08/01/1979~
-~05309~^~319~^22.^0^^~4~^~NR~^^^^^^^^^^~10/01/2002~
-~05309~^~320~^22.^0^^~4~^~NC~^^^^^^^^^^~04/01/2003~
-~05309~^~321~^0.^0^^~7~^~Z~^^^^^^^^^^~10/01/2002~
-~05309~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~10/01/2002~
-~05309~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~10/01/2002~
-~05309~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~10/01/2002~
-~05309~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~10/01/2002~
-~05309~^~417~^3.^0^^~1~^^^^^^^^^^^~08/01/1979~
-~05309~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~
-~05309~^~432~^3.^0^^~1~^^^^^^^^^^^~04/01/2003~
-~05309~^~435~^3.^0^^~4~^~NC~^^^^^^^^^^~04/01/2003~
-~05309~^~601~^91.^0^^~1~^^^^^^^^^^^~08/01/1979~
-~05310~^~208~^134.^0^^~4~^~NC~^^^^^^^^^^~08/01/1979~
-~05310~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~10/01/2002~
-~05310~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~10/01/2002~
-~05310~^~268~^561.^0^^~4~^^^^^^^^^^^~03/01/2009~
-~05310~^~301~^13.^0^^~1~^^^^^^^^^^^~08/01/1979~
-~05310~^~304~^19.^0^^~1~^^^^^^^^^^^~08/01/1979~
-~05310~^~305~^149.^0^^~1~^^^^^^^^^^^~08/01/1979~
-~05310~^~306~^250.^0^^~1~^^^^^^^^^^^~08/01/1979~
-~05310~^~307~^63.^0^^~1~^^^^^^^^^^^~08/01/1979~
-~05310~^~318~^65.^0^^~1~^^^^^^^^^^^~08/01/2004~
-~05310~^~319~^20.^0^^~4~^~NR~^^^^^^^^^^~10/01/2004~
-~05310~^~320~^20.^0^^~4~^~NC~^^^^^^^^^^~03/01/2009~
-~05310~^~321~^0.^0^^~7~^~Z~^^^^^^^^^^~10/01/2002~
-~05310~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~10/01/2002~
-~05310~^~324~^5.^0^^~4~^~BFZN~^^^^^^^^^^~03/01/2009~
-~05310~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~10/01/2002~
-~05310~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~10/01/2002~
-~05310~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~10/01/2002~
-~05310~^~417~^2.^0^^~1~^^^^^^^^^^^~08/01/1979~
-~05310~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~
-~05310~^~432~^2.^0^^~1~^^^^^^^^^^^~03/01/2009~
-~05310~^~435~^2.^0^^~4~^~NC~^^^^^^^^^^~03/01/2009~
-~05310~^~601~^106.^0^^~1~^^^^^^^^^^^~08/01/1979~
-~05311~^~208~^185.^0^^~4~^~NC~^^^^^^^^^^~03/01/2009~
-~05311~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~12/01/2002~
-~05311~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~12/01/2002~
-~05311~^~268~^772.^0^^~4~^~NC~^^^^^^^^^^~03/01/2009~
-~05311~^~301~^14.^0^^~1~^^^^^^^^^^^~03/01/2009~
-~05311~^~304~^19.^0^^~1~^^^^^^^^^^^~03/01/2009~
-~05311~^~305~^153.^0^^~1~^^^^^^^^^^^~03/01/2009~
-~05311~^~306~^153.^0^^~1~^^^^^^^^^^^~03/01/2009~
-~05311~^~307~^482.^0^^~4~^~T~^^^^^^^^^^~08/01/2011~
-~05311~^~318~^177.^0^^~4~^~NC~^^^^^^^^^^~08/01/2011~
-~05311~^~319~^53.^0^^~4~^~NR~^^^^^^^^^^~10/01/2004~
-~05311~^~320~^53.^0^^~4~^~NC~^^^^^^^^^^~03/01/2009~
-~05311~^~321~^0.^0^^~7~^~Z~^^^^^^^^^^~12/01/2002~
-~05311~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~12/01/2002~
-~05311~^~324~^5.^0^^~4~^~BFZN~^^^^^^^^^^~03/01/2009~
-~05311~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~12/01/2002~
-~05311~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~12/01/2002~
-~05311~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~12/01/2002~
-~05311~^~417~^2.^0^^~1~^^^^^^^^^^^~03/01/2009~
-~05311~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2005~
-~05311~^~432~^2.^0^^~1~^^^^^^^^^^^~03/01/2009~
-~05311~^~435~^2.^0^^~4~^~NC~^^^^^^^^^^~03/01/2009~
-~05311~^~601~^50.^0^^~4~^^^^^^^^^^^~03/01/2009~
-~05312~^~208~^211.^0^^~4~^~NC~^^^^^^^^^^~05/01/2004~
-~05312~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2004~
-~05312~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2004~
-~05312~^~268~^884.^0^^~4~^~NC~^^^^^^^^^^~05/01/2004~
-~05312~^~301~^28.^3^4.^~1~^~A~^^^1^23.^36.^2^10.^44.^~2, 3~^~04/01/2004~
-~05312~^~304~^20.^3^1.^~1~^~A~^^^1^18.^22.^2^15.^24.^~2, 3~^~04/01/2004~
-~05312~^~305~^205.^3^24.^~1~^~A~^^^1^157.^230.^2^101.^309.^~2, 3~^~04/01/2004~
-~05312~^~306~^190.^3^21.^~1~^~A~^^^1^147.^216.^2^97.^282.^~2, 3~^~04/01/2004~
-~05312~^~307~^615.^3^140.^~1~^~A~^^^1^455.^894.^2^12.^1217.^~2, 3~^~04/01/2004~
-~05312~^~318~^58.^0^^~1~^~AS~^^^^^^^^^^~04/01/2004~
-~05312~^~319~^17.^3^3.^~1~^~A~^^^1^11.^22.^2^3.^31.^~1, 2, 3~^~04/01/2004~
-~05312~^~320~^17.^0^^~1~^~AS~^^^^^^^^^^~04/01/2004~
-~05312~^~321~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2004~
-~05312~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2004~
-~05312~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2004~
-~05312~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2004~
-~05312~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2004~
-~05312~^~417~^10.^3^1.^~1~^~A~^^^1^8.^13.^2^3.^16.^~1, 2, 3~^~04/01/2004~
-~05312~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2004~
-~05312~^~432~^10.^3^1.^~1~^~A~^^^1^8.^13.^2^3.^16.^^~05/01/2004~
-~05312~^~435~^10.^0^^~4~^~NC~^^^^^^^^^^~06/01/2008~
-~05312~^~601~^126.^3^5.^~1~^~A~^^^1^115.^135.^2^100.^151.^~2, 3~^~04/01/2004~
-~05313~^~208~^248.^0^^~4~^~NC~^^^^^^^^^^~05/01/2004~
-~05313~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2004~
-~05313~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2004~
-~05313~^~268~^1039.^0^^~4~^~NC~^^^^^^^^^^~05/01/2004~
-~05313~^~301~^38.^3^5.^~1~^~A~^^^1^30.^48.^2^15.^60.^~2, 3~^~04/01/2004~
-~05313~^~304~^27.^3^3.^~1~^~A~^^^1^21.^32.^2^12.^40.^~2, 3~^~04/01/2004~
-~05313~^~305~^272.^3^32.^~1~^~A~^^^1^232.^336.^2^133.^410.^~2, 3~^~04/01/2004~
-~05313~^~306~^254.^3^30.^~1~^~A~^^^1^220.^315.^2^123.^385.^~2, 3~^~04/01/2004~
-~05313~^~307~^837.^3^240.^~1~^~A~^^^1^495.^1300.^2^-196.^1870.^~2, 3~^~04/01/2004~
-~05313~^~318~^68.^0^^~1~^~AS~^^^^^^^^^^~04/01/2004~
-~05313~^~319~^20.^3^2.^~1~^~A~^^^1^15.^25.^2^7.^33.^~2, 3~^~04/01/2004~
-~05313~^~320~^20.^0^^~1~^~AS~^^^^^^^^^^~04/01/2004~
-~05313~^~321~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2004~
-~05313~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2004~
-~05313~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2004~
-~05313~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2004~
-~05313~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2004~
-~05313~^~417~^12.^3^1.^~1~^~A~^^^1^8.^15.^2^3.^20.^~1, 2, 3~^~04/01/2004~
-~05313~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2004~
-~05313~^~432~^12.^3^1.^~1~^~A~^^^1^8.^15.^2^3.^20.^^~05/01/2004~
-~05313~^~435~^12.^0^^~4~^~NC~^^^^^^^^^^~07/01/2004~
-~05313~^~601~^156.^3^14.^~1~^~A~^^^1^128.^174.^2^95.^216.^~2, 3~^~04/01/2004~
-~05314~^~208~^108.^0^^~4~^~NC~^^^^^^^^^^~04/01/2013~
-~05314~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2009~
-~05314~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2009~
-~05314~^~268~^453.^0^^~4~^~NC~^^^^^^^^^^~04/01/2013~
-~05314~^~301~^5.^6^0.^~1~^~A~^^^1^4.^7.^5^4.^6.^~2, 3~^~04/01/2013~
-~05314~^~304~^25.^6^0.^~1~^~A~^^^1^22.^27.^5^23.^26.^~2, 3~^~04/01/2013~
-~05314~^~305~^198.^6^9.^~1~^~A~^^^1^169.^231.^5^172.^222.^~2, 3~^~04/01/2013~
-~05314~^~306~^332.^6^25.^~1~^~A~^^^1^252.^399.^5^267.^396.^~2, 3~^~04/01/2013~
-~05314~^~307~^173.^6^12.^~1~^~A~^^^1^128.^220.^5^141.^205.^~2, 3~^~04/01/2013~
-~05314~^~318~^36.^0^^~1~^~AS~^^^^^^^^^^~06/01/2013~
-~05314~^~319~^11.^2^^~1~^~A~^^^1^8.^13.^^^^^~04/01/2009~
-~05314~^~320~^11.^0^^~1~^~AS~^^^^^^^^^^~06/01/2013~
-~05314~^~321~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2009~
-~05314~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2009~
-~05314~^~324~^2.^0^^~4~^~BFPN~^~05071~^^^^^^^^^~04/01/2013~
-~05314~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2009~
-~05314~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2009~
-~05314~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2009~
-~05314~^~417~^8.^0^^~4~^~BFPN~^^^^^^^^^^~05/01/2013~
-~05314~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2009~
-~05314~^~432~^8.^0^^~4~^~BFPN~^^^^^^^^^^~05/01/2013~
-~05314~^~435~^8.^0^^~4~^~NC~^^^^^^^^^^~05/01/2013~
-~05314~^~601~^64.^3^1.^~1~^~A~^^^1^62.^66.^2^58.^69.^~2, 3~^~04/01/2013~
-~05315~^~208~^202.^0^^~4~^~NC~^^^^^^^^^^~05/01/1997~
-~05315~^~268~^845.^0^^~4~^^^^^^^^^^^
-~05315~^~301~^8.^2^^~1~^~A~^^^^^^^^^^~05/01/1997~
-~05315~^~307~^84.^2^^~1~^~A~^^^^^^^^^^~05/01/1997~
-~05315~^~601~^136.^2^^~1~^~A~^^^^^^^^^^~05/01/1997~
-~05316~^~208~^140.^0^^~4~^~NC~^^^^^^^^^^~06/01/1997~
-~05316~^~268~^586.^0^^~4~^^^^^^^^^^^
-~05316~^~301~^9.^2^^~1~^~A~^^^^^^^^^^~06/01/1997~
-~05316~^~307~^105.^2^^~1~^~A~^^^^^^^^^^~06/01/1997~
-~05316~^~601~^143.^8^4.^~1~^~A~^^^^^^^^^^~06/01/1997~
-~05317~^~208~^217.^0^^~4~^~NC~^^^^^^^^^^~06/01/1997~
-~05317~^~268~^908.^0^^~4~^^^^^^^^^^^
-~05317~^~301~^10.^2^^~1~^~A~^^^^^^^^^^~06/01/1997~
-~05317~^~307~^110.^2^^~1~^~A~^^^^^^^^^^~06/01/1997~
-~05317~^~601~^114.^2^^~1~^~A~^^^^^^^^^^~06/01/1997~
-~05318~^~208~^178.^0^^~4~^~NC~^^^^^^^^^^~06/01/1997~
-~05318~^~268~^745.^0^^~4~^^^^^^^^^^^
-~05318~^~301~^10.^2^^~1~^~A~^^^^^^^^^^~06/01/1997~
-~05318~^~307~^108.^2^^~1~^~A~^^^^^^^^^^~06/01/1997~
-~05318~^~601~^105.^8^3.^~1~^~A~^^^^^^^^^^~06/01/1997~
-~05319~^~208~^172.^0^^~4~^~NC~^^^^^^^^^^~05/01/2012~
-~05319~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2012~
-~05319~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2012~
-~05319~^~268~^719.^0^^~4~^~NC~^^^^^^^^^^~05/01/2012~
-~05319~^~301~^20.^0^^~4~^~BFNN~^^^^^^^^^^~05/01/2012~
-~05319~^~304~^23.^0^^~4~^~BFNN~^^^^^^^^^^~05/01/2012~
-~05319~^~305~^248.^0^^~4~^~BFNN~^^^^^^^^^^~05/01/2012~
-~05319~^~306~^291.^0^^~4~^~BFNN~^^^^^^^^^^~05/01/2012~
-~05319~^~307~^403.^0^^~4~^~BFNN~^^^^^^^^^^~05/01/2012~
-~05319~^~318~^33.^0^^~4~^~NC~^^^^^^^^^^~07/01/2013~
-~05319~^~319~^10.^0^^~4~^~BFSN~^^^^^^^^^^~05/01/2012~
-~05319~^~320~^10.^0^^~4~^~NC~^^^^^^^^^^~07/01/2013~
-~05319~^~321~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2012~
-~05319~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2012~
-~05319~^~324~^0.^0^^~4~^~BFFN~^^^^^^^^^^~05/01/2013~
-~05319~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2012~
-~05319~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2012~
-~05319~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2012~
-~05319~^~417~^9.^4^1.^~1~^~A~^^^1^6.^14.^3^2.^15.^~2, 3~^~05/01/2012~
-~05319~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2013~
-~05319~^~432~^9.^4^1.^~1~^~A~^^^1^6.^14.^3^2.^15.^~2, 3~^~05/01/2012~
-~05319~^~435~^9.^0^^~4~^~NC~^^^^^^^^^^~05/01/2013~
-~05319~^~601~^155.^0^^~4~^~BFSN~^^^^^^^^^^~05/01/2012~
-~05320~^~208~^242.^0^^~4~^~NC~^^^^^^^^^^~10/01/2005~
-~05320~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2004~
-~05320~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2004~
-~05320~^~268~^1013.^0^^~4~^~NC~^^^^^^^^^^~10/01/2005~
-~05320~^~301~^28.^10^4.^~1~^~A~^^^1^14.^61.^9^18.^38.^~4~^~04/01/2004~
-~05320~^~304~^21.^10^0.^~1~^~A~^^^1^18.^25.^9^19.^22.^~4~^~04/01/2004~
-~05320~^~305~^233.^10^7.^~1~^~A~^^^1^198.^270.^9^216.^249.^~4~^~04/01/2004~
-~05320~^~306~^218.^10^5.^~1~^~A~^^^1^192.^244.^9^205.^230.^~4~^~04/01/2004~
-~05320~^~307~^559.^10^71.^~1~^~A~^^^1^382.^1160.^9^397.^721.^~4~^~04/01/2004~
-~05320~^~318~^69.^0^^~1~^~AS~^^^^^^^^^^~04/01/2004~
-~05320~^~319~^21.^5^2.^~1~^~A~^^^1^11.^25.^4^13.^27.^~1, 4~^~04/01/2004~
-~05320~^~320~^21.^0^^~1~^~AS~^^^^^^^^^^~04/01/2004~
-~05320~^~321~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2004~
-~05320~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2004~
-~05320~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2004~
-~05320~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2004~
-~05320~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2004~
-~05320~^~417~^10.^10^0.^~1~^~A~^^^1^8.^16.^9^8.^12.^~1, 4~^~04/01/2004~
-~05320~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2004~
-~05320~^~432~^10.^10^0.^~1~^~A~^^^1^8.^16.^9^8.^12.^^~10/01/2005~
-~05320~^~435~^10.^0^^~4~^~NC~^^^^^^^^^^~10/01/2005~
-~05320~^~601~^136.^10^5.^~1~^~A~^^^1^115.^170.^9^123.^147.^~4~^~04/01/2004~
-~05323~^~208~^292.^0^^~4~^~NC~^^^^^^^^^^~03/01/2007~
-~05323~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2007~
-~05323~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2007~
-~05323~^~268~^1222.^0^^~4~^~NC~^^^^^^^^^^~03/01/2007~
-~05323~^~301~^20.^6^3.^~1~^~A~^^^1^11.^34.^5^12.^28.^~2, 3~^~02/01/2007~
-~05323~^~304~^25.^6^0.^~1~^~A~^^^1^21.^28.^5^22.^27.^~2, 3~^~02/01/2007~
-~05323~^~305~^196.^6^6.^~1~^~A~^^^1^166.^214.^5^178.^213.^~2, 3~^~02/01/2007~
-~05323~^~306~^248.^6^8.^~1~^~A~^^^1^216.^274.^5^226.^268.^~2, 3~^~02/01/2007~
-~05323~^~307~^518.^6^17.^~1~^~A~^^^1^442.^568.^5^471.^563.^~2, 3~^~02/01/2007~
-~05323~^~318~^37.^0^^~1~^~AS~^^^^^^^^^^~02/01/2007~
-~05323~^~319~^11.^1^^~1~^~A~^^^^^^^^^~1~^~02/01/2007~
-~05323~^~320~^11.^0^^~1~^~AS~^^^^^^^^^^~02/01/2007~
-~05323~^~321~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2007~
-~05323~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2007~
-~05323~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2007~
-~05323~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2007~
-~05323~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2007~
-~05323~^~417~^5.^0^^~4~^~BFNN~^^^^^^^^^^~03/01/2007~
-~05323~^~431~^0.^0^^~4~^~BFNN~^^^^^^^^^^~03/01/2007~
-~05323~^~432~^5.^0^^~4~^~BFNN~^^^^^^^^^^~03/01/2007~
-~05323~^~435~^5.^0^^~4~^~NC~^^^^^^^^^^~03/01/2007~
-~05323~^~601~^45.^3^1.^~1~^~A~^^^1^42.^47.^2^39.^50.^~2, 3~^~02/01/2007~
-~05324~^~208~^287.^0^^~4~^~NC~^^^^^^^^^^~03/01/2007~
-~05324~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2007~
-~05324~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2007~
-~05324~^~268~^1201.^0^^~4~^~NC~^^^^^^^^^^~03/01/2007~
-~05324~^~301~^19.^2^^~1~^~A~^^^1^16.^23.^1^^^^~02/01/2007~
-~05324~^~304~^24.^2^^~1~^~A~^^^1^23.^26.^1^^^^~02/01/2007~
-~05324~^~305~^208.^2^^~1~^~A~^^^1^200.^215.^1^^^^~02/01/2007~
-~05324~^~306~^261.^2^^~1~^~A~^^^1^257.^264.^1^^^^~02/01/2007~
-~05324~^~307~^532.^2^^~1~^~A~^^^1^500.^564.^1^^^^~02/01/2007~
-~05324~^~318~^0.^0^^~1~^~AS~^^^^^^^^^^~02/01/2007~
-~05324~^~319~^0.^0^^~4~^~NR~^^^^^^^^^^~02/01/2007~
-~05324~^~320~^0.^0^^~4~^~NC~^^^^^^^^^^~04/01/2016~
-~05324~^~321~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2007~
-~05324~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2007~
-~05324~^~324~^11.^0^^~4~^~BFFN~^^^^^^^^^^~05/01/2013~
-~05324~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2007~
-~05324~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2007~
-~05324~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2007~
-~05324~^~417~^7.^0^^~4~^~BFNN~^^^^^^^^^^~02/01/2007~
-~05324~^~431~^0.^0^^~4~^~BFNN~^^^^^^^^^^~02/01/2007~
-~05324~^~432~^7.^0^^~4~^~BFNN~^^^^^^^^^^~02/01/2007~
-~05324~^~435~^7.^0^^~4~^~NC~^^^^^^^^^^~03/01/2007~
-~05324~^~601~^43.^1^^~1~^~A~^^^^^^^^^^~02/01/2007~
-~05326~^~208~^252.^0^^~4~^~NC~^^^^^^^^^^~03/01/2007~
-~05326~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2007~
-~05326~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2007~
-~05326~^~268~^1053.^0^^~4~^~NC~^^^^^^^^^^~03/01/2007~
-~05326~^~301~^14.^1^^~1~^~A~^^^^^^^^^^~02/01/2007~
-~05326~^~304~^26.^1^^~1~^~A~^^^^^^^^^^~02/01/2007~
-~05326~^~305~^216.^1^^~1~^~A~^^^^^^^^^^~02/01/2007~
-~05326~^~306~^225.^1^^~1~^~A~^^^^^^^^^^~02/01/2007~
-~05326~^~307~^446.^1^^~1~^~A~^^^^^^^^^^~02/01/2007~
-~05326~^~318~^0.^0^^~1~^~AS~^^^^^^^^^^~02/01/2007~
-~05326~^~319~^0.^0^^~4~^~NR~^^^^^^^^^^~03/01/2007~
-~05326~^~320~^0.^0^^~4~^~NC~^^^^^^^^^^~12/01/2012~
-~05326~^~321~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2007~
-~05326~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2007~
-~05326~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2007~
-~05326~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2007~
-~05326~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2007~
-~05326~^~417~^12.^1^^~1~^~A~^^^^^^^^^^~02/01/2007~
-~05326~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2007~
-~05326~^~432~^12.^1^^~1~^~A~^^^^^^^^^^~03/01/2007~
-~05326~^~435~^12.^0^^~4~^~NC~^^^^^^^^^^~03/01/2007~
-~05326~^~601~^45.^1^^~1~^~A~^^^^^^^^^^~02/01/2007~
-~05327~^~208~^263.^0^^~4~^~NC~^^^^^^^^^^~03/01/2007~
-~05327~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2007~
-~05327~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2007~
-~05327~^~268~^1101.^0^^~4~^~NC~^^^^^^^^^^~03/01/2007~
-~05327~^~301~^19.^3^6.^~1~^~A~^^^1^12.^32.^2^-8.^47.^~2, 3~^~02/01/2007~
-~05327~^~304~^23.^3^0.^~1~^~A~^^^1^22.^24.^2^20.^25.^~2, 3~^~02/01/2007~
-~05327~^~305~^211.^3^10.^~1~^~A~^^^1^200.^231.^2^167.^254.^~2, 3~^~02/01/2007~
-~05327~^~306~^214.^3^9.^~1~^~A~^^^1^195.^224.^2^172.^255.^~2, 3~^~02/01/2007~
-~05327~^~307~^536.^0^^~8~^~LC~^^^^^^^^^^~08/01/2012~
-~05327~^~318~^0.^0^^~1~^~AS~^^^^^^^^^^~03/01/2007~
-~05327~^~319~^0.^0^^~4~^~NR~^^^^^^^^^^~02/01/2007~
-~05327~^~320~^0.^0^^~4~^~NC~^^^^^^^^^^~04/01/2016~
-~05327~^~321~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2007~
-~05327~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2007~
-~05327~^~324~^9.^0^^~4~^~BFFN~^^^^^^^^^^~09/01/2012~
-~05327~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2007~
-~05327~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2007~
-~05327~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2007~
-~05327~^~417~^12.^3^0.^~1~^~A~^^^1^11.^12.^2^9.^13.^~2, 3~^~02/01/2007~
-~05327~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2007~
-~05327~^~432~^12.^3^0.^~1~^~A~^^^1^11.^12.^2^9.^13.^^~03/01/2007~
-~05327~^~435~^12.^0^^~4~^~NC~^^^^^^^^^^~03/01/2007~
-~05327~^~601~^41.^3^1.^~1~^~A~^^^1^39.^43.^2^34.^46.^~2, 3~^~02/01/2007~
-~05332~^~208~^143.^0^^~4~^~NC~^^^^^^^^^^~05/01/2007~
-~05332~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2007~
-~05332~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2007~
-~05332~^~268~^598.^0^^~4~^~NC~^^^^^^^^^^~05/01/2007~
-~05332~^~301~^6.^4^0.^~1~^~A~^^^1^5.^8.^3^4.^8.^~4~^~04/01/2007~
-~05332~^~304~^21.^4^0.^~1~^~A~^^^1^21.^22.^3^20.^22.^~4~^~04/01/2007~
-~05332~^~305~^178.^4^1.^~1~^~A~^^^1^175.^181.^3^173.^183.^~4~^~04/01/2007~
-~05332~^~306~^522.^4^99.^~1~^~A~^^^1^341.^716.^3^205.^838.^~4~^~04/01/2007~
-~05332~^~307~^60.^4^3.^~1~^~A~^^^1^50.^66.^3^48.^71.^~4~^~04/01/2007~
-~05332~^~318~^0.^0^^~1~^~AS~^^^^^^^^^^~04/01/2007~
-~05332~^~319~^0.^2^^~1~^~A~^^^1^0.^0.^1^^^~1~^~04/01/2007~
-~05332~^~320~^0.^0^^~1~^~AS~^^^^^^^^^^~04/01/2007~
-~05332~^~321~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2007~
-~05332~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2007~
-~05332~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2007~
-~05332~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2007~
-~05332~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2007~
-~05332~^~417~^1.^4^0.^~1~^~A~^^^1^0.^2.^3^0.^2.^~1, 4~^~04/01/2007~
-~05332~^~431~^0.^4^0.^~7~^~Z~^^^1^0.^0.^3^0.^0.^~4~^~04/01/2007~
-~05332~^~432~^1.^4^0.^~1~^~A~^^^1^0.^2.^3^0.^2.^~1, 4~^~04/01/2007~
-~05332~^~435~^1.^0^^~4~^~NC~^^^^^^^^^^~07/01/2008~
-~05332~^~601~^86.^4^3.^~1~^~A~^^^1^75.^94.^3^73.^98.^~4~^~04/01/2007~
-~05333~^~208~^189.^0^^~4~^~NC~^^^^^^^^^^~05/01/2007~
-~05333~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2007~
-~05333~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2007~
-~05333~^~268~^790.^0^^~4~^~NC~^^^^^^^^^^~05/01/2007~
-~05333~^~301~^8.^4^0.^~1~^~A~^^^1^7.^9.^3^5.^9.^~4~^~05/01/2007~
-~05333~^~304~^28.^4^0.^~1~^~A~^^^1^27.^30.^3^26.^30.^~4~^~05/01/2007~
-~05333~^~305~^234.^4^4.^~1~^~A~^^^1^228.^246.^3^221.^247.^~4~^~05/01/2007~
-~05333~^~306~^677.^4^126.^~1~^~A~^^^1^457.^910.^3^274.^1079.^~4~^~05/01/2007~
-~05333~^~307~^75.^4^2.^~1~^~A~^^^1^68.^78.^3^67.^82.^~4~^~05/01/2007~
-~05333~^~318~^0.^0^^~1~^~AS~^^^^^^^^^^~05/01/2007~
-~05333~^~319~^0.^2^^~1~^~A~^^^1^0.^0.^1^^^~1~^~05/01/2007~
-~05333~^~320~^0.^0^^~1~^~AS~^^^^^^^^^^~05/01/2007~
-~05333~^~321~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2007~
-~05333~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2007~
-~05333~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2007~
-~05333~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2007~
-~05333~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2007~
-~05333~^~417~^2.^4^0.^~1~^~A~^^^1^0.^3.^3^0.^3.^~4~^~05/01/2007~
-~05333~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2007~
-~05333~^~432~^2.^4^0.^~1~^~A~^^^1^0.^3.^3^0.^3.^~4~^~05/01/2007~
-~05333~^~435~^2.^0^^~4~^~NC~^^^^^^^^^^~07/01/2008~
-~05333~^~601~^107.^4^3.^~1~^~A~^^^1^98.^115.^3^94.^120.^~4~^~05/01/2007~
-~05334~^~208~^193.^0^^~4~^~NC~^^^^^^^^^^~05/01/2012~
-~05334~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2012~
-~05334~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2012~
-~05334~^~268~^808.^0^^~4~^~NC~^^^^^^^^^^~05/01/2012~
-~05334~^~301~^13.^0^^~4~^~BFNN~^^^^^^^^^^~05/01/2012~
-~05334~^~304~^21.^0^^~4~^~BFNN~^^^^^^^^^^~05/01/2012~
-~05334~^~305~^216.^0^^~4~^~BFNN~^^^^^^^^^^~05/01/2012~
-~05334~^~306~^262.^0^^~4~^~BFNN~^^^^^^^^^^~05/01/2012~
-~05334~^~307~^335.^0^^~4~^~BFNN~^^^^^^^^^^~05/01/2012~
-~05334~^~318~^44.^0^^~4~^~NC~^^^^^^^^^^~05/01/2012~
-~05334~^~319~^13.^0^^~4~^~BFSN~^^^^^^^^^^~05/01/2012~
-~05334~^~320~^13.^0^^~4~^~NC~^^^^^^^^^^~05/01/2012~
-~05334~^~321~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2012~
-~05334~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2012~
-~05334~^~324~^0.^0^^~4~^~BFFN~^^^^^^^^^^~05/01/2012~
-~05334~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2012~
-~05334~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2012~
-~05334~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2012~
-~05334~^~417~^8.^4^1.^~1~^~A~^^^1^6.^10.^3^4.^11.^~2, 3~^~05/01/2012~
-~05334~^~431~^0.^0^^~4~^~BFPN~^^^^^^^^^^~05/01/2012~
-~05334~^~432~^8.^4^1.^~1~^~A~^^^1^6.^10.^3^4.^11.^~2, 3~^~05/01/2012~
-~05334~^~435~^8.^0^^~4~^~NC~^^^^^^^^^^~05/01/2012~
-~05334~^~601~^128.^0^^~4~^~BFSN~^^^^^^^^^^~05/01/2012~
-~05335~^~208~^215.^0^^~4~^~NC~^^^^^^^^^^~03/01/2009~
-~05335~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~
-~05335~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~
-~05335~^~268~^900.^0^^~4~^^^^^^^^^^^~03/01/2009~
-~05335~^~301~^88.^0^^~1~^^^^^^^^^^^~03/01/2009~
-~05335~^~304~^5.^0^^~1~^^^^^^^^^^^~03/01/2009~
-~05335~^~305~^83.^0^^~1~^^^^^^^^^^^~03/01/2009~
-~05335~^~306~^31.^0^^~1~^^^^^^^^^^^~03/01/2009~
-~05335~^~307~^67.^0^^~1~^^^^^^^^^^^~03/01/2009~
-~05335~^~318~^100.^0^^~4~^~NC~^^^^^^^^^^~04/01/2016~
-~05335~^~319~^30.^0^^~4~^~NR~^^^^^^^^^^~12/01/2002~
-~05335~^~320~^30.^0^^~4~^~NC~^^^^^^^^^^~03/01/2009~
-~05335~^~321~^0.^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~
-~05335~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~
-~05335~^~324~^8.^0^^~4~^~BFFN~^^^^^^^^^^~03/01/2009~
-~05335~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~
-~05335~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~12/01/2002~
-~05335~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~12/01/2002~
-~05335~^~417~^86.^0^^~1~^^^^^^^^^^^~03/01/2009~
-~05335~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2005~
-~05335~^~432~^86.^0^^~1~^^^^^^^^^^^~03/01/2009~
-~05335~^~435~^86.^0^^~4~^~NC~^^^^^^^^^^~03/01/2009~
-~05335~^~601~^84.^0^^~4~^^^^^^^^^^^~03/01/2009~
-~05339~^~208~^186.^0^^~4~^~NC~^^^^^^^^^^~04/01/2016~
-~05339~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2012~
-~05339~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2012~
-~05339~^~268~^768.^0^^~4~^~NC~^^^^^^^^^^~05/01/2012~
-~05339~^~301~^32.^0^^~4~^~BFNN~^^^^^^^^^^~05/01/2012~
-~05339~^~304~^24.^0^^~4~^~BFNN~^^^^^^^^^^~05/01/2012~
-~05339~^~305~^264.^0^^~4~^~BFNN~^^^^^^^^^^~05/01/2012~
-~05339~^~306~^322.^0^^~4~^~BFNN~^^^^^^^^^^~05/01/2012~
-~05339~^~307~^725.^0^^~4~^~BFNN~^^^^^^^^^^~05/01/2012~
-~05339~^~318~^37.^0^^~1~^~AS~^^^^^^^^^^~05/01/2012~
-~05339~^~319~^11.^1^^~1~^~A~^^^^^^^^^~1~^~05/01/2012~
-~05339~^~320~^11.^0^^~1~^~AS~^^^^^^^^^^~05/01/2012~
-~05339~^~321~^0.^1^^~1~^~A~^^^^^^^^^~1~^~05/01/2012~
-~05339~^~322~^0.^1^^~1~^~A~^^^^^^^^^~1~^~05/01/2012~
-~05339~^~324~^0.^0^^~4~^~BFFN~^^^^^^^^^^~05/01/2012~
-~05339~^~334~^0.^1^^~1~^~A~^^^^^^^^^~1~^~05/01/2012~
-~05339~^~337~^0.^1^^~1~^~A~^^^^^^^^^~1~^~05/01/2012~
-~05339~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2012~
-~05339~^~417~^7.^0^^~4~^~BFPN~^^^^^^^^^^~05/01/2012~
-~05339~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2013~
-~05339~^~432~^7.^0^^~4~^~BFPN~^^^^^^^^^^~05/01/2012~
-~05339~^~435~^7.^0^^~4~^~NC~^^^^^^^^^^~05/01/2013~
-~05339~^~601~^134.^0^^~4~^~BFSN~^^^^^^^^^^~05/01/2012~
-~05341~^~208~^205.^0^^~4~^~NC~^^^^^^^^^^~04/01/2008~
-~05341~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2007~
-~05341~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2007~
-~05341~^~268~^859.^0^^~4~^~NC~^^^^^^^^^^~04/01/2008~
-~05341~^~301~^38.^4^5.^~1~^~A~^^^1^25.^49.^3^21.^55.^~2, 3~^~06/01/2007~
-~05341~^~304~^21.^4^2.^~1~^~A~^^^1^16.^28.^3^12.^30.^~2, 3~^~06/01/2007~
-~05341~^~305~^250.^4^19.^~1~^~A~^^^1^211.^299.^3^188.^310.^~2, 3~^~06/01/2007~
-~05341~^~306~^309.^4^36.^~1~^~A~^^^1^228.^394.^3^193.^423.^~2, 3~^~06/01/2007~
-~05341~^~307~^661.^4^74.^~1~^~A~^^^1^484.^850.^3^422.^899.^~2, 3~^~06/01/2007~
-~05341~^~318~^57.^0^^~1~^~AS~^^^^^^^^^^~06/01/2007~
-~05341~^~319~^17.^1^^~1~^~A~^^^^^^^^^^~06/01/2007~
-~05341~^~320~^17.^0^^~1~^~AS~^^^^^^^^^^~06/01/2007~
-~05341~^~321~^0.^1^^~1~^~A~^^^^^^^^^~1~^~06/01/2007~
-~05341~^~322~^0.^1^^~1~^~A~^^^^^^^^^~1~^~06/01/2007~
-~05341~^~334~^0.^1^^~1~^~A~^^^^^^^^^~1~^~06/01/2007~
-~05341~^~337~^0.^1^^~1~^~A~^^^^^^^^^~1~^~06/01/2007~
-~05341~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2007~
-~05341~^~417~^8.^1^^~1~^~A~^^^^^^^^^^~06/01/2007~
-~05341~^~431~^0.^0^^~4~^~NR~^^^^^^^^^^~06/01/2007~
-~05341~^~432~^8.^1^^~1~^~A~^^^^^^^^^^~06/01/2007~
-~05341~^~435~^8.^0^^~4~^~NC~^^^^^^^^^^~03/01/2009~
-~05341~^~601~^123.^4^17.^~1~^~A~^^^1^83.^158.^3^66.^178.^~2, 3~^~06/01/2007~
-~05342~^~208~^137.^0^^~4~^~NC~^^^^^^^^^^~05/01/2014~
-~05342~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2008~
-~05342~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2008~
-~05342~^~268~^574.^0^^~4~^~NC~^^^^^^^^^^~05/01/2014~
-~05342~^~301~^13.^6^1.^~1~^~A~^^^1^10.^20.^5^8.^16.^~2, 3~^~05/01/2014~
-~05342~^~304~^25.^6^0.^~1~^~A~^^^1^24.^28.^5^24.^26.^~2, 3~^~05/01/2014~
-~05342~^~305~^235.^6^2.^~1~^~A~^^^1^230.^243.^5^229.^240.^~2, 3~^~05/01/2014~
-~05342~^~306~^303.^6^17.^~1~^~A~^^^1^276.^388.^5^257.^347.^~2, 3~^~05/01/2014~
-~05342~^~307~^313.^6^65.^~1~^~A~^^^1^152.^612.^5^144.^481.^~2, 3~^~05/01/2014~
-~05342~^~318~^17.^0^^~1~^~AS~^^^^^^^^^^~05/01/2014~
-~05342~^~319~^5.^1^^~1~^~A~^^^^^^^^^^~06/01/2007~
-~05342~^~320~^5.^0^^~1~^~AS~^^^^^^^^^^~06/01/2007~
-~05342~^~321~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2014~
-~05342~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2014~
-~05342~^~324~^1.^0^^~4~^~BFFN~^~05071~^^^^^^^^^~05/01/2015~
-~05342~^~334~^0.^1^^~1~^~A~^^^^^^^^^~1~^~04/01/2008~
-~05342~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2014~
-~05342~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2008~
-~05342~^~417~^11.^0^^~4~^~BFPN~^^^^^^^^^^~05/01/2015~
-~05342~^~431~^0.^0^^~4~^~BFPN~^^^^^^^^^^~05/01/2015~
-~05342~^~432~^11.^0^^~4~^~BFPN~^^^^^^^^^^~05/01/2015~
-~05342~^~435~^11.^0^^~4~^~NC~^^^^^^^^^^~03/01/2009~
-~05342~^~601~^86.^3^2.^~1~^~A~^^^1^82.^91.^2^74.^96.^~2, 3~^~05/01/2014~
-~05343~^~208~^176.^0^^~4~^~NC~^^^^^^^^^^~04/01/2008~
-~05343~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2008~
-~05343~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2008~
-~05343~^~268~^738.^0^^~4~^~NC~^^^^^^^^^^~04/01/2008~
-~05343~^~301~^21.^12^2.^~1~^~A~^^^1^14.^36.^11^15.^25.^~2, 3~^~03/01/2008~
-~05343~^~304~^24.^12^1.^~1~^~A~^^^1^20.^35.^11^21.^27.^~2, 3~^~03/01/2008~
-~05343~^~305~^257.^12^14.^~1~^~A~^^^1^167.^344.^11^225.^287.^~2, 3~^~03/01/2008~
-~05343~^~306~^301.^12^14.^~1~^~A~^^^1^238.^395.^11^268.^333.^~2, 3~^~03/01/2008~
-~05343~^~307~^417.^12^71.^~1~^~A~^^^1^95.^978.^11^260.^573.^~2, 3~^~03/01/2008~
-~05343~^~318~^34.^0^^~1~^~AS~^^^^^^^^^^~03/01/2008~
-~05343~^~319~^10.^1^^~1~^~A~^^^^^^^^^^~03/01/2008~
-~05343~^~320~^10.^0^^~1~^~AS~^^^^^^^^^^~03/01/2008~
-~05343~^~321~^0.^1^^~1~^~A~^^^^^^^^^~1~^~03/01/2008~
-~05343~^~322~^0.^1^^~1~^~A~^^^^^^^^^~1~^~03/01/2008~
-~05343~^~334~^0.^1^^~1~^~A~^^^^^^^^^~1~^~03/01/2008~
-~05343~^~337~^0.^1^^~1~^~A~^^^^^^^^^~1~^~03/01/2008~
-~05343~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2008~
-~05343~^~417~^10.^4^0.^~1~^~A~^^^1^9.^13.^3^7.^13.^~2, 3~^~03/01/2008~
-~05343~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2008~
-~05343~^~432~^10.^4^0.^~1~^~A~^^^1^9.^13.^3^7.^13.^~2, 3~^~03/01/2008~
-~05343~^~435~^10.^0^^~4~^~NC~^^^^^^^^^^~03/01/2009~
-~05343~^~601~^160.^12^5.^~1~^~A~^^^1^140.^202.^11^147.^171.^~2, 3~^~03/01/2008~
-~05344~^~208~^406.^0^^~4~^~NC~^^^^^^^^^^~05/01/2009~
-~05344~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2008~
-~05344~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2008~
-~05344~^~268~^1698.^0^^~4~^~NC~^^^^^^^^^^~05/01/2009~
-~05344~^~301~^25.^12^2.^~1~^~A~^^^1^14.^42.^11^18.^30.^~2, 3~^~03/01/2008~
-~05344~^~304~^26.^12^1.^~1~^~A~^^^1^14.^36.^11^21.^29.^~2, 3~^~03/01/2008~
-~05344~^~305~^248.^12^23.^~1~^~A~^^^1^151.^441.^11^195.^299.^~2, 3~^~03/01/2008~
-~05344~^~306~^245.^12^15.^~1~^~A~^^^1^184.^344.^11^211.^278.^~2, 3~^~03/01/2008~
-~05344~^~307~^381.^12^70.^~1~^~A~^^^1^73.^788.^11^226.^535.^~2, 3~^~03/01/2008~
-~05344~^~318~^186.^0^^~1~^~AS~^^^^^^^^^^~03/01/2008~
-~05344~^~319~^56.^3^3.^~1~^~A~^^^1^51.^61.^2^42.^69.^~2, 3~^~03/01/2008~
-~05344~^~320~^56.^0^^~1~^~AS~^^^^^^^^^^~03/01/2008~
-~05344~^~321~^0.^1^^~1~^~A~^^^^^^^^^~1~^~04/01/2008~
-~05344~^~322~^0.^1^^~1~^~A~^^^^^^^^^~1~^~04/01/2008~
-~05344~^~334~^0.^1^^~1~^~A~^^^^^^^^^~1~^~04/01/2008~
-~05344~^~337~^0.^1^^~1~^~A~^^^^^^^^^~1~^~04/01/2008~
-~05344~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2008~
-~05344~^~417~^11.^4^1.^~1~^~A~^^^1^8.^14.^3^6.^15.^~2, 3~^~03/01/2008~
-~05344~^~431~^0.^2^^~1~^~A~^^^1^0.^0.^^^^~1~^~04/01/2008~
-~05344~^~432~^11.^4^1.^~1~^~A~^^^1^8.^14.^3^6.^15.^~2, 3~^~03/01/2008~
-~05344~^~435~^11.^0^^~4~^~NC~^^^^^^^^^^~05/01/2009~
-~05344~^~601~^141.^12^5.^~1~^~A~^^^1^112.^166.^11^128.^152.^~2, 3~^~03/01/2008~
-~05345~^~208~^196.^0^^~4~^~NC~^^^^^^^^^^~04/01/2008~
-~05345~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2008~
-~05345~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2008~
-~05345~^~268~^820.^0^^~4~^~NC~^^^^^^^^^^~04/01/2008~
-~05345~^~301~^13.^12^0.^~1~^~A~^^^1^10.^16.^11^11.^14.^~2, 3~^~03/01/2008~
-~05345~^~304~^21.^12^0.^~1~^~A~^^^1^16.^28.^11^18.^22.^~2, 3~^~03/01/2008~
-~05345~^~305~^217.^12^10.^~1~^~A~^^^1^169.^295.^11^192.^240.^~2, 3~^~03/01/2008~
-~05345~^~306~^264.^12^12.^~1~^~A~^^^1^210.^351.^11^237.^290.^~2, 3~^~03/01/2008~
-~05345~^~307~^337.^12^61.^~1~^~A~^^^1^85.^773.^11^201.^472.^~2, 3~^~03/01/2008~
-~05345~^~318~^45.^0^^~1~^~AS~^^^^^^^^^^~03/01/2008~
-~05345~^~319~^13.^1^^~1~^~A~^^^^^^^^^^~03/01/2008~
-~05345~^~320~^13.^0^^~1~^~AS~^^^^^^^^^^~03/01/2008~
-~05345~^~321~^0.^1^^~1~^~A~^^^^^^^^^~1~^~03/01/2008~
-~05345~^~322~^0.^1^^~1~^~A~^^^^^^^^^~1~^~03/01/2008~
-~05345~^~334~^0.^1^^~1~^~A~^^^^^^^^^~1~^~03/01/2008~
-~05345~^~337~^0.^1^^~1~^~A~^^^^^^^^^~1~^~03/01/2008~
-~05345~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2008~
-~05345~^~417~^12.^4^1.^~1~^~A~^^^1^8.^16.^3^6.^16.^~2, 3~^~03/01/2008~
-~05345~^~431~^0.^1^^~1~^~A~^^^^^^^^^~1~^~03/01/2008~
-~05345~^~432~^12.^4^1.^~1~^~A~^^^1^8.^16.^3^6.^16.^~2, 3~^~03/01/2008~
-~05345~^~435~^12.^0^^~4~^~NC~^^^^^^^^^^~03/01/2009~
-~05345~^~601~^130.^12^3.^~1~^~A~^^^1^108.^152.^11^121.^138.^~2, 3~^~03/01/2008~
-~05346~^~208~^197.^0^^~4~^~NC~^^^^^^^^^^~04/01/2008~
-~05346~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2008~
-~05346~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2008~
-~05346~^~268~^822.^0^^~4~^~NC~^^^^^^^^^^~04/01/2008~
-~05346~^~301~^32.^4^6.^~1~^~A~^^^1^20.^47.^3^11.^52.^~2, 3~^~03/01/2008~
-~05346~^~304~^24.^4^3.^~1~^~A~^^^1^19.^34.^3^11.^35.^~2, 3~^~03/01/2008~
-~05346~^~305~^264.^4^13.^~1~^~A~^^^1^239.^298.^3^220.^306.^~2, 3~^~03/01/2008~
-~05346~^~306~^322.^4^33.^~1~^~A~^^^1^255.^414.^3^215.^427.^~2, 3~^~03/01/2008~
-~05346~^~307~^725.^4^113.^~1~^~A~^^^1^412.^928.^3^362.^1087.^~2, 3~^~03/01/2008~
-~05346~^~318~^37.^0^^~1~^~AS~^^^^^^^^^^~03/01/2008~
-~05346~^~319~^11.^1^^~1~^~A~^^^^^^^^^~1~^~03/01/2008~
-~05346~^~320~^11.^0^^~1~^~AS~^^^^^^^^^^~03/01/2008~
-~05346~^~321~^0.^1^^~1~^~A~^^^^^^^^^~1~^~03/01/2008~
-~05346~^~322~^0.^1^^~1~^~A~^^^^^^^^^~1~^~03/01/2008~
-~05346~^~334~^0.^1^^~1~^~A~^^^^^^^^^~1~^~03/01/2008~
-~05346~^~337~^0.^1^^~1~^~A~^^^^^^^^^~1~^~03/01/2008~
-~05346~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2008~
-~05346~^~417~^7.^1^^~1~^~A~^^^^^^^^^^~03/01/2008~
-~05346~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2008~
-~05346~^~432~^7.^1^^~1~^~A~^^^^^^^^^^~03/01/2008~
-~05346~^~435~^7.^0^^~4~^~NC~^^^^^^^^^^~03/01/2009~
-~05346~^~601~^140.^4^22.^~1~^~A~^^^1^81.^190.^3^68.^211.^~2, 3~^~03/01/2008~
-~05347~^~208~^260.^0^^~4~^~NC~^^^^^^^^^^~04/01/2008~
-~05347~^~262~^0.^0^^~4~^~PIK~^^^^^^^^^^~04/01/2008~
-~05347~^~263~^0.^0^^~4~^~PIK~^^^^^^^^^^~04/01/2008~
-~05347~^~268~^1089.^0^^~4~^~NC~^^^^^^^^^^~04/01/2008~
-~05347~^~301~^35.^0^^~1~^~PAK~^^^^^^^^^^~04/01/2008~
-~05347~^~304~^23.^0^^~1~^~PAK~^^^^^^^^^^~04/01/2008~
-~05347~^~305~^249.^0^^~1~^~PAK~^^^^^^^^^^~04/01/2008~
-~05347~^~306~^291.^0^^~1~^~PAK~^^^^^^^^^^~04/01/2008~
-~05347~^~307~^584.^0^^~1~^~PAK~^^^^^^^^^^~04/01/2008~
-~05347~^~318~^92.^0^^~1~^~PAK~^^^^^^^^^^~04/01/2008~
-~05347~^~319~^28.^0^^~1~^~PAK~^^^^^^^^^^~04/01/2008~
-~05347~^~320~^28.^0^^~1~^~PAK~^^^^^^^^^^~04/01/2008~
-~05347~^~321~^0.^0^^~1~^~PAK~^^^^^^^^^^~04/01/2008~
-~05347~^~322~^0.^0^^~1~^~PAK~^^^^^^^^^^~04/01/2008~
-~05347~^~334~^0.^0^^~1~^~PAK~^^^^^^^^^^~04/01/2008~
-~05347~^~337~^0.^0^^~1~^~PAK~^^^^^^^^^^~04/01/2008~
-~05347~^~338~^0.^0^^~4~^~PIK~^^^^^^^^^^~04/01/2008~
-~05347~^~417~^9.^0^^~1~^~PAK~^^^^^^^^^^~04/01/2008~
-~05347~^~431~^0.^0^^~4~^~PIK~^^^^^^^^^^~04/01/2008~
-~05347~^~432~^9.^0^^~1~^~PAK~^^^^^^^^^^~04/01/2008~
-~05347~^~435~^9.^0^^~4~^~NC~^^^^^^^^^^~03/01/2009~
-~05347~^~601~^128.^0^^~1~^~PAK~^^^^^^^^^^~04/01/2008~
-~05348~^~208~^184.^0^^~4~^~NC~^^^^^^^^^^~04/01/2008~
-~05348~^~262~^0.^0^^~4~^~PIK~^^^^^^^^^^~04/01/2008~
-~05348~^~263~^0.^0^^~4~^~PIK~^^^^^^^^^^~04/01/2008~
-~05348~^~268~^768.^0^^~4~^~NC~^^^^^^^^^^~04/01/2008~
-~05348~^~301~^15.^0^^~1~^~PAK~^^^^^^^^^^~04/01/2008~
-~05348~^~304~^26.^0^^~1~^~PAK~^^^^^^^^^^~04/01/2008~
-~05348~^~305~^255.^0^^~1~^~PAK~^^^^^^^^^^~04/01/2008~
-~05348~^~306~^289.^0^^~1~^~PAK~^^^^^^^^^^~04/01/2008~
-~05348~^~307~^347.^0^^~1~^~PAK~^^^^^^^^^^~04/01/2008~
-~05348~^~318~^41.^0^^~1~^~PAK~^^^^^^^^^^~04/01/2008~
-~05348~^~319~^12.^0^^~1~^~PAK~^^^^^^^^^^~04/01/2008~
-~05348~^~320~^12.^0^^~1~^~PAK~^^^^^^^^^^~04/01/2008~
-~05348~^~321~^0.^0^^~1~^~PAK~^^^^^^^^^^~04/01/2008~
-~05348~^~322~^0.^0^^~1~^~PAK~^^^^^^^^^^~04/01/2008~
-~05348~^~334~^0.^0^^~1~^~PAK~^^^^^^^^^^~04/01/2008~
-~05348~^~337~^0.^0^^~1~^~PAK~^^^^^^^^^^~04/01/2008~
-~05348~^~338~^0.^0^^~4~^~PIK~^^^^^^^^^^~04/01/2008~
-~05348~^~417~^11.^0^^~1~^~PAK~^^^^^^^^^^~04/01/2008~
-~05348~^~431~^0.^0^^~1~^~PAK~^^^^^^^^^^~04/01/2008~
-~05348~^~432~^11.^0^^~1~^~PAK~^^^^^^^^^^~04/01/2008~
-~05348~^~435~^11.^0^^~4~^~NC~^^^^^^^^^^~03/01/2009~
-~05348~^~601~^96.^0^^~1~^~PAK~^^^^^^^^^^~04/01/2008~
-~05349~^~208~^215.^0^^~4~^~NC~^^^^^^^^^^~04/01/2008~
-~05349~^~262~^0.^0^^~4~^~PIK~^^^^^^^^^^~04/01/2008~
-~05349~^~263~^0.^0^^~4~^~PIK~^^^^^^^^^^~04/01/2008~
-~05349~^~268~^901.^0^^~4~^~NC~^^^^^^^^^^~04/01/2008~
-~05349~^~301~^21.^0^^~1~^~PAK~^^^^^^^^^^~04/01/2008~
-~05349~^~304~^25.^0^^~1~^~PAK~^^^^^^^^^^~04/01/2008~
-~05349~^~305~^255.^0^^~1~^~PAK~^^^^^^^^^^~04/01/2008~
-~05349~^~306~^291.^0^^~1~^~PAK~^^^^^^^^^^~04/01/2008~
-~05349~^~307~^411.^0^^~1~^~PAK~^^^^^^^^^^~04/01/2008~
-~05349~^~318~^60.^0^^~1~^~PAK~^^^^^^^^^^~04/01/2008~
-~05349~^~319~^18.^0^^~1~^~PAK~^^^^^^^^^^~04/01/2008~
-~05349~^~320~^18.^0^^~1~^~PAK~^^^^^^^^^^~04/01/2008~
-~05349~^~321~^0.^0^^~1~^~PAK~^^^^^^^^^^~04/01/2008~
-~05349~^~322~^0.^0^^~1~^~PAK~^^^^^^^^^^~04/01/2008~
-~05349~^~334~^0.^0^^~1~^~PAK~^^^^^^^^^^~04/01/2008~
-~05349~^~337~^0.^0^^~1~^~PAK~^^^^^^^^^^~04/01/2008~
-~05349~^~338~^0.^0^^~4~^~PIK~^^^^^^^^^^~04/01/2008~
-~05349~^~417~^11.^0^^~1~^~PAK~^^^^^^^^^^~04/01/2008~
-~05349~^~431~^0.^0^^~4~^~PIK~^^^^^^^^^^~04/01/2008~
-~05349~^~432~^11.^0^^~1~^~PAK~^^^^^^^^^^~04/01/2008~
-~05349~^~435~^11.^0^^~4~^~NC~^^^^^^^^^^~03/01/2009~
-~05349~^~601~^156.^0^^~1~^~PAK~^^^^^^^^^^~04/01/2008~
-~05351~^~208~^233.^0^^~4~^~NC~^^^^^^^^^^~04/01/2008~
-~05351~^~262~^0.^0^^~4~^~PIK~^^^^^^^^^^~04/01/2008~
-~05351~^~263~^0.^0^^~4~^~PIK~^^^^^^^^^^~04/01/2008~
-~05351~^~268~^975.^0^^~4~^~NC~^^^^^^^^^^~04/01/2008~
-~05351~^~301~^15.^0^^~1~^~PAK~^^^^^^^^^^~04/01/2008~
-~05351~^~304~^22.^0^^~1~^~PAK~^^^^^^^^^^~04/01/2008~
-~05351~^~305~^222.^0^^~1~^~PAK~^^^^^^^^^^~04/01/2008~
-~05351~^~306~^260.^0^^~1~^~PAK~^^^^^^^^^^~04/01/2008~
-~05351~^~307~^345.^0^^~1~^~PAK~^^^^^^^^^^~04/01/2008~
-~05351~^~318~^70.^0^^~1~^~PAK~^^^^^^^^^^~04/01/2008~
-~05351~^~319~^21.^0^^~1~^~PAK~^^^^^^^^^^~04/01/2008~
-~05351~^~320~^21.^0^^~1~^~PAK~^^^^^^^^^^~04/01/2008~
-~05351~^~321~^0.^0^^~1~^~PAK~^^^^^^^^^^~04/01/2008~
-~05351~^~322~^0.^0^^~1~^~PAK~^^^^^^^^^^~04/01/2008~
-~05351~^~334~^0.^0^^~1~^~PAK~^^^^^^^^^^~04/01/2008~
-~05351~^~337~^0.^0^^~1~^~PAK~^^^^^^^^^^~04/01/2008~
-~05351~^~338~^0.^0^^~4~^~PIK~^^^^^^^^^^~04/01/2008~
-~05351~^~417~^12.^0^^~1~^~PAK~^^^^^^^^^^~04/01/2008~
-~05351~^~431~^0.^0^^~1~^~PAK~^^^^^^^^^^~04/01/2008~
-~05351~^~432~^12.^0^^~1~^~PAK~^^^^^^^^^^~04/01/2008~
-~05351~^~435~^12.^0^^~4~^~NC~^^^^^^^^^^~03/01/2009~
-~05351~^~601~^132.^0^^~1~^~PAK~^^^^^^^^^^~04/01/2008~
-~05352~^~208~^266.^0^^~4~^~NC~^^^^^^^^^^~04/01/2008~
-~05352~^~262~^0.^0^^~4~^~PIK~^^^^^^^^^^~04/01/2008~
-~05352~^~263~^0.^0^^~4~^~PIK~^^^^^^^^^^~04/01/2008~
-~05352~^~268~^1115.^0^^~4~^~NC~^^^^^^^^^^~04/01/2008~
-~05352~^~301~^29.^0^^~1~^~PAK~^^^^^^^^^^~04/01/2008~
-~05352~^~304~^24.^0^^~1~^~PAK~^^^^^^^^^^~04/01/2008~
-~05352~^~305~^258.^0^^~1~^~PAK~^^^^^^^^^^~04/01/2008~
-~05352~^~306~^296.^0^^~1~^~PAK~^^^^^^^^^^~04/01/2008~
-~05352~^~307~^610.^0^^~1~^~PAK~^^^^^^^^^^~04/01/2008~
-~05352~^~318~^87.^0^^~1~^~PAK~^^^^^^^^^^~04/01/2008~
-~05352~^~319~^26.^0^^~1~^~PAK~^^^^^^^^^^~04/01/2008~
-~05352~^~320~^26.^0^^~1~^~PAK~^^^^^^^^^^~04/01/2008~
-~05352~^~321~^0.^0^^~1~^~PAK~^^^^^^^^^^~04/01/2008~
-~05352~^~322~^0.^0^^~1~^~PAK~^^^^^^^^^^~04/01/2008~
-~05352~^~334~^0.^0^^~1~^~PAK~^^^^^^^^^^~04/01/2008~
-~05352~^~337~^0.^0^^~1~^~PAK~^^^^^^^^^^~04/01/2008~
-~05352~^~338~^0.^0^^~4~^~PIK~^^^^^^^^^^~04/01/2008~
-~05352~^~417~^8.^0^^~1~^~PAK~^^^^^^^^^^~04/01/2008~
-~05352~^~431~^0.^0^^~4~^~PIK~^^^^^^^^^^~04/01/2008~
-~05352~^~432~^8.^0^^~1~^~PAK~^^^^^^^^^^~04/01/2008~
-~05352~^~435~^8.^0^^~4~^~NC~^^^^^^^^^^~03/01/2009~
-~05352~^~601~^140.^0^^~1~^~PAK~^^^^^^^^^^~04/01/2008~
-~05356~^~208~^378.^0^^~4~^~NC~^^^^^^^^^^~05/01/2012~
-~05356~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2012~
-~05356~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2012~
-~05356~^~268~^1583.^0^^~4~^~NC~^^^^^^^^^^~05/01/2012~
-~05356~^~301~^34.^12^7.^~1~^~A~^^^1^13.^105.^11^17.^50.^~2, 3~^~05/01/2012~
-~05356~^~304~^22.^12^1.^~1~^~A~^^^1^17.^32.^11^18.^25.^~2, 3~^~05/01/2012~
-~05356~^~305~^230.^12^10.^~1~^~A~^^^1^151.^302.^11^205.^253.^~2, 3~^~05/01/2012~
-~05356~^~306~^223.^12^14.^~1~^~A~^^^1^166.^337.^11^191.^254.^~2, 3~^~05/01/2012~
-~05356~^~307~^335.^12^23.^~1~^~A~^^^1^207.^462.^11^283.^386.^~2, 3~^~05/01/2012~
-~05356~^~318~^171.^0^^~1~^~AS~^^^^^^^^^^~05/01/2012~
-~05356~^~319~^51.^3^6.^~1~^~A~^^^1^42.^65.^2^22.^80.^~2, 3~^~05/01/2012~
-~05356~^~320~^51.^0^^~1~^~AS~^^^^^^^^^^~05/01/2012~
-~05356~^~321~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2012~
-~05356~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2012~
-~05356~^~324~^0.^0^^~4~^~BFFN~^^^^^^^^^^~05/01/2012~
-~05356~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2012~
-~05356~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2012~
-~05356~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2012~
-~05356~^~417~^9.^0^^~4~^~BFPN~^^^^^^^^^^~05/01/2012~
-~05356~^~431~^0.^0^^~4~^~BFPN~^^^^^^^^^^~05/01/2012~
-~05356~^~432~^9.^0^^~4~^~BFPN~^^^^^^^^^^~05/01/2012~
-~05356~^~435~^9.^0^^~4~^~NC~^^^^^^^^^^~05/01/2012~
-~05356~^~601~^120.^12^12.^~1~^~A~^^^1^43.^179.^11^92.^148.^~2, 3~^~05/01/2012~
-~05357~^~208~^251.^0^^~4~^~PIK~^^^^^^^^^^~09/01/2012~
-~05357~^~262~^0.^0^^~4~^~PIK~^^^^^^^^^^~05/01/2012~
-~05357~^~263~^0.^0^^~4~^~PIK~^^^^^^^^^^~05/01/2012~
-~05357~^~268~^1051.^0^^~4~^~PIK~^^^^^^^^^^~09/01/2012~
-~05357~^~301~^33.^0^^~4~^~PIK~^^^^^^^^^^~09/01/2012~
-~05357~^~304~^19.^0^^~4~^~PIK~^^^^^^^^^^~09/01/2012~
-~05357~^~305~^217.^0^^~4~^~PIK~^^^^^^^^^^~09/01/2012~
-~05357~^~306~^254.^0^^~4~^~PIK~^^^^^^^^^^~09/01/2012~
-~05357~^~307~^509.^0^^~4~^~PIK~^^^^^^^^^^~09/01/2012~
-~05357~^~318~^79.^0^^~1~^~PAK~^^^^^^^^^^~09/01/2012~
-~05357~^~319~^24.^0^^~1~^~PAK~^^^^^^^^^^~09/01/2012~
-~05357~^~320~^24.^0^^~1~^~PAK~^^^^^^^^^^~09/01/2012~
-~05357~^~321~^0.^0^^~4~^~PIK~^^^^^^^^^^~05/01/2012~
-~05357~^~322~^0.^0^^~4~^~PIK~^^^^^^^^^^~05/01/2012~
-~05357~^~324~^5.^0^^~4~^~BFFN~^~05073~^^^^^^^^^~06/01/2014~
-~05357~^~334~^0.^0^^~4~^~PIK~^^^^^^^^^^~05/01/2012~
-~05357~^~337~^0.^0^^~4~^~PIK~^^^^^^^^^^~05/01/2012~
-~05357~^~338~^0.^0^^~4~^~PIK~^^^^^^^^^^~05/01/2012~
-~05357~^~417~^7.^0^^~4~^~PIK~^^^^^^^^^^~09/01/2012~
-~05357~^~431~^0.^0^^~4~^~PIK~^^^^^^^^^^~05/01/2012~
-~05357~^~432~^7.^0^^~4~^~PIK~^^^^^^^^^^~09/01/2012~
-~05357~^~435~^7.^0^^~4~^~NC~^^^^^^^^^^~09/01/2012~
-~05357~^~601~^118.^0^^~4~^~PIK~^^^^^^^^^^~09/01/2012~
-~05358~^~208~^175.^0^^~4~^~NC~^^^^^^^^^^~05/01/2012~
-~05358~^~262~^0.^0^^~4~^~PIK~^^^^^^^^^^~05/01/2012~
-~05358~^~263~^0.^0^^~4~^~PIK~^^^^^^^^^^~05/01/2012~
-~05358~^~268~^731.^0^^~4~^~NC~^^^^^^^^^^~05/01/2012~
-~05358~^~301~^16.^0^^~4~^~PIK~^^^^^^^^^^~05/01/2012~
-~05358~^~304~^25.^0^^~4~^~PIK~^^^^^^^^^^~05/01/2012~
-~05358~^~305~^244.^0^^~4~^~PIK~^^^^^^^^^^~05/01/2012~
-~05358~^~306~^276.^0^^~4~^~PIK~^^^^^^^^^^~05/01/2012~
-~05358~^~307~^329.^0^^~4~^~PIK~^^^^^^^^^^~05/01/2012~
-~05358~^~318~^37.^0^^~4~^~NC~^^^^^^^^^^~05/01/2012~
-~05358~^~319~^11.^0^^~4~^~PIK~^^^^^^^^^^~05/01/2012~
-~05358~^~320~^11.^0^^~4~^~NC~^^^^^^^^^^~05/01/2012~
-~05358~^~321~^0.^0^^~4~^~PIK~^^^^^^^^^^~05/01/2012~
-~05358~^~322~^0.^0^^~4~^~PIK~^^^^^^^^^^~05/01/2012~
-~05358~^~324~^0.^0^^~4~^~PIK~^^^^^^^^^^~05/01/2012~
-~05358~^~334~^0.^0^^~4~^~PIK~^^^^^^^^^^~05/01/2012~
-~05358~^~337~^0.^0^^~4~^~PIK~^^^^^^^^^^~05/01/2012~
-~05358~^~338~^0.^0^^~4~^~PIK~^^^^^^^^^^~05/01/2012~
-~05358~^~417~^11.^0^^~4~^~PIK~^^^^^^^^^^~05/01/2012~
-~05358~^~431~^0.^0^^~4~^~PIK~^^^^^^^^^^~05/01/2012~
-~05358~^~432~^8.^0^^~4~^~PIK~^^^^^^^^^^~05/01/2012~
-~05358~^~435~^8.^0^^~4~^~NC~^^^^^^^^^^~05/01/2012~
-~05358~^~601~^90.^0^^~4~^~PIK~^^^^^^^^^^~05/01/2012~
-~05359~^~208~^206.^0^^~4~^~NC~^^^^^^^^^^~05/01/2012~
-~05359~^~262~^0.^0^^~4~^~PIK~^^^^^^^^^^~05/01/2012~
-~05359~^~263~^0.^0^^~4~^~PIK~^^^^^^^^^^~05/01/2012~
-~05359~^~268~^861.^0^^~4~^~NC~^^^^^^^^^^~05/01/2012~
-~05359~^~301~^22.^0^^~4~^~PIK~^^^^^^^^^^~05/01/2012~
-~05359~^~304~^23.^0^^~4~^~PIK~^^^^^^^^^^~05/01/2012~
-~05359~^~305~^245.^0^^~4~^~PIK~^^^^^^^^^^~05/01/2012~
-~05359~^~306~^279.^0^^~4~^~PIK~^^^^^^^^^^~05/01/2012~
-~05359~^~307~^392.^0^^~4~^~PIK~^^^^^^^^^^~05/01/2012~
-~05359~^~318~^56.^0^^~4~^~NC~^^^^^^^^^^~05/01/2012~
-~05359~^~319~^17.^0^^~4~^~PIK~^^^^^^^^^^~05/01/2012~
-~05359~^~320~^17.^0^^~4~^~NC~^^^^^^^^^^~05/01/2012~
-~05359~^~321~^0.^0^^~4~^~PIK~^^^^^^^^^^~05/01/2012~
-~05359~^~322~^0.^0^^~4~^~PIK~^^^^^^^^^^~05/01/2012~
-~05359~^~324~^0.^0^^~4~^~PIK~^^^^^^^^^^~05/01/2012~
-~05359~^~334~^0.^0^^~4~^~PIK~^^^^^^^^^^~05/01/2012~
-~05359~^~337~^0.^0^^~4~^~PIK~^^^^^^^^^^~05/01/2012~
-~05359~^~338~^0.^0^^~4~^~PIK~^^^^^^^^^^~05/01/2012~
-~05359~^~417~^9.^0^^~4~^~PIK~^^^^^^^^^^~05/01/2012~
-~05359~^~431~^0.^0^^~4~^~PIK~^^^^^^^^^^~05/01/2012~
-~05359~^~432~^9.^0^^~4~^~PIK~^^^^^^^^^^~05/01/2012~
-~05359~^~435~^9.^0^^~4~^~NC~^^^^^^^^^^~05/01/2012~
-~05359~^~601~^149.^0^^~4~^~PIK~^^^^^^^^^^~05/01/2012~
-~05361~^~208~^226.^0^^~4~^~NC~^^^^^^^^^^~05/01/2012~
-~05361~^~262~^0.^0^^~4~^~PIK~^^^^^^^^^^~05/01/2012~
-~05361~^~263~^0.^0^^~4~^~PIK~^^^^^^^^^^~05/01/2012~
-~05361~^~268~^946.^0^^~4~^~NC~^^^^^^^^^^~05/01/2012~
-~05361~^~301~^16.^0^^~4~^~PIK~^^^^^^^^^^~05/01/2012~
-~05361~^~304~^21.^0^^~4~^~PIK~^^^^^^^^^^~05/01/2012~
-~05361~^~305~^218.^0^^~4~^~PIK~^^^^^^^^^^~05/01/2012~
-~05361~^~306~^255.^0^^~4~^~PIK~^^^^^^^^^^~05/01/2012~
-~05361~^~307~^335.^0^^~4~^~PIK~^^^^^^^^^^~05/01/2012~
-~05361~^~318~^67.^0^^~4~^~NC~^^^^^^^^^^~05/01/2012~
-~05361~^~319~^20.^0^^~4~^~PIK~^^^^^^^^^^~05/01/2012~
-~05361~^~320~^20.^0^^~4~^~NC~^^^^^^^^^^~05/01/2012~
-~05361~^~321~^0.^0^^~4~^~PIK~^^^^^^^^^^~05/01/2012~
-~05361~^~322~^0.^0^^~4~^~PIK~^^^^^^^^^^~05/01/2012~
-~05361~^~324~^0.^0^^~4~^~PIK~^^^^^^^^^^~05/01/2012~
-~05361~^~334~^0.^0^^~4~^~PIK~^^^^^^^^^^~05/01/2012~
-~05361~^~337~^0.^0^^~4~^~PIK~^^^^^^^^^^~05/01/2012~
-~05361~^~338~^0.^0^^~4~^~PIK~^^^^^^^^^^~05/01/2012~
-~05361~^~417~^8.^0^^~4~^~PIK~^^^^^^^^^^~05/01/2012~
-~05361~^~431~^0.^0^^~4~^~PIK~^^^^^^^^^^~05/01/2012~
-~05361~^~432~^8.^0^^~4~^~PIK~^^^^^^^^^^~05/01/2012~
-~05361~^~435~^8.^0^^~4~^~NC~^^^^^^^^^^~05/01/2012~
-~05361~^~601~^127.^0^^~4~^~PIK~^^^^^^^^^^~05/01/2012~
-~05362~^~208~^257.^0^^~4~^~NC~^^^^^^^^^^~05/01/2012~
-~05362~^~262~^0.^0^^~4~^~PIK~^^^^^^^^^^~05/01/2012~
-~05362~^~263~^0.^0^^~4~^~PIK~^^^^^^^^^^~05/01/2012~
-~05362~^~268~^1073.^0^^~4~^~NC~^^^^^^^^^^~05/01/2012~
-~05362~^~301~^33.^0^^~4~^~PIK~^^^^^^^^^^~05/01/2012~
-~05362~^~304~^23.^0^^~4~^~PIK~^^^^^^^^^^~05/01/2012~
-~05362~^~305~^251.^0^^~4~^~PIK~^^^^^^^^^^~05/01/2012~
-~05362~^~306~^285.^0^^~4~^~PIK~^^^^^^^^^^~05/01/2012~
-~05362~^~307~^579.^0^^~4~^~PIK~^^^^^^^^^^~05/01/2012~
-~05362~^~318~^87.^0^^~4~^~NC~^^^^^^^^^^~05/01/2012~
-~05362~^~319~^26.^0^^~1~^~PAK~^^^^^^^^^^~05/01/2012~
-~05362~^~320~^26.^0^^~4~^~NC~^^^^^^^^^^~05/01/2012~
-~05362~^~321~^0.^0^^~4~^~PIK~^^^^^^^^^^~05/01/2012~
-~05362~^~322~^0.^0^^~4~^~PIK~^^^^^^^^^^~05/01/2012~
-~05362~^~324~^0.^0^^~4~^~PIK~^^^^^^^^^^~05/01/2012~
-~05362~^~334~^0.^0^^~4~^~PIK~^^^^^^^^^^~05/01/2012~
-~05362~^~337~^0.^0^^~4~^~PIK~^^^^^^^^^^~05/01/2012~
-~05362~^~338~^0.^0^^~4~^~PIK~^^^^^^^^^^~05/01/2012~
-~05362~^~417~^8.^0^^~4~^~PIK~^^^^^^^^^^~05/01/2012~
-~05362~^~431~^0.^0^^~4~^~PIK~^^^^^^^^^^~05/01/2012~
-~05362~^~432~^8.^0^^~4~^~PIK~^^^^^^^^^^~05/01/2012~
-~05362~^~435~^8.^0^^~4~^~NC~^^^^^^^^^^~05/01/2012~
-~05362~^~601~^129.^0^^~4~^~PIK~^^^^^^^^^^~05/01/2012~
-~05363~^~208~^112.^0^^~4~^~NC~^^^^^^^^^^~04/01/2014~
-~05363~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2014~
-~05363~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2014~
-~05363~^~268~^467.^0^^~4~^~NC~^^^^^^^^^^~04/01/2014~
-~05363~^~301~^5.^2^^~1~^~A~^^^1^5.^6.^1^^^^~04/01/2014~
-~05363~^~304~^32.^2^^~1~^~A~^^^1^31.^33.^1^^^^~04/01/2014~
-~05363~^~305~^229.^2^^~1~^~A~^^^1^223.^235.^1^^^^~04/01/2014~
-~05363~^~306~^311.^2^^~1~^~A~^^^1^298.^323.^1^^^^~04/01/2014~
-~05363~^~307~^50.^2^^~1~^~A~^^^1^46.^55.^1^^^^~04/01/2014~
-~05363~^~318~^16.^0^^~1~^~AS~^^^^^^^^^^~04/01/2014~
-~05363~^~319~^5.^1^^~1~^~A~^^^^^^^^^^~04/01/2014~
-~05363~^~320~^5.^0^^~1~^~AS~^^^^^^^^^^~04/01/2014~
-~05363~^~321~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2014~
-~05363~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2014~
-~05363~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2014~
-~05363~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2014~
-~05363~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2014~
-~05363~^~601~^40.^2^^~1~^~A~^^^1^40.^40.^1^^^^~04/01/2014~
-~05621~^~208~^134.^0^^~4~^~NC~^^^^^^^^^^~02/01/2002~
-~05621~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~07/01/2001~
-~05621~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~07/01/2001~
-~05621~^~268~^559.^0^^~4~^~NC~^^^^^^^^^^~02/01/2002~
-~05621~^~301~^7.^6^0.^~1~^~A~^^^1^4.^10.^5^5.^9.^~4~^~07/01/2001~
-~05621~^~304~^24.^6^0.^~1~^~A~^^^1^20.^25.^5^21.^26.^~4~^~07/01/2001~
-~05621~^~305~^222.^6^9.^~1~^~A~^^^1^177.^241.^5^197.^246.^~4~^~07/01/2001~
-~05621~^~306~^320.^6^10.^~1~^~A~^^^1^272.^340.^5^293.^346.^~4~^~07/01/2001~
-~05621~^~307~^56.^6^2.^~1~^~A~^^^1^47.^63.^5^50.^62.^~4~^~07/01/2001~
-~05621~^~318~^0.^1^^~1~^~A~^^^^^^^^^~1~^~01/01/2002~
-~05621~^~319~^0.^1^^~1~^~A~^^^^^^^^^~1~^~07/01/2001~
-~05621~^~320~^0.^0^^~1~^~AS~^^^^^^^^^^~01/01/2002~
-~05621~^~321~^0.^0^^~7~^~Z~^^^^^^^^^^~07/01/2001~
-~05621~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~07/01/2001~
-~05621~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~07/01/2001~
-~05621~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~07/01/2001~
-~05621~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~07/01/2001~
-~05621~^~417~^13.^1^^~1~^~A~^^^^^^^^^^~07/01/2001~
-~05621~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2002~
-~05621~^~432~^13.^1^^~1~^~A~^^^^^^^^^^~02/01/2002~
-~05621~^~435~^13.^0^^~4~^~NC~^^^^^^^^^^~05/01/2002~
-~05621~^~601~^69.^0^^~4~^~BFYN~^~05622~^^^^^^^^^~07/01/2001~
-~05622~^~208~^163.^0^^~4~^~NC~^^^^^^^^^^~02/01/2002~
-~05622~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~07/01/2001~
-~05622~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~07/01/2001~
-~05622~^~268~^683.^0^^~4~^~NC~^^^^^^^^^^~02/01/2002~
-~05622~^~301~^8.^6^0.^~1~^~A~^^^1^7.^9.^5^7.^9.^~4~^~07/01/2001~
-~05622~^~304~^29.^6^0.^~1~^~A~^^^1^28.^30.^5^28.^29.^~4~^~07/01/2001~
-~05622~^~305~^269.^6^2.^~1~^~A~^^^1^260.^275.^5^263.^275.^~4~^~07/01/2001~
-~05622~^~306~^375.^6^4.^~1~^~A~^^^1^363.^388.^5^363.^386.^~4~^~07/01/2001~
-~05622~^~307~^65.^6^2.^~1~^~A~^^^1^56.^73.^5^57.^72.^~4~^~07/01/2001~
-~05622~^~318~^0.^1^^~1~^~A~^^^^^^^^^~1~^~01/01/2002~
-~05622~^~319~^0.^1^^~1~^~A~^^^^^^^^^~1~^~07/01/2001~
-~05622~^~320~^0.^0^^~1~^~AS~^^^^^^^^^^~01/01/2002~
-~05622~^~321~^0.^0^^~7~^~Z~^^^^^^^^^^~07/01/2001~
-~05622~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~08/01/2001~
-~05622~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~08/01/2001~
-~05622~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~08/01/2001~
-~05622~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~08/01/2001~
-~05622~^~417~^9.^1^^~1~^~A~^^^^^^^^^^~07/01/2001~
-~05622~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2002~
-~05622~^~432~^9.^1^^~1~^~A~^^^^^^^^^^~02/01/2002~
-~05622~^~435~^9.^0^^~4~^~NC~^^^^^^^^^^~05/01/2002~
-~05622~^~601~^87.^6^1.^~1~^~A~^^^1^83.^90.^5^83.^89.^~4~^~07/01/2001~
-~05623~^~208~^103.^0^^~4~^~NC~^^^^^^^^^^~03/01/2002~
-~05623~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~07/01/2001~
-~05623~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~07/01/2001~
-~05623~^~268~^432.^0^^~4~^~NC~^^^^^^^^^^~03/01/2002~
-~05623~^~301~^3.^6^^~1~^~A~^^^^^^^^^^~07/01/2001~
-~05623~^~304~^42.^6^^~1~^~A~^^^^^^^^^^~07/01/2001~
-~05623~^~305~^236.^0^^~4~^~BFNN~^~05621~^^^^^^^^^~01/01/2002~
-~05623~^~306~^300.^6^^~1~^~A~^^^^^^^^^^~07/01/2001~
-~05623~^~307~^120.^6^^~1~^~A~^^^^^^^^^^~07/01/2001~
-~05623~^~318~^0.^0^^~4~^~BFSN~^~05621~^^^^^^^^^~01/01/2002~
-~05623~^~319~^0.^0^^~4~^~BFSN~^~05621~^^^^^^^^^~01/01/2002~
-~05623~^~320~^0.^0^^~4~^~NC~^^^^^^^^^^~03/01/2002~
-~05623~^~321~^0.^0^^~7~^~Z~^^^^^^^^^^~07/01/2001~
-~05623~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~07/01/2001~
-~05623~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~07/01/2001~
-~05623~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~07/01/2001~
-~05623~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~07/01/2001~
-~05623~^~417~^13.^0^^~4~^~BFPN~^~05621~^^^^^^^^^~01/01/2002~
-~05623~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2002~
-~05623~^~432~^13.^0^^~4~^~BFPN~^^^^^^^^^^~03/01/2002~
-~05623~^~435~^13.^0^^~4~^~NC~^^^^^^^^^^~04/01/2003~
-~05623~^~601~^71.^6^^~1~^~A~^^^^^^^^^^~07/01/2001~
-~05624~^~208~^154.^0^^~4~^~NC~^^^^^^^^^^~04/01/2003~
-~05624~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~11/01/2001~
-~05624~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~11/01/2001~
-~05624~^~268~^645.^0^^~4~^~NC~^^^^^^^^^^~04/01/2003~
-~05624~^~301~^6.^3^0.^~1~^~A~^^^1^5.^7.^2^3.^8.^~4~^~11/01/2001~
-~05624~^~304~^30.^3^1.^~1~^~A~^^^1^28.^33.^2^23.^37.^~4~^~11/01/2001~
-~05624~^~305~^272.^3^5.^~1~^~A~^^^1^263.^282.^2^247.^295.^~4~^~11/01/2001~
-~05624~^~306~^397.^3^21.^~1~^~A~^^^1^358.^430.^2^306.^487.^~4~^~11/01/2001~
-~05624~^~307~^53.^3^3.^~1~^~A~^^^1^47.^58.^2^39.^67.^~4~^~11/01/2001~
-~05624~^~318~^0.^0^^~4~^~BFSN~^~05622~^^^^^^^^^~02/01/2002~
-~05624~^~319~^0.^0^^~4~^~BFSN~^~05622~^^^^^^^^^~11/01/2001~
-~05624~^~320~^0.^0^^~4~^~NC~^^^^^^^^^^~04/01/2003~
-~05624~^~321~^0.^0^^~7~^~Z~^^^^^^^^^^~11/01/2001~
-~05624~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~11/01/2001~
-~05624~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~11/01/2001~
-~05624~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~11/01/2001~
-~05624~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~11/01/2001~
-~05624~^~417~^9.^0^^~4~^~BFPN~^~05622~^^^^^^^^^~11/01/2001~
-~05624~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2002~
-~05624~^~432~^9.^0^^~4~^~BFPN~^~05622~^^^^^^^^^~11/01/2001~
-~05624~^~435~^9.^0^^~4~^~NC~^^^^^^^^^^~04/01/2003~
-~05624~^~601~^82.^3^1.^~1~^~A~^^^1^81.^86.^2^74.^90.^~4~^~11/01/2001~
-~05625~^~208~^102.^0^^~4~^~NC~^^^^^^^^^^~03/01/2002~
-~05625~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~07/01/2001~
-~05625~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~07/01/2001~
-~05625~^~268~^425.^0^^~4~^~NC~^^^^^^^^^^~03/01/2002~
-~05625~^~301~^3.^6^^~1~^~A~^^^^^^^^^^~07/01/2001~
-~05625~^~304~^31.^6^^~1~^~A~^^^^^^^^^^~07/01/2001~
-~05625~^~305~^229.^0^^~4~^~BFNN~^~05621~^^^^^^^^^~01/01/2002~
-~05625~^~306~^240.^6^^~1~^~A~^^^^^^^^^^~07/01/2001~
-~05625~^~307~^150.^6^^~1~^~A~^^^^^^^^^^~07/01/2001~
-~05625~^~318~^0.^0^^~4~^~BFSN~^~05621~^^^^^^^^^~03/01/2002~
-~05625~^~319~^0.^0^^~4~^~BFSN~^~05621~^^^^^^^^^~01/01/2002~
-~05625~^~320~^0.^0^^~4~^~NC~^^^^^^^^^^~03/01/2002~
-~05625~^~321~^0.^0^^~7~^~Z~^^^^^^^^^^~07/01/2001~
-~05625~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~07/01/2001~
-~05625~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~07/01/2001~
-~05625~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~07/01/2001~
-~05625~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~07/01/2001~
-~05625~^~417~^12.^0^^~4~^~BFSN~^~05621~^^^^^^^^^~01/01/2002~
-~05625~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2002~
-~05625~^~432~^12.^0^^~4~^~BFSN~^^^^^^^^^^~03/01/2002~
-~05625~^~435~^12.^0^^~4~^~NC~^^^^^^^^^^~03/01/2002~
-~05625~^~601~^71.^6^^~1~^~A~^^^^^^^^^^~07/01/2001~
-~05626~^~208~^112.^0^^~4~^~NC~^^^^^^^^^^~03/01/2002~
-~05626~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~07/01/2001~
-~05626~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~07/01/2001~
-~05626~^~268~^469.^0^^~4~^~NC~^^^^^^^^^^~03/01/2002~
-~05626~^~301~^4.^26^1.^~1~^~A~^^^2^3.^6.^1^-11.^20.^~2~^~07/01/2001~
-~05626~^~304~^40.^6^^~1~^~A~^^^^^^^^^^~07/01/2001~
-~05626~^~305~^236.^0^^~4~^~BFNN~^~05621~^^^^^^^^^~08/01/2001~
-~05626~^~306~^330.^26^10.^~1~^~A~^^^2^320.^340.^1^202.^457.^~2~^~07/01/2001~
-~05626~^~307~^90.^26^0.^~1~^~A~^^^2^89.^90.^1^85.^94.^~2~^~07/01/2001~
-~05626~^~318~^15.^14^^~1~^~A~^^^^^^^^^^~01/01/2002~
-~05626~^~319~^4.^14^^~1~^~A~^^^^^^^^^^~07/01/2001~
-~05626~^~320~^4.^0^^~1~^~AS~^^^^^^^^^^~01/01/2002~
-~05626~^~321~^0.^0^^~7~^~Z~^^^^^^^^^^~07/01/2001~
-~05626~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~07/01/2001~
-~05626~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~07/01/2001~
-~05626~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~07/01/2001~
-~05626~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~07/01/2001~
-~05626~^~417~^13.^0^^~4~^~BFPN~^~05621~^^^^^^^^^~08/01/2001~
-~05626~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2002~
-~05626~^~432~^13.^0^^~4~^~BFPN~^^^^^^^^^^~03/01/2002~
-~05626~^~435~^13.^0^^~4~^~NC~^^^^^^^^^^~06/01/2008~
-~05626~^~601~^85.^6^^~1~^~A~^^^^^^^^^^~09/01/2001~
-~05627~^~208~^168.^0^^~4~^~NC~^^^^^^^^^^~03/01/2002~
-~05627~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~07/01/2001~
-~05627~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~07/01/2001~
-~05627~^~268~^703.^0^^~4~^~NC~^^^^^^^^^^~03/01/2002~
-~05627~^~301~^7.^20^0.^~1~^~A~^^^^^^^^^^~07/01/2001~
-~05627~^~304~^34.^0^^~4~^~BFNN~^~05622~^^^^^^^^^~08/01/2001~
-~05627~^~305~^323.^0^^~4~^~BFNN~^~05622~^^^^^^^^^~08/01/2001~
-~05627~^~306~^324.^20^16.^~1~^~A~^^^^^^^^^^~07/01/2001~
-~05627~^~307~^110.^20^4.^~1~^~A~^^^^^^^^^^~07/01/2001~
-~05627~^~318~^11.^0^^~1~^~AS~^^^^^^^^^^~03/01/2002~
-~05627~^~319~^3.^5^^~1~^~A~^^^^^^^^^^~07/01/2001~
-~05627~^~320~^3.^0^^~1~^~AS~^^^^^^^^^^~03/01/2002~
-~05627~^~321~^0.^0^^~7~^~Z~^^^^^^^^^^~07/01/2001~
-~05627~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~07/01/2001~
-~05627~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~07/01/2001~
-~05627~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~07/01/2001~
-~05627~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~07/01/2001~
-~05627~^~417~^10.^0^^~4~^~BFPN~^~05622~^^^^^^^^^~08/01/2001~
-~05627~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2002~
-~05627~^~432~^10.^0^^~4~^~BFPN~^^^^^^^^^^~03/01/2002~
-~05627~^~435~^10.^0^^~4~^~NC~^^^^^^^^^^~05/01/2002~
-~05627~^~601~^129.^20^8.^~1~^~A~^^^^^^^^^^~10/01/2001~
-~05628~^~208~^108.^0^^~4~^~NC~^^^^^^^^^^~03/01/2002~
-~05628~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~07/01/2001~
-~05628~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~07/01/2001~
-~05628~^~268~^453.^0^^~4~^~NC~^^^^^^^^^^~03/01/2002~
-~05628~^~301~^4.^25^1.^~1~^~A~^^^2^3.^5.^1^-9.^18.^~2~^~07/01/2001~
-~05628~^~304~^26.^6^^~1~^~A~^^^^^^^^^^~07/01/2001~
-~05628~^~305~^229.^0^^~4~^~BFNN~^~05621~^^^^^^^^^~08/01/2001~
-~05628~^~306~^318.^25^2.^~1~^~A~^^^2^315.^320.^1^285.^349.^~2~^~07/01/2001~
-~05628~^~307~^102.^25^8.^~1~^~A~^^^2^94.^110.^1^0.^203.^~2~^~07/01/2001~
-~05628~^~318~^17.^14^^~1~^~A~^^^^^^^^^^~11/01/2001~
-~05628~^~319~^5.^14^^~1~^~A~^^^^^^^^^^~07/01/2001~
-~05628~^~320~^5.^0^^~1~^~AS~^^^^^^^^^^~03/01/2002~
-~05628~^~321~^0.^0^^~7~^~Z~^^^^^^^^^^~07/01/2001~
-~05628~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~07/01/2001~
-~05628~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~07/01/2001~
-~05628~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~07/01/2001~
-~05628~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~07/01/2001~
-~05628~^~417~^12.^0^^~4~^~BFPN~^~05621~^^^^^^^^^~08/01/2001~
-~05628~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2002~
-~05628~^~432~^12.^0^^~4~^~BFPN~^^^^^^^^^^~03/01/2002~
-~05628~^~435~^12.^0^^~4~^~NC~^^^^^^^^^^~06/01/2008~
-~05628~^~601~^67.^6^^~1~^~A~^^^^^^^^^^~07/01/2001~
-~05629~^~208~^156.^0^^~4~^~NC~^^^^^^^^^^~03/01/2002~
-~05629~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~07/01/2001~
-~05629~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~07/01/2001~
-~05629~^~268~^654.^0^^~4~^~NC~^^^^^^^^^^~03/01/2002~
-~05629~^~301~^6.^19^0.^~1~^~A~^^^^^^^^^^~07/01/2001~
-~05629~^~304~^33.^0^^~4~^~BFNN~^~05622~^^^^^^^^^~08/01/2001~
-~05629~^~305~^307.^0^^~4~^~BFNN~^~05622~^^^^^^^^^~08/01/2001~
-~05629~^~306~^312.^19^15.^~1~^~A~^^^^^^^^^^~07/01/2001~
-~05629~^~307~^118.^19^4.^~1~^~A~^^^^^^^^^^~07/01/2001~
-~05629~^~318~^10.^0^^~1~^~AS~^^^^^^^^^^~03/01/2002~
-~05629~^~319~^3.^5^^~1~^~A~^^^^^^^^^^~07/01/2001~
-~05629~^~320~^3.^0^^~1~^~AS~^^^^^^^^^^~03/01/2002~
-~05629~^~321~^0.^0^^~7~^~Z~^^^^^^^^^^~07/01/2001~
-~05629~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~07/01/2001~
-~05629~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~07/01/2001~
-~05629~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~07/01/2001~
-~05629~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~07/01/2001~
-~05629~^~417~^10.^0^^~4~^~BFPN~^~05622~^^^^^^^^^~08/01/2001~
-~05629~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2002~
-~05629~^~432~^10.^0^^~4~^~BFPN~^^^^^^^^^^~03/01/2002~
-~05629~^~435~^10.^0^^~4~^~NC~^^^^^^^^^^~05/01/2002~
-~05629~^~601~^91.^0^^~4~^~BFSN~^~05622~^^^^^^^^^~11/01/2001~
-~05630~^~208~^103.^0^^~4~^~NC~^^^^^^^^^^~03/01/2002~
-~05630~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~07/01/2001~
-~05630~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~07/01/2001~
-~05630~^~268~^430.^0^^~4~^~NC~^^^^^^^^^^~03/01/2002~
-~05630~^~301~^3.^6^^~1~^~A~^^^^^^^^^^~07/01/2001~
-~05630~^~304~^29.^6^^~1~^~A~^^^^^^^^^^~07/01/2001~
-~05630~^~305~^225.^0^^~4~^~BFNN~^~05622~^^^^^^^^^~11/01/2001~
-~05630~^~306~^320.^6^^~1~^~A~^^^^^^^^^^~07/01/2001~
-~05630~^~307~^100.^6^^~1~^~A~^^^^^^^^^^~07/01/2001~
-~05630~^~318~^0.^0^^~4~^~BFSN~^~05622~^^^^^^^^^~01/01/2002~
-~05630~^~319~^0.^0^^~4~^~BFSN~^~05622~^^^^^^^^^~11/01/2001~
-~05630~^~320~^0.^0^^~4~^~NC~^^^^^^^^^^~03/01/2002~
-~05630~^~321~^0.^0^^~7~^~Z~^^^^^^^^^^~07/01/2001~
-~05630~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~07/01/2001~
-~05630~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~07/01/2001~
-~05630~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~07/01/2001~
-~05630~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~07/01/2001~
-~05630~^~417~^7.^0^^~4~^~BFPN~^~05622~^^^^^^^^^~03/01/2002~
-~05630~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2002~
-~05630~^~432~^7.^0^^~4~^~BFPN~^~05622~^^^^^^^^^~11/01/2001~
-~05630~^~435~^7.^0^^~4~^~NC~^^^^^^^^^^~03/01/2002~
-~05630~^~601~^78.^6^^~1~^~A~^^^^^^^^^^~07/01/2001~
-~05631~^~208~^141.^0^^~4~^~NC~^^^^^^^^^^~03/01/2002~
-~05631~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~07/01/2001~
-~05631~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~07/01/2001~
-~05631~^~268~^591.^0^^~4~^~NC~^^^^^^^^^^~03/01/2002~
-~05631~^~301~^4.^6^^~1~^~A~^^^^^^^^^^~07/01/2001~
-~05631~^~304~^30.^6^^~1~^~A~^^^^^^^^^^~07/01/2001~
-~05631~^~305~^217.^0^^~4~^~BFNN~^~05621~^^^^^^^^^~01/01/2002~
-~05631~^~306~^250.^6^^~1~^~A~^^^^^^^^^^~07/01/2001~
-~05631~^~307~^150.^6^^~1~^~A~^^^^^^^^^^~07/01/2001~
-~05631~^~318~^0.^0^^~4~^~BFSN~^~05621~^^^^^^^^^~01/01/2002~
-~05631~^~319~^0.^0^^~4~^~BFSN~^~05621~^^^^^^^^^~01/01/2002~
-~05631~^~320~^0.^0^^~4~^~NC~^^^^^^^^^^~03/01/2002~
-~05631~^~321~^0.^0^^~7~^~Z~^^^^^^^^^^~07/01/2001~
-~05631~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~07/01/2001~
-~05631~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~07/01/2001~
-~05631~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~07/01/2001~
-~05631~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~07/01/2001~
-~05631~^~417~^13.^0^^~4~^~BFPN~^~05621~^^^^^^^^^~01/01/2002~
-~05631~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2002~
-~05631~^~432~^13.^0^^~4~^~BFPN~^^^^^^^^^^~03/01/2002~
-~05631~^~435~^13.^0^^~4~^~NC~^^^^^^^^^^~03/01/2002~
-~05631~^~601~^81.^6^^~1~^~A~^^^^^^^^^^~07/01/2001~
-~05632~^~208~^152.^0^^~4~^~NC~^^^^^^^^^^~04/01/2003~
-~05632~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~11/01/2001~
-~05632~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~11/01/2001~
-~05632~^~268~^638.^0^^~4~^~NC~^^^^^^^^^^~04/01/2003~
-~05632~^~301~^9.^3^3.^~1~^~A~^^^1^5.^17.^2^-6.^24.^~4~^~11/01/2001~
-~05632~^~304~^30.^3^1.^~1~^~A~^^^1^28.^32.^2^23.^35.^~4~^~11/01/2001~
-~05632~^~305~^274.^3^10.^~1~^~A~^^^1^257.^292.^2^230.^317.^~4~^~11/01/2001~
-~05632~^~306~^374.^3^16.^~1~^~A~^^^1^345.^402.^2^303.^444.^~4~^~11/01/2001~
-~05632~^~307~^58.^3^2.^~1~^~A~^^^1^54.^63.^2^45.^69.^~4~^~11/01/2001~
-~05632~^~318~^0.^0^^~4~^~BFSN~^~05622~^^^^^^^^^~02/01/2002~
-~05632~^~319~^0.^0^^~4~^~BFSN~^~05622~^^^^^^^^^~03/01/2002~
-~05632~^~320~^0.^0^^~4~^~NC~^^^^^^^^^^~04/01/2003~
-~05632~^~321~^0.^0^^~7~^~Z~^^^^^^^^^^~11/01/2001~
-~05632~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~11/01/2001~
-~05632~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~11/01/2001~
-~05632~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~11/01/2001~
-~05632~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~11/01/2001~
-~05632~^~417~^9.^0^^~4~^~BFPN~^~05622~^^^^^^^^^~11/01/2001~
-~05632~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2002~
-~05632~^~432~^9.^0^^~4~^~BFPN~^^^^^^^^^^~04/01/2003~
-~05632~^~435~^9.^0^^~4~^~NC~^^^^^^^^^^~04/01/2003~
-~05632~^~601~^88.^3^4.^~1~^~A~^^^1^80.^94.^2^70.^104.^~4~^~11/01/2001~
-~05641~^~208~^165.^0^^~4~^~NC~^^^^^^^^^^~02/01/2002~
-~05641~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~07/01/2001~
-~05641~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~07/01/2001~
-~05641~^~268~^690.^0^^~4~^~NC~^^^^^^^^^^~02/01/2002~
-~05641~^~301~^7.^6^0.^~1~^~A~^^^1^6.^9.^5^5.^8.^~4~^~07/01/2001~
-~05641~^~304~^20.^6^0.^~1~^~A~^^^1^20.^21.^5^19.^20.^~4~^~07/01/2001~
-~05641~^~305~^199.^6^1.^~1~^~A~^^^1^193.^202.^5^195.^202.^~4~^~07/01/2001~
-~05641~^~306~^291.^6^6.^~1~^~A~^^^1^274.^312.^5^273.^307.^~4~^~07/01/2001~
-~05641~^~307~^72.^6^1.^~1~^~A~^^^1^67.^78.^5^67.^76.^~4~^~07/01/2001~
-~05641~^~318~^0.^1^^~1~^~A~^^^^^^^^^~1~^~01/01/2002~
-~05641~^~319~^0.^1^^~1~^~A~^^^^^^^^^~1~^~07/01/2001~
-~05641~^~320~^0.^0^^~1~^~AS~^^^^^^^^^^~01/01/2002~
-~05641~^~321~^0.^0^^~7~^~Z~^^^^^^^^^^~07/01/2001~
-~05641~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~07/01/2001~
-~05641~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~07/01/2001~
-~05641~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~07/01/2001~
-~05641~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~07/01/2001~
-~05641~^~417~^7.^1^^~1~^~A~^^^^^^^^^^~07/01/2001~
-~05641~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2002~
-~05641~^~432~^7.^0^^~4~^~NR~^^^^^^^^^^~07/01/2001~
-~05641~^~435~^7.^0^^~4~^~NC~^^^^^^^^^^~05/01/2002~
-~05641~^~601~^71.^0^^~4~^~BFYN~^~05642~^^^^^^^^^~07/01/2001~
-~05642~^~208~^175.^0^^~4~^~NC~^^^^^^^^^^~03/01/2009~
-~05642~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~07/01/2001~
-~05642~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~07/01/2001~
-~05642~^~268~^734.^0^^~4~^~NC~^^^^^^^^^^~03/01/2009~
-~05642~^~301~^8.^6^0.^~1~^~A~^^^1^7.^10.^5^6.^9.^~4~^~07/01/2001~
-~05642~^~304~^23.^6^0.^~1~^~A~^^^1^22.^24.^5^21.^23.^~4~^~07/01/2001~
-~05642~^~305~^224.^6^2.^~1~^~A~^^^1^217.^232.^5^218.^229.^~4~^~07/01/2001~
-~05642~^~306~^323.^6^5.^~1~^~A~^^^1^299.^333.^5^309.^336.^~4~^~07/01/2001~
-~05642~^~307~^80.^6^0.^~1~^~A~^^^1^77.^83.^5^78.^82.^~4~^~07/01/2001~
-~05642~^~318~^0.^1^^~1~^~A~^^^^^^^^^~1~^~01/01/2002~
-~05642~^~319~^0.^1^^~1~^~A~^^^^^^^^^~1~^~07/01/2001~
-~05642~^~320~^0.^0^^~1~^~AS~^^^^^^^^^^~03/01/2002~
-~05642~^~321~^0.^0^^~7~^~Z~^^^^^^^^^^~07/01/2001~
-~05642~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~07/01/2001~
-~05642~^~324~^4.^0^^~4~^~BFFN~^^^^^^^^^^~03/01/2009~
-~05642~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~07/01/2001~
-~05642~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~07/01/2001~
-~05642~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~07/01/2001~
-~05642~^~417~^14.^1^^~1~^~A~^^^^^^^^^^~07/01/2001~
-~05642~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2002~
-~05642~^~432~^14.^1^^~1~^~A~^^^^^^^^^^~03/01/2009~
-~05642~^~435~^14.^0^^~4~^~NC~^^^^^^^^^^~03/01/2009~
-~05642~^~601~^83.^6^2.^~1~^~A~^^^1^76.^95.^5^75.^90.^~4~^~04/01/2005~
-~05643~^~208~^117.^0^^~4~^~NC~^^^^^^^^^^~03/01/2002~
-~05643~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~07/01/2001~
-~05643~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~07/01/2001~
-~05643~^~268~^490.^0^^~4~^~NC~^^^^^^^^^^~03/01/2002~
-~05643~^~301~^6.^3^^~1~^~A~^^^^^^^^^^~07/01/2001~
-~05643~^~304~^22.^0^^~4~^~BFNN~^~05641~^^^^^^^^^~07/01/2001~
-~05643~^~305~^211.^0^^~4~^~BFNN~^~05641~^^^^^^^^^~07/01/2001~
-~05643~^~306~^308.^0^^~4~^~BFNN~^~05641~^^^^^^^^^~07/01/2001~
-~05643~^~307~^75.^3^^~1~^~A~^^^^^^^^^^~07/01/2001~
-~05643~^~318~^0.^0^^~4~^~BFSN~^~05641~^^^^^^^^^~02/01/2002~
-~05643~^~319~^0.^0^^~4~^~BFSN~^~05641~^^^^^^^^^~07/01/2001~
-~05643~^~320~^0.^0^^~4~^~NC~^^^^^^^^^^~03/01/2002~
-~05643~^~321~^0.^0^^~7~^~Z~^^^^^^^^^^~07/01/2001~
-~05643~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~07/01/2001~
-~05643~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~07/01/2001~
-~05643~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~07/01/2001~
-~05643~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~07/01/2001~
-~05643~^~417~^8.^0^^~4~^~BFPN~^~05641~^^^^^^^^^~07/01/2001~
-~05643~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2002~
-~05643~^~432~^8.^0^^~4~^~BFPN~^^^^^^^^^^~03/01/2002~
-~05643~^~435~^8.^0^^~4~^~NC~^^^^^^^^^^~06/01/2008~
-~05643~^~601~^73.^3^^~1~^~A~^^^^^^^^^^~07/01/2001~
-~05644~^~208~^111.^0^^~4~^~NC~^^^^^^^^^^~03/01/2002~
-~05644~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~07/01/2001~
-~05644~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~07/01/2001~
-~05644~^~268~^465.^0^^~4~^~NC~^^^^^^^^^^~03/01/2002~
-~05644~^~301~^5.^3^^~1~^~A~^^^^^^^^^^~07/01/2001~
-~05644~^~304~^22.^0^^~4~^~BFNN~^~05641~^^^^^^^^^~07/01/2001~
-~05644~^~305~^220.^0^^~4~^~BFNN~^~05641~^^^^^^^^^~07/01/2001~
-~05644~^~306~^320.^0^^~4~^~BFNN~^~05641~^^^^^^^^^~07/01/2001~
-~05644~^~307~^72.^3^^~1~^~A~^^^^^^^^^^~07/01/2001~
-~05644~^~318~^0.^0^^~4~^~BFSN~^~05641~^^^^^^^^^~02/01/2002~
-~05644~^~319~^0.^0^^~4~^~BFSN~^~05641~^^^^^^^^^~07/01/2001~
-~05644~^~320~^0.^0^^~4~^~NC~^^^^^^^^^^~03/01/2002~
-~05644~^~321~^0.^0^^~7~^~Z~^^^^^^^^^^~07/01/2001~
-~05644~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~07/01/2001~
-~05644~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~07/01/2001~
-~05644~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~07/01/2001~
-~05644~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~07/01/2001~
-~05644~^~417~^8.^0^^~4~^~BFPN~^~05641~^^^^^^^^^~07/01/2001~
-~05644~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2002~
-~05644~^~432~^8.^0^^~4~^~BFPN~^^^^^^^^^^~03/01/2002~
-~05644~^~435~^8.^0^^~4~^~NC~^^^^^^^^^^~06/01/2008~
-~05644~^~601~^66.^3^^~1~^~A~^^^^^^^^^^~07/01/2001~
-~05645~^~208~^141.^0^^~4~^~NC~^^^^^^^^^^~02/01/2002~
-~05645~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~07/01/2001~
-~05645~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~07/01/2001~
-~05645~^~268~^591.^0^^~4~^~NC~^^^^^^^^^^~02/01/2002~
-~05645~^~301~^6.^3^^~1~^~A~^^^^^^^^^^~07/01/2001~
-~05645~^~304~^25.^0^^~4~^~BFNN~^~05642~^^^^^^^^^~07/01/2001~
-~05645~^~305~^244.^0^^~4~^~BFNN~^~05642~^^^^^^^^^~07/01/2001~
-~05645~^~306~^352.^0^^~4~^~BFNN~^~05642~^^^^^^^^^~07/01/2001~
-~05645~^~307~^83.^3^^~1~^~A~^^^^^^^^^^~07/01/2001~
-~05645~^~318~^0.^0^^~4~^~BFSN~^~05642~^^^^^^^^^~01/01/2002~
-~05645~^~319~^0.^0^^~4~^~BFSN~^~05642~^^^^^^^^^~07/01/2001~
-~05645~^~320~^0.^0^^~4~^~NC~^^^^^^^^^^~02/01/2002~
-~05645~^~321~^0.^0^^~7~^~Z~^^^^^^^^^^~07/01/2001~
-~05645~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~07/01/2001~
-~05645~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~07/01/2001~
-~05645~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~07/01/2001~
-~05645~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~07/01/2001~
-~05645~^~417~^16.^0^^~4~^~BFPN~^~05642~^^^^^^^^^~07/01/2001~
-~05645~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2002~
-~05645~^~432~^16.^0^^~4~^~BFPN~^^^^^^^^^^~02/01/2002~
-~05645~^~435~^16.^0^^~4~^~NC~^^^^^^^^^^~02/01/2002~
-~05645~^~601~^73.^3^^~1~^~A~^^^^^^^^^^~07/01/2001~
-~05646~^~208~^127.^0^^~4~^~NC~^^^^^^^^^^~03/01/2002~
-~05646~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~07/01/2001~
-~05646~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~07/01/2001~
-~05646~^~268~^532.^0^^~4~^~NC~^^^^^^^^^^~03/01/2002~
-~05646~^~301~^5.^3^^~1~^~A~^^^^^^^^^^~07/01/2001~
-~05646~^~304~^23.^0^^~4~^~BFNN~^~05641~^^^^^^^^^~07/01/2001~
-~05646~^~305~^226.^0^^~4~^~BFNN~^~05641~^^^^^^^^^~07/01/2001~
-~05646~^~306~^330.^0^^~4~^~BFNN~^~05641~^^^^^^^^^~07/01/2001~
-~05646~^~307~^76.^3^^~1~^~A~^^^^^^^^^^~07/01/2001~
-~05646~^~318~^0.^0^^~4~^~BFSN~^~05641~^^^^^^^^^~02/01/2002~
-~05646~^~319~^0.^0^^~4~^~BFSN~^~05641~^^^^^^^^^~07/01/2001~
-~05646~^~320~^0.^0^^~4~^~NC~^^^^^^^^^^~03/01/2002~
-~05646~^~321~^0.^0^^~7~^~Z~^^^^^^^^^^~07/01/2001~
-~05646~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~07/01/2001~
-~05646~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~07/01/2001~
-~05646~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~07/01/2001~
-~05646~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~07/01/2001~
-~05646~^~417~^9.^0^^~4~^~BFPN~^~05641~^^^^^^^^^~07/01/2001~
-~05646~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2002~
-~05646~^~432~^9.^0^^~4~^~BFPN~^^^^^^^^^^~03/01/2002~
-~05646~^~435~^9.^0^^~4~^~NC~^^^^^^^^^^~03/01/2002~
-~05646~^~601~^73.^9^1.^~1~^~A~^^^1^70.^76.^2^65.^80.^~4~^~07/01/2001~
-~05647~^~208~^164.^0^^~4~^~NC~^^^^^^^^^^~03/01/2002~
-~05647~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~07/01/2001~
-~05647~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~07/01/2001~
-~05647~^~268~^685.^0^^~4~^~NC~^^^^^^^^^^~03/01/2002~
-~05647~^~301~^5.^3^^~1~^~A~^^^^^^^^^^~07/01/2001~
-~05647~^~304~^26.^0^^~4~^~BFNN~^~05642~^^^^^^^^^~07/01/2001~
-~05647~^~305~^253.^0^^~4~^~BFNN~^~05642~^^^^^^^^^~07/01/2001~
-~05647~^~306~^366.^0^^~4~^~BFNN~^~05642~^^^^^^^^^~07/01/2001~
-~05647~^~307~^73.^3^^~1~^~A~^^^^^^^^^^~07/01/2001~
-~05647~^~318~^0.^0^^~4~^~BFSN~^~05642~^^^^^^^^^~02/01/2002~
-~05647~^~319~^0.^0^^~4~^~BFSN~^~05642~^^^^^^^^^~07/01/2001~
-~05647~^~320~^0.^0^^~4~^~NC~^^^^^^^^^^~03/01/2002~
-~05647~^~321~^0.^0^^~7~^~Z~^^^^^^^^^^~07/01/2001~
-~05647~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~07/01/2001~
-~05647~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~07/01/2001~
-~05647~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~07/01/2001~
-~05647~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~07/01/2001~
-~05647~^~417~^16.^0^^~4~^~BFPN~^~05642~^^^^^^^^^~07/01/2001~
-~05647~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2002~
-~05647~^~432~^16.^0^^~4~^~BFPN~^^^^^^^^^^~03/01/2002~
-~05647~^~435~^16.^0^^~4~^~NC~^^^^^^^^^^~03/01/2002~
-~05647~^~601~^97.^3^^~1~^~A~^^^^^^^^^^~07/01/2001~
-~05648~^~208~^115.^0^^~4~^~NC~^^^^^^^^^^~03/01/2002~
-~05648~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~07/01/2001~
-~05648~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~07/01/2001~
-~05648~^~268~^482.^0^^~4~^~NC~^^^^^^^^^^~03/01/2002~
-~05648~^~301~^5.^3^^~1~^~A~^^^^^^^^^^~07/01/2001~
-~05648~^~304~^23.^0^^~4~^~BFNN~^~05641~^^^^^^^^^~07/01/2001~
-~05648~^~305~^221.^0^^~4~^~BFNN~^~05641~^^^^^^^^^~07/01/2001~
-~05648~^~306~^322.^0^^~4~^~BFNN~^~05641~^^^^^^^^^~07/01/2001~
-~05648~^~307~^90.^3^^~1~^~A~^^^^^^^^^^~07/01/2001~
-~05648~^~318~^0.^0^^~4~^~BFSN~^~05641~^^^^^^^^^~02/01/2002~
-~05648~^~319~^0.^0^^~4~^~BFSN~^~05641~^^^^^^^^^~07/01/2001~
-~05648~^~320~^0.^0^^~4~^~NC~^^^^^^^^^^~03/01/2002~
-~05648~^~321~^0.^0^^~7~^~Z~^^^^^^^^^^~07/01/2001~
-~05648~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~07/01/2001~
-~05648~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~07/01/2001~
-~05648~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~07/01/2001~
-~05648~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~07/01/2001~
-~05648~^~417~^8.^0^^~4~^~BFPN~^~05641~^^^^^^^^^~07/01/2001~
-~05648~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2002~
-~05648~^~432~^8.^0^^~4~^~BFPN~^^^^^^^^^^~03/01/2002~
-~05648~^~435~^8.^0^^~4~^~NC~^^^^^^^^^^~06/01/2008~
-~05648~^~601~^65.^3^^~1~^~A~^^^^^^^^^^~07/01/2001~
-~05649~^~208~^120.^0^^~4~^~NC~^^^^^^^^^^~03/01/2002~
-~05649~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~07/01/2001~
-~05649~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~07/01/2001~
-~05649~^~268~^501.^0^^~4~^~NC~^^^^^^^^^^~03/01/2002~
-~05649~^~301~^5.^3^^~1~^~A~^^^^^^^^^^~07/01/2001~
-~05649~^~304~^23.^0^^~4~^~BFNN~^~05641~^^^^^^^^^~07/01/2001~
-~05649~^~305~^229.^0^^~4~^~BFNN~^~05641~^^^^^^^^^~07/01/2001~
-~05649~^~306~^333.^0^^~4~^~BFNN~^~05641~^^^^^^^^^~07/01/2001~
-~05649~^~307~^70.^3^^~1~^~A~^^^^^^^^^^~07/01/2001~
-~05649~^~318~^0.^0^^~4~^~BFSN~^~05641~^^^^^^^^^~02/01/2002~
-~05649~^~319~^0.^0^^~4~^~BFSN~^~05641~^^^^^^^^^~07/01/2001~
-~05649~^~320~^0.^0^^~4~^~NC~^^^^^^^^^^~03/01/2002~
-~05649~^~321~^0.^0^^~7~^~Z~^^^^^^^^^^~07/01/2001~
-~05649~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~07/01/2001~
-~05649~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~07/01/2001~
-~05649~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~07/01/2001~
-~05649~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~07/01/2001~
-~05649~^~417~^8.^0^^~4~^~BFPN~^~05641~^^^^^^^^^~07/01/2001~
-~05649~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2002~
-~05649~^~432~^8.^0^^~4~^~BFPN~^^^^^^^^^^~03/01/2002~
-~05649~^~435~^8.^0^^~4~^~NC~^^^^^^^^^^~03/01/2002~
-~05649~^~601~^79.^9^1.^~1~^~A~^^^1^77.^83.^2^71.^87.^~4~^~07/01/2001~
-~05650~^~208~^156.^0^^~4~^~NC~^^^^^^^^^^~03/01/2002~
-~05650~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~07/01/2001~
-~05650~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~07/01/2001~
-~05650~^~268~^655.^0^^~4~^~NC~^^^^^^^^^^~03/01/2002~
-~05650~^~301~^5.^3^^~1~^~A~^^^^^^^^^^~07/01/2001~
-~05650~^~304~^26.^0^^~4~^~BFNN~^~05642~^^^^^^^^^~07/01/2001~
-~05650~^~305~^254.^0^^~4~^~BFNN~^~05642~^^^^^^^^^~07/01/2001~
-~05650~^~306~^367.^0^^~4~^~BFNN~^~05642~^^^^^^^^^~07/01/2001~
-~05650~^~307~^72.^3^^~1~^~A~^^^^^^^^^^~07/01/2001~
-~05650~^~318~^0.^0^^~4~^~BFSN~^~05642~^^^^^^^^^~02/01/2002~
-~05650~^~319~^0.^0^^~4~^~BFSN~^~05642~^^^^^^^^^~07/01/2001~
-~05650~^~320~^0.^0^^~4~^~NC~^^^^^^^^^^~03/01/2002~
-~05650~^~321~^0.^0^^~7~^~Z~^^^^^^^^^^~07/01/2001~
-~05650~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~07/01/2001~
-~05650~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~07/01/2001~
-~05650~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~07/01/2001~
-~05650~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~07/01/2001~
-~05650~^~417~^16.^0^^~4~^~BFPN~^~05642~^^^^^^^^^~07/01/2001~
-~05650~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2002~
-~05650~^~432~^16.^0^^~4~^~BFPN~^^^^^^^^^^~03/01/2002~
-~05650~^~435~^16.^0^^~4~^~NC~^^^^^^^^^^~03/01/2002~
-~05650~^~601~^93.^3^^~1~^~A~^^^^^^^^^^~07/01/2001~
-~05651~^~208~^125.^0^^~4~^~NC~^^^^^^^^^^~03/01/2002~
-~05651~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~07/01/2001~
-~05651~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~07/01/2001~
-~05651~^~268~^524.^0^^~4~^~NC~^^^^^^^^^^~03/01/2002~
-~05651~^~301~^6.^3^^~1~^~A~^^^^^^^^^^~07/01/2001~
-~05651~^~304~^21.^0^^~4~^~BFNN~^~05641~^^^^^^^^^~07/01/2001~
-~05651~^~305~^204.^0^^~4~^~BFNN~^~05641~^^^^^^^^^~07/01/2001~
-~05651~^~306~^297.^0^^~4~^~BFNN~^~05641~^^^^^^^^^~07/01/2001~
-~05651~^~307~^83.^3^^~1~^~A~^^^^^^^^^^~07/01/2001~
-~05651~^~318~^0.^0^^~4~^~BFSN~^~05641~^^^^^^^^^~02/01/2002~
-~05651~^~319~^0.^0^^~4~^~BFSN~^~05641~^^^^^^^^^~07/01/2001~
-~05651~^~320~^0.^0^^~4~^~NC~^^^^^^^^^^~03/01/2002~
-~05651~^~321~^0.^0^^~7~^~Z~^^^^^^^^^^~07/01/2001~
-~05651~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~07/01/2001~
-~05651~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~07/01/2001~
-~05651~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~07/01/2001~
-~05651~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~07/01/2001~
-~05651~^~417~^8.^0^^~4~^~BFPN~^~05641~^^^^^^^^^~07/01/2001~
-~05651~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2002~
-~05651~^~432~^8.^0^^~4~^~BFPN~^^^^^^^^^^~03/01/2002~
-~05651~^~435~^8.^0^^~4~^~NC~^^^^^^^^^^~07/01/2004~
-~05651~^~601~^73.^3^^~1~^~A~^^^^^^^^^^~07/01/2001~
-~05652~^~208~^159.^0^^~4~^~NC~^^^^^^^^^^~03/01/2002~
-~05652~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~07/01/2001~
-~05652~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~07/01/2001~
-~05652~^~268~^665.^0^^~4~^~NC~^^^^^^^^^^~03/01/2002~
-~05652~^~301~^6.^3^^~1~^~A~^^^^^^^^^^~07/01/2001~
-~05652~^~304~^29.^0^^~4~^~BFNN~^~05641~^^^^^^^^^~07/01/2001~
-~05652~^~305~^281.^0^^~4~^~BFNN~^~05641~^^^^^^^^^~07/01/2001~
-~05652~^~306~^409.^0^^~4~^~BFNN~^~05641~^^^^^^^^^~07/01/2001~
-~05652~^~307~^81.^3^^~1~^~A~^^^^^^^^^^~07/01/2001~
-~05652~^~318~^0.^0^^~4~^~BFSN~^~05642~^^^^^^^^^~02/01/2002~
-~05652~^~319~^0.^0^^~4~^~BFSN~^~05642~^^^^^^^^^~07/01/2001~
-~05652~^~320~^0.^0^^~4~^~NC~^^^^^^^^^^~03/01/2002~
-~05652~^~321~^0.^0^^~7~^~Z~^^^^^^^^^^~07/01/2001~
-~05652~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~07/01/2001~
-~05652~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~07/01/2001~
-~05652~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~07/01/2001~
-~05652~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~07/01/2001~
-~05652~^~417~^16.^0^^~4~^~BFPN~^~05642~^^^^^^^^^~07/01/2001~
-~05652~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2002~
-~05652~^~432~^16.^0^^~4~^~BFPN~^^^^^^^^^^~03/01/2002~
-~05652~^~435~^16.^0^^~4~^~NC~^^^^^^^^^^~03/01/2002~
-~05652~^~601~^90.^3^^~1~^~A~^^^^^^^^^^~07/01/2001~
-~05653~^~208~^116.^0^^~4~^~NC~^^^^^^^^^^~03/01/2002~
-~05653~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~07/01/2001~
-~05653~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~07/01/2001~
-~05653~^~268~^483.^0^^~4~^~NC~^^^^^^^^^^~03/01/2002~
-~05653~^~301~^5.^3^^~1~^~A~^^^^^^^^^^~07/01/2001~
-~05653~^~304~^22.^0^^~4~^~BFNN~^~05641~^^^^^^^^^~07/01/2001~
-~05653~^~305~^216.^0^^~4~^~BFNN~^~05641~^^^^^^^^^~07/01/2001~
-~05653~^~306~^315.^0^^~4~^~BFNN~^~05641~^^^^^^^^^~07/01/2001~
-~05653~^~307~^72.^3^^~1~^~A~^^^^^^^^^^~07/01/2001~
-~05653~^~318~^0.^0^^~4~^~BFSN~^~05641~^^^^^^^^^~02/01/2002~
-~05653~^~319~^0.^0^^~4~^~BFSN~^~05641~^^^^^^^^^~07/01/2001~
-~05653~^~320~^0.^0^^~4~^~NC~^^^^^^^^^^~03/01/2002~
-~05653~^~321~^0.^0^^~7~^~Z~^^^^^^^^^^~07/01/2001~
-~05653~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~07/01/2001~
-~05653~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~07/01/2001~
-~05653~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~07/01/2001~
-~05653~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~07/01/2001~
-~05653~^~417~^8.^0^^~4~^~BFPN~^~05641~^^^^^^^^^~07/01/2001~
-~05653~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2002~
-~05653~^~432~^8.^0^^~4~^~BFPN~^^^^^^^^^^~03/01/2002~
-~05653~^~435~^8.^0^^~4~^~NC~^^^^^^^^^^~06/01/2008~
-~05653~^~601~^71.^3^^~1~^~A~^^^^^^^^^^~07/01/2001~
-~05654~^~208~^123.^0^^~4~^~NC~^^^^^^^^^^~03/01/2002~
-~05654~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~07/01/2001~
-~05654~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~07/01/2001~
-~05654~^~268~^515.^0^^~4~^~NC~^^^^^^^^^^~03/01/2002~
-~05654~^~301~^6.^3^^~1~^~A~^^^^^^^^^^~07/01/2001~
-~05654~^~304~^22.^0^^~4~^~BFNN~^~05641~^^^^^^^^^~07/01/2001~
-~05654~^~305~^220.^0^^~4~^~BFNN~^~05641~^^^^^^^^^~07/01/2001~
-~05654~^~306~^320.^0^^~4~^~BFNN~^~05641~^^^^^^^^^~07/01/2001~
-~05654~^~307~^86.^3^^~1~^~A~^^^^^^^^^^~07/01/2001~
-~05654~^~318~^0.^0^^~4~^~BFSN~^~05641~^^^^^^^^^~02/01/2002~
-~05654~^~319~^0.^0^^~4~^~BFSN~^~05641~^^^^^^^^^~07/01/2001~
-~05654~^~320~^0.^0^^~4~^~NC~^^^^^^^^^^~03/01/2002~
-~05654~^~321~^0.^0^^~7~^~Z~^^^^^^^^^^~07/01/2001~
-~05654~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~07/01/2001~
-~05654~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~07/01/2001~
-~05654~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~07/01/2001~
-~05654~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~07/01/2001~
-~05654~^~417~^8.^0^^~4~^~BFPN~^~05641~^^^^^^^^^~07/01/2001~
-~05654~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2002~
-~05654~^~432~^8.^0^^~4~^~BFPN~^^^^^^^^^^~03/01/2002~
-~05654~^~435~^8.^0^^~4~^~NC~^^^^^^^^^^~03/01/2002~
-~05654~^~601~^80.^3^^~1~^~A~^^^^^^^^^^~07/01/2001~
-~05655~^~208~^114.^0^^~4~^~NC~^^^^^^^^^^~03/01/2002~
-~05655~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~07/01/2001~
-~05655~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~07/01/2001~
-~05655~^~268~^477.^0^^~4~^~NC~^^^^^^^^^^~03/01/2002~
-~05655~^~301~^5.^3^^~1~^~A~^^^^^^^^^^~07/01/2001~
-~05655~^~304~^22.^0^^~4~^~BFNN~^~05641~^^^^^^^^^~07/01/2001~
-~05655~^~305~^213.^0^^~4~^~BFNN~^~05641~^^^^^^^^^~07/01/2001~
-~05655~^~306~^310.^0^^~4~^~BFNN~^~05641~^^^^^^^^^~07/01/2001~
-~05655~^~307~^67.^3^^~1~^~A~^^^^^^^^^^~07/01/2001~
-~05655~^~318~^0.^0^^~4~^~BFSN~^~05641~^^^^^^^^^~02/01/2002~
-~05655~^~319~^0.^0^^~4~^~BFSN~^~05641~^^^^^^^^^~07/01/2001~
-~05655~^~320~^0.^0^^~4~^~NC~^^^^^^^^^^~03/01/2002~
-~05655~^~321~^0.^0^^~7~^~Z~^^^^^^^^^^~07/01/2001~
-~05655~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~07/01/2001~
-~05655~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~07/01/2001~
-~05655~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~07/01/2001~
-~05655~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~07/01/2001~
-~05655~^~417~^8.^0^^~4~^~BFPN~^~05641~^^^^^^^^^~07/01/2001~
-~05655~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2002~
-~05655~^~432~^8.^0^^~4~^~BFPN~^^^^^^^^^^~03/01/2002~
-~05655~^~435~^8.^0^^~4~^~NC~^^^^^^^^^^~06/01/2008~
-~05655~^~601~^72.^3^^~1~^~A~^^^^^^^^^^~07/01/2001~
-~05656~^~208~^145.^0^^~4~^~NC~^^^^^^^^^^~03/01/2002~
-~05656~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~07/01/2001~
-~05656~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~07/01/2001~
-~05656~^~268~^606.^0^^~4~^~NC~^^^^^^^^^^~03/01/2002~
-~05656~^~301~^6.^3^^~1~^~A~^^^^^^^^^^~07/01/2001~
-~05656~^~304~^25.^0^^~4~^~BFNN~^~05642~^^^^^^^^^~07/01/2001~
-~05656~^~305~^251.^0^^~4~^~BFNN~^~05642~^^^^^^^^^~07/01/2001~
-~05656~^~306~^362.^0^^~4~^~BFNN~^~05642~^^^^^^^^^~07/01/2001~
-~05656~^~307~^80.^3^^~1~^~A~^^^^^^^^^^~07/01/2001~
-~05656~^~318~^0.^0^^~4~^~BFSN~^~05642~^^^^^^^^^~02/01/2002~
-~05656~^~319~^0.^0^^~4~^~BFSN~^~05642~^^^^^^^^^~07/01/2001~
-~05656~^~320~^0.^0^^~4~^~NC~^^^^^^^^^^~03/01/2002~
-~05656~^~321~^0.^0^^~7~^~Z~^^^^^^^^^^~07/01/2001~
-~05656~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~07/01/2001~
-~05656~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~07/01/2001~
-~05656~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~07/01/2001~
-~05656~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~07/01/2001~
-~05656~^~417~^15.^0^^~4~^~BFPN~^~05642~^^^^^^^^^~07/01/2001~
-~05656~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2002~
-~05656~^~432~^15.^0^^~4~^~BFPN~^^^^^^^^^^~03/01/2002~
-~05656~^~435~^15.^0^^~4~^~NC~^^^^^^^^^^~03/01/2002~
-~05656~^~601~^85.^3^^~1~^~A~^^^^^^^^^^~07/01/2001~
-~05657~^~208~^119.^0^^~4~^~NC~^^^^^^^^^^~03/01/2002~
-~05657~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~07/01/2001~
-~05657~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~07/01/2001~
-~05657~^~268~^498.^0^^~4~^~NC~^^^^^^^^^^~03/01/2002~
-~05657~^~301~^6.^3^^~1~^~A~^^^^^^^^^^~07/01/2001~
-~05657~^~304~^22.^0^^~4~^~BFNN~^~05641~^^^^^^^^^~07/01/2001~
-~05657~^~305~^214.^0^^~4~^~BFNN~^~05641~^^^^^^^^^~07/01/2001~
-~05657~^~306~^312.^0^^~4~^~BFNN~^~05641~^^^^^^^^^~07/01/2001~
-~05657~^~307~^81.^3^^~1~^~A~^^^^^^^^^^~07/01/2001~
-~05657~^~318~^0.^0^^~4~^~BFSN~^~05641~^^^^^^^^^~02/01/2002~
-~05657~^~319~^0.^0^^~4~^~BFSN~^~05641~^^^^^^^^^~07/01/2001~
-~05657~^~320~^0.^0^^~4~^~NC~^^^^^^^^^^~03/01/2002~
-~05657~^~321~^0.^0^^~7~^~Z~^^^^^^^^^^~07/01/2001~
-~05657~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~07/01/2001~
-~05657~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~07/01/2001~
-~05657~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~07/01/2001~
-~05657~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~07/01/2001~
-~05657~^~417~^8.^0^^~4~^~BFPN~^~05641~^^^^^^^^^~07/01/2001~
-~05657~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2002~
-~05657~^~432~^8.^0^^~4~^~BFPN~^^^^^^^^^^~03/01/2002~
-~05657~^~435~^8.^0^^~4~^~NC~^^^^^^^^^^~03/01/2002~
-~05657~^~601~^75.^3^^~1~^~A~^^^^^^^^^^~07/01/2001~
-~05658~^~208~^155.^0^^~4~^~NC~^^^^^^^^^^~05/01/2002~
-~05658~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~07/01/2001~
-~05658~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~07/01/2001~
-~05658~^~268~^648.^0^^~4~^~NC~^^^^^^^^^^~05/01/2002~
-~05658~^~301~^6.^3^^~1~^~A~^^^^^^^^^^~07/01/2001~
-~05658~^~304~^25.^0^^~4~^~BFNN~^~05642~^^^^^^^^^~07/01/2001~
-~05658~^~305~^245.^0^^~4~^~BFNN~^~05642~^^^^^^^^^~07/01/2001~
-~05658~^~306~^353.^0^^~4~^~BFNN~^~05642~^^^^^^^^^~07/01/2001~
-~05658~^~307~^77.^3^^~1~^~A~^^^^^^^^^^~07/01/2001~
-~05658~^~318~^0.^0^^~4~^~BFSN~^~05642~^^^^^^^^^~02/01/2002~
-~05658~^~319~^0.^0^^~4~^~BFSN~^~05642~^^^^^^^^^~07/01/2001~
-~05658~^~320~^0.^0^^~4~^~NC~^^^^^^^^^^~05/01/2002~
-~05658~^~321~^0.^0^^~7~^~Z~^^^^^^^^^^~07/01/2001~
-~05658~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~07/01/2001~
-~05658~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~07/01/2001~
-~05658~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~07/01/2001~
-~05658~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~07/01/2001~
-~05658~^~417~^15.^0^^~4~^~BFPN~^~05642~^^^^^^^^^~07/01/2001~
-~05658~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2002~
-~05658~^~432~^15.^0^^~4~^~BFPN~^^^^^^^^^^~05/01/2002~
-~05658~^~435~^15.^0^^~4~^~NC~^^^^^^^^^^~05/01/2002~
-~05658~^~601~^93.^3^^~1~^~A~^^^^^^^^^^~07/01/2001~
-~05661~^~208~^172.^0^^~4~^~NC~^^^^^^^^^^~08/01/2007~
-~05661~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2003~
-~05661~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2003~
-~05661~^~268~^721.^0^^~4~^~NC~^^^^^^^^^^~08/01/2007~
-~05661~^~301~^10.^4^1.^~1~^~A~^^^1^8.^15.^3^5.^14.^~2, 3~^~02/01/2003~
-~05661~^~304~^27.^4^0.^~1~^~A~^^^1^26.^28.^3^25.^28.^~2, 3~^~02/01/2003~
-~05661~^~305~^442.^4^7.^~1~^~A~^^^1^428.^460.^3^417.^467.^~2, 3~^~02/01/2003~
-~05661~^~306~^315.^4^18.^~1~^~A~^^^1^282.^357.^3^257.^372.^~2, 3~^~02/01/2003~
-~05661~^~307~^92.^4^4.^~1~^~A~^^^1^85.^101.^3^78.^104.^~2, 3~^~02/01/2003~
-~05661~^~318~^14378.^4^^~1~^~AS~^^^^^^^^^^~01/01/2003~
-~05661~^~319~^4293.^4^485.^~1~^~A~^^^1^3150.^5520.^3^2748.^5836.^~2, 3~^~02/01/2003~
-~05661~^~320~^4296.^4^^~1~^~AS~^^^^^^^^^^~01/01/2003~
-~05661~^~321~^31.^4^3.^~1~^~A~^^^1^25.^38.^3^20.^40.^~2, 3~^~02/01/2003~
-~05661~^~322~^11.^4^0.^~1~^~A~^^^1^11.^11.^^^^~1, 2, 3~^~02/01/2003~
-~05661~^~334~^11.^4^0.^~1~^~A~^^^1^11.^11.^^^^~1, 2, 3~^~02/01/2003~
-~05661~^~337~^25.^4^2.^~1~^~A~^^^1^18.^29.^3^15.^33.^~2, 3~^~02/01/2003~
-~05661~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2006~
-~05661~^~417~^560.^4^58.^~1~^~A~^^^1^441.^718.^3^372.^747.^~2, 3~^~02/01/2003~
-~05661~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~
-~05661~^~432~^560.^4^58.^~1~^~A~^^^1^441.^718.^3^372.^747.^^~08/01/2007~
-~05661~^~435~^560.^0^^~4~^~NC~^^^^^^^^^^~08/01/2007~
-~05661~^~601~^564.^4^13.^~1~^~A~^^^1^535.^600.^3^520.^606.^~2, 3~^~02/01/2003~
-~05662~^~208~^112.^0^^~4~^~NC~^^^^^^^^^^~07/01/2010~
-~05662~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2010~
-~05662~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2010~
-~05662~^~268~^468.^0^^~4~^~NC~^^^^^^^^^^~07/01/2010~
-~05662~^~301~^3.^4^0.^~1~^~A~^^^1^3.^5.^3^1.^5.^~2, 3~^~04/01/2010~
-~05662~^~304~^29.^4^0.^~1~^~A~^^^1^28.^29.^3^27.^30.^~2, 3~^~04/01/2010~
-~05662~^~305~^227.^4^9.^~1~^~A~^^^1^205.^243.^3^197.^256.^~2, 3~^~04/01/2010~
-~05662~^~306~^295.^4^8.^~1~^~A~^^^1^270.^306.^3^268.^321.^~2, 3~^~04/01/2010~
-~05662~^~307~^51.^4^1.^~1~^~A~^^^1^47.^54.^3^46.^55.^~2, 3~^~04/01/2010~
-~05662~^~318~^25.^0^^~1~^~AS~^^^^^^^^^^~04/01/2010~
-~05662~^~319~^7.^1^^~1~^~A~^^^^^^^^^^~04/01/2010~
-~05662~^~320~^7.^0^^~1~^~AS~^^^^^^^^^^~04/01/2010~
-~05662~^~321~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2010~
-~05662~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2010~
-~05662~^~324~^14.^0^^~4~^~NR~^^^^^^^^^^~07/01/2010~
-~05662~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2010~
-~05662~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2010~
-~05662~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2010~
-~05662~^~417~^8.^0^^~4~^~BFNN~^~05305~^^^^^^^^^~04/01/2010~
-~05662~^~431~^0.^0^^~4~^~BFNN~^~05305~^^^^^^^^^~04/01/2010~
-~05662~^~432~^8.^0^^~4~^~BFNN~^~05305~^^^^^^^^^~04/01/2010~
-~05662~^~435~^8.^0^^~4~^~NC~^~05305~^^^^^^^^^~07/01/2010~
-~05662~^~601~^55.^4^1.^~1~^~A~^^^1^54.^58.^3^51.^58.^~2, 3~^~04/01/2010~
-~05663~^~208~^151.^0^^~4~^~NC~^^^^^^^^^^~07/01/2010~
-~05663~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2010~
-~05663~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2010~
-~05663~^~268~^632.^0^^~4~^~NC~^^^^^^^^^^~07/01/2010~
-~05663~^~301~^6.^4^0.^~1~^~A~^^^1^4.^7.^3^3.^8.^~2, 3~^~04/01/2010~
-~05663~^~304~^35.^4^1.^~1~^~A~^^^1^30.^36.^3^30.^38.^~2, 3~^~04/01/2010~
-~05663~^~305~^290.^4^12.^~1~^~A~^^^1^253.^314.^3^248.^331.^~2, 3~^~04/01/2010~
-~05663~^~306~^357.^4^14.^~1~^~A~^^^1^315.^379.^3^310.^402.^~2, 3~^~04/01/2010~
-~05663~^~307~^61.^4^0.^~1~^~A~^^^1^59.^63.^3^58.^63.^~2, 3~^~04/01/2010~
-~05663~^~318~^30.^0^^~1~^~AS~^^^^^^^^^^~04/01/2010~
-~05663~^~319~^9.^1^^~1~^~A~^^^^^^^^^^~04/01/2010~
-~05663~^~320~^9.^0^^~1~^~AS~^^^^^^^^^^~04/01/2010~
-~05663~^~321~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2010~
-~05663~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2010~
-~05663~^~324~^8.^0^^~4~^~NR~^^^^^^^^^^~07/01/2010~
-~05663~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2010~
-~05663~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2010~
-~05663~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2010~
-~05663~^~417~^8.^0^^~4~^~BFNN~^~05306~^^^^^^^^^~04/01/2010~
-~05663~^~431~^0.^0^^~4~^~BFNN~^~05306~^^^^^^^^^~04/01/2010~
-~05663~^~432~^8.^0^^~4~^~BFNN~^~05306~^^^^^^^^^~04/01/2010~
-~05663~^~435~^8.^0^^~4~^~NC~^~05306~^^^^^^^^^~07/01/2010~
-~05663~^~601~^71.^4^1.^~1~^~A~^^^1^66.^74.^3^65.^76.^~2, 3~^~04/01/2010~
-~05664~^~208~^138.^0^^~4~^~NC~^^^^^^^^^^~07/01/2010~
-~05664~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2010~
-~05664~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2010~
-~05664~^~268~^578.^0^^~4~^~NC~^^^^^^^^^^~07/01/2010~
-~05664~^~301~^6.^4^0.^~1~^~A~^^^1^5.^8.^3^4.^8.^~2, 3~^~04/01/2010~
-~05664~^~304~^35.^4^0.^~1~^~A~^^^1^33.^36.^3^31.^37.^~2, 3~^~04/01/2010~
-~05664~^~305~^264.^4^10.^~1~^~A~^^^1^245.^291.^3^230.^297.^~2, 3~^~04/01/2010~
-~05664~^~306~^339.^4^11.^~1~^~A~^^^1^316.^368.^3^303.^374.^~2, 3~^~04/01/2010~
-~05664~^~307~^59.^4^2.^~1~^~A~^^^1^53.^64.^3^51.^66.^~2, 3~^~04/01/2010~
-~05664~^~318~^25.^0^^~1~^~AS~^^^^^^^^^^~04/01/2010~
-~05664~^~319~^8.^1^^~1~^~A~^^^^^^^^^^~04/01/2010~
-~05664~^~320~^8.^0^^~1~^~AS~^^^^^^^^^^~04/01/2010~
-~05664~^~321~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2010~
-~05664~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2010~
-~05664~^~324~^8.^0^^~4~^~NR~^^^^^^^^^^~07/01/2010~
-~05664~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2010~
-~05664~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2010~
-~05664~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2010~
-~05664~^~417~^7.^0^^~4~^~BFPN~^~05306~^^^^^^^^^~04/01/2010~
-~05664~^~431~^0.^0^^~4~^~BFPN~^~05306~^^^^^^^^^~04/01/2010~
-~05664~^~432~^7.^0^^~4~^~BFPN~^~05306~^^^^^^^^^~04/01/2010~
-~05664~^~435~^7.^0^^~4~^~NC~^~05306~^^^^^^^^^~07/01/2010~
-~05664~^~601~^65.^4^2.^~1~^~A~^^^1^58.^67.^3^57.^72.^~2, 3~^~04/01/2010~
-~05665~^~208~^150.^0^^~4~^~NC~^^^^^^^^^^~07/01/2010~
-~05665~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2010~
-~05665~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2010~
-~05665~^~268~^628.^0^^~4~^~NC~^^^^^^^^^^~07/01/2010~
-~05665~^~301~^21.^4^2.^~1~^~A~^^^1^16.^26.^3^13.^28.^~2, 3~^~04/01/2010~
-~05665~^~304~^21.^4^0.^~1~^~A~^^^1^21.^22.^3^20.^21.^~2, 3~^~04/01/2010~
-~05665~^~305~^193.^4^4.^~1~^~A~^^^1^181.^201.^3^178.^207.^~2, 3~^~04/01/2010~
-~05665~^~306~^213.^4^4.^~1~^~A~^^^1^206.^225.^3^198.^226.^~2, 3~^~04/01/2010~
-~05665~^~307~^69.^4^1.^~1~^~A~^^^1^65.^73.^3^63.^75.^~2, 3~^~04/01/2010~
-~05665~^~318~^73.^0^^~1~^~AS~^^^^^^^^^^~04/01/2010~
-~05665~^~319~^22.^1^^~1~^~A~^^^^^^^^^^~04/01/2010~
-~05665~^~320~^22.^0^^~1~^~AS~^^^^^^^^^^~04/01/2010~
-~05665~^~321~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2010~
-~05665~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2010~
-~05665~^~324~^14.^0^^~4~^~NR~^^^^^^^^^^~07/01/2010~
-~05665~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2010~
-~05665~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2010~
-~05665~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2010~
-~05665~^~417~^7.^0^^~4~^~BFNN~^~05305~^^^^^^^^^~04/01/2010~
-~05665~^~431~^0.^0^^~4~^~BFNN~^~05305~^^^^^^^^^~04/01/2010~
-~05665~^~432~^7.^0^^~4~^~BFNN~^~05305~^^^^^^^^^~04/01/2010~
-~05665~^~435~^7.^0^^~4~^~NC~^~05305~^^^^^^^^^~07/01/2010~
-~05665~^~601~^74.^4^1.^~1~^~A~^^^1^70.^77.^3^68.^79.^~2, 3~^~04/01/2010~
-~05666~^~208~^213.^0^^~4~^~NC~^^^^^^^^^^~07/01/2010~
-~05666~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2010~
-~05666~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2010~
-~05666~^~268~^890.^0^^~4~^~NC~^^^^^^^^^^~07/01/2010~
-~05666~^~301~^31.^4^3.^~1~^~A~^^^1^25.^37.^3^20.^41.^~2, 3~^~04/01/2010~
-~05666~^~304~^29.^4^0.^~1~^~A~^^^1^28.^31.^3^27.^30.^~2, 3~^~04/01/2010~
-~05666~^~305~^259.^4^4.^~1~^~A~^^^1^247.^268.^3^244.^273.^~2, 3~^~04/01/2010~
-~05666~^~306~^304.^4^14.^~1~^~A~^^^1^282.^347.^3^256.^350.^~2, 3~^~04/01/2010~
-~05666~^~307~^90.^4^5.^~1~^~A~^^^1^82.^106.^3^73.^107.^~2, 3~^~04/01/2010~
-~05666~^~318~^101.^0^^~1~^~AS~^^^^^^^^^^~04/01/2010~
-~05666~^~319~^30.^1^^~1~^~A~^^^^^^^^^^~04/01/2010~
-~05666~^~320~^30.^0^^~1~^~AS~^^^^^^^^^^~04/01/2010~
-~05666~^~321~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2010~
-~05666~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2010~
-~05666~^~324~^8.^0^^~4~^~NR~^^^^^^^^^^~07/01/2010~
-~05666~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2010~
-~05666~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2010~
-~05666~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2010~
-~05666~^~417~^7.^0^^~4~^~BFNN~^~05306~^^^^^^^^^~04/01/2010~
-~05666~^~431~^0.^0^^~4~^~BFNN~^~05306~^^^^^^^^^~04/01/2010~
-~05666~^~432~^7.^0^^~4~^~BFNN~^~05306~^^^^^^^^^~04/01/2010~
-~05666~^~435~^7.^0^^~4~^~NC~^~05306~^^^^^^^^^~07/01/2010~
-~05666~^~601~^104.^4^5.^~1~^~A~^^^1^89.^111.^3^87.^120.^~2, 3~^~04/01/2010~
-~05667~^~208~^207.^0^^~4~^~NC~^^^^^^^^^^~07/01/2010~
-~05667~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2010~
-~05667~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2010~
-~05667~^~268~^864.^0^^~4~^~NC~^^^^^^^^^^~07/01/2010~
-~05667~^~301~^29.^4^2.^~1~^~A~^^^1^22.^36.^3^20.^38.^~2, 3~^~04/01/2010~
-~05667~^~304~^25.^4^0.^~1~^~A~^^^1^24.^27.^3^23.^27.^~2, 3~^~04/01/2010~
-~05667~^~305~^210.^4^2.^~1~^~A~^^^1^206.^218.^3^201.^219.^~2, 3~^~04/01/2010~
-~05667~^~306~^247.^4^2.^~1~^~A~^^^1^240.^253.^3^237.^256.^~2, 3~^~04/01/2010~
-~05667~^~307~^91.^4^4.^~1~^~A~^^^1^84.^102.^3^77.^104.^~2, 3~^~04/01/2010~
-~05667~^~318~^105.^0^^~1~^~AS~^^^^^^^^^^~04/01/2010~
-~05667~^~319~^31.^1^^~1~^~A~^^^^^^^^^^~04/01/2010~
-~05667~^~320~^31.^0^^~1~^~AS~^^^^^^^^^^~04/01/2010~
-~05667~^~321~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2010~
-~05667~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2010~
-~05667~^~324~^8.^0^^~4~^~NR~^^^^^^^^^^~07/01/2010~
-~05667~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2010~
-~05667~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2010~
-~05667~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2010~
-~05667~^~417~^7.^0^^~4~^~BFNN~^~05306~^^^^^^^^^~04/01/2010~
-~05667~^~431~^0.^0^^~4~^~BFNN~^~05306~^^^^^^^^^~04/01/2010~
-~05667~^~432~^7.^0^^~4~^~BFNN~^~05306~^^^^^^^^^~04/01/2010~
-~05667~^~435~^7.^0^^~4~^~NC~^~05306~^^^^^^^^^~07/01/2010~
-~05667~^~601~^106.^4^5.^~1~^~A~^^^1^97.^121.^3^90.^122.^~2, 3~^~04/01/2010~
-~05668~^~208~^180.^0^^~4~^~NC~^^^^^^^^^^~07/01/2010~
-~05668~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2010~
-~05668~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2010~
-~05668~^~268~^755.^0^^~4~^~NC~^^^^^^^^^^~07/01/2010~
-~05668~^~301~^33.^4^4.^~1~^~A~^^^1^25.^44.^3^17.^47.^~2, 3~^~04/01/2010~
-~05668~^~304~^19.^4^0.^~1~^~A~^^^1^18.^21.^3^16.^21.^~2, 3~^~04/01/2010~
-~05668~^~305~^179.^4^4.^~1~^~A~^^^1^165.^185.^3^164.^193.^~2, 3~^~04/01/2010~
-~05668~^~306~^202.^4^4.^~1~^~A~^^^1^195.^210.^3^189.^214.^~2, 3~^~04/01/2010~
-~05668~^~307~^54.^4^4.^~1~^~A~^^^1^46.^68.^3^38.^69.^~2, 3~^~04/01/2010~
-~05668~^~318~^101.^0^^~1~^~AS~^^^^^^^^^^~04/01/2010~
-~05668~^~319~^30.^1^^~1~^~A~^^^^^^^^^^~04/01/2010~
-~05668~^~320~^30.^0^^~1~^~AS~^^^^^^^^^^~04/01/2010~
-~05668~^~321~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2010~
-~05668~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2010~
-~05668~^~324~^14.^0^^~4~^~NR~^^^^^^^^^^~07/01/2010~
-~05668~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2010~
-~05668~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2010~
-~05668~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2010~
-~05668~^~417~^6.^0^^~4~^~BFNN~^~05305~^^^^^^^^^~04/01/2010~
-~05668~^~431~^0.^0^^~4~^~BFNN~^~05305~^^^^^^^^^~04/01/2010~
-~05668~^~432~^6.^0^^~4~^~BFNN~^~05305~^^^^^^^^^~04/01/2010~
-~05668~^~435~^6.^0^^~4~^~NC~^~05305~^^^^^^^^^~07/01/2010~
-~05668~^~601~^78.^4^0.^~1~^~A~^^^1^76.^80.^3^75.^80.^~2, 3~^~04/01/2010~
-~05669~^~208~^258.^0^^~4~^~NC~^^^^^^^^^^~07/01/2010~
-~05669~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2010~
-~05669~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2010~
-~05669~^~268~^1077.^0^^~4~^~NC~^^^^^^^^^^~07/01/2010~
-~05669~^~301~^49.^4^6.^~1~^~A~^^^1^31.^63.^3^27.^70.^~2, 3~^~04/01/2010~
-~05669~^~304~^28.^4^0.^~1~^~A~^^^1^27.^29.^3^26.^29.^~2, 3~^~04/01/2010~
-~05669~^~305~^263.^4^15.^~1~^~A~^^^1^219.^285.^3^213.^312.^~2, 3~^~04/01/2010~
-~05669~^~306~^276.^4^3.^~1~^~A~^^^1^269.^285.^3^266.^286.^~2, 3~^~04/01/2010~
-~05669~^~307~^85.^4^3.^~1~^~A~^^^1^76.^94.^3^73.^96.^~2, 3~^~04/01/2010~
-~05669~^~318~^117.^0^^~1~^~AS~^^^^^^^^^^~04/01/2010~
-~05669~^~319~^35.^1^^~1~^~A~^^^^^^^^^^~04/01/2010~
-~05669~^~320~^35.^0^^~1~^~AS~^^^^^^^^^^~04/01/2010~
-~05669~^~321~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2010~
-~05669~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2010~
-~05669~^~324~^8.^0^^~4~^~NR~^^^^^^^^^^~07/01/2010~
-~05669~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2010~
-~05669~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2010~
-~05669~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2010~
-~05669~^~417~^7.^0^^~4~^~BFNN~^~05306~^^^^^^^^^~04/01/2010~
-~05669~^~431~^0.^0^^~4~^~BFNN~^~05306~^^^^^^^^^~04/01/2010~
-~05669~^~432~^7.^0^^~4~^~BFNN~^~05306~^^^^^^^^^~04/01/2010~
-~05669~^~435~^7.^0^^~4~^~NC~^~05306~^^^^^^^^^~07/01/2010~
-~05669~^~601~^106.^4^3.^~1~^~A~^^^1^97.^111.^3^95.^116.^~2, 3~^~04/01/2010~
-~05670~^~208~^249.^0^^~4~^~NC~^^^^^^^^^^~07/01/2010~
-~05670~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2010~
-~05670~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2010~
-~05670~^~268~^1043.^0^^~4~^~NC~^^^^^^^^^^~07/01/2010~
-~05670~^~301~^48.^4^6.^~1~^~A~^^^1^30.^60.^3^27.^68.^~2, 3~^~04/01/2010~
-~05670~^~304~^25.^4^0.^~1~^~A~^^^1^24.^27.^3^22.^27.^~2, 3~^~04/01/2010~
-~05670~^~305~^235.^4^14.^~1~^~A~^^^1^208.^271.^3^189.^281.^~2, 3~^~04/01/2010~
-~05670~^~306~^242.^4^16.^~1~^~A~^^^1^214.^283.^3^188.^294.^~2, 3~^~04/01/2010~
-~05670~^~307~^81.^4^6.^~1~^~A~^^^1^65.^96.^3^60.^101.^~2, 3~^~04/01/2010~
-~05670~^~318~^97.^0^^~1~^~AS~^^^^^^^^^^~04/01/2010~
-~05670~^~319~^29.^1^^~1~^~A~^^^^^^^^^^~04/01/2010~
-~05670~^~320~^29.^0^^~1~^~AS~^^^^^^^^^^~04/01/2010~
-~05670~^~321~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2010~
-~05670~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2010~
-~05670~^~324~^8.^0^^~4~^~NR~^^^^^^^^^^~07/01/2010~
-~05670~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2010~
-~05670~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2010~
-~05670~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2010~
-~05670~^~417~^7.^0^^~4~^~BFNN~^~05306~^^^^^^^^^~04/01/2010~
-~05670~^~431~^0.^0^^~4~^~BFNN~^~05306~^^^^^^^^^~04/01/2010~
-~05670~^~432~^7.^0^^~4~^~BFNN~^~05306~^^^^^^^^^~04/01/2010~
-~05670~^~435~^7.^0^^~4~^~NC~^~05306~^^^^^^^^^~07/01/2010~
-~05670~^~601~^105.^4^2.^~1~^~A~^^^1^99.^108.^3^98.^111.^~2, 3~^~04/01/2010~
-~05671~^~208~^149.^0^^~4~^~NC~^^^^^^^^^^~04/01/2011~
-~05671~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2011~
-~05671~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2011~
-~05671~^~268~^625.^0^^~4~^~NC~^^^^^^^^^^~04/01/2011~
-~05671~^~301~^12.^5^0.^~1~^~A~^^^1^11.^14.^4^11.^13.^~2, 3~^~04/01/2011~
-~05671~^~304~^22.^5^0.^~1~^~A~^^^1^21.^24.^4^21.^23.^~2, 3~^~04/01/2011~
-~05671~^~305~^184.^5^3.^~1~^~A~^^^1^170.^193.^4^172.^194.^~2, 3~^~04/01/2011~
-~05671~^~306~^239.^5^6.^~1~^~A~^^^1^229.^263.^4^221.^256.^~2, 3~^~04/01/2011~
-~05671~^~307~^117.^5^13.^~1~^~A~^^^1^97.^169.^4^79.^153.^~2, 3~^~04/01/2011~
-~05671~^~318~^24.^0^^~1~^~AS~^^^^^^^^^^~04/01/2011~
-~05671~^~319~^7.^1^^~1~^~A~^^^^^^^^^^~04/01/2011~
-~05671~^~320~^7.^0^^~1~^~AS~^^^^^^^^^^~04/01/2011~
-~05671~^~321~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2011~
-~05671~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2011~
-~05671~^~324~^2.^1^^~1~^~A~^^^^^^^^^^~04/01/2011~
-~05671~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2011~
-~05671~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2011~
-~05671~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2011~
-~05671~^~417~^5.^0^^~4~^~BFPN~^~05062~^^^^^^^^^~04/01/2011~
-~05671~^~431~^0.^0^^~4~^~BFPN~^~05062~^^^^^^^^^~04/01/2011~
-~05671~^~432~^5.^0^^~4~^~BFPN~^~05062~^^^^^^^^^~04/01/2011~
-~05671~^~435~^5.^0^^~4~^~NC~^~05062~^^^^^^^^^~04/01/2011~
-~05671~^~601~^132.^5^7.^~1~^~A~^^^1^102.^143.^4^111.^153.^~2, 3~^~04/01/2011~
-~05672~^~208~^176.^0^^~4~^~NC~^^^^^^^^^^~04/01/2011~
-~05672~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2011~
-~05672~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2011~
-~05672~^~268~^736.^0^^~4~^~NC~^^^^^^^^^^~04/01/2011~
-~05672~^~301~^12.^4^0.^~1~^~A~^^^1^11.^13.^3^10.^13.^~2, 3~^~04/01/2011~
-~05672~^~304~^25.^4^0.^~1~^~A~^^^1^23.^27.^3^22.^27.^~2, 3~^~04/01/2011~
-~05672~^~305~^201.^4^3.^~1~^~A~^^^1^193.^210.^3^189.^212.^~2, 3~^~04/01/2011~
-~05672~^~306~^266.^4^3.^~1~^~A~^^^1^260.^273.^3^255.^276.^~2, 3~^~04/01/2011~
-~05672~^~307~^77.^4^2.^~1~^~A~^^^1^72.^81.^3^69.^83.^~2, 3~^~04/01/2011~
-~05672~^~318~^27.^0^^~1~^~AS~^^^^^^^^^^~04/01/2011~
-~05672~^~319~^8.^1^^~1~^~A~^^^^^^^^^^~04/01/2011~
-~05672~^~320~^8.^0^^~1~^~AS~^^^^^^^^^^~04/01/2011~
-~05672~^~321~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2011~
-~05672~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2011~
-~05672~^~324~^13.^1^^~1~^~A~^^^^^^^^^^~04/01/2011~
-~05672~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2011~
-~05672~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2011~
-~05672~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2011~
-~05672~^~417~^5.^0^^~4~^~BFPN~^~05062~^^^^^^^^^~04/01/2011~
-~05672~^~431~^0.^0^^~4~^~BFPN~^~05062~^^^^^^^^^~04/01/2011~
-~05672~^~432~^5.^0^^~4~^~BFPN~^~05062~^^^^^^^^^~04/01/2011~
-~05672~^~435~^5.^0^^~4~^~NC~^~05062~^^^^^^^^^~04/01/2011~
-~05672~^~601~^141.^4^2.^~1~^~A~^^^1^135.^147.^3^133.^149.^~2, 3~^~04/01/2011~
-~05673~^~208~^443.^0^^~4~^~NC~^^^^^^^^^^~04/01/2011~
-~05673~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2011~
-~05673~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2011~
-~05673~^~268~^1855.^0^^~4~^~NC~^^^^^^^^^^~04/01/2011~
-~05673~^~301~^9.^4^0.^~1~^~A~^^^1^9.^10.^3^8.^9.^~2, 3~^~04/01/2011~
-~05673~^~304~^14.^4^0.^~1~^~A~^^^1^13.^14.^3^13.^14.^~2, 3~^~04/01/2011~
-~05673~^~305~^130.^4^0.^~1~^~A~^^^1^130.^131.^3^129.^131.^~2, 3~^~04/01/2011~
-~05673~^~306~^161.^4^7.^~1~^~A~^^^1^149.^183.^3^136.^184.^~2, 3~^~04/01/2011~
-~05673~^~307~^75.^4^5.^~1~^~A~^^^1^62.^84.^3^58.^91.^~2, 3~^~04/01/2011~
-~05673~^~318~^161.^1^^~1~^~AS~^^^^^^^^^^~04/01/2011~
-~05673~^~319~^48.^1^^~1~^~A~^^^^^^^^^^~04/01/2011~
-~05673~^~320~^48.^1^^~1~^~AS~^^^^^^^^^^~04/01/2011~
-~05673~^~321~^0.^1^^~1~^~A~^^^^^^^^^~1~^~04/01/2011~
-~05673~^~322~^0.^1^^~1~^~A~^^^^^^^^^~1~^~04/01/2011~
-~05673~^~324~^4.^1^^~1~^~A~^^^^^^^^^^~04/01/2011~
-~05673~^~334~^1.^1^^~1~^~A~^^^^^^^^^^~04/01/2011~
-~05673~^~337~^0.^1^^~1~^~A~^^^^^^^^^~1~^~04/01/2011~
-~05673~^~338~^101.^1^^~1~^~A~^^^^^^^^^^~04/01/2011~
-~05673~^~417~^3.^0^^~4~^~BFPN~^~05062~^^^^^^^^^~04/01/2011~
-~05673~^~431~^0.^0^^~4~^~BFPN~^~05062~^^^^^^^^^~04/01/2011~
-~05673~^~432~^3.^0^^~4~^~BFPN~^^^^^^^^^^~04/01/2011~
-~05673~^~435~^3.^0^^~4~^~NC~^~05062~^^^^^^^^^~04/01/2011~
-~05673~^~601~^130.^4^3.^~1~^~A~^^^1^122.^137.^3^120.^139.^~2, 3~^~04/01/2011~
-~05674~^~208~^440.^0^^~4~^~NC~^^^^^^^^^^~04/01/2011~
-~05674~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2011~
-~05674~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2011~
-~05674~^~268~^1839.^0^^~4~^~NC~^^^^^^^^^^~04/01/2011~
-~05674~^~301~^6.^4^0.^~1~^~A~^^^1^6.^7.^3^5.^7.^~2, 3~^~04/01/2011~
-~05674~^~304~^8.^4^0.^~1~^~A~^^^1^8.^9.^3^7.^9.^~2, 3~^~04/01/2011~
-~05674~^~305~^95.^4^2.^~1~^~A~^^^1^88.^102.^3^85.^104.^~2, 3~^~04/01/2011~
-~05674~^~306~^119.^4^5.^~1~^~A~^^^1^104.^130.^3^101.^136.^~2, 3~^~04/01/2011~
-~05674~^~307~^51.^4^3.^~1~^~A~^^^1^45.^59.^3^40.^61.^~2, 3~^~04/01/2011~
-~05674~^~318~^196.^1^^~1~^~AS~^^^^^^^^^^~04/01/2011~
-~05674~^~319~^59.^1^^~1~^~A~^^^^^^^^^^~04/01/2011~
-~05674~^~320~^59.^1^^~1~^~AS~^^^^^^^^^^~04/01/2011~
-~05674~^~321~^0.^1^^~1~^~A~^^^^^^^^^~1~^~04/01/2011~
-~05674~^~322~^0.^1^^~1~^~A~^^^^^^^^^~1~^~04/01/2011~
-~05674~^~324~^6.^1^^~1~^~A~^^^^^^^^^^~04/01/2011~
-~05674~^~334~^1.^1^^~1~^~A~^^^^^^^^^^~04/01/2011~
-~05674~^~337~^0.^1^^~1~^~A~^^^^^^^^^~1~^~04/01/2011~
-~05674~^~338~^103.^1^^~1~^~A~^^^^^^^^^^~04/01/2011~
-~05674~^~417~^2.^0^^~4~^~BFPN~^~05062~^^^^^^^^^~04/01/2011~
-~05674~^~431~^0.^0^^~4~^~BFPN~^~05062~^^^^^^^^^~04/01/2011~
-~05674~^~432~^2.^0^^~4~^~BFPN~^^^^^^^^^^~04/01/2011~
-~05674~^~435~^2.^0^^~4~^~NC~^~05062~^^^^^^^^^~04/01/2011~
-~05674~^~601~^105.^4^2.^~1~^~A~^^^1^99.^110.^3^97.^113.^~2, 3~^~04/01/2011~
-~05675~^~208~^462.^0^^~4~^~NC~^^^^^^^^^^~04/01/2011~
-~05675~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2011~
-~05675~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2011~
-~05675~^~268~^1934.^0^^~4~^~NC~^^^^^^^^^^~04/01/2011~
-~05675~^~301~^10.^4^1.^~1~^~A~^^^1^8.^12.^3^6.^13.^~2, 3~^~04/01/2011~
-~05675~^~304~^16.^4^0.^~1~^~A~^^^1^15.^16.^3^15.^16.^~2, 3~^~04/01/2011~
-~05675~^~305~^151.^4^1.^~1~^~A~^^^1^148.^155.^3^146.^155.^~2, 3~^~04/01/2011~
-~05675~^~306~^181.^4^3.^~1~^~A~^^^1^176.^191.^3^171.^191.^~2, 3~^~04/01/2011~
-~05675~^~307~^85.^4^5.^~1~^~A~^^^1^74.^98.^3^67.^103.^~2, 3~^~04/01/2011~
-~05675~^~318~^181.^1^^~1~^~AS~^^^^^^^^^^~04/01/2011~
-~05675~^~319~^54.^1^^~1~^~A~^^^^^^^^^^~04/01/2011~
-~05675~^~320~^54.^1^^~1~^~AS~^^^^^^^^^^~04/01/2011~
-~05675~^~321~^0.^1^^~1~^~A~^^^^^^^^^~1~^~04/01/2011~
-~05675~^~322~^0.^1^^~1~^~A~^^^^^^^^^~1~^~04/01/2011~
-~05675~^~324~^6.^1^^~1~^~A~^^^^^^^^^^~04/01/2011~
-~05675~^~334~^1.^1^^~1~^~A~^^^^^^^^^^~04/01/2011~
-~05675~^~337~^0.^1^^~1~^~A~^^^^^^^^^~1~^~04/01/2011~
-~05675~^~338~^91.^1^^~1~^~A~^^^^^^^^^^~04/01/2011~
-~05675~^~417~^3.^0^^~4~^~BFPN~^~05062~^^^^^^^^^~04/01/2011~
-~05675~^~431~^0.^0^^~4~^~BFPN~^~05062~^^^^^^^^^~04/01/2011~
-~05675~^~432~^3.^0^^~4~^~BFPN~^^^^^^^^^^~04/01/2011~
-~05675~^~435~^3.^0^^~4~^~NC~^~05062~^^^^^^^^^~04/01/2011~
-~05675~^~601~^132.^4^1.^~1~^~A~^^^1^127.^136.^3^126.^137.^~2, 3~^~04/01/2011~
-~05676~^~208~^187.^0^^~4~^~NC~^^^^^^^^^^~05/01/2011~
-~05676~^~262~^0.^0^^~4~^~PIK~^^^^^^^^^^~05/01/2011~
-~05676~^~263~^0.^0^^~4~^~PIK~^^^^^^^^^^~05/01/2011~
-~05676~^~268~^784.^0^^~4~^~NC~^^^^^^^^^^~05/01/2011~
-~05676~^~301~^12.^0^^~1~^~PAK~^^^^^^^^^^~05/01/2011~
-~05676~^~304~^21.^0^^~1~^~PAK~^^^^^^^^^^~05/01/2011~
-~05676~^~305~^177.^0^^~1~^~PAK~^^^^^^^^^^~05/01/2011~
-~05676~^~306~^229.^0^^~1~^~PAK~^^^^^^^^^^~05/01/2011~
-~05676~^~307~^111.^0^^~1~^~PAK~^^^^^^^^^^~05/01/2011~
-~05676~^~318~^42.^0^^~4~^~NC~^^^^^^^^^^~04/01/2016~
-~05676~^~319~^12.^0^^~1~^~PAK~^^^^^^^^^^~05/01/2011~
-~05676~^~320~^12.^0^^~4~^~NC~^^^^^^^^^^~04/01/2016~
-~05676~^~321~^0.^0^^~4~^~PIK~^^^^^^^^^^~05/01/2011~
-~05676~^~322~^0.^0^^~4~^~PIK~^^^^^^^^^^~05/01/2011~
-~05676~^~324~^2.^0^^~1~^~PAK~^^^^^^^^^^~05/01/2011~
-~05676~^~334~^0.^0^^~4~^~PIK~^^^^^^^^^^~05/01/2011~
-~05676~^~337~^0.^0^^~4~^~PIK~^^^^^^^^^^~05/01/2011~
-~05676~^~338~^13.^0^^~4~^~PIK~^^^^^^^^^^~05/01/2011~
-~05676~^~417~^4.^0^^~4~^~PIK~^^^^^^^^^^~05/01/2011~
-~05676~^~431~^0.^0^^~4~^~PIK~^^^^^^^^^^~05/01/2011~
-~05676~^~432~^4.^0^^~4~^~PIK~^^^^^^^^^^~05/01/2011~
-~05676~^~435~^4.^0^^~4~^~NC~^^^^^^^^^^~05/01/2011~
-~05676~^~601~^132.^0^^~1~^~PAK~^^^^^^^^^^~05/01/2011~
-~05677~^~208~^229.^0^^~4~^~NC~^^^^^^^^^^~05/01/2011~
-~05677~^~262~^0.^0^^~4~^~PIK~^^^^^^^^^^~05/01/2011~
-~05677~^~263~^0.^0^^~4~^~PIK~^^^^^^^^^^~05/01/2011~
-~05677~^~268~^959.^0^^~4~^~NC~^^^^^^^^^^~05/01/2011~
-~05677~^~301~^11.^0^^~1~^~PAK~^^^^^^^^^^~05/01/2011~
-~05677~^~304~^23.^0^^~1~^~PAK~^^^^^^^^^^~05/01/2011~
-~05677~^~305~^187.^0^^~1~^~PAK~^^^^^^^^^^~05/01/2011~
-~05677~^~306~^245.^0^^~1~^~PAK~^^^^^^^^^^~05/01/2011~
-~05677~^~307~^76.^0^^~1~^~PAK~^^^^^^^^^^~05/01/2011~
-~05677~^~318~^54.^0^^~4~^~NC~^^^^^^^^^^~04/01/2016~
-~05677~^~319~^16.^0^^~1~^~PAK~^^^^^^^^^^~05/01/2011~
-~05677~^~320~^16.^0^^~4~^~NC~^^^^^^^^^^~04/01/2016~
-~05677~^~321~^0.^0^^~4~^~PIK~^^^^^^^^^^~05/01/2011~
-~05677~^~322~^0.^0^^~4~^~PIK~^^^^^^^^^^~05/01/2011~
-~05677~^~324~^11.^0^^~1~^~PAK~^^^^^^^^^^~05/01/2011~
-~05677~^~334~^0.^0^^~4~^~PIK~^^^^^^^^^^~05/01/2011~
-~05677~^~337~^0.^0^^~4~^~PIK~^^^^^^^^^^~05/01/2011~
-~05677~^~338~^20.^0^^~4~^~PIK~^^^^^^^^^^~05/01/2011~
-~05677~^~417~^4.^0^^~4~^~PIK~^^^^^^^^^^~05/01/2011~
-~05677~^~431~^0.^0^^~4~^~PIK~^^^^^^^^^^~05/01/2011~
-~05677~^~432~^4.^0^^~4~^~PIK~^^^^^^^^^^~05/01/2011~
-~05677~^~435~^4.^0^^~4~^~NC~^^^^^^^^^^~05/01/2011~
-~05677~^~601~^139.^0^^~1~^~PAK~^^^^^^^^^^~05/01/2011~
-~05678~^~208~^106.^0^^~4~^~NC~^^^^^^^^^^~02/01/2013~
-~05678~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2011~
-~05678~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2011~
-~05678~^~268~^444.^0^^~4~^~NC~^^^^^^^^^^~02/01/2013~
-~05678~^~301~^9.^4^0.^~1~^~A~^^^2^7.^11.^2^6.^10.^~2, 3~^~02/01/2013~
-~05678~^~304~^16.^4^0.^~1~^~A~^^^2^13.^19.^2^13.^18.^~2, 3~^~02/01/2013~
-~05678~^~305~^143.^4^7.^~1~^~A~^^^2^119.^153.^2^108.^177.^~2, 3~^~02/01/2013~
-~05678~^~306~^192.^4^6.^~1~^~A~^^^2^167.^223.^2^161.^221.^~2, 3~^~02/01/2013~
-~05678~^~307~^152.^4^6.^~1~^~A~^^^2^129.^182.^2^123.^180.^~2, 3~^~02/01/2013~
-~05678~^~318~^28.^0^^~4~^~NC~^^^^^^^^^^~02/01/2013~
-~05678~^~319~^8.^0^^~4~^~BFSN~^~05062~^^^^^^^^^~06/01/2011~
-~05678~^~320~^8.^0^^~4~^~NC~^^^^^^^^^^~07/01/2011~
-~05678~^~321~^0.^1^^~1~^~A~^^^^^^^^^~1~^~02/01/2013~
-~05678~^~322~^0.^1^^~1~^~A~^^^^^^^^^~1~^~02/01/2013~
-~05678~^~324~^7.^1^^~1~^~A~^^^^^^^^^^~02/01/2013~
-~05678~^~334~^0.^1^^~1~^~A~^^^^^^^^^^~02/01/2013~
-~05678~^~337~^0.^1^^~1~^~A~^^^^^^^^^~1~^~02/01/2013~
-~05678~^~338~^102.^1^^~1~^~A~^^^^^^^^^^~02/01/2013~
-~05678~^~417~^3.^0^^~4~^~BFPN~^~05062~^^^^^^^^^~06/01/2011~
-~05678~^~431~^0.^0^^~4~^~BFPN~^~05062~^^^^^^^^^~06/01/2011~
-~05678~^~432~^3.^0^^~4~^~BFPN~^^^^^^^^^^~06/01/2011~
-~05678~^~435~^3.^0^^~4~^~NC~^~05062~^^^^^^^^^~06/01/2011~
-~05678~^~601~^92.^3^0.^~1~^~A~^^^2^90.^95.^1^83.^100.^~2, 3~^~02/01/2013~
-~05679~^~208~^146.^0^^~4~^~NC~^^^^^^^^^^~02/01/2013~
-~05679~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2011~
-~05679~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2011~
-~05679~^~268~^613.^0^^~4~^~NC~^^^^^^^^^^~02/01/2013~
-~05679~^~301~^12.^4^1.^~1~^~A~^^^2^10.^15.^2^7.^17.^~2, 3~^~02/01/2013~
-~05679~^~304~^20.^4^0.^~1~^~A~^^^2^19.^21.^2^18.^21.^~2, 3~^~06/01/2011~
-~05679~^~305~^197.^4^4.^~1~^~A~^^^2^184.^212.^2^176.^216.^~2, 3~^~02/01/2013~
-~05679~^~306~^250.^4^12.^~1~^~A~^^^2^214.^270.^2^197.^302.^~2, 3~^~02/01/2013~
-~05679~^~307~^190.^4^15.^~1~^~A~^^^2^157.^230.^2^120.^258.^~2, 3~^~02/01/2013~
-~05679~^~318~^20.^0^^~4~^~NC~^^^^^^^^^^~02/01/2013~
-~05679~^~319~^6.^0^^~4~^~BFSN~^~05073~^^^^^^^^^~06/01/2011~
-~05679~^~320~^6.^0^^~4~^~NC~^^^^^^^^^^~06/01/2011~
-~05679~^~321~^0.^1^^~1~^~A~^^^^^^^^^~1~^~02/01/2013~
-~05679~^~322~^0.^1^^~1~^~A~^^^^^^^^^~1~^~02/01/2013~
-~05679~^~324~^6.^1^^~1~^~A~^^^^^^^^^^~02/01/2013~
-~05679~^~334~^0.^1^^~1~^~A~^^^^^^^^^^~02/01/2013~
-~05679~^~337~^0.^1^^~1~^~A~^^^^^^^^^~1~^~02/01/2013~
-~05679~^~338~^100.^1^^~1~^~A~^^^^^^^^^^~02/01/2013~
-~05679~^~417~^4.^0^^~4~^~BFPN~^^^^^^^^^^~06/01/2011~
-~05679~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2011~
-~05679~^~432~^4.^0^^~4~^~BFPN~^^^^^^^^^^~06/01/2011~
-~05679~^~435~^4.^0^^~4~^~NC~^^^^^^^^^^~06/01/2011~
-~05679~^~601~^124.^3^3.^~1~^~A~^^^2^111.^135.^1^81.^166.^~2, 3~^~02/01/2013~
-~05680~^~208~^149.^0^^~4~^~NC~^^^^^^^^^^~06/01/2011~
-~05680~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2011~
-~05680~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2011~
-~05680~^~268~^623.^0^^~4~^~NC~^^^^^^^^^^~06/01/2011~
-~05680~^~301~^14.^1^^~1~^~A~^^^^^^^^^^~06/01/2011~
-~05680~^~304~^21.^1^^~1~^~A~^^^^^^^^^^~06/01/2011~
-~05680~^~305~^170.^1^^~1~^~A~^^^^^^^^^^~06/01/2011~
-~05680~^~306~^229.^1^^~1~^~A~^^^^^^^^^^~06/01/2011~
-~05680~^~307~^169.^1^^~1~^~A~^^^^^^^^^^~06/01/2011~
-~05680~^~318~^23.^0^^~4~^~NC~^^^^^^^^^^~06/01/2011~
-~05680~^~319~^7.^0^^~4~^~BFSN~^~05671~^^^^^^^^^~06/01/2011~
-~05680~^~320~^7.^0^^~4~^~NC~^^^^^^^^^^~06/01/2011~
-~05680~^~321~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2011~
-~05680~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2011~
-~05680~^~324~^2.^0^^~4~^~BFFN~^~05671~^^^^^^^^^~06/01/2011~
-~05680~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2011~
-~05680~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2011~
-~05680~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2011~
-~05680~^~417~^4.^0^^~4~^~BFPN~^^^^^^^^^^~06/01/2011~
-~05680~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2011~
-~05680~^~432~^4.^0^^~4~^~BFPN~^^^^^^^^^^~06/01/2011~
-~05680~^~435~^4.^0^^~4~^~NC~^^^^^^^^^^~06/01/2011~
-~05680~^~601~^135.^1^^~1~^~A~^^^^^^^^^^~06/01/2011~
-~05681~^~208~^164.^0^^~4~^~NC~^^^^^^^^^^~07/01/2011~
-~05681~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~07/01/2011~
-~05681~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~07/01/2011~
-~05681~^~268~^685.^0^^~4~^~NC~^^^^^^^^^^~07/01/2011~
-~05681~^~301~^12.^2^^~1~^~A~^^^1^9.^15.^1^^^^~07/01/2011~
-~05681~^~304~^24.^2^^~1~^~A~^^^1^23.^25.^1^^^^~07/01/2011~
-~05681~^~305~^203.^2^^~1~^~A~^^^1^197.^208.^1^^^^~07/01/2011~
-~05681~^~306~^290.^2^^~1~^~A~^^^1^281.^298.^1^^^^~07/01/2011~
-~05681~^~307~^197.^2^^~1~^~A~^^^1^184.^210.^1^^^^~07/01/2011~
-~05681~^~318~^25.^0^^~4~^~NC~^^^^^^^^^^~07/01/2011~
-~05681~^~319~^8.^0^^~4~^~BFSN~^~05672~^^^^^^^^^~07/01/2011~
-~05681~^~320~^8.^0^^~4~^~NC~^^^^^^^^^^~07/01/2011~
-~05681~^~321~^0.^0^^~7~^~Z~^^^^^^^^^^~07/01/2011~
-~05681~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~07/01/2011~
-~05681~^~324~^12.^0^^~4~^~BFFN~^~05672~^^^^^^^^^~07/01/2011~
-~05681~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~07/01/2011~
-~05681~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~07/01/2011~
-~05681~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~07/01/2011~
-~05681~^~417~^4.^0^^~4~^~BFPN~^~05672~^^^^^^^^^~07/01/2011~
-~05681~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~07/01/2011~
-~05681~^~432~^4.^0^^~4~^~BFPN~^^^^^^^^^^~07/01/2011~
-~05681~^~435~^4.^0^^~4~^~NC~^^^^^^^^^^~07/01/2011~
-~05681~^~601~^126.^1^^~1~^~A~^^^^^^^^^^~07/01/2011~
-~05682~^~208~^110.^0^^~4~^~NC~^^^^^^^^^^~02/01/2013~
-~05682~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~07/01/2011~
-~05682~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~07/01/2011~
-~05682~^~268~^459.^0^^~4~^~NC~^^^^^^^^^^~02/01/2013~
-~05682~^~301~^8.^5^0.^~1~^~A~^^^2^5.^9.^3^5.^9.^~2, 3~^~02/01/2013~
-~05682~^~304~^21.^5^0.^~1~^~A~^^^2^20.^21.^2^19.^22.^~2, 3~^~07/01/2011~
-~05682~^~305~^175.^5^2.^~1~^~A~^^^2^170.^186.^1^145.^203.^~2, 3~^~02/01/2013~
-~05682~^~306~^234.^5^1.^~1~^~A~^^^2^219.^257.^1^218.^248.^~2, 3~^~02/01/2013~
-~05682~^~307~^156.^5^7.^~1~^~A~^^^2^144.^183.^1^107.^204.^~2, 3~^~02/01/2013~
-~05682~^~318~^19.^0^^~4~^~NC~^^^^^^^^^^~07/01/2011~
-~05682~^~319~^6.^0^^~4~^~BFSN~^~05672~^^^^^^^^^~07/01/2011~
-~05682~^~320~^6.^0^^~4~^~NC~^^^^^^^^^^~07/01/2011~
-~05682~^~321~^0.^1^^~1~^~A~^^^^^^^^^~1~^~02/01/2013~
-~05682~^~322~^0.^1^^~1~^~A~^^^^^^^^^~1~^~02/01/2013~
-~05682~^~324~^3.^1^^~1~^~A~^^^^^^^^^^~02/01/2013~
-~05682~^~334~^0.^1^^~1~^~A~^^^^^^^^^^~02/01/2013~
-~05682~^~337~^0.^1^^~1~^~A~^^^^^^^^^~1~^~02/01/2013~
-~05682~^~338~^87.^1^^~1~^~A~^^^^^^^^^^~02/01/2013~
-~05682~^~417~^3.^0^^~4~^~BFPN~^~05062~^^^^^^^^^~07/01/2011~
-~05682~^~431~^0.^0^^~4~^~BFPN~^~05062~^^^^^^^^^~07/01/2011~
-~05682~^~432~^3.^0^^~4~^~BFPN~^^^^^^^^^^~07/01/2011~
-~05682~^~435~^3.^0^^~4~^~NC~^~05062~^^^^^^^^^~07/01/2011~
-~05682~^~601~^87.^3^0.^~1~^~A~^^^2^83.^93.^1^78.^95.^~2, 3~^~02/01/2013~
-~05683~^~208~^164.^0^^~4~^~NC~^^^^^^^^^^~02/01/2013~
-~05683~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~07/01/2011~
-~05683~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~07/01/2011~
-~05683~^~268~^688.^0^^~4~^~NC~^^^^^^^^^^~02/01/2013~
-~05683~^~301~^10.^5^0.^~1~^~A~^^^2^9.^12.^3^7.^12.^~2, 3~^~07/01/2011~
-~05683~^~304~^24.^5^0.^~1~^~A~^^^2^23.^25.^3^22.^25.^~2, 3~^~07/01/2011~
-~05683~^~305~^202.^5^6.^~1~^~A~^^^2^187.^221.^2^170.^233.^~2, 3~^~02/01/2013~
-~05683~^~306~^268.^5^7.^~1~^~A~^^^2^228.^317.^2^242.^293.^~2, 3~^~02/01/2013~
-~05683~^~307~^177.^5^6.^~1~^~A~^^^2^154.^217.^2^137.^216.^~2, 3~^~02/01/2013~
-~05683~^~318~^27.^0^^~4~^~NC~^^^^^^^^^^~07/01/2011~
-~05683~^~319~^8.^0^^~4~^~BFSN~^~05098~^^^^^^^^^~07/01/2011~
-~05683~^~320~^8.^0^^~4~^~NC~^^^^^^^^^^~07/01/2011~
-~05683~^~321~^0.^1^^~1~^~A~^^^^^^^^^~1~^~02/01/2013~
-~05683~^~322~^0.^1^^~1~^~A~^^^^^^^^^~1~^~02/01/2013~
-~05683~^~324~^13.^1^^~1~^~A~^^^^^^^^^^~02/01/2013~
-~05683~^~334~^1.^1^^~1~^~A~^^^^^^^^^^~02/01/2013~
-~05683~^~337~^0.^1^^~1~^~A~^^^^^^^^^~1~^~02/01/2013~
-~05683~^~338~^92.^1^^~1~^~A~^^^^^^^^^^~02/01/2013~
-~05683~^~417~^4.^0^^~4~^~BFPN~^~05062~^^^^^^^^^~07/01/2011~
-~05683~^~431~^0.^0^^~4~^~BFPN~^~05062~^^^^^^^^^~07/01/2011~
-~05683~^~432~^4.^0^^~4~^~BFPN~^^^^^^^^^^~07/01/2011~
-~05683~^~435~^4.^0^^~4~^~NC~^~05062~^^^^^^^^^~07/01/2011~
-~05683~^~601~^122.^3^3.^~1~^~A~^^^2^114.^128.^1^83.^159.^~2, 3~^~02/01/2013~
-~05684~^~208~^403.^0^^~4~^~NC~^^^^^^^^^^~07/01/2011~
-~05684~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~07/01/2011~
-~05684~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~07/01/2011~
-~05684~^~268~^1688.^0^^~4~^~NC~^^^^^^^^^^~07/01/2011~
-~05684~^~301~^14.^1^^~1~^~A~^^^^^^^^^^~07/01/2011~
-~05684~^~304~^12.^1^^~1~^~A~^^^^^^^^^^~07/01/2011~
-~05684~^~305~^112.^1^^~1~^~A~^^^^^^^^^^~07/01/2011~
-~05684~^~306~^146.^1^^~1~^~A~^^^^^^^^^^~07/01/2011~
-~05684~^~307~^139.^1^^~1~^~A~^^^^^^^^^^~07/01/2011~
-~05684~^~318~^147.^0^^~4~^~NC~^^^^^^^^^^~07/01/2011~
-~05684~^~319~^44.^0^^~4~^~BFSN~^~05673~^^^^^^^^^~07/01/2011~
-~05684~^~320~^44.^0^^~4~^~NC~^^^^^^^^^^~07/01/2011~
-~05684~^~321~^0.^0^^~7~^~Z~^^^^^^^^^^~07/01/2011~
-~05684~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~07/01/2011~
-~05684~^~324~^3.^0^^~4~^~BFFN~^~05673~^^^^^^^^^~07/01/2011~
-~05684~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~07/01/2011~
-~05684~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~07/01/2011~
-~05684~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~07/01/2011~
-~05684~^~417~^2.^0^^~4~^~BFPN~^~05062~^^^^^^^^^~07/01/2011~
-~05684~^~431~^0.^0^^~4~^~BFPN~^~05062~^^^^^^^^^~07/01/2011~
-~05684~^~432~^2.^0^^~4~^~BFPN~^^^^^^^^^^~07/01/2011~
-~05684~^~435~^2.^0^^~4~^~NC~^~05062~^^^^^^^^^~07/01/2011~
-~05684~^~601~^124.^1^^~1~^~A~^^^^^^^^^^~07/01/2011~
-~05685~^~208~^386.^0^^~4~^~NC~^^^^^^^^^^~02/01/2013~
-~05685~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~07/01/2011~
-~05685~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~07/01/2011~
-~05685~^~268~^1614.^0^^~4~^~NC~^^^^^^^^^^~02/01/2013~
-~05685~^~301~^7.^4^0.^~1~^~A~^^^2^6.^10.^2^5.^8.^~2, 3~^~02/01/2013~
-~05685~^~304~^7.^4^0.^~1~^~A~^^^2^7.^8.^2^6.^7.^~2, 3~^~02/01/2013~
-~05685~^~305~^88.^4^1.^~1~^~A~^^^2^85.^90.^2^83.^92.^~2, 3~^~02/01/2013~
-~05685~^~306~^101.^4^5.^~1~^~A~^^^2^75.^158.^2^78.^123.^~2, 3~^~02/01/2013~
-~05685~^~307~^139.^4^10.^~1~^~A~^^^2^118.^174.^2^92.^185.^~2, 3~^~02/01/2013~
-~05685~^~318~^186.^0^^~4~^~NC~^^^^^^^^^^~07/01/2011~
-~05685~^~319~^56.^0^^~4~^~BFSN~^~05674~^^^^^^^^^~07/01/2011~
-~05685~^~320~^56.^0^^~4~^~NC~^^^^^^^^^^~07/01/2011~
-~05685~^~321~^0.^0^^~7~^~Z~^^^^^^^^^^~07/01/2011~
-~05685~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~07/01/2011~
-~05685~^~324~^14.^1^^~1~^~A~^^^^^^^^^^~02/01/2013~
-~05685~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~07/01/2011~
-~05685~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~07/01/2011~
-~05685~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~07/01/2011~
-~05685~^~417~^2.^0^^~4~^~BFPN~^~05062~^^^^^^^^^~07/01/2011~
-~05685~^~431~^0.^0^^~4~^~BFPN~^~05062~^^^^^^^^^~07/01/2011~
-~05685~^~432~^2.^0^^~4~^~BFPN~^^^^^^^^^^~07/01/2011~
-~05685~^~435~^2.^0^^~4~^~NC~^~05062~^^^^^^^^^~07/01/2011~
-~05685~^~601~^113.^4^2.^~1~^~A~^^^2^105.^122.^2^102.^123.^~2, 3~^~02/01/2013~
-~05686~^~208~^421.^0^^~4~^~NC~^^^^^^^^^^~07/01/2015~
-~05686~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~07/01/2011~
-~05686~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~07/01/2011~
-~05686~^~268~^1763.^0^^~4~^~NC~^^^^^^^^^^~07/01/2015~
-~05686~^~301~^15.^4^1.^~1~^~A~^^^2^11.^18.^2^10.^19.^~2, 3~^~02/01/2013~
-~05686~^~304~^18.^4^0.^~1~^~A~^^^2^15.^22.^2^14.^21.^~2, 3~^~02/01/2013~
-~05686~^~305~^176.^4^7.^~1~^~A~^^^2^152.^188.^2^143.^207.^~2, 3~^~02/01/2013~
-~05686~^~306~^198.^4^7.^~1~^~A~^^^2^157.^259.^2^165.^229.^~2, 3~^~02/01/2013~
-~05686~^~307~^162.^4^7.^~1~^~A~^^^2^111.^197.^2^130.^192.^~2, 3~^~02/01/2013~
-~05686~^~318~^176.^0^^~4~^~NC~^^^^^^^^^^~07/01/2011~
-~05686~^~319~^53.^0^^~4~^~NR~^~05675~^^^^^^^^^~07/01/2011~
-~05686~^~320~^53.^0^^~4~^~NC~^^^^^^^^^^~07/01/2011~
-~05686~^~321~^0.^0^^~7~^~Z~^^^^^^^^^^~07/01/2011~
-~05686~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~07/01/2011~
-~05686~^~324~^6.^0^^~4~^~BFFN~^~05675~^^^^^^^^^~06/01/2014~
-~05686~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~07/01/2011~
-~05686~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~07/01/2011~
-~05686~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~07/01/2011~
-~05686~^~417~^3.^0^^~4~^~BFPN~^~05062~^^^^^^^^^~07/01/2011~
-~05686~^~431~^0.^0^^~4~^~BFPN~^~05062~^^^^^^^^^~07/01/2011~
-~05686~^~432~^3.^0^^~4~^~BFPN~^^^^^^^^^^~07/01/2011~
-~05686~^~435~^3.^0^^~4~^~NC~^~05062~^^^^^^^^^~07/01/2011~
-~05686~^~601~^154.^4^5.^~1~^~A~^^^2^142.^166.^2^131.^176.^~2, 3~^~02/01/2013~
-~05687~^~208~^183.^0^^~4~^~NC~^^^^^^^^^^~07/01/2011~
-~05687~^~262~^0.^0^^~4~^~PIK~^^^^^^^^^^~07/01/2011~
-~05687~^~263~^0.^0^^~4~^~PIK~^^^^^^^^^^~07/01/2011~
-~05687~^~268~^766.^0^^~4~^~NC~^^^^^^^^^^~07/01/2011~
-~05687~^~301~^14.^0^^~1~^~PAK~^^^^^^^^^^~07/01/2011~
-~05687~^~304~^20.^0^^~1~^~PAK~^^^^^^^^^^~07/01/2011~
-~05687~^~305~^162.^0^^~1~^~PAK~^^^^^^^^^^~07/01/2011~
-~05687~^~306~^218.^0^^~1~^~PAK~^^^^^^^^^^~07/01/2011~
-~05687~^~307~^165.^0^^~1~^~PAK~^^^^^^^^^^~07/01/2011~
-~05687~^~318~^40.^0^^~4~^~NC~^^^^^^^^^^~07/01/2011~
-~05687~^~319~^12.^0^^~4~^~PIK~^^^^^^^^^^~07/01/2011~
-~05687~^~320~^12.^0^^~4~^~NC~^^^^^^^^^^~07/01/2011~
-~05687~^~321~^0.^0^^~4~^~PIK~^^^^^^^^^^~07/01/2011~
-~05687~^~322~^0.^0^^~4~^~PIK~^^^^^^^^^^~07/01/2011~
-~05687~^~324~^3.^0^^~4~^~PIK~^^^^^^^^^^~07/01/2011~
-~05687~^~334~^0.^0^^~4~^~PIK~^^^^^^^^^^~07/01/2011~
-~05687~^~337~^0.^0^^~4~^~PIK~^^^^^^^^^^~07/01/2011~
-~05687~^~338~^0.^0^^~4~^~PIK~^^^^^^^^^^~07/01/2011~
-~05687~^~417~^4.^0^^~4~^~PIK~^^^^^^^^^^~07/01/2011~
-~05687~^~431~^0.^0^^~4~^~PIK~^^^^^^^^^^~07/01/2011~
-~05687~^~432~^4.^0^^~4~^~PIK~^^^^^^^^^^~07/01/2011~
-~05687~^~435~^4.^0^^~4~^~NC~^^^^^^^^^^~07/01/2011~
-~05687~^~601~^133.^0^^~1~^~PAK~^^^^^^^^^^~07/01/2011~
-~05688~^~208~^146.^0^^~4~^~PIK~^^^^^^^^^^~02/01/2013~
-~05688~^~262~^0.^0^^~4~^~PIK~^^^^^^^^^^~07/01/2011~
-~05688~^~263~^0.^0^^~4~^~PIK~^^^^^^^^^^~07/01/2011~
-~05688~^~268~^612.^0^^~4~^~PIK~^^^^^^^^^^~02/01/2013~
-~05688~^~301~^8.^0^^~1~^~PAK~^^^^^^^^^^~02/01/2013~
-~05688~^~304~^15.^0^^~1~^~PAK~^^^^^^^^^^~02/01/2013~
-~05688~^~305~^135.^0^^~1~^~PAK~^^^^^^^^^^~02/01/2013~
-~05688~^~306~^179.^0^^~1~^~PAK~^^^^^^^^^^~02/01/2013~
-~05688~^~307~^150.^0^^~1~^~PAK~^^^^^^^^^^~02/01/2013~
-~05688~^~318~^50.^0^^~4~^~NC~^^^^^^^^^^~07/01/2011~
-~05688~^~319~^15.^0^^~4~^~PIK~^^^^^^^^^^~07/01/2011~
-~05688~^~320~^15.^0^^~4~^~NC~^^^^^^^^^^~07/01/2011~
-~05688~^~321~^0.^0^^~4~^~PIK~^^^^^^^^^^~07/01/2011~
-~05688~^~322~^0.^0^^~4~^~PIK~^^^^^^^^^^~07/01/2011~
-~05688~^~324~^8.^0^^~1~^~PAK~^^^^^^^^^^~02/01/2013~
-~05688~^~334~^0.^0^^~4~^~PIK~^^^^^^^^^^~07/01/2011~
-~05688~^~337~^0.^0^^~4~^~PIK~^^^^^^^^^^~07/01/2011~
-~05688~^~338~^87.^0^^~4~^~PIK~^^^^^^^^^^~02/01/2013~
-~05688~^~417~^3.^0^^~4~^~PIK~^^^^^^^^^^~07/01/2011~
-~05688~^~431~^0.^0^^~4~^~PIK~^^^^^^^^^^~07/01/2011~
-~05688~^~432~^3.^0^^~4~^~PIK~^^^^^^^^^^~07/01/2011~
-~05688~^~435~^3.^0^^~4~^~NC~^^^^^^^^^^~07/01/2011~
-~05688~^~601~^95.^0^^~1~^~PAK~^^^^^^^^^^~02/01/2013~
-~05689~^~208~^180.^0^^~4~^~PIK~^^^^^^^^^^~02/01/2013~
-~05689~^~262~^0.^0^^~4~^~PIK~^^^^^^^^^^~02/01/2013~
-~05689~^~263~^0.^0^^~4~^~PIK~^^^^^^^^^^~02/01/2013~
-~05689~^~268~^754.^0^^~4~^~PIK~^^^^^^^^^^~02/01/2013~
-~05689~^~301~^13.^0^^~1~^~PAK~^^^^^^^^^^~02/01/2013~
-~05689~^~304~^20.^0^^~1~^~PAK~^^^^^^^^^^~07/01/2011~
-~05689~^~305~^194.^0^^~1~^~PAK~^^^^^^^^^^~02/01/2013~
-~05689~^~306~^244.^0^^~1~^~PAK~^^^^^^^^^^~02/01/2013~
-~05689~^~307~^186.^0^^~1~^~PAK~^^^^^^^^^^~02/01/2013~
-~05689~^~318~^39.^0^^~4~^~NC~^^^^^^^^^^~02/01/2013~
-~05689~^~319~^12.^0^^~4~^~PIK~^^^^^^^^^^~02/01/2013~
-~05689~^~320~^12.^0^^~4~^~NC~^^^^^^^^^^~02/01/2013~
-~05689~^~321~^0.^0^^~4~^~PIK~^^^^^^^^^^~02/01/2013~
-~05689~^~322~^0.^0^^~4~^~PIK~^^^^^^^^^^~02/01/2013~
-~05689~^~324~^7.^0^^~1~^~PAK~^^^^^^^^^^~02/01/2013~
-~05689~^~334~^0.^0^^~4~^~PIK~^^^^^^^^^^~02/01/2013~
-~05689~^~337~^0.^0^^~4~^~PIK~^^^^^^^^^^~02/01/2013~
-~05689~^~338~^88.^0^^~4~^~PIK~^^^^^^^^^^~02/01/2013~
-~05689~^~417~^4.^0^^~4~^~PIK~^^^^^^^^^^~02/01/2013~
-~05689~^~431~^0.^0^^~4~^~PIK~^^^^^^^^^^~02/01/2013~
-~05689~^~432~^4.^0^^~4~^~PIK~^^^^^^^^^^~02/01/2013~
-~05689~^~435~^4.^0^^~4~^~NC~^^^^^^^^^^~07/01/2011~
-~05689~^~601~^128.^0^^~1~^~PAK~^^^^^^^^^^~02/01/2013~
-~05690~^~208~^215.^0^^~4~^~NC~^^^^^^^^^^~07/01/2011~
-~05690~^~262~^0.^0^^~4~^~PIK~^^^^^^^^^^~07/01/2011~
-~05690~^~263~^0.^0^^~4~^~PIK~^^^^^^^^^^~07/01/2011~
-~05690~^~268~^901.^0^^~4~^~NC~^^^^^^^^^^~07/01/2011~
-~05690~^~301~^12.^0^^~1~^~PAK~^^^^^^^^^^~07/01/2011~
-~05690~^~304~^21.^0^^~1~^~PAK~^^^^^^^^^^~07/01/2011~
-~05690~^~305~^183.^0^^~1~^~PAK~^^^^^^^^^^~07/01/2011~
-~05690~^~306~^259.^0^^~1~^~PAK~^^^^^^^^^^~07/01/2011~
-~05690~^~307~^185.^0^^~1~^~PAK~^^^^^^^^^^~07/01/2011~
-~05690~^~318~^52.^0^^~4~^~PIK~^^^^^^^^^^~07/01/2011~
-~05690~^~319~^15.^0^^~4~^~PIK~^^^^^^^^^^~07/01/2011~
-~05690~^~320~^15.^0^^~4~^~PIK~^^^^^^^^^^~07/01/2011~
-~05690~^~321~^0.^0^^~4~^~PIK~^^^^^^^^^^~07/01/2011~
-~05690~^~322~^0.^0^^~4~^~PIK~^^^^^^^^^^~07/01/2011~
-~05690~^~324~^10.^0^^~4~^~PIK~^^^^^^^^^^~07/01/2011~
-~05690~^~334~^0.^0^^~4~^~PIK~^^^^^^^^^^~07/01/2011~
-~05690~^~337~^0.^0^^~4~^~PIK~^^^^^^^^^^~07/01/2011~
-~05690~^~338~^0.^0^^~4~^~PIK~^^^^^^^^^^~07/01/2011~
-~05690~^~417~^4.^0^^~4~^~PIK~^^^^^^^^^^~07/01/2011~
-~05690~^~431~^0.^0^^~4~^~PIK~^^^^^^^^^^~07/01/2011~
-~05690~^~432~^4.^0^^~4~^~PIK~^^^^^^^^^^~07/01/2011~
-~05690~^~435~^4.^0^^~4~^~NC~^^^^^^^^^^~07/01/2011~
-~05690~^~601~^125.^0^^~1~^~PAK~^^^^^^^^^^~07/01/2011~
-~05691~^~208~^197.^0^^~4~^~PIK~^^^^^^^^^^~02/01/2013~
-~05691~^~262~^0.^0^^~4~^~PIK~^^^^^^^^^^~07/01/2011~
-~05691~^~263~^0.^0^^~4~^~PIK~^^^^^^^^^^~07/01/2011~
-~05691~^~268~^826.^0^^~4~^~PIK~^^^^^^^^^^~02/01/2013~
-~05691~^~301~^8.^0^^~1~^~PAK~^^^^^^^^^^~02/01/2013~
-~05691~^~304~^16.^0^^~1~^~PAK~^^^^^^^^^^~02/01/2013~
-~05691~^~305~^147.^0^^~1~^~PAK~^^^^^^^^^^~02/01/2013~
-~05691~^~306~^191.^0^^~1~^~PAK~^^^^^^^^^^~02/01/2013~
-~05691~^~307~^151.^0^^~1~^~PAK~^^^^^^^^^^~02/01/2013~
-~05691~^~318~^72.^0^^~4~^~NC~^^^^^^^^^^~07/01/2011~
-~05691~^~319~^22.^0^^~4~^~PIK~^^^^^^^^^^~07/01/2011~
-~05691~^~320~^22.^0^^~4~^~NC~^^^^^^^^^^~07/01/2011~
-~05691~^~321~^0.^0^^~4~^~PIK~^^^^^^^^^^~07/01/2011~
-~05691~^~322~^0.^0^^~4~^~PIK~^^^^^^^^^^~07/01/2011~
-~05691~^~324~^7.^0^^~1~^~PAK~^^^^^^^^^^~02/01/2013~
-~05691~^~334~^0.^0^^~4~^~PIK~^^^^^^^^^^~07/01/2011~
-~05691~^~337~^0.^0^^~4~^~PIK~^^^^^^^^^^~07/01/2011~
-~05691~^~338~^59.^0^^~4~^~PIK~^^^^^^^^^^~02/01/2013~
-~05691~^~417~^3.^0^^~4~^~PIK~^^^^^^^^^^~07/01/2011~
-~05691~^~431~^0.^0^^~4~^~PIK~^^^^^^^^^^~07/01/2011~
-~05691~^~432~^3.^0^^~4~^~PIK~^^^^^^^^^^~07/01/2011~
-~05691~^~435~^3.^0^^~4~^~NC~^^^^^^^^^^~07/01/2011~
-~05691~^~601~^95.^0^^~1~^~PAK~^^^^^^^^^^~02/01/2013~
-~05692~^~208~^214.^0^^~4~^~PIK~^^^^^^^^^^~02/01/2013~
-~05692~^~262~^0.^0^^~4~^~PIK~^^^^^^^^^^~07/01/2011~
-~05692~^~263~^0.^0^^~4~^~PIK~^^^^^^^^^^~07/01/2011~
-~05692~^~268~^896.^0^^~4~^~PIK~^^^^^^^^^^~02/01/2013~
-~05692~^~301~^11.^0^^~1~^~PAK~^^^^^^^^^^~07/01/2011~
-~05692~^~304~^23.^0^^~1~^~PAK~^^^^^^^^^^~02/01/2013~
-~05692~^~305~^197.^0^^~1~^~PAK~^^^^^^^^^^~02/01/2013~
-~05692~^~306~^254.^0^^~1~^~PAK~^^^^^^^^^^~02/01/2013~
-~05692~^~307~^174.^0^^~1~^~PAK~^^^^^^^^^^~02/01/2013~
-~05692~^~318~^56.^0^^~4~^~NC~^^^^^^^^^^~07/01/2011~
-~05692~^~319~^17.^0^^~4~^~PIK~^^^^^^^^^^~07/01/2011~
-~05692~^~320~^17.^0^^~4~^~NC~^^^^^^^^^^~07/01/2011~
-~05692~^~321~^0.^0^^~4~^~PIK~^^^^^^^^^^~07/01/2011~
-~05692~^~322~^0.^0^^~4~^~PIK~^^^^^^^^^^~07/01/2011~
-~05692~^~324~^14.^0^^~1~^~PAK~^^^^^^^^^^~02/01/2013~
-~05692~^~334~^0.^0^^~4~^~PIK~^^^^^^^^^^~07/01/2011~
-~05692~^~337~^0.^0^^~4~^~PIK~^^^^^^^^^^~07/01/2011~
-~05692~^~338~^74.^0^^~4~^~PIK~^^^^^^^^^^~02/01/2013~
-~05692~^~417~^4.^0^^~4~^~PIK~^^^^^^^^^^~07/01/2011~
-~05692~^~431~^0.^0^^~4~^~PIK~^^^^^^^^^^~07/01/2011~
-~05692~^~432~^4.^0^^~4~^~PIK~^^^^^^^^^^~07/01/2011~
-~05692~^~435~^4.^0^^~4~^~NC~^^^^^^^^^^~07/01/2011~
-~05692~^~601~^128.^0^^~1~^~PAK~^^^^^^^^^^~02/01/2013~
-~05693~^~208~^212.^0^^~4~^~NC~^^^^^^^^^^~08/01/2011~
-~05693~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~08/01/2011~
-~05693~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~08/01/2011~
-~05693~^~268~^888.^0^^~4~^~NC~^^^^^^^^^^~08/01/2011~
-~05693~^~301~^33.^0^^~4~^~BFNN~^^^^^^^^^^~05/01/2012~
-~05693~^~304~^18.^0^^~4~^~BFNN~^^^^^^^^^^~05/01/2012~
-~05693~^~305~^212.^0^^~4~^~BFNN~^^^^^^^^^^~05/01/2012~
-~05693~^~306~^263.^0^^~4~^~BFNN~^^^^^^^^^^~05/01/2012~
-~05693~^~307~^563.^0^^~4~^~BFNN~^^^^^^^^^^~05/01/2012~
-~05693~^~318~^51.^1^^~1~^~AS~^^^^^^^^^^~08/01/2011~
-~05693~^~319~^15.^1^^~1~^~A~^^^^^^^^^^~08/01/2011~
-~05693~^~320~^15.^1^^~1~^~AS~^^^^^^^^^^~08/01/2011~
-~05693~^~321~^0.^1^^~1~^~A~^^^^^^^^^~1~^~08/01/2011~
-~05693~^~322~^0.^1^^~1~^~A~^^^^^^^^^~1~^~08/01/2011~
-~05693~^~324~^0.^0^^~4~^~BFFN~^^^^^^^^^^~05/01/2012~
-~05693~^~334~^0.^1^^~1~^~A~^^^^^^^^^~1~^~08/01/2011~
-~05693~^~337~^0.^1^^~1~^~A~^^^^^^^^^~1~^~08/01/2011~
-~05693~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~08/01/2011~
-~05693~^~417~^7.^0^^~4~^~BFPN~^^^^^^^^^^~05/01/2012~
-~05693~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2013~
-~05693~^~432~^7.^0^^~4~^~BFPN~^^^^^^^^^^~05/01/2012~
-~05693~^~435~^7.^0^^~4~^~NC~^^^^^^^^^^~05/01/2013~
-~05693~^~601~^117.^0^^~4~^~BFSN~^^^^^^^^^^~05/01/2012~
-~05694~^~208~^115.^0^^~4~^~NC~^^^^^^^^^^~07/01/2015~
-~05694~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~08/01/2012~
-~05694~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~08/01/2012~
-~05694~^~268~^479.^0^^~4~^~NC~^^^^^^^^^^~07/01/2015~
-~05694~^~301~^15.^6^0.^~1~^~A~^^^1^14.^15.^5^14.^15.^~2, 3~^~08/01/2012~
-~05694~^~304~^21.^6^1.^~1~^~A~^^^1^16.^26.^5^17.^24.^~2, 3~^~08/01/2012~
-~05694~^~305~^191.^6^3.^~1~^~A~^^^1^180.^205.^5^181.^200.^~2, 3~^~08/01/2012~
-~05694~^~306~^226.^10^5.^~1~^~A~^^^^185.^243.^^^^^~08/01/2012~
-~05694~^~307~^167.^6^20.^~1~^~A~^^^1^136.^268.^5^114.^219.^~2, 3~^~08/01/2012~
-~05694~^~318~^43.^0^^~1~^~AS~^^^^^^^^^^~08/01/2012~
-~05694~^~319~^13.^1^^~1~^~A~^^^^^^^^^^~08/01/2012~
-~05694~^~320~^13.^0^^~1~^~AS~^^^^^^^^^^~08/01/2012~
-~05694~^~321~^0.^0^^~7~^~Z~^^^^^^^^^^~08/01/2012~
-~05694~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~08/01/2012~
-~05694~^~324~^13.^1^^~1~^~A~^^^^^^^^^~1~^~08/01/2012~
-~05694~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~08/01/2012~
-~05694~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~08/01/2012~
-~05694~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~08/01/2012~
-~05694~^~417~^6.^0^^~4~^~BFPN~^^^^^^^^^^~08/01/2012~
-~05694~^~432~^6.^0^^~4~^~BFPN~^^^^^^^^^^~08/01/2012~
-~05694~^~601~^79.^11^2.^~1~^~A~^^^1^69.^100.^10^73.^83.^~2, 3~^~08/01/2012~
-~05695~^~208~^158.^0^^~4~^~NC~^^^^^^^^^^~08/01/2012~
-~05695~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~08/01/2012~
-~05695~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~08/01/2012~
-~05695~^~268~^663.^0^^~4~^~NC~^^^^^^^^^^~08/01/2012~
-~05695~^~301~^16.^6^1.^~1~^~A~^^^1^13.^21.^5^13.^19.^~2, 3~^~08/01/2012~
-~05695~^~304~^24.^6^1.^~1~^~A~^^^1^20.^30.^5^20.^27.^~2, 3~^~08/01/2012~
-~05695~^~305~^208.^6^4.^~1~^~A~^^^1^194.^226.^5^195.^220.^~2, 3~^~08/01/2012~
-~05695~^~306~^227.^10^5.^~1~^~A~^^^^188.^240.^^^^^~08/01/2012~
-~05695~^~307~^201.^6^19.^~1~^~A~^^^1^164.^293.^5^151.^250.^~2, 3~^~08/01/2012~
-~05695~^~318~^18.^0^^~1~^~AS~^^^^^^^^^^~08/01/2012~
-~05695~^~319~^5.^1^^~1~^~A~^^^^^^^^^^~08/01/2012~
-~05695~^~320~^5.^0^^~1~^~AS~^^^^^^^^^^~08/01/2012~
-~05695~^~321~^0.^0^^~7~^~Z~^^^^^^^^^^~08/01/2012~
-~05695~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~08/01/2012~
-~05695~^~324~^10.^1^^~1~^~A~^^^^^^^^^~1~^~08/01/2012~
-~05695~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~08/01/2012~
-~05695~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~08/01/2012~
-~05695~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~08/01/2012~
-~05695~^~417~^8.^0^^~4~^~BFPN~^^^^^^^^^^~08/01/2012~
-~05695~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2013~
-~05695~^~432~^8.^0^^~4~^~BFPN~^^^^^^^^^^~08/01/2012~
-~05695~^~435~^8.^0^^~4~^~NC~^^^^^^^^^^~05/01/2013~
-~05695~^~601~^105.^11^2.^~1~^~A~^^^1^86.^118.^10^98.^110.^~2, 3~^~08/01/2012~
-~05696~^~208~^101.^0^^~4~^~NC~^^^^^^^^^^~08/01/2012~
-~05696~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~08/01/2012~
-~05696~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~08/01/2012~
-~05696~^~268~^423.^0^^~4~^~NC~^^^^^^^^^^~08/01/2012~
-~05696~^~301~^14.^6^0.^~1~^~A~^^^1^12.^16.^5^12.^15.^~2, 3~^~08/01/2012~
-~05696~^~304~^25.^6^0.^~1~^~A~^^^1^22.^29.^5^22.^27.^~2, 3~^~08/01/2012~
-~05696~^~305~^236.^6^6.^~1~^~A~^^^1^217.^256.^5^218.^253.^~2, 3~^~08/01/2012~
-~05696~^~306~^242.^10^5.^~1~^~A~^^^^215.^262.^^^^^~08/01/2012~
-~05696~^~307~^206.^6^25.^~1~^~A~^^^1^101.^277.^5^138.^272.^~2, 3~^~08/01/2012~
-~05696~^~318~^20.^0^^~1~^~AS~^^^^^^^^^^~08/01/2012~
-~05696~^~319~^6.^1^^~1~^~A~^^^^^^^^^^~08/01/2012~
-~05696~^~320~^6.^0^^~1~^~AS~^^^^^^^^^^~08/01/2012~
-~05696~^~321~^0.^0^^~7~^~Z~^^^^^^^^^^~08/01/2012~
-~05696~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~08/01/2012~
-~05696~^~324~^5.^1^^~1~^~A~^^^^^^^^^~1~^~08/01/2012~
-~05696~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~08/01/2012~
-~05696~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~08/01/2012~
-~05696~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~08/01/2012~
-~05696~^~417~^7.^0^^~4~^~BFPN~^^^^^^^^^^~08/01/2012~
-~05696~^~432~^7.^0^^~4~^~BFPN~^^^^^^^^^^~08/01/2012~
-~05696~^~601~^54.^11^1.^~1~^~A~^^^1^43.^60.^10^50.^57.^~2, 3~^~08/01/2012~
-~05697~^~208~^127.^0^^~4~^~NC~^^^^^^^^^^~08/01/2012~
-~05697~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~08/01/2012~
-~05697~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~08/01/2012~
-~05697~^~268~^530.^0^^~4~^~NC~^^^^^^^^^^~08/01/2012~
-~05697~^~301~^13.^6^0.^~1~^~A~^^^1^12.^14.^5^11.^13.^~2, 3~^~08/01/2012~
-~05697~^~304~^30.^6^1.^~1~^~A~^^^1^27.^36.^5^26.^33.^~2, 3~^~08/01/2012~
-~05697~^~305~^255.^6^7.^~1~^~A~^^^1^223.^269.^5^236.^273.^~2, 3~^~08/01/2012~
-~05697~^~306~^249.^10^3.^~1~^~A~^^^^236.^265.^^^^^~08/01/2012~
-~05697~^~307~^238.^6^24.^~1~^~A~^^^1^151.^295.^5^174.^301.^~2, 3~^~08/01/2012~
-~05697~^~318~^11.^0^^~1~^~AS~^^^^^^^^^^~08/01/2012~
-~05697~^~319~^3.^1^^~1~^~A~^^^^^^^^^^~08/01/2012~
-~05697~^~320~^3.^0^^~1~^~AS~^^^^^^^^^^~08/01/2012~
-~05697~^~321~^0.^0^^~7~^~Z~^^^^^^^^^^~08/01/2012~
-~05697~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~08/01/2012~
-~05697~^~324~^10.^1^^~1~^~A~^^^^^^^^^~1~^~08/01/2012~
-~05697~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~08/01/2012~
-~05697~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~08/01/2012~
-~05697~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~08/01/2012~
-~05697~^~417~^9.^0^^~4~^~BFPN~^^^^^^^^^^~08/01/2012~
-~05697~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2013~
-~05697~^~432~^9.^0^^~4~^~BFPN~^^^^^^^^^^~08/01/2012~
-~05697~^~435~^9.^0^^~4~^~NC~^^^^^^^^^^~05/01/2013~
-~05697~^~601~^69.^11^2.^~1~^~A~^^^1^55.^82.^10^64.^74.^~2, 3~^~08/01/2012~
-~05698~^~208~^381.^0^^~4~^~NC~^^^^^^^^^^~08/01/2012~
-~05698~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~08/01/2012~
-~05698~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~08/01/2012~
-~05698~^~268~^1595.^0^^~4~^~NC~^^^^^^^^^^~08/01/2012~
-~05698~^~301~^13.^4^0.^~1~^~A~^^^^12.^14.^^^^^~08/01/2012~
-~05698~^~304~^9.^2^^~1~^~A~^^^1^9.^9.^1^^^^~08/01/2012~
-~05698~^~305~^99.^2^^~1~^~A~^^^1^94.^104.^1^^^^~08/01/2012~
-~05698~^~306~^107.^2^^~1~^~A~^^^1^107.^108.^1^^^^~08/01/2012~
-~05698~^~307~^138.^2^^~1~^~A~^^^1^130.^146.^1^^^^~08/01/2012~
-~05698~^~318~^284.^0^^~1~^~AS~^^^^^^^^^^~08/01/2012~
-~05698~^~319~^85.^2^^~1~^~A~^^^1^84.^87.^1^^^^~08/01/2012~
-~05698~^~320~^85.^0^^~1~^~AS~^^^^^^^^^^~08/01/2012~
-~05698~^~321~^0.^0^^~7~^~Z~^^^^^^^^^^~08/01/2012~
-~05698~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~08/01/2012~
-~05698~^~324~^46.^1^^~1~^~A~^^^^^^^^^^~08/01/2012~
-~05698~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~08/01/2012~
-~05698~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~08/01/2012~
-~05698~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~08/01/2012~
-~05698~^~417~^4.^0^^~4~^~BFPN~^^^^^^^^^^~08/01/2012~
-~05698~^~432~^4.^0^^~4~^~BFPN~^^^^^^^^^^~08/01/2012~
-~05698~^~601~^94.^2^^~1~^~A~^^^1^84.^104.^1^^^^~08/01/2012~
-~05699~^~208~^451.^0^^~4~^~NC~^^^^^^^^^^~08/01/2012~
-~05699~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~08/01/2012~
-~05699~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~08/01/2012~
-~05699~^~268~^1889.^0^^~4~^~NC~^^^^^^^^^^~08/01/2012~
-~05699~^~301~^25.^4^2.^~1~^~A~^^^^17.^29.^^^^^~08/01/2012~
-~05699~^~304~^28.^2^^~1~^~A~^^^1^26.^31.^1^^^^~08/01/2012~
-~05699~^~305~^244.^2^^~1~^~A~^^^1^231.^256.^1^^^^~08/01/2012~
-~05699~^~306~^263.^2^^~1~^~A~^^^1^215.^310.^1^^^^~08/01/2012~
-~05699~^~307~^234.^2^^~1~^~A~^^^1^228.^239.^1^^^^~08/01/2012~
-~05699~^~318~^262.^0^^~1~^~AS~^^^^^^^^^^~08/01/2012~
-~05699~^~319~^79.^2^^~1~^~A~^^^1^76.^81.^1^^^^~08/01/2012~
-~05699~^~320~^79.^0^^~1~^~AS~^^^^^^^^^^~08/01/2012~
-~05699~^~321~^0.^0^^~7~^~Z~^^^^^^^^^^~08/01/2012~
-~05699~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~08/01/2012~
-~05699~^~324~^54.^1^^~1~^~A~^^^^^^^^^^~08/01/2012~
-~05699~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~08/01/2012~
-~05699~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~08/01/2012~
-~05699~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~08/01/2012~
-~05699~^~417~^7.^0^^~4~^~BFPN~^^^^^^^^^^~08/01/2012~
-~05699~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2013~
-~05699~^~432~^7.^0^^~4~^~BFPN~^^^^^^^^^^~08/01/2012~
-~05699~^~435~^7.^0^^~4~^~NC~^^^^^^^^^^~05/01/2013~
-~05699~^~601~^144.^2^^~1~^~A~^^^1^116.^171.^1^^^^~08/01/2012~
-~05700~^~208~^169.^0^^~4~^~NC~^^^^^^^^^^~08/01/2012~
-~05700~^~262~^0.^0^^~4~^~PIK~^^^^^^^^^^~08/01/2012~
-~05700~^~263~^0.^0^^~4~^~PIK~^^^^^^^^^^~08/01/2012~
-~05700~^~268~^707.^0^^~4~^~NC~^^^^^^^^^^~08/01/2012~
-~05700~^~301~^14.^0^^~1~^~PAK~^^^^^^^^^^~08/01/2012~
-~05700~^~304~^18.^0^^~1~^~PAK~^^^^^^^^^^~08/01/2012~
-~05700~^~305~^172.^0^^~1~^~PAK~^^^^^^^^^^~08/01/2012~
-~05700~^~306~^202.^0^^~1~^~PAK~^^^^^^^^^^~08/01/2012~
-~05700~^~307~^161.^0^^~1~^~PAK~^^^^^^^^^^~08/01/2012~
-~05700~^~318~^93.^0^^~1~^~PAK~^^^^^^^^^^~08/01/2012~
-~05700~^~319~^28.^0^^~1~^~PAK~^^^^^^^^^^~08/01/2012~
-~05700~^~320~^28.^0^^~1~^~PAK~^^^^^^^^^^~08/01/2012~
-~05700~^~321~^0.^0^^~4~^~PIK~^^^^^^^^^^~08/01/2012~
-~05700~^~322~^0.^0^^~4~^~PIK~^^^^^^^^^^~08/01/2012~
-~05700~^~324~^20.^0^^~1~^~PAK~^^^^^^^^^^~08/01/2012~
-~05700~^~334~^0.^0^^~4~^~PIK~^^^^^^^^^^~08/01/2012~
-~05700~^~337~^0.^0^^~4~^~PIK~^^^^^^^^^^~08/01/2012~
-~05700~^~338~^0.^0^^~4~^~PIK~^^^^^^^^^^~08/01/2012~
-~05700~^~417~^6.^0^^~4~^~PIK~^^^^^^^^^^~08/01/2012~
-~05700~^~432~^6.^0^^~4~^~PIK~^^^^^^^^^^~08/01/2012~
-~05700~^~601~^82.^0^^~1~^~PAK~^^^^^^^^^^~08/01/2012~
-~05701~^~208~^199.^0^^~4~^~NC~^^^^^^^^^^~08/01/2012~
-~05701~^~262~^0.^0^^~4~^~PIK~^^^^^^^^^^~08/01/2012~
-~05701~^~263~^0.^0^^~4~^~PIK~^^^^^^^^^^~08/01/2012~
-~05701~^~268~^835.^0^^~4~^~NC~^^^^^^^^^^~08/01/2012~
-~05701~^~301~^17.^0^^~1~^~PAK~^^^^^^^^^^~08/01/2012~
-~05701~^~304~^25.^0^^~1~^~PAK~^^^^^^^^^^~08/01/2012~
-~05701~^~305~^213.^0^^~1~^~PAK~^^^^^^^^^^~08/01/2012~
-~05701~^~306~^232.^0^^~1~^~PAK~^^^^^^^^^^~08/01/2012~
-~05701~^~307~^206.^0^^~1~^~PAK~^^^^^^^^^^~08/01/2012~
-~05701~^~318~^52.^0^^~1~^~PAK~^^^^^^^^^^~08/01/2012~
-~05701~^~319~^16.^0^^~1~^~PAK~^^^^^^^^^^~08/01/2012~
-~05701~^~320~^16.^0^^~1~^~PAK~^^^^^^^^^^~08/01/2012~
-~05701~^~321~^0.^0^^~4~^~PIK~^^^^^^^^^^~08/01/2012~
-~05701~^~322~^0.^0^^~4~^~PIK~^^^^^^^^^^~08/01/2012~
-~05701~^~324~^16.^0^^~1~^~PAK~^^^^^^^^^^~08/01/2012~
-~05701~^~334~^0.^0^^~4~^~PIK~^^^^^^^^^^~08/01/2012~
-~05701~^~337~^0.^0^^~4~^~PIK~^^^^^^^^^^~08/01/2012~
-~05701~^~338~^0.^0^^~4~^~PIK~^^^^^^^^^^~08/01/2012~
-~05701~^~417~^8.^0^^~4~^~PIK~^^^^^^^^^^~08/01/2012~
-~05701~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2013~
-~05701~^~432~^8.^0^^~4~^~PIK~^^^^^^^^^^~08/01/2012~
-~05701~^~435~^8.^0^^~4~^~NC~^^^^^^^^^^~05/01/2013~
-~05701~^~601~^110.^0^^~1~^~PAK~^^^^^^^^^^~08/01/2012~
-~05702~^~208~^147.^0^^~4~^~NC~^^^^^^^^^^~08/01/2012~
-~05702~^~262~^0.^0^^~4~^~PIK~^^^^^^^^^^~08/01/2012~
-~05702~^~263~^0.^0^^~4~^~PIK~^^^^^^^^^^~08/01/2012~
-~05702~^~268~^615.^0^^~4~^~NC~^^^^^^^^^^~08/01/2012~
-~05702~^~301~^14.^0^^~1~^~PAK~^^^^^^^^^^~08/01/2012~
-~05702~^~304~^22.^0^^~1~^~PAK~^^^^^^^^^^~08/01/2012~
-~05702~^~305~^214.^0^^~1~^~PAK~^^^^^^^^^^~08/01/2012~
-~05702~^~306~^220.^0^^~1~^~PAK~^^^^^^^^^^~08/01/2012~
-~05702~^~307~^195.^0^^~1~^~PAK~^^^^^^^^^^~08/01/2012~
-~05702~^~318~^64.^0^^~1~^~PAK~^^^^^^^^^^~08/01/2012~
-~05702~^~319~^19.^0^^~1~^~PAK~^^^^^^^^^^~08/01/2012~
-~05702~^~320~^19.^0^^~4~^~NC~^^^^^^^^^^~06/01/2014~
-~05702~^~321~^0.^0^^~4~^~PIK~^^^^^^^^^^~08/01/2012~
-~05702~^~322~^0.^0^^~4~^~PIK~^^^^^^^^^^~08/01/2012~
-~05702~^~324~^11.^0^^~1~^~PAK~^^^^^^^^^^~08/01/2012~
-~05702~^~334~^0.^0^^~4~^~PIK~^^^^^^^^^^~08/01/2012~
-~05702~^~337~^0.^0^^~4~^~PIK~^^^^^^^^^^~08/01/2012~
-~05702~^~338~^0.^0^^~4~^~PIK~^^^^^^^^^^~08/01/2012~
-~05702~^~417~^6.^0^^~4~^~PIK~^^^^^^^^^^~08/01/2012~
-~05702~^~432~^6.^0^^~4~^~PIK~^^^^^^^^^^~08/01/2012~
-~05702~^~601~^60.^0^^~1~^~PAK~^^^^^^^^^^~08/01/2012~
-~05703~^~208~^157.^0^^~4~^~PIK~^^^^^^^^^^~08/01/2012~
-~05703~^~262~^0.^0^^~4~^~PIK~^^^^^^^^^^~08/01/2012~
-~05703~^~263~^0.^0^^~4~^~PIK~^^^^^^^^^^~08/01/2012~
-~05703~^~268~^656.^0^^~4~^~PIK~^^^^^^^^^^~08/01/2012~
-~05703~^~301~^14.^0^^~1~^~PAK~^^^^^^^^^^~08/01/2012~
-~05703~^~304~^30.^0^^~1~^~PAK~^^^^^^^^^^~08/01/2012~
-~05703~^~305~^254.^0^^~1~^~PAK~^^^^^^^^^^~08/01/2012~
-~05703~^~306~^250.^0^^~1~^~PAK~^^^^^^^^^^~08/01/2012~
-~05703~^~307~^237.^0^^~1~^~PAK~^^^^^^^^^^~08/01/2012~
-~05703~^~318~^35.^0^^~1~^~PAK~^^^^^^^^^^~08/01/2012~
-~05703~^~319~^10.^0^^~1~^~PAK~^^^^^^^^^^~08/01/2012~
-~05703~^~320~^10.^0^^~1~^~PAK~^^^^^^^^^^~08/01/2012~
-~05703~^~321~^0.^0^^~4~^~PIK~^^^^^^^^^^~08/01/2012~
-~05703~^~322~^0.^0^^~4~^~PIK~^^^^^^^^^^~08/01/2012~
-~05703~^~324~^14.^0^^~1~^~PAK~^^^^^^^^^^~08/01/2012~
-~05703~^~334~^0.^0^^~4~^~PIK~^^^^^^^^^^~08/01/2012~
-~05703~^~337~^0.^0^^~4~^~PIK~^^^^^^^^^^~08/01/2012~
-~05703~^~338~^0.^0^^~4~^~PIK~^^^^^^^^^^~08/01/2012~
-~05703~^~417~^8.^0^^~4~^~PIK~^^^^^^^^^^~08/01/2012~
-~05703~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2013~
-~05703~^~432~^8.^0^^~4~^~PIK~^^^^^^^^^^~08/01/2012~
-~05703~^~435~^8.^0^^~4~^~NC~^^^^^^^^^^~05/01/2013~
-~05703~^~601~^76.^0^^~1~^~PAK~^^^^^^^^^^~08/01/2012~
-~05704~^~208~^106.^0^^~4~^~NC~^^^^^^^^^^~03/01/2016~
-~05704~^~262~^0.^0^^~4~^~PIK~^^^^^^^^^^~08/01/2012~
-~05704~^~263~^0.^0^^~4~^~PIK~^^^^^^^^^^~08/01/2012~
-~05704~^~268~^442.^0^^~4~^~NC~^^^^^^^^^^~03/01/2016~
-~05704~^~301~^14.^0^^~1~^~PAK~^^^^^^^^^^~08/01/2012~
-~05704~^~304~^24.^0^^~1~^~PAK~^^^^^^^^^^~08/01/2012~
-~05704~^~305~^223.^0^^~1~^~PAK~^^^^^^^^^^~08/01/2012~
-~05704~^~306~^237.^0^^~1~^~PAK~^^^^^^^^^^~08/01/2012~
-~05704~^~307~^194.^0^^~1~^~PAK~^^^^^^^^^^~08/01/2012~
-~05704~^~318~^27.^0^^~1~^~PAK~^^^^^^^^^^~08/01/2012~
-~05704~^~319~^8.^0^^~1~^~PAK~^^^^^^^^^^~08/01/2012~
-~05704~^~320~^8.^0^^~1~^~PAK~^^^^^^^^^^~08/01/2012~
-~05704~^~321~^0.^0^^~4~^~PIK~^^^^^^^^^^~08/01/2012~
-~05704~^~322~^0.^0^^~4~^~PIK~^^^^^^^^^^~08/01/2012~
-~05704~^~324~^7.^0^^~1~^~PAK~^^^^^^^^^^~08/01/2012~
-~05704~^~334~^0.^0^^~4~^~PIK~^^^^^^^^^^~08/01/2012~
-~05704~^~337~^0.^0^^~4~^~PIK~^^^^^^^^^^~08/01/2012~
-~05704~^~338~^0.^0^^~4~^~PIK~^^^^^^^^^^~08/01/2012~
-~05704~^~417~^7.^0^^~4~^~PIK~^^^^^^^^^^~08/01/2012~
-~05704~^~432~^7.^0^^~4~^~PIK~^^^^^^^^^^~08/01/2012~
-~05704~^~601~^61.^0^^~1~^~PAK~^^^^^^^^^^~08/01/2012~
-~05705~^~208~^140.^0^^~4~^~NC~^^^^^^^^^^~08/01/2012~
-~05705~^~262~^0.^0^^~4~^~PIK~^^^^^^^^^^~08/01/2012~
-~05705~^~263~^0.^0^^~4~^~PIK~^^^^^^^^^^~08/01/2012~
-~05705~^~268~^585.^0^^~4~^~NC~^^^^^^^^^^~08/01/2012~
-~05705~^~301~^14.^0^^~1~^~PAK~^^^^^^^^^^~08/01/2012~
-~05705~^~304~^27.^0^^~1~^~PAK~^^^^^^^^^^~08/01/2012~
-~05705~^~305~^235.^0^^~1~^~PAK~^^^^^^^^^^~08/01/2012~
-~05705~^~306~^239.^0^^~1~^~PAK~^^^^^^^^^^~08/01/2012~
-~05705~^~307~^223.^0^^~1~^~PAK~^^^^^^^^^^~08/01/2012~
-~05705~^~318~^14.^0^^~1~^~PAK~^^^^^^^^^^~08/01/2012~
-~05705~^~319~^4.^0^^~1~^~PAK~^^^^^^^^^^~08/01/2012~
-~05705~^~320~^4.^0^^~1~^~PAK~^^^^^^^^^^~08/01/2012~
-~05705~^~321~^0.^0^^~4~^~PIK~^^^^^^^^^^~08/01/2012~
-~05705~^~322~^0.^0^^~4~^~PIK~^^^^^^^^^^~08/01/2012~
-~05705~^~324~^10.^0^^~1~^~PAK~^^^^^^^^^^~08/01/2012~
-~05705~^~334~^0.^0^^~4~^~PIK~^^^^^^^^^^~08/01/2012~
-~05705~^~337~^0.^0^^~4~^~PIK~^^^^^^^^^^~08/01/2012~
-~05705~^~338~^0.^0^^~4~^~PIK~^^^^^^^^^^~08/01/2012~
-~05705~^~417~^8.^0^^~4~^~PIK~^^^^^^^^^^~08/01/2012~
-~05705~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2013~
-~05705~^~432~^8.^0^^~4~^~PIK~^^^^^^^^^^~08/01/2012~
-~05705~^~435~^8.^0^^~4~^~NC~^^^^^^^^^^~05/01/2013~
-~05705~^~601~^84.^0^^~1~^~PAK~^^^^^^^^^^~08/01/2012~
-~05706~^~208~^159.^0^^~4~^~NC~^^^^^^^^^^~03/01/2016~
-~05706~^~262~^0.^0^^~4~^~PIK~^^^^^^^^^^~08/01/2012~
-~05706~^~263~^0.^0^^~4~^~PIK~^^^^^^^^^^~08/01/2012~
-~05706~^~268~^664.^0^^~4~^~NC~^^^^^^^^^^~03/01/2016~
-~05706~^~301~^14.^0^^~1~^~PAK~^^^^^^^^^^~08/01/2012~
-~05706~^~304~^21.^0^^~1~^~PAK~^^^^^^^^^^~08/01/2012~
-~05706~^~305~^195.^0^^~1~^~PAK~^^^^^^^^^^~08/01/2012~
-~05706~^~306~^211.^0^^~1~^~PAK~^^^^^^^^^^~08/01/2012~
-~05706~^~307~^180.^0^^~1~^~PAK~^^^^^^^^^^~08/01/2012~
-~05706~^~318~^78.^0^^~1~^~PAK~^^^^^^^^^^~08/01/2012~
-~05706~^~319~^23.^0^^~1~^~PAK~^^^^^^^^^^~08/01/2012~
-~05706~^~320~^23.^0^^~1~^~PAK~^^^^^^^^^^~08/01/2012~
-~05706~^~321~^0.^0^^~4~^~PIK~^^^^^^^^^^~08/01/2012~
-~05706~^~322~^0.^0^^~4~^~PIK~^^^^^^^^^^~08/01/2012~
-~05706~^~324~^15.^0^^~1~^~PAK~^^^^^^^^^^~08/01/2012~
-~05706~^~334~^0.^0^^~4~^~PIK~^^^^^^^^^^~08/01/2012~
-~05706~^~337~^0.^0^^~4~^~PIK~^^^^^^^^^^~08/01/2012~
-~05706~^~338~^0.^0^^~4~^~PIK~^^^^^^^^^^~08/01/2012~
-~05706~^~417~^6.^0^^~4~^~PIK~^^^^^^^^^^~08/01/2012~
-~05706~^~432~^6.^0^^~4~^~PIK~^^^^^^^^^^~08/01/2012~
-~05706~^~601~^70.^0^^~1~^~PAK~^^^^^^^^^^~08/01/2012~
-~05707~^~208~^176.^0^^~4~^~NC~^^^^^^^^^^~08/01/2012~
-~05707~^~262~^0.^0^^~4~^~PIK~^^^^^^^^^^~08/01/2012~
-~05707~^~263~^0.^0^^~4~^~PIK~^^^^^^^^^^~08/01/2012~
-~05707~^~268~^738.^0^^~4~^~NC~^^^^^^^^^^~08/01/2012~
-~05707~^~301~^15.^0^^~1~^~PAK~^^^^^^^^^^~08/01/2012~
-~05707~^~304~^27.^0^^~1~^~PAK~^^^^^^^^^^~08/01/2012~
-~05707~^~305~^236.^0^^~1~^~PAK~^^^^^^^^^^~08/01/2012~
-~05707~^~306~^242.^0^^~1~^~PAK~^^^^^^^^^^~08/01/2012~
-~05707~^~307~^224.^0^^~1~^~PAK~^^^^^^^^^^~08/01/2012~
-~05707~^~318~^43.^0^^~1~^~PAK~^^^^^^^^^^~08/01/2012~
-~05707~^~319~^13.^0^^~1~^~PAK~^^^^^^^^^^~08/01/2012~
-~05707~^~320~^13.^0^^~1~^~PAK~^^^^^^^^^^~08/01/2012~
-~05707~^~321~^0.^0^^~4~^~PIK~^^^^^^^^^^~08/01/2012~
-~05707~^~322~^0.^0^^~4~^~PIK~^^^^^^^^^^~08/01/2012~
-~05707~^~324~^15.^0^^~1~^~PAK~^^^^^^^^^^~08/01/2012~
-~05707~^~334~^0.^0^^~4~^~PIK~^^^^^^^^^^~08/01/2012~
-~05707~^~337~^0.^0^^~4~^~PIK~^^^^^^^^^^~08/01/2012~
-~05707~^~338~^0.^0^^~4~^~PIK~^^^^^^^^^^~08/01/2012~
-~05707~^~417~^8.^0^^~4~^~PIK~^^^^^^^^^^~08/01/2012~
-~05707~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2013~
-~05707~^~432~^8.^0^^~4~^~PIK~^^^^^^^^^^~08/01/2012~
-~05707~^~435~^8.^0^^~4~^~NC~^^^^^^^^^^~05/01/2013~
-~05707~^~601~^91.^0^^~1~^~PAK~^^^^^^^^^^~08/01/2012~
-~05708~^~208~^111.^0^^~4~^~NC~^^^^^^^^^^~01/01/2013~
-~05708~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2013~
-~05708~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2013~
-~05708~^~268~^463.^0^^~4~^~NC~^^^^^^^^^^~01/01/2013~
-~05708~^~301~^8.^3^2.^~1~^~A~^^^1^5.^13.^2^-2.^18.^~2, 3~^~01/01/2013~
-~05708~^~304~^25.^3^0.^~1~^~A~^^^1^23.^26.^2^21.^27.^~2, 3~^~01/01/2013~
-~05708~^~305~^181.^3^2.^~1~^~A~^^^1^176.^185.^2^170.^192.^~2, 3~^~01/01/2013~
-~05708~^~306~^237.^3^10.^~1~^~A~^^^1^219.^256.^2^190.^283.^~2, 3~^~01/01/2013~
-~05708~^~307~^124.^3^30.^~1~^~A~^^^1^65.^164.^2^-4.^253.^~2, 3~^~01/01/2013~
-~05708~^~318~^17.^0^^~1~^~AS~^^^^^^^^^^~01/01/2013~
-~05708~^~319~^5.^2^^~1~^~A~^^^1^5.^5.^1^^^^~01/01/2013~
-~05708~^~320~^5.^0^^~1~^~AS~^^^^^^^^^^~01/01/2013~
-~05708~^~321~^0.^2^^~1~^~A~^^^1^0.^0.^^^^~1~^~01/01/2013~
-~05708~^~322~^0.^2^^~1~^~A~^^^1^0.^0.^^^^~1~^~01/01/2013~
-~05708~^~324~^8.^1^^~1~^~A~^^^^^^^^^^~01/01/2013~
-~05708~^~334~^0.^2^^~1~^~A~^^^1^0.^0.^^^^~1~^~01/01/2013~
-~05708~^~337~^0.^2^^~1~^~A~^^^1^0.^0.^^^^~1~^~01/01/2013~
-~05708~^~338~^4.^2^^~1~^~A~^^^1^2.^6.^1^^^^~01/01/2013~
-~05708~^~417~^7.^0^^~4~^~BFPN~^^^^^^^^^^~01/01/2013~
-~05708~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2013~
-~05708~^~432~^7.^0^^~4~^~BFPN~^^^^^^^^^^~01/01/2013~
-~05708~^~435~^7.^0^^~4~^~NC~^^^^^^^^^^~01/01/2013~
-~05708~^~601~^60.^2^^~1~^~A~^^^1^53.^67.^1^^^^~01/01/2013~
-~05709~^~208~^130.^0^^~4~^~NC~^^^^^^^^^^~01/01/2013~
-~05709~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2013~
-~05709~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2013~
-~05709~^~268~^546.^0^^~4~^~NC~^^^^^^^^^^~01/01/2013~
-~05709~^~301~^15.^3^4.^~1~^~A~^^^1^10.^24.^2^-4.^33.^~2, 3~^~01/01/2013~
-~05709~^~304~^27.^3^0.^~1~^~A~^^^1^26.^27.^2^25.^27.^~2, 3~^~01/01/2013~
-~05709~^~305~^219.^3^13.^~1~^~A~^^^1^193.^240.^2^159.^278.^~2, 3~^~01/01/2013~
-~05709~^~306~^264.^3^7.^~1~^~A~^^^1^257.^279.^2^232.^295.^~2, 3~^~01/01/2013~
-~05709~^~307~^184.^3^39.^~1~^~A~^^^1^105.^229.^2^13.^354.^~2, 3~^~01/01/2013~
-~05709~^~318~^8.^0^^~1~^~AS~^^^^^^^^^^~01/01/2013~
-~05709~^~319~^3.^2^^~1~^~A~^^^1^2.^3.^1^^^^~01/01/2013~
-~05709~^~320~^3.^0^^~1~^~AS~^^^^^^^^^^~01/01/2013~
-~05709~^~321~^0.^2^^~1~^~A~^^^1^0.^0.^^^^~1~^~01/01/2013~
-~05709~^~322~^0.^2^^~1~^~A~^^^1^0.^0.^^^^~1~^~01/01/2013~
-~05709~^~324~^6.^0^^~4~^~BFFN~^^^^^^^^^^~01/01/2013~
-~05709~^~334~^0.^2^^~1~^~A~^^^1^0.^0.^^^^~1~^~01/01/2013~
-~05709~^~337~^0.^2^^~1~^~A~^^^1^0.^0.^^^^~1~^~01/01/2013~
-~05709~^~338~^5.^2^^~1~^~A~^^^1^3.^6.^1^^^^~01/01/2013~
-~05709~^~417~^9.^0^^~4~^~BFPN~^^^^^^^^^^~01/01/2013~
-~05709~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2013~
-~05709~^~432~^9.^0^^~4~^~BFPN~^^^^^^^^^^~01/01/2013~
-~05709~^~435~^9.^0^^~4~^~NC~^^^^^^^^^^~01/01/2013~
-~05709~^~601~^74.^2^^~1~^~A~^^^1^70.^78.^1^^^^~01/01/2013~
-~05710~^~208~^114.^0^^~4~^~NC~^^^^^^^^^^~01/01/2013~
-~05710~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2013~
-~05710~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2013~
-~05710~^~268~^478.^0^^~4~^~NC~^^^^^^^^^^~01/01/2013~
-~05710~^~301~^9.^3^1.^~1~^~A~^^^1^6.^11.^2^1.^15.^~2, 3~^~01/01/2013~
-~05710~^~304~^27.^3^0.^~1~^~A~^^^1^25.^28.^2^23.^29.^~2, 3~^~01/01/2013~
-~05710~^~305~^185.^3^5.^~1~^~A~^^^1^175.^194.^2^161.^209.^~2, 3~^~01/01/2013~
-~05710~^~306~^267.^3^7.^~1~^~A~^^^1^255.^279.^2^236.^297.^~2, 3~^~01/01/2013~
-~05710~^~307~^74.^3^6.^~1~^~A~^^^1^62.^83.^2^47.^99.^~2, 3~^~01/01/2013~
-~05710~^~318~^16.^0^^~1~^~AS~^^^^^^^^^^~01/01/2013~
-~05710~^~319~^5.^2^^~1~^~A~^^^1^4.^5.^1^^^^~01/01/2013~
-~05710~^~320~^5.^0^^~1~^~AS~^^^^^^^^^^~01/01/2013~
-~05710~^~321~^0.^2^^~1~^~A~^^^1^0.^0.^^^^~1~^~01/01/2013~
-~05710~^~322~^0.^2^^~1~^~A~^^^1^0.^0.^^^^~1~^~01/01/2013~
-~05710~^~324~^7.^1^^~1~^~A~^^^^^^^^^^~01/01/2013~
-~05710~^~334~^0.^2^^~1~^~A~^^^1^0.^0.^^^^~1~^~01/01/2013~
-~05710~^~337~^0.^2^^~1~^~A~^^^1^0.^0.^^^^~1~^~01/01/2013~
-~05710~^~338~^8.^2^^~1~^~A~^^^1^8.^8.^1^^^^~01/01/2013~
-~05710~^~417~^7.^0^^~4~^~BFPN~^^^^^^^^^^~01/01/2013~
-~05710~^~432~^7.^0^^~4~^~BFPN~^^^^^^^^^^~01/01/2013~
-~05710~^~601~^53.^2^^~1~^~A~^^^1^53.^53.^1^^^^~01/01/2013~
-~05711~^~208~^136.^0^^~4~^~NC~^^^^^^^^^^~01/01/2013~
-~05711~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2013~
-~05711~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2013~
-~05711~^~268~^568.^0^^~4~^~NC~^^^^^^^^^^~01/01/2013~
-~05711~^~301~^14.^3^2.^~1~^~A~^^^1^10.^18.^2^3.^24.^~2, 3~^~01/01/2013~
-~05711~^~304~^28.^3^1.^~1~^~A~^^^1^26.^30.^2^23.^33.^~2, 3~^~01/01/2013~
-~05711~^~305~^253.^3^43.^~1~^~A~^^^1^204.^341.^2^63.^442.^~2, 3~^~01/01/2013~
-~05711~^~306~^297.^3^16.^~1~^~A~^^^1^265.^315.^2^227.^365.^~2, 3~^~01/01/2013~
-~05711~^~307~^114.^3^1.^~1~^~A~^^^1^111.^117.^2^106.^120.^~2, 3~^~01/01/2013~
-~05711~^~318~^9.^0^^~1~^~AS~^^^^^^^^^^~01/01/2013~
-~05711~^~319~^3.^2^^~1~^~A~^^^1^2.^3.^1^^^^~01/01/2013~
-~05711~^~320~^3.^2^^~1~^~AS~^^^^^^^^^^~01/01/2013~
-~05711~^~321~^0.^2^^~1~^~A~^^^1^0.^0.^^^^~1~^~01/01/2013~
-~05711~^~322~^0.^2^^~1~^~A~^^^1^0.^0.^^^^~1~^~01/01/2013~
-~05711~^~324~^10.^0^^~4~^~BFFN~^^^^^^^^^^~01/01/2013~
-~05711~^~334~^0.^2^^~1~^~A~^^^1^0.^0.^^^^~1~^~01/01/2013~
-~05711~^~337~^0.^2^^~1~^~A~^^^1^0.^0.^^^^~1~^~01/01/2013~
-~05711~^~338~^7.^2^^~1~^~A~^^^1^6.^8.^1^^^^~01/01/2013~
-~05711~^~417~^9.^0^^~4~^~BFPN~^^^^^^^^^^~01/01/2013~
-~05711~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2013~
-~05711~^~432~^9.^0^^~4~^~BFPN~^^^^^^^^^^~01/01/2013~
-~05711~^~435~^9.^0^^~4~^~NC~^^^^^^^^^^~01/01/2013~
-~05711~^~601~^70.^2^^~1~^~A~^^^1^65.^75.^1^^^^~01/01/2013~
-~05712~^~208~^112.^0^^~4~^~NC~^^^^^^^^^^~01/01/2013~
-~05712~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2013~
-~05712~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2013~
-~05712~^~268~^470.^0^^~4~^~NC~^^^^^^^^^^~01/01/2013~
-~05712~^~301~^6.^4^0.^~1~^~A~^^^1^5.^7.^3^3.^7.^~2, 3~^~01/01/2013~
-~05712~^~304~^19.^4^0.^~1~^~A~^^^1^18.^20.^3^18.^20.^~2, 3~^~01/01/2013~
-~05712~^~305~^147.^4^2.^~1~^~A~^^^1^142.^155.^3^138.^156.^~2, 3~^~01/01/2013~
-~05712~^~306~^222.^4^18.^~1~^~A~^^^1^187.^276.^3^162.^282.^~2, 3~^~01/01/2013~
-~05712~^~307~^69.^4^4.^~1~^~A~^^^1^59.^80.^3^55.^82.^~2, 3~^~01/01/2013~
-~05712~^~318~^17.^0^^~4~^~BFFN~^~05710~^^^^^^^^^~01/01/2013~
-~05712~^~319~^5.^0^^~4~^~BFFN~^~05710~^^^^^^^^^~01/01/2013~
-~05712~^~320~^5.^0^^~4~^~BFFN~^~05710~^^^^^^^^^~01/01/2013~
-~05712~^~321~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2013~
-~05712~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2013~
-~05712~^~324~^7.^0^^~4~^~BFFN~^~05710~^^^^^^^^^~01/01/2013~
-~05712~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2013~
-~05712~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2013~
-~05712~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2013~
-~05712~^~417~^7.^0^^~4~^~BFPN~^^^^^^^^^^~01/01/2013~
-~05712~^~432~^7.^0^^~4~^~BFPN~^^^^^^^^^^~01/01/2013~
-~05712~^~601~^66.^3^4.^~1~^~A~^^^1^62.^75.^2^48.^84.^~2, 3~^~01/01/2013~
-~05713~^~208~^170.^0^^~4~^~NC~^^^^^^^^^^~01/01/2013~
-~05713~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2013~
-~05713~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2013~
-~05713~^~268~^713.^0^^~4~^~NC~^^^^^^^^^^~01/01/2013~
-~05713~^~301~^12.^4^1.^~1~^~A~^^^1^7.^14.^3^6.^16.^~2, 3~^~01/01/2013~
-~05713~^~304~^21.^4^0.^~1~^~A~^^^1^20.^22.^3^19.^22.^~2, 3~^~01/01/2013~
-~05713~^~305~^180.^4^6.^~1~^~A~^^^1^161.^191.^3^159.^199.^~2, 3~^~01/01/2013~
-~05713~^~306~^207.^4^9.^~1~^~A~^^^1^186.^223.^3^177.^236.^~2, 3~^~01/01/2013~
-~05713~^~307~^103.^4^1.^~1~^~A~^^^1^99.^108.^3^97.^108.^~2, 3~^~01/01/2013~
-~05713~^~318~^25.^0^^~4~^~BFFN~^~05711~^^^^^^^^^~01/01/2013~
-~05713~^~319~^8.^0^^~4~^~BFFN~^~05711~^^^^^^^^^~01/01/2013~
-~05713~^~320~^8.^0^^~4~^~BFFN~^~05711~^^^^^^^^^~01/01/2013~
-~05713~^~321~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2013~
-~05713~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2013~
-~05713~^~324~^28.^0^^~4~^~BFFN~^^^^^^^^^^~01/01/2013~
-~05713~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2013~
-~05713~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2013~
-~05713~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2013~
-~05713~^~417~^10.^0^^~4~^~BFPN~^^^^^^^^^^~01/01/2013~
-~05713~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2013~
-~05713~^~432~^10.^0^^~4~^~BFPN~^^^^^^^^^^~01/01/2013~
-~05713~^~435~^10.^0^^~4~^~NC~^^^^^^^^^^~05/01/2013~
-~05713~^~601~^97.^3^4.^~1~^~A~^^^1^91.^105.^2^78.^114.^~2, 3~^~01/01/2013~
-~05714~^~208~^380.^0^^~4~^~NC~^^^^^^^^^^~01/01/2013~
-~05714~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2013~
-~05714~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2013~
-~05714~^~268~^1589.^0^^~4~^~NC~^^^^^^^^^^~01/01/2013~
-~05714~^~301~^4.^2^^~1~^~A~^^^1^4.^4.^1^^^^~01/01/2013~
-~05714~^~304~^7.^2^^~1~^~A~^^^1^6.^8.^1^^^^~01/01/2013~
-~05714~^~305~^80.^2^^~1~^~A~^^^1^74.^87.^1^^^^~01/01/2013~
-~05714~^~306~^93.^2^^~1~^~A~^^^1^88.^97.^1^^^^~01/01/2013~
-~05714~^~307~^78.^2^^~1~^~A~^^^1^74.^81.^1^^^^~01/01/2013~
-~05714~^~318~^263.^0^^~1~^~AS~^^^^^^^^^^~01/01/2013~
-~05714~^~319~^79.^2^^~1~^~A~^^^1^62.^95.^1^^^^~01/01/2013~
-~05714~^~320~^79.^0^^~1~^~AS~^^^^^^^^^^~01/01/2013~
-~05714~^~321~^0.^2^^~1~^~A~^^^1^0.^0.^^^^~1~^~01/01/2013~
-~05714~^~322~^0.^2^^~1~^~A~^^^1^0.^0.^^^^~1~^~01/01/2013~
-~05714~^~324~^30.^2^^~1~^~A~^^^1^29.^31.^1^^^^~01/01/2013~
-~05714~^~334~^0.^2^^~1~^~A~^^^1^0.^0.^1^^^~1~^~01/01/2013~
-~05714~^~337~^0.^2^^~1~^~A~^^^1^0.^0.^^^^~1~^~01/01/2013~
-~05714~^~338~^9.^2^^~1~^~A~^^^1^9.^9.^1^^^^~01/01/2013~
-~05714~^~417~^5.^0^^~4~^~BFPN~^^^^^^^^^^~01/01/2013~
-~05714~^~432~^5.^0^^~4~^~BFPN~^^^^^^^^^^~01/01/2013~
-~05714~^~601~^111.^2^^~1~^~A~^^^1^109.^112.^1^^^^~01/01/2013~
-~05715~^~208~^414.^0^^~4~^~NC~^^^^^^^^^^~01/01/2013~
-~05715~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2013~
-~05715~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2013~
-~05715~^~268~^1730.^0^^~4~^~NC~^^^^^^^^^^~01/01/2013~
-~05715~^~301~^6.^2^^~1~^~A~^^^1^5.^7.^1^^^^~01/01/2013~
-~05715~^~304~^24.^2^^~1~^~A~^^^1^21.^27.^1^^^^~01/01/2013~
-~05715~^~305~^230.^2^^~1~^~A~^^^1^193.^267.^1^^^^~01/01/2013~
-~05715~^~306~^225.^2^^~1~^~A~^^^1^225.^225.^^^^^~01/01/2013~
-~05715~^~307~^106.^2^^~1~^~A~^^^1^94.^117.^1^^^^~01/01/2013~
-~05715~^~318~^198.^0^^~1~^~AS~^^^^^^^^^^~01/01/2013~
-~05715~^~319~^59.^2^^~1~^~A~^^^1^53.^65.^1^^^^~01/01/2013~
-~05715~^~320~^59.^0^^~1~^~AS~^^^^^^^^^^~01/01/2013~
-~05715~^~321~^0.^2^^~1~^~A~^^^1^0.^0.^^^^~1~^~01/01/2013~
-~05715~^~322~^0.^2^^~1~^~A~^^^1^0.^0.^^^^~1~^~01/01/2013~
-~05715~^~324~^31.^2^^~1~^~A~^^^1^26.^35.^1^^^^~01/01/2013~
-~05715~^~334~^0.^2^^~1~^~A~^^^1^0.^0.^1^^^^~01/01/2013~
-~05715~^~337~^0.^2^^~1~^~A~^^^1^0.^0.^^^^~1~^~01/01/2013~
-~05715~^~338~^7.^2^^~1~^~A~^^^1^7.^7.^1^^^^~01/01/2013~
-~05715~^~417~^8.^0^^~4~^~BFPN~^^^^^^^^^^~01/01/2013~
-~05715~^~432~^8.^0^^~4~^~BFPN~^^^^^^^^^^~01/01/2013~
-~05715~^~601~^139.^2^^~1~^~A~^^^1^121.^156.^1^^^^~01/01/2013~
-~05716~^~208~^118.^0^^~4~^~NC~^^^^^^^^^^~01/01/2013~
-~05716~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2013~
-~05716~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2013~
-~05716~^~268~^493.^0^^~4~^~NC~^^^^^^^^^^~01/01/2013~
-~05716~^~301~^10.^6^1.^~1~^~A~^^^1^7.^19.^5^4.^14.^~2, 3~^~01/01/2013~
-~05716~^~304~^22.^6^0.^~1~^~A~^^^1^20.^24.^5^20.^23.^~2, 3~^~01/01/2013~
-~05716~^~305~^158.^6^6.^~1~^~A~^^^1^126.^169.^5^140.^175.^~2, 3~^~01/01/2013~
-~05716~^~306~^220.^6^12.^~1~^~A~^^^1^188.^267.^5^186.^252.^~2, 3~^~01/01/2013~
-~05716~^~307~^87.^6^3.^~1~^~A~^^^1^77.^104.^5^76.^96.^~2, 3~^~01/01/2013~
-~05716~^~318~^68.^0^^~4~^~BFFN~^^^^^^^^^^~01/01/2013~
-~05716~^~319~^20.^0^^~4~^~BFFN~^^^^^^^^^^~01/01/2013~
-~05716~^~320~^20.^0^^~4~^~BFFN~^^^^^^^^^^~01/01/2013~
-~05716~^~321~^0.^1^^~1~^~A~^^^^^^^^^~1~^~01/01/2013~
-~05716~^~322~^0.^1^^~1~^~A~^^^^^^^^^~1~^~01/01/2013~
-~05716~^~324~^17.^2^^~1~^~A~^^^1^13.^22.^1^^^^~01/01/2013~
-~05716~^~334~^0.^1^^~1~^~A~^^^^^^^^^~1~^~01/01/2013~
-~05716~^~337~^0.^1^^~1~^~A~^^^^^^^^^~1~^~01/01/2013~
-~05716~^~338~^4.^1^^~1~^~A~^^^^^^^^^^~01/01/2013~
-~05716~^~417~^6.^0^^~4~^~BFPN~^^^^^^^^^^~01/01/2013~
-~05716~^~432~^6.^0^^~4~^~BFPN~^^^^^^^^^^~01/01/2013~
-~05716~^~601~^79.^3^1.^~1~^~A~^^^1^77.^82.^2^72.^85.^~2, 3~^~01/01/2013~
-~05717~^~208~^116.^0^^~4~^~NC~^^^^^^^^^^~01/01/2013~
-~05717~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2013~
-~05717~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2013~
-~05717~^~268~^484.^0^^~4~^~NC~^^^^^^^^^^~01/01/2013~
-~05717~^~301~^4.^5^0.^~1~^~A~^^^1^2.^6.^4^1.^5.^~2, 3~^~01/01/2013~
-~05717~^~304~^22.^5^0.^~1~^~A~^^^1^20.^24.^4^20.^23.^~2, 3~^~01/01/2013~
-~05717~^~305~^177.^5^6.^~1~^~A~^^^1^154.^195.^4^158.^195.^~2, 3~^~01/01/2013~
-~05717~^~306~^269.^5^11.^~1~^~A~^^^1^242.^296.^4^237.^299.^~2, 3~^~01/01/2013~
-~05717~^~307~^75.^5^6.^~1~^~A~^^^1^53.^91.^4^56.^93.^~2, 3~^~01/01/2013~
-~05717~^~318~^63.^0^^~4~^~BFFN~^^^^^^^^^^~01/01/2013~
-~05717~^~319~^19.^0^^~4~^~BFFN~^^^^^^^^^^~01/01/2013~
-~05717~^~320~^19.^0^^~4~^~BFFN~^^^^^^^^^^~01/01/2013~
-~05717~^~321~^0.^1^^~1~^~A~^^^^^^^^^~1~^~01/01/2013~
-~05717~^~322~^0.^1^^~1~^~A~^^^^^^^^^~1~^~01/01/2013~
-~05717~^~324~^20.^0^^~4~^~BFFN~^^^^^^^^^^~01/01/2013~
-~05717~^~334~^0.^1^^~1~^~A~^^^^^^^^^~1~^~01/01/2013~
-~05717~^~337~^0.^1^^~1~^~A~^^^^^^^^^~1~^~01/01/2013~
-~05717~^~338~^6.^1^^~1~^~A~^^^^^^^^^^~01/01/2013~
-~05717~^~417~^7.^0^^~4~^~BFPN~^^^^^^^^^^~01/01/2013~
-~05717~^~432~^7.^0^^~4~^~BFPN~^^^^^^^^^^~01/01/2013~
-~05717~^~601~^78.^3^4.^~1~^~A~^^^1^71.^85.^2^60.^95.^~2, 3~^~01/01/2013~
-~05718~^~208~^127.^0^^~4~^~NC~^^^^^^^^^^~01/01/2013~
-~05718~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2013~
-~05718~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2013~
-~05718~^~268~^530.^0^^~4~^~NC~^^^^^^^^^^~01/01/2013~
-~05718~^~301~^13.^6^0.^~1~^~A~^^^^12.^14.^^^^^~01/01/2013~
-~05718~^~304~^30.^6^1.^~1~^~A~^^^^27.^36.^^^^^~01/01/2013~
-~05718~^~305~^255.^6^7.^~1~^~A~^^^^223.^269.^^^^^~01/01/2013~
-~05718~^~306~^249.^10^3.^~1~^~A~^^^^236.^265.^^^^^~01/01/2013~
-~05718~^~307~^238.^6^24.^~1~^~A~^^^^151.^295.^^^^^~01/01/2013~
-~05718~^~318~^11.^0^^~1~^~AS~^^^^^^^^^^~01/01/2013~
-~05718~^~319~^3.^1^^~1~^~A~^^^^^^^^^^~01/01/2013~
-~05718~^~320~^3.^0^^~1~^~AS~^^^^^^^^^^~01/01/2013~
-~05718~^~321~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2013~
-~05718~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2013~
-~05718~^~324~^10.^1^^~1~^~A~^^^^^^^^^~1~^~01/01/2013~
-~05718~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2013~
-~05718~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2013~
-~05718~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2013~
-~05718~^~417~^7.^0^^~4~^~BFPN~^^^^^^^^^^~01/01/2013~
-~05718~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2013~
-~05718~^~432~^7.^0^^~4~^~BFPN~^^^^^^^^^^~01/01/2013~
-~05718~^~435~^7.^0^^~4~^~NC~^^^^^^^^^^~04/01/2013~
-~05718~^~601~^69.^11^2.^~1~^~A~^^^^55.^82.^^^^^~01/01/2013~
-~05719~^~208~^115.^0^^~4~^~NC~^^^^^^^^^^~07/01/2015~
-~05719~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2013~
-~05719~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2013~
-~05719~^~268~^480.^0^^~4~^~NC~^^^^^^^^^^~07/01/2015~
-~05719~^~301~^15.^6^0.^~1~^~A~^^^^14.^15.^^^^^~01/01/2013~
-~05719~^~304~^21.^6^1.^~1~^~A~^^^^16.^26.^^^^^~01/01/2013~
-~05719~^~305~^191.^6^3.^~1~^~A~^^^^180.^205.^^^^^~01/01/2013~
-~05719~^~306~^226.^10^5.^~1~^~A~^^^^185.^243.^^^^^~01/01/2013~
-~05719~^~307~^167.^6^20.^~1~^~A~^^^^136.^268.^^^^^~01/01/2013~
-~05719~^~318~^43.^0^^~1~^~AS~^^^^^^^^^^~05/01/2013~
-~05719~^~319~^13.^1^^~1~^~A~^^^^^^^^^^~01/01/2013~
-~05719~^~320~^13.^0^^~1~^~AS~^^^^^^^^^^~01/01/2013~
-~05719~^~321~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2013~
-~05719~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2013~
-~05719~^~324~^13.^1^^~1~^~A~^^^^^^^^^~1~^~01/01/2013~
-~05719~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2013~
-~05719~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2013~
-~05719~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2013~
-~05719~^~417~^6.^0^^~4~^~BFPN~^^^^^^^^^^~01/01/2013~
-~05719~^~432~^6.^0^^~4~^~BFPN~^^^^^^^^^^~01/01/2013~
-~05719~^~601~^79.^11^2.^~1~^~A~^^^^69.^100.^^^^^~01/01/2013~
-~05720~^~208~^127.^0^^~4~^~NC~^^^^^^^^^^~01/01/2013~
-~05720~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2013~
-~05720~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2013~
-~05720~^~268~^530.^0^^~4~^~NC~^^^^^^^^^^~01/01/2013~
-~05720~^~301~^13.^6^0.^~1~^~A~^^^^12.^14.^^^^^~01/01/2013~
-~05720~^~304~^30.^6^1.^~1~^~A~^^^^27.^36.^^^^^~01/01/2013~
-~05720~^~305~^255.^6^7.^~1~^~A~^^^^223.^269.^^^^^~01/01/2013~
-~05720~^~306~^249.^10^3.^~1~^~A~^^^^236.^265.^^^^^~01/01/2013~
-~05720~^~307~^238.^6^24.^~1~^~A~^^^^151.^295.^^^^^~01/01/2013~
-~05720~^~318~^11.^0^^~1~^~AS~^^^^^^^^^^~01/01/2013~
-~05720~^~319~^3.^1^^~1~^~A~^^^^^^^^^^~01/01/2013~
-~05720~^~320~^3.^0^^~1~^~AS~^^^^^^^^^^~01/01/2013~
-~05720~^~321~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2013~
-~05720~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2013~
-~05720~^~324~^10.^1^^~1~^~A~^^^^^^^^^~1~^~01/01/2013~
-~05720~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2013~
-~05720~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2013~
-~05720~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2013~
-~05720~^~417~^6.^0^^~4~^~BFPN~^^^^^^^^^^~01/01/2013~
-~05720~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2013~
-~05720~^~432~^6.^0^^~4~^~BFPN~^^^^^^^^^^~01/01/2013~
-~05720~^~435~^6.^0^^~4~^~NC~^^^^^^^^^^~04/01/2013~
-~05720~^~601~^69.^11^2.^~1~^~A~^^^^55.^82.^^^^^~01/01/2013~
-~05721~^~208~^102.^0^^~4~^~NC~^^^^^^^^^^~07/01/2015~
-~05721~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2013~
-~05721~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2013~
-~05721~^~268~^425.^0^^~4~^~NC~^^^^^^^^^^~07/01/2015~
-~05721~^~301~^14.^6^0.^~1~^~A~^^^^12.^16.^^^^^~01/01/2013~
-~05721~^~304~^25.^6^0.^~1~^~A~^^^^22.^29.^^^^^~01/01/2013~
-~05721~^~305~^236.^6^6.^~1~^~A~^^^^217.^256.^^^^^~01/01/2013~
-~05721~^~306~^242.^10^5.^~1~^~A~^^^^215.^262.^^^^^~01/01/2013~
-~05721~^~307~^206.^6^25.^~1~^~A~^^^^101.^277.^^^^^~01/01/2013~
-~05721~^~318~^20.^0^^~1~^~AS~^^^^^^^^^^~01/01/2013~
-~05721~^~319~^6.^1^^~1~^~A~^^^^^^^^^^~01/01/2013~
-~05721~^~320~^6.^0^^~1~^~AS~^^^^^^^^^^~01/01/2013~
-~05721~^~321~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2013~
-~05721~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2013~
-~05721~^~324~^5.^1^^~1~^~A~^^^^^^^^^~1~^~01/01/2013~
-~05721~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2013~
-~05721~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2013~
-~05721~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2013~
-~05721~^~417~^7.^0^^~4~^~BFPN~^^^^^^^^^^~01/01/2013~
-~05721~^~432~^7.^0^^~4~^~BFPN~^^^^^^^^^^~01/01/2013~
-~05721~^~601~^54.^11^1.^~1~^~A~^^^^43.^60.^^^^^~01/01/2013~
-~05722~^~208~^159.^0^^~4~^~NC~^^^^^^^^^^~01/01/2013~
-~05722~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2013~
-~05722~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2013~
-~05722~^~268~^664.^0^^~4~^~NC~^^^^^^^^^^~01/01/2013~
-~05722~^~301~^4.^5^0.^~1~^~A~^^^1^2.^8.^4^1.^6.^~2, 3~^~01/01/2013~
-~05722~^~304~^23.^5^1.^~1~^~A~^^^1^21.^28.^4^19.^26.^~2, 3~^~01/01/2013~
-~05722~^~305~^200.^5^1.^~1~^~A~^^^1^195.^204.^4^195.^204.^~2, 3~^~01/01/2013~
-~05722~^~306~^296.^5^3.^~1~^~A~^^^1^286.^306.^4^286.^305.^~2, 3~^~01/01/2013~
-~05722~^~307~^104.^5^5.^~1~^~A~^^^1^87.^120.^4^88.^119.^~2, 3~^~01/01/2013~
-~05722~^~318~^19.^0^^~4~^~BFFN~^^^^^^^^^^~01/01/2013~
-~05722~^~319~^6.^0^^~4~^~BFFN~^^^^^^^^^^~01/01/2013~
-~05722~^~320~^6.^0^^~4~^~BFFN~^^^^^^^^^^~01/01/2013~
-~05722~^~321~^0.^1^^~1~^~A~^^^^^^^^^~1~^~01/01/2013~
-~05722~^~322~^0.^1^^~1~^~A~^^^^^^^^^~1~^~01/01/2013~
-~05722~^~324~^10.^0^^~4~^~BFFN~^^^^^^^^^^~01/01/2013~
-~05722~^~334~^0.^1^^~1~^~A~^^^^^^^^^^~01/01/2013~
-~05722~^~337~^0.^1^^~1~^~A~^^^^^^^^^~1~^~01/01/2013~
-~05722~^~338~^1.^1^^~1~^~A~^^^^^^^^^^~01/01/2013~
-~05722~^~417~^8.^0^^~4~^~BFPN~^^^^^^^^^^~01/01/2013~
-~05722~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2013~
-~05722~^~432~^8.^0^^~4~^~BFPN~^^^^^^^^^^~01/01/2013~
-~05722~^~435~^8.^0^^~4~^~NC~^^^^^^^^^^~04/01/2013~
-~05722~^~601~^116.^3^8.^~1~^~A~^^^1^101.^130.^2^80.^152.^~2, 3~^~01/01/2013~
-~05723~^~208~^173.^0^^~4~^~NC~^^^^^^^^^^~01/01/2013~
-~05723~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2013~
-~05723~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2013~
-~05723~^~268~^724.^0^^~4~^~NC~^^^^^^^^^^~01/01/2013~
-~05723~^~301~^17.^6^3.^~1~^~A~^^^1^8.^32.^5^8.^25.^~2, 3~^~01/01/2013~
-~05723~^~304~^24.^6^1.^~1~^~A~^^^1^20.^29.^5^20.^27.^~2, 3~^~01/01/2013~
-~05723~^~305~^193.^6^3.^~1~^~A~^^^1^178.^201.^5^183.^201.^~2, 3~^~01/01/2013~
-~05723~^~306~^257.^6^5.^~1~^~A~^^^1^238.^273.^5^242.^271.^~2, 3~^~01/01/2013~
-~05723~^~307~^112.^6^3.^~1~^~A~^^^1^100.^121.^5^104.^120.^~2, 3~^~01/01/2013~
-~05723~^~318~^20.^0^^~4~^~BFFN~^^^^^^^^^^~01/01/2013~
-~05723~^~319~^6.^0^^~4~^~BFFN~^^^^^^^^^^~01/01/2013~
-~05723~^~320~^6.^0^^~4~^~BFFN~^^^^^^^^^^~01/01/2013~
-~05723~^~321~^0.^1^^~1~^~A~^^^^^^^^^~1~^~01/01/2013~
-~05723~^~322~^0.^1^^~1~^~A~^^^^^^^^^~1~^~01/01/2013~
-~05723~^~324~^11.^0^^~4~^~BFFN~^^^^^^^^^^~01/01/2013~
-~05723~^~334~^0.^1^^~1~^~A~^^^^^^^^^^~01/01/2013~
-~05723~^~337~^0.^1^^~1~^~A~^^^^^^^^^~1~^~01/01/2013~
-~05723~^~338~^7.^1^^~1~^~A~^^^^^^^^^^~01/01/2013~
-~05723~^~417~^9.^0^^~4~^~BFPN~^^^^^^^^^^~01/01/2013~
-~05723~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2013~
-~05723~^~432~^9.^0^^~4~^~BFPN~^^^^^^^^^^~01/01/2013~
-~05723~^~435~^9.^0^^~4~^~NC~^^^^^^^^^^~04/01/2013~
-~05723~^~601~^118.^3^7.^~1~^~A~^^^1^107.^131.^2^87.^148.^~2, 3~^~01/01/2013~
-~05724~^~208~^115.^0^^~4~^~NC~^^^^^^^^^^~07/01/2015~
-~05724~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2013~
-~05724~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2013~
-~05724~^~268~^480.^0^^~4~^~NC~^^^^^^^^^^~07/01/2015~
-~05724~^~301~^15.^6^0.^~1~^~A~^^^^14.^15.^^^^^~01/01/2013~
-~05724~^~304~^21.^6^1.^~1~^~A~^^^^16.^26.^^^^^~01/01/2013~
-~05724~^~305~^191.^6^3.^~1~^~A~^^^^180.^205.^^^^^~01/01/2013~
-~05724~^~306~^226.^10^5.^~1~^~A~^^^^185.^243.^^^^^~01/01/2013~
-~05724~^~307~^167.^6^20.^~1~^~A~^^^^136.^268.^^^^^~01/01/2013~
-~05724~^~318~^43.^0^^~1~^~AS~^^^^^^^^^^~01/01/2013~
-~05724~^~319~^13.^1^^~1~^~A~^^^^^^^^^^~01/01/2013~
-~05724~^~320~^13.^0^^~1~^~AS~^^^^^^^^^^~01/01/2013~
-~05724~^~321~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2013~
-~05724~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2013~
-~05724~^~324~^13.^1^^~1~^~A~^^^^^^^^^~1~^~01/01/2013~
-~05724~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2013~
-~05724~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2013~
-~05724~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2013~
-~05724~^~417~^6.^0^^~4~^~BFPN~^^^^^^^^^^~01/01/2013~
-~05724~^~432~^6.^0^^~4~^~BFPN~^^^^^^^^^^~01/01/2013~
-~05724~^~601~^79.^11^2.^~1~^~A~^^^^69.^100.^^^^^~01/01/2013~
-~05725~^~208~^158.^0^^~4~^~NC~^^^^^^^^^^~01/01/2013~
-~05725~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2013~
-~05725~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2013~
-~05725~^~268~^663.^0^^~4~^~NC~^^^^^^^^^^~01/01/2013~
-~05725~^~301~^16.^6^1.^~1~^~A~^^^^13.^21.^^^^^~01/01/2013~
-~05725~^~304~^24.^6^1.^~1~^~A~^^^^20.^30.^^^^^~01/01/2013~
-~05725~^~305~^208.^6^4.^~1~^~A~^^^^194.^226.^^^^^~01/01/2013~
-~05725~^~306~^227.^10^5.^~1~^~A~^^^^188.^240.^^^^^~01/01/2013~
-~05725~^~307~^201.^6^19.^~1~^~A~^^^^164.^293.^^^^^~01/01/2013~
-~05725~^~318~^18.^0^^~1~^~AS~^^^^^^^^^^~01/01/2013~
-~05725~^~319~^5.^1^^~1~^~A~^^^^^^^^^^~01/01/2013~
-~05725~^~320~^5.^0^^~1~^~AS~^^^^^^^^^^~01/01/2013~
-~05725~^~321~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2013~
-~05725~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2013~
-~05725~^~324~^10.^1^^~1~^~A~^^^^^^^^^~1~^~01/01/2013~
-~05725~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2013~
-~05725~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2013~
-~05725~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2013~
-~05725~^~417~^8.^0^^~4~^~BFPN~^^^^^^^^^^~04/01/2013~
-~05725~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2013~
-~05725~^~432~^8.^0^^~4~^~BFPN~^^^^^^^^^^~04/01/2013~
-~05725~^~435~^8.^0^^~4~^~NC~^^^^^^^^^^~04/01/2013~
-~05725~^~601~^105.^11^2.^~1~^~A~^^^^86.^118.^^^^^~01/01/2013~
-~05726~^~208~^115.^0^^~4~^~NC~^^^^^^^^^^~07/01/2015~
-~05726~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2013~
-~05726~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2013~
-~05726~^~268~^480.^0^^~4~^~NC~^^^^^^^^^^~07/01/2015~
-~05726~^~301~^15.^6^0.^~1~^~A~^^^^14.^15.^^^^^~01/01/2013~
-~05726~^~304~^21.^6^1.^~1~^~A~^^^^16.^26.^^^^^~01/01/2013~
-~05726~^~305~^191.^6^3.^~1~^~A~^^^^180.^205.^^^^^~01/01/2013~
-~05726~^~306~^226.^10^5.^~1~^~A~^^^^185.^243.^^^^^~01/01/2013~
-~05726~^~307~^167.^6^20.^~1~^~A~^^^^136.^268.^^^^^~01/01/2013~
-~05726~^~318~^43.^0^^~1~^~AS~^^^^^^^^^^~01/01/2013~
-~05726~^~319~^13.^1^^~1~^~A~^^^^^^^^^^~01/01/2013~
-~05726~^~320~^13.^0^^~1~^~AS~^^^^^^^^^^~01/01/2013~
-~05726~^~321~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2013~
-~05726~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2013~
-~05726~^~324~^13.^1^^~1~^~A~^^^^^^^^^^~01/01/2013~
-~05726~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2013~
-~05726~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2013~
-~05726~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2013~
-~05726~^~417~^6.^0^^~4~^~BFPN~^^^^^^^^^^~01/01/2013~
-~05726~^~432~^6.^0^^~4~^~BFPN~^^^^^^^^^^~01/01/2013~
-~05726~^~601~^79.^11^2.^~1~^~A~^^^^69.^100.^^^^^~01/01/2013~
-~05727~^~208~^144.^0^^~4~^~NC~^^^^^^^^^^~01/01/2013~
-~05727~^~262~^0.^0^^~4~^~PIK~^^^^^^^^^^~01/01/2013~
-~05727~^~263~^0.^0^^~4~^~PIK~^^^^^^^^^^~01/01/2013~
-~05727~^~268~^603.^0^^~4~^~NC~^^^^^^^^^^~01/01/2013~
-~05727~^~301~^9.^0^^~1~^~PAK~^^^^^^^^^^~01/01/2013~
-~05727~^~304~^23.^0^^~1~^~PAK~^^^^^^^^^^~01/01/2013~
-~05727~^~305~^171.^0^^~1~^~PAK~^^^^^^^^^^~01/01/2013~
-~05727~^~306~^221.^0^^~1~^~PAK~^^^^^^^^^^~01/01/2013~
-~05727~^~307~^126.^0^^~1~^~PAK~^^^^^^^^^^~01/01/2013~
-~05727~^~318~^50.^0^^~1~^~PAK~^^^^^^^^^^~01/01/2013~
-~05727~^~319~^15.^0^^~1~^~PAK~^^^^^^^^^^~01/01/2013~
-~05727~^~320~^15.^0^^~1~^~PAK~^^^^^^^^^^~01/01/2013~
-~05727~^~321~^0.^0^^~4~^~PIK~^^^^^^^^^^~01/01/2013~
-~05727~^~322~^0.^0^^~4~^~PIK~^^^^^^^^^^~01/01/2013~
-~05727~^~324~^13.^0^^~1~^~PAK~^^^^^^^^^^~01/01/2013~
-~05727~^~334~^0.^0^^~4~^~PIK~^^^^^^^^^^~01/01/2013~
-~05727~^~337~^0.^0^^~4~^~PIK~^^^^^^^^^^~01/01/2013~
-~05727~^~338~^3.^0^^~4~^~PIK~^^^^^^^^^^~01/01/2013~
-~05727~^~417~^7.^0^^~4~^~PIK~^^^^^^^^^^~01/01/2013~
-~05727~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2013~
-~05727~^~432~^7.^0^^~4~^~PIK~^^^^^^^^^^~01/01/2013~
-~05727~^~435~^7.^0^^~4~^~NC~^^^^^^^^^^~04/01/2013~
-~05727~^~601~^64.^0^^~1~^~PAK~^^^^^^^^^^~01/01/2013~
-~05728~^~208~^158.^0^^~4~^~NC~^^^^^^^^^^~01/01/2013~
-~05728~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2013~
-~05728~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2013~
-~05728~^~268~^663.^0^^~4~^~NC~^^^^^^^^^^~01/01/2013~
-~05728~^~301~^16.^6^1.^~1~^~A~^^^^13.^21.^^^^^~01/01/2013~
-~05728~^~304~^24.^6^1.^~1~^~A~^^^^20.^30.^^^^^~01/01/2013~
-~05728~^~305~^208.^6^4.^~1~^~A~^^^^194.^226.^^^^^~01/01/2013~
-~05728~^~306~^227.^10^5.^~1~^~A~^^^^188.^240.^^^^^~01/01/2013~
-~05728~^~307~^201.^6^19.^~1~^~A~^^^^164.^293.^^^^^~01/01/2013~
-~05728~^~318~^18.^0^^~1~^~AS~^^^^^^^^^^~01/01/2013~
-~05728~^~319~^5.^1^^~1~^~A~^^^^^^^^^^~01/01/2013~
-~05728~^~320~^5.^0^^~1~^~AS~^^^^^^^^^^~01/01/2013~
-~05728~^~321~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2013~
-~05728~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2013~
-~05728~^~324~^10.^1^^~1~^~A~^^^^^^^^^~1~^~01/01/2013~
-~05728~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2013~
-~05728~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2013~
-~05728~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2013~
-~05728~^~417~^8.^0^^~4~^~BFPN~^^^^^^^^^^~01/01/2013~
-~05728~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2013~
-~05728~^~432~^8.^0^^~4~^~BFPN~^^^^^^^^^^~01/01/2013~
-~05728~^~435~^8.^0^^~4~^~NC~^^^^^^^^^^~04/01/2013~
-~05728~^~601~^105.^11^2.^~1~^~A~^^^^86.^118.^^^^^~01/01/2013~
-~05729~^~208~^102.^0^^~4~^~NC~^^^^^^^^^^~07/01/2015~
-~05729~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2013~
-~05729~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2013~
-~05729~^~268~^425.^0^^~4~^~NC~^^^^^^^^^^~07/01/2015~
-~05729~^~301~^14.^6^0.^~1~^~A~^^^^12.^16.^^^^^~01/01/2013~
-~05729~^~304~^25.^6^0.^~1~^~A~^^^^22.^29.^^^^^~01/01/2013~
-~05729~^~305~^236.^6^6.^~1~^~A~^^^^217.^256.^^^^^~01/01/2013~
-~05729~^~306~^242.^10^5.^~1~^~A~^^^^215.^262.^^^^^~01/01/2013~
-~05729~^~307~^206.^6^25.^~1~^~A~^^^^101.^277.^^^^^~01/01/2013~
-~05729~^~318~^20.^0^^~1~^~AS~^^^^^^^^^^~01/01/2013~
-~05729~^~319~^6.^1^^~1~^~A~^^^^^^^^^^~01/01/2013~
-~05729~^~320~^6.^0^^~1~^~AS~^^^^^^^^^^~01/01/2013~
-~05729~^~321~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2013~
-~05729~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2013~
-~05729~^~324~^5.^1^^~1~^~A~^^^^^^^^^~1~^~01/01/2013~
-~05729~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2013~
-~05729~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2013~
-~05729~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2013~
-~05729~^~417~^7.^0^^~4~^~BFPN~^^^^^^^^^^~01/01/2013~
-~05729~^~432~^7.^0^^~4~^~BFPN~^^^^^^^^^^~01/01/2013~
-~05729~^~601~^54.^11^1.^~1~^~A~^^^^43.^60.^^^^^~01/01/2013~
-~05730~^~208~^127.^0^^~4~^~NC~^^^^^^^^^^~01/01/2013~
-~05730~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2013~
-~05730~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2013~
-~05730~^~268~^530.^0^^~4~^~NC~^^^^^^^^^^~01/01/2013~
-~05730~^~301~^13.^6^0.^~1~^~A~^^^^12.^14.^^^^^~01/01/2013~
-~05730~^~304~^30.^6^1.^~1~^~A~^^^^27.^36.^^^^^~01/01/2013~
-~05730~^~305~^255.^6^7.^~1~^~A~^^^^223.^269.^^^^^~01/01/2013~
-~05730~^~306~^249.^10^3.^~1~^~A~^^^^236.^265.^^^^^~01/01/2013~
-~05730~^~307~^238.^6^24.^~1~^~A~^^^^151.^295.^^^^^~01/01/2013~
-~05730~^~318~^11.^0^^~1~^~AS~^^^^^^^^^^~01/01/2013~
-~05730~^~319~^3.^1^^~1~^~A~^^^^^^^^^^~01/01/2013~
-~05730~^~320~^3.^0^^~1~^~AS~^^^^^^^^^^~01/01/2013~
-~05730~^~321~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2013~
-~05730~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2013~
-~05730~^~324~^10.^1^^~1~^~A~^^^^^^^^^~1~^~01/01/2013~
-~05730~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2013~
-~05730~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2013~
-~05730~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2013~
-~05730~^~417~^9.^0^^~4~^~BFPN~^^^^^^^^^^~01/01/2013~
-~05730~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2013~
-~05730~^~432~^9.^0^^~4~^~BFPN~^^^^^^^^^^~01/01/2013~
-~05730~^~435~^9.^0^^~4~^~NC~^^^^^^^^^^~04/01/2013~
-~05730~^~601~^69.^11^2.^~1~^~A~^^^^55.^82.^^^^^~01/01/2013~
-~05732~^~208~^155.^0^^~4~^~NC~^^^^^^^^^^~01/01/2013~
-~05732~^~262~^0.^0^^~4~^~PIK~^^^^^^^^^^~01/01/2013~
-~05732~^~263~^0.^0^^~4~^~PIK~^^^^^^^^^^~01/01/2013~
-~05732~^~268~^647.^0^^~4~^~NC~^^^^^^^^^^~01/01/2013~
-~05732~^~301~^9.^0^^~1~^~PAK~^^^^^^^^^^~01/01/2013~
-~05732~^~304~^24.^0^^~1~^~PAK~^^^^^^^^^^~01/01/2013~
-~05732~^~305~^176.^0^^~1~^~PAK~^^^^^^^^^^~01/01/2013~
-~05732~^~306~^247.^0^^~1~^~PAK~^^^^^^^^^^~01/01/2013~
-~05732~^~307~^72.^0^^~1~^~PAK~^^^^^^^^^^~01/01/2013~
-~05732~^~318~^54.^0^^~1~^~PAK~^^^^^^^^^^~01/01/2013~
-~05732~^~319~^16.^0^^~1~^~PAK~^^^^^^^^^^~01/01/2013~
-~05732~^~320~^16.^0^^~1~^~PAK~^^^^^^^^^^~01/01/2013~
-~05732~^~321~^0.^0^^~4~^~PIK~^^^^^^^^^^~01/01/2013~
-~05732~^~322~^0.^0^^~4~^~PIK~^^^^^^^^^^~01/01/2013~
-~05732~^~324~^12.^0^^~1~^~PAK~^^^^^^^^^^~01/01/2013~
-~05732~^~334~^0.^0^^~4~^~PIK~^^^^^^^^^^~01/01/2013~
-~05732~^~337~^0.^0^^~4~^~PIK~^^^^^^^^^^~01/01/2013~
-~05732~^~338~^7.^0^^~4~^~PIK~^^^^^^^^^^~01/01/2013~
-~05732~^~417~^7.^0^^~4~^~PIK~^^^^^^^^^^~01/01/2013~
-~05732~^~431~^0.^0^^~4~^~PIK~^^^^^^^^^^~01/01/2013~
-~05732~^~432~^7.^0^^~4~^~PIK~^^^^^^^^^^~01/01/2013~
-~05732~^~435~^7.^0^^~4~^~NC~^^^^^^^^^^~01/01/2013~
-~05732~^~601~^63.^0^^~1~^~PAK~^^^^^^^^^^~01/01/2013~
-~05733~^~208~^164.^0^^~4~^~NC~^^^^^^^^^^~01/01/2013~
-~05733~^~262~^0.^0^^~4~^~PIK~^^^^^^^^^^~01/01/2013~
-~05733~^~263~^0.^0^^~4~^~PIK~^^^^^^^^^^~01/01/2013~
-~05733~^~268~^687.^0^^~4~^~NC~^^^^^^^^^^~01/01/2013~
-~05733~^~301~^15.^0^^~1~^~PAK~^^^^^^^^^^~01/01/2013~
-~05733~^~304~^29.^0^^~1~^~PAK~^^^^^^^^^^~01/01/2013~
-~05733~^~305~^251.^0^^~1~^~PAK~^^^^^^^^^^~01/01/2013~
-~05733~^~306~^292.^0^^~1~^~PAK~^^^^^^^^^^~01/01/2013~
-~05733~^~307~^114.^0^^~1~^~PAK~^^^^^^^^^^~01/01/2013~
-~05733~^~318~^32.^0^^~4~^~NC~^^^^^^^^^^~04/01/2013~
-~05733~^~319~^10.^0^^~1~^~PAK~^^^^^^^^^^~01/01/2013~
-~05733~^~320~^10.^0^^~4~^~NC~^^^^^^^^^^~04/01/2013~
-~05733~^~321~^0.^0^^~4~^~PIK~^^^^^^^^^^~01/01/2013~
-~05733~^~322~^0.^0^^~4~^~PIK~^^^^^^^^^^~01/01/2013~
-~05733~^~324~^14.^0^^~4~^~PIK~^^^^^^^^^^~01/01/2013~
-~05733~^~334~^0.^0^^~4~^~PIK~^^^^^^^^^^~01/01/2013~
-~05733~^~337~^0.^0^^~4~^~PIK~^^^^^^^^^^~01/01/2013~
-~05733~^~338~^6.^0^^~4~^~PIK~^^^^^^^^^^~01/01/2013~
-~05733~^~417~^9.^0^^~4~^~PIK~^^^^^^^^^^~01/01/2013~
-~05733~^~431~^0.^0^^~4~^~PIK~^^^^^^^^^^~01/01/2013~
-~05733~^~432~^9.^0^^~4~^~PIK~^^^^^^^^^^~01/01/2013~
-~05733~^~435~^9.^0^^~4~^~NC~^^^^^^^^^^~01/01/2013~
-~05733~^~601~^79.^0^^~1~^~PAK~^^^^^^^^^^~01/01/2013~
-~05734~^~208~^202.^0^^~4~^~NC~^^^^^^^^^^~01/01/2013~
-~05734~^~262~^0.^0^^~4~^~PIK~^^^^^^^^^^~01/01/2013~
-~05734~^~263~^0.^0^^~4~^~PIK~^^^^^^^^^^~01/01/2013~
-~05734~^~268~^846.^0^^~4~^~NC~^^^^^^^^^^~01/01/2013~
-~05734~^~301~^8.^0^^~1~^~PAK~^^^^^^^^^^~01/01/2013~
-~05734~^~304~^17.^0^^~1~^~PAK~^^^^^^^^^^~01/01/2013~
-~05734~^~305~^139.^0^^~1~^~PAK~^^^^^^^^^^~01/01/2013~
-~05734~^~306~^192.^0^^~1~^~PAK~^^^^^^^^^^~01/01/2013~
-~05734~^~307~^67.^0^^~1~^~PAK~^^^^^^^^^^~01/01/2013~
-~05734~^~318~^100.^0^^~4~^~PIK~^^^^^^^^^^~01/01/2013~
-~05734~^~319~^30.^0^^~4~^~PIK~^^^^^^^^^^~01/01/2013~
-~05734~^~320~^30.^0^^~4~^~PIK~^^^^^^^^^^~01/01/2013~
-~05734~^~321~^0.^0^^~4~^~PIK~^^^^^^^^^^~01/01/2013~
-~05734~^~322~^0.^0^^~4~^~PIK~^^^^^^^^^^~01/01/2013~
-~05734~^~324~^19.^0^^~4~^~PIK~^^^^^^^^^^~01/01/2013~
-~05734~^~334~^0.^0^^~4~^~PIK~^^^^^^^^^^~01/01/2013~
-~05734~^~337~^0.^0^^~4~^~PIK~^^^^^^^^^^~01/01/2013~
-~05734~^~338~^0.^0^^~4~^~PIK~^^^^^^^^^^~01/01/2013~
-~05734~^~417~^6.^0^^~4~^~PIK~^^^^^^^^^^~01/01/2013~
-~05734~^~431~^0.^0^^~4~^~PIK~^^^^^^^^^^~01/01/2013~
-~05734~^~432~^6.^0^^~4~^~PIK~^^^^^^^^^^~01/01/2013~
-~05734~^~435~^6.^0^^~4~^~NC~^^^^^^^^^^~01/01/2013~
-~05734~^~601~^84.^0^^~1~^~PAK~^^^^^^^^^^~01/01/2013~
-~05735~^~208~^235.^0^^~4~^~NC~^^^^^^^^^^~01/01/2013~
-~05735~^~262~^0.^0^^~4~^~PIK~^^^^^^^^^^~01/01/2013~
-~05735~^~263~^0.^0^^~4~^~PIK~^^^^^^^^^^~01/01/2013~
-~05735~^~268~^983.^0^^~4~^~NC~^^^^^^^^^^~01/01/2013~
-~05735~^~301~^14.^0^^~1~^~PAK~^^^^^^^^^^~01/01/2013~
-~05735~^~304~^24.^0^^~1~^~PAK~^^^^^^^^^^~01/01/2013~
-~05735~^~305~^192.^0^^~1~^~PAK~^^^^^^^^^^~01/01/2013~
-~05735~^~306~^215.^0^^~1~^~PAK~^^^^^^^^^^~01/01/2013~
-~05735~^~307~^106.^0^^~1~^~PAK~^^^^^^^^^^~01/01/2013~
-~05735~^~318~^80.^0^^~4~^~PIK~^^^^^^^^^^~01/01/2013~
-~05735~^~319~^24.^0^^~4~^~PIK~^^^^^^^^^^~01/01/2013~
-~05735~^~320~^24.^0^^~4~^~PIK~^^^^^^^^^^~01/01/2013~
-~05735~^~321~^0.^0^^~4~^~PIK~^^^^^^^^^^~01/01/2013~
-~05735~^~322~^0.^0^^~4~^~PIK~^^^^^^^^^^~01/01/2013~
-~05735~^~324~^34.^0^^~4~^~PIK~^^^^^^^^^^~01/01/2013~
-~05735~^~334~^0.^0^^~4~^~PIK~^^^^^^^^^^~01/01/2013~
-~05735~^~337~^0.^0^^~4~^~PIK~^^^^^^^^^^~01/01/2013~
-~05735~^~338~^0.^0^^~4~^~PIK~^^^^^^^^^^~01/01/2013~
-~05735~^~417~^9.^0^^~4~^~PIK~^^^^^^^^^^~01/01/2013~
-~05735~^~431~^0.^0^^~4~^~PIK~^^^^^^^^^^~01/01/2013~
-~05735~^~432~^9.^0^^~4~^~PIK~^^^^^^^^^^~01/01/2013~
-~05735~^~435~^9.^0^^~4~^~NC~^^^^^^^^^^~01/01/2013~
-~05735~^~601~^115.^0^^~1~^~PAK~^^^^^^^^^^~01/01/2013~
-~05736~^~208~^141.^0^^~4~^~NC~^^^^^^^^^^~05/01/2013~
-~05736~^~262~^0.^0^^~4~^~PIK~^^^^^^^^^^~01/01/2013~
-~05736~^~263~^0.^0^^~4~^~PIK~^^^^^^^^^^~01/01/2013~
-~05736~^~268~^592.^0^^~4~^~NC~^^^^^^^^^^~05/01/2013~
-~05736~^~301~^9.^0^^~1~^~PAK~^^^^^^^^^^~01/01/2013~
-~05736~^~304~^21.^0^^~1~^~PAK~^^^^^^^^^^~05/01/2013~
-~05736~^~305~^151.^0^^~1~^~PAK~^^^^^^^^^^~05/01/2013~
-~05736~^~306~^208.^0^^~1~^~PAK~^^^^^^^^^^~05/01/2013~
-~05736~^~307~^86.^0^^~1~^~PAK~^^^^^^^^^^~05/01/2013~
-~05736~^~318~^86.^0^^~4~^~PIK~^^^^^^^^^^~05/01/2013~
-~05736~^~319~^26.^0^^~4~^~PIK~^^^^^^^^^^~05/01/2013~
-~05736~^~320~^26.^0^^~4~^~PIK~^^^^^^^^^^~05/01/2013~
-~05736~^~321~^0.^0^^~1~^~PAK~^^^^^^^^^^~01/01/2013~
-~05736~^~322~^0.^0^^~1~^~PAK~^^^^^^^^^^~01/01/2013~
-~05736~^~324~^18.^0^^~1~^~PAK~^^^^^^^^^^~05/01/2013~
-~05736~^~334~^0.^0^^~1~^~PAK~^^^^^^^^^^~01/01/2013~
-~05736~^~337~^0.^0^^~1~^~PAK~^^^^^^^^^^~01/01/2013~
-~05736~^~338~^5.^0^^~1~^~PAK~^^^^^^^^^^~05/01/2013~
-~05736~^~417~^6.^0^^~4~^~PIK~^^^^^^^^^^~01/01/2013~
-~05736~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2013~
-~05736~^~432~^6.^0^^~4~^~PIK~^^^^^^^^^^~01/01/2013~
-~05736~^~435~^6.^0^^~4~^~NC~^^^^^^^^^^~05/01/2013~
-~05736~^~601~^82.^0^^~1~^~PAK~^^^^^^^^^^~05/01/2013~
-~05737~^~208~^197.^0^^~4~^~NC~^^^^^^^^^^~05/01/2013~
-~05737~^~262~^0.^0^^~4~^~PIK~^^^^^^^^^^~01/01/2013~
-~05737~^~263~^0.^0^^~4~^~PIK~^^^^^^^^^^~01/01/2013~
-~05737~^~268~^825.^0^^~4~^~NC~^^^^^^^^^^~05/01/2013~
-~05737~^~301~^16.^0^^~1~^~PAK~^^^^^^^^^^~05/01/2013~
-~05737~^~304~^24.^0^^~1~^~PAK~^^^^^^^^^^~05/01/2013~
-~05737~^~305~^196.^0^^~1~^~PAK~^^^^^^^^^^~05/01/2013~
-~05737~^~306~^254.^0^^~1~^~PAK~^^^^^^^^^^~05/01/2013~
-~05737~^~307~^112.^0^^~1~^~PAK~^^^^^^^^^^~05/01/2013~
-~05737~^~318~^38.^0^^~4~^~PIK~^^^^^^^^^^~05/01/2013~
-~05737~^~319~^11.^0^^~4~^~PIK~^^^^^^^^^^~05/01/2013~
-~05737~^~320~^11.^0^^~4~^~PIK~^^^^^^^^^^~05/01/2013~
-~05737~^~321~^0.^0^^~1~^~PAK~^^^^^^^^^^~01/01/2013~
-~05737~^~322~^0.^0^^~1~^~PAK~^^^^^^^^^^~01/01/2013~
-~05737~^~324~^13.^0^^~4~^~PIK~^^^^^^^^^^~05/01/2013~
-~05737~^~334~^0.^0^^~1~^~PAK~^^^^^^^^^^~01/01/2013~
-~05737~^~337~^0.^0^^~1~^~PAK~^^^^^^^^^^~01/01/2013~
-~05737~^~338~^7.^0^^~1~^~PAK~^^^^^^^^^^~05/01/2013~
-~05737~^~417~^9.^0^^~4~^~PIK~^^^^^^^^^^~05/01/2013~
-~05737~^~431~^0.^0^^~4~^~PIK~^^^^^^^^^^~05/01/2013~
-~05737~^~432~^9.^0^^~4~^~PIK~^^^^^^^^^^~05/01/2013~
-~05737~^~435~^9.^0^^~4~^~NC~^^^^^^^^^^~05/01/2013~
-~05737~^~601~^120.^0^^~1~^~PAK~^^^^^^^^^^~05/01/2013~
-~05738~^~208~^109.^0^^~4~^~NC~^^^^^^^^^^~07/01/2015~
-~05738~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2013~
-~05738~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2013~
-~05738~^~268~^454.^0^^~4~^~NC~^^^^^^^^^^~07/01/2015~
-~05738~^~301~^11.^4^0.^~1~^~A~^^^^9.^12.^^^^^~01/01/2013~
-~05738~^~304~^28.^4^1.^~1~^~A~^^^^24.^31.^^^^^~01/01/2013~
-~05738~^~305~^201.^4^6.^~1~^~A~^^^^189.^213.^^^^^~01/01/2013~
-~05738~^~306~^242.^10^5.^~1~^~A~^^^^215.^262.^^^^^~01/01/2013~
-~05738~^~307~^113.^4^6.^~1~^~A~^^^^101.^130.^^^^^~01/01/2013~
-~05738~^~318~^20.^0^^~1~^~AS~^^^^^^^^^^~01/01/2013~
-~05738~^~319~^6.^1^^~1~^~A~^^^^^^^^^^~01/01/2013~
-~05738~^~320~^6.^0^^~1~^~AS~^^^^^^^^^^~01/01/2013~
-~05738~^~321~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2013~
-~05738~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2013~
-~05738~^~324~^5.^1^^~1~^~A~^^^^^^^^^~1~^~01/01/2013~
-~05738~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2013~
-~05738~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2013~
-~05738~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2013~
-~05738~^~417~^7.^0^^~4~^~BFPN~^^^^^^^^^^~01/01/2013~
-~05738~^~432~^7.^0^^~4~^~BFPN~^^^^^^^^^^~01/01/2013~
-~05738~^~601~^57.^4^1.^~1~^~A~^^^^55.^60.^^^^^~01/01/2013~
-~05739~^~208~^139.^0^^~4~^~NC~^^^^^^^^^^~01/01/2013~
-~05739~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2013~
-~05739~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2013~
-~05739~^~268~^583.^0^^~4~^~NC~^^^^^^^^^^~01/01/2013~
-~05739~^~301~^9.^4^0.^~1~^~A~^^^^8.^11.^^^^^~01/01/2013~
-~05739~^~304~^32.^4^1.^~1~^~A~^^^^29.^34.^^^^^~01/01/2013~
-~05739~^~305~^230.^4^6.^~1~^~A~^^^^215.^246.^^^^^~01/01/2013~
-~05739~^~306~^249.^10^3.^~1~^~A~^^^^236.^265.^^^^^~01/01/2013~
-~05739~^~307~^99.^4^8.^~1~^~A~^^^^82.^118.^^^^^~01/01/2013~
-~05739~^~318~^11.^0^^~1~^~AS~^^^^^^^^^^~01/01/2013~
-~05739~^~319~^3.^1^^~1~^~A~^^^^^^^^^^~01/01/2013~
-~05739~^~320~^3.^0^^~1~^~AS~^^^^^^^^^^~01/01/2013~
-~05739~^~321~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2013~
-~05739~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2013~
-~05739~^~324~^10.^1^^~1~^~A~^^^^^^^^^~1~^~01/01/2013~
-~05739~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2013~
-~05739~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2013~
-~05739~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2013~
-~05739~^~417~^10.^0^^~4~^~BFPN~^^^^^^^^^^~01/01/2013~
-~05739~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2013~
-~05739~^~432~^10.^0^^~4~^~BFPN~^^^^^^^^^^~01/01/2013~
-~05739~^~435~^10.^0^^~4~^~NC~^^^^^^^^^^~04/01/2013~
-~05739~^~601~^80.^4^2.^~1~^~A~^^^^74.^88.^^^^^~01/01/2013~
-~05740~^~208~^108.^0^^~4~^~NC~^^^^^^^^^^~01/01/2013~
-~05740~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2013~
-~05740~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2013~
-~05740~^~268~^451.^0^^~4~^~NC~^^^^^^^^^^~01/01/2013~
-~05740~^~301~^11.^4^0.^~1~^~A~^^^^9.^13.^^^^^~01/01/2013~
-~05740~^~304~^25.^4^0.^~1~^~A~^^^^23.^26.^^^^^~01/01/2013~
-~05740~^~305~^176.^4^15.^~1~^~A~^^^^133.^204.^^^^^~01/01/2013~
-~05740~^~306~^226.^10^5.^~1~^~A~^^^^185.^243.^^^^^~01/01/2013~
-~05740~^~307~^124.^4^10.^~1~^~A~^^^^101.^151.^^^^^~01/01/2013~
-~05740~^~318~^43.^0^^~1~^~AS~^^^^^^^^^^~01/01/2013~
-~05740~^~319~^13.^1^^~1~^~A~^^^^^^^^^^~01/01/2013~
-~05740~^~320~^13.^0^^~1~^~AS~^^^^^^^^^^~01/01/2013~
-~05740~^~321~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2013~
-~05740~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2013~
-~05740~^~324~^13.^1^^~1~^~A~^^^^^^^^^~1~^~01/01/2013~
-~05740~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2013~
-~05740~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2013~
-~05740~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2013~
-~05740~^~601~^79.^4^8.^~1~^~A~^^^^54.^93.^^^^^~01/01/2013~
-~05741~^~208~^165.^0^^~4~^~NC~^^^^^^^^^^~01/01/2013~
-~05741~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2013~
-~05741~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2013~
-~05741~^~268~^691.^0^^~4~^~NC~^^^^^^^^^^~01/01/2013~
-~05741~^~301~^17.^4^1.^~1~^~A~^^^^14.^19.^^^^^~01/01/2013~
-~05741~^~304~^27.^4^0.^~1~^~A~^^^^25.^27.^^^^^~01/01/2013~
-~05741~^~305~^212.^4^9.^~1~^~A~^^^^198.^240.^^^^^~01/01/2013~
-~05741~^~306~^227.^10^5.^~1~^~A~^^^^188.^240.^^^^^~01/01/2013~
-~05741~^~307~^104.^4^13.^~1~^~A~^^^^65.^123.^^^^^~01/01/2013~
-~05741~^~318~^18.^0^^~1~^~AS~^^^^^^^^^^~01/01/2013~
-~05741~^~319~^5.^1^^~1~^~A~^^^^^^^^^^~01/01/2013~
-~05741~^~320~^5.^0^^~1~^~AS~^^^^^^^^^^~01/01/2013~
-~05741~^~321~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2013~
-~05741~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2013~
-~05741~^~324~^10.^1^^~1~^~A~^^^^^^^^^~1~^~01/01/2013~
-~05741~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2013~
-~05741~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2013~
-~05741~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2013~
-~05741~^~417~^9.^0^^~4~^~BFPN~^^^^^^^^^^~01/01/2013~
-~05741~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2013~
-~05741~^~432~^9.^0^^~4~^~BFPN~^^^^^^^^^^~01/01/2013~
-~05741~^~435~^9.^0^^~4~^~NC~^^^^^^^^^^~04/01/2013~
-~05741~^~601~^128.^4^12.^~1~^~A~^^^^111.^164.^^^^^~01/01/2013~
-~05742~^~208~^161.^0^^~4~^~NC~^^^^^^^^^^~01/01/2013~
-~05742~^~262~^0.^0^^~4~^~PIK~^^^^^^^^^^~01/01/2013~
-~05742~^~263~^0.^0^^~4~^~PIK~^^^^^^^^^^~01/01/2013~
-~05742~^~268~^672.^0^^~4~^~NC~^^^^^^^^^^~01/01/2013~
-~05742~^~301~^4.^0^^~1~^~PAK~^^^^^^^^^^~01/01/2013~
-~05742~^~304~^20.^0^^~1~^~PAK~^^^^^^^^^^~01/01/2013~
-~05742~^~305~^161.^0^^~1~^~PAK~^^^^^^^^^^~01/01/2013~
-~05742~^~306~^239.^0^^~1~^~PAK~^^^^^^^^^^~01/01/2013~
-~05742~^~307~^75.^0^^~1~^~PAK~^^^^^^^^^^~01/01/2013~
-~05742~^~318~^97.^0^^~4~^~PIK~^^^^^^^^^^~01/01/2013~
-~05742~^~319~^29.^0^^~4~^~PIK~^^^^^^^^^^~01/01/2013~
-~05742~^~320~^29.^0^^~4~^~NC~^^^^^^^^^^~01/01/2013~
-~05742~^~321~^0.^0^^~1~^~PAK~^^^^^^^^^^~01/01/2013~
-~05742~^~322~^0.^0^^~1~^~PAK~^^^^^^^^^^~01/01/2013~
-~05742~^~324~^21.^0^^~4~^~PIK~^^^^^^^^^^~01/01/2013~
-~05742~^~334~^0.^0^^~1~^~PAK~^^^^^^^^^^~01/01/2013~
-~05742~^~337~^0.^0^^~1~^~PAK~^^^^^^^^^^~01/01/2013~
-~05742~^~338~^7.^0^^~1~^~PAK~^^^^^^^^^^~01/01/2013~
-~05742~^~417~^6.^0^^~4~^~PIK~^^^^^^^^^^~01/01/2013~
-~05742~^~432~^6.^0^^~4~^~PIK~^^^^^^^^^^~01/01/2013~
-~05742~^~601~^83.^0^^~1~^~PAK~^^^^^^^^^^~01/01/2013~
-~05743~^~208~^183.^0^^~4~^~NC~^^^^^^^^^^~01/01/2013~
-~05743~^~262~^0.^0^^~4~^~PIK~^^^^^^^^^^~01/01/2013~
-~05743~^~263~^0.^0^^~4~^~PIK~^^^^^^^^^^~01/01/2013~
-~05743~^~268~^765.^0^^~4~^~NC~^^^^^^^^^^~01/01/2013~
-~05743~^~301~^4.^0^^~1~^~PAK~^^^^^^^^^^~01/01/2013~
-~05743~^~304~^21.^0^^~1~^~PAK~^^^^^^^^^^~01/01/2013~
-~05743~^~305~^187.^0^^~1~^~PAK~^^^^^^^^^^~01/01/2013~
-~05743~^~306~^273.^0^^~1~^~PAK~^^^^^^^^^^~01/01/2013~
-~05743~^~307~^101.^0^^~1~^~PAK~^^^^^^^^^^~01/01/2013~
-~05743~^~318~^46.^0^^~4~^~PIK~^^^^^^^^^^~01/01/2013~
-~05743~^~319~^14.^0^^~4~^~PIK~^^^^^^^^^^~01/01/2013~
-~05743~^~320~^14.^0^^~4~^~PIK~^^^^^^^^^^~01/01/2013~
-~05743~^~321~^0.^0^^~1~^~PAK~^^^^^^^^^^~01/01/2013~
-~05743~^~322~^0.^0^^~1~^~PAK~^^^^^^^^^^~01/01/2013~
-~05743~^~324~^13.^0^^~4~^~PIK~^^^^^^^^^^~01/01/2013~
-~05743~^~334~^0.^0^^~1~^~PAK~^^^^^^^^^^~01/01/2013~
-~05743~^~337~^0.^0^^~1~^~PAK~^^^^^^^^^^~01/01/2013~
-~05743~^~338~^2.^0^^~1~^~PAK~^^^^^^^^^^~01/01/2013~
-~05743~^~417~^8.^0^^~4~^~PIK~^^^^^^^^^^~01/01/2013~
-~05743~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2013~
-~05743~^~432~^8.^0^^~4~^~PIK~^^^^^^^^^^~01/01/2013~
-~05743~^~435~^8.^0^^~4~^~NC~^^^^^^^^^^~04/01/2013~
-~05743~^~601~^116.^0^^~1~^~PAK~^^^^^^^^^^~01/01/2013~
-~05744~^~208~^206.^0^^~4~^~NC~^^^^^^^^^^~01/01/2013~
-~05744~^~262~^0.^0^^~4~^~PIK~^^^^^^^^^^~01/01/2013~
-~05744~^~263~^0.^0^^~4~^~PIK~^^^^^^^^^^~01/01/2013~
-~05744~^~268~^864.^0^^~4~^~NC~^^^^^^^^^^~01/01/2013~
-~05744~^~301~^14.^0^^~1~^~PAK~^^^^^^^^^^~01/01/2013~
-~05744~^~304~^17.^0^^~1~^~PAK~^^^^^^^^^^~01/01/2013~
-~05744~^~305~^159.^0^^~1~^~PAK~^^^^^^^^^^~01/01/2013~
-~05744~^~306~^185.^0^^~1~^~PAK~^^^^^^^^^^~01/01/2013~
-~05744~^~307~^157.^0^^~1~^~PAK~^^^^^^^^^^~01/01/2013~
-~05744~^~318~^126.^0^^~4~^~NC~^^^^^^^^^^~01/01/2013~
-~05744~^~319~^38.^0^^~1~^~PAK~^^^^^^^^^^~01/01/2013~
-~05744~^~320~^38.^0^^~4~^~NC~^^^^^^^^^^~01/01/2013~
-~05744~^~321~^0.^0^^~4~^~PIK~^^^^^^^^^^~01/01/2013~
-~05744~^~322~^0.^0^^~4~^~PIK~^^^^^^^^^^~01/01/2013~
-~05744~^~324~^24.^0^^~1~^~PAK~^^^^^^^^^^~01/01/2013~
-~05744~^~334~^0.^0^^~4~^~PIK~^^^^^^^^^^~01/01/2013~
-~05744~^~337~^0.^0^^~4~^~PIK~^^^^^^^^^^~01/01/2013~
-~05744~^~338~^0.^0^^~4~^~PIK~^^^^^^^^^^~01/01/2013~
-~05744~^~417~^5.^0^^~4~^~PIK~^^^^^^^^^^~01/01/2013~
-~05744~^~432~^5.^0^^~4~^~PIK~^^^^^^^^^^~01/01/2013~
-~05744~^~601~^84.^0^^~1~^~PAK~^^^^^^^^^^~01/01/2013~
-~05745~^~208~^205.^0^^~4~^~NC~^^^^^^^^^^~01/01/2013~
-~05745~^~262~^0.^0^^~4~^~PIK~^^^^^^^^^^~01/01/2013~
-~05745~^~263~^0.^0^^~4~^~PIK~^^^^^^^^^^~01/01/2013~
-~05745~^~268~^860.^0^^~4~^~NC~^^^^^^^^^^~01/01/2013~
-~05745~^~301~^15.^0^^~1~^~PAK~^^^^^^^^^^~01/01/2013~
-~05745~^~304~^29.^0^^~1~^~PAK~^^^^^^^^^^~01/01/2013~
-~05745~^~305~^252.^0^^~1~^~PAK~^^^^^^^^^^~01/01/2013~
-~05745~^~306~^252.^0^^~1~^~PAK~^^^^^^^^^^~01/01/2013~
-~05745~^~307~^237.^0^^~1~^~PAK~^^^^^^^^^^~01/01/2013~
-~05745~^~318~^72.^0^^~1~^~PAK~^^^^^^^^^^~01/01/2013~
-~05745~^~319~^22.^0^^~1~^~PAK~^^^^^^^^^^~01/01/2013~
-~05745~^~320~^22.^0^^~1~^~PAK~^^^^^^^^^^~01/01/2013~
-~05745~^~321~^0.^0^^~4~^~PIK~^^^^^^^^^^~01/01/2013~
-~05745~^~322~^0.^0^^~4~^~PIK~^^^^^^^^^^~01/01/2013~
-~05745~^~324~^21.^0^^~1~^~PAK~^^^^^^^^^^~01/01/2013~
-~05745~^~334~^0.^0^^~4~^~PIK~^^^^^^^^^^~01/01/2013~
-~05745~^~337~^0.^0^^~4~^~PIK~^^^^^^^^^^~01/01/2013~
-~05745~^~338~^0.^0^^~4~^~PIK~^^^^^^^^^^~01/01/2013~
-~05745~^~417~^6.^0^^~4~^~PIK~^^^^^^^^^^~01/01/2013~
-~05745~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2013~
-~05745~^~432~^6.^0^^~4~^~PIK~^^^^^^^^^^~01/01/2013~
-~05745~^~435~^6.^0^^~4~^~NC~^^^^^^^^^^~04/01/2013~
-~05745~^~601~^87.^0^^~1~^~PAK~^^^^^^^^^^~01/01/2013~
-~05746~^~208~^157.^0^^~4~^~NC~^^^^^^^^^^~04/01/2013~
-~05746~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2013~
-~05746~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2013~
-~05746~^~268~^659.^0^^~4~^~NC~^^^^^^^^^^~04/01/2013~
-~05746~^~301~^6.^6^0.^~1~^~A~^^^1^5.^7.^5^4.^6.^~2, 3~^~04/01/2013~
-~05746~^~304~^32.^6^0.^~1~^~A~^^^1^31.^35.^5^30.^33.^~2, 3~^~04/01/2013~
-~05746~^~305~^241.^6^5.^~1~^~A~^^^1^231.^269.^5^226.^255.^~2, 3~^~04/01/2013~
-~05746~^~306~^343.^6^13.^~1~^~A~^^^1^316.^410.^5^307.^378.^~2, 3~^~04/01/2013~
-~05746~^~307~^47.^6^2.^~1~^~A~^^^1^40.^55.^5^40.^53.^~2, 3~^~04/01/2013~
-~05746~^~318~^33.^0^^~4~^~NC~^^^^^^^^^^~04/01/2013~
-~05746~^~319~^10.^0^^~4~^~BFSN~^~05071~^^^^^^^^^~04/01/2013~
-~05746~^~320~^10.^0^^~4~^~NC~^^^^^^^^^^~04/01/2013~
-~05746~^~321~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2013~
-~05746~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2013~
-~05746~^~324~^1.^0^^~4~^~BFFN~^~05071~^^^^^^^^^~04/01/2013~
-~05746~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2013~
-~05746~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2013~
-~05746~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2013~
-~05746~^~601~^116.^3^3.^~1~^~A~^^^1^111.^123.^2^99.^131.^~2, 3~^~04/01/2013~
-~05747~^~208~^151.^0^^~4~^~NC~^^^^^^^^^^~04/01/2013~
-~05747~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2013~
-~05747~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2013~
-~05747~^~268~^631.^0^^~4~^~NC~^^^^^^^^^^~04/01/2013~
-~05747~^~301~^5.^6^0.^~1~^~A~^^^1^5.^6.^5^5.^5.^~2, 3~^~04/01/2013~
-~05747~^~304~^34.^6^1.^~1~^~A~^^^1^31.^36.^5^31.^37.^~2, 3~^~04/01/2013~
-~05747~^~305~^258.^6^7.^~1~^~A~^^^1^231.^271.^5^239.^277.^~2, 3~^~04/01/2013~
-~05747~^~306~^391.^6^16.^~1~^~A~^^^1^315.^424.^5^348.^433.^~2, 3~^~04/01/2013~
-~05747~^~307~^52.^6^2.^~1~^~A~^^^1^42.^58.^5^45.^57.^~2, 3~^~04/01/2013~
-~05747~^~318~^32.^0^^~4~^~NC~^^^^^^^^^^~08/01/2015~
-~05747~^~319~^10.^0^^~4~^~BFSN~^~05071~^^^^^^^^^~08/01/2015~
-~05747~^~320~^10.^0^^~4~^~NC~^^^^^^^^^^~08/01/2015~
-~05747~^~321~^0.^0^^~7~^~Z~^^^^^^^^^^~08/01/2015~
-~05747~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~08/01/2015~
-~05747~^~324~^1.^0^^~4~^~BFFN~^~05071~^^^^^^^^^~04/01/2013~
-~05747~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~08/01/2015~
-~05747~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~08/01/2015~
-~05747~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~08/01/2015~
-~05747~^~601~^104.^3^1.^~1~^~A~^^^1^100.^106.^2^95.^111.^~2, 3~^~04/01/2013~
-~05748~^~208~^145.^0^^~4~^~NC~^^^^^^^^^^~04/01/2013~
-~05748~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2013~
-~05748~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2013~
-~05748~^~268~^609.^0^^~4~^~NC~^^^^^^^^^^~04/01/2013~
-~05748~^~301~^5.^6^0.^~1~^~A~^^^1^5.^7.^5^4.^6.^~2, 3~^~04/01/2013~
-~05748~^~304~^28.^6^0.^~1~^~A~^^^1^26.^29.^5^26.^29.^~2, 3~^~04/01/2013~
-~05748~^~305~^217.^6^7.^~1~^~A~^^^1^194.^243.^5^197.^237.^~2, 3~^~04/01/2013~
-~05748~^~306~^313.^6^25.^~1~^~A~^^^1^248.^387.^5^247.^378.^~2, 3~^~04/01/2013~
-~05748~^~307~^172.^6^17.^~1~^~A~^^^1^123.^222.^5^126.^216.^~2, 3~^~04/01/2013~
-~05748~^~318~^31.^0^^~4~^~NC~^^^^^^^^^^~04/01/2013~
-~05748~^~319~^9.^0^^~4~^~BFSN~^~05071~^^^^^^^^^~04/01/2013~
-~05748~^~320~^9.^0^^~4~^~NC~^^^^^^^^^^~04/01/2013~
-~05748~^~321~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2013~
-~05748~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2013~
-~05748~^~324~^1.^0^^~4~^~BFFN~^~05071~^^^^^^^^^~04/01/2013~
-~05748~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2013~
-~05748~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2013~
-~05748~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2013~
-~05748~^~601~^99.^3^2.^~1~^~A~^^^1^95.^103.^2^89.^108.^~2, 3~^~04/01/2013~
-~05749~^~208~^148.^0^^~4~^~NC~^^^^^^^^^^~04/01/2013~
-~05749~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2013~
-~05749~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2013~
-~05749~^~268~^621.^0^^~4~^~NC~^^^^^^^^^^~04/01/2013~
-~05749~^~301~^6.^6^0.^~1~^~A~^^^1^5.^8.^5^5.^7.^~2, 3~^~04/01/2013~
-~05749~^~304~^31.^6^0.^~1~^~A~^^^1^30.^32.^5^30.^32.^~2, 3~^~04/01/2013~
-~05749~^~305~^249.^6^7.^~1~^~A~^^^1^232.^275.^5^229.^268.^~2, 3~^~04/01/2013~
-~05749~^~306~^420.^6^39.^~1~^~A~^^^1^318.^552.^5^317.^523.^~2, 3~^~04/01/2013~
-~05749~^~307~^215.^6^19.^~1~^~A~^^^1^149.^281.^5^163.^265.^~2, 3~^~04/01/2013~
-~05749~^~318~^32.^0^^~4~^~NC~^^^^^^^^^^~04/01/2013~
-~05749~^~319~^10.^0^^~4~^~BFSN~^~05071~^^^^^^^^^~04/01/2013~
-~05749~^~320~^10.^0^^~4~^~NC~^^^^^^^^^^~04/01/2013~
-~05749~^~321~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2013~
-~05749~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2013~
-~05749~^~324~^1.^0^^~4~^~BFFN~^~05071~^^^^^^^^^~04/01/2013~
-~05749~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2013~
-~05749~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2013~
-~05749~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2013~
-~05749~^~601~^106.^3^4.^~1~^~A~^^^1^100.^114.^2^88.^123.^~2, 3~^~04/01/2013~
-~06001~^~208~^69.^0^^~4~^~NC~^^^^^^^^^^~02/01/1980~
-~06001~^~262~^0.^0^^~4~^~FLA~^^^^^^^^^^~01/01/2003~
-~06001~^~263~^0.^0^^~4~^~FLA~^^^^^^^^^^~01/01/2003~
-~06001~^~268~^289.^0^^~4~^^^^^^^^^^^~05/01/2005~
-~06001~^~301~^23.^10^1.^~1~^^^^^^^^^^^~02/01/1980~
-~06001~^~304~^3.^1^^~1~^^^^^^^^^^^~02/01/1980~
-~06001~^~305~^31.^1^^~1~^^^^^^^^^^^~02/01/1980~
-~06001~^~306~^138.^1^^~1~^^^^^^^^^^^~02/01/1980~
-~06001~^~307~^669.^0^^~8~^~LC~^^^^^^^^^^~06/01/2012~
-~06001~^~318~^441.^0^^~4~^~FLA~^^^^^^^^^^~01/01/2003~
-~06001~^~319~^5.^0^^~4~^~FLA~^^^^^^^^^^~01/01/2003~
-~06001~^~320~^26.^0^^~4~^~FLA~^^^^^^^^^^~01/01/2003~
-~06001~^~321~^256.^0^^~4~^~FLA~^^^^^^^^^^~01/01/2003~
-~06001~^~322~^0.^0^^~4~^~FLA~^^^^^^^^^^~01/01/2003~
-~06001~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~
-~06001~^~334~^0.^0^^~4~^~FLA~^^^^^^^^^^~01/01/2003~
-~06001~^~337~^13.^0^^~4~^~FLA~^^^^^^^^^^~01/01/2003~
-~06001~^~338~^326.^0^^~4~^~FLA~^^^^^^^^^^~01/01/2003~
-~06001~^~417~^19.^0^^~4~^^^^^^^^^^^~02/01/1980~
-~06001~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~
-~06001~^~432~^19.^0^^~4~^^^^^^^^^^^~01/01/2003~
-~06001~^~435~^19.^0^^~4~^~NC~^^^^^^^^^^~06/01/2008~
-~06001~^~601~^4.^0^^~1~^^^^^^^^^^^~02/01/1980~
-~06002~^~208~^91.^0^^~4~^~NC~^^^^^^^^^^~11/01/2006~
-~06002~^~262~^0.^0^^~4~^~FLA~^^^^^^^^^^~02/01/2003~
-~06002~^~263~^0.^0^^~4~^~FLA~^^^^^^^^^^~02/01/2003~
-~06002~^~268~^382.^0^^~4~^~NC~^^^^^^^^^^~11/01/2006~
-~06002~^~301~^35.^10^2.^~1~^^^^^^^^^^^~02/01/1980~
-~06002~^~304~^33.^1^^~1~^^^^^^^^^^^~02/01/1980~
-~06002~^~305~^75.^1^^~1~^^^^^^^^^^^~02/01/1980~
-~06002~^~306~^250.^1^^~1~^^^^^^^^^^^~02/01/1980~
-~06002~^~307~^970.^3^40.^~1~^^^^^^^^^^^~02/01/1980~
-~06002~^~318~^445.^0^^~4~^~FLA~^^^^^^^^^^~11/01/2006~
-~06002~^~319~^0.^0^^~4~^~FLA~^^^^^^^^^^~02/01/2003~
-~06002~^~320~^22.^0^^~4~^~FLA~^^^^^^^^^^~11/01/2006~
-~06002~^~321~^219.^0^^~4~^~FLA~^^^^^^^^^^~11/01/2006~
-~06002~^~322~^80.^0^^~4~^~FLA~^^^^^^^^^^~11/01/2006~
-~06002~^~334~^12.^0^^~4~^~FLA~^^^^^^^^^^~11/01/2006~
-~06002~^~337~^463.^0^^~4~^~FLA~^^^^^^^^^^~11/01/2006~
-~06002~^~338~^36.^0^^~4~^~FLA~^^^^^^^^^^~11/01/2006~
-~06002~^~417~^66.^0^^~4~^~FLA~^^^^^^^^^^~11/01/2006~
-~06002~^~431~^0.^0^^~4~^~FLA~^^^^^^^^^^~11/01/2006~
-~06002~^~432~^66.^0^^~4~^~FLA~^^^^^^^^^^~11/01/2006~
-~06002~^~435~^66.^0^^~4~^~NC~^^^^^^^^^^~11/01/2006~
-~06002~^~601~^0.^0^^~1~^^^^^^^^^^^~02/01/1980~
-~06004~^~208~^129.^0^^~4~^~NC~^^^^^^^^^^~02/01/1980~
-~06004~^~262~^0.^0^^~4~^~FLA~^^^^^^^^^^~01/01/2003~
-~06004~^~263~^0.^0^^~4~^~FLA~^^^^^^^^^^~01/01/2003~
-~06004~^~268~^540.^0^^~4~^^^^^^^^^^^~05/01/2005~
-~06004~^~301~^60.^13^2.^~1~^^^^^^^^^^^~02/01/1980~
-~06004~^~304~^33.^1^^~1~^^^^^^^^^^^~02/01/1980~
-~06004~^~305~^98.^1^^~1~^^^^^^^^^^^~02/01/1980~
-~06004~^~306~^375.^1^^~9~^~MC~^^^^^^^^^^~06/01/2012~
-~06004~^~307~^672.^1^^~9~^~MC~^^^^^^^^^^~06/01/2012~
-~06004~^~318~^662.^0^^~4~^~FLA~^^^^^^^^^^~01/01/2003~
-~06004~^~319~^1.^0^^~4~^~FLA~^^^^^^^^^^~01/01/2003~
-~06004~^~320~^34.^0^^~4~^~FLA~^^^^^^^^^^~01/01/2003~
-~06004~^~321~^336.^0^^~4~^~FLA~^^^^^^^^^^~01/01/2003~
-~06004~^~322~^118.^0^^~4~^~FLA~^^^^^^^^^^~01/01/2003~
-~06004~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~
-~06004~^~334~^0.^0^^~4~^~FLA~^^^^^^^^^^~01/01/2003~
-~06004~^~337~^5946.^0^^~4~^~FLA~^^^^^^^^^^~01/01/2003~
-~06004~^~338~^9.^0^^~4~^~FLA~^^^^^^^^^^~01/01/2003~
-~06004~^~417~^24.^3^1.^~1~^^^^^^^^^^^~02/01/1980~
-~06004~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~
-~06004~^~432~^24.^3^1.^~1~^^^^^^^^^^^~03/01/2003~
-~06004~^~435~^24.^0^^~4~^~NC~^^^^^^^^^^~06/01/2008~
-~06004~^~601~^2.^0^^~1~^^^^^^^^^^^~02/01/1980~
-~06006~^~208~^142.^0^^~4~^~NC~^^^^^^^^^^~02/01/1980~
-~06006~^~268~^594.^0^^~4~^^^^^^^^^^^~06/01/2008~
-~06006~^~301~^66.^10^3.^~1~^^^^^^^^^^^~02/01/1980~
-~06006~^~304~^37.^1^^~1~^^^^^^^^^^^~02/01/1980~
-~06006~^~305~^126.^1^^~1~^^^^^^^^^^^~02/01/1980~
-~06006~^~306~^363.^1^^~1~^^^^^^^^^^^~02/01/1980~
-~06006~^~307~^831.^5^8.^~1~^^^^^^^^^^^~02/01/1980~
-~06006~^~318~^662.^10^47.^~1~^^^^^^^^^^^~02/01/1980~
-~06006~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2002~
-~06006~^~320~^33.^0^^~4~^~NC~^^^^^^^^^^~06/01/2002~
-~06006~^~417~^24.^0^^~4~^^^^^^^^^^^~02/01/1980~
-~06006~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~
-~06006~^~432~^24.^0^^~4~^^^^^^^^^^^~02/01/1980~
-~06006~^~435~^24.^0^^~4~^~NC~^^^^^^^^^^~06/01/2008~
-~06006~^~601~^9.^0^^~1~^^^^^^^^^^^~02/01/1980~
-~06007~^~208~^95.^0^^~4~^~NC~^^^^^^^^^^~02/01/1980~
-~06007~^~268~^397.^0^^~4~^^^^^^^^^^^~06/01/2008~
-~06007~^~301~^32.^10^0.^~1~^^^^^^^^^^^~02/01/1980~
-~06007~^~304~^19.^0^^~4~^^^^^^^^^^^~02/01/1980~
-~06007~^~305~^59.^0^^~4~^^^^^^^^^^^~02/01/1980~
-~06007~^~306~^175.^0^^~1~^^^^^^^^^^^~02/01/1980~
-~06007~^~307~^400.^10^^~1~^^^^^^^^^^^~02/01/1980~
-~06007~^~318~^1626.^10^168.^~1~^^^^^^^^^^^~02/01/1980~
-~06007~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2002~
-~06007~^~320~^81.^0^^~4~^~NC~^^^^^^^^^^~06/01/2002~
-~06007~^~417~^12.^0^^~4~^^^^^^^^^^^~02/01/1980~
-~06007~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~
-~06007~^~432~^12.^0^^~4~^^^^^^^^^^^~02/01/1980~
-~06007~^~435~^12.^0^^~4~^~NC~^^^^^^^^^^~06/01/2008~
-~06007~^~601~^9.^0^^~1~^^^^^^^^^^^~02/01/1980~
-~06008~^~208~^7.^0^^~4~^~NC~^^^^^^^^^^~02/01/1980~
-~06008~^~262~^0.^0^^~4~^~FLA~^^^^^^^^^^~01/01/2003~
-~06008~^~263~^0.^0^^~4~^~FLA~^^^^^^^^^^~01/01/2003~
-~06008~^~268~^29.^0^^~4~^^^^^^^^^^^~11/01/2006~
-~06008~^~301~^6.^10^0.^~1~^^^^^^^^^^^~02/01/1980~
-~06008~^~304~^2.^0^^~4~^^^^^^^^^^^~02/01/1980~
-~06008~^~305~^13.^1^^~1~^^^^^^^^^^^~02/01/1980~
-~06008~^~306~^54.^1^^~4~^^^^^^^^^^^~02/01/1980~
-~06008~^~307~^372.^3^^~8~^~LC~^^^^^^^^^^~07/01/2010~
-~06008~^~318~^0.^0^^~4~^~FLA~^^^^^^^^^^~01/01/2003~
-~06008~^~319~^0.^0^^~4~^~FLA~^^^^^^^^^^~01/01/2003~
-~06008~^~320~^0.^0^^~4~^~FLA~^^^^^^^^^^~01/01/2003~
-~06008~^~321~^0.^0^^~4~^~FLA~^^^^^^^^^^~01/01/2003~
-~06008~^~322~^0.^0^^~4~^~FLA~^^^^^^^^^^~01/01/2003~
-~06008~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~
-~06008~^~334~^0.^0^^~4~^~FLA~^^^^^^^^^^~01/01/2003~
-~06008~^~337~^0.^0^^~4~^~FLA~^^^^^^^^^^~01/01/2003~
-~06008~^~338~^0.^0^^~4~^~FLA~^^^^^^^^^^~01/01/2003~
-~06008~^~417~^2.^0^^~4~^^^^^^^^^^^~02/01/1980~
-~06008~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~
-~06008~^~432~^2.^0^^~4~^^^^^^^^^^^~11/01/2006~
-~06008~^~435~^2.^0^^~4~^~NC~^^^^^^^^^^~03/01/2008~
-~06008~^~601~^0.^0^^~1~^^^^^^^^^^^~02/01/1980~
-~06009~^~208~^67.^0^^~4~^~NC~^^^^^^^^^^~02/01/1980~
-~06009~^~262~^0.^0^^~4~^~FLA~^^^^^^^^^^~01/01/2003~
-~06009~^~263~^0.^0^^~4~^~FLA~^^^^^^^^^^~01/01/2003~
-~06009~^~268~^280.^0^^~4~^^^^^^^^^^^~05/01/2005~
-~06009~^~301~^12.^28^0.^~1~^^^^^^^^^^^~02/01/1980~
-~06009~^~304~^5.^2^^~1~^^^^^^^^^^^~02/01/1980~
-~06009~^~305~^37.^2^^~1~^^^^^^^^^^^~02/01/1980~
-~06009~^~306~^79.^2^^~1~^^^^^^^^^^^~02/01/1980~
-~06009~^~307~^653.^0^^~8~^~LC~^^^^^^^^^^~06/01/2009~
-~06009~^~318~^202.^0^^~4~^~FLA~^^^^^^^^^^~01/01/2003~
-~06009~^~319~^1.^0^^~4~^~FLA~^^^^^^^^^^~01/01/2003~
-~06009~^~320~^11.^0^^~4~^~FLA~^^^^^^^^^^~01/01/2003~
-~06009~^~321~^120.^0^^~4~^~FLA~^^^^^^^^^^~01/01/2003~
-~06009~^~322~^0.^0^^~4~^~FLA~^^^^^^^^^^~01/01/2003~
-~06009~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~
-~06009~^~334~^0.^0^^~4~^~FLA~^^^^^^^^^^~01/01/2003~
-~06009~^~337~^8507.^0^^~4~^~FLA~^^^^^^^^^^~01/01/2003~
-~06009~^~338~^4.^0^^~4~^~FLA~^^^^^^^^^^~01/01/2003~
-~06009~^~417~^15.^0^^~4~^~FLA~^^^^^^^^^^~12/01/1997~
-~06009~^~431~^12.^0^^~4~^~NC~^^^^^^^^^^~05/01/2000~
-~06009~^~432~^4.^3^0.^~1~^^^^^^^^^^^
-~06009~^~435~^23.^0^^~4~^~NC~^^^^^^^^^^~06/01/2008~
-~06009~^~601~^4.^0^^~1~^^^^^^^^^^^~02/01/1980~
-~06010~^~208~^72.^0^^~4~^~NC~^^^^^^^^^^~02/01/1980~
-~06010~^~262~^0.^0^^~4~^~FLA~^^^^^^^^^^~01/01/2003~
-~06010~^~263~^0.^0^^~4~^~FLA~^^^^^^^^^^~01/01/2003~
-~06010~^~268~^301.^0^^~4~^^^^^^^^^^^~05/01/2005~
-~06010~^~301~^32.^14^2.^~1~^^^^^^^^^^^~02/01/1980~
-~06010~^~304~^5.^5^^~1~^^^^^^^^^^^~02/01/1980~
-~06010~^~305~^30.^2^^~1~^^^^^^^^^^^~02/01/1980~
-~06010~^~306~^98.^2^^~1~^^^^^^^^^^^~02/01/1980~
-~06010~^~307~^516.^1^^~8~^~LC~^^^^^^^^^^~07/01/2010~
-~06010~^~318~^282.^0^^~4~^~FLA~^^^^^^^^^^~01/01/2003~
-~06010~^~319~^9.^0^^~4~^~FLA~^^^^^^^^^^~01/01/2003~
-~06010~^~320~^22.^0^^~4~^~FLA~^^^^^^^^^^~01/01/2003~
-~06010~^~321~^151.^0^^~4~^~FLA~^^^^^^^^^^~01/01/2003~
-~06010~^~322~^0.^0^^~4~^~FLA~^^^^^^^^^^~01/01/2003~
-~06010~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~
-~06010~^~334~^0.^0^^~4~^~FLA~^^^^^^^^^^~01/01/2003~
-~06010~^~337~^0.^0^^~4~^~FLA~^^^^^^^^^^~01/01/2003~
-~06010~^~338~^155.^0^^~4~^~FLA~^^^^^^^^^^~01/01/2003~
-~06010~^~417~^2.^4^0.^~1~^^^^^^^^^^^~02/01/1980~
-~06010~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~
-~06010~^~432~^2.^4^0.^~1~^^^^^^^^^^^~01/01/2003~
-~06010~^~435~^2.^0^^~4~^~NC~^^^^^^^^^^~06/01/2008~
-~06010~^~601~^11.^0^^~1~^^^^^^^^^^^~02/01/1980~
-~06011~^~208~^82.^0^^~4~^~NC~^^^^^^^^^^~05/01/2013~
-~06011~^~262~^0.^0^^~4~^~FLA~^^^^^^^^^^~01/01/2003~
-~06011~^~263~^0.^0^^~4~^~FLA~^^^^^^^^^^~01/01/2003~
-~06011~^~268~^342.^0^^~4~^~NC~^^^^^^^^^^~05/01/2013~
-~06011~^~301~^36.^0^^~12~^~MA~^^^^^^^^^^~05/01/2013~
-~06011~^~304~^12.^0^^~12~^~MA~^^^^^^^^^^~05/01/2013~
-~06011~^~305~^33.^0^^~12~^~MA~^^^^^^^^^^~05/01/2013~
-~06011~^~306~^37.^0^^~12~^~MA~^^^^^^^^^^~05/01/2013~
-~06011~^~307~^692.^0^^~12~^~MA~^^^^^^^^^^~03/01/2013~
-~06011~^~318~^235.^0^^~4~^~NC~^^^^^^^^^^~05/01/2013~
-~06011~^~319~^69.^0^^~4~^~FLA~^^^^^^^^^^~01/01/2003~
-~06011~^~320~^69.^0^^~4~^~NC~^^^^^^^^^^~05/01/2013~
-~06011~^~321~^2.^0^^~12~^~MA~^^^^^^^^^^~05/01/2013~
-~06011~^~322~^0.^0^^~12~^~MA~^^^^^^^^^^~05/01/2013~
-~06011~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~
-~06011~^~334~^0.^0^^~4~^~FLA~^^^^^^^^^^~01/01/2003~
-~06011~^~337~^0.^0^^~4~^~FLA~^^^^^^^^^^~01/01/2003~
-~06011~^~338~^1.^0^^~4~^~FLA~^^^^^^^^^^~01/01/2003~
-~06011~^~417~^3.^0^^~4~^^^^^^^^^^^~02/01/1980~
-~06011~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~
-~06011~^~432~^3.^0^^~4~^^^^^^^^^^^~01/01/2003~
-~06011~^~435~^3.^0^^~4~^~NC~^^^^^^^^^^~06/01/2008~
-~06011~^~601~^3.^0^^~12~^~MA~^^^^^^^^^^~05/01/2013~
-~06013~^~208~^31.^0^^~4~^~NC~^^^^^^^^^^~02/01/1980~
-~06013~^~262~^0.^0^^~4~^~FLA~^^^^^^^^^^~01/01/2003~
-~06013~^~263~^0.^0^^~4~^~FLA~^^^^^^^^^^~01/01/2003~
-~06013~^~268~^130.^0^^~4~^^^^^^^^^^^~05/01/2005~
-~06013~^~301~^6.^10^0.^~1~^^^^^^^^^^^~02/01/1980~
-~06013~^~304~^2.^1^^~1~^^^^^^^^^^^~02/01/1980~
-~06013~^~305~^60.^1^^~1~^^^^^^^^^^^~02/01/1980~
-~06013~^~306~^170.^1^^~1~^^^^^^^^^^^~02/01/1980~
-~06013~^~307~^621.^1^^~8~^~LC~^^^^^^^^^^~07/01/2010~
-~06013~^~318~^0.^0^^~4~^~NC~^^^^^^^^^^~06/01/2003~
-~06013~^~319~^0.^0^^~4~^~FLA~^^^^^^^^^^~01/01/2003~
-~06013~^~320~^0.^0^^~4~^~NC~^^^^^^^^^^~06/01/2003~
-~06013~^~321~^0.^0^^~4~^~FLA~^^^^^^^^^^~01/01/2003~
-~06013~^~322~^0.^0^^~4~^~FLA~^^^^^^^^^^~01/01/2003~
-~06013~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~
-~06013~^~334~^0.^0^^~4~^~FLA~^^^^^^^^^^~01/01/2003~
-~06013~^~337~^0.^0^^~4~^~FLA~^^^^^^^^^^~01/01/2003~
-~06013~^~338~^0.^0^^~4~^~FLA~^^^^^^^^^^~01/01/2003~
-~06013~^~417~^4.^0^^~4~^^^^^^^^^^^~02/01/1980~
-~06013~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~
-~06013~^~432~^4.^0^^~4~^^^^^^^^^^^~01/01/2003~
-~06013~^~435~^4.^0^^~4~^~NC~^^^^^^^^^^~06/01/2008~
-~06013~^~601~^1.^0^^~1~^^^^^^^^^^^~02/01/1980~
-~06015~^~208~^71.^0^^~4~^~NC~^^^^^^^^^^~02/01/1980~
-~06015~^~262~^0.^0^^~4~^~FLA~^^^^^^^^^^~01/01/2003~
-~06015~^~263~^0.^0^^~4~^~FLA~^^^^^^^^^^~01/01/2003~
-~06015~^~268~^297.^0^^~4~^^^^^^^^^^^~05/01/2005~
-~06015~^~301~^10.^10^0.^~1~^^^^^^^^^^^~02/01/1980~
-~06015~^~304~^3.^0^^~4~^^^^^^^^^^^~02/01/1980~
-~06015~^~305~^45.^1^^~1~^^^^^^^^^^^~02/01/1980~
-~06015~^~306~^70.^1^^~1~^^^^^^^^^^^~02/01/1980~
-~06015~^~307~^354.^10^6.^~1~^^^^^^^^^^^~02/01/1980~
-~06015~^~318~^511.^0^^~4~^~NC~^^^^^^^^^^~01/01/2003~
-~06015~^~319~^2.^0^^~4~^~FLA~^^^^^^^^^^~01/01/2003~
-~06015~^~320~^27.^0^^~4~^~NC~^^^^^^^^^^~01/01/2003~
-~06015~^~321~^249.^0^^~4~^~FLA~^^^^^^^^^^~01/01/2003~
-~06015~^~322~^104.^0^^~4~^~FLA~^^^^^^^^^^~01/01/2003~
-~06015~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~
-~06015~^~334~^3.^0^^~4~^~FLA~^^^^^^^^^^~01/01/2003~
-~06015~^~337~^73.^0^^~4~^~FLA~^^^^^^^^^^~01/01/2003~
-~06015~^~338~^56.^0^^~4~^~FLA~^^^^^^^^^^~01/01/2003~
-~06015~^~417~^2.^3^0.^~1~^^^^^^^^^^^~02/01/1980~
-~06015~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~
-~06015~^~432~^2.^3^0.^~1~^^^^^^^^^^^~01/01/2003~
-~06015~^~435~^2.^0^^~4~^~NC~^^^^^^^^^^~03/01/2008~
-~06015~^~601~^12.^0^^~1~^^^^^^^^^^^~02/01/1980~
-~06016~^~208~^90.^0^^~4~^~NC~^^^^^^^^^^~11/01/2006~
-~06016~^~262~^0.^0^^~4~^~FLA~^^^^^^^^^^~01/01/2003~
-~06016~^~263~^0.^0^^~4~^~FLA~^^^^^^^^^^~01/01/2003~
-~06016~^~268~^377.^0^^~4~^~NC~^^^^^^^^^^~11/01/2006~
-~06016~^~301~^14.^6^0.^~1~^~A~^^^1^^^^^^^~04/01/2004~
-~06016~^~304~^4.^6^0.^~1~^~A~^^^1^^^^^^^~04/01/2004~
-~06016~^~305~^31.^6^0.^~1~^~A~^^^1^^^^^^^~04/01/2004~
-~06016~^~306~^49.^6^1.^~1~^~A~^^^1^^^^^^^~04/01/2004~
-~06016~^~307~^702.^1^^~8~^~LC~^^^1^^^^^^^~07/01/2010~
-~06016~^~318~^182.^0^^~4~^~NC~^^^^^^^^^^~04/01/2004~
-~06016~^~319~^41.^0^^~4~^~FLA~^^^^^^^^^^~01/01/2003~
-~06016~^~320~^43.^0^^~4~^~NC~^^^^^^^^^^~04/01/2004~
-~06016~^~321~^28.^0^^~4~^~FLA~^^^^^^^^^^~01/01/2003~
-~06016~^~322~^0.^0^^~4~^~FLA~^^^^^^^^^^~01/01/2003~
-~06016~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~
-~06016~^~334~^0.^0^^~4~^~FLA~^^^^^^^^^^~01/01/2003~
-~06016~^~337~^0.^0^^~4~^~FLA~^^^^^^^^^^~01/01/2003~
-~06016~^~338~^1.^0^^~4~^~FLA~^^^^^^^^^^~01/01/2003~
-~06016~^~417~^2.^1^^~1~^~A~^^^^^^^^^^~04/01/2004~
-~06016~^~431~^0.^0^^~4~^~FLA~^^^^^^^^^^~04/01/2004~
-~06016~^~432~^2.^0^^~4~^~NC~^^^^^^^^^^~04/01/2004~
-~06016~^~435~^2.^0^^~4~^~NC~^^^^^^^^^^~06/01/2008~
-~06016~^~601~^8.^3^0.^~1~^~A~^^^1^^^^^^^~04/01/2004~
-~06017~^~208~^45.^0^^~4~^~NC~^^^^^^^^^^~02/01/1980~
-~06017~^~268~^188.^0^^~4~^^^^^^^^^^^~11/01/2006~
-~06017~^~301~^19.^10^1.^~1~^^^^^^^^^^^~02/01/1980~
-~06017~^~304~^3.^1^^~1~^^^^^^^^^^^~02/01/1980~
-~06017~^~305~^20.^1^^~1~^^^^^^^^^^^~02/01/1980~
-~06017~^~306~^60.^1^^~1~^^^^^^^^^^^~02/01/1980~
-~06017~^~307~^693.^0^^~8~^~LC~^^^^^^^^^^~06/01/2008~
-~06017~^~318~^98.^0^^~4~^~NC~^^^^^^^^^^~06/01/2008~
-~06017~^~319~^0.^0^^~4~^~FLA~^^^^^^^^^^~02/01/2003~
-~06017~^~320~^5.^0^^~4~^~NC~^^^^^^^^^^~02/01/2003~
-~06017~^~321~^57.^0^^~4~^~FLA~^^^^^^^^^^~02/01/2003~
-~06017~^~322~^0.^0^^~4~^~FLA~^^^^^^^^^^~02/01/2003~
-~06017~^~334~^2.^0^^~4~^~FLA~^^^^^^^^^^~02/01/2003~
-~06017~^~337~^1416.^0^^~4~^~FLA~^^^^^^^^^^~02/01/2003~
-~06017~^~338~^74.^0^^~4~^~FLA~^^^^^^^^^^~02/01/2003~
-~06017~^~417~^5.^0^^~4~^^^^^^^^^^^~02/01/1980~
-~06017~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~
-~06017~^~432~^5.^0^^~4~^^^^^^^^^^^~02/01/2003~
-~06017~^~435~^5.^0^^~4~^~NC~^^^^^^^^^^~06/01/2008~
-~06017~^~601~^3.^0^^~1~^^^^^^^^^^^~02/01/1980~
-~06018~^~208~^41.^0^^~4~^~NC~^^^^^^^^^^~05/01/2014~
-~06018~^~262~^0.^0^^~4~^~FLC~^^^^^^^^^^~11/01/2006~
-~06018~^~263~^0.^0^^~4~^~FLC~^^^^^^^^^^~11/01/2006~
-~06018~^~268~^170.^0^^~4~^~NC~^^^^^^^^^^~05/01/2014~
-~06018~^~301~^11.^10^0.^~1~^~A~^^^1^9.^12.^9^10.^11.^~4~^~02/01/2011~
-~06018~^~304~^7.^10^0.^~1~^~A~^^^1^6.^8.^9^6.^7.^~4~^~02/01/2011~
-~06018~^~305~^36.^10^1.^~1~^~A~^^^1^28.^40.^9^33.^38.^~4~^~02/01/2011~
-~06018~^~306~^117.^10^11.^~1~^~A~^^^1^73.^159.^9^91.^141.^~4~^~02/01/2011~
-~06018~^~307~^306.^10^8.^~1~^~A~^^^1^272.^338.^9^288.^324.^~4~^~02/01/2011~
-~06018~^~318~^1224.^0^^~4~^~NC~^^^^^^^^^^~11/01/2006~
-~06018~^~319~^1.^0^^~4~^~FLC~^^^^^^^^^^~11/01/2006~
-~06018~^~320~^62.^0^^~4~^~NC~^^^^^^^^^^~11/01/2006~
-~06018~^~321~^593.^0^^~4~^~FLC~^^^^^^^^^^~11/01/2006~
-~06018~^~322~^266.^0^^~4~^~FLC~^^^^^^^^^^~11/01/2006~
-~06018~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~
-~06018~^~334~^14.^0^^~4~^~FLC~^^^^^^^^^^~11/01/2006~
-~06018~^~337~^0.^0^^~4~^~FLC~^^^^^^^^^^~11/01/2006~
-~06018~^~338~^58.^0^^~4~^~FLC~^^^^^^^^^^~11/01/2006~
-~06018~^~417~^9.^0^^~4~^~FLC~^^^^^^^^^^~11/01/2006~
-~06018~^~431~^3.^0^^~4~^~FLC~^^^^^^^^^^~11/01/2006~
-~06018~^~432~^6.^0^^~4~^~FLC~^^^^^^^^^^~11/01/2006~
-~06018~^~435~^11.^0^^~4~^~NC~^^^^^^^^^^~03/01/2008~
-~06018~^~601~^5.^0^^~4~^~FLC~^^^^^^^^^^~11/01/2006~
-~06019~^~208~^48.^0^^~4~^~NC~^^^^^^^^^^~03/01/2014~
-~06019~^~262~^0.^0^^~4~^~FLC~^^^^^^^^^^~11/01/2006~
-~06019~^~263~^0.^0^^~4~^~FLC~^^^^^^^^^^~11/01/2006~
-~06019~^~268~^200.^0^^~4~^~NC~^^^^^^^^^^~03/01/2014~
-~06019~^~301~^6.^12^0.^~1~^~A~^^^1^5.^13.^6^5.^6.^~2, 3~^~03/01/2014~
-~06019~^~304~^8.^12^0.^~1~^~A~^^^1^6.^9.^6^7.^8.^~2, 3~^~04/01/2004~
-~06019~^~305~^38.^12^0.^~1~^~A~^^^1^31.^40.^8^36.^38.^~2, 3~^~03/01/2014~
-~06019~^~306~^48.^12^3.^~1~^~A~^^^1^31.^215.^5^39.^56.^~2, 3~^~03/01/2014~
-~06019~^~307~^681.^12^6.^~1~^~A~^^^1^491.^764.^10^666.^695.^~2, 3~^~03/01/2014~
-~06019~^~318~^410.^13^65.^~8~^~LC~^^^1^3.^794.^12^267.^553.^~4~^~03/01/2014~
-~06019~^~319~^2.^0^^~4~^~FLC~^^^^^^^^^^~11/01/2006~
-~06019~^~320~^22.^0^^~4~^~NC~^^^^^^^^^^~11/01/2006~
-~06019~^~321~^243.^0^^~4~^~FLC~^^^^^^^^^^~11/01/2006~
-~06019~^~322~^0.^0^^~4~^~FLC~^^^^^^^^^^~11/01/2006~
-~06019~^~324~^0.^0^^~4~^~FLC~^^^^^^^^^^~03/01/2014~
-~06019~^~334~^0.^0^^~4~^~FLC~^^^^^^^^^^~11/01/2006~
-~06019~^~337~^0.^0^^~4~^~FLC~^^^^^^^^^^~11/01/2006~
-~06019~^~338~^7.^0^^~4~^~FLC~^^^^^^^^^^~11/01/2006~
-~06019~^~417~^14.^0^^~4~^~FLC~^^^^^^^^^^~03/01/2014~
-~06019~^~431~^10.^0^^~4~^~FLC~^^^^^^^^^^~03/01/2014~
-~06019~^~432~^5.^0^^~4~^~FLC~^^^^^^^^^^~03/01/2014~
-~06019~^~435~^21.^0^^~4~^~NC~^^^^^^^^^^~03/01/2014~
-~06019~^~601~^8.^13^0.^~8~^~LC~^^^1^4.^12.^12^6.^10.^~4~^~03/01/2014~
-~06022~^~208~^53.^0^^~4~^~NC~^^^^^^^^^^~02/01/1980~
-~06022~^~262~^0.^0^^~4~^~FLA~^^^^^^^^^^~01/01/2003~
-~06022~^~263~^0.^0^^~4~^~FLA~^^^^^^^^^^~01/01/2003~
-~06022~^~268~^222.^0^^~4~^^^^^^^^^^^~05/01/2005~
-~06022~^~301~^14.^10^0.^~1~^^^^^^^^^^^~02/01/1980~
-~06022~^~304~^4.^0^^~4~^^^^^^^^^^^~02/01/1980~
-~06022~^~305~^30.^0^^~4~^^^^^^^^^^^~02/01/1980~
-~06022~^~306~^45.^0^^~4~^^^^^^^^^^^~02/01/1980~
-~06022~^~307~^370.^10^7.^~1~^^^^^^^^^^^~02/01/1980~
-~06022~^~318~^2418.^0^^~4~^~NC~^^^^^^^^^^~01/01/2003~
-~06022~^~319~^1.^0^^~4~^~FLA~^^^^^^^^^^~01/01/2003~
-~06022~^~320~^122.^0^^~4~^~NC~^^^^^^^^^^~01/01/2003~
-~06022~^~321~^1183.^0^^~4~^~FLA~^^^^^^^^^^~01/01/2003~
-~06022~^~322~^529.^0^^~4~^~FLA~^^^^^^^^^^~01/01/2003~
-~06022~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~
-~06022~^~334~^1.^0^^~4~^~FLA~^^^^^^^^^^~01/01/2003~
-~06022~^~337~^13.^0^^~4~^~FLA~^^^^^^^^^^~01/01/2003~
-~06022~^~338~^96.^0^^~4~^~FLA~^^^^^^^^^^~01/01/2003~
-~06022~^~417~^2.^3^0.^~1~^^^^^^^^^^^~02/01/1980~
-~06022~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~
-~06022~^~432~^2.^3^0.^~1~^^^^^^^^^^^~01/01/2003~
-~06022~^~435~^2.^0^^~4~^~NC~^^^^^^^^^^~11/01/2006~
-~06022~^~601~^5.^0^^~1~^^^^^^^^^^^~02/01/1980~
-~06023~^~208~^68.^0^^~12~^~MA~^^^^^^^^^^~05/01/2013~
-~06023~^~262~^0.^0^^~4~^~FLA~^^^^^^^^^^~01/01/2003~
-~06023~^~263~^0.^0^^~4~^~FLA~^^^^^^^^^^~01/01/2003~
-~06023~^~268~^285.^0^^~12~^~MA~^^^^^^^^^^~05/01/2013~
-~06023~^~301~^41.^0^^~12~^~MA~^^^^^^^^^^~05/01/2013~
-~06023~^~304~^10.^0^^~12~^~MA~^^^^^^^^^^~05/01/2013~
-~06023~^~305~^42.^0^^~12~^~MA~^^^^^^^^^^~05/01/2013~
-~06023~^~306~^34.^0^^~12~^~MA~^^^^^^^^^^~05/01/2013~
-~06023~^~307~^645.^0^^~12~^~MA~^^^^^^^^^^~05/01/2013~
-~06023~^~318~^498.^0^^~4~^~NC~^^^^^^^^^^~05/01/2013~
-~06023~^~319~^0.^0^^~4~^~FLA~^^^^^^^^^^~01/01/2003~
-~06023~^~320~^25.^0^^~4~^~NC~^^^^^^^^^^~05/01/2013~
-~06023~^~321~^257.^0^^~12~^~MA~^^^^^^^^^^~05/01/2013~
-~06023~^~322~^84.^0^^~12~^~MA~^^^^^^^^^^~05/01/2013~
-~06023~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~
-~06023~^~334~^0.^0^^~4~^~FLA~^^^^^^^^^^~01/01/2003~
-~06023~^~337~^0.^0^^~4~^~FLA~^^^^^^^^^^~01/01/2003~
-~06023~^~338~^6.^0^^~4~^~FLA~^^^^^^^^^^~01/01/2003~
-~06023~^~417~^1.^13^0.^~1~^^^^^^^^^^^~02/01/1980~
-~06023~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~
-~06023~^~432~^1.^13^0.^~1~^^^^^^^^^^^~01/01/2003~
-~06023~^~435~^1.^0^^~4~^~NC~^^^^^^^^^^~06/01/2008~
-~06023~^~601~^4.^0^^~12~^~MA~^^^^^^^^^^~05/01/2013~
-~06024~^~208~^33.^0^^~4~^~NC~^^^^^^^^^^~04/01/2013~
-~06024~^~262~^0.^0^^~4~^~FLC~^^^^^^^^^^~04/01/2013~
-~06024~^~263~^0.^0^^~4~^~FLC~^^^^^^^^^^~04/01/2013~
-~06024~^~268~^137.^0^^~4~^~NC~^^^^^^^^^^~04/01/2013~
-~06024~^~301~^14.^10^1.^~1~^~A~^^^1^9.^18.^9^11.^16.^~2, 3~^~04/01/2013~
-~06024~^~304~^8.^10^0.^~1~^~A~^^^1^6.^9.^9^7.^8.^~2, 3~^~04/01/2013~
-~06024~^~305~^35.^10^1.^~1~^~A~^^^1^28.^42.^9^31.^39.^~2, 3~^~04/01/2013~
-~06024~^~306~^133.^10^11.^~1~^~A~^^^1^98.^191.^9^108.^158.^~2, 3~^~04/01/2013~
-~06024~^~307~^229.^10^10.^~1~^~A~^^^1^170.^263.^9^204.^254.^~2, 3~^~04/01/2013~
-~06024~^~318~^1044.^0^^~4~^~NC~^^^^^^^^^^~04/01/2013~
-~06024~^~319~^0.^0^^~4~^~FLC~^^^^^^^^^^~04/01/2013~
-~06024~^~320~^52.^0^^~4~^~NC~^^^^^^^^^^~04/01/2013~
-~06024~^~321~^512.^7^32.^~1~^~A~^^^1^404.^672.^6^431.^592.^~2, 3~^~04/01/2013~
-~06024~^~322~^224.^7^18.^~1~^~A~^^^1^156.^293.^6^179.^268.^~2, 3~^~04/01/2013~
-~06024~^~324~^0.^0^^~4~^~FLC~^^^^^^^^^^~04/01/2013~
-~06024~^~334~^3.^0^^~4~^~FLC~^^^^^^^^^^~04/01/2013~
-~06024~^~337~^70.^7^32.^~1~^~A~^^^1^0.^171.^6^-10.^150.^~1, 2, 3~^~04/01/2013~
-~06024~^~338~^134.^7^13.^~1~^~A~^^^1^89.^185.^6^101.^165.^~2, 3~^~04/01/2013~
-~06024~^~417~^13.^4^1.^~1~^~A~^^^1^10.^16.^3^8.^17.^~2, 3~^~04/01/2013~
-~06024~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~
-~06024~^~432~^13.^4^1.^~1~^~A~^^^1^10.^16.^3^8.^17.^^~04/01/2013~
-~06024~^~435~^13.^0^^~4~^~NC~^^^^^^^^^^~04/01/2013~
-~06024~^~601~^3.^7^0.^~1~^~A~^^^1^1.^4.^6^1.^3.^~2, 3~^~04/01/2013~
-~06025~^~208~^61.^0^^~4~^~NC~^^^^^^^^^^~02/01/1980~
-~06025~^~262~^0.^0^^~4~^~FLA~^^^^^^^^^^~01/01/2003~
-~06025~^~263~^0.^0^^~4~^~FLA~^^^^^^^^^^~01/01/2003~
-~06025~^~268~^255.^0^^~4~^^^^^^^^^^^~05/01/2005~
-~06025~^~301~^14.^11^^~1~^^^^^^^^^^^~02/01/1980~
-~06025~^~304~^5.^1^^~1~^^^^^^^^^^^~02/01/1980~
-~06025~^~305~^33.^2^^~1~^^^^^^^^^^^~02/01/1980~
-~06025~^~306~^126.^2^^~1~^^^^^^^^^^^~02/01/1980~
-~06025~^~307~^706.^0^^~8~^~LC~^^^^^^^^^^~06/01/2012~
-~06025~^~318~^2136.^0^^~4~^~NC~^^^^^^^^^^~01/01/2003~
-~06025~^~319~^2.^0^^~4~^~FLA~^^^^^^^^^^~01/01/2003~
-~06025~^~320~^109.^0^^~4~^~NC~^^^^^^^^^^~01/01/2003~
-~06025~^~321~^1042.^0^^~4~^~FLA~^^^^^^^^^^~01/01/2003~
-~06025~^~322~^466.^0^^~4~^~FLA~^^^^^^^^^^~01/01/2003~
-~06025~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~
-~06025~^~334~^3.^0^^~4~^~FLA~^^^^^^^^^^~01/01/2003~
-~06025~^~337~^328.^0^^~4~^~FLA~^^^^^^^^^^~01/01/2003~
-~06025~^~338~^73.^0^^~4~^~FLA~^^^^^^^^^^~01/01/2003~
-~06025~^~417~^4.^0^^~4~^^^^^^^^^^^~02/01/1980~
-~06025~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~
-~06025~^~432~^4.^0^^~4~^^^^^^^^^^^~01/01/2003~
-~06025~^~435~^4.^0^^~4~^~NC~^^^^^^^^^^~06/01/2008~
-~06025~^~601~^7.^0^^~1~^^^^^^^^^^^~02/01/1980~
-~06026~^~208~^117.^0^^~4~^~NC~^^^^^^^^^^~11/01/2006~
-~06026~^~262~^0.^0^^~4~^~FLA~^^^^^^^^^^~11/01/2006~
-~06026~^~263~^0.^0^^~4~^~FLA~^^^^^^^^^^~11/01/2006~
-~06026~^~268~^489.^0^^~4~^~NC~^^^^^^^^^^~11/01/2006~
-~06026~^~301~^33.^14^1.^~1~^^^^^^^^^^^~02/01/1980~
-~06026~^~304~^19.^0^^~4~^~FLA~^^^^^^^^^^~11/01/2006~
-~06026~^~305~^113.^2^^~1~^^^^^^^^^^^~02/01/1980~
-~06026~^~306~^400.^2^^~1~^^^^^^^^^^^~02/01/1980~
-~06026~^~307~^788.^6^^~1~^^^^^^^^^^^~02/01/1980~
-~06026~^~318~^1149.^0^^~4~^~NC~^^^^^^^^^^~11/01/2006~
-~06026~^~319~^0.^0^^~4~^~FLA~^^^^^^^^^^~02/01/2003~
-~06026~^~320~^57.^0^^~4~^~FLA~^^^^^^^^^^~11/01/2006~
-~06026~^~321~^603.^0^^~4~^~FLA~^^^^^^^^^^~11/01/2006~
-~06026~^~322~^27.^0^^~4~^~FLA~^^^^^^^^^^~11/01/2006~
-~06026~^~334~^147.^0^^~4~^~FLA~^^^^^^^^^^~11/01/2006~
-~06026~^~337~^2584.^0^^~4~^~FLA~^^^^^^^^^^~11/01/2006~
-~06026~^~338~^178.^0^^~4~^~FLA~^^^^^^^^^^~11/01/2006~
-~06026~^~417~^9.^0^^~4~^~FLA~^^^^^^^^^^~11/01/2006~
-~06026~^~431~^0.^0^^~4~^~FLA~^^^^^^^^^^~11/01/2006~
-~06026~^~432~^9.^0^^~4~^~FLA~^^^^^^^^^^~11/01/2006~
-~06026~^~435~^9.^0^^~4~^~NC~^^^^^^^^^^~11/01/2006~
-~06026~^~601~^10.^0^^~4~^~FLA~^^^^^^^^^^~11/01/2006~
-~06027~^~208~^56.^0^^~4~^~NC~^^^^^^^^^^~02/01/1980~
-~06027~^~262~^0.^0^^~4~^~FLA~^^^^^^^^^^~01/01/2003~
-~06027~^~263~^0.^0^^~4~^~FLA~^^^^^^^^^^~01/01/2003~
-~06027~^~268~^234.^0^^~4~^^^^^^^^^^^~03/01/2009~
-~06027~^~301~^28.^10^1.^~1~^^^^^^^^^^^~02/01/1980~
-~06027~^~304~^8.^0^^~4~^^^^^^^^^^^~02/01/1980~
-~06027~^~305~^35.^1^^~1~^^^^^^^^^^^~02/01/1980~
-~06027~^~306~^160.^1^^~1~^^^^^^^^^^^~02/01/1980~
-~06027~^~307~^417.^10^14.^~1~^^^^^^^^^^^~02/01/1980~
-~06027~^~318~^1340.^0^^~4~^~NC~^^^^^^^^^^~03/01/2009~
-~06027~^~319~^3.^0^^~4~^~FLA~^^^^^^^^^^~01/01/2003~
-~06027~^~320~^70.^0^^~4~^~NC~^^^^^^^^^^~03/01/2009~
-~06027~^~321~^662.^0^^~4~^~FLA~^^^^^^^^^^~01/01/2003~
-~06027~^~322~^270.^0^^~4~^~FLA~^^^^^^^^^^~01/01/2003~
-~06027~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2009~
-~06027~^~334~^0.^0^^~4~^~FLA~^^^^^^^^^^~01/01/2003~
-~06027~^~337~^5112.^0^^~4~^~FLA~^^^^^^^^^^~01/01/2003~
-~06027~^~338~^33.^0^^~4~^~FLA~^^^^^^^^^^~01/01/2003~
-~06027~^~417~^4.^3^0.^~1~^^^^^^^^^^^~02/01/1980~
-~06027~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~
-~06027~^~432~^4.^3^0.^~1~^^^^^^^^^^^~03/01/2009~
-~06027~^~435~^4.^0^^~4~^~NC~^^^^^^^^^^~03/01/2009~
-~06027~^~601~^6.^0^^~1~^^^^^^^^^^^~02/01/1980~
-~06028~^~208~^61.^0^^~4~^~NC~^^^^^^^^^^~02/01/1980~
-~06028~^~262~^0.^0^^~4~^~FLA~^^^^^^^^^^~02/01/2003~
-~06028~^~263~^0.^0^^~4~^~FLA~^^^^^^^^^^~02/01/2003~
-~06028~^~268~^255.^0^^~4~^^^^^^^^^^^~11/01/2006~
-~06028~^~301~^19.^10^0.^~1~^^^^^^^^^^^~02/01/1980~
-~06028~^~304~^8.^1^^~1~^^^^^^^^^^^~02/01/1980~
-~06028~^~305~^33.^1^^~1~^^^^^^^^^^^~02/01/1980~
-~06028~^~306~^150.^1^^~1~^^^^^^^^^^^~02/01/1980~
-~06028~^~307~^698.^0^^~8~^~LC~^^^^^^^^^^~06/01/2012~
-~06028~^~318~^762.^0^^~4~^~NC~^^^^^^^^^^~02/01/2003~
-~06028~^~319~^3.^0^^~4~^~FLA~^^^^^^^^^^~02/01/2003~
-~06028~^~320~^41.^0^^~4~^~NC~^^^^^^^^^^~02/01/2003~
-~06028~^~321~^399.^0^^~4~^~FLA~^^^^^^^^^^~02/01/2003~
-~06028~^~322~^87.^0^^~4~^~FLA~^^^^^^^^^^~02/01/2003~
-~06028~^~334~^15.^0^^~4~^~FLA~^^^^^^^^^^~02/01/2003~
-~06028~^~337~^6426.^0^^~4~^~FLA~^^^^^^^^^^~02/01/2003~
-~06028~^~338~^27.^0^^~4~^~FLA~^^^^^^^^^^~02/01/2003~
-~06028~^~417~^8.^3^0.^~1~^^^^^^^^^^^~02/01/1980~
-~06028~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~
-~06028~^~432~^8.^3^0.^~1~^^^^^^^^^^^~02/01/2003~
-~06028~^~435~^8.^0^^~4~^~NC~^^^^^^^^^^~06/01/2008~
-~06028~^~601~^2.^0^^~1~^^^^^^^^^^^~02/01/1980~
-~06030~^~208~^72.^0^^~4~^~FLA~^^^^^^^^^^~11/01/2006~
-~06030~^~262~^0.^0^^~4~^~FLA~^^^^^^^^^^~01/01/2003~
-~06030~^~263~^0.^0^^~4~^~FLA~^^^^^^^^^^~01/01/2003~
-~06030~^~268~^303.^0^^~4~^~FLA~^^^^^^^^^^~11/01/2006~
-~06030~^~301~^16.^0^^~4~^~FLA~^^^^^^^^^^~11/01/2006~
-~06030~^~304~^13.^0^^~4~^~FLA~^^^^^^^^^^~11/01/2006~
-~06030~^~305~^260.^0^^~4~^~FLA~^^^^^^^^^^~11/01/2006~
-~06030~^~306~^221.^0^^~4~^~FLA~^^^^^^^^^^~11/01/2006~
-~06030~^~307~^516.^1^^~8~^~LC~^^^^^^^^^^~07/01/2010~
-~06030~^~318~^58.^0^^~4~^~FLA~^^^^^^^^^^~11/01/2006~
-~06030~^~319~^17.^0^^~4~^~FLA~^^^^^^^^^^~11/01/2006~
-~06030~^~320~^17.^0^^~4~^~FLA~^^^^^^^^^^~11/01/2006~
-~06030~^~321~^0.^0^^~4~^~FLA~^^^^^^^^^^~11/01/2006~
-~06030~^~322~^0.^0^^~4~^~FLA~^^^^^^^^^^~11/01/2006~
-~06030~^~324~^0.^0^^~4~^~FLA~^^^^^^^^^^~11/01/2006~
-~06030~^~334~^0.^0^^~4~^~FLA~^^^^^^^^^^~11/01/2006~
-~06030~^~337~^0.^0^^~4~^~FLA~^^^^^^^^^^~01/01/2003~
-~06030~^~338~^3.^0^^~4~^~FLA~^^^^^^^^^^~11/01/2006~
-~06030~^~417~^14.^0^^~4~^~FLA~^^^^^^^^^^~11/01/2006~
-~06030~^~431~^0.^0^^~4~^~FLA~^^^^^^^^^^~11/01/2006~
-~06030~^~432~^14.^0^^~4~^~FLA~^^^^^^^^^^~11/01/2006~
-~06030~^~435~^14.^0^^~4~^~NC~^^^^^^^^^^~03/01/2009~
-~06030~^~601~^6.^0^^~4~^~FLA~^^^^^^^^^^~11/01/2006~
-~06032~^~208~^11.^0^^~4~^~NC~^^^^^^^^^^~05/01/2014~
-~06032~^~262~^0.^0^^~4~^~FLA~^^^^^^^^^^~01/01/2003~
-~06032~^~263~^0.^0^^~4~^~FLA~^^^^^^^^^^~01/01/2003~
-~06032~^~268~^48.^0^^~4~^~NC~^^^^^^^^^^~05/01/2014~
-~06032~^~301~^7.^10^0.^~1~^^^^^^^^^^^~02/01/1980~
-~06032~^~304~^4.^0^^~4~^~FLA~^^^^^^^^^^~09/01/2006~
-~06032~^~305~^26.^1^^~1~^^^^^^^^^^^~02/01/1980~
-~06032~^~306~^125.^1^^~1~^^^^^^^^^^^~02/01/1980~
-~06032~^~307~^694.^0^^~8~^~LC~^^^^^^^^^^~06/01/2012~
-~06032~^~318~^0.^0^^~4~^~FLA~^^^^^^^^^^~01/01/2003~
-~06032~^~319~^0.^0^^~4~^~FLA~^^^^^^^^^^~01/01/2003~
-~06032~^~320~^0.^0^^~4~^~NC~^^^^^^^^^^~09/01/2006~
-~06032~^~321~^0.^0^^~4~^~FLA~^^^^^^^^^^~01/01/2003~
-~06032~^~322~^0.^0^^~4~^~FLA~^^^^^^^^^^~01/01/2003~
-~06032~^~334~^0.^0^^~4~^~FLA~^^^^^^^^^^~01/01/2003~
-~06032~^~337~^0.^0^^~4~^~FLA~^^^^^^^^^^~01/01/2003~
-~06032~^~338~^0.^0^^~4~^~FLA~^^^^^^^^^^~01/01/2003~
-~06032~^~417~^5.^0^^~4~^~FLA~^^^^^^^^^^~09/01/2006~
-~06032~^~431~^0.^0^^~4~^~FLA~^^^^^^^^^^~09/01/2006~
-~06032~^~432~^5.^0^^~4~^~FLA~^^^^^^^^^^~09/01/2006~
-~06032~^~435~^5.^0^^~4~^~NC~^^^^^^^^^^~06/01/2008~
-~06032~^~601~^0.^0^^~1~^^^^^^^^^^^~02/01/1980~
-~06037~^~208~^56.^0^^~4~^~NC~^^^^^^^^^^~02/01/1980~
-~06037~^~268~^234.^0^^~4~^^^^^^^^^^^
-~06037~^~301~^17.^2^^~1~^^^^^^^^^^^~02/01/1980~
-~06037~^~304~^9.^0^^~4~^^^^^^^^^^^~02/01/1980~
-~06037~^~305~^74.^1^^~1~^^^^^^^^^^^~02/01/1980~
-~06037~^~306~^144.^0^^~1~^^^^^^^^^^^~02/01/1980~
-~06037~^~307~^532.^1^^~1~^^^^^^^^^^^~02/01/1980~
-~06037~^~318~^145.^2^^~1~^^^^^^^^^^^~02/01/1980~
-~06037~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2002~
-~06037~^~320~^7.^0^^~4~^~NC~^^^^^^^^^^~06/01/2002~
-~06037~^~417~^20.^1^^~1~^^^^^^^^^^^~02/01/1980~
-~06037~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~
-~06037~^~432~^20.^1^^~1~^^^^^^^^^^^~02/01/1980~
-~06037~^~435~^20.^0^^~4~^~NC~^^^^^^^^^^~01/01/2001~
-~06037~^~601~^3.^0^^~1~^^^^^^^^^^^~02/01/1980~
-~06039~^~208~^53.^0^^~4~^~NC~^^^^^^^^^^~02/01/1980~
-~06039~^~262~^0.^0^^~4~^~FLA~^^^^^^^^^^~01/01/2003~
-~06039~^~263~^0.^0^^~4~^~FLA~^^^^^^^^^^~01/01/2003~
-~06039~^~268~^222.^0^^~4~^^^^^^^^^^^~05/01/2005~
-~06039~^~301~^25.^11^0.^~1~^^^^^^^^^^^~02/01/1980~
-~06039~^~304~^6.^0^^~4~^^^^^^^^^^^~02/01/1980~
-~06039~^~305~^46.^0^^~4~^^^^^^^^^^^~02/01/1980~
-~06039~^~306~^255.^0^^~4~^^^^^^^^^^^~02/01/1980~
-~06039~^~307~^288.^0^^~8~^~LC~^^^^^^^^^^~07/01/2010~
-~06039~^~318~^1783.^0^^~4~^~NC~^^^^^^^^^^~01/01/2003~
-~06039~^~319~^0.^0^^~4~^~FLA~^^^^^^^^^^~01/01/2003~
-~06039~^~320~^89.^0^^~4~^~NC~^^^^^^^^^^~01/01/2003~
-~06039~^~321~^885.^0^^~4~^~FLA~^^^^^^^^^^~01/01/2003~
-~06039~^~322~^370.^0^^~4~^~FLA~^^^^^^^^^^~01/01/2003~
-~06039~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~
-~06039~^~334~^0.^0^^~4~^~FLA~^^^^^^^^^^~01/01/2003~
-~06039~^~337~^5963.^0^^~4~^~FLA~^^^^^^^^^^~01/01/2003~
-~06039~^~338~^45.^0^^~4~^~FLA~^^^^^^^^^^~01/01/2003~
-~06039~^~417~^22.^0^^~4~^~BFSN~^^^^^^^^^^~12/01/1997~
-~06039~^~431~^9.^0^^~4~^~NC~^^^^^^^^^^~05/01/2000~
-~06039~^~432~^13.^0^^~4~^^^^^^^^^^^
-~06039~^~435~^28.^0^^~4~^~NC~^^^^^^^^^^~11/01/2006~
-~06039~^~601~^2.^0^^~1~^^^^^^^^^^^~02/01/1980~
-~06040~^~208~^68.^0^^~4~^~NC~^^^^^^^^^^~02/01/1980~
-~06040~^~262~^0.^0^^~4~^~FLA~^^^^^^^^^^~01/01/2003~
-~06040~^~263~^0.^0^^~4~^~FLA~^^^^^^^^^^~01/01/2003~
-~06040~^~268~^285.^0^^~4~^^^^^^^^^^^~05/01/2005~
-~06040~^~301~^28.^10^0.^~1~^^^^^^^^^^^~02/01/1980~
-~06040~^~304~^6.^1^^~1~^^^^^^^^^^^~02/01/1980~
-~06040~^~305~^46.^1^^~1~^^^^^^^^^^^~02/01/1980~
-~06040~^~306~^255.^1^^~1~^^^^^^^^^^^~02/01/1980~
-~06040~^~307~^516.^1^^~8~^~LC~^^^^^^^^^^~07/01/2010~
-~06040~^~318~^1708.^0^^~4~^~NC~^^^^^^^^^^~04/01/2003~
-~06040~^~319~^0.^0^^~4~^~FLA~^^^^^^^^^^~01/01/2003~
-~06040~^~320~^85.^0^^~4~^~NC~^^^^^^^^^^~04/01/2003~
-~06040~^~321~^920.^1^^~1~^~A~^^^^^^^^^^~04/01/2003~
-~06040~^~322~^210.^1^^~1~^~A~^^^^^^^^^^~04/01/2003~
-~06040~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~
-~06040~^~334~^0.^1^^~1~^~A~^^^^^^^^^^~04/01/2003~
-~06040~^~337~^1480.^1^^~1~^~A~^^^^^^^^^^~04/01/2003~
-~06040~^~338~^150.^1^^~1~^~A~^^^^^^^^^^~04/01/2003~
-~06040~^~417~^29.^0^^~4~^~BFSN~^^^^^^^^^^~12/01/1997~
-~06040~^~431~^16.^0^^~4~^~NC~^^^^^^^^^^~05/01/2000~
-~06040~^~432~^13.^3^0.^~1~^^^^^^^^^^^
-~06040~^~435~^40.^0^^~4~^~NC~^^^^^^^^^^~06/01/2008~
-~06040~^~601~^1.^0^^~1~^^^^^^^^^^^~02/01/1980~
-~06042~^~208~^61.^0^^~4~^^^^^^^^^^^~02/01/1980~
-~06042~^~268~^255.^0^^~4~^^^^^^^^^^^~11/01/2006~
-~06042~^~301~^10.^1^^~1~^^^^^^^^^^^~02/01/1980~
-~06042~^~304~^7.^0^^~4~^^^^^^^^^^^~02/01/1980~
-~06042~^~305~^50.^0^^~4~^^^^^^^^^^^~02/01/1980~
-~06042~^~306~^76.^0^^~4~^^^^^^^^^^^~02/01/1980~
-~06042~^~307~^573.^0^^~8~^~LC~^^^^^^^^^^~06/01/2008~
-~06042~^~318~^158.^1^^~1~^^^^^^^^^^^~02/01/1980~
-~06042~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2002~
-~06042~^~320~^8.^0^^~4~^~NC~^^^^^^^^^^~06/01/2002~
-~06042~^~417~^5.^0^^~4~^^^^^^^^^^^~02/01/1980~
-~06042~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~
-~06042~^~432~^5.^0^^~4~^^^^^^^^^^^~02/01/1980~
-~06042~^~435~^5.^0^^~4~^~NC~^^^^^^^^^^~06/01/2008~
-~06042~^~601~^0.^0^^~1~^^^^^^^^^^^~02/01/1980~
-~06043~^~208~^79.^0^^~4~^~NC~^^^^^^^^^^~07/01/2012~
-~06043~^~262~^0.^0^^~4~^~FLA~^^^^^^^^^^~01/01/2003~
-~06043~^~263~^0.^0^^~4~^~FLA~^^^^^^^^^^~01/01/2003~
-~06043~^~268~^331.^0^^~4~^~NC~^^^^^^^^^^~07/01/2012~
-~06043~^~301~^12.^12^1.^~1~^~A~^^^1^8.^18.^11^9.^13.^~2, 3~^~04/01/2004~
-~06043~^~304~^3.^12^0.^~1~^~A~^^^1^3.^5.^11^2.^3.^~2, 3~^~07/01/2012~
-~06043~^~305~^24.^12^1.^~1~^~A~^^^1^17.^33.^11^20.^27.^~2, 3~^~07/01/2012~
-~06043~^~306~^64.^12^1.^~1~^~A~^^^1^56.^72.^11^60.^66.^~2, 3~^~07/01/2012~
-~06043~^~307~^691.^12^17.^~1~^~A~^^^1^553.^790.^11^653.^728.^~2, 3~^~07/01/2012~
-~06043~^~318~^8.^0^^~1~^~AS~^^^^^^^^^^~07/01/2012~
-~06043~^~319~^2.^2^^~1~^~A~^^^1^2.^2.^1^^^^~07/01/2012~
-~06043~^~320~^2.^0^^~1~^~AS~^^^^^^^^^^~07/01/2012~
-~06043~^~321~^0.^2^^~1~^~A~^^^1^0.^1.^1^^^~1~^~07/01/2012~
-~06043~^~322~^0.^2^^~1~^~A~^^^1^0.^0.^^^^~1~^~07/01/2012~
-~06043~^~324~^9.^1^^~1~^~A~^^^^^^^^^^~07/01/2012~
-~06043~^~334~^0.^2^^~1~^~A~^^^1^0.^0.^^^^~1~^~07/01/2012~
-~06043~^~337~^0.^2^^~1~^~A~^^^1^0.^0.^1^^^~1~^~07/01/2012~
-~06043~^~338~^4.^2^^~1~^~A~^^^1^1.^6.^1^^^^~07/01/2012~
-~06043~^~417~^2.^1^^~1~^~A~^^^^^^^^^^~04/01/2004~
-~06043~^~431~^0.^0^^~4~^~NR~^^^^^^^^^^~04/01/2004~
-~06043~^~432~^2.^1^^~1~^~A~^^^^^^^^^^~07/01/2012~
-~06043~^~435~^2.^0^^~4~^~NC~^^^^^^^^^^~06/01/2008~
-~06043~^~601~^0.^2^^~1~^~A~^^^1^0.^0.^^^^~1~^~04/01/2004~
-~06044~^~208~^68.^0^^~4~^~NC~^^^^^^^^^^~02/01/1980~
-~06044~^~262~^0.^0^^~4~^~FLA~^^^^^^^^^^~01/01/2003~
-~06044~^~263~^0.^0^^~4~^~FLA~^^^^^^^^^^~01/01/2003~
-~06044~^~268~^285.^0^^~4~^^^^^^^^^^^~05/01/2005~
-~06044~^~301~^8.^10^0.^~1~^^^^^^^^^^^~02/01/1980~
-~06044~^~304~^7.^1^^~1~^^^^^^^^^^^~02/01/1980~
-~06044~^~305~^29.^1^^~1~^^^^^^^^^^^~02/01/1980~
-~06044~^~306~^126.^1^^~1~^^^^^^^^^^^~02/01/1980~
-~06044~^~307~^773.^5^23.^~1~^^^^^^^^^^^~02/01/1980~
-~06044~^~318~^194.^0^^~4~^~FLA~^^^^^^^^^^~01/01/2003~
-~06044~^~319~^8.^0^^~4~^~FLA~^^^^^^^^^^~01/01/2003~
-~06044~^~320~^17.^0^^~4~^~FLA~^^^^^^^^^^~01/01/2003~
-~06044~^~321~^100.^0^^~4~^~FLA~^^^^^^^^^^~01/01/2003~
-~06044~^~322~^0.^0^^~4~^~FLA~^^^^^^^^^^~01/01/2003~
-~06044~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~
-~06044~^~334~^0.^0^^~4~^~FLA~^^^^^^^^^^~01/01/2003~
-~06044~^~337~^6632.^0^^~4~^~FLA~^^^^^^^^^^~01/01/2003~
-~06044~^~338~^0.^0^^~4~^~FLA~^^^^^^^^^^~01/01/2003~
-~06044~^~417~^7.^3^0.^~1~^^^^^^^^^^^~02/01/1980~
-~06044~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~
-~06044~^~432~^7.^3^0.^~1~^^^^^^^^^^^~01/01/2003~
-~06044~^~435~^7.^0^^~4~^~NC~^^^^^^^^^^~06/01/2008~
-~06044~^~601~^6.^0^^~1~^^^^^^^^^^^~02/01/1980~
-~06045~^~208~^46.^0^^~4~^~NC~^^^^^^^^^^~02/01/1980~
-~06045~^~262~^0.^0^^~4~^~FLA~^^^^^^^^^^~01/01/2003~
-~06045~^~263~^0.^0^^~4~^~FLA~^^^^^^^^^^~01/01/2003~
-~06045~^~268~^192.^0^^~4~^^^^^^^^^^^~05/01/2005~
-~06045~^~301~^22.^10^1.^~1~^^^^^^^^^^^~02/01/1980~
-~06045~^~304~^2.^1^^~1~^^^^^^^^^^^~02/01/1980~
-~06045~^~305~^9.^1^^~1~^^^^^^^^^^^~02/01/1980~
-~06045~^~306~^56.^1^^~1~^^^^^^^^^^^~02/01/1980~
-~06045~^~307~^516.^0^^~8~^~LC~^^^^^^^^^^~06/01/2012~
-~06045~^~318~^11.^0^^~4~^~FLA~^^^^^^^^^^~01/01/2003~
-~06045~^~319~^3.^0^^~4~^~FLA~^^^^^^^^^^~01/01/2003~
-~06045~^~320~^3.^0^^~4~^~FLA~^^^^^^^^^^~01/01/2003~
-~06045~^~321~^1.^0^^~4~^~FLA~^^^^^^^^^^~01/01/2003~
-~06045~^~322~^0.^0^^~4~^~FLA~^^^^^^^^^^~01/01/2003~
-~06045~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~
-~06045~^~334~^0.^0^^~4~^~FLA~^^^^^^^^^^~01/01/2003~
-~06045~^~337~^0.^0^^~4~^~FLA~^^^^^^^^^^~01/01/2003~
-~06045~^~338~^1.^0^^~4~^~FLA~^^^^^^^^^^~01/01/2003~
-~06045~^~417~^12.^3^0.^~1~^^^^^^^^^^^~02/01/1980~
-~06045~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~
-~06045~^~432~^12.^3^0.^~1~^^^^^^^^^^^~01/01/2003~
-~06045~^~435~^12.^0^^~4~^~NC~^^^^^^^^^^~06/01/2008~
-~06045~^~601~^0.^0^^~1~^^^^^^^^^^^~02/01/1980~
-~06046~^~208~^88.^0^^~4~^^^^^^^^^^^~02/01/1980~
-~06046~^~262~^0.^0^^~4~^~FLA~^^^^^^^^^^~01/01/2003~
-~06046~^~263~^0.^0^^~4~^~FLA~^^^^^^^^^^~01/01/2003~
-~06046~^~268~^368.^0^^~4~^^^^^^^^^^^~05/01/2005~
-~06046~^~301~^27.^1^^~1~^^^^^^^^^^^~02/01/1980~
-~06046~^~304~^5.^0^^~4~^^^^^^^^^^^~02/01/1980~
-~06046~^~305~^30.^0^^~4~^^^^^^^^^^^~02/01/1980~
-~06046~^~306~^98.^0^^~4~^^^^^^^^^^^~02/01/1980~
-~06046~^~307~^637.^0^^~8~^~LC~^^^^^^^^^^~06/01/2009~
-~06046~^~318~^113.^0^^~4~^~FLA~^^^^^^^^^^~01/01/2003~
-~06046~^~319~^27.^0^^~4~^~FLA~^^^^^^^^^^~01/01/2003~
-~06046~^~320~^28.^0^^~4~^~FLA~^^^^^^^^^^~01/01/2003~
-~06046~^~321~^13.^0^^~4~^~FLA~^^^^^^^^^^~01/01/2003~
-~06046~^~322~^0.^0^^~4~^~FLA~^^^^^^^^^^~01/01/2003~
-~06046~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~
-~06046~^~334~^0.^0^^~4~^~FLA~^^^^^^^^^^~01/01/2003~
-~06046~^~337~^0.^0^^~4~^~FLA~^^^^^^^^^^~01/01/2003~
-~06046~^~338~^10.^0^^~4~^~FLA~^^^^^^^^^^~01/01/2003~
-~06046~^~417~^6.^0^^~4~^^^^^^^^^^^~02/01/1980~
-~06046~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~
-~06046~^~432~^6.^0^^~4~^^^^^^^^^^^~01/01/2003~
-~06046~^~435~^6.^0^^~4~^~NC~^^^^^^^^^^~06/01/2008~
-~06046~^~601~^12.^0^^~1~^^^^^^^^^^^~02/01/1980~
-~06048~^~208~^48.^0^^~4~^~NC~^^^^^^^^^^~02/01/1980~
-~06048~^~268~^201.^0^^~4~^^^^^^^^^^^~11/01/2006~
-~06048~^~301~^18.^10^1.^~1~^^^^^^^^^^^~02/01/1980~
-~06048~^~304~^4.^1^^~1~^^^^^^^^^^^~02/01/1980~
-~06048~^~305~^39.^1^^~1~^^^^^^^^^^^~02/01/1980~
-~06048~^~306~^40.^1^^~1~^^^^^^^^^^^~02/01/1980~
-~06048~^~307~^722.^0^^~8~^~LC~^^^^^^^^^^~06/01/2012~
-~06048~^~318~^58.^8^6.^~1~^^^^^^^^^^^~02/01/1980~
-~06048~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2002~
-~06048~^~320~^3.^0^^~4~^~NC~^^^^^^^^^^~06/01/2002~
-~06048~^~417~^2.^0^^~4~^^^^^^^^^^^~02/01/1980~
-~06048~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~
-~06048~^~432~^2.^0^^~4~^^^^^^^^^^^~02/01/1980~
-~06048~^~435~^2.^0^^~4~^~NC~^^^^^^^^^^~06/01/2008~
-~06048~^~601~^11.^0^^~1~^^^^^^^^^^^~02/01/1980~
-~06049~^~208~^125.^0^^~4~^~NC~^^^^^^^^^^~02/01/1980~
-~06049~^~262~^0.^0^^~4~^~FLA~^^^^^^^^^^~01/01/2003~
-~06049~^~263~^0.^0^^~4~^~FLA~^^^^^^^^^^~01/01/2003~
-~06049~^~268~^523.^0^^~4~^^^^^^^^^^^~05/01/2005~
-~06049~^~301~^21.^11^^~1~^^^^^^^^^^^~02/01/1980~
-~06049~^~304~^30.^1^^~1~^^^^^^^^^^^~02/01/1980~
-~06049~^~305~^95.^2^^~1~^^^^^^^^^^^~02/01/1980~
-~06049~^~306~^145.^2^^~1~^^^^^^^^^^^~02/01/1980~
-~06049~^~307~^680.^0^^~8~^~LC~^^^^^^^^^^~06/01/2009~
-~06049~^~318~^25.^0^^~4~^~NC~^^^^^^^^^^~01/01/2003~
-~06049~^~319~^7.^0^^~4~^~FLA~^^^^^^^^^^~01/01/2003~
-~06049~^~320~^7.^0^^~4~^~NC~^^^^^^^^^^~01/01/2003~
-~06049~^~321~^2.^0^^~4~^~FLA~^^^^^^^^^^~01/01/2003~
-~06049~^~322~^0.^0^^~4~^~FLA~^^^^^^^^^^~01/01/2003~
-~06049~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~
-~06049~^~334~^0.^0^^~4~^~FLA~^^^^^^^^^^~01/01/2003~
-~06049~^~337~^0.^0^^~4~^~FLA~^^^^^^^^^^~01/01/2003~
-~06049~^~338~^0.^0^^~4~^~FLA~^^^^^^^^^^~01/01/2003~
-~06049~^~417~^1.^4^0.^~1~^^^^^^^^^^^~02/01/1980~
-~06049~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~
-~06049~^~432~^1.^4^0.^~1~^^^^^^^^^^^~01/01/2003~
-~06049~^~435~^1.^0^^~4~^~NC~^^^^^^^^^^~06/01/2008~
-~06049~^~601~^0.^0^^~1~^^^^^^^^^^^~02/01/1980~
-~06050~^~208~^77.^0^^~4~^~NC~^^^^^^^^^^~02/01/1980~
-~06050~^~262~^0.^0^^~4~^~FLA~^^^^^^^^^^~01/01/2003~
-~06050~^~263~^0.^0^^~4~^~FLA~^^^^^^^^^^~01/01/2003~
-~06050~^~268~^322.^0^^~4~^^^^^^^^^^^~05/01/2005~
-~06050~^~301~^14.^10^0.^~1~^^^^^^^^^^^~02/01/1980~
-~06050~^~304~^16.^0^^~4~^^^^^^^^^^^~02/01/1980~
-~06050~^~305~^74.^0^^~4~^^^^^^^^^^^~02/01/1980~
-~06050~^~306~^127.^0^^~4~^^^^^^^^^^^~02/01/1980~
-~06050~^~307~^301.^0^^~8~^~LC~^^^^^^^^^^~07/01/2010~
-~06050~^~318~^2030.^0^^~4~^~FLA~^^^^^^^^^^~03/01/2003~
-~06050~^~319~^0.^0^^~4~^~FLA~^^^^^^^^^^~01/01/2003~
-~06050~^~320~^102.^0^^~4~^~FLA~^^^^^^^^^^~01/01/2003~
-~06050~^~321~^995.^0^^~4~^~FLA~^^^^^^^^^^~03/01/2003~
-~06050~^~322~^445.^0^^~4~^~FLA~^^^^^^^^^^~01/01/2003~
-~06050~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~
-~06050~^~334~^0.^0^^~4~^~FLA~^^^^^^^^^^~01/01/2003~
-~06050~^~337~^0.^0^^~4~^~FLA~^^^^^^^^^^~01/01/2003~
-~06050~^~338~^78.^0^^~4~^~FLA~^^^^^^^^^^~01/01/2003~
-~06050~^~417~^2.^3^0.^~1~^^^^^^^^^^^~02/01/1980~
-~06050~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~
-~06050~^~432~^2.^3^0.^~1~^^^^^^^^^^^~03/01/2003~
-~06050~^~435~^2.^0^^~4~^~NC~^^^^^^^^^^~11/01/2006~
-~06050~^~601~^3.^0^^~1~^^^^^^^^^^^~02/01/1980~
-~06051~^~208~^141.^0^^~4~^~NC~^^^^^^^^^^~02/01/1980~
-~06051~^~268~^590.^0^^~4~^^^^^^^^^^^~11/01/2006~
-~06051~^~301~^16.^14^0.^~1~^^^^^^^^^^^~02/01/1980~
-~06051~^~304~^36.^3^^~1~^^^^^^^^^^^~02/01/1980~
-~06051~^~305~^159.^4^^~1~^^^^^^^^^^^~02/01/1980~
-~06051~^~306~^297.^2^^~1~^^^^^^^^^^^~02/01/1980~
-~06051~^~307~^630.^0^^~8~^~LC~^^^^^^^^^^~06/01/2008~
-~06051~^~318~^331.^15^23.^~1~^^^^^^^^^^^~02/01/1980~
-~06051~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2002~
-~06051~^~320~^17.^0^^~4~^~NC~^^^^^^^^^^~06/01/2002~
-~06051~^~417~^2.^3^0.^~1~^^^^^^^^^^^~02/01/1980~
-~06051~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~
-~06051~^~432~^2.^3^0.^~1~^^^^^^^^^^^~02/01/1980~
-~06051~^~435~^2.^0^^~4~^~NC~^^^^^^^^^^~06/01/2008~
-~06051~^~601~^6.^0^^~1~^^^^^^^^^^^~02/01/1980~
-~06053~^~208~^74.^0^^~4~^~NC~^^^^^^^^^^~05/01/2013~
-~06053~^~262~^0.^0^^~4~^~FLA~^^^^^^^^^^~01/01/2003~
-~06053~^~263~^0.^0^^~4~^~FLA~^^^^^^^^^^~01/01/2003~
-~06053~^~268~^308.^0^^~4~^~NC~^^^^^^^^^^~05/01/2013~
-~06053~^~301~^17.^0^^~12~^~MA~^^^^^^^^^^~05/01/2013~
-~06053~^~304~^13.^0^^~12~^~MA~^^^^^^^^^^~05/01/2013~
-~06053~^~305~^41.^0^^~12~^~MA~^^^^^^^^^^~05/01/2013~
-~06053~^~306~^165.^0^^~12~^~MA~^^^^^^^^^^~05/01/2013~
-~06053~^~307~^604.^0^^~12~^~MA~^^^^^^^^^^~05/01/2013~
-~06053~^~318~^68.^0^^~4~^~FLA~^^^^^^^^^^~01/01/2003~
-~06053~^~319~^19.^0^^~4~^~FLA~^^^^^^^^^^~01/01/2003~
-~06053~^~320~^19.^0^^~4~^~FLA~^^^^^^^^^^~01/01/2003~
-~06053~^~321~^4.^0^^~4~^~FLA~^^^^^^^^^^~01/01/2003~
-~06053~^~322~^0.^0^^~4~^~FLA~^^^^^^^^^^~01/01/2003~
-~06053~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~
-~06053~^~334~^0.^0^^~4~^~FLA~^^^^^^^^^^~01/01/2003~
-~06053~^~337~^0.^0^^~4~^~FLA~^^^^^^^^^^~01/01/2003~
-~06053~^~338~^5.^0^^~4~^~FLA~^^^^^^^^^^~01/01/2003~
-~06053~^~417~^2.^3^0.^~1~^^^^^^^^^^^~02/01/1980~
-~06053~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~
-~06053~^~432~^2.^3^0.^~1~^^^^^^^^^^^~01/01/2003~
-~06053~^~435~^2.^0^^~4~^~NC~^^^^^^^^^^~06/01/2008~
-~06053~^~601~^1.^0^^~12~^~MA~^^^^^^^^^^~05/01/2013~
-~06056~^~208~^72.^0^^~4~^~NC~^^^^^^^^^^~02/01/1980~
-~06056~^~268~^301.^0^^~4~^^^^^^^^^^^~11/01/2006~
-~06056~^~301~^14.^10^0.^~1~^^^^^^^^^^^~02/01/1980~
-~06056~^~304~^7.^0^^~4~^^^^^^^^^^^~02/01/1980~
-~06056~^~305~^26.^0^^~4~^^^^^^^^^^^~02/01/1980~
-~06056~^~306~^47.^0^^~4~^^^^^^^^^^^~02/01/1980~
-~06056~^~307~^685.^0^^~8~^~LC~^^^^^^^^^^~06/01/2008~
-~06056~^~318~^126.^10^9.^~1~^^^^^^^^^^^~02/01/1980~
-~06056~^~319~^30.^0^^~4~^~NC~^^^^^^^^^^~06/01/2002~
-~06056~^~320~^32.^0^^~4~^~NC~^^^^^^^^^^~06/01/2002~
-~06056~^~417~^3.^0^^~4~^^^^^^^^^^^~02/01/1980~
-~06056~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~
-~06056~^~432~^3.^0^^~4~^^^^^^^^^^^~12/01/2000~
-~06056~^~435~^3.^0^^~4~^~NC~^^^^^^^^^^~06/01/2008~
-~06056~^~601~^13.^0^^~1~^^^^^^^^^^^~02/01/1980~
-~06061~^~208~^112.^0^^~4~^~NC~^^^^^^^^^^~02/01/1980~
-~06061~^~268~^469.^0^^~4~^^^^^^^^^^^~11/01/2006~
-~06061~^~301~^14.^10^0.^~1~^^^^^^^^^^^~02/01/1980~
-~06061~^~304~^6.^1^^~1~^^^^^^^^^^^~02/01/1980~
-~06061~^~305~^45.^1^^~1~^^^^^^^^^^^~02/01/1980~
-~06061~^~306~^176.^1^^~1~^^^^^^^^^^^~02/01/1980~
-~06061~^~307~^731.^5^53.^~1~^^^^^^^^^^^~02/01/1980~
-~06061~^~318~^425.^10^18.^~1~^^^^^^^^^^^~02/01/1980~
-~06061~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2002~
-~06061~^~320~^21.^0^^~4~^~NC~^^^^^^^^^^~06/01/2002~
-~06061~^~417~^15.^0^^~4~^~FLA~^^^^^^^^^^~12/01/1997~
-~06061~^~431~^9.^0^^~4~^~NC~^^^^^^^^^^~05/01/2000~
-~06061~^~432~^6.^0^^~4~^^^^^^^^^^^
-~06061~^~435~^21.^0^^~4~^~NC~^^^^^^^^^^~11/01/2006~
-~06061~^~601~^3.^0^^~1~^^^^^^^^^^^~02/01/1980~
-~06062~^~208~^47.^0^^~4~^~NC~^^^^^^^^^^~03/01/2014~
-~06062~^~268~^197.^0^^~4~^~NC~^^^^^^^^^^~03/01/2014~
-~06062~^~301~^6.^6^0.^~1~^~A~^^^1^5.^6.^5^5.^6.^~2, 3~^~03/01/2014~
-~06062~^~304~^8.^6^0.^~1~^~A~^^^1^8.^9.^5^7.^8.^~2, 3~^~03/01/2014~
-~06062~^~305~^38.^6^0.^~1~^~A~^^^1^37.^39.^5^37.^38.^~2, 3~^~03/01/2014~
-~06062~^~306~^44.^6^0.^~1~^~A~^^^1^42.^46.^5^42.^45.^~2, 3~^~03/01/2014~
-~06062~^~307~^683.^6^5.^~1~^~A~^^^1^671.^705.^5^669.^696.^~2, 3~^~03/01/2014~
-~06062~^~601~^8.^0^^~12~^~MA~^^^^^^^^^^~05/01/2013~
-~06063~^~208~^93.^0^^~4~^~NC~^^^^^^^^^^~02/01/1980~
-~06063~^~262~^0.^0^^~4~^~FLA~^^^^^^^^^^~01/01/2003~
-~06063~^~263~^0.^0^^~4~^~FLA~^^^^^^^^^^~01/01/2003~
-~06063~^~268~^389.^0^^~4~^^^^^^^^^^^~05/01/2005~
-~06063~^~301~^18.^11^^~1~^^^^^^^^^^^~02/01/1980~
-~06063~^~304~^4.^0^^~1~^^^^^^^^^^^~02/01/1980~
-~06063~^~305~^26.^0^^~1~^^^^^^^^^^^~02/01/1980~
-~06063~^~306~^257.^2^^~1~^^^^^^^^^^^~02/01/1980~
-~06063~^~307~^635.^6^^~1~^^^^^^^^^^^~02/01/1980~
-~06063~^~318~^421.^0^^~4~^~FLA~^^^^^^^^^^~01/01/2003~
-~06063~^~319~^2.^0^^~4~^~FLA~^^^^^^^^^^~01/01/2003~
-~06063~^~320~^23.^0^^~4~^~FLA~^^^^^^^^^^~01/01/2003~
-~06063~^~321~^248.^0^^~4~^~FLA~^^^^^^^^^^~01/01/2003~
-~06063~^~322~^0.^0^^~4~^~FLA~^^^^^^^^^^~01/01/2003~
-~06063~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~
-~06063~^~334~^0.^0^^~4~^~FLA~^^^^^^^^^^~01/01/2003~
-~06063~^~337~^17183.^0^^~4~^~FLA~^^^^^^^^^^~01/01/2003~
-~06063~^~338~^3.^0^^~4~^~FLA~^^^^^^^^^^~01/01/2003~
-~06063~^~417~^11.^0^^~4~^^^^^^^^^^^~02/01/1980~
-~06063~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~
-~06063~^~432~^11.^0^^~4~^^^^^^^^^^^~01/01/2003~
-~06063~^~435~^11.^0^^~4~^~NC~^^^^^^^^^^~06/01/2008~
-~06063~^~601~^1.^0^^~1~^^^^^^^^^^^~02/01/1980~
-~06064~^~208~^57.^0^^~4~^~NC~^^^^^^^^^^~02/01/1980~
-~06064~^~268~^238.^0^^~4~^^^^^^^^^^^~11/01/2006~
-~06064~^~301~^21.^10^1.^~1~^^^^^^^^^^^~02/01/1980~
-~06064~^~304~^10.^0^^~4~^^^^^^^^^^^~02/01/1980~
-~06064~^~305~^44.^1^^~1~^^^^^^^^^^^~02/01/1980~
-~06064~^~306~^153.^1^^~1~^^^^^^^^^^^~02/01/1980~
-~06064~^~307~^391.^10^13.^~1~^^^^^^^^^^^~02/01/1980~
-~06064~^~318~^3032.^10^143.^~1~^^^^^^^^^^^~02/01/1980~
-~06064~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2002~
-~06064~^~320~^152.^0^^~4~^~NC~^^^^^^^^^^~06/01/2002~
-~06064~^~417~^5.^3^1.^~1~^^^^^^^^^^^~02/01/1980~
-~06064~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~
-~06064~^~432~^5.^3^1.^~1~^^^^^^^^^^^~02/01/1980~
-~06064~^~435~^5.^0^^~4~^~NC~^^^^^^^^^^~11/01/2006~
-~06064~^~601~^4.^0^^~1~^^^^^^^^^^^~02/01/1980~
-~06067~^~208~^39.^0^^~4~^~NC~^^^^^^^^^^~02/01/2013~
-~06067~^~262~^0.^0^^~4~^~FLA~^^^^^^^^^^~02/01/2003~
-~06067~^~263~^0.^0^^~4~^~FLA~^^^^^^^^^^~02/01/2003~
-~06067~^~268~^165.^0^^~4~^~NC~^^^^^^^^^^~02/01/2013~
-~06067~^~301~^18.^14^0.^~1~^~A~^^^1^16.^23.^7^17.^19.^~2, 3~^~02/01/2013~
-~06067~^~304~^10.^14^0.^~1~^~A~^^^1^9.^11.^8^10.^10.^~2, 3~^~02/01/2013~
-~06067~^~305~^29.^14^0.^~1~^~A~^^^1^20.^32.^8^27.^29.^~2, 3~^~02/01/2013~
-~06067~^~306~^180.^14^3.^~1~^~A~^^^1^120.^246.^10^172.^188.^~2, 3~^~02/01/2013~
-~06067~^~307~^267.^14^2.^~1~^~A~^^^1^248.^341.^10^261.^272.^~2, 3~^~02/01/2013~
-~06067~^~318~^1049.^0^^~1~^~AS~^^^^^^^^^^~02/01/2013~
-~06067~^~319~^0.^0^^~4~^~FLA~^^^^^^^^^^~02/01/2003~
-~06067~^~320~^52.^0^^~1~^~AS~^^^^^^^^^^~02/01/2013~
-~06067~^~321~^512.^6^26.^~1~^~A~^^^1^255.^727.^4^435.^587.^~2, 3~^~02/01/2013~
-~06067~^~322~^236.^6^22.^~1~^~A~^^^1^83.^362.^3^169.^302.^~2, 3~^~02/01/2013~
-~06067~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~
-~06067~^~334~^0.^6^0.^~1~^~A~^^^1^0.^0.^^^^~1, 2, 3~^~02/01/2013~
-~06067~^~337~^580.^6^15.^~1~^~A~^^^1^365.^718.^3^524.^636.^~2, 3~^~02/01/2013~
-~06067~^~338~^132.^6^2.^~1~^~A~^^^1^61.^191.^4^125.^139.^~2, 3~^~02/01/2013~
-~06067~^~417~^7.^3^1.^~1~^^^^^^^^^^^~02/01/1980~
-~06067~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~
-~06067~^~432~^7.^3^1.^~1~^^^^^^^^^^^~11/01/2006~
-~06067~^~435~^7.^0^^~4~^~NC~^^^^^^^^^^~06/01/2008~
-~06067~^~601~^0.^0^^~1~^^^^^^^^^^^~02/01/1980~
-~06068~^~208~^59.^0^^~4~^~NC~^^^^^^^^^^~02/01/1980~
-~06068~^~262~^0.^0^^~4~^~FLA~^^^^^^^^^^~01/01/2003~
-~06068~^~263~^0.^0^^~4~^~FLA~^^^^^^^^^^~01/01/2003~
-~06068~^~268~^247.^0^^~4~^^^^^^^^^^^~05/01/2005~
-~06068~^~301~^17.^21^^~1~^^^^^^^^^^^~02/01/1980~
-~06068~^~304~^6.^2^^~1~^^^^^^^^^^^~02/01/1980~
-~06068~^~305~^28.^3^^~1~^^^^^^^^^^^~02/01/1980~
-~06068~^~306~^171.^3^^~1~^^^^^^^^^^^~02/01/1980~
-~06068~^~307~^516.^0^^~8~^~LC~^^^^^^^^^^~06/01/2012~
-~06068~^~318~^2842.^0^^~4~^~NC~^^^^^^^^^^~04/01/2003~
-~06068~^~319~^0.^0^^~4~^~FLA~^^^^^^^^^^~01/01/2003~
-~06068~^~320~^142.^0^^~4~^~NC~^^^^^^^^^^~04/01/2003~
-~06068~^~321~^1500.^1^^~1~^~A~^^^^^^^^^^~04/01/2003~
-~06068~^~322~^410.^1^^~1~^~A~^^^^^^^^^^~04/01/2003~
-~06068~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~
-~06068~^~334~^0.^1^^~1~^~A~^^^^^^^^^^~04/01/2003~
-~06068~^~337~^1930.^1^^~1~^~A~^^^^^^^^^^~04/01/2003~
-~06068~^~338~^160.^1^^~1~^~A~^^^^^^^^^^~04/01/2003~
-~06068~^~417~^9.^3^0.^~1~^^^^^^^^^^^~02/01/1980~
-~06068~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~
-~06068~^~432~^9.^3^0.^~1~^^^^^^^^^^^~04/01/2003~
-~06068~^~435~^9.^0^^~4~^~NC~^^^^^^^^^^~06/01/2008~
-~06068~^~601~^0.^0^^~1~^^^^^^^^^^^~02/01/1980~
-~06070~^~208~^66.^0^^~4~^~NC~^^^^^^^^^^~11/01/2006~
-~06070~^~262~^0.^0^^~4~^~FLA~^^^^^^^^^^~02/01/2003~
-~06070~^~263~^0.^0^^~4~^~FLA~^^^^^^^^^^~02/01/2003~
-~06070~^~268~^277.^0^^~4~^~NC~^^^^^^^^^^~11/01/2006~
-~06070~^~301~^13.^30^1.^~1~^^^^^^^^^^^~02/01/1980~
-~06070~^~304~^2.^0^^~4~^^^^^^^^^^^~02/01/1980~
-~06070~^~305~^50.^2^^~1~^^^^^^^^^^^~02/01/1980~
-~06070~^~306~^140.^2^^~1~^^^^^^^^^^^~02/01/1980~
-~06070~^~307~^338.^0^^~8~^~LC~^^^^^^^^^^~07/01/2010~
-~06070~^~318~^1088.^0^^~4~^~FLA~^^^^^^^^^^~11/01/2006~
-~06070~^~319~^0.^0^^~4~^~FLA~^^^^^^^^^^~02/01/2003~
-~06070~^~320~^54.^0^^~4~^~FLA~^^^^^^^^^^~02/01/2003~
-~06070~^~321~^536.^0^^~4~^~FLA~^^^^^^^^^^~02/01/2003~
-~06070~^~322~^234.^0^^~4~^~FLA~^^^^^^^^^^~02/01/2003~
-~06070~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~
-~06070~^~334~^0.^0^^~4~^~FLA~^^^^^^^^^^~02/01/2003~
-~06070~^~337~^1325.^0^^~4~^~FLA~^^^^^^^^^^~02/01/2003~
-~06070~^~338~^36.^0^^~4~^~FLA~^^^^^^^^^^~02/01/2003~
-~06070~^~417~^6.^0^^~1~^^^^^^^^^^^~02/01/1980~
-~06070~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~
-~06070~^~432~^6.^0^^~1~^^^^^^^^^^^~11/01/2006~
-~06070~^~435~^6.^0^^~4~^~NC~^^^^^^^^^^~06/01/2008~
-~06070~^~601~^6.^0^^~1~^^^^^^^^^^^~02/01/1980~
-~06071~^~208~^63.^0^^~4~^~NC~^^^^^^^^^^~02/01/1980~
-~06071~^~262~^0.^0^^~4~^~FLA~^^^^^^^^^^~01/01/2003~
-~06071~^~263~^0.^0^^~4~^~FLA~^^^^^^^^^^~01/01/2003~
-~06071~^~268~^264.^0^^~4~^^^^^^^^^^^~05/01/2005~
-~06071~^~301~^13.^25^^~1~^^^^^^^^^^^~02/01/1980~
-~06071~^~304~^5.^5^^~1~^^^^^^^^^^^~02/01/1980~
-~06071~^~305~^32.^4^^~1~^^^^^^^^^^^~02/01/1980~
-~06071~^~306~^138.^4^^~1~^^^^^^^^^^^~02/01/1980~
-~06071~^~307~^706.^1^^~8~^~LC~^^^^^^^^^^~07/01/2010~
-~06071~^~318~^3104.^0^^~4~^~NC~^^^^^^^^^^~04/01/2003~
-~06071~^~319~^0.^0^^~4~^~FLA~^^^^^^^^^^~01/01/2003~
-~06071~^~320~^155.^0^^~4~^~NC~^^^^^^^^^^~04/01/2003~
-~06071~^~321~^1618.^3^68.^~1~^~A~^^^^^^^^^^~04/01/2003~
-~06071~^~322~^489.^3^53.^~1~^~A~^^^^^^^^^^~04/01/2003~
-~06071~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~
-~06071~^~334~^0.^2^^~1~^~A~^^^^^^^^^^~04/01/2003~
-~06071~^~337~^364.^2^^~1~^~A~^^^^^^^^^^~04/01/2003~
-~06071~^~338~^92.^2^^~1~^~A~^^^^^^^^^^~04/01/2003~
-~06071~^~417~^8.^3^0.^~1~^^^^^^^^^^^~02/01/1980~
-~06071~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~
-~06071~^~432~^8.^3^0.^~1~^^^^^^^^^^^~04/01/2003~
-~06071~^~435~^8.^0^^~4~^~NC~^^^^^^^^^^~06/01/2008~
-~06071~^~601~^4.^0^^~1~^^^^^^^^^^^~02/01/1980~
-~06072~^~208~^66.^0^^~4~^~NC~^^^^^^^^^^~02/01/1980~
-~06072~^~262~^0.^0^^~4~^~FLA~^^^^^^^^^^~01/01/2003~
-~06072~^~263~^0.^0^^~4~^~FLA~^^^^^^^^^^~01/01/2003~
-~06072~^~268~^276.^0^^~4~^^^^^^^^^^^~05/01/2005~
-~06072~^~301~^14.^20^0.^~1~^^^^^^^^^^^~02/01/1980~
-~06072~^~304~^5.^6^^~1~^^^^^^^^^^^~02/01/1980~
-~06072~^~305~^32.^2^^~1~^^^^^^^^^^^~02/01/1980~
-~06072~^~306~^157.^2^^~1~^^^^^^^^^^^~02/01/1980~
-~06072~^~307~^515.^1^^~8~^~LC~^^^^^^^^^^~07/01/2010~
-~06072~^~318~^1707.^0^^~4~^~FLA~^^^^^^^^^^~01/01/2003~
-~06072~^~319~^0.^0^^~4~^~FLA~^^^^^^^^^^~01/01/2003~
-~06072~^~320~^85.^0^^~4~^~FLA~^^^^^^^^^^~01/01/2003~
-~06072~^~321~^831.^0^^~4~^~FLA~^^^^^^^^^^~01/01/2003~
-~06072~^~322~^387.^0^^~4~^~FLA~^^^^^^^^^^~01/01/2003~
-~06072~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~
-~06072~^~334~^0.^0^^~4~^~FLA~^^^^^^^^^^~01/01/2003~
-~06072~^~337~^29.^0^^~4~^~FLA~^^^^^^^^^^~01/01/2003~
-~06072~^~338~^35.^0^^~4~^~FLA~^^^^^^^^^^~01/01/2003~
-~06072~^~417~^9.^0^^~4~^^^^^^^^^^^~02/01/1980~
-~06072~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~
-~06072~^~432~^9.^0^^~4~^^^^^^^^^^^~01/01/2003~
-~06072~^~435~^9.^0^^~4~^~NC~^^^^^^^^^^~06/01/2008~
-~06072~^~601~^1.^0^^~1~^^^^^^^^^^^~02/01/1980~
-~06075~^~208~^213.^0^^~4~^~NC~^^^^^^^^^^~09/01/2011~
-~06075~^~262~^0.^0^^~4~^~FLA~^^^^^^^^^^~02/01/2003~
-~06075~^~263~^0.^0^^~4~^~FLA~^^^^^^^^^^~02/01/2003~
-~06075~^~268~^893.^0^^~4~^~NC~^^^^^^^^^^~09/01/2011~
-~06075~^~301~^60.^1^^~1~^^^^^^^^^^^~02/01/1980~
-~06075~^~304~^51.^2^^~1~^^^^^^^^^^^~02/01/1980~
-~06075~^~305~^320.^2^^~1~^^^^^^^^^^^~02/01/1980~
-~06075~^~306~^446.^2^^~1~^^^^^^^^^^^~02/01/1980~
-~06075~^~307~^26000.^1^^~8~^~LC~^^^^^^^^^^~09/01/2011~
-~06075~^~318~^0.^0^^~4~^~NC~^^^^^^^^^^~02/01/2003~
-~06075~^~319~^0.^0^^~4~^~FLA~^^^^^^^^^^~02/01/2003~
-~06075~^~320~^0.^0^^~4~^~NC~^^^^^^^^^^~02/01/2003~
-~06075~^~321~^0.^0^^~4~^~FLA~^^^^^^^^^^~02/01/2003~
-~06075~^~322~^0.^0^^~4~^~FLA~^^^^^^^^^^~02/01/2003~
-~06075~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~
-~06075~^~334~^0.^0^^~4~^~FLA~^^^^^^^^^^~02/01/2003~
-~06075~^~337~^0.^0^^~4~^~FLA~^^^^^^^^^^~02/01/2003~
-~06075~^~338~^0.^0^^~4~^~FLA~^^^^^^^^^^~02/01/2003~
-~06075~^~417~^32.^0^^~1~^^^^^^^^^^^~02/01/1980~
-~06075~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~
-~06075~^~432~^32.^0^^~1~^^^^^^^^^^^~02/01/2003~
-~06075~^~435~^32.^0^^~4~^~NC~^^^^^^^^^^~11/01/2006~
-~06075~^~601~^10.^0^^~1~^^^^^^^^^^^~02/01/1980~
-~06076~^~208~^170.^0^^~4~^~NC~^^^^^^^^^^~02/01/1980~
-~06076~^~262~^0.^0^^~4~^~FLA~^^^^^^^^^^~01/01/2003~
-~06076~^~263~^0.^0^^~4~^~FLA~^^^^^^^^^^~01/01/2003~
-~06076~^~268~^711.^0^^~4~^^^^^^^^^^^~05/01/2005~
-~06076~^~301~^60.^0^^~4~^^^^^^^^^^^~02/01/1980~
-~06076~^~304~^50.^2^^~1~^^^^^^^^^^^~02/01/1980~
-~06076~^~305~^225.^1^^~1~^^^^^^^^^^^~02/01/1980~
-~06076~^~306~^403.^1^^~1~^^^^^^^^^^^~02/01/1980~
-~06076~^~307~^24000.^1^^~1~^^^^^^^^^^^~02/01/1980~
-~06076~^~318~^1.^0^^~4~^~FLA~^^^^^^^^^^~01/01/2003~
-~06076~^~319~^0.^0^^~4~^~FLA~^^^^^^^^^^~01/01/2003~
-~06076~^~320~^0.^0^^~4~^~FLA~^^^^^^^^^^~01/01/2003~
-~06076~^~321~^0.^0^^~4~^~FLA~^^^^^^^^^^~01/01/2003~
-~06076~^~322~^0.^0^^~4~^~FLA~^^^^^^^^^^~01/01/2003~
-~06076~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~07/01/2009~
-~06076~^~334~^0.^0^^~4~^~FLA~^^^^^^^^^^~01/01/2003~
-~06076~^~337~^0.^0^^~4~^~FLA~^^^^^^^^^^~01/01/2003~
-~06076~^~338~^0.^0^^~4~^~FLA~^^^^^^^^^^~01/01/2003~
-~06076~^~417~^32.^0^^~4~^^^^^^^^^^^~02/01/1980~
-~06076~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~
-~06076~^~432~^32.^0^^~4~^^^^^^^^^^^~01/01/2003~
-~06076~^~435~^32.^0^^~4~^~NC~^^^^^^^^^^~07/01/2009~
-~06076~^~601~^4.^0^^~1~^^^^^^^^^^^~02/01/1980~
-~06080~^~208~^267.^0^^~4~^~NC~^^^^^^^^^^~02/01/1980~
-~06080~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2002~
-~06080~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2002~
-~06080~^~268~^1117.^0^^~4~^^^^^^^^^^^~05/01/2005~
-~06080~^~301~^187.^1^^~1~^^^^^^^^^^^~02/01/1980~
-~06080~^~304~^56.^2^^~1~^^^^^^^^^^^~02/01/1980~
-~06080~^~305~^166.^2^^~1~^^^^^^^^^^^~02/01/1980~
-~06080~^~306~^309.^1^^~1~^^^^^^^^^^^~02/01/1980~
-~06080~^~307~^23875.^4^^~8~^~LC~^^^^^^^^^^~07/01/2010~
-~06080~^~318~^2.^0^^~4~^~FLA~^^^^^^^^^^~01/01/2003~
-~06080~^~319~^0.^0^^~4~^~FLA~^^^^^^^^^^~01/01/2003~
-~06080~^~320~^0.^0^^~4~^~NC~^^^^^^^^^^~07/01/2010~
-~06080~^~321~^0.^0^^~4~^~FLA~^^^^^^^^^^~01/01/2003~
-~06080~^~322~^0.^0^^~4~^~FLA~^^^^^^^^^^~01/01/2003~
-~06080~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~
-~06080~^~334~^0.^0^^~4~^~FLA~^^^^^^^^^^~01/01/2003~
-~06080~^~337~^0.^0^^~4~^~FLA~^^^^^^^^^^~01/01/2003~
-~06080~^~338~^0.^0^^~4~^~FLA~^^^^^^^^^^~01/01/2003~
-~06080~^~417~^32.^0^^~4~^^^^^^^^^^^~02/01/1980~
-~06080~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~
-~06080~^~432~^32.^0^^~4~^^^^^^^^^^^~01/01/2003~
-~06080~^~435~^32.^0^^~4~^~NC~^^^^^^^^^^~03/01/2008~
-~06080~^~601~^13.^0^^~1~^^^^^^^^^^^~02/01/1980~
-~06081~^~208~^198.^0^^~4~^~NC~^^^^^^^^^^~02/01/1980~
-~06081~^~268~^828.^0^^~4~^^^^^^^^^^^~11/01/2006~
-~06081~^~301~^190.^0^^~4~^^^^^^^^^^^~02/01/1980~
-~06081~^~304~^56.^2^^~1~^^^^^^^^^^^~02/01/1980~
-~06081~^~305~^191.^1^^~1~^^^^^^^^^^^~02/01/1980~
-~06081~^~306~^374.^1^^~1~^^^^^^^^^^^~02/01/1980~
-~06081~^~307~^24000.^1^^~1~^^^^^^^^^^^~02/01/1980~
-~06081~^~318~^2.^0^^~4~^~FLA~^^^^^^^^^^~01/01/2003~
-~06081~^~319~^0.^0^^~4~^~FLA~^^^^^^^^^^~01/01/2003~
-~06081~^~320~^0.^0^^~4~^~FLA~^^^^^^^^^^~01/01/2003~
-~06081~^~321~^0.^0^^~4~^~FLA~^^^^^^^^^^~01/01/2003~
-~06081~^~322~^0.^0^^~4~^~FLA~^^^^^^^^^^~01/01/2003~
-~06081~^~334~^0.^0^^~4~^~FLA~^^^^^^^^^^~01/01/2003~
-~06081~^~337~^0.^0^^~4~^~FLA~^^^^^^^^^^~01/01/2003~
-~06081~^~338~^0.^0^^~4~^~FLA~^^^^^^^^^^~01/01/2003~
-~06081~^~417~^32.^0^^~4~^^^^^^^^^^^~02/01/1980~
-~06081~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~
-~06081~^~432~^32.^0^^~4~^^^^^^^^^^^~01/01/2003~
-~06081~^~435~^32.^0^^~4~^~NC~^^^^^^^^^^~07/01/2008~
-~06081~^~601~^13.^0^^~1~^^^^^^^^^^^~02/01/1980~
-~06094~^~208~^293.^0^^~4~^~NC~^^^^^^^^^^~10/01/2006~
-~06094~^~262~^0.^0^^~4~^~FLC~^^^^^^^^^^~10/01/2006~
-~06094~^~263~^0.^0^^~4~^~FLC~^^^^^^^^^^~10/01/2006~
-~06094~^~268~^1227.^0^^~4~^~NC~^^^^^^^^^^~10/01/2006~
-~06094~^~301~^143.^4^20.^~1~^~A~^^^1^^^^^^^~04/01/2004~
-~06094~^~304~^60.^4^0.^~1~^~A~^^^1^^^^^^^~04/01/2004~
-~06094~^~305~^211.^4^5.^~1~^~A~^^^1^^^^^^^~04/01/2004~
-~06094~^~306~^721.^4^11.^~1~^~A~^^^1^^^^^^^~04/01/2004~
-~06094~^~307~^8031.^4^510.^~1~^~A~^^^1^^^^^^^~04/01/2004~
-~06094~^~318~^15.^0^^~4~^~FLC~^^^^^^^^^^~10/01/2006~
-~06094~^~319~^0.^0^^~4~^~FLC~^^^^^^^^^^~10/01/2006~
-~06094~^~320~^1.^0^^~4~^~FLC~^^^^^^^^^^~10/01/2006~
-~06094~^~321~^9.^0^^~4~^~FLC~^^^^^^^^^^~10/01/2006~
-~06094~^~322~^0.^0^^~4~^~FLC~^^^^^^^^^^~10/01/2006~
-~06094~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~
-~06094~^~334~^0.^0^^~4~^~FLC~^^^^^^^^^^~10/01/2006~
-~06094~^~337~^0.^0^^~4~^~FLC~^^^^^^^^^^~10/01/2006~
-~06094~^~338~^27.^0^^~4~^~FLC~^^^^^^^^^^~10/01/2006~
-~06094~^~417~^0.^2^^~1~^~A~^^^1^^^^^^^~04/01/2004~
-~06094~^~431~^0.^0^^~4~^~FLA~^^^^^^^^^^~04/01/2004~
-~06094~^~432~^0.^2^^~1~^~A~^^^^^^^^^^~10/01/2006~
-~06094~^~435~^0.^0^^~4~^~NC~^^^^^^^^^^~11/01/2006~
-~06094~^~601~^0.^0^^~4~^~FLC~^^^^^^^^^^~10/01/2006~
-~06094~^~636~^0.^0^^~4~^~FLC~^^^^^^^^^^~10/01/2006~
-~06101~^~208~^446.^0^^~4~^~NC~^^^^^^^^^^~02/01/1980~
-~06101~^~262~^0.^0^^~4~^~FLA~^^^^^^^^^^~02/01/2003~
-~06101~^~263~^0.^0^^~4~^~FLA~^^^^^^^^^^~02/01/2003~
-~06101~^~268~^1866.^0^^~4~^^^^^^^^^^^~05/01/2005~
-~06101~^~301~^134.^0^^~4~^^^^^^^^^^^~02/01/1980~
-~06101~^~304~^48.^0^^~4~^^^^^^^^^^^~02/01/1980~
-~06101~^~305~^228.^1^^~1~^^^^^^^^^^^~02/01/1980~
-~06101~^~306~^408.^1^^~1~^^^^^^^^^^^~02/01/1980~
-~06101~^~307~^3857.^0^^~8~^~LC~^^^^^^^^^^~07/01/2017~
-~06101~^~318~^11996.^0^^~4~^~NC~^^^^^^^^^^~02/01/2003~
-~06101~^~319~^0.^0^^~4~^~FLA~^^^^^^^^^^~02/01/2003~
-~06101~^~320~^600.^0^^~4~^~NC~^^^^^^^^^^~02/01/2003~
-~06101~^~321~^5620.^0^^~4~^~FLA~^^^^^^^^^^~02/01/2003~
-~06101~^~322~^2820.^0^^~4~^~FLA~^^^^^^^^^^~02/01/2003~
-~06101~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~
-~06101~^~334~^334.^0^^~4~^~FLA~^^^^^^^^^^~02/01/2003~
-~06101~^~337~^2.^0^^~4~^~FLA~^^^^^^^^^^~02/01/2003~
-~06101~^~338~^920.^0^^~4~^~FLA~^^^^^^^^^^~02/01/2003~
-~06101~^~417~^30.^0^^~4~^^^^^^^^^^^~02/01/1980~
-~06101~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~
-~06101~^~432~^30.^0^^~4~^^^^^^^^^^^~02/01/2003~
-~06101~^~435~^30.^0^^~4~^~NC~^^^^^^^^^^~11/01/2006~
-~06101~^~601~^2.^1^^~1~^^^^^^^^^^^~02/01/1980~
-~06112~^~208~^89.^0^^~4~^~NC~^^^^^^^^^^~11/01/2006~
-~06112~^~262~^0.^0^^~4~^~FLA~^^^^^^^^^^~02/01/2003~
-~06112~^~263~^0.^0^^~4~^~FLA~^^^^^^^^^^~02/01/2003~
-~06112~^~268~^371.^0^^~4~^~NC~^^^^^^^^^^~11/01/2006~
-~06112~^~301~^25.^1^^~1~^^^^^^^^^^^~02/01/1980~
-~06112~^~304~^61.^1^^~1~^^^^^^^^^^^~02/01/1980~
-~06112~^~305~^154.^1^^~1~^^^^^^^^^^^~02/01/1980~
-~06112~^~306~^225.^1^^~1~^^^^^^^^^^^~02/01/1980~
-~06112~^~307~^3833.^1^^~1~^^^^^^^^^^^~02/01/1980~
-~06112~^~318~^0.^0^^~4~^~FLA~^^^^^^^^^^~02/01/2003~
-~06112~^~319~^0.^0^^~4~^~FLA~^^^^^^^^^^~02/01/2003~
-~06112~^~320~^0.^0^^~4~^~FLA~^^^^^^^^^^~02/01/2003~
-~06112~^~321~^0.^0^^~4~^~FLA~^^^^^^^^^^~02/01/2003~
-~06112~^~322~^0.^0^^~4~^~FLA~^^^^^^^^^^~02/01/2003~
-~06112~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~
-~06112~^~334~^0.^0^^~4~^~FLA~^^^^^^^^^^~02/01/2003~
-~06112~^~337~^0.^0^^~4~^~FLA~^^^^^^^^^^~02/01/2003~
-~06112~^~338~^0.^0^^~4~^~FLA~^^^^^^^^^^~02/01/2003~
-~06112~^~417~^8.^0^^~4~^~FLA~^^^^^^^^^^~11/01/2006~
-~06112~^~431~^0.^0^^~4~^~FLA~^^^^^^^^^^~11/01/2006~
-~06112~^~432~^8.^0^^~4~^~FLA~^^^^^^^^^^~11/01/2006~
-~06112~^~435~^8.^0^^~4~^~NC~^^^^^^^^^^~06/01/2007~
-~06112~^~601~^0.^0^^~1~^^^^^^^^^^^~02/01/1980~
-~06114~^~208~^16.^0^^~4~^~NC~^^^^^^^^^^~02/01/1980~
-~06114~^~268~^67.^0^^~4~^^^^^^^^^^^
-~06114~^~301~^4.^1^^~1~^^^^^^^^^^^~02/01/1980~
-~06114~^~304~^2.^0^^~4~^^^^^^^^^^^~02/01/1980~
-~06114~^~305~^30.^0^^~4~^^^^^^^^^^^~02/01/1980~
-~06114~^~306~^81.^0^^~4~^^^^^^^^^^^~02/01/1980~
-~06114~^~307~^478.^0^^~8~^~LC~^^^^^^^^^^~09/01/2012~
-~06114~^~318~^0.^1^^~1~^^^^^^^^^^^~02/01/1980~
-~06114~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2002~
-~06114~^~320~^0.^0^^~4~^~NC~^^^^^^^^^^~06/01/2002~
-~06114~^~417~^2.^0^^~4~^^^^^^^^^^^~02/01/1980~
-~06114~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~
-~06114~^~432~^2.^0^^~4~^^^^^^^^^^^~02/01/1980~
-~06114~^~435~^2.^0^^~4~^~NC~^^^^^^^^^^~01/01/2001~
-~06114~^~601~^0.^0^^~1~^^^^^^^^^^^~02/01/1980~
-~06115~^~208~^313.^0^^~4~^~NC~^^^^^^^^^^~04/01/1996~
-~06115~^~268~^1310.^0^^~4~^^^^^^^^^^^~08/01/2006~
-~06115~^~301~^140.^6^^~1~^~A~^^^^^^^^^^~04/01/1996~
-~06115~^~304~^56.^1^^~1~^~A~^^^^^^^^^^~04/01/1996~
-~06115~^~305~^153.^0^^~4~^~BFZN~^^^^^^^^^^~04/01/1996~
-~06115~^~306~^279.^0^^~4~^~BFZN~^^^^^^^^^^~04/01/1996~
-~06115~^~307~^11588.^7^^~1~^~A~^^^^^^^^^^~04/01/1996~
-~06115~^~318~^10.^4^^~12~^~MA~^^^^^^^^^^~04/01/1996~
-~06115~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2002~
-~06115~^~320~^0.^0^^~1~^~AS~^^^^^^^^^^~08/01/2006~
-~06115~^~417~^81.^0^^~4~^~BFZN~^^^^^^^^^^~04/01/1996~
-~06115~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~
-~06115~^~432~^81.^0^^~4~^~BFZN~^^^^^^^^^^~08/01/2006~
-~06115~^~435~^81.^0^^~4~^~NC~^^^^^^^^^^~08/01/2006~
-~06115~^~601~^4.^4^^~12~^~MA~^^^^^^^^^^~04/01/1996~
-~06116~^~208~^53.^0^^~4~^~NC~^^^^^^^^^^~02/01/1980~
-~06116~^~262~^0.^0^^~4~^~FLA~^^^^^^^^^^~01/01/2003~
-~06116~^~263~^0.^0^^~4~^~FLA~^^^^^^^^^^~01/01/2003~
-~06116~^~268~^222.^0^^~4~^^^^^^^^^^^~05/01/2005~
-~06116~^~301~^6.^5^1.^~1~^^^^^^^^^^^~02/01/1980~
-~06116~^~304~^2.^0^^~1~^^^^^^^^^^^~02/01/1980~
-~06116~^~305~^30.^1^^~1~^^^^^^^^^^^~02/01/1980~
-~06116~^~306~^81.^1^^~1~^^^^^^^^^^^~02/01/1980~
-~06116~^~307~^633.^1^^~8~^~LC~^^^^^^^^^^~07/01/2017~
-~06116~^~318~^3.^0^^~4~^~NC~^^^^^^^^^^~05/01/2005~
-~06116~^~319~^1.^0^^~4~^~FLA~^^^^^^^^^^~01/01/2003~
-~06116~^~320~^1.^0^^~4~^~NC~^^^^^^^^^^~01/01/2003~
-~06116~^~321~^0.^0^^~4~^~FLA~^^^^^^^^^^~01/01/2003~
-~06116~^~322~^0.^0^^~4~^~FLA~^^^^^^^^^^~01/01/2003~
-~06116~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~
-~06116~^~334~^0.^0^^~4~^~FLA~^^^^^^^^^^~01/01/2003~
-~06116~^~337~^0.^0^^~4~^~FLA~^^^^^^^^^^~01/01/2003~
-~06116~^~338~^1.^0^^~4~^~FLA~^^^^^^^^^^~01/01/2003~
-~06116~^~417~^2.^0^^~1~^^^^^^^^^^^~02/01/1980~
-~06116~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~
-~06116~^~432~^2.^0^^~1~^^^^^^^^^^^~01/01/2003~
-~06116~^~435~^2.^0^^~4~^~NC~^^^^^^^^^^~11/01/2006~
-~06116~^~601~^3.^0^^~1~^^^^^^^^^^^~02/01/1980~
-~06118~^~208~^367.^0^^~4~^~NC~^^^^^^^^^^~04/01/1996~
-~06118~^~268~^1536.^0^^~4~^^^^^^^^^^^
-~06118~^~301~^132.^10^^~1~^~A~^^^^^^^^^^~04/01/1996~
-~06118~^~304~^34.^1^^~1~^~A~^^^^^^^^^^~04/01/1996~
-~06118~^~305~^203.^1^^~1~^~A~^^^^^^^^^^~04/01/1996~
-~06118~^~306~^262.^1^^~1~^~A~^^^^^^^^^^~04/01/1996~
-~06118~^~307~^4843.^22^^~1~^~A~^^^^^^^^^^~04/01/1996~
-~06118~^~318~^27.^7^^~12~^~MA~^^^^^^^^^^~04/01/1996~
-~06118~^~319~^8.^0^^~4~^~NC~^^^^^^^^^^~06/01/2002~
-~06118~^~320~^8.^0^^~4~^~NC~^^^^^^^^^^~06/01/2002~
-~06118~^~417~^31.^0^^~4~^~CASN~^^^^^^^^^^~12/01/1997~
-~06118~^~431~^17.^0^^~4~^~NC~^^^^^^^^^^~05/01/2000~
-~06118~^~432~^14.^0^^~1~^^^^^^^^^^^
-~06118~^~435~^43.^0^^~4~^~NC~^^^^^^^^^^~01/01/2001~
-~06118~^~601~^3.^7^^~12~^~MA~^^^^^^^^^^~04/01/1996~
-~06119~^~208~^48.^0^^~4~^~NC~^^^^^^^^^^~02/01/2015~
-~06119~^~262~^0.^0^^~4~^~FLA~^^^^^^^^^^~01/01/2003~
-~06119~^~263~^0.^0^^~4~^~FLA~^^^^^^^^^^~01/01/2003~
-~06119~^~268~^199.^0^^~4~^~NC~^^^^^^^^^^~02/01/2015~
-~06119~^~301~^10.^12^0.^~1~^~A~^^^1^9.^15.^5^9.^10.^~2, 3~^~02/01/2015~
-~06119~^~304~^3.^12^0.^~1~^~A~^^^1^3.^4.^10^3.^3.^~2, 3~^~02/01/2015~
-~06119~^~305~^20.^12^0.^~1~^~A~^^^1^13.^23.^10^19.^20.^~2, 3~^~02/01/2015~
-~06119~^~306~^42.^12^1.^~1~^~A~^^^1^30.^63.^10^38.^44.^~2, 3~^~02/01/2015~
-~06119~^~307~^389.^12^2.^~1~^~A~^^^1^360.^438.^8^383.^394.^~2, 3~^~02/01/2015~
-~06119~^~318~^3.^0^^~4~^~NC~^^^^^^^^^^~06/01/2003~
-~06119~^~319~^1.^0^^~4~^~FLA~^^^^^^^^^^~01/01/2003~
-~06119~^~320~^1.^0^^~4~^~NC~^^^^^^^^^^~06/01/2003~
-~06119~^~321~^0.^0^^~4~^~FLA~^^^^^^^^^^~01/01/2003~
-~06119~^~322~^0.^0^^~4~^~FLA~^^^^^^^^^^~01/01/2003~
-~06119~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~
-~06119~^~334~^0.^0^^~4~^~FLA~^^^^^^^^^^~01/01/2003~
-~06119~^~337~^0.^0^^~4~^~FLA~^^^^^^^^^^~01/01/2003~
-~06119~^~338~^1.^0^^~4~^~FLA~^^^^^^^^^^~01/01/2003~
-~06119~^~417~^2.^0^^~4~^^^^^^^^^^^~02/01/2015~
-~06119~^~431~^0.^0^^~4~^~FLA~^^^^^^^^^^~02/01/2015~
-~06119~^~432~^2.^0^^~4~^^^^^^^^^^^~02/01/2015~
-~06119~^~435~^2.^0^^~4~^~NC~^^^^^^^^^^~02/01/2015~
-~06119~^~601~^5.^6^0.^~1~^~A~^^^1^4.^7.^2^3.^5.^~2, 3~^~02/01/2015~
-~06120~^~208~^381.^0^^~4~^~NC~^^^^^^^^^^~04/01/1996~
-~06120~^~268~^1594.^0^^~4~^^^^^^^^^^^
-~06120~^~301~^146.^9^^~1~^~A~^^^^^^^^^^~04/01/1996~
-~06120~^~304~^40.^0^^~4~^~BFZN~^^^^^^^^^^~04/01/1996~
-~06120~^~305~^249.^0^^~4~^~BFZN~^^^^^^^^^^~04/01/1996~
-~06120~^~306~^404.^0^^~4~^~BFZN~^^^^^^^^^^~04/01/1996~
-~06120~^~307~^4152.^20^^~1~^~A~^^^^^^^^^^~04/01/1996~
-~06120~^~318~^308.^7^^~12~^~MA~^^^^^^^^^^~04/01/1996~
-~06120~^~319~^27.^0^^~4~^~NC~^^^^^^^^^^~06/01/2002~
-~06120~^~320~^38.^0^^~4~^~NC~^^^^^^^^^^~06/01/2002~
-~06120~^~417~^125.^0^^~4~^~CASN~^^^^^^^^^^~12/01/1997~
-~06120~^~431~^16.^0^^~4~^~NC~^^^^^^^^^^~05/01/2000~
-~06120~^~432~^109.^0^^~4~^^^^^^^^^^^
-~06120~^~435~^136.^0^^~4~^~NC~^^^^^^^^^^~01/01/2001~
-~06120~^~601~^19.^7^^~12~^~MA~^^^^^^^^^^~04/01/1996~
-~06121~^~208~^50.^0^^~4~^~NC~^^^^^^^^^^~02/01/1980~
-~06121~^~268~^209.^0^^~4~^^^^^^^^^^^
-~06121~^~301~^7.^7^0.^~1~^^^^^^^^^^^~02/01/1980~
-~06121~^~304~^2.^0^^~4~^^^^^^^^^^^~02/01/1980~
-~06121~^~305~^15.^1^^~1~^^^^^^^^^^^~02/01/1980~
-~06121~^~306~^106.^1^^~1~^^^^^^^^^^^~02/01/1980~
-~06121~^~307~^570.^6^8.^~1~^^^^^^^^^^^~02/01/1980~
-~06121~^~318~^0.^7^0.^~1~^^^^^^^^^^^~02/01/1980~
-~06121~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2002~
-~06121~^~320~^0.^0^^~4~^~NC~^^^^^^^^^^~06/01/2002~
-~06121~^~417~^12.^0^^~4~^^^^^^^^^^^~02/01/1980~
-~06121~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~
-~06121~^~432~^12.^0^^~4~^^^^^^^^^^^~02/01/1980~
-~06121~^~435~^12.^0^^~4~^~NC~^^^^^^^^^^~01/01/2001~
-~06121~^~601~^0.^0^^~1~^^^^^^^^^^^~02/01/1980~
-~06122~^~208~^328.^0^^~4~^~NC~^^^^^^^^^^~02/01/1980~
-~06122~^~262~^0.^0^^~4~^~FLA~^^^^^^^^^^~03/01/2003~
-~06122~^~263~^0.^0^^~4~^~FLA~^^^^^^^^^^~03/01/2003~
-~06122~^~268~^1372.^0^^~4~^^^^^^^^^^^~05/01/2005~
-~06122~^~301~^230.^2^^~1~^^^^^^^^^^^~02/01/1980~
-~06122~^~304~^34.^0^^~4~^^^^^^^^^^^~02/01/1980~
-~06122~^~305~^203.^0^^~4~^^^^^^^^^^^~02/01/1980~
-~06122~^~306~^262.^0^^~4~^^^^^^^^^^^~02/01/1980~
-~06122~^~307~^6580.^2^^~1~^^^^^^^^^^^~02/01/1980~
-~06122~^~318~^1.^0^^~4~^~FLA~^^^^^^^^^^~03/01/2003~
-~06122~^~319~^0.^0^^~4~^~FLA~^^^^^^^^^^~03/01/2003~
-~06122~^~320~^0.^0^^~4~^~FLA~^^^^^^^^^^~03/01/2003~
-~06122~^~321~^1.^0^^~4~^~FLA~^^^^^^^^^^~03/01/2003~
-~06122~^~322~^0.^0^^~4~^~FLA~^^^^^^^^^^~03/01/2003~
-~06122~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~
-~06122~^~334~^0.^0^^~4~^~FLA~^^^^^^^^^^~03/01/2003~
-~06122~^~337~^0.^0^^~4~^~FLA~^^^^^^^^^^~03/01/2003~
-~06122~^~338~^9.^0^^~4~^~FLA~^^^^^^^^^^~03/01/2003~
-~06122~^~417~^31.^0^^~4~^~CASN~^^^^^^^^^^~12/01/1997~
-~06122~^~431~^17.^0^^~4~^~NC~^^^^^^^^^^~05/01/2000~
-~06122~^~432~^14.^0^^~4~^^^^^^^^^^^
-~06122~^~435~^43.^0^^~4~^~NC~^^^^^^^^^^~11/01/2006~
-~06122~^~601~^3.^0^^~1~^^^^^^^^^^^~02/01/1980~
-~06123~^~208~^322.^0^^~4~^~NC~^^^^^^^^^^~02/01/1980~
-~06123~^~268~^1347.^0^^~4~^^^^^^^^^^^~11/01/2006~
-~06123~^~301~^280.^2^^~1~^^^^^^^^^^^~02/01/1980~
-~06123~^~304~^34.^0^^~4~^^^^^^^^^^^~02/01/1980~
-~06123~^~305~^203.^0^^~4~^^^^^^^^^^^~02/01/1980~
-~06123~^~306~^262.^0^^~4~^^^^^^^^^^^~02/01/1980~
-~06123~^~307~^4186.^3^^~1~^^^^^^^^^^^~02/01/1980~
-~06123~^~318~^0.^0^^~4~^^^^^^^^^^^~02/01/1980~
-~06123~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2002~
-~06123~^~320~^0.^0^^~4~^~NC~^^^^^^^^^^~06/01/2002~
-~06123~^~417~^31.^0^^~4~^~CASN~^^^^^^^^^^~12/01/1997~
-~06123~^~431~^17.^0^^~4~^~NC~^^^^^^^^^^~05/01/2000~
-~06123~^~432~^14.^0^^~4~^^^^^^^^^^^
-~06123~^~435~^43.^0^^~4~^~NC~^^^^^^^^^^~11/01/2006~
-~06123~^~601~^2.^0^^~1~^^^^^^^^^^^~02/01/1980~
-~06124~^~208~^367.^0^^~4~^~NC~^^^^^^^^^^~03/01/2003~
-~06124~^~262~^0.^0^^~4~^~FLA~^^^^^^^^^^~03/01/2003~
-~06124~^~263~^0.^0^^~4~^~FLA~^^^^^^^^^^~03/01/2003~
-~06124~^~268~^1536.^0^^~4~^^^^^^^^^^^~05/01/2005~
-~06124~^~301~^139.^3^^~1~^~A~^^^^^^^^^^~03/01/2003~
-~06124~^~304~^34.^0^^~4~^~BFZN~^^^^^^^^^^~03/01/2003~
-~06124~^~305~^188.^0^^~4~^~BFZN~^^^^^^^^^^~03/01/2003~
-~06124~^~306~^235.^0^^~4~^~BFZN~^^^^^^^^^^~03/01/2003~
-~06124~^~307~^5356.^3^^~1~^~A~^^^^^^^^^^~03/01/2003~
-~06124~^~318~^117.^0^^~4~^~FLA~^^^^^^^^^^~03/01/2003~
-~06124~^~319~^34.^0^^~4~^~FLA~^^^^^^^^^^~03/01/2003~
-~06124~^~320~^34.^0^^~4~^~FLA~^^^^^^^^^^~03/01/2003~
-~06124~^~321~^2.^0^^~4~^~FLA~^^^^^^^^^^~03/01/2003~
-~06124~^~322~^0.^0^^~4~^~FLA~^^^^^^^^^^~03/01/2003~
-~06124~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~
-~06124~^~334~^0.^0^^~4~^~FLA~^^^^^^^^^^~03/01/2003~
-~06124~^~337~^0.^0^^~4~^~FLA~^^^^^^^^^^~03/01/2003~
-~06124~^~338~^10.^0^^~4~^~FLA~^^^^^^^^^^~03/01/2003~
-~06124~^~417~^31.^0^^~4~^~CASN~^^^^^^^^^^~03/01/2003~
-~06124~^~431~^15.^0^^~4~^~NC~^^^^^^^^^^~03/01/2003~
-~06124~^~432~^16.^0^^~4~^^^^^^^^^^^~03/01/2003~
-~06124~^~435~^42.^0^^~4~^~NC~^^^^^^^^^^~11/01/2006~
-~06124~^~601~^10.^1^^~1~^~A~^^^^^^^^^^~03/01/2003~
-~06125~^~208~^51.^0^^~4~^~NC~^^^^^^^^^^~02/01/1980~
-~06125~^~262~^0.^0^^~4~^~FLA~^^^^^^^^^^~02/01/2003~
-~06125~^~263~^0.^0^^~4~^~FLA~^^^^^^^^^^~02/01/2003~
-~06125~^~268~^213.^0^^~4~^^^^^^^^^^^~05/01/2005~
-~06125~^~301~^4.^1^^~1~^^^^^^^^^^^~02/01/1980~
-~06125~^~304~^2.^0^^~4~^^^^^^^^^^^~02/01/1980~
-~06125~^~305~^29.^0^^~4~^^^^^^^^^^^~02/01/1980~
-~06125~^~306~^109.^0^^~4~^^^^^^^^^^^~02/01/1980~
-~06125~^~307~^577.^0^^~4~^^^^^^^^^^^~02/01/1980~
-~06125~^~318~^0.^0^^~4~^~NC~^^^^^^^^^^~02/01/2003~
-~06125~^~319~^0.^0^^~4~^~FLA~^^^^^^^^^^~02/01/2003~
-~06125~^~320~^0.^0^^~4~^~NC~^^^^^^^^^^~02/01/2003~
-~06125~^~321~^0.^0^^~4~^~FLA~^^^^^^^^^^~02/01/2003~
-~06125~^~322~^0.^0^^~4~^~FLA~^^^^^^^^^^~02/01/2003~
-~06125~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~
-~06125~^~334~^0.^0^^~4~^~FLA~^^^^^^^^^^~02/01/2003~
-~06125~^~337~^0.^0^^~4~^~FLA~^^^^^^^^^^~02/01/2003~
-~06125~^~338~^1.^0^^~4~^~FLA~^^^^^^^^^^~02/01/2003~
-~06125~^~417~^2.^0^^~4~^^^^^^^^^^^~02/01/1980~
-~06125~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~
-~06125~^~432~^2.^0^^~4~^^^^^^^^^^^~02/01/2003~
-~06125~^~435~^2.^0^^~4~^~NC~^^^^^^^^^^~11/01/2006~
-~06125~^~601~^2.^0^^~1~^^^^^^^^^^^~02/01/1980~
-~06126~^~208~^367.^0^^~4~^~NC~^^^^^^^^^^~04/01/1996~
-~06126~^~268~^1536.^0^^~4~^^^^^^^^^^^
-~06126~^~301~^146.^6^^~1~^~A~^^^^^^^^^^~04/01/1996~
-~06126~^~304~^44.^0^^~4~^~BFZN~^^^^^^^^^^~04/01/1996~
-~06126~^~305~^254.^0^^~4~^~BFZN~^^^^^^^^^^~04/01/1996~
-~06126~^~306~^428.^0^^~4~^~BFZN~^^^^^^^^^^~04/01/1996~
-~06126~^~307~^4392.^6^^~1~^~A~^^^^^^^^^^~04/01/1996~
-~06126~^~318~^35.^4^^~12~^~MA~^^^^^^^^^^~04/01/1996~
-~06126~^~319~^7.^0^^~4~^~NC~^^^^^^^^^^~06/01/2002~
-~06126~^~320~^8.^0^^~4~^~NC~^^^^^^^^^^~06/01/2002~
-~06126~^~417~^82.^0^^~4~^~CASN~^^^^^^^^^^~12/01/1997~
-~06126~^~431~^16.^0^^~4~^~NC~^^^^^^^^^^~05/01/2000~
-~06126~^~432~^66.^0^^~4~^^^^^^^^^^^
-~06126~^~435~^93.^0^^~4~^~NC~^^^^^^^^^^~01/01/2001~
-~06126~^~601~^14.^4^^~12~^~MA~^^^^^^^^^^~04/01/1996~
-~06127~^~208~^344.^0^^~4~^~NC~^^^^^^^^^^~02/01/1980~
-~06127~^~268~^1439.^0^^~4~^^^^^^^^^^^
-~06127~^~301~^150.^1^^~1~^^^^^^^^^^^~02/01/1980~
-~06127~^~304~^45.^0^^~4~^^^^^^^^^^^~02/01/1980~
-~06127~^~305~^203.^0^^~4~^^^^^^^^^^^~02/01/1980~
-~06127~^~306~^262.^0^^~4~^^^^^^^^^^^~02/01/1980~
-~06127~^~307~^5730.^2^^~1~^^^^^^^^^^^~02/01/1980~
-~06127~^~318~^0.^0^^~4~^^^^^^^^^^^~02/01/1980~
-~06127~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2002~
-~06127~^~320~^0.^0^^~4~^~NC~^^^^^^^^^^~06/01/2002~
-~06127~^~417~^31.^0^^~4~^~CASN~^^^^^^^^^^~12/01/1997~
-~06127~^~431~^17.^0^^~4~^~NC~^^^^^^^^^^~05/01/2000~
-~06127~^~432~^14.^0^^~4~^^^^^^^^^^^
-~06127~^~435~^43.^0^^~4~^~NC~^^^^^^^^^^~01/01/2001~
-~06127~^~601~^4.^0^^~1~^^^^^^^^^^^~02/01/1980~
-~06128~^~208~^377.^0^^~4~^~NC~^^^^^^^^^^~04/01/2004~
-~06128~^~262~^0.^0^^~4~^~FLA~^^^^^^^^^^~01/01/2003~
-~06128~^~263~^0.^0^^~4~^~FLA~^^^^^^^^^^~01/01/2003~
-~06128~^~268~^1576.^0^^~4~^~NC~^^^^^^^^^^~04/01/2004~
-~06128~^~301~^55.^4^0.^~1~^~A~^^^1^^^^^^^~04/01/2004~
-~06128~^~304~^38.^4^1.^~1~^~A~^^^1^^^^^^^~04/01/2004~
-~06128~^~305~^195.^4^5.^~1~^~A~^^^1^^^^^^^~04/01/2004~
-~06128~^~306~^306.^4^23.^~1~^~A~^^^1^^^^^^^~04/01/2004~
-~06128~^~307~^3161.^1^^~8~^~LC~^^^1^^^^^^^~07/01/2017~
-~06128~^~318~^44.^0^^~4~^~NC~^^^^^^^^^^~04/01/2004~
-~06128~^~319~^8.^0^^~4~^~FLA~^^^^^^^^^^~01/01/2003~
-~06128~^~320~^8.^0^^~4~^~NC~^^^^^^^^^^~04/01/2004~
-~06128~^~321~^9.^0^^~4~^~FLA~^^^^^^^^^^~01/01/2003~
-~06128~^~322~^4.^0^^~4~^~FLA~^^^^^^^^^^~01/01/2003~
-~06128~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~
-~06128~^~334~^1.^0^^~4~^~FLA~^^^^^^^^^^~01/01/2003~
-~06128~^~337~^0.^0^^~4~^~FLA~^^^^^^^^^^~01/01/2003~
-~06128~^~338~^43.^0^^~4~^~FLA~^^^^^^^^^^~01/01/2003~
-~06128~^~417~^71.^2^^~1~^~A~^^^1^^^^^^^~04/01/2004~
-~06128~^~431~^62.^0^^~4~^~NC~^^^^^^^^^^~04/01/2004~
-~06128~^~432~^9.^3^0.^~1~^^^^^^^^^^^~04/01/2004~
-~06128~^~435~^115.^0^^~4~^~NC~^^^^^^^^^^~11/01/2006~
-~06128~^~601~^74.^0^^~9~^~MC~^^^^^^^^^^~03/01/1998~
-~06142~^~208~^237.^0^^~4~^~NC~^^^^^^^^^^~02/01/1998~
-~06142~^~268~^992.^0^^~4~^^^^^^^^^^^
-~06142~^~301~^20.^2^^~1~^~A~^^^^^^^^^^~02/01/1998~
-~06142~^~304~^25.^2^^~1~^~A~^^^^^^^^^^~02/01/1998~
-~06142~^~305~^139.^2^^~1~^~A~^^^^^^^^^^~02/01/1998~
-~06142~^~306~^401.^2^^~1~^~A~^^^^^^^^^^~02/01/1998~
-~06142~^~307~^1145.^2^^~1~^~A~^^^^^^^^^^~02/01/1998~
-~06142~^~417~^43.^2^^~1~^~A~^^^^^^^^^^~02/01/1998~
-~06142~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~
-~06142~^~432~^43.^2^^~1~^~A~^^^^^^^^^^~02/01/1998~
-~06142~^~435~^43.^0^^~4~^~NC~^^^^^^^^^^~01/01/2001~
-~06147~^~208~^61.^0^^~4~^^^^^^^^^^^~02/01/1980~
-~06147~^~268~^255.^0^^~4~^^^^^^^^^^^~11/01/2006~
-~06147~^~301~^4.^5^0.^~1~^^^^^^^^^^^~02/01/1980~
-~06147~^~304~^7.^0^^~4~^^^^^^^^^^^~02/01/1980~
-~06147~^~305~^29.^0^^~4~^^^^^^^^^^^~02/01/1980~
-~06147~^~306~^126.^0^^~4~^^^^^^^^^^^~02/01/1980~
-~06147~^~307~^709.^0^^~8~^~LC~^^^^^^^^^^~06/01/2008~
-~06147~^~318~^0.^5^0.^~1~^^^^^^^^^^^~02/01/1980~
-~06147~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2002~
-~06147~^~320~^0.^0^^~4~^~NC~^^^^^^^^^^~06/01/2002~
-~06147~^~417~^7.^0^^~4~^^^^^^^^^^^~02/01/1980~
-~06147~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~
-~06147~^~432~^7.^0^^~4~^^^^^^^^^^^~02/01/1980~
-~06147~^~435~^7.^0^^~4~^~NC~^^^^^^^^^^~06/01/2008~
-~06147~^~601~^5.^0^^~1~^^^^^^^^^^^~02/01/1980~
-~06149~^~208~^100.^0^^~4~^~NC~^^^^^^^^^^~05/01/2013~
-~06149~^~262~^0.^0^^~4~^~FLA~^^^^^^^^^^~02/01/2003~
-~06149~^~263~^0.^0^^~4~^~FLA~^^^^^^^^^^~02/01/2003~
-~06149~^~268~^419.^0^^~4~^~NC~^^^^^^^^^^~05/01/2013~
-~06149~^~301~^23.^5^0.^~1~^^^^^^^^^^^~02/01/1980~
-~06149~^~304~^7.^0^^~4~^^^^^^^^^^^~02/01/1980~
-~06149~^~305~^22.^0^^~4~^^^^^^^^^^^~02/01/1980~
-~06149~^~306~^56.^1^^~8~^~LC~^^^^^^^^^^~05/01/2013~
-~06149~^~307~^669.^1^^~8~^~LC~^^^^^^^^^^~05/01/2013~
-~06149~^~318~^33.^0^^~4~^~NC~^^^^^^^^^^~06/01/2008~
-~06149~^~319~^8.^0^^~4~^~FLA~^^^^^^^^^^~02/01/2003~
-~06149~^~320~^9.^0^^~4~^~NC~^^^^^^^^^^~06/01/2008~
-~06149~^~321~^3.^0^^~4~^~FLA~^^^^^^^^^^~02/01/2003~
-~06149~^~322~^0.^0^^~4~^~FLA~^^^^^^^^^^~02/01/2003~
-~06149~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~
-~06149~^~334~^0.^0^^~4~^~FLA~^^^^^^^^^^~02/01/2003~
-~06149~^~337~^0.^0^^~4~^~FLA~^^^^^^^^^^~11/01/2006~
-~06149~^~338~^1.^0^^~4~^~FLA~^^^^^^^^^^~02/01/2003~
-~06149~^~417~^2.^0^^~4~^^^^^^^^^^^~02/01/1980~
-~06149~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~
-~06149~^~432~^2.^0^^~4~^^^^^^^^^^^~02/01/2003~
-~06149~^~435~^2.^0^^~4~^~NC~^^^^^^^^^^~06/01/2008~
-~06149~^~601~^8.^1^^~8~^~LC~^^^^^^^^^^~05/01/2013~
-~06150~^~208~^172.^0^^~4~^~NC~^^^^^^^^^^~07/01/2012~
-~06150~^~262~^0.^0^^~4~^~FLC~^^^^^^^^^^~01/01/2006~
-~06150~^~263~^0.^0^^~4~^~FLC~^^^^^^^^^^~01/01/2006~
-~06150~^~268~^720.^0^^~4~^~NC~^^^^^^^^^^~07/01/2012~
-~06150~^~301~^33.^27^0.^~1~^~A~^^^1^10.^49.^9^32.^33.^~2, 3~^~07/01/2012~
-~06150~^~304~^13.^27^0.^~1~^~A~^^^1^5.^17.^8^12.^13.^~2, 3~^~07/01/2012~
-~06150~^~305~^20.^27^0.^~1~^~A~^^^1^16.^25.^14^19.^20.^~2, 3~^~07/01/2012~
-~06150~^~306~^232.^27^3.^~1~^~A~^^^1^46.^296.^9^223.^239.^~2, 3~^~07/01/2012~
-~06150~^~307~^1027.^27^6.^~1~^~A~^^^1^564.^1550.^11^1012.^1040.^~2, 3~^~07/01/2012~
-~06150~^~318~^224.^0^^~4~^~NC~^^^^^^^^^^~04/01/2015~
-~06150~^~319~^0.^0^^~4~^~FLC~^^^^^^^^^^~01/01/2006~
-~06150~^~320~^11.^0^^~4~^~NC~^^^^^^^^^^~04/01/2015~
-~06150~^~321~^133.^15^10.^~1~^~A~^^^1^13.^243.^4^105.^161.^~2, 3~^~07/01/2012~
-~06150~^~322~^0.^15^0.^~1~^~A~^^^1^0.^0.^^^^~1, 2, 3~^~07/01/2012~
-~06150~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~
-~06150~^~334~^2.^15^0.^~1~^~A~^^^1^0.^10.^5^0.^3.^~1, 2, 3~^~04/01/2015~
-~06150~^~337~^4550.^15^78.^~1~^~A~^^^1^448.^7589.^4^4330.^4770.^~2, 3~^~07/01/2012~
-~06150~^~338~^88.^15^2.^~1~^~A~^^^1^18.^141.^5^81.^94.^~2, 3~^~07/01/2012~
-~06150~^~417~^2.^0^^~4~^~FLC~^^^^^^^^^^~01/01/2006~
-~06150~^~431~^0.^0^^~4~^~FLC~^^^^^^^^^^~01/01/2006~
-~06150~^~432~^2.^0^^~4~^~FLC~^^^^^^^^^^~01/01/2006~
-~06150~^~435~^2.^0^^~4~^~NC~^^^^^^^^^^~06/01/2010~
-~06150~^~601~^0.^0^^~4~^~FLC~^^^^^^^^^^~04/01/2015~
-~06151~^~208~^184.^0^^~4~^~NC~^^^^^^^^^^~03/01/1996~
-~06151~^~268~^770.^0^^~4~^^^^^^^^^^^
-~06151~^~301~^12.^2^^~1~^~A~^^^^^^^^^^~03/01/1996~
-~06151~^~304~^12.^2^^~1~^~A~^^^^^^^^^^~03/01/1996~
-~06151~^~305~^22.^2^^~1~^~A~^^^^^^^^^^~03/01/1996~
-~06151~^~306~^259.^2^^~1~^~A~^^^^^^^^^^~03/01/1996~
-~06151~^~307~^538.^2^^~1~^~A~^^^^^^^^^^~03/01/1996~
-~06151~^~318~^43.^0^^~1~^~AS~^^^^^^^^^^~06/01/2003~
-~06151~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2002~
-~06151~^~320~^2.^0^^~1~^~AS~^^^^^^^^^^~06/01/2003~
-~06151~^~321~^26.^0^^~1~^~A~^^^^^^^^^^~06/01/2003~
-~06151~^~322~^0.^0^^~1~^~A~^^^^^^^^^^~06/01/2003~
-~06151~^~334~^0.^0^^~1~^~A~^^^^^^^^^^~06/01/2003~
-~06151~^~417~^6.^0^^~4~^~FLA~^^^^^^^^^^~03/01/1996~
-~06151~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~
-~06151~^~432~^6.^0^^~4~^~FLA~^^^^^^^^^^~06/01/2003~
-~06151~^~435~^6.^0^^~4~^~NC~^^^^^^^^^^~06/01/2003~
-~06151~^~601~^0.^0^^~4~^~FLA~^^^^^^^^^^~03/01/1996~
-~06152~^~208~^54.^0^^~9~^~MC~^^^^^^^^^^~04/01/1996~
-~06152~^~268~^226.^0^^~9~^~MC~^^^^^^^^^^~03/01/2006~
-~06152~^~301~^54.^3^^~1~^~A~^^^^^^^^^^~03/01/1996~
-~06152~^~304~^21.^0^^~4~^~FLA~^^^^^^^^^^~03/01/1996~
-~06152~^~305~^50.^0^^~4~^~FLA~^^^^^^^^^^~03/01/1996~
-~06152~^~306~^354.^0^^~4~^~FLA~^^^^^^^^^^~03/01/1996~
-~06152~^~307~^348.^1^^~8~^~LC~^^^1^133.^540.^^^^^~05/01/2014~
-~06152~^~318~^667.^3^^~12~^~MA~^^^^^^^^^^~03/01/1996~
-~06152~^~417~^10.^0^^~4~^~FLA~^^^^^^^^^^~03/01/1996~
-~06152~^~432~^10.^0^^~4~^~FLA~^^^^^^^^^^~12/01/2000~
-~06152~^~601~^0.^1^^~8~^~LC~^^^1^0.^0.^^^^^~05/01/2014~
-~06158~^~208~^96.^0^^~4~^~NC~^^^^^^^^^^~02/01/1980~
-~06158~^~268~^402.^0^^~4~^^^^^^^^^^^~11/01/2006~
-~06158~^~301~^31.^13^2.^~1~^^^^^^^^^^^~02/01/1980~
-~06158~^~304~^7.^1^^~1~^^^^^^^^^^^~02/01/1980~
-~06158~^~305~^47.^1^^~1~^^^^^^^^^^^~02/01/1980~
-~06158~^~306~^325.^1^^~1~^^^^^^^^^^^~02/01/1980~
-~06158~^~307~^698.^0^^~8~^~LC~^^^^^^^^^^~06/01/2012~
-~06158~^~318~^562.^13^^~1~^^^^^^^^^^^~02/01/1980~
-~06158~^~319~^4.^0^^~4~^~NC~^^^^^^^^^^~06/01/2002~
-~06158~^~320~^32.^0^^~4~^~NC~^^^^^^^^^^~06/01/2002~
-~06158~^~417~^12.^0^^~4~^^^^^^^^^^^~02/01/1980~
-~06158~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~
-~06158~^~432~^12.^0^^~4~^^^^^^^^^^^~02/01/1980~
-~06158~^~435~^12.^0^^~4~^~NC~^^^^^^^^^^~06/01/2008~
-~06158~^~601~^4.^0^^~1~^^^^^^^^^^^~02/01/1980~
-~06159~^~208~^66.^0^^~4~^~NC~^^^^^^^^^^~02/01/2011~
-~06159~^~262~^0.^0^^~4~^~FLA~^^^^^^^^^^~01/01/2003~
-~06159~^~263~^0.^0^^~4~^~FLA~^^^^^^^^^^~01/01/2003~
-~06159~^~268~^275.^0^^~4~^~NC~^^^^^^^^^^~02/01/2011~
-~06159~^~301~^13.^6^0.^~1~^~A~^^^1^12.^14.^5^11.^13.^~2, 3~^~04/01/2004~
-~06159~^~304~^14.^6^0.^~1~^~A~^^^1^13.^15.^5^13.^14.^~2, 3~^~04/01/2004~
-~06159~^~305~^31.^6^0.^~1~^~A~^^^1^29.^33.^5^29.^32.^~2, 3~^~02/01/2011~
-~06159~^~306~^562.^6^11.^~1~^~A~^^^1^518.^598.^5^533.^590.^~2, 3~^~02/01/2011~
-~06159~^~307~^377.^6^3.^~1~^~A~^^^1^363.^384.^5^368.^385.^~2, 3~^~02/01/2011~
-~06159~^~318~^392.^0^^~4~^~NC~^^^^^^^^^^~03/01/2006~
-~06159~^~319~^0.^0^^~4~^~FLA~^^^^^^^^^^~01/01/2003~
-~06159~^~320~^20.^0^^~4~^~NC~^^^^^^^^^^~03/01/2006~
-~06159~^~321~^235.^2^^~1~^~A~^^^^^^^^^^~04/01/2003~
-~06159~^~322~^0.^1^^~1~^~A~^^^^^^^^^^~04/01/2003~
-~06159~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~
-~06159~^~334~^0.^1^^~1~^~A~^^^^^^^^^^~04/01/2003~
-~06159~^~337~^10920.^1^^~1~^~A~^^^^^^^^^^~04/01/2003~
-~06159~^~338~^90.^1^^~1~^~A~^^^^^^^^^^~04/01/2003~
-~06159~^~417~^0.^2^^~1~^~A~^^^1^^^^^^^~04/01/2004~
-~06159~^~431~^0.^0^^~4~^~FLA~^^^^^^^^^^~04/01/2004~
-~06159~^~432~^0.^2^^~1~^~A~^^^^^^^^^^~03/01/2006~
-~06159~^~435~^0.^0^^~4~^~NC~^^^^^^^^^^~06/01/2008~
-~06159~^~601~^0.^0^^~1~^^^^^^^^^^^~02/01/1980~
-~06164~^~208~^29.^0^^~4~^~NC~^^^^^^^^^^~05/01/2012~
-~06164~^~262~^0.^0^^~4~^~FLA~^^^^^^^^^^~02/01/2003~
-~06164~^~263~^0.^0^^~4~^~FLA~^^^^^^^^^^~02/01/2003~
-~06164~^~268~^121.^0^^~4~^~NC~^^^^^^^^^^~04/01/2015~
-~06164~^~301~^30.^12^0.^~1~^~A~^^^1^27.^33.^6^27.^31.^~2, 3~^~05/01/2012~
-~06164~^~304~^15.^12^0.^~1~^~A~^^^1^14.^17.^6^14.^15.^~2, 3~^~04/01/2004~
-~06164~^~305~^33.^12^0.^~1~^~A~^^^1^31.^38.^8^32.^33.^~2, 3~^~04/01/2015~
-~06164~^~306~^275.^12^3.^~1~^~A~^^^1^253.^327.^10^267.^282.^~2, 3~^~04/01/2015~
-~06164~^~307~^711.^12^13.^~1~^~A~^^^1^671.^784.^5^677.^743.^~2, 3~^~04/01/2015~
-~06164~^~318~^461.^0^^~4~^~NC~^^^^^^^^^^~04/01/2015~
-~06164~^~319~^0.^0^^~4~^~FLA~^^^^^^^^^^~02/01/2003~
-~06164~^~320~^23.^0^^~4~^~NC~^^^^^^^^^^~04/01/2015~
-~06164~^~321~^276.^6^14.^~1~^~A~^^^1^236.^351.^3^227.^325.^~2, 3~^~04/01/2015~
-~06164~^~322~^0.^6^0.^~1~^~A~^^^1^0.^0.^^^^~1, 2, 3~^~04/01/2004~
-~06164~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~
-~06164~^~334~^0.^6^0.^~1~^~A~^^^1^0.^0.^^^^~1, 2, 3~^~04/01/2004~
-~06164~^~337~^6063.^6^244.^~1~^~A~^^^1^5147.^7059.^2^5033.^7092.^~2, 3~^~04/01/2015~
-~06164~^~338~^204.^6^7.^~1~^~A~^^^1^177.^240.^3^178.^230.^~2, 3~^~04/01/2015~
-~06164~^~417~^4.^6^0.^~1~^~A~^^^1^^^^^^^~04/01/2004~
-~06164~^~431~^0.^0^^~4~^~FLA~^^^^^^^^^^~04/01/2004~
-~06164~^~432~^4.^6^0.^~1~^~A~^^^1^^^^^^^~03/01/2006~
-~06164~^~435~^4.^0^^~4~^~NC~^^^^^^^^^^~10/01/2006~
-~06164~^~601~^0.^3^^~1~^~A~^^^^^^^^^^~02/01/1998~
-~06166~^~208~^147.^0^^~4~^~NC~^^^^^^^^^^~02/01/1980~
-~06166~^~262~^0.^0^^~4~^~FLA~^^^^^^^^^^~02/01/2003~
-~06166~^~263~^0.^0^^~4~^~FLA~^^^^^^^^^^~02/01/2003~
-~06166~^~268~^615.^0^^~4~^^^^^^^^^^^~03/01/2009~
-~06166~^~301~^118.^0^^~1~^^^^^^^^^^^~02/01/1980~
-~06166~^~304~^14.^0^^~1~^^^^^^^^^^^~02/01/1980~
-~06166~^~305~^98.^0^^~1~^^^^^^^^^^^~02/01/1980~
-~06166~^~306~^156.^0^^~1~^^^^^^^^^^^~02/01/1980~
-~06166~^~307~^354.^0^^~1~^^^^^^^^^^^~02/01/1980~
-~06166~^~318~^377.^0^^~4~^~NC~^^^^^^^^^^~03/01/2009~
-~06166~^~319~^103.^0^^~4~^~FLA~^^^^^^^^^^~03/01/2009~
-~06166~^~320~^104.^0^^~4~^~NC~^^^^^^^^^^~03/01/2009~
-~06166~^~321~^21.^0^^~4~^~FLA~^^^^^^^^^^~03/01/2009~
-~06166~^~322~^0.^0^^~4~^~FLA~^^^^^^^^^^~03/01/2009~
-~06166~^~324~^48.^0^^~4~^~FLA~^^^^^^^^^^~03/01/2009~
-~06166~^~334~^0.^0^^~4~^~FLA~^^^^^^^^^^~03/01/2009~
-~06166~^~337~^0.^0^^~4~^~FLA~^^^^^^^^^^~02/01/2003~
-~06166~^~338~^1.^0^^~4~^~FLA~^^^^^^^^^^~03/01/2009~
-~06166~^~417~^8.^0^^~4~^~RC~^^^^^^^^^^~12/01/1997~
-~06166~^~431~^3.^0^^~4~^~NC~^^^^^^^^^^~05/01/2000~
-~06166~^~432~^5.^0^^~1~^^^^^^^^^^^
-~06166~^~435~^10.^0^^~4~^~NC~^^^^^^^^^^~03/01/2009~
-~06166~^~601~^7.^0^^~1~^^^^^^^^^^^~02/01/1980~
-~06166~^~636~^29.^0^^~1~^^^^^^^^^^^~02/01/1980~
-~06167~^~208~^186.^0^^~4~^~NC~^^^^^^^^^^~02/01/1980~
-~06167~^~262~^0.^0^^~4~^~FLA~^^^^^^^^^^~02/01/2003~
-~06167~^~263~^0.^0^^~4~^~FLA~^^^^^^^^^^~02/01/2003~
-~06167~^~268~^778.^0^^~4~^^^^^^^^^^^~03/01/2009~
-~06167~^~301~^111.^0^^~1~^^^^^^^^^^^~02/01/1980~
-~06167~^~304~^14.^0^^~1~^^^^^^^^^^^~02/01/1980~
-~06167~^~305~^96.^0^^~1~^^^^^^^^^^^~02/01/1980~
-~06167~^~306~^149.^0^^~1~^^^^^^^^^^^~02/01/1980~
-~06167~^~307~^373.^0^^~1~^^^^^^^^^^^~02/01/1980~
-~06167~^~318~^469.^0^^~4~^~NC~^^^^^^^^^^~03/01/2009~
-~06167~^~319~^127.^0^^~4~^~FLA~^^^^^^^^^^~03/01/2009~
-~06167~^~320~^130.^0^^~4~^~NC~^^^^^^^^^^~03/01/2009~
-~06167~^~321~^27.^0^^~4~^~FLA~^^^^^^^^^^~03/01/2009~
-~06167~^~322~^0.^0^^~4~^~FLA~^^^^^^^^^^~03/01/2009~
-~06167~^~324~^47.^0^^~4~^~FLA~^^^^^^^^^^~03/01/2009~
-~06167~^~334~^0.^0^^~4~^~FLA~^^^^^^^^^^~03/01/2009~
-~06167~^~337~^0.^0^^~4~^~FLA~^^^^^^^^^^~02/01/2003~
-~06167~^~338~^2.^0^^~4~^~FLA~^^^^^^^^^^~03/01/2009~
-~06167~^~417~^11.^0^^~4~^~RC~^^^^^^^^^^~12/01/1997~
-~06167~^~431~^5.^0^^~4~^~NC~^^^^^^^^^^~05/01/2000~
-~06167~^~432~^6.^0^^~1~^^^^^^^^^^^
-~06167~^~435~^15.^0^^~4~^~NC~^^^^^^^^^^~03/01/2009~
-~06167~^~601~^6.^0^^~1~^^^^^^^^^^^~02/01/1980~
-~06167~^~636~^40.^0^^~1~^^^^^^^^^^^~02/01/1980~
-~06168~^~208~^11.^0^^~4~^~NC~^^^^^^^^^^~02/01/1980~
-~06168~^~268~^46.^0^^~4~^^^^^^^^^^^
-~06168~^~301~^8.^1^^~1~^^^^^^^^^^^~02/01/1980~
-~06168~^~304~^5.^1^^~1~^^^^^^^^^^^~02/01/1980~
-~06168~^~305~^11.^1^^~1~^^^^^^^^^^^~02/01/1980~
-~06168~^~306~^144.^1^^~1~^^^^^^^^^^^~02/01/1980~
-~06168~^~307~^2643.^1^^~1~^^^^^^^^^^^~02/01/1980~
-~06168~^~318~^162.^0^^~4~^~FLA~^^^^^^^^^^~01/01/2003~
-~06168~^~319~^0.^0^^~4~^~FLA~^^^^^^^^^^~01/01/2003~
-~06168~^~320~^8.^0^^~4~^~FLA~^^^^^^^^^^~01/01/2003~
-~06168~^~321~^91.^0^^~4~^~FLA~^^^^^^^^^^~01/01/2003~
-~06168~^~322~^6.^0^^~4~^~FLA~^^^^^^^^^^~01/01/2003~
-~06168~^~334~^7.^0^^~4~^~FLA~^^^^^^^^^^~01/01/2003~
-~06168~^~337~^0.^0^^~4~^~FLA~^^^^^^^^^^~01/01/2003~
-~06168~^~338~^121.^0^^~4~^~FLA~^^^^^^^^^^~01/01/2003~
-~06168~^~417~^6.^1^^~1~^^^^^^^^^^^~02/01/1980~
-~06168~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~
-~06168~^~432~^6.^1^^~1~^^^^^^^^^^^~01/01/2003~
-~06168~^~435~^6.^0^^~4~^~NC~^^^^^^^^^^~01/01/2003~
-~06168~^~601~^0.^0^^~1~^^^^^^^^^^^~02/01/1980~
-~06169~^~208~^12.^0^^~4~^~NC~^^^^^^^^^^~02/01/1980~
-~06169~^~262~^0.^0^^~4~^~FLC~^^^^^^^^^^~05/01/2007~
-~06169~^~263~^0.^0^^~4~^~FLC~^^^^^^^^^^~05/01/2007~
-~06169~^~268~^50.^0^^~4~^^^^^^^^^^^~05/01/2007~
-~06169~^~301~^12.^1^^~1~^^^^^^^^^^^~02/01/1980~
-~06169~^~304~^12.^1^^~1~^^^^^^^^^^^~02/01/1980~
-~06169~^~305~^23.^1^^~1~^^^^^^^^^^^~02/01/1980~
-~06169~^~306~^128.^1^^~1~^^^^^^^^^^^~02/01/1980~
-~06169~^~307~^633.^1^^~1~^^^^^^^^^^^~02/01/1980~
-~06169~^~318~^1640.^1^^~1~^^^^^^^^^^^~05/01/2007~
-~06169~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2002~
-~06169~^~320~^82.^0^^~4~^~NC~^^^^^^^^^^~05/01/2007~
-~06169~^~321~^919.^0^^~4~^~BNA~^~11819~^^^^^^^^^~05/01/2007~
-~06169~^~322~^62.^0^^~4~^~BNA~^~11819~^^^^^^^^^~05/01/2007~
-~06169~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~
-~06169~^~334~^68.^0^^~4~^~BNA~^~11819~^^^^^^^^^~05/01/2007~
-~06169~^~337~^0.^0^^~4~^~FLC~^^^^^^^^^^~05/01/2007~
-~06169~^~338~^10.^0^^~4~^~FLC~^^^^^^^^^^~05/01/2007~
-~06169~^~417~^1.^1^^~1~^^^^^^^^^^^~02/01/1980~
-~06169~^~431~^1.^0^^~4~^~NR~^^^^^^^^^^~05/01/2007~
-~06169~^~432~^0.^0^^~4~^~FLC~^^^^^^^^^^~05/01/2007~
-~06169~^~435~^2.^0^^~4~^~NC~^^^^^^^^^^~05/01/2007~
-~06169~^~601~^0.^0^^~1~^^^^^^^^^^^~02/01/1980~
-~06170~^~208~^13.^0^^~4~^~NC~^^^^^^^^^^~05/01/2005~
-~06170~^~262~^0.^0^^~4~^~FLA~^^^^^^^^^^~02/01/2003~
-~06170~^~263~^0.^0^^~4~^~FLA~^^^^^^^^^^~02/01/2003~
-~06170~^~268~^54.^0^^~4~^^^^^^^^^^^~05/01/2005~
-~06170~^~301~^8.^1^^~1~^^^^^^^^^^^~05/01/2005~
-~06170~^~304~^7.^1^^~1~^^^^^^^^^^^~05/01/2005~
-~06170~^~305~^31.^1^^~1~^^^^^^^^^^^~05/01/2005~
-~06170~^~306~^185.^1^^~1~^^^^^^^^^^^~05/01/2005~
-~06170~^~307~^198.^1^^~1~^^^^^^^^^^^~05/01/2005~
-~06170~^~318~^0.^0^^~4~^~FLA~^^^^^^^^^^~02/01/2003~
-~06170~^~319~^0.^0^^~4~^~FLA~^^^^^^^^^^~02/01/2003~
-~06170~^~320~^0.^0^^~4~^~FLA~^^^^^^^^^^~02/01/2003~
-~06170~^~321~^0.^0^^~4~^~FLA~^^^^^^^^^^~02/01/2003~
-~06170~^~322~^0.^0^^~4~^~FLA~^^^^^^^^^^~02/01/2003~
-~06170~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~
-~06170~^~334~^0.^0^^~4~^~FLA~^^^^^^^^^^~02/01/2003~
-~06170~^~337~^0.^0^^~4~^~FLA~^^^^^^^^^^~02/01/2003~
-~06170~^~338~^1.^0^^~4~^~FLA~^^^^^^^^^^~02/01/2003~
-~06170~^~417~^2.^0^^~4~^~FLA~^^^^^^^^^^~02/01/2003~
-~06170~^~431~^0.^0^^~4~^~FLA~^^^^^^^^^^~02/01/2003~
-~06170~^~432~^2.^0^^~4~^~FLA~^^^^^^^^^^~02/01/2003~
-~06170~^~435~^2.^0^^~4~^~NC~^^^^^^^^^^~11/01/2006~
-~06170~^~601~^0.^1^^~1~^^^^^^^^^^^~05/01/2005~
-~06172~^~208~^36.^0^^~4~^~NC~^^^^^^^^^^~05/01/2005~
-~06172~^~262~^0.^0^^~4~^~FLA~^^^^^^^^^^~02/01/2003~
-~06172~^~263~^0.^0^^~4~^~FLA~^^^^^^^^^^~02/01/2003~
-~06172~^~268~^151.^0^^~4~^^^^^^^^^^^~05/01/2005~
-~06172~^~301~^3.^1^^~1~^^^^^^^^^^^~05/01/2005~
-~06172~^~304~^4.^1^^~1~^^^^^^^^^^^~05/01/2005~
-~06172~^~305~^27.^1^^~1~^^^^^^^^^^^~05/01/2005~
-~06172~^~306~^105.^1^^~1~^^^^^^^^^^^~05/01/2005~
-~06172~^~307~^143.^1^^~1~^^^^^^^^^^^~05/01/2005~
-~06172~^~318~^3.^0^^~4~^~FLA~^^^^^^^^^^~02/01/2003~
-~06172~^~319~^1.^0^^~4~^~FLA~^^^^^^^^^^~02/01/2003~
-~06172~^~320~^1.^0^^~4~^~FLA~^^^^^^^^^^~02/01/2003~
-~06172~^~321~^0.^0^^~4~^~FLA~^^^^^^^^^^~02/01/2003~
-~06172~^~322~^0.^0^^~4~^~FLA~^^^^^^^^^^~02/01/2003~
-~06172~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~
-~06172~^~334~^0.^0^^~4~^~FLA~^^^^^^^^^^~02/01/2003~
-~06172~^~337~^0.^0^^~4~^~FLA~^^^^^^^^^^~02/01/2003~
-~06172~^~338~^1.^0^^~4~^~FLA~^^^^^^^^^^~02/01/2003~
-~06172~^~417~^5.^0^^~4~^~FLA~^^^^^^^^^^~02/01/2003~
-~06172~^~431~^0.^0^^~4~^~FLA~^^^^^^^^^^~02/01/2003~
-~06172~^~432~^5.^0^^~4~^~FLA~^^^^^^^^^^~02/01/2003~
-~06172~^~435~^5.^0^^~4~^~NC~^^^^^^^^^^~11/01/2006~
-~06172~^~601~^3.^1^^~1~^^^^^^^^^^^~05/01/2005~
-~06174~^~208~^16.^0^^~4~^~NC~^^^^^^^^^^~05/01/2014~
-~06174~^~262~^0.^0^^~4~^~FLA~^^^^^^^^^^~02/01/2003~
-~06174~^~263~^0.^0^^~4~^~FLA~^^^^^^^^^^~02/01/2003~
-~06174~^~268~^68.^0^^~4~^~NC~^^^^^^^^^^~05/01/2014~
-~06174~^~301~^3.^2^^~1~^~A~^^^^^^^^^^~03/01/1996~
-~06174~^~304~^7.^2^^~1~^~A~^^^^^^^^^^~03/01/1996~
-~06174~^~305~^56.^2^^~1~^~A~^^^^^^^^^^~03/01/1996~
-~06174~^~306~^144.^2^^~1~^~A~^^^^^^^^^^~03/01/1996~
-~06174~^~307~^156.^2^^~1~^~A~^^^^^^^^^^~03/01/1996~
-~06174~^~318~^6.^0^^~4~^~NC~^^^^^^^^^^~02/01/2003~
-~06174~^~319~^2.^0^^~4~^~FLA~^^^^^^^^^^~02/01/2003~
-~06174~^~320~^2.^0^^~4~^~NC~^^^^^^^^^^~02/01/2003~
-~06174~^~321~^0.^0^^~4~^~FLA~^^^^^^^^^^~02/01/2003~
-~06174~^~322~^0.^0^^~4~^~FLA~^^^^^^^^^^~02/01/2003~
-~06174~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2009~
-~06174~^~334~^0.^0^^~4~^~FLA~^^^^^^^^^^~02/01/2003~
-~06174~^~337~^0.^0^^~4~^~FLA~^^^^^^^^^^~02/01/2003~
-~06174~^~338~^0.^0^^~4~^~FLA~^^^^^^^^^^~02/01/2003~
-~06174~^~417~^2.^0^^~4~^~FLA~^^^^^^^^^^~02/01/2003~
-~06174~^~431~^0.^0^^~4~^~FLA~^^^^^^^^^^~02/01/2003~
-~06174~^~432~^2.^0^^~4~^~FLA~^^^^^^^^^^~02/01/2003~
-~06174~^~435~^2.^0^^~4~^~NC~^^^^^^^^^^~03/01/2009~
-~06174~^~601~^1.^2^^~1~^~A~^^^^^^^^^^~03/01/1996~
-~06175~^~208~^220.^0^^~4~^~NC~^^^^^^^^^^~03/01/1996~
-~06175~^~262~^0.^0^^~4~^~FLA~^^^^^^^^^^~02/01/2003~
-~06175~^~263~^0.^0^^~4~^~FLA~^^^^^^^^^^~02/01/2003~
-~06175~^~268~^920.^0^^~4~^^^^^^^^^^^~05/01/2005~
-~06175~^~301~^32.^5^^~1~^~A~^^^^^^^^^^~03/01/1996~
-~06175~^~304~^24.^2^^~1~^~A~^^^^^^^^^^~03/01/1996~
-~06175~^~305~^38.^2^^~1~^~A~^^^^^^^^^^~03/01/1996~
-~06175~^~306~^119.^2^^~1~^~A~^^^^^^^^^^~03/01/1996~
-~06175~^~307~^1615.^5^^~1~^~A~^^^^^^^^^^~03/01/1996~
-~06175~^~318~^6.^0^^~4~^~FLA~^^^^^^^^^^~02/01/2003~
-~06175~^~319~^0.^0^^~4~^~FLA~^^^^^^^^^^~02/01/2003~
-~06175~^~320~^0.^0^^~4~^~FLA~^^^^^^^^^^~02/01/2003~
-~06175~^~321~^4.^0^^~4~^~FLA~^^^^^^^^^^~02/01/2003~
-~06175~^~322~^0.^0^^~4~^~FLA~^^^^^^^^^^~02/01/2003~
-~06175~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~
-~06175~^~334~^0.^0^^~4~^~FLA~^^^^^^^^^^~02/01/2003~
-~06175~^~337~^0.^0^^~4~^~FLA~^^^^^^^^^^~02/01/2003~
-~06175~^~338~^45.^0^^~4~^~FLA~^^^^^^^^^^~02/01/2003~
-~06175~^~417~^23.^2^^~1~^~A~^^^^^^^^^^~03/01/1996~
-~06175~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~
-~06175~^~432~^23.^2^^~1~^~A~^^^^^^^^^^~02/01/2003~
-~06175~^~435~^23.^0^^~4~^~NC~^^^^^^^^^^~11/01/2006~
-~06175~^~601~^3.^2^^~1~^~A~^^^^^^^^^^~05/01/2005~
-~06176~^~208~^51.^0^^~4~^~NC~^^^^^^^^^^~03/01/1996~
-~06176~^~262~^0.^0^^~4~^~FLA~^^^^^^^^^^~02/01/2003~
-~06176~^~263~^0.^0^^~4~^~FLA~^^^^^^^^^^~02/01/2003~
-~06176~^~268~^213.^0^^~4~^^^^^^^^^^^~05/01/2005~
-~06176~^~301~^32.^2^^~1~^~A~^^^^^^^^^^~04/01/1995~
-~06176~^~304~^4.^2^^~1~^~A~^^^^^^^^^^~04/01/1995~
-~06176~^~305~^22.^2^^~1~^~A~^^^^^^^^^^~04/01/1995~
-~06176~^~306~^54.^2^^~1~^~A~^^^^^^^^^^~04/01/1995~
-~06176~^~307~^2733.^2^^~1~^~A~^^^^^^^^^^~03/01/1996~
-~06176~^~318~^0.^0^^~4~^~FLA~^^^^^^^^^^~02/01/2003~
-~06176~^~319~^0.^0^^~4~^~FLA~^^^^^^^^^^~02/01/2003~
-~06176~^~320~^0.^0^^~4~^~FLA~^^^^^^^^^^~02/01/2003~
-~06176~^~321~^0.^0^^~4~^~FLA~^^^^^^^^^^~02/01/2003~
-~06176~^~322~^0.^0^^~4~^~FLA~^^^^^^^^^^~02/01/2003~
-~06176~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~
-~06176~^~334~^0.^0^^~4~^~FLA~^^^^^^^^^^~02/01/2003~
-~06176~^~337~^0.^0^^~4~^~FLA~^^^^^^^^^^~02/01/2003~
-~06176~^~338~^0.^0^^~4~^~FLA~^^^^^^^^^^~02/01/2003~
-~06176~^~417~^15.^2^^~1~^~A~^^^^^^^^^^~03/01/1996~
-~06176~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~
-~06176~^~432~^15.^2^^~1~^~A~^^^^^^^^^^~02/01/2003~
-~06176~^~435~^15.^0^^~4~^~NC~^^^^^^^^^^~11/01/2006~
-~06176~^~601~^0.^2^^~1~^~A~^^^^^^^^^^~03/01/1996~
-~06177~^~208~^50.^0^^~4~^^^^^^^^^^^~05/01/2005~
-~06177~^~262~^0.^0^^~4~^~FLA~^^^^^^^^^^~02/01/2003~
-~06177~^~263~^0.^0^^~4~^~FLA~^^^^^^^^^^~02/01/2003~
-~06177~^~268~^209.^0^^~4~^^^^^^^^^^^~05/01/2005~
-~06177~^~301~^20.^0^^~4~^^^^^^^^^^^~05/01/2005~
-~06177~^~304~^13.^0^^~4~^^^^^^^^^^^~05/01/2005~
-~06177~^~305~^34.^0^^~4~^^^^^^^^^^^~05/01/2005~
-~06177~^~306~^186.^0^^~4~^^^^^^^^^^^~05/01/2005~
-~06177~^~307~^215.^0^^~4~^^^^^^^^^^^~05/01/2005~
-~06177~^~318~^665.^0^^~4~^~NC~^^^^^^^^^^~05/01/2005~
-~06177~^~319~^0.^0^^~4~^~FLA~^^^^^^^^^^~05/01/2005~
-~06177~^~320~^33.^0^^~4~^~FLA~^^^^^^^^^^~05/01/2005~
-~06177~^~321~^349.^0^^~4~^~FLA~^^^^^^^^^^~02/01/2003~
-~06177~^~322~^99.^0^^~4~^~FLA~^^^^^^^^^^~02/01/2003~
-~06177~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~
-~06177~^~334~^0.^0^^~4~^~FLA~^^^^^^^^^^~02/01/2003~
-~06177~^~337~^6359.^0^^~4~^~FLA~^^^^^^^^^^~02/01/2003~
-~06177~^~338~^90.^0^^~4~^~FLA~^^^^^^^^^^~02/01/2003~
-~06177~^~417~^16.^0^^~4~^~FLA~^^^^^^^^^^~05/01/2005~
-~06177~^~431~^1.^0^^~4~^~FLA~^^^^^^^^^^~05/01/2005~
-~06177~^~432~^14.^0^^~4~^~FLA~^^^^^^^^^^~05/01/2005~
-~06177~^~435~^17.^0^^~4~^~NC~^^^^^^^^^^~11/01/2006~
-~06177~^~601~^0.^0^^~4~^^^^^^^^^^^~05/01/2005~
-~06179~^~208~^35.^0^^~4~^~NC~^^^^^^^^^^~03/01/1996~
-~06179~^~262~^0.^0^^~4~^~FLA~^^^^^^^^^^~02/01/2003~
-~06179~^~263~^0.^0^^~4~^~FLA~^^^^^^^^^^~02/01/2003~
-~06179~^~268~^146.^0^^~4~^^^^^^^^^^^~03/01/2009~
-~06179~^~301~^43.^2^^~1~^~A~^^^^^^^^^^~03/01/1996~
-~06179~^~304~^175.^2^^~1~^~A~^^^^^^^^^^~03/01/1996~
-~06179~^~305~^7.^2^^~1~^~A~^^^^^^^^^^~03/01/1996~
-~06179~^~306~^288.^2^^~1~^~A~^^^^^^^^^^~03/01/1996~
-~06179~^~307~^7851.^3^^~1~^~A~^^^^^^^^^^~07/01/2010~
-~06179~^~318~^12.^0^^~4~^~FLA~^^^^^^^^^^~02/01/2003~
-~06179~^~319~^4.^0^^~4~^~FLA~^^^^^^^^^^~02/01/2003~
-~06179~^~320~^4.^0^^~4~^~FLA~^^^^^^^^^^~02/01/2003~
-~06179~^~321~^0.^0^^~4~^~FLA~^^^^^^^^^^~02/01/2003~
-~06179~^~322~^0.^0^^~4~^~FLA~^^^^^^^^^^~02/01/2003~
-~06179~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2009~
-~06179~^~334~^0.^0^^~4~^~FLA~^^^^^^^^^^~02/01/2003~
-~06179~^~337~^0.^0^^~4~^~FLA~^^^^^^^^^^~02/01/2003~
-~06179~^~338~^0.^0^^~4~^~FLA~^^^^^^^^^^~02/01/2003~
-~06179~^~417~^51.^2^^~1~^~A~^^^^^^^^^^~03/01/1996~
-~06179~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~
-~06179~^~432~^51.^2^^~1~^~A~^^^^^^^^^^~03/01/2009~
-~06179~^~435~^51.^0^^~4~^~NC~^^^^^^^^^^~03/01/2009~
-~06179~^~601~^0.^2^^~1~^~A~^^^^^^^^^^~03/01/1996~
-~06180~^~208~^46.^0^^~4~^~NC~^^^^^^^^^^~03/01/1996~
-~06180~^~268~^192.^0^^~4~^^^^^^^^^^^
-~06180~^~301~^10.^2^^~1~^~A~^^^^^^^^^^~03/01/1996~
-~06180~^~304~^7.^2^^~1~^~A~^^^^^^^^^^~03/01/1996~
-~06180~^~305~^21.^2^^~1~^~A~^^^^^^^^^^~03/01/1996~
-~06180~^~306~^53.^2^^~1~^~A~^^^^^^^^^^~03/01/1996~
-~06180~^~307~^501.^2^^~1~^~A~^^^^^^^^^^~03/01/1996~
-~06180~^~318~^0.^2^^~1~^~A~^^^^^^^^^^~03/01/1996~
-~06180~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2002~
-~06180~^~320~^0.^0^^~4~^~NC~^^^^^^^^^^~06/01/2002~
-~06180~^~417~^9.^2^^~1~^~A~^^^^^^^^^^~03/01/1996~
-~06180~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~
-~06180~^~432~^9.^2^^~1~^~A~^^^^^^^^^^~03/01/1996~
-~06180~^~435~^9.^0^^~4~^~NC~^^^^^^^^^^~01/01/2001~
-~06180~^~601~^2.^0^^~4~^~BFZN~^^^^^^^^^^~03/01/1996~
-~06182~^~208~^52.^0^^~4~^~NC~^^^^^^^^^^~05/01/2005~
-~06182~^~262~^0.^0^^~4~^~FLA~^^^^^^^^^^~02/01/2003~
-~06182~^~263~^0.^0^^~4~^~FLA~^^^^^^^^^^~02/01/2003~
-~06182~^~268~^218.^0^^~4~^^^^^^^^^^^~05/01/2005~
-~06182~^~301~^13.^1^^~9~^~MC~^^^^^^^^^^~05/01/2005~
-~06182~^~304~^5.^0^^~4~^~FLM~^^^^^^^^^^~05/01/2005~
-~06182~^~305~^51.^0^^~4~^~FLM~^^^^^^^^^^~05/01/2005~
-~06182~^~306~^374.^1^^~9~^~MC~^^^^^^^^^^~05/01/2005~
-~06182~^~307~^383.^1^^~9~^~MC~^^^^^^^^^^~05/01/2005~
-~06182~^~318~^8.^0^^~4~^~FLA~^^^^^^^^^^~05/01/2005~
-~06182~^~319~^2.^0^^~4~^~FLA~^^^^^^^^^^~02/01/2003~
-~06182~^~320~^2.^0^^~4~^~FLA~^^^^^^^^^^~02/01/2003~
-~06182~^~321~^0.^0^^~4~^~FLA~^^^^^^^^^^~02/01/2003~
-~06182~^~322~^0.^0^^~4~^~FLA~^^^^^^^^^^~02/01/2003~
-~06182~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~
-~06182~^~334~^0.^0^^~4~^~FLA~^^^^^^^^^^~02/01/2003~
-~06182~^~337~^0.^0^^~4~^~FLA~^^^^^^^^^^~02/01/2003~
-~06182~^~338~^0.^0^^~4~^~FLA~^^^^^^^^^^~02/01/2003~
-~06182~^~417~^10.^0^^~4~^~FLA~^^^^^^^^^^~05/01/2005~
-~06182~^~431~^2.^0^^~4~^~FLA~^^^^^^^^^^~02/01/2003~
-~06182~^~432~^8.^0^^~4~^~FLA~^^^^^^^^^^~02/01/2003~
-~06182~^~435~^11.^0^^~4~^~NC~^^^^^^^^^^~11/01/2006~
-~06182~^~601~^3.^1^^~9~^~MC~^^^^^^^^^^~05/01/2005~
-~06183~^~208~^7.^0^^~4~^~NC~^^^^^^^^^^~05/01/2005~
-~06183~^~262~^0.^0^^~4~^~FLA~^^^^^^^^^^~02/01/2003~
-~06183~^~263~^0.^0^^~4~^~FLA~^^^^^^^^^^~02/01/2003~
-~06183~^~268~^30.^0^^~4~^^^^^^^^^^^~05/01/2005~
-~06183~^~301~^8.^0^^~4~^~FLM~^^^^^^^^^^~05/01/2005~
-~06183~^~304~^1.^0^^~4~^~FLM~^^^^^^^^^^~05/01/2005~
-~06183~^~305~^18.^0^^~4~^~FLM~^^^^^^^^^^~05/01/2005~
-~06183~^~306~^85.^1^^~9~^~MC~^^^^^^^^^^~05/01/2005~
-~06183~^~307~^231.^1^^~9~^~MC~^^^^^^^^^^~05/01/2005~
-~06183~^~318~^0.^0^^~4~^~NC~^^^^^^^^^^~02/01/2003~
-~06183~^~319~^0.^0^^~4~^~FLA~^^^^^^^^^^~02/01/2003~
-~06183~^~320~^0.^0^^~4~^~NC~^^^^^^^^^^~02/01/2003~
-~06183~^~321~^0.^0^^~4~^~FLA~^^^^^^^^^^~02/01/2003~
-~06183~^~322~^0.^0^^~4~^~FLA~^^^^^^^^^^~02/01/2003~
-~06183~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~
-~06183~^~334~^0.^0^^~4~^~FLA~^^^^^^^^^^~02/01/2003~
-~06183~^~337~^0.^0^^~4~^~FLA~^^^^^^^^^^~02/01/2003~
-~06183~^~338~^0.^0^^~4~^~FLA~^^^^^^^^^^~02/01/2003~
-~06183~^~417~^3.^0^^~4~^~FLA~^^^^^^^^^^~05/01/2005~
-~06183~^~431~^0.^0^^~4~^~FLA~^^^^^^^^^^~05/01/2005~
-~06183~^~432~^3.^0^^~4~^~FLA~^^^^^^^^^^~02/01/2003~
-~06183~^~435~^3.^0^^~4~^~NC~^^^^^^^^^^~11/01/2006~
-~06183~^~601~^0.^1^^~9~^~MC~^^^^^^^^^^~05/01/2005~
-~06188~^~208~^6.^0^^~4~^~NC~^^^^^^^^^^~04/01/2015~
-~06188~^~262~^0.^0^^~4~^~BFZN~^~06008~^^^^^^^^^~04/01/2015~
-~06188~^~263~^0.^0^^~4~^~BFZN~^~06008~^^^^^^^^^~04/01/2015~
-~06188~^~268~^25.^0^^~4~^~NC~^^^^^^^^^^~04/01/2015~
-~06188~^~301~^3.^9^0.^~1~^~A~^^^1^1.^6.^8^1.^4.^~1, 2, 3~^~04/01/2015~
-~06188~^~304~^1.^9^0.^~1~^~A~^^^1^1.^3.^8^0.^1.^~2, 3~^~04/01/2015~
-~06188~^~305~^9.^9^1.^~1~^~A~^^^1^4.^12.^8^6.^11.^~2, 3~^~04/01/2015~
-~06188~^~306~^20.^9^1.^~1~^~A~^^^1^13.^26.^8^16.^23.^~2, 3~^~04/01/2015~
-~06188~^~307~^225.^9^27.^~1~^~A~^^^1^138.^382.^8^161.^288.^~2, 3~^~04/01/2015~
-~06188~^~318~^0.^0^^~1~^~AS~^^^^^^^^^^~04/01/2015~
-~06188~^~319~^0.^2^^~1~^~A~^^^1^0.^0.^^^^~1~^~04/01/2015~
-~06188~^~320~^0.^0^^~4~^~NC~^^^^^^^^^^~04/01/2015~
-~06188~^~321~^0.^0^^~4~^~BFZN~^~06008~^^^^^^^^^~04/01/2015~
-~06188~^~322~^0.^0^^~4~^~BFZN~^~06008~^^^^^^^^^~04/01/2015~
-~06188~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2015~
-~06188~^~334~^0.^0^^~4~^~BFZN~^~06008~^^^^^^^^^~04/01/2015~
-~06188~^~337~^0.^0^^~4~^~BFZN~^~06008~^^^^^^^^^~04/01/2015~
-~06188~^~338~^0.^0^^~4~^~BFZN~^~06008~^^^^^^^^^~04/01/2015~
-~06188~^~417~^2.^0^^~4~^~BFZN~^~06008~^^^^^^^^^~04/01/2015~
-~06188~^~431~^0.^0^^~4~^~BFZN~^~06008~^^^^^^^^^~04/01/2015~
-~06188~^~432~^2.^0^^~4~^~BFZN~^^^^^^^^^^~04/01/2015~
-~06188~^~435~^2.^0^^~4~^~NC~^^^^^^^^^^~04/01/2015~
-~06188~^~601~^0.^2^^~1~^~A~^^^1^0.^0.^1^^^~1~^~04/01/2015~
-~06189~^~208~^89.^0^^~4~^~NC~^^^^^^^^^^~11/01/2006~
-~06189~^~262~^0.^0^^~4~^~FLA~^^^^^^^^^^~02/01/2003~
-~06189~^~263~^0.^0^^~4~^~FLA~^^^^^^^^^^~02/01/2003~
-~06189~^~268~^372.^0^^~4~^~NC~^^^^^^^^^^~11/01/2006~
-~06189~^~301~^25.^0^^~4~^^^^^^^^^^^~11/01/2006~
-~06189~^~304~^61.^0^^~4~^^^^^^^^^^^~11/01/2006~
-~06189~^~305~^154.^0^^~4~^^^^^^^^^^^~11/01/2006~
-~06189~^~306~^225.^0^^~4~^^^^^^^^^^^~11/01/2006~
-~06189~^~307~^1778.^1^^~8~^~LC~^^^^^^^^^^~11/01/2006~
-~06189~^~318~^1.^0^^~4~^~FLA~^^^^^^^^^^~11/01/2006~
-~06189~^~319~^0.^0^^~4~^~FLA~^^^^^^^^^^~02/01/2003~
-~06189~^~320~^0.^0^^~4~^~FLA~^^^^^^^^^^~02/01/2003~
-~06189~^~321~^0.^0^^~4~^~FLA~^^^^^^^^^^~02/01/2003~
-~06189~^~322~^0.^0^^~4~^~FLA~^^^^^^^^^^~02/01/2003~
-~06189~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~
-~06189~^~334~^0.^0^^~4~^~FLA~^^^^^^^^^^~02/01/2003~
-~06189~^~337~^0.^0^^~4~^~FLA~^^^^^^^^^^~02/01/2003~
-~06189~^~338~^0.^0^^~4~^~FLA~^^^^^^^^^^~02/01/2003~
-~06189~^~417~^8.^0^^~4~^~FLA~^^^^^^^^^^~11/01/2006~
-~06189~^~431~^0.^0^^~4~^~FLA~^^^^^^^^^^~02/01/2003~
-~06189~^~432~^8.^0^^~4~^~FLA~^^^^^^^^^^~11/01/2006~
-~06189~^~435~^8.^0^^~4~^~NC~^^^^^^^^^^~11/01/2006~
-~06189~^~601~^0.^0^^~4~^^^^^^^^^^^~11/01/2006~
-~06190~^~208~^81.^0^^~4~^~NC~^^^^^^^^^^~05/01/2014~
-~06190~^~262~^0.^0^^~4~^~FLA~^^^^^^^^^^~02/01/2003~
-~06190~^~263~^0.^0^^~4~^~FLA~^^^^^^^^^^~02/01/2003~
-~06190~^~268~^338.^0^^~4~^~NC~^^^^^^^^^^~05/01/2014~
-~06190~^~301~^38.^1^^~9~^~MC~^^^^^^^^^^~05/01/2005~
-~06190~^~304~^19.^0^^~4~^~FLM~^^^^^^^^^^~05/01/2005~
-~06190~^~305~^13.^1^^~9~^~MC~^^^^^^^^^^~05/01/2005~
-~06190~^~306~^158.^1^^~9~^~MC~^^^^^^^^^^~05/01/2005~
-~06190~^~307~^187.^1^^~9~^~MC~^^^^^^^^^^~05/01/2005~
-~06190~^~318~^702.^0^^~4~^~NC~^^^^^^^^^^~02/01/2003~
-~06190~^~319~^0.^0^^~4~^~FLA~^^^^^^^^^^~02/01/2003~
-~06190~^~320~^35.^0^^~4~^~NC~^^^^^^^^^^~02/01/2003~
-~06190~^~321~^349.^0^^~4~^~FLA~^^^^^^^^^^~02/01/2003~
-~06190~^~322~^145.^0^^~4~^~FLA~^^^^^^^^^^~02/01/2003~
-~06190~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~
-~06190~^~334~^0.^0^^~4~^~FLA~^^^^^^^^^^~02/01/2003~
-~06190~^~337~^915.^0^^~4~^~FLA~^^^^^^^^^^~02/01/2003~
-~06190~^~338~^36.^0^^~4~^~FLA~^^^^^^^^^^~02/01/2003~
-~06190~^~417~^29.^0^^~4~^~FLA~^^^^^^^^^^~05/01/2005~
-~06190~^~431~^0.^0^^~4~^~FLA~^^^^^^^^^^~05/01/2005~
-~06190~^~432~^29.^0^^~4~^~FLA~^^^^^^^^^^~02/01/2003~
-~06190~^~435~^29.^0^^~4~^~NC~^^^^^^^^^^~11/01/2006~
-~06190~^~601~^2.^0^^~4~^~FLM~^^^^^^^^^^~05/01/2005~
-~06192~^~208~^71.^0^^~9~^~MC~^^^^^^^^^^~12/01/1995~
-~06192~^~262~^0.^0^^~4~^~FLA~^^^^^^^^^^~02/01/2003~
-~06192~^~263~^0.^0^^~4~^~FLA~^^^^^^^^^^~02/01/2003~
-~06192~^~268~^297.^0^^~9~^^^^^^^^^^^~05/01/2007~
-~06192~^~301~^17.^0^^~12~^~MA~^^^^^^^^^^~12/01/1995~
-~06192~^~304~^14.^0^^~4~^~FLM~^^^^^^^^^^~12/01/1995~
-~06192~^~305~^54.^0^^~4~^~FLM~^^^^^^^^^^~12/01/1995~
-~06192~^~306~^183.^0^^~4~^~FLM~^^^^^^^^^^~12/01/1995~
-~06192~^~307~^166.^0^^~12~^~MA~^^^^^^^^^^~12/01/1995~
-~06192~^~318~^552.^0^^~4~^~FLA~^^^^^^^^^^~05/01/2007~
-~06192~^~319~^0.^0^^~4~^~FLA~^^^^^^^^^^~03/01/2003~
-~06192~^~320~^28.^0^^~4~^~FLA~^^^^^^^^^^~05/01/2007~
-~06192~^~321~^313.^0^^~4~^~FLA~^^^^^^^^^^~05/01/2007~
-~06192~^~322~^35.^0^^~4~^~FLA~^^^^^^^^^^~03/01/2003~
-~06192~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~
-~06192~^~334~^1.^0^^~4~^~FLA~^^^^^^^^^^~03/01/2003~
-~06192~^~337~^7.^0^^~4~^~FLA~^^^^^^^^^^~03/01/2003~
-~06192~^~338~^1286.^0^^~4~^~FLA~^^^^^^^^^^~05/01/2007~
-~06192~^~417~^20.^0^^~4~^~FLM~^^^^^^^^^^~12/01/1995~
-~06192~^~431~^0.^0^^~4~^~FLA~^^^^^^^^^^~05/01/2007~
-~06192~^~432~^20.^0^^~4~^~FLA~^^^^^^^^^^~05/01/2007~
-~06192~^~435~^20.^0^^~4~^~NC~^^^^^^^^^^~05/01/2007~
-~06192~^~601~^2.^0^^~12~^~MA~^^^^^^^^^^~12/01/1995~
-~06193~^~208~^68.^0^^~9~^~MC~^^^^^^^^^^~05/01/2007~
-~06193~^~262~^0.^0^^~4~^~FLA~^^^^^^^^^^~02/01/2003~
-~06193~^~263~^0.^0^^~4~^~FLA~^^^^^^^^^^~02/01/2003~
-~06193~^~268~^285.^0^^~9~^^^^^^^^^^^~05/01/2007~
-~06193~^~301~^16.^0^^~9~^~MC~^^^^^^^^^^~05/01/2007~
-~06193~^~304~^14.^0^^~4~^~FLM~^^^^^^^^^^~05/01/2007~
-~06193~^~305~^54.^0^^~4~^~FLM~^^^^^^^^^^~05/01/2007~
-~06193~^~306~^204.^0^^~9~^~MC~^^^^^^^^^^~05/01/2007~
-~06193~^~307~^196.^0^^~9~^~MC~^^^^^^^^^^~05/01/2007~
-~06193~^~318~^415.^0^^~4~^~FLA~^^^^^^^^^^~05/01/2007~
-~06193~^~319~^0.^0^^~4~^~FLA~^^^^^^^^^^~02/01/2003~
-~06193~^~320~^21.^0^^~4~^~FLA~^^^^^^^^^^~05/01/2007~
-~06193~^~321~^201.^0^^~4~^~FLA~^^^^^^^^^^~05/01/2007~
-~06193~^~322~^90.^0^^~4~^~FLA~^^^^^^^^^^~05/01/2007~
-~06193~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~
-~06193~^~334~^5.^0^^~4~^~FLA~^^^^^^^^^^~05/01/2007~
-~06193~^~337~^0.^0^^~4~^~FLA~^^^^^^^^^^~05/01/2007~
-~06193~^~338~^18.^0^^~4~^~FLA~^^^^^^^^^^~05/01/2007~
-~06193~^~417~^29.^0^^~4~^~FLA~^^^^^^^^^^~05/01/2007~
-~06193~^~431~^0.^0^^~4~^~FLA~^^^^^^^^^^~02/01/2003~
-~06193~^~432~^29.^0^^~4~^~FLA~^^^^^^^^^^~05/01/2007~
-~06193~^~435~^29.^0^^~4~^~NC~^^^^^^^^^^~05/01/2007~
-~06193~^~601~^3.^0^^~9~^~MC~^^^^^^^^^^~05/01/2007~
-~06194~^~208~^6.^0^^~4~^~NC~^^^^^^^^^^~04/01/2013~
-~06194~^~262~^0.^0^^~4~^~FLA~^^^^^^^^^^~02/01/2003~
-~06194~^~263~^0.^0^^~4~^~FLA~^^^^^^^^^^~02/01/2003~
-~06194~^~268~^26.^0^^~4~^~NC~^^^^^^^^^^~04/01/2013~
-~06194~^~301~^4.^15^0.^~1~^~A~^^^1^0.^9.^10^3.^4.^~1, 2, 3~^~04/01/2013~
-~06194~^~304~^1.^15^0.^~1~^~A~^^^1^0.^2.^10^0.^1.^~1, 2, 3~^~04/01/2013~
-~06194~^~305~^4.^15^0.^~1~^~A~^^^1^1.^6.^6^3.^5.^~2, 3~^~04/01/2013~
-~06194~^~306~^18.^15^4.^~1~^~A~^^^1^2.^89.^5^5.^30.^~1, 2, 3~^~04/01/2013~
-~06194~^~307~^371.^15^6.^~1~^~A~^^^1^331.^449.^10^357.^384.^~2, 3~^~04/01/2013~
-~06194~^~318~^2.^0^^~1~^~AS~^^^^^^^^^^~04/01/2013~
-~06194~^~319~^0.^3^^~1~^~A~^^^1^0.^0.^^^^~1, 2, 3~^~04/01/2013~
-~06194~^~320~^0.^0^^~1~^~AS~^^^^^^^^^^~04/01/2013~
-~06194~^~321~^1.^3^^~1~^~A~^^^1^1.^2.^^^^~2, 3~^~04/01/2013~
-~06194~^~322~^0.^3^^~1~^~A~^^^1^0.^1.^^^^~2, 3~^~04/01/2013~
-~06194~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~
-~06194~^~334~^0.^3^^~1~^~A~^^^1^0.^0.^^^^~1, 2, 3~^~04/01/2013~
-~06194~^~337~^0.^3^^~1~^~A~^^^1^0.^1.^^^^~1, 2, 3~^~04/01/2013~
-~06194~^~338~^0.^3^^~1~^~A~^^^1^0.^0.^^^^~2, 3~^~04/01/2013~
-~06194~^~417~^0.^0^^~4~^~FLA~^^^^^^^^^^~02/01/2003~
-~06194~^~431~^0.^0^^~4~^~FLA~^^^^^^^^^^~02/01/2003~
-~06194~^~432~^0.^0^^~4~^~FLA~^^^^^^^^^^~02/01/2003~
-~06194~^~435~^0.^0^^~4~^~NC~^^^^^^^^^^~05/01/2007~
-~06194~^~601~^2.^1^^~4~^~FLA~^^^^^^^^^^~05/01/2013~
-~06201~^~208~^65.^0^^~4~^~NC~^^^^^^^^^^~02/01/1980~
-~06201~^~268~^272.^0^^~4~^^^^^^^^^^^~11/01/2006~
-~06201~^~301~^70.^0^^~1~^^^^^^^^^^^~02/01/1980~
-~06201~^~304~^8.^0^^~1~^^^^^^^^^^^~02/01/1980~
-~06201~^~305~^62.^0^^~1~^^^^^^^^^^^~02/01/1980~
-~06201~^~306~^145.^0^^~1~^^^^^^^^^^^~02/01/1980~
-~06201~^~307~^420.^0^^~1~^^^^^^^^^^^~02/01/1980~
-~06201~^~318~^242.^0^^~1~^^^^^^^^^^^~02/01/1980~
-~06201~^~319~^16.^0^^~4~^~NC~^^^^^^^^^^~06/01/2002~
-~06201~^~320~^25.^0^^~4~^~NC~^^^^^^^^^^~06/01/2002~
-~06201~^~417~^12.^0^^~4~^^^^^^^^^^^~02/01/1980~
-~06201~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~
-~06201~^~432~^12.^0^^~4~^^^^^^^^^^^~02/01/1980~
-~06201~^~435~^12.^0^^~4~^~NC~^^^^^^^^^^~11/01/2006~
-~06201~^~601~^9.^0^^~1~^^^^^^^^^^^~02/01/1980~
-~06208~^~208~^65.^0^^~4~^~FLC~^^^^^^^^^^~05/01/2005~
-~06208~^~262~^0.^0^^~4~^~FLA~^^^^^^^^^^~05/01/2005~
-~06208~^~263~^0.^0^^~4~^~FLA~^^^^^^^^^^~02/01/2003~
-~06208~^~268~^272.^0^^~4~^^^^^^^^^^^~05/01/2005~
-~06208~^~301~^15.^0^^~4~^~FLC~^^^^^^^^^^~05/01/2005~
-~06208~^~304~^5.^0^^~4~^~FLC~^^^^^^^^^^~05/01/2005~
-~06208~^~305~^19.^0^^~4~^~FLC~^^^^^^^^^^~05/01/2005~
-~06208~^~306~^73.^0^^~4~^~FLC~^^^^^^^^^^~05/01/2005~
-~06208~^~307~^416.^0^^~4~^~FLC~^^^^^^^^^^~05/01/2005~
-~06208~^~318~^375.^0^^~4~^~NC~^^^^^^^^^^~02/01/2003~
-~06208~^~319~^0.^0^^~4~^~FLA~^^^^^^^^^^~02/01/2003~
-~06208~^~320~^19.^0^^~4~^~NC~^^^^^^^^^^~02/01/2003~
-~06208~^~321~^186.^0^^~4~^~FLA~^^^^^^^^^^~02/01/2003~
-~06208~^~322~^77.^0^^~4~^~FLA~^^^^^^^^^^~02/01/2003~
-~06208~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~
-~06208~^~334~^0.^0^^~4~^~FLA~^^^^^^^^^^~02/01/2003~
-~06208~^~337~^54.^0^^~4~^~FLA~^^^^^^^^^^~02/01/2003~
-~06208~^~338~^33.^0^^~4~^~FLA~^^^^^^^^^^~02/01/2003~
-~06208~^~417~^9.^0^^~4~^~FLA~^^^^^^^^^^~02/01/2003~
-~06208~^~431~^0.^0^^~4~^~FLA~^^^^^^^^^^~02/01/2003~
-~06208~^~432~^9.^0^^~4~^~FLA~^^^^^^^^^^~02/01/2003~
-~06208~^~435~^9.^0^^~4~^~NC~^^^^^^^^^^~11/01/2006~
-~06208~^~601~^7.^0^^~4~^~FLC~^^^^^^^^^^~05/01/2005~
-~06210~^~208~^66.^0^^~4~^~NC~^^^^^^^^^^~02/01/1980~
-~06210~^~268~^276.^0^^~4~^^^^^^^^^^^~11/01/2006~
-~06210~^~301~^75.^0^^~1~^^^^^^^^^^^~02/01/1980~
-~06210~^~304~^9.^0^^~1~^^^^^^^^^^^~02/01/1980~
-~06210~^~305~^61.^0^^~1~^^^^^^^^^^^~02/01/1980~
-~06210~^~306~^125.^0^^~1~^^^^^^^^^^^~02/01/1980~
-~06210~^~307~^272.^1^^~8~^~LC~^^^^^^^^^^~07/01/2010~
-~06210~^~318~^186.^0^^~1~^^^^^^^^^^^~02/01/1980~
-~06210~^~417~^3.^0^^~1~^^^^^^^^^^^~02/01/1980~
-~06210~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~
-~06210~^~432~^3.^0^^~1~^^^^^^^^^^^~07/01/2010~
-~06210~^~435~^3.^0^^~4~^~NC~^^^^^^^^^^~07/01/2010~
-~06210~^~601~^13.^0^^~1~^^^^^^^^^^^~02/01/1980~
-~06211~^~208~^92.^0^^~4~^~NC~^^^^^^^^^^~02/01/1980~
-~06211~^~268~^385.^0^^~4~^^^^^^^^^^^~11/01/2006~
-~06211~^~301~^115.^0^^~1~^^^^^^^^^^^~02/01/1980~
-~06211~^~304~^8.^0^^~1~^^^^^^^^^^^~02/01/1980~
-~06211~^~305~^100.^0^^~1~^^^^^^^^^^^~02/01/1980~
-~06211~^~306~^136.^0^^~1~^^^^^^^^^^^~02/01/1980~
-~06211~^~307~^406.^0^^~1~^^^^^^^^^^^~02/01/1980~
-~06211~^~318~^495.^0^^~1~^^^^^^^^^^^~02/01/1980~
-~06211~^~319~^142.^0^^~4~^~NC~^^^^^^^^^^~06/01/2002~
-~06211~^~320~^143.^0^^~4~^~NC~^^^^^^^^^^~06/01/2002~
-~06211~^~417~^4.^0^^~4~^^^^^^^^^^^~02/01/1980~
-~06211~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~
-~06211~^~432~^4.^0^^~4~^^^^^^^^^^^~02/01/1980~
-~06211~^~435~^4.^0^^~4~^~NC~^^^^^^^^^^~11/01/2006~
-~06211~^~601~^19.^0^^~1~^^^^^^^^^^^~02/01/1980~
-~06216~^~208~^77.^0^^~4~^~NC~^^^^^^^^^^~02/01/1980~
-~06216~^~268~^322.^0^^~4~^^^^^^^^^^^~11/01/2006~
-~06216~^~301~^73.^0^^~1~^^^^^^^^^^^~02/01/1980~
-~06216~^~304~^7.^0^^~1~^^^^^^^^^^^~02/01/1980~
-~06216~^~305~^61.^0^^~1~^^^^^^^^^^^~02/01/1980~
-~06216~^~306~^110.^0^^~1~^^^^^^^^^^^~02/01/1980~
-~06216~^~307~^362.^1^^~8~^~LC~^^^^^^^^^^~07/01/2010~
-~06216~^~318~^288.^0^^~1~^^^^^^^^^^^~02/01/1980~
-~06216~^~417~^3.^0^^~1~^^^^^^^^^^^~02/01/1980~
-~06216~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~
-~06216~^~432~^3.^0^^~1~^^^^^^^^^^^~07/01/2010~
-~06216~^~435~^3.^0^^~4~^~NC~^^^^^^^^^^~07/01/2010~
-~06216~^~601~^11.^0^^~1~^^^^^^^^^^^~02/01/1980~
-~06217~^~208~^65.^0^^~4~^~NC~^^^^^^^^^^~11/01/2006~
-~06217~^~262~^0.^0^^~4~^~FLA~^^^^^^^^^^~02/01/2003~
-~06217~^~263~^0.^0^^~4~^~FLA~^^^^^^^^^^~02/01/2003~
-~06217~^~268~^273.^0^^~4~^~NC~^^^^^^^^^^~11/01/2006~
-~06217~^~301~^20.^1^^~9~^~MC~^^^^^^^^^^~05/01/2005~
-~06217~^~304~^25.^0^^~4~^~FLC~^^^^^^^^^^~05/01/2005~
-~06217~^~305~^45.^0^^~4~^~FLC~^^^^^^^^^^~05/01/2005~
-~06217~^~306~^433.^1^^~9~^~MC~^^^^^^^^^^~05/01/2005~
-~06217~^~307~^385.^1^^~9~^~MC~^^^^^^^^^^~05/01/2005~
-~06217~^~318~^1721.^0^^~4~^~NC~^^^^^^^^^^~02/01/2003~
-~06217~^~319~^0.^0^^~4~^~FLA~^^^^^^^^^^~02/01/2003~
-~06217~^~320~^86.^0^^~4~^~NC~^^^^^^^^^^~02/01/2003~
-~06217~^~321~^875.^0^^~4~^~FLA~^^^^^^^^^^~02/01/2003~
-~06217~^~322~^314.^0^^~4~^~FLA~^^^^^^^^^^~02/01/2003~
-~06217~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~
-~06217~^~334~^2.^0^^~4~^~FLA~^^^^^^^^^^~02/01/2003~
-~06217~^~337~^13848.^0^^~4~^~FLA~^^^^^^^^^^~02/01/2003~
-~06217~^~338~^45.^0^^~4~^~FLA~^^^^^^^^^^~02/01/2003~
-~06217~^~417~^12.^0^^~4~^~FLA~^^^^^^^^^^~05/01/2005~
-~06217~^~431~^1.^0^^~4~^~FLA~^^^^^^^^^^~02/01/2003~
-~06217~^~432~^12.^0^^~4~^~FLA~^^^^^^^^^^~02/01/2003~
-~06217~^~435~^13.^0^^~4~^~NC~^^^^^^^^^^~11/01/2006~
-~06217~^~601~^0.^0^^~4~^~FLC~^^^^^^^^^^~05/01/2005~
-~06230~^~208~^61.^0^^~6~^~RPI~^^^^^^^^^^~03/01/2009~
-~06230~^~262~^0.^0^^~6~^~RPI~^^^^^^^^^^~11/01/2006~
-~06230~^~263~^0.^0^^~6~^~RPI~^^^^^^^^^^~11/01/2006~
-~06230~^~268~^254.^0^^~6~^~RPI~^^^^^^^^^^~03/01/2009~
-~06230~^~301~^70.^0^^~6~^~RPI~^^^^^^^^^^~03/01/2009~
-~06230~^~304~^12.^0^^~6~^~RPI~^^^^^^^^^^~03/01/2009~
-~06230~^~305~^173.^0^^~6~^~RPI~^^^^^^^^^^~03/01/2009~
-~06230~^~306~^179.^0^^~6~^~RPI~^^^^^^^^^^~03/01/2009~
-~06230~^~307~^273.^1^^~8~^~LC~^^^^^^^^^^~07/01/2010~
-~06230~^~318~^127.^0^^~6~^~RPI~^^^^^^^^^^~03/01/2009~
-~06230~^~319~^37.^0^^~6~^~RPI~^^^^^^^^^^~11/01/2006~
-~06230~^~320~^37.^0^^~6~^~RPI~^^^^^^^^^^~03/01/2009~
-~06230~^~321~^2.^0^^~6~^~RPI~^^^^^^^^^^~03/01/2009~
-~06230~^~322~^0.^0^^~6~^~RPI~^^^^^^^^^^~11/01/2006~
-~06230~^~324~^25.^0^^~6~^~RPI~^^^^^^^^^^~03/01/2009~
-~06230~^~334~^0.^0^^~6~^~RPI~^^^^^^^^^^~11/01/2006~
-~06230~^~337~^0.^0^^~6~^~RPI~^^^^^^^^^^~11/01/2006~
-~06230~^~338~^1.^0^^~6~^~RPI~^^^^^^^^^^~11/01/2006~
-~06230~^~417~^9.^0^^~6~^~RPI~^^^^^^^^^^~11/01/2006~
-~06230~^~431~^0.^0^^~6~^~RPI~^^^^^^^^^^~11/01/2006~
-~06230~^~432~^9.^0^^~6~^~RPI~^^^^^^^^^^~11/01/2006~
-~06230~^~435~^9.^0^^~4~^~NC~^^^^^^^^^^~03/01/2009~
-~06230~^~601~^7.^0^^~6~^~RPI~^^^^^^^^^^~11/01/2006~
-~06243~^~208~^65.^0^^~4~^~NC~^^^^^^^^^^~03/01/2015~
-~06243~^~262~^0.^0^^~6~^~RPI~^^^^^^^^^^~11/01/2006~
-~06243~^~263~^0.^0^^~6~^~RPI~^^^^^^^^^^~11/01/2006~
-~06243~^~268~^271.^0^^~4~^~NC~^^^^^^^^^^~03/01/2015~
-~06243~^~301~^68.^0^^~1~^~RPA~^^^^^^^^^^~07/01/2010~
-~06243~^~304~^7.^0^^~1~^~RPA~^^^^^^^^^^~07/01/2012~
-~06243~^~305~^59.^0^^~1~^~RPA~^^^^^^^^^^~07/01/2012~
-~06243~^~306~^103.^0^^~1~^~RPA~^^^^^^^^^^~07/01/2012~
-~06243~^~307~^357.^0^^~1~^~RPA~^^^^^^^^^^~07/01/2012~
-~06243~^~318~^102.^0^^~4~^~NC~^^^^^^^^^^~03/01/2015~
-~06243~^~319~^30.^0^^~6~^~RPI~^^^^^^^^^^~07/01/2012~
-~06243~^~320~^30.^0^^~4~^~NC~^^^^^^^^^^~03/01/2015~
-~06243~^~321~^2.^0^^~6~^~RPI~^^^^^^^^^^~07/01/2012~
-~06243~^~322~^0.^0^^~6~^~RPI~^^^^^^^^^^~11/01/2006~
-~06243~^~324~^29.^0^^~1~^~RPA~^^^^^^^^^^~07/01/2012~
-~06243~^~334~^0.^0^^~6~^~RPI~^^^^^^^^^^~11/01/2006~
-~06243~^~337~^0.^0^^~6~^~RPI~^^^^^^^^^^~11/01/2006~
-~06243~^~338~^2.^0^^~6~^~RPI~^^^^^^^^^^~07/01/2012~
-~06243~^~417~^3.^0^^~1~^~RPA~^^^^^^^^^^~11/01/2006~
-~06243~^~431~^0.^0^^~6~^~RPI~^^^^^^^^^^~11/01/2006~
-~06243~^~432~^3.^0^^~1~^~RPA~^^^^^^^^^^~07/01/2012~
-~06243~^~435~^3.^0^^~4~^~NC~^^^^^^^^^^~07/01/2010~
-~06243~^~601~^4.^0^^~1~^~RPA~^^^^^^^^^^~11/01/2006~
-~06246~^~208~^75.^0^^~4~^^^^^^^^^^^~02/01/1980~
-~06246~^~268~^314.^0^^~4~^^^^^^^^^^^~11/01/2006~
-~06246~^~301~^72.^0^^~1~^^^^^^^^^^^~02/01/1980~
-~06246~^~304~^9.^0^^~4~^^^^^^^^^^^~02/01/1980~
-~06246~^~305~^62.^0^^~4~^^^^^^^^^^^~02/01/1980~
-~06246~^~306~^125.^0^^~4~^^^^^^^^^^^~02/01/1980~
-~06246~^~307~^405.^0^^~4~^^^^^^^^^^^~02/01/1980~
-~06246~^~318~^182.^0^^~1~^^^^^^^^^^^~02/01/1980~
-~06246~^~319~^14.^0^^~4~^~NC~^^^^^^^^^^~06/01/2002~
-~06246~^~320~^21.^0^^~4~^~NC~^^^^^^^^^^~06/01/2002~
-~06246~^~417~^9.^0^^~4~^^^^^^^^^^^~02/01/1995~
-~06246~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~
-~06246~^~432~^9.^0^^~4~^^^^^^^^^^^~02/01/1995~
-~06246~^~435~^9.^0^^~4~^~NC~^^^^^^^^^^~11/01/2006~
-~06246~^~601~^13.^0^^~1~^^^^^^^^^^^~02/01/1980~
-~06248~^~208~^55.^0^^~4~^~NC~^^^^^^^^^^~02/01/1980~
-~06248~^~268~^230.^0^^~4~^^^^^^^^^^^~11/01/2006~
-~06248~^~301~^68.^0^^~1~^^^^^^^^^^^~02/01/1980~
-~06248~^~304~^8.^0^^~1~^^^^^^^^^^^~02/01/1980~
-~06248~^~305~^66.^0^^~1~^^^^^^^^^^^~02/01/1980~
-~06248~^~306~^96.^0^^~1~^^^^^^^^^^^~02/01/1980~
-~06248~^~307~^425.^0^^~1~^^^^^^^^^^^~02/01/1980~
-~06248~^~318~^92.^0^^~1~^^^^^^^^^^^~02/01/1980~
-~06248~^~319~^22.^0^^~4~^~NC~^^^^^^^^^^~06/01/2002~
-~06248~^~320~^23.^0^^~4~^~NC~^^^^^^^^^^~06/01/2002~
-~06248~^~417~^4.^0^^~4~^^^^^^^^^^^~02/01/1980~
-~06248~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~
-~06248~^~432~^4.^0^^~4~^^^^^^^^^^^~02/01/1980~
-~06248~^~435~^4.^0^^~4~^~NC~^^^^^^^^^^~11/01/2006~
-~06248~^~601~^13.^0^^~1~^^^^^^^^^^^~02/01/1980~
-~06249~^~208~^94.^0^^~4~^~NC~^^^^^^^^^^~02/01/1980~
-~06249~^~268~^393.^0^^~4~^^^^^^^^^^^~11/01/2006~
-~06249~^~301~^68.^0^^~1~^^^^^^^^^^^~02/01/1980~
-~06249~^~304~^22.^0^^~1~^^^^^^^^^^^~02/01/1980~
-~06249~^~305~^94.^0^^~1~^^^^^^^^^^^~02/01/1980~
-~06249~^~306~^148.^0^^~1~^^^^^^^^^^^~02/01/1980~
-~06249~^~307~^352.^1^^~8~^~LC~^^^^^^^^^^~07/01/2010~
-~06249~^~318~^140.^0^^~1~^^^^^^^^^^^~02/01/1980~
-~06249~^~417~^3.^0^^~1~^^^^^^^^^^^~02/01/1980~
-~06249~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~
-~06249~^~432~^3.^0^^~1~^^^^^^^^^^^~07/01/2010~
-~06249~^~435~^3.^0^^~4~^~NC~^^^^^^^^^^~07/01/2010~
-~06249~^~601~^7.^0^^~1~^^^^^^^^^^^~02/01/1980~
-~06253~^~208~^60.^0^^~4~^~NC~^^^^^^^^^^~02/01/1980~
-~06253~^~268~^251.^0^^~4~^^^^^^^^^^^~11/01/2006~
-~06253~^~301~^67.^0^^~1~^^^^^^^^^^^~02/01/1980~
-~06253~^~304~^7.^0^^~1~^^^^^^^^^^^~02/01/1980~
-~06253~^~305~^65.^0^^~1~^^^^^^^^^^^~02/01/1980~
-~06253~^~306~^130.^0^^~1~^^^^^^^^^^^~02/01/1980~
-~06253~^~307~^230.^1^^~8~^~LC~^^^^^^^^^^~07/01/2010~
-~06253~^~318~^179.^0^^~1~^^^^^^^^^^^~02/01/1980~
-~06253~^~417~^4.^0^^~1~^^^^^^^^^^^~02/01/1980~
-~06253~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~
-~06253~^~432~^4.^0^^~1~^^^^^^^^^^^~07/01/2010~
-~06253~^~435~^4.^0^^~4~^~NC~^^^^^^^^^^~07/01/2010~
-~06253~^~601~^9.^0^^~1~^^^^^^^^^^^~02/01/1980~
-~06256~^~208~^61.^0^^~6~^~RPI~^^^^^^^^^^~03/01/2009~
-~06256~^~262~^0.^0^^~6~^~RPI~^^^^^^^^^^~11/01/2006~
-~06256~^~263~^0.^0^^~6~^~RPI~^^^^^^^^^^~11/01/2006~
-~06256~^~268~^254.^0^^~6~^~RPI~^^^^^^^^^^~03/01/2009~
-~06256~^~301~^69.^0^^~1~^~RPA~^^^^^^^^^^~03/01/2009~
-~06256~^~304~^9.^0^^~6~^~RPI~^^^^^^^^^^~03/01/2009~
-~06256~^~305~^60.^0^^~6~^~RPI~^^^^^^^^^^~03/01/2009~
-~06256~^~306~^95.^0^^~6~^~RPI~^^^^^^^^^^~03/01/2009~
-~06256~^~307~^354.^0^^~6~^~RPI~^^^^^^^^^^~03/01/2009~
-~06256~^~318~^147.^0^^~4~^~NC~^^^^^^^^^^~03/01/2009~
-~06256~^~319~^43.^0^^~6~^~RPI~^^^^^^^^^^~11/01/2006~
-~06256~^~320~^43.^0^^~4~^~NC~^^^^^^^^^^~03/01/2009~
-~06256~^~321~^2.^0^^~6~^~RPI~^^^^^^^^^^~03/01/2009~
-~06256~^~322~^0.^0^^~6~^~RPI~^^^^^^^^^^~03/01/2009~
-~06256~^~324~^25.^0^^~1~^~RPA~^^^^^^^^^^~03/01/2009~
-~06256~^~334~^0.^0^^~6~^~RPI~^^^^^^^^^^~03/01/2009~
-~06256~^~337~^0.^0^^~6~^~RPI~^^^^^^^^^^~03/01/2009~
-~06256~^~338~^0.^0^^~6~^~RPI~^^^^^^^^^^~03/01/2009~
-~06256~^~417~^4.^0^^~6~^~RPI~^^^^^^^^^^~11/01/2006~
-~06256~^~431~^0.^0^^~6~^~RPI~^^^^^^^^^^~11/01/2006~
-~06256~^~432~^4.^0^^~6~^~RPI~^^^^^^^^^^~11/01/2006~
-~06256~^~435~^4.^0^^~4~^~NC~^^^^^^^^^^~03/01/2009~
-~06256~^~601~^10.^0^^~1~^~RPA~^^^^^^^^^^~11/01/2006~
-~06264~^~208~^72.^0^^~4~^~NC~^^^^^^^^^^~05/01/2006~
-~06264~^~262~^0.^0^^~4~^~RC~^^^^^^^^^^~05/01/2006~
-~06264~^~263~^0.^0^^~4~^~RC~^^^^^^^^^^~05/01/2006~
-~06264~^~268~^301.^0^^~4~^~NC~^^^^^^^^^^~05/01/2006~
-~06264~^~301~^131.^0^^~4~^~RC~^^^^^^^^^^~05/01/2006~
-~06264~^~304~^12.^0^^~4~^~RC~^^^^^^^^^^~05/01/2006~
-~06264~^~305~^110.^0^^~4~^~RC~^^^^^^^^^^~05/01/2006~
-~06264~^~306~^167.^0^^~4~^~RC~^^^^^^^^^^~05/01/2006~
-~06264~^~307~^184.^0^^~4~^~RC~^^^^^^^^^^~05/01/2006~
-~06264~^~318~^286.^0^^~4~^~RC~^^^^^^^^^^~05/01/2006~
-~06264~^~319~^83.^0^^~4~^~RC~^^^^^^^^^^~05/01/2006~
-~06264~^~320~^84.^0^^~4~^~RC~^^^^^^^^^^~05/01/2006~
-~06264~^~321~^5.^0^^~4~^~RC~^^^^^^^^^^~05/01/2006~
-~06264~^~322~^0.^0^^~4~^~RC~^^^^^^^^^^~05/01/2006~
-~06264~^~334~^0.^0^^~4~^~RC~^^^^^^^^^^~05/01/2006~
-~06264~^~337~^0.^0^^~4~^~RC~^^^^^^^^^^~05/01/2006~
-~06264~^~338~^1.^0^^~4~^~RC~^^^^^^^^^^~05/01/2006~
-~06264~^~417~^10.^0^^~4~^~RC~^^^^^^^^^^~05/01/2006~
-~06264~^~431~^4.^0^^~4~^~RC~^^^^^^^^^^~05/01/2006~
-~06264~^~432~^5.^0^^~4~^~RC~^^^^^^^^^^~05/01/2006~
-~06264~^~435~^13.^0^^~4~^~NC~^^^^^^^^^^~05/01/2006~
-~06264~^~601~^8.^0^^~4~^~RC~^^^^^^^^^^~05/01/2006~
-~06285~^~208~^79.^0^^~4~^~NC~^^^^^^^^^^~05/01/2006~
-~06285~^~262~^0.^0^^~4~^~RC~^^^^^^^^^^~05/01/2006~
-~06285~^~263~^0.^0^^~4~^~RC~^^^^^^^^^^~05/01/2006~
-~06285~^~268~^332.^0^^~4~^~NC~^^^^^^^^^^~05/01/2006~
-~06285~^~301~^16.^0^^~4~^~RC~^^^^^^^^^^~05/01/2006~
-~06285~^~304~^13.^0^^~4~^~RC~^^^^^^^^^^~05/01/2006~
-~06285~^~305~^30.^0^^~4~^~RC~^^^^^^^^^^~05/01/2006~
-~06285~^~306~^193.^0^^~4~^~RC~^^^^^^^^^^~05/01/2006~
-~06285~^~307~^347.^0^^~4~^~RC~^^^^^^^^^^~05/01/2006~
-~06285~^~318~^110.^0^^~4~^~RC~^^^^^^^^^^~05/01/2006~
-~06285~^~319~^0.^0^^~4~^~RC~^^^^^^^^^^~05/01/2006~
-~06285~^~320~^6.^0^^~4~^~RC~^^^^^^^^^^~05/01/2006~
-~06285~^~321~^65.^0^^~4~^~RC~^^^^^^^^^^~05/01/2006~
-~06285~^~322~^2.^0^^~4~^~RC~^^^^^^^^^^~05/01/2006~
-~06285~^~334~^0.^0^^~4~^~RC~^^^^^^^^^^~05/01/2006~
-~06285~^~337~^2032.^0^^~4~^~RC~^^^^^^^^^^~05/01/2006~
-~06285~^~338~^1.^0^^~4~^~RC~^^^^^^^^^^~05/01/2006~
-~06285~^~417~^10.^0^^~4~^~RC~^^^^^^^^^^~05/01/2006~
-~06285~^~431~^0.^0^^~4~^~RC~^^^^^^^^^^~05/01/2006~
-~06285~^~432~^10.^0^^~4~^~RC~^^^^^^^^^^~05/01/2006~
-~06285~^~435~^10.^0^^~4~^~NC~^^^^^^^^^^~05/01/2007~
-~06285~^~601~^1.^0^^~4~^~RC~^^^^^^^^^^~05/01/2006~
-~06307~^~208~^172.^0^^~4~^~NC~^^^^^^^^^^~07/01/2012~
-~06307~^~268~^718.^0^^~4~^~NC~^^^^^^^^^^~07/01/2012~
-~06307~^~301~^47.^6^0.^~1~^~A~^^^1^45.^49.^5^44.^48.^~4~^~07/01/2012~
-~06307~^~304~^15.^6^0.^~1~^~A~^^^1^14.^16.^5^14.^15.^~4~^~07/01/2012~
-~06307~^~305~^19.^6^0.^~1~^~A~^^^1^18.^19.^5^18.^19.^~4~^~07/01/2012~
-~06307~^~306~^247.^6^2.^~1~^~A~^^^1^238.^255.^5^238.^254.^~4~^~07/01/2012~
-~06307~^~307~^1242.^6^11.^~1~^~A~^^^1^1200.^1270.^5^1210.^1272.^~4~^~07/01/2012~
-~06307~^~318~^196.^0^^~1~^~AS~^^^^^^^^^^~07/01/2012~
-~06307~^~320~^10.^0^^~1~^~AS~^^^^^^^^^^~07/01/2012~
-~06307~^~321~^116.^3^19.^~1~^~A~^^^1^90.^154.^2^32.^200.^~4~^~07/01/2012~
-~06307~^~322~^0.^3^0.^~1~^~A~^^^1^0.^0.^2^0.^0.^~1, 4~^~07/01/2012~
-~06307~^~334~^3.^3^1.^~1~^~A~^^^1^0.^4.^2^-2.^8.^~1, 4~^~07/01/2012~
-~06307~^~337~^3556.^3^156.^~1~^~A~^^^1^3243.^3714.^2^2881.^4230.^~4~^~07/01/2012~
-~06307~^~338~^69.^3^4.^~1~^~A~^^^1^63.^77.^2^51.^87.^~4~^~07/01/2012~
-~06314~^~208~^41.^1^^~9~^~MC~^^^^^^^^^^~04/01/2006~
-~06314~^~268~^173.^0^^~9~^~MC~^^^^^^^^^^~04/01/2006~
-~06314~^~301~^8.^1^^~9~^~MC~^^^^^^^^^^~04/01/2006~
-~06314~^~307~^195.^1^^~9~^~MC~^^^^^^^^^^~04/01/2006~
-~06314~^~318~^568.^1^^~9~^~MC~^^^^^^^^^^~04/01/2006~
-~06314~^~601~^5.^1^^~9~^~MC~^^^^^^^^^^~04/01/2006~
-~06315~^~208~^37.^1^^~9~^~MC~^^^^^^^^^^~04/01/2006~
-~06315~^~268~^156.^0^^~9~^~MC~^^^^^^^^^^~04/01/2006~
-~06315~^~301~^15.^1^^~9~^~MC~^^^^^^^^^^~04/01/2006~
-~06315~^~307~^181.^1^^~9~^~MC~^^^^^^^^^^~04/01/2006~
-~06315~^~318~^334.^1^^~9~^~MC~^^^^^^^^^^~04/01/2006~
-~06315~^~601~^7.^1^^~9~^~MC~^^^^^^^^^^~04/01/2006~
-~06316~^~208~^51.^1^^~9~^~MC~^^^^^^^^^^~04/01/2006~
-~06316~^~268~^212.^0^^~9~^~MC~^^^^^^^^^^~04/01/2006~
-~06316~^~301~^16.^1^^~9~^~MC~^^^^^^^^^^~04/01/2006~
-~06316~^~307~^195.^1^^~9~^~MC~^^^^^^^^^^~04/01/2006~
-~06316~^~318~^618.^1^^~9~^~MC~^^^^^^^^^^~04/01/2006~
-~06316~^~601~^1.^1^^~9~^~MC~^^^^^^^^^^~04/01/2006~
-~06338~^~208~^81.^0^^~12~^~MA~^^^^^^^^^^~05/01/2013~
-~06338~^~268~^339.^0^^~12~^~MA~^^^^^^^^^^~05/01/2013~
-~06338~^~301~^8.^6^0.^~1~^~A~^^^1^8.^9.^5^7.^8.^~2, 3~^~07/01/2012~
-~06338~^~304~^3.^6^0.^~1~^~A~^^^1^3.^3.^5^2.^3.^~2, 3~^~07/01/2012~
-~06338~^~305~^19.^6^0.^~1~^~A~^^^1^17.^21.^5^17.^20.^~2, 3~^~07/01/2012~
-~06338~^~306~^67.^6^1.^~1~^~A~^^^1^59.^72.^5^62.^71.^~2, 3~^~07/01/2012~
-~06338~^~307~^697.^6^14.^~1~^~A~^^^1^659.^752.^5^658.^734.^~2, 3~^~07/01/2012~
-~06338~^~318~^8.^0^^~1~^~AS~^^^^^^^^^^~07/01/2012~
-~06338~^~319~^2.^1^^~1~^~A~^^^^^^^^^^~07/01/2012~
-~06338~^~321~^1.^1^^~1~^~A~^^^^^^^^^^~07/01/2012~
-~06338~^~322~^0.^1^^~1~^~A~^^^^^^^^^~1~^~07/01/2012~
-~06338~^~324~^9.^1^^~1~^~A~^^^^^^^^^^~07/01/2012~
-~06338~^~334~^0.^1^^~1~^~A~^^^^^^^^^~1~^~07/01/2012~
-~06338~^~337~^0.^1^^~1~^~A~^^^^^^^^^^~07/01/2012~
-~06338~^~338~^6.^1^^~1~^~A~^^^^^^^^^^~07/01/2012~
-~06338~^~601~^0.^1^^~1~^~A~^^^^^^^^^~1~^~07/01/2012~
-~06358~^~208~^79.^0^^~4~^~NC~^^^^^^^^^^~02/01/1980~
-~06358~^~268~^331.^0^^~4~^^^^^^^^^^^~11/01/2006~
-~06358~^~301~^74.^0^^~1~^^^^^^^^^^^~02/01/1980~
-~06358~^~304~^10.^0^^~1~^^^^^^^^^^^~02/01/1980~
-~06358~^~305~^69.^0^^~1~^^^^^^^^^^^~02/01/1980~
-~06358~^~306~^241.^0^^~1~^^^^^^^^^^^~02/01/1980~
-~06358~^~307~^442.^0^^~1~^^^^^^^^^^^~02/01/1980~
-~06358~^~318~^350.^0^^~1~^^^^^^^^^^^~02/01/1980~
-~06358~^~319~^9.^0^^~4~^~NC~^^^^^^^^^^~06/01/2002~
-~06358~^~320~^25.^0^^~4~^~NC~^^^^^^^^^^~06/01/2002~
-~06358~^~417~^9.^0^^~4~^^^^^^^^^^^~02/01/1980~
-~06358~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~
-~06358~^~432~^9.^0^^~4~^^^^^^^^^^^~02/01/1980~
-~06358~^~435~^9.^0^^~4~^~NC~^^^^^^^^^^~11/01/2006~
-~06358~^~601~^9.^0^^~1~^^^^^^^^^^^~02/01/1980~
-~06359~^~208~^55.^0^^~4~^~NC~^^^^^^^^^^~03/01/2015~
-~06359~^~262~^0.^0^^~6~^~RPI~^^^^^^^^^^~11/01/2006~
-~06359~^~263~^0.^0^^~6~^~RPI~^^^^^^^^^^~11/01/2006~
-~06359~^~268~^229.^0^^~4~^~NC~^^^^^^^^^^~03/01/2015~
-~06359~^~301~^68.^0^^~1~^~RPA~^^^^^^^^^^~03/01/2015~
-~06359~^~304~^13.^0^^~1~^~RPA~^^^^^^^^^^~03/01/2015~
-~06359~^~305~^63.^0^^~1~^~RPA~^^^^^^^^^^~03/01/2015~
-~06359~^~306~^343.^0^^~1~^~RPA~^^^^^^^^^^~03/01/2015~
-~06359~^~307~^206.^0^^~1~^~RPA~^^^^^^^^^^~03/01/2015~
-~06359~^~318~^287.^0^^~4~^~NC~^^^^^^^^^^~03/01/2015~
-~06359~^~319~^29.^0^^~6~^~RPI~^^^^^^^^^^~11/01/2006~
-~06359~^~320~^38.^0^^~4~^~NC~^^^^^^^^^^~03/01/2015~
-~06359~^~321~^115.^0^^~6~^~RPI~^^^^^^^^^^~03/01/2009~
-~06359~^~322~^0.^0^^~6~^~RPI~^^^^^^^^^^~03/01/2009~
-~06359~^~324~^25.^0^^~6~^~RPI~^^^^^^^^^^~03/01/2009~
-~06359~^~334~^0.^0^^~6~^~RPI~^^^^^^^^^^~03/01/2009~
-~06359~^~337~^5261.^0^^~6~^~RPI~^^^^^^^^^^~11/01/2006~
-~06359~^~338~^43.^0^^~6~^~RPI~^^^^^^^^^^~11/01/2006~
-~06359~^~417~^2.^0^^~1~^~RPA~^^^^^^^^^^~11/01/2006~
-~06359~^~431~^0.^0^^~6~^~RPI~^^^^^^^^^^~11/01/2006~
-~06359~^~432~^2.^0^^~1~^~RPA~^^^^^^^^^^~11/01/2006~
-~06359~^~435~^2.^0^^~4~^~NC~^^^^^^^^^^~03/01/2009~
-~06359~^~601~^4.^0^^~1~^~RPA~^^^^^^^^^^~11/01/2006~
-~06377~^~208~^71.^0^^~4~^~NC~^^^^^^^^^^~02/01/2011~
-~06377~^~268~^296.^0^^~4~^~NC~^^^^^^^^^^~02/01/2011~
-~06377~^~301~^13.^6^0.^~1~^~A~^^^1^12.^14.^5^11.^13.^~4~^~02/01/2011~
-~06377~^~304~^14.^6^0.^~1~^~A~^^^1^13.^15.^5^13.^14.^~4~^~02/01/2011~
-~06377~^~305~^31.^6^0.^~1~^~A~^^^1^29.^33.^5^29.^32.^~4~^~02/01/2011~
-~06377~^~306~^562.^6^11.^~1~^~A~^^^1^518.^598.^5^533.^590.^~4~^~02/01/2011~
-~06377~^~307~^377.^6^3.^~1~^~A~^^^1^363.^384.^5^368.^385.^~4~^~02/01/2011~
-~06377~^~318~^323.^1^^~8~^~LC~^^^^^^^^^^~07/01/2010~
-~06377~^~601~^0.^1^^~8~^~LC~^^^^^^^^^^~12/01/2006~
-~06395~^~208~^47.^0^^~4~^~NC~^^^^^^^^^^~02/01/2011~
-~06395~^~268~^196.^0^^~4~^~NC~^^^^^^^^^^~02/01/2011~
-~06395~^~301~^11.^6^0.^~1~^~A~^^^1^9.^12.^5^9.^11.^~4~^~02/01/2011~
-~06395~^~304~^7.^6^0.^~1~^~A~^^^1^7.^8.^5^7.^7.^~4~^~02/01/2011~
-~06395~^~305~^35.^6^1.^~1~^~A~^^^1^28.^37.^5^31.^38.^~4~^~02/01/2011~
-~06395~^~306~^90.^6^4.^~1~^~A~^^^1^73.^105.^5^79.^101.^~4~^~02/01/2011~
-~06395~^~307~^325.^6^4.^~1~^~A~^^^1^308.^338.^5^311.^337.^~4~^~02/01/2011~
-~06395~^~321~^198.^0^^~12~^~MA~^^^^^^^^^^~05/01/2013~
-~06395~^~322~^20.^0^^~12~^~MA~^^^^^^^^^^~05/01/2013~
-~06395~^~601~^8.^1^^~8~^~LC~^^^^^^^^^^~02/01/2011~
-~06401~^~208~^35.^0^^~4~^~NC~^^^^^^^^^^~02/01/1980~
-~06401~^~268~^146.^0^^~4~^^^^^^^^^^^~11/01/2006~
-~06401~^~301~^12.^0^^~1~^^^^^^^^^^^~02/01/1980~
-~06401~^~304~^2.^0^^~1~^^^^^^^^^^^~02/01/1980~
-~06401~^~305~^16.^0^^~1~^^^^^^^^^^^~02/01/1980~
-~06401~^~306~^71.^0^^~1~^^^^^^^^^^^~02/01/1980~
-~06401~^~307~^402.^0^^~1~^^^^^^^^^^^~02/01/1980~
-~06401~^~318~^182.^0^^~1~^^^^^^^^^^^~02/01/1980~
-~06401~^~319~^7.^0^^~4~^~NC~^^^^^^^^^^~06/01/2002~
-~06401~^~320~^15.^0^^~4~^~NC~^^^^^^^^^^~06/01/2002~
-~06401~^~417~^9.^0^^~4~^^^^^^^^^^^~02/01/1980~
-~06401~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~
-~06401~^~432~^9.^0^^~4~^^^^^^^^^^^~02/01/1980~
-~06401~^~435~^9.^0^^~4~^~NC~^^^^^^^^^^~11/01/2006~
-~06401~^~601~^2.^0^^~1~^^^^^^^^^^^~02/01/1980~
-~06402~^~208~^46.^0^^~6~^~RPI~^^^^^^^^^^~11/01/2006~
-~06402~^~262~^0.^0^^~6~^~RPI~^^^^^^^^^^~11/01/2006~
-~06402~^~263~^0.^0^^~6~^~RPI~^^^^^^^^^^~11/01/2006~
-~06402~^~268~^191.^0^^~6~^~RPI~^^^^^^^^^^~11/01/2006~
-~06402~^~301~^19.^0^^~1~^~RPA~^^^^^^^^^^~11/01/2006~
-~06402~^~304~^17.^0^^~1~^~RPA~^^^^^^^^^^~11/01/2006~
-~06402~^~305~^38.^0^^~1~^~RPA~^^^^^^^^^^~11/01/2006~
-~06402~^~306~^125.^0^^~1~^~RPA~^^^^^^^^^^~11/01/2006~
-~06402~^~307~^487.^0^^~1~^~RPA~^^^^^^^^^^~11/01/2006~
-~06402~^~318~^222.^0^^~6~^~RPI~^^^^^^^^^^~11/01/2006~
-~06402~^~319~^0.^0^^~6~^~RPI~^^^^^^^^^^~11/01/2006~
-~06402~^~320~^11.^0^^~6~^~RPI~^^^^^^^^^^~11/01/2006~
-~06402~^~321~^110.^0^^~6~^~RPI~^^^^^^^^^^~11/01/2006~
-~06402~^~322~^40.^0^^~6~^~RPI~^^^^^^^^^^~11/01/2006~
-~06402~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~
-~06402~^~334~^6.^0^^~6~^~RPI~^^^^^^^^^^~11/01/2006~
-~06402~^~337~^232.^0^^~6~^~RPI~^^^^^^^^^^~11/01/2006~
-~06402~^~338~^18.^0^^~6~^~RPI~^^^^^^^^^^~11/01/2006~
-~06402~^~417~^33.^0^^~6~^~RPI~^^^^^^^^^^~11/01/2006~
-~06402~^~431~^0.^0^^~6~^~RPI~^^^^^^^^^^~11/01/2006~
-~06402~^~432~^33.^0^^~6~^~RPI~^^^^^^^^^^~11/01/2006~
-~06402~^~435~^33.^0^^~4~^~NC~^^^^^^^^^^~11/01/2006~
-~06402~^~601~^0.^0^^~6~^~RPI~^^^^^^^^^^~11/01/2006~
-~06404~^~208~^63.^0^^~6~^~RPI~^^^^^^^^^^~11/01/2006~
-~06404~^~262~^0.^0^^~6~^~RPI~^^^^^^^^^^~11/01/2006~
-~06404~^~263~^0.^0^^~6~^~RPI~^^^^^^^^^^~11/01/2006~
-~06404~^~268~^264.^0^^~6~^~RPI~^^^^^^^^^^~11/01/2006~
-~06404~^~301~^31.^0^^~1~^~RPA~^^^^^^^^^^~11/01/2006~
-~06404~^~304~^17.^0^^~1~^~RPA~^^^^^^^^^^~11/01/2006~
-~06404~^~305~^48.^0^^~1~^~RPA~^^^^^^^^^^~11/01/2006~
-~06404~^~306~^147.^0^^~1~^~RPA~^^^^^^^^^^~11/01/2006~
-~06404~^~307~^349.^0^^~1~^~RPA~^^^^^^^^^^~11/01/2006~
-~06404~^~318~^324.^0^^~6~^~RPI~^^^^^^^^^^~11/01/2006~
-~06404~^~319~^1.^0^^~6~^~RPI~^^^^^^^^^^~11/01/2006~
-~06404~^~320~^17.^0^^~6~^~RPI~^^^^^^^^^^~11/01/2006~
-~06404~^~321~^164.^0^^~6~^~RPI~^^^^^^^^^^~11/01/2006~
-~06404~^~322~^58.^0^^~6~^~RPI~^^^^^^^^^^~11/01/2006~
-~06404~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~
-~06404~^~334~^0.^0^^~6~^~RPI~^^^^^^^^^^~11/01/2006~
-~06404~^~337~^2910.^0^^~6~^~RPI~^^^^^^^^^^~11/01/2006~
-~06404~^~338~^4.^0^^~6~^~RPI~^^^^^^^^^^~11/01/2006~
-~06404~^~417~^12.^0^^~6~^~RPI~^^^^^^^^^^~11/01/2006~
-~06404~^~431~^0.^0^^~6~^~RPI~^^^^^^^^^^~11/01/2006~
-~06404~^~432~^12.^0^^~6~^~RPI~^^^^^^^^^^~11/01/2006~
-~06404~^~435~^12.^0^^~4~^~NC~^^^^^^^^^^~11/01/2006~
-~06404~^~601~^1.^0^^~6~^~RPI~^^^^^^^^^^~11/01/2006~
-~06406~^~208~^75.^0^^~4~^~NC~^^^^^^^^^^~02/01/1980~
-~06406~^~268~^314.^0^^~4~^^^^^^^^^^^~11/01/2006~
-~06406~^~301~^35.^0^^~1~^^^^^^^^^^^~02/01/1980~
-~06406~^~304~^19.^0^^~1~^^^^^^^^^^^~02/01/1980~
-~06406~^~305~^66.^0^^~1~^^^^^^^^^^^~02/01/1980~
-~06406~^~306~^191.^0^^~1~^^^^^^^^^^^~02/01/1980~
-~06406~^~307~^437.^0^^~1~^^^^^^^^^^^~02/01/1980~
-~06406~^~318~^348.^0^^~1~^^^^^^^^^^^~02/01/1980~
-~06406~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2002~
-~06406~^~320~^17.^0^^~4~^~NC~^^^^^^^^^^~06/01/2002~
-~06406~^~417~^12.^0^^~4~^^^^^^^^^^^~02/01/1980~
-~06406~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~
-~06406~^~432~^12.^0^^~4~^^^^^^^^^^^~02/01/1980~
-~06406~^~435~^12.^0^^~4~^~NC~^^^^^^^^^^~11/01/2006~
-~06406~^~601~^5.^0^^~1~^^^^^^^^^^^~02/01/1980~
-~06409~^~208~^34.^0^^~6~^~RPI~^^^^^^^^^^~11/01/2006~
-~06409~^~262~^0.^0^^~6~^~RPI~^^^^^^^^^^~11/01/2006~
-~06409~^~263~^0.^0^^~6~^~RPI~^^^^^^^^^^~11/01/2006~
-~06409~^~268~^140.^0^^~6~^~RPI~^^^^^^^^^^~11/01/2006~
-~06409~^~301~^8.^0^^~1~^~RPA~^^^^^^^^^^~11/01/2006~
-~06409~^~304~^3.^0^^~1~^~RPA~^^^^^^^^^^~11/01/2006~
-~06409~^~305~^19.^0^^~1~^~RPA~^^^^^^^^^^~11/01/2006~
-~06409~^~306~^40.^0^^~1~^~RPA~^^^^^^^^^^~11/01/2006~
-~06409~^~307~^325.^0^^~8~^~LC~^^^^^^^^^^~06/01/2012~
-~06409~^~318~^101.^0^^~6~^~RPI~^^^^^^^^^^~11/01/2006~
-~06409~^~319~^0.^0^^~6~^~RPI~^^^^^^^^^^~11/01/2006~
-~06409~^~320~^5.^0^^~6~^~RPI~^^^^^^^^^^~11/01/2006~
-~06409~^~321~^60.^0^^~6~^~RPI~^^^^^^^^^^~11/01/2006~
-~06409~^~322~^0.^0^^~6~^~RPI~^^^^^^^^^^~11/01/2006~
-~06409~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~
-~06409~^~334~^0.^0^^~6~^~RPI~^^^^^^^^^^~11/01/2006~
-~06409~^~337~^4253.^0^^~6~^~RPI~^^^^^^^^^^~11/01/2006~
-~06409~^~338~^2.^0^^~6~^~RPI~^^^^^^^^^^~11/01/2006~
-~06409~^~417~^8.^0^^~6~^~RPI~^^^^^^^^^^~11/01/2006~
-~06409~^~431~^6.^0^^~6~^~RPI~^^^^^^^^^^~11/01/2006~
-~06409~^~432~^2.^0^^~6~^~RPI~^^^^^^^^^^~11/01/2006~
-~06409~^~435~^12.^0^^~4~^~NC~^^^^^^^^^^~11/01/2006~
-~06409~^~601~^2.^0^^~6~^~RPI~^^^^^^^^^^~11/01/2006~
-~06410~^~208~^37.^0^^~4~^~NC~^^^^^^^^^^~02/01/1980~
-~06410~^~268~^155.^0^^~4~^^^^^^^^^^^~11/01/2006~
-~06410~^~301~^16.^0^^~1~^^^^^^^^^^^~02/01/1980~
-~06410~^~304~^3.^0^^~1~^^^^^^^^^^^~02/01/1980~
-~06410~^~305~^15.^0^^~1~^^^^^^^^^^^~02/01/1980~
-~06410~^~306~^50.^0^^~1~^^^^^^^^^^^~02/01/1980~
-~06410~^~307~^254.^1^^~8~^~LC~^^^^^^^^^^~07/01/2010~
-~06410~^~318~^126.^0^^~1~^^^^^^^^^^^~02/01/1980~
-~06410~^~417~^1.^0^^~1~^^^^^^^^^^^~02/01/1980~
-~06410~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~
-~06410~^~432~^1.^0^^~1~^^^^^^^^^^^~02/01/1980~
-~06410~^~435~^1.^0^^~4~^~NC~^^^^^^^^^^~11/01/2006~
-~06410~^~601~^6.^0^^~1~^^^^^^^^^^^~02/01/1980~
-~06411~^~208~^63.^0^^~4~^~NC~^^^^^^^^^^~02/01/1980~
-~06411~^~268~^264.^0^^~4~^^^^^^^^^^^~11/01/2006~
-~06411~^~301~^57.^0^^~1~^^^^^^^^^^^~02/01/1980~
-~06411~^~304~^2.^0^^~1~^^^^^^^^^^^~02/01/1980~
-~06411~^~305~^55.^0^^~1~^^^^^^^^^^^~02/01/1980~
-~06411~^~306~^62.^0^^~1~^^^^^^^^^^^~02/01/1980~
-~06411~^~307~^388.^0^^~1~^^^^^^^^^^^~02/01/1980~
-~06411~^~318~^440.^0^^~1~^^^^^^^^^^^~02/01/1980~
-~06411~^~319~^117.^0^^~4~^~NC~^^^^^^^^^^~06/01/2002~
-~06411~^~320~^120.^0^^~4~^~NC~^^^^^^^^^^~06/01/2002~
-~06411~^~417~^2.^0^^~4~^^^^^^^^^^^~02/01/1980~
-~06411~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~
-~06411~^~432~^2.^0^^~4~^^^^^^^^^^^~02/01/1980~
-~06411~^~435~^2.^0^^~4~^~NC~^^^^^^^^^^~11/01/2006~
-~06411~^~601~^12.^0^^~1~^^^^^^^^^^^~02/01/1980~
-~06413~^~208~^16.^0^^~4~^~NC~^^^^^^^^^^~02/01/1980~
-~06413~^~262~^0.^0^^~4~^~FLA~^^^^^^^^^^~01/01/2003~
-~06413~^~263~^0.^0^^~4~^~FLA~^^^^^^^^^^~01/01/2003~
-~06413~^~268~^67.^0^^~4~^^^^^^^^^^^~05/01/2005~
-~06413~^~301~^4.^0^^~1~^^^^^^^^^^^~02/01/1980~
-~06413~^~304~^1.^0^^~1~^^^^^^^^^^^~02/01/1980~
-~06413~^~305~^30.^0^^~1~^^^^^^^^^^^~02/01/1980~
-~06413~^~306~^86.^0^^~1~^^^^^^^^^^^~02/01/1980~
-~06413~^~307~^306.^1^^~8~^~LC~^^^^^^^^^^~07/01/2010~
-~06413~^~318~^0.^0^^~4~^~FLA~^^^^^^^^^^~01/01/2003~
-~06413~^~319~^0.^0^^~4~^~FLA~^^^^^^^^^^~01/01/2003~
-~06413~^~320~^0.^0^^~4~^~FLA~^^^^^^^^^^~01/01/2003~
-~06413~^~321~^0.^0^^~4~^~FLA~^^^^^^^^^^~11/01/2002~
-~06413~^~322~^0.^0^^~4~^~FLA~^^^^^^^^^^~11/01/2002~
-~06413~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~
-~06413~^~334~^0.^0^^~4~^~FLA~^^^^^^^^^^~11/01/2002~
-~06413~^~337~^0.^0^^~4~^~FLA~^^^^^^^^^^~11/01/2002~
-~06413~^~338~^0.^0^^~4~^~FLA~^^^^^^^^^^~11/01/2002~
-~06413~^~417~^2.^0^^~4~^^^^^^^^^^^~02/01/1980~
-~06413~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~
-~06413~^~432~^2.^0^^~4~^^^^^^^^^^^~01/01/2003~
-~06413~^~435~^2.^0^^~4~^~NC~^^^^^^^^^^~11/01/2006~
-~06413~^~601~^0.^0^^~1~^^^^^^^^^^^~02/01/1980~
-~06415~^~208~^56.^0^^~4~^~NC~^^^^^^^^^^~05/01/2015~
-~06415~^~268~^233.^0^^~4~^~NC~^^^^^^^^^^~05/01/2015~
-~06415~^~301~^10.^6^0.^~1~^~A~^^^1^9.^11.^5^9.^10.^~2, 3~^~05/01/2015~
-~06415~^~304~^10.^6^0.^~1~^~A~^^^1^9.^11.^5^9.^10.^~2, 3~^~05/01/2015~
-~06415~^~305~^55.^6^1.^~1~^~A~^^^1^50.^61.^5^50.^59.^~2, 3~^~05/01/2015~
-~06415~^~306~^129.^6^2.^~1~^~A~^^^1^122.^136.^5^123.^134.^~2, 3~^~05/01/2015~
-~06415~^~307~^308.^6^2.^~1~^~A~^^^1^300.^320.^5^300.^314.^~2, 3~^~05/01/2015~
-~06415~^~318~^157.^1^^~1~^~AS~^^^^^^^^^^~05/01/2015~
-~06415~^~319~^0.^1^^~1~^~A~^^^^^^^^^~1~^~05/01/2015~
-~06415~^~321~^81.^1^^~1~^~A~^^^^^^^^^^~05/01/2015~
-~06415~^~322~^27.^1^^~1~^~A~^^^^^^^^^^~05/01/2015~
-~06415~^~334~^0.^1^^~1~^~A~^^^^^^^^^~1~^~05/01/2015~
-~06415~^~337~^229.^1^^~1~^~A~^^^^^^^^^^~05/01/2015~
-~06415~^~338~^49.^1^^~1~^~A~^^^^^^^^^^~05/01/2015~
-~06415~^~417~^12.^1^^~1~^~A~^^^^^^^^^^~05/01/2015~
-~06415~^~432~^12.^1^^~1~^~A~^^^^^^^^^^~05/01/2015~
-~06415~^~601~^4.^1^^~1~^~A~^^^^^^^^^^~05/01/2015~
-~06416~^~208~^48.^0^^~4~^~NC~^^^^^^^^^^~02/01/1980~
-~06416~^~268~^201.^0^^~4~^^^^^^^^^^^~11/01/2006~
-~06416~^~301~^14.^0^^~1~^^^^^^^^^^^~02/01/1980~
-~06416~^~304~^1.^0^^~1~^^^^^^^^^^^~02/01/1980~
-~06416~^~305~^15.^0^^~1~^^^^^^^^^^^~02/01/1980~
-~06416~^~306~^36.^0^^~1~^^^^^^^^^^^~02/01/1980~
-~06416~^~307~^347.^1^^~8~^~LC~^^^^^^^^^^~07/01/2010~
-~06416~^~318~^230.^0^^~1~^^^^^^^^^^^~02/01/1980~
-~06416~^~319~^66.^0^^~4~^~NC~^^^^^^^^^^~06/01/2002~
-~06416~^~320~^67.^0^^~4~^~NC~^^^^^^^^^^~06/01/2002~
-~06416~^~417~^1.^0^^~1~^^^^^^^^^^^~02/01/1980~
-~06416~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~
-~06416~^~432~^1.^0^^~1~^^^^^^^^^^^~02/01/1980~
-~06416~^~435~^1.^0^^~4~^~NC~^^^^^^^^^^~11/01/2006~
-~06416~^~601~^4.^0^^~1~^^^^^^^^^^^~02/01/1980~
-~06417~^~208~^23.^0^^~4~^~NC~^^^^^^^^^^~02/01/1980~
-~06417~^~262~^0.^0^^~4~^~FLA~^^^^^^^^^^~02/01/2003~
-~06417~^~263~^0.^0^^~4~^~FLA~^^^^^^^^^^~02/01/2003~
-~06417~^~268~^96.^0^^~4~^^^^^^^^^^^~05/01/2005~
-~06417~^~301~^10.^0^^~1~^^^^^^^^^^^~02/01/1980~
-~06417~^~304~^2.^0^^~1~^^^^^^^^^^^~02/01/1980~
-~06417~^~305~^10.^0^^~1~^^^^^^^^^^^~02/01/1980~
-~06417~^~306~^31.^0^^~1~^^^^^^^^^^^~02/01/1980~
-~06417~^~307~^391.^0^^~1~^^^^^^^^^^^~02/01/1980~
-~06417~^~318~^55.^0^^~4~^~NC~^^^^^^^^^^~02/01/2003~
-~06417~^~319~^0.^0^^~4~^~FLA~^^^^^^^^^^~02/01/2003~
-~06417~^~320~^3.^0^^~4~^~FLA~^^^^^^^^^^~02/01/2003~
-~06417~^~321~^32.^0^^~4~^~FLA~^^^^^^^^^^~02/01/2003~
-~06417~^~322~^0.^0^^~4~^~FLA~^^^^^^^^^^~02/01/2003~
-~06417~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~
-~06417~^~334~^2.^0^^~4~^~FLA~^^^^^^^^^^~02/01/2003~
-~06417~^~337~^990.^0^^~4~^~FLA~^^^^^^^^^^~02/01/2003~
-~06417~^~338~^28.^0^^~4~^~FLA~^^^^^^^^^^~02/01/2003~
-~06417~^~417~^2.^0^^~4~^^^^^^^^^^^~02/01/1980~
-~06417~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~
-~06417~^~432~^2.^0^^~4~^^^^^^^^^^^~02/01/2003~
-~06417~^~435~^2.^0^^~4~^~NC~^^^^^^^^^^~11/01/2006~
-~06417~^~601~^2.^0^^~1~^^^^^^^^^^^~02/01/1980~
-~06419~^~208~^24.^0^^~4~^~NC~^^^^^^^^^^~03/01/2015~
-~06419~^~262~^0.^0^^~6~^~RPI~^^^^^^^^^^~11/01/2006~
-~06419~^~263~^0.^0^^~6~^~RPI~^^^^^^^^^^~11/01/2006~
-~06419~^~268~^99.^0^^~4~^~NC~^^^^^^^^^^~03/01/2015~
-~06419~^~301~^5.^0^^~1~^~RPA~^^^^^^^^^^~03/01/2015~
-~06419~^~304~^4.^0^^~1~^~RPA~^^^^^^^^^^~11/01/2006~
-~06419~^~305~^18.^0^^~1~^~RPA~^^^^^^^^^^~03/01/2015~
-~06419~^~306~^24.^0^^~1~^~RPA~^^^^^^^^^^~03/01/2015~
-~06419~^~307~^335.^0^^~1~^~RPA~^^^^^^^^^^~03/01/2015~
-~06419~^~318~^201.^0^^~4~^~NC~^^^^^^^^^^~03/01/2015~
-~06419~^~319~^1.^0^^~6~^~RPI~^^^^^^^^^^~11/01/2006~
-~06419~^~320~^11.^0^^~4~^~NC~^^^^^^^^^^~03/01/2015~
-~06419~^~321~^119.^0^^~6~^~RPI~^^^^^^^^^^~11/01/2006~
-~06419~^~322~^0.^0^^~6~^~RPI~^^^^^^^^^^~11/01/2006~
-~06419~^~324~^0.^0^^~6~^~RPI~^^^^^^^^^^~03/01/2015~
-~06419~^~334~^0.^0^^~6~^~RPI~^^^^^^^^^^~11/01/2006~
-~06419~^~337~^0.^0^^~6~^~RPI~^^^^^^^^^^~11/01/2006~
-~06419~^~338~^4.^0^^~6~^~RPI~^^^^^^^^^^~11/01/2006~
-~06419~^~417~^7.^0^^~6~^~RPI~^^^^^^^^^^~03/01/2015~
-~06419~^~431~^5.^0^^~6~^~RPI~^^^^^^^^^^~03/01/2015~
-~06419~^~432~^2.^0^^~6~^~RPI~^^^^^^^^^^~11/01/2006~
-~06419~^~435~^10.^0^^~4~^~NC~^^^^^^^^^^~03/01/2015~
-~06419~^~601~^4.^0^^~6~^~RPI~^^^^^^^^^^~03/01/2015~
-~06423~^~208~^24.^0^^~6~^~RPI~^^^^^^^^^^~11/01/2006~
-~06423~^~262~^0.^0^^~6~^~RPI~^^^^^^^^^^~11/01/2006~
-~06423~^~263~^0.^0^^~6~^~RPI~^^^^^^^^^^~11/01/2006~
-~06423~^~268~^102.^0^^~6~^~RPI~^^^^^^^^^^~11/01/2006~
-~06423~^~301~^9.^0^^~1~^~RPA~^^^^^^^^^^~11/01/2006~
-~06423~^~304~^0.^0^^~1~^~RPA~^^^^^^^^^^~11/01/2006~
-~06423~^~305~^9.^0^^~1~^~RPA~^^^^^^^^^^~11/01/2006~
-~06423~^~306~^41.^0^^~1~^~RPA~^^^^^^^^^^~11/01/2006~
-~06423~^~307~^238.^1^^~8~^~LC~^^^^^^^^^^~07/01/2010~
-~06423~^~318~^170.^0^^~4~^~NC~^^^^^^^^^^~07/01/2010~
-~06423~^~319~^0.^0^^~6~^~RPI~^^^^^^^^^^~11/01/2006~
-~06423~^~320~^9.^0^^~4~^~NC~^^^^^^^^^^~07/01/2010~
-~06423~^~321~^83.^0^^~6~^~RPI~^^^^^^^^^^~11/01/2006~
-~06423~^~322~^39.^0^^~6~^~RPI~^^^^^^^^^^~11/01/2006~
-~06423~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~
-~06423~^~334~^0.^0^^~6~^~RPI~^^^^^^^^^^~11/01/2006~
-~06423~^~337~^0.^0^^~6~^~RPI~^^^^^^^^^^~11/01/2006~
-~06423~^~338~^3.^0^^~6~^~RPI~^^^^^^^^^^~11/01/2006~
-~06423~^~417~^0.^0^^~6~^~RPI~^^^^^^^^^^~11/01/2006~
-~06423~^~431~^0.^0^^~6~^~RPI~^^^^^^^^^^~11/01/2006~
-~06423~^~432~^0.^0^^~6~^~RPI~^^^^^^^^^^~11/01/2006~
-~06423~^~435~^0.^0^^~4~^~NC~^^^^^^^^^^~11/01/2006~
-~06423~^~601~^3.^0^^~6~^~RPI~^^^^^^^^^^~11/01/2006~
-~06426~^~208~^57.^0^^~6~^~RPI~^^^^^^^^^^~11/01/2006~
-~06426~^~262~^0.^0^^~6~^~RPI~^^^^^^^^^^~11/01/2006~
-~06426~^~263~^0.^0^^~6~^~RPI~^^^^^^^^^^~11/01/2006~
-~06426~^~268~^239.^0^^~6~^~RPI~^^^^^^^^^^~11/01/2006~
-~06426~^~301~^18.^0^^~1~^~RPA~^^^^^^^^^^~11/01/2006~
-~06426~^~304~^10.^0^^~6~^~RPI~^^^^^^^^^^~11/01/2006~
-~06426~^~305~^55.^0^^~1~^~RPA~^^^^^^^^^^~11/01/2006~
-~06426~^~306~^196.^0^^~1~^~RPA~^^^^^^^^^^~11/01/2006~
-~06426~^~307~^388.^0^^~1~^~RPA~^^^^^^^^^^~11/01/2006~
-~06426~^~318~^563.^0^^~6~^~RPI~^^^^^^^^^^~11/01/2006~
-~06426~^~319~^0.^0^^~6~^~RPI~^^^^^^^^^^~11/01/2006~
-~06426~^~320~^28.^0^^~6~^~RPI~^^^^^^^^^^~11/01/2006~
-~06426~^~321~^295.^0^^~6~^~RPI~^^^^^^^^^^~11/01/2006~
-~06426~^~322~^13.^0^^~6~^~RPI~^^^^^^^^^^~11/01/2006~
-~06426~^~324~^0.^0^^~6~^~RPI~^^^^^^^^^^~11/01/2006~
-~06426~^~334~^72.^0^^~6~^~RPI~^^^^^^^^^^~11/01/2006~
-~06426~^~337~^1265.^0^^~6~^~RPI~^^^^^^^^^^~11/01/2006~
-~06426~^~338~^87.^0^^~6~^~RPI~^^^^^^^^^^~11/01/2006~
-~06426~^~417~^4.^0^^~6~^~RPI~^^^^^^^^^^~11/01/2006~
-~06426~^~431~^0.^0^^~6~^~RPI~^^^^^^^^^^~11/01/2006~
-~06426~^~432~^4.^0^^~6~^~RPI~^^^^^^^^^^~11/01/2006~
-~06426~^~435~^4.^0^^~4~^~NC~^^^^^^^^^^~11/01/2006~
-~06426~^~601~^5.^0^^~6~^~RPI~^^^^^^^^^^~11/01/2006~
-~06428~^~208~^30.^0^^~6~^~RPI~^^^^^^^^^^~11/01/2006~
-~06428~^~262~^0.^0^^~6~^~RPI~^^^^^^^^^^~11/01/2006~
-~06428~^~263~^0.^0^^~6~^~RPI~^^^^^^^^^^~11/01/2006~
-~06428~^~268~^126.^0^^~6~^~RPI~^^^^^^^^^^~11/01/2006~
-~06428~^~301~^11.^0^^~1~^~RPA~^^^^^^^^^^~11/01/2006~
-~06428~^~304~^4.^0^^~1~^~RPA~^^^^^^^^^^~11/01/2006~
-~06428~^~305~^16.^0^^~1~^~RPA~^^^^^^^^^^~11/01/2006~
-~06428~^~306~^74.^0^^~1~^~RPA~^^^^^^^^^^~11/01/2006~
-~06428~^~307~^226.^0^^~1~^~RPA~^^^^^^^^^^~11/01/2006~
-~06428~^~318~^373.^0^^~6~^~RPI~^^^^^^^^^^~11/01/2006~
-~06428~^~319~^2.^0^^~6~^~RPI~^^^^^^^^^^~11/01/2006~
-~06428~^~320~^20.^0^^~6~^~RPI~^^^^^^^^^^~11/01/2006~
-~06428~^~321~^195.^0^^~6~^~RPI~^^^^^^^^^^~11/01/2006~
-~06428~^~322~^42.^0^^~6~^~RPI~^^^^^^^^^^~11/01/2006~
-~06428~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2009~
-~06428~^~334~^7.^0^^~6~^~RPI~^^^^^^^^^^~11/01/2006~
-~06428~^~337~^3147.^0^^~6~^~RPI~^^^^^^^^^^~11/01/2006~
-~06428~^~338~^13.^0^^~6~^~RPI~^^^^^^^^^^~11/01/2006~
-~06428~^~417~^4.^0^^~6~^~RPI~^^^^^^^^^^~11/01/2006~
-~06428~^~431~^0.^0^^~6~^~RPI~^^^^^^^^^^~11/01/2006~
-~06428~^~432~^4.^0^^~6~^~RPI~^^^^^^^^^^~11/01/2006~
-~06428~^~435~^4.^0^^~4~^~NC~^^^^^^^^^^~03/01/2009~
-~06428~^~601~^1.^0^^~6~^~RPI~^^^^^^^^^^~11/01/2006~
-~06430~^~208~^35.^0^^~6~^~RPI~^^^^^^^^^^~11/01/2006~
-~06430~^~262~^0.^0^^~6~^~RPI~^^^^^^^^^^~11/01/2006~
-~06430~^~263~^0.^0^^~6~^~RPI~^^^^^^^^^^~11/01/2006~
-~06430~^~268~^148.^0^^~6~^~RPI~^^^^^^^^^^~11/01/2006~
-~06430~^~301~^9.^0^^~6~^~RPI~^^^^^^^^^^~11/01/2006~
-~06430~^~304~^7.^0^^~6~^~RPI~^^^^^^^^^^~11/01/2006~
-~06430~^~305~^127.^0^^~6~^~RPI~^^^^^^^^^^~11/01/2006~
-~06430~^~306~^108.^0^^~6~^~RPI~^^^^^^^^^^~11/01/2006~
-~06430~^~307~^254.^1^^~8~^~LC~^^^^^^^^^^~07/01/2010~
-~06430~^~318~^29.^0^^~4~^~NC~^^^^^^^^^^~07/01/2010~
-~06430~^~319~^8.^0^^~6~^~RPI~^^^^^^^^^^~11/01/2006~
-~06430~^~320~^8.^0^^~6~^~RPI~^^^^^^^^^^~11/01/2006~
-~06430~^~321~^0.^0^^~6~^~RPI~^^^^^^^^^^~11/01/2006~
-~06430~^~322~^0.^0^^~6~^~RPI~^^^^^^^^^^~11/01/2006~
-~06430~^~324~^0.^0^^~6~^~RPI~^^^^^^^^^^~11/01/2006~
-~06430~^~334~^0.^0^^~6~^~RPI~^^^^^^^^^^~11/01/2006~
-~06430~^~337~^0.^0^^~6~^~RPI~^^^^^^^^^^~11/01/2006~
-~06430~^~338~^2.^0^^~6~^~RPI~^^^^^^^^^^~11/01/2006~
-~06430~^~417~^7.^0^^~6~^~RPI~^^^^^^^^^^~11/01/2006~
-~06430~^~431~^0.^0^^~6~^~RPI~^^^^^^^^^^~11/01/2006~
-~06430~^~432~^7.^0^^~6~^~RPI~^^^^^^^^^^~11/01/2006~
-~06430~^~435~^7.^0^^~4~^~NC~^^^^^^^^^^~03/01/2009~
-~06430~^~601~^3.^0^^~6~^~RPI~^^^^^^^^^^~11/01/2006~
-~06431~^~208~^81.^0^^~4~^~NC~^^^^^^^^^^~02/01/2011~
-~06431~^~268~^337.^0^^~4~^~NC~^^^^^^^^^^~02/01/2011~
-~06431~^~301~^12.^6^0.^~1~^~A~^^^1^11.^15.^5^10.^13.^~4~^~02/01/2011~
-~06431~^~304~^11.^6^0.^~1~^~A~^^^1^10.^12.^5^10.^12.^~4~^~02/01/2011~
-~06431~^~305~^40.^6^0.^~1~^~A~^^^1^37.^43.^5^37.^42.^~4~^~02/01/2011~
-~06431~^~306~^115.^6^4.^~1~^~A~^^^1^100.^125.^5^104.^126.^~4~^~02/01/2011~
-~06431~^~307~^353.^6^7.^~1~^~A~^^^1^333.^387.^5^333.^372.^~4~^~02/01/2011~
-~06431~^~318~^6.^0^^~1~^~AS~^^^^^^^^^^~02/01/2011~
-~06431~^~321~^3.^1^^~1~^~A~^^^^^^^^^^~02/01/2011~
-~06431~^~322~^0.^1^^~1~^~A~^^^^^^^^^^~02/01/2011~
-~06431~^~334~^0.^1^^~1~^~A~^^^^^^^^^^~02/01/2011~
-~06431~^~337~^0.^1^^~1~^~A~^^^^^^^^^^~02/01/2011~
-~06431~^~338~^18.^1^^~1~^~A~^^^^^^^^^^~02/01/2011~
-~06431~^~601~^4.^1^^~8~^~LC~^^^^^^^^^^~02/01/2007~
-~06432~^~208~^12.^0^^~4~^~NC~^^^^^^^^^^~02/01/1980~
-~06432~^~268~^50.^0^^~4~^^^^^^^^^^^~11/01/2006~
-~06432~^~301~^4.^0^^~1~^^^^^^^^^^^~02/01/1980~
-~06432~^~304~^0.^0^^~1~^^^^^^^^^^^~02/01/1980~
-~06432~^~305~^13.^0^^~1~^^^^^^^^^^^~02/01/1980~
-~06432~^~306~^64.^0^^~1~^^^^^^^^^^^~02/01/1980~
-~06432~^~307~^264.^0^^~1~^^^^^^^^^^^~02/01/1980~
-~06432~^~318~^0.^0^^~1~^^^^^^^^^^^~02/01/1980~
-~06432~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2002~
-~06432~^~320~^0.^0^^~4~^~NC~^^^^^^^^^^~06/01/2002~
-~06432~^~417~^1.^0^^~1~^^^^^^^^^^^~02/01/1980~
-~06432~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~
-~06432~^~432~^1.^0^^~1~^^^^^^^^^^^~02/01/1980~
-~06432~^~435~^1.^0^^~4~^~NC~^^^^^^^^^^~11/01/2006~
-~06432~^~601~^0.^0^^~1~^^^^^^^^^^^~02/01/1980~
-~06434~^~208~^49.^0^^~4~^~NC~^^^^^^^^^^~02/01/2011~
-~06434~^~268~^204.^0^^~4~^~NC~^^^^^^^^^^~02/01/2011~
-~06434~^~301~^17.^5^0.^~1~^~A~^^^1^16.^19.^4^16.^18.^~4~^~02/01/2011~
-~06434~^~304~^10.^5^0.^~1~^~A~^^^1^9.^10.^4^9.^10.^~4~^~02/01/2011~
-~06434~^~305~^48.^5^1.^~1~^~A~^^^1^46.^54.^4^44.^52.^~4~^~02/01/2011~
-~06434~^~306~^163.^5^4.^~1~^~A~^^^1^151.^179.^4^150.^175.^~4~^~02/01/2011~
-~06434~^~307~^346.^5^5.^~1~^~A~^^^1^330.^364.^4^329.^362.^~4~^~02/01/2011~
-~06434~^~318~^2595.^0^^~1~^~AS~^^^^^^^^^^~02/01/2011~
-~06434~^~321~^1255.^1^^~1~^~A~^^^^^^^^^^~02/01/2011~
-~06434~^~322~^605.^1^^~1~^~A~^^^^^^^^^^~02/01/2011~
-~06434~^~334~^0.^1^^~1~^~A~^^^^^^^^^~1~^~02/01/2011~
-~06434~^~337~^675.^1^^~1~^~A~^^^^^^^^^^~02/01/2011~
-~06434~^~338~^137.^1^^~1~^~A~^^^^^^^^^^~02/01/2011~
-~06434~^~601~^6.^1^^~8~^~LC~^^^^^^^^^^~02/01/2007~
-~06440~^~208~^34.^0^^~4~^~NC~^^^^^^^^^^~02/01/1980~
-~06440~^~268~^142.^0^^~4~^^^^^^^^^^^~11/01/2006~
-~06440~^~301~^14.^0^^~1~^^^^^^^^^^^~02/01/1980~
-~06440~^~304~^3.^0^^~1~^^^^^^^^^^^~02/01/1980~
-~06440~^~305~^23.^0^^~1~^^^^^^^^^^^~02/01/1980~
-~06440~^~306~^130.^0^^~1~^^^^^^^^^^^~02/01/1980~
-~06440~^~307~^254.^1^^~8~^~LC~^^^^^^^^^^~07/01/2010~
-~06440~^~318~^970.^0^^~1~^^^^^^^^^^^~02/01/1980~
-~06440~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2002~
-~06440~^~320~^49.^0^^~4~^~NC~^^^^^^^^^^~06/01/2002~
-~06440~^~417~^15.^0^^~4~^~BFSN~^^^^^^^^^^~12/01/1997~
-~06440~^~431~^8.^0^^~4~^~NC~^^^^^^^^^^~05/01/2000~
-~06440~^~432~^7.^0^^~1~^^^^^^^^^^^
-~06440~^~435~^21.^0^^~4~^~NC~^^^^^^^^^^~11/01/2006~
-~06440~^~601~^1.^0^^~1~^^^^^^^^^^^~02/01/1980~
-~06442~^~208~^30.^0^^~4~^^^^^^^^^^^~02/01/1980~
-~06442~^~268~^126.^0^^~4~^^^^^^^^^^^~11/01/2006~
-~06442~^~301~^5.^0^^~1~^^^^^^^^^^^~02/01/1980~
-~06442~^~304~^4.^0^^~4~^^^^^^^^^^^~02/01/1980~
-~06442~^~305~^25.^0^^~4~^^^^^^^^^^^~02/01/1980~
-~06442~^~306~^38.^0^^~4~^^^^^^^^^^^~02/01/1980~
-~06442~^~307~^365.^0^^~4~^^^^^^^^^^^~02/01/1980~
-~06442~^~318~^81.^0^^~1~^^^^^^^^^^^~02/01/1980~
-~06442~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2002~
-~06442~^~320~^4.^0^^~4~^~NC~^^^^^^^^^^~06/01/2002~
-~06442~^~417~^2.^0^^~4~^^^^^^^^^^^~02/01/1980~
-~06442~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~
-~06442~^~432~^2.^0^^~4~^^^^^^^^^^^~02/01/1980~
-~06442~^~435~^2.^0^^~4~^~NC~^^^^^^^^^^~11/01/2006~
-~06442~^~601~^0.^0^^~1~^^^^^^^^^^^~02/01/1980~
-~06443~^~208~^39.^0^^~6~^~RPI~^^^^^^^^^^~07/01/2012~
-~06443~^~262~^0.^0^^~6~^~RPI~^^^^^^^^^^~11/01/2006~
-~06443~^~263~^0.^0^^~6~^~RPI~^^^^^^^^^^~11/01/2006~
-~06443~^~268~^162.^0^^~6~^~RPI~^^^^^^^^^^~07/01/2012~
-~06443~^~301~^7.^0^^~1~^~RPA~^^^^^^^^^^~11/01/2006~
-~06443~^~304~^2.^0^^~1~^~RPA~^^^^^^^^^^~11/01/2006~
-~06443~^~305~^12.^0^^~1~^~RPA~^^^^^^^^^^~07/01/2012~
-~06443~^~306~^31.^0^^~1~^~RPA~^^^^^^^^^^~07/01/2012~
-~06443~^~307~^340.^0^^~1~^~RPA~^^^^^^^^^^~07/01/2012~
-~06443~^~318~^4.^0^^~6~^~RPI~^^^^^^^^^^~07/01/2012~
-~06443~^~319~^1.^0^^~6~^~RPI~^^^^^^^^^^~07/01/2012~
-~06443~^~320~^1.^0^^~6~^~RPI~^^^^^^^^^^~07/01/2012~
-~06443~^~321~^0.^0^^~6~^~RPI~^^^^^^^^^^~07/01/2012~
-~06443~^~322~^0.^0^^~6~^~RPI~^^^^^^^^^^~11/01/2006~
-~06443~^~324~^4.^0^^~6~^~RPI~^^^^^^^^^^~07/01/2012~
-~06443~^~334~^0.^0^^~6~^~RPI~^^^^^^^^^^~11/01/2006~
-~06443~^~337~^0.^0^^~6~^~RPI~^^^^^^^^^^~11/01/2006~
-~06443~^~338~^2.^0^^~6~^~RPI~^^^^^^^^^^~07/01/2012~
-~06443~^~417~^1.^0^^~6~^~RPI~^^^^^^^^^^~11/01/2006~
-~06443~^~431~^0.^0^^~6~^~RPI~^^^^^^^^^^~11/01/2006~
-~06443~^~432~^1.^0^^~6~^~RPI~^^^^^^^^^^~11/01/2006~
-~06443~^~435~^1.^0^^~4~^~NC~^^^^^^^^^^~11/01/2006~
-~06443~^~601~^0.^0^^~6~^~RPI~^^^^^^^^^^~11/01/2006~
-~06444~^~208~^35.^0^^~4~^~NC~^^^^^^^^^^~02/01/1980~
-~06444~^~268~^146.^0^^~4~^^^^^^^^^^^~11/01/2006~
-~06444~^~301~^4.^0^^~1~^^^^^^^^^^^~02/01/1980~
-~06444~^~304~^4.^0^^~1~^^^^^^^^^^^~02/01/1980~
-~06444~^~305~^15.^0^^~1~^^^^^^^^^^^~02/01/1980~
-~06444~^~306~^65.^0^^~1~^^^^^^^^^^^~02/01/1980~
-~06444~^~307~^397.^0^^~1~^^^^^^^^^^^~02/01/1980~
-~06444~^~318~^514.^0^^~1~^^^^^^^^^^^~02/01/1980~
-~06444~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2002~
-~06444~^~320~^26.^0^^~4~^~NC~^^^^^^^^^^~06/01/2002~
-~06444~^~417~^4.^0^^~1~^^^^^^^^^^^~02/01/1980~
-~06444~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~
-~06444~^~432~^4.^0^^~1~^^^^^^^^^^^~02/01/1980~
-~06444~^~435~^4.^0^^~4~^~NC~^^^^^^^^^^~11/01/2006~
-~06444~^~601~^3.^0^^~1~^^^^^^^^^^^~02/01/1980~
-~06446~^~208~^44.^0^^~4~^^^^^^^^^^^~02/01/1980~
-~06446~^~268~^184.^0^^~4~^^^^^^^^^^^~11/01/2006~
-~06446~^~301~^14.^0^^~1~^^^^^^^^^^^~02/01/1980~
-~06446~^~304~^2.^0^^~4~^^^^^^^^^^^~02/01/1980~
-~06446~^~305~^15.^0^^~4~^^^^^^^^^^^~02/01/1980~
-~06446~^~306~^49.^0^^~4~^^^^^^^^^^^~02/01/1980~
-~06446~^~307~^380.^0^^~4~^^^^^^^^^^^~02/01/1980~
-~06446~^~318~^121.^0^^~1~^^^^^^^^^^^~02/01/1980~
-~06446~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2002~
-~06446~^~320~^6.^0^^~4~^~NC~^^^^^^^^^^~06/01/2002~
-~06446~^~417~^3.^0^^~4~^^^^^^^^^^^~02/01/1980~
-~06446~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~
-~06446~^~432~^3.^0^^~4~^^^^^^^^^^^~02/01/1980~
-~06446~^~435~^3.^0^^~4~^~NC~^^^^^^^^^^~11/01/2006~
-~06446~^~601~^6.^0^^~1~^^^^^^^^^^^~02/01/1980~
-~06448~^~208~^24.^0^^~4~^~NC~^^^^^^^^^^~02/01/1980~
-~06448~^~268~^100.^0^^~4~^^^^^^^^^^^~11/01/2006~
-~06448~^~301~^9.^0^^~1~^^^^^^^^^^^~02/01/1980~
-~06448~^~304~^2.^0^^~1~^^^^^^^^^^^~02/01/1980~
-~06448~^~305~^20.^0^^~1~^^^^^^^^^^^~02/01/1980~
-~06448~^~306~^20.^0^^~1~^^^^^^^^^^^~02/01/1980~
-~06448~^~307~^407.^0^^~1~^^^^^^^^^^^~02/01/1980~
-~06448~^~318~^29.^0^^~1~^^^^^^^^^^^~02/01/1980~
-~06448~^~319~^7.^0^^~4~^~NC~^^^^^^^^^^~06/01/2002~
-~06448~^~320~^8.^0^^~4~^~NC~^^^^^^^^^^~06/01/2002~
-~06448~^~417~^1.^0^^~4~^^^^^^^^^^^~02/01/1980~
-~06448~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~
-~06448~^~432~^1.^0^^~4~^^^^^^^^^^^~02/01/1980~
-~06448~^~435~^1.^0^^~4~^~NC~^^^^^^^^^^~11/01/2006~
-~06448~^~601~^6.^0^^~1~^^^^^^^^^^^~02/01/1980~
-~06449~^~208~^61.^0^^~6~^~RPI~^^^^^^^^^^~11/01/2006~
-~06449~^~262~^0.^0^^~6~^~RPI~^^^^^^^^^^~11/01/2006~
-~06449~^~263~^0.^0^^~6~^~RPI~^^^^^^^^^^~11/01/2006~
-~06449~^~268~^256.^0^^~6~^~RPI~^^^^^^^^^^~11/01/2006~
-~06449~^~301~^12.^0^^~1~^~RPA~^^^^^^^^^^~11/01/2006~
-~06449~^~304~^15.^0^^~1~^~RPA~^^^^^^^^^^~11/01/2006~
-~06449~^~305~^47.^0^^~1~^~RPA~^^^^^^^^^^~11/01/2006~
-~06449~^~306~^71.^0^^~1~^~RPA~^^^^^^^^^^~11/01/2006~
-~06449~^~307~^336.^1^^~8~^~LC~^^^^^^^^^^~07/01/2010~
-~06449~^~318~^12.^0^^~6~^~RPI~^^^^^^^^^^~11/01/2006~
-~06449~^~319~^3.^0^^~6~^~RPI~^^^^^^^^^^~11/01/2006~
-~06449~^~320~^3.^0^^~6~^~RPI~^^^^^^^^^^~11/01/2006~
-~06449~^~321~^1.^0^^~6~^~RPI~^^^^^^^^^^~11/01/2006~
-~06449~^~322~^0.^0^^~6~^~RPI~^^^^^^^^^^~11/01/2006~
-~06449~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~
-~06449~^~334~^0.^0^^~6~^~RPI~^^^^^^^^^^~11/01/2006~
-~06449~^~337~^0.^0^^~6~^~RPI~^^^^^^^^^^~11/01/2006~
-~06449~^~338~^0.^0^^~6~^~RPI~^^^^^^^^^^~11/01/2006~
-~06449~^~417~^1.^0^^~6~^~RPI~^^^^^^^^^^~11/01/2006~
-~06449~^~431~^0.^0^^~6~^~RPI~^^^^^^^^^^~11/01/2006~
-~06449~^~432~^1.^0^^~6~^~RPI~^^^^^^^^^^~11/01/2006~
-~06449~^~435~^1.^0^^~4~^~NC~^^^^^^^^^^~11/01/2006~
-~06449~^~601~^0.^0^^~6~^~RPI~^^^^^^^^^^~11/01/2006~
-~06451~^~208~^75.^0^^~4~^~NC~^^^^^^^^^^~02/01/1980~
-~06451~^~268~^314.^0^^~4~^^^^^^^^^^^~11/01/2006~
-~06451~^~301~^9.^0^^~1~^^^^^^^^^^^~02/01/1980~
-~06451~^~304~^19.^0^^~1~^^^^^^^^^^^~02/01/1980~
-~06451~^~305~^84.^0^^~1~^^^^^^^^^^^~02/01/1980~
-~06451~^~306~^158.^0^^~1~^^^^^^^^^^^~02/01/1980~
-~06451~^~307~^398.^0^^~1~^^^^^^^^^^^~02/01/1980~
-~06451~^~318~^176.^0^^~1~^^^^^^^^^^^~02/01/1980~
-~06451~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2002~
-~06451~^~320~^9.^0^^~4~^~NC~^^^^^^^^^^~06/01/2002~
-~06451~^~417~^1.^0^^~1~^^^^^^^^^^^~02/01/1980~
-~06451~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~
-~06451~^~432~^1.^0^^~1~^^^^^^^^^^^~02/01/1980~
-~06451~^~435~^1.^0^^~4~^~NC~^^^^^^^^^^~11/01/2006~
-~06451~^~601~^3.^0^^~1~^^^^^^^^^^^~02/01/1980~
-~06453~^~208~^30.^0^^~4~^~NC~^^^^^^^^^^~02/01/1980~
-~06453~^~268~^126.^0^^~4~^^^^^^^^^^^~11/01/2006~
-~06453~^~301~^8.^0^^~1~^^^^^^^^^^^~02/01/1980~
-~06453~^~304~^1.^0^^~1~^^^^^^^^^^^~02/01/1980~
-~06453~^~305~^19.^0^^~1~^^^^^^^^^^^~02/01/1980~
-~06453~^~306~^56.^0^^~1~^^^^^^^^^^^~02/01/1980~
-~06453~^~307~^238.^1^^~8~^~LC~^^^^^^^^^^~07/01/2010~
-~06453~^~318~^118.^0^^~1~^^^^^^^^^^^~02/01/1980~
-~06453~^~319~^27.^0^^~4~^~NC~^^^^^^^^^^~06/01/2002~
-~06453~^~320~^29.^0^^~4~^~NC~^^^^^^^^^^~06/01/2002~
-~06453~^~417~^1.^0^^~1~^^^^^^^^^^^~02/01/1980~
-~06453~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~
-~06453~^~432~^1.^0^^~1~^^^^^^^^^^^~02/01/1980~
-~06453~^~435~^1.^0^^~4~^~NC~^^^^^^^^^^~11/01/2006~
-~06453~^~601~^2.^0^^~1~^^^^^^^^^^^~02/01/1980~
-~06456~^~208~^36.^0^^~6~^~RPI~^^^^^^^^^^~11/01/2006~
-~06456~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~11/01/2006~
-~06456~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~11/01/2006~
-~06456~^~268~^150.^0^^~6~^~RPI~^^^^^^^^^^~11/01/2006~
-~06456~^~301~^9.^0^^~1~^~RPA~^^^^^^^^^^~11/01/2006~
-~06456~^~304~^4.^0^^~6~^~RPI~^^^^^^^^^^~11/01/2006~
-~06456~^~305~^13.^0^^~6~^~RPI~^^^^^^^^^^~11/01/2006~
-~06456~^~306~^24.^0^^~6~^~RPI~^^^^^^^^^^~11/01/2006~
-~06456~^~307~^391.^0^^~1~^~RPA~^^^^^^^^^^~11/01/2006~
-~06456~^~318~^63.^0^^~6~^~RPI~^^^^^^^^^^~11/01/2006~
-~06456~^~319~^15.^0^^~6~^~RPI~^^^^^^^^^^~11/01/2006~
-~06456~^~320~^16.^0^^~6~^~RPI~^^^^^^^^^^~11/01/2006~
-~06456~^~321~^0.^0^^~7~^~Z~^^^^^^^^^^~11/01/2006~
-~06456~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~11/01/2006~
-~06456~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~
-~06456~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~11/01/2006~
-~06456~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~11/01/2006~
-~06456~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~11/01/2006~
-~06456~^~417~^2.^0^^~6~^~RPI~^^^^^^^^^^~11/01/2006~
-~06456~^~431~^0.^0^^~6~^~RPI~^^^^^^^^^^~11/01/2006~
-~06456~^~432~^2.^0^^~6~^~RPI~^^^^^^^^^^~11/01/2006~
-~06456~^~435~^2.^0^^~4~^~NC~^^^^^^^^^^~11/01/2006~
-~06456~^~601~^7.^0^^~6~^~RPI~^^^^^^^^^^~11/01/2006~
-~06461~^~208~^56.^0^^~6~^~RPI~^^^^^^^^^^~11/01/2006~
-~06461~^~262~^0.^0^^~6~^~RPI~^^^^^^^^^^~11/01/2006~
-~06461~^~263~^0.^0^^~6~^~RPI~^^^^^^^^^^~11/01/2006~
-~06461~^~268~^234.^0^^~6~^~RPI~^^^^^^^^^^~11/01/2006~
-~06461~^~301~^9.^0^^~1~^~RPA~^^^^^^^^^^~11/01/2006~
-~06461~^~304~^3.^0^^~1~^~RPA~^^^^^^^^^^~11/01/2006~
-~06461~^~305~^23.^0^^~1~^~RPA~^^^^^^^^^^~11/01/2006~
-~06461~^~306~^88.^0^^~1~^~RPA~^^^^^^^^^^~11/01/2006~
-~06461~^~307~^367.^0^^~1~^~RPA~^^^^^^^^^^~11/01/2006~
-~06461~^~318~^219.^0^^~4~^~FLA~^^^^^^^^^^~11/01/2006~
-~06461~^~319~^1.^0^^~4~^~FLA~^^^^^^^^^^~11/01/2006~
-~06461~^~320~^12.^0^^~4~^~FLA~^^^^^^^^^^~11/01/2006~
-~06461~^~321~^114.^0^^~4~^~FLA~^~06071~^^^^^^^^^~11/01/2006~
-~06461~^~322~^30.^0^^~4~^~FLA~^~06071~^^^^^^^^^~11/01/2006~
-~06461~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~
-~06461~^~334~^2.^0^^~4~^~FLA~^~06071~^^^^^^^^^~11/01/2006~
-~06461~^~337~^2929.^0^^~4~^~FLA~^~06071~^^^^^^^^^~11/01/2006~
-~06461~^~338~^21.^0^^~4~^~FLA~^~06071~^^^^^^^^^~11/01/2006~
-~06461~^~417~^8.^0^^~6~^~RPI~^^^^^^^^^^~11/01/2006~
-~06461~^~431~^5.^0^^~6~^~RPI~^^^^^^^^^^~11/01/2006~
-~06461~^~432~^3.^0^^~6~^~RPI~^^^^^^^^^^~11/01/2006~
-~06461~^~435~^11.^0^^~4~^~NC~^^^^^^^^^^~11/01/2006~
-~06461~^~601~^2.^0^^~6~^~RPI~^^^^^^^^^^~11/01/2006~
-~06463~^~208~^47.^0^^~6~^~RPI~^^^^^^^^^^~11/01/2006~
-~06463~^~262~^0.^0^^~6~^~RPI~^^^^^^^^^^~11/01/2006~
-~06463~^~263~^0.^0^^~6~^~RPI~^^^^^^^^^^~11/01/2006~
-~06463~^~268~^195.^0^^~6~^~RPI~^^^^^^^^^^~11/01/2006~
-~06463~^~301~^11.^0^^~1~^~RPA~^^^^^^^^^^~11/01/2006~
-~06463~^~304~^2.^0^^~1~^~RPA~^^^^^^^^^^~11/01/2006~
-~06463~^~305~^13.^0^^~1~^~RPA~^^^^^^^^^^~11/01/2006~
-~06463~^~306~^129.^0^^~1~^~RPA~^^^^^^^^^^~11/01/2006~
-~06463~^~307~^319.^0^^~1~^~RPA~^^^^^^^^^^~11/01/2006~
-~06463~^~318~^210.^0^^~6~^~RPI~^^^^^^^^^^~11/01/2006~
-~06463~^~319~^1.^0^^~6~^~RPI~^^^^^^^^^^~11/01/2006~
-~06463~^~320~^12.^0^^~6~^~RPI~^^^^^^^^^^~11/01/2006~
-~06463~^~321~^124.^0^^~6~^~RPI~^^^^^^^^^^~11/01/2006~
-~06463~^~322~^0.^0^^~6~^~RPI~^^^^^^^^^^~11/01/2006~
-~06463~^~324~^0.^0^^~6~^~RPI~^^^^^^^^^^~11/01/2006~
-~06463~^~334~^0.^0^^~6~^~RPI~^^^^^^^^^^~11/01/2006~
-~06463~^~337~^8591.^0^^~6~^~RPI~^^^^^^^^^^~11/01/2006~
-~06463~^~338~^1.^0^^~6~^~RPI~^^^^^^^^^^~11/01/2006~
-~06463~^~417~^6.^0^^~6~^~RPI~^^^^^^^^^^~11/01/2006~
-~06463~^~431~^0.^0^^~6~^~RPI~^^^^^^^^^^~11/01/2006~
-~06463~^~432~^6.^0^^~6~^~RPI~^^^^^^^^^^~11/01/2006~
-~06463~^~435~^6.^0^^~4~^~NC~^^^^^^^^^^~11/01/2006~
-~06463~^~601~^1.^0^^~6~^~RPI~^^^^^^^^^^~11/01/2006~
-~06465~^~208~^28.^0^^~4~^~NC~^^^^^^^^^^~02/01/1980~
-~06465~^~268~^117.^0^^~4~^^^^^^^^^^^~11/01/2006~
-~06465~^~301~^5.^0^^~1~^^^^^^^^^^^~02/01/1980~
-~06465~^~304~^2.^0^^~1~^^^^^^^^^^^~02/01/1980~
-~06465~^~305~^20.^0^^~1~^^^^^^^^^^^~02/01/1980~
-~06465~^~306~^31.^0^^~1~^^^^^^^^^^^~02/01/1980~
-~06465~^~307~^334.^0^^~1~^^^^^^^^^^^~02/01/1980~
-~06465~^~318~^120.^0^^~1~^^^^^^^^^^^~02/01/1980~
-~06465~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2002~
-~06465~^~320~^6.^0^^~4~^~NC~^^^^^^^^^^~06/01/2002~
-~06465~^~417~^8.^0^^~4~^~BFSN~^^^^^^^^^^~12/01/1997~
-~06465~^~431~^7.^0^^~4~^~NC~^^^^^^^^^^~05/01/2000~
-~06465~^~432~^1.^0^^~4~^^^^^^^^^^^
-~06465~^~435~^13.^0^^~4~^~NC~^^^^^^^^^^~11/01/2006~
-~06465~^~601~^2.^0^^~1~^^^^^^^^^^^~02/01/1980~
-~06466~^~208~^30.^0^^~4~^~NC~^^^^^^^^^^~02/01/1980~
-~06466~^~268~^126.^0^^~4~^^^^^^^^^^^~11/01/2006~
-~06466~^~301~^7.^0^^~1~^^^^^^^^^^^~02/01/1980~
-~06466~^~304~^2.^0^^~1~^^^^^^^^^^^~02/01/1980~
-~06466~^~305~^17.^0^^~1~^^^^^^^^^^^~02/01/1980~
-~06466~^~306~^73.^0^^~1~^^^^^^^^^^^~02/01/1980~
-~06466~^~307~^376.^0^^~1~^^^^^^^^^^^~02/01/1980~
-~06466~^~318~^1014.^0^^~1~^^^^^^^^^^^~02/01/1980~
-~06466~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2002~
-~06466~^~320~^51.^0^^~4~^~NC~^^^^^^^^^^~06/01/2002~
-~06466~^~417~^2.^0^^~4~^^^^^^^^^^^~02/01/1980~
-~06466~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~
-~06466~^~432~^2.^0^^~4~^^^^^^^^^^^~02/01/1980~
-~06466~^~435~^2.^0^^~4~^~NC~^^^^^^^^^^~11/01/2006~
-~06466~^~601~^1.^0^^~1~^^^^^^^^^^^~02/01/1980~
-~06468~^~208~^28.^0^^~6~^~RPI~^^^^^^^^^^~11/01/2006~
-~06468~^~262~^0.^0^^~6~^~RPI~^^^^^^^^^^~11/01/2006~
-~06468~^~263~^0.^0^^~6~^~RPI~^^^^^^^^^^~11/01/2006~
-~06468~^~268~^119.^0^^~6~^~RPI~^^^^^^^^^^~11/01/2006~
-~06468~^~301~^10.^0^^~1~^~RPA~^^^^^^^^^^~11/01/2006~
-~06468~^~304~^3.^0^^~1~^~RPA~^^^^^^^^^^~11/01/2006~
-~06468~^~305~^14.^0^^~1~^~RPA~^^^^^^^^^^~11/01/2006~
-~06468~^~306~^86.^0^^~1~^~RPA~^^^^^^^^^^~11/01/2006~
-~06468~^~307~^338.^0^^~1~^~RPA~^^^^^^^^^^~11/01/2006~
-~06468~^~318~^1421.^0^^~6~^~RPI~^^^^^^^^^^~11/01/2006~
-~06468~^~319~^0.^0^^~6~^~RPI~^^^^^^^^^^~11/01/2006~
-~06468~^~320~^71.^0^^~6~^~RPI~^^^^^^^^^^~11/01/2006~
-~06468~^~321~^750.^0^^~6~^~RPI~^^^^^^^^^^~11/01/2006~
-~06468~^~322~^205.^0^^~6~^~RPI~^^^^^^^^^^~11/01/2006~
-~06468~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~
-~06468~^~334~^0.^0^^~6~^~RPI~^^^^^^^^^^~11/01/2006~
-~06468~^~337~^965.^0^^~6~^~RPI~^^^^^^^^^^~11/01/2006~
-~06468~^~338~^80.^0^^~6~^~RPI~^^^^^^^^^^~11/01/2006~
-~06468~^~417~^4.^0^^~6~^~RPI~^^^^^^^^^^~11/01/2006~
-~06468~^~431~^0.^0^^~6~^~RPI~^^^^^^^^^^~11/01/2006~
-~06468~^~432~^4.^0^^~6~^~RPI~^^^^^^^^^^~11/01/2006~
-~06468~^~435~^4.^0^^~4~^~NC~^^^^^^^^^^~11/01/2006~
-~06468~^~601~^0.^0^^~6~^~RPI~^^^^^^^^^^~11/01/2006~
-~06471~^~208~^31.^0^^~6~^~RPI~^^^^^^^^^^~11/01/2006~
-~06471~^~262~^0.^0^^~6~^~RPI~^^^^^^^^^^~11/01/2006~
-~06471~^~263~^0.^0^^~6~^~RPI~^^^^^^^^^^~11/01/2006~
-~06471~^~268~^132.^0^^~6~^~RPI~^^^^^^^^^^~11/01/2006~
-~06471~^~301~^8.^0^^~1~^~RPA~^^^^^^^^^^~11/01/2006~
-~06471~^~304~^3.^0^^~1~^~RPA~^^^^^^^^^^~11/01/2006~
-~06471~^~305~^16.^0^^~1~^~RPA~^^^^^^^^^^~11/01/2006~
-~06471~^~306~^69.^0^^~1~^~RPA~^^^^^^^^^^~11/01/2006~
-~06471~^~307~^349.^1^^~8~^~LC~^^^^^^^^^^~07/01/2010~
-~06471~^~318~^1552.^0^^~6~^~RPI~^^^^^^^^^^~11/01/2006~
-~06471~^~319~^0.^0^^~6~^~RPI~^^^^^^^^^^~11/01/2006~
-~06471~^~320~^78.^0^^~6~^~RPI~^^^^^^^^^^~11/01/2006~
-~06471~^~321~^809.^0^^~6~^~RPI~^^^^^^^^^^~11/01/2006~
-~06471~^~322~^245.^0^^~6~^~RPI~^^^^^^^^^^~11/01/2006~
-~06471~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~
-~06471~^~334~^0.^0^^~6~^~RPI~^^^^^^^^^^~11/01/2006~
-~06471~^~337~^182.^0^^~6~^~RPI~^^^^^^^^^^~11/01/2006~
-~06471~^~338~^46.^0^^~6~^~RPI~^^^^^^^^^^~11/01/2006~
-~06471~^~417~^4.^0^^~6~^~RPI~^^^^^^^^^^~11/01/2006~
-~06471~^~431~^0.^0^^~6~^~RPI~^^^^^^^^^^~11/01/2006~
-~06471~^~432~^4.^0^^~6~^~RPI~^^^^^^^^^^~11/01/2006~
-~06471~^~435~^4.^0^^~4~^~NC~^^^^^^^^^^~11/01/2006~
-~06471~^~601~^2.^0^^~6~^~RPI~^^^^^^^^^^~11/01/2006~
-~06472~^~208~^33.^0^^~6~^~RPI~^^^^^^^^^^~11/01/2006~
-~06472~^~262~^0.^0^^~6~^~RPI~^^^^^^^^^^~11/01/2006~
-~06472~^~263~^0.^0^^~6~^~RPI~^^^^^^^^^^~11/01/2006~
-~06472~^~268~^138.^0^^~6~^~RPI~^^^^^^^^^^~11/01/2006~
-~06472~^~301~^9.^0^^~1~^~RPA~^^^^^^^^^^~11/01/2006~
-~06472~^~304~^3.^0^^~1~^~RPA~^^^^^^^^^^~11/01/2006~
-~06472~^~305~^16.^0^^~1~^~RPA~^^^^^^^^^^~11/01/2006~
-~06472~^~306~^79.^0^^~1~^~RPA~^^^^^^^^^^~11/01/2006~
-~06472~^~307~^253.^1^^~8~^~LC~^^^^^^^^^^~07/01/2010~
-~06472~^~318~^853.^0^^~6~^~RPI~^^^^^^^^^^~11/01/2006~
-~06472~^~319~^0.^0^^~6~^~RPI~^^^^^^^^^^~11/01/2006~
-~06472~^~320~^43.^0^^~6~^~RPI~^^^^^^^^^^~11/01/2006~
-~06472~^~321~^415.^0^^~6~^~RPI~^^^^^^^^^^~11/01/2006~
-~06472~^~322~^193.^0^^~6~^~RPI~^^^^^^^^^^~11/01/2006~
-~06472~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~
-~06472~^~334~^0.^0^^~6~^~RPI~^^^^^^^^^^~11/01/2006~
-~06472~^~337~^14.^0^^~6~^~RPI~^^^^^^^^^^~11/01/2006~
-~06472~^~338~^18.^0^^~6~^~RPI~^^^^^^^^^^~11/01/2006~
-~06472~^~417~^4.^0^^~6~^~RPI~^^^^^^^^^^~11/01/2006~
-~06472~^~431~^0.^0^^~6~^~RPI~^^^^^^^^^^~11/01/2006~
-~06472~^~432~^4.^0^^~6~^~RPI~^^^^^^^^^^~11/01/2006~
-~06472~^~435~^4.^0^^~4~^~NC~^^^^^^^^^^~11/01/2006~
-~06472~^~601~^1.^0^^~6~^~RPI~^^^^^^^^^^~11/01/2006~
-~06475~^~208~^3.^0^^~6~^~RPI~^^^^^^^^^^~11/01/2006~
-~06475~^~262~^0.^0^^~6~^~RPI~^^^^^^^^^^~11/01/2006~
-~06475~^~263~^0.^0^^~6~^~RPI~^^^^^^^^^^~11/01/2006~
-~06475~^~268~^11.^0^^~6~^~RPI~^^^^^^^^^^~11/01/2006~
-~06475~^~301~^4.^0^^~6~^~RPI~^^^^^^^^^^~11/01/2006~
-~06475~^~304~^2.^0^^~1~^~RPA~^^^^^^^^^^~11/01/2006~
-~06475~^~305~^3.^0^^~1~^~RPA~^^^^^^^^^^~11/01/2006~
-~06475~^~306~^6.^0^^~1~^~RPA~^^^^^^^^^^~11/01/2006~
-~06475~^~307~^382.^0^^~4~^~NR~^^^^^^^^^^~09/01/2011~
-~06475~^~318~^0.^0^^~6~^~RPI~^^^^^^^^^^~11/01/2006~
-~06475~^~319~^0.^0^^~6~^~RPI~^^^^^^^^^^~11/01/2006~
-~06475~^~320~^0.^0^^~6~^~RPI~^^^^^^^^^^~11/01/2006~
-~06475~^~321~^0.^0^^~6~^~RPI~^^^^^^^^^^~11/01/2006~
-~06475~^~322~^0.^0^^~6~^~RPI~^^^^^^^^^^~11/01/2006~
-~06475~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~
-~06475~^~334~^0.^0^^~6~^~RPI~^^^^^^^^^^~11/01/2006~
-~06475~^~337~^0.^0^^~6~^~RPI~^^^^^^^^^^~11/01/2006~
-~06475~^~338~^0.^0^^~6~^~RPI~^^^^^^^^^^~11/01/2006~
-~06475~^~417~^0.^0^^~6~^~RPI~^^^^^^^^^^~11/01/2006~
-~06475~^~431~^0.^0^^~6~^~RPI~^^^^^^^^^^~11/01/2006~
-~06475~^~432~^0.^0^^~6~^~RPI~^^^^^^^^^^~11/01/2006~
-~06475~^~435~^0.^0^^~4~^~NC~^^^^^^^^^^~11/01/2006~
-~06475~^~601~^0.^0^^~6~^~RPI~^^^^^^^^^^~11/01/2006~
-~06476~^~208~^3.^0^^~6~^~RPI~^^^^^^^^^^~11/01/2006~
-~06476~^~262~^0.^0^^~6~^~RPI~^^^^^^^^^^~11/01/2006~
-~06476~^~263~^0.^0^^~6~^~RPI~^^^^^^^^^^~11/01/2006~
-~06476~^~268~^11.^0^^~6~^~RPI~^^^^^^^^^^~11/01/2006~
-~06476~^~301~^4.^0^^~6~^~RPI~^^^^^^^^^^~11/01/2006~
-~06476~^~304~^2.^0^^~1~^~RPA~^^^^^^^^^^~11/01/2006~
-~06476~^~305~^3.^0^^~1~^~RPA~^^^^^^^^^^~11/01/2006~
-~06476~^~306~^6.^0^^~1~^~RPA~^^^^^^^^^^~11/01/2006~
-~06476~^~307~^260.^0^^~1~^~RPA~^^^^^^^^^^~11/01/2006~
-~06476~^~318~^0.^0^^~6~^~RPI~^^^^^^^^^^~11/01/2006~
-~06476~^~319~^0.^0^^~6~^~RPI~^^^^^^^^^^~11/01/2006~
-~06476~^~320~^0.^0^^~6~^~RPI~^^^^^^^^^^~11/01/2006~
-~06476~^~321~^0.^0^^~6~^~RPI~^^^^^^^^^^~11/01/2006~
-~06476~^~322~^0.^0^^~6~^~RPI~^^^^^^^^^^~11/01/2006~
-~06476~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~07/01/2009~
-~06476~^~334~^0.^0^^~6~^~RPI~^^^^^^^^^^~11/01/2006~
-~06476~^~337~^0.^0^^~6~^~RPI~^^^^^^^^^^~11/01/2006~
-~06476~^~338~^0.^0^^~6~^~RPI~^^^^^^^^^^~11/01/2006~
-~06476~^~417~^0.^0^^~6~^~RPI~^^^^^^^^^^~11/01/2006~
-~06476~^~431~^0.^0^^~6~^~RPI~^^^^^^^^^^~11/01/2006~
-~06476~^~432~^0.^0^^~6~^~RPI~^^^^^^^^^^~11/01/2006~
-~06476~^~435~^0.^0^^~4~^~NC~^^^^^^^^^^~07/01/2009~
-~06476~^~601~^0.^0^^~6~^~RPI~^^^^^^^^^^~11/01/2006~
-~06480~^~208~^4.^0^^~6~^~RPI~^^^^^^^^^^~11/01/2006~
-~06480~^~262~^0.^0^^~6~^~RPI~^^^^^^^^^^~11/01/2006~
-~06480~^~263~^0.^0^^~6~^~RPI~^^^^^^^^^^~11/01/2006~
-~06480~^~268~^19.^0^^~6~^~RPI~^^^^^^^^^^~11/01/2006~
-~06480~^~301~^6.^0^^~1~^~RPA~^^^^^^^^^^~11/01/2006~
-~06480~^~304~^2.^0^^~1~^~RPA~^^^^^^^^^^~11/01/2006~
-~06480~^~305~^3.^0^^~1~^~RPA~^^^^^^^^^^~11/01/2006~
-~06480~^~306~^6.^0^^~1~^~RPA~^^^^^^^^^^~11/01/2006~
-~06480~^~307~^401.^0^^~4~^~NR~^^^^^^^^^^~07/01/2010~
-~06480~^~318~^0.^0^^~6~^~RPI~^^^^^^^^^^~11/01/2006~
-~06480~^~319~^0.^0^^~6~^~RPI~^^^^^^^^^^~11/01/2006~
-~06480~^~320~^0.^0^^~6~^~RPI~^^^^^^^^^^~11/01/2006~
-~06480~^~321~^0.^0^^~6~^~RPI~^^^^^^^^^^~11/01/2006~
-~06480~^~322~^0.^0^^~6~^~RPI~^^^^^^^^^^~11/01/2006~
-~06480~^~324~^0.^0^^~6~^~RPI~^^^^^^^^^^~11/01/2006~
-~06480~^~334~^0.^0^^~6~^~RPI~^^^^^^^^^^~11/01/2006~
-~06480~^~337~^0.^0^^~6~^~RPI~^^^^^^^^^^~11/01/2006~
-~06480~^~338~^0.^0^^~6~^~RPI~^^^^^^^^^^~11/01/2006~
-~06480~^~417~^1.^0^^~6~^~RPI~^^^^^^^^^^~11/01/2006~
-~06480~^~431~^0.^0^^~6~^~RPI~^^^^^^^^^^~11/01/2006~
-~06480~^~432~^1.^0^^~6~^~RPI~^^^^^^^^^^~11/01/2006~
-~06480~^~435~^1.^0^^~4~^~NC~^^^^^^^^^^~11/01/2006~
-~06480~^~601~^0.^0^^~6~^~RPI~^^^^^^^^^^~11/01/2006~
-~06481~^~208~^5.^0^^~4~^~NC~^^^^^^^^^^~02/01/1980~
-~06481~^~268~^21.^0^^~4~^^^^^^^^^^^~11/01/2006~
-~06481~^~301~^5.^0^^~4~^^^^^^^^^^^~02/01/1980~
-~06481~^~304~^1.^0^^~1~^^^^^^^^^^^~02/01/1980~
-~06481~^~305~^5.^0^^~1~^^^^^^^^^^^~02/01/1980~
-~06481~^~306~^10.^0^^~1~^^^^^^^^^^^~02/01/1980~
-~06481~^~307~^326.^0^^~1~^^^^^^^^^^^~02/01/1980~
-~06481~^~318~^7.^0^^~4~^^^^^^^^^^^~02/01/1980~
-~06481~^~319~^1.^0^^~4~^~NC~^^^^^^^^^^~06/01/2002~
-~06481~^~320~^1.^0^^~4~^~NC~^^^^^^^^^^~06/01/2002~
-~06481~^~417~^1.^0^^~4~^^^^^^^^^^^~02/01/1980~
-~06481~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~
-~06481~^~432~^1.^0^^~4~^^^^^^^^^^^~02/01/1980~
-~06481~^~435~^1.^0^^~4~^~NC~^^^^^^^^^^~11/01/2006~
-~06481~^~601~^0.^0^^~1~^^^^^^^^^^^~02/01/1980~
-~06483~^~208~^41.^0^^~4~^~NC~^^^^^^^^^^~02/01/1980~
-~06483~^~262~^0.^0^^~4~^~FLA~^^^^^^^^^^~02/01/2003~
-~06483~^~263~^0.^0^^~4~^~FLA~^^^^^^^^^^~02/01/2003~
-~06483~^~268~^172.^0^^~4~^^^^^^^^^^^~05/01/2005~
-~06483~^~301~^29.^0^^~1~^^^^^^^^^^^~02/01/1980~
-~06483~^~304~^2.^0^^~4~^^^^^^^^^^^~02/01/1980~
-~06483~^~305~^37.^0^^~1~^^^^^^^^^^^~02/01/1980~
-~06483~^~306~^82.^0^^~1~^^^^^^^^^^^~02/01/1980~
-~06483~^~307~^454.^0^^~1~^^^^^^^^^^^~02/01/1980~
-~06483~^~318~^156.^0^^~4~^~FLA~^^^^^^^^^^~02/01/2003~
-~06483~^~319~^0.^0^^~4~^~FLA~^^^^^^^^^^~02/01/2003~
-~06483~^~320~^8.^0^^~4~^~FLA~^^^^^^^^^^~02/01/2003~
-~06483~^~321~^82.^0^^~4~^~FLA~^^^^^^^^^^~02/01/2003~
-~06483~^~322~^5.^0^^~4~^~FLA~^^^^^^^^^^~02/01/2003~
-~06483~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~
-~06483~^~334~^18.^0^^~4~^~FLA~^^^^^^^^^^~02/01/2003~
-~06483~^~337~^1.^0^^~4~^~FLA~^^^^^^^^^^~02/01/2003~
-~06483~^~338~^50.^0^^~4~^~FLA~^^^^^^^^^^~02/01/2003~
-~06483~^~417~^2.^0^^~4~^^^^^^^^^^^~02/01/1980~
-~06483~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~
-~06483~^~432~^2.^0^^~4~^^^^^^^^^^^~02/01/2003~
-~06483~^~435~^2.^0^^~4~^~NC~^^^^^^^^^^~11/01/2006~
-~06483~^~601~^1.^0^^~1~^^^^^^^^^^^~02/01/1980~
-~06494~^~208~^12.^0^^~4~^~RP~^^^^^^^^^^~11/01/2006~
-~06494~^~262~^0.^0^^~4~^~RP~^^^^^^^^^^~10/01/2006~
-~06494~^~263~^0.^0^^~4~^~RP~^^^^^^^^^^~10/01/2006~
-~06494~^~268~^52.^0^^~4~^~RP~^^^^^^^^^^~11/01/2006~
-~06494~^~301~^9.^0^^~4~^~RP~^^^^^^^^^^~10/01/2006~
-~06494~^~304~^4.^0^^~4~^~RP~^^^^^^^^^^~10/01/2006~
-~06494~^~305~^9.^0^^~4~^~RP~^^^^^^^^^^~10/01/2006~
-~06494~^~306~^31.^0^^~4~^~RP~^^^^^^^^^^~10/01/2006~
-~06494~^~307~^346.^0^^~4~^~RP~^^^^^^^^^^~10/01/2006~
-~06494~^~318~^1.^0^^~4~^~RP~^^^^^^^^^^~10/01/2006~
-~06494~^~319~^0.^0^^~4~^~RP~^^^^^^^^^^~10/01/2006~
-~06494~^~320~^0.^0^^~4~^~RP~^^^^^^^^^^~10/01/2006~
-~06494~^~321~^0.^0^^~4~^~RP~^^^^^^^^^^~10/01/2006~
-~06494~^~322~^0.^0^^~4~^~RP~^^^^^^^^^^~10/01/2006~
-~06494~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~
-~06494~^~334~^0.^0^^~4~^~RP~^^^^^^^^^^~10/01/2006~
-~06494~^~337~^0.^0^^~4~^~RP~^^^^^^^^^^~10/01/2006~
-~06494~^~338~^1.^0^^~4~^~RP~^^^^^^^^^^~10/01/2006~
-~06494~^~417~^0.^0^^~4~^~RP~^^^^^^^^^^~11/01/2006~
-~06494~^~431~^0.^0^^~4~^~RP~^^^^^^^^^^~10/01/2006~
-~06494~^~432~^0.^0^^~4~^~RP~^^^^^^^^^^~11/01/2006~
-~06494~^~435~^0.^0^^~4~^~NC~^^^^^^^^^^~11/01/2006~
-~06494~^~601~^0.^0^^~4~^~RP~^^^^^^^^^^~10/01/2006~
-~06498~^~208~^38.^0^^~4~^~FLA~^^^^^^^^^^~11/01/2006~
-~06498~^~262~^0.^0^^~4~^~FLA~^^^^^^^^^^~02/01/2003~
-~06498~^~263~^0.^0^^~4~^~FLA~^^^^^^^^^^~02/01/2003~
-~06498~^~268~^158.^0^^~4~^~FLA~^^^^^^^^^^~11/01/2006~
-~06498~^~301~^29.^0^^~4~^~FLA~^^^^^^^^^^~11/01/2006~
-~06498~^~304~^10.^0^^~4~^~FLA~^^^^^^^^^^~11/01/2006~
-~06498~^~305~^33.^0^^~4~^~FLA~^^^^^^^^^^~11/01/2006~
-~06498~^~306~^111.^0^^~4~^~FLA~^^^^^^^^^^~11/01/2006~
-~06498~^~307~^356.^0^^~4~^~FLA~^^^^^^^^^^~11/01/2006~
-~06498~^~318~^314.^0^^~4~^~FLA~^^^^^^^^^^~11/01/2006~
-~06498~^~319~^5.^0^^~4~^~FLA~^^^^^^^^^^~11/01/2006~
-~06498~^~320~^20.^0^^~4~^~FLA~^^^^^^^^^^~11/01/2006~
-~06498~^~321~^174.^0^^~4~^~FLA~^^^^^^^^^^~11/01/2006~
-~06498~^~322~^0.^0^^~4~^~FLA~^^^^^^^^^^~02/01/2003~
-~06498~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~
-~06498~^~334~^8.^0^^~4~^~FLA~^^^^^^^^^^~11/01/2006~
-~06498~^~337~^649.^0^^~4~^~FLA~^^^^^^^^^^~11/01/2006~
-~06498~^~338~^32.^0^^~4~^~FLA~^^^^^^^^^^~11/01/2006~
-~06498~^~417~^11.^0^^~4~^~FLA~^^^^^^^^^^~11/01/2006~
-~06498~^~431~^0.^0^^~4~^~FLA~^^^^^^^^^^~11/01/2006~
-~06498~^~432~^11.^0^^~4~^~FLA~^^^^^^^^^^~11/01/2006~
-~06498~^~435~^11.^0^^~4~^~NC~^^^^^^^^^^~11/01/2006~
-~06498~^~601~^2.^0^^~4~^~FLA~^^^^^^^^^^~11/01/2006~
-~06528~^~208~^23.^0^^~4~^~NC~^^^^^^^^^^~03/01/1998~
-~06528~^~262~^0.^0^^~4~^~FLA~^^^^^^^^^^~02/01/2003~
-~06528~^~263~^0.^0^^~4~^~FLA~^^^^^^^^^^~02/01/2003~
-~06528~^~268~^96.^0^^~4~^^^^^^^^^^^~05/01/2005~
-~06528~^~301~^2.^0^^~4~^~BFSN~^^^^^^^^^^~03/01/1998~
-~06528~^~304~^3.^0^^~4~^~BFSN~^^^^^^^^^^~03/01/1998~
-~06528~^~305~^12.^0^^~4~^~BFSN~^^^^^^^^^^~03/01/1998~
-~06528~^~306~^13.^0^^~4~^~BFSN~^^^^^^^^^^~03/01/1998~
-~06528~^~307~^229.^0^^~4~^~BFSN~^^^^^^^^^^~03/01/1998~
-~06528~^~318~^11.^0^^~4~^~NC~^^^^^^^^^^~02/01/2003~
-~06528~^~319~^0.^0^^~4~^~FLA~^^^^^^^^^^~02/01/2003~
-~06528~^~320~^1.^0^^~4~^~FLA~^^^^^^^^^^~02/01/2003~
-~06528~^~321~^5.^0^^~4~^~FLA~^^^^^^^^^^~02/01/2003~
-~06528~^~322~^1.^0^^~4~^~FLA~^^^^^^^^^^~02/01/2003~
-~06528~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~
-~06528~^~334~^0.^0^^~4~^~FLA~^^^^^^^^^^~02/01/2003~
-~06528~^~337~^0.^0^^~4~^~FLA~^^^^^^^^^^~02/01/2003~
-~06528~^~338~^8.^0^^~4~^~FLA~^^^^^^^^^^~02/01/2003~
-~06528~^~417~^7.^0^^~4~^~BFSN~^^^^^^^^^^~12/01/1997~
-~06528~^~431~^6.^0^^~4~^~NC~^^^^^^^^^^~05/01/2000~
-~06528~^~432~^1.^0^^~1~^^^^^^^^^^^
-~06528~^~435~^11.^0^^~4~^~NC~^^^^^^^^^^~03/01/2008~
-~06528~^~601~^4.^0^^~4~^~BFSN~^^^^^^^^^^~03/01/1998~
-~06547~^~208~^30.^0^^~4~^^^^^^^^^^^~02/01/1980~
-~06547~^~268~^126.^0^^~4~^^^^^^^^^^^~11/01/2006~
-~06547~^~301~^2.^0^^~1~^^^^^^^^^^^~02/01/1980~
-~06547~^~304~^4.^0^^~4~^^^^^^^^^^^~02/01/1980~
-~06547~^~305~^14.^0^^~4~^^^^^^^^^^^~02/01/1980~
-~06547~^~306~^63.^0^^~4~^^^^^^^^^^^~02/01/1980~
-~06547~^~307~^386.^0^^~4~^^^^^^^^^^^~02/01/1980~
-~06547~^~318~^0.^0^^~1~^^^^^^^^^^^~02/01/1980~
-~06547~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2002~
-~06547~^~320~^0.^0^^~4~^~NC~^^^^^^^^^^~06/01/2002~
-~06547~^~417~^4.^0^^~4~^^^^^^^^^^^~02/01/1980~
-~06547~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~
-~06547~^~432~^4.^0^^~4~^^^^^^^^^^^~02/01/1980~
-~06547~^~435~^4.^0^^~4~^~NC~^^^^^^^^^^~11/01/2006~
-~06547~^~601~^3.^0^^~1~^^^^^^^^^^^~02/01/1980~
-~06549~^~208~^54.^0^^~4~^^^^^^^^^^^~02/01/1980~
-~06549~^~268~^226.^0^^~4~^^^^^^^^^^^~11/01/2006~
-~06549~^~301~^12.^0^^~1~^^^^^^^^^^^~02/01/1980~
-~06549~^~304~^4.^0^^~4~^^^^^^^^^^^~02/01/1980~
-~06549~^~305~^11.^0^^~4~^^^^^^^^^^^~02/01/1980~
-~06549~^~306~^63.^0^^~4~^^^^^^^^^^^~02/01/1980~
-~06549~^~307~^327.^1^^~8~^~LC~^^^^^^^^^^~07/01/2010~
-~06549~^~318~^465.^0^^~1~^^^^^^^^^^^~02/01/1980~
-~06549~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2002~
-~06549~^~320~^23.^0^^~4~^~NC~^^^^^^^^^^~06/01/2002~
-~06549~^~417~^0.^0^^~4~^^^^^^^^^^^~02/01/1980~
-~06549~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~
-~06549~^~432~^0.^0^^~4~^^^^^^^^^^^~02/01/1980~
-~06549~^~435~^0.^0^^~4~^~NC~^^^^^^^^^^~11/01/2006~
-~06549~^~601~^4.^0^^~1~^^^^^^^^^^^~02/01/1980~
-~06558~^~208~^50.^0^^~4~^~NC~^^^^^^^^^^~02/01/1980~
-~06558~^~268~^209.^0^^~4~^^^^^^^^^^^~11/01/2006~
-~06558~^~301~^16.^0^^~1~^^^^^^^^^^^~02/01/1980~
-~06558~^~304~^4.^0^^~1~^^^^^^^^^^^~02/01/1980~
-~06558~^~305~^24.^0^^~1~^^^^^^^^^^^~02/01/1980~
-~06558~^~306~^169.^0^^~1~^^^^^^^^^^^~02/01/1980~
-~06558~^~307~^424.^0^^~1~^^^^^^^^^^^~02/01/1980~
-~06558~^~318~^292.^0^^~1~^^^^^^^^^^^~02/01/1980~
-~06558~^~319~^4.^0^^~4~^~NC~^^^^^^^^^^~06/01/2002~
-~06558~^~320~^18.^0^^~4~^~NC~^^^^^^^^^^~06/01/2002~
-~06558~^~417~^6.^0^^~4~^^^^^^^^^^^~02/01/1980~
-~06558~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~
-~06558~^~432~^6.^0^^~4~^^^^^^^^^^^~02/01/1980~
-~06558~^~435~^6.^0^^~4~^~NC~^^^^^^^^^^~11/01/2006~
-~06558~^~601~^2.^0^^~1~^^^^^^^^^^^~02/01/1980~
-~06559~^~208~^32.^0^^~6~^~RPI~^^^^^^^^^^~03/01/2015~
-~06559~^~262~^0.^0^^~6~^~RPI~^^^^^^^^^^~11/01/2006~
-~06559~^~263~^0.^0^^~6~^~RPI~^^^^^^^^^^~11/01/2006~
-~06559~^~268~^135.^0^^~6~^~RPI~^^^^^^^^^^~03/01/2015~
-~06559~^~301~^8.^0^^~1~^~RPA~^^^^^^^^^^~11/01/2006~
-~06559~^~304~^7.^0^^~1~^~RPA~^^^^^^^^^^~11/01/2006~
-~06559~^~305~^15.^0^^~1~^~RPA~^^^^^^^^^^~03/01/2015~
-~06559~^~306~^275.^0^^~1~^~RPA~^^^^^^^^^^~03/01/2015~
-~06559~^~307~^186.^0^^~1~^~RPA~^^^^^^^^^^~03/01/2015~
-~06559~^~318~^192.^0^^~4~^~NC~^^^^^^^^^^~03/01/2015~
-~06559~^~319~^0.^0^^~6~^~RPI~^^^^^^^^^^~11/01/2006~
-~06559~^~320~^10.^0^^~4~^~NC~^^^^^^^^^^~03/01/2015~
-~06559~^~321~^115.^0^^~6~^~RPI~^^^^^^^^^^~11/01/2006~
-~06559~^~322~^0.^0^^~6~^~RPI~^^^^^^^^^^~11/01/2006~
-~06559~^~324~^0.^0^^~6~^~RPI~^^^^^^^^^^~03/01/2015~
-~06559~^~334~^0.^0^^~6~^~RPI~^^^^^^^^^^~11/01/2006~
-~06559~^~337~^5345.^0^^~6~^~RPI~^^^^^^^^^^~11/01/2006~
-~06559~^~338~^44.^0^^~6~^~RPI~^^^^^^^^^^~11/01/2006~
-~06559~^~417~^0.^0^^~6~^~RPI~^^^^^^^^^^~11/01/2006~
-~06559~^~431~^0.^0^^~6~^~RPI~^^^^^^^^^^~11/01/2006~
-~06559~^~432~^0.^0^^~6~^~RPI~^^^^^^^^^^~11/01/2006~
-~06559~^~435~^0.^0^^~4~^~NC~^^^^^^^^^^~11/01/2006~
-~06559~^~601~^0.^0^^~6~^~RPI~^^^^^^^^^^~11/01/2006~
-~06583~^~208~^440.^0^^~4~^~NC~^^^^^^^^^^~04/01/2013~
-~06583~^~262~^0.^0^^~4~^~FLC~^^^^^^^^^^~04/01/2009~
-~06583~^~263~^0.^0^^~4~^~FLC~^^^^^^^^^^~04/01/2009~
-~06583~^~268~^1841.^0^^~4~^~NC~^^^^^^^^^^~04/01/2013~
-~06583~^~301~^21.^24^0.^~1~^~A~^^^1^17.^44.^6^20.^22.^~2, 3~^~04/01/2013~
-~06583~^~304~^25.^24^0.^~1~^~A~^^^1^21.^32.^5^23.^26.^~2, 3~^~04/01/2013~
-~06583~^~305~^115.^24^1.^~1~^~A~^^^1^106.^133.^5^111.^119.^~2, 3~^~04/01/2013~
-~06583~^~306~^181.^24^2.^~1~^~A~^^^1^136.^205.^6^175.^186.^~2, 3~^~04/01/2013~
-~06583~^~307~^1855.^24^9.^~1~^~A~^^^1^1620.^2300.^10^1832.^1877.^~2, 3~^~04/01/2013~
-~06583~^~318~^12.^0^^~4~^~NC~^^^^^^^^^^~04/01/2009~
-~06583~^~319~^0.^0^^~4~^~FLC~^^^^^^^^^^~04/01/2009~
-~06583~^~320~^1.^0^^~4~^~NC~^^^^^^^^^^~04/01/2009~
-~06583~^~321~^6.^0^^~4~^~NR~^^^^^^^^^^~04/01/2009~
-~06583~^~322~^2.^0^^~4~^~NR~^^^^^^^^^^~04/01/2009~
-~06583~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~
-~06583~^~334~^0.^0^^~4~^~NR~^^^^^^^^^^~04/01/2009~
-~06583~^~337~^0.^0^^~4~^~NR~^^^^^^^^^^~04/01/2009~
-~06583~^~338~^20.^0^^~4~^~NR~^^^^^^^^^^~04/01/2009~
-~06583~^~417~^116.^8^12.^~1~^~A~^^^1^97.^139.^1^-27.^259.^~2, 3~^~04/01/2013~
-~06583~^~431~^70.^0^^~4~^~FLC~^^^^^^^^^^~04/01/2009~
-~06583~^~432~^45.^0^^~4~^~NC~^^^^^^^^^^~04/01/2013~
-~06583~^~435~^165.^0^^~4~^~NC~^^^^^^^^^^~04/01/2013~
-~06583~^~601~^0.^0^^~4~^~FLA~^^^^^^^^^^~04/01/2009~
-~06584~^~208~^87.^0^^~9~^~MC~^^^^^^^^^^~09/01/1997~
-~06584~^~262~^0.^0^^~4~^~FLA~^^^^^^^^^^~02/01/2003~
-~06584~^~263~^0.^0^^~4~^~FLA~^^^^^^^^^^~02/01/2003~
-~06584~^~268~^364.^0^^~9~^^^^^^^^^^^~05/01/2005~
-~06584~^~301~^41.^0^^~12~^~MA~^^^^^^^^^^~09/01/1997~
-~06584~^~304~^13.^0^^~4~^~FLA~^^^^^^^^^^~09/01/1997~
-~06584~^~305~^42.^0^^~4~^~FLA~^^^^^^^^^^~09/01/1997~
-~06584~^~306~^207.^0^^~12~^~MA~^^^^^^^^^^~09/01/1997~
-~06584~^~307~^661.^1^^~8~^~LC~^^^^^^^^^^~07/01/2010~
-~06584~^~318~^825.^0^^~4~^~NC~^^^^^^^^^^~02/01/2003~
-~06584~^~319~^30.^0^^~4~^~FLA~^^^^^^^^^^~02/01/2003~
-~06584~^~320~^66.^0^^~4~^~FLA~^^^^^^^^^^~02/01/2003~
-~06584~^~321~^435.^0^^~4~^~FLA~^^^^^^^^^^~02/01/2003~
-~06584~^~322~^0.^0^^~4~^~FLA~^^^^^^^^^^~02/01/2003~
-~06584~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~
-~06584~^~334~^0.^0^^~4~^~FLA~^^^^^^^^^^~02/01/2003~
-~06584~^~337~^0.^0^^~4~^~FLA~^^^^^^^^^^~02/01/2003~
-~06584~^~338~^540.^0^^~4~^~FLA~^^^^^^^^^^~02/01/2003~
-~06584~^~417~^40.^0^^~4~^~FLA~^^^^^^^^^^~02/01/2003~
-~06584~^~431~^0.^0^^~4~^~FLA~^^^^^^^^^^~02/01/2003~
-~06584~^~432~^40.^0^^~4~^~FLA~^^^^^^^^^^~02/01/2003~
-~06584~^~435~^40.^0^^~4~^~NC~^^^^^^^^^^~11/01/2006~
-~06584~^~601~^4.^0^^~12~^~MA~^^^^^^^^^^~09/01/1997~
-~06611~^~208~^6.^0^^~4~^~NC~^^^^^^^^^^~05/01/2015~
-~06611~^~268~^27.^0^^~4~^~NC~^^^^^^^^^^~05/01/2015~
-~06611~^~301~^2.^6^0.^~1~^~A~^^^1^1.^6.^5^0.^4.^~1, 2, 3~^~05/01/2015~
-~06611~^~304~^1.^6^0.^~1~^~A~^^^1^1.^3.^5^0.^2.^~2, 3~^~05/01/2015~
-~06611~^~305~^10.^6^0.^~1~^~A~^^^1^8.^12.^5^8.^12.^~2, 3~^~05/01/2015~
-~06611~^~306~^23.^6^1.^~1~^~A~^^^1^18.^26.^5^19.^25.^~2, 3~^~05/01/2015~
-~06611~^~307~^180.^6^17.^~1~^~A~^^^1^138.^260.^5^136.^223.^~2, 3~^~05/01/2015~
-~06611~^~318~^0.^0^^~1~^~AS~^^^^^^^^^^~05/01/2015~
-~06611~^~319~^0.^1^^~1~^~A~^^^^^^^^^~1~^~05/01/2015~
-~06611~^~320~^0.^0^^~1~^~AS~^^^^^^^^^^~05/01/2015~
-~06611~^~601~^0.^1^^~1~^~A~^^^^^^^^^~1~^~05/01/2015~
-~06615~^~208~^6.^0^^~4~^~NC~^^^^^^^^^^~05/01/2015~
-~06615~^~268~^24.^0^^~4~^~NC~^^^^^^^^^^~05/01/2015~
-~06615~^~301~^3.^6^0.^~1~^~A~^^^1^3.^4.^5^2.^3.^~2, 3~^~05/01/2015~
-~06615~^~304~^1.^6^0.^~1~^~A~^^^1^1.^1.^5^0.^1.^~2, 3~^~05/01/2015~
-~06615~^~305~^3.^6^0.^~1~^~A~^^^1^3.^4.^5^3.^3.^~2, 3~^~05/01/2015~
-~06615~^~306~^20.^6^0.^~1~^~A~^^^1^17.^22.^5^17.^21.^~2, 3~^~05/01/2015~
-~06615~^~307~^303.^6^16.^~1~^~A~^^^1^253.^354.^5^261.^345.^~2, 3~^~05/01/2015~
-~06615~^~318~^289.^0^^~1~^~AS~^^^^^^^^^^~05/01/2015~
-~06615~^~320~^14.^0^^~1~^~AS~^^^^^^^^^^~05/01/2015~
-~06615~^~321~^136.^2^^~1~^~A~^^^1^120.^152.^1^^^^~05/01/2015~
-~06615~^~322~^75.^2^^~1~^~A~^^^1^66.^84.^1^^^^~05/01/2015~
-~06615~^~334~^0.^2^^~1~^~A~^^^1^0.^0.^^^^~1~^~05/01/2015~
-~06615~^~337~^0.^2^^~1~^~A~^^^1^0.^0.^^^^~1~^~05/01/2015~
-~06615~^~338~^1.^2^^~1~^~A~^^^1^0.^1.^1^^^~1~^~05/01/2015~
-~06615~^~417~^0.^2^^~1~^~A~^^^1^0.^0.^^^^~1~^~05/01/2015~
-~06615~^~432~^0.^2^^~1~^~A~^^^^^^^^^^~05/01/2015~
-~06615~^~601~^0.^1^^~8~^~LC~^^^^^^^^^^~02/01/2007~
-~06618~^~208~^179.^0^^~4~^~NC~^^^^^^^^^^~04/01/2013~
-~06618~^~262~^0.^0^^~4~^~FLC~^^^^^^^^^^~04/01/2013~
-~06618~^~263~^0.^0^^~4~^~FLC~^^^^^^^^^^~04/01/2013~
-~06618~^~268~^749.^0^^~4~^~NC~^^^^^^^^^^~04/01/2013~
-~06618~^~301~^9.^2^^~1~^~A~^^^1^9.^10.^1^^^^~04/01/2013~
-~06618~^~304~^19.^2^^~1~^~A~^^^1^18.^20.^1^^^^~04/01/2013~
-~06618~^~305~^35.^2^^~1~^~A~^^^1^35.^36.^1^^^^~04/01/2013~
-~06618~^~306~^99.^2^^~1~^~A~^^^1^96.^101.^1^^^^~04/01/2013~
-~06618~^~307~^319.^2^^~1~^~A~^^^1^295.^342.^1^^^^~04/01/2013~
-~06618~^~318~^0.^0^^~4~^~NC~^^^^^^^^^^~04/01/2013~
-~06618~^~319~^0.^0^^~4~^~FLC~^^^^^^^^^^~04/01/2013~
-~06618~^~320~^0.^0^^~4~^~FLC~^^^^^^^^^^~04/01/2013~
-~06618~^~321~^0.^0^^~4~^~FLC~^^^^^^^^^^~04/01/2013~
-~06618~^~322~^0.^0^^~4~^~FLC~^^^^^^^^^^~04/01/2013~
-~06618~^~324~^0.^0^^~4~^~FLC~^^^^^^^^^^~04/01/2013~
-~06618~^~334~^0.^0^^~4~^~FLC~^^^^^^^^^^~04/01/2013~
-~06618~^~337~^0.^0^^~4~^~FLC~^^^^^^^^^^~04/01/2013~
-~06618~^~338~^0.^0^^~4~^~FLC~^^^^^^^^^^~04/01/2013~
-~06618~^~417~^4.^2^^~1~^~A~^^^1^4.^4.^^^^~1~^~04/01/2013~
-~06618~^~431~^0.^0^^~4~^~FLC~^^^^^^^^^^~04/01/2013~
-~06618~^~432~^4.^2^^~1~^~A~^^^^^^^^^^~04/01/2013~
-~06618~^~435~^4.^0^^~4~^~NC~^^^^^^^^^^~04/01/2013~
-~06618~^~601~^0.^0^^~4~^~FLC~^^^^^^^^^^~04/01/2013~
-~06619~^~208~^55.^1^^~9~^~MC~^^^^^^^^^^~01/01/2014~
-~06619~^~268~^230.^0^^~9~^~MC~^^^^^^^^^^~01/01/2014~
-~06619~^~301~^23.^1^^~9~^~MC~^^^^^^^^^^~01/01/2014~
-~06619~^~307~^131.^1^^~9~^~MC~^^^^^^^^^^~01/01/2014~
-~06619~^~319~^0.^1^^~9~^~MC~^^^^^^^^^~1~^~01/01/2014~
-~06619~^~321~^174.^1^^~9~^~MC~^^^^^^^^^^~01/01/2014~
-~06619~^~601~^0.^1^^~9~^~MC~^^^^^^^^^^~01/01/2014~
-~06620~^~208~^53.^1^^~9~^~MC~^^^^^^^^^^~01/01/2014~
-~06620~^~268~^222.^0^^~9~^~MC~^^^^^^^^^^~01/01/2014~
-~06620~^~301~^23.^1^^~9~^~MC~^^^^^^^^^^~01/01/2014~
-~06620~^~307~^131.^1^^~9~^~MC~^^^^^^^^^^~01/01/2014~
-~06620~^~319~^0.^1^^~9~^~MC~^^^^^^^^^~1~^~01/01/2014~
-~06620~^~321~^251.^1^^~9~^~MC~^^^^^^^^^^~01/01/2014~
-~06620~^~601~^0.^1^^~9~^~MC~^^^^^^^^^^~01/01/2014~
-~06621~^~208~^40.^1^^~9~^~MC~^^^^^^^^^^~01/01/2014~
-~06621~^~268~^167.^0^^~9~^~MC~^^^^^^^^^^~01/01/2014~
-~06621~^~301~^21.^1^^~9~^~MC~^^^^^^^^^^~01/01/2014~
-~06621~^~307~^138.^1^^~9~^~MC~^^^^^^^^^^~01/01/2014~
-~06621~^~319~^0.^1^^~9~^~MC~^^^^^^^^^~1~^~01/01/2014~
-~06621~^~321~^249.^1^^~9~^~MC~^^^^^^^^^^~01/01/2014~
-~06621~^~601~^0.^1^^~9~^~MC~^^^^^^^^^^~01/01/2014~
-~06622~^~208~^57.^1^^~9~^~MC~^^^^^^^^^^~01/01/2014~
-~06622~^~268~^238.^0^^~9~^~MC~^^^^^^^^^^~01/01/2014~
-~06622~^~301~^22.^1^^~9~^~MC~^^^^^^^^^^~01/01/2014~
-~06622~^~307~^92.^1^^~9~^~MC~^^^^^^^^^^~01/01/2014~
-~06622~^~319~^0.^1^^~9~^~MC~^^^^^^^^^~1~^~01/01/2014~
-~06622~^~321~^233.^1^^~9~^~MC~^^^^^^^^^^~01/01/2014~
-~06622~^~601~^0.^1^^~9~^~MC~^^^^^^^^^^~01/01/2014~
-~06623~^~208~^51.^1^^~9~^~MC~^^^^^^^^^^~01/01/2014~
-~06623~^~268~^213.^0^^~9~^~MC~^^^^^^^^^^~01/01/2014~
-~06623~^~301~^23.^1^^~9~^~MC~^^^^^^^^^^~01/01/2014~
-~06623~^~307~^148.^1^^~9~^~MC~^^^^^^^^^^~01/01/2014~
-~06623~^~319~^0.^1^^~9~^~MC~^^^^^^^^^~1~^~01/01/2014~
-~06623~^~321~^288.^1^^~9~^~MC~^^^^^^^^^^~01/01/2014~
-~06623~^~601~^0.^1^^~9~^~MC~^^^^^^^^^^~01/01/2014~
-~06624~^~208~^36.^1^^~9~^~MC~^^^^^^^^^^~01/01/2014~
-~06624~^~268~^151.^0^^~9~^~MC~^^^^^^^^^^~01/01/2014~
-~06624~^~301~^19.^1^^~9~^~MC~^^^^^^^^^^~01/01/2014~
-~06624~^~307~^141.^1^^~9~^~MC~^^^^^^^^^^~01/01/2014~
-~06624~^~319~^0.^1^^~9~^~MC~^^^^^^^^^~1~^~01/01/2014~
-~06624~^~321~^179.^1^^~9~^~MC~^^^^^^^^^^~01/01/2014~
-~06624~^~601~^0.^1^^~9~^~MC~^^^^^^^^^^~01/01/2014~
-~06625~^~208~^44.^1^^~9~^~MC~^^^^^^^^^^~01/01/2014~
-~06625~^~268~^184.^0^^~9~^~MC~^^^^^^^^^^~01/01/2014~
-~06625~^~301~^23.^1^^~9~^~MC~^^^^^^^^^^~01/01/2014~
-~06625~^~307~^145.^1^^~9~^~MC~^^^^^^^^^^~01/01/2014~
-~06625~^~319~^0.^1^^~9~^~MC~^^^^^^^^^~1~^~01/01/2014~
-~06625~^~321~^1127.^1^^~9~^~MC~^^^^^^^^^^~01/01/2014~
-~06625~^~601~^0.^1^^~9~^~MC~^^^^^^^^^^~01/01/2014~
-~06626~^~208~^418.^0^^~4~^~NC~^^^^^^^^^^~02/01/2015~
-~06626~^~268~^1749.^0^^~4~^~NC~^^^^^^^^^^~02/01/2015~
-~06626~^~301~^306.^3^6.^~1~^~A~^^^1^297.^320.^2^276.^336.^~2, 3~^~02/01/2015~
-~06626~^~304~^47.^3^1.^~1~^~A~^^^1^44.^50.^2^39.^54.^~2, 3~^~02/01/2015~
-~06626~^~305~^273.^3^1.^~1~^~A~^^^1^270.^276.^2^265.^280.^~2, 3~^~02/01/2015~
-~06626~^~306~^560.^3^0.^~1~^~A~^^^1^559.^560.^2^558.^561.^~2, 3~^~02/01/2015~
-~06626~^~307~^603.^3^4.^~1~^~A~^^^1^596.^611.^2^583.^621.^~2, 3~^~02/01/2015~
-~06626~^~318~^1544.^0^^~1~^~AS~^^^^^^^^^^~02/01/2015~
-~06626~^~320~^77.^0^^~1~^~AS~^^^^^^^^^^~02/01/2015~
-~06626~^~321~^919.^2^^~1~^~A~^^^1^847.^991.^1^^^^~02/01/2015~
-~06626~^~322~^0.^2^^~1~^~A~^^^1^0.^0.^^^^~1~^~02/01/2015~
-~06626~^~334~^16.^2^^~1~^~A~^^^1^15.^17.^1^^^^~02/01/2015~
-~06626~^~337~^0.^2^^~1~^~A~^^^1^0.^0.^^^^~1~^~02/01/2015~
-~06626~^~338~^1242.^2^^~1~^~A~^^^1^1180.^1304.^1^^^^~02/01/2015~
-~06626~^~417~^16.^3^1.^~1~^~A~^^^1^13.^19.^2^8.^22.^~2, 3~^~02/01/2015~
-~06626~^~432~^16.^3^1.^~1~^~A~^^^1^13.^19.^2^8.^22.^^~02/01/2015~
-~06627~^~208~^426.^0^^~4~^~NC~^^^^^^^^^^~02/01/2015~
-~06627~^~268~^1784.^0^^~4~^~NC~^^^^^^^^^^~02/01/2015~
-~06627~^~301~^173.^12^7.^~1~^~A~^^^1^111.^205.^11^155.^189.^~2, 3~^~02/01/2015~
-~06627~^~304~^45.^12^2.^~1~^~A~^^^1^38.^65.^11^39.^50.^~2, 3~^~02/01/2015~
-~06627~^~305~^132.^12^18.^~1~^~A~^^^1^92.^326.^11^90.^173.^~2, 3~^~02/01/2015~
-~06627~^~306~^205.^12^8.^~1~^~A~^^^1^176.^287.^11^187.^223.^~2, 3~^~02/01/2015~
-~06627~^~307~^998.^12^36.^~1~^~A~^^^1^866.^1270.^11^916.^1078.^~2, 3~^~02/01/2015~
-~06627~^~318~^1802.^0^^~1~^~AS~^^^^^^^^^^~02/01/2015~
-~06627~^~320~^90.^0^^~1~^~AS~^^^^^^^^^^~02/01/2015~
-~06627~^~321~^1075.^4^47.^~1~^~A~^^^1^957.^1163.^3^923.^1225.^~2, 3~^~02/01/2015~
-~06627~^~322~^0.^4^0.^~1~^~A~^^^1^0.^0.^^^^~1, 2, 3~^~02/01/2015~
-~06627~^~334~^12.^4^1.^~1~^~A~^^^1^9.^14.^3^8.^16.^~2, 3~^~02/01/2015~
-~06627~^~337~^0.^4^0.^~1~^~A~^^^1^0.^0.^^^^~1, 2, 3~^~02/01/2015~
-~06627~^~338~^917.^4^41.^~1~^~A~^^^1^818.^999.^3^783.^1050.^~2, 3~^~02/01/2015~
-~06627~^~417~^27.^6^1.^~1~^~A~^^^1^23.^32.^5^24.^30.^~2, 3~^~02/01/2015~
-~06627~^~432~^27.^6^1.^~1~^~A~^^^1^23.^32.^5^24.^30.^^~02/01/2015~
-~06628~^~208~^418.^0^^~4~^~NC~^^^^^^^^^^~02/01/2015~
-~06628~^~268~^1749.^0^^~4~^~NC~^^^^^^^^^^~02/01/2015~
-~06628~^~301~^306.^3^6.^~1~^~A~^^^1^297.^320.^2^276.^336.^~2, 3~^~02/01/2015~
-~06628~^~304~^47.^3^1.^~1~^~A~^^^1^44.^50.^2^39.^54.^~2, 3~^~02/01/2015~
-~06628~^~305~^273.^3^1.^~1~^~A~^^^1^270.^276.^2^265.^280.^~2, 3~^~02/01/2015~
-~06628~^~306~^560.^3^0.^~1~^~A~^^^1^559.^560.^2^558.^561.^~2, 3~^~02/01/2015~
-~06628~^~307~^603.^3^4.^~1~^~A~^^^1^596.^611.^2^583.^621.^~2, 3~^~02/01/2015~
-~06628~^~318~^1544.^0^^~1~^~AS~^^^^^^^^^^~02/01/2015~
-~06628~^~320~^77.^0^^~1~^~AS~^^^^^^^^^^~02/01/2015~
-~06628~^~321~^919.^2^^~1~^~A~^^^1^847.^991.^1^^^^~02/01/2015~
-~06628~^~322~^0.^2^^~1~^~A~^^^1^0.^0.^^^^~1~^~02/01/2015~
-~06628~^~334~^16.^2^^~1~^~A~^^^1^15.^17.^1^^^^~02/01/2015~
-~06628~^~337~^0.^2^^~1~^~A~^^^1^0.^0.^^^^~1~^~02/01/2015~
-~06628~^~338~^1242.^2^^~1~^~A~^^^1^1180.^1304.^1^^^^~02/01/2015~
-~06628~^~417~^16.^3^1.^~1~^~A~^^^1^13.^19.^2^8.^22.^~2, 3~^~02/01/2015~
-~06628~^~432~^16.^3^1.^~1~^~A~^^^1^13.^19.^2^8.^22.^^~02/01/2015~
-~06629~^~208~^372.^0^^~4~^~NC~^^^^^^^^^^~02/01/2015~
-~06629~^~268~^1556.^0^^~4~^~NC~^^^^^^^^^^~02/01/2015~
-~06629~^~301~^166.^6^4.^~1~^~A~^^^1^145.^176.^5^154.^176.^~2, 3~^~02/01/2015~
-~06629~^~304~^40.^6^0.^~1~^~A~^^^1^38.^43.^5^37.^41.^~2, 3~^~02/01/2015~
-~06629~^~305~^97.^6^1.^~1~^~A~^^^1^92.^101.^5^93.^100.^~2, 3~^~02/01/2015~
-~06629~^~306~^195.^6^3.^~1~^~A~^^^1^185.^207.^5^186.^204.^~2, 3~^~02/01/2015~
-~06629~^~307~^1028.^6^54.^~1~^~A~^^^1^931.^1270.^5^887.^1168.^~2, 3~^~02/01/2015~
-~06629~^~318~^1929.^0^^~1~^~AS~^^^^^^^^^^~02/01/2015~
-~06629~^~320~^96.^0^^~1~^~AS~^^^^^^^^^^~02/01/2015~
-~06629~^~321~^1151.^2^^~1~^~A~^^^1^1139.^1163.^1^^^^~02/01/2015~
-~06629~^~322~^0.^2^^~1~^~A~^^^1^0.^0.^^^^~1~^~02/01/2015~
-~06629~^~334~^13.^2^^~1~^~A~^^^1^13.^14.^1^^^^~02/01/2015~
-~06629~^~337~^0.^2^^~1~^~A~^^^1^0.^0.^^^^~1~^~02/01/2015~
-~06629~^~338~^986.^2^^~1~^~A~^^^1^973.^999.^1^^^^~02/01/2015~
-~06629~^~417~^29.^3^1.^~1~^~A~^^^1^27.^32.^2^22.^34.^~2, 3~^~02/01/2015~
-~06629~^~432~^29.^3^1.^~1~^~A~^^^1^27.^32.^2^22.^34.^^~02/01/2015~
-~06630~^~208~^496.^0^^~4~^~NC~^^^^^^^^^^~02/01/2015~
-~06630~^~268~^2076.^0^^~4~^~NC~^^^^^^^^^^~02/01/2015~
-~06630~^~301~^202.^3^3.^~1~^~A~^^^1^195.^205.^2^187.^216.^~2, 3~^~02/01/2015~
-~06630~^~304~^43.^3^0.^~1~^~A~^^^1^42.^45.^2^40.^46.^~2, 3~^~02/01/2015~
-~06630~^~305~^149.^3^2.^~1~^~A~^^^1^144.^153.^2^137.^160.^~2, 3~^~02/01/2015~
-~06630~^~306~^205.^3^6.^~1~^~A~^^^1^192.^213.^2^176.^233.^~2, 3~^~02/01/2015~
-~06630~^~307~^897.^3^17.^~1~^~A~^^^1^866.^926.^2^822.^971.^~2, 3~^~02/01/2015~
-~06630~^~318~^1674.^0^^~1~^~AS~^^^^^^^^^^~02/01/2015~
-~06630~^~320~^84.^0^^~1~^~AS~^^^^^^^^^^~02/01/2015~
-~06630~^~321~^999.^2^^~1~^~A~^^^1^957.^1041.^1^^^^~02/01/2015~
-~06630~^~322~^0.^2^^~1~^~A~^^^1^0.^0.^^^^~1~^~02/01/2015~
-~06630~^~334~^11.^2^^~1~^~A~^^^1^9.^14.^1^^^^~02/01/2015~
-~06630~^~337~^0.^2^^~1~^~A~^^^1^0.^0.^^^^~1~^~02/01/2015~
-~06630~^~338~^848.^2^^~1~^~A~^^^1^818.^879.^1^^^^~02/01/2015~
-~06630~^~417~^26.^3^1.^~1~^~A~^^^1^23.^29.^2^17.^34.^~2, 3~^~02/01/2015~
-~06630~^~432~^26.^3^1.^~1~^~A~^^^1^23.^29.^2^17.^34.^^~02/01/2015~
-~06631~^~208~^93.^0^^~4~^~NC~^^^^^^^^^^~02/01/2015~
-~06631~^~268~^388.^0^^~4~^~NC~^^^^^^^^^^~02/01/2015~
-~06631~^~301~^18.^9^0.^~1~^~A~^^^1^13.^21.^8^16.^19.^~2, 3~^~02/01/2015~
-~06631~^~304~^16.^9^0.^~1~^~A~^^^1^15.^17.^8^15.^16.^~2, 3~^~02/01/2015~
-~06631~^~305~^46.^9^0.^~1~^~A~^^^1^43.^49.^8^44.^47.^~2, 3~^~02/01/2015~
-~06631~^~306~^321.^9^9.^~1~^~A~^^^1^269.^347.^8^299.^343.^~2, 3~^~02/01/2015~
-~06631~^~307~^2124.^9^232.^~1~^~A~^^^1^1500.^2940.^8^1589.^2659.^~2, 3~^~02/01/2015~
-~06631~^~318~^2574.^0^^~1~^~AS~^^^^^^^^^^~02/01/2015~
-~06631~^~320~^129.^0^^~1~^~AS~^^^^^^^^^^~02/01/2015~
-~06631~^~321~^1261.^6^115.^~1~^~A~^^^1^704.^1499.^5^963.^1558.^~2, 3~^~02/01/2015~
-~06631~^~322~^234.^6^29.^~1~^~A~^^^1^117.^315.^5^157.^310.^~2, 3~^~02/01/2015~
-~06631~^~334~^334.^6^18.^~1~^~A~^^^1^282.^409.^5^287.^380.^~2, 3~^~02/01/2015~
-~06631~^~337~^0.^6^0.^~1~^~A~^^^1^0.^0.^^^^~1, 2, 3~^~02/01/2015~
-~06631~^~338~^896.^6^85.^~1~^~A~^^^1^705.^1209.^5^676.^1116.^~2, 3~^~02/01/2015~
-~06631~^~417~^22.^6^4.^~1~^~A~^^^1^7.^33.^5^11.^32.^~2, 3~^~02/01/2015~
-~06631~^~432~^22.^6^4.^~1~^~A~^^^1^7.^33.^5^11.^32.^^~02/01/2015~
-~06632~^~208~^108.^0^^~4~^~NC~^^^^^^^^^^~02/01/2015~
-~06632~^~268~^451.^0^^~4~^~NC~^^^^^^^^^^~02/01/2015~
-~06632~^~301~^15.^3^1.^~1~^~A~^^^1^13.^17.^2^10.^20.^~2, 3~^~02/01/2015~
-~06632~^~304~^16.^3^0.^~1~^~A~^^^1^15.^17.^2^14.^18.^~2, 3~^~02/01/2015~
-~06632~^~305~^46.^3^1.^~1~^~A~^^^1^43.^49.^2^37.^53.^~2, 3~^~02/01/2015~
-~06632~^~306~^302.^3^17.^~1~^~A~^^^1^269.^326.^2^228.^376.^~2, 3~^~02/01/2015~
-~06632~^~307~^2903.^3^20.^~1~^~A~^^^1^2870.^2940.^2^2816.^2990.^~2, 3~^~02/01/2015~
-~06632~^~318~^2773.^0^^~1~^~AS~^^^^^^^^^^~02/01/2015~
-~06632~^~320~^139.^0^^~1~^~AS~^^^^^^^^^^~02/01/2015~
-~06632~^~321~^1319.^2^^~1~^~A~^^^1^1259.^1379.^1^^^^~02/01/2015~
-~06632~^~322~^306.^2^^~1~^~A~^^^1^296.^315.^1^^^^~02/01/2015~
-~06632~^~334~^383.^2^^~1~^~A~^^^1^358.^409.^1^^^^~02/01/2015~
-~06632~^~337~^0.^2^^~1~^~A~^^^1^0.^0.^^^^~1~^~02/01/2015~
-~06632~^~338~^1136.^2^^~1~^~A~^^^1^1063.^1209.^1^^^^~02/01/2015~
-~06632~^~417~^17.^2^^~1~^~A~^^^1^16.^18.^1^^^^~02/01/2015~
-~06632~^~432~^17.^2^^~1~^~A~^^^^^^^^^^~02/01/2015~
-~06633~^~208~^79.^0^^~4~^~NC~^^^^^^^^^^~02/01/2015~
-~06633~^~268~^330.^0^^~4~^~NC~^^^^^^^^^^~02/01/2015~
-~06633~^~301~^20.^5^0.^~1~^~A~^^^1^18.^21.^4^18.^20.^~2, 3~^~02/01/2015~
-~06633~^~304~^16.^5^0.^~1~^~A~^^^1^15.^16.^4^15.^16.^~2, 3~^~02/01/2015~
-~06633~^~305~^46.^5^0.^~1~^~A~^^^1^44.^48.^4^44.^47.^~2, 3~^~02/01/2015~
-~06633~^~306~^341.^5^2.^~1~^~A~^^^1^334.^347.^4^334.^347.^~2, 3~^~02/01/2015~
-~06633~^~307~^1540.^5^11.^~1~^~A~^^^1^1500.^1560.^4^1508.^1571.^~2, 3~^~02/01/2015~
-~06633~^~318~^2764.^0^^~1~^~AS~^^^^^^^^^^~02/01/2015~
-~06633~^~320~^138.^0^^~1~^~AS~^^^^^^^^^^~02/01/2015~
-~06633~^~321~^1407.^3^48.^~1~^~A~^^^1^1334.^1499.^2^1197.^1616.^~2, 3~^~02/01/2015~
-~06633~^~322~^200.^3^42.^~1~^~A~^^^1^117.^259.^2^16.^383.^~2, 3~^~02/01/2015~
-~06633~^~334~^302.^3^10.^~1~^~A~^^^1^282.^314.^2^259.^345.^~2, 3~^~02/01/2015~
-~06633~^~337~^0.^3^0.^~1~^~A~^^^1^0.^0.^^^^~1, 2, 3~^~02/01/2015~
-~06633~^~338~^721.^3^9.^~1~^~A~^^^1^705.^736.^2^681.^760.^~2, 3~^~02/01/2015~
-~06633~^~417~^31.^3^1.^~1~^~A~^^^1^28.^33.^2^24.^36.^~2, 3~^~02/01/2015~
-~06633~^~432~^31.^3^1.^~1~^~A~^^^1^28.^33.^2^24.^36.^^~02/01/2015~
-~06700~^~208~^5.^0^^~4~^~NC~^^^^^^^^^^~04/01/2015~
-~06700~^~262~^0.^0^^~4~^~FLA~^^^^^^^^^^~04/01/2015~
-~06700~^~263~^0.^0^^~4~^~FLA~^^^^^^^^^^~04/01/2015~
-~06700~^~268~^22.^0^^~4~^~NC~^^^^^^^^^^~04/01/2015~
-~06700~^~301~^3.^10^0.^~1~^~A~^^^1^1.^6.^9^2.^4.^~2, 3~^~04/01/2015~
-~06700~^~304~^1.^10^0.^~1~^~A~^^^1^1.^3.^9^0.^1.^~2, 3~^~04/01/2015~
-~06700~^~305~^3.^10^0.^~1~^~A~^^^1^1.^4.^9^2.^3.^~2, 3~^~04/01/2015~
-~06700~^~306~^19.^10^0.^~1~^~A~^^^1^14.^23.^9^17.^21.^~2, 3~^~04/01/2015~
-~06700~^~307~^296.^10^12.^~1~^~A~^^^1^231.^354.^9^267.^324.^~2, 3~^~04/01/2015~
-~06700~^~318~^238.^0^^~4~^~NC~^^^^^^^^^^~04/01/2015~
-~06700~^~319~^0.^0^^~4~^~FLA~^^^^^^^^^^~04/01/2015~
-~06700~^~320~^12.^0^^~4~^~NC~^^^^^^^^^^~04/01/2015~
-~06700~^~321~^111.^3^27.^~1~^~A~^^^1^60.^152.^2^-5.^226.^~2, 3~^~04/01/2015~
-~06700~^~322~^64.^3^11.^~1~^~A~^^^1^44.^84.^2^14.^114.^~2, 3~^~04/01/2015~
-~06700~^~324~^0.^0^^~4~^~FLA~^^^^^^^^^^~04/01/2015~
-~06700~^~334~^0.^3^0.^~1~^~A~^^^1^0.^0.^^^^~1, 2, 3~^~04/01/2015~
-~06700~^~337~^7.^3^7.^~1~^~A~^^^1^0.^21.^2^-23.^37.^~1, 2, 3~^~04/01/2015~
-~06700~^~338~^1.^3^0.^~1~^~A~^^^1^0.^3.^2^-2.^5.^~1, 2, 3~^~04/01/2015~
-~06700~^~417~^0.^3^0.^~1~^~A~^^^1^0.^0.^^^^~1, 2, 3~^~04/01/2015~
-~06700~^~431~^0.^0^^~4~^~FLA~^^^^^^^^^^~04/01/2015~
-~06700~^~432~^0.^3^0.^~1~^~A~^^^1^0.^0.^^^^^~04/01/2015~
-~06700~^~435~^0.^0^^~4~^~NC~^^^^^^^^^^~04/01/2015~
-~06700~^~601~^0.^0^^~4~^~FLA~^^^^^^^^^^~04/01/2015~
-~06720~^~208~^438.^0^^~9~^~MC~^^^^^^^^^^~04/01/1996~
-~06720~^~268~^1833.^0^^~9~^^^^^^^^^^^
-~06720~^~301~^204.^11^^~1~^~A~^^^^^^^^^^~04/01/1996~
-~06720~^~304~^36.^0^^~4~^~FLM~^^^^^^^^^^~03/01/1996~
-~06720~^~305~^283.^0^^~4~^~FLM~^^^^^^^^^^~03/01/1996~
-~06720~^~306~^428.^0^^~4~^~FLM~^^^^^^^^^^~03/01/1996~
-~06720~^~307~^3202.^11^^~1~^~A~^^^^^^^^^^~04/01/1996~
-~06720~^~318~^202.^11^^~12~^~MA~^^^^^^^^^^~04/01/1996~
-~06720~^~319~^55.^0^^~4~^~NC~^^^^^^^^^^~06/01/2002~
-~06720~^~320~^56.^0^^~4~^~NC~^^^^^^^^^^~06/01/2002~
-~06720~^~417~^134.^0^^~4~^~FLM~^^^^^^^^^^~03/01/1996~
-~06720~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~
-~06720~^~432~^134.^0^^~4~^~FLM~^^^^^^^^^^~03/01/1996~
-~06720~^~435~^134.^0^^~4~^~NC~^^^^^^^^^^~01/01/2001~
-~06720~^~601~^23.^11^^~12~^~MA~^^^^^^^^^^~04/01/1996~
-~06725~^~208~^99.^0^^~4~^~NC~^^^^^^^^^^~10/01/1997~
-~06725~^~268~^414.^0^^~4~^^^^^^^^^^^~03/01/2006~
-~06725~^~307~^299.^1^^~1~^~A~^^^^^^^^^^~10/01/1997~
-~06725~^~318~^1150.^1^^~1~^~A~^^^^^^^^^^~10/01/1997~
-~06725~^~320~^58.^1^^~1~^~AS~^^^^^^^^^^~03/01/2006~
-~06725~^~321~^690.^1^^~1~^~A~^^^^^^^^^^~11/01/2000~
-~06725~^~601~^11.^1^^~1~^~A~^^^^^^^^^^~10/01/1997~
-~06731~^~208~^117.^0^^~4~^~NC~^^^^^^^^^^~10/01/1997~
-~06731~^~268~^490.^0^^~4~^^^^^^^^^^^
-~06731~^~307~^672.^1^^~9~^~MC~^^^^^^^^^^~06/01/2012~
-~06731~^~318~^183.^1^^~1~^~A~^^^^^^^^^^~10/01/1997~
-~06731~^~321~^110.^1^^~1~^~A~^^^^^^^^^^~11/01/2000~
-~06731~^~601~^3.^1^^~1~^~A~^^^^^^^^^^~10/01/1997~
-~06742~^~208~^44.^0^^~4~^~NC~^^^^^^^^^^~10/01/1997~
-~06742~^~268~^184.^0^^~4~^^^^^^^^^^^~03/01/2006~
-~06742~^~307~^376.^1^^~1~^~A~^^^^^^^^^^~10/01/1997~
-~06742~^~318~^650.^1^^~1~^~A~^^^^^^^^^^~10/01/1997~
-~06742~^~320~^33.^1^^~1~^~AS~^^^^^^^^^^~03/01/2006~
-~06742~^~321~^390.^1^^~1~^~A~^^^^^^^^^^~11/01/2000~
-~06742~^~601~^3.^1^^~1~^~A~^^^^^^^^^^~10/01/1997~
-~06749~^~208~^48.^0^^~4~^~NC~^^^^^^^^^^~02/01/2013~
-~06749~^~262~^0.^0^^~4~^~FLA~^^^^^^^^^^~02/01/2013~
-~06749~^~263~^0.^0^^~4~^~FLA~^^^^^^^^^^~02/01/2013~
-~06749~^~268~^200.^0^^~4~^~NC~^^^^^^^^^^~02/01/2013~
-~06749~^~301~^18.^10^0.^~1~^~A~^^^1^17.^18.^1^13.^21.^~4~^~02/01/2011~
-~06749~^~304~^10.^10^0.^~1~^~A~^^^1^9.^10.^1^0.^18.^~4~^~02/01/2013~
-~06749~^~305~^48.^10^2.^~1~^~A~^^^1^45.^48.^1^22.^73.^~4~^~02/01/2013~
-~06749~^~306~^174.^10^28.^~1~^~A~^^^1^163.^212.^1^-183.^530.^~4~^~02/01/2013~
-~06749~^~307~^326.^10^51.^~1~^~A~^^^1^256.^346.^1^-326.^978.^~4~^~02/01/2013~
-~06749~^~318~^2290.^0^^~1~^~AS~^^^^^^^^^^~02/01/2013~
-~06749~^~319~^0.^0^^~4~^~FLA~^^^^^^^^^^~02/01/2013~
-~06749~^~320~^115.^0^^~1~^~AS~^^^^^^^^^^~02/01/2013~
-~06749~^~321~^1110.^2^^~1~^~A~^^^1^600.^1255.^1^^^^~02/01/2013~
-~06749~^~322~^528.^2^^~1~^~A~^^^1^255.^605.^1^^^^~02/01/2013~
-~06749~^~324~^1.^0^^~4~^~FLA~^^^^^^^^^^~02/01/2013~
-~06749~^~334~^0.^2^^~1~^~A~^^^1^0.^0.^1^^^~1~^~02/01/2011~
-~06749~^~337~^624.^2^^~1~^~A~^^^1^442.^675.^1^^^^~02/01/2013~
-~06749~^~338~^119.^2^^~1~^~A~^^^1^54.^137.^1^^^^~02/01/2013~
-~06749~^~417~^9.^0^^~4~^~FLA~^^^^^^^^^^~02/01/2013~
-~06749~^~431~^0.^0^^~4~^~FLA~^^^^^^^^^^~02/01/2013~
-~06749~^~432~^9.^0^^~4~^~FLA~^^^^^^^^^^~02/01/2013~
-~06749~^~435~^9.^0^^~4~^~NC~^^^^^^^^^^~02/01/2013~
-~06749~^~601~^7.^0^^~4~^~FLA~^^^^^^^^^^~02/01/2013~
-~06930~^~208~^174.^0^^~9~^~MC~^^^^^^^^^^~04/01/1996~
-~06930~^~268~^728.^0^^~9~^^^^^^^^^^^~03/01/2006~
-~06930~^~301~^184.^21^^~1~^~A~^^^^^^^^^^~04/01/1996~
-~06930~^~304~^9.^0^^~4~^~FLM~^^^^^^^^^^~04/01/1996~
-~06930~^~305~^157.^0^^~4~^~FLM~^^^^^^^^^^~04/01/1996~
-~06930~^~306~^30.^0^^~4~^~FLM~^^^^^^^^^^~04/01/1996~
-~06930~^~307~^828.^21^^~1~^~A~^^^^^^^^^^~04/01/1996~
-~06930~^~318~^316.^21^^~12~^~MA~^^^^^^^^^^~04/01/1996~
-~06930~^~319~^77.^0^^~4~^~NC~^^^^^^^^^^~06/01/2002~
-~06930~^~320~^80.^0^^~4~^~NC~^^^^^^^^^^~06/01/2002~
-~06930~^~417~^4.^0^^~4~^~FLM~^^^^^^^^^^~04/01/1996~
-~06930~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~
-~06930~^~432~^4.^0^^~4~^~FLM~^^^^^^^^^^~04/01/1996~
-~06930~^~435~^4.^0^^~4~^~NC~^^^^^^^^^^~03/01/2006~
-~06930~^~601~^29.^21^^~12~^~MA~^^^^^^^^^^~04/01/1996~
-~06931~^~208~^50.^0^^~4~^~NC~^^^^^^^^^^~04/01/2015~
-~06931~^~262~^0.^0^^~4~^~FLC~^^^^^^^^^^~11/01/2006~
-~06931~^~263~^0.^0^^~4~^~FLC~^^^^^^^^^^~11/01/2006~
-~06931~^~268~^208.^0^^~4~^~NC~^^^^^^^^^^~04/01/2015~
-~06931~^~301~^26.^36^1.^~1~^~A~^^^1^18.^37.^11^23.^28.^~2, 3~^~04/01/2015~
-~06931~^~304~^18.^36^0.^~1~^~A~^^^1^13.^26.^21^17.^18.^~2, 3~^~01/01/2011~
-~06931~^~305~^34.^36^0.^~1~^~A~^^^1^25.^40.^21^32.^34.^~2, 3~^~01/01/2011~
-~06931~^~306~^320.^36^4.^~1~^~A~^^^1^244.^373.^22^309.^330.^~2, 3~^~04/01/2015~
-~06931~^~307~^437.^36^5.^~1~^~A~^^^1^336.^590.^18^426.^448.^~2, 3~^~04/01/2015~
-~06931~^~318~^617.^0^^~4~^~NC~^^^^^^^^^^~04/01/2015~
-~06931~^~319~^0.^0^^~4~^~FLC~^^^^^^^^^^~11/01/2006~
-~06931~^~320~^31.^0^^~4~^~NC~^^^^^^^^^^~04/01/2015~
-~06931~^~321~^370.^18^11.^~1~^~A~^^^1^291.^546.^9^344.^396.^~2, 3~^~04/01/2015~
-~06931~^~322~^0.^18^0.^~1~^~A~^^^1^0.^0.^^^^~1, 2, 3~^~06/01/2009~
-~06931~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~
-~06931~^~334~^0.^18^0.^~1~^~A~^^^1^0.^0.^^^^~1, 2, 3~^~01/01/2011~
-~06931~^~337~^12717.^18^218.^~1~^~A~^^^1^8927.^14616.^10^12229.^13203.^~2, 3~^~04/01/2015~
-~06931~^~338~^176.^18^14.^~1~^~A~^^^1^118.^297.^7^142.^209.^~2, 3~^~04/01/2015~
-~06931~^~417~^13.^0^^~4~^~FLC~^^^^^^^^^^~11/01/2006~
-~06931~^~431~^0.^0^^~4~^~FLC~^^^^^^^^^^~11/01/2006~
-~06931~^~432~^13.^0^^~4~^~FLC~^^^^^^^^^^~11/01/2006~
-~06931~^~435~^13.^0^^~4~^~NC~^^^^^^^^^^~07/01/2008~
-~06931~^~601~^2.^23^0.^~8~^~LC~^^^1^0.^8.^22^0.^2.^~1, 4~^~11/01/2006~
-~06955~^~208~^58.^1^^~9~^~MC~^^^^^^^^^^~05/01/2005~
-~06955~^~262~^0.^0^^~4~^~FLA~^^^^^^^^^^~03/01/2003~
-~06955~^~263~^0.^0^^~4~^~FLA~^^^^^^^^^^~03/01/2003~
-~06955~^~268~^243.^0^^~9~^^^^^^^^^^^~05/01/2005~
-~06955~^~301~^11.^1^^~12~^~MA~^^^^^^^^^^~05/01/2005~
-~06955~^~304~^2.^0^^~4~^~FLM~^^^^^^^^^^~05/01/2005~
-~06955~^~305~^23.^0^^~4~^~FLM~^^^^^^^^^^~05/01/2005~
-~06955~^~306~^272.^1^^~12~^~MA~^^^^^^^^^^~05/01/2005~
-~06955~^~307~^357.^1^^~12~^~MA~^^^^^^^^^^~05/01/2005~
-~06955~^~318~^432.^0^^~4~^~NC~^^^^^^^^^^~03/01/2003~
-~06955~^~319~^4.^0^^~4~^~FLA~^^^^^^^^^^~03/01/2003~
-~06955~^~320~^25.^0^^~4~^~NC~^^^^^^^^^^~03/01/2003~
-~06955~^~321~^205.^0^^~4~^~FLA~^^^^^^^^^^~03/01/2003~
-~06955~^~322~^94.^0^^~4~^~FLA~^^^^^^^^^^~03/01/2003~
-~06955~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~
-~06955~^~334~^0.^0^^~4~^~FLA~^^^^^^^^^^~03/01/2003~
-~06955~^~337~^0.^0^^~4~^~FLA~^^^^^^^^^^~03/01/2003~
-~06955~^~338~^7.^0^^~4~^~FLA~^^^^^^^^^^~03/01/2003~
-~06955~^~417~^4.^0^^~4~^~FLA~^^^^^^^^^^~03/01/2003~
-~06955~^~431~^0.^0^^~4~^~FLA~^^^^^^^^^^~03/01/2003~
-~06955~^~432~^4.^0^^~4~^~FLA~^^^^^^^^^^~03/01/2003~
-~06955~^~435~^4.^0^^~4~^~NC~^^^^^^^^^^~11/01/2006~
-~06955~^~601~^6.^1^^~12~^~MA~^^^^^^^^^^~05/01/2005~
-~06956~^~208~^65.^0^^~4~^~NC~^~06159~^^^^^^^^^~11/01/2006~
-~06956~^~262~^0.^0^^~4~^~BFZN~^~06159~^^^^^^^^^~11/01/2006~
-~06956~^~263~^0.^0^^~4~^~BFZN~^~06159~^^^^^^^^^~11/01/2006~
-~06956~^~268~^273.^0^^~4~^~NC~^~06159~^^^^^^^^^~11/01/2006~
-~06956~^~301~^13.^0^^~4~^~BFZN~^~06159~^^^^^^^^^~11/01/2006~
-~06956~^~304~^14.^0^^~4~^~BFZN~^~06159~^^^^^^^^^~11/01/2006~
-~06956~^~305~^29.^0^^~4~^~BFZN~^~06159~^^^^^^^^^~11/01/2006~
-~06956~^~306~^229.^0^^~4~^~BFZN~^~06159~^^^^^^^^^~11/01/2006~
-~06956~^~307~^22.^0^^~4~^~FLA~^^^^^^^^^^~11/01/2006~
-~06956~^~318~^392.^0^^~4~^~BFZN~^~06159~^^^^^^^^^~11/01/2006~
-~06956~^~319~^0.^0^^~4~^~BFZN~^~06159~^^^^^^^^^~11/01/2006~
-~06956~^~320~^20.^0^^~4~^~BFZN~^~06159~^^^^^^^^^~11/01/2006~
-~06956~^~321~^235.^0^^~4~^~BFZN~^~06159~^^^^^^^^^~11/01/2006~
-~06956~^~322~^0.^0^^~4~^~BFZN~^~06159~^^^^^^^^^~11/01/2006~
-~06956~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~
-~06956~^~334~^0.^0^^~4~^~BFZN~^~06159~^^^^^^^^^~11/01/2006~
-~06956~^~337~^10920.^0^^~4~^~BFZN~^~06159~^^^^^^^^^~11/01/2006~
-~06956~^~338~^90.^0^^~4~^~BFZN~^~06159~^^^^^^^^^~11/01/2006~
-~06956~^~417~^0.^0^^~4~^~BFZN~^~06159~^^^^^^^^^~11/01/2006~
-~06956~^~431~^0.^0^^~4~^~BFZN~^~06159~^^^^^^^^^~11/01/2006~
-~06956~^~432~^0.^0^^~4~^~BFZN~^~06159~^^^^^^^^^~11/01/2006~
-~06956~^~435~^0.^0^^~4~^~NC~^~06159~^^^^^^^^^~11/01/2006~
-~06956~^~601~^0.^0^^~4~^~BFZN~^~06159~^^^^^^^^^~11/01/2006~
-~06957~^~208~^380.^0^^~9~^~MC~^^^^^^^^^^~02/01/2003~
-~06957~^~262~^0.^0^^~4~^~FLA~^^^^^^^^^^~02/01/2003~
-~06957~^~263~^0.^0^^~4~^~FLA~^^^^^^^^^^~02/01/2003~
-~06957~^~268~^1590.^0^^~9~^^^^^^^^^^^~05/01/2005~
-~06957~^~301~^116.^1^^~1~^~A~^^^^^^^^^^~02/01/2003~
-~06957~^~304~^32.^0^^~4~^~FLM~^^^^^^^^^^~02/01/2003~
-~06957~^~305~^212.^0^^~4~^~FLM~^^^^^^^^^^~02/01/2003~
-~06957~^~306~^367.^0^^~4~^~FLM~^^^^^^^^^^~02/01/2003~
-~06957~^~307~^5053.^1^^~1~^~A~^^^^^^^^^^~02/01/2003~
-~06957~^~318~^1.^0^^~4~^~FLA~^^^^^^^^^^~02/01/2003~
-~06957~^~319~^0.^0^^~4~^~FLA~^^^^^^^^^^~02/01/2003~
-~06957~^~320~^0.^0^^~4~^~FLA~^^^^^^^^^^~02/01/2003~
-~06957~^~321~^1.^0^^~4~^~FLA~^^^^^^^^^^~02/01/2003~
-~06957~^~322~^0.^0^^~4~^~FLA~^^^^^^^^^^~02/01/2003~
-~06957~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~
-~06957~^~334~^0.^0^^~4~^~FLA~^^^^^^^^^^~02/01/2003~
-~06957~^~337~^0.^0^^~4~^~FLA~^^^^^^^^^^~02/01/2003~
-~06957~^~338~^10.^0^^~4~^~FLA~^^^^^^^^^^~02/01/2003~
-~06957~^~417~^69.^0^^~4~^~FLA~^^^^^^^^^^~02/01/2003~
-~06957~^~431~^43.^0^^~4~^~FLA~^^^^^^^^^^~02/01/2003~
-~06957~^~432~^26.^0^^~4~^~FLA~^^^^^^^^^^~02/01/2003~
-~06957~^~435~^99.^0^^~4~^~NC~^^^^^^^^^^~11/01/2006~
-~06957~^~601~^12.^1^^~1~^~A~^^^^^^^^^^~02/01/2003~
-~06958~^~208~^369.^0^^~9~^~MC~^^^^^^^^^^~02/01/2003~
-~06958~^~262~^0.^0^^~4~^~FLA~^^^^^^^^^^~02/01/2003~
-~06958~^~263~^0.^0^^~4~^~FLA~^^^^^^^^^^~02/01/2003~
-~06958~^~268~^1544.^0^^~9~^^^^^^^^^^^~05/01/2005~
-~06958~^~301~^141.^1^^~1~^~A~^^^^^^^^^^~02/01/2003~
-~06958~^~304~^41.^0^^~4~^~FLM~^^^^^^^^^^~02/01/2003~
-~06958~^~305~^239.^0^^~4~^~FLM~^^^^^^^^^^~02/01/2003~
-~06958~^~306~^450.^0^^~4~^~FLM~^^^^^^^^^^~02/01/2003~
-~06958~^~307~^5203.^1^^~1~^~A~^^^^^^^^^^~02/01/2003~
-~06958~^~318~^8.^0^^~4~^~FLA~^^^^^^^^^^~02/01/2003~
-~06958~^~319~^2.^0^^~4~^~FLA~^^^^^^^^^^~02/01/2003~
-~06958~^~320~^2.^0^^~4~^~FLA~^^^^^^^^^^~02/01/2003~
-~06958~^~321~^0.^0^^~4~^~FLA~^^^^^^^^^^~02/01/2003~
-~06958~^~322~^0.^0^^~4~^~FLA~^^^^^^^^^^~02/01/2003~
-~06958~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~
-~06958~^~334~^0.^0^^~4~^~FLA~^^^^^^^^^^~02/01/2003~
-~06958~^~337~^0.^0^^~4~^~FLA~^^^^^^^^^^~02/01/2003~
-~06958~^~338~^2.^0^^~4~^~FLA~^^^^^^^^^^~02/01/2003~
-~06958~^~417~^34.^0^^~4~^~FLA~^^^^^^^^^^~02/01/2003~
-~06958~^~431~^20.^0^^~4~^~FLA~^^^^^^^^^^~02/01/2003~
-~06958~^~432~^15.^0^^~4~^~FLA~^^^^^^^^^^~02/01/2003~
-~06958~^~435~^48.^0^^~4~^~NC~^^^^^^^^^^~11/01/2006~
-~06958~^~601~^11.^1^^~1~^~A~^^^^^^^^^^~02/01/2003~
-~06959~^~208~^409.^0^^~9~^~MC~^^^^^^^^^^~02/01/2003~
-~06959~^~262~^0.^0^^~4~^~FLA~^^^^^^^^^^~02/01/2003~
-~06959~^~263~^0.^0^^~4~^~FLA~^^^^^^^^^^~02/01/2003~
-~06959~^~268~^1711.^0^^~9~^^^^^^^^^^^~05/01/2005~
-~06959~^~301~^115.^1^^~1~^~A~^^^^^^^^^^~02/01/2003~
-~06959~^~304~^30.^0^^~4~^~FLM~^^^^^^^^^^~02/01/2003~
-~06959~^~305~^203.^0^^~4~^~FLM~^^^^^^^^^^~02/01/2003~
-~06959~^~306~^306.^0^^~4~^~FLM~^^^^^^^^^^~02/01/2003~
-~06959~^~307~^4090.^1^^~1~^~A~^^^^^^^^^^~02/01/2003~
-~06959~^~318~^63.^0^^~4~^~FLA~^^^^^^^^^^~02/01/2003~
-~06959~^~319~^17.^0^^~4~^~FLA~^^^^^^^^^^~02/01/2003~
-~06959~^~320~^18.^0^^~4~^~FLA~^^^^^^^^^^~02/01/2003~
-~06959~^~321~^3.^0^^~4~^~FLA~^^^^^^^^^^~02/01/2003~
-~06959~^~322~^0.^0^^~4~^~FLA~^^^^^^^^^^~02/01/2003~
-~06959~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~
-~06959~^~334~^0.^0^^~4~^~FLA~^^^^^^^^^^~02/01/2003~
-~06959~^~337~^0.^0^^~4~^~FLA~^^^^^^^^^^~02/01/2003~
-~06959~^~338~^6.^0^^~4~^~FLA~^^^^^^^^^^~02/01/2003~
-~06959~^~417~^45.^0^^~4~^~FLA~^^^^^^^^^^~02/01/2003~
-~06959~^~431~^15.^0^^~4~^~FLA~^^^^^^^^^^~02/01/2003~
-~06959~^~432~^30.^0^^~4~^~FLA~^^^^^^^^^^~02/01/2003~
-~06959~^~435~^56.^0^^~4~^~NC~^^^^^^^^^^~11/01/2006~
-~06959~^~601~^24.^1^^~1~^~A~^^^^^^^^^^~02/01/2003~
-~06960~^~208~^535.^0^^~9~^~MC~^^^^^^^^^^~02/01/2003~
-~06960~^~262~^0.^0^^~4~^~FLA~^^^^^^^^^^~02/01/2003~
-~06960~^~263~^0.^0^^~4~^~FLA~^^^^^^^^^^~02/01/2003~
-~06960~^~268~^2238.^0^^~9~^~MC~^^^^^^^^^^~07/01/2005~
-~06960~^~301~^467.^3^^~1~^~A~^^^^^^^^^^~02/01/2003~
-~06960~^~304~^32.^0^^~4~^~FLM~^^^^^^^^^^~02/01/2003~
-~06960~^~305~^415.^0^^~4~^~FLM~^^^^^^^^^^~02/01/2003~
-~06960~^~306~^254.^0^^~4~^~FLM~^^^^^^^^^^~02/01/2003~
-~06960~^~307~^2590.^3^^~1~^~A~^^^^^^^^^^~02/01/2003~
-~06960~^~318~^213.^0^^~4~^~FLA~^^^^^^^^^^~02/01/2003~
-~06960~^~319~^52.^0^^~4~^~FLA~^^^^^^^^^^~02/01/2003~
-~06960~^~320~^54.^0^^~4~^~FLA~^^^^^^^^^^~02/01/2003~
-~06960~^~321~^23.^0^^~4~^~FLA~^^^^^^^^^^~02/01/2003~
-~06960~^~322~^0.^0^^~4~^~FLA~^^^^^^^^^^~02/01/2003~
-~06960~^~334~^0.^0^^~4~^~FLA~^^^^^^^^^^~02/01/2003~
-~06960~^~337~^0.^0^^~4~^~FLA~^^^^^^^^^^~02/01/2003~
-~06960~^~338~^0.^0^^~4~^~FLA~^^^^^^^^^^~02/01/2003~
-~06960~^~417~^4.^0^^~4~^~FLA~^^^^^^^^^^~02/01/2003~
-~06960~^~431~^0.^0^^~4~^~FLA~^^^^^^^^^^~02/01/2003~
-~06960~^~432~^4.^0^^~4~^~FLA~^^^^^^^^^^~02/01/2003~
-~06960~^~435~^4.^0^^~4~^~NC~^^^^^^^^^^~07/01/2005~
-~06960~^~601~^56.^3^^~12~^~MA~^^^^^^^^^^~02/01/2003~
-~06961~^~208~^21.^1^^~1~^^^^^^^^^^^~05/01/2005~
-~06961~^~262~^0.^0^^~4~^~FLA~^^^^^^^^^^~03/01/2003~
-~06961~^~263~^0.^0^^~4~^~FLA~^^^^^^^^^^~03/01/2003~
-~06961~^~268~^88.^1^^~1~^^^^^^^^^^^~05/01/2005~
-~06961~^~301~^9.^1^^~1~^^^^^^^^^^^~05/01/2005~
-~06961~^~304~^12.^0^^~4~^^^^^^^^^^^~05/01/2005~
-~06961~^~305~^16.^1^^~1~^^^^^^^^^^^~05/01/2005~
-~06961~^~306~^564.^1^^~1~^^^^^^^^^^^~05/01/2005~
-~06961~^~307~^25.^1^^~1~^^^^^^^^^^^~05/01/2005~
-~06961~^~318~^458.^0^^~4~^~FLA~^^^^^^^^^^~03/01/2003~
-~06961~^~319~^0.^0^^~4~^~FLA~^^^^^^^^^^~03/01/2003~
-~06961~^~320~^23.^0^^~4~^~FLA~^^^^^^^^^^~03/01/2003~
-~06961~^~321~^257.^0^^~4~^~FLA~^^^^^^^^^^~03/01/2003~
-~06961~^~322~^17.^0^^~4~^~FLA~^^^^^^^^^^~03/01/2003~
-~06961~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~
-~06961~^~334~^19.^0^^~4~^~FLA~^^^^^^^^^^~03/01/2003~
-~06961~^~337~^0.^0^^~4~^~FLA~^^^^^^^^^^~03/01/2003~
-~06961~^~338~^341.^0^^~4~^~FLA~^^^^^^^^^^~03/01/2003~
-~06961~^~417~^11.^0^^~4~^~FLA~^^^^^^^^^^~03/01/2003~
-~06961~^~431~^0.^0^^~4~^~FLA~^^^^^^^^^^~03/01/2003~
-~06961~^~432~^11.^0^^~4~^~FLA~^^^^^^^^^^~03/01/2003~
-~06961~^~435~^11.^0^^~4~^~NC~^^^^^^^^^^~11/01/2006~
-~06961~^~601~^0.^1^^~1~^^^^^^^^^^^~05/01/2005~
-~06962~^~208~^20.^1^^~1~^^^^^^^^^^^~05/01/2005~
-~06962~^~262~^0.^0^^~4~^~FLA~^^^^^^^^^^~03/01/2003~
-~06962~^~263~^0.^0^^~4~^~FLA~^^^^^^^^^^~03/01/2003~
-~06962~^~268~^84.^1^^~1~^^^^^^^^^^^~05/01/2005~
-~06962~^~301~^5.^1^^~1~^^^^^^^^^^^~05/01/2005~
-~06962~^~304~^12.^0^^~4~^^^^^^^^^^^~05/01/2005~
-~06962~^~305~^14.^1^^~1~^^^^^^^^^^^~05/01/2005~
-~06962~^~306~^564.^1^^~1~^^^^^^^^^^^~05/01/2005~
-~06962~^~307~^25.^1^^~1~^^^^^^^^^^^~05/01/2005~
-~06962~^~318~^584.^0^^~4~^~FLA~^^^^^^^^^^~03/01/2003~
-~06962~^~319~^0.^0^^~4~^~FLA~^^^^^^^^^^~03/01/2003~
-~06962~^~320~^29.^0^^~4~^~FLA~^^^^^^^^^^~03/01/2003~
-~06962~^~321~^333.^0^^~4~^~FLA~^^^^^^^^^^~03/01/2003~
-~06962~^~322~^11.^0^^~4~^~FLA~^^^^^^^^^^~03/01/2003~
-~06962~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~
-~06962~^~334~^25.^0^^~4~^~FLA~^^^^^^^^^^~03/01/2003~
-~06962~^~337~^0.^0^^~4~^~FLA~^^^^^^^^^^~03/01/2003~
-~06962~^~338~^358.^0^^~4~^~FLA~^^^^^^^^^^~03/01/2003~
-~06962~^~417~^12.^0^^~4~^~FLA~^^^^^^^^^^~03/01/2003~
-~06962~^~431~^0.^0^^~4~^~FLA~^^^^^^^^^^~03/01/2003~
-~06962~^~432~^12.^0^^~4~^~FLA~^^^^^^^^^^~03/01/2003~
-~06962~^~435~^12.^0^^~4~^~NC~^^^^^^^^^^~11/01/2006~
-~06962~^~601~^0.^1^^~1~^^^^^^^^^^^~05/01/2005~
-~06963~^~208~^16.^0^^~4~^^^^^^^^^^^~03/01/2009~
-~06963~^~262~^0.^0^^~4~^~FLA~^^^^^^^^^^~05/01/2005~
-~06963~^~263~^0.^0^^~4~^~FLA~^^^^^^^^^^~03/01/2003~
-~06963~^~268~^67.^0^^~4~^^^^^^^^^^^~03/01/2009~
-~06963~^~301~^30.^0^^~4~^^^^^^^^^^^~03/01/2009~
-~06963~^~304~^1.^0^^~4~^^^^^^^^^^^~03/01/2009~
-~06963~^~305~^30.^0^^~4~^^^^^^^^^^^~03/01/2009~
-~06963~^~306~^86.^0^^~4~^^^^^^^^^^^~03/01/2009~
-~06963~^~307~^200.^0^^~8~^~LC~^^^^^^^^^^~07/01/2017~
-~06963~^~318~^4.^0^^~4~^~NC~^^^^^^^^^^~03/01/2003~
-~06963~^~319~^1.^0^^~4~^~FLA~^^^^^^^^^^~03/01/2003~
-~06963~^~320~^1.^0^^~4~^~NC~^^^^^^^^^^~03/01/2003~
-~06963~^~321~^0.^0^^~4~^~FLA~^^^^^^^^^^~03/01/2003~
-~06963~^~322~^0.^0^^~4~^~FLA~^^^^^^^^^^~03/01/2003~
-~06963~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2009~
-~06963~^~334~^0.^0^^~4~^~FLA~^^^^^^^^^^~03/01/2003~
-~06963~^~337~^0.^0^^~4~^~FLA~^^^^^^^^^^~03/01/2003~
-~06963~^~338~^0.^0^^~4~^~FLA~^^^^^^^^^^~03/01/2003~
-~06963~^~417~^4.^0^^~4~^~FLA~^^^^^^^^^^~03/01/2003~
-~06963~^~431~^0.^0^^~4~^~FLA~^^^^^^^^^^~03/01/2003~
-~06963~^~432~^4.^0^^~4~^~FLA~^^^^^^^^^^~03/01/2003~
-~06963~^~435~^4.^0^^~4~^~NC~^^^^^^^^^^~03/01/2009~
-~06963~^~601~^0.^0^^~4~^^^^^^^^^^^~03/01/2009~
-~06964~^~208~^30.^0^^~4~^~BFZN~^~06559~^^^^^^^^^~11/01/2006~
-~06964~^~262~^0.^0^^~4~^~BFZN~^~06559~^^^^^^^^^~11/01/2006~
-~06964~^~263~^0.^0^^~4~^~BFZN~^~06559~^^^^^^^^^~11/01/2006~
-~06964~^~268~^124.^0^^~4~^~BFZN~^~06559~^^^^^^^^^~11/01/2006~
-~06964~^~301~^8.^0^^~4~^~BFZN~^~06559~^^^^^^^^^~11/01/2006~
-~06964~^~304~^7.^0^^~4~^~BFZN~^~06559~^^^^^^^^^~11/01/2006~
-~06964~^~305~^14.^0^^~4~^~BFZN~^~06559~^^^^^^^^^~11/01/2006~
-~06964~^~306~^112.^0^^~4~^~BFZN~^~06559~^^^^^^^^^~11/01/2006~
-~06964~^~307~^33.^0^^~8~^~LC~^^^^^^^^^^~08/01/2011~
-~06964~^~318~^192.^0^^~4~^~BFZN~^~06559~^^^^^^^^^~11/01/2006~
-~06964~^~319~^0.^0^^~4~^~BFZN~^~06559~^^^^^^^^^~11/01/2006~
-~06964~^~320~^10.^0^^~4~^~BFZN~^~06559~^^^^^^^^^~11/01/2006~
-~06964~^~321~^115.^0^^~4~^~BFZN~^~06559~^^^^^^^^^~11/01/2006~
-~06964~^~322~^0.^0^^~4~^~BFZN~^~06559~^^^^^^^^^~11/01/2006~
-~06964~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~
-~06964~^~334~^0.^0^^~4~^~BFZN~^~06559~^^^^^^^^^~11/01/2006~
-~06964~^~337~^5345.^0^^~4~^~BFZN~^~06559~^^^^^^^^^~11/01/2006~
-~06964~^~338~^44.^0^^~4~^~BFZN~^~06559~^^^^^^^^^~11/01/2006~
-~06964~^~417~^0.^0^^~4~^~BFZN~^~06559~^^^^^^^^^~11/01/2006~
-~06964~^~431~^0.^0^^~4~^~BFZN~^~06559~^^^^^^^^^~11/01/2006~
-~06964~^~432~^0.^0^^~4~^~BFZN~^~06559~^^^^^^^^^~11/01/2006~
-~06964~^~435~^0.^0^^~4~^~NC~^~06559~^^^^^^^^^~11/01/2006~
-~06964~^~601~^0.^0^^~4~^~BFZN~^~06559~^^^^^^^^^~11/01/2006~
-~06965~^~208~^62.^0^^~4~^~BFZN~^^^^^^^^^^~11/01/2006~
-~06965~^~262~^0.^0^^~4~^~BFZN~^^^^^^^^^^~11/01/2006~
-~06965~^~263~^0.^0^^~4~^~BFZN~^^^^^^^^^^~11/01/2006~
-~06965~^~268~^260.^0^^~4~^~BFZN~^^^^^^^^^^~11/01/2006~
-~06965~^~301~^12.^0^^~4~^~BFZN~^^^^^^^^^^~11/01/2006~
-~06965~^~304~^15.^0^^~4~^~BFZN~^^^^^^^^^^~11/01/2006~
-~06965~^~305~^47.^0^^~4~^~BFZN~^^^^^^^^^^~11/01/2006~
-~06965~^~306~^71.^0^^~4~^~BFZN~^^^^^^^^^^~11/01/2006~
-~06965~^~307~^10.^1^^~1~^^^^^^^^^^^~11/01/2006~
-~06965~^~318~^12.^0^^~4~^~BFZN~^^^^^^^^^^~11/01/2006~
-~06965~^~319~^3.^0^^~4~^~BFZN~^^^^^^^^^^~11/01/2006~
-~06965~^~320~^3.^0^^~4~^~BFZN~^^^^^^^^^^~11/01/2006~
-~06965~^~321~^1.^0^^~4~^~BFZN~^^^^^^^^^^~11/01/2006~
-~06965~^~322~^0.^0^^~4~^~BFZN~^^^^^^^^^^~11/01/2006~
-~06965~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~
-~06965~^~334~^0.^0^^~4~^~BFZN~^^^^^^^^^^~11/01/2006~
-~06965~^~337~^0.^0^^~4~^~BFZN~^^^^^^^^^^~11/01/2006~
-~06965~^~338~^0.^0^^~4~^~BFZN~^^^^^^^^^^~11/01/2006~
-~06965~^~417~^1.^0^^~4~^~BFZN~^^^^^^^^^^~11/01/2006~
-~06965~^~431~^0.^0^^~4~^~BFZN~^^^^^^^^^^~11/01/2006~
-~06965~^~432~^1.^0^^~4~^~BFZN~^^^^^^^^^^~11/01/2006~
-~06965~^~435~^1.^0^^~4~^~NC~^^^^^^^^^^~11/01/2006~
-~06965~^~601~^0.^0^^~4~^~BFZN~^^^^^^^^^^~11/01/2006~
-~06966~^~208~^25.^0^^~6~^~RPI~^^^^^^^^^^~11/01/2006~
-~06966~^~262~^0.^0^^~6~^~RPI~^^^^^^^^^^~11/01/2006~
-~06966~^~263~^0.^0^^~6~^~RPI~^^^^^^^^^^~11/01/2006~
-~06966~^~268~^106.^0^^~6~^~RPI~^^^^^^^^^^~11/01/2006~
-~06966~^~301~^6.^0^^~1~^~RPA~^^^^^^^^^^~11/01/2006~
-~06966~^~304~^4.^0^^~1~^~RPA~^^^^^^^^^^~11/01/2006~
-~06966~^~305~^17.^0^^~1~^~RPA~^^^^^^^^^^~11/01/2006~
-~06966~^~306~^22.^0^^~1~^~RPA~^^^^^^^^^^~11/01/2006~
-~06966~^~307~^173.^0^^~4~^~FLA~^^^^^^^^^^~04/01/2003~
-~06966~^~318~^201.^0^^~6~^~RPI~^^^^^^^^^^~11/01/2006~
-~06966~^~319~^1.^0^^~6~^~RPI~^^^^^^^^^^~11/01/2006~
-~06966~^~320~^11.^0^^~6~^~RPI~^^^^^^^^^^~11/01/2006~
-~06966~^~321~^119.^0^^~6~^~RPI~^^^^^^^^^^~11/01/2006~
-~06966~^~322~^0.^0^^~6~^~RPI~^^^^^^^^^^~11/01/2006~
-~06966~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~
-~06966~^~334~^0.^0^^~6~^~RPI~^^^^^^^^^^~11/01/2006~
-~06966~^~337~^0.^0^^~6~^~RPI~^^^^^^^^^^~11/01/2006~
-~06966~^~338~^4.^0^^~6~^~RPI~^^^^^^^^^^~11/01/2006~
-~06966~^~417~^8.^0^^~6~^~RPI~^^^^^^^^^^~11/01/2006~
-~06966~^~431~^6.^0^^~6~^~RPI~^^^^^^^^^^~11/01/2006~
-~06966~^~432~^2.^0^^~6~^~RPI~^^^^^^^^^^~11/01/2006~
-~06966~^~435~^12.^0^^~4~^~NC~^^^^^^^^^^~11/01/2006~
-~06966~^~601~^5.^0^^~6~^~RPI~^^^^^^^^^^~11/01/2006~
-~06967~^~208~^33.^0^^~6~^~RPI~^^^^^^^^^^~11/01/2006~
-~06967~^~262~^0.^0^^~6~^~RPI~^^^^^^^^^^~11/01/2006~
-~06967~^~263~^0.^0^^~6~^~RPI~^^^^^^^^^^~11/01/2006~
-~06967~^~268~^137.^0^^~6~^~RPI~^^^^^^^^^^~11/01/2006~
-~06967~^~301~^12.^0^^~6~^~RPI~^^^^^^^^^^~11/01/2006~
-~06967~^~304~^13.^0^^~6~^~RPI~^^^^^^^^^^~11/01/2006~
-~06967~^~305~^23.^0^^~6~^~RPI~^^^^^^^^^^~11/01/2006~
-~06967~^~306~^217.^0^^~6~^~RPI~^^^^^^^^^^~11/01/2006~
-~06967~^~307~^194.^0^^~6~^~RPI~^^^^^^^^^^~11/01/2006~
-~06967~^~318~^860.^0^^~6~^~RPI~^^^^^^^^^^~11/01/2006~
-~06967~^~319~^0.^0^^~6~^~RPI~^^^^^^^^^^~11/01/2006~
-~06967~^~320~^43.^0^^~6~^~RPI~^^^^^^^^^^~11/01/2006~
-~06967~^~321~^437.^0^^~6~^~RPI~^^^^^^^^^^~11/01/2006~
-~06967~^~322~^157.^0^^~6~^~RPI~^^^^^^^^^^~11/01/2006~
-~06967~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~
-~06967~^~334~^1.^0^^~6~^~RPI~^^^^^^^^^^~11/01/2006~
-~06967~^~337~^6924.^0^^~6~^~RPI~^^^^^^^^^^~11/01/2006~
-~06967~^~338~^23.^0^^~6~^~RPI~^^^^^^^^^^~11/01/2006~
-~06967~^~417~^6.^0^^~6~^~RPI~^^^^^^^^^^~11/01/2006~
-~06967~^~431~^0.^0^^~6~^~RPI~^^^^^^^^^^~11/01/2006~
-~06967~^~432~^6.^0^^~6~^~RPI~^^^^^^^^^^~11/01/2006~
-~06967~^~435~^6.^0^^~4~^~NC~^^^^^^^^^^~05/01/2007~
-~06967~^~601~^0.^0^^~6~^~RPI~^^^^^^^^^^~11/01/2006~
-~06968~^~208~^53.^0^^~4~^^^^^^^^^^^~05/01/2005~
-~06968~^~262~^0.^0^^~4~^~FLA~^^^^^^^^^^~03/01/2003~
-~06968~^~263~^0.^0^^~4~^~FLA~^^^^^^^^^^~03/01/2003~
-~06968~^~268~^222.^0^^~4~^^^^^^^^^^^~05/01/2005~
-~06968~^~301~^19.^0^^~4~^^^^^^^^^^^~05/01/2005~
-~06968~^~304~^2.^0^^~4~^^^^^^^^^^^~05/01/2005~
-~06968~^~305~^20.^0^^~4~^^^^^^^^^^^~05/01/2005~
-~06968~^~306~^41.^0^^~4~^^^^^^^^^^^~05/01/2005~
-~06968~^~307~^20.^1^^~1~^^^^^^^^^^^~05/01/2005~
-~06968~^~318~^24.^0^^~4~^~FLA~^^^^^^^^^^~03/01/2003~
-~06968~^~319~^7.^0^^~4~^~FLA~^^^^^^^^^^~03/01/2003~
-~06968~^~320~^7.^0^^~4~^~FLA~^^^^^^^^^^~03/01/2003~
-~06968~^~321~^1.^0^^~4~^~FLA~^^^^^^^^^^~03/01/2003~
-~06968~^~322~^0.^0^^~4~^~FLA~^^^^^^^^^^~03/01/2003~
-~06968~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~
-~06968~^~334~^0.^0^^~4~^~FLA~^^^^^^^^^^~03/01/2003~
-~06968~^~337~^0.^0^^~4~^~FLA~^^^^^^^^^^~03/01/2003~
-~06968~^~338~^0.^0^^~4~^~FLA~^^^^^^^^^^~03/01/2003~
-~06968~^~417~^8.^0^^~4~^~FLA~^^^^^^^^^^~03/01/2003~
-~06968~^~431~^2.^0^^~4~^~FLA~^^^^^^^^^^~03/01/2003~
-~06968~^~432~^5.^0^^~4~^~FLA~^^^^^^^^^^~03/01/2003~
-~06968~^~435~^9.^0^^~4~^~NC~^^^^^^^^^^~06/01/2008~
-~06968~^~601~^1.^0^^~4~^^^^^^^^^^^~05/01/2005~
-~06969~^~208~^343.^0^^~4~^^^^^^^^^^^~05/01/2005~
-~06969~^~262~^0.^0^^~4~^~FLA~^^^^^^^^^^~03/01/2003~
-~06969~^~263~^0.^0^^~4~^~FLA~^^^^^^^^^^~03/01/2003~
-~06969~^~268~^1435.^0^^~4~^^^^^^^^^^^~05/01/2005~
-~06969~^~301~^172.^0^^~4~^^^^^^^^^^^~05/01/2005~
-~06969~^~304~^62.^0^^~4~^^^^^^^^^^^~05/01/2005~
-~06969~^~305~^279.^0^^~4~^^^^^^^^^^^~05/01/2005~
-~06969~^~306~^1248.^0^^~4~^^^^^^^^^^^~05/01/2005~
-~06969~^~307~^2400.^1^^~8~^~LC~^^^^^^^^^^~09/01/2012~
-~06969~^~318~^60.^0^^~4~^~FLA~^^^^^^^^^^~03/01/2003~
-~06969~^~319~^0.^0^^~4~^~FLA~^^^^^^^^^^~05/01/2005~
-~06969~^~320~^3.^0^^~4~^~FLA~^^^^^^^^^^~05/01/2005~
-~06969~^~321~^32.^0^^~4~^~FLA~^^^^^^^^^^~03/01/2003~
-~06969~^~322~^7.^0^^~4~^~FLA~^^^^^^^^^^~03/01/2003~
-~06969~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~
-~06969~^~334~^0.^0^^~4~^~FLA~^^^^^^^^^^~03/01/2003~
-~06969~^~337~^2.^0^^~4~^~FLA~^^^^^^^^^^~03/01/2003~
-~06969~^~338~^59.^0^^~4~^~FLA~^^^^^^^^^^~03/01/2003~
-~06969~^~417~^61.^0^^~4~^~FLA~^^^^^^^^^^~05/01/2005~
-~06969~^~431~^4.^0^^~4~^~FLA~^^^^^^^^^^~05/01/2005~
-~06969~^~432~^57.^0^^~4~^~FLA~^^^^^^^^^^~05/01/2005~
-~06969~^~435~^64.^0^^~4~^~NC~^^^^^^^^^^~11/01/2006~
-~06969~^~601~^12.^0^^~4~^^^^^^^^^^^~05/01/2005~
-~06970~^~208~^16.^0^^~4~^^^^^^^^^^^~05/01/2005~
-~06970~^~262~^0.^0^^~4~^~FLA~^^^^^^^^^^~03/01/2003~
-~06970~^~263~^0.^0^^~4~^~FLA~^^^^^^^^^^~03/01/2003~
-~06970~^~268~^67.^0^^~4~^^^^^^^^^^^~05/01/2005~
-~06970~^~301~^4.^0^^~4~^^^^^^^^^^^~05/01/2005~
-~06970~^~304~^1.^0^^~4~^^^^^^^^^^^~05/01/2005~
-~06970~^~305~^30.^0^^~4~^^^^^^^^^^^~05/01/2005~
-~06970~^~306~^86.^0^^~4~^^^^^^^^^^^~05/01/2005~
-~06970~^~307~^30.^0^^~4~^^^^^^^^^^^~05/01/2005~
-~06970~^~318~^0.^0^^~4~^~FLA~^^^^^^^^^^~04/01/2003~
-~06970~^~319~^0.^0^^~4~^~FLA~^^^^^^^^^^~03/01/2003~
-~06970~^~320~^0.^0^^~4~^~FLA~^^^^^^^^^^~04/01/2003~
-~06970~^~321~^0.^0^^~4~^~FLA~^^^^^^^^^^~03/01/2003~
-~06970~^~322~^0.^0^^~4~^~FLA~^^^^^^^^^^~03/01/2003~
-~06970~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~
-~06970~^~334~^0.^0^^~4~^~FLA~^^^^^^^^^^~03/01/2003~
-~06970~^~337~^0.^0^^~4~^~FLA~^^^^^^^^^^~03/01/2003~
-~06970~^~338~^0.^0^^~4~^~FLA~^^^^^^^^^^~03/01/2003~
-~06970~^~417~^0.^0^^~4~^~FLA~^^^^^^^^^^~05/01/2005~
-~06970~^~431~^0.^0^^~4~^~FLA~^^^^^^^^^^~03/01/2003~
-~06970~^~432~^0.^0^^~4~^~FLA~^^^^^^^^^^~04/01/2003~
-~06970~^~435~^0.^0^^~4~^~NC~^^^^^^^^^^~11/01/2006~
-~06970~^~601~^0.^0^^~4~^^^^^^^^^^^~05/01/2005~
-~06971~^~208~^77.^0^^~4~^~NC~^^^^^^^^^^~07/01/2017~
-~06971~^~262~^0.^0^^~4~^~FLA~^^^^^^^^^^~01/01/2003~
-~06971~^~263~^0.^0^^~4~^~FLA~^^^^^^^^^^~01/01/2003~
-~06971~^~268~^321.^0^^~4~^~NC~^^^^^^^^^^~07/01/2017~
-~06971~^~301~^107.^1^^~1~^^^^^^^^^^^~05/01/2005~
-~06971~^~304~^13.^1^^~1~^^^^^^^^^^^~05/01/2005~
-~06971~^~305~^60.^1^^~1~^^^^^^^^^^^~05/01/2005~
-~06971~^~306~^800.^1^^~1~^^^^^^^^^^^~05/01/2005~
-~06971~^~307~^1300.^1^^~8~^~LC~^^^^^^^^^^~07/01/2017~
-~06971~^~318~^79.^0^^~4~^~NC~^^^^^^^^^^~04/01/2003~
-~06971~^~319~^1.^0^^~4~^~FLA~^^^^^^^^^^~11/01/2002~
-~06971~^~320~^5.^0^^~4~^~NC~^^^^^^^^^^~04/01/2003~
-~06971~^~321~^43.^0^^~4~^~FLA~^^^^^^^^^^~11/01/2002~
-~06971~^~322~^1.^0^^~4~^~FLA~^^^^^^^^^^~11/01/2002~
-~06971~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~
-~06971~^~334~^3.^0^^~4~^~FLA~^^^^^^^^^^~11/01/2002~
-~06971~^~337~^0.^0^^~4~^~FLA~^^^^^^^^^^~11/01/2002~
-~06971~^~338~^48.^0^^~4~^~FLA~^^^^^^^^^^~11/01/2002~
-~06971~^~417~^8.^0^^~4~^~FLA~^^^^^^^^^^~01/01/2003~
-~06971~^~431~^0.^0^^~4~^~FLA~^^^^^^^^^^~01/01/2003~
-~06971~^~432~^8.^0^^~4~^~FLA~^^^^^^^^^^~01/01/2003~
-~06971~^~435~^8.^0^^~4~^~NC~^^^^^^^^^^~11/01/2006~
-~06971~^~601~^0.^0^^~7~^^^^^^^^^^^~05/01/2005~
-~06972~^~208~^92.^0^^~4~^~NC~^^^^^^^^^^~08/01/2015~
-~06972~^~262~^0.^0^^~4~^~FLA~^^^^^^^^^^~01/01/2003~
-~06972~^~263~^0.^0^^~4~^~FLA~^^^^^^^^^^~01/01/2003~
-~06972~^~268~^384.^0^^~4~^~NC~^^^^^^^^^^~08/01/2015~
-~06972~^~301~^20.^0^^~4~^~FLA~^^^^^^^^^^~08/01/2015~
-~06972~^~304~^12.^0^^~4~^~FLA~^^^^^^^^^^~08/01/2015~
-~06972~^~305~^52.^0^^~4~^~FLA~^^^^^^^^^^~08/01/2015~
-~06972~^~306~^370.^0^^~4~^~FLA~^^^^^^^^^^~08/01/2015~
-~06972~^~307~^1338.^0^^~4~^~FLA~^^^^^^^^^^~08/01/2015~
-~06972~^~318~^680.^0^^~4~^~NC~^^^^^^^^^^~01/01/2003~
-~06972~^~319~^0.^0^^~4~^~FLA~^^^^^^^^^^~01/01/2003~
-~06972~^~320~^34.^0^^~4~^~NC~^^^^^^^^^^~01/01/2003~
-~06972~^~321~^402.^0^^~4~^~FLA~^^^^^^^^^^~01/01/2003~
-~06972~^~322~^13.^0^^~4~^~FLA~^^^^^^^^^^~01/01/2003~
-~06972~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~
-~06972~^~334~^0.^0^^~4~^~FLA~^^^^^^^^^^~01/01/2003~
-~06972~^~337~^12819.^0^^~4~^~FLA~^^^^^^^^^^~01/01/2003~
-~06972~^~338~^1.^0^^~4~^~FLA~^^^^^^^^^^~01/01/2003~
-~06972~^~417~^9.^0^^~4~^~FLA~^^^^^^^^^^~01/01/2003~
-~06972~^~431~^0.^0^^~4~^~FLA~^^^^^^^^^^~01/01/2003~
-~06972~^~432~^9.^0^^~4~^~FLA~^^^^^^^^^^~01/01/2003~
-~06972~^~435~^9.^0^^~4~^~NC~^^^^^^^^^^~11/01/2006~
-~06972~^~601~^0.^0^^~4~^~FLA~^^^^^^^^^^~08/01/2015~
-~06974~^~208~^69.^1^^~1~^^^^^^^^^^^~05/01/2005~
-~06974~^~262~^0.^0^^~4~^~FLA~^^^^^^^^^^~03/01/2003~
-~06974~^~263~^0.^0^^~4~^~FLA~^^^^^^^^^^~03/01/2003~
-~06974~^~268~^289.^1^^~1~^^^^^^^^^^^~05/01/2005~
-~06974~^~301~^11.^1^^~1~^^^^^^^^^^^~05/01/2005~
-~06974~^~304~^4.^0^^~4~^^^^^^^^^^^~05/01/2005~
-~06974~^~305~^44.^0^^~4~^^^^^^^^^^^~05/01/2005~
-~06974~^~306~^153.^0^^~4~^^^^^^^^^^^~05/01/2005~
-~06974~^~307~^35.^1^^~1~^^^^^^^^^^^~05/01/2005~
-~06974~^~318~^2496.^0^^~4~^~FLA~^^^^^^^^^^~03/01/2003~
-~06974~^~319~^15.^0^^~4~^~FLA~^^^^^^^^^^~03/01/2003~
-~06974~^~320~^138.^0^^~4~^~FLA~^^^^^^^^^^~03/01/2003~
-~06974~^~321~^1195.^0^^~4~^~FLA~^^^^^^^^^^~03/01/2003~
-~06974~^~322~^536.^0^^~4~^~FLA~^^^^^^^^^^~03/01/2003~
-~06974~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~
-~06974~^~334~^8.^0^^~4~^~FLA~^^^^^^^^^^~03/01/2003~
-~06974~^~337~^139.^0^^~4~^~FLA~^^^^^^^^^^~03/01/2003~
-~06974~^~338~^116.^0^^~4~^~FLA~^^^^^^^^^^~03/01/2003~
-~06974~^~417~^18.^0^^~4~^~FLA~^^^^^^^^^^~03/01/2003~
-~06974~^~431~^2.^0^^~4~^~FLA~^^^^^^^^^^~03/01/2003~
-~06974~^~432~^16.^0^^~4~^~FLA~^^^^^^^^^^~03/01/2003~
-~06974~^~435~^19.^0^^~4~^~NC~^^^^^^^^^^~11/01/2006~
-~06974~^~601~^7.^0^^~4~^^^^^^^^^^^~05/01/2005~
-~06976~^~208~^51.^0^^~4~^~NC~^^^^^^^^^^~05/01/2011~
-~06976~^~262~^0.^0^^~4~^~BFZN~^~06931~^^^^^^^^^~11/01/2006~
-~06976~^~263~^0.^0^^~4~^~BFZN~^~06931~^^^^^^^^^~11/01/2006~
-~06976~^~268~^214.^0^^~4~^~NC~^^^^^^^^^^~05/01/2011~
-~06976~^~301~^27.^36^0.^~1~^~A~^^^1^18.^37.^35^25.^28.^~4~^~05/01/2011~
-~06976~^~304~^18.^36^0.^~1~^~A~^^^1^13.^26.^35^17.^19.^~4~^~05/01/2011~
-~06976~^~305~^34.^36^0.^~1~^~A~^^^1^25.^40.^35^32.^35.^~4~^~05/01/2011~
-~06976~^~306~^319.^36^5.^~1~^~A~^^^1^244.^373.^35^307.^330.^~4~^~05/01/2011~
-~06976~^~307~^30.^0^^~8~^~LC~^^^^^^^^^^~05/01/2011~
-~06976~^~318~^650.^0^^~1~^~AS~^^^^^^^^^^~05/01/2011~
-~06976~^~319~^0.^0^^~4~^~BFSN~^~06931~^^^^^^^^^~07/01/2008~
-~06976~^~320~^33.^0^^~4~^~NC~^~06931~^^^^^^^^^~05/01/2011~
-~06976~^~321~^390.^18^15.^~1~^~A~^^^1^291.^546.^17^357.^422.^~4~^~05/01/2011~
-~06976~^~322~^0.^18^0.^~1~^~A~^^^1^0.^0.^17^0.^0.^~1, 4~^~05/01/2011~
-~06976~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~
-~06976~^~334~^0.^18^0.^~1~^~A~^^^1^0.^0.^17^0.^0.^~1, 4~^~05/01/2011~
-~06976~^~337~^12665.^18^396.^~1~^~A~^^^1^8927.^14616.^17^11828.^13500.^~4~^~05/01/2011~
-~06976~^~338~^190.^18^11.^~1~^~A~^^^1^118.^297.^17^164.^215.^~4~^~05/01/2011~
-~06976~^~417~^13.^0^^~4~^~BFZN~^~06931~^^^^^^^^^~11/01/2006~
-~06976~^~431~^0.^0^^~4~^~BFZN~^~06931~^^^^^^^^^~11/01/2006~
-~06976~^~432~^13.^0^^~4~^~BFZN~^~06931~^^^^^^^^^~11/01/2006~
-~06976~^~435~^13.^0^^~4~^~NC~^~06931~^^^^^^^^^~07/01/2008~
-~06976~^~601~^2.^0^^~4~^~BFZN~^~06931~^^^^^^^^^~11/01/2006~
-~06977~^~208~^53.^0^^~4~^^^^^^^^^^^~05/01/2005~
-~06977~^~262~^0.^0^^~4~^~FLA~^^^^^^^^^^~03/01/2003~
-~06977~^~263~^0.^0^^~4~^~FLA~^^^^^^^^^^~03/01/2003~
-~06977~^~268~^222.^0^^~4~^^^^^^^^^^^~05/01/2005~
-~06977~^~301~^6.^0^^~4~^^^^^^^^^^^~05/01/2005~
-~06977~^~304~^2.^0^^~4~^^^^^^^^^^^~05/01/2005~
-~06977~^~305~^30.^0^^~4~^^^^^^^^^^^~05/01/2005~
-~06977~^~306~^81.^0^^~4~^^^^^^^^^^^~05/01/2005~
-~06977~^~307~^18.^1^^~12~^^^^^^^^^^^~05/01/2005~
-~06977~^~318~^0.^0^^~4~^~FLA~^^^^^^^^^^~03/01/2003~
-~06977~^~319~^0.^0^^~4~^~FLA~^^^^^^^^^^~03/01/2003~
-~06977~^~320~^0.^0^^~4~^~FLA~^^^^^^^^^^~03/01/2003~
-~06977~^~321~^0.^0^^~4~^~FLA~^^^^^^^^^^~03/01/2003~
-~06977~^~322~^0.^0^^~4~^~FLA~^^^^^^^^^^~03/01/2003~
-~06977~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~
-~06977~^~334~^0.^0^^~4~^~FLA~^^^^^^^^^^~03/01/2003~
-~06977~^~337~^0.^0^^~4~^~FLA~^^^^^^^^^^~03/01/2003~
-~06977~^~338~^1.^0^^~4~^~FLA~^^^^^^^^^^~03/01/2003~
-~06977~^~417~^25.^0^^~4~^~FLA~^^^^^^^^^^~05/01/2005~
-~06977~^~431~^0.^0^^~4~^~FLA~^^^^^^^^^^~05/01/2005~
-~06977~^~432~^25.^0^^~4~^~FLA~^^^^^^^^^^~05/01/2005~
-~06977~^~435~^25.^0^^~4~^~NC~^^^^^^^^^^~11/01/2006~
-~06977~^~601~^3.^0^^~4~^^^^^^^^^^^~05/01/2005~
-~06978~^~208~^69.^1^^~1~^^^^^^^^^^^~05/01/2005~
-~06978~^~262~^0.^0^^~4~^~FLA~^^^^^^^^^^~03/01/2003~
-~06978~^~263~^0.^0^^~4~^~FLA~^^^^^^^^^^~03/01/2003~
-~06978~^~268~^289.^1^^~1~^^^^^^^^^^^~05/01/2005~
-~06978~^~301~^13.^1^^~1~^^^^^^^^^^^~05/01/2005~
-~06978~^~304~^2.^0^^~4~^^^^^^^^^^^~05/01/2005~
-~06978~^~305~^50.^0^^~4~^^^^^^^^^^^~05/01/2005~
-~06978~^~306~^140.^0^^~4~^^^^^^^^^^^~05/01/2005~
-~06978~^~307~^25.^1^^~1~^^^^^^^^^^^~05/01/2005~
-~06978~^~318~^1967.^0^^~4~^~FLA~^^^^^^^^^^~03/01/2003~
-~06978~^~319~^0.^0^^~4~^~FLA~^^^^^^^^^^~03/01/2003~
-~06978~^~320~^98.^0^^~4~^~FLA~^^^^^^^^^^~03/01/2003~
-~06978~^~321~^961.^0^^~4~^~FLA~^^^^^^^^^^~03/01/2003~
-~06978~^~322~^438.^0^^~4~^~FLA~^^^^^^^^^^~03/01/2003~
-~06978~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~
-~06978~^~334~^0.^0^^~4~^~FLA~^^^^^^^^^^~03/01/2003~
-~06978~^~337~^722.^0^^~4~^~FLA~^^^^^^^^^^~03/01/2003~
-~06978~^~338~^47.^0^^~4~^~FLA~^^^^^^^^^^~03/01/2003~
-~06978~^~417~^5.^0^^~4~^~FLA~^^^^^^^^^^~03/01/2003~
-~06978~^~431~^0.^0^^~4~^~FLA~^^^^^^^^^^~03/01/2003~
-~06978~^~432~^5.^0^^~4~^~FLA~^^^^^^^^^^~03/01/2003~
-~06978~^~435~^5.^0^^~4~^~NC~^^^^^^^^^^~11/01/2006~
-~06978~^~601~^6.^0^^~4~^^^^^^^^^^^~05/01/2005~
-~06980~^~208~^98.^1^^~1~^^^^^^^^^^^~05/01/2005~
-~06980~^~262~^0.^0^^~4~^~FLA~^^^^^^^^^^~03/01/2003~
-~06980~^~263~^0.^0^^~4~^~FLA~^^^^^^^^^^~03/01/2003~
-~06980~^~268~^410.^1^^~1~^^^^^^^^^^^~05/01/2005~
-~06980~^~301~^20.^1^^~1~^^^^^^^^^^^~05/01/2005~
-~06980~^~304~^2.^0^^~4~^^^^^^^^^^^~05/01/2005~
-~06980~^~305~^50.^0^^~4~^^^^^^^^^^^~05/01/2005~
-~06980~^~306~^140.^0^^~4~^^^^^^^^^^^~05/01/2005~
-~06980~^~307~^435.^1^^~1~^^^^^^^^^^^~05/01/2005~
-~06980~^~318~^820.^0^^~4~^~FLA~^^^^^^^^^^~03/01/2003~
-~06980~^~319~^51.^0^^~4~^~FLA~^^^^^^^^^^~03/01/2003~
-~06980~^~320~^84.^0^^~4~^~FLA~^^^^^^^^^^~03/01/2003~
-~06980~^~321~^365.^0^^~4~^~FLA~^^^^^^^^^^~03/01/2003~
-~06980~^~322~^49.^0^^~4~^~FLA~^^^^^^^^^^~03/01/2003~
-~06980~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~
-~06980~^~334~^1.^0^^~4~^~FLA~^^^^^^^^^^~03/01/2003~
-~06980~^~337~^14.^0^^~4~^~FLA~^^^^^^^^^^~03/01/2003~
-~06980~^~338~^386.^0^^~4~^~FLA~^^^^^^^^^^~03/01/2003~
-~06980~^~417~^67.^0^^~4~^~FLA~^^^^^^^^^^~03/01/2003~
-~06980~^~431~^10.^0^^~4~^~FLA~^^^^^^^^^^~03/01/2003~
-~06980~^~432~^56.^0^^~4~^~FLA~^^^^^^^^^^~03/01/2003~
-~06980~^~435~^74.^0^^~4~^~NC~^^^^^^^^^^~03/01/2007~
-~06980~^~601~^21.^0^^~4~^^^^^^^^^^^~05/01/2005~
-~06981~^~208~^438.^0^^~4~^~FLA~^^^^^^^^^^~04/01/2003~
-~06981~^~262~^0.^0^^~4~^~FLA~^^^^^^^^^^~03/01/2003~
-~06981~^~263~^0.^0^^~4~^~FLA~^^^^^^^^^^~03/01/2003~
-~06981~^~268~^1832.^0^^~4~^~FLA~^^^^^^^^^^~04/01/2003~
-~06981~^~301~^187.^0^^~4~^^^^^^^^^^^~05/01/2005~
-~06981~^~304~^56.^0^^~4~^^^^^^^^^^^~05/01/2005~
-~06981~^~305~^166.^0^^~4~^^^^^^^^^^^~05/01/2005~
-~06981~^~306~^309.^0^^~4~^^^^^^^^^^^~05/01/2005~
-~06981~^~307~^1067.^0^^~4~^^^^^^^^^^^~05/01/2005~
-~06981~^~318~^500.^0^^~4~^~FLA~^^^^^^^^^^~04/01/2003~
-~06981~^~319~^0.^0^^~4~^~FLA~^^^^^^^^^^~03/01/2003~
-~06981~^~320~^25.^0^^~4~^~FLA~^^^^^^^^^^~04/01/2003~
-~06981~^~321~^264.^0^^~4~^~FLA~^^^^^^^^^^~04/01/2003~
-~06981~^~322~^70.^0^^~4~^~FLA~^^^^^^^^^^~04/01/2003~
-~06981~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~
-~06981~^~334~^1.^0^^~4~^~FLA~^^^^^^^^^^~03/01/2003~
-~06981~^~337~^19.^0^^~4~^~FLA~^^^^^^^^^^~04/01/2003~
-~06981~^~338~^272.^0^^~4~^~FLA~^^^^^^^^^^~04/01/2003~
-~06981~^~417~^21.^0^^~4~^~FLA~^^^^^^^^^^~05/01/2005~
-~06981~^~431~^0.^0^^~4~^~FLA~^^^^^^^^^^~04/01/2003~
-~06981~^~432~^21.^0^^~4~^~FLA~^^^^^^^^^^~04/01/2003~
-~06981~^~435~^21.^0^^~4~^~NC~^^^^^^^^^^~11/01/2006~
-~06981~^~601~^13.^0^^~4~^^^^^^^^^^^~05/01/2005~
-~06982~^~208~^441.^0^^~4~^~NC~^^^^^^^^^^~04/01/2013~
-~06982~^~268~^1846.^0^^~4~^~NC~^^^^^^^^^^~04/01/2013~
-~06982~^~301~^21.^12^0.^~1~^~A~^^^1^20.^22.^6^20.^21.^~2, 3~^~04/01/2013~
-~06982~^~304~^25.^12^0.^~1~^~A~^^^1^23.^32.^9^24.^26.^~2, 3~^~04/01/2013~
-~06982~^~305~^115.^12^0.^~1~^~A~^^^1^109.^133.^8^113.^117.^~2, 3~^~04/01/2013~
-~06982~^~306~^177.^12^1.^~1~^~A~^^^1^152.^189.^6^173.^179.^~2, 3~^~04/01/2013~
-~06982~^~307~^1727.^12^11.^~1~^~A~^^^1^1620.^1810.^7^1699.^1754.^~2, 3~^~04/01/2013~
-~06982~^~319~^0.^0^^~4~^~FLA~^^^^^^^^^^~04/01/2004~
-~06982~^~417~^111.^4^4.^~1~^~A~^^^1^104.^123.^2^90.^132.^~2, 3~^~04/01/2013~
-~06983~^~208~^439.^0^^~4~^~NC~^^^^^^^^^^~04/01/2013~
-~06983~^~268~^1839.^0^^~4~^~NC~^^^^^^^^^^~04/01/2013~
-~06983~^~301~^22.^12^0.^~1~^~A~^^^1^17.^44.^5^20.^23.^~2, 3~^~04/01/2013~
-~06983~^~304~^25.^12^0.^~1~^~A~^^^1^21.^30.^5^22.^27.^~2, 3~^~04/01/2013~
-~06983~^~305~^115.^12^2.^~1~^~A~^^^1^106.^130.^5^109.^121.^~2, 3~^~04/01/2013~
-~06983~^~306~^183.^12^3.^~1~^~A~^^^1^136.^205.^5^174.^191.^~2, 3~^~04/01/2013~
-~06983~^~307~^1923.^12^13.^~1~^~A~^^^1^1840.^2300.^8^1890.^1955.^~2, 3~^~04/01/2013~
-~06983~^~337~^0.^0^^~4~^~FLA~^^^^^^^^^^~04/01/2004~
-~06983~^~417~^118.^4^18.^~1~^~A~^^^1^97.^139.^1^-105.^341.^~2, 3~^~04/01/2013~
-~06985~^~208~^39.^0^^~4~^~NC~^^^^^^^^^^~04/01/2005~
-~06985~^~268~^165.^0^^~4~^~NC~^^^^^^^^^^~04/01/2005~
-~06985~^~301~^6.^1^^~1~^~A~^^^^^^^^^^~04/01/2004~
-~06985~^~304~^3.^1^^~1~^~A~^^^^^^^^^^~04/01/2004~
-~06985~^~305~^10.^1^^~1~^~A~^^^^^^^^^^~04/01/2004~
-~06985~^~306~^22.^1^^~1~^~A~^^^^^^^^^^~04/01/2004~
-~06985~^~307~^587.^1^^~1~^~A~^^^^^^^^^^~04/01/2004~
-~06985~^~417~^4.^1^^~1~^~A~^^^^^^^^^~1~^~04/01/2004~
-~06985~^~432~^4.^1^^~1~^~A~^^^^^^^^^^~10/01/2004~
-~06985~^~601~^2.^1^^~1~^~A~^^^^^^^^^^~04/01/2004~
-~06999~^~208~^51.^0^^~4~^~NC~^^^^^^^^^^~02/01/2015~
-~06999~^~268~^215.^0^^~4~^~NC~^^^^^^^^^^~02/01/2015~
-~06999~^~301~^12.^6^0.^~1~^~A~^^^1^10.^15.^5^9.^13.^~2, 3~^~02/01/2015~
-~06999~^~304~^3.^6^0.^~1~^~A~^^^1^3.^3.^5^2.^3.^~2, 3~^~02/01/2015~
-~06999~^~305~^15.^6^0.^~1~^~A~^^^1^13.^17.^5^13.^15.^~2, 3~^~02/01/2015~
-~06999~^~306~^55.^6^2.^~1~^~A~^^^1^48.^63.^5^48.^61.^~2, 3~^~02/01/2015~
-~06999~^~307~^424.^6^3.^~1~^~A~^^^1^412.^438.^5^415.^433.^~2, 3~^~02/01/2015~
-~06999~^~601~^6.^3^0.^~1~^~A~^^^1^5.^7.^2^3.^9.^~2, 3~^~02/01/2015~
-~07001~^~208~^173.^0^^~4~^~NC~^^^^^^^^^^~09/01/1980~
-~07001~^~268~^724.^0^^~4~^^^^^^^^^^^
-~07001~^~301~^55.^5^4.^~1~^^^^^^^^^^^~09/01/1980~
-~07001~^~304~^17.^5^1.^~1~^^^^^^^^^^^~09/01/1980~
-~07001~^~305~^132.^5^12.^~1~^^^^^^^^^^^~09/01/1980~
-~07001~^~306~^329.^5^6.^~1~^^^^^^^^^^^~09/01/1980~
-~07001~^~307~^1334.^5^47.^~1~^^^^^^^^^^^~09/01/1980~
-~07001~^~318~^68.^0^^~4~^^^^^^^^^^^~09/01/1980~
-~07001~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2002~
-~07001~^~320~^3.^0^^~4~^^^^^^^^^^^~06/01/2002~
-~07001~^~324~^36.^0^^~4~^~T~^^^^^^^^^^~01/01/2001~
-~07001~^~417~^9.^0^^~4~^^^^^^^^^^^~09/01/1980~
-~07001~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~
-~07001~^~432~^9.^0^^~4~^^^^^^^^^^^~09/01/1980~
-~07001~^~435~^9.^0^^~4~^~NC~^^^^^^^^^^~01/01/2001~
-~07001~^~601~^37.^5^3.^~1~^^^^^^^^^^^~09/01/1980~
-~07001~^~636~^0.^0^^~4~^^^^^^^^^^^~09/01/1980~
-~07002~^~208~^277.^0^^~4~^~NC~^^^^^^^^^^~08/01/2012~
-~07002~^~262~^0.^0^^~4~^~FLC~^^^^^^^^^^~10/01/2002~
-~07002~^~263~^0.^0^^~4~^~FLC~^^^^^^^^^^~10/01/2002~
-~07002~^~268~^1159.^0^^~4~^~NC~^^^^^^^^^^~08/01/2012~
-~07002~^~301~^27.^0^^~4~^~FLC~^^^^^^^^^^~03/01/2003~
-~07002~^~304~^19.^0^^~4~^~FLC~^^^^^^^^^^~03/01/2003~
-~07002~^~305~^135.^0^^~4~^~FLC~^^^^^^^^^^~03/01/2003~
-~07002~^~306~^244.^0^^~4~^~FLC~^^^^^^^^^^~03/01/2003~
-~07002~^~307~^881.^0^^~8~^~LC~^^^^^^^^^^~08/01/2012~
-~07002~^~318~^10.^0^^~4~^~FLC~^^^^^^^^^^~03/01/2003~
-~07002~^~319~^3.^0^^~4~^~NR~^^^^^^^^^^~07/01/2004~
-~07002~^~320~^3.^0^^~4~^~NC~^^^^^^^^^^~07/01/2004~
-~07002~^~321~^0.^0^^~7~^~Z~^^^^^^^^^^~08/01/2002~
-~07002~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~08/01/2002~
-~07002~^~324~^36.^0^^~4~^~T~^^^^^^^^^^~01/01/2001~
-~07002~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~08/01/2002~
-~07002~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~08/01/2002~
-~07002~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~08/01/2002~
-~07002~^~417~^5.^0^^~4~^~FLC~^^^^^^^^^^~03/01/2003~
-~07002~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~
-~07002~^~432~^5.^0^^~4~^~FLC~^^^^^^^^^^~04/01/2007~
-~07002~^~435~^5.^0^^~4~^~NC~^^^^^^^^^^~03/01/2009~
-~07002~^~601~^62.^0^^~4~^~FLC~^^^^^^^^^^~03/01/2003~
-~07003~^~208~^238.^0^^~4~^~NC~^^^^^^^^^^~09/01/1980~
-~07003~^~268~^996.^0^^~4~^^^^^^^^^^^~02/01/2006~
-~07003~^~301~^8.^5^0.^~1~^^^^^^^^^^^~09/01/1980~
-~07003~^~304~^13.^5^0.^~1~^^^^^^^^^^^~09/01/1980~
-~07003~^~305~^103.^5^8.^~1~^^^^^^^^^^^~09/01/1980~
-~07003~^~306~^253.^5^15.^~1~^^^^^^^^^^^~09/01/1980~
-~07003~^~307~^1240.^5^27.^~1~^^^^^^^^^^^~09/01/1980~
-~07003~^~318~^0.^0^^~4~^^^^^^^^^^^~09/01/1980~
-~07003~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2002~
-~07003~^~320~^0.^0^^~1~^~AS~^^^^^^^^^^~02/01/2006~
-~07003~^~324~^36.^0^^~4~^~T~^^^^^^^^^^~01/01/2001~
-~07003~^~417~^3.^4^0.^~1~^^^^^^^^^^^~09/01/1980~
-~07003~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~
-~07003~^~432~^3.^4^0.^~1~^^^^^^^^^^^~02/01/2006~
-~07003~^~435~^3.^0^^~4~^~NC~^^^^^^^^^^~02/01/2006~
-~07003~^~601~^59.^4^4.^~1~^^^^^^^^^^^~09/01/1980~
-~07003~^~636~^0.^0^^~4~^^^^^^^^^^^~09/01/1980~
-~07004~^~208~^230.^0^^~4~^~NC~^^^^^^^^^^~08/01/2002~
-~07004~^~262~^0.^0^^~9~^~MC~^^^^^^^^^^~02/01/2002~
-~07004~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2002~
-~07004~^~268~^964.^0^^~4~^~NC~^^^^^^^^^^~08/01/2002~
-~07004~^~301~^12.^3^2.^~1~^^^^^^^^^^^~07/01/2002~
-~07004~^~304~^15.^3^1.^~1~^^^^^^^^^^^~07/01/2002~
-~07004~^~305~^130.^3^18.^~1~^^^^^^^^^^^~07/01/2002~
-~07004~^~306~^283.^3^20.^~1~^^^^^^^^^^^~07/01/2002~
-~07004~^~307~^1297.^3^65.^~1~^^^^^^^^^^^~07/01/2002~
-~07004~^~318~^0.^0^^~4~^^^^^^^^^^^~07/01/2002~
-~07004~^~319~^0.^0^^~4~^~NR~^^^^^^^^^^~03/01/2002~
-~07004~^~320~^0.^0^^~4~^~NC~^^^^^^^^^^~08/01/2002~
-~07004~^~321~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2002~
-~07004~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2002~
-~07004~^~324~^13.^0^^~9~^~MC~^^^^^^^^^^~02/01/2002~
-~07004~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2002~
-~07004~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2002~
-~07004~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2002~
-~07004~^~417~^5.^0^^~4~^^^^^^^^^^^~07/01/2002~
-~07004~^~431~^0.^0^^~4~^~NR~^^^^^^^^^^~06/01/2002~
-~07004~^~432~^5.^0^^~4~^^^^^^^^^^^~08/01/2002~
-~07004~^~435~^5.^0^^~4~^~NC~^^^^^^^^^^~08/01/2002~
-~07004~^~601~^46.^3^1.^~1~^^^^^^^^^^^~07/01/2002~
-~07004~^~636~^0.^0^^~4~^^^^^^^^^^^~06/01/2002~
-~07005~^~208~^379.^0^^~4~^~NC~^^^^^^^^^^~03/01/2009~
-~07005~^~262~^0.^0^^~9~^~MC~^^^^^^^^^^~02/01/2002~
-~07005~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~10/01/2002~
-~07005~^~268~^1584.^0^^~4~^~NC~^^^^^^^^^^~03/01/2009~
-~07005~^~301~^6.^0^^~9~^~MC~^^^^^^^^^^~10/01/2002~
-~07005~^~304~^8.^0^^~9~^~MC~^^^^^^^^^^~10/01/2002~
-~07005~^~305~^22.^0^^~9~^~MC~^^^^^^^^^^~10/01/2002~
-~07005~^~306~^38.^0^^~9~^~MC~^^^^^^^^^^~10/01/2002~
-~07005~^~307~^680.^0^^~9~^~MC~^^^^^^^^^^~10/01/2002~
-~07005~^~318~^0.^0^^~9~^~MC~^^^^^^^^^^~10/01/2002~
-~07005~^~319~^0.^0^^~4~^~NR~^^^^^^^^^^~07/01/2002~
-~07005~^~320~^0.^0^^~4~^~NC~^^^^^^^^^^~03/01/2009~
-~07005~^~321~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2002~
-~07005~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2002~
-~07005~^~324~^52.^0^^~4~^~BFFN~^~07074~^^^^^^^^^~03/01/2009~
-~07005~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2002~
-~07005~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2002~
-~07005~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2002~
-~07005~^~417~^5.^0^^~9~^~MC~^^^^^^^^^^~10/01/2002~
-~07005~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~07/01/2002~
-~07005~^~432~^5.^0^^~9~^~MC~^^^^^^^^^^~03/01/2009~
-~07005~^~435~^5.^0^^~4~^~NC~^^^^^^^^^^~03/01/2009~
-~07005~^~601~^120.^0^^~9~^~MC~^^^^^^^^^^~10/01/2002~
-~07005~^~636~^0.^0^^~4~^~FLM~^^^^^^^^^^~10/01/2002~
-~07006~^~208~^301.^0^^~4~^~FLM~^^^^^^^^^^~07/01/2007~
-~07006~^~262~^0.^0^^~4~^~FLM~^^^^^^^^^^~11/01/2002~
-~07006~^~263~^0.^0^^~4~^~FLM~^^^^^^^^^^~11/01/2002~
-~07006~^~268~^1258.^0^^~4~^~FLM~^^^^^^^^^^~07/01/2007~
-~07006~^~301~^41.^1^^~1~^~A~^^^^^^^^^^~07/01/2002~
-~07006~^~304~^26.^0^^~4~^~FLM~^^^^^^^^^^~02/01/2007~
-~07006~^~305~^169.^0^^~4~^~FLM~^^^^^^^^^^~02/01/2007~
-~07006~^~306~^270.^0^^~4~^~FLM~^^^^^^^^^^~02/01/2007~
-~07006~^~307~^756.^0^^~8~^~LC~^^^^^^^^^^~08/01/2012~
-~07006~^~318~^256.^0^^~4~^~NC~^^^^^^^^^^~02/01/2007~
-~07006~^~319~^2.^0^^~4~^~FLM~^^^^^^^^^^~02/01/2007~
-~07006~^~320~^15.^0^^~4~^~NC~^^^^^^^^^^~07/01/2013~
-~07006~^~321~^148.^0^^~4~^~FLM~^^^^^^^^^^~02/01/2007~
-~07006~^~322~^0.^0^^~4~^~FLM~^^^^^^^^^^~11/01/2002~
-~07006~^~324~^0.^0^^~4~^~FLM~^^^^^^^^^^~02/01/2007~
-~07006~^~334~^2.^0^^~4~^~FLM~^^^^^^^^^^~02/01/2007~
-~07006~^~337~^0.^0^^~4~^~FLM~^^^^^^^^^^~02/01/2007~
-~07006~^~338~^108.^0^^~4~^~FLM~^^^^^^^^^^~07/01/2007~
-~07006~^~417~^17.^0^^~4~^~FLM~^^^^^^^^^^~02/01/2007~
-~07006~^~431~^0.^0^^~4~^~FLM~^^^^^^^^^^~11/01/2002~
-~07006~^~432~^17.^0^^~4~^~FLM~^^^^^^^^^^~07/01/2007~
-~07006~^~435~^17.^0^^~4~^~NC~^^^^^^^^^^~02/01/2009~
-~07006~^~601~^93.^0^^~9~^~MC~^^^^^^^^^^~07/01/2002~
-~07007~^~208~^299.^0^^~4~^~NC~^^^^^^^^^^~09/01/2012~
-~07007~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2003~
-~07007~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~
-~07007~^~268~^1250.^0^^~4~^~NC~^^^^^^^^^^~09/01/2012~
-~07007~^~301~^21.^11^0.^~1~^~A~^^^1^10.^47.^5^20.^21.^~2, 3~^~04/01/2012~
-~07007~^~304~^13.^11^0.^~1~^~A~^^^1^9.^14.^5^12.^12.^~2, 3~^~04/01/2012~
-~07007~^~305~^154.^11^0.^~1~^~A~^^^1^103.^178.^5^152.^155.^~2, 3~^~04/01/2012~
-~07007~^~306~^351.^11^2.^~1~^~A~^^^1^156.^536.^5^345.^356.^~2, 3~^~04/01/2012~
-~07007~^~307~^1013.^11^1.^~1~^~A~^^^1^831.^1180.^5^1008.^1016.^~2, 3~^~08/01/2012~
-~07007~^~318~^90.^0^^~1~^~AS~^^^^^^^^^^~09/01/2012~
-~07007~^~319~^17.^4^0.^~1~^~A~^^^1^14.^21.^1^9.^24.^~2, 3~^~04/01/2012~
-~07007~^~320~^19.^0^^~1~^~AS~^^^^^^^^^^~09/01/2012~
-~07007~^~321~^11.^2^^~1~^~A~^^^1^^^^^^^~09/01/2012~
-~07007~^~322~^6.^2^^~1~^~A~^^^1^^^^^^^~09/01/2012~
-~07007~^~324~^28.^0^^~4~^~T~^^^^^^^^^^~02/01/2009~
-~07007~^~334~^11.^2^^~1~^~A~^^^1^^^^^^^~09/01/2012~
-~07007~^~337~^11.^2^^~1~^~A~^^^1^^^^^^^~09/01/2012~
-~07007~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2006~
-~07007~^~417~^3.^0^^~4~^~BFPN~^^^^^^^^^^~04/01/2012~
-~07007~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~
-~07007~^~432~^3.^0^^~4~^~BFPN~^^^^^^^^^^~08/01/2012~
-~07007~^~435~^3.^0^^~4~^~NC~^^^^^^^^^^~08/01/2012~
-~07007~^~601~^57.^11^0.^~1~^~A~^^^1^45.^63.^5^56.^57.^~2, 3~^~04/01/2012~
-~07008~^~208~^308.^0^^~4~^~NC~^^^^^^^^^^~12/01/2006~
-~07008~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~12/01/2002~
-~07008~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~12/01/2002~
-~07008~^~268~^1288.^0^^~4~^~NC~^^^^^^^^^^~12/01/2006~
-~07008~^~301~^85.^0^^~9~^~MC~^^^^^^^^^^~12/01/2002~
-~07008~^~304~^17.^0^^~9~^~MC~^^^^^^^^^^~12/01/2002~
-~07008~^~305~^163.^0^^~9~^~MC~^^^^^^^^^^~12/01/2002~
-~07008~^~306~^315.^0^^~9~^~MC~^^^^^^^^^^~12/01/2002~
-~07008~^~307~^960.^0^^~4~^~T~^^^^^^^^^^~08/01/2011~
-~07008~^~318~^84.^0^^~4~^~NC~^^^^^^^^^^~08/01/2011~
-~07008~^~319~^25.^0^^~4~^~NR~^^^^^^^^^^~03/01/2003~
-~07008~^~320~^25.^0^^~4~^~NC~^^^^^^^^^^~12/01/2006~
-~07008~^~321~^0.^0^^~4~^~FLM~^^^^^^^^^^~01/01/2004~
-~07008~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2002~
-~07008~^~324~^32.^0^^~9~^~MC~^^^^^^^^^^~02/01/2002~
-~07008~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2002~
-~07008~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2002~
-~07008~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2002~
-~07008~^~417~^6.^0^^~9~^~MC~^^^^^^^^^^~12/01/2002~
-~07008~^~431~^0.^0^^~4~^~NR~^^^^^^^^^^~12/01/2002~
-~07008~^~432~^6.^0^^~9~^~MC~^^^^^^^^^^~12/01/2006~
-~07008~^~435~^6.^0^^~4~^~NC~^^^^^^^^^^~03/01/2009~
-~07008~^~601~^60.^0^^~9~^~MC~^^^^^^^^^^~12/01/2002~
-~07008~^~636~^0.^0^^~4~^~FLM~^^^^^^^^^^~01/01/2004~
-~07010~^~208~^247.^0^^~4~^~NC~^^^^^^^^^^~09/01/1980~
-~07010~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~
-~07010~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~
-~07010~^~268~^1033.^0^^~4~^^^^^^^^^^^~12/01/2006~
-~07010~^~301~^11.^3^1.^~1~^^^^^^^^^^^~09/01/1980~
-~07010~^~304~^14.^3^0.^~1~^^^^^^^^^^^~09/01/1980~
-~07010~^~305~^139.^3^3.^~1~^^^^^^^^^^^~09/01/1980~
-~07010~^~306~^281.^3^18.^~1~^^^^^^^^^^^~09/01/1980~
-~07010~^~307~^907.^0^^~8~^~LC~^^^^^^^^^^~08/01/2012~
-~07010~^~318~^0.^0^^~4~^^^^^^^^^^^~09/01/1980~
-~07010~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2002~
-~07010~^~320~^0.^0^^~1~^~AS~^^^^^^^^^^~12/01/2006~
-~07010~^~321~^0.^0^^~7~^~Z~^^^^^^^^^^~08/01/2002~
-~07010~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~08/01/2002~
-~07010~^~324~^56.^0^^~4~^~T~^^^^^^^^^^~01/01/2001~
-~07010~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~08/01/2002~
-~07010~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~08/01/2002~
-~07010~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~08/01/2002~
-~07010~^~417~^5.^0^^~1~^^^^^^^^^^^~09/01/1980~
-~07010~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~
-~07010~^~432~^5.^0^^~1~^^^^^^^^^^^~12/01/2006~
-~07010~^~435~^5.^0^^~4~^~NC~^^^^^^^^^^~03/01/2009~
-~07010~^~601~^59.^3^3.^~1~^^^^^^^^^^^~09/01/1980~
-~07010~^~636~^0.^0^^~4~^^^^^^^^^^^~09/01/1980~
-~07011~^~208~^209.^0^^~4~^~NC~^^^^^^^^^^~03/01/2009~
-~07011~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2001~
-~07011~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~08/01/2002~
-~07011~^~268~^874.^0^^~4~^~NC~^^^^^^^^^^~03/01/2009~
-~07011~^~301~^123.^3^^~1~^~A~^^^1^123.^123.^^^^~2~^~10/01/2002~
-~07011~^~304~^16.^0^^~4~^~FLA~^^^^^^^^^^~03/01/2003~
-~07011~^~305~^114.^0^^~4~^~FLA~^^^^^^^^^^~03/01/2003~
-~07011~^~306~^135.^3^^~1~^~A~^^^1^135.^135.^^^^~2~^~10/01/2002~
-~07011~^~307~^1071.^0^^~4~^~T~^^^^^^^^^^~08/01/2011~
-~07011~^~318~^32.^3^^~1~^~A~^^^1^32.^32.^^^^~2~^~10/01/2002~
-~07011~^~319~^9.^0^^~4~^~NR~^^^^^^^^^^~10/01/2002~
-~07011~^~320~^9.^0^^~4~^~NR~^^^^^^^^^^~10/01/2002~
-~07011~^~321~^0.^0^^~7~^~Z~^^^^^^^^^^~08/01/2002~
-~07011~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~08/01/2002~
-~07011~^~324~^26.^0^^~4~^~NR~^^^^^^^^^^~03/01/2009~
-~07011~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~08/01/2002~
-~07011~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~08/01/2002~
-~07011~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~08/01/2002~
-~07011~^~417~^9.^0^^~4~^~FLA~^^^^^^^^^^~03/01/2003~
-~07011~^~431~^0.^0^^~4~^~FLA~^^^^^^^^^^~10/01/2002~
-~07011~^~432~^9.^0^^~4~^~FLA~^^^^^^^^^^~12/01/2002~
-~07011~^~435~^9.^0^^~4~^~NC~^^^^^^^^^^~03/01/2009~
-~07011~^~601~^75.^4^^~1~^~A~^^^2^66.^87.^^^^~2~^~10/01/2002~
-~07011~^~636~^2.^0^^~4~^~FLA~^^^^^^^^^^~12/01/2002~
-~07013~^~208~^333.^0^^~4~^~NC~^^^^^^^^^^~02/01/2007~
-~07013~^~262~^0.^0^^~4~^~FLA~^^^^^^^^^^~02/01/2007~
-~07013~^~263~^0.^0^^~4~^~FLA~^^^^^^^^^^~02/01/2007~
-~07013~^~268~^1393.^0^^~4~^~NC~^^^^^^^^^^~02/01/2007~
-~07013~^~301~^28.^0^^~9~^~MC~^^^^^^^^^^~01/01/2003~
-~07013~^~304~^21.^0^^~4~^~FLA~^^^^^^^^^^~02/01/2007~
-~07013~^~305~^208.^0^^~4~^~FLA~^^^^^^^^^^~02/01/2007~
-~07013~^~306~^348.^0^^~4~^~FLA~^^^^^^^^^^~02/01/2007~
-~07013~^~307~^846.^1^^~11~^~JO~^^^2^803.^965.^^^^^~01/01/2003~
-~07013~^~318~^6.^1^^~11~^~JO~^^^2^0.^8.^^^^^~01/01/2003~
-~07013~^~319~^2.^0^^~4~^~FLA~^^^^^^^^^^~02/01/2007~
-~07013~^~320~^2.^0^^~4~^~FLA~^^^^^^^^^^~02/01/2007~
-~07013~^~321~^0.^0^^~4~^~FLA~^^^^^^^^^^~02/01/2007~
-~07013~^~322~^0.^0^^~4~^~FLA~^^^^^^^^^^~02/01/2007~
-~07013~^~324~^44.^0^^~4~^~T~^^^^^^^^^^~01/01/2001~
-~07013~^~334~^0.^0^^~4~^~FLA~^^^^^^^^^^~02/01/2007~
-~07013~^~337~^0.^0^^~4~^~FLA~^^^^^^^^^^~02/01/2007~
-~07013~^~338~^0.^0^^~4~^~FLA~^^^^^^^^^^~02/01/2007~
-~07013~^~417~^3.^0^^~9~^~MC~^^^^^^^^^^~01/01/2003~
-~07013~^~431~^0.^0^^~4~^~FLA~^^^^^^^^^^~02/01/2007~
-~07013~^~432~^3.^0^^~9~^~MC~^^^^^^^^^^~02/01/2007~
-~07013~^~435~^3.^0^^~4~^~NC~^^^^^^^^^^~03/01/2009~
-~07013~^~601~^74.^1^^~11~^~JO~^^^2^65.^96.^^^^^~01/01/2003~
-~07013~^~636~^0.^0^^~4~^~FLA~^^^^^^^^^^~12/01/2002~
-~07014~^~208~^327.^0^^~9~^~MC~^^^^^^^^^^~01/01/2007~
-~07014~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~
-~07014~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~
-~07014~^~268~^1368.^0^^~9~^~MC~^^^^^^^^^^~01/01/2007~
-~07014~^~301~^9.^23^0.^~1~^^^^^^^^^^^~03/01/2003~
-~07014~^~304~^11.^25^0.^~1~^^^^^^^^^^^~03/01/2003~
-~07014~^~305~^168.^26^5.^~1~^^^^^^^^^^^~03/01/2003~
-~07014~^~306~^199.^18^6.^~1~^^^^^^^^^^^~03/01/2003~
-~07014~^~307~^977.^0^^~8~^~LC~^^^^^^^^^^~08/01/2012~
-~07014~^~318~^14051.^21^1027.^~1~^^^^^^^^^^^~01/01/2007~
-~07014~^~319~^4220.^0^^~4~^~NR~^^^^^^^^^^~08/01/2002~
-~07014~^~320~^4220.^0^^~4~^~NC~^^^^^^^^^^~01/01/2007~
-~07014~^~321~^0.^0^^~7~^~Z~^^^^^^^^^^~08/01/2002~
-~07014~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~08/01/2002~
-~07014~^~324~^48.^0^^~4~^~T~^^^^^^^^^^~01/01/2001~
-~07014~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~08/01/2002~
-~07014~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~08/01/2002~
-~07014~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~08/01/2002~
-~07014~^~417~^44.^0^^~4~^^^^^^^^^^^~03/01/2003~
-~07014~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~
-~07014~^~432~^44.^0^^~4~^^^^^^^^^^^~01/01/2007~
-~07014~^~435~^44.^0^^~4~^~NC~^^^^^^^^^^~03/01/2009~
-~07014~^~601~^180.^1^^~1~^~A~^^^^^^^^^^~03/01/2003~
-~07014~^~636~^0.^0^^~4~^^^^^^^^^^^~03/01/2003~
-~07015~^~208~^323.^0^^~4~^~NC~^^^^^^^^^^~06/01/2005~
-~07015~^~262~^0.^0^^~9~^~MC~^^^^^^^^^^~02/01/2002~
-~07015~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2002~
-~07015~^~268~^1353.^0^^~4~^~NC~^^^^^^^^^^~06/01/2005~
-~07015~^~301~^48.^0^^~9~^~MC~^^^^^^^^^^~04/01/2003~
-~07015~^~304~^16.^0^^~9~^~MC~^^^^^^^^^^~04/01/2003~
-~07015~^~305~^134.^0^^~9~^~MC~^^^^^^^^^^~04/01/2003~
-~07015~^~306~^281.^0^^~9~^~MC~^^^^^^^^^^~04/01/2003~
-~07015~^~307~^1112.^0^^~9~^~MC~^^^^^^^^^^~04/01/2003~
-~07015~^~318~^0.^0^^~9~^~MC~^^^^^^^^^^~04/01/2003~
-~07015~^~319~^0.^0^^~4~^~NR~^^^^^^^^^^~03/01/2002~
-~07015~^~320~^0.^0^^~4~^~NC~^^^^^^^^^^~06/01/2005~
-~07015~^~321~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2002~
-~07015~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2002~
-~07015~^~324~^11.^0^^~9~^~MC~^^^^^^^^^^~02/01/2002~
-~07015~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2002~
-~07015~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2002~
-~07015~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2002~
-~07015~^~417~^5.^0^^~9~^~MC~^^^^^^^^^^~04/01/2003~
-~07015~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2003~
-~07015~^~432~^5.^0^^~9~^~MC~^^^^^^^^^^~06/01/2005~
-~07015~^~435~^5.^0^^~4~^~NC~^^^^^^^^^^~06/01/2008~
-~07015~^~601~^63.^0^^~9~^~MC~^^^^^^^^^^~04/01/2003~
-~07016~^~208~^328.^0^^~4~^~NC~^^^^^^^^^^~05/01/2009~
-~07016~^~262~^0.^0^^~9~^~MC~^^^^^^^^^^~02/01/2002~
-~07016~^~263~^0.^0^^~4~^~FLM~^^^^^^^^^^~01/01/2003~
-~07016~^~268~^1371.^0^^~4~^~NC~^^^^^^^^^^~05/01/2009~
-~07016~^~301~^58.^0^^~9~^~MC~^^^^^^^^^^~01/01/2003~
-~07016~^~304~^13.^0^^~9~^~MC~^^^^^^^^^^~01/01/2003~
-~07016~^~305~^178.^0^^~9~^~MC~^^^^^^^^^^~01/01/2003~
-~07016~^~306~^206.^0^^~9~^~MC~^^^^^^^^^^~01/01/2003~
-~07016~^~307~^1082.^0^^~9~^~MC~^^^^^^^^^^~01/01/2003~
-~07016~^~318~^19.^0^^~4~^~NC~^^^^^^^^^^~05/01/2009~
-~07016~^~319~^6.^0^^~4~^~FLM~^^^^^^^^^^~02/01/2007~
-~07016~^~320~^6.^0^^~4~^~NC~^^^^^^^^^^~05/01/2009~
-~07016~^~321~^0.^0^^~4~^~FLM~^^^^^^^^^^~02/01/2007~
-~07016~^~322~^0.^0^^~4~^~FLM~^^^^^^^^^^~02/01/2007~
-~07016~^~324~^12.^0^^~9~^~MC~^^^^^^^^^^~02/01/2002~
-~07016~^~334~^0.^0^^~4~^~FLM~^^^^^^^^^^~02/01/2007~
-~07016~^~337~^0.^0^^~4~^~FLM~^^^^^^^^^^~02/01/2007~
-~07016~^~338~^0.^0^^~4~^~FLM~^^^^^^^^^^~02/01/2007~
-~07016~^~417~^3.^0^^~9~^~MC~^^^^^^^^^^~01/01/2003~
-~07016~^~431~^0.^0^^~4~^~FLM~^^^^^^^^^^~01/01/2003~
-~07016~^~432~^3.^0^^~9~^~MC~^^^^^^^^^^~05/01/2009~
-~07016~^~435~^3.^0^^~4~^~NC~^^^^^^^^^^~06/01/2009~
-~07016~^~601~^68.^0^^~9~^~MC~^^^^^^^^^^~01/01/2003~
-~07016~^~636~^3.^0^^~4~^~FLM~^^^^^^^^^^~02/01/2007~
-~07018~^~208~^158.^0^^~4~^~NC~^^^^^^^^^^~08/01/2002~
-~07018~^~262~^0.^0^^~4~^~FLM~^^^^^^^^^^~07/01/2002~
-~07018~^~263~^0.^0^^~4~^~FLM~^^^^^^^^^^~07/01/2002~
-~07018~^~268~^663.^0^^~4~^~NC~^^^^^^^^^^~08/01/2002~
-~07018~^~301~^16.^0^^~9~^~MC~^^^^^^^^^^~07/01/2002~
-~07018~^~304~^12.^0^^~4~^^^^^^^^^^^~06/01/2002~
-~07018~^~305~^89.^0^^~4~^^^^^^^^^^^~06/01/2002~
-~07018~^~306~^106.^0^^~4~^^^^^^^^^^^~06/01/2002~
-~07018~^~307~^722.^0^^~9~^~MC~^^^^^^^^^^~07/01/2002~
-~07018~^~318~^99.^0^^~9~^~MC~^^^^^^^^^^~07/01/2002~
-~07018~^~319~^30.^0^^~4~^~NR~^^^^^^^^^^~07/01/2002~
-~07018~^~320~^30.^0^^~4~^~NC~^^^^^^^^^^~08/01/2002~
-~07018~^~321~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2002~
-~07018~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2002~
-~07018~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2002~
-~07018~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2002~
-~07018~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2002~
-~07018~^~417~^3.^0^^~4~^^^^^^^^^^^~06/01/2002~
-~07018~^~431~^0.^0^^~4~^~NR~^^^^^^^^^^~06/01/2002~
-~07018~^~432~^3.^0^^~4~^^^^^^^^^^^~08/01/2002~
-~07018~^~435~^3.^0^^~4~^~NC~^^^^^^^^^^~07/01/2003~
-~07018~^~601~^56.^0^^~9~^~MC~^^^^^^^^^^~07/01/2002~
-~07018~^~636~^0.^0^^~4~^^^^^^^^^^^~06/01/2002~
-~07019~^~208~^296.^0^^~4~^~NC~^^^^^^^^^^~10/01/2016~
-~07019~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2001~
-~07019~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2001~
-~07019~^~268~^1237.^0^^~4~^~NC~^^^^^^^^^^~10/01/2016~
-~07019~^~301~^19.^3^1.^~1~^~A~^^^1^15.^22.^1^-4.^42.^~2, 3~^~10/01/2016~
-~07019~^~304~^20.^3^2.^~1~^~A~^^^1^18.^27.^1^-7.^48.^~2, 3~^~10/01/2016~
-~07019~^~305~^149.^3^2.^~1~^~A~^^^1^138.^156.^1^123.^174.^~2, 3~^~10/01/2016~
-~07019~^~306~^308.^3^3.^~1~^~A~^^^1^271.^351.^1^266.^349.^~2, 3~^~10/01/2016~
-~07019~^~307~^788.^3^10.^~1~^~A~^^^1^773.^815.^1^654.^921.^~2, 3~^~10/01/2016~
-~07019~^~318~^0.^0^^~1~^~AS~^^^^^^^^^^~10/01/2016~
-~07019~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2002~
-~07019~^~320~^0.^0^^~1~^~AS~^^^^^^^^^^~02/01/2009~
-~07019~^~321~^0.^0^^~7~^~Z~^^^^^^^^^^~08/01/2002~
-~07019~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~08/01/2002~
-~07019~^~324~^61.^0^^~4~^~BFFN~^~07002~^^^^^^^^^~02/01/2009~
-~07019~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~08/01/2002~
-~07019~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~08/01/2002~
-~07019~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~08/01/2002~
-~07019~^~417~^0.^0^^~4~^~BFPN~^~10975~^^^^^^^^^~10/01/2016~
-~07019~^~431~^0.^0^^~4~^~BFPN~^~10975~^^^^^^^^^~10/01/2016~
-~07019~^~432~^0.^0^^~4~^~BFPN~^~10975~^^^^^^^^^~10/01/2016~
-~07019~^~435~^0.^0^^~4~^~NC~^~10975~^^^^^^^^^~10/01/2016~
-~07019~^~601~^63.^3^29.^~1~^~A~^^^1^4.^124.^1^-316.^442.^~2, 3~^~10/01/2016~
-~07020~^~208~^153.^0^^~4~^~NC~^^^^^^^^^^~09/01/1980~
-~07020~^~268~^640.^0^^~4~^^^^^^^^^^^~06/01/2008~
-~07020~^~301~^11.^5^0.^~1~^^^^^^^^^^^~09/01/1980~
-~07020~^~304~^11.^14^0.^~1~^^^^^^^^^^^~09/01/1980~
-~07020~^~305~^73.^14^4.^~1~^^^^^^^^^^^~09/01/1980~
-~07020~^~306~^101.^14^6.^~1~^^^^^^^^^^^~09/01/1980~
-~07020~^~307~^953.^15^37.^~1~^^^^^^^^^^^~09/01/1980~
-~07020~^~318~^0.^1^^~1~^^^^^^^^^^^~09/01/1980~
-~07020~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2002~
-~07020~^~320~^0.^1^^~1~^^^^^^^^^^^~06/01/2002~
-~07020~^~417~^8.^1^^~1~^^^^^^^^^^^~09/01/1980~
-~07020~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~
-~07020~^~432~^8.^1^^~1~^^^^^^^^^^^~09/01/1980~
-~07020~^~435~^8.^0^^~4~^~NC~^^^^^^^^^^~06/01/2008~
-~07020~^~601~^47.^14^3.^~1~^^^^^^^^^^^~09/01/1980~
-~07021~^~208~^273.^0^^~4~^~NC~^^^^^^^^^^~02/01/2007~
-~07021~^~262~^0.^0^^~4~^~FLA~^^^^^^^^^^~03/01/2003~
-~07021~^~263~^0.^0^^~4~^~FLA~^^^^^^^^^^~03/01/2003~
-~07021~^~268~^1143.^0^^~4~^~NC~^^^^^^^^^^~02/01/2007~
-~07021~^~301~^7.^1^^~1~^~A~^^^^^^^^^^~06/01/2002~
-~07021~^~304~^15.^0^^~4~^~FLA~^^^^^^^^^^~02/01/2007~
-~07021~^~305~^119.^0^^~4~^~FLA~^^^^^^^^^^~02/01/2007~
-~07021~^~306~^210.^0^^~4~^~FLA~^^^^^^^^^^~02/01/2007~
-~07021~^~307~^786.^0^^~8~^~LC~^^^^^^^^^^~08/01/2012~
-~07021~^~318~^110.^0^^~4~^~NC~^^^^^^^^^^~08/01/2012~
-~07021~^~319~^33.^0^^~4~^~FLA~^^^^^^^^^^~02/01/2007~
-~07021~^~320~^33.^0^^~4~^~NC~^^^^^^^^^^~06/01/2008~
-~07021~^~321~^0.^0^^~4~^~FLA~^^^^^^^^^^~02/01/2007~
-~07021~^~322~^0.^0^^~4~^~FLA~^^^^^^^^^^~02/01/2007~
-~07021~^~324~^0.^0^^~4~^~FLA~^^^^^^^^^^~08/01/2012~
-~07021~^~334~^0.^0^^~4~^~FLA~^^^^^^^^^^~02/01/2007~
-~07021~^~337~^0.^0^^~4~^~FLA~^^^^^^^^^^~02/01/2007~
-~07021~^~338~^0.^0^^~4~^~FLA~^^^^^^^^^^~02/01/2007~
-~07021~^~417~^11.^0^^~4~^~FLA~^^^^^^^^^^~02/01/2007~
-~07021~^~431~^0.^0^^~4~^~FLA~^^^^^^^^^^~03/01/2003~
-~07021~^~432~^11.^0^^~4~^~FLA~^^^^^^^^^^~02/01/2007~
-~07021~^~435~^11.^0^^~4~^~NC~^^^^^^^^^^~02/01/2009~
-~07021~^~601~^60.^1^^~1~^~A~^^^^^^^^^^~06/01/2002~
-~07021~^~636~^3.^0^^~4~^~FLA~^^^^^^^^^^~02/01/2007~
-~07022~^~208~^315.^0^^~4~^~NC~^^^^^^^^^^~03/01/2016~
-~07022~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~
-~07022~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~
-~07022~^~268~^1318.^0^^~4~^~NC~^^^^^^^^^^~03/01/2016~
-~07022~^~301~^14.^17^0.^~1~^~A~^^^1^7.^28.^6^12.^15.^~2, 3~^~03/01/2016~
-~07022~^~304~^11.^17^0.^~1~^~A~^^^1^8.^17.^11^10.^11.^~2, 3~^~03/01/2016~
-~07022~^~305~^134.^17^1.^~1~^~A~^^^1^92.^172.^8^130.^137.^~2, 3~^~03/01/2016~
-~07022~^~306~^364.^17^7.^~1~^~A~^^^1^173.^489.^9^347.^379.^~2, 3~^~03/01/2016~
-~07022~^~307~^865.^17^9.^~1~^~A~^^^1^732.^1040.^11^844.^885.^~2, 3~^~03/01/2016~
-~07022~^~318~^11.^0^^~1~^~AS~^^^^^^^^^^~03/01/2016~
-~07022~^~319~^3.^3^^~1~^~A~^^^1^2.^5.^^^^~2, 3~^~03/01/2016~
-~07022~^~320~^3.^0^^~1~^~AS~^^^^^^^^^^~03/01/2016~
-~07022~^~321~^0.^0^^~7~^~Z~^^^^^^^^^^~07/01/2002~
-~07022~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~07/01/2002~
-~07022~^~324~^36.^0^^~4~^~T~^^^^^^^^^^~01/01/2001~
-~07022~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~07/01/2002~
-~07022~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~07/01/2002~
-~07022~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~07/01/2002~
-~07022~^~417~^0.^1^^~1~^~A~^^^^^^^^^~1~^~03/01/2016~
-~07022~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~
-~07022~^~432~^0.^1^^~1~^~A~^^^^^^^^^^~03/01/2016~
-~07022~^~435~^0.^0^^~4~^~NC~^^^^^^^^^^~03/01/2016~
-~07022~^~601~^58.^0^^~4~^~BFSN~^~07007~^^^^^^^^^~03/01/2016~
-~07024~^~208~^223.^0^^~4~^~NC~^^^^^^^^^^~02/01/2009~
-~07024~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2001~
-~07024~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2001~
-~07024~^~268~^933.^0^^~4~^~NC~^^^^^^^^^^~02/01/2009~
-~07024~^~301~^74.^3^44.^~1~^~A~^^^1^15.^161.^2^-117.^265.^~2, 3~^~03/01/2007~
-~07024~^~304~^20.^3^0.^~1~^~A~^^^1^18.^21.^2^16.^23.^~2, 3~^~03/01/2007~
-~07024~^~305~^162.^3^19.^~1~^~A~^^^1^137.^201.^2^77.^246.^~2, 3~^~03/01/2007~
-~07024~^~306~^202.^3^17.^~1~^~A~^^^1^184.^236.^2^128.^275.^~2, 3~^~03/01/2007~
-~07024~^~307~^1027.^0^^~4~^~NR~^^^^^^^^^^~06/01/2015~
-~07024~^~318~^0.^0^^~1~^~AS~^^^^^^^^^^~03/01/2007~
-~07024~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2007~
-~07024~^~320~^0.^0^^~1~^~AS~^^^^^^^^^^~03/01/2007~
-~07024~^~321~^0.^0^^~7~^~Z~^^^^^^^^^^~08/01/2002~
-~07024~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~08/01/2002~
-~07024~^~324~^21.^0^^~4~^~BFFN~^^^^^^^^^^~02/01/2009~
-~07024~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~08/01/2002~
-~07024~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~08/01/2002~
-~07024~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~08/01/2002~
-~07024~^~417~^7.^3^1.^~1~^~A~^^^1^4.^10.^2^0.^14.^~2, 3~^~03/01/2007~
-~07024~^~431~^3.^2^^~1~^~A~^^^1^2.^4.^1^^^^~02/01/2009~
-~07024~^~432~^4.^0^^~4~^~NR~^^^^^^^^^^~06/01/2014~
-~07024~^~435~^9.^0^^~4~^~NC~^^^^^^^^^^~06/01/2014~
-~07024~^~601~^96.^3^4.^~1~^~A~^^^1^89.^105.^2^74.^116.^~2, 3~^~03/01/2007~
-~07025~^~208~^223.^0^^~4~^~NC~^^^^^^^^^^~02/01/2009~
-~07025~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2001~
-~07025~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2001~
-~07025~^~268~^933.^0^^~4~^~NC~^^^^^^^^^^~02/01/2009~
-~07025~^~301~^148.^3^12.^~1~^~A~^^^1^132.^173.^2^93.^202.^~2, 3~^~03/01/2007~
-~07025~^~304~^14.^3^1.^~1~^~A~^^^1^12.^17.^2^7.^20.^~2, 3~^~03/01/2007~
-~07025~^~305~^172.^3^9.^~1~^~A~^^^1^160.^192.^2^129.^215.^~2, 3~^~03/01/2007~
-~07025~^~306~^392.^3^120.^~1~^~A~^^^1^152.^538.^2^-128.^911.^~2, 3~^~03/01/2007~
-~07025~^~307~^911.^0^^~8~^~LC~^^^^^^^^^^~08/01/2012~
-~07025~^~318~^0.^0^^~1~^~AS~^^^^^^^^^^~03/01/2007~
-~07025~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2002~
-~07025~^~320~^0.^0^^~1~^~AS~^^^^^^^^^^~08/01/2002~
-~07025~^~321~^0.^0^^~7~^~Z~^^^^^^^^^^~08/01/2002~
-~07025~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~08/01/2002~
-~07025~^~324~^23.^0^^~4~^~BFFN~^^^^^^^^^^~02/01/2009~
-~07025~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~08/01/2002~
-~07025~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~08/01/2002~
-~07025~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~08/01/2002~
-~07025~^~417~^9.^3^1.^~1~^~A~^^^1^6.^10.^2^2.^14.^~2, 3~^~03/01/2007~
-~07025~^~431~^1.^3^0.^~1~^~A~^^^1^1.^2.^2^0.^2.^~2, 3~^~02/01/2009~
-~07025~^~432~^7.^3^1.^~1~^~AS~^^^1^5.^9.^2^2.^12.^~2, 3~^~03/01/2007~
-~07025~^~435~^10.^0^^~4~^~NC~^^^^^^^^^^~02/01/2009~
-~07025~^~601~^77.^3^0.^~1~^~A~^^^1^77.^78.^2^75.^78.^~2, 3~^~03/01/2007~
-~07025~^~636~^0.^0^^~4~^^^^^^^^^^^~09/01/1980~
-~07026~^~208~^239.^0^^~4~^~NC~^^^^^^^^^^~03/01/2009~
-~07026~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2001~
-~07026~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2001~
-~07026~^~268~^1000.^0^^~4~^^^^^^^^^^^~08/01/2012~
-~07026~^~301~^7.^0^^~4~^^^^^^^^^^^~09/01/1980~
-~07026~^~304~^13.^4^0.^~1~^^^^^^^^^^^~09/01/1980~
-~07026~^~305~^139.^4^17.^~1~^^^^^^^^^^^~09/01/1980~
-~07026~^~306~^284.^4^4.^~1~^^^^^^^^^^^~09/01/1980~
-~07026~^~307~^1280.^0^^~8~^~LC~^^^^^^^^^^~08/01/2012~
-~07026~^~318~^0.^0^^~4~^^^^^^^^^^^~09/01/1980~
-~07026~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2002~
-~07026~^~320~^0.^0^^~1~^~AS~^^^^^^^^^^~03/01/2009~
-~07026~^~321~^0.^0^^~7~^~Z~^^^^^^^^^^~08/01/2002~
-~07026~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~08/01/2002~
-~07026~^~324~^24.^0^^~4~^~BFNN~^~10136~^^^^^^^^^~03/01/2009~
-~07026~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~08/01/2002~
-~07026~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~08/01/2002~
-~07026~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~08/01/2002~
-~07026~^~417~^1.^0^^~4~^^^^^^^^^^^~09/01/1980~
-~07026~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~
-~07026~^~432~^1.^0^^~4~^^^^^^^^^^^~03/01/2009~
-~07026~^~435~^1.^0^^~4~^~NC~^^^^^^^^^^~03/01/2009~
-~07026~^~601~^49.^4^4.^~1~^^^^^^^^^^^~09/01/1980~
-~07026~^~636~^0.^0^^~4~^^^^^^^^^^^~09/01/1980~
-~07027~^~208~^221.^0^^~4~^~NC~^^^^^^^^^^~07/01/2017~
-~07027~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2003~
-~07027~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2003~
-~07027~^~268~^925.^0^^~4~^~NC~^^^^^^^^^^~07/01/2017~
-~07027~^~301~^7.^4^1.^~1~^^^^^^^^^^^~05/01/2004~
-~07027~^~304~^16.^5^0.^~1~^^^^^^^^^^^~05/01/2004~
-~07027~^~305~^155.^5^14.^~1~^^^^^^^^^^^~05/01/2004~
-~07027~^~306~^319.^5^8.^~1~^^^^^^^^^^^~05/01/2004~
-~07027~^~307~^1194.^0^^~4~^~NR~^^^^^^^^^^~07/01/2017~
-~07027~^~318~^0.^1^^~1~^~A~^^^^^^^^^^~05/01/2004~
-~07027~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2002~
-~07027~^~320~^0.^0^^~1~^~AS~^^^^^^^^^^~03/01/2009~
-~07027~^~321~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2003~
-~07027~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2003~
-~07027~^~324~^29.^0^^~4~^~BFNN~^~10136~^^^^^^^^^~03/01/2009~
-~07027~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2003~
-~07027~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2003~
-~07027~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2003~
-~07027~^~417~^1.^3^0.^~1~^^^^^^^^^^^~05/01/2004~
-~07027~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~
-~07027~^~432~^1.^3^0.^~1~^^^^^^^^^^^~03/01/2009~
-~07027~^~435~^1.^0^^~4~^~NC~^^^^^^^^^^~03/01/2009~
-~07027~^~601~^59.^1^^~1~^~A~^^^^^^^^^^~05/01/2004~
-~07028~^~208~^107.^0^^~4~^~NC~^^^^^^^^^^~03/01/2016~
-~07028~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2001~
-~07028~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2001~
-~07028~^~268~^446.^0^^~4~^~NC~^^^^^^^^^^~03/01/2016~
-~07028~^~301~^5.^18^0.^~1~^~A~^^^1^4.^8.^10^4.^6.^~2, 3~^~07/01/2011~
-~07028~^~304~^19.^18^0.^~1~^~A~^^^1^17.^21.^10^18.^19.^~2, 3~^~03/01/2016~
-~07028~^~305~^252.^18^6.^~1~^~A~^^^1^212.^296.^10^237.^266.^~2, 3~^~03/01/2016~
-~07028~^~306~^463.^18^44.^~1~^~A~^^^1^202.^1220.^5^348.^577.^~2, 3~^~03/01/2016~
-~07028~^~307~^945.^18^30.^~1~^~A~^^^1^647.^1320.^11^876.^1013.^~2, 3~^~03/01/2016~
-~07028~^~318~^0.^0^^~1~^~AS~^^^^^^^^^^~03/01/2007~
-~07028~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2002~
-~07028~^~320~^0.^0^^~1~^~AS~^^^^^^^^^^~05/01/2004~
-~07028~^~321~^0.^0^^~7~^~Z~^^^^^^^^^^~08/01/2002~
-~07028~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~08/01/2002~
-~07028~^~324~^25.^0^^~4~^~BFNN~^~10134~^^^^^^^^^~03/01/2016~
-~07028~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~08/01/2002~
-~07028~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~08/01/2002~
-~07028~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~08/01/2002~
-~07028~^~417~^0.^3^0.^~1~^~A~^^^1^0.^1.^2^0.^0.^~1, 2, 3~^~03/01/2007~
-~07028~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~
-~07028~^~432~^0.^3^0.^~1~^~A~^^^1^0.^1.^2^0.^0.^^~04/01/2014~
-~07028~^~435~^0.^0^^~4~^~NC~^^^^^^^^^^~04/01/2014~
-~07028~^~601~^41.^0^^~4~^~BFSN~^~43327~^^^^^^^^^~07/01/2011~
-~07029~^~208~^164.^0^^~4~^~NC~^^^^^^^^^^~07/01/2017~
-~07029~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2001~
-~07029~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2001~
-~07029~^~268~^687.^0^^~4~^~NC~^^^^^^^^^^~07/01/2017~
-~07029~^~301~^24.^0^^~4~^~FLA~^^^^^^^^^^~03/01/2003~
-~07029~^~304~^22.^0^^~4~^~FLA~^^^^^^^^^^~03/01/2003~
-~07029~^~305~^153.^0^^~4~^~FLA~^^^^^^^^^^~03/01/2003~
-~07029~^~306~^287.^0^^~4~^~FLA~^^^^^^^^^^~03/01/2003~
-~07029~^~307~^814.^0^^~4~^~NR~^^^^^^^^^^~07/01/2017~
-~07029~^~318~^0.^2^^~1~^~A~^^^1^0.^0.^^^^^~09/01/2002~
-~07029~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2002~
-~07029~^~320~^0.^0^^~1~^~AS~^^^^^^^^^^~03/01/2009~
-~07029~^~321~^0.^0^^~7~^~Z~^^^^^^^^^^~08/01/2002~
-~07029~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~08/01/2002~
-~07029~^~324~^29.^0^^~4~^~BFNN~^~10136~^^^^^^^^^~03/01/2009~
-~07029~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~08/01/2002~
-~07029~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~08/01/2002~
-~07029~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~08/01/2002~
-~07029~^~417~^7.^0^^~4~^~FLA~^^^^^^^^^^~03/01/2003~
-~07029~^~431~^0.^0^^~4~^~FLA~^^^^^^^^^^~09/01/2002~
-~07029~^~432~^7.^0^^~4~^~FLA~^^^^^^^^^^~09/01/2002~
-~07029~^~435~^7.^0^^~4~^~NC~^^^^^^^^^^~03/01/2009~
-~07029~^~601~^57.^2^^~1~^~A~^^^1^50.^59.^^^^^~09/01/2002~
-~07029~^~636~^5.^0^^~4~^~FLA~^^^^^^^^^^~01/01/2004~
-~07030~^~208~^263.^0^^~4~^~NC~^^^^^^^^^^~09/01/1980~
-~07030~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2003~
-~07030~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2003~
-~07030~^~268~^1100.^0^^~4~^^^^^^^^^^^~03/01/2009~
-~07030~^~301~^10.^4^1.^~1~^^^^^^^^^^^~09/01/1980~
-~07030~^~304~^16.^4^1.^~1~^^^^^^^^^^^~09/01/1980~
-~07030~^~305~^157.^4^5.^~1~^^^^^^^^^^^~09/01/1980~
-~07030~^~306~^311.^4^12.^~1~^^^^^^^^^^^~09/01/1980~
-~07030~^~307~^1245.^4^23.^~1~^^^^^^^^^^^~09/01/1980~
-~07030~^~318~^0.^0^^~4~^^^^^^^^^^^~09/01/1980~
-~07030~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2002~
-~07030~^~320~^0.^0^^~1~^~AS~^^^^^^^^^^~03/01/2009~
-~07030~^~321~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2003~
-~07030~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2003~
-~07030~^~324~^26.^0^^~4~^~BFNN~^~10136~^^^^^^^^^~03/01/2009~
-~07030~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2003~
-~07030~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2003~
-~07030~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2003~
-~07030~^~417~^1.^0^^~4~^^^^^^^^^^^~09/01/1980~
-~07030~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~
-~07030~^~432~^1.^0^^~4~^^^^^^^^^^^~03/01/2009~
-~07030~^~435~^1.^0^^~4~^~NC~^^^^^^^^^^~03/01/2009~
-~07030~^~601~^70.^4^9.^~1~^^^^^^^^^^^~09/01/1980~
-~07030~^~636~^0.^0^^~4~^^^^^^^^^^^~09/01/1980~
-~07031~^~208~^216.^0^^~4~^~NC~^^^^^^^^^^~09/01/1980~
-~07031~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2001~
-~07031~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2001~
-~07031~^~268~^904.^0^^~4~^^^^^^^^^^^~03/01/2009~
-~07031~^~301~^8.^4^0.^~1~^^^^^^^^^^^~09/01/1980~
-~07031~^~304~^10.^4^0.^~1~^^^^^^^^^^^~09/01/1980~
-~07031~^~305~^120.^4^2.^~1~^^^^^^^^^^^~09/01/1980~
-~07031~^~306~^150.^4^4.^~1~^^^^^^^^^^^~09/01/1980~
-~07031~^~307~^1075.^0^^~8~^~LC~^^^^^^^^^^~08/01/2012~
-~07031~^~318~^0.^0^^~4~^^^^^^^^^^^~09/01/1980~
-~07031~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2002~
-~07031~^~320~^0.^0^^~1~^~AS~^^^^^^^^^^~03/01/2009~
-~07031~^~321~^0.^0^^~7~^~Z~^^^^^^^^^^~08/01/2002~
-~07031~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~08/01/2002~
-~07031~^~324~^26.^0^^~4~^~BFNN~^~10136~^^^^^^^^^~03/01/2009~
-~07031~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~08/01/2002~
-~07031~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~08/01/2002~
-~07031~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~08/01/2002~
-~07031~^~417~^1.^0^^~4~^^^^^^^^^^^~09/01/1980~
-~07031~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~
-~07031~^~432~^1.^0^^~4~^^^^^^^^^^^~03/01/2009~
-~07031~^~435~^1.^0^^~4~^~NC~^^^^^^^^^^~03/01/2009~
-~07031~^~601~^37.^4^2.^~1~^^^^^^^^^^^~09/01/1980~
-~07031~^~636~^0.^0^^~4~^^^^^^^^^^^~09/01/1980~
-~07032~^~208~^241.^0^^~4~^~NC~^^^^^^^^^^~02/01/2007~
-~07032~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~
-~07032~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~
-~07032~^~268~^1010.^0^^~4~^~NC~^^^^^^^^^^~02/01/2007~
-~07032~^~301~^58.^8^4.^~1~^^^^^^^^^^^~05/01/2004~
-~07032~^~304~^16.^8^0.^~1~^^^^^^^^^^^~05/01/2004~
-~07032~^~305~^253.^8^17.^~1~^^^^^^^^^^^~05/01/2004~
-~07032~^~306~^294.^8^10.^~1~^^^^^^^^^^^~05/01/2004~
-~07032~^~307~^1000.^0^^~8~^~LC~^^^^^^^^^^~08/01/2012~
-~07032~^~318~^0.^1^^~1~^~A~^^^^^^^^^^~05/01/2004~
-~07032~^~319~^0.^0^^~4~^~NR~^^^^^^^^^^~05/01/2004~
-~07032~^~320~^0.^0^^~4~^~NC~^^^^^^^^^^~02/01/2007~
-~07032~^~321~^0.^0^^~7~^~Z~^^^^^^^^^^~08/01/2002~
-~07032~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~08/01/2002~
-~07032~^~324~^44.^0^^~4~^~T~^^^^^^^^^^~01/01/2001~
-~07032~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~08/01/2002~
-~07032~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~08/01/2002~
-~07032~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2004~
-~07032~^~417~^3.^0^^~4~^^^^^^^^^^^~05/01/2004~
-~07032~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~
-~07032~^~432~^3.^0^^~4~^^^^^^^^^^^~02/01/2007~
-~07032~^~435~^3.^0^^~4~^~NC~^^^^^^^^^^~03/01/2009~
-~07032~^~601~^58.^1^^~1~^~A~^^^^^^^^^^~05/01/2004~
-~07032~^~636~^0.^0^^~4~^^^^^^^^^^^~02/01/2007~
-~07033~^~208~^245.^0^^~4~^~NC~^^^^^^^^^^~09/01/1980~
-~07033~^~268~^1025.^0^^~4~^^^^^^^^^^^
-~07033~^~301~^217.^4^7.^~1~^^^^^^^^^^^~09/01/1980~
-~07033~^~304~^18.^4^0.^~1~^^^^^^^^^^^~09/01/1980~
-~07033~^~305~^495.^4^11.^~1~^^^^^^^^^^^~09/01/1980~
-~07033~^~306~^162.^4^14.^~1~^^^^^^^^^^^~09/01/1980~
-~07033~^~307~^1197.^4^45.^~1~^^^^^^^^^^^~09/01/1980~
-~07033~^~318~^304.^0^^~4~^^^^^^^^^^^~09/01/1980~
-~07033~^~319~^91.^0^^~4~^^^^^^^^^^^~06/01/2002~
-~07033~^~320~^91.^0^^~4~^^^^^^^^^^^~06/01/2002~
-~07033~^~417~^3.^0^^~4~^^^^^^^^^^^~09/01/1980~
-~07033~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~
-~07033~^~432~^3.^0^^~4~^^^^^^^^^^^~09/01/1980~
-~07033~^~435~^3.^0^^~4~^~NC~^^^^^^^^^^~01/01/2001~
-~07033~^~601~^61.^4^3.^~1~^^^^^^^^^^^~09/01/1980~
-~07033~^~636~^0.^0^^~4~^^^^^^^^^^^~09/01/1980~
-~07034~^~208~^157.^0^^~4~^~NC~^^^^^^^^^^~03/01/2009~
-~07034~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2001~
-~07034~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2001~
-~07034~^~268~^658.^0^^~4~^~NC~^^^^^^^^^^~03/01/2009~
-~07034~^~301~^16.^1^^~1~^~A~^^^^^^^^^^~05/01/2004~
-~07034~^~304~^9.^4^0.^~1~^^^^^^^^^^^~05/01/2004~
-~07034~^~305~^56.^1^^~1~^~A~^^^^^^^^^^~05/01/2004~
-~07034~^~306~^31.^4^7.^~1~^^^^^^^^^^^~05/01/2004~
-~07034~^~307~^941.^0^^~8~^~LC~^^^^^^^^^^~08/01/2012~
-~07034~^~318~^0.^0^^~1~^~AS~^^^^^^^^^^~03/01/2009~
-~07034~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2002~
-~07034~^~320~^0.^0^^~1~^~AS~^^^^^^^^^^~03/01/2009~
-~07034~^~321~^0.^0^^~7~^~Z~^^^^^^^^^^~08/01/2002~
-~07034~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~08/01/2002~
-~07034~^~324~^37.^0^^~4~^~BFFN~^^^^^^^^^^~03/01/2009~
-~07034~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~08/01/2002~
-~07034~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~08/01/2002~
-~07034~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~08/01/2002~
-~07034~^~417~^2.^4^0.^~1~^^^^^^^^^^^~05/01/2004~
-~07034~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~
-~07034~^~432~^2.^4^0.^~1~^^^^^^^^^^^~03/01/2009~
-~07034~^~435~^2.^0^^~4~^~NC~^^^^^^^^^^~03/01/2009~
-~07034~^~601~^69.^1^^~1~^~A~^^^^^^^^^^~05/01/2004~
-~07036~^~208~^290.^0^^~4~^~NC~^^^^^^^^^^~11/01/2016~
-~07036~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~11/01/2016~
-~07036~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~11/01/2016~
-~07036~^~268~^1212.^0^^~4~^~NC~^^^^^^^^^^~11/01/2016~
-~07036~^~301~^12.^5^1.^~1~^~A~^^^1^8.^14.^2^6.^16.^~2, 3~^~11/01/2016~
-~07036~^~304~^16.^5^0.^~1~^~A~^^^1^14.^17.^2^12.^19.^~2, 3~^~10/01/2016~
-~07036~^~305~^126.^5^4.^~1~^~A~^^^1^116.^134.^2^107.^144.^~2, 3~^~11/01/2016~
-~07036~^~306~^211.^5^35.^~1~^~A~^^^1^116.^253.^2^57.^365.^~2, 3~^~11/01/2016~
-~07036~^~307~^563.^5^100.^~1~^~A~^^^1^296.^684.^2^134.^991.^~2, 3~^~11/01/2016~
-~07036~^~318~^0.^0^^~1~^~AS~^^^^^^^^^^~10/01/2016~
-~07036~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2002~
-~07036~^~320~^0.^0^^~1~^~AS~^^^^^^^^^^~10/01/2016~
-~07036~^~321~^0.^0^^~7~^~Z~^^^^^^^^^^~10/01/2016~
-~07036~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~10/01/2016~
-~07036~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~10/01/2016~
-~07036~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~10/01/2016~
-~07036~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~10/01/2016~
-~07036~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~
-~07036~^~601~^69.^3^0.^~1~^~A~^^^1^63.^71.^1^61.^76.^~2, 3~^~11/01/2016~
-~07038~^~208~^307.^0^^~4~^~NC~^^^^^^^^^^~02/01/2009~
-~07038~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2001~
-~07038~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2001~
-~07038~^~268~^1282.^0^^~4~^~NC~^^^^^^^^^^~02/01/2009~
-~07038~^~301~^11.^5^0.^~1~^^^^^^^^^^^~06/01/2002~
-~07038~^~304~^11.^5^0.^~1~^^^^^^^^^^^~06/01/2002~
-~07038~^~305~^98.^5^6.^~1~^^^^^^^^^^^~06/01/2002~
-~07038~^~306~^199.^5^8.^~1~^^^^^^^^^^^~06/01/2002~
-~07038~^~307~^930.^1^^~1~^~A~^^^^^^^^^^~07/01/2002~
-~07038~^~318~^0.^0^^~4~^~BFZN~^^^^^^^^^^~07/01/2002~
-~07038~^~319~^0.^0^^~4~^~BFZN~^^^^^^^^^^~07/01/2002~
-~07038~^~320~^0.^0^^~4~^~NC~^^^^^^^^^^~02/01/2009~
-~07038~^~321~^0.^0^^~7~^~Z~^^^^^^^^^^~08/01/2002~
-~07038~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~08/01/2002~
-~07038~^~324~^44.^0^^~4~^~BFFN~^~07002~^^^^^^^^^~02/01/2009~
-~07038~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~08/01/2002~
-~07038~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~08/01/2002~
-~07038~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~08/01/2002~
-~07038~^~417~^2.^0^^~4~^^^^^^^^^^^~06/01/2002~
-~07038~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~
-~07038~^~432~^2.^0^^~4~^^^^^^^^^^^~02/01/2009~
-~07038~^~435~^2.^0^^~4~^~NC~^^^^^^^^^^~02/01/2009~
-~07038~^~601~^60.^1^^~1~^~A~^^^^^^^^^^~07/01/2002~
-~07038~^~636~^0.^0^^~4~^^^^^^^^^^^~06/01/2002~
-~07039~^~208~^172.^0^^~4~^~NC~^^^^^^^^^^~02/01/2009~
-~07039~^~262~^0.^0^^~9~^~MC~^^^^^^^^^^~07/01/2002~
-~07039~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2001~
-~07039~^~268~^719.^0^^~4~^~NC~^^^^^^^^^^~02/01/2009~
-~07039~^~301~^20.^0^^~9~^~MC~^^^^^^^^^^~04/01/2003~
-~07039~^~304~^20.^0^^~9~^~MC~^^^^^^^^^^~04/01/2003~
-~07039~^~305~^192.^0^^~9~^~MC~^^^^^^^^^^~04/01/2003~
-~07039~^~306~^330.^0^^~9~^~MC~^^^^^^^^^^~04/01/2003~
-~07039~^~307~^1374.^0^^~9~^~MC~^^^^^^^^^^~04/01/2003~
-~07039~^~318~^39.^0^^~9~^~MC~^^^^^^^^^^~04/01/2003~
-~07039~^~319~^12.^0^^~4~^~NR~^^^^^^^^^^~04/01/2003~
-~07039~^~320~^12.^0^^~4~^~NR~^^^^^^^^^^~04/01/2003~
-~07039~^~321~^0.^0^^~7~^~Z~^^^^^^^^^^~07/01/2002~
-~07039~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~07/01/2002~
-~07039~^~324~^10.^0^^~4~^~BFFN~^~07007~^^^^^^^^^~02/01/2009~
-~07039~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~07/01/2002~
-~07039~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~07/01/2002~
-~07039~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~07/01/2002~
-~07039~^~417~^6.^0^^~9~^~MC~^^^^^^^^^^~04/01/2003~
-~07039~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~
-~07039~^~432~^6.^0^^~9~^~MC~^^^^^^^^^^~02/01/2009~
-~07039~^~435~^6.^0^^~4~^~NC~^^^^^^^^^^~02/01/2009~
-~07039~^~601~^55.^0^^~9~^~MC~^^^^^^^^^^~04/01/2003~
-~07040~^~208~^304.^0^^~4~^~NC~^^^^^^^^^^~09/01/1980~
-~07040~^~268~^1272.^0^^~4~^^^^^^^^^^^
-~07040~^~301~^8.^6^0.^~1~^^^^^^^^^^^~09/01/1980~
-~07040~^~304~^12.^6^0.^~1~^^^^^^^^^^^~09/01/1980~
-~07040~^~305~^207.^6^16.^~1~^^^^^^^^^^^~09/01/1980~
-~07040~^~306~^226.^6^11.^~1~^^^^^^^^^^^~09/01/1980~
-~07040~^~307~^1225.^6^40.^~1~^^^^^^^^^^^~09/01/1980~
-~07040~^~318~^17490.^6^408.^~1~^^^^^^^^^^^~09/01/1980~
-~07040~^~319~^5252.^6^122.^~1~^^^^^^^^^^^~06/01/2002~
-~07040~^~320~^5252.^6^122.^~1~^^^^^^^^^^^~06/01/2002~
-~07040~^~417~^104.^1^^~1~^^^^^^^^^^^~09/01/1980~
-~07040~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~
-~07040~^~432~^104.^1^^~1~^^^^^^^^^^^~09/01/1980~
-~07040~^~435~^104.^0^^~4~^~NC~^^^^^^^^^^~01/01/2001~
-~07040~^~601~^174.^5^21.^~1~^^^^^^^^^^^~09/01/1980~
-~07041~^~208~^326.^0^^~4~^~NC~^^^^^^^^^^~09/01/1980~
-~07041~^~268~^1364.^0^^~4~^^^^^^^^^^^
-~07041~^~301~^26.^1^^~1~^^^^^^^^^^^~09/01/1980~
-~07041~^~304~^12.^0^^~1~^^^^^^^^^^^~09/01/1980~
-~07041~^~305~^230.^1^^~1~^^^^^^^^^^^~09/01/1980~
-~07041~^~306~^170.^0^^~1~^^^^^^^^^^^~09/01/1980~
-~07041~^~307~^860.^0^^~1~^^^^^^^^^^^~09/01/1980~
-~07041~^~318~^27667.^0^^~1~^^^^^^^^^^^~09/01/1980~
-~07041~^~319~^8308.^0^^~4~^~NR~^^^^^^^^^^~05/01/2002~
-~07041~^~320~^8308.^0^^~1~^^^^^^^^^^^~03/01/2002~
-~07041~^~417~^30.^3^3.^~1~^^^^^^^^^^^~09/01/1980~
-~07041~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~
-~07041~^~432~^30.^3^3.^~1~^^^^^^^^^^^~03/01/2002~
-~07041~^~435~^30.^0^^~4~^~NC~^^^^^^^^^^~05/01/2002~
-~07041~^~601~^158.^2^^~1~^^^^^^^^^^^~09/01/1980~
-~07043~^~208~^115.^0^^~4~^~NC~^^^^^^^^^^~04/01/2014~
-~07043~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2001~
-~07043~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2001~
-~07043~^~268~^482.^0^^~4~^~NC~^^^^^^^^^^~04/01/2014~
-~07043~^~301~^5.^15^0.^~1~^~A~^^^1^4.^7.^5^4.^5.^~2, 3~^~04/01/2014~
-~07043~^~304~^20.^15^0.^~1~^~A~^^^1^18.^21.^9^19.^20.^~2, 3~^~04/01/2014~
-~07043~^~305~^242.^15^2.^~1~^~A~^^^1^222.^282.^11^235.^248.^~2, 3~^~04/01/2014~
-~07043~^~306~^647.^15^22.^~1~^~A~^^^1^331.^928.^5^587.^706.^~2, 3~^~04/01/2014~
-~07043~^~307~^853.^15^15.^~1~^~A~^^^1^677.^1080.^10^819.^886.^~2, 3~^~04/01/2014~
-~07043~^~318~^11.^0^^~1~^~AS~^^^^^^^^^^~04/01/2014~
-~07043~^~319~^3.^3^^~1~^~A~^^^1^3.^4.^^^^~2, 3~^~04/01/2014~
-~07043~^~320~^3.^0^^~1~^~AS~^^^^^^^^^^~04/01/2014~
-~07043~^~321~^0.^0^^~7~^~Z~^^^^^^^^^^~08/01/2002~
-~07043~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~08/01/2002~
-~07043~^~324~^1.^0^^~4~^~BFFN~^^^^^^^^^^~04/01/2014~
-~07043~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~08/01/2002~
-~07043~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~08/01/2002~
-~07043~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~08/01/2002~
-~07043~^~417~^5.^0^^~4~^~BFPN~^^^^^^^^^^~04/01/2014~
-~07043~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~
-~07043~^~432~^5.^0^^~4~^~BFPN~^^^^^^^^^^~04/01/2014~
-~07043~^~435~^5.^0^^~4~^~NC~^^^^^^^^^^~04/01/2014~
-~07043~^~601~^51.^9^0.^~1~^~A~^^^1^46.^57.^4^48.^53.^~2, 3~^~04/01/2014~
-~07045~^~208~^334.^0^^~4~^~NC~^^^^^^^^^^~09/01/1980~
-~07045~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2001~
-~07045~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2001~
-~07045~^~268~^1397.^0^^~4~^^^^^^^^^^^~04/01/2009~
-~07045~^~301~^6.^1^^~1~^^^^^^^^^^^~09/01/1980~
-~07045~^~304~^10.^8^0.^~1~^^^^^^^^^^^~09/01/1980~
-~07045~^~305~^82.^8^5.^~1~^^^^^^^^^^^~09/01/1980~
-~07045~^~306~^215.^8^8.^~1~^^^^^^^^^^^~09/01/1980~
-~07045~^~307~^1289.^8^8.^~1~^^^^^^^^^^^~09/01/1980~
-~07045~^~318~^0.^1^^~1~^^^^^^^^^^^~09/01/1980~
-~07045~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2002~
-~07045~^~320~^0.^0^^~1~^~AS~^^^^^^^^^^~04/01/2009~
-~07045~^~321~^0.^0^^~7~^~Z~^^^^^^^^^^~08/01/2002~
-~07045~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~08/01/2002~
-~07045~^~324~^22.^0^^~4~^~BFNN~^~10136~^^^^^^^^^~04/01/2009~
-~07045~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~08/01/2002~
-~07045~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~08/01/2002~
-~07045~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~08/01/2002~
-~07045~^~417~^6.^1^^~1~^^^^^^^^^^^~09/01/1980~
-~07045~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~
-~07045~^~432~^6.^1^^~1~^^^^^^^^^^^~04/01/2009~
-~07045~^~435~^6.^0^^~4~^~NC~^^^^^^^^^^~04/01/2009~
-~07045~^~601~^62.^7^7.^~1~^^^^^^^^^^^~09/01/1980~
-~07046~^~208~^109.^0^^~4~^~NC~^^^^^^^^^^~07/01/2015~
-~07046~^~262~^0.^0^^~6~^~RPI~^^^^^^^^^^~04/01/2009~
-~07046~^~263~^0.^0^^~6~^~RPI~^^^^^^^^^^~04/01/2009~
-~07046~^~268~^455.^0^^~4~^~NC~^^^^^^^^^^~07/01/2015~
-~07046~^~301~^8.^0^^~1~^~RPA~^^^^^^^^^^~04/01/2009~
-~07046~^~304~^21.^0^^~6~^~RPI~^^^^^^^^^^~04/01/2009~
-~07046~^~305~^162.^0^^~6~^~RPI~^^^^^^^^^^~04/01/2009~
-~07046~^~306~^211.^1^^~8~^~LC~^^^^^^^^^^~04/01/2009~
-~07046~^~307~^772.^1^^~8~^~LC~^^^^^^^^^^~04/01/2009~
-~07046~^~318~^33.^0^^~1~^~RPA~^^^^^^^^^^~05/01/2013~
-~07046~^~319~^10.^0^^~1~^~RPA~^^^^^^^^^^~04/01/2009~
-~07046~^~320~^10.^0^^~1~^~RPA~^^^^^^^^^^~05/01/2013~
-~07046~^~321~^0.^0^^~6~^~RPI~^^^^^^^^^^~04/01/2009~
-~07046~^~322~^0.^0^^~6~^~RPI~^^^^^^^^^^~04/01/2009~
-~07046~^~324~^2.^0^^~6~^~RPI~^^^^^^^^^^~04/01/2009~
-~07046~^~334~^0.^0^^~6~^~RPI~^^^^^^^^^^~04/01/2009~
-~07046~^~337~^0.^0^^~6~^~RPI~^^^^^^^^^^~04/01/2009~
-~07046~^~338~^0.^0^^~6~^~RPI~^^^^^^^^^^~04/01/2009~
-~07046~^~417~^4.^0^^~6~^~RPI~^^^^^^^^^^~04/01/2009~
-~07046~^~431~^0.^0^^~6~^~RPI~^^^^^^^^^^~04/01/2009~
-~07046~^~432~^4.^0^^~6~^~RPI~^^^^^^^^^^~04/01/2009~
-~07046~^~435~^4.^0^^~4~^~NC~^^^^^^^^^^~07/01/2009~
-~07046~^~601~^44.^1^^~8~^~LC~^^^^^^^^^^~04/01/2009~
-~07046~^~636~^0.^0^^~6~^~RPI~^^^^^^^^^^~04/01/2009~
-~07050~^~208~^311.^0^^~4~^~NC~^^^^^^^^^^~09/01/1980~
-~07050~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2001~
-~07050~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2001~
-~07050~^~268~^1301.^0^^~4~^^^^^^^^^^^~02/01/2009~
-~07050~^~301~^18.^5^1.^~1~^^^^^^^^^^^~09/01/1980~
-~07050~^~304~^11.^5^0.^~1~^^^^^^^^^^^~09/01/1980~
-~07050~^~305~^97.^5^2.^~1~^^^^^^^^^^^~09/01/1980~
-~07050~^~306~^163.^4^17.^~1~^^^^^^^^^^^~09/01/1980~
-~07050~^~307~^1246.^4^65.^~1~^^^^^^^^^^^~09/01/1980~
-~07050~^~318~^0.^0^^~4~^^^^^^^^^^^~09/01/1980~
-~07050~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2002~
-~07050~^~320~^0.^0^^~1~^~AS~^^^^^^^^^^~02/01/2009~
-~07050~^~321~^0.^0^^~7~^~Z~^^^^^^^^^^~08/01/2002~
-~07050~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~08/01/2002~
-~07050~^~324~^41.^0^^~4~^~BFFN~^~07002~^^^^^^^^^~02/01/2009~
-~07050~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~08/01/2002~
-~07050~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~08/01/2002~
-~07050~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~08/01/2002~
-~07050~^~417~^3.^0^^~4~^^^^^^^^^^^~09/01/1980~
-~07050~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~
-~07050~^~432~^3.^0^^~4~^^^^^^^^^^^~02/01/2009~
-~07050~^~435~^3.^0^^~4~^~NC~^^^^^^^^^^~02/01/2009~
-~07050~^~601~^56.^4^2.^~1~^^^^^^^^^^^~09/01/1980~
-~07050~^~636~^0.^0^^~4~^^^^^^^^^^^~09/01/1980~
-~07051~^~208~^235.^0^^~4~^~NC~^^^^^^^^^^~02/01/2007~
-~07051~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~
-~07051~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~
-~07051~^~268~^983.^0^^~4~^^^^^^^^^^^~02/01/2007~
-~07051~^~301~^109.^4^9.^~1~^^^^^^^^^^^~09/01/1980~
-~07051~^~304~^19.^4^1.^~1~^^^^^^^^^^^~09/01/1980~
-~07051~^~305~^127.^4^7.^~1~^^^^^^^^^^^~09/01/1980~
-~07051~^~306~^297.^4^10.^~1~^^^^^^^^^^^~09/01/1980~
-~07051~^~307~^964.^0^^~8~^~LC~^^^^^^^^^^~08/01/2012~
-~07051~^~318~^200.^1^^~1~^^^^^^^^^^^~01/01/2004~
-~07051~^~319~^60.^0^^~4~^~NR~^^^^^^^^^^~01/01/2004~
-~07051~^~320~^60.^0^^~4~^~NC~^^^^^^^^^^~02/01/2007~
-~07051~^~321~^0.^0^^~7~^~Z~^^^^^^^^^^~08/01/2002~
-~07051~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~08/01/2002~
-~07051~^~324~^44.^0^^~4~^~T~^^^^^^^^^^~01/01/2001~
-~07051~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~08/01/2002~
-~07051~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~08/01/2002~
-~07051~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~08/01/2002~
-~07051~^~417~^2.^1^^~1~^^^^^^^^^^^~09/01/1980~
-~07051~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~
-~07051~^~432~^2.^1^^~1~^^^^^^^^^^^~02/01/2007~
-~07051~^~435~^2.^0^^~4~^~NC~^^^^^^^^^^~03/01/2009~
-~07051~^~601~^38.^3^4.^~1~^^^^^^^^^^^~09/01/1980~
-~07052~^~208~^139.^0^^~4~^~NC~^^^^^^^^^^~08/01/2013~
-~07052~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2001~
-~07052~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2009~
-~07052~^~268~^580.^0^^~4~^~NC~^^^^^^^^^^~08/01/2013~
-~07052~^~301~^11.^2^^~1~^~A~^^^1^9.^14.^1^^^^~07/01/2004~
-~07052~^~304~^14.^1^^~1~^^^^^^^^^^^~01/01/2008~
-~07052~^~305~^200.^1^^~1~^^^^^^^^^^^~01/01/2008~
-~07052~^~306~^345.^2^^~1~^~A~^^^1^317.^372.^1^^^^~07/01/2004~
-~07052~^~307~^1123.^0^^~8~^~LC~^^^^^^^^^^~08/01/2012~
-~07052~^~318~^12.^2^^~1~^~A~^^^1^4.^20.^1^^^^~08/01/2013~
-~07052~^~319~^4.^2^^~4~^~NR~^^^1^1.^6.^1^^^^~01/01/2008~
-~07052~^~320~^4.^0^^~4~^~NC~^^^^^^^^^^~01/01/2008~
-~07052~^~321~^7.^2^^~4~^~NR~^^^1^2.^12.^1^^^^~01/01/2008~
-~07052~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~08/01/2002~
-~07052~^~324~^10.^0^^~4~^~NR~^^^^^^^^^^~03/01/2009~
-~07052~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~08/01/2002~
-~07052~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~08/01/2002~
-~07052~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~08/01/2002~
-~07052~^~417~^5.^0^^~4~^^^^^^^^^^^~01/01/2008~
-~07052~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~
-~07052~^~432~^5.^0^^~4~^^^^^^^^^^^~03/01/2009~
-~07052~^~435~^5.^0^^~4~^~NC~^^^^^^^^^^~03/01/2009~
-~07052~^~601~^68.^2^^~1~^~A~^^^1^60.^76.^1^^^^~07/01/2004~
-~07053~^~208~^201.^0^^~4~^~NC~^^^^^^^^^^~09/01/1980~
-~07053~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2001~
-~07053~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2001~
-~07053~^~268~^841.^0^^~4~^^^^^^^^^^^~02/01/2007~
-~07053~^~301~^10.^5^0.^~1~^^^^^^^^^^^~09/01/1980~
-~07053~^~304~^13.^0^^~4~^^^^^^^^^^^~09/01/1980~
-~07053~^~305~^175.^0^^~4~^^^^^^^^^^^~09/01/1980~
-~07053~^~306~^95.^0^^~4~^^^^^^^^^^^~09/01/1980~
-~07053~^~307~^386.^0^^~4~^^^^^^^^^^^~09/01/1980~
-~07053~^~318~^724.^5^34.^~1~^^^^^^^^^^^~09/01/1980~
-~07053~^~319~^217.^0^^~4~^~NR~^^^^^^^^^^~03/01/2003~
-~07053~^~320~^217.^0^^~4~^~NR~^^^^^^^^^^~03/01/2003~
-~07053~^~321~^0.^0^^~7~^~Z~^^^^^^^^^^~08/01/2002~
-~07053~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~08/01/2002~
-~07053~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2009~
-~07053~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~08/01/2002~
-~07053~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~08/01/2002~
-~07053~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~08/01/2002~
-~07053~^~417~^321.^0^^~4~^^^^^^^^^^^~09/01/1980~
-~07053~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~
-~07053~^~432~^321.^0^^~4~^^^^^^^^^^^~02/01/2007~
-~07053~^~435~^321.^0^^~4~^~NC~^^^^^^^^^^~03/01/2009~
-~07053~^~601~^391.^0^^~4~^^^^^^^^^^^~09/01/1980~
-~07053~^~636~^0.^0^^~4~^^^^^^^^^^^~09/01/1980~
-~07054~^~208~^462.^0^^~4~^~NC~^^^^^^^^^^~09/01/1980~
-~07054~^~268~^1933.^0^^~4~^^^^^^^^^^^
-~07054~^~301~^70.^0^^~4~^^^^^^^^^^^~09/01/1980~
-~07054~^~304~^13.^0^^~4~^^^^^^^^^^^~09/01/1980~
-~07054~^~305~^200.^0^^~4~^^^^^^^^^^^~09/01/1980~
-~07054~^~306~^138.^0^^~4~^^^^^^^^^^^~09/01/1980~
-~07054~^~307~^697.^0^^~4~^^^^^^^^^^^~09/01/1980~
-~07054~^~318~^3333.^0^^~4~^^^^^^^^^^^~09/01/1980~
-~07054~^~319~^1001.^0^^~4~^^^^^^^^^^^~06/01/2002~
-~07054~^~320~^1001.^0^^~4~^^^^^^^^^^^~06/01/2002~
-~07054~^~417~^60.^0^^~4~^^^^^^^^^^^~09/01/1980~
-~07054~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~
-~07054~^~432~^60.^0^^~4~^^^^^^^^^^^~09/01/1980~
-~07054~^~435~^60.^0^^~4~^~NC~^^^^^^^^^^~01/01/2001~
-~07054~^~601~^150.^1^^~1~^^^^^^^^^^^~09/01/1980~
-~07054~^~636~^0.^0^^~4~^^^^^^^^^^^~09/01/1980~
-~07055~^~208~^319.^0^^~4~^~NC~^^^^^^^^^^~09/01/1980~
-~07055~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2002~
-~07055~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2002~
-~07055~^~268~^1335.^0^^~4~^^^^^^^^^^^
-~07055~^~301~^70.^10^9.^~1~^^^^^^^^^^^~09/01/1980~
-~07055~^~304~^13.^1^^~1~^^^^^^^^^^^~09/01/1980~
-~07055~^~305~^200.^10^23.^~1~^^^^^^^^^^^~09/01/1980~
-~07055~^~306~^138.^10^11.^~1~^^^^^^^^^^^~09/01/1980~
-~07055~^~307~^697.^10^35.^~1~^^^^^^^^^^^~09/01/1980~
-~07055~^~318~^3300.^10^939.^~1~^^^^^^^^^^^~09/01/1980~
-~07055~^~319~^991.^0^^~4~^~NR~^^^^^^^^^^~05/01/2002~
-~07055~^~320~^991.^10^282.^~1~^^^^^^^^^^^~05/01/2002~
-~07055~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2002~
-~07055~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2002~
-~07055~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2002~
-~07055~^~417~^60.^1^^~1~^^^^^^^^^^^~09/01/1980~
-~07055~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~
-~07055~^~432~^60.^1^^~1~^^^^^^^^^^^~09/01/1980~
-~07055~^~435~^60.^0^^~4~^~NC~^^^^^^^^^^~05/01/2002~
-~07055~^~601~^255.^0^^~4~^^^^^^^^^^^~09/01/1980~
-~07055~^~636~^0.^0^^~4~^^^^^^^^^^^~09/01/1980~
-~07056~^~208~^149.^0^^~4~^~NC~^^^^^^^^^^~06/01/2008~
-~07056~^~262~^0.^0^^~9~^~MC~^^^^^^^^^^~07/01/2002~
-~07056~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~
-~07056~^~268~^624.^0^^~4~^~NC~^^^^^^^^^^~08/01/2012~
-~07056~^~301~^54.^0^^~9~^~MC~^^^^^^^^^^~04/01/2003~
-~07056~^~304~^20.^0^^~9~^~MC~^^^^^^^^^^~04/01/2003~
-~07056~^~305~^170.^0^^~9~^~MC~^^^^^^^^^^~04/01/2003~
-~07056~^~306~^394.^0^^~9~^~MC~^^^^^^^^^^~04/01/2003~
-~07056~^~307~^732.^0^^~8~^~LC~^^^^^^^^^^~08/01/2012~
-~07056~^~318~^0.^0^^~9~^~MC~^^^^^^^^^^~04/01/2003~
-~07056~^~319~^0.^0^^~4~^~NR~^^^^^^^^^^~07/01/2002~
-~07056~^~320~^0.^0^^~4~^~NC~^^^^^^^^^^~07/01/2007~
-~07056~^~321~^0.^0^^~7~^~Z~^^^^^^^^^^~07/01/2002~
-~07056~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~07/01/2002~
-~07056~^~324~^32.^0^^~9~^~MC~^^^^^^^^^^~07/01/2002~
-~07056~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~07/01/2002~
-~07056~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~07/01/2002~
-~07056~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~07/01/2002~
-~07056~^~417~^2.^0^^~9~^~MC~^^^^^^^^^^~04/01/2003~
-~07056~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~
-~07056~^~432~^2.^0^^~9~^~MC~^^^^^^^^^^~07/01/2007~
-~07056~^~435~^2.^0^^~4~^~NC~^^^^^^^^^^~03/01/2009~
-~07056~^~601~^46.^0^^~9~^~MC~^^^^^^^^^^~04/01/2003~
-~07057~^~208~^504.^0^^~4~^~NC~^^^^^^^^^^~04/01/2015~
-~07057~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2001~
-~07057~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2001~
-~07057~^~268~^2110.^0^^~4~^~NC~^^^^^^^^^^~04/01/2015~
-~07057~^~301~^19.^6^0.^~1~^~A~^^^1^17.^20.^5^17.^19.^~2, 3~^~04/01/2015~
-~07057~^~304~^18.^6^0.^~1~^~A~^^^1^18.^19.^5^17.^18.^~2, 3~^~04/01/2015~
-~07057~^~305~^158.^6^1.^~1~^~A~^^^1^155.^166.^5^153.^162.^~2, 3~^~04/01/2015~
-~07057~^~306~^274.^6^2.^~1~^~A~^^^1^267.^287.^5^266.^280.^~2, 3~^~04/01/2015~
-~07057~^~307~^1582.^6^32.^~1~^~A~^^^1^1530.^1740.^5^1498.^1664.^~2, 3~^~04/01/2015~
-~07057~^~318~^0.^0^^~1~^~AS~^^^^^^^^^^~03/01/2007~
-~07057~^~319~^0.^1^^~1~^~A~^^^^^^^^^~1~^~04/01/2015~
-~07057~^~320~^0.^0^^~1~^~AS~^^^^^^^^^^~03/01/2007~
-~07057~^~321~^0.^0^^~7~^~Z~^^^^^^^^^^~08/01/2002~
-~07057~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~08/01/2002~
-~07057~^~324~^52.^0^^~4~^~BFFN~^~07072~^^^^^^^^^~04/01/2015~
-~07057~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~08/01/2002~
-~07057~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~08/01/2002~
-~07057~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~08/01/2002~
-~07057~^~417~^5.^0^^~4~^~BFPN~^^^^^^^^^^~07/01/2015~
-~07057~^~431~^0.^0^^~4~^~BFPN~^^^^^^^^^^~03/01/2007~
-~07057~^~432~^5.^0^^~4~^~BFPN~^^^^^^^^^^~07/01/2015~
-~07057~^~435~^5.^0^^~4~^~NC~^^^^^^^^^^~07/01/2015~
-~07057~^~601~^97.^3^0.^~1~^~A~^^^1^96.^98.^2^93.^100.^~2, 3~^~04/01/2015~
-~07058~^~208~^225.^0^^~4~^~NC~^^^^^^^^^^~02/01/2007~
-~07058~^~262~^0.^0^^~4~^~FLA~^^^^^^^^^^~07/01/2004~
-~07058~^~263~^0.^0^^~4~^~FLA~^^^^^^^^^^~07/01/2004~
-~07058~^~268~^939.^0^^~4~^~NC~^^^^^^^^^^~02/01/2007~
-~07058~^~301~^109.^3^19.^~1~^~A~^^^1^90.^129.^1^-139.^358.^~4~^~06/01/2004~
-~07058~^~304~^34.^0^^~4~^~FLA~^^^^^^^^^^~02/01/2007~
-~07058~^~305~^153.^0^^~4~^~FLA~^^^^^^^^^^~02/01/2007~
-~07058~^~306~^371.^0^^~4~^~FLA~^^^^^^^^^^~02/01/2007~
-~07058~^~307~^1040.^0^^~8~^~LC~^^^^^^^^^^~08/01/2012~
-~07058~^~318~^260.^1^^~1~^~A~^^^^^^^^^^~02/01/2007~
-~07058~^~319~^78.^1^^~4~^~NR~^^^^^^^^^^~02/01/2007~
-~07058~^~320~^78.^0^^~1~^~AS~^^^^^^^^^^~02/01/2007~
-~07058~^~321~^147.^0^^~4~^~FLA~^^^^^^^^^^~02/01/2007~
-~07058~^~322~^4.^0^^~4~^~FLA~^^^^^^^^^^~02/01/2007~
-~07058~^~324~^33.^0^^~4~^~FLA~^^^^^^^^^^~02/01/2007~
-~07058~^~334~^46.^0^^~4~^~FLA~^^^^^^^^^^~02/01/2007~
-~07058~^~337~^0.^0^^~4~^~FLA~^^^^^^^^^^~07/01/2004~
-~07058~^~338~^87.^0^^~4~^~FLA~^^^^^^^^^^~02/01/2007~
-~07058~^~417~^37.^0^^~4~^~FLA~^^^^^^^^^^~02/01/2007~
-~07058~^~431~^0.^0^^~4~^~FLA~^^^^^^^^^^~07/01/2004~
-~07058~^~432~^37.^0^^~4~^~FLA~^^^^^^^^^^~02/01/2007~
-~07058~^~435~^37.^0^^~4~^~NC~^^^^^^^^^^~03/01/2009~
-~07058~^~601~^58.^3^0.^~1~^~A~^^^1^57.^58.^1^51.^63.^~4~^~06/01/2004~
-~07058~^~636~^21.^0^^~4~^~FLA~^^^^^^^^^^~02/01/2007~
-~07059~^~208~^326.^0^^~4~^~NC~^^^^^^^^^^~09/01/1980~
-~07059~^~268~^1364.^0^^~4~^^^^^^^^^^^
-~07059~^~301~^12.^6^0.^~1~^^^^^^^^^^^~09/01/1980~
-~07059~^~304~^14.^6^0.^~1~^^^^^^^^^^^~09/01/1980~
-~07059~^~305~^136.^6^3.^~1~^^^^^^^^^^^~09/01/1980~
-~07059~^~306~^237.^6^12.^~1~^^^^^^^^^^^~09/01/1980~
-~07059~^~307~^876.^6^63.^~1~^^^^^^^^^^^~09/01/1980~
-~07059~^~318~^0.^0^^~4~^^^^^^^^^^^~09/01/1980~
-~07059~^~319~^0.^0^^~4~^~NR~^^^^^^^^^^~07/01/2002~
-~07059~^~320~^0.^0^^~4~^~NC~^^^^^^^^^^~07/01/2002~
-~07059~^~417~^2.^0^^~4~^^^^^^^^^^^~09/01/1980~
-~07059~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~
-~07059~^~432~^2.^0^^~4~^^^^^^^^^^^~09/01/1980~
-~07059~^~435~^2.^0^^~4~^~NC~^^^^^^^^^^~08/01/2002~
-~07059~^~601~^70.^6^2.^~1~^^^^^^^^^^^~09/01/1980~
-~07059~^~636~^0.^0^^~4~^^^^^^^^^^^~09/01/1980~
-~07060~^~208~^141.^0^^~4~^~NC~^^^^^^^^^^~09/01/1980~
-~07060~^~268~^590.^0^^~4~^^^^^^^^^^^
-~07060~^~301~^36.^4^5.^~1~^^^^^^^^^^^~09/01/1980~
-~07060~^~304~^20.^4^0.^~1~^^^^^^^^^^^~09/01/1980~
-~07060~^~305~^185.^4^12.^~1~^^^^^^^^^^^~09/01/1980~
-~07060~^~306~^377.^4^18.^~1~^^^^^^^^^^^~09/01/1980~
-~07060~^~307~^1225.^4^95.^~1~^^^^^^^^^^^~09/01/1980~
-~07060~^~318~^0.^1^^~1~^^^^^^^^^^^~09/01/1980~
-~07060~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2002~
-~07060~^~320~^0.^1^^~1~^^^^^^^^^^^~06/01/2002~
-~07060~^~324~^28.^0^^~4~^~T~^^^^^^^^^^~01/01/2001~
-~07060~^~417~^2.^1^^~1~^^^^^^^^^^^~09/01/1980~
-~07060~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~
-~07060~^~432~^2.^1^^~1~^^^^^^^^^^^~09/01/1980~
-~07060~^~435~^2.^0^^~4~^~NC~^^^^^^^^^^~01/01/2001~
-~07060~^~601~^36.^4^4.^~1~^^^^^^^^^^^~09/01/1980~
-~07061~^~208~^282.^0^^~4~^~NC~^^^^^^^^^^~09/01/1980~
-~07061~^~268~^1180.^0^^~4~^^^^^^^^^^^
-~07061~^~301~^43.^3^1.^~1~^^^^^^^^^^^~09/01/1980~
-~07061~^~304~^16.^3^0.^~1~^^^^^^^^^^^~09/01/1980~
-~07061~^~305~^129.^3^0.^~1~^^^^^^^^^^^~09/01/1980~
-~07061~^~306~^225.^3^7.^~1~^^^^^^^^^^^~09/01/1980~
-~07061~^~307~^1127.^3^68.^~1~^^^^^^^^^^^~09/01/1980~
-~07061~^~318~^0.^0^^~4~^^^^^^^^^^^~09/01/1980~
-~07061~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2002~
-~07061~^~320~^0.^0^^~4~^^^^^^^^^^^~06/01/2002~
-~07061~^~324~^40.^0^^~4~^~T~^^^^^^^^^^~01/01/2001~
-~07061~^~417~^8.^0^^~4~^^^^^^^^^^^~09/01/1980~
-~07061~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~
-~07061~^~432~^8.^0^^~4~^^^^^^^^^^^~09/01/1980~
-~07061~^~435~^8.^0^^~4~^~NC~^^^^^^^^^^~01/01/2001~
-~07061~^~601~^45.^3^2.^~1~^^^^^^^^^^^~09/01/1980~
-~07061~^~636~^0.^0^^~4~^^^^^^^^^^^~09/01/1980~
-~07062~^~208~^232.^0^^~4~^~NC~^^^^^^^^^^~09/01/1980~
-~07062~^~268~^971.^0^^~4~^^^^^^^^^^^
-~07062~^~301~^47.^5^5.^~1~^^^^^^^^^^^~09/01/1980~
-~07062~^~304~^15.^5^0.^~1~^^^^^^^^^^^~09/01/1980~
-~07062~^~305~^125.^5^10.^~1~^^^^^^^^^^^~09/01/1980~
-~07062~^~306~^267.^5^9.^~1~^^^^^^^^^^^~09/01/1980~
-~07062~^~307~^1164.^5^33.^~1~^^^^^^^^^^^~09/01/1980~
-~07062~^~318~^0.^0^^~4~^^^^^^^^^^^~09/01/1980~
-~07062~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2002~
-~07062~^~320~^0.^0^^~4~^^^^^^^^^^^~06/01/2002~
-~07062~^~324~^48.^0^^~4~^~T~^^^^^^^^^^~01/01/2001~
-~07062~^~417~^2.^0^^~4~^^^^^^^^^^^~09/01/1980~
-~07062~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~
-~07062~^~432~^2.^0^^~4~^^^^^^^^^^^~09/01/1980~
-~07062~^~435~^2.^0^^~4~^~NC~^^^^^^^^^^~01/01/2001~
-~07062~^~601~^38.^4^4.^~1~^^^^^^^^^^^~09/01/1980~
-~07062~^~636~^0.^0^^~4~^^^^^^^^^^^~09/01/1980~
-~07063~^~208~^288.^0^^~4~^~NC~^^^^^^^^^^~08/01/2015~
-~07063~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2003~
-~07063~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2003~
-~07063~^~268~^1207.^0^^~4~^~NC~^^^^^^^^^^~08/01/2015~
-~07063~^~301~^8.^14^0.^~1~^~A~^^^1^5.^13.^8^6.^9.^~2, 3~^~04/01/2013~
-~07063~^~304~^15.^14^0.^~1~^~A~^^^1^13.^16.^11^14.^14.^~2, 3~^~08/01/2015~
-~07063~^~305~^133.^14^1.^~1~^~A~^^^1^120.^146.^8^130.^136.^~2, 3~^~04/01/2013~
-~07063~^~306~^307.^14^5.^~1~^~A~^^^1^231.^626.^3^288.^325.^~2, 3~^~04/01/2013~
-~07063~^~307~^739.^14^12.^~1~^~A~^^^1^572.^884.^7^707.^769.^~2, 3~^~08/01/2015~
-~07063~^~318~^92.^0^^~1~^~AS~^^^^^^^^^^~04/01/2013~
-~07063~^~319~^27.^3^^~1~^~A~^^^1^24.^32.^^^^~2, 3~^~04/01/2013~
-~07063~^~320~^27.^0^^~1~^~AS~^^^^^^^^^^~04/01/2013~
-~07063~^~321~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2013~
-~07063~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2013~
-~07063~^~324~^57.^2^^~1~^~A~^^^1^46.^72.^^^^^~04/01/2013~
-~07063~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2013~
-~07063~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2013~
-~07063~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2006~
-~07063~^~417~^2.^0^^~4~^~BFPN~^~10972~^^^^^^^^^~04/01/2013~
-~07063~^~431~^0.^0^^~4~^~BFPN~^~10972~^^^^^^^^^~04/01/2013~
-~07063~^~432~^2.^0^^~4~^~BFPN~^~10972~^^^^^^^^^~04/01/2013~
-~07063~^~435~^2.^0^^~4~^~NC~^~10972~^^^^^^^^^~04/01/2013~
-~07063~^~601~^70.^8^0.^~1~^~A~^^^1^67.^74.^4^67.^72.^~2, 3~^~04/01/2013~
-~07064~^~208~^325.^0^^~4~^~NC~^^^^^^^^^^~05/01/2013~
-~07064~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2001~
-~07064~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2001~
-~07064~^~268~^1360.^0^^~4~^~NC~^^^^^^^^^^~05/01/2013~
-~07064~^~301~^9.^15^1.^~1~^~A~^^^1^6.^16.^8^6.^11.^~2, 3~^~04/01/2013~
-~07064~^~304~^16.^15^0.^~1~^~A~^^^1^15.^19.^11^15.^17.^~2, 3~^~04/01/2013~
-~07064~^~305~^149.^15^3.^~1~^~A~^^^1^133.^185.^9^140.^156.^~2, 3~^~04/01/2013~
-~07064~^~306~^342.^15^7.^~1~^~A~^^^1^245.^689.^11^325.^357.^~2, 3~^~04/01/2013~
-~07064~^~307~^814.^15^18.^~1~^~A~^^^1^606.^1030.^9^771.^856.^~2, 3~^~04/01/2013~
-~07064~^~318~^93.^0^^~1~^~AS~^^^^^^^^^^~04/01/2013~
-~07064~^~319~^28.^3^^~1~^~A~^^^1^20.^42.^^^^~2, 3~^~04/01/2013~
-~07064~^~320~^28.^0^^~1~^~AS~^^^^^^^^^^~04/01/2013~
-~07064~^~321~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2013~
-~07064~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2013~
-~07064~^~324~^58.^2^^~1~^~A~^^^1^54.^62.^^^^^~04/01/2013~
-~07064~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2013~
-~07064~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2013~
-~07064~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2005~
-~07064~^~417~^1.^0^^~4~^~BFPN~^~10975~^^^^^^^^^~04/01/2013~
-~07064~^~431~^0.^0^^~4~^~BFPN~^~10975~^^^^^^^^^~04/01/2013~
-~07064~^~432~^1.^0^^~4~^~BFPN~^~10975~^^^^^^^^^~04/01/2013~
-~07064~^~435~^1.^0^^~4~^~NC~^~10975~^^^^^^^^^~04/01/2013~
-~07064~^~601~^86.^9^2.^~1~^~A~^^^1^78.^110.^3^78.^92.^~2, 3~^~04/01/2013~
-~07065~^~208~^396.^0^^~4~^~NC~^^^^^^^^^^~09/01/1980~
-~07065~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~
-~07065~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~
-~07065~^~268~^1657.^0^^~4~^^^^^^^^^^^~12/01/2006~
-~07065~^~301~^10.^0^^~4~^^^^^^^^^^^~09/01/1980~
-~07065~^~304~^12.^6^0.^~1~^^^^^^^^^^^~09/01/1980~
-~07065~^~305~^107.^6^5.^~1~^^^^^^^^^^^~09/01/1980~
-~07065~^~306~^189.^0^^~4~^^^^^^^^^^^~09/01/1980~
-~07065~^~307~^929.^0^^~8~^~LC~^^^^^^^^^^~08/01/2012~
-~07065~^~318~^0.^0^^~4~^^^^^^^^^^^~09/01/1980~
-~07065~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2002~
-~07065~^~320~^0.^0^^~1~^~AS~^^^^^^^^^^~12/01/2006~
-~07065~^~321~^0.^0^^~7~^~Z~^^^^^^^^^^~08/01/2002~
-~07065~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~08/01/2002~
-~07065~^~324~^28.^0^^~4~^~T~^^^^^^^^^^~01/01/2001~
-~07065~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~08/01/2002~
-~07065~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~08/01/2002~
-~07065~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~08/01/2002~
-~07065~^~417~^2.^0^^~4~^^^^^^^^^^^~09/01/1980~
-~07065~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~
-~07065~^~432~^2.^0^^~4~^^^^^^^^^^^~12/01/2006~
-~07065~^~435~^2.^0^^~4~^~NC~^^^^^^^^^^~03/01/2009~
-~07065~^~601~^71.^0^^~4~^^^^^^^^^^^~09/01/1980~
-~07065~^~636~^0.^0^^~4~^^^^^^^^^^^~09/01/1980~
-~07066~^~208~^204.^0^^~4~^~NC~^^^^^^^^^^~08/01/2012~
-~07066~^~262~^0.^0^^~4~^~FLC~^^^^^^^^^^~01/01/1999~
-~07066~^~263~^0.^0^^~4~^~FLC~^^^^^^^^^^~01/01/1999~
-~07066~^~268~^855.^0^^~4~^~NC~^^^^^^^^^^~08/01/2012~
-~07066~^~301~^31.^0^^~4~^~FLC~^^^^^^^^^^~12/01/1998~
-~07066~^~304~^21.^0^^~4~^~FLC~^^^^^^^^^^~12/01/1998~
-~07066~^~305~^164.^0^^~4~^~FLC~^^^^^^^^^^~12/01/1998~
-~07066~^~306~^207.^0^^~4~^~FLC~^^^^^^^^^^~12/01/1998~
-~07066~^~307~^721.^0^^~8~^~LC~^^^^^^^^^^~08/01/2012~
-~07066~^~318~^8.^0^^~4~^~FLC~^^^^^^^^^^~12/01/1998~
-~07066~^~319~^2.^0^^~4~^~NR~^^^^^^^^^^~08/01/2002~
-~07066~^~320~^2.^0^^~4~^~NR~^^^^^^^^^^~08/01/2002~
-~07066~^~321~^0.^0^^~4~^~FLC~^^^^^^^^^^~01/01/1999~
-~07066~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~08/01/2002~
-~07066~^~324~^17.^0^^~4~^~NR~^^^^^^^^^^~03/01/2009~
-~07066~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~08/01/2002~
-~07066~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~08/01/2002~
-~07066~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~08/01/2002~
-~07066~^~417~^23.^0^^~4~^~FLC~^^^^^^^^^^~12/01/1998~
-~07066~^~431~^0.^0^^~4~^~NR~^^^^^^^^^^~08/01/2002~
-~07066~^~432~^23.^0^^~4~^~FLC~^^^^^^^^^^~03/01/2009~
-~07066~^~435~^23.^0^^~4~^~NC~^^^^^^^^^^~03/01/2009~
-~07066~^~601~^58.^0^^~4~^~FLC~^^^^^^^^^^~12/01/1998~
-~07066~^~636~^0.^0^^~4~^~FLC~^^^^^^^^^^~01/01/1999~
-~07067~^~208~^200.^0^^~4~^~NC~^^^^^^^^^^~09/01/1980~
-~07067~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2001~
-~07067~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2001~
-~07067~^~268~^837.^0^^~4~^^^^^^^^^^^~03/01/2009~
-~07067~^~301~^10.^2^^~1~^^^^^^^^^^^~09/01/1980~
-~07067~^~304~^10.^0^^~4~^^^^^^^^^^^~09/01/1980~
-~07067~^~305~^33.^2^^~1~^^^^^^^^^^^~09/01/1980~
-~07067~^~306~^183.^2^^~1~^^^^^^^^^^^~09/01/1980~
-~07067~^~307~^653.^0^^~4~^~T~^^^^^^^^^^~08/01/2011~
-~07067~^~318~^140.^0^^~4~^~NC~^^^^^^^^^^~08/01/2011~
-~07067~^~319~^42.^0^^~4~^~NR~^^^^^^^^^^~03/01/2003~
-~07067~^~320~^42.^0^^~4~^~NC~^^^^^^^^^^~03/01/2003~
-~07067~^~321~^0.^0^^~7~^~Z~^^^^^^^^^^~08/01/2002~
-~07067~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~08/01/2002~
-~07067~^~324~^8.^0^^~4~^~BFFN~^^^^^^^^^^~03/01/2009~
-~07067~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~08/01/2002~
-~07067~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~08/01/2002~
-~07067~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~08/01/2002~
-~07067~^~417~^5.^2^^~1~^^^^^^^^^^^~09/01/1980~
-~07067~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~
-~07067~^~432~^5.^2^^~1~^^^^^^^^^^^~03/01/2009~
-~07067~^~435~^5.^0^^~4~^~NC~^^^^^^^^^^~03/01/2009~
-~07067~^~601~^30.^2^^~1~^^^^^^^^^^^~09/01/1980~
-~07067~^~636~^0.^0^^~4~^^^^^^^^^^^~09/01/1980~
-~07068~^~208~^261.^0^^~4~^~NR~^^^^^^^^^^~04/01/2007~
-~07068~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~
-~07068~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~
-~07068~^~268~^1092.^0^^~4~^~NR~^^^^^^^^^^~05/01/2007~
-~07068~^~301~^6.^1^^~9~^~MC~^^^^^^^^^^~03/01/2003~
-~07068~^~304~^13.^1^^~9~^~MC~^^^^^^^^^^~03/01/2003~
-~07068~^~305~^205.^1^^~9~^~MC~^^^^^^^^^^~03/01/2003~
-~07068~^~306~^188.^1^^~9~^~MC~^^^^^^^^^^~03/01/2003~
-~07068~^~307~^1140.^1^^~9~^~MC~^^^^^^^^^^~03/01/2003~
-~07068~^~318~^0.^0^^~4~^^^^^^^^^^^~09/01/1980~
-~07068~^~319~^0.^0^^~4~^~NR~^^^^^^^^^^~09/01/2002~
-~07068~^~320~^0.^0^^~4~^~NC~^^^^^^^^^^~04/01/2007~
-~07068~^~321~^0.^0^^~7~^~Z~^^^^^^^^^^~07/01/2002~
-~07068~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~07/01/2002~
-~07068~^~324~^48.^0^^~4~^~T~^^^^^^^^^^~01/01/2001~
-~07068~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~07/01/2002~
-~07068~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~07/01/2002~
-~07068~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~07/01/2002~
-~07068~^~417~^2.^2^^~1~^^^^^^^^^^^~09/01/1980~
-~07068~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~
-~07068~^~432~^2.^2^^~1~^^^^^^^^^^^~04/01/2007~
-~07068~^~435~^2.^0^^~4~^~NC~^^^^^^^^^^~03/01/2009~
-~07068~^~601~^71.^1^^~9~^~MC~^^^^^^^^^^~03/01/2003~
-~07068~^~636~^0.^0^^~4~^^^^^^^^^^^~09/01/1980~
-~07069~^~208~^336.^0^^~4~^~NC~^^^^^^^^^^~02/01/2009~
-~07069~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2001~
-~07069~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2001~
-~07069~^~268~^1407.^0^^~4~^~NC~^^^^^^^^^^~02/01/2009~
-~07069~^~301~^15.^3^2.^~1~^~A~^^^1^10.^19.^2^3.^25.^~2, 3~^~03/01/2007~
-~07069~^~304~^19.^3^1.^~1~^~A~^^^1^16.^21.^2^13.^24.^~2, 3~^~03/01/2007~
-~07069~^~305~^191.^3^15.^~1~^~A~^^^1^160.^208.^2^124.^257.^~2, 3~^~03/01/2007~
-~07069~^~306~^316.^3^33.^~1~^~A~^^^1^251.^361.^2^172.^460.^~2, 3~^~03/01/2007~
-~07069~^~307~^1740.^0^^~8~^~LC~^^^^^^^^^^~08/01/2012~
-~07069~^~318~^0.^0^^~1~^~AS~^^^^^^^^^^~03/01/2007~
-~07069~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2002~
-~07069~^~320~^0.^0^^~1~^~AS~^^^^^^^^^^~03/01/2007~
-~07069~^~321~^0.^0^^~7~^~Z~^^^^^^^^^^~08/01/2002~
-~07069~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~08/01/2002~
-~07069~^~324~^41.^0^^~4~^~BFFN~^~07002~^^^^^^^^^~02/01/2009~
-~07069~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~08/01/2002~
-~07069~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~08/01/2002~
-~07069~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~08/01/2002~
-~07069~^~417~^3.^3^0.^~1~^~A~^^^1^2.^4.^2^0.^5.^~2, 3~^~03/01/2007~
-~07069~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~
-~07069~^~432~^3.^3^0.^~1~^~A~^^^1^2.^4.^2^0.^5.^^~02/01/2009~
-~07069~^~435~^3.^0^^~4~^~NC~^^^^^^^^^^~02/01/2009~
-~07069~^~601~^89.^3^4.^~1~^~A~^^^1^81.^96.^2^69.^107.^~2, 3~^~03/01/2007~
-~07069~^~636~^0.^0^^~4~^^^^^^^^^^^~09/01/1980~
-~07070~^~208~^172.^0^^~4~^~NC~^^^^^^^^^^~05/01/2009~
-~07070~^~262~^0.^0^^~4~^~FLA~^^^^^^^^^^~05/01/2005~
-~07070~^~263~^0.^0^^~4~^~FLA~^^^^^^^^^^~05/01/2005~
-~07070~^~268~^718.^0^^~4~^~NC~^^^^^^^^^^~05/01/2009~
-~07070~^~301~^40.^4^13.^~1~^~A~^^^^^^^^^^~01/01/2004~
-~07070~^~304~^22.^4^1.^~12~^~MA~^^^^^^^^^^~01/01/2004~
-~07070~^~305~^266.^4^5.^~12~^~MA~^^^^^^^^^^~01/01/2004~
-~07070~^~306~^216.^4^6.^~12~^~MA~^^^^^^^^^^~01/01/2004~
-~07070~^~307~^1107.^0^^~8~^~LC~^^^^^^^^^^~08/01/2012~
-~07070~^~318~^6.^0^^~4~^~NR~^^^^^^^^^^~06/01/2014~
-~07070~^~319~^2.^0^^~4~^~NR~^^^^^^^^^^~10/01/2002~
-~07070~^~320~^2.^0^^~4~^~NC~^^^^^^^^^^~05/01/2009~
-~07070~^~321~^0.^0^^~4~^~FLA~^^^^^^^^^^~05/01/2005~
-~07070~^~322~^0.^0^^~4~^~FLA~^^^^^^^^^^~05/01/2005~
-~07070~^~324~^24.^0^^~9~^~MC~^^^^^^^^^^~09/01/2002~
-~07070~^~334~^0.^0^^~4~^~FLA~^^^^^^^^^^~05/01/2005~
-~07070~^~337~^0.^0^^~4~^~FLA~^^^^^^^^^^~05/01/2005~
-~07070~^~338~^0.^0^^~4~^~FLA~^^^^^^^^^^~05/01/2005~
-~07070~^~417~^10.^0^^~9~^~MC~^^^^^^^^^^~10/01/2002~
-~07070~^~431~^0.^0^^~4~^~FLA~^^^^^^^^^^~02/01/2007~
-~07070~^~432~^10.^0^^~9~^~MC~^^^^^^^^^^~05/01/2009~
-~07070~^~435~^10.^0^^~4~^~NC~^^^^^^^^^^~05/01/2009~
-~07070~^~601~^76.^4^1.^~1~^~A~^^^^^^^^^^~01/01/2004~
-~07070~^~636~^0.^0^^~4~^~FLA~^^^^^^^^^^~07/01/2007~
-~07071~^~208~^407.^0^^~4~^~NC~^^^^^^^^^^~09/01/1980~
-~07071~^~268~^1703.^0^^~4~^^^^^^^^^^^
-~07071~^~301~^13.^1^^~1~^^^^^^^^^^^~09/01/1980~
-~07071~^~304~^22.^1^^~1~^^^^^^^^^^^~09/01/1980~
-~07071~^~305~^229.^1^^~1~^^^^^^^^^^^~09/01/1980~
-~07071~^~306~^378.^0^^~4~^^^^^^^^^^^~09/01/1980~
-~07071~^~307~^2260.^1^^~1~^^^^^^^^^^^~09/01/1980~
-~07071~^~318~^0.^0^^~4~^^^^^^^^^^^~09/01/1980~
-~07071~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2002~
-~07071~^~320~^0.^0^^~4~^^^^^^^^^^^~06/01/2002~
-~07071~^~417~^2.^0^^~4~^^^^^^^^^^^~09/01/1980~
-~07071~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~
-~07071~^~432~^2.^0^^~4~^^^^^^^^^^^~09/01/1980~
-~07071~^~435~^2.^0^^~4~^~NC~^^^^^^^^^^~01/01/2001~
-~07071~^~601~^79.^0^^~4~^^^^^^^^^^^~09/01/1980~
-~07071~^~636~^0.^0^^~4~^^^^^^^^^^^~09/01/1980~
-~07072~^~208~^378.^0^^~4~^~NC~^^^^^^^^^^~05/01/2013~
-~07072~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2001~
-~07072~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2001~
-~07072~^~268~^1583.^0^^~4~^~NC~^^^^^^^^^^~05/01/2013~
-~07072~^~301~^24.^12^3.^~1~^~A~^^^1^11.^62.^2^9.^37.^~2, 3~^~05/01/2014~
-~07072~^~304~^20.^12^0.^~1~^~A~^^^1^15.^22.^2^18.^22.^~2, 3~^~05/01/2013~
-~07072~^~305~^192.^12^3.^~1~^~A~^^^1^136.^213.^3^179.^204.^~2, 3~^~05/01/2014~
-~07072~^~306~^363.^12^6.^~1~^~A~^^^1^243.^426.^3^340.^384.^~2, 3~^~05/01/2014~
-~07072~^~307~^1756.^12^36.^~1~^~A~^^^1^1230.^2020.^3^1646.^1866.^~2, 3~^~05/01/2014~
-~07072~^~318~^36.^0^^~1~^~AS~^^^^^^^^^^~04/01/2012~
-~07072~^~319~^11.^1^^~1~^~A~^^^^^^^^^^~04/01/2012~
-~07072~^~320~^11.^0^^~1~^~AS~^^^^^^^^^^~04/01/2012~
-~07072~^~321~^0.^0^^~7~^~Z~^^^^^^^^^^~08/01/2002~
-~07072~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~08/01/2002~
-~07072~^~324~^36.^3^^~1~^~A~^^^1^26.^41.^^^^~2, 3~^~05/01/2014~
-~07072~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~08/01/2002~
-~07072~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~08/01/2002~
-~07072~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~08/01/2002~
-~07072~^~417~^0.^0^^~4~^~BFPN~^~10068~^^^^^^^^^~04/01/2012~
-~07072~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~
-~07072~^~432~^0.^0^^~4~^~BFPN~^^^^^^^^^^~04/01/2012~
-~07072~^~435~^0.^0^^~4~^~NC~^^^^^^^^^^~04/01/2012~
-~07072~^~601~^108.^9^5.^~1~^~A~^^^1^87.^120.^1^53.^161.^~2, 3~^~04/01/2012~
-~07072~^~636~^0.^0^^~4~^^^^^^^^^^^~05/01/2014~
-~07073~^~208~^235.^0^^~4~^~NC~^^^^^^^^^^~02/01/2007~
-~07073~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2001~
-~07073~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2001~
-~07073~^~268~^983.^0^^~4~^^^^^^^^^^^~03/01/2009~
-~07073~^~301~^12.^5^0.^~1~^^^^^^^^^^^~09/01/1980~
-~07073~^~304~^8.^5^0.^~1~^^^^^^^^^^^~09/01/1980~
-~07073~^~305~^59.^5^4.^~1~^^^^^^^^^^^~09/01/1980~
-~07073~^~306~^110.^5^5.^~1~^^^^^^^^^^^~09/01/1980~
-~07073~^~307~^1013.^5^50.^~1~^^^^^^^^^^^~09/01/1980~
-~07073~^~318~^87.^0^^~4~^^^^^^^^^^^~09/01/1980~
-~07073~^~319~^26.^0^^~4~^~NR~^^^^^^^^^^~03/01/2003~
-~07073~^~320~^26.^0^^~4~^~NC~^^^^^^^^^^~03/01/2009~
-~07073~^~321~^0.^0^^~7~^~Z~^^^^^^^^^^~08/01/2002~
-~07073~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~08/01/2002~
-~07073~^~324~^22.^0^^~4~^~BFFN~^~07008~^^^^^^^^^~03/01/2009~
-~07073~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~08/01/2002~
-~07073~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~08/01/2002~
-~07073~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~08/01/2002~
-~07073~^~417~^2.^0^^~4~^^^^^^^^^^^~09/01/1980~
-~07073~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~
-~07073~^~432~^2.^0^^~4~^^^^^^^^^^^~03/01/2009~
-~07073~^~435~^2.^0^^~4~^~NC~^^^^^^^^^^~03/01/2009~
-~07073~^~601~^38.^3^1.^~1~^^^^^^^^^^^~09/01/1980~
-~07073~^~636~^0.^0^^~4~^^^^^^^^^^^~09/01/1980~
-~07074~^~208~^309.^0^^~4~^~NC~^^^^^^^^^^~09/01/2012~
-~07074~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2001~
-~07074~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2001~
-~07074~^~268~^1295.^0^^~4~^~NC~^^^^^^^^^^~09/01/2012~
-~07074~^~301~^11.^3^0.^~1~^~A~^^^1^10.^12.^2^8.^12.^~2, 3~^~03/01/2007~
-~07074~^~304~^11.^3^0.^~1~^~A~^^^1^11.^12.^2^9.^12.^~2, 3~^~03/01/2007~
-~07074~^~305~^157.^3^26.^~1~^~A~^^^1^103.^188.^2^40.^272.^~2, 3~^~03/01/2007~
-~07074~^~306~^483.^3^68.^~1~^~A~^^^1^346.^559.^2^187.^778.^~2, 3~^~03/01/2007~
-~07074~^~307~^827.^3^9.^~1~^~A~^^^1^815.^845.^2^788.^866.^~2, 3~^~03/01/2007~
-~07074~^~318~^0.^0^^~1~^~AS~^^^^^^^^^^~03/01/2007~
-~07074~^~319~^0.^0^^~4~^~NR~^^^^^^^^^^~07/01/2002~
-~07074~^~320~^0.^0^^~4~^~NC~^^^^^^^^^^~09/01/2012~
-~07074~^~321~^0.^0^^~7~^~Z~^^^^^^^^^^~08/01/2002~
-~07074~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~08/01/2002~
-~07074~^~324~^43.^0^^~4~^~BFFN~^~07013~^^^^^^^^^~02/01/2009~
-~07074~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~08/01/2002~
-~07074~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~08/01/2002~
-~07074~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~08/01/2002~
-~07074~^~417~^1.^3^0.^~1~^~A~^^^1^0.^1.^2^0.^0.^~2, 3~^~03/01/2007~
-~07074~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~
-~07074~^~432~^1.^3^0.^~1~^~A~^^^1^0.^1.^2^0.^0.^^~05/01/2009~
-~07074~^~435~^1.^0^^~4~^~NC~^^^^^^^^^^~06/01/2009~
-~07074~^~601~^61.^3^1.^~1~^~A~^^^1^59.^63.^2^55.^65.^~2, 3~^~03/01/2007~
-~07075~^~208~^320.^0^^~4~^~NC~^^^^^^^^^^~03/01/2006~
-~07075~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~
-~07075~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~
-~07075~^~268~^1338.^0^^~4~^~NC~^^^^^^^^^^~03/01/2006~
-~07075~^~301~^12.^1^^~1~^~A~^^^^^^^^^^~03/01/2003~
-~07075~^~304~^13.^1^^~1~^~A~^^^^^^^^^^~03/01/2003~
-~07075~^~305~^121.^1^^~1~^~A~^^^^^^^^^^~03/01/2003~
-~07075~^~306~^179.^1^^~1~^~A~^^^^^^^^^^~03/01/2003~
-~07075~^~307~^911.^1^^~1~^~A~^^^^^^^^^^~03/01/2003~
-~07075~^~318~^74.^0^^~1~^~AS~^^^^^^^^^^~03/01/2003~
-~07075~^~319~^11.^1^^~1~^~A~^^^^^^^^^~1~^~03/01/2003~
-~07075~^~320~^13.^0^^~1~^~AS~^^^^^^^^^^~03/01/2003~
-~07075~^~321~^11.^1^^~1~^~A~^^^^^^^^^~1~^~03/01/2003~
-~07075~^~322~^11.^1^^~1~^~A~^^^^^^^^^~1~^~03/01/2003~
-~07075~^~324~^44.^0^^~4~^~T~^^^^^^^^^^~01/01/2001~
-~07075~^~334~^11.^1^^~1~^~A~^^^^^^^^^~1~^~03/01/2003~
-~07075~^~337~^11.^1^^~1~^~A~^^^^^^^^^~1~^~03/01/2003~
-~07075~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2006~
-~07075~^~417~^2.^1^^~1~^~A~^^^^^^^^^^~04/01/2003~
-~07075~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~
-~07075~^~432~^2.^1^^~1~^~A~^^^^^^^^^^~03/01/2006~
-~07075~^~435~^2.^0^^~4~^~NC~^^^^^^^^^^~03/01/2009~
-~07075~^~601~^58.^1^^~1~^~A~^^^^^^^^^^~03/01/2003~
-~07077~^~208~^313.^0^^~4~^~NC~^^^^^^^^^^~09/01/1980~
-~07077~^~268~^1310.^0^^~4~^^^^^^^^^^^
-~07077~^~301~^41.^52^0.^~1~^^^^^^^^^^^~09/01/1980~
-~07077~^~304~^16.^7^0.^~1~^^^^^^^^^^^~09/01/1980~
-~07077~^~305~^137.^7^7.^~1~^^^^^^^^^^^~09/01/1980~
-~07077~^~306~^286.^7^12.^~1~^^^^^^^^^^^~09/01/1980~
-~07077~^~307~^1173.^7^24.^~1~^^^^^^^^^^^~09/01/1980~
-~07077~^~318~^0.^0^^~4~^^^^^^^^^^^~09/01/1980~
-~07077~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2002~
-~07077~^~320~^0.^0^^~4~^^^^^^^^^^^~06/01/2002~
-~07077~^~417~^2.^0^^~4~^^^^^^^^^^^~09/01/1980~
-~07077~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~
-~07077~^~432~^2.^0^^~4~^^^^^^^^^^^~09/01/1980~
-~07077~^~435~^2.^0^^~4~^~NC~^^^^^^^^^^~01/01/2001~
-~07077~^~601~^65.^7^2.^~1~^^^^^^^^^^^~09/01/1980~
-~07077~^~636~^0.^0^^~4~^^^^^^^^^^^~09/01/1980~
-~07078~^~208~^362.^0^^~4~^~NC~^^^^^^^^^^~04/01/2007~
-~07078~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~
-~07078~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~
-~07078~^~268~^1514.^0^^~4~^~NC~^^^^^^^^^^~04/01/2007~
-~07078~^~301~^9.^2^^~1~^~A~^^^1^8.^9.^^^^^~05/01/2004~
-~07078~^~304~^14.^14^0.^~1~^^^^^^^^^^^~05/01/2004~
-~07078~^~305~^111.^7^10.^~1~^^^^^^^^^^^~05/01/2004~
-~07078~^~306~^260.^1^^~1~^~A~^^^^^^^^^^~05/01/2004~
-~07078~^~307~^1300.^4^^~1~^~A~^^^2^1260.^1360.^^^^~2~^~05/01/2004~
-~07078~^~318~^0.^0^^~1~^~AS~^^^^^^^^^^~04/01/2007~
-~07078~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2002~
-~07078~^~320~^0.^0^^~1~^~AS~^^^^^^^^^^~04/01/2007~
-~07078~^~321~^0.^0^^~7~^~Z~^^^^^^^^^^~08/01/2002~
-~07078~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~08/01/2002~
-~07078~^~324~^44.^0^^~4~^~T~^^^^^^^^^^~01/01/2001~
-~07078~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~08/01/2002~
-~07078~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~08/01/2002~
-~07078~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~08/01/2002~
-~07078~^~417~^2.^0^^~4~^^^^^^^^^^^~05/01/2004~
-~07078~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~
-~07078~^~432~^2.^0^^~4~^^^^^^^^^^^~04/01/2007~
-~07078~^~435~^2.^0^^~4~^~NC~^^^^^^^^^^~03/01/2009~
-~07078~^~601~^74.^4^^~1~^~A~^^^2^67.^83.^^^^~2~^~05/01/2004~
-~07081~^~208~^106.^0^^~4~^~NC~^^^^^^^^^^~03/01/2016~
-~07081~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2001~
-~07081~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2001~
-~07081~^~268~^442.^0^^~4~^~NC~^^^^^^^^^^~03/01/2016~
-~07081~^~301~^14.^18^2.^~1~^~A~^^^1^4.^34.^6^7.^20.^~2, 3~^~03/01/2016~
-~07081~^~304~^19.^18^0.^~1~^~A~^^^1^12.^24.^7^16.^20.^~2, 3~^~03/01/2016~
-~07081~^~305~^249.^18^6.^~1~^~A~^^^1^203.^309.^8^234.^264.^~2, 3~^~03/01/2016~
-~07081~^~306~^371.^18^34.^~1~^~A~^^^1^141.^1070.^7^288.^453.^~2, 3~^~03/01/2016~
-~07081~^~307~^898.^18^41.^~1~^~A~^^^1^603.^1150.^10^804.^991.^~2, 3~^~03/01/2016~
-~07081~^~318~^0.^0^^~1~^~AS~^^^^^^^^^^~03/01/2007~
-~07081~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2002~
-~07081~^~320~^0.^0^^~1~^~AS~^^^^^^^^^^~08/01/2002~
-~07081~^~321~^0.^0^^~7~^~Z~^^^^^^^^^^~08/01/2002~
-~07081~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~08/01/2002~
-~07081~^~324~^6.^0^^~4~^~BFSN~^~05664~^^^^^^^^^~03/01/2016~
-~07081~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~08/01/2002~
-~07081~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~08/01/2002~
-~07081~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~08/01/2002~
-~07081~^~417~^4.^0^^~4~^~BFPN~^^^^^^^^^^~03/01/2016~
-~07081~^~431~^0.^0^^~4~^~BFPN~^^^^^^^^^^~05/01/2014~
-~07081~^~432~^4.^0^^~4~^~BFPN~^^^^^^^^^^~08/01/2013~
-~07081~^~435~^4.^0^^~4~^~NC~^^^^^^^^^^~03/01/2009~
-~07081~^~601~^49.^0^^~4~^~BFSN~^~05664~^^^^^^^^^~03/01/2016~
-~07083~^~208~^230.^0^^~4~^~NC~^^^^^^^^^^~03/01/2009~
-~07083~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2001~
-~07083~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2001~
-~07083~^~268~^962.^0^^~4~^~NC~^^^^^^^^^^~03/01/2009~
-~07083~^~301~^10.^3^2.^~1~^^^^^^^^^^^~05/01/2004~
-~07083~^~304~^7.^3^0.^~1~^^^^^^^^^^^~05/01/2004~
-~07083~^~305~^49.^3^2.^~1~^^^^^^^^^^^~05/01/2004~
-~07083~^~306~^101.^3^4.^~1~^^^^^^^^^^^~05/01/2004~
-~07083~^~307~^879.^0^^~8~^~LC~^^^^^^^^^^~08/01/2012~
-~07083~^~318~^0.^1^^~1~^~A~^^^^^^^^^^~05/01/2004~
-~07083~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2002~
-~07083~^~320~^0.^1^^~1~^~A~^^^^^^^^^^~05/01/2004~
-~07083~^~321~^0.^0^^~7~^~Z~^^^^^^^^^^~08/01/2002~
-~07083~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~08/01/2002~
-~07083~^~324~^25.^0^^~4~^~BFFN~^~07008~^^^^^^^^^~03/01/2009~
-~07083~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~08/01/2002~
-~07083~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~08/01/2002~
-~07083~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~08/01/2002~
-~07083~^~417~^4.^0^^~4~^^^^^^^^^^^~05/01/2004~
-~07083~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~
-~07083~^~432~^4.^0^^~4~^^^^^^^^^^^~03/01/2009~
-~07083~^~435~^4.^0^^~4~^~NC~^^^^^^^^^^~03/01/2009~
-~07083~^~601~^87.^1^^~1~^~A~^^^^^^^^^^~05/01/2004~
-~07083~^~636~^0.^0^^~4~^^^^^^^^^^^~03/01/2009~
-~07088~^~208~^182.^0^^~4~^~NC~^^^^^^^^^^~09/01/1980~
-~07088~^~268~^761.^0^^~4~^^^^^^^^^^^
-~07088~^~301~^9.^3^0.^~1~^^^^^^^^^^^~09/01/1980~
-~07088~^~304~^16.^4^1.^~1~^^^^^^^^^^^~09/01/1980~
-~07088~^~305~^137.^4^7.^~1~^^^^^^^^^^^~09/01/1980~
-~07088~^~306~^291.^4^23.^~1~^^^^^^^^^^^~09/01/1980~
-~07088~^~307~^1322.^4^26.^~1~^^^^^^^^^^^~09/01/1980~
-~07088~^~318~^0.^0^^~4~^^^^^^^^^^^~09/01/1980~
-~07088~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2002~
-~07088~^~320~^0.^0^^~4~^^^^^^^^^^^~06/01/2002~
-~07088~^~324~^40.^0^^~4~^~T~^^^^^^^^^^~01/01/2001~
-~07088~^~417~^4.^0^^~4~^^^^^^^^^^^~09/01/1980~
-~07088~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~
-~07088~^~432~^4.^0^^~4~^^^^^^^^^^^~09/01/1980~
-~07088~^~435~^4.^0^^~4~^~NC~^^^^^^^^^^~01/01/2001~
-~07088~^~601~^50.^4^3.^~1~^^^^^^^^^^^~09/01/1980~
-~07088~^~636~^0.^0^^~4~^^^^^^^^^^^~09/01/1980~
-~07089~^~208~^324.^0^^~4~^~NC~^^^^^^^^^^~10/01/2016~
-~07089~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2001~
-~07089~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2001~
-~07089~^~268~^1355.^0^^~4~^~NC~^^^^^^^^^^~10/01/2016~
-~07089~^~301~^13.^11^1.^~1~^~A~^^^1^8.^16.^5^10.^15.^~2, 3~^~10/01/2016~
-~07089~^~304~^19.^11^0.^~1~^~A~^^^1^16.^23.^5^17.^21.^~2, 3~^~10/01/2016~
-~07089~^~305~^152.^11^6.^~1~^~A~^^^1^117.^182.^5^134.^169.^~2, 3~^~10/01/2016~
-~07089~^~306~^339.^11^40.^~1~^~A~^^^1^222.^592.^5^236.^442.^~2, 3~^~10/01/2016~
-~07089~^~307~^801.^11^38.^~1~^~A~^^^1^664.^1010.^5^701.^900.^~2, 3~^~10/01/2016~
-~07089~^~318~^32.^0^^~1~^~AS~^^^^^^^^^^~10/01/2016~
-~07089~^~319~^10.^1^^~1~^~AS~^^^^^^^^^^~08/01/2012~
-~07089~^~320~^10.^0^^~1~^~AS~^^^^^^^^^^~07/01/2004~
-~07089~^~321~^0.^0^^~7~^~Z~^^^^^^^^^^~07/01/2004~
-~07089~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~08/01/2002~
-~07089~^~324~^41.^0^^~4~^~BFFN~^~07013~^^^^^^^^^~03/01/2009~
-~07089~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~08/01/2002~
-~07089~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~08/01/2002~
-~07089~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~08/01/2002~
-~07089~^~417~^4.^1^^~1~^~A~^^^^^^^^^~1~^~10/01/2016~
-~07089~^~431~^0.^0^^~4~^~NR~^^^^^^^^^^~10/01/2016~
-~07089~^~432~^1.^0^^~4~^~BFPN~^~10975~^^^^^^^^^~10/01/2016~
-~07089~^~435~^1.^0^^~4~^~NC~^~10975~^^^^^^^^^~10/01/2016~
-~07089~^~601~^81.^6^6.^~1~^~A~^^^1^73.^97.^2^55.^106.^~2, 3~^~10/01/2016~
-~07090~^~208~^260.^0^^~4~^~NC~^^^^^^^^^^~09/01/1980~
-~07090~^~268~^1088.^0^^~4~^^^^^^^^^^^
-~07090~^~301~^13.^6^1.^~1~^^^^^^^^^^^~09/01/1980~
-~07090~^~304~^14.^6^0.^~1~^^^^^^^^^^^~09/01/1980~
-~07090~^~305~^122.^6^7.^~1~^^^^^^^^^^^~09/01/1980~
-~07090~^~306~^245.^6^9.^~1~^^^^^^^^^^^~09/01/1980~
-~07090~^~307~^1182.^6^32.^~1~^^^^^^^^^^^~09/01/1980~
-~07090~^~318~^0.^0^^~4~^^^^^^^^^^^~09/01/1980~
-~07090~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2002~
-~07090~^~320~^0.^0^^~4~^^^^^^^^^^^~06/01/2002~
-~07090~^~417~^3.^0^^~4~^^^^^^^^^^^~09/01/1980~
-~07090~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~
-~07090~^~432~^3.^0^^~4~^^^^^^^^^^^~09/01/1980~
-~07090~^~435~^3.^0^^~4~^~NC~^^^^^^^^^^~01/01/2001~
-~07090~^~601~^64.^6^3.^~1~^^^^^^^^^^^~09/01/1980~
-~07090~^~636~^0.^0^^~4~^^^^^^^^^^^~09/01/1980~
-~07091~^~208~^161.^0^^~4~^~NC~^^^^^^^^^^~09/01/1980~
-~07091~^~268~^674.^0^^~4~^^^^^^^^^^^
-~07091~^~301~^7.^6^0.^~1~^^^^^^^^^^^~09/01/1980~
-~07091~^~304~^16.^6^0.^~1~^^^^^^^^^^^~09/01/1980~
-~07091~^~305~^136.^6^12.^~1~^^^^^^^^^^^~09/01/1980~
-~07091~^~306~^321.^6^10.^~1~^^^^^^^^^^^~09/01/1980~
-~07091~^~307~^1220.^6^84.^~1~^^^^^^^^^^^~09/01/1980~
-~07091~^~318~^0.^0^^~4~^^^^^^^^^^^~09/01/1980~
-~07091~^~319~^0.^0^^~4~^~NR~^^^^^^^^^^~07/01/2002~
-~07091~^~320~^0.^0^^~4~^~NC~^^^^^^^^^^~07/01/2002~
-~07091~^~417~^7.^3^1.^~1~^^^^^^^^^^^~09/01/1980~
-~07091~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~
-~07091~^~432~^7.^3^1.^~1~^^^^^^^^^^^~09/01/1980~
-~07091~^~435~^7.^0^^~4~^~NC~^^^^^^^^^^~08/01/2002~
-~07091~^~601~^49.^5^4.^~1~^^^^^^^^^^^~09/01/1980~
-~07201~^~208~^316.^0^^~9~^~MC~^^^^^^^^^^~08/01/2002~
-~07201~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2002~
-~07201~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2002~
-~07201~^~268~^1322.^0^^~9~^~MC~^^^^^^^^^^~08/01/2002~
-~07201~^~301~^12.^30^0.^~1~^~A~^^^^^^^^^^~07/01/1996~
-~07201~^~304~^14.^30^0.^~12~^~MA~^^^^^^^^^^~07/01/1996~
-~07201~^~305~^109.^30^5.^~12~^~MA~^^^^^^^^^^~07/01/1996~
-~07201~^~306~^168.^30^4.^~12~^~MA~^^^^^^^^^^~07/01/1996~
-~07201~^~307~^1179.^31^71.^~1~^~A~^^^2^1108.^1250.^1^276.^2081.^~2~^~05/01/2002~
-~07201~^~318~^0.^1^^~11~^~JO~^^^2^0.^0.^^^^^~05/01/2002~
-~07201~^~319~^0.^0^^~4~^~NR~^^^^^^^^^^~05/01/2002~
-~07201~^~320~^0.^0^^~4~^~NC~^^^^^^^^^^~08/01/2002~
-~07201~^~321~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2002~
-~07201~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2002~
-~07201~^~324~^32.^6^1.^~12~^~MA~^^^^^^^^^^~07/01/1996~
-~07201~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2002~
-~07201~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2002~
-~07201~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2002~
-~07201~^~417~^13.^5^5.^~12~^~MA~^^^^^^^^^^~07/01/1996~
-~07201~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~
-~07201~^~432~^13.^5^5.^~12~^~MA~^^^^^^^^^^~08/01/2002~
-~07201~^~435~^13.^0^^~4~^~NC~^^^^^^^^^^~06/01/2008~
-~07201~^~601~^64.^31^5.^~1~^~A~^^^2^58.^70.^1^-10.^138.^~2~^~05/01/2002~
-~07207~^~208~^331.^0^^~9~^~MC~^^^^^^^^^^~07/01/2015~
-~07207~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2002~
-~07207~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2002~
-~07207~^~268~^1387.^0^^~9~^~MC~^^^^^^^^^^~06/01/2014~
-~07207~^~301~^9.^16^0.^~1~^~A~^^^^^^^^^^~07/01/1996~
-~07207~^~304~^14.^16^1.^~12~^~MA~^^^^^^^^^^~07/01/1996~
-~07207~^~305~^199.^16^7.^~12~^~MA~^^^^^^^^^^~07/01/1996~
-~07207~^~306~^202.^16^4.^~12~^~MA~^^^^^^^^^^~07/01/1996~
-~07207~^~307~^1159.^17^1.^~1~^~A~^^^2^1157.^1160.^1^1139.^1177.^~2~^~05/01/2002~
-~07207~^~318~^15744.^0^^~4~^~NC~^^^^^^^^^^~06/01/2014~
-~07207~^~319~^4723.^0^^~4~^~NR~^^^^^^^^^^~06/01/2002~
-~07207~^~320~^4723.^0^^~4~^~NC~^^^^^^^^^^~08/01/2002~
-~07207~^~321~^0.^3^0.^~12~^~MA~^^^^^^^^^^~02/01/1997~
-~07207~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2002~
-~07207~^~324~^44.^5^4.^~12~^~MA~^^^^^^^^^^~07/01/1996~
-~07207~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2002~
-~07207~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2002~
-~07207~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2002~
-~07207~^~417~^47.^8^5.^~12~^~MA~^^^^^^^^^^~07/01/1996~
-~07207~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~
-~07207~^~432~^47.^8^5.^~12~^~MA~^^^^^^^^^^~08/01/2002~
-~07207~^~435~^47.^0^^~4~^~NC~^^^^^^^^^^~06/01/2008~
-~07207~^~601~^178.^15^2.^~1~^~A~^^^2^175.^180.^1^145.^209.^~2~^~05/01/2002~
-~07209~^~208~^109.^0^^~9~^~MC~^^^^^^^^^^~08/01/2002~
-~07209~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2002~
-~07209~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2002~
-~07209~^~268~^454.^0^^~9~^~MC~^^^^^^^^^^~08/01/2002~
-~07209~^~301~^10.^4^0.^~1~^~A~^^^^^^^^^^~07/01/1996~
-~07209~^~304~^36.^4^4.^~12~^~MA~^^^^^^^^^^~07/01/1996~
-~07209~^~305~^289.^4^15.^~12~^~MA~^^^^^^^^^^~07/01/1996~
-~07209~^~306~^329.^4^8.^~12~^~MA~^^^^^^^^^^~07/01/1996~
-~07209~^~307~^1438.^5^52.^~1~^~A~^^^2^1386.^1490.^1^777.^2098.^~2~^~05/01/2002~
-~07209~^~318~^0.^1^^~11~^~JO~^^^2^0.^0.^^^^^~05/01/2002~
-~07209~^~319~^0.^0^^~4~^~NR~^^^^^^^^^^~05/01/2002~
-~07209~^~320~^0.^0^^~4~^~NC~^^^^^^^^^^~08/01/2002~
-~07209~^~321~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2002~
-~07209~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2002~
-~07209~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2002~
-~07209~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2002~
-~07209~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2002~
-~07209~^~417~^4.^0^^~4~^~BFZN~^~05064~^^^^^^^^^~05/01/2002~
-~07209~^~431~^0.^0^^~4~^~BFZN~^~05064~^^^^^^^^^~05/01/2002~
-~07209~^~432~^4.^0^^~4~^~BFZN~^~05064~^^^^^^^^^~05/01/2002~
-~07209~^~435~^4.^0^^~4~^~NC~^~05064~^^^^^^^^^~06/01/2008~
-~07209~^~601~^53.^5^0.^~1~^~A~^^^2^53.^54.^1^46.^60.^~2~^~05/01/2002~
-~07212~^~208~^180.^0^^~9~^~MC~^^^^^^^^^^~08/01/2002~
-~07212~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2002~
-~07212~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2002~
-~07212~^~268~^754.^0^^~9~^~MC~^^^^^^^^^^~08/01/2002~
-~07212~^~301~^9.^6^1.^~1~^~A~^^^^^^^^^^~07/01/1996~
-~07212~^~304~^23.^6^0.^~12~^~MA~^^^^^^^^^^~07/01/1996~
-~07212~^~305~^219.^6^3.^~12~^~MA~^^^^^^^^^^~07/01/1996~
-~07212~^~306~^260.^6^2.^~12~^~MA~^^^^^^^^^^~07/01/1996~
-~07212~^~307~^1249.^7^81.^~1~^~A~^^^2^1167.^1330.^1^212.^2284.^~2~^~05/01/2002~
-~07212~^~318~^0.^1^^~11~^~JO~^^^2^0.^0.^^^^^~06/01/2002~
-~07212~^~319~^0.^0^^~4~^~NR~^^^^^^^^^^~05/01/2002~
-~07212~^~320~^0.^0^^~4~^~NC~^^^^^^^^^^~08/01/2002~
-~07212~^~321~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2002~
-~07212~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2002~
-~07212~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2002~
-~07212~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2002~
-~07212~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2002~
-~07212~^~417~^3.^0^^~4~^~BFZN~^~07029~^^^^^^^^^~05/01/2002~
-~07212~^~431~^0.^0^^~4~^~BFZN~^~07029~^^^^^^^^^~05/01/2002~
-~07212~^~432~^3.^0^^~4~^~BFZN~^~07029~^^^^^^^^^~05/01/2002~
-~07212~^~435~^3.^0^^~4~^~NC~^~07029~^^^^^^^^^~06/01/2008~
-~07212~^~601~^59.^1^^~1~^~A~^^^^^^^^^^~04/01/2002~
-~07230~^~208~^368.^0^^~4~^~NC~^^^^^^^^^^~06/01/2008~
-~07230~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2002~
-~07230~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2002~
-~07230~^~268~^1541.^0^^~4~^~NC~^^^^^^^^^^~06/01/2008~
-~07230~^~301~^12.^14^2.^~1~^~A~^^^^^^^^^^~07/01/1996~
-~07230~^~304~^21.^14^2.^~12~^~MA~^^^^^^^^^^~07/01/1996~
-~07230~^~305~^180.^14^9.^~12~^~MA~^^^^^^^^^^~07/01/1996~
-~07230~^~306~^356.^14^11.^~12~^~MA~^^^^^^^^^^~07/01/1996~
-~07230~^~307~^1976.^31^94.^~1~^~A~^^^2^1882.^2070.^1^781.^3170.^~2~^~05/01/2002~
-~07230~^~318~^44.^0^^~4~^~NC~^^^^^^^^^^~07/01/2008~
-~07230~^~319~^3.^0^^~4~^~NR~^^^^^^^^^^~08/01/2002~
-~07230~^~320~^5.^0^^~4~^~NC~^^^^^^^^^^~07/01/2008~
-~07230~^~321~^20.^1^^~12~^~MA~^^^^^^^^^^~03/01/1997~
-~07230~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2002~
-~07230~^~324~^62.^4^8.^~12~^~MA~^^^^^^^^^^~03/01/1997~
-~07230~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2002~
-~07230~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2002~
-~07230~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2002~
-~07230~^~417~^3.^2^^~12~^~MA~^^^^^^^^^^~07/01/1996~
-~07230~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~
-~07230~^~432~^3.^2^^~12~^~MA~^^^^^^^^^^~08/01/2002~
-~07230~^~435~^3.^0^^~4~^~NC~^^^^^^^^^^~07/01/2008~
-~07230~^~601~^97.^31^0.^~1~^~A~^^^2^96.^98.^1^85.^108.^~2~^~05/01/2002~
-~07236~^~208~^315.^0^^~4~^~NC~^^^^^^^^^^~04/01/2007~
-~07236~^~268~^1316.^0^^~4~^~NC~^^^^^^^^^^~04/01/2007~
-~07236~^~301~^67.^1^^~1~^~A~^^^^^^^^^^~07/01/1996~
-~07236~^~304~^21.^1^^~12~^~MA~^^^^^^^^^^~07/01/1996~
-~07236~^~305~^248.^1^^~12~^~MA~^^^^^^^^^^~07/01/1996~
-~07236~^~306~^152.^1^^~12~^~MA~^^^^^^^^^^~07/01/1996~
-~07236~^~307~^1036.^1^^~1~^~A~^^^^^^^^^^~07/01/1996~
-~07236~^~318~^0.^0^^~9~^~MC~^^^^^^^^^^~03/01/1997~
-~07236~^~601~^67.^1^^~1~^~A~^^^^^^^^^^~07/01/1996~
-~07241~^~208~^329.^0^^~4~^~NC~^^^^^^^^^^~06/01/2014~
-~07241~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2002~
-~07241~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2002~
-~07241~^~268~^1376.^0^^~4~^~NC~^^^^^^^^^^~06/01/2014~
-~07241~^~301~^10.^31^0.^~1~^~A~^^^2^9.^11.^1^-2.^22.^~2~^~05/01/2002~
-~07241~^~304~^13.^1^^~1~^~A~^^^^^^^^^^~07/01/2002~
-~07241~^~305~^140.^1^^~1~^~A~^^^^^^^^^^~07/01/2002~
-~07241~^~306~^130.^1^^~1~^~A~^^^^^^^^^^~07/01/2002~
-~07241~^~307~^1025.^31^6.^~1~^~A~^^^2^1018.^1032.^1^937.^1111.^~2~^~05/01/2002~
-~07241~^~318~^0.^0^^~4~^~NR~^^^^^^^^^^~05/01/2002~
-~07241~^~319~^0.^0^^~4~^~NR~^^^^^^^^^^~05/01/2002~
-~07241~^~320~^0.^0^^~4~^~NC~^^^^^^^^^^~08/01/2002~
-~07241~^~321~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2002~
-~07241~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2002~
-~07241~^~324~^24.^7^2.^~12~^~MA~^^^^^^^^^^~07/01/1996~
-~07241~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2002~
-~07241~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2002~
-~07241~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2002~
-~07241~^~417~^6.^1^^~1~^~A~^^^^^^^^^^~07/01/2002~
-~07241~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~
-~07241~^~432~^6.^1^^~1~^~A~^^^^^^^^^^~08/01/2002~
-~07241~^~435~^6.^0^^~4~^~NC~^^^^^^^^^^~06/01/2008~
-~07241~^~601~^56.^31^9.^~1~^~A~^^^2^46.^65.^1^-64.^175.^~2~^~05/01/2002~
-~07254~^~208~^226.^0^^~4~^~NC~^^^^^^^^^^~07/01/2015~
-~07254~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2002~
-~07254~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2002~
-~07254~^~268~^944.^0^^~4~^~NC~^^^^^^^^^^~07/01/2015~
-~07254~^~301~^80.^18^3.^~1~^~A~^^^1^44.^135.^6^72.^88.^~2, 3~^~07/01/2014~
-~07254~^~304~^16.^18^0.^~1~^~A~^^^1^15.^18.^9^15.^16.^~2, 3~^~07/01/2014~
-~07254~^~305~^222.^18^3.^~1~^~A~^^^1^176.^270.^6^214.^229.^~2, 3~^~07/01/2014~
-~07254~^~306~^349.^18^13.^~1~^~A~^^^1^162.^742.^6^317.^381.^~2, 3~^~07/01/2014~
-~07254~^~307~^1069.^18^23.^~1~^~A~^^^1^692.^1250.^7^1012.^1125.^~2, 3~^~07/01/2014~
-~07254~^~318~^34.^0^^~1~^~AS~^^^^^^^^^^~07/01/2014~
-~07254~^~319~^10.^3^^~1~^~A~^^^1^0.^28.^^^^~1, 2, 3~^~07/01/2014~
-~07254~^~320~^10.^0^^~1~^~AS~^^^^^^^^^^~07/01/2014~
-~07254~^~321~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2002~
-~07254~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2002~
-~07254~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2002~
-~07254~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2002~
-~07254~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2002~
-~07254~^~417~^10.^3^^~1~^~A~^^^1^9.^11.^^^^~2, 3~^~07/01/2014~
-~07254~^~432~^10.^3^^~1~^~A~^^^1^9.^11.^^^^^~07/01/2014~
-~07254~^~601~^86.^9^1.^~1~^~A~^^^1^80.^90.^4^82.^88.^~2, 3~^~07/01/2014~
-~07278~^~208~^243.^0^^~4~^~NC~^^^^^^^^^^~08/01/2002~
-~07278~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2002~
-~07278~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2002~
-~07278~^~268~^1016.^0^^~4~^~NC~^^^^^^^^^^~08/01/2002~
-~07278~^~301~^26.^7^0.^~1~^~A~^^^2^26.^26.^^^^~2~^~06/01/2002~
-~07278~^~304~^41.^7^0.^~1~^~A~^^^2^41.^41.^^^^~2~^~06/01/2002~
-~07278~^~306~^449.^7^0.^~1~^~A~^^^2^449.^449.^^^^~2~^~06/01/2002~
-~07278~^~307~^1858.^13^0.^~1~^~A~^^^2^1858.^1858.^1^1857.^1857.^~2~^~06/01/2002~
-~07278~^~318~^49.^7^0.^~1~^~A~^^^2^48.^49.^1^45.^52.^~2~^~06/01/2002~
-~07278~^~319~^15.^0^^~4~^~NR~^^^^^^^^^^~06/01/2002~
-~07278~^~320~^15.^0^^~4~^~NC~^^^^^^^^^^~08/01/2002~
-~07278~^~321~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2002~
-~07278~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2002~
-~07278~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2002~
-~07278~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2002~
-~07278~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2002~
-~07278~^~417~^4.^0^^~4~^~BFZN~^~07070~^^^^^^^^^~06/01/2002~
-~07278~^~431~^0.^0^^~4~^~BFZN~^~07070~^^^^^^^^^~06/01/2002~
-~07278~^~432~^4.^0^^~4~^~BFZN~^~07070~^^^^^^^^^~06/01/2002~
-~07278~^~435~^4.^0^^~4~^~NC~^~07070~^^^^^^^^^~06/01/2008~
-~07278~^~601~^123.^7^0.^~1~^~A~^^^2^123.^123.^^^^~2~^~06/01/2002~
-~07900~^~208~^101.^0^^~4~^^^^^^^^^^^~03/01/2009~
-~07900~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2001~
-~07900~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2001~
-~07900~^~268~^423.^0^^~4~^^^^^^^^^^^~03/01/2009~
-~07900~^~301~^10.^0^^~4~^^^^^^^^^^^~03/01/2009~
-~07900~^~304~^16.^0^^~4~^^^^^^^^^^^~03/01/2009~
-~07900~^~305~^74.^0^^~4~^^^^^^^^^^^~03/01/2009~
-~07900~^~306~^243.^0^^~4~^^^^^^^^^^^~03/01/2009~
-~07900~^~307~^796.^0^^~4~^^^^^^^^^^^~03/01/2009~
-~07900~^~318~^0.^0^^~4~^^^^^^^^^^^~03/01/2009~
-~07900~^~319~^0.^0^^~4~^~NR~^^^^^^^^^^~04/01/2003~
-~07900~^~320~^0.^0^^~4~^~NC~^^^^^^^^^^~03/01/2009~
-~07900~^~321~^0.^0^^~7~^~Z~^^^^^^^^^^~08/01/2002~
-~07900~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~08/01/2002~
-~07900~^~324~^3.^0^^~4~^~BFFN~^~07008~^^^^^^^^^~03/01/2009~
-~07900~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~08/01/2002~
-~07900~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~08/01/2002~
-~07900~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~08/01/2002~
-~07900~^~417~^6.^0^^~4~^^^^^^^^^^^~03/01/2009~
-~07900~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2003~
-~07900~^~432~^6.^0^^~4~^^^^^^^^^^^~03/01/2009~
-~07900~^~435~^6.^0^^~4~^~NC~^^^^^^^^^^~03/01/2009~
-~07900~^~601~^21.^0^^~4~^^^^^^^^^^^~03/01/2009~
-~07905~^~208~^109.^0^^~4~^~NC~^^^^^^^^^^~02/01/2009~
-~07905~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2001~
-~07905~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2001~
-~07905~^~268~^456.^0^^~4~^~NC~^^^^^^^^^^~02/01/2009~
-~07905~^~301~^54.^0^^~4~^~RA~^^^^^^^^^^~02/01/2009~
-~07905~^~304~^14.^0^^~4~^~RA~^^^^^^^^^^~02/01/2009~
-~07905~^~305~^132.^0^^~4~^~RA~^^^^^^^^^^~02/01/2009~
-~07905~^~306~^220.^0^^~4~^~RA~^^^^^^^^^^~02/01/2009~
-~07905~^~307~^880.^0^^~4~^~T~^^^^^^^^^^~08/01/2011~
-~07905~^~318~^0.^1^^~1~^~A~^^^^^^^^^^~05/01/2004~
-~07905~^~319~^0.^0^^~4~^~NR~^^^^^^^^^^~03/01/2003~
-~07905~^~320~^0.^0^^~4~^~NC~^^^^^^^^^^~02/01/2009~
-~07905~^~321~^0.^0^^~7~^~Z~^^^^^^^^^^~08/01/2002~
-~07905~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~08/01/2002~
-~07905~^~324~^2.^0^^~4~^~BFFN~^^^^^^^^^^~02/01/2009~
-~07905~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~08/01/2002~
-~07905~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~08/01/2002~
-~07905~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~08/01/2002~
-~07905~^~417~^6.^0^^~4~^~BFPN~^^^^^^^^^^~02/01/2009~
-~07905~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2003~
-~07905~^~432~^6.^0^^~4~^~BFPN~^^^^^^^^^^~02/01/2009~
-~07905~^~435~^6.^0^^~4~^~NC~^^^^^^^^^^~02/01/2009~
-~07905~^~601~^41.^1^^~1~^~A~^^^^^^^^^^~05/01/2004~
-~07906~^~208~^293.^0^^~4~^~NC~^^^^^^^^^^~04/01/2009~
-~07906~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2001~
-~07906~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2001~
-~07906~^~268~^1226.^0^^~4~^~NC~^^^^^^^^^^~04/01/2009~
-~07906~^~301~^0.^0^^~9~^~MC~^^^^^^^^^^~04/01/2009~
-~07906~^~304~^14.^0^^~9~^~MC~^^^^^^^^^^~04/01/2009~
-~07906~^~305~^109.^0^^~4~^~RA~^^^^^^^^^^~04/01/2009~
-~07906~^~306~^564.^0^^~9~^~MC~^^^^^^^^^^~04/01/2009~
-~07906~^~307~^1036.^0^^~8~^~LC~^^^^^^^^^^~08/01/2012~
-~07906~^~318~^0.^1^^~1~^~A~^^^^^^^^^^~05/01/2004~
-~07906~^~319~^0.^0^^~4~^~NR~^^^^^^^^^^~03/01/2003~
-~07906~^~320~^0.^0^^~1~^~AS~^^^^^^^^^^~05/01/2004~
-~07906~^~321~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2003~
-~07906~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2003~
-~07906~^~324~^23.^0^^~4~^~BFNN~^~10136~^^^^^^^^^~04/01/2009~
-~07906~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2003~
-~07906~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2003~
-~07906~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2003~
-~07906~^~417~^4.^0^^~4~^~BFZN~^^^^^^^^^^~04/01/2009~
-~07906~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2003~
-~07906~^~432~^4.^0^^~4~^~BFZN~^^^^^^^^^^~04/01/2009~
-~07906~^~435~^4.^0^^~4~^~NC~^^^^^^^^^^~04/01/2009~
-~07906~^~601~^76.^1^^~1~^~A~^^^^^^^^^^~05/01/2004~
-~07908~^~208~^315.^0^^~4~^~NC~^^^^^^^^^^~04/01/2009~
-~07908~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2001~
-~07908~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2001~
-~07908~^~268~^1318.^0^^~4~^~NC~^^^^^^^^^^~04/01/2009~
-~07908~^~301~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/1997~
-~07908~^~304~^14.^0^^~9~^~MC~^^^^^^^^^^~05/01/2004~
-~07908~^~305~^151.^0^^~4~^~BFZN~^^^^^^^^^^~05/01/2004~
-~07908~^~306~^409.^0^^~9~^~MC~^^^^^^^^^^~05/01/2004~
-~07908~^~307~^1411.^0^^~8~^~LC~^^^^^^^^^^~08/01/2012~
-~07908~^~318~^0.^1^^~1~^~A~^^^^^^^^^^~05/01/2004~
-~07908~^~319~^0.^0^^~4~^~NR~^^^^^^^^^^~03/01/2003~
-~07908~^~320~^0.^0^^~1~^~AS~^^^^^^^^^^~05/01/2004~
-~07908~^~321~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2003~
-~07908~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2003~
-~07908~^~324~^26.^0^^~4~^~BFNN~^~10136~^^^^^^^^^~04/01/2009~
-~07908~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2003~
-~07908~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2003~
-~07908~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2003~
-~07908~^~417~^3.^0^^~4~^~BFZN~^^^^^^^^^^~05/01/2004~
-~07908~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2003~
-~07908~^~432~^3.^0^^~4~^~BFZN~^^^^^^^^^^~04/01/2009~
-~07908~^~435~^3.^0^^~4~^~NC~^^^^^^^^^^~04/01/2009~
-~07908~^~601~^71.^1^^~1~^~A~^^^^^^^^^^~05/01/2004~
-~07909~^~208~^196.^0^^~4~^~NC~^^^^^^^^^^~04/01/2009~
-~07909~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2001~
-~07909~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2001~
-~07909~^~268~^819.^0^^~4~^~NC~^^^^^^^^^^~04/01/2009~
-~07909~^~301~^39.^1^^~1~^~A~^^^^^^^^^^~05/01/2004~
-~07909~^~304~^18.^1^^~1~^~A~^^^^^^^^^^~05/01/2004~
-~07909~^~305~^109.^0^^~4~^~BFZN~^^^^^^^^^^~05/01/2004~
-~07909~^~306~^461.^1^^~1~^~A~^^^^^^^^^^~05/01/2004~
-~07909~^~307~^1032.^1^^~1~^~A~^^^^^^^^^^~05/01/2004~
-~07909~^~318~^0.^1^^~1~^~A~^^^^^^^^^^~05/01/2004~
-~07909~^~319~^0.^0^^~4~^~NR~^^^^^^^^^^~03/01/2003~
-~07909~^~320~^0.^0^^~1~^~AS~^^^^^^^^^^~05/01/2004~
-~07909~^~321~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2003~
-~07909~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2003~
-~07909~^~324~^24.^0^^~4~^~BFNN~^~10134~^^^^^^^^^~04/01/2009~
-~07909~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2003~
-~07909~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2003~
-~07909~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2003~
-~07909~^~417~^4.^0^^~4~^~BFZN~^^^^^^^^^^~05/01/2004~
-~07909~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2003~
-~07909~^~432~^4.^0^^~4~^~BFZN~^^^^^^^^^^~04/01/2009~
-~07909~^~435~^4.^0^^~4~^~NC~^^^^^^^^^^~04/01/2009~
-~07909~^~601~^75.^1^^~1~^~A~^^^^^^^^^^~05/01/2004~
-~07910~^~208~^341.^0^^~4~^~NC~^^^^^^^^^^~07/01/2003~
-~07910~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2002~
-~07910~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2002~
-~07910~^~268~^1428.^0^^~4~^~NC~^^^^^^^^^^~07/01/2003~
-~07910~^~301~^11.^0^^~9~^~MC~^^^^^^^^^^~01/01/2002~
-~07910~^~304~^16.^0^^~9~^~MC~^^^^^^^^^^~01/01/2002~
-~07910~^~305~^150.^0^^~9~^~MC~^^^^^^^^^^~01/01/2002~
-~07910~^~306~^231.^0^^~9~^~MC~^^^^^^^^^^~01/01/2002~
-~07910~^~307~^60.^0^^~9~^~MC~^^^^^^^^^^~01/01/2002~
-~07910~^~318~^0.^0^^~9~^~MC~^^^^^^^^^^~01/01/2002~
-~07910~^~319~^0.^0^^~4~^~NR~^^^^^^^^^^~07/01/2002~
-~07910~^~320~^0.^0^^~4~^~NC~^^^^^^^^^^~01/01/2002~
-~07910~^~321~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2002~
-~07910~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2002~
-~07910~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2002~
-~07910~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2002~
-~07910~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2002~
-~07910~^~417~^9.^0^^~9~^~MC~^^^^^^^^^^~01/01/2002~
-~07910~^~431~^0.^0^^~4~^~NR~^^^^^^^^^^~07/01/2002~
-~07910~^~432~^9.^0^^~9~^~MC~^^^^^^^^^^~07/01/2002~
-~07910~^~435~^9.^0^^~4~^~NC~^^^^^^^^^^~07/01/2003~
-~07910~^~601~^79.^0^^~9~^~MC~^^^^^^^^^^~01/01/2002~
-~07911~^~208~^305.^0^^~4~^~NC~^^^^^^^^^^~07/01/2004~
-~07911~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2002~
-~07911~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2002~
-~07911~^~268~^1277.^0^^~4~^~NC~^^^^^^^^^^~07/01/2004~
-~07911~^~301~^22.^0^^~9~^~MC~^^^^^^^^^^~01/01/2002~
-~07911~^~304~^12.^0^^~4~^~BFZN~^~07041~^^^^^^^^^~06/01/2002~
-~07911~^~305~^230.^0^^~4~^~BFZN~^~07041~^^^^^^^^^~06/01/2002~
-~07911~^~306~^170.^0^^~4~^~BFZN~^~07041~^^^^^^^^^~06/01/2002~
-~07911~^~307~^700.^0^^~9~^~MC~^^^^^^^^^^~01/01/2002~
-~07911~^~318~^13636.^0^^~9~^~MC~^^^^^^^^^^~01/01/2002~
-~07911~^~319~^4091.^0^^~4~^~NR~^^^^^^^^^^~07/01/2004~
-~07911~^~320~^4091.^0^^~1~^~AS~^^^^^^^^^^~07/01/2004~
-~07911~^~321~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2002~
-~07911~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2002~
-~07911~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2002~
-~07911~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2002~
-~07911~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2002~
-~07911~^~417~^30.^0^^~4~^~BFZN~^~07041~^^^^^^^^^~06/01/2002~
-~07911~^~431~^0.^0^^~4~^~BFZN~^~07041~^^^^^^^^^~06/01/2002~
-~07911~^~432~^30.^0^^~4~^~BFZN~^~07041~^^^^^^^^^~06/01/2002~
-~07911~^~435~^30.^0^^~4~^~NC~^~07041~^^^^^^^^^~07/01/2004~
-~07911~^~601~^118.^0^^~9~^~MC~^^^^^^^^^^~01/01/2002~
-~07912~^~208~^223.^0^^~9~^~MC~^^^^^^^^^^~01/01/2002~
-~07912~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2002~
-~07912~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2002~
-~07912~^~268~^931.^0^^~9~^~MC~^^^^^^^^^^~06/01/2002~
-~07912~^~301~^23.^0^^~9~^~MC~^^^^^^^^^^~01/01/2002~
-~07912~^~304~^24.^0^^~4~^~BFZN~^^^^^^^^^^~06/01/2002~
-~07912~^~305~^116.^0^^~4~^~BFZN~^^^^^^^^^^~06/01/2002~
-~07912~^~306~^259.^0^^~4~^~BFZN~^^^^^^^^^^~06/01/2002~
-~07912~^~307~^724.^0^^~9~^~MC~^^^^^^^^^^~01/01/2002~
-~07912~^~318~^1.^0^^~9~^~MC~^^^^^^^^^^~01/01/2002~
-~07912~^~319~^0.^0^^~4~^~NR~^^^^^^^^^^~06/01/2002~
-~07912~^~320~^0.^0^^~4~^~NR~^^^^^^^^^^~06/01/2002~
-~07912~^~321~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2002~
-~07912~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2002~
-~07912~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2002~
-~07912~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2002~
-~07912~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2002~
-~07912~^~417~^8.^0^^~4~^~BFZN~^^^^^^^^^^~06/01/2002~
-~07912~^~431~^0.^0^^~4~^~NR~^^^^^^^^^^~06/01/2002~
-~07912~^~432~^8.^0^^~4~^~BFZN~^^^^^^^^^^~06/01/2002~
-~07912~^~435~^8.^0^^~4~^~NC~^^^^^^^^^^~07/01/2003~
-~07912~^~601~^70.^0^^~9~^~MC~^^^^^^^^^^~01/01/2002~
-~07913~^~208~^396.^0^^~4~^~NC~^^^^^^^^^^~02/01/2006~
-~07913~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2002~
-~07913~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2002~
-~07913~^~268~^1657.^0^^~4~^~NC~^^^^^^^^^^~02/01/2006~
-~07913~^~301~^94.^0^^~9~^~MC~^^^^^^^^^^~01/01/2002~
-~07913~^~304~^31.^0^^~9~^~MC~^^^^^^^^^^~01/01/2002~
-~07913~^~305~^272.^0^^~9~^~MC~^^^^^^^^^^~01/01/2002~
-~07913~^~306~^1372.^0^^~9~^~MC~^^^^^^^^^^~01/01/2002~
-~07913~^~307~^623.^0^^~9~^~MC~^^^^^^^^^^~06/01/2002~
-~07913~^~318~^12.^0^^~9~^~MC~^^^^^^^^^^~01/01/2002~
-~07913~^~319~^4.^0^^~4~^~NR~^^^^^^^^^^~06/01/2002~
-~07913~^~320~^4.^0^^~4~^~NC~^^^^^^^^^^~07/01/2008~
-~07913~^~321~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2002~
-~07913~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2002~
-~07913~^~324~^32.^0^^~9~^~MC~^^^^^^^^^^~01/01/2002~
-~07913~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2002~
-~07913~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2002~
-~07913~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2002~
-~07913~^~417~^8.^0^^~9~^~MC~^^^^^^^^^^~01/01/2002~
-~07913~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~07/01/2002~
-~07913~^~432~^8.^0^^~9~^~MC~^^^^^^^^^^~02/01/2006~
-~07913~^~435~^8.^0^^~4~^~NC~^^^^^^^^^^~07/01/2008~
-~07913~^~601~^90.^0^^~9~^~MC~^^^^^^^^^^~01/01/2002~
-~07913~^~636~^0.^0^^~4~^~BFZN~^~07069~^^^^^^^^^~06/01/2002~
-~07914~^~208~^149.^0^^~9~^~MC~^^^^^^^^^^~01/01/2002~
-~07914~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2002~
-~07914~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2002~
-~07914~^~268~^622.^0^^~9~^~MC~^^^^^^^^^^~07/01/2005~
-~07914~^~301~^25.^8^5.^~1~^~A~^^^^^^^^^^~01/01/2002~
-~07914~^~304~^12.^0^^~4~^~FLA~^^^^^^^^^^~06/01/2002~
-~07914~^~305~^103.^0^^~4~^~FLA~^^^^^^^^^^~06/01/2002~
-~07914~^~306~^194.^0^^~4~^~FLA~^^^^^^^^^^~06/01/2002~
-~07914~^~307~^570.^8^6.^~1~^~A~^^^^^^^^^^~01/01/2002~
-~07914~^~318~^2.^0^^~4~^~FLA~^^^^^^^^^^~06/01/2002~
-~07914~^~319~^0.^0^^~4~^~FLA~^^^^^^^^^^~07/01/2005~
-~07914~^~320~^0.^0^^~4~^~FLA~^^^^^^^^^^~07/01/2005~
-~07914~^~321~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2002~
-~07914~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2002~
-~07914~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2002~
-~07914~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2002~
-~07914~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2002~
-~07914~^~417~^4.^0^^~4~^~FLA~^^^^^^^^^^~06/01/2002~
-~07914~^~431~^0.^0^^~4~^~FLA~^^^^^^^^^^~06/01/2002~
-~07914~^~432~^4.^0^^~4~^~FLA~^^^^^^^^^^~06/01/2002~
-~07914~^~435~^4.^0^^~4~^~NC~^^^^^^^^^^~07/01/2005~
-~07914~^~601~^30.^0^^~4~^~FLA~^^^^^^^^^^~06/01/2002~
-~07914~^~636~^0.^0^^~4~^~FLA~^^^^^^^^^^~06/01/2002~
-~07915~^~208~^259.^0^^~9~^~MC~^^^^^^^^^^~01/01/2002~
-~07915~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2002~
-~07915~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2002~
-~07915~^~268~^1085.^0^^~9~^~MC~^^^^^^^^^^~07/01/2005~
-~07915~^~301~^12.^0^^~4~^~BFZN~^~07059~^^^^^^^^^~07/01/2002~
-~07915~^~304~^14.^0^^~4~^~BFZN~^~07059~^^^^^^^^^~07/01/2002~
-~07915~^~305~^136.^0^^~4~^~BFZN~^~07059~^^^^^^^^^~07/01/2002~
-~07915~^~306~^237.^0^^~4~^~BFZN~^~07059~^^^^^^^^^~07/01/2002~
-~07915~^~307~^1540.^1^^~1~^~A~^^^^^^^^^^~01/01/2002~
-~07915~^~318~^0.^1^^~1~^~A~^^^^^^^^^^~01/01/2002~
-~07915~^~319~^0.^0^^~4~^~NR~^^^^^^^^^^~07/01/2002~
-~07915~^~320~^0.^1^^~1~^~A~^^^^^^^^^^~01/01/2002~
-~07915~^~321~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2002~
-~07915~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2002~
-~07915~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2002~
-~07915~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2002~
-~07915~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2002~
-~07915~^~417~^2.^0^^~4~^~BFZN~^~07059~^^^^^^^^^~07/01/2002~
-~07915~^~431~^0.^0^^~4~^~BFZN~^~07059~^^^^^^^^^~06/01/2002~
-~07915~^~432~^2.^0^^~4~^~BFZN~^~07059~^^^^^^^^^~07/01/2002~
-~07915~^~435~^2.^0^^~4~^~NC~^~07059~^^^^^^^^^~07/01/2005~
-~07915~^~601~^66.^1^^~1~^~A~^^^^^^^^^^~01/01/2002~
-~07915~^~636~^0.^0^^~4~^~BFZN~^~07059~^^^^^^^^^~07/01/2002~
-~07916~^~208~^301.^0^^~4~^~NC~^^^^^^^^^^~07/01/2003~
-~07916~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2002~
-~07916~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2002~
-~07916~^~268~^1259.^0^^~4~^~NC~^^^^^^^^^^~07/01/2003~
-~07916~^~301~^7.^0^^~9~^~MC~^^^^^^^^^^~01/01/2002~
-~07916~^~304~^12.^0^^~4~^~BFZN~^~07075~^^^^^^^^^~06/01/2002~
-~07916~^~305~^107.^0^^~4~^~BFZN~^~07075~^^^^^^^^^~06/01/2002~
-~07916~^~306~^189.^0^^~4~^~BFZN~^~07075~^^^^^^^^^~06/01/2002~
-~07916~^~307~^848.^0^^~9~^~MC~^^^^^^^^^^~01/01/2002~
-~07916~^~318~^0.^0^^~9~^~MC~^^^^^^^^^^~06/01/2002~
-~07916~^~319~^0.^0^^~4~^~BFZN~^~07075~^^^^^^^^^~06/01/2002~
-~07916~^~320~^0.^0^^~4~^~NC~^^^^^^^^^^~01/01/2002~
-~07916~^~321~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2002~
-~07916~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2002~
-~07916~^~324~^44.^0^^~4~^~BFZN~^~07075~^^^^^^^^^~06/01/2002~
-~07916~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2002~
-~07916~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2002~
-~07916~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2002~
-~07916~^~417~^4.^0^^~9~^~MC~^^^^^^^^^^~01/01/2002~
-~07916~^~431~^0.^0^^~4~^~BFZN~^~07075~^^^^^^^^^~06/01/2002~
-~07916~^~432~^4.^0^^~4~^~NR~^~07075~^^^^^^^^^~06/01/2002~
-~07916~^~435~^4.^0^^~4~^~NC~^~07075~^^^^^^^^^~07/01/2003~
-~07916~^~601~^71.^0^^~4~^~BFZN~^~07075~^^^^^^^^^~06/01/2002~
-~07917~^~208~^296.^0^^~4~^~NC~^^^^^^^^^^~07/01/2003~
-~07917~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2002~
-~07917~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2002~
-~07917~^~268~^1240.^0^^~4~^~NC~^^^^^^^^^^~07/01/2003~
-~07917~^~301~^57.^0^^~9~^~MC~^^^^^^^^^^~01/01/2002~
-~07917~^~304~^13.^0^^~4~^~BFZN~^~07016~^^^^^^^^^~07/01/2002~
-~07917~^~305~^178.^0^^~4~^~BFZN~^~07016~^^^^^^^^^~07/01/2002~
-~07917~^~306~^206.^0^^~4~^~BFZN~^~07016~^^^^^^^^^~07/01/2002~
-~07917~^~307~^848.^0^^~9~^~MC~^^^^^^^^^^~01/01/2002~
-~07917~^~318~^0.^0^^~1~^~AS~^^^^^^^^^^~01/01/2002~
-~07917~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~07/01/2002~
-~07917~^~320~^0.^0^^~4~^~NC~^^^^^^^^^^~01/01/2002~
-~07917~^~321~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2002~
-~07917~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2002~
-~07917~^~324~^12.^0^^~4~^~BFZN~^~07016~^^^^^^^^^~07/01/2002~
-~07917~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2002~
-~07917~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2002~
-~07917~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2002~
-~07917~^~417~^3.^0^^~9~^~MC~^^^^^^^^^^~01/01/2002~
-~07917~^~431~^0.^0^^~4~^~NR~^^^^^^^^^^~07/01/2002~
-~07917~^~432~^3.^0^^~9~^~MC~^^^^^^^^^^~08/01/2002~
-~07917~^~435~^3.^0^^~4~^~NC~^^^^^^^^^^~07/01/2003~
-~07917~^~601~^63.^0^^~9~^~MC~^^^^^^^^^^~01/01/2002~
-~07918~^~208~^426.^0^^~4~^~NC~^^^^^^^^^^~08/01/2002~
-~07918~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2002~
-~07918~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2002~
-~07918~^~268~^1783.^0^^~4~^~NC~^^^^^^^^^^~08/01/2002~
-~07918~^~301~^81.^0^^~9~^~MC~^^^^^^^^^^~01/01/2002~
-~07918~^~304~^13.^0^^~4~^~BFZN~^~07016~^^^^^^^^^~07/01/2002~
-~07918~^~305~^178.^0^^~4~^~BFZN~^~07016~^^^^^^^^^~07/01/2002~
-~07918~^~306~^206.^0^^~4~^~BFZN~^~07016~^^^^^^^^^~07/01/2002~
-~07918~^~307~^1483.^0^^~9~^~MC~^^^^^^^^^^~01/01/2002~
-~07918~^~318~^749.^0^^~9~^~MC~^^^^^^^^^^~07/01/2002~
-~07918~^~319~^225.^0^^~4~^~NR~^^^^^^^^^^~08/01/2002~
-~07918~^~320~^225.^0^^~4~^~NC~^^^^^^^^^^~08/01/2002~
-~07918~^~321~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2002~
-~07918~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2002~
-~07918~^~324~^12.^0^^~4~^~BFZN~^~07016~^^^^^^^^^~07/01/2002~
-~07918~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2002~
-~07918~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2002~
-~07918~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2002~
-~07918~^~417~^7.^0^^~9~^~MC~^^^^^^^^^^~01/01/2002~
-~07918~^~431~^0.^0^^~4~^~NR~^^^^^^^^^^~07/01/2002~
-~07918~^~432~^7.^0^^~9~^~MC~^^^^^^^^^^~08/01/2002~
-~07918~^~435~^7.^0^^~4~^~NC~^^^^^^^^^^~08/01/2002~
-~07918~^~601~^89.^0^^~9~^~MC~^^^^^^^^^^~01/01/2002~
-~07919~^~208~^174.^0^^~4~^~NC~^^^^^^^^^^~10/01/2016~
-~07919~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2002~
-~07919~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2002~
-~07919~^~268~^728.^0^^~4~^~NC~^^^^^^^^^^~10/01/2016~
-~07919~^~301~^55.^8^0.^~1~^~A~^^^1^6.^63.^2^54.^54.^~2, 3~^~10/01/2016~
-~07919~^~304~^20.^8^0.^~1~^~A~^^^1^17.^23.^2^20.^20.^~2, 3~^~10/01/2016~
-~07919~^~305~^174.^8^0.^~1~^~A~^^^1^156.^268.^1^172.^175.^~2, 3~^~10/01/2016~
-~07919~^~306~^258.^8^0.^~1~^~A~^^^1^232.^728.^3^258.^258.^~2, 3~^~10/01/2016~
-~07919~^~307~^714.^8^1.^~1~^~A~^^^1^480.^914.^1^692.^735.^~2, 3~^~10/01/2016~
-~07919~^~318~^0.^0^^~1~^~AS~^^^^^^^^^^~10/01/2016~
-~07919~^~319~^0.^0^^~4~^~NR~^^^^^^^^^^~07/01/2002~
-~07919~^~320~^0.^0^^~1~^~AS~^^^^^^^^^^~10/01/2016~
-~07919~^~321~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2002~
-~07919~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2002~
-~07919~^~324~^17.^0^^~4~^~BFFN~^~07064~^^^^^^^^^~03/01/2009~
-~07919~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2002~
-~07919~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2002~
-~07919~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2002~
-~07919~^~417~^6.^0^^~4~^~BFPN~^~05305~^^^^^^^^^~10/01/2016~
-~07919~^~431~^0.^0^^~4~^~BFPN~^~05305~^^^^^^^^^~03/01/2009~
-~07919~^~432~^6.^0^^~4~^~BFPN~^~05305~^^^^^^^^^~10/01/2016~
-~07919~^~435~^6.^0^^~4~^~NC~^~05305~^^^^^^^^^~10/01/2016~
-~07919~^~601~^76.^6^0.^~1~^~A~^^^1^69.^85.^1^75.^76.^~2, 3~^~10/01/2016~
-~07920~^~208~^307.^0^^~4~^~NC~^^^^^^^^^^~07/01/2005~
-~07920~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2002~
-~07920~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2002~
-~07920~^~268~^1286.^0^^~4~^~NC~^^^^^^^^^^~07/01/2005~
-~07920~^~301~^74.^0^^~9~^~MC~^^^^^^^^^^~01/01/2002~
-~07920~^~304~^13.^0^^~4~^~BFZN~^~07016~^^^^^^^^^~07/01/2002~
-~07920~^~305~^178.^0^^~4~^~BFZN~^~07016~^^^^^^^^^~07/01/2002~
-~07920~^~306~^206.^0^^~4~^~BFZN~^~07016~^^^^^^^^^~07/01/2002~
-~07920~^~307~^827.^0^^~9~^~MC~^^^^^^^^^^~01/01/2002~
-~07920~^~318~^334.^0^^~9~^~MC~^^^^^^^^^^~07/01/2002~
-~07920~^~319~^100.^0^^~4~^~NR~^^^^^^^^^^~07/01/2002~
-~07920~^~320~^100.^0^^~1~^~AS~^^^^^^^^^^~07/01/2002~
-~07920~^~321~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2002~
-~07920~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2002~
-~07920~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2002~
-~07920~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2002~
-~07920~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2002~
-~07920~^~417~^3.^0^^~9~^~MC~^^^^^^^^^^~01/01/2002~
-~07920~^~431~^0.^0^^~4~^~NR~^^^^^^^^^^~07/01/2002~
-~07920~^~432~^3.^0^^~9~^~MC~^^^^^^^^^^~07/01/2005~
-~07920~^~435~^3.^0^^~4~^~NC~^^^^^^^^^^~07/01/2005~
-~07920~^~601~^61.^0^^~9~^~MC~^^^^^^^^^^~01/01/2002~
-~07921~^~208~^517.^0^^~4~^~NC~^^^^^^^^^^~07/01/2005~
-~07921~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2002~
-~07921~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2002~
-~07921~^~268~^2165.^0^^~4~^~NC~^^^^^^^^^^~07/01/2005~
-~07921~^~301~^14.^1^^~1~^~A~^^^^^^^^^^~01/01/2002~
-~07921~^~304~^17.^0^^~4~^~BFZN~^~07072~^^^^^^^^^~07/01/2002~
-~07921~^~305~^142.^0^^~4~^~BFZN~^~07072~^^^^^^^^^~07/01/2002~
-~07921~^~306~^385.^1^^~1~^~A~^^^^^^^^^^~01/01/2002~
-~07921~^~307~^1420.^1^^~1~^~A~^^^^^^^^^^~01/01/2002~
-~07921~^~318~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2002~
-~07921~^~319~^0.^0^^~4~^~BFZN~^~07072~^^^^^^^^^~07/01/2002~
-~07921~^~320~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2002~
-~07921~^~321~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2002~
-~07921~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2002~
-~07921~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2002~
-~07921~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2002~
-~07921~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2002~
-~07921~^~417~^2.^0^^~4~^~BFZN~^~07072~^^^^^^^^^~07/01/2002~
-~07921~^~431~^0.^0^^~4~^~BFZN~^~07072~^^^^^^^^^~07/01/2002~
-~07921~^~432~^2.^0^^~4~^~BFZN~^~07072~^^^^^^^^^~07/01/2002~
-~07921~^~435~^2.^0^^~4~^~NC~^~07072~^^^^^^^^^~07/01/2005~
-~07921~^~601~^102.^1^^~1~^~A~^^^^^^^^^^~01/01/2002~
-~07922~^~208~^297.^0^^~4~^~NC~^^^^^^^^^^~07/01/2005~
-~07922~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2002~
-~07922~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2002~
-~07922~^~268~^1244.^0^^~4~^~NC~^^^^^^^^^^~07/01/2005~
-~07922~^~301~^7.^0^^~9~^~MC~^^^^^^^^^^~01/01/2002~
-~07922~^~304~^15.^0^^~4~^~BFZN~^~07004~^^^^^^^^^~07/01/2002~
-~07922~^~305~^130.^0^^~4~^~BFZN~^~07004~^^^^^^^^^~07/01/2002~
-~07922~^~306~^283.^0^^~4~^~BFZN~^~07004~^^^^^^^^^~07/01/2002~
-~07922~^~307~^848.^0^^~9~^~MC~^^^^^^^^^^~01/01/2002~
-~07922~^~318~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2002~
-~07922~^~319~^0.^0^^~4~^~NR~^^^^^^^^^^~06/01/2002~
-~07922~^~320~^0.^0^^~1~^~AS~^^^^^^^^^^~01/01/2002~
-~07922~^~321~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2002~
-~07922~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2002~
-~07922~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2002~
-~07922~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2002~
-~07922~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2002~
-~07922~^~417~^4.^0^^~9~^~MC~^^^^^^^^^^~01/01/2002~
-~07922~^~431~^0.^0^^~4~^~NR~^^^^^^^^^^~06/01/2002~
-~07922~^~432~^4.^0^^~9~^~MC~^^^^^^^^^^~07/01/2005~
-~07922~^~435~^4.^0^^~4~^~NC~^^^^^^^^^^~07/01/2005~
-~07922~^~601~^78.^0^^~9~^~MC~^^^^^^^^^^~01/01/2002~
-~07923~^~208~^176.^0^^~4~^~NC~^^^^^^^^^^~07/01/2003~
-~07923~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2002~
-~07923~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2002~
-~07923~^~268~^738.^0^^~4~^~NC~^^^^^^^^^^~07/01/2003~
-~07923~^~301~^11.^0^^~9~^~MC~^^^^^^^^^^~01/01/2002~
-~07923~^~304~^23.^0^^~9~^~MC~^^^^^^^^^^~01/01/2002~
-~07923~^~305~^160.^0^^~9~^~MC~^^^^^^^^^^~01/01/2002~
-~07923~^~306~^211.^0^^~9~^~MC~^^^^^^^^^^~01/01/2002~
-~07923~^~307~^72.^0^^~9~^~MC~^^^^^^^^^^~01/01/2002~
-~07923~^~318~^101.^0^^~9~^~MC~^^^^^^^^^^~01/01/2002~
-~07923~^~319~^30.^0^^~4~^~NR~^^^^^^^^^^~06/01/2002~
-~07923~^~320~^30.^0^^~4~^~NC~^^^^^^^^^^~06/01/2014~
-~07923~^~321~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2002~
-~07923~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2002~
-~07923~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2002~
-~07923~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2002~
-~07923~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2002~
-~07923~^~417~^6.^0^^~9~^~MC~^^^^^^^^^^~01/01/2002~
-~07923~^~431~^0.^0^^~4~^~NR~^^^^^^^^^^~06/01/2002~
-~07923~^~432~^6.^0^^~9~^~MC~^^^^^^^^^^~06/01/2002~
-~07923~^~435~^6.^0^^~4~^~NC~^^^^^^^^^^~07/01/2008~
-~07923~^~601~^71.^0^^~9~^~MC~^^^^^^^^^^~01/01/2002~
-~07924~^~208~^186.^0^^~4~^~NC~^^^^^^^^^^~07/01/2005~
-~07924~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2002~
-~07924~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2002~
-~07924~^~268~^778.^0^^~4~^~NC~^^^^^^^^^^~07/01/2005~
-~07924~^~301~^14.^0^^~9~^~MC~^^^^^^^^^^~01/01/2002~
-~07924~^~304~^14.^0^^~4~^~BFZN~^~07928~^^^^^^^^^~07/01/2002~
-~07924~^~305~^132.^0^^~4~^~BFZN~^~07928~^^^^^^^^^~07/01/2002~
-~07924~^~306~^246.^0^^~4~^~BFZN~^~07928~^^^^^^^^^~07/01/2002~
-~07924~^~307~^982.^0^^~9~^~MC~^^^^^^^^^^~01/01/2002~
-~07924~^~318~^1.^0^^~9~^~MC~^^^^^^^^^^~01/01/2002~
-~07924~^~319~^0.^0^^~4~^~NR~^^^^^^^^^^~06/01/2002~
-~07924~^~320~^0.^0^^~1~^~AS~^^^^^^^^^^~07/01/2002~
-~07924~^~321~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2002~
-~07924~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2002~
-~07924~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2002~
-~07924~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2002~
-~07924~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2002~
-~07924~^~417~^5.^0^^~9~^~MC~^^^^^^^^^^~01/01/2002~
-~07924~^~431~^0.^0^^~4~^~NR~^^^^^^^^^^~06/01/2002~
-~07924~^~432~^5.^0^^~9~^~MC~^^^^^^^^^^~07/01/2005~
-~07924~^~435~^5.^0^^~4~^~NC~^^^^^^^^^^~07/01/2005~
-~07924~^~601~^56.^0^^~9~^~MC~^^^^^^^^^^~01/01/2002~
-~07925~^~208~^95.^0^^~9~^~MC~^^^^^^^^^^~01/01/2002~
-~07925~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2002~
-~07925~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2002~
-~07925~^~268~^397.^0^^~9~^~MC~^^^^^^^^^^~06/01/2002~
-~07925~^~301~^9.^0^^~4~^~BFZN~^~13355~^^^^^^^^^~06/01/2002~
-~07925~^~304~^18.^0^^~4~^~BFZN~^~13355~^^^^^^^^^~06/01/2002~
-~07925~^~305~^150.^0^^~4~^~BFZN~^~13355~^^^^^^^^^~06/01/2002~
-~07925~^~306~^228.^0^^~4~^~BFZN~^~13355~^^^^^^^^^~06/01/2002~
-~07925~^~307~^1010.^1^^~1~^~A~^^^^^^^^^^~01/01/2002~
-~07925~^~318~^0.^1^^~1~^~A~^^^^^^^^^^~01/01/2002~
-~07925~^~319~^0.^0^^~4~^~BFZN~^~13355~^^^^^^^^^~06/01/2002~
-~07925~^~320~^0.^1^^~1~^~A~^^^^^^^^^^~01/01/2002~
-~07925~^~321~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2002~
-~07925~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2002~
-~07925~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2002~
-~07925~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2002~
-~07925~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2002~
-~07925~^~417~^7.^0^^~4~^~BFZN~^~13355~^^^^^^^^^~06/01/2002~
-~07925~^~431~^0.^0^^~4~^~BFZN~^~13355~^^^^^^^^^~06/01/2002~
-~07925~^~432~^7.^0^^~4~^~BFZN~^~13355~^^^^^^^^^~06/01/2002~
-~07925~^~435~^7.^0^^~4~^~NC~^~13355~^^^^^^^^^~07/01/2003~
-~07925~^~601~^47.^1^^~1~^~A~^^^^^^^^^^~01/01/2002~
-~07925~^~636~^0.^0^^~4~^~BFZN~^~13355~^^^^^^^^^~06/01/2002~
-~07926~^~208~^425.^0^^~4~^~NC~^^^^^^^^^^~02/01/2006~
-~07926~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2002~
-~07926~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2002~
-~07926~^~268~^1777.^0^^~4~^~NC~^^^^^^^^^^~02/01/2006~
-~07926~^~301~^10.^1^^~1~^~A~^^^^^^^^^^~01/01/2002~
-~07926~^~304~^22.^0^^~4~^~BFZN~^~07071~^^^^^^^^^~06/01/2002~
-~07926~^~305~^229.^0^^~4~^~BFZN~^~07071~^^^^^^^^^~06/01/2002~
-~07926~^~306~^340.^1^^~1~^~A~^^^^^^^^^^~01/01/2002~
-~07926~^~307~^1890.^1^^~1~^~A~^^^^^^^^^^~01/01/2002~
-~07926~^~318~^0.^0^^~1~^~AS~^^^^^^^^^^~01/01/2002~
-~07926~^~319~^0.^0^^~4~^~BFZN~^~07071~^^^^^^^^^~06/01/2002~
-~07926~^~320~^0.^0^^~1~^~AS~^^^^^^^^^^~01/01/2002~
-~07926~^~321~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2002~
-~07926~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2002~
-~07926~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2002~
-~07926~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2002~
-~07926~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2002~
-~07926~^~417~^2.^0^^~4~^~BFZN~^~07071~^^^^^^^^^~06/01/2002~
-~07926~^~431~^0.^0^^~4~^~BFZN~^~07071~^^^^^^^^^~06/01/2002~
-~07926~^~432~^2.^0^^~4~^~BFZN~^~07071~^^^^^^^^^~06/01/2002~
-~07926~^~435~^2.^0^^~4~^~NC~^~07071~^^^^^^^^^~02/01/2006~
-~07926~^~601~^80.^1^^~1~^~A~^^^^^^^^^^~01/01/2002~
-~07926~^~636~^0.^0^^~4~^~BFZN~^~07071~^^^^^^^^^~06/01/2002~
-~07927~^~208~^158.^0^^~9~^~MC~^^^^^^^^^^~01/01/2002~
-~07927~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2002~
-~07927~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2002~
-~07927~^~268~^659.^0^^~9~^~MC~^^^^^^^^^^~07/01/2005~
-~07927~^~301~^21.^1^^~1~^~A~^^^^^^^^^^~01/01/2002~
-~07927~^~304~^25.^0^^~4~^~FLA~^^^^^^^^^^~07/01/2002~
-~07927~^~305~^185.^0^^~4~^~FLA~^^^^^^^^^^~07/01/2002~
-~07927~^~306~^197.^1^^~1~^~A~^^^^^^^^^^~01/01/2002~
-~07927~^~307~^928.^1^^~1~^~A~^^^^^^^^^^~01/01/2002~
-~07927~^~318~^144.^1^^~1~^~A~^^^^^^^^^^~01/01/2002~
-~07927~^~319~^43.^0^^~4~^~NR~^^^^^^^^^^~07/01/2002~
-~07927~^~320~^43.^0^^~1~^~AS~^^^^^^^^^^~07/01/2002~
-~07927~^~321~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2002~
-~07927~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2002~
-~07927~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2002~
-~07927~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2002~
-~07927~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2002~
-~07927~^~417~^8.^0^^~4~^~FLA~^^^^^^^^^^~07/01/2002~
-~07927~^~431~^0.^0^^~4~^~FLA~^^^^^^^^^^~07/01/2002~
-~07927~^~432~^8.^0^^~4~^~FLA~^^^^^^^^^^~07/01/2002~
-~07927~^~435~^8.^0^^~4~^~NC~^^^^^^^^^^~07/01/2005~
-~07927~^~601~^53.^1^^~1~^~A~^^^^^^^^^^~07/01/2002~
-~07927~^~636~^0.^0^^~4~^~FLA~^^^^^^^^^^~07/01/2002~
-~07928~^~208~^216.^0^^~9~^~MC~^^^^^^^^^^~01/01/2002~
-~07928~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2002~
-~07928~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2002~
-~07928~^~268~^904.^0^^~9~^~MC~^^^^^^^^^^~07/01/2005~
-~07928~^~301~^100.^1^^~1~^~A~^^^^^^^^^^~01/01/2002~
-~07928~^~304~^14.^0^^~4~^~FLM~^^^^^^^^^^~06/01/2002~
-~07928~^~305~^132.^0^^~4~^~FLM~^^^^^^^^^^~06/01/2002~
-~07928~^~306~^246.^0^^~4~^~FLM~^^^^^^^^^^~06/01/2002~
-~07928~^~307~^1034.^1^^~1~^~A~^^^^^^^^^^~01/01/2002~
-~07928~^~318~^0.^0^^~1~^~AS~^^^^^^^^^^~01/01/2002~
-~07928~^~320~^0.^0^^~1~^~AS~^^^^^^^^^^~01/01/2002~
-~07928~^~321~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2002~
-~07928~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2002~
-~07928~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2002~
-~07928~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2002~
-~07928~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2002~
-~07928~^~417~^6.^0^^~4~^~FLM~^^^^^^^^^^~06/01/2002~
-~07928~^~431~^0.^0^^~4~^~FLM~^^^^^^^^^^~06/01/2002~
-~07928~^~432~^6.^0^^~4~^~FLM~^^^^^^^^^^~06/01/2002~
-~07928~^~435~^6.^0^^~4~^~NC~^^^^^^^^^^~07/01/2005~
-~07928~^~601~^120.^1^^~1~^~A~^^^^^^^^^^~01/01/2002~
-~07928~^~636~^0.^0^^~4~^~FLM~^^^^^^^^^^~06/01/2002~
-~07929~^~208~^158.^0^^~9~^~MC~^^^^^^^^^^~01/01/2002~
-~07929~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2002~
-~07929~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2002~
-~07929~^~268~^659.^0^^~9~^~MC~^^^^^^^^^^~08/01/2012~
-~07929~^~301~^21.^1^^~1~^~A~^^^^^^^^^^~01/01/2002~
-~07929~^~304~^25.^0^^~4~^~BFNN~^~07927~^^^^^^^^^~05/01/2007~
-~07929~^~305~^185.^0^^~4~^~BFNN~^~07927~^^^^^^^^^~05/01/2007~
-~07929~^~306~^197.^1^^~1~^~A~^^^^^^^^^^~01/01/2002~
-~07929~^~307~^916.^0^^~4~^~NR~^^^^^^^^^^~06/01/2015~
-~07929~^~318~^144.^1^^~1~^~A~^^^^^^^^^^~01/01/2002~
-~07929~^~319~^43.^0^^~4~^~NR~^^^^^^^^^^~07/01/2002~
-~07929~^~320~^43.^0^^~1~^~AS~^^^^^^^^^^~08/01/2002~
-~07929~^~321~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2002~
-~07929~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2002~
-~07929~^~324~^8.^0^^~4~^~BFFN~^~07064~^^^^^^^^^~03/01/2009~
-~07929~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2002~
-~07929~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2002~
-~07929~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2002~
-~07929~^~417~^8.^0^^~4~^~BFPN~^~07927~^^^^^^^^^~05/01/2007~
-~07929~^~431~^0.^0^^~4~^~BFPN~^~07927~^^^^^^^^^~05/01/2007~
-~07929~^~432~^8.^0^^~4~^~BFPN~^~07927~^^^^^^^^^~05/01/2007~
-~07929~^~435~^8.^0^^~4~^~NC~^~07927~^^^^^^^^^~03/01/2009~
-~07929~^~601~^53.^1^^~1~^~A~^^^^^^^^^^~01/01/2002~
-~07930~^~208~^268.^0^^~9~^~MC~^^^^^^^^^^~01/01/2002~
-~07930~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2002~
-~07930~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2002~
-~07930~^~268~^1121.^0^^~9~^~MC~^^^^^^^^^^~07/01/2002~
-~07930~^~301~^19.^0^^~9~^~MC~^^^^^^^^^^~01/01/2002~
-~07930~^~307~^936.^1^^~1~^~A~^^^^^^^^^^~01/01/2002~
-~07930~^~318~^0.^0^^~9~^~MC~^^^^^^^^^^~01/01/2002~
-~07930~^~319~^0.^0^^~4~^~NR~^^^^^^^^^^~07/01/2002~
-~07930~^~320~^0.^0^^~1~^~AS~^^^^^^^^^^~01/01/2002~
-~07930~^~321~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2002~
-~07930~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2002~
-~07930~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2002~
-~07930~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2002~
-~07930~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2002~
-~07930~^~601~^64.^0^^~9~^~MC~^^^^^^^^^^~01/01/2002~
-~07931~^~208~^276.^0^^~4~^~NC~^^^^^^^^^^~07/01/2003~
-~07931~^~262~^0.^0^^~4~^~FLC~^^^^^^^^^^~06/01/2001~
-~07931~^~263~^0.^0^^~4~^~FLC~^^^^^^^^^^~06/01/2001~
-~07931~^~268~^1154.^0^^~4~^~NC~^^^^^^^^^^~07/01/2003~
-~07931~^~301~^27.^0^^~4~^~FLC~^^^^^^^^^^~06/01/2001~
-~07931~^~304~^19.^0^^~4~^~FLC~^^^^^^^^^^~06/01/2001~
-~07931~^~305~^135.^0^^~4~^~FLC~^^^^^^^^^^~06/01/2001~
-~07931~^~306~^244.^0^^~4~^~FLC~^^^^^^^^^^~06/01/2001~
-~07931~^~307~^732.^0^^~4~^~FLC~^^^^^^^^^^~06/01/2001~
-~07931~^~318~^10.^0^^~4~^~FLC~^^^^^^^^^^~06/01/2001~
-~07931~^~319~^3.^0^^~4~^~NR~^^^^^^^^^^~07/01/2002~
-~07931~^~320~^3.^0^^~4~^~NC~^^^^^^^^^^~07/01/2002~
-~07931~^~321~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2002~
-~07931~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2002~
-~07931~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2002~
-~07931~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2002~
-~07931~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2002~
-~07931~^~417~^5.^0^^~4~^~FLC~^^^^^^^^^^~05/01/2002~
-~07931~^~431~^0.^0^^~4~^~NR~^^^^^^^^^^~05/01/2002~
-~07931~^~432~^5.^0^^~4~^~FLC~^^^^^^^^^^~07/01/2002~
-~07931~^~435~^5.^0^^~4~^~NC~^^^^^^^^^^~07/01/2003~
-~07931~^~601~^62.^0^^~4~^~FLC~^^^^^^^^^^~06/01/2001~
-~07931~^~636~^3.^0^^~4~^~FLM~^^^^^^^^^^~07/01/2002~
-~07932~^~208~^80.^0^^~9~^~MC~^^^^^^^^^^~01/01/2002~
-~07932~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2002~
-~07932~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2002~
-~07932~^~268~^334.^0^^~9~^~MC~^^^^^^^^^^~06/01/2002~
-~07932~^~301~^4.^1^^~1~^~A~^^^^^^^^^^~01/01/2002~
-~07932~^~304~^36.^0^^~4~^~BFZN~^^^^^^^^^^~06/01/2002~
-~07932~^~305~^256.^0^^~4~^~BFZN~^^^^^^^^^^~06/01/2002~
-~07932~^~306~^316.^0^^~4~^~BFZN~^^^^^^^^^^~06/01/2002~
-~07932~^~307~^1040.^1^^~1~^~A~^^^^^^^^^^~01/01/2002~
-~07932~^~318~^0.^1^^~1~^~A~^^^^^^^^^^~01/01/2002~
-~07932~^~319~^0.^0^^~4~^~NR~^^^^^^^^^^~03/01/2002~
-~07932~^~320~^0.^1^^~1~^~A~^^^^^^^^^^~01/01/2002~
-~07932~^~321~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2002~
-~07932~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2002~
-~07932~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2002~
-~07932~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2002~
-~07932~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2002~
-~07932~^~417~^1.^0^^~4~^~FLA~^^^^^^^^^^~06/01/2002~
-~07932~^~431~^0.^0^^~4~^~FLA~^^^^^^^^^^~06/01/2002~
-~07932~^~432~^1.^0^^~4~^~FLA~^^^^^^^^^^~06/01/2002~
-~07932~^~435~^1.^0^^~4~^~NC~^^^^^^^^^^~07/01/2003~
-~07932~^~601~^36.^1^^~1~^~A~^^^^^^^^^^~01/01/2002~
-~07932~^~636~^0.^0^^~4~^~FLA~^^^^^^^^^^~06/01/2002~
-~07933~^~208~^79.^0^^~9~^~MC~^^^^^^^^^^~01/01/2002~
-~07933~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2002~
-~07933~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2002~
-~07933~^~268~^332.^0^^~9~^~MC~^^^^^^^^^^~06/01/2002~
-~07933~^~301~^6.^1^^~1~^~A~^^^^^^^^^^~01/01/2002~
-~07933~^~304~^9.^0^^~4~^~FLA~^^^^^^^^^^~06/01/2002~
-~07933~^~305~^60.^0^^~4~^~FLA~^^^^^^^^^^~06/01/2002~
-~07933~^~306~^67.^0^^~4~^~FLA~^^^^^^^^^^~06/01/2002~
-~07933~^~307~^1087.^1^^~1~^~A~^^^^^^^^^^~01/01/2002~
-~07933~^~318~^0.^1^^~1~^~A~^^^^^^^^^^~01/01/2002~
-~07933~^~319~^0.^0^^~4~^~NR~^^^^^^^^^^~03/01/2002~
-~07933~^~320~^0.^1^^~1~^~A~^^^^^^^^^^~01/01/2002~
-~07933~^~321~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2002~
-~07933~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2002~
-~07933~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2002~
-~07933~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2002~
-~07933~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2002~
-~07933~^~417~^1.^0^^~4~^~FLA~^^^^^^^^^^~06/01/2002~
-~07933~^~431~^0.^0^^~4~^~FLA~^^^^^^^^^^~06/01/2002~
-~07933~^~432~^1.^0^^~4~^~FLA~^^^^^^^^^^~06/01/2002~
-~07933~^~435~^1.^0^^~4~^~NC~^^^^^^^^^^~07/01/2003~
-~07933~^~601~^36.^1^^~1~^~A~^^^^^^^^^^~01/01/2002~
-~07934~^~208~^226.^0^^~9~^~MC~^^^^^^^^^^~01/01/2002~
-~07934~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2002~
-~07934~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2002~
-~07934~^~268~^947.^0^^~9~^~MC~^^^^^^^^^^~06/01/2002~
-~07934~^~307~^1200.^1^^~1~^~A~^^^^^^^^^^~01/01/2002~
-~07934~^~318~^0.^1^^~1~^~A~^^^^^^^^^^~01/01/2002~
-~07934~^~320~^0.^1^^~1~^~A~^^^^^^^^^^~01/01/2002~
-~07934~^~321~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2002~
-~07934~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2002~
-~07934~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2002~
-~07934~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2002~
-~07934~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2002~
-~07934~^~601~^70.^1^^~1~^~A~^^^^^^^^^^~01/01/2002~
-~07935~^~208~^134.^0^^~4~^~NC~^^^^^^^^^^~07/01/2003~
-~07935~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2002~
-~07935~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2002~
-~07935~^~268~^562.^0^^~4~^~NC~^^^^^^^^^^~07/01/2003~
-~07935~^~301~^6.^1^^~1~^~A~^^^^^^^^^^~01/01/2002~
-~07935~^~304~^17.^0^^~4~^~FLA~^^^^^^^^^^~02/01/2002~
-~07935~^~305~^121.^0^^~4~^~FLA~^^^^^^^^^^~02/01/2002~
-~07935~^~306~^324.^0^^~4~^~FLA~^^^^^^^^^^~02/01/2002~
-~07935~^~307~^883.^1^^~1~^~A~^^^^^^^^^^~01/01/2002~
-~07935~^~318~^0.^1^^~1~^~A~^^^^^^^^^^~01/01/2002~
-~07935~^~319~^0.^0^^~4~^~NR~^^^^^^^^^^~03/01/2002~
-~07935~^~320~^0.^1^^~1~^~A~^^^^^^^^^^~01/01/2002~
-~07935~^~321~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2002~
-~07935~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2002~
-~07935~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2002~
-~07935~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2002~
-~07935~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2002~
-~07935~^~417~^3.^0^^~4~^~FLA~^^^^^^^^^^~02/01/2002~
-~07935~^~431~^0.^0^^~4~^~FLA~^^^^^^^^^^~02/01/2002~
-~07935~^~432~^3.^0^^~4~^~FLA~^^^^^^^^^^~02/01/2002~
-~07935~^~435~^3.^0^^~4~^~NC~^^^^^^^^^^~07/01/2003~
-~07935~^~601~^39.^1^^~1~^~A~^^^^^^^^^^~01/01/2002~
-~07935~^~636~^0.^0^^~4~^~FLA~^^^^^^^^^^~02/01/2002~
-~07936~^~208~^211.^0^^~9~^~MC~^^^^^^^^^^~01/01/2002~
-~07936~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2002~
-~07936~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2002~
-~07936~^~268~^881.^0^^~9~^~MC~^^^^^^^^^^~04/01/2002~
-~07936~^~301~^48.^1^^~1~^~A~^^^^^^^^^^~01/01/2002~
-~07936~^~304~^17.^0^^~4~^~FLM~^^^^^^^^^^~04/01/2002~
-~07936~^~305~^94.^0^^~4~^~FLM~^^^^^^^^^^~04/01/2002~
-~07936~^~306~^138.^0^^~4~^~FLM~^^^^^^^^^^~04/01/2002~
-~07936~^~307~^716.^1^^~1~^~A~^^^^^^^^^^~01/01/2002~
-~07936~^~318~^2.^0^^~9~^~MC~^^^^^^^^^^~01/01/2002~
-~07936~^~319~^1.^0^^~4~^~NR~^^^^^^^^^^~04/01/2002~
-~07936~^~320~^1.^0^^~1~^~AS~^^^^^^^^^^~03/01/2002~
-~07936~^~321~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2002~
-~07936~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2002~
-~07936~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2002~
-~07936~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2002~
-~07936~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2002~
-~07936~^~417~^18.^0^^~4~^~FLM~^^^^^^^^^^~04/01/2002~
-~07936~^~431~^0.^0^^~4~^~FLM~^^^^^^^^^^~04/01/2002~
-~07936~^~432~^18.^0^^~4~^~FLM~^^^^^^^^^^~04/01/2002~
-~07936~^~435~^18.^0^^~4~^~NC~^^^^^^^^^^~07/01/2003~
-~07936~^~601~^79.^0^^~9~^~MC~^^^^^^^^^^~01/01/2002~
-~07936~^~636~^0.^0^^~4~^~FLM~^^^^^^^^^^~04/01/2002~
-~07937~^~208~^336.^0^^~4~^~NC~^^^^^^^^^^~01/01/2006~
-~07937~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2002~
-~07937~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2002~
-~07937~^~268~^1406.^0^^~4~^~NC~^^^^^^^^^^~01/01/2006~
-~07937~^~301~^31.^1^^~1~^~A~^^^^^^^^^^~03/01/2002~
-~07937~^~304~^14.^0^^~4~^~FLA~^^^^^^^^^^~01/01/2006~
-~07937~^~305~^128.^0^^~4~^~FLA~^^^^^^^^^^~01/01/2006~
-~07937~^~306~^222.^0^^~4~^~FLA~^^^^^^^^^^~01/01/2006~
-~07937~^~307~^1055.^1^^~1~^~A~^^^^^^^^^^~01/01/2002~
-~07937~^~318~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2002~
-~07937~^~319~^0.^0^^~4~^~NR~^^^^^^^^^^~03/01/2002~
-~07937~^~320~^0.^0^^~1~^~AS~^^^^^^^^^^~01/01/2002~
-~07937~^~321~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2002~
-~07937~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2002~
-~07937~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2002~
-~07937~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2002~
-~07937~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2002~
-~07937~^~417~^4.^0^^~4~^~FLA~^^^^^^^^^^~01/01/2006~
-~07937~^~431~^0.^0^^~4~^~FLA~^^^^^^^^^^~01/01/2006~
-~07937~^~432~^4.^0^^~4~^~FLA~^^^^^^^^^^~01/01/2006~
-~07937~^~435~^4.^0^^~4~^~NC~^^^^^^^^^^~01/01/2006~
-~07937~^~601~^75.^1^^~1~^~A~^^^^^^^^^^~01/01/2002~
-~07937~^~636~^0.^0^^~4~^~FLA~^^^^^^^^^^~01/01/2006~
-~07938~^~208~^122.^0^^~4~^~NC~^^^^^^^^^^~01/01/2002~
-~07938~^~262~^0.^0^^~9~^~MC~^^^^^^^^^^~01/01/2002~
-~07938~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2002~
-~07938~^~268~^511.^0^^~4~^~NC~^^^^^^^^^^~06/01/2002~
-~07938~^~301~^6.^0^^~9~^~MC~^^^^^^^^^^~01/01/2002~
-~07938~^~304~^8.^0^^~9~^~MC~^^^^^^^^^^~01/01/2002~
-~07938~^~305~^384.^0^^~9~^~MC~^^^^^^^^^^~01/01/2002~
-~07938~^~306~^165.^0^^~9~^~MC~^^^^^^^^^^~01/01/2002~
-~07938~^~307~^900.^0^^~9~^~MC~^^^^^^^^^^~01/01/2002~
-~07938~^~318~^0.^0^^~9~^~MC~^^^^^^^^^^~01/01/2002~
-~07938~^~319~^0.^0^^~4~^~NR~^^^^^^^^^^~03/01/2002~
-~07938~^~320~^0.^0^^~4~^~NC~^^^^^^^^^^~06/01/2014~
-~07938~^~321~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2002~
-~07938~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2002~
-~07938~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2002~
-~07938~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2002~
-~07938~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2002~
-~07938~^~417~^2.^0^^~9~^~MC~^^^^^^^^^^~01/01/2002~
-~07938~^~431~^0.^0^^~4~^~NR~^^^^^^^^^^~06/01/2002~
-~07938~^~432~^2.^0^^~9~^~MC~^^^^^^^^^^~06/01/2002~
-~07938~^~435~^2.^0^^~4~^~NC~^^^^^^^^^^~06/01/2008~
-~07938~^~601~^22.^0^^~9~^~MC~^^^^^^^^^^~01/01/2002~
-~07939~^~208~^269.^0^^~4~^~FLC~^^^^^^^^^^~01/01/2002~
-~07939~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2002~
-~07939~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2002~
-~07939~^~268~^1127.^0^^~4~^~FLC~^^^^^^^^^^~08/01/2002~
-~07939~^~301~^267.^0^^~4~^~FLC~^^^^^^^^^^~01/01/2002~
-~07939~^~304~^15.^0^^~4~^~FLC~^^^^^^^^^^~01/01/2002~
-~07939~^~305~^171.^0^^~4~^~FLC~^^^^^^^^^^~01/01/2002~
-~07939~^~306~^264.^0^^~4~^~FLC~^^^^^^^^^^~01/01/2002~
-~07939~^~307~^816.^0^^~4~^~FLC~^^^^^^^^^^~01/01/2002~
-~07939~^~318~^263.^0^^~4~^~FLC~^^^^^^^^^^~01/01/2002~
-~07939~^~319~^79.^0^^~4~^~NR~^^^^^^^^^^~06/01/2002~
-~07939~^~320~^79.^0^^~1~^~AS~^^^^^^^^^^~06/01/2002~
-~07939~^~321~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2002~
-~07939~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2002~
-~07939~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2002~
-~07939~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2002~
-~07939~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2002~
-~07939~^~417~^3.^0^^~4~^~FLC~^^^^^^^^^^~01/01/2002~
-~07939~^~431~^0.^0^^~4~^~NR~^^^^^^^^^^~06/01/2002~
-~07939~^~432~^3.^0^^~4~^~FLC~^^^^^^^^^^~08/01/2002~
-~07939~^~435~^3.^0^^~4~^~NC~^^^^^^^^^^~08/01/2002~
-~07939~^~601~^66.^0^^~4~^~FLC~^^^^^^^^^^~01/01/2002~
-~07939~^~636~^1.^0^^~4~^~FLC~^^^^^^^^^^~03/01/2002~
-~07940~^~208~^228.^0^^~4~^~NC~^^^^^^^^^^~07/01/2005~
-~07940~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2002~
-~07940~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2002~
-~07940~^~268~^955.^0^^~4~^~NC~^^^^^^^^^^~07/01/2005~
-~07940~^~301~^122.^1^^~1~^~A~^^^^^^^^^^~01/01/2002~
-~07940~^~304~^27.^0^^~4~^~FLA~^^^^^^^^^^~07/01/2005~
-~07940~^~305~^173.^0^^~4~^~FLA~^^^^^^^^^^~07/01/2005~
-~07940~^~306~^313.^0^^~4~^~FLA~^^^^^^^^^^~07/01/2005~
-~07940~^~307~^3.^8^0.^~1~^~A~^^^^^^^^^^~01/01/2002~
-~07940~^~318~^0.^0^^~1~^~AS~^^^^^^^^^^~01/01/2002~
-~07940~^~319~^0.^0^^~4~^~NR~^^^^^^^^^^~03/01/2002~
-~07940~^~320~^0.^0^^~1~^~AS~^^^^^^^^^^~01/01/2002~
-~07940~^~321~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2002~
-~07940~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2002~
-~07940~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2002~
-~07940~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2002~
-~07940~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2002~
-~07940~^~417~^24.^0^^~4~^~FLA~^^^^^^^^^^~07/01/2005~
-~07940~^~431~^13.^0^^~4~^~FLA~^^^^^^^^^^~07/01/2005~
-~07940~^~432~^12.^0^^~4~^~FLA~^^^^^^^^^^~07/01/2005~
-~07940~^~435~^33.^0^^~4~^~NC~^^^^^^^^^^~07/01/2005~
-~07940~^~601~^44.^1^^~1~^~A~^^^^^^^^^^~01/01/2002~
-~07940~^~636~^0.^0^^~4~^~FLA~^^^^^^^^^^~07/01/2005~
-~07941~^~208~^350.^0^^~9~^~MC~^^^^^^^^^^~01/01/2002~
-~07941~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2002~
-~07941~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2002~
-~07941~^~268~^1466.^0^^~9~^~MC~^^^^^^^^^^~06/01/2002~
-~07941~^~301~^8.^0^^~4~^~BFZN~^~07072~^^^^^^^^^~06/01/2002~
-~07941~^~304~^17.^0^^~4~^~BFZN~^~07072~^^^^^^^^^~06/01/2002~
-~07941~^~305~^142.^0^^~4~^~BFZN~^~07072~^^^^^^^^^~06/01/2002~
-~07941~^~306~^378.^0^^~4~^~BFZN~^~07072~^^^^^^^^^~06/01/2002~
-~07941~^~307~^936.^1^^~1~^~A~^^^^^^^^^^~01/01/2002~
-~07941~^~318~^0.^1^^~1~^~A~^^^^^^^^^^~01/01/2002~
-~07941~^~319~^0.^0^^~4~^~NR~^^^^^^^^^^~03/01/2002~
-~07941~^~320~^0.^0^^~1~^~AS~^^^^^^^^^^~01/01/2002~
-~07941~^~321~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2002~
-~07941~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2002~
-~07941~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2002~
-~07941~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2002~
-~07941~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2002~
-~07941~^~417~^2.^0^^~4~^~BFZN~^~07072~^^^^^^^^^~06/01/2002~
-~07941~^~431~^0.^0^^~4~^~BFZN~^~07072~^^^^^^^^^~06/01/2002~
-~07941~^~432~^2.^0^^~4~^~BFZN~^~07072~^^^^^^^^^~06/01/2002~
-~07941~^~435~^2.^0^^~4~^~NC~^~07072~^^^^^^^^^~07/01/2003~
-~07941~^~601~^89.^1^^~1~^~A~^^^^^^^^^^~01/01/2002~
-~07941~^~636~^0.^0^^~4~^~BFZN~^~07072~^^^^^^^^^~06/01/2002~
-~07942~^~208~^327.^0^^~9~^~MC~^^^^^^^^^^~01/01/2002~
-~07942~^~268~^1366.^0^^~9~^~MC~^^^^^^^^^^~07/01/2002~
-~07942~^~301~^70.^0^^~4~^~BFZN~^~07055~^^^^^^^^^~07/01/2002~
-~07942~^~304~^13.^0^^~4~^~BFZN~^~07055~^^^^^^^^^~07/01/2002~
-~07942~^~305~^200.^0^^~4~^~BFZN~^~07055~^^^^^^^^^~07/01/2002~
-~07942~^~306~^138.^0^^~4~^~BFZN~^~07055~^^^^^^^^^~07/01/2002~
-~07942~^~307~^807.^1^^~1~^~A~^^^^^^^^^^~01/01/2002~
-~07942~^~318~^15000.^1^^~1~^~A~^^^^^^^^^^~01/01/2002~
-~07942~^~319~^991.^0^^~4~^~BFZN~^~07055~^^^^^^^^^~07/01/2002~
-~07942~^~320~^4505.^0^^~1~^~AS~^^^^^^^^^^~07/01/2002~
-~07942~^~321~^0.^1^^~1~^~A~^^^^^^^^^^~01/01/2002~
-~07942~^~417~^60.^0^^~4~^~BFZN~^~07055~^^^^^^^^^~07/01/2002~
-~07942~^~431~^0.^0^^~4~^~BFZN~^~07055~^^^^^^^^^~07/01/2002~
-~07942~^~432~^60.^0^^~4~^~BFZN~^~07055~^^^^^^^^^~07/01/2002~
-~07942~^~435~^60.^0^^~4~^~NC~^~07055~^^^^^^^^^~07/01/2003~
-~07942~^~601~^105.^1^^~1~^~A~^^^^^^^^^^~01/01/2002~
-~07943~^~208~^95.^0^^~9~^~MC~^^^^^^^^^^~01/01/2002~
-~07943~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2002~
-~07943~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2002~
-~07943~^~268~^398.^0^^~9~^~MC~^^^^^^^^^^~07/01/2002~
-~07943~^~307~^1160.^1^^~1~^~A~^^^^^^^^^^~01/01/2002~
-~07943~^~318~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2002~
-~07943~^~319~^0.^0^^~4~^~NR~^^^^^^^^^^~03/01/2002~
-~07943~^~320~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2002~
-~07943~^~321~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2002~
-~07943~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2002~
-~07943~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2002~
-~07943~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2002~
-~07943~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2002~
-~07943~^~601~^48.^1^^~1~^~A~^^^^^^^^^^~01/01/2002~
-~07944~^~208~^112.^0^^~9~^~MC~^^^^^^^^^^~01/01/2002~
-~07944~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2002~
-~07944~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2002~
-~07944~^~268~^468.^0^^~9~^~MC~^^^^^^^^^^~05/01/2005~
-~07944~^~301~^16.^1^^~1~^~A~^^^^^^^^^^~01/01/2002~
-~07944~^~304~^20.^0^^~4~^~BFZY~^~05196~^^^^^^^^^~07/01/2002~
-~07944~^~305~^158.^0^^~4~^~BFZY~^~05196~^^^^^^^^^~07/01/2002~
-~07944~^~306~^349.^1^^~1~^~A~^^^^^^^^^^~01/01/2002~
-~07944~^~307~^1200.^1^^~1~^~A~^^^^^^^^^^~01/01/2002~
-~07944~^~318~^8.^1^^~1~^~A~^^^^^^^^^^~01/01/2002~
-~07944~^~319~^2.^0^^~4~^~NR~^^^^^^^^^^~07/01/2002~
-~07944~^~320~^2.^0^^~4~^~NC~^^^^^^^^^^~07/01/2008~
-~07944~^~321~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2002~
-~07944~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2002~
-~07944~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2002~
-~07944~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2002~
-~07944~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2002~
-~07944~^~417~^4.^0^^~4~^~BFZY~^~05196~^^^^^^^^^~07/01/2002~
-~07944~^~431~^0.^0^^~4~^~BFZN~^~05196~^^^^^^^^^~07/01/2002~
-~07944~^~432~^4.^0^^~4~^~BFZY~^~05196~^^^^^^^^^~08/01/2002~
-~07944~^~435~^4.^0^^~4~^~NC~^~05196~^^^^^^^^^~07/01/2008~
-~07944~^~601~^55.^1^^~1~^~A~^^^^^^^^^^~01/01/2002~
-~07945~^~208~^322.^0^^~4~^~NC~^^^^^^^^^^~04/01/2011~
-~07945~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~07/01/2002~
-~07945~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~07/01/2002~
-~07945~^~268~^1346.^0^^~4~^~NC~^^^^^^^^^^~04/01/2011~
-~07945~^~301~^11.^12^0.^~1~^~A~^^^1^8.^15.^11^9.^11.^~2, 3~^~04/01/2011~
-~07945~^~304~^9.^12^0.^~1~^~A~^^^1^8.^10.^11^8.^9.^~2, 3~^~04/01/2011~
-~07945~^~305~^139.^12^1.^~1~^~A~^^^1^131.^152.^11^135.^143.^~2, 3~^~04/01/2011~
-~07945~^~306~^252.^12^33.^~1~^~A~^^^1^135.^401.^11^178.^326.^~2, 3~^~04/01/2011~
-~07945~^~307~^852.^12^22.^~1~^~A~^^^1^736.^967.^11^803.^901.^~2, 3~^~04/01/2011~
-~07945~^~318~^0.^0^^~4~^~NC~^^^^^^^^^^~08/01/2002~
-~07945~^~319~^0.^0^^~4~^~NR~^^^^^^^^^^~07/01/2002~
-~07945~^~320~^0.^0^^~4~^~NC~^^^^^^^^^^~08/01/2002~
-~07945~^~321~^0.^0^^~7~^~Z~^^^^^^^^^^~07/01/2002~
-~07945~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~07/01/2002~
-~07945~^~324~^38.^0^^~4~^~BFFN~^~07022~^^^^^^^^^~04/01/2011~
-~07945~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~07/01/2002~
-~07945~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~07/01/2002~
-~07945~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~07/01/2002~
-~07945~^~417~^10.^0^^~4~^~BFPN~^~07022~^^^^^^^^^~04/01/2011~
-~07945~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~07/01/2002~
-~07945~^~432~^10.^0^^~4~^~BFPN~^^^^^^^^^^~04/01/2011~
-~07945~^~435~^10.^0^^~4~^~NC~^^^^^^^^^^~04/01/2011~
-~07945~^~601~^58.^0^^~4~^~BFFN~^~07022~^^^^^^^^^~04/01/2011~
-~07949~^~208~^278.^0^^~4~^~NC~^^^^^^^^^^~07/01/2005~
-~07949~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~07/01/2002~
-~07949~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~07/01/2002~
-~07949~^~268~^1161.^0^^~4~^~NC~^^^^^^^^^^~07/01/2005~
-~07949~^~301~^99.^3^2.^~1~^~A~^^^1^93.^102.^2^85.^111.^~2, 3~^~07/01/2002~
-~07949~^~304~^15.^3^0.^~1~^~A~^^^1^14.^16.^2^12.^17.^~2, 3~^~07/01/2002~
-~07949~^~305~^211.^3^5.^~1~^~A~^^^1^201.^220.^2^187.^234.^~2, 3~^~07/01/2002~
-~07949~^~306~^141.^3^11.^~1~^~A~^^^1^124.^164.^2^89.^192.^~2, 3~^~07/01/2002~
-~07949~^~307~^1013.^3^38.^~1~^~A~^^^1^939.^1070.^2^846.^1179.^~2, 3~^~07/01/2002~
-~07949~^~318~^0.^0^^~4~^~BFNN~^~07007~^^^^^^^^^~07/01/2002~
-~07949~^~319~^0.^0^^~4~^~BFNN~^~07007~^^^^^^^^^~07/01/2002~
-~07949~^~320~^0.^0^^~4~^~BFNN~^~07007~^^^^^^^^^~07/01/2002~
-~07949~^~417~^6.^0^^~4~^~BFNN~^~07007~^^^^^^^^^~07/01/2002~
-~07949~^~431~^0.^0^^~4~^~BFNN~^~07007~^^^^^^^^^~07/01/2002~
-~07949~^~432~^6.^0^^~4~^~BFNN~^~07007~^^^^^^^^^~07/01/2002~
-~07949~^~435~^6.^0^^~4~^~NC~^~07007~^^^^^^^^^~07/01/2005~
-~07949~^~601~^73.^2^^~1~^~A~^^^1^72.^73.^1^^^^~07/01/2002~
-~07950~^~208~^290.^0^^~4~^~NC~^^^^^^^^^^~07/01/2005~
-~07950~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~07/01/2002~
-~07950~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~07/01/2002~
-~07950~^~268~^1212.^0^^~4~^~NC~^^^^^^^^^^~07/01/2005~
-~07950~^~301~^99.^2^^~1~^~A~^^^1^94.^103.^1^^^^~07/01/2002~
-~07950~^~304~^15.^2^^~1~^~A~^^^1^14.^15.^1^^^^~07/01/2002~
-~07950~^~305~^206.^2^^~1~^~A~^^^1^203.^208.^1^^^^~07/01/2002~
-~07950~^~306~^152.^2^^~1~^~A~^^^1^148.^156.^1^^^^~07/01/2002~
-~07950~^~307~^1090.^2^^~1~^~A~^^^1^1080.^1100.^1^^^^~07/01/2002~
-~07950~^~318~^0.^0^^~4~^~BFNN~^~07007~^^^^^^^^^~07/01/2002~
-~07950~^~319~^0.^0^^~4~^~BFNN~^~07007~^^^^^^^^^~07/01/2002~
-~07950~^~320~^0.^0^^~4~^~BFNN~^~07007~^^^^^^^^^~07/01/2002~
-~07950~^~417~^6.^0^^~4~^~BFNN~^~07007~^^^^^^^^^~07/01/2002~
-~07950~^~431~^0.^0^^~4~^~BFNN~^~07007~^^^^^^^^^~07/01/2002~
-~07950~^~432~^6.^0^^~4~^~BFNN~^~07007~^^^^^^^^^~07/01/2002~
-~07950~^~435~^6.^0^^~4~^~NC~^~07007~^^^^^^^^^~07/01/2005~
-~07950~^~601~^77.^2^^~1~^~A~^^^1^73.^80.^1^^^^~07/01/2002~
-~07951~^~208~^213.^0^^~4~^~NC~^^^^^^^^^^~03/01/2009~
-~07951~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2001~
-~07951~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2001~
-~07951~^~268~^893.^0^^~4~^~NC~^^^^^^^^^^~03/01/2009~
-~07951~^~301~^7.^4^^~6~^~JA~^^^2^5.^9.^^^^~2~^~03/01/2003~
-~07951~^~304~^13.^3^^~1~^~A~^^^1^12.^15.^^^^~2~^~10/01/2002~
-~07951~^~305~^76.^4^^~6~^~JA~^^^2^64.^99.^^^^~2~^~03/01/2003~
-~07951~^~306~^158.^4^^~6~^~JA~^^^2^93.^269.^^^^~2~^~03/01/2003~
-~07951~^~307~^482.^0^^~8~^~LC~^^^^^^^^^^~08/01/2012~
-~07951~^~318~^2086.^4^^~6~^~JA~^^^2^0.^4600.^^^^~2~^~03/01/2003~
-~07951~^~319~^626.^0^^~4~^~NR~^^^^^^^^^^~03/01/2003~
-~07951~^~320~^626.^0^^~4~^~NR~^^^^^^^^^^~03/01/2003~
-~07951~^~321~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2003~
-~07951~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2003~
-~07951~^~324~^13.^0^^~4~^~BFFN~^~07064~^^^^^^^^^~03/01/2009~
-~07951~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~09/01/2002~
-~07951~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~09/01/2002~
-~07951~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2003~
-~07951~^~417~^5.^0^^~4~^^^^^^^^^^^~03/01/2009~
-~07951~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2003~
-~07951~^~432~^5.^0^^~4~^^^^^^^^^^^~03/01/2009~
-~07951~^~435~^5.^0^^~4~^~NC~^^^^^^^^^^~03/01/2009~
-~07951~^~601~^49.^4^^~6~^~JA~^^^2^42.^63.^^^^~2~^~03/01/2003~
-~07952~^~208~^298.^2^^~1~^~A~^^^1^^^^^^^~03/01/2006~
-~07952~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2003~
-~07952~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2003~
-~07952~^~268~^1245.^0^^~1~^~A~^^^^^^^^^^~03/01/2006~
-~07952~^~301~^82.^2^^~1~^~A~^^^1^^^^^^^~03/01/2003~
-~07952~^~304~^15.^2^^~1~^~A~^^^1^^^^^^^~03/01/2003~
-~07952~^~305~^185.^2^^~1~^~A~^^^1^^^^^^^~03/01/2003~
-~07952~^~306~^152.^2^^~1~^~A~^^^1^^^^^^^~03/01/2003~
-~07952~^~307~^922.^2^^~1~^~A~^^^1^^^^^^^~03/01/2003~
-~07952~^~318~^75.^0^^~1~^~AS~^^^^^^^^^^~03/01/2003~
-~07952~^~319~^11.^2^^~1~^~A~^^^1^^^^^^^~03/01/2003~
-~07952~^~320~^13.^0^^~1~^~AS~^^^^^^^^^^~03/01/2003~
-~07952~^~321~^11.^2^^~1~^~A~^^^1^^^^^^^~03/01/2003~
-~07952~^~322~^11.^2^^~1~^~A~^^^1^^^^^^^~03/01/2003~
-~07952~^~334~^11.^2^^~1~^~A~^^^1^^^^^^^~03/01/2003~
-~07952~^~337~^11.^2^^~1~^~A~^^^1^^^^^^^~03/01/2003~
-~07952~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2006~
-~07952~^~417~^9.^2^^~1~^~A~^^^1^^^^^^^~04/01/2003~
-~07952~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2003~
-~07952~^~432~^9.^2^^~1~^~A~^^^^^^^^^^~03/01/2006~
-~07952~^~435~^9.^0^^~4~^~NC~^^^^^^^^^^~03/01/2006~
-~07952~^~601~^80.^2^^~1~^~A~^^^1^^^^^^^~03/01/2003~
-~07953~^~208~^438.^0^^~4~^~NC~^^^^^^^^^^~08/01/2015~
-~07953~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2003~
-~07953~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2003~
-~07953~^~268~^1832.^0^^~4~^~NC~^^^^^^^^^^~08/01/2015~
-~07953~^~301~^17.^14^0.^~1~^~A~^^^1^14.^27.^7^16.^18.^~2, 3~^~05/01/2014~
-~07953~^~304~^15.^14^0.^~1~^~A~^^^1^13.^19.^7^14.^15.^~2, 3~^~04/01/2013~
-~07953~^~305~^193.^14^6.^~1~^~A~^^^1^128.^260.^5^176.^208.^~2, 3~^~05/01/2014~
-~07953~^~306~^225.^14^4.^~1~^~A~^^^1^192.^277.^6^213.^237.^~2, 3~^~05/01/2014~
-~07953~^~307~^990.^14^16.^~1~^~A~^^^1^693.^1150.^5^948.^1030.^~2, 3~^~05/01/2014~
-~07953~^~318~^75.^0^^~1~^~AS~^^^^^^^^^^~05/01/2014~
-~07953~^~319~^22.^3^^~1~^~A~^^^1^21.^25.^^^^~2, 3~^~05/01/2014~
-~07953~^~320~^22.^0^^~1~^~AS~^^^^^^^^^^~05/01/2014~
-~07953~^~321~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2013~
-~07953~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2013~
-~07953~^~324~^41.^0^^~4~^~BFFN~^~10975~^^^^^^^^^~04/01/2013~
-~07953~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2013~
-~07953~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2013~
-~07953~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2009~
-~07953~^~417~^1.^0^^~4~^~BFPN~^~10975~^^^^^^^^^~04/01/2013~
-~07953~^~431~^0.^0^^~4~^~BFPN~^~10975~^^^^^^^^^~04/01/2013~
-~07953~^~432~^1.^0^^~4~^~BFPN~^~10975~^^^^^^^^^~04/01/2013~
-~07953~^~435~^1.^0^^~4~^~NC~^~10975~^^^^^^^^^~04/01/2013~
-~07953~^~601~^79.^9^1.^~1~^~A~^^^1^75.^87.^4^75.^81.^~2, 3~^~05/01/2014~
-~07954~^~208~^327.^0^^~4~^~NC~^^^^^^^^^^~11/01/2016~
-~07954~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2003~
-~07954~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2003~
-~07954~^~268~^1370.^0^^~4~^~NC~^^^^^^^^^^~11/01/2016~
-~07954~^~301~^29.^6^8.^~1~^~A~^^^1^8.^97.^3^2.^54.^~2, 3~^~11/01/2016~
-~07954~^~304~^18.^6^0.^~1~^~A~^^^1^11.^24.^1^8.^27.^~2, 3~^~11/01/2016~
-~07954~^~305~^126.^6^6.^~1~^~A~^^^1^106.^149.^3^104.^147.^~2, 3~^~11/01/2016~
-~07954~^~306~^285.^6^5.^~1~^~A~^^^1^214.^361.^1^234.^335.^~2, 3~^~11/01/2016~
-~07954~^~307~^904.^6^5.^~1~^~A~^^^1^784.^1030.^1^850.^957.^~2, 3~^~11/01/2016~
-~07954~^~318~^77.^0^^~1~^~AS~^^^^^^^^^^~11/01/2016~
-~07954~^~319~^23.^1^^~1~^~A~^^^^^^^^^^~03/01/2003~
-~07954~^~320~^23.^0^^~1~^~AS~^^^^^^^^^^~11/01/2016~
-~07954~^~321~^0.^0^^~7~^~Z~^^^^^^^^^^~11/01/2016~
-~07954~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~11/01/2016~
-~07954~^~324~^3.^0^^~4~^~NR~^^^^^^^^^^~04/01/2017~
-~07954~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~11/01/2016~
-~07954~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~10/01/2016~
-~07954~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~08/01/2007~
-~07954~^~417~^7.^0^^~4~^~BFPN~^^^^^^^^^^~10/01/2016~
-~07954~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2003~
-~07954~^~432~^7.^0^^~4~^~BFPN~^^^^^^^^^^~10/01/2016~
-~07954~^~435~^7.^0^^~4~^~NC~^^^^^^^^^^~10/01/2016~
-~07954~^~601~^60.^5^2.^~1~^~A~^^^1^53.^71.^3^52.^67.^~2, 3~^~11/01/2016~
-~07955~^~208~^155.^0^^~4~^~NC~^^^^^^^^^^~04/01/2003~
-~07955~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2003~
-~07955~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2003~
-~07955~^~268~^648.^0^^~4~^~NC~^^^^^^^^^^~04/01/2003~
-~07955~^~301~^19.^1^^~1~^~A~^^^^^^^^^^~03/01/2003~
-~07955~^~304~^19.^1^^~1~^~A~^^^^^^^^^^~03/01/2003~
-~07955~^~305~^177.^1^^~1~^~A~^^^^^^^^^^~03/01/2003~
-~07955~^~306~^262.^1^^~1~^~A~^^^^^^^^^^~03/01/2003~
-~07955~^~307~^593.^1^^~1~^~A~^^^^^^^^^^~03/01/2003~
-~07955~^~318~^75.^0^^~1~^~AS~^^^^^^^^^^~03/01/2003~
-~07955~^~319~^11.^1^^~1~^~A~^^^^^^^^^~1~^~03/01/2003~
-~07955~^~320~^13.^0^^~1~^~AS~^^^^^^^^^^~03/01/2003~
-~07955~^~321~^11.^1^^~1~^~A~^^^^^^^^^~1~^~03/01/2003~
-~07955~^~322~^11.^1^^~1~^~A~^^^^^^^^^~1~^~03/01/2003~
-~07955~^~334~^11.^1^^~1~^~A~^^^^^^^^^~1~^~03/01/2003~
-~07955~^~337~^11.^1^^~1~^~A~^^^^^^^^^~1~^~03/01/2003~
-~07955~^~338~^11.^1^^~1~^~A~^^^^^^^^^^~04/01/2003~
-~07955~^~417~^5.^1^^~1~^~A~^^^^^^^^^^~04/01/2003~
-~07955~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2003~
-~07955~^~432~^5.^1^^~1~^~A~^^^^^^^^^^~04/01/2003~
-~07955~^~435~^5.^0^^~4~^~NC~^^^^^^^^^^~07/01/2004~
-~07955~^~601~^75.^1^^~1~^~A~^^^^^^^^^^~03/01/2003~
-~07956~^~208~^332.^0^^~4~^~NC~^^^^^^^^^^~03/01/2009~
-~07956~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2003~
-~07956~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2003~
-~07956~^~268~^1387.^0^^~4~^~NC~^^^^^^^^^^~03/01/2009~
-~07956~^~301~^11.^1^^~1~^~A~^^^^^^^^^^~03/01/2003~
-~07956~^~304~^14.^1^^~1~^~A~^^^^^^^^^^~03/01/2003~
-~07956~^~305~^141.^1^^~1~^~A~^^^^^^^^^^~03/01/2003~
-~07956~^~306~^258.^1^^~1~^~A~^^^^^^^^^^~03/01/2003~
-~07956~^~307~^813.^0^^~8~^~LC~^^^^^^^^^^~08/01/2012~
-~07956~^~318~^81.^0^^~1~^~AS~^^^^^^^^^^~03/01/2003~
-~07956~^~319~^11.^1^^~1~^~A~^^^^^^^^^~1~^~03/01/2003~
-~07956~^~320~^13.^0^^~1~^~AS~^^^^^^^^^^~03/01/2003~
-~07956~^~321~^15.^1^^~1~^~A~^^^^^^^^^^~03/01/2003~
-~07956~^~322~^11.^1^^~1~^~A~^^^^^^^^^~1~^~03/01/2003~
-~07956~^~324~^18.^0^^~4~^~BFFN~^^^^^^^^^^~03/01/2009~
-~07956~^~334~^11.^1^^~1~^~A~^^^^^^^^^~1~^~03/01/2003~
-~07956~^~337~^11.^1^^~1~^~A~^^^^^^^^^~1~^~03/01/2003~
-~07956~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2009~
-~07956~^~417~^3.^1^^~1~^~A~^^^^^^^^^^~04/01/2003~
-~07956~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2003~
-~07956~^~432~^3.^1^^~1~^~A~^^^^^^^^^^~03/01/2009~
-~07956~^~435~^3.^0^^~4~^~NC~^^^^^^^^^^~03/01/2009~
-~07956~^~601~^82.^1^^~1~^~A~^^^^^^^^^^~03/01/2003~
-~07957~^~208~^342.^0^^~4~^~NC~^^^^^^^^^^~04/01/2003~
-~07957~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2003~
-~07957~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2003~
-~07957~^~268~^1430.^0^^~4~^~NC~^^^^^^^^^^~04/01/2003~
-~07957~^~301~^74.^1^^~1~^~A~^^^^^^^^^^~03/01/2003~
-~07957~^~304~^25.^1^^~1~^~A~^^^^^^^^^^~03/01/2003~
-~07957~^~305~^136.^1^^~1~^~A~^^^^^^^^^^~03/01/2003~
-~07957~^~306~^230.^1^^~1~^~A~^^^^^^^^^^~03/01/2003~
-~07957~^~307~^876.^1^^~1~^~A~^^^^^^^^^^~03/01/2003~
-~07957~^~318~^102.^0^^~1~^~AS~^^^^^^^^^^~03/01/2003~
-~07957~^~319~^19.^1^^~1~^~A~^^^^^^^^^^~03/01/2003~
-~07957~^~320~^21.^0^^~1~^~AS~^^^^^^^^^^~03/01/2003~
-~07957~^~321~^11.^1^^~1~^~A~^^^^^^^^^~1~^~03/01/2003~
-~07957~^~322~^11.^1^^~1~^~A~^^^^^^^^^~1~^~03/01/2003~
-~07957~^~334~^11.^1^^~1~^~A~^^^^^^^^^~1~^~03/01/2003~
-~07957~^~337~^11.^1^^~1~^~A~^^^^^^^^^~1~^~03/01/2003~
-~07957~^~338~^71.^1^^~1~^~A~^^^^^^^^^^~04/01/2003~
-~07957~^~417~^10.^1^^~1~^~A~^^^^^^^^^^~04/01/2003~
-~07957~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2003~
-~07957~^~432~^10.^1^^~1~^~A~^^^^^^^^^^~04/01/2003~
-~07957~^~435~^10.^0^^~4~^~NC~^^^^^^^^^^~07/01/2004~
-~07957~^~601~^72.^1^^~1~^~A~^^^^^^^^^^~03/01/2003~
-~07958~^~208~^196.^0^^~4~^~NC~^^^^^^^^^^~07/01/2004~
-~07958~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2003~
-~07958~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2003~
-~07958~^~268~^821.^0^^~4~^~NC~^^^^^^^^^^~07/01/2004~
-~07958~^~301~^22.^1^^~1~^~A~^^^^^^^^^^~03/01/2003~
-~07958~^~304~^21.^1^^~1~^~A~^^^^^^^^^^~03/01/2003~
-~07958~^~305~^202.^1^^~1~^~A~^^^^^^^^^^~03/01/2003~
-~07958~^~306~^298.^1^^~1~^~A~^^^^^^^^^^~03/01/2003~
-~07958~^~307~^665.^1^^~1~^~A~^^^^^^^^^^~03/01/2003~
-~07958~^~318~^75.^0^^~1~^~AS~^^^^^^^^^^~03/01/2003~
-~07958~^~319~^11.^1^^~1~^~A~^^^^^^^^^~1~^~03/01/2003~
-~07958~^~320~^13.^0^^~1~^~AS~^^^^^^^^^^~03/01/2003~
-~07958~^~321~^11.^1^^~1~^~A~^^^^^^^^^~1~^~03/01/2003~
-~07958~^~322~^11.^1^^~1~^~A~^^^^^^^^^~1~^~03/01/2003~
-~07958~^~334~^11.^1^^~1~^~A~^^^^^^^^^~1~^~03/01/2003~
-~07958~^~337~^11.^1^^~1~^~A~^^^^^^^^^~1~^~03/01/2003~
-~07958~^~338~^11.^1^^~1~^~A~^^^^^^^^^^~04/01/2003~
-~07958~^~417~^6.^1^^~1~^~A~^^^^^^^^^^~04/01/2003~
-~07958~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2003~
-~07958~^~432~^6.^1^^~1~^~A~^^^^^^^^^^~04/01/2003~
-~07958~^~435~^6.^0^^~4~^~NC~^^^^^^^^^^~06/01/2008~
-~07958~^~601~^92.^1^^~1~^~A~^^^^^^^^^^~03/01/2003~
-~07959~^~208~^272.^3^15.^~1~^~A~^^^1^^^^^^^~03/01/2006~
-~07959~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2003~
-~07959~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2003~
-~07959~^~268~^1138.^0^^~1~^~A~^^^^^^^^^^~03/01/2006~
-~07959~^~301~^92.^3^14.^~1~^~A~^^^1^^^^^^^~03/01/2003~
-~07959~^~304~^15.^3^1.^~1~^~A~^^^1^^^^^^^~03/01/2003~
-~07959~^~305~^227.^3^11.^~1~^~A~^^^1^^^^^^^~03/01/2003~
-~07959~^~306~^313.^3^59.^~1~^~A~^^^1^^^^^^^~03/01/2003~
-~07959~^~307~^1120.^3^20.^~1~^~A~^^^1^^^^^^^~03/01/2003~
-~07959~^~318~^75.^0^^~1~^~AS~^^^^^^^^^^~03/01/2003~
-~07959~^~319~^11.^3^0.^~1~^~A~^^^1^^^^^^^~03/01/2003~
-~07959~^~320~^13.^0^^~1~^~AS~^^^^^^^^^^~03/01/2003~
-~07959~^~321~^11.^3^0.^~1~^~A~^^^1^^^^^^^~03/01/2003~
-~07959~^~322~^11.^3^0.^~1~^~A~^^^1^^^^^^^~03/01/2003~
-~07959~^~334~^11.^3^0.^~1~^~A~^^^1^^^^^^^~03/01/2003~
-~07959~^~337~^11.^3^0.^~1~^~A~^^^1^^^^^^^~03/01/2003~
-~07959~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2006~
-~07959~^~417~^7.^3^0.^~1~^~A~^^^1^^^^^^^~04/01/2003~
-~07959~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2003~
-~07959~^~432~^7.^3^0.^~1~^~A~^^^1^^^^^^^~03/01/2006~
-~07959~^~435~^7.^0^^~4~^~NC~^^^^^^^^^^~03/01/2006~
-~07959~^~601~^83.^3^3.^~1~^~A~^^^1^^^^^^^~03/01/2003~
-~07960~^~208~^336.^1^^~4~^~NC~^^^^^^^^^^~01/01/2006~
-~07960~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2003~
-~07960~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2003~
-~07960~^~268~^1407.^0^^~4~^~NC~^^^^^^^^^^~01/01/2006~
-~07960~^~301~^196.^1^^~1~^~A~^^^^^^^^^^~03/01/2003~
-~07960~^~304~^16.^1^^~1~^~A~^^^^^^^^^^~03/01/2003~
-~07960~^~305~^223.^1^^~1~^~A~^^^^^^^^^^~03/01/2003~
-~07960~^~306~^162.^1^^~1~^~A~^^^^^^^^^^~03/01/2003~
-~07960~^~307~^1240.^1^^~1~^~A~^^^^^^^^^^~03/01/2003~
-~07960~^~318~^75.^0^^~1~^~AS~^^^^^^^^^^~03/01/2003~
-~07960~^~319~^11.^1^^~1~^~A~^^^^^^^^^~1~^~03/01/2003~
-~07960~^~320~^13.^0^^~1~^~AS~^^^^^^^^^^~03/01/2003~
-~07960~^~321~^11.^1^^~1~^~A~^^^^^^^^^~1~^~03/01/2003~
-~07960~^~322~^11.^1^^~1~^~A~^^^^^^^^^~1~^~03/01/2003~
-~07960~^~334~^11.^1^^~1~^~A~^^^^^^^^^~1~^~03/01/2003~
-~07960~^~337~^11.^1^^~1~^~A~^^^^^^^^^~1~^~03/01/2003~
-~07960~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2006~
-~07960~^~417~^13.^1^^~1~^~A~^^^^^^^^^^~04/01/2003~
-~07960~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2003~
-~07960~^~432~^13.^1^^~1~^~A~^^^^^^^^^^~01/01/2006~
-~07960~^~435~^13.^0^^~4~^~NC~^^^^^^^^^^~01/01/2006~
-~07960~^~601~^87.^1^^~1~^~A~^^^^^^^^^^~03/01/2003~
-~07961~^~208~^98.^0^^~4~^~NC~^^^^^^^^^^~05/01/2013~
-~07961~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2013~
-~07961~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2013~
-~07961~^~268~^410.^0^^~4~^~NC~^^^^^^^^^^~05/01/2013~
-~07961~^~301~^11.^11^0.^~1~^~A~^^^1^4.^19.^5^9.^11.^~1, 2, 3~^~05/01/2013~
-~07961~^~304~^26.^11^0.^~1~^~A~^^^1^22.^32.^4^25.^26.^~2, 3~^~05/01/2012~
-~07961~^~305~^257.^11^1.^~1~^~A~^^^1^241.^278.^5^253.^261.^~2, 3~^~05/01/2013~
-~07961~^~306~^360.^11^5.^~1~^~A~^^^1^310.^500.^6^344.^374.^~2, 3~^~05/01/2013~
-~07961~^~307~^1032.^11^9.^~1~^~A~^^^1^816.^1140.^5^1008.^1055.^~2, 3~^~05/01/2013~
-~07961~^~318~^6.^0^^~1~^~AS~^^^^^^^^^^~05/01/2013~
-~07961~^~319~^2.^6^0.^~1~^~A~^^^1^0.^5.^2^0.^3.^~1, 2, 3~^~05/01/2013~
-~07961~^~320~^2.^0^^~1~^~AS~^^^^^^^^^^~05/01/2013~
-~07961~^~321~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2013~
-~07961~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2013~
-~07961~^~324~^2.^0^^~4~^~BFFN~^~05064~^^^^^^^^^~06/01/2014~
-~07961~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2013~
-~07961~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2013~
-~07961~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2013~
-~07961~^~417~^7.^0^^~4~^~BFPN~^^^^^^^^^^~05/01/2013~
-~07961~^~431~^0.^0^^~4~^~BFPN~^^^^^^^^^^~05/01/2013~
-~07961~^~432~^7.^0^^~4~^~BFPN~^^^^^^^^^^~05/01/2013~
-~07961~^~435~^7.^0^^~4~^~NC~^^^^^^^^^^~05/01/2013~
-~07961~^~601~^51.^11^0.^~1~^~A~^^^1^42.^55.^6^49.^52.^~2, 3~^~05/01/2012~
-~07962~^~208~^277.^0^^~4~^~NC~^^^^^^^^^^~03/01/2013~
-~07962~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2013~
-~07962~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2013~
-~07962~^~268~^1157.^0^^~4~^~NC~^^^^^^^^^^~09/01/2015~
-~07962~^~301~^106.^18^6.^~1~^~A~^^^1^60.^143.^6^91.^120.^~2, 3~^~09/01/2015~
-~07962~^~304~^11.^18^0.^~1~^~A~^^^1^10.^13.^7^10.^11.^~2, 3~^~03/01/2013~
-~07962~^~305~^175.^18^6.^~1~^~A~^^^1^129.^234.^5^158.^192.^~2, 3~^~09/01/2015~
-~07962~^~306~^359.^18^27.^~1~^~A~^^^1^145.^511.^7^292.^424.^~2, 3~^~09/01/2015~
-~07962~^~307~^976.^18^27.^~1~^~A~^^^1^741.^1240.^5^907.^1044.^~2, 3~^~09/01/2015~
-~07962~^~318~^102.^0^^~1~^~AS~^^^^^^^^^^~03/01/2013~
-~07962~^~319~^31.^3^^~1~^~A~^^^1^21.^34.^^^^~2, 3~^~05/01/2013~
-~07962~^~320~^31.^0^^~1~^~AS~^^^^^^^^^^~05/01/2013~
-~07962~^~321~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2013~
-~07962~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2013~
-~07962~^~324~^27.^2^^~1~^~A~^^^1^25.^28.^^^^^~09/01/2015~
-~07962~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2013~
-~07962~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2013~
-~07962~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2013~
-~07962~^~417~^6.^2^^~1~^~A~^^^1^4.^8.^^^^~1~^~03/01/2013~
-~07962~^~431~^0.^0^^~4~^~NR~^^^^^^^^^^~03/01/2013~
-~07962~^~432~^6.^0^^~4~^~NR~^^^^^^^^^^~04/01/2014~
-~07962~^~435~^6.^0^^~4~^~NC~^^^^^^^^^^~04/01/2014~
-~07962~^~601~^78.^9^2.^~1~^~A~^^^1^68.^98.^2^68.^87.^~2, 3~^~03/01/2013~
-~07963~^~208~^298.^0^^~4~^~NC~^^^^^^^^^^~03/01/2013~
-~07963~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2013~
-~07963~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2013~
-~07963~^~268~^1245.^0^^~4~^~NC~^^^^^^^^^^~03/01/2013~
-~07963~^~301~^107.^18^5.^~1~^~A~^^^1^62.^145.^6^92.^120.^~2, 3~^~03/01/2013~
-~07963~^~304~^11.^18^0.^~1~^~A~^^^1^10.^17.^10^10.^12.^~2, 3~^~03/01/2013~
-~07963~^~305~^180.^18^6.^~1~^~A~^^^1^136.^257.^6^163.^196.^~2, 3~^~03/01/2013~
-~07963~^~306~^323.^18^28.^~1~^~A~^^^1^127.^477.^7^255.^389.^~2, 3~^~04/01/2013~
-~07963~^~307~^914.^18^38.^~1~^~A~^^^1^709.^1280.^6^819.^1009.^~2, 3~^~04/01/2013~
-~07963~^~318~^103.^0^^~1~^~AS~^^^^^^^^^^~03/01/2013~
-~07963~^~319~^31.^3^^~1~^~A~^^^1^24.^33.^^^^~2, 3~^~03/01/2013~
-~07963~^~320~^31.^0^^~1~^~AS~^^^^^^^^^^~03/01/2013~
-~07963~^~321~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2013~
-~07963~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2013~
-~07963~^~324~^26.^0^^~4~^~BFPN~^^^^^^^^^^~03/01/2013~
-~07963~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2013~
-~07963~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2013~
-~07963~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2013~
-~07963~^~417~^6.^2^^~1~^~A~^^^1^4.^8.^^^^~1~^~04/01/2013~
-~07963~^~431~^0.^0^^~4~^~BFPN~^~07022~^^^^^^^^^~03/01/2013~
-~07963~^~432~^9.^0^^~4~^~BFPN~^~07022~^^^^^^^^^~03/01/2013~
-~07963~^~435~^9.^0^^~4~^~NC~^~07022~^^^^^^^^^~03/01/2013~
-~07963~^~601~^84.^9^2.^~1~^~A~^^^1^77.^97.^2^73.^94.^~2, 3~^~03/01/2013~
-~07964~^~208~^302.^0^^~4~^~NC~^^^^^^^^^^~03/01/2013~
-~07964~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2013~
-~07964~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2013~
-~07964~^~268~^1262.^0^^~4~^~NC~^^^^^^^^^^~03/01/2013~
-~07964~^~301~^118.^18^6.^~1~^~A~^^^1^66.^154.^6^101.^134.^~2, 3~^~03/01/2013~
-~07964~^~304~^12.^18^0.^~1~^~A~^^^1^11.^16.^7^11.^12.^~2, 3~^~03/01/2013~
-~07964~^~305~^192.^18^7.^~1~^~A~^^^1^123.^236.^5^172.^212.^~2, 3~^~03/01/2013~
-~07964~^~306~^387.^18^20.^~1~^~A~^^^1^235.^580.^8^339.^434.^~2, 3~^~03/01/2013~
-~07964~^~307~^1079.^18^22.^~1~^~A~^^^1^816.^1340.^5^1022.^1135.^~2, 3~^~03/01/2013~
-~07964~^~318~^107.^0^^~1~^~AS~^^^^^^^^^^~03/01/2013~
-~07964~^~319~^32.^3^^~1~^~A~^^^1^22.^35.^^^^~2, 3~^~03/01/2013~
-~07964~^~320~^32.^0^^~1~^~AS~^^^^^^^^^^~03/01/2013~
-~07964~^~321~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2013~
-~07964~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2013~
-~07964~^~324~^27.^2^^~1~^~A~^^^1^24.^29.^^^^^~03/01/2013~
-~07964~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2013~
-~07964~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2013~
-~07964~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2013~
-~07964~^~417~^9.^0^^~4~^~BFPN~^~07022~^^^^^^^^^~03/01/2013~
-~07964~^~431~^0.^0^^~4~^~BFPN~^~07022~^^^^^^^^^~03/01/2013~
-~07964~^~432~^9.^0^^~4~^~BFPN~^~07022~^^^^^^^^^~03/01/2013~
-~07964~^~435~^9.^0^^~4~^~NC~^~07022~^^^^^^^^^~03/01/2013~
-~07964~^~601~^85.^9^1.^~1~^~A~^^^1^77.^98.^2^78.^91.^~2, 3~^~03/01/2013~
-~07965~^~208~^217.^0^^~4~^~NC~^^^^^^^^^^~04/01/2013~
-~07965~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2013~
-~07965~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2013~
-~07965~^~268~^907.^0^^~4~^~NC~^^^^^^^^^^~04/01/2013~
-~07965~^~301~^15.^4^2.^~1~^~A~^^^1^12.^21.^3^8.^21.^~2, 3~^~04/01/2013~
-~07965~^~304~^18.^4^0.^~1~^~A~^^^1^18.^18.^3^17.^18.^~2, 3~^~04/01/2013~
-~07965~^~305~^153.^4^1.^~1~^~A~^^^1^150.^157.^3^148.^157.^~2, 3~^~04/01/2013~
-~07965~^~306~^275.^4^0.^~1~^~A~^^^1^274.^277.^3^272.^277.^~2, 3~^~04/01/2013~
-~07965~^~307~^581.^4^14.^~1~^~A~^^^1^541.^610.^3^534.^626.^~2, 3~^~04/01/2013~
-~07965~^~318~^92.^0^^~4~^~BFPN~^~07063~^^^^^^^^^~04/01/2013~
-~07965~^~319~^27.^0^^~4~^~BFPN~^~07063~^^^^^^^^^~04/01/2013~
-~07965~^~320~^27.^0^^~4~^~BFPN~^~07063~^^^^^^^^^~04/01/2013~
-~07965~^~321~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2013~
-~07965~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2013~
-~07965~^~324~^16.^0^^~4~^~BFPN~^~10972~^^^^^^^^^~04/01/2013~
-~07965~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2013~
-~07965~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2013~
-~07965~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2013~
-~07965~^~417~^2.^0^^~4~^~BFPN~^~10972~^^^^^^^^^~04/01/2013~
-~07965~^~431~^0.^0^^~4~^~BFPN~^~10972~^^^^^^^^^~04/01/2013~
-~07965~^~432~^2.^0^^~4~^~BFPN~^~10972~^^^^^^^^^~04/01/2013~
-~07965~^~435~^2.^0^^~4~^~NC~^~10972~^^^^^^^^^~04/01/2013~
-~07965~^~601~^67.^4^0.^~1~^~A~^^^1^65.^69.^3^63.^69.^~2, 3~^~04/01/2013~
-~07966~^~208~^267.^0^^~4~^~NC~^^^^^^^^^^~04/01/2013~
-~07966~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2013~
-~07966~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2013~
-~07966~^~268~^1118.^0^^~4~^~NC~^^^^^^^^^^~04/01/2013~
-~07966~^~301~^19.^4^0.^~1~^~A~^^^1^18.^19.^3^18.^19.^~2, 3~^~04/01/2013~
-~07966~^~304~^22.^4^0.^~1~^~A~^^^1^21.^22.^3^20.^22.^~2, 3~^~04/01/2013~
-~07966~^~305~^185.^4^0.^~1~^~A~^^^1^183.^187.^3^181.^187.^~2, 3~^~04/01/2013~
-~07966~^~306~^328.^4^3.^~1~^~A~^^^1^321.^337.^3^317.^338.^~2, 3~^~04/01/2013~
-~07966~^~307~^698.^4^4.^~1~^~A~^^^1^685.^708.^3^682.^712.^~2, 3~^~04/01/2013~
-~07966~^~318~^93.^0^^~4~^~BFPN~^~07064~^^^^^^^^^~04/01/2013~
-~07966~^~319~^28.^0^^~4~^~BFPN~^~07064~^^^^^^^^^~04/01/2013~
-~07966~^~320~^28.^0^^~4~^~BFPN~^~07064~^^^^^^^^^~04/01/2013~
-~07966~^~321~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2013~
-~07966~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2013~
-~07966~^~324~^58.^0^^~4~^~BFPN~^~07064~^^^^^^^^^~04/01/2013~
-~07966~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2013~
-~07966~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2013~
-~07966~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2013~
-~07966~^~417~^1.^0^^~4~^~BFPN~^~10975~^^^^^^^^^~04/01/2013~
-~07966~^~431~^0.^0^^~4~^~BFPN~^~10975~^^^^^^^^^~04/01/2013~
-~07966~^~432~^1.^0^^~4~^~BFPN~^~10975~^^^^^^^^^~04/01/2013~
-~07966~^~435~^1.^0^^~4~^~NC~^~10975~^^^^^^^^^~04/01/2013~
-~07966~^~601~^82.^4^2.^~1~^~A~^^^1^77.^86.^3^75.^88.^~2, 3~^~04/01/2013~
-~07967~^~208~^392.^0^^~4~^~NC~^^^^^^^^^^~04/01/2013~
-~07967~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2013~
-~07967~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2013~
-~07967~^~268~^1640.^0^^~4~^~NC~^^^^^^^^^^~04/01/2013~
-~07967~^~301~^16.^14^0.^~1~^~A~^^^1^12.^22.^7^14.^17.^~2, 3~^~04/01/2013~
-~07967~^~304~^13.^14^0.^~1~^~A~^^^1^11.^17.^4^12.^13.^~2, 3~^~04/01/2013~
-~07967~^~305~^164.^14^10.^~1~^~A~^^^1^109.^233.^3^131.^196.^~2, 3~^~04/01/2013~
-~07967~^~306~^211.^14^3.^~1~^~A~^^^1^183.^252.^8^202.^220.^~2, 3~^~04/01/2013~
-~07967~^~307~^810.^14^18.^~1~^~A~^^^1^602.^1010.^4^758.^860.^~2, 3~^~04/01/2013~
-~07967~^~318~^69.^0^^~1~^~AS~^^^^^^^^^^~04/01/2013~
-~07967~^~319~^21.^3^^~1~^~A~^^^1^20.^22.^^^^~2, 3~^~04/01/2013~
-~07967~^~320~^21.^0^^~1~^~AS~^^^^^^^^^^~04/01/2013~
-~07967~^~321~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2013~
-~07967~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2013~
-~07967~^~324~^48.^2^^~1~^~A~^^^1^45.^49.^^^^^~04/01/2013~
-~07967~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2013~
-~07967~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2013~
-~07967~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2013~
-~07967~^~417~^0.^0^^~4~^~BFPN~^~10975~^^^^^^^^^~04/01/2013~
-~07967~^~431~^0.^0^^~4~^~BFPN~^~10975~^^^^^^^^^~04/01/2013~
-~07967~^~432~^0.^0^^~4~^~BFPN~^~10975~^^^^^^^^^~04/01/2013~
-~07967~^~435~^0.^0^^~4~^~NC~^~10975~^^^^^^^^^~04/01/2013~
-~07967~^~601~^74.^9^2.^~1~^~A~^^^1^68.^93.^2^62.^84.^~2, 3~^~04/01/2013~
-~07968~^~208~^337.^0^^~4~^~NC~^^^^^^^^^^~04/01/2013~
-~07968~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2013~
-~07968~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2013~
-~07968~^~268~^1410.^0^^~4~^~NC~^^^^^^^^^^~04/01/2013~
-~07968~^~301~^42.^15^5.^~1~^~A~^^^1^15.^91.^14^30.^54.^~2, 3~^~04/01/2013~
-~07968~^~304~^16.^15^0.^~1~^~A~^^^1^14.^20.^14^14.^16.^~2, 3~^~04/01/2013~
-~07968~^~305~^204.^15^10.^~1~^~A~^^^1^167.^281.^14^182.^225.^~2, 3~^~04/01/2013~
-~07968~^~306~^306.^15^36.^~1~^~A~^^^1^163.^566.^14^228.^383.^~2, 3~^~04/01/2013~
-~07968~^~307~^1062.^15^35.^~1~^~A~^^^1^891.^1290.^14^985.^1138.^~2, 3~^~04/01/2013~
-~07968~^~318~^32.^0^^~1~^~AS~^^^^^^^^^^~04/01/2013~
-~07968~^~319~^9.^5^1.^~1~^~A~^^^1^6.^12.^4^6.^12.^~2, 3~^~04/01/2013~
-~07968~^~320~^9.^0^^~1~^~AS~^^^^^^^^^^~04/01/2013~
-~07968~^~321~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2013~
-~07968~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2013~
-~07968~^~324~^35.^0^^~4~^~BFPN~^^^^^^^^^^~04/01/2013~
-~07968~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2013~
-~07968~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2013~
-~07968~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2013~
-~07968~^~417~^0.^0^^~4~^~BFPN~^~10975~^^^^^^^^^~04/01/2013~
-~07968~^~431~^0.^0^^~4~^~BFPN~^~10975~^^^^^^^^^~04/01/2013~
-~07968~^~432~^0.^0^^~4~^~BFPN~^~10975~^^^^^^^^^~04/01/2013~
-~07968~^~435~^0.^0^^~4~^~NC~^~10975~^^^^^^^^^~04/01/2013~
-~07968~^~601~^73.^11^2.^~1~^~A~^^^1^63.^86.^10^68.^78.^~2, 3~^~04/01/2013~
-~07969~^~208~^333.^0^^~4~^~NC~^^^^^^^^^^~04/01/2013~
-~07969~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2013~
-~07969~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2013~
-~07969~^~268~^1395.^0^^~4~^~NC~^^^^^^^^^^~04/01/2013~
-~07969~^~301~^40.^15^5.^~1~^~A~^^^1^15.^92.^14^27.^52.^~2, 3~^~04/01/2013~
-~07969~^~304~^15.^15^0.^~1~^~A~^^^1^14.^16.^14^14.^15.^~2, 3~^~04/01/2013~
-~07969~^~305~^199.^15^8.^~1~^~A~^^^1^167.^275.^14^180.^218.^~2, 3~^~04/01/2013~
-~07969~^~306~^304.^15^30.^~1~^~A~^^^1^176.^564.^14^239.^368.^~2, 3~^~04/01/2013~
-~07969~^~307~^1046.^15^37.^~1~^~A~^^^1^910.^1330.^14^966.^1125.^~2, 3~^~04/01/2013~
-~07969~^~318~^32.^0^^~1~^~AS~^^^^^^^^^^~04/01/2013~
-~07969~^~319~^10.^5^2.^~1~^~A~^^^1^4.^15.^4^3.^15.^~2, 3~^~04/01/2013~
-~07969~^~320~^10.^0^^~1~^~AS~^^^^^^^^^^~04/01/2013~
-~07969~^~321~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2013~
-~07969~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2013~
-~07969~^~324~^9.^0^^~4~^~BFPN~^~10975~^^^^^^^^^~04/01/2013~
-~07969~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2013~
-~07969~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2013~
-~07969~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2013~
-~07969~^~417~^0.^0^^~4~^~BFPN~^~10975~^^^^^^^^^~04/01/2013~
-~07969~^~431~^0.^0^^~4~^~BFPN~^~10975~^^^^^^^^^~04/01/2013~
-~07969~^~432~^0.^0^^~4~^~BFPN~^~10975~^^^^^^^^^~04/01/2013~
-~07969~^~435~^0.^0^^~4~^~NC~^~10975~^^^^^^^^^~04/01/2013~
-~07969~^~601~^73.^11^2.^~1~^~A~^^^1^63.^90.^10^67.^78.^~2, 3~^~04/01/2013~
-~07970~^~208~^325.^0^^~4~^~NC~^^^^^^^^^^~05/01/2014~
-~07970~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2013~
-~07970~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2013~
-~07970~^~268~^1359.^0^^~4~^~NC~^^^^^^^^^^~05/01/2014~
-~07970~^~301~^24.^15^1.^~1~^~A~^^^1^10.^121.^4^20.^27.^~2, 3~^~05/01/2014~
-~07970~^~304~^14.^15^0.^~1~^~A~^^^1^12.^15.^3^14.^14.^~2, 3~^~04/01/2013~
-~07970~^~305~^168.^15^1.^~1~^~A~^^^1^157.^257.^4^162.^172.^~2, 3~^~05/01/2014~
-~07970~^~306~^217.^15^8.^~1~^~A~^^^1^138.^533.^3^187.^245.^~2, 3~^~05/01/2014~
-~07970~^~307~^928.^15^18.^~1~^~A~^^^1^843.^1330.^4^877.^979.^~2, 3~^~05/01/2014~
-~07970~^~318~^27.^0^^~1~^~AS~^^^^^^^^^^~05/01/2014~
-~07970~^~319~^8.^5^^~1~^~A~^^^1^7.^18.^^^^~2, 3~^~05/01/2014~
-~07970~^~320~^8.^0^^~1~^~AS~^^^^^^^^^^~05/01/2014~
-~07970~^~321~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2013~
-~07970~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2013~
-~07970~^~324~^30.^2^^~1~^~A~^^^1^29.^37.^^^^^~05/01/2014~
-~07970~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2013~
-~07970~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2013~
-~07970~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2013~
-~07970~^~417~^1.^0^^~4~^~BFPN~^~10972~^^^^^^^^^~04/01/2013~
-~07970~^~431~^0.^0^^~4~^~BFPN~^~10972~^^^^^^^^^~04/01/2013~
-~07970~^~432~^1.^0^^~4~^~BFPN~^~10972~^^^^^^^^^~04/01/2013~
-~07970~^~435~^1.^0^^~4~^~NC~^~10972~^^^^^^^^^~04/01/2013~
-~07970~^~601~^61.^11^0.^~1~^~A~^^^1^57.^87.^3^58.^64.^~2, 3~^~05/01/2014~
-~07971~^~208~^281.^0^^~4~^~NC~^^^^^^^^^^~05/01/2014~
-~07971~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2013~
-~07971~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2013~
-~07971~^~268~^1174.^0^^~4~^~NC~^^^^^^^^^^~05/01/2014~
-~07971~^~301~^125.^18^6.^~1~^~A~^^^1^65.^167.^1^57.^192.^~2, 3~^~05/01/2014~
-~07971~^~304~^15.^18^0.^~1~^~A~^^^1^12.^17.^1^10.^19.^~2, 3~^~04/01/2013~
-~07971~^~305~^212.^18^9.^~1~^~A~^^^1^175.^263.^1^119.^305.^~2, 3~^~05/01/2014~
-~07971~^~306~^320.^18^46.^~1~^~A~^^^1^148.^520.^1^-266.^906.^~2, 3~^~05/01/2014~
-~07971~^~307~^1379.^18^111.^~1~^~A~^^^1^758.^1970.^1^28.^2730.^~2, 3~^~05/01/2014~
-~07971~^~318~^0.^0^^~1~^~AS~^^^^^^^^^^~04/01/2013~
-~07971~^~319~^0.^0^^~4~^~BFPN~^~07022~^^^^^^^^^~04/01/2013~
-~07971~^~320~^0.^0^^~1~^~AS~^^^^^^^^^^~04/01/2013~
-~07971~^~321~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2013~
-~07971~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2013~
-~07971~^~324~^34.^0^^~4~^~BFPN~^~07022~^^^^^^^^^~05/01/2013~
-~07971~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2013~
-~07971~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2013~
-~07971~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2013~
-~07971~^~417~^7.^6^0.^~1~^~A~^^^1^4.^11.^1^2.^10.^~1, 2, 3~^~04/01/2013~
-~07971~^~431~^0.^0^^~4~^~BFPN~^~07022~^^^^^^^^^~04/01/2013~
-~07971~^~432~^7.^6^0.^~1~^~A~^^^1^4.^11.^1^2.^10.^^~04/01/2013~
-~07971~^~435~^7.^0^^~4~^~NC~^~07022~^^^^^^^^^~04/01/2013~
-~07971~^~601~^92.^9^0.^~1~^~A~^^^1^87.^118.^4^90.^92.^~2, 3~^~05/01/2014~
-~07972~^~208~^286.^0^^~4~^~NC~^^^^^^^^^^~06/01/2014~
-~07972~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2015~
-~07972~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2015~
-~07972~^~268~^1196.^0^^~4~^~NC~^^^^^^^^^^~06/01/2014~
-~07972~^~301~^80.^15^8.^~1~^~A~^^^1^46.^136.^4^56.^104.^~2, 3~^~06/01/2014~
-~07972~^~304~^31.^15^1.^~1~^~A~^^^1^18.^58.^6^27.^33.^~2, 3~^~06/01/2014~
-~07972~^~305~^239.^15^8.^~1~^~A~^^^1^142.^288.^8^220.^258.^~2, 3~^~06/01/2014~
-~07972~^~306~^296.^15^4.^~1~^~A~^^^1^224.^379.^7^284.^307.^~2, 3~^~06/01/2014~
-~07972~^~307~^666.^15^18.^~1~^~A~^^^1^372.^785.^8^623.^708.^~2, 3~^~06/01/2014~
-~07972~^~318~^73.^0^^~1~^~AS~^^^^^^^^^^~06/01/2014~
-~07972~^~319~^22.^2^^~1~^~A~^^^1^21.^23.^^^^^~06/01/2014~
-~07972~^~320~^22.^0^^~1~^~AS~^^^^^^^^^^~06/01/2014~
-~07972~^~321~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2015~
-~07972~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2015~
-~07972~^~324~^2.^0^^~4~^~BFFN~^~23573~^^^^^^^^^~01/01/2015~
-~07972~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2015~
-~07972~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2015~
-~07972~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2015~
-~07972~^~417~^36.^3^^~1~^~A~^^^1^34.^38.^^^^~2, 3~^~06/01/2014~
-~07972~^~431~^0.^0^^~4~^~BFPN~^~23573~^^^^^^^^^~01/01/2015~
-~07972~^~432~^36.^3^^~1~^~A~^^^1^34.^38.^^^^^~06/01/2014~
-~07972~^~435~^36.^0^^~4~^~NC~^~23573~^^^^^^^^^~01/01/2015~
-~07972~^~601~^66.^6^4.^~1~^~A~^^^1^60.^79.^1^10.^120.^~2, 3~^~06/01/2014~
-~07973~^~208~^368.^0^^~4~^~NC~^^^^^^^^^^~07/01/2014~
-~07973~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~07/01/2014~
-~07973~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~07/01/2014~
-~07973~^~268~^1539.^0^^~4~^~NC~^^^^^^^^^^~07/01/2014~
-~07973~^~301~^163.^18^5.^~1~^~A~^^^1^80.^250.^5^148.^178.^~2, 3~^~07/01/2014~
-~07973~^~304~^30.^18^0.^~1~^~A~^^^1^24.^34.^7^27.^31.^~2, 3~^~07/01/2014~
-~07973~^~305~^416.^18^8.^~1~^~A~^^^1^288.^527.^7^395.^436.^~2, 3~^~07/01/2014~
-~07973~^~306~^666.^18^66.^~1~^~A~^^^1^297.^1820.^7^509.^823.^~2, 3~^~07/01/2014~
-~07973~^~307~^2021.^18^59.^~1~^~A~^^^1^1290.^2590.^8^1883.^2158.^~2, 3~^~07/01/2014~
-~07973~^~318~^63.^0^^~1~^~AS~^^^^^^^^^^~07/01/2014~
-~07973~^~319~^19.^3^^~1~^~A~^^^1^0.^42.^^^^~1, 2, 3~^~07/01/2014~
-~07973~^~320~^19.^0^^~1~^~AS~^^^^^^^^^^~07/01/2014~
-~07973~^~321~^0.^0^^~7~^~Z~^^^^^^^^^^~07/01/2014~
-~07973~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~07/01/2014~
-~07973~^~324~^50.^0^^~4~^~BFFN~^~05707~^^^^^^^^^~07/01/2014~
-~07973~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~07/01/2014~
-~07973~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~07/01/2014~
-~07973~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~07/01/2014~
-~07973~^~417~^15.^1^^~1~^~A~^^^^^^^^^^~07/01/2014~
-~07973~^~431~^0.^0^^~4~^~NR~^^^^^^^^^^~07/01/2014~
-~07973~^~432~^15.^1^^~1~^~A~^^^^^^^^^^~07/01/2014~
-~07973~^~435~^15.^0^^~4~^~NC~^^^^^^^^^^~07/01/2014~
-~07973~^~601~^153.^9^4.^~1~^~A~^^^1^136.^166.^4^140.^165.^~2, 3~^~07/01/2014~
-~07974~^~208~^253.^0^^~4~^~NC~^^^^^^^^^^~03/01/2015~
-~07974~^~262~^0.^0^^~4~^~FLC~^^^^^^^^^^~03/01/2015~
-~07974~^~263~^0.^0^^~4~^~FLC~^^^^^^^^^^~03/01/2015~
-~07974~^~268~^1057.^0^^~4~^~NC~^^^^^^^^^^~03/01/2015~
-~07974~^~301~^10.^0^^~4~^~FLC~^^^^^^^^^^~03/01/2015~
-~07974~^~304~^19.^0^^~4~^~FLC~^^^^^^^^^^~03/01/2015~
-~07974~^~305~^145.^0^^~4~^~FLC~^^^^^^^^^^~03/01/2015~
-~07974~^~306~^156.^0^^~4~^~FLC~^^^^^^^^^^~03/01/2015~
-~07974~^~307~^900.^0^^~8~^~LC~^^^^^^^^^^~03/01/2015~
-~07974~^~318~^25.^0^^~4~^~NC~^^^^^^^^^^~03/01/2015~
-~07974~^~319~^8.^0^^~4~^~FLC~^^^^^^^^^^~03/01/2015~
-~07974~^~320~^8.^0^^~4~^~FLC~^^^^^^^^^^~03/01/2015~
-~07974~^~321~^0.^0^^~4~^~FLC~^^^^^^^^^^~03/01/2015~
-~07974~^~322~^0.^0^^~4~^~FLC~^^^^^^^^^^~03/01/2015~
-~07974~^~324~^10.^0^^~4~^~FLC~^^^^^^^^^^~03/01/2015~
-~07974~^~334~^0.^0^^~4~^~FLC~^^^^^^^^^^~03/01/2015~
-~07974~^~337~^0.^0^^~4~^~FLC~^^^^^^^^^^~03/01/2015~
-~07974~^~338~^0.^0^^~4~^~FLC~^^^^^^^^^^~03/01/2015~
-~07974~^~417~^6.^0^^~4~^~FLC~^^^^^^^^^^~03/01/2015~
-~07974~^~431~^0.^0^^~4~^~FLC~^^^^^^^^^^~03/01/2015~
-~07974~^~432~^6.^0^^~4~^~FLC~^^^^^^^^^^~03/01/2015~
-~07974~^~435~^6.^0^^~4~^~NC~^^^^^^^^^^~03/01/2015~
-~07974~^~601~^100.^0^^~8~^~LC~^^^^^^^^^^~03/01/2015~
-~07976~^~208~^183.^0^^~4~^~NC~^^^^^^^^^^~03/01/2015~
-~07976~^~262~^0.^0^^~4~^~FLC~^^^^^^^^^^~10/01/2014~
-~07976~^~263~^0.^0^^~4~^~FLC~^^^^^^^^^^~10/01/2014~
-~07976~^~268~^765.^0^^~4~^~NC~^^^^^^^^^^~03/01/2015~
-~07976~^~301~^0.^0^^~8~^~LC~^^^^^^^^^^~10/01/2014~
-~07976~^~304~^43.^0^^~8~^~LC~^^^^^^^^^^~10/01/2014~
-~07976~^~305~^286.^0^^~8~^~LC~^^^^^^^^^^~10/01/2014~
-~07976~^~306~^1062.^0^^~4~^~FLC~^^^^^^^^^^~10/01/2014~
-~07976~^~307~^446.^0^^~8~^~LC~^^^^^^^^^^~10/01/2014~
-~07976~^~318~^0.^0^^~4~^~NR~^^^^^^^^^^~08/01/2015~
-~07976~^~319~^0.^0^^~4~^~NR~^^^^^^^^^^~08/01/2015~
-~07976~^~320~^0.^0^^~4~^~NR~^^^^^^^^^^~08/01/2015~
-~07976~^~321~^0.^0^^~4~^~NR~^^^^^^^^^^~08/01/2015~
-~07976~^~322~^0.^0^^~4~^~NR~^^^^^^^^^^~08/01/2015~
-~07976~^~324~^5.^0^^~4~^~FLC~^^^^^^^^^^~10/01/2014~
-~07976~^~334~^0.^0^^~4~^~FLC~^^^^^^^^^^~10/01/2014~
-~07976~^~337~^0.^0^^~4~^~FLC~^^^^^^^^^^~10/01/2014~
-~07976~^~338~^0.^0^^~4~^~NR~^^^^^^^^^^~08/01/2015~
-~07976~^~417~^71.^0^^~4~^~FLC~^^^^^^^^^^~10/01/2014~
-~07976~^~431~^0.^0^^~4~^~FLC~^^^^^^^^^^~10/01/2014~
-~07976~^~432~^71.^0^^~4~^~FLC~^^^^^^^^^^~10/01/2014~
-~07976~^~435~^71.^0^^~4~^~NC~^^^^^^^^^^~10/01/2014~
-~07976~^~601~^36.^0^^~8~^~LC~^^^^^^^^^^~10/01/2014~
-~07976~^~636~^0.^0^^~4~^~FLC~^^^^^^^^^^~10/01/2014~
-~07977~^~208~^141.^0^^~4~^~FLC~^^^^^^^^^^~04/01/2015~
-~07977~^~262~^0.^0^^~4~^~FLC~^^^^^^^^^^~04/01/2015~
-~07977~^~263~^0.^0^^~4~^~FLC~^^^^^^^^^^~04/01/2015~
-~07977~^~268~^591.^0^^~4~^~FLC~^^^^^^^^^^~04/01/2015~
-~07977~^~301~^5.^0^^~4~^~FLC~^^^^^^^^^^~04/01/2015~
-~07977~^~304~^20.^0^^~4~^~FLC~^^^^^^^^^^~04/01/2015~
-~07977~^~305~^286.^0^^~4~^~FLC~^^^^^^^^^^~04/01/2015~
-~07977~^~306~^330.^0^^~4~^~FLC~^^^^^^^^^^~04/01/2015~
-~07977~^~307~^1062.^0^^~4~^~FLC~^^^^^^^^^^~04/01/2015~
-~07977~^~318~^39.^0^^~4~^~FLC~^^^^^^^^^^~04/01/2015~
-~07977~^~319~^12.^0^^~4~^~FLC~^^^^^^^^^^~04/01/2015~
-~07977~^~320~^12.^0^^~4~^~FLC~^^^^^^^^^^~04/01/2015~
-~07977~^~321~^0.^0^^~4~^~FLC~^^^^^^^^^^~04/01/2015~
-~07977~^~322~^0.^0^^~4~^~FLC~^^^^^^^^^^~04/01/2015~
-~07977~^~324~^27.^0^^~4~^~FLC~^^^^^^^^^^~04/01/2015~
-~07977~^~334~^0.^0^^~4~^~FLC~^^^^^^^^^^~04/01/2015~
-~07977~^~337~^0.^0^^~4~^~FLC~^^^^^^^^^^~04/01/2015~
-~07977~^~338~^0.^0^^~4~^~FLC~^^^^^^^^^^~04/01/2015~
-~07977~^~417~^2.^0^^~4~^~FLC~^^^^^^^^^^~04/01/2015~
-~07977~^~431~^0.^0^^~4~^~FLC~^^^^^^^^^^~04/01/2015~
-~07977~^~432~^2.^0^^~4~^~FLC~^^^^^^^^^^~04/01/2015~
-~07977~^~435~^2.^0^^~4~^~NC~^^^^^^^^^^~04/01/2015~
-~07977~^~601~^50.^0^^~4~^~FLC~^^^^^^^^^^~04/01/2015~
-~07977~^~636~^0.^0^^~4~^~FLC~^^^^^^^^^^~04/01/2015~
-~07978~^~208~^271.^0^^~4~^~NC~^^^^^^^^^^~04/01/2015~
-~07978~^~262~^0.^0^^~4~^~FLC~^^^^^^^^^^~04/01/2015~
-~07978~^~263~^0.^0^^~4~^~FLC~^^^^^^^^^^~04/01/2015~
-~07978~^~268~^1135.^0^^~4~^~NC~^^^^^^^^^^~04/01/2015~
-~07978~^~301~^0.^0^^~8~^~LC~^^^^^^^^^^~04/01/2015~
-~07978~^~304~^11.^0^^~4~^~FLC~^^^^^^^^^^~04/01/2015~
-~07978~^~305~^110.^0^^~4~^~FLC~^^^^^^^^^^~04/01/2015~
-~07978~^~306~^160.^0^^~4~^~FLC~^^^^^^^^^^~04/01/2015~
-~07978~^~307~^294.^0^^~8~^~LC~^^^^^^^^^^~04/01/2015~
-~07978~^~318~^29.^0^^~4~^~NC~^^^^^^^^^^~04/01/2015~
-~07978~^~319~^9.^0^^~4~^~FLC~^^^^^^^^^^~04/01/2015~
-~07978~^~320~^9.^0^^~4~^~NC~^^^^^^^^^^~04/01/2015~
-~07978~^~321~^0.^0^^~4~^~FLC~^^^^^^^^^^~04/01/2015~
-~07978~^~322~^0.^0^^~4~^~FLC~^^^^^^^^^^~04/01/2015~
-~07978~^~324~^30.^0^^~4~^~FLC~^^^^^^^^^^~04/01/2015~
-~07978~^~334~^0.^0^^~4~^~FLC~^^^^^^^^^^~04/01/2015~
-~07978~^~337~^0.^0^^~4~^~FLC~^^^^^^^^^^~04/01/2015~
-~07978~^~338~^0.^0^^~4~^~FLC~^^^^^^^^^^~04/01/2015~
-~07978~^~417~^2.^0^^~4~^~FLC~^^^^^^^^^^~04/01/2015~
-~07978~^~431~^0.^0^^~4~^~FLC~^^^^^^^^^^~04/01/2015~
-~07978~^~432~^2.^0^^~4~^~FLC~^^^^^^^^^^~04/01/2015~
-~07978~^~435~^2.^0^^~4~^~NC~^^^^^^^^^^~04/01/2015~
-~07978~^~601~^59.^0^^~8~^~LC~^^^^^^^^^^~04/01/2015~
-~07979~^~208~^284.^0^^~4~^~NC~^^^^^^^^^^~08/01/2015~
-~07979~^~262~^0.^0^^~4~^~FLC~^^^^^^^^^^~08/01/2015~
-~07979~^~263~^0.^0^^~4~^~FLC~^^^^^^^^^^~08/01/2015~
-~07979~^~268~^1190.^0^^~4~^~NC~^^^^^^^^^^~08/01/2015~
-~07979~^~301~^24.^0^^~4~^~FLC~^^^^^^^^^^~08/01/2015~
-~07979~^~304~^17.^0^^~4~^~FLC~^^^^^^^^^^~08/01/2015~
-~07979~^~305~^147.^0^^~4~^~FLC~^^^^^^^^^^~08/01/2015~
-~07979~^~306~^240.^0^^~4~^~FLC~^^^^^^^^^^~08/01/2015~
-~07979~^~307~^679.^0^^~4~^~FLC~^^^^^^^^^^~08/01/2015~
-~07979~^~318~^18.^0^^~4~^~NC~^^^^^^^^^^~08/01/2015~
-~07979~^~319~^6.^0^^~4~^~FLC~^^^^^^^^^^~08/01/2015~
-~07979~^~320~^6.^0^^~4~^~NC~^^^^^^^^^^~08/01/2015~
-~07979~^~321~^0.^0^^~4~^~FLC~^^^^^^^^^^~08/01/2015~
-~07979~^~322~^0.^0^^~4~^~FLC~^^^^^^^^^^~08/01/2015~
-~07979~^~324~^3.^0^^~4~^~FLC~^^^^^^^^^^~08/01/2015~
-~07979~^~334~^0.^0^^~4~^~FLC~^^^^^^^^^^~08/01/2015~
-~07979~^~337~^0.^0^^~4~^~FLC~^^^^^^^^^^~08/01/2015~
-~07979~^~338~^5.^0^^~4~^~FLC~^^^^^^^^^^~08/01/2015~
-~07979~^~417~^16.^0^^~4~^~NR~^^^^^^^^^^~08/01/2015~
-~07979~^~431~^0.^0^^~4~^~NR~^^^^^^^^^^~08/01/2015~
-~07979~^~432~^16.^0^^~4~^~FLC~^^^^^^^^^^~08/01/2015~
-~07979~^~435~^16.^0^^~4~^~NC~^^^^^^^^^^~08/01/2015~
-~07979~^~601~^70.^0^^~4~^~FLC~^^^^^^^^^^~08/01/2015~
-~07979~^~636~^0.^0^^~4~^~FLC~^^^^^^^^^^~08/01/2015~
-~08002~^~208~^389.^0^^~9~^~MC~^^^^^^^^^^~02/01/2013~
-~08002~^~262~^0.^0^^~4~^~FLM~^^^^^^^^^^~01/01/2003~
-~08002~^~263~^0.^0^^~4~^~FLM~^^^^^^^^^^~01/01/2003~
-~08002~^~268~^1628.^0^^~9~^~MC~^^^^^^^^^^~02/01/2013~
-~08002~^~301~^35.^0^^~9~^~MC~^^^^^^^^^^~02/01/2013~
-~08002~^~304~^99.^0^^~9~^~MC~^^^^^^^^^^~02/01/2013~
-~08002~^~305~^309.^0^^~9~^~MC~^^^^^^^^^^~02/01/2013~
-~08002~^~306~^267.^0^^~9~^~MC~^^^^^^^^^^~02/01/2013~
-~08002~^~307~^592.^0^^~9~^~MC~^^^^^^^^^^~02/01/2013~
-~08002~^~318~^2500.^0^^~9~^~MC~^^~Y~^^^^^^^^~02/01/2013~
-~08002~^~319~^739.^0^^~4~^~NR~^^^^^^^^^^~02/01/2013~
-~08002~^~320~^741.^0^^~4~^~NC~^^^^^^^^^^~02/01/2013~
-~08002~^~321~^16.^0^^~4~^~FLM~^^^^^^^^^^~02/01/2013~
-~08002~^~322~^11.^0^^~4~^~FLM~^^^^^^^^^^~02/01/2013~
-~08002~^~324~^267.^0^^~9~^~MC~^^~Y~^^^^^^^^~02/01/2013~
-~08002~^~334~^0.^0^^~4~^~FLM~^^^^^^^^^^~03/01/2011~
-~08002~^~337~^0.^0^^~4~^~FLM~^^^^^^^^^^~03/01/2011~
-~08002~^~338~^334.^0^^~4~^~FLM~^^^^^^^^^^~02/01/2013~
-~08002~^~417~^667.^0^^~9~^~MC~^^~Y~^^^^^^^^~02/01/2013~
-~08002~^~431~^648.^0^^~4~^~NR~^^~Y~^^^^^^^^~02/01/2013~
-~08002~^~432~^19.^0^^~4~^~CAZN~^^^^^^^^^^~01/01/2003~
-~08002~^~435~^1120.^0^^~4~^~NC~^^^^^^^^^^~02/01/2013~
-~08002~^~601~^0.^0^^~9~^~MC~^^^^^^^^^^~01/01/2003~
-~08010~^~208~^398.^0^^~9~^~MC~^^^^^^^^^^~01/01/2011~
-~08010~^~262~^0.^0^^~4~^~FLM~^^^^^^^^^^~01/01/2011~
-~08010~^~263~^0.^0^^~4~^~FLM~^^^^^^^^^^~01/01/2011~
-~08010~^~268~^1665.^0^^~9~^~MC~^^^^^^^^^^~01/01/2011~
-~08010~^~301~^11.^0^^~9~^~MC~^^^^^^^^^^~03/01/2007~
-~08010~^~304~^55.^0^^~9~^~MC~^^^^^^^^^^~01/01/2011~
-~08010~^~305~^167.^0^^~9~^~MC~^^^^^^^^^^~01/01/2011~
-~08010~^~306~^186.^0^^~9~^~MC~^^^^^^^^^^~01/01/2011~
-~08010~^~307~^754.^0^^~9~^~MC~^^^^^^^^^^~01/01/2011~
-~08010~^~318~^148.^0^^~9~^~MC~^^^^^^^^^^~01/01/2011~
-~08010~^~319~^0.^0^^~4~^~FLM~^^^^^^^^^^~03/01/2007~
-~08010~^~320~^7.^0^^~4~^~NC~^^^^^^^^^^~01/01/2011~
-~08010~^~321~^67.^0^^~4~^~BNA~^~20016~^^^^^^^^^~01/01/2011~
-~08010~^~322~^44.^0^^~4~^~BNA~^~20016~^^^^^^^^^~01/01/2011~
-~08010~^~324~^0.^0^^~4~^~FLM~^^^^^^^^^^~01/01/2011~
-~08010~^~334~^0.^0^^~4~^~BNA~^~20016~^^^^^^^^^~03/01/2007~
-~08010~^~337~^0.^0^^~4~^~FLM~^^^^^^^^^^~03/01/2007~
-~08010~^~338~^645.^0^^~4~^~FLM~^^^^^^^^^^~01/01/2011~
-~08010~^~417~^1555.^0^^~9~^~MC~^^~Y~^^^^^^^^~03/01/2007~
-~08010~^~431~^1536.^0^^~4~^~NR~^^~Y~^^^^^^^^~01/01/2011~
-~08010~^~432~^19.^0^^~4~^~CAZN~^^^^^^^^^^~01/01/2011~
-~08010~^~435~^2630.^0^^~4~^~NC~^^^^^^^^^^~01/01/2011~
-~08010~^~601~^0.^0^^~9~^~MC~^^^^^^^^^^~03/01/2007~
-~08011~^~208~^397.^0^^~9~^~MC~^^^^^^^^^^~01/01/2011~
-~08011~^~262~^0.^0^^~4~^~FLM~^^^^^^^^^^~12/01/2002~
-~08011~^~263~^0.^0^^~4~^~FLM~^^^^^^^^^^~12/01/2002~
-~08011~^~268~^1662.^0^^~9~^~MC~^^^^^^^^^^~02/01/2014~
-~08011~^~301~^11.^0^^~9~^~MC~^^^^^^^^^^~01/01/2011~
-~08011~^~304~^55.^0^^~9~^~MC~^^^^^^^^^^~01/01/2011~
-~08011~^~305~^168.^0^^~9~^~MC~^^^^^^^^^^~01/01/2011~
-~08011~^~306~^187.^0^^~9~^~MC~^^^^^^^^^^~01/01/2011~
-~08011~^~307~^725.^0^^~9~^~MC~^^^^^^^^^^~01/01/2011~
-~08011~^~318~^149.^0^^~9~^~MC~^^^^^^^^^^~01/01/2011~
-~08011~^~319~^0.^0^^~4~^~BNA~^~09316~^^^^^^^^^~01/01/2011~
-~08011~^~320~^7.^0^^~4~^~NC~^^^^^^^^^^~03/01/2007~
-~08011~^~321~^89.^0^^~4~^~BNA~^~09316~^^^^^^^^^~01/01/2011~
-~08011~^~322~^0.^0^^~4~^~BNA~^~09316~^^^^^^^^^~01/01/2011~
-~08011~^~324~^0.^0^^~4~^~FLM~^^^^^^^^^^~02/01/2014~
-~08011~^~334~^0.^0^^~4~^~BNA~^~09316~^^^^^^^^^~03/01/2003~
-~08011~^~337~^0.^0^^~4~^~FLM~^^^^^^^^^^~03/01/2003~
-~08011~^~338~^538.^0^^~4~^~FLM~^^^^^^^^^^~02/01/2014~
-~08011~^~417~^1630.^0^^~9~^~MC~^^~Y~^^^^^^^^~02/01/2014~
-~08011~^~431~^1611.^0^^~4~^~NR~^^~Y~^^^^^^^^~02/01/2014~
-~08011~^~432~^19.^0^^~4~^~CAZN~^^^^^^^^^^~03/01/2007~
-~08011~^~435~^2757.^0^^~4~^~NC~^^^^^^^^^^~02/01/2014~
-~08011~^~601~^0.^0^^~9~^~MC~^^^^^^^^^^~03/01/2007~
-~08012~^~208~^417.^0^^~9~^~MC~^^^^^^^^^^~01/01/2011~
-~08012~^~262~^0.^0^^~4~^~FLM~^^^^^^^^^^~12/01/2002~
-~08012~^~263~^0.^0^^~4~^~FLM~^^^^^^^^^^~12/01/2002~
-~08012~^~268~^1745.^0^^~9~^~MC~^^^^^^^^^^~01/01/2011~
-~08012~^~301~^9.^0^^~9~^~MC~^^^^^^^^^^~03/01/2007~
-~08012~^~304~^69.^0^^~9~^~MC~^^^^^^^^^^~01/01/2011~
-~08012~^~305~^194.^0^^~9~^~MC~^^^^^^^^^^~01/01/2011~
-~08012~^~306~^236.^0^^~9~^~MC~^^^^^^^^^^~01/01/2011~
-~08012~^~307~^742.^0^^~9~^~MC~^^^^^^^^^^~03/01/2007~
-~08012~^~318~^150.^0^^~9~^~MC~^^^^^^^^^^~01/01/2011~
-~08012~^~319~^0.^0^^~4~^~FLM~^^^^^^^^^^~01/01/2011~
-~08012~^~320~^8.^0^^~4~^~NC~^^^^^^^^^^~03/01/2007~
-~08012~^~321~^68.^0^^~4~^~BNA~^~20016~^^^^^^^^^~03/01/2007~
-~08012~^~322~^44.^0^^~4~^~BNA~^~20016~^^^^^^^^^~01/01/2011~
-~08012~^~324~^0.^0^^~4~^~FLM~^^^^^^^^^^~01/01/2011~
-~08012~^~334~^0.^0^^~4~^~BNA~^~20016~^^^^^^^^^~01/01/2011~
-~08012~^~337~^0.^0^^~4~^~FLM~^^^^^^^^^^~01/01/2011~
-~08012~^~338~^850.^0^^~4~^~FLM~^^^^^^^^^^~01/01/2011~
-~08012~^~417~^1554.^0^^~9~^~MC~^^~Y~^^^^^^^^~03/01/2007~
-~08012~^~431~^1535.^0^^~4~^~NR~^^~Y~^^^^^^^^~03/01/2007~
-~08012~^~432~^19.^0^^~4~^~CAZN~^^^^^^^^^^~03/01/2007~
-~08012~^~435~^2629.^0^^~4~^~NC~^^^^^^^^^^~05/01/2009~
-~08012~^~601~^0.^0^^~9~^~MC~^^^^^^^^^^~03/01/2007~
-~08013~^~208~^372.^0^^~9~^~MC~^^^^^^^^^^~01/01/2017~
-~08013~^~262~^0.^0^^~4~^~FLM~^^^^^^^^^^~04/01/2007~
-~08013~^~263~^0.^0^^~4~^~FLM~^^^^^^^^^^~04/01/2007~
-~08013~^~268~^1556.^0^^~9~^~MC~^^^^^^^^^^~01/01/2017~
-~08013~^~301~^357.^0^^~9~^~MC~^^^^^^^^^^~01/01/2017~
-~08013~^~304~^114.^0^^~9~^~MC~^^^^^^^^^^~01/01/2017~
-~08013~^~305~^357.^0^^~9~^~MC~^^^^^^^^^^~01/01/2017~
-~08013~^~306~^633.^0^^~9~^~MC~^^^^^^^^^^~01/01/2017~
-~08013~^~307~^497.^0^^~9~^~MC~^^^^^^^^^^~01/01/2017~
-~08013~^~318~^3299.^0^^~4~^~NC~^^^^^^^^^^~04/01/2017~
-~08013~^~319~^990.^1^^~1~^~A~^^^^^^^^^^~04/01/2017~
-~08013~^~320~^990.^0^^~4~^~NC~^^^^^^^^^^~04/01/2017~
-~08013~^~321~^0.^0^^~4~^~FLM~^^^^^^^^^^~03/01/2006~
-~08013~^~322~^0.^0^^~4~^~FLM~^^^^^^^^^^~03/01/2006~
-~08013~^~324~^143.^0^^~9~^~MC~^^^^^^^^^^~01/01/2017~
-~08013~^~334~^0.^0^^~4~^~FLM~^^^^^^^^^^~03/01/2006~
-~08013~^~337~^0.^0^^~4~^~FLM~^^^^^^^^^^~03/01/2006~
-~08013~^~338~^159.^0^^~4~^~FLM~^^^^^^^^^^~01/01/2017~
-~08013~^~417~^714.^0^^~9~^~MC~^^^^^^^^^^~04/01/2017~
-~08013~^~431~^692.^0^^~4~^~NR~^^~Y~^^^^^^^^~04/01/2017~
-~08013~^~432~^22.^0^^~4~^~FLM~^^^^^^^^^^~01/01/2017~
-~08013~^~435~^1198.^0^^~4~^~NC~^^^^^^^^^^~04/01/2017~
-~08013~^~601~^0.^0^^~9~^~MC~^^^^^^^^^^~01/01/2017~
-~08015~^~208~^397.^0^^~9~^~MC~^^^^^^^^^^~04/01/2011~
-~08015~^~262~^2.^0^^~4~^~FLM~^^^^^^^^^^~02/01/2013~
-~08015~^~263~^75.^0^^~4~^~FLM~^^^^^^^^^^~02/01/2013~
-~08015~^~268~^1661.^0^^~9~^~MC~^^^^^^^^^^~04/01/2011~
-~08015~^~301~^22.^0^^~9~^~MC~^^^^^^^^^^~02/01/2013~
-~08015~^~304~^31.^0^^~9~^~MC~^^^^^^^^^^~02/01/2013~
-~08015~^~305~^95.^0^^~9~^~MC~^^^^^^^^^^~02/01/2013~
-~08015~^~306~^193.^0^^~9~^~MC~^^^^^^^^^^~02/01/2013~
-~08015~^~307~^594.^0^^~9~^~MC~^^^^^^^^^^~02/01/2013~
-~08015~^~318~^2586.^0^^~9~^~MC~^^~Y~^^^^^^^^~02/01/2013~
-~08015~^~319~^776.^0^^~4~^~NR~^^^^^^^^^^~02/01/2013~
-~08015~^~320~^776.^0^^~4~^~NC~^^^^^^^^^^~02/01/2013~
-~08015~^~321~^0.^0^^~4~^~FLM~^^^^^^^^^^~04/01/2011~
-~08015~^~322~^0.^0^^~4~^~FLM~^^^^^^^^^^~04/01/2011~
-~08015~^~324~^276.^0^^~9~^~MC~^^~Y~^^^^^^^^~02/01/2013~
-~08015~^~334~^0.^0^^~4~^~FLM~^^^^^^^^^^~04/01/2011~
-~08015~^~337~^0.^0^^~4~^~FLM~^^^^^^^^^^~04/01/2011~
-~08015~^~338~^1.^0^^~4~^~FLM~^^^^^^^^^^~04/01/2011~
-~08015~^~417~^345.^0^^~9~^~MC~^^~Y~^^^^^^^^~02/01/2013~
-~08015~^~431~^341.^0^^~4~^~NR~^^~Y~^^^^^^^^~02/01/2013~
-~08015~^~432~^4.^0^^~4~^~CAZN~^^^^^^^^^^~03/01/2011~
-~08015~^~435~^583.^0^^~4~^~NC~^^^^^^^^^^~02/01/2013~
-~08015~^~601~^0.^0^^~9~^~MC~^^^^^^^^^^~01/01/2003~
-~08018~^~208~^331.^0^^~9~^~MC~^^^^^^^^^^~01/01/2011~
-~08018~^~262~^0.^0^^~4~^~FLM~^^^^^^^^^^~03/01/2002~
-~08018~^~263~^0.^0^^~4~^~FLM~^^^^^^^^^^~03/01/2002~
-~08018~^~268~^1385.^0^^~9~^~MC~^^^^^^^^^^~01/01/2011~
-~08018~^~301~^71.^0^^~9~^~MC~^^~Y~^^^^^^^^~06/01/2007~
-~08018~^~304~^61.^0^^~9~^~MC~^^^^^^^^^^~03/01/2007~
-~08018~^~305~^186.^0^^~9~^~MC~^^^^^^^^^^~01/01/2011~
-~08018~^~306~^239.^0^^~9~^~MC~^^^^^^^^^^~07/01/2012~
-~08018~^~307~^759.^0^^~9~^~MC~^^^^^^^^^^~07/01/2012~
-~08018~^~318~^154.^0^^~9~^~MC~^^^^^^^^^^~01/01/2011~
-~08018~^~319~^0.^0^^~4~^~BNA~^~20422~^^^^^^^^^~01/01/2011~
-~08018~^~320~^8.^0^^~4~^~NC~^^^^^^^^^^~03/01/2007~
-~08018~^~321~^70.^0^^~4~^~BNA~^~20422~^^^^^^^^^~03/01/2007~
-~08018~^~322~^46.^0^^~4~^~BNA~^~20422~^^^^^^^^^~03/01/2007~
-~08018~^~324~^0.^0^^~4~^~FLM~^^^^^^^^^^~01/01/2011~
-~08018~^~334~^0.^0^^~4~^~BNA~^~20422~^^^^^^^^^~03/01/2003~
-~08018~^~337~^0.^0^^~4~^~FLM~^^^^^^^^^^~03/01/2003~
-~08018~^~338~^1060.^0^^~4~^~FLM~^^^^^^^^^^~01/01/2011~
-~08018~^~417~^1554.^0^^~9~^~MC~^^~Y~^^^^^^^^~03/01/2007~
-~08018~^~431~^1535.^0^^~4~^~NR~^^~Y~^^^^^^^^~03/01/2007~
-~08018~^~432~^19.^0^^~4~^~CAZN~^^^^^^^^^^~03/01/2007~
-~08018~^~435~^2629.^0^^~4~^~NC~^^^^^^^^^^~05/01/2009~
-~08018~^~601~^0.^0^^~9~^~MC~^^^^^^^^^^~03/01/2007~
-~08025~^~208~^383.^0^^~4~^~NR~^^^^^^^^^^~10/01/2016~
-~08025~^~262~^0.^0^^~4~^~FLC~^^^^^^^^^^~11/01/2002~
-~08025~^~263~^0.^0^^~4~^~FLC~^^^^^^^^^^~11/01/2002~
-~08025~^~268~^1602.^0^^~4~^~NR~^^^^^^^^^^~10/01/2016~
-~08025~^~301~^5.^3^0.^~1~^~A~^^^1^5.^5.^2^4.^5.^~2, 3~^~04/01/2005~
-~08025~^~304~^23.^3^0.^~1~^~A~^^^1^23.^24.^2^21.^24.^~2, 3~^~04/01/2005~
-~08025~^~305~^98.^3^1.^~1~^~A~^^^1^96.^100.^2^92.^102.^~2, 3~^~04/01/2005~
-~08025~^~306~^106.^0^^~8~^~LC~^^^^^^^^^^~02/01/2014~
-~08025~^~307~^545.^0^^~8~^~LC~^^^^^^^^^^~02/01/2014~
-~08025~^~318~^3788.^0^^~4~^~NC~^^^^^^^^^^~10/01/2016~
-~08025~^~319~^1136.^0^^~4~^~BNA~^^^^^^^^^^~02/01/2014~
-~08025~^~320~^1136.^0^^~4~^~NC~^^^^^^^^^^~02/01/2014~
-~08025~^~321~^0.^0^^~4~^~FLC~^^^^^^^^^^~11/01/2002~
-~08025~^~322~^0.^0^^~4~^~FLC~^^^^^^^^^^~11/01/2002~
-~08025~^~324~^303.^0^^~8~^~LC~^^^^^^^^^^~02/01/2014~
-~08025~^~334~^0.^0^^~4~^~FLC~^^^^^^^^^^~11/01/2002~
-~08025~^~337~^0.^0^^~4~^~FLC~^^^^^^^^^^~11/01/2002~
-~08025~^~338~^0.^0^^~4~^~FLC~^^^^^^^^^^~11/01/2002~
-~08025~^~417~^606.^0^^~8~^~LC~^^^^^^^^^^~04/01/2005~
-~08025~^~431~^602.^0^^~4~^~NR~^^~Y~^^^^^^^^~04/01/2005~
-~08025~^~432~^4.^0^^~4~^~CAZN~^^^^^^^^^^~04/01/2005~
-~08025~^~435~^1027.^0^^~4~^~NC~^^^^^^^^^^~03/01/2009~
-~08025~^~601~^0.^0^^~7~^~Z~^^^^^^^^^^~07/01/1982~
-~08029~^~208~^328.^0^^~9~^~MC~^^^^^^^^^^~04/01/2014~
-~08029~^~262~^0.^0^^~4~^~FLM~^^^^^^^^^^~01/01/2003~
-~08029~^~263~^0.^0^^~4~^~FLM~^^^^^^^^^^~01/01/2003~
-~08029~^~268~^1370.^0^^~9~^~MC~^^^^^^^^^^~04/01/2014~
-~08029~^~301~^44.^0^^~9~^~MC~^^^^^^^^^^~04/01/2014~
-~08029~^~304~^229.^0^^~9~^~MC~^^^^^^^^^^~04/01/2014~
-~08029~^~305~^449.^0^^~9~^~MC~^^^^^^^^^^~04/01/2014~
-~08029~^~306~^533.^0^^~9~^~MC~^^^^^^^^^^~04/01/2014~
-~08029~^~307~^540.^0^^~9~^~MC~^^^^^^^^^^~04/01/2014~
-~08029~^~318~^2500.^0^^~9~^~MC~^^~Y~^^^^^^^^~07/01/2005~
-~08029~^~319~^748.^0^^~4~^~NR~^^^^^^^^^^~02/01/2013~
-~08029~^~320~^749.^0^^~4~^~NC~^^^^^^^^^^~02/01/2013~
-~08029~^~321~^3.^0^^~4~^~FLM~^^^^^^^^^^~02/01/2013~
-~08029~^~322~^0.^0^^~4~^~FLM~^^^^^^^^^^~02/01/2013~
-~08029~^~324~^133.^0^^~9~^~MC~^^~Y~^^^^^^^^~07/01/2005~
-~08029~^~334~^0.^0^^~4~^~FLM~^^^^^^^^^^~02/01/2013~
-~08029~^~337~^0.^0^^~4~^~FLM~^^^^^^^^^^~02/01/2013~
-~08029~^~338~^150.^0^^~4~^~FLM~^^^^^^^^^^~04/01/2014~
-~08029~^~417~^667.^0^^~9~^~MC~^^~Y~^^^^^^^^~02/01/2013~
-~08029~^~431~^648.^0^^~4~^~NR~^^~Y~^^^^^^^^~02/01/2013~
-~08029~^~432~^19.^0^^~4~^~CAZN~^^^^^^^^^^~01/01/2003~
-~08029~^~435~^1120.^0^^~4~^~NC~^^^^^^^^^^~02/01/2013~
-~08029~^~601~^0.^0^^~9~^~MC~^^^^^^^^^^~01/01/2003~
-~08034~^~208~^402.^0^^~9~^~MC~^^^^^^^^^^~02/01/2013~
-~08034~^~262~^0.^0^^~4~^~FLM~^^^^^^^^^^~01/01/2003~
-~08034~^~263~^0.^0^^~4~^~FLM~^^^^^^^^^^~01/01/2003~
-~08034~^~268~^1682.^0^^~9~^~MC~^^^^^^^^^^~02/01/2013~
-~08034~^~301~^19.^0^^~9~^~MC~^^^^^^^^^^~02/01/2013~
-~08034~^~304~^16.^0^^~9~^~MC~^^^^^^^^^^~02/01/2013~
-~08034~^~305~^71.^0^^~9~^~MC~^^^^^^^^^^~02/01/2013~
-~08034~^~306~^72.^0^^~9~^~MC~^^^^^^^^^^~02/01/2013~
-~08034~^~307~^531.^0^^~9~^~MC~^^^^^^^^^^~06/01/2015~
-~08034~^~318~^2778.^0^^~9~^~MC~^^~Y~^^^^^^^^~02/01/2013~
-~08034~^~319~^833.^0^^~4~^~NR~^^^^^^^^^^~02/01/2013~
-~08034~^~320~^833.^0^^~4~^~NC~^^^^^^^^^^~02/01/2013~
-~08034~^~321~^0.^0^^~4~^~FLM~^^^^^^^^^^~03/01/2011~
-~08034~^~322~^0.^0^^~4~^~FLM~^^^^^^^^^^~03/01/2011~
-~08034~^~324~^296.^0^^~9~^~MC~^^~Y~^^^^^^^^~02/01/2013~
-~08034~^~334~^0.^0^^~4~^~FLM~^^^^^^^^^^~03/01/2011~
-~08034~^~337~^0.^0^^~4~^~FLM~^^^^^^^^^^~03/01/2011~
-~08034~^~338~^0.^0^^~4~^~FLM~^^^^^^^^^^~03/01/2011~
-~08034~^~417~^370.^0^^~9~^~MC~^^~Y~^^^^^^^^~02/01/2013~
-~08034~^~431~^366.^0^^~4~^~NR~^^~Y~^^^^^^^^~02/01/2013~
-~08034~^~432~^4.^0^^~4~^~CAZN~^^^^^^^^^^~03/01/2011~
-~08034~^~435~^627.^0^^~4~^~NC~^^^^^^^^^^~02/01/2013~
-~08034~^~601~^0.^0^^~9~^~MC~^^^^^^^^^^~01/01/2003~
-~08037~^~208~^489.^0^^~4~^~NC~^^^^^^^^^^~07/01/2008~
-~08037~^~262~^0.^0^^~4~^~RC~^^^^^^^^^^~02/01/2003~
-~08037~^~263~^0.^0^^~4~^~RC~^^^^^^^^^^~02/01/2003~
-~08037~^~268~^2046.^0^^~4~^~NC~^^^^^^^^^^~07/01/2008~
-~08037~^~301~^76.^0^^~4~^~RC~^^^^^^^^^^~04/01/2015~
-~08037~^~304~^168.^0^^~4~^~RC~^^^^^^^^^^~04/01/2015~
-~08037~^~305~^431.^0^^~4~^~RC~^^^^^^^^^^~04/01/2015~
-~08037~^~306~^539.^0^^~4~^~RC~^^^^^^^^^^~04/01/2015~
-~08037~^~307~^26.^0^^~4~^~RC~^^^^^^^^^^~04/01/2015~
-~08037~^~318~^19.^0^^~4~^~RC~^^^^^^^^^^~05/01/2006~
-~08037~^~319~^0.^0^^~4~^~RC~^^^^^^^^^^~02/01/2003~
-~08037~^~320~^1.^0^^~4~^~RC~^^^^^^^^^^~05/01/2006~
-~08037~^~321~^11.^0^^~4~^~RC~^^^^^^^^^^~05/01/2006~
-~08037~^~322~^0.^0^^~4~^~RC~^^^^^^^^^^~02/01/2003~
-~08037~^~324~^0.^0^^~4~^~RC~^^^^^^^^^^~04/01/2015~
-~08037~^~334~^0.^0^^~4~^~RC~^^^^^^^^^^~02/01/2003~
-~08037~^~337~^0.^0^^~4~^~RC~^^^^^^^^^^~02/01/2003~
-~08037~^~338~^137.^0^^~4~^~RC~^^^^^^^^^^~02/01/2003~
-~08037~^~417~^84.^0^^~4~^~RC~^^^^^^^^^^~04/01/2015~
-~08037~^~431~^0.^0^^~4~^~RC~^^^^^^^^^^~02/01/2003~
-~08037~^~432~^84.^0^^~4~^~RC~^^^^^^^^^^~04/01/2015~
-~08037~^~435~^84.^0^^~4~^~NC~^^^^^^^^^^~04/01/2015~
-~08037~^~601~^0.^0^^~4~^~RC~^^^^^^^^^^~02/01/2003~
-~08038~^~208~^361.^0^^~9~^~MC~^^^^^^^^^^~06/01/2015~
-~08038~^~262~^0.^0^^~4~^~FLM~^^^^^^^^^^~04/01/2007~
-~08038~^~263~^0.^0^^~4~^~FLM~^^^^^^^^^^~04/01/2007~
-~08038~^~268~^1511.^0^^~9~^~MC~^^^^^^^^^^~06/01/2015~
-~08038~^~301~^32.^0^^~9~^~MC~^^^^^^^^^^~06/01/2015~
-~08038~^~304~^124.^0^^~9~^~MC~^^^^^^^^^^~06/01/2015~
-~08038~^~305~^467.^0^^~9~^~MC~^^^^^^^^^^~06/01/2015~
-~08038~^~306~^400.^0^^~9~^~MC~^^^^^^^^^^~06/01/2015~
-~08038~^~307~^465.^0^^~9~^~MC~^^^^^^^^^^~06/01/2015~
-~08038~^~318~^4.^0^^~9~^~MC~^^^^^^^^^^~06/01/2015~
-~08038~^~319~^0.^0^^~4~^~BNA~^^^^^^^^^^~04/01/2014~
-~08038~^~320~^0.^0^^~4~^~NC~^^^^^^^^^^~04/01/2014~
-~08038~^~321~^2.^0^^~4~^~BNA~^^^^^^^^^^~06/01/2015~
-~08038~^~322~^0.^0^^~4~^~BNA~^^^^^^^^^^~04/01/2007~
-~08038~^~324~^0.^0^^~9~^~MC~^^^^^^^^^^~04/01/2014~
-~08038~^~334~^0.^0^^~4~^~BNA~^^^^^^^^^^~04/01/2007~
-~08038~^~337~^0.^0^^~4~^~FLM~^^^^^^^^^^~04/01/2007~
-~08038~^~338~^166.^0^^~4~^~FLM~^^^^^^^^^^~05/01/2014~
-~08038~^~417~^345.^0^^~9~^~MC~^^~Y~^^^^^^^^~04/01/2013~
-~08038~^~431~^326.^0^^~4~^~NR~^^~Y~^^^^^^^^~04/01/2013~
-~08038~^~432~^19.^0^^~4~^~CAZN~^^^^^^^^^^~04/01/2013~
-~08038~^~435~^573.^0^^~4~^~NC~^^^^^^^^^^~04/01/2013~
-~08038~^~601~^0.^0^^~9~^~MC~^^^^^^^^^^~04/01/2013~
-~08039~^~208~^376.^0^^~9~^~MC~^^^^^^^^^^~02/01/2013~
-~08039~^~262~^0.^0^^~4~^~FLM~^^^^^^^^^^~01/01/2003~
-~08039~^~263~^0.^0^^~4~^~FLM~^^^^^^^^^^~01/01/2003~
-~08039~^~268~^1573.^0^^~9~^~MC~^^^^^^^^^^~02/01/2013~
-~08039~^~301~^36.^0^^~9~^~MC~^^^^^^^^^^~02/01/2013~
-~08039~^~304~^101.^0^^~9~^~MC~^^^^^^^^^^~02/01/2013~
-~08039~^~305~^280.^0^^~9~^~MC~^^^^^^^^^^~04/01/2011~
-~08039~^~306~^336.^0^^~9~^~MC~^^^^^^^^^^~02/01/2013~
-~08039~^~307~^470.^0^^~9~^~MC~^^^^^^^^^^~02/01/2013~
-~08039~^~318~^2586.^0^^~9~^~MC~^^~Y~^^^^^^^^~01/01/2003~
-~08039~^~319~^775.^0^^~4~^~NR~^^^^^^^^^^~04/01/2011~
-~08039~^~320~^775.^0^^~4~^~NC~^^^^^^^^^^~04/01/2011~
-~08039~^~321~^3.^0^^~4~^~FLM~^^^^^^^^^^~04/01/2011~
-~08039~^~322~^0.^0^^~4~^~FLM~^^^^^^^^^^~04/01/2011~
-~08039~^~324~^138.^0^^~9~^~MC~^^~Y~^^^^^^^^~01/01/2003~
-~08039~^~334~^0.^0^^~4~^~FLM~^^^^^^^^^^~04/01/2011~
-~08039~^~337~^0.^0^^~4~^~FLM~^^^^^^^^^^~04/01/2011~
-~08039~^~338~^136.^0^^~4~^~FLM~^^^^^^^^^^~04/01/2011~
-~08039~^~417~^690.^0^^~9~^~MC~^^~Y~^^^^^^^^~04/01/2011~
-~08039~^~431~^671.^0^^~4~^~NR~^^~Y~^^^^^^^^~04/01/2011~
-~08039~^~432~^19.^0^^~4~^~CAZN~^^^^^^^^^^~01/01/2003~
-~08039~^~435~^1159.^0^^~4~^~NC~^^^^^^^^^^~04/01/2011~
-~08039~^~601~^0.^0^^~9~^~MC~^^^^^^^^^^~01/01/2003~
-~08046~^~208~^394.^0^^~9~^~MC~^^^^^^^^^^~06/01/2015~
-~08046~^~262~^0.^0^^~4~^~FLM~^^^^^^^^^^~02/01/2005~
-~08046~^~263~^0.^0^^~4~^~FLM~^^^^^^^^^^~02/01/2005~
-~08046~^~268~^1650.^0^^~9~^~MC~^^^^^^^^^^~06/01/2015~
-~08046~^~301~^11.^0^^~9~^~MC~^^^^^^^^^^~02/01/2013~
-~08046~^~304~^45.^0^^~9~^~MC~^^^^^^^^^^~04/01/2014~
-~08046~^~305~^132.^0^^~9~^~MC~^^^^^^^^^^~06/01/2015~
-~08046~^~306~^142.^0^^~9~^~MC~^^^^^^^^^^~06/01/2015~
-~08046~^~307~^553.^0^^~9~^~MC~^^^^^^^^^^~06/01/2015~
-~08046~^~318~^2344.^0^^~9~^~MC~^^~Y~^^^^^^^^~02/01/2013~
-~08046~^~319~^672.^0^^~4~^~NR~^^^^^^^^^^~06/01/2015~
-~08046~^~320~^678.^0^^~4~^~NC~^^^^^^^^^^~02/01/2013~
-~08046~^~321~^46.^0^^~4~^~FLM~^^^^^^^^^^~06/01/2015~
-~08046~^~322~^30.^0^^~4~^~FLM~^^^^^^^^^^~06/01/2015~
-~08046~^~324~^313.^0^^~9~^~MC~^^~Y~^^^^^^^^~03/01/2011~
-~08046~^~334~^0.^0^^~4~^~FLM~^^^^^^^^^^~01/01/2003~
-~08046~^~337~^0.^0^^~4~^~FLM~^^^^^^^^^^~01/01/2003~
-~08046~^~338~^681.^0^^~4~^~FLM~^^^^^^^^^^~06/01/2015~
-~08046~^~417~^313.^0^^~9~^~MC~^^~Y~^^^^^^^^~03/01/2011~
-~08046~^~431~^294.^0^^~4~^~NR~^^~Y~^^^^^^^^~03/01/2011~
-~08046~^~432~^19.^0^^~4~^~CAZN~^^^^^^^^^^~03/01/2003~
-~08046~^~435~^518.^0^^~4~^~NC~^^^^^^^^^^~03/01/2011~
-~08046~^~601~^0.^0^^~9~^~MC~^^^^^^^^^^~01/01/2003~
-~08047~^~208~^381.^0^^~9~^~MC~^^^^^^^^^^~01/01/2011~
-~08047~^~262~^0.^0^^~4~^~FLM~^^^^^^^^^^~02/01/2002~
-~08047~^~263~^0.^0^^~4~^~FLM~^^^^^^^^^^~02/01/2002~
-~08047~^~268~^1594.^0^^~9~^~MC~^^^^^^^^^^~01/01/2011~
-~08047~^~301~^10.^0^^~9~^~MC~^^^^^^^^^^~03/01/2007~
-~08047~^~304~^82.^0^^~9~^~MC~^^^^^^^^^^~01/01/2011~
-~08047~^~305~^250.^0^^~9~^~MC~^^^^^^^^^^~01/01/2011~
-~08047~^~306~^268.^0^^~9~^~MC~^^^^^^^^^^~01/01/2011~
-~08047~^~307~^825.^0^^~9~^~MC~^^^^^^^^^^~01/01/2011~
-~08047~^~318~^3352.^0^^~9~^~MC~^^~Y~^^^^^^^^~06/01/2007~
-~08047~^~319~^961.^0^^~4~^~NR~^^^^^^^^^^~01/01/2011~
-~08047~^~320~^968.^0^^~4~^~NC~^^^^^^^^^^~01/01/2011~
-~08047~^~321~^67.^0^^~4~^~FLM~^^^^^^^^^^~01/01/2011~
-~08047~^~322~^44.^0^^~4~^~FLM~^^^^^^^^^^~01/01/2011~
-~08047~^~324~^0.^0^^~4~^~FLM~^^^^^^^^^^~01/01/2011~
-~08047~^~334~^0.^0^^~4~^~FLM~^^^^^^^^^^~01/01/2011~
-~08047~^~337~^0.^0^^~4~^~FLM~^^^^^^^^^^~01/01/2011~
-~08047~^~338~^1131.^0^^~4~^~FLM~^^^^^^^^^^~01/01/2011~
-~08047~^~417~^1334.^0^^~9~^~MC~^^^^^^^^^^~03/01/2007~
-~08047~^~431~^1315.^0^^~4~^~NR~^^~Y~^^^^^^^^~03/01/2007~
-~08047~^~432~^19.^0^^~4~^~CAZN~^^^^^^^^^^~03/01/2007~
-~08047~^~435~^2255.^0^^~4~^~NC~^^^^^^^^^^~03/01/2007~
-~08047~^~601~^0.^0^^~9~^~MC~^^^^^^^^^^~03/01/2007~
-~08049~^~208~^374.^0^^~9~^~MC~^^^^^^^^^^~01/01/2011~
-~08049~^~262~^0.^0^^~4~^~FLM~^^^^^^^^^^~02/01/2002~
-~08049~^~263~^0.^0^^~4~^~FLM~^^^^^^^^^^~02/01/2002~
-~08049~^~268~^1565.^0^^~9~^~MC~^^^^^^^^^^~01/01/2011~
-~08049~^~301~^351.^0^^~9~^~MC~^^^^^^^^^^~08/01/2012~
-~08049~^~304~^98.^0^^~9~^~MC~^^^^^^^^^^~01/01/2011~
-~08049~^~305~^423.^0^^~9~^~MC~^^^^^^^^^^~01/01/2011~
-~08049~^~306~^283.^0^^~9~^~MC~^^^^^^^^^^~01/01/2011~
-~08049~^~307~^501.^0^^~9~^~MC~^^^^^^^^^^~08/01/2012~
-~08049~^~318~^40.^0^^~9~^~MC~^^^^^^^^^^~03/01/2007~
-~08049~^~319~^0.^0^^~4~^~FLM~^^^^^^^^^^~03/01/2007~
-~08049~^~320~^2.^0^^~4~^~NC~^^^^^^^^^^~03/01/2007~
-~08049~^~321~^18.^0^^~4~^~BNA~^^^^^^^^^^~01/01/2011~
-~08049~^~322~^1.^0^^~4~^~BNA~^^^^^^^^^^~04/01/2014~
-~08049~^~324~^0.^0^^~4~^~FLM~^^^^^^^^^^~01/01/2011~
-~08049~^~334~^11.^0^^~4~^~BNA~^^^^^^^^^^~04/01/2014~
-~08049~^~337~^0.^0^^~4~^~FLM~^^^^^^^^^^~03/01/2003~
-~08049~^~338~^99.^0^^~4~^~FLM~^^^^^^^^^^~01/01/2011~
-~08049~^~417~^1305.^0^^~9~^~MC~^^~Y~^^^^^^^^~04/01/2014~
-~08049~^~431~^1286.^0^^~4~^~NR~^^~Y~^^^^^^^^~04/01/2014~
-~08049~^~432~^19.^0^^~4~^~CAZN~^^^^^^^^^^~03/01/2007~
-~08049~^~435~^2205.^0^^~4~^~NC~^^^^^^^^^^~04/01/2014~
-~08049~^~601~^0.^0^^~9~^~MC~^^^^^^^^^^~03/01/2007~
-~08054~^~208~^421.^0^^~9~^~MC~^^^^^^^^^^~02/01/2011~
-~08054~^~262~^0.^0^^~4~^~FLM~^^^^^^^^^^~12/01/2002~
-~08054~^~263~^0.^0^^~4~^~FLM~^^^^^^^^^^~12/01/2002~
-~08054~^~268~^1761.^0^^~9~^~MC~^^^^^^^^^^~02/01/2011~
-~08054~^~301~^109.^0^^~9~^~MC~^^^^^^^^^^~02/01/2011~
-~08054~^~304~^121.^0^^~9~^~MC~^^^^^^^^^^~02/01/2011~
-~08054~^~305~^392.^0^^~9~^~MC~^^^^^^^^^^~02/01/2011~
-~08054~^~306~^483.^0^^~9~^~MC~^^^^^^^^^^~02/01/2011~
-~08054~^~307~^50.^0^^~9~^~MC~^^^^^^^^^^~02/01/2011~
-~08054~^~318~^8.^0^^~9~^~MC~^^^^^^^^^^~02/01/2011~
-~08054~^~319~^2.^0^^~4~^~BNA~^^^^^^^^^^~02/01/2014~
-~08054~^~320~^2.^0^^~4~^~NC~^^^^^^^^^^~02/01/2014~
-~08054~^~321~^1.^0^^~4~^~BNA~^^^^^^^^^^~02/01/2014~
-~08054~^~322~^0.^0^^~4~^~BNA~^^^^^^^^^^~03/01/2007~
-~08054~^~324~^0.^0^^~4~^~FLM~^^^^^^^^^^~02/01/2011~
-~08054~^~334~^0.^0^^~4~^~BNA~^^^^^^^^^^~03/01/2007~
-~08054~^~337~^0.^0^^~4~^~FLM~^^^^^^^^^^~03/01/2007~
-~08054~^~338~^130.^0^^~4~^~FLM~^^^^^^^^^^~02/01/2014~
-~08054~^~417~^37.^0^^~9~^~MC~^^^^^^^^^^~02/01/2011~
-~08054~^~431~^0.^0^^~4~^~FLM~^^~N~^^^^^^^^~02/01/2011~
-~08054~^~432~^37.^0^^~4~^~NR~^^^^^^^^^^~02/01/2011~
-~08054~^~435~^37.^0^^~4~^~NC~^^^^^^^^^^~02/01/2011~
-~08054~^~601~^2.^0^^~9~^~MC~^^^^^^^^^^~02/01/2011~
-~08059~^~208~^406.^0^^~9~^~MC~^^^^^^^^^^~01/01/2011~
-~08059~^~262~^0.^0^^~4~^~FLM~^^^^^^^^^^~02/01/2002~
-~08059~^~263~^0.^0^^~4~^~FLM~^^^^^^^^^^~02/01/2002~
-~08059~^~268~^1699.^0^^~9~^~MC~^^^^^^^^^^~01/01/2011~
-~08059~^~301~^9.^0^^~9~^~MC~^^^^^^^^^^~03/01/2007~
-~08059~^~304~^55.^0^^~9~^~MC~^^^^^^^^^^~03/01/2007~
-~08059~^~305~^168.^0^^~9~^~MC~^^^^^^^^^^~03/01/2007~
-~08059~^~306~^187.^0^^~9~^~MC~^^^^^^^^^^~03/01/2007~
-~08059~^~307~^740.^0^^~9~^~MC~^^^^^^^^^^~03/01/2007~
-~08059~^~318~^148.^0^^~9~^~MC~^^^^^^^^^^~03/01/2007~
-~08059~^~319~^17.^0^^~4~^~NR~^^^^^^^^^^~03/01/2007~
-~08059~^~320~^21.^0^^~4~^~NC~^^^^^^^^^^~01/01/2011~
-~08059~^~321~^43.^0^^~4~^~FLM~^^^^^^^^^^~01/01/2011~
-~08059~^~322~^28.^0^^~4~^~FLM~^^^^^^^^^^~01/01/2011~
-~08059~^~324~^0.^0^^~4~^~FLM~^^^^^^^^^^~01/01/2011~
-~08059~^~334~^0.^0^^~4~^~FLM~^^^^^^^^^^~03/01/2007~
-~08059~^~337~^0.^0^^~4~^~FLM~^^^^^^^^^^~03/01/2007~
-~08059~^~338~^727.^0^^~4~^~FLM~^^^^^^^^^^~01/01/2011~
-~08059~^~417~^1555.^0^^~9~^~MC~^^~Y~^^^^^^^^~03/01/2007~
-~08059~^~431~^1536.^0^^~4~^~NR~^^~Y~^^^^^^^^~03/01/2007~
-~08059~^~432~^19.^0^^~4~^~CAZN~^^^^^^^^^^~03/01/2007~
-~08059~^~435~^2630.^0^^~4~^~NC~^^^^^^^^^^~05/01/2009~
-~08059~^~601~^0.^0^^~9~^~MC~^^^^^^^^^^~03/01/2007~
-~08061~^~208~^324.^0^^~9~^~MC~^^^^^^^^^^~04/01/2014~
-~08061~^~262~^0.^0^^~4~^~FLM~^^^^^^^^^^~03/01/2004~
-~08061~^~263~^0.^0^^~4~^~FLM~^^^^^^^^^^~03/01/2004~
-~08061~^~268~^1354.^0^^~9~^~MC~^^^^^^^^^^~04/01/2014~
-~08061~^~301~^44.^0^^~9~^~MC~^^^^^^^^^^~04/01/2014~
-~08061~^~304~^168.^0^^~9~^~MC~^^^^^^^^^^~04/01/2014~
-~08061~^~305~^339.^0^^~9~^~MC~^^^^^^^^^^~04/01/2014~
-~08061~^~306~^525.^0^^~9~^~MC~^^^^^^^^^^~04/01/2014~
-~08061~^~307~^382.^0^^~9~^~MC~^^^^^^^^^^~04/01/2014~
-~08061~^~318~^1271.^0^^~9~^~MC~^^~Y~^^^^^^^^~01/01/2003~
-~08061~^~319~^380.^0^^~4~^~NR~^^^^^^^^^^~02/01/2013~
-~08061~^~320~^380.^0^^~4~^~NC~^^^^^^^^^^~02/01/2013~
-~08061~^~321~^2.^0^^~4~^~FLM~^^^^^^^^^^~02/01/2013~
-~08061~^~322~^0.^0^^~4~^~FLM~^^^^^^^^^^~03/01/2011~
-~08061~^~324~^68.^0^^~9~^~MC~^^~Y~^^^^^^^^~01/01/2003~
-~08061~^~334~^0.^0^^~4~^~FLM~^^^^^^^^^^~03/01/2011~
-~08061~^~337~^0.^0^^~4~^~FLM~^^^^^^^^^^~03/01/2011~
-~08061~^~338~^101.^0^^~4~^~FLM~^^^^^^^^^^~02/01/2013~
-~08061~^~417~^339.^0^^~9~^~MC~^^~Y~^^^^^^^^~03/01/2011~
-~08061~^~431~^320.^0^^~4~^~NR~^^~Y~^^^^^^^^~03/01/2011~
-~08061~^~432~^19.^0^^~4~^~CAZN~^^^^^^^^^^~03/01/2004~
-~08061~^~435~^563.^0^^~4~^~NC~^^^^^^^^^^~03/01/2011~
-~08061~^~601~^0.^0^^~9~^~MC~^^^^^^^^^^~01/01/2003~
-~08066~^~208~^383.^0^^~9~^~MC~^^^^^^^^^^~02/01/2002~
-~08066~^~262~^0.^0^^~4~^~BFSN~^~20444~^^^^^^^^^~07/01/2003~
-~08066~^~263~^0.^0^^~4~^~BFSN~^~20444~^^^^^^^^^~07/01/2003~
-~08066~^~268~^1602.^0^^~9~^~MC~^^^^^^^^^^~01/01/2011~
-~08066~^~301~^9.^0^^~9~^~MC~^^^^^^^^^^~02/01/2002~
-~08066~^~304~^30.^0^^~9~^~MC~^^^^^^^^^^~02/01/2002~
-~08066~^~305~^118.^0^^~9~^~MC~^^^^^^^^^^~02/01/2002~
-~08066~^~306~^116.^0^^~9~^~MC~^^^^^^^^^^~02/01/2002~
-~08066~^~307~^5.^0^^~9~^~MC~^^^^^^^^^^~02/01/2002~
-~08066~^~318~^0.^0^^~9~^~MC~^^^^^^^^^^~07/01/1982~
-~08066~^~319~^0.^0^^~4~^~BFSN~^~20444~^^^^^^^^^~01/01/2011~
-~08066~^~320~^0.^0^^~4~^~NC~^^~N~^^^^^^^^~07/01/2003~
-~08066~^~321~^0.^0^^~4~^~BFSY~^~20444~^^^^^^^^^~01/01/2011~
-~08066~^~322~^0.^0^^~4~^~BFSY~^~20444~^^^^^^^^^~01/01/2011~
-~08066~^~324~^0.^0^^~7~^~Z~^^~N~^^^^^^^^~05/01/2009~
-~08066~^~334~^0.^0^^~4~^~BFSY~^~20444~^^^^^^^^^~01/01/2011~
-~08066~^~337~^0.^0^^~4~^~BFSY~^~20444~^^^^^^^^^~01/01/2011~
-~08066~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~12/01/2002~
-~08066~^~417~^154.^0^^~9~^~MC~^^~Y~^^^^^^^^~12/01/2002~
-~08066~^~431~^150.^0^^~4~^~NR~^^~Y~^^^^^^^^~07/01/2003~
-~08066~^~432~^4.^0^^~4~^~CAZN~^^^^^^^^^^~07/01/2003~
-~08066~^~435~^259.^0^^~4~^~NC~^^^^^^^^^^~05/01/2009~
-~08066~^~601~^0.^0^^~9~^~MC~^^^^^^^^^^~01/01/1996~
-~08073~^~208~^380.^0^^~9~^~MC~^^^^^^^^^^~02/01/2013~
-~08073~^~262~^0.^0^^~4~^~FLM~^^^^^^^^^^~01/01/2003~
-~08073~^~263~^0.^0^^~4~^~FLM~^^^^^^^^^^~01/01/2003~
-~08073~^~268~^1592.^0^^~9~^~MC~^^^^^^^^^^~02/01/2013~
-~08073~^~301~^15.^0^^~9~^~MC~^^^^^^^^^^~01/01/2003~
-~08073~^~304~^59.^0^^~9~^~MC~^^^^^^^^^^~02/01/2013~
-~08073~^~305~^227.^0^^~9~^~MC~^^^^^^^^^^~02/01/2013~
-~08073~^~306~^176.^0^^~9~^~MC~^^^^^^^^^^~03/01/2011~
-~08073~^~307~^95.^0^^~9~^~MC~^^^^^^^^^^~02/01/2013~
-~08073~^~318~^2778.^0^^~9~^~MC~^^~Y~^^^^^^^^~07/01/2005~
-~08073~^~319~^832.^0^^~4~^~NR~^^^^^^^^^^~02/01/2013~
-~08073~^~320~^832.^0^^~4~^~NC~^^^^^^^^^^~02/01/2013~
-~08073~^~321~^2.^0^^~4~^~FLM~^^^^^^^^^^~02/01/2013~
-~08073~^~322~^0.^0^^~4~^~FLM~^^^^^^^^^^~03/01/2011~
-~08073~^~324~^296.^0^^~9~^~MC~^^^^^^^^^^~03/01/2011~
-~08073~^~334~^0.^0^^~4~^~FLM~^^^^^^^^^^~03/01/2011~
-~08073~^~337~^0.^0^^~4~^~FLM~^^^^^^^^^^~03/01/2011~
-~08073~^~338~^92.^0^^~4~^~FLM~^^^^^^^^^^~02/01/2013~
-~08073~^~417~^370.^0^^~9~^~MC~^^^^^^^^^^~07/01/2005~
-~08073~^~431~^351.^0^^~4~^~NR~^^~Y~^^^^^^^^~01/01/2003~
-~08073~^~432~^19.^0^^~4~^~CAZN~^^^^^^^^^^~01/01/2003~
-~08073~^~435~^616.^0^^~4~^~NC~^^^^^^^^^^~03/01/2009~
-~08073~^~601~^0.^0^^~9~^~MC~^^^^^^^^^^~01/01/2003~
-~08074~^~208~^395.^0^^~4~^~NR~^^^^^^^^^^~10/01/2016~
-~08074~^~262~^0.^0^^~4~^~FLC~^^^^^^^^^^~02/01/2014~
-~08074~^~263~^0.^0^^~4~^~FLC~^^^^^^^^^^~02/01/2014~
-~08074~^~268~^1653.^0^^~4~^~NR~^^^^^^^^^^~10/01/2016~
-~08074~^~301~^357.^0^^~8~^~LC~^^~Y~^^^^^^^^~02/01/2014~
-~08074~^~304~^143.^0^^~8~^~LC~^^^^^^^^^^~02/01/2014~
-~08074~^~305~^536.^0^^~8~^~LC~^^^^^^^^^^~02/01/2014~
-~08074~^~306~^607.^0^^~8~^~LC~^^^^^^^^^^~02/01/2014~
-~08074~^~307~^571.^0^^~8~^~LC~^^^^^^^^^^~02/01/2014~
-~08074~^~318~^3571.^0^^~4~^~NC~^^~Y~^^^^^^^^~10/01/2016~
-~08074~^~319~^1071.^0^^~4~^~BNA~^~08074~^^^^^^^^^~02/01/2014~
-~08074~^~320~^1071.^0^^~4~^~NC~^^^^^^^^^^~02/01/2014~
-~08074~^~321~^0.^0^^~4~^~BFZN~^~08013~^^^^^^^^^~01/01/2007~
-~08074~^~322~^0.^0^^~4~^~BFZN~^~08013~^^^^^^^^^~01/01/2007~
-~08074~^~324~^286.^0^^~8~^~LC~^^~Y~^^^^^^^^~02/01/2014~
-~08074~^~334~^0.^0^^~4~^~BFZN~^~08013~^^^^^^^^^~01/01/2007~
-~08074~^~337~^0.^0^^~4~^~FLC~^^^^^^^^^^~01/01/2007~
-~08074~^~338~^132.^0^^~4~^~FLC~^^^^^^^^^^~02/01/2014~
-~08074~^~417~^714.^0^^~8~^~LC~^^~Y~^^^^^^^^~02/01/2014~
-~08074~^~431~^696.^0^^~4~^~NR~^^~Y~^^^^^^^^~02/01/2014~
-~08074~^~432~^18.^0^^~4~^~FLC~^^^^^^^^^^~02/01/2014~
-~08074~^~435~^1201.^0^^~4~^~NC~^^^^^^^^^^~02/01/2014~
-~08074~^~601~^0.^0^^~8~^~LC~^^^^^^^^^^~02/01/2014~
-~08081~^~208~^373.^0^^~9~^~MC~^^^^^^^^^^~04/01/2014~
-~08081~^~262~^0.^0^^~4~^~FLM~^^^^^^^^^^~02/01/2003~
-~08081~^~263~^0.^0^^~4~^~FLM~^^^^^^^^^^~02/01/2003~
-~08081~^~268~^1561.^0^^~9~^~MC~^^^^^^^^^^~04/01/2014~
-~08081~^~301~^38.^0^^~9~^~MC~^^^^^^^^^^~03/01/2011~
-~08081~^~304~^93.^0^^~9~^~MC~^^^^^^^^^^~04/01/2014~
-~08081~^~305~^274.^0^^~9~^~MC~^^^^^^^^^^~04/01/2014~
-~08081~^~306~^348.^0^^~9~^~MC~^^^^^^^^^^~04/01/2014~
-~08081~^~307~^102.^0^^~9~^~MC~^^^^^^^^^^~03/01/2011~
-~08081~^~318~^7.^0^^~4~^~FLM~^^^^^^^^^^~04/01/2014~
-~08081~^~319~^0.^0^^~7~^~Z~^^~N~^^^^^^^^~03/01/2011~
-~08081~^~320~^0.^0^^~4~^~NC~^^^^^^^^^^~01/01/2007~
-~08081~^~321~^4.^0^^~4~^~FLM~^^^^^^^^^^~03/01/2011~
-~08081~^~322~^0.^0^^~4~^~FLM~^^^^^^^^^^~02/01/2003~
-~08081~^~324~^0.^0^^~9~^~MC~^^^^^^^^^^~03/01/2011~
-~08081~^~334~^0.^0^^~4~^~FLM~^^^^^^^^^^~02/01/2003~
-~08081~^~337~^0.^0^^~4~^~FLM~^^^^^^^^^^~02/01/2003~
-~08081~^~338~^166.^0^^~4~^~FLM~^^^^^^^^^^~03/01/2011~
-~08081~^~417~^170.^0^^~9~^~MC~^^~Y~^^^^^^^^~04/01/2014~
-~08081~^~431~^128.^0^^~4~^~NR~^^~Y~^^^^^^^^~04/01/2014~
-~08081~^~432~^42.^0^^~4~^~BFZN~^~08148~^^^^^^^^^~02/01/2003~
-~08081~^~435~^259.^0^^~4~^~NC~^^^^^^^^^^~03/01/2011~
-~08081~^~601~^0.^0^^~9~^~MC~^^^^^^^^^^~03/01/2011~
-~08083~^~208~^385.^0^^~9~^~MC~^^^^^^^^^^~03/01/2015~
-~08083~^~262~^0.^0^^~9~^~MC~^^^^^^^^^^~03/01/2013~
-~08083~^~263~^0.^0^^~4~^~FLM~^^^^^^^^^^~02/01/2005~
-~08083~^~268~^1611.^0^^~9~^~MC~^^^^^^^^^^~03/01/2015~
-~08083~^~301~^5.^0^^~9~^~MC~^^^^^^^^^^~03/01/2013~
-~08083~^~304~^4.^0^^~9~^~MC~^^^^^^^^^^~03/01/2015~
-~08083~^~305~^37.^0^^~9~^~MC~^^^^^^^^^^~03/01/2015~
-~08083~^~306~^71.^0^^~9~^~MC~^^^^^^^^^^~03/01/2015~
-~08083~^~307~^855.^0^^~9~^~MC~^^^^^^^^^^~03/01/2015~
-~08083~^~318~^2419.^0^^~9~^~MC~^^~Y~^^^^^^^^~03/01/2015~
-~08083~^~319~^695.^0^^~4~^~NR~^^^^^^^^^^~03/01/2015~
-~08083~^~320~^700.^0^^~4~^~NC~^^^^^^^^^^~03/01/2015~
-~08083~^~321~^46.^0^^~4~^~FLM~^^^^^^^^^^~03/01/2015~
-~08083~^~322~^30.^0^^~4~^~FLM~^^^^^^^^^^~03/01/2015~
-~08083~^~324~^129.^0^^~9~^~MC~^^~Y~^^^^^^^^~03/01/2015~
-~08083~^~334~^0.^0^^~4~^~FLM~^^^^^^^^^^~02/01/2005~
-~08083~^~337~^0.^0^^~4~^~FLM~^^^^^^^^^^~02/01/2005~
-~08083~^~338~^780.^0^^~4~^~FLM~^^^^^^^^^^~03/01/2015~
-~08083~^~417~^323.^0^^~9~^~MC~^^~Y~^^^^^^^^~03/01/2015~
-~08083~^~431~^289.^0^^~4~^~NR~^^~Y~^^^^^^^^~03/01/2013~
-~08083~^~432~^34.^0^^~4~^~CAZN~^^^^^^^^^^~02/01/2005~
-~08083~^~435~^525.^0^^~4~^~NC~^^^^^^^^^^~03/01/2013~
-~08083~^~601~^0.^0^^~9~^~MC~^^^^^^^^^^~03/01/2013~
-~08084~^~208~^382.^0^^~4~^~NC~^^^^^^^^^^~07/01/1982~
-~08084~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~12/01/2000~
-~08084~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~12/01/2000~
-~08084~^~268~^1598.^0^^~4~^^^^^^^^^^^~05/01/2009~
-~08084~^~301~^45.^2^^~1~^^^^^^^^^^^~07/01/1982~
-~08084~^~304~^320.^5^16.^~1~^^^^^^^^^^^~07/01/1982~
-~08084~^~305~^1146.^10^28.^~1~^^^^^^^^^^^~07/01/1982~
-~08084~^~306~^947.^1^^~1~^^^^^^^^^^^~07/01/1982~
-~08084~^~307~^4.^7^0.^~1~^^^^^^^^^^^~07/01/1982~
-~08084~^~318~^103.^0^^~1~^~AS~^^^^^^^^^^~10/01/2002~
-~08084~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2002~
-~08084~^~320~^5.^0^^~1~^~AS~^^^^^^^^^^~10/01/2002~
-~08084~^~321~^62.^1^^~1~^~A~^^^^^^^^^^~10/01/2002~
-~08084~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~10/01/2002~
-~08084~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~
-~08084~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~10/01/2002~
-~08084~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~10/01/2002~
-~08084~^~338~^790.^1^^~1~^~A~^^^^^^^^^^~10/01/2002~
-~08084~^~417~^352.^4^20.^~1~^^^^^^^^^^^~07/01/1982~
-~08084~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~12/01/2000~
-~08084~^~432~^352.^0^^~4~^~NR~^^^^^^^^^^~05/01/2009~
-~08084~^~435~^352.^0^^~4~^~NC~^^^^^^^^^^~05/01/2009~
-~08084~^~601~^0.^0^^~7~^~Z~^^^^^^^^^^~07/01/1982~
-~08085~^~208~^372.^0^^~9~^~MC~^^^^^^^^^^~03/01/2002~
-~08085~^~262~^0.^0^^~4~^~FLM~^^^^^^^^^^~12/01/2002~
-~08085~^~263~^0.^0^^~4~^~FLM~^^^^^^^^^^~12/01/2002~
-~08085~^~268~^1558.^0^^~9~^~MC~^^^^^^^^^^~12/01/2002~
-~08085~^~301~^50.^0^^~9~^~MC~^^^^^^^^^^~03/01/2002~
-~08085~^~304~^272.^0^^~9~^~MC~^^^^^^^^^^~03/01/2002~
-~08085~^~305~^1011.^0^^~9~^~MC~^^^^^^^^^^~03/01/2002~
-~08085~^~306~^964.^0^^~9~^~MC~^^^^^^^^^^~03/01/2002~
-~08085~^~307~^11.^0^^~9~^~MC~^^^^^^^^^^~03/01/2002~
-~08085~^~318~^96.^0^^~9~^~MC~^^^^^^^^^^~07/01/2014~
-~08085~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2002~
-~08085~^~320~^5.^0^^~4~^~NC~^^^^^^^^^^~07/01/2014~
-~08085~^~321~^57.^0^^~4~^~BNA~^~08084~^^^^^^^^^~07/01/2014~
-~08085~^~322~^0.^0^^~4~^~BNA~^~08084~^^^^^^^^^~07/01/2014~
-~08085~^~324~^0.^0^^~9~^~MC~^^^^^^^^^^~07/01/2014~
-~08085~^~334~^0.^0^^~4~^~BNA~^~08084~^^^^^^^^^~07/01/2014~
-~08085~^~337~^0.^0^^~4~^~BFPN~^~08084~^^^^^^^^^~07/01/2014~
-~08085~^~338~^721.^0^^~4~^~BFPN~^~08084~^^^^^^^^^~07/01/2014~
-~08085~^~417~^606.^0^^~9~^~MC~^^~Y~^^^^^^^^~03/01/2002~
-~08085~^~431~^285.^0^^~4~^~NR~^^~Y~^^^^^^^^~07/01/2014~
-~08085~^~432~^321.^0^^~4~^~BFPN~^~08084~^^^^^^^^^~07/01/2014~
-~08085~^~435~^805.^0^^~4~^~NC~^^^^^^^^^^~07/01/2014~
-~08085~^~601~^0.^0^^~9~^~MC~^^^^^^^^^^~01/01/1996~
-~08090~^~208~^370.^0^^~4~^~NC~^^^^^^^^^^~05/01/2009~
-~08090~^~262~^0.^0^^~4~^~FLA~^^^^^^^^^^~05/01/2009~
-~08090~^~263~^0.^0^^~4~^~FLA~^^^^^^^^^^~05/01/2009~
-~08090~^~268~^1549.^0^^~4~^~NC~^^^^^^^^^^~05/01/2009~
-~08090~^~301~^4.^6^0.^~1~^~A~^^^1^3.^7.^5^2.^6.^~2, 3~^~11/01/2008~
-~08090~^~304~^36.^6^3.^~1~^~A~^^^1^17.^43.^5^25.^46.^~2, 3~^~11/01/2008~
-~08090~^~305~^111.^6^11.^~1~^~A~^^^1^56.^130.^5^81.^140.^~2, 3~^~11/01/2008~
-~08090~^~306~^141.^6^9.^~1~^~A~^^^1^98.^160.^5^118.^164.^~4~^~11/01/2008~
-~08090~^~307~^1.^5^0.^~1~^~A~^^^1^1.^1.^4^0.^1.^~1, 2, 3~^~11/01/2008~
-~08090~^~318~^3.^0^^~4~^~NC~^^^^^^^^^^~05/01/2009~
-~08090~^~319~^0.^0^^~4~^~FLA~^^^^^^^^^^~11/01/2008~
-~08090~^~320~^0.^0^^~4~^~NC~^^^^^^^^^^~05/01/2009~
-~08090~^~321~^1.^0^^~4~^~FLA~^^^^^^^^^^~11/01/2002~
-~08090~^~322~^0.^0^^~4~^~FLA~^^^^^^^^^^~11/01/2002~
-~08090~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~
-~08090~^~334~^1.^0^^~4~^~FLA~^^^^^^^^^^~11/01/2002~
-~08090~^~337~^0.^0^^~4~^~FLA~^^^^^^^^^^~11/01/2002~
-~08090~^~338~^5.^0^^~4~^~FLA~^^^^^^^^^^~11/01/2002~
-~08090~^~417~^171.^6^8.^~1~^~A~^^^1^150.^199.^5^148.^192.^~2, 3~^~05/01/2009~
-~08090~^~431~^132.^6^12.^~1~^~A~^^^1^99.^184.^5^99.^163.^~2, 3~^~05/01/2009~
-~08090~^~432~^39.^6^5.^~1~^~AS~^^^1^15.^51.^5^25.^51.^~2, 3~^~11/01/2008~
-~08090~^~435~^263.^0^^~4~^~NC~^^^^^^^^^^~05/01/2009~
-~08090~^~601~^0.^0^^~7~^~Z~^^^^^^^^^^~07/01/1982~
-~08091~^~208~^71.^0^^~4~^~NC~^^^^^^^^^^~05/01/2009~
-~08091~^~262~^0.^0^^~4~^~RP~^^^^^^^^^^~11/01/2002~
-~08091~^~263~^0.^0^^~4~^~RP~^^^^^^^^^^~11/01/2002~
-~08091~^~268~^298.^0^^~4~^~NC~^^^^^^^^^^~05/01/2009~
-~08091~^~301~^1.^12^0.^~1~^~A~^^^1^0.^2.^5^0.^1.^~2, 3~^~11/01/2008~
-~08091~^~304~^7.^12^0.^~1~^~A~^^^1^3.^10.^8^5.^8.^~2, 3~^~11/01/2008~
-~08091~^~305~^20.^12^1.^~1~^~A~^^^1^9.^29.^8^16.^24.^~2, 3~^~11/01/2008~
-~08091~^~306~^27.^12^1.^~1~^~A~^^^1^17.^37.^7^23.^30.^~2, 3~^~11/01/2008~
-~08091~^~307~^2.^0^^~4~^~RP~^^^^^^^^^^~11/01/2002~
-~08091~^~318~^0.^0^^~1~^^^^^^^^^^^~05/01/2009~
-~08091~^~319~^0.^0^^~4~^~RP~^^^^^^^^^^~11/01/2008~
-~08091~^~320~^0.^0^^~4~^~NC~^^^^^^^^^^~05/01/2009~
-~08091~^~321~^0.^0^^~4~^~RP~^^^^^^^^^^~05/01/2009~
-~08091~^~322~^0.^0^^~4~^~RP~^^^^^^^^^^~05/01/2009~
-~08091~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~
-~08091~^~334~^0.^0^^~4~^~RP~^^^^^^^^^^~05/01/2009~
-~08091~^~337~^0.^0^^~4~^~RP~^^^^^^^^^^~11/01/2002~
-~08091~^~338~^1.^0^^~4~^~RP~^^^^^^^^^^~11/01/2002~
-~08091~^~417~^28.^12^2.^~1~^~A~^^^1^16.^39.^9^22.^32.^~2, 3~^~05/01/2009~
-~08091~^~431~^14.^12^1.^~1~^~A~^^^1^6.^22.^10^10.^17.^~2, 3~^~05/01/2009~
-~08091~^~432~^14.^12^1.^~1~^~AS~^^^1^9.^20.^9^11.^16.^~2, 3~^~11/01/2008~
-~08091~^~435~^38.^0^^~4~^~NC~^^^^^^^^^^~05/01/2009~
-~08091~^~601~^0.^0^^~7~^~Z~^^^^^^^^^^~11/01/2008~
-~08092~^~208~^343.^0^^~9~^~MC~^^^^^^^^^^~03/01/2014~
-~08092~^~262~^0.^0^^~4~^~BFSN~^~08090~^~N~^^^^^^^^~12/01/2008~
-~08092~^~263~^0.^0^^~4~^~BFSN~^~08090~^~N~^^^^^^^^~12/01/2008~
-~08092~^~268~^1436.^0^^~9~^~MC~^^^^^^^^^^~03/01/2014~
-~08092~^~301~^378.^4^4.^~1~^~A~^^^1^370.^390.^3^362.^392.^~2, 3~^~12/01/2008~
-~08092~^~304~^28.^0^^~9~^~MC~^^^^^^^^^^~03/01/2014~
-~08092~^~305~^72.^0^^~9~^~MC~^^^^^^^^^^~03/01/2014~
-~08092~^~306~^135.^0^^~9~^~MC~^^^^^^^^^^~03/01/2014~
-~08092~^~307~^1121.^0^^~9~^~MC~^^^^^^^^^^~03/01/2014~
-~08092~^~318~^3.^0^^~4~^~NC~^^^^^^^^^^~12/01/2008~
-~08092~^~319~^0.^0^^~4~^~BFSN~^~08090~^^^^^^^^^~12/01/2008~
-~08092~^~320~^0.^0^^~4~^~BFSN~^~08090~^^^^^^^^^~12/01/2008~
-~08092~^~321~^1.^0^^~4~^~BFSN~^~08090~^^^^^^^^^~12/01/2008~
-~08092~^~322~^0.^0^^~4~^~BFSN~^~08090~^^^^^^^^^~12/01/2008~
-~08092~^~324~^0.^0^^~9~^~MC~^^^^^^^^^^~03/01/2014~
-~08092~^~334~^1.^0^^~4~^~BFSN~^~08090~^^^^^^^^^~12/01/2008~
-~08092~^~337~^0.^0^^~4~^~BFSN~^~08090~^^^^^^^^^~12/01/2008~
-~08092~^~338~^5.^0^^~4~^~BFSN~^~08090~^^^^^^^^^~12/01/2008~
-~08092~^~417~^176.^4^6.^~1~^~A~^^^1^165.^189.^3^157.^195.^~2, 3~^~12/01/2008~
-~08092~^~431~^134.^4^10.^~1~^~A~^^^1^111.^154.^3^100.^168.^~2, 3~^~12/01/2008~
-~08092~^~432~^42.^4^5.^~1~^~AS~^^^1^33.^56.^3^25.^58.^~2, 3~^~12/01/2008~
-~08092~^~435~^270.^0^^~4~^~NC~^^^^^^^^^^~12/01/2008~
-~08092~^~601~^0.^0^^~7~^~Z~^^~N~^^^^^^^^~12/01/2008~
-~08093~^~208~^74.^0^^~4~^~RA~^^^^^^^^^^~03/01/2014~
-~08093~^~268~^309.^0^^~4~^~RA~^^^^^^^^^^~03/01/2014~
-~08093~^~301~^64.^8^0.^~1~^~A~^^^1^51.^75.^3^61.^66.^~2, 3~^~12/01/2008~
-~08093~^~304~^6.^0^^~4~^~RA~^^^^^^^^^^~03/01/2014~
-~08093~^~305~^14.^0^^~4~^~RA~^^^^^^^^^^~03/01/2014~
-~08093~^~306~^27.^0^^~4~^~RA~^^^^^^^^^^~03/01/2014~
-~08093~^~307~^227.^0^^~4~^~RA~^^^^^^^^^^~03/01/2014~
-~08093~^~417~^27.^8^1.^~1~^~A~^^^1^16.^39.^5^21.^31.^~2, 3~^~05/01/2009~
-~08093~^~431~^15.^8^1.^~1~^~A~^^^1^9.^23.^5^12.^17.^~2, 3~^~05/01/2009~
-~08093~^~432~^11.^8^0.^~1~^~AS~^^^1^7.^16.^5^8.^13.^~2, 3~^~12/01/2008~
-~08093~^~435~^37.^0^^~4~^~NC~^^^^^^^^^^~05/01/2009~
-~08094~^~208~^363.^0^^~9~^~MC~^^^^^^^^^^~02/01/2014~
-~08094~^~262~^0.^0^^~4~^~FLM~^^^^^^^^^^~03/01/2003~
-~08094~^~263~^0.^0^^~4~^~FLM~^^^^^^^^^^~03/01/2003~
-~08094~^~268~^1519.^0^^~9~^~MC~^^^^^^^^^^~02/01/2014~
-~08094~^~301~^418.^0^^~9~^~MC~^^~Y~^^^^^^^^~02/01/2014~
-~08094~^~304~^26.^0^^~9~^~MC~^^^^^^^^^^~02/01/2014~
-~08094~^~305~^80.^0^^~9~^~MC~^^^^^^^^^^~02/01/2014~
-~08094~^~306~^132.^0^^~9~^~MC~^^^^^^^^^^~02/01/2014~
-~08094~^~307~^1644.^0^^~9~^~MC~^^^^^^^^^^~02/01/2014~
-~08094~^~318~^16.^0^^~9~^~MC~^^^^^^^^^^~02/01/2014~
-~08094~^~319~^3.^0^^~4~^~BNA~^~08094~^^^^^^^^^~03/01/2003~
-~08094~^~320~^4.^0^^~4~^~NC~^^^^^^^^^^~02/01/2014~
-~08094~^~321~^2.^0^^~4~^~BNA~^~08094~^^^^^^^^^~03/01/2003~
-~08094~^~322~^0.^0^^~4~^~BNA~^~08094~^^^^^^^^^~03/01/2003~
-~08094~^~324~^2.^0^^~4~^~FLM~^^^^^^^^^^~02/01/2014~
-~08094~^~334~^1.^0^^~4~^~BNA~^~08094~^^^^^^^^^~03/01/2003~
-~08094~^~337~^0.^0^^~4~^~FLM~^^^^^^^^^^~03/01/2003~
-~08094~^~338~^4.^0^^~4~^~FLM~^^^^^^^^^^~03/01/2003~
-~08094~^~417~^168.^0^^~9~^~MC~^^~Y~^^^^^^^^~02/01/2014~
-~08094~^~431~^154.^0^^~4~^~NR~^^~Y~^^^^^^^^~02/01/2014~
-~08094~^~432~^14.^0^^~4~^~CAZN~^^^^^^^^^^~02/01/2014~
-~08094~^~435~^276.^0^^~4~^~NC~^^^^^^^^^^~02/01/2014~
-~08094~^~601~^2.^0^^~9~^~MC~^^^^^^^^^^~04/01/2003~
-~08096~^~208~^340.^0^^~9~^~MC~^^^^^^^^^^~03/01/2014~
-~08096~^~268~^1421.^0^^~9~^~MC~^^^^^^^^^^~03/01/2014~
-~08096~^~301~^418.^0^^~9~^~MC~^^~Y~^^^^^^^^~03/01/2014~
-~08096~^~304~^27.^0^^~9~^~MC~^^^^^^^^^^~03/01/2014~
-~08096~^~305~^93.^0^^~9~^~MC~^^^^^^^^^^~03/01/2014~
-~08096~^~306~^210.^0^^~9~^~MC~^^^^^^^^^^~03/01/2014~
-~08096~^~307~^1523.^0^^~9~^~MC~^^^^^^^^^^~03/01/2014~
-~08096~^~318~^0.^0^^~9~^~MC~^^^^^^^^^^~07/01/1982~
-~08096~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2002~
-~08096~^~417~^178.^0^^~9~^~MC~^^~Y~^^^^^^^^~03/01/2014~
-~08096~^~601~^0.^0^^~9~^~MC~^^^^^^^^^^~01/01/1996~
-~08100~^~208~^370.^0^^~4~^~NC~^^^^^^^^^^~07/01/1982~
-~08100~^~262~^0.^0^^~4~^~BFNN~^~20044~^^^^^^^^^~02/01/2003~
-~08100~^~263~^0.^0^^~4~^~BFNN~^~20044~^^^^^^^^^~02/01/2003~
-~08100~^~268~^1548.^0^^~4~^^^^^^^^^^^~03/01/2008~
-~08100~^~301~^5.^0^^~9~^~MC~^^^^^^^^^^~04/01/2013~
-~08100~^~304~^23.^0^^~1~^^^^^^^^^^^~07/01/1982~
-~08100~^~305~^124.^0^^~1~^^^^^^^^^^^~07/01/1982~
-~08100~^~306~^143.^0^^~1~^^^^^^^^^^^~07/01/1982~
-~08100~^~307~^6.^0^^~1~^^^^^^^^^^^~07/01/1982~
-~08100~^~318~^0.^0^^~4~^^^^^^^^^^^~12/01/2003~
-~08100~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2002~
-~08100~^~320~^0.^0^^~4~^~NC~^^~N~^^^^^^^^~12/01/2003~
-~08100~^~321~^0.^0^^~4~^~BFNN~^~20044~^^^^^^^^^~02/01/2003~
-~08100~^~322~^0.^0^^~4~^~BFNN~^~20044~^^^^^^^^^~02/01/2003~
-~08100~^~324~^0.^0^^~4~^~BFNN~^~20044~^^^^^^^^^~01/01/2011~
-~08100~^~334~^0.^0^^~4~^~BFNN~^~20044~^^^^^^^^^~02/01/2003~
-~08100~^~337~^0.^0^^~4~^~BFNN~^~20044~^^^^^^^^^~02/01/2003~
-~08100~^~338~^0.^0^^~4~^~BFNN~^~20044~^^^^^^^^^~02/01/2003~
-~08100~^~417~^29.^0^^~1~^^^^^^^^^^^~07/01/1982~
-~08100~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~12/01/2000~
-~08100~^~432~^29.^0^^~1~^^^^^^^^^^^~12/01/2003~
-~08100~^~435~^29.^0^^~4~^~NC~^^^^^^^^^^~03/01/2008~
-~08100~^~601~^0.^0^^~7~^~Z~^^^^^^^^^^~07/01/1982~
-~08102~^~208~^370.^0^^~4~^~NC~^^^^^^^^^^~07/01/1982~
-~08102~^~262~^0.^0^^~4~^~FLA~^^^^^^^^^^~02/01/2003~
-~08102~^~263~^0.^0^^~4~^~FLA~^^^^^^^^^^~02/01/2003~
-~08102~^~268~^1548.^0^^~4~^^^^^^^^^^^~10/01/2008~
-~08102~^~301~^606.^1^^~8~^~LC~^^^^^^^^^^~10/01/2008~
-~08102~^~304~^27.^1^^~1~^^^^^^^^^^^~07/01/1982~
-~08102~^~305~^115.^3^2.^~1~^^^^^^^^^^^~07/01/1982~
-~08102~^~306~^120.^1^^~1~^^^^^^^^^^^~07/01/1982~
-~08102~^~307~^7.^1^^~1~^^^^^^^^^^^~07/01/1982~
-~08102~^~318~^0.^0^^~4~^~FLA~^^^^^^^^^^~10/01/2008~
-~08102~^~319~^0.^0^^~4~^~FLA~^^^^^^^^^^~02/01/2003~
-~08102~^~320~^0.^0^^~4~^~FLA~^^^^^^^^^^~10/01/2008~
-~08102~^~321~^0.^0^^~4~^~FLA~^^^^^^^^^^~10/01/2008~
-~08102~^~322~^0.^0^^~4~^~FLA~^^^^^^^^^^~10/01/2008~
-~08102~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~
-~08102~^~334~^0.^0^^~4~^~FLA~^^^^^^^^^^~10/01/2008~
-~08102~^~337~^0.^0^^~4~^~FLA~^^^^^^^^^^~02/01/2003~
-~08102~^~338~^16.^0^^~4~^~FLA~^^^^^^^^^^~02/01/2003~
-~08102~^~417~^121.^1^^~8~^~LC~^^^^^^^^^^~10/01/2008~
-~08102~^~431~^87.^0^^~4~^~NC~^^^^^^^^^^~05/01/2000~
-~08102~^~432~^34.^4^4.^~1~^^^^^^^^^^^
-~08102~^~435~^182.^0^^~4~^~NC~^^^^^^^^^^~10/01/2008~
-~08102~^~601~^0.^0^^~7~^~Z~^^^^^^^^^^~07/01/1982~
-~08103~^~208~^50.^0^^~4~^~RP~^^^^^^^^^^~11/01/2008~
-~08103~^~262~^0.^0^^~4~^~RP~^^^^^^^^^^~11/01/2008~
-~08103~^~263~^0.^0^^~4~^~RP~^^^^^^^^^^~11/01/2008~
-~08103~^~268~^208.^0^^~4~^~RP~^^^^^^^^^^~11/01/2008~
-~08103~^~301~^87.^0^^~4~^~RP~^^^^^^^^^^~11/01/2008~
-~08103~^~304~^5.^0^^~4~^~RP~^^^^^^^^^^~11/01/2008~
-~08103~^~305~^15.^0^^~4~^~RP~^^^^^^^^^^~11/01/2008~
-~08103~^~306~^16.^0^^~4~^~RP~^^^^^^^^^^~11/01/2008~
-~08103~^~307~^6.^0^^~4~^~RP~^^^^^^^^^^~11/01/2008~
-~08103~^~318~^0.^0^^~4~^~RP~^^^^^^^^^^~11/01/2008~
-~08103~^~319~^0.^0^^~4~^~RP~^^^^^^^^^^~11/01/2008~
-~08103~^~320~^0.^0^^~4~^~RP~^^^^^^^^^^~11/01/2008~
-~08103~^~321~^0.^0^^~4~^~RP~^^^^^^^^^^~11/01/2008~
-~08103~^~322~^0.^0^^~4~^~RP~^^^^^^^^^^~11/01/2008~
-~08103~^~324~^0.^0^^~4~^~RP~^^~N~^^^^^^^^~11/01/2008~
-~08103~^~334~^0.^0^^~4~^~RP~^^^^^^^^^^~11/01/2008~
-~08103~^~337~^0.^0^^~4~^~RP~^^^^^^^^^^~11/01/2008~
-~08103~^~338~^2.^0^^~4~^~RP~^^^^^^^^^^~11/01/2008~
-~08103~^~417~^12.^0^^~4~^~RP~^^^^^^^^^^~11/01/2008~
-~08103~^~431~^8.^0^^~4~^~RP~^^~Y~^^^^^^^^~11/01/2008~
-~08103~^~432~^3.^0^^~4~^~RP~^^^^^^^^^^~11/01/2008~
-~08103~^~435~^18.^0^^~4~^~NC~^^^^^^^^^^~03/01/2009~
-~08103~^~601~^0.^0^^~4~^~RP~^^^^^^^^^^~11/01/2008~
-~08104~^~208~^360.^0^^~4~^~NC~^^^^^^^^^^~10/01/2008~
-~08104~^~262~^0.^0^^~4~^~FLM~^^^^^^^^^^~02/01/2003~
-~08104~^~263~^0.^0^^~4~^~FLM~^^^^^^^^^^~02/01/2003~
-~08104~^~268~^1508.^0^^~4~^~NC~^^^^^^^^^^~10/01/2008~
-~08104~^~301~^711.^11^76.^~1~^~A~^^^1^330.^1030.^10^540.^881.^~2, 3~^~10/01/2008~
-~08104~^~304~^45.^11^0.^~1~^~A~^^^1^40.^50.^10^43.^47.^~2, 3~^~10/01/2008~
-~08104~^~305~^252.^11^36.^~1~^~A~^^^1^150.^487.^10^171.^332.^~2, 3~^~10/01/2008~
-~08104~^~306~^153.^11^2.^~1~^~A~^^^1^139.^177.^10^146.^159.^~2, 3~^~10/01/2008~
-~08104~^~307~^124.^11^50.^~1~^~A~^^^1^7.^435.^10^12.^236.^~1, 2, 3~^~10/01/2008~
-~08104~^~318~^0.^1^^~8~^~LC~^^^^^^^^^^~10/01/2008~
-~08104~^~319~^0.^0^^~4~^~FLM~^^^^^^^^^^~02/01/2003~
-~08104~^~320~^0.^0^^~4~^~NC~^^^^^^^^^^~10/01/2008~
-~08104~^~321~^0.^0^^~4~^~FLM~^^^^^^^^^^~10/01/2008~
-~08104~^~322~^0.^0^^~4~^~FLM~^^^^^^^^^^~10/01/2008~
-~08104~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~
-~08104~^~334~^0.^0^^~4~^~FLM~^^^^^^^^^^~10/01/2008~
-~08104~^~337~^0.^0^^~4~^~FLM~^^^^^^^^^^~10/01/2008~
-~08104~^~338~^16.^0^^~4~^~FLM~^^^^^^^^^^~10/01/2008~
-~08104~^~417~^121.^1^^~8~^~LC~^^~Y~^^^^^^^^~10/01/2008~
-~08104~^~431~^87.^0^^~4~^~NC~^^^^^^^^^^~05/01/2000~
-~08104~^~432~^34.^4^4.^~1~^^^^^^^^^^^
-~08104~^~435~^182.^0^^~4~^~NC~^^^^^^^^^^~11/01/2008~
-~08104~^~601~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~
-~08105~^~208~^55.^0^^~4~^~NC~^^^^^^^^^^~11/01/2008~
-~08105~^~268~^231.^0^^~4~^~NC~^^^^^^^^^^~11/01/2008~
-~08105~^~301~^97.^26^6.^~1~^~A~^^^1^48.^157.^25^82.^111.^~2, 3~^~11/01/2008~
-~08105~^~304~^7.^26^0.^~1~^~A~^^^1^4.^9.^25^6.^7.^~2, 3~^~11/01/2008~
-~08105~^~305~^37.^26^2.^~1~^~A~^^^1^20.^61.^25^31.^41.^~2, 3~^~11/01/2008~
-~08105~^~306~^23.^26^0.^~1~^~A~^^^1^16.^29.^25^22.^24.^~2, 3~^~11/01/2008~
-~08105~^~307~^18.^26^3.^~1~^~A~^^^1^4.^51.^25^10.^24.^~1, 2, 3~^~11/01/2008~
-~08105~^~318~^0.^0^^~1~^~AS~^^~N~^^^^^^^^~11/01/2008~
-~08105~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2002~
-~08105~^~320~^0.^0^^~1~^~AS~^^~N~^^^^^^^^~11/01/2008~
-~08105~^~417~^77.^26^14.^~1~^~A~^^^1^20.^237.^25^46.^107.^~2, 3~^~11/01/2008~
-~08105~^~431~^60.^26^13.^~1~^~A~^^^1^8.^207.^25^32.^88.^~2, 3~^~11/01/2008~
-~08105~^~432~^17.^26^1.^~1~^~AS~^^^1^4.^41.^25^13.^20.^~2, 3~^~11/01/2008~
-~08105~^~435~^119.^0^^~4~^~NC~^^^^^^^^^^~11/01/2008~
-~08105~^~601~^0.^0^^~7~^~Z~^^^^^^^^^^~07/01/1982~
-~08106~^~208~^366.^0^^~4~^~NC~^^^^^^^^^^~07/01/1982~
-~08106~^~262~^0.^0^^~4~^~FLM~^^^^^^^^^^~02/01/2003~
-~08106~^~263~^0.^0^^~4~^~FLM~^^^^^^^^^^~02/01/2003~
-~08106~^~268~^1531.^0^^~4~^^^^^^^^^^^~02/01/2005~
-~08106~^~301~^357.^1^^~8~^~LC~^^~Y~^^^^^^^^~02/01/2003~
-~08106~^~304~^34.^1^^~1~^^^^^^^^^^^~07/01/1982~
-~08106~^~305~^103.^1^^~1~^^^^^^^^^^^~07/01/1982~
-~08106~^~306~^115.^1^^~1~^^^^^^^^^^^~07/01/1982~
-~08106~^~307~^571.^0^^~9~^~MC~^^^^^^^^^^~09/01/2012~
-~08106~^~318~^4464.^1^^~8~^~LC~^^~Y~^^^^^^^^~02/01/2003~
-~08106~^~319~^1341.^0^^~4~^~NC~^^^^^^^^^^~04/01/2003~
-~08106~^~320~^1341.^0^^~4~^~NC~^^^^^^^^^^~04/01/2003~
-~08106~^~321~^0.^0^^~4~^~FLM~^^^^^^^^^^~04/01/2003~
-~08106~^~322~^0.^0^^~4~^~FLM~^^^^^^^^^^~04/01/2003~
-~08106~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~
-~08106~^~334~^0.^0^^~4~^~FLM~^^^^^^^^^^~04/01/2003~
-~08106~^~337~^0.^0^^~4~^~FLM~^^^^^^^^^^~02/01/2003~
-~08106~^~338~^16.^0^^~4~^~FLM~^^^^^^^^^^~02/01/2003~
-~08106~^~417~^357.^0^^~8~^~LC~^^^^^^^^^^~04/01/2003~
-~08106~^~431~^323.^0^^~4~^~NC~^^^^^^^^^^~05/01/2000~
-~08106~^~432~^34.^4^4.^~1~^^^^^^^^^^^
-~08106~^~435~^583.^0^^~4~^~NC~^^^^^^^^^^~01/01/2007~
-~08106~^~601~^0.^0^^~7~^~Z~^^^^^^^^^^~07/01/1982~
-~08107~^~208~^62.^0^^~4~^~FLA~^^^^^^^^^^~07/01/2003~
-~08107~^~262~^0.^0^^~4~^~FLA~^^^^^^^^^^~04/01/2003~
-~08107~^~263~^0.^0^^~4~^~FLA~^^^^^^^^^^~04/01/2003~
-~08107~^~268~^259.^0^^~4~^~FLA~^^^^^^^^^^~07/01/2003~
-~08107~^~301~^64.^0^^~4~^~FLA~^^^^^^^^^^~07/01/2003~
-~08107~^~304~^6.^0^^~4~^~FLA~^^^^^^^^^^~07/01/2003~
-~08107~^~305~^18.^0^^~4~^~FLA~^^^^^^^^^^~07/01/2003~
-~08107~^~306~^20.^0^^~4~^~FLA~^^^^^^^^^^~07/01/2003~
-~08107~^~307~^102.^0^^~4~^~FLA~^^^^^^^^^^~09/01/2012~
-~08107~^~318~^773.^0^^~4~^~FLA~^^^^^^^^^^~07/01/2003~
-~08107~^~319~^232.^0^^~4~^~FLA~^^^^^^^^^^~07/01/2003~
-~08107~^~320~^232.^0^^~4~^~FLA~^^^^^^^^^^~07/01/2003~
-~08107~^~321~^0.^0^^~4~^~FLA~^^^^^^^^^^~07/01/2003~
-~08107~^~322~^0.^0^^~4~^~FLA~^^^^^^^^^^~07/01/2003~
-~08107~^~334~^0.^0^^~4~^~FLA~^^^^^^^^^^~07/01/2003~
-~08107~^~337~^0.^0^^~4~^~FLA~^^^^^^^^^^~04/01/2003~
-~08107~^~338~^3.^0^^~4~^~FLA~^^^^^^^^^^~07/01/2003~
-~08107~^~417~^62.^0^^~4~^~FLA~^^^^^^^^^^~07/01/2003~
-~08107~^~431~^56.^0^^~4~^~FLA~^^^^^^^^^^~07/01/2003~
-~08107~^~432~^6.^0^^~4~^~FLA~^^^^^^^^^^~07/01/2003~
-~08107~^~435~^101.^0^^~4~^~NC~^^^^^^^^^^~12/01/2003~
-~08107~^~601~^0.^0^^~4~^~FLA~^^^^^^^^^^~04/01/2003~
-~08116~^~208~^365.^0^^~9~^~MC~^^^^^^^^^^~03/01/2013~
-~08116~^~262~^0.^0^^~9~^~MC~^^^^^^^^^^~03/01/2013~
-~08116~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2015~
-~08116~^~268~^1527.^0^^~9~^~MC~^^^^^^^^^^~03/01/2013~
-~08116~^~301~^286.^0^^~9~^~MC~^^~Y~^^^^^^^^~03/01/2015~
-~08116~^~304~^16.^0^^~9~^~MC~^^^^^^^^^^~03/01/2013~
-~08116~^~305~^157.^0^^~9~^~MC~^^^^^^^^^^~03/01/2015~
-~08116~^~306~^100.^0^^~9~^~MC~^^^^^^^^^^~03/01/2015~
-~08116~^~307~^0.^0^^~9~^~MC~^^^^^^^^^^~03/01/2015~
-~08116~^~318~^0.^0^^~9~^~MC~^^^^^^^^^^~03/01/2015~
-~08116~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2015~
-~08116~^~320~^0.^0^^~4~^~NC~^^~N~^^^^^^^^~03/01/2015~
-~08116~^~321~^0.^0^^~4~^~FLM~^^^^^^^^^^~03/01/2015~
-~08116~^~322~^0.^0^^~4~^~FLM~^^^^^^^^^^~03/01/2015~
-~08116~^~324~^0.^0^^~9~^~MC~^^^^^^^^^^~03/01/2013~
-~08116~^~334~^0.^0^^~4~^~FLM~^^^^^^^^^^~03/01/2015~
-~08116~^~337~^0.^0^^~4~^~FLM~^^^^^^^^^^~03/01/2015~
-~08116~^~338~^14.^0^^~4~^~FLM~^^^^^^^^^^~03/01/2015~
-~08116~^~417~^1140.^0^^~9~^~MC~^^~Y~^^^^^^^^~03/01/2015~
-~08116~^~431~^1121.^0^^~4~^~NR~^^~Y~^^^^^^^^~03/01/2015~
-~08116~^~432~^19.^0^^~4~^~CAZN~^^^^^^^^^^~03/01/2013~
-~08116~^~435~^1925.^0^^~4~^~NC~^^^^^^^^^^~03/01/2015~
-~08116~^~601~^0.^0^^~9~^~MC~^^^^^^^^^^~03/01/2013~
-~08120~^~208~^379.^0^^~4~^~NC~^^^^^^^^^^~11/01/2006~
-~08120~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~12/01/2000~
-~08120~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~12/01/2000~
-~08120~^~268~^1586.^0^^~4~^~NC~^^^^^^^^^^~11/01/2006~
-~08120~^~301~^52.^33^0.^~1~^^^^^^^^^^^~11/01/2006~
-~08120~^~304~^138.^4^1.^~1~^~A~^^^1^133.^141.^3^132.^143.^~2, 3~^~10/01/2006~
-~08120~^~305~^410.^4^10.^~1~^~A~^^^1^384.^434.^3^376.^443.^~2, 3~^~10/01/2006~
-~08120~^~306~^362.^4^4.^~1~^~A~^^^1^351.^369.^3^348.^375.^~2, 3~^~10/01/2006~
-~08120~^~307~^6.^4^0.^~1~^~A~^^^1^5.^7.^3^4.^7.^~2, 3~^~11/01/2006~
-~08120~^~318~^0.^1^^~1~^~A~^^^^^^^^^^~11/01/2006~
-~08120~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2002~
-~08120~^~320~^0.^1^^~1~^~A~^^~N~^^^^^^^^~11/01/2006~
-~08120~^~321~^0.^1^^~1~^~A~^^^^^^^^^~1~^~10/01/2002~
-~08120~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~10/01/2002~
-~08120~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~
-~08120~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~10/01/2002~
-~08120~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~10/01/2002~
-~08120~^~338~^180.^1^^~1~^~A~^^^^^^^^^^~10/01/2002~
-~08120~^~417~^32.^24^3.^~1~^^^^^^^^^^^~11/01/2006~
-~08120~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~12/01/2000~
-~08120~^~432~^32.^0^^~4~^~NR~^^^^^^^^^^~11/01/2006~
-~08120~^~435~^32.^0^^~4~^~NC~^^^^^^^^^^~12/01/2006~
-~08120~^~601~^0.^0^^~7~^~Z~^^^^^^^^^^~07/01/1982~
-~08121~^~208~^71.^0^^~4~^~NC~^^^^^^^^^^~11/01/2006~
-~08121~^~262~^0.^0^^~4~^~FLM~^^^^^^^^^^~03/01/2003~
-~08121~^~263~^0.^0^^~4~^~FLM~^^^^^^^^^^~03/01/2003~
-~08121~^~268~^297.^0^^~4~^~NC~^^^^^^^^^^~11/01/2006~
-~08121~^~301~^9.^4^0.^~1~^~A~^^^1^8.^10.^3^8.^10.^~2, 3~^~11/01/2006~
-~08121~^~304~^27.^8^0.^~1~^~A~^^^1^25.^29.^7^26.^28.^~2, 3~^~11/01/2006~
-~08121~^~305~^77.^8^2.^~1~^~A~^^^1^71.^90.^7^71.^82.^~2, 3~^~11/01/2006~
-~08121~^~306~^70.^8^1.^~1~^~A~^^^1^63.^77.^7^65.^73.^~2, 3~^~11/01/2006~
-~08121~^~307~^4.^8^0.^~1~^~A~^^^1^3.^6.^7^2.^4.^~1, 2, 3~^~11/01/2006~
-~08121~^~318~^0.^0^^~4~^~FLM~^^^^^^^^^^~03/01/2003~
-~08121~^~319~^0.^0^^~4~^~FLM~^^^^^^^^^^~03/01/2003~
-~08121~^~320~^0.^0^^~4~^~FLM~^^^^^^^^^^~03/01/2003~
-~08121~^~321~^0.^0^^~4~^~FLM~^^^^^^^^^^~03/01/2003~
-~08121~^~322~^0.^0^^~4~^~FLM~^^^^^^^^^^~03/01/2003~
-~08121~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~
-~08121~^~334~^0.^0^^~4~^~FLM~^^^^^^^^^^~03/01/2003~
-~08121~^~337~^0.^0^^~4~^~FLM~^^^^^^^^^^~03/01/2003~
-~08121~^~338~^180.^0^^~4~^~FLM~^^^^^^^^^^~03/01/2003~
-~08121~^~417~^6.^8^0.^~1~^~A~^^^1^4.^10.^7^4.^7.^~2, 3~^~11/01/2006~
-~08121~^~431~^0.^0^^~4~^~FLM~^^^^^^^^^^~11/01/2006~
-~08121~^~432~^6.^0^^~4~^~NR~^^^^^^^^^^~11/01/2006~
-~08121~^~435~^6.^0^^~4~^~NC~^^^^^^^^^^~12/01/2006~
-~08121~^~601~^0.^0^^~7~^~Z~^^^^^^^^^^~11/01/2006~
-~08122~^~208~^362.^0^^~9~^~MC~^^^^^^^^^^~08/01/2012~
-~08122~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~12/01/2000~
-~08122~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~12/01/2000~
-~08122~^~268~^1515.^0^^~9~^~MC~^^^^^^^^^^~08/01/2012~
-~08122~^~301~^351.^4^11.^~1~^~A~^^^1^328.^383.^3^313.^387.^~2, 3~^~08/01/2012~
-~08122~^~304~^128.^4^1.^~1~^~A~^^^1^125.^131.^3^123.^131.^~2, 3~^~08/01/2012~
-~08122~^~305~^423.^4^3.^~1~^~A~^^^1^415.^433.^3^410.^435.^~2, 3~^~08/01/2012~
-~08122~^~306~^366.^4^1.^~1~^~A~^^^1^363.^369.^3^360.^370.^~2, 3~^~08/01/2012~
-~08122~^~307~^220.^4^7.^~1~^~A~^^^1^206.^240.^3^196.^242.^~2, 3~^~08/01/2012~
-~08122~^~318~^2574.^0^^~1~^~AS~^^~Y~^^^^^^^^~08/01/2012~
-~08122~^~319~^772.^2^^~1~^~A~^^^1^759.^786.^1^^^^~08/01/2012~
-~08122~^~320~^772.^0^^~1~^~AS~^^^^^^^^^^~08/01/2012~
-~08122~^~321~^0.^0^^~7~^~Z~^^^^^^^^^^~12/01/2002~
-~08122~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~12/01/2002~
-~08122~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~
-~08122~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~12/01/2002~
-~08122~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~12/01/2002~
-~08122~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~12/01/2002~
-~08122~^~417~^32.^0^^~4~^~BFZN~^~08120~^^^^^^^^^~08/01/2012~
-~08122~^~431~^0.^0^^~7~^~Z~^^~N~^^^^^^^^~08/01/2012~
-~08122~^~432~^32.^0^^~4~^~BFZN~^~08120~^^^^^^^^^~05/01/2010~
-~08122~^~435~^32.^0^^~4~^~NC~^^^^^^^^^^~08/01/2012~
-~08122~^~601~^0.^0^^~9~^~MC~^^^^^^^^^^~08/01/2012~
-~08123~^~208~^68.^0^^~4~^~NC~^^^^^^^^^^~12/01/2006~
-~08123~^~262~^0.^0^^~4~^~RP~^^^^^^^^^^~08/01/2012~
-~08123~^~263~^0.^0^^~4~^~RP~^^^^^^^^^^~08/01/2012~
-~08123~^~268~^283.^0^^~4~^~NC~^^^^^^^^^^~12/01/2006~
-~08123~^~301~^80.^2^^~1~^~A~^^^1^70.^90.^1^^^^~12/01/2006~
-~08123~^~304~^26.^4^1.^~1~^~A~^^^1^24.^29.^3^22.^29.^~2, 3~^~12/01/2006~
-~08123~^~305~^77.^4^4.^~1~^~A~^^^1^71.^89.^3^63.^89.^~2, 3~^~12/01/2006~
-~08123~^~306~^61.^4^3.^~1~^~A~^^^1^53.^71.^3^49.^72.^~2, 3~^~12/01/2006~
-~08123~^~307~^49.^4^2.^~1~^~A~^^^1^44.^56.^3^40.^57.^~2, 3~^~12/01/2006~
-~08123~^~318~^433.^0^^~4~^~RP~^^^^^^^^^^~08/01/2012~
-~08123~^~319~^130.^0^^~4~^~RP~^^^^^^^^^^~08/01/2012~
-~08123~^~320~^130.^0^^~4~^~RP~^^^^^^^^^^~08/01/2012~
-~08123~^~321~^0.^0^^~4~^~RP~^^^^^^^^^^~08/01/2012~
-~08123~^~322~^0.^0^^~4~^~RP~^^^^^^^^^^~08/01/2012~
-~08123~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~
-~08123~^~334~^0.^0^^~4~^~RP~^^^^^^^^^^~08/01/2012~
-~08123~^~337~^0.^0^^~4~^~RP~^^^^^^^^^^~08/01/2012~
-~08123~^~338~^0.^0^^~4~^~RP~^^^^^^^^^^~08/01/2012~
-~08123~^~417~^44.^4^3.^~1~^~A~^^^1^37.^52.^3^33.^55.^~2, 3~^~12/01/2006~
-~08123~^~431~^39.^0^^~4~^~NR~^^~Y~^^^^^^^^~12/01/2006~
-~08123~^~432~^5.^0^^~4~^~RP~^^^^^^^^^^~08/01/2012~
-~08123~^~435~^71.^0^^~4~^~NC~^^^^^^^^^^~12/01/2006~
-~08123~^~601~^0.^0^^~4~^~RP~^^^^^^^^^^~08/01/2012~
-~08124~^~208~^366.^0^^~9~^~MC~^^^^^^^^^^~03/01/2014~
-~08124~^~262~^0.^0^^~4~^~FLM~^^^^^^^^^^~11/01/2002~
-~08124~^~263~^0.^0^^~4~^~FLM~^^^^^^^^^^~11/01/2002~
-~08124~^~268~^1532.^0^^~9~^~MC~^^^^^^^^^^~03/01/2014~
-~08124~^~301~^243.^0^^~9~^~MC~^^~Y~^^^^^^^^~03/01/2014~
-~08124~^~304~^87.^0^^~9~^~MC~^^^^^^^^^^~03/01/2014~
-~08124~^~305~^294.^0^^~9~^~MC~^^^^^^^^^^~03/01/2014~
-~08124~^~306~^327.^0^^~9~^~MC~^^^^^^^^^^~03/01/2014~
-~08124~^~307~^454.^0^^~9~^~MC~^^^^^^^^^^~03/01/2014~
-~08124~^~318~^2454.^0^^~9~^~MC~^^~Y~^^^^^^^^~03/01/2014~
-~08124~^~417~^205.^0^^~9~^~MC~^^~Y~^^^^^^^^~03/01/2014~
-~08124~^~601~^0.^0^^~9~^~MC~^^^^^^^^^^~01/01/1996~
-~08128~^~208~^369.^0^^~4~^~BFZN~^~08410~^^^^^^^^^~08/01/2012~
-~08128~^~262~^0.^0^^~4~^~FLA~^^^^^^^^^^~11/01/2002~
-~08128~^~263~^0.^0^^~4~^~FLA~^^^^^^^^^^~11/01/2002~
-~08128~^~268~^1542.^0^^~4~^~BFZN~^^^^^^^^^^~08/01/2012~
-~08128~^~301~^234.^6^8.^~1~^~A~^^~Y~^1^211.^264.^4^209.^258.^~2, 3~^~08/01/2012~
-~08128~^~304~^92.^6^0.^~1~^~A~^^^1^75.^101.^4^89.^94.^~2, 3~^~08/01/2012~
-~08128~^~305~^322.^6^2.^~1~^~A~^^^1^245.^362.^3^313.^329.^~2, 3~^~08/01/2012~
-~08128~^~306~^284.^6^2.^~1~^~A~^^^1^235.^310.^4^276.^290.^~2, 3~^~08/01/2012~
-~08128~^~307~^434.^6^16.^~1~^~A~^^^1^373.^478.^3^380.^487.^~2, 3~^~08/01/2012~
-~08128~^~318~^1467.^0^^~1~^~AS~^^~Y~^^^^^^^^~08/01/2012~
-~08128~^~319~^440.^1^^~1~^~A~^^^^^^^^^^~08/01/2012~
-~08128~^~320~^440.^0^^~1~^~AS~^^^^^^^^^^~08/01/2012~
-~08128~^~321~^1.^0^^~4~^~FLA~^^^^^^^^^^~08/01/2012~
-~08128~^~322~^0.^0^^~4~^~FLA~^^^^^^^^^^~11/01/2002~
-~08128~^~324~^0.^0^^~9~^~MC~^^^^^^^^^^~05/01/2010~
-~08128~^~334~^1.^0^^~4~^~FLA~^^^^^^^^^^~08/01/2012~
-~08128~^~337~^0.^0^^~4~^~FLA~^^^^^^^^^^~11/01/2002~
-~08128~^~338~^123.^0^^~4~^~FLA~^^^^^^^^^^~08/01/2012~
-~08128~^~417~^191.^0^^~4~^~BFZN~^~08410~^~Y~^^^^^^^^~08/01/2012~
-~08128~^~431~^175.^0^^~4~^~NR~^^~Y~^^^^^^^^~08/01/2012~
-~08128~^~432~^17.^0^^~4~^~FLA~^^^^^^^^^^~08/01/2012~
-~08128~^~435~^314.^0^^~4~^~NC~^^^^^^^^^^~08/01/2012~
-~08128~^~601~^0.^0^^~9~^~MC~^^^^^^^^^^~01/01/1996~
-~08129~^~208~^96.^0^^~4~^~RP~^^^^^^^^^^~08/01/2012~
-~08129~^~262~^0.^0^^~4~^~RP~^^^^^^^^^^~02/01/2003~
-~08129~^~263~^0.^0^^~4~^~RP~^^^^^^^^^^~02/01/2003~
-~08129~^~268~^402.^0^^~4~^~RP~^^^^^^^^^^~08/01/2012~
-~08129~^~301~^61.^0^^~4~^~RP~^^^^^^^^^^~08/01/2012~
-~08129~^~304~^24.^0^^~4~^~RP~^^^^^^^^^^~08/01/2012~
-~08129~^~305~^80.^0^^~4~^~RP~^^^^^^^^^^~08/01/2012~
-~08129~^~306~^71.^0^^~4~^~RP~^^^^^^^^^^~08/01/2012~
-~08129~^~307~^111.^0^^~4~^~RP~^^^^^^^^^^~08/01/2012~
-~08129~^~318~^366.^0^^~4~^~RP~^^^^^^^^^^~08/01/2012~
-~08129~^~319~^110.^0^^~4~^~RP~^^^^^^^^^^~08/01/2012~
-~08129~^~320~^110.^0^^~4~^~RP~^^^^^^^^^^~08/01/2012~
-~08129~^~321~^0.^0^^~4~^~RP~^^^^^^^^^^~02/01/2003~
-~08129~^~322~^0.^0^^~4~^~RP~^^^^^^^^^^~02/01/2003~
-~08129~^~324~^0.^0^^~4~^~RP~^^^^^^^^^^~05/01/2010~
-~08129~^~334~^0.^0^^~4~^~RP~^^^^^^^^^^~02/01/2003~
-~08129~^~337~^0.^0^^~4~^~RP~^^^^^^^^^^~02/01/2003~
-~08129~^~338~^31.^0^^~4~^~RP~^^^^^^^^^^~08/01/2012~
-~08129~^~417~^48.^0^^~4~^~RP~^^^^^^^^^^~08/01/2012~
-~08129~^~431~^43.^0^^~4~^~RP~^^~Y~^^^^^^^^~08/01/2012~
-~08129~^~432~^4.^0^^~4~^~RP~^^^^^^^^^^~08/01/2012~
-~08129~^~435~^78.^0^^~4~^~NC~^^^^^^^^^^~08/01/2012~
-~08129~^~601~^0.^0^^~4~^~RP~^^^^^^^^^^~02/01/2003~
-~08130~^~208~^368.^0^^~9~^~MC~^^^^^^^^^^~05/01/2013~
-~08130~^~268~^1540.^0^^~9~^~MC~^^^^^^^^^^~05/01/2013~
-~08130~^~301~^226.^6^3.^~1~^~A~^^^1^217.^241.^5^215.^236.^~2, 3~^~04/01/2014~
-~08130~^~304~^88.^6^0.^~1~^~A~^^^1^85.^90.^5^86.^89.^~2, 3~^~04/01/2014~
-~08130~^~305~^297.^6^3.^~1~^~A~^^^1^283.^303.^5^289.^305.^~2, 3~^~04/01/2014~
-~08130~^~306~^424.^6^6.^~1~^~A~^^^1^410.^455.^5^406.^441.^~2, 3~^~04/01/2014~
-~08130~^~307~^506.^6^10.^~1~^~A~^^^1^478.^538.^5^479.^532.^~2, 3~^~04/01/2014~
-~08130~^~318~^1735.^0^^~1~^~AS~^^^^^^^^^^~04/01/2014~
-~08130~^~319~^520.^3^14.^~1~^~A~^^^1^505.^548.^2^458.^581.^~2, 3~^~04/01/2014~
-~08130~^~320~^520.^0^^~1~^~AS~^^^^^^^^^^~04/01/2014~
-~08130~^~321~^2.^1^^~1~^~A~^^^^^^^^^^~04/01/2014~
-~08130~^~322~^0.^1^^~1~^~A~^^^^^^^^^~1~^~04/01/2014~
-~08130~^~334~^0.^1^^~1~^~A~^^^^^^^^^~1~^~04/01/2014~
-~08130~^~337~^0.^1^^~1~^~A~^^^^^^^^^~1~^~04/01/2014~
-~08130~^~338~^57.^1^^~1~^~A~^^^^^^^^^^~04/01/2014~
-~08130~^~417~^128.^3^1.^~1~^~A~^^^1^126.^130.^2^123.^133.^~2, 3~^~04/01/2014~
-~08130~^~431~^114.^0^^~4~^~NR~^^~Y~^^^^^^^^~04/01/2014~
-~08130~^~432~^14.^0^^~4~^~FLM~^^^^^^^^^^~04/01/2011~
-~08130~^~435~^208.^0^^~4~^~NC~^^^^^^^^^^~04/01/2014~
-~08130~^~601~^0.^0^^~9~^~MC~^^^^^^^^^^~11/01/2002~
-~08133~^~208~^88.^0^^~4~^~RP~^^^^^^^^^^~08/01/2012~
-~08133~^~262~^0.^0^^~4~^~RP~^^^^^^^^^^~02/01/2003~
-~08133~^~263~^0.^0^^~4~^~RP~^^^^^^^^^^~02/01/2003~
-~08133~^~268~^369.^0^^~4~^~RP~^^^^^^^^^^~08/01/2012~
-~08133~^~301~^56.^0^^~4~^~RP~^^^^^^^^^^~08/01/2012~
-~08133~^~304~^19.^0^^~4~^~RP~^^^^^^^^^^~08/01/2012~
-~08133~^~305~^64.^0^^~4~^~RP~^^^^^^^^^^~08/01/2012~
-~08133~^~306~^85.^0^^~4~^~RP~^^^^^^^^^^~08/01/2012~
-~08133~^~307~^111.^0^^~4~^~RP~^^^^^^^^^^~08/01/2012~
-~08133~^~318~^460.^0^^~4~^~RP~^^^^^^^^^^~08/01/2012~
-~08133~^~319~^138.^0^^~4~^~RP~^^^^^^^^^^~08/01/2012~
-~08133~^~320~^138.^0^^~4~^~RP~^^^^^^^^^^~08/01/2012~
-~08133~^~321~^0.^0^^~4~^~RP~^^^^^^^^^^~02/01/2003~
-~08133~^~322~^0.^0^^~4~^~RP~^^^^^^^^^^~02/01/2003~
-~08133~^~324~^0.^0^^~4~^~RP~^^^^^^^^^^~08/01/2012~
-~08133~^~334~^0.^0^^~4~^~RP~^^^^^^^^^^~02/01/2003~
-~08133~^~337~^0.^0^^~4~^~RP~^^^^^^^^^^~02/01/2003~
-~08133~^~338~^24.^0^^~4~^~RP~^^^^^^^^^^~08/01/2012~
-~08133~^~417~^50.^0^^~4~^~RP~^^^^^^^^^^~08/01/2012~
-~08133~^~431~^45.^0^^~4~^~RP~^^~Y~^^^^^^^^~08/01/2012~
-~08133~^~432~^5.^0^^~4~^~RP~^^^^^^^^^^~08/01/2012~
-~08133~^~435~^82.^0^^~4~^~NC~^^^^^^^^^^~08/01/2012~
-~08133~^~601~^0.^0^^~4~^~RP~^^^^^^^^^^~02/01/2003~
-~08138~^~208~^387.^0^^~9~^~MC~^^^^^^^^^^~02/01/2015~
-~08138~^~262~^0.^0^^~9~^~MC~^^^^^^^^^^~02/01/2015~
-~08138~^~263~^0.^0^^~4~^~FLM~^^^^^^^^^^~02/01/2005~
-~08138~^~268~^1620.^0^^~9~^~MC~^^^^^^^^^^~02/01/2015~
-~08138~^~301~^333.^0^^~9~^~MC~^^~Y~^^^^^^^^~02/01/2015~
-~08138~^~304~^71.^0^^~9~^~MC~^^^^^^^^^^~02/01/2015~
-~08138~^~305~^232.^0^^~9~^~MC~^^~Y~^^^^^^^^~02/01/2015~
-~08138~^~306~^186.^0^^~9~^~MC~^^^^^^^^^^~02/01/2015~
-~08138~^~307~^667.^0^^~9~^~MC~^^^^^^^^^^~02/01/2015~
-~08138~^~318~^1667.^0^^~9~^~MC~^^~Y~^^^^^^^^~02/01/2015~
-~08138~^~319~^500.^0^^~4~^~NR~^^^^^^^^^^~02/01/2015~
-~08138~^~320~^500.^0^^~4~^~NC~^^^^^^^^^^~02/01/2015~
-~08138~^~321~^0.^0^^~4~^~FLM~^^^^^^^^^^~02/01/2015~
-~08138~^~322~^0.^0^^~4~^~FLM~^^^^^^^^^^~02/01/2015~
-~08138~^~324~^133.^0^^~9~^~MC~^^~Y~^^^^^^^^~02/01/2015~
-~08138~^~334~^0.^0^^~4~^~FLM~^^^^^^^^^^~02/01/2015~
-~08138~^~337~^0.^0^^~4~^~FLM~^^^^^^^^^^~02/01/2015~
-~08138~^~338~^76.^0^^~4~^~FLM~^^^^^^^^^^~02/01/2015~
-~08138~^~417~^667.^0^^~9~^~MC~^^~Y~^^^^^^^^~02/01/2015~
-~08138~^~431~^648.^0^^~4~^~NR~^^~Y~^^^^^^^^~02/01/2015~
-~08138~^~432~^19.^0^^~4~^~CAZN~^^^^^^^^^^~02/01/2005~
-~08138~^~435~^1120.^0^^~4~^~NC~^^^^^^^^^^~02/01/2015~
-~08138~^~601~^0.^0^^~9~^~MC~^^^^^^^^^^~02/01/2015~
-~08142~^~208~^357.^0^^~4~^~NC~^^^^^^^^^^~07/01/1982~
-~08142~^~262~^0.^0^^~4~^~FLA~^^^^^^^^^^~02/01/2003~
-~08142~^~263~^0.^0^^~4~^~FLA~^^^^^^^^^^~02/01/2003~
-~08142~^~268~^1494.^0^^~4~^^^^^^^^^^^
-~08142~^~301~^500.^1^^~8~^~LC~^^^^^^^^^^~05/01/2011~
-~08142~^~304~^130.^8^^~1~^^^^^^^^^^^~07/01/1982~
-~08142~^~305~^384.^8^^~1~^^^^^^^^^^^~07/01/1982~
-~08142~^~306~^492.^8^^~1~^^^^^^^^^^^~07/01/1982~
-~08142~^~307~^13.^8^^~1~^^^^^^^^^^^~07/01/1982~
-~08142~^~318~^22.^0^^~4~^~FLA~^^^^^^^^^^~02/01/2003~
-~08142~^~319~^0.^0^^~4~^~FLA~^^^^^^^^^^~02/01/2003~
-~08142~^~320~^1.^0^^~4~^~NC~^^^^^^^^^^~02/01/2003~
-~08142~^~321~^13.^0^^~4~^~FLA~^^^^^^^^^^~02/01/2003~
-~08142~^~322~^0.^0^^~4~^~FLA~^^^^^^^^^^~02/01/2003~
-~08142~^~334~^0.^0^^~4~^~FLA~^^^^^^^^^^~02/01/2003~
-~08142~^~337~^0.^0^^~4~^~FLA~^^^^^^^^^^~02/01/2003~
-~08142~^~338~^292.^0^^~4~^~FLA~^^^^^^^^^^~02/01/2003~
-~08142~^~417~^59.^6^^~1~^^^^^^^^^^^~07/01/1982~
-~08142~^~431~^0.^0^^~4~^~FLA~^^^^^^^^^^~02/01/2003~
-~08142~^~432~^59.^6^^~1~^^^^^^^^^^^~02/01/2003~
-~08142~^~435~^59.^0^^~4~^~NC~^^^^^^^^^^~02/01/2003~
-~08142~^~601~^0.^0^^~7~^~Z~^^^^^^^^^^~07/01/1982~
-~08143~^~208~^56.^0^^~4~^~NC~^^^^^^^^^^~07/01/1982~
-~08143~^~268~^234.^0^^~4~^^^^^^^^^^^
-~08143~^~301~^80.^0^^~4~^~FLA~^^^^^^^^^^~05/01/2011~
-~08143~^~304~^20.^0^^~1~^^^^^^^^^^^~07/01/1982~
-~08143~^~305~^60.^0^^~1~^^^^^^^^^^^~07/01/1982~
-~08143~^~306~^77.^0^^~1~^^^^^^^^^^^~07/01/1982~
-~08143~^~307~^2.^0^^~1~^^^^^^^^^^^~07/01/1982~
-~08143~^~318~^0.^0^^~4~^^^^^^^^^^^~07/01/1982~
-~08143~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2002~
-~08143~^~417~^7.^0^^~1~^^^^^^^^^^^~07/01/1982~
-~08143~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~12/01/2000~
-~08143~^~432~^7.^0^^~1~^^^^^^^^^^^~05/01/2011~
-~08143~^~435~^7.^0^^~4~^~NC~^^^^^^^^^^~12/01/2000~
-~08143~^~601~^0.^0^^~7~^~Z~^^^^^^^^^^~07/01/1982~
-~08144~^~208~^342.^0^^~4~^~NC~^^^^^^^^^^~07/01/1982~
-~08144~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~12/01/2000~
-~08144~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~12/01/2000~
-~08144~^~268~^1431.^0^^~4~^^^^^^^^^^^~07/01/2004~
-~08144~^~301~^40.^2^^~1~^^^^^^^^^^^~07/01/1982~
-~08144~^~304~^122.^18^2.^~1~^^^^^^^^^^^~07/01/1982~
-~08144~^~305~^379.^18^7.^~1~^^^^^^^^^^^~07/01/1982~
-~08144~^~306~^389.^5^11.^~1~^^^^^^^^^^^~07/01/1982~
-~08144~^~307~^2.^17^0.^~1~^^^^^^^^^^^~07/01/1982~
-~08144~^~318~^0.^0^^~4~^^^^^^^^^^^~07/01/1982~
-~08144~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2002~
-~08144~^~320~^0.^0^^~4~^~NC~^^^^^^^^^^~02/01/2003~
-~08144~^~321~^0.^0^^~7~^~Z~^~20072~^^^^^^^^^~07/01/2004~
-~08144~^~322~^0.^0^^~4~^~BFNN~^~20072~^^^^^^^^^~02/01/2003~
-~08144~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~
-~08144~^~334~^0.^0^^~4~^~BFNN~^~20072~^^^^^^^^^~02/01/2003~
-~08144~^~337~^0.^0^^~4~^~BFNN~^~20072~^^^^^^^^^~02/01/2003~
-~08144~^~338~^227.^0^^~4~^~BFNN~^~20072~^^^^^^^^^~02/01/2003~
-~08144~^~417~^78.^10^1.^~1~^^^^^^^^^^^~07/01/1982~
-~08144~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~12/01/2000~
-~08144~^~432~^78.^0^^~4~^~NC~^^^^^^^^^^~02/01/2003~
-~08144~^~435~^78.^0^^~4~^~NC~^^^^^^^^^^~03/01/2007~
-~08144~^~601~^0.^0^^~7~^~Z~^^^^^^^^^^~07/01/1982~
-~08145~^~208~^62.^0^^~4~^~BFZN~^~08183~^^^^^^^^^~03/01/2007~
-~08145~^~262~^0.^0^^~4~^~BFZN~^~08183~^~N~^^^^^^^^~03/01/2007~
-~08145~^~263~^0.^0^^~4~^~BFZN~^~08183~^~N~^^^^^^^^~03/01/2007~
-~08145~^~268~^259.^0^^~4~^~BFZN~^^^^^^^^^^~03/01/2007~
-~08145~^~301~^7.^0^^~4~^~BFZN~^~08183~^^^^^^^^^~03/01/2007~
-~08145~^~304~^22.^0^^~4~^~BFZN~^~08183~^^^^^^^^^~03/01/2007~
-~08145~^~305~^69.^0^^~4~^~BFZN~^~08183~^^^^^^^^^~03/01/2007~
-~08145~^~306~^71.^0^^~4~^~BFZN~^~08183~^^^^^^^^^~03/01/2007~
-~08145~^~307~^0.^0^^~1~^^^^^^^^^^^~07/01/2003~
-~08145~^~318~^0.^0^^~4~^~NC~^^~N~^^^^^^^^~03/01/2007~
-~08145~^~319~^0.^0^^~4~^~BFZN~^~08183~^~N~^^^^^^^^~03/01/2007~
-~08145~^~320~^0.^0^^~4~^~BFZN~^~08183~^~N~^^^^^^^^~03/01/2007~
-~08145~^~321~^0.^0^^~4~^~BFZN~^~08183~^~N~^^^^^^^^~03/01/2007~
-~08145~^~322~^0.^0^^~4~^~BFZN~^~08183~^~N~^^^^^^^^~03/01/2007~
-~08145~^~334~^0.^0^^~4~^~BFZN~^~08183~^~N~^^^^^^^^~03/01/2007~
-~08145~^~337~^0.^0^^~4~^~BFZN~^~08183~^~N~^^^^^^^^~03/01/2007~
-~08145~^~338~^41.^0^^~4~^~BFZN~^~08183~^^^^^^^^^~03/01/2007~
-~08145~^~417~^14.^0^^~4~^~BFZN~^~08183~^^^^^^^^^~05/01/2007~
-~08145~^~431~^0.^0^^~4~^~BFZN~^~08183~^~N~^^^^^^^^~03/01/2007~
-~08145~^~432~^14.^0^^~4~^~BFZN~^~08183~^^^^^^^^^~05/01/2007~
-~08145~^~435~^14.^0^^~4~^~NC~^~08183~^^^^^^^^^~05/01/2007~
-~08145~^~601~^0.^0^^~4~^~BFZN~^~08183~^~N~^^^^^^^^~03/01/2007~
-~08146~^~208~^366.^0^^~9~^~MC~^^^^^^^^^^~02/01/2002~
-~08146~^~262~^0.^0^^~4~^~BFSN~^~20071~^^^^^^^^^~12/01/2002~
-~08146~^~263~^0.^0^^~4~^~BFSN~^~20071~^~N~^^^^^^^^~12/01/2002~
-~08146~^~268~^1531.^0^^~9~^~MC~^^^^^^^^^^~01/01/2011~
-~08146~^~301~^24.^0^^~9~^~MC~^^^^^^^^^^~02/01/2002~
-~08146~^~304~^133.^0^^~9~^~MC~^^^^^^^^^^~02/01/2002~
-~08146~^~305~^331.^0^^~9~^~MC~^^^^^^^^^^~02/01/2002~
-~08146~^~306~^364.^0^^~9~^~MC~^^^^^^^^^^~02/01/2002~
-~08146~^~307~^5.^0^^~9~^~MC~^^^^^^^^^^~02/01/2002~
-~08146~^~318~^11.^0^^~9~^~MC~^^^^^^^^^^~01/01/2011~
-~08146~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2002~
-~08146~^~320~^0.^0^^~1~^~AS~^^~N~^^^^^^^^~01/01/2011~
-~08146~^~321~^0.^0^^~7~^~Z~^^^^^^^^^^~12/01/2002~
-~08146~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~12/01/2002~
-~08146~^~324~^0.^0^^~7~^~Z~^^~N~^^^^^^^^~05/01/2009~
-~08146~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~12/01/2002~
-~08146~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~12/01/2002~
-~08146~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~12/01/2002~
-~08146~^~417~^154.^0^^~9~^~MC~^^~Y~^^^^^^^^~12/01/2002~
-~08146~^~431~^122.^0^^~4~^~NR~^^~Y~^^^^^^^^~01/01/2011~
-~08146~^~432~^32.^0^^~4~^~CAZN~^^^^^^^^^^~01/01/2011~
-~08146~^~435~^240.^0^^~4~^~NC~^^^^^^^^^^~01/01/2011~
-~08146~^~601~^0.^0^^~9~^~MC~^^^^^^^^^^~01/01/2011~
-~08147~^~208~^337.^0^^~9~^~MC~^^^^^^^^^^~04/01/2004~
-~08147~^~262~^0.^5^^~12~^~MA~^^^1^0.^0.^0^^^~1, 4~^~04/01/2004~
-~08147~^~263~^0.^0^^~4~^~FLC~^^^^^^^^^^~01/01/2007~
-~08147~^~268~^1410.^0^^~9~^~MC~^^^^^^^^^^~01/01/2007~
-~08147~^~301~^56.^0^^~9~^~MC~^^^^^^^^^^~06/01/2015~
-~08147~^~304~^130.^0^^~9~^~MC~^^^^^^^^^^~06/01/2015~
-~08147~^~305~^375.^0^^~9~^~MC~^^^^^^^^^^~06/01/2015~
-~08147~^~306~^381.^0^^~9~^~MC~^^^^^^^^^^~06/01/2015~
-~08147~^~307~^2.^0^^~9~^~MC~^^^^^^^^^^~06/01/2015~
-~08147~^~318~^0.^5^^~12~^~MA~^^^1^0.^0.^0^^^~1, 4~^~04/01/2004~
-~08147~^~319~^0.^5^^~12~^~MA~^^^1^0.^0.^0^^^~1, 4~^~04/01/2004~
-~08147~^~320~^0.^0^^~4~^~NC~^^^^^^^^^^~04/01/2004~
-~08147~^~321~^0.^5^^~12~^~MA~^^^1^0.^0.^0^^^~1, 4~^~04/01/2004~
-~08147~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2003~
-~08147~^~324~^0.^5^^~12~^~MA~^^^1^0.^0.^0^^^~1, 4~^~06/01/2015~
-~08147~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2003~
-~08147~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2003~
-~08147~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2003~
-~08147~^~417~^43.^0^^~9~^~MC~^^^^^^^^^^~06/01/2015~
-~08147~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2003~
-~08147~^~432~^43.^0^^~9~^~MC~^^^^^^^^^^~06/01/2015~
-~08147~^~435~^43.^0^^~4~^~NC~^^^^^^^^^^~05/01/2009~
-~08147~^~601~^0.^5^^~12~^~MA~^^^1^0.^0.^0^^^~1, 4~^~04/01/2004~
-~08148~^~208~^351.^0^^~9~^~MC~^^^^^^^^^^~03/01/2011~
-~08148~^~262~^0.^0^^~4~^~FLM~^^^^^^^^^^~01/01/2003~
-~08148~^~263~^0.^0^^~4~^~FLM~^^^^^^^^^^~01/01/2003~
-~08148~^~268~^1469.^0^^~9~^~MC~^^^^^^^^^^~03/01/2011~
-~08148~^~301~^58.^0^^~9~^~MC~^^^^^^^^^^~03/01/2011~
-~08148~^~304~^133.^0^^~9~^~MC~^^^^^^^^^^~03/01/2011~
-~08148~^~305~^384.^0^^~9~^~MC~^^^^^^^^^^~03/01/2011~
-~08148~^~306~^387.^0^^~9~^~MC~^^^^^^^^^^~03/01/2011~
-~08148~^~307~^2.^0^^~9~^~MC~^^^^^^^^^^~03/01/2011~
-~08148~^~318~^0.^0^^~9~^~MC~^^^^^^^^^^~01/01/2003~
-~08148~^~319~^0.^0^^~4~^~FLM~^^^^^^^^^^~01/01/2003~
-~08148~^~320~^0.^0^^~4~^~NC~^^~N~^^^^^^^^~01/01/2003~
-~08148~^~321~^0.^0^^~7~^~Z~^^~N~^^^^^^^^~02/01/2013~
-~08148~^~322~^0.^0^^~4~^~FLM~^^^^^^^^^^~03/01/2011~
-~08148~^~324~^0.^0^^~9~^~MC~^^^^^^^^^^~03/01/2011~
-~08148~^~334~^0.^0^^~4~^~FLM~^^^^^^^^^^~03/01/2011~
-~08148~^~337~^0.^0^^~4~^~FLM~^^^^^^^^^^~03/01/2011~
-~08148~^~338~^175.^0^^~4~^~FLM~^^^^^^^^^^~03/01/2011~
-~08148~^~417~^40.^0^^~9~^~MC~^^^^^^^^^^~03/01/2011~
-~08148~^~431~^0.^0^^~7~^~Z~^^~N~^^^^^^^^~03/01/2011~
-~08148~^~432~^40.^0^^~4~^~NR~^^^^^^^^^^~03/01/2011~
-~08148~^~435~^40.^0^^~4~^~NC~^^^^^^^^^^~03/01/2011~
-~08148~^~601~^0.^0^^~9~^~MC~^^^^^^^^^^~01/01/2003~
-~08156~^~208~^402.^0^^~4~^~NC~^^^^^^^^^^~07/01/1982~
-~08156~^~268~^1682.^0^^~4~^^^^^^^^^^^~04/01/2006~
-~08156~^~301~^6.^1^^~1~^^^^^^^^^^^~07/01/1982~
-~08156~^~304~^25.^1^^~1~^^^^^^^^^^^~07/01/1982~
-~08156~^~305~^98.^1^^~1~^^^^^^^^^^^~07/01/1982~
-~08156~^~306~^113.^5^2.^~1~^^^^^^^^^^^~07/01/1982~
-~08156~^~307~^3.^30^0.^~1~^^^^^^^^^^^~07/01/1982~
-~08156~^~318~^0.^0^^~4~^^^^^^^^^^^~07/01/1982~
-~08156~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2002~
-~08156~^~320~^0.^0^^~4~^~NC~^^^^^^^^^^~06/01/2002~
-~08156~^~417~^19.^10^3.^~1~^^^^^^^^^^^~07/01/1982~
-~08156~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~12/01/2000~
-~08156~^~432~^19.^10^3.^~1~^^^^^^^^^^^~03/01/2001~
-~08156~^~435~^19.^0^^~4~^~NC~^^^^^^^^^^~04/01/2006~
-~08156~^~601~^0.^0^^~7~^~Z~^^^^^^^^^^~07/01/1982~
-~08157~^~208~^364.^0^^~4~^~NC~^^^^^^^^^^~07/01/1982~
-~08157~^~268~^1523.^0^^~4~^^^^^^^^^^^~04/01/2006~
-~08157~^~301~^28.^10^1.^~1~^^^^^^^^^^^~07/01/1982~
-~08157~^~304~^145.^11^4.^~1~^^^^^^^^^^^~07/01/1982~
-~08157~^~305~^355.^10^17.^~1~^^^^^^^^^^^~07/01/1982~
-~08157~^~306~^348.^16^12.^~1~^^^^^^^^^^^~07/01/1982~
-~08157~^~307~^4.^30^0.^~1~^^^^^^^^^^^~07/01/1982~
-~08157~^~318~^0.^0^^~4~^^^^^^^^^^^~07/01/1982~
-~08157~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2002~
-~08157~^~320~^0.^0^^~4~^~NC~^^^^^^^^^^~06/01/2002~
-~08157~^~417~^32.^10^4.^~1~^^^^^^^^^^^~07/01/1982~
-~08157~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~12/01/2000~
-~08157~^~432~^32.^0^^~4~^~NC~^^^^^^^^^^~12/01/2000~
-~08157~^~435~^32.^0^^~4~^~NC~^^^^^^^^^^~04/01/2006~
-~08157~^~601~^0.^0^^~7~^~Z~^^^^^^^^^^~07/01/1982~
-~08160~^~208~^371.^0^^~4~^~NC~^^^^^^^^^^~07/01/1982~
-~08160~^~262~^0.^0^^~4~^~FLA~^^^^^^^^^^~11/01/2002~
-~08160~^~263~^0.^0^^~4~^~FLA~^^^^^^^^^^~11/01/2002~
-~08160~^~268~^1552.^0^^~4~^^^^^^^^^^^
-~08160~^~301~^2.^1^^~1~^^^^^^^^^^^~07/01/1982~
-~08160~^~304~^27.^1^^~1~^^^^^^^^^^^~07/01/1982~
-~08160~^~305~^73.^1^^~1~^^^^^^^^^^^~07/01/1982~
-~08160~^~306~^137.^22^7.^~1~^^^^^^^^^^^~07/01/1982~
-~08160~^~307~^1.^154^0.^~1~^^^^^^^^^^^~07/01/1982~
-~08160~^~318~^214.^0^^~4~^~NC~^^^^^^^^^^~11/01/2002~
-~08160~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2002~
-~08160~^~320~^11.^0^^~4~^~NC~^^^^^^^^^^~11/01/2002~
-~08160~^~321~^97.^0^^~4~^~FLA~^^^^^^^^^^~11/01/2002~
-~08160~^~322~^63.^0^^~4~^~FLA~^^^^^^^^^^~11/01/2002~
-~08160~^~334~^0.^0^^~4~^~FLA~^^^^^^^^^^~11/01/2002~
-~08160~^~337~^0.^0^^~4~^~FLA~^^^^^^^^^^~11/01/2002~
-~08160~^~338~^1355.^0^^~4~^~FLA~^^^^^^^^^^~11/01/2002~
-~08160~^~417~^5.^3^0.^~1~^^^^^^^^^^^~07/01/1982~
-~08160~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~12/01/2000~
-~08160~^~432~^5.^3^0.^~1~^^^^^^^^^^^~11/01/2002~
-~08160~^~435~^5.^0^^~4~^~NC~^^^^^^^^^^~11/01/2002~
-~08160~^~601~^0.^0^^~7~^~Z~^^^^^^^^^^~07/01/1982~
-~08161~^~208~^71.^0^^~4~^~BFZN~^~08091~^^^^^^^^^~12/01/2008~
-~08161~^~262~^0.^0^^~4~^~BFZN~^~08091~^^^^^^^^^~05/01/2009~
-~08161~^~263~^0.^0^^~7~^~Z~^^~N~^^^^^^^^~05/01/2009~
-~08161~^~268~^298.^0^^~4~^~BFZN~^^^^^^^^^^~05/01/2009~
-~08161~^~301~^1.^0^^~4~^~BFZN~^~08091~^^^^^^^^^~12/01/2008~
-~08161~^~304~^7.^0^^~4~^~BFZN~^~08091~^^^^^^^^^~12/01/2008~
-~08161~^~305~^20.^0^^~4~^~BFZN~^~08091~^^^^^^^^^~12/01/2008~
-~08161~^~306~^27.^0^^~4~^~BFZN~^~08091~^^^^^^^^^~12/01/2008~
-~08161~^~307~^223.^0^^~1~^^^^^^^^^^^~12/01/2008~
-~08161~^~318~^0.^0^^~4~^~BFZN~^~08091~^^^^^^^^^~05/01/2009~
-~08161~^~319~^0.^0^^~4~^~BFZN~^~08091~^^^^^^^^^~05/01/2009~
-~08161~^~320~^0.^0^^~4~^~BFZN~^~08091~^^^^^^^^^~05/01/2009~
-~08161~^~321~^0.^0^^~4~^~BFZN~^~08091~^^^^^^^^^~05/01/2009~
-~08161~^~322~^0.^0^^~4~^~BFZN~^~08091~^^^^^^^^^~05/01/2009~
-~08161~^~324~^0.^0^^~7~^~Z~^^~N~^^^^^^^^~05/01/2009~
-~08161~^~334~^0.^0^^~4~^~BFZN~^~08091~^^^^^^^^^~05/01/2009~
-~08161~^~337~^0.^0^^~4~^~BFZN~^~08091~^^^^^^^^^~05/01/2009~
-~08161~^~338~^1.^0^^~4~^~BFZN~^~08091~^^^^^^^^^~12/01/2008~
-~08161~^~417~^28.^0^^~4~^~BFZN~^~08091~^^^^^^^^^~05/01/2009~
-~08161~^~431~^14.^0^^~4~^~BFZN~^~08091~^^^^^^^^^~05/01/2009~
-~08161~^~432~^14.^0^^~4~^~BFZN~^~08091~^^^^^^^^^~12/01/2008~
-~08161~^~435~^38.^0^^~4~^~NC~^~08091~^^^^^^^^^~05/01/2009~
-~08161~^~601~^0.^0^^~4~^~BFZN~^~08091~^^^^^^^^^~05/01/2009~
-~08164~^~208~^65.^0^^~4~^~NC~^^^^^^^^^^~12/01/2008~
-~08164~^~262~^0.^0^^~4~^~RP~^^^^^^^^^^~11/01/2002~
-~08164~^~263~^0.^0^^~4~^~RP~^^^^^^^^^^~11/01/2002~
-~08164~^~268~^273.^0^^~4~^~NC~^^^^^^^^^^~12/01/2008~
-~08164~^~301~^1.^4^0.^~1~^~A~^^^1^1.^1.^1^0.^1.^~2, 3~^~12/01/2008~
-~08164~^~304~^5.^4^1.^~1~^~A~^^^1^3.^7.^2^-1.^11.^~2, 3~^~12/01/2008~
-~08164~^~305~^14.^4^3.^~1~^~A~^^^1^9.^19.^2^0.^28.^~2, 3~^~12/01/2008~
-~08164~^~306~^22.^4^2.^~1~^~A~^^^1^17.^26.^2^8.^35.^~2, 3~^~12/01/2008~
-~08164~^~307~^2.^0^^~4~^~BFSN~^~08091~^^^^^^^^^~12/01/2008~
-~08164~^~318~^0.^0^^~1~^~AS~^^^^^^^^^^~12/01/2008~
-~08164~^~319~^0.^0^^~4~^~RP~^^^^^^^^^^~11/01/2002~
-~08164~^~320~^0.^0^^~1~^~AS~^^^^^^^^^^~12/01/2008~
-~08164~^~321~^0.^4^0.^~1~^~A~^^^1^0.^0.^^^^~1, 2, 3~^~12/01/2008~
-~08164~^~322~^0.^4^0.^~1~^~A~^^^1^0.^0.^^^^~1, 2, 3~^~12/01/2008~
-~08164~^~334~^0.^4^0.^~1~^~A~^^^1^0.^0.^^^^~1, 2, 3~^~12/01/2008~
-~08164~^~337~^0.^4^0.^~1~^~A~^^^1^0.^0.^^^^~1, 2, 3~^~12/01/2008~
-~08164~^~338~^197.^0^^~4~^~RP~^^^^^^^^^^~12/01/2008~
-~08164~^~417~^27.^4^3.^~1~^~A~^^^1^18.^30.^1^-11.^65.^~2, 3~^~12/01/2008~
-~08164~^~431~^14.^4^1.^~1~^~A~^^^1^10.^15.^1^-2.^29.^~2, 3~^~12/01/2008~
-~08164~^~432~^13.^4^1.^~1~^~AS~^^^1^8.^15.^1^-8.^35.^~2, 3~^~12/01/2008~
-~08164~^~435~^37.^0^^~4~^~NC~^^^^^^^^^^~12/01/2008~
-~08164~^~601~^0.^0^^~4~^~BFSN~^~08091~^^^^^^^^^~12/01/2008~
-~08165~^~208~^65.^0^^~4~^~BFZN~^~08164~^^^^^^^^^~12/01/2008~
-~08165~^~262~^0.^0^^~4~^~BFZN~^~08164~^^^^^^^^^~05/01/2009~
-~08165~^~263~^0.^0^^~7~^~Z~^^~N~^^^^^^^^~05/01/2009~
-~08165~^~268~^273.^0^^~4~^~BFZN~^^^^^^^^^^~05/01/2009~
-~08165~^~301~^1.^0^^~4~^~BFZN~^~08164~^^^^^^^^^~12/01/2008~
-~08165~^~304~^5.^0^^~4~^~BFZN~^~08164~^^^^^^^^^~12/01/2008~
-~08165~^~305~^14.^0^^~4~^~BFZN~^~08164~^^^^^^^^^~12/01/2008~
-~08165~^~306~^22.^0^^~4~^~BFZN~^~08164~^^^^^^^^^~12/01/2008~
-~08165~^~307~^223.^0^^~1~^^^^^^^^^^^~07/01/1982~
-~08165~^~318~^0.^0^^~4~^~NC~^^~N~^^^^^^^^~05/01/2009~
-~08165~^~319~^0.^0^^~4~^~BFZN~^~08164~^^^^^^^^^~05/01/2009~
-~08165~^~320~^0.^0^^~4~^~BFZN~^~08164~^^^^^^^^^~05/01/2009~
-~08165~^~321~^0.^0^^~4~^~BFZN~^~08164~^^^^^^^^^~05/01/2009~
-~08165~^~322~^0.^0^^~4~^~BFZN~^~08164~^^^^^^^^^~05/01/2009~
-~08165~^~324~^0.^0^^~7~^~Z~^^~N~^^^^^^^^~05/01/2009~
-~08165~^~334~^0.^0^^~4~^~BFZN~^~08164~^^^^^^^^^~05/01/2009~
-~08165~^~337~^0.^0^^~4~^~BFZN~^~08164~^^^^^^^^^~05/01/2009~
-~08165~^~338~^197.^0^^~4~^~BFZN~^~08164~^^^^^^^^^~12/01/2008~
-~08165~^~417~^27.^0^^~4~^~BFZN~^~08164~^^^^^^^^^~12/01/2008~
-~08165~^~431~^14.^0^^~4~^~BFZN~^~08164~^^^^^^^^^~05/01/2009~
-~08165~^~432~^13.^0^^~4~^~BFZN~^~08164~^^^^^^^^^~12/01/2008~
-~08165~^~435~^37.^0^^~4~^~NC~^~08164~^^^^^^^^^~05/01/2009~
-~08165~^~601~^0.^0^^~4~^~BFZN~^~08164~^^^^^^^^^~05/01/2009~
-~08168~^~208~^52.^0^^~4~^~NC~^^^^^^^^^^~07/01/1982~
-~08168~^~262~^0.^0^^~4~^~BFNN~^~08100~^^^^^^^^^~02/01/2003~
-~08168~^~263~^0.^0^^~4~^~BFNN~^~08100~^^^^^^^^^~02/01/2003~
-~08168~^~268~^218.^0^^~4~^^^^^^^^^^^
-~08168~^~301~^1.^0^^~4~^~BFNN~^~08100~^^^^^^^^^~04/01/2013~
-~08168~^~304~^3.^0^^~1~^^^^^^^^^^^~07/01/1982~
-~08168~^~305~^17.^0^^~1~^^^^^^^^^^^~07/01/1982~
-~08168~^~306~^20.^0^^~1~^^^^^^^^^^^~07/01/1982~
-~08168~^~307~^173.^0^^~1~^^^^^^^^^^^~07/01/1982~
-~08168~^~318~^0.^0^^~4~^^^^^^^^^^^~07/01/1982~
-~08168~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2002~
-~08168~^~320~^0.^0^^~4~^~BFZN~^^^^^^^^^^~02/01/2003~
-~08168~^~321~^0.^0^^~4~^~BFNN~^~08100~^^^^^^^^^~02/01/2003~
-~08168~^~322~^0.^0^^~4~^~BFNN~^~08100~^^^^^^^^^~02/01/2003~
-~08168~^~334~^0.^0^^~4~^~BFNN~^~08100~^^^^^^^^^~02/01/2003~
-~08168~^~337~^0.^0^^~4~^~BFNN~^~08100~^^^^^^^^^~02/01/2003~
-~08168~^~338~^0.^0^^~4~^~BFNN~^~08100~^^^^^^^^^~02/01/2003~
-~08168~^~417~^3.^0^^~1~^^^^^^^^^^^~07/01/1982~
-~08168~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~12/01/2000~
-~08168~^~432~^3.^0^^~4~^~BFZN~^^^^^^^^^^~02/01/2003~
-~08168~^~435~^3.^0^^~4~^~NC~^^^^^^^^^^~12/01/2003~
-~08168~^~601~^0.^0^^~7~^~Z~^^^^^^^^^^~07/01/1982~
-~08169~^~208~^50.^0^^~4~^~RP~^^^^^^^^^^~11/01/2008~
-~08169~^~262~^0.^0^^~4~^~RP~^^^^^^^^^^~11/01/2008~
-~08169~^~263~^0.^0^^~4~^~RP~^^^^^^^^^^~11/01/2008~
-~08169~^~268~^211.^0^^~4~^~RP~^^^^^^^^^^~11/01/2008~
-~08169~^~301~^89.^0^^~4~^~RP~^^^^^^^^^^~11/01/2008~
-~08169~^~304~^5.^0^^~4~^~RP~^^^^^^^^^^~11/01/2008~
-~08169~^~305~^16.^0^^~4~^~RP~^^^^^^^^^^~11/01/2008~
-~08169~^~306~^17.^0^^~4~^~RP~^^^^^^^^^^~11/01/2008~
-~08169~^~307~^129.^0^^~4~^~RP~^^^^^^^^^^~11/01/2008~
-~08169~^~318~^0.^0^^~4~^~RP~^^^^^^^^^^~11/01/2008~
-~08169~^~319~^0.^0^^~4~^~RP~^^^^^^^^^^~11/01/2008~
-~08169~^~320~^0.^0^^~4~^~RP~^^^^^^^^^^~11/01/2008~
-~08169~^~321~^0.^0^^~4~^~RP~^^^^^^^^^^~11/01/2008~
-~08169~^~322~^0.^0^^~4~^~RP~^^^^^^^^^^~11/01/2008~
-~08169~^~324~^0.^0^^~4~^~RP~^^~N~^^^^^^^^~11/01/2008~
-~08169~^~334~^0.^0^^~4~^~RP~^^^^^^^^^^~11/01/2008~
-~08169~^~337~^0.^0^^~4~^~RP~^^^^^^^^^^~11/01/2008~
-~08169~^~338~^2.^0^^~4~^~RP~^^^^^^^^^^~11/01/2008~
-~08169~^~417~^17.^0^^~4~^~RP~^^^^^^^^^^~11/01/2008~
-~08169~^~431~^12.^0^^~4~^~RP~^^~Y~^^^^^^^^~11/01/2008~
-~08169~^~432~^5.^0^^~4~^~RP~^^^^^^^^^^~11/01/2008~
-~08169~^~435~^25.^0^^~4~^~NC~^^^^^^^^^^~05/01/2009~
-~08169~^~601~^0.^0^^~4~^~RP~^^^^^^^^^^~11/01/2008~
-~08169~^~636~^0.^0^^~4~^~RP~^^~N~^^^^^^^^~11/01/2008~
-~08172~^~208~^369.^0^^~4~^~NC~^^^^^^^^^^~07/01/1982~
-~08172~^~268~^1544.^0^^~4~^^^^^^^^^^^
-~08172~^~301~^14.^16^0.^~1~^^^^^^^^^^^~07/01/1982~
-~08172~^~304~^13.^16^0.^~1~^^^^^^^^^^^~07/01/1982~
-~08172~^~305~^88.^16^2.^~1~^^^^^^^^^^^~07/01/1982~
-~08172~^~306~^94.^16^4.^~1~^^^^^^^^^^^~07/01/1982~
-~08172~^~307~^3.^43^0.^~1~^^^^^^^^^^^~07/01/1982~
-~08172~^~318~^0.^0^^~4~^^^^^^^^^^^~07/01/1982~
-~08172~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2002~
-~08172~^~320~^0.^0^^~4~^~NC~^^^^^^^^^^~06/01/2002~
-~08172~^~417~^24.^1^^~1~^^^^^^^^^^^~07/01/1982~
-~08172~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~12/01/2000~
-~08172~^~432~^24.^0^^~4~^~NC~^^^^^^^^^^~12/01/2000~
-~08172~^~435~^24.^0^^~4~^~NC~^^^^^^^^^^~04/01/2003~
-~08172~^~601~^0.^0^^~7~^~Z~^^^^^^^^^^~07/01/1982~
-~08173~^~208~^53.^0^^~4~^~BFZN~^^^^^^^^^^~11/01/2008~
-~08173~^~262~^0.^0^^~4~^~BFZN~^^~N~^^^^^^^^~11/01/2008~
-~08173~^~263~^0.^0^^~4~^~BFZN~^^~N~^^^^^^^^~11/01/2008~
-~08173~^~268~^220.^0^^~4~^~BFZN~^^^^^^^^^^~11/01/2008~
-~08173~^~301~^97.^0^^~4~^~BFZN~^^^^^^^^^^~11/01/2008~
-~08173~^~304~^7.^0^^~4~^~BFZN~^^^^^^^^^^~11/01/2008~
-~08173~^~305~^37.^0^^~4~^~BFZN~^^^^^^^^^^~11/01/2008~
-~08173~^~306~^23.^0^^~4~^~BFZN~^^^^^^^^^^~11/01/2008~
-~08173~^~307~^126.^0^^~4~^~RP~^^^^^^^^^^~11/01/2008~
-~08173~^~318~^0.^0^^~4~^~BFZN~^^^^^^^^^^~11/01/2008~
-~08173~^~319~^0.^0^^~4~^~BFZN~^^~N~^^^^^^^^~11/01/2008~
-~08173~^~320~^0.^0^^~4~^~BFZN~^^^^^^^^^^~11/01/2008~
-~08173~^~321~^0.^0^^~4~^~BFZN~^^^^^^^^^^~11/01/2008~
-~08173~^~322~^0.^0^^~4~^~BFZN~^^^^^^^^^^~11/01/2008~
-~08173~^~334~^0.^0^^~4~^~BFZN~^^^^^^^^^^~11/01/2008~
-~08173~^~337~^0.^0^^~4~^~BFZN~^^~N~^^^^^^^^~11/01/2008~
-~08173~^~338~^2.^0^^~4~^~BFZN~^^^^^^^^^^~11/01/2008~
-~08173~^~417~^77.^0^^~4~^~BFZN~^^^^^^^^^^~11/01/2008~
-~08173~^~431~^60.^0^^~4~^~BFZN~^^~Y~^^^^^^^^~11/01/2008~
-~08173~^~432~^17.^0^^~4~^~BFZN~^^^^^^^^^^~11/01/2008~
-~08173~^~435~^119.^0^^~4~^~NC~^^^^^^^^^^~11/01/2008~
-~08173~^~601~^0.^0^^~4~^~BFZN~^^~N~^^^^^^^^~11/01/2008~
-~08177~^~208~^363.^0^^~9~^~MC~^^^^^^^^^^~03/01/2013~
-~08177~^~262~^3.^0^^~4~^~CAZN~^^^^^^^^^^~12/01/1997~
-~08177~^~263~^97.^0^^~4~^~CAZN~^^^^^^^^^^~12/01/1997~
-~08177~^~268~^1520.^0^^~9~^~MC~^^^^^^^^^^~03/01/2013~
-~08177~^~301~^375.^0^^~9~^~MC~^^~Y~^^^^^^^^~03/01/2013~
-~08177~^~304~^33.^0^^~9~^~MC~^^^^^^^^^^~03/01/2013~
-~08177~^~305~^124.^0^^~9~^~MC~^^^^^^^^^^~03/01/2013~
-~08177~^~306~^245.^0^^~9~^~MC~^^^^^^^^^^~03/01/2013~
-~08177~^~307~^10.^0^^~9~^~MC~^^^^^^^^^^~03/01/2013~
-~08177~^~318~^2.^0^^~9~^~MC~^^^^^^^^^^~03/01/2013~
-~08177~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2002~
-~08177~^~320~^0.^0^^~1~^~AS~^^~N~^^^^^^^^~02/01/2005~
-~08177~^~321~^0.^0^^~7~^~Z~^^~N~^^^^^^^^~02/01/2005~
-~08177~^~322~^0.^0^^~7~^~Z~^^~N~^^^^^^^^~02/01/2005~
-~08177~^~324~^0.^0^^~9~^~MC~^^^^^^^^^^~03/01/2013~
-~08177~^~334~^0.^0^^~7~^~Z~^^~N~^^^^^^^^~02/01/2005~
-~08177~^~337~^0.^0^^~7~^~Z~^^~N~^^^^^^^^~02/01/2005~
-~08177~^~338~^0.^0^^~7~^~Z~^^~N~^^^^^^^^~02/01/2005~
-~08177~^~417~^1143.^0^^~8~^~LC~^^~Y~^^^^^^^^~03/01/2013~
-~08177~^~431~^1115.^0^^~4~^~NR~^^~Y~^^^^^^^^~03/01/2013~
-~08177~^~432~^28.^0^^~4~^~CAZN~^^^^^^^^^^~02/01/2005~
-~08177~^~435~^1924.^0^^~4~^~NC~^^^^^^^^^^~03/01/2013~
-~08177~^~601~^0.^0^^~9~^~MC~^^^^^^^^^^~03/01/2013~
-~08180~^~208~^71.^0^^~4~^~BFZN~^~08121~^^^^^^^^^~03/01/2007~
-~08180~^~262~^0.^0^^~4~^~BFZN~^~08121~^^^^^^^^^~03/01/2007~
-~08180~^~263~^0.^0^^~4~^~BFZN~^~08121~^^^^^^^^^~03/01/2007~
-~08180~^~268~^297.^0^^~4~^~BFZN~^^^^^^^^^^~03/01/2007~
-~08180~^~301~^9.^0^^~4~^~BFZN~^~08121~^^^^^^^^^~03/01/2007~
-~08180~^~304~^27.^0^^~4~^~BFZN~^~08121~^^^^^^^^^~03/01/2007~
-~08180~^~305~^77.^0^^~4~^~BFZN~^~08121~^^^^^^^^^~03/01/2007~
-~08180~^~306~^70.^0^^~4~^~BFZN~^~08121~^^^^^^^^^~03/01/2007~
-~08180~^~307~^71.^0^^~1~^~RPA~^^^^^^^^^^~03/01/2007~
-~08180~^~318~^0.^0^^~4~^~BFZN~^~08121~^^^^^^^^^~03/01/2007~
-~08180~^~319~^0.^0^^~4~^~BFZN~^~08121~^^^^^^^^^~03/01/2007~
-~08180~^~320~^0.^0^^~4~^~BFZN~^~08121~^^^^^^^^^~03/01/2007~
-~08180~^~321~^0.^0^^~4~^~BFZN~^~08121~^^^^^^^^^~03/01/2007~
-~08180~^~322~^0.^0^^~4~^~BFZN~^~08121~^^^^^^^^^~03/01/2007~
-~08180~^~334~^0.^0^^~4~^~BFZN~^~08121~^^^^^^^^^~03/01/2007~
-~08180~^~337~^0.^0^^~4~^~BFZN~^~08121~^^^^^^^^^~03/01/2007~
-~08180~^~338~^180.^0^^~4~^~BFZN~^~08121~^^^^^^^^^~03/01/2007~
-~08180~^~417~^6.^0^^~4~^~BFZN~^~08121~^^^^^^^^^~03/01/2007~
-~08180~^~431~^0.^0^^~4~^~BFZN~^~08121~^^^^^^^^^~03/01/2007~
-~08180~^~432~^6.^0^^~4~^~BFZN~^~08121~^^^^^^^^^~03/01/2007~
-~08180~^~435~^6.^0^^~4~^~NC~^~08121~^^^^^^^^^~03/01/2007~
-~08180~^~601~^0.^0^^~4~^~BFZN~^~08121~^^^^^^^^^~03/01/2007~
-~08182~^~208~^59.^0^^~4~^~FLM~^^^^^^^^^^~04/01/2003~
-~08182~^~262~^0.^0^^~4~^~FLM~^^^^^^^^^^~04/01/2003~
-~08182~^~263~^0.^0^^~4~^~FLM~^^^^^^^^^^~04/01/2003~
-~08182~^~268~^247.^0^^~4~^~FLM~^^^^^^^^^^~04/01/2003~
-~08182~^~301~^80.^0^^~4~^~FLA~^^^^^^^^^^~05/01/2011~
-~08182~^~304~^21.^0^^~4~^~FLM~^^^^^^^^^^~04/01/2003~
-~08182~^~305~^60.^0^^~4~^~FLM~^^^^^^^^^^~04/01/2003~
-~08182~^~306~^77.^0^^~4~^~FLM~^^^^^^^^^^~04/01/2003~
-~08182~^~307~^238.^0^^~1~^^^^^^^^^^^~07/01/1982~
-~08182~^~318~^3.^0^^~4~^~FLM~^^^^^^^^^^~04/01/2003~
-~08182~^~319~^0.^0^^~4~^~FLM~^^^^^^^^^^~04/01/2003~
-~08182~^~320~^0.^0^^~4~^~FLM~^^^^^^^^^^~04/01/2003~
-~08182~^~321~^2.^0^^~4~^~FLM~^^^^^^^^^^~04/01/2003~
-~08182~^~322~^0.^0^^~4~^~FLM~^^^^^^^^^^~04/01/2003~
-~08182~^~334~^0.^0^^~4~^~FLM~^^^^^^^^^^~04/01/2003~
-~08182~^~337~^0.^0^^~4~^~FLM~^^^^^^^^^^~04/01/2003~
-~08182~^~338~^45.^0^^~4~^~FLM~^^^^^^^^^^~04/01/2003~
-~08182~^~417~^9.^0^^~4~^~FLM~^^^^^^^^^^~04/01/2003~
-~08182~^~431~^0.^0^^~4~^~FLM~^^^^^^^^^^~04/01/2003~
-~08182~^~432~^9.^0^^~4~^~FLM~^^^^^^^^^^~04/01/2003~
-~08182~^~435~^9.^0^^~4~^~NC~^^^^^^^^^^~04/01/2003~
-~08182~^~601~^0.^0^^~4~^~FLM~^^^^^^^^^^~04/01/2003~
-~08183~^~208~^62.^0^^~4~^~NC~^^^^^^^^^^~03/01/2007~
-~08183~^~262~^0.^0^^~4~^~FLM~^^^^^^^^^^~04/01/2003~
-~08183~^~263~^0.^0^^~4~^~FLM~^^^^^^^^^^~04/01/2003~
-~08183~^~268~^259.^0^^~4~^^^^^^^^^^^~03/01/2007~
-~08183~^~301~^7.^0^^~1~^^^^^^^^^^^~03/01/2007~
-~08183~^~304~^22.^0^^~1~^^^^^^^^^^^~03/01/2007~
-~08183~^~305~^69.^0^^~1~^^^^^^^^^^^~03/01/2007~
-~08183~^~306~^71.^0^^~1~^^^^^^^^^^^~03/01/2007~
-~08183~^~307~^233.^0^^~1~^^^^^^^^^^^~07/01/1982~
-~08183~^~318~^0.^0^^~4~^^^~N~^^^^^^^^~03/01/2007~
-~08183~^~319~^0.^0^^~4~^~NR~^^~N~^^^^^^^^~03/01/2007~
-~08183~^~320~^0.^0^^~4~^~NC~^^~N~^^^^^^^^~03/01/2007~
-~08183~^~321~^0.^0^^~4~^~FLM~^^~N~^^^^^^^^~03/01/2007~
-~08183~^~322~^0.^0^^~4~^~FLM~^^^^^^^^^^~04/01/2003~
-~08183~^~334~^0.^0^^~4~^~FLM~^^^^^^^^^^~04/01/2003~
-~08183~^~337~^0.^0^^~4~^~FLM~^^^^^^^^^^~04/01/2003~
-~08183~^~338~^41.^0^^~4~^~FLM~^^^^^^^^^^~04/01/2003~
-~08183~^~417~^14.^0^^~4~^~FLM~^^^^^^^^^^~05/01/2007~
-~08183~^~431~^0.^0^^~4~^~NR~^^~N~^^^^^^^^~03/01/2007~
-~08183~^~432~^14.^0^^~4~^~FLM~^^^^^^^^^^~05/01/2007~
-~08183~^~435~^14.^0^^~4~^~NC~^^^^^^^^^^~05/01/2007~
-~08183~^~601~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2007~
-~08191~^~208~^352.^0^^~9~^~MC~^^^^^^^^^^~01/01/2003~
-~08191~^~262~^0.^0^^~4~^~FLM~^^^^^^^^^^~01/01/2003~
-~08191~^~263~^0.^0^^~4~^~FLM~^^^^^^^^^^~01/01/2003~
-~08191~^~268~^1473.^0^^~9~^~MC~^^^^^^^^^^~02/01/2005~
-~08191~^~301~^13.^0^^~9~^~MC~^^^^^^^^^^~01/01/2003~
-~08191~^~304~^93.^0^^~9~^~MC~^^^^^^^^^^~01/01/2003~
-~08191~^~305~^276.^0^^~9~^~MC~^^^^^^^^^^~01/01/2003~
-~08191~^~306~^327.^0^^~9~^~MC~^^^^^^^^^^~01/01/2003~
-~08191~^~307~^19.^0^^~9~^~MC~^^^^^^^^^^~01/01/2003~
-~08191~^~318~^0.^0^^~9~^~MC~^^~Y~^^^^^^^^~07/01/2005~
-~08191~^~319~^0.^0^^~4~^~NC~^^^^^^^^^^~01/01/2003~
-~08191~^~320~^0.^0^^~4~^~NC~^^^^^^^^^^~01/01/2003~
-~08191~^~321~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2003~
-~08191~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2003~
-~08191~^~324~^0.^0^^~7~^~Z~^^~N~^^^^^^^^~05/01/2009~
-~08191~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2003~
-~08191~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2003~
-~08191~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2003~
-~08191~^~417~^192.^0^^~9~^~MC~^^~Y~^^^^^^^^~07/01/2005~
-~08191~^~431~^173.^0^^~4~^~NC~^^^^^^^^^^~01/01/2003~
-~08191~^~432~^19.^0^^~4~^~CAZN~^^^^^^^^^^~01/01/2003~
-~08191~^~435~^313.^0^^~4~^~NC~^^^^^^^^^^~05/01/2009~
-~08191~^~601~^0.^0^^~9~^~MC~^^^^^^^^^^~01/01/2003~
-~08192~^~208~^395.^0^^~9~^~MC~^^^^^^^^^^~02/01/2013~
-~08192~^~262~^0.^0^^~4~^~FLM~^^^^^^^^^^~01/01/2003~
-~08192~^~263~^0.^0^^~4~^~FLM~^^^^^^^^^^~01/01/2003~
-~08192~^~268~^1653.^0^^~9~^~MC~^^^^^^^^^^~02/01/2013~
-~08192~^~301~^41.^0^^~9~^~MC~^^^^^^^^^^~02/01/2013~
-~08192~^~304~^57.^0^^~9~^~MC~^^^^^^^^^^~02/01/2013~
-~08192~^~305~^162.^0^^~9~^~MC~^^^^^^^^^^~03/01/2011~
-~08192~^~306~^195.^0^^~9~^~MC~^^^^^^^^^^~02/01/2013~
-~08192~^~307~^341.^0^^~9~^~MC~^^^^^^^^^^~02/01/2013~
-~08192~^~318~^1364.^0^^~9~^~MC~^^~Y~^^^^^^^^~01/01/2003~
-~08192~^~319~^398.^0^^~4~^~NR~^^^^^^^^^^~02/01/2013~
-~08192~^~320~^400.^0^^~4~^~NC~^^^^^^^^^^~02/01/2013~
-~08192~^~321~^19.^0^^~4~^~FLM~^^^^^^^^^^~02/01/2013~
-~08192~^~322~^7.^0^^~4~^~FLM~^^^^^^^^^^~02/01/2013~
-~08192~^~324~^73.^0^^~9~^~MC~^^~Y~^^^^^^^^~07/01/2005~
-~08192~^~334~^0.^0^^~4~^~FLM~^^^^^^^^^^~03/01/2011~
-~08192~^~337~^0.^0^^~4~^~FLM~^^^^^^^^^^~03/01/2011~
-~08192~^~338~^205.^0^^~4~^~FLM~^^^^^^^^^^~02/01/2013~
-~08192~^~417~^182.^0^^~9~^~MC~^^~Y~^^^^^^^^~07/01/2005~
-~08192~^~431~^163.^0^^~4~^~NR~^^~Y~^^^^^^^^~01/01/2003~
-~08192~^~432~^19.^0^^~4~^~CAZN~^^^^^^^^^^~07/01/2005~
-~08192~^~435~^296.^0^^~4~^~NC~^^^^^^^^^^~03/01/2009~
-~08192~^~601~^0.^0^^~9~^~MC~^^^^^^^^^^~01/01/2003~
-~08200~^~208~^334.^0^^~9~^~MC~^^^^^^^^^^~04/01/2014~
-~08200~^~262~^0.^0^^~4~^~FLM~^^^^^^^^^^~03/01/2003~
-~08200~^~263~^0.^0^^~4~^~FLM~^^^^^^^^^^~03/01/2003~
-~08200~^~268~^1396.^0^^~9~^~MC~^^^^^^^^^^~04/01/2014~
-~08200~^~301~^36.^0^^~9~^~MC~^^^^^^^^^^~04/01/2014~
-~08200~^~304~^115.^0^^~9~^~MC~^^^^^^^^^^~04/01/2003~
-~08200~^~305~^346.^0^^~9~^~MC~^^^^^^^^^^~04/01/2003~
-~08200~^~306~^322.^0^^~9~^~MC~^^^^^^^^^^~04/01/2014~
-~08200~^~307~^7.^0^^~9~^~MC~^^^^^^^^^^~04/01/2014~
-~08200~^~318~^8.^0^^~9~^~MC~^^^^^^^^^^~04/01/2014~
-~08200~^~319~^0.^0^^~4~^~FLM~^^^^^^^^^^~03/01/2003~
-~08200~^~320~^0.^0^^~4~^~NC~^^^^^^^^^^~04/01/2014~
-~08200~^~321~^5.^0^^~4~^~BNA~^^^^^^^^^^~04/01/2014~
-~08200~^~322~^0.^0^^~4~^~BNA~^^^^^^^^^^~03/01/2003~
-~08200~^~324~^0.^0^^~7~^~Z~^^~N~^^^^^^^^~05/01/2009~
-~08200~^~334~^0.^0^^~4~^~BNA~^^^^^^^^^^~03/01/2003~
-~08200~^~337~^0.^0^^~4~^~FLM~^^^^^^^^^^~03/01/2003~
-~08200~^~338~^182.^0^^~4~^~FLM~^^^^^^^^^^~04/01/2014~
-~08200~^~417~^29.^0^^~9~^~MC~^^^^^^^^^^~04/01/2014~
-~08200~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~12/01/2000~
-~08200~^~432~^29.^0^^~9~^~MC~^^^^^^^^^^~04/01/2014~
-~08200~^~435~^29.^0^^~4~^~NC~^^^^^^^^^^~04/01/2014~
-~08200~^~601~^0.^0^^~9~^~MC~^^^^^^^^^^~04/01/2003~
-~08204~^~208~^405.^0^^~8~^~LC~^^^^^^^^^^~02/01/2005~
-~08204~^~262~^4.^0^^~4~^~FLM~^^^^^^^^^^~12/01/1997~
-~08204~^~263~^136.^0^^~4~^~FLM~^^^^^^^^^^~12/01/1997~
-~08204~^~268~^1695.^0^^~8~^~LC~^^^^^^^^^^~02/01/2005~
-~08204~^~301~^70.^0^^~5~^~ML~^^^^^^^^^^~02/01/2005~
-~08204~^~304~^36.^0^^~4~^~FLC~^^^^^^^^^^~02/01/2005~
-~08204~^~305~^141.^0^^~8~^~LC~^^^^^^^^^^~02/01/2005~
-~08204~^~306~^176.^0^^~8~^~LC~^^^^^^^^^^~02/01/2005~
-~08204~^~307~^534.^0^^~8~^~LC~^^^^^^^^^^~07/01/2012~
-~08204~^~318~^4409.^0^^~5~^~ML~^^^^^^^^^^~02/01/2005~
-~08204~^~319~^1324.^0^^~4~^~NC~^^^^^^^^^^~03/01/2003~
-~08204~^~320~^1324.^0^^~4~^~NC~^^^^^^^^^^~03/01/2003~
-~08204~^~321~^0.^0^^~4~^~BFZN~^^^^^^^^^^~03/01/2003~
-~08204~^~322~^0.^0^^~4~^~BFZN~^^^^^^^^^^~03/01/2003~
-~08204~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2009~
-~08204~^~334~^0.^0^^~4~^~BFZN~^^^^^^^^^^~03/01/2003~
-~08204~^~337~^0.^0^^~4~^~BFZN~^^^^^^^^^^~03/01/2003~
-~08204~^~338~^0.^0^^~4~^~BFZN~^^^^^^^^^^~03/01/2003~
-~08204~^~417~^353.^0^^~5~^~ML~^^^^^^^^^^~02/01/2005~
-~08204~^~431~^334.^0^^~4~^~NC~^^~Y~^^^^^^^^~03/01/2003~
-~08204~^~432~^19.^0^^~4~^~CAAN~^^^^^^^^^^~03/01/2003~
-~08204~^~435~^587.^0^^~4~^~NC~^^^^^^^^^^~07/01/2008~
-~08204~^~601~^0.^0^^~8~^~LC~^^^^^^^^^^~02/01/2005~
-~08206~^~208~^389.^0^^~9~^~MC~^^^^^^^^^^~02/01/2015~
-~08206~^~262~^6.^0^^~9~^~MC~^^^^^^^^^^~02/01/2015~
-~08206~^~263~^198.^0^^~4~^~FLM~^^^^^^^^^^~02/01/2015~
-~08206~^~268~^1626.^0^^~9~^~MC~^^^^^^^^^^~02/01/2015~
-~08206~^~301~^333.^0^^~9~^~MC~^^~Y~^^^^^^^^~02/01/2015~
-~08206~^~304~^27.^0^^~9~^~MC~^^^^^^^^^^~02/01/2015~
-~08206~^~305~^72.^0^^~9~^~MC~^^^^^^^^^^~02/01/2015~
-~08206~^~306~^201.^0^^~9~^~MC~^^^^^^^^^^~02/01/2015~
-~08206~^~307~^350.^0^^~9~^~MC~^^^^^^^^^^~02/01/2015~
-~08206~^~318~^1667.^0^^~9~^~MC~^^~Y~^^^^^^^^~02/01/2015~
-~08206~^~319~^477.^0^^~4~^~NR~^^^^^^^^^^~02/01/2015~
-~08206~^~320~^481.^0^^~4~^~NC~^^^^^^^^^^~02/01/2015~
-~08206~^~321~^35.^0^^~4~^~FLM~^^^^^^^^^^~02/01/2015~
-~08206~^~322~^23.^0^^~4~^~FLM~^^^^^^^^^^~02/01/2015~
-~08206~^~324~^133.^0^^~9~^~MC~^^~Y~^^^^^^^^~03/01/2013~
-~08206~^~334~^0.^0^^~4~^~FLM~^^^^^^^^^^~03/01/2005~
-~08206~^~337~^0.^0^^~4~^~FLM~^^^^^^^^^^~03/01/2005~
-~08206~^~338~^543.^0^^~4~^~FLM~^^^^^^^^^^~02/01/2015~
-~08206~^~417~^667.^0^^~9~^~MC~^^~Y~^^^^^^^^~02/01/2015~
-~08206~^~431~^648.^0^^~4~^~NR~^^~Y~^^^^^^^^~02/01/2009~
-~08206~^~432~^19.^0^^~4~^~CAZN~^^^^^^^^^^~03/01/2005~
-~08206~^~435~^1121.^0^^~4~^~NC~^^^^^^^^^^~02/01/2009~
-~08206~^~601~^0.^0^^~9~^~MC~^^^^^^^^^^~03/01/2013~
-~08210~^~208~^374.^0^^~9~^~MC~^^^^^^^^^^~02/01/2014~
-~08210~^~262~^0.^0^^~4~^~FLM~^^^^^^^^^^~02/01/2002~
-~08210~^~263~^0.^0^^~4~^~FLM~^^^^^^^^^^~02/01/2002~
-~08210~^~268~^1563.^0^^~9~^~MC~^^^^^^^^^^~02/01/2014~
-~08210~^~301~^387.^0^^~9~^~MC~^^~Y~^^^^^^^^~02/01/2014~
-~08210~^~304~^90.^0^^~9~^~MC~^^^^^^^^^^~02/01/2014~
-~08210~^~305~^390.^0^^~9~^~MC~^^^^^^^^^^~02/01/2014~
-~08210~^~306~^260.^0^^~9~^~MC~^^^^^^^^^^~02/01/2014~
-~08210~^~307~^463.^0^^~9~^~MC~^^^^^^^^^^~02/01/2014~
-~08210~^~318~^35.^0^^~9~^~MC~^^^^^^^^^^~03/01/2007~
-~08210~^~320~^2.^0^^~4~^~NC~^^^^^^^^^^~03/01/2007~
-~08210~^~324~^0.^0^^~4~^~FLM~^^^^^^^^^^~01/01/2011~
-~08210~^~417~^1318.^0^^~9~^~MC~^^~Y~^^^^^^^^~01/01/2011~
-~08210~^~431~^1299.^0^^~4~^~NR~^^~Y~^^^^^^^^~01/01/2011~
-~08210~^~432~^19.^0^^~4~^~CAZN~^^^^^^^^^^~03/01/2007~
-~08210~^~435~^2227.^0^^~4~^~NC~^^^^^^^^^^~01/01/2011~
-~08210~^~601~^0.^0^^~9~^~MC~^^^^^^^^^^~03/01/2007~
-~08211~^~208~^412.^0^^~9~^~MC~^^^^^^^^^^~01/01/2011~
-~08211~^~262~^0.^0^^~4~^~FLM~^^^^^^^^^^~03/01/2002~
-~08211~^~263~^0.^0^^~4~^~FLM~^^^^^^^^^^~03/01/2002~
-~08211~^~268~^1726.^0^^~9~^~MC~^^^^^^^^^^~05/01/2014~
-~08211~^~301~^11.^0^^~9~^~MC~^^^^^^^^^^~05/01/2014~
-~08211~^~304~^43.^0^^~9~^~MC~^^^^^^^^^^~05/01/2014~
-~08211~^~305~^133.^0^^~9~^~MC~^^^^^^^^^^~05/01/2014~
-~08211~^~306~^167.^0^^~9~^~MC~^^^^^^^^^^~05/01/2014~
-~08211~^~307~^679.^0^^~9~^~MC~^^^^^^^^^^~05/01/2014~
-~08211~^~318~^1496.^0^^~9~^~MC~^^~Y~^^^^^^^^~05/01/2014~
-~08211~^~319~^434.^0^^~4~^~NR~^^^^^^^^^^~05/01/2014~
-~08211~^~320~^436.^0^^~4~^~NC~^^^^^^^^^^~05/01/2014~
-~08211~^~321~^23.^0^^~4~^~FLM~^^^^^^^^^^~05/01/2014~
-~08211~^~322~^15.^0^^~4~^~FLM~^^^^^^^^^^~05/01/2014~
-~08211~^~324~^0.^0^^~4~^~FLM~^^^^^^^^^^~01/01/2011~
-~08211~^~334~^0.^0^^~4~^~FLM~^^^^^^^^^^~07/01/2013~
-~08211~^~337~^0.^0^^~4~^~FLM~^^^^^^^^^^~01/01/2011~
-~08211~^~338~^398.^0^^~4~^~FLM~^^^^^^^^^^~05/01/2014~
-~08211~^~417~^563.^0^^~9~^~MC~^^~Y~^^^^^^^^~05/01/2014~
-~08211~^~431~^544.^0^^~4~^~NR~^^~Y~^^^^^^^^~05/01/2014~
-~08211~^~432~^19.^0^^~4~^~CAZN~^^^^^^^^^^~03/01/2007~
-~08211~^~435~^945.^0^^~4~^~NC~^^^^^^^^^^~05/01/2014~
-~08211~^~601~^0.^0^^~9~^~MC~^^^^^^^^^^~03/01/2007~
-~08214~^~208~^379.^0^^~9~^~MC~^^^^^^^^^^~02/01/2011~
-~08214~^~262~^0.^0^^~4~^~FLM~^^^^^^^^^^~02/01/2002~
-~08214~^~263~^0.^0^^~4~^~FLM~^^^^^^^^^^~02/01/2002~
-~08214~^~268~^1586.^0^^~9~^~MC~^^^^^^^^^^~02/01/2011~
-~08214~^~301~^201.^0^^~9~^~MC~^^~Y~^^^^^^^^~02/01/2014~
-~08214~^~304~^115.^0^^~9~^~MC~^^^^^^^^^^~02/01/2014~
-~08214~^~305~^371.^0^^~9~^~MC~^^^^^^^^^^~02/01/2014~
-~08214~^~306~^357.^0^^~9~^~MC~^^^^^^^^^^~02/01/2014~
-~08214~^~307~^347.^0^^~9~^~MC~^^^^^^^^^^~02/01/2014~
-~08214~^~318~^1188.^0^^~9~^~MC~^^~Y~^^^^^^^^~02/01/2014~
-~08214~^~319~^356.^0^^~4~^~NR~^^^^^^^^^^~02/01/2014~
-~08214~^~320~^356.^0^^~4~^~NC~^^^^^^^^^^~02/01/2014~
-~08214~^~321~^1.^0^^~4~^~FLM~^^^^^^^^^^~02/01/2011~
-~08214~^~322~^0.^0^^~4~^~FLM~^^^^^^^^^^~02/01/2011~
-~08214~^~324~^0.^0^^~4~^~FLM~^^^^^^^^^^~02/01/2011~
-~08214~^~334~^0.^0^^~4~^~FLM~^^^^^^^^^^~02/01/2011~
-~08214~^~337~^0.^0^^~4~^~FLM~^^^^^^^^^^~02/01/2011~
-~08214~^~338~^136.^0^^~4~^~FLM~^^^^^^^^^^~02/01/2011~
-~08214~^~417~^722.^0^^~9~^~MC~^^~Y~^^^^^^^^~02/01/2011~
-~08214~^~431~^703.^0^^~4~^~NR~^^~Y~^^^^^^^^~02/01/2011~
-~08214~^~432~^19.^0^^~4~^~CAZN~^^^^^^^^^^~12/01/2002~
-~08214~^~435~^1214.^0^^~4~^~NC~^^^^^^^^^^~02/01/2011~
-~08214~^~601~^0.^0^^~9~^~MC~^^^^^^^^^^~01/01/1996~
-~08215~^~208~^379.^0^^~9~^~MC~^^^^^^^^^^~03/01/2007~
-~08215~^~262~^0.^0^^~4~^~FLM~^^^^^^^^^^~02/01/2002~
-~08215~^~263~^0.^0^^~4~^~FLM~^^^^^^^^^^~02/01/2002~
-~08215~^~268~^1585.^0^^~9~^~MC~^^^^^^^^^^~02/01/2014~
-~08215~^~301~^210.^0^^~9~^~MC~^^~Y~^^^^^^^^~02/01/2014~
-~08215~^~304~^114.^0^^~9~^~MC~^^^^^^^^^^~02/01/2014~
-~08215~^~305~^369.^0^^~9~^~MC~^^^^^^^^^^~02/01/2011~
-~08215~^~306~^359.^0^^~9~^~MC~^^^^^^^^^^~02/01/2014~
-~08215~^~307~^344.^0^^~9~^~MC~^^^^^^^^^^~02/01/2014~
-~08215~^~318~^1182.^0^^~9~^~MC~^^~Y~^^^^^^^^~02/01/2014~
-~08215~^~319~^354.^0^^~4~^~NR~^^^^^^^^^^~02/01/2014~
-~08215~^~320~^354.^0^^~4~^~NC~^^^^^^^^^^~02/01/2014~
-~08215~^~321~^1.^0^^~4~^~FLM~^^^^^^^^^^~02/01/2011~
-~08215~^~322~^0.^0^^~4~^~FLM~^^^^^^^^^^~02/01/2011~
-~08215~^~324~^0.^0^^~4~^~FLM~^^^^^^^^^^~02/01/2011~
-~08215~^~334~^0.^0^^~4~^~FLM~^^^^^^^^^^~02/01/2011~
-~08215~^~337~^0.^0^^~4~^~FLM~^^^^^^^^^^~03/01/2007~
-~08215~^~338~^136.^0^^~4~^~FLM~^^^^^^^^^^~02/01/2011~
-~08215~^~417~^726.^0^^~9~^~MC~^^~Y~^^^^^^^^~02/01/2011~
-~08215~^~431~^708.^0^^~4~^~NR~^^~Y~^^^^^^^^~03/01/2007~
-~08215~^~432~^18.^0^^~4~^~NC~^^^^^^^^^^~02/01/2011~
-~08215~^~435~^1221.^0^^~4~^~NC~^^^^^^^^^^~02/01/2011~
-~08215~^~601~^0.^0^^~9~^~MC~^^^^^^^^^^~03/01/2007~
-~08216~^~208~^372.^0^^~9~^~MC~^^^^^^^^^^~03/01/2002~
-~08216~^~262~^0.^0^^~4~^~FLM~^^^^^^^^^^~12/01/2002~
-~08216~^~263~^0.^0^^~4~^~FLM~^^^^^^^^^^~12/01/2002~
-~08216~^~268~^1555.^0^^~9~^~MC~^^^^^^^^^^~12/01/2002~
-~08216~^~301~^242.^0^^~9~^~MC~^^~Y~^^^^^^^^~02/01/2014~
-~08216~^~304~^168.^0^^~9~^~MC~^^^^^^^^^^~03/01/2002~
-~08216~^~305~^518.^0^^~9~^~MC~^^^^^^^^^^~03/01/2002~
-~08216~^~306~^438.^0^^~9~^~MC~^^^^^^^^^^~03/01/2002~
-~08216~^~307~^365.^0^^~9~^~MC~^^^^^^^^^^~02/01/2014~
-~08216~^~318~^1224.^0^^~9~^~MC~^^~Y~^^^^^^^^~02/01/2014~
-~08216~^~319~^358.^0^^~4~^~NR~^^^^^^^^^^~02/01/2014~
-~08216~^~320~^359.^0^^~4~^~NC~^^^^^^^^^^~02/01/2014~
-~08216~^~321~^14.^0^^~4~^~FLM~^^^^^^^^^^~02/01/2014~
-~08216~^~322~^9.^0^^~4~^~FLM~^^^^^^^^^^~02/01/2014~
-~08216~^~324~^0.^0^^~9~^~MC~^^^^^^^^^^~02/01/2014~
-~08216~^~334~^0.^0^^~4~^~FLM~^^^^^^^^^^~02/01/2014~
-~08216~^~337~^0.^0^^~4~^~FLM~^^^^^^^^^^~02/01/2014~
-~08216~^~338~^310.^0^^~4~^~FLM~^^^^^^^^^^~02/01/2014~
-~08216~^~417~^737.^0^^~9~^~MC~^^~Y~^^^^^^^^~03/01/2002~
-~08216~^~431~^718.^0^^~4~^~NR~^^~Y~^^^^^^^^~12/01/2002~
-~08216~^~432~^19.^0^^~4~^~CAZN~^^^^^^^^^^~12/01/2002~
-~08216~^~435~^1240.^0^^~4~^~NC~^^^^^^^^^^~05/01/2009~
-~08216~^~601~^0.^0^^~9~^~MC~^^^^^^^^^^~02/01/2014~
-~08218~^~208~^412.^0^^~9~^~MC~^^^^^^^^^^~01/01/2011~
-~08218~^~262~^0.^0^^~4~^~FLM~^^^^^^^^^^~03/01/2002~
-~08218~^~263~^0.^0^^~4~^~FLM~^^^^^^^^^^~03/01/2002~
-~08218~^~268~^1724.^0^^~9~^~MC~^^^^^^^^^^~01/01/2011~
-~08218~^~301~^101.^0^^~9~^~MC~^^^^^^^^^^~01/01/2011~
-~08218~^~304~^110.^0^^~9~^~MC~^^^^^^^^^^~01/01/2011~
-~08218~^~305~^357.^0^^~9~^~MC~^^^^^^^^^^~01/01/2011~
-~08218~^~306~^501.^0^^~9~^~MC~^^^^^^^^^^~01/01/2011~
-~08218~^~307~^54.^0^^~9~^~MC~^^^^^^^^^^~01/01/2011~
-~08218~^~318~^8.^0^^~9~^~MC~^^^^^^^^^^~01/01/2011~
-~08218~^~319~^0.^0^^~4~^~BNA~^~20080~^^^^^^^^^~01/01/2011~
-~08218~^~320~^0.^0^^~4~^~NC~^^^^^^^^^^~03/01/2007~
-~08218~^~321~^5.^0^^~4~^~BNA~^~20080~^^^^^^^^^~01/01/2011~
-~08218~^~322~^0.^0^^~4~^~BNA~^~20080~^^^^^^^^^~03/01/2007~
-~08218~^~324~^0.^0^^~4~^~FLM~^^^^^^^^^^~01/01/2011~
-~08218~^~334~^0.^0^^~4~^~BNA~^~20080~^^^^^^^^^~03/01/2007~
-~08218~^~337~^0.^0^^~4~^~FLM~^^^^^^^^^^~03/01/2007~
-~08218~^~338~^114.^0^^~4~^~FLM~^^^^^^^^^^~01/01/2011~
-~08218~^~417~^33.^0^^~9~^~MC~^^^^^^^^^^~01/01/2011~
-~08218~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2002~
-~08218~^~432~^33.^0^^~4~^~NR~^^^^^^^^^^~01/01/2011~
-~08218~^~435~^33.^0^^~4~^~NC~^^^^^^^^^^~01/01/2011~
-~08218~^~601~^2.^0^^~9~^~MC~^^^^^^^^^^~01/01/2011~
-~08220~^~208~^388.^0^^~9~^~MC~^^^^^^^^^^~01/01/2011~
-~08220~^~262~^0.^0^^~4~^~FLM~^^^^^^^^^^~03/01/2007~
-~08220~^~263~^0.^0^^~4~^~FLM~^^^^^^^^^^~03/01/2007~
-~08220~^~268~^1623.^0^^~9~^~MC~^^^^^^^^^^~01/01/2011~
-~08220~^~301~^65.^0^^~9~^~MC~^^^^^^^^^^~01/01/2011~
-~08220~^~304~^100.^0^^~9~^~MC~^^^^^^^^^^~01/01/2011~
-~08220~^~305~^316.^0^^~9~^~MC~^^^^^^^^^^~01/01/2011~
-~08220~^~306~^431.^0^^~9~^~MC~^^^^^^^^^^~01/01/2011~
-~08220~^~307~^234.^0^^~9~^~MC~^^^^^^^^^^~01/01/2011~
-~08220~^~318~^21.^0^^~9~^~MC~^^^^^^^^^^~01/01/2011~
-~08220~^~319~^0.^0^^~7~^~Z~^^~N~^^^^^^^^~01/01/2011~
-~08220~^~320~^1.^0^^~4~^~NC~^^^^^^^^^^~03/01/2007~
-~08220~^~321~^8.^0^^~4~^~BNA~^^^^^^^^^^~07/01/2003~
-~08220~^~322~^5.^0^^~4~^~BNA~^^^^^^^^^^~07/01/2003~
-~08220~^~324~^0.^0^^~7~^~Z~^^~N~^^^^^^^^~01/01/2011~
-~08220~^~334~^0.^0^^~4~^~BNA~^^^^^^^^^^~07/01/2003~
-~08220~^~337~^0.^0^^~4~^~FLM~^^^^^^^^^^~03/01/2007~
-~08220~^~338~^224.^0^^~4~^~FLM~^^^^^^^^^^~01/01/2011~
-~08220~^~417~^29.^0^^~9~^~MC~^^^^^^^^^^~01/01/2011~
-~08220~^~431~^0.^0^^~7~^~Z~^^~N~^^^^^^^^~01/01/2011~
-~08220~^~432~^29.^0^^~4~^~NR~^^^^^^^^^^~01/01/2011~
-~08220~^~435~^29.^0^^~4~^~NC~^^^^^^^^^^~01/01/2011~
-~08220~^~601~^1.^0^^~9~^~MC~^^^^^^^^^^~01/01/2011~
-~08221~^~208~^369.^0^^~9~^~MC~^^^^^^^^^^~03/01/2014~
-~08221~^~268~^1542.^0^^~9~^~MC~^^^^^^^^^^~03/01/2014~
-~08221~^~301~^413.^0^^~9~^~MC~^^~Y~^^^^^^^^~03/01/2014~
-~08221~^~304~^23.^0^^~9~^~MC~^^^^^^^^^^~03/01/2014~
-~08221~^~305~^115.^0^^~9~^~MC~^^^^^^^^^^~03/01/2014~
-~08221~^~306~^121.^0^^~9~^~MC~^^^^^^^^^^~03/01/2014~
-~08221~^~307~^1197.^0^^~9~^~MC~^^^^^^^^^^~03/01/2014~
-~08221~^~318~^672.^0^^~9~^~MC~^^^^^^^^^^~03/01/2014~
-~08221~^~417~^171.^0^^~9~^~MC~^^~Y~^^^^^^^^~03/01/2014~
-~08221~^~601~^0.^0^^~9~^~MC~^^^^^^^^^^~03/01/2014~
-~08225~^~208~^379.^0^^~9~^~MC~^^^^^^^^^^~04/01/2011~
-~08225~^~262~^0.^0^^~4~^~FLM~^^~N~^^^^^^^^~11/01/2002~
-~08225~^~263~^0.^0^^~4~^~FLM~^^~N~^^^^^^^^~11/01/2002~
-~08225~^~268~^1586.^0^^~9~^~MC~^^^^^^^^^^~04/01/2011~
-~08225~^~301~^307.^0^^~9~^~MC~^^~Y~^^^^^^^^~04/01/2011~
-~08225~^~304~^84.^0^^~9~^~MC~^^^^^^^^^^~04/01/2011~
-~08225~^~305~^300.^0^^~9~^~MC~^^^^^^^^^^~04/01/2011~
-~08225~^~306~^280.^0^^~9~^~MC~^^^^^^^^^^~04/01/2011~
-~08225~^~307~^499.^0^^~9~^~MC~^^^^^^^^^^~04/01/2011~
-~08225~^~318~^3142.^0^^~9~^~MC~^^^^^^^^^^~11/01/2002~
-~08225~^~319~^943.^0^^~4~^~BNA~^^^^^^^^^^~11/01/2002~
-~08225~^~320~^943.^0^^~4~^~NC~^^^^^^^^^^~04/01/2011~
-~08225~^~321~^3.^0^^~4~^~FLM~^^^^^^^^^^~04/01/2011~
-~08225~^~322~^0.^0^^~4~^~FLM~^^~N~^^^^^^^^~11/01/2002~
-~08225~^~324~^0.^0^^~4~^~FLM~^^~N~^^^^^^^^~04/01/2011~
-~08225~^~334~^2.^0^^~4~^~FLM~^^^^^^^^^^~04/01/2011~
-~08225~^~337~^0.^0^^~4~^~FLM~^^~N~^^^^^^^^~11/01/2002~
-~08225~^~338~^118.^0^^~4~^~FLM~^^^^^^^^^^~04/01/2011~
-~08225~^~417~^251.^0^^~9~^~MC~^^~Y~^^^^^^^^~11/01/2002~
-~08225~^~431~^228.^0^^~4~^~NR~^^~Y~^^^^^^^^~11/01/2002~
-~08225~^~432~^23.^0^^~4~^~NC~^^^^^^^^^^~11/01/2002~
-~08225~^~435~^411.^0^^~4~^~NC~^^^^^^^^^^~05/01/2009~
-~08225~^~601~^0.^0^^~9~^~MC~^^^^^^^^^^~11/01/2002~
-~08228~^~208~^371.^0^^~9~^~MC~^^^^^^^^^^~04/01/2011~
-~08228~^~262~^0.^0^^~4~^~FLM~^^~N~^^^^^^^^~04/01/2011~
-~08228~^~263~^0.^0^^~4~^~FLM~^^~N~^^^^^^^^~04/01/2011~
-~08228~^~268~^1552.^0^^~9~^~MC~^^^^^^^^^^~04/01/2011~
-~08228~^~301~^297.^0^^~9~^~MC~^^^^^^^^^^~04/01/2011~
-~08228~^~304~^92.^0^^~9~^~MC~^^^^^^^^^^~04/01/2011~
-~08228~^~305~^296.^0^^~9~^~MC~^^^^^^^^^^~04/01/2011~
-~08228~^~306~^374.^0^^~9~^~MC~^^^^^^^^^^~04/01/2011~
-~08228~^~307~^516.^0^^~9~^~MC~^^^^^^^^^^~04/01/2011~
-~08228~^~318~^2992.^0^^~9~^~MC~^^^^^^^^^^~04/01/2011~
-~08228~^~321~^1.^0^^~4~^~FLM~^^^^^^^^^^~04/01/2011~
-~08228~^~322~^0.^0^^~4~^~FLM~^^~N~^^^^^^^^~04/01/2011~
-~08228~^~324~^0.^0^^~4~^~FLM~^^~N~^^^^^^^^~04/01/2011~
-~08228~^~334~^0.^0^^~4~^~FLM~^^~N~^^^^^^^^~04/01/2011~
-~08228~^~337~^0.^0^^~4~^~FLM~^^~N~^^^^^^^^~04/01/2011~
-~08228~^~338~^103.^0^^~4~^~FLM~^^^^^^^^^^~04/01/2011~
-~08228~^~417~^239.^0^^~9~^~MC~^^^^^^^^^^~04/01/2011~
-~08228~^~431~^202.^0^^~4~^~O~^^^^^^^^^^~12/01/2000~
-~08228~^~432~^37.^0^^~4~^~NC~^^^^^^^^^^~04/01/2011~
-~08228~^~435~^381.^0^^~4~^~NC~^^^^^^^^^^~04/01/2011~
-~08228~^~601~^0.^0^^~9~^~MC~^^^^^^^^^^~02/01/1996~
-~08231~^~208~^364.^0^^~9~^~MC~^^^^^^^^^^~03/01/2003~
-~08231~^~268~^1525.^0^^~9~^~MC~^^^^^^^^^^~04/01/2003~
-~08231~^~301~^79.^0^^~9~^~MC~^^^^^^^^^^~02/01/1996~
-~08231~^~304~^241.^0^^~9~^~MC~^^^^^^^^^^~03/01/2003~
-~08231~^~305~^694.^0^^~9~^~MC~^^^^^^^^^^~03/01/2003~
-~08231~^~306~^579.^0^^~9~^~MC~^^^^^^^^^^~03/01/2003~
-~08231~^~307~^5.^0^^~9~^~MC~^^^^^^^^^^~03/01/2003~
-~08231~^~318~^100.^0^^~9~^~MC~^^^^^^^^^^~02/01/1996~
-~08231~^~324~^0.^0^^~7~^~Z~^^~N~^^^^^^^^~05/01/2009~
-~08231~^~417~^38.^0^^~9~^~MC~^^^^^^^^^^~03/01/2003~
-~08231~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~12/01/2000~
-~08231~^~432~^38.^0^^~9~^~MC~^^^^^^^^^^~04/01/2003~
-~08231~^~435~^38.^0^^~4~^~NC~^^^^^^^^^^~05/01/2009~
-~08231~^~601~^0.^0^^~9~^~MC~^^^^^^^^^^~02/01/1996~
-~08236~^~208~^43.^0^^~4~^~RA~^^^^^^^^^^~02/01/1996~
-~08236~^~268~^180.^0^^~4~^^^^^^^^^^^
-~08236~^~301~^11.^0^^~4~^~RA~^^^^^^^^^^~02/01/1996~
-~08236~^~304~^30.^0^^~4~^~RA~^^^^^^^^^^~02/01/1996~
-~08236~^~305~^83.^0^^~4~^~RA~^^^^^^^^^^~02/01/1996~
-~08236~^~306~^69.^0^^~4~^~RA~^^^^^^^^^^~02/01/1996~
-~08236~^~307~^3.^0^^~4~^~RA~^^^^^^^^^^~02/01/1996~
-~08236~^~318~^12.^0^^~4~^~RA~^^^^^^^^^^~02/01/1996~
-~08236~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2002~
-~08236~^~320~^1.^0^^~4~^~NC~^^^^^^^^^^~06/01/2002~
-~08236~^~417~^5.^0^^~4~^~RA~^^^^^^^^^^~02/01/1996~
-~08236~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~12/01/2000~
-~08236~^~432~^5.^0^^~4~^~RA~^^^^^^^^^^~12/01/2000~
-~08236~^~435~^5.^0^^~4~^~NC~^^^^^^^^^^~12/01/2000~
-~08236~^~601~^0.^0^^~4~^~RA~^^^^^^^^^^~02/01/1996~
-~08240~^~208~^43.^0^^~4~^~RA~^^^^^^^^^^~03/01/1996~
-~08240~^~268~^180.^0^^~4~^^^^^^^^^^^
-~08240~^~301~^11.^0^^~4~^~RA~^^^^^^^^^^~03/01/1996~
-~08240~^~304~^30.^0^^~4~^~RA~^^^^^^^^^^~03/01/1996~
-~08240~^~305~^82.^0^^~4~^~RA~^^^^^^^^^^~03/01/1996~
-~08240~^~306~^69.^0^^~4~^~RA~^^^^^^^^^^~03/01/1996~
-~08240~^~307~^46.^0^^~4~^~RA~^^^^^^^^^^~03/01/1996~
-~08240~^~318~^12.^0^^~4~^~RA~^^^^^^^^^^~03/01/1996~
-~08240~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2002~
-~08240~^~320~^1.^0^^~4~^~NC~^^^^^^^^^^~06/01/2002~
-~08240~^~417~^5.^0^^~4~^~RA~^^^^^^^^^^~03/01/1996~
-~08240~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~12/01/2000~
-~08240~^~432~^5.^0^^~4~^~RA~^^^^^^^^^^~12/01/2000~
-~08240~^~435~^5.^0^^~4~^~NC~^^^^^^^^^^~12/01/2000~
-~08240~^~601~^0.^0^^~4~^~RA~^^^^^^^^^^~03/01/1996~
-~08249~^~208~^61.^0^^~4~^~RA~^^^^^^^^^^~02/01/1996~
-~08249~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2001~
-~08249~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2001~
-~08249~^~268~^255.^0^^~4~^^^^^^^^^^^
-~08249~^~301~^8.^0^^~4~^~RA~^^^^^^^^^^~02/01/1996~
-~08249~^~304~^22.^0^^~4~^~RA~^^^^^^^^^^~02/01/1996~
-~08249~^~305~^64.^0^^~4~^~RA~^^^^^^^^^^~02/01/1996~
-~08249~^~306~^75.^0^^~4~^~RA~^^^^^^^^^^~02/01/1996~
-~08249~^~307~^3.^0^^~4~^~RA~^^^^^^^^^^~02/01/1996~
-~08249~^~318~^1.^0^^~4~^~RA~^^^^^^^^^^~02/01/1996~
-~08249~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2002~
-~08249~^~320~^0.^0^^~4~^~NC~^^^^^^^^^^~06/01/2002~
-~08249~^~417~^5.^0^^~4~^~RA~^^^^^^^^^^~02/01/1996~
-~08249~^~431~^4.^0^^~4~^~BFSN~^^^^^^^^^^~02/01/2001~
-~08249~^~432~^1.^0^^~4~^~BFSN~^^^^^^^^^^~02/01/2001~
-~08249~^~435~^8.^0^^~4~^~NC~^^^^^^^^^^~02/01/2001~
-~08249~^~601~^0.^0^^~4~^~RA~^^^^^^^^^^~02/01/1996~
-~08252~^~208~^61.^0^^~4~^~RA~^^^^^^^^^^~03/01/1996~
-~08252~^~268~^255.^0^^~4~^^^^^^^^^^^
-~08252~^~301~^8.^0^^~4~^~RA~^^^^^^^^^^~03/01/1996~
-~08252~^~304~^22.^0^^~4~^~RA~^^^^^^^^^^~03/01/1996~
-~08252~^~305~^63.^0^^~4~^~RA~^^^^^^^^^^~03/01/1996~
-~08252~^~306~^75.^0^^~4~^~RA~^^^^^^^^^^~03/01/1996~
-~08252~^~307~^70.^0^^~4~^~RA~^^^^^^^^^^~03/01/1996~
-~08252~^~318~^1.^0^^~4~^~RA~^^^^^^^^^^~03/01/1996~
-~08252~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2002~
-~08252~^~320~^0.^0^^~4~^~NC~^^^^^^^^^^~06/01/2002~
-~08252~^~417~^5.^0^^~4~^~RA~^^^^^^^^^^~03/01/1996~
-~08252~^~431~^4.^0^^~4~^~BFSN~^^^^^^^^^^~02/01/2001~
-~08252~^~432~^1.^0^^~4~^~BFSN~^^^^^^^^^^~02/01/2001~
-~08252~^~435~^8.^0^^~4~^~NC~^^^^^^^^^^~02/01/2001~
-~08252~^~601~^0.^0^^~4~^~RA~^^^^^^^^^^~03/01/1996~
-~08290~^~208~^353.^0^^~8~^~LC~^^^^^^^^^^~02/01/2005~
-~08290~^~262~^0.^0^^~4~^~FLM~^^^^^^^^^^~01/01/2003~
-~08290~^~263~^0.^0^^~4~^~FLM~^^^^^^^^^^~01/01/2003~
-~08290~^~268~^1477.^0^^~8~^~LC~^^^^^^^^^^~02/01/2005~
-~08290~^~301~^71.^0^^~8~^~LC~^^^^^^^^^^~06/01/2005~
-~08290~^~304~^144.^0^^~4~^~FLC~^^^^^^^^^^~02/01/2005~
-~08290~^~305~^327.^0^^~4~^~FLC~^^^^^^^^^^~02/01/2005~
-~08290~^~306~^480.^0^^~8~^~LC~^^^^^^^^^^~07/01/2012~
-~08290~^~307~^200.^0^^~8~^~LC~^^^^^^^^^^~07/01/2012~
-~08290~^~318~^353.^0^^~8~^~LC~^^^^^^^^^^~06/01/2005~
-~08290~^~319~^106.^0^^~4~^~NC~^^^^^^^^^^~03/01/2003~
-~08290~^~320~^106.^0^^~4~^~NC~^^^^^^^^^^~03/01/2003~
-~08290~^~321~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2003~
-~08290~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2003~
-~08290~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2009~
-~08290~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2003~
-~08290~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2003~
-~08290~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2003~
-~08290~^~417~^141.^0^^~8~^~LC~^^^^^^^^^^~06/01/2005~
-~08290~^~431~^122.^0^^~4~^~NC~^^~Y~^^^^^^^^~03/01/2003~
-~08290~^~432~^19.^0^^~4~^~CAZN~^^^^^^^^^^~03/01/2003~
-~08290~^~435~^226.^0^^~4~^~NC~^^^^^^^^^^~07/01/2008~
-~08290~^~601~^0.^0^^~8~^~LC~^^^^^^^^^^~02/01/2005~
-~08305~^~208~^390.^0^^~9~^~MC~^^^^^^^^^^~04/01/2014~
-~08305~^~262~^0.^0^^~4~^~FLM~^^^^^^^^^^~03/01/2003~
-~08305~^~263~^0.^0^^~4~^~FLM~^^^^^^^^^^~03/01/2003~
-~08305~^~268~^1630.^0^^~9~^~MC~^^^^^^^^^^~04/01/2014~
-~08305~^~301~^24.^0^^~9~^~MC~^^^^^^^^^^~04/01/2014~
-~08305~^~304~^72.^0^^~9~^~MC~^^^^^^^^^^~04/01/2014~
-~08305~^~305~^237.^0^^~9~^~MC~^^^^^^^^^^~04/01/2014~
-~08305~^~306~^212.^0^^~9~^~MC~^^^^^^^^^^~04/01/2014~
-~08305~^~307~^596.^0^^~9~^~MC~^^^^^^^^^^~04/01/2014~
-~08305~^~318~^2500.^0^^~9~^~MC~^^~Y~^^^^^^^^~03/01/2003~
-~08305~^~319~^738.^0^^~4~^~NR~^^^^^^^^^^~04/01/2014~
-~08305~^~320~^740.^0^^~4~^~NC~^^^^^^^^^^~04/01/2014~
-~08305~^~321~^18.^0^^~4~^~FLM~^^^^^^^^^^~04/01/2014~
-~08305~^~322~^12.^0^^~4~^~FLM~^^^^^^^^^^~04/01/2014~
-~08305~^~324~^133.^0^^~9~^~MC~^^~Y~^^^^^^^^~04/01/2014~
-~08305~^~334~^0.^0^^~4~^~FLM~^^^^^^^^^^~04/01/2014~
-~08305~^~337~^0.^0^^~4~^~FLM~^^^^^^^^^^~03/01/2003~
-~08305~^~338~^286.^0^^~4~^~FLM~^^^^^^^^^^~04/01/2014~
-~08305~^~417~^333.^0^^~9~^~MC~^^~Y~^^^^^^^^~04/01/2003~
-~08305~^~431~^314.^0^^~4~^~NR~^^~Y~^^^^^^^^~03/01/2003~
-~08305~^~432~^19.^0^^~4~^~CAZN~^^^^^^^^^^~03/01/2003~
-~08305~^~435~^553.^0^^~4~^~NC~^^^^^^^^^^~03/01/2007~
-~08305~^~601~^0.^0^^~9~^~MC~^^^^^^^^^^~04/01/2014~
-~08314~^~208~^348.^0^^~9~^~MC~^^^^^^^^^^~03/01/2014~
-~08314~^~268~^1458.^0^^~9~^~MC~^^^^^^^^^^~03/01/2014~
-~08314~^~301~^2.^0^^~9~^~MC~^^^^^^^^^^~03/01/2014~
-~08314~^~304~^27.^0^^~9~^~MC~^^^^^^^^^^~03/01/2014~
-~08314~^~305~^73.^0^^~9~^~MC~^^^^^^^^^^~03/01/2014~
-~08314~^~306~^137.^0^^~9~^~MC~^^^^^^^^^^~03/01/2014~
-~08314~^~307~^1.^0^^~9~^~MC~^^^^^^^^^^~03/01/2014~
-~08314~^~318~^0.^0^^~9~^~MC~^^^^^^^^^^~10/01/1997~
-~08314~^~417~^205.^0^^~9~^~MC~^^~Y~^^^^^^^^~03/01/2014~
-~08314~^~601~^0.^0^^~9~^~MC~^^^^^^^^^^~10/01/1997~
-~08316~^~208~^361.^0^^~9~^~MC~^^^^^^^^^^~03/01/2014~
-~08316~^~268~^1510.^0^^~9~^~MC~^^^^^^^^^^~03/01/2014~
-~08316~^~301~^2.^0^^~9~^~MC~^^^^^^^^^^~03/01/2014~
-~08316~^~304~^27.^0^^~9~^~MC~^^^^^^^^^^~03/01/2014~
-~08316~^~305~^73.^0^^~9~^~MC~^^^^^^^^^^~03/01/2014~
-~08316~^~306~^137.^0^^~9~^~MC~^^^^^^^^^^~03/01/2014~
-~08316~^~307~^1.^0^^~9~^~MC~^^^^^^^^^^~03/01/2014~
-~08316~^~318~^3.^0^^~9~^~MC~^^^^^^^^^^~03/01/2014~
-~08316~^~320~^0.^0^^~4~^~NC~^^^^^^^^^^~04/01/2003~
-~08316~^~417~^205.^0^^~9~^~MC~^^~Y~^^^^^^^^~03/01/2014~
-~08316~^~601~^0.^0^^~9~^~MC~^^^^^^^^^^~10/01/1997~
-~08346~^~208~^401.^0^^~9~^~MC~^^^^^^^^^^~12/01/2014~
-~08346~^~262~^0.^0^^~9~^~MC~^^^^^^^^^^~03/01/2013~
-~08346~^~263~^0.^0^^~4~^~FLA~^^^^^^^^^^~12/01/2014~
-~08346~^~268~^1677.^0^^~9~^~MC~^^^^^^^^^^~12/01/2014~
-~08346~^~301~^0.^0^^~9~^~MC~^^^^^^^^^^~03/01/2013~
-~08346~^~304~^5.^0^^~9~^~MC~^^^^^^^^^^~12/01/2014~
-~08346~^~305~^57.^0^^~9~^~MC~^^^^^^^^^^~12/01/2014~
-~08346~^~306~^110.^0^^~9~^~MC~^^^^^^^^^^~03/01/2013~
-~08346~^~307~^806.^0^^~9~^~MC~^^^^^^^^^^~12/01/2014~
-~08346~^~318~^1667.^0^^~9~^~MC~^^~Y~^^^^^^^^~12/01/2014~
-~08346~^~319~^475.^0^^~4~^~NR~^^^^^^^^^^~12/01/2014~
-~08346~^~320~^479.^0^^~4~^~NC~^^^^^^^^^^~12/01/2014~
-~08346~^~321~^37.^0^^~4~^~FLA~^^^^^^^^^^~12/01/2014~
-~08346~^~322~^24.^0^^~4~^~FLA~^^^^^^^^^^~12/01/2014~
-~08346~^~324~^133.^0^^~9~^~MC~^^~Y~^^^^^^^^~03/01/2013~
-~08346~^~334~^0.^0^^~4~^~FLA~^^^^^^^^^^~12/01/2014~
-~08346~^~337~^0.^0^^~4~^~FLA~^^^^^^^^^^~12/01/2014~
-~08346~^~338~^635.^0^^~4~^~FLA~^^^^^^^^^^~12/01/2014~
-~08346~^~417~^667.^0^^~9~^~MC~^^~Y~^^^^^^^^~12/01/2014~
-~08346~^~431~^648.^0^^~4~^~NR~^^~Y~^^^^^^^^~02/01/2009~
-~08346~^~432~^19.^0^^~4~^~CAZN~^^^^^^^^^^~02/01/2005~
-~08346~^~435~^1121.^0^^~4~^~NC~^^^^^^^^^^~02/01/2009~
-~08346~^~601~^0.^0^^~9~^~MC~^^^^^^^^^^~03/01/2013~
-~08347~^~208~^396.^0^^~9~^~MC~^^^^^^^^^^~01/01/2015~
-~08347~^~262~^0.^0^^~9~^~MC~^^^^^^^^^^~03/01/2013~
-~08347~^~263~^0.^0^^~4~^~FLM~^^^^^^^^^^~02/01/2005~
-~08347~^~268~^1657.^0^^~9~^~MC~^^^^^^^^^^~01/01/2015~
-~08347~^~301~^33.^0^^~9~^~MC~^^^^^^^^^^~03/01/2013~
-~08347~^~304~^11.^0^^~9~^~MC~^^^^^^^^^^~01/01/2015~
-~08347~^~305~^75.^0^^~9~^~MC~^^^^^^^^^^~01/01/2015~
-~08347~^~306~^109.^0^^~9~^~MC~^^^^^^^^^^~01/01/2015~
-~08347~^~307~^633.^0^^~9~^~MC~^^^^^^^^^^~01/01/2015~
-~08347~^~318~^1667.^0^^~9~^~MC~^^~Y~^^^^^^^^~03/01/2013~
-~08347~^~320~^83.^0^^~4~^~NC~^^^^^^^^^^~01/01/2015~
-~08347~^~324~^133.^0^^~9~^~MC~^^~Y~^^^^^^^^~03/01/2013~
-~08347~^~417~^667.^0^^~9~^~MC~^^~Y~^^^^^^^^~01/01/2015~
-~08347~^~431~^648.^0^^~4~^~NR~^^~Y~^^^^^^^^~03/01/2013~
-~08347~^~432~^19.^0^^~4~^~CAZN~^^^^^^^^^^~02/01/2005~
-~08347~^~435~^1121.^0^^~4~^~NC~^^^^^^^^^^~03/01/2013~
-~08347~^~601~^0.^0^^~9~^~MC~^^^^^^^^^^~03/01/2013~
-~08348~^~208~^346.^0^^~9~^~MC~^^^^^^^^^^~02/01/2015~
-~08348~^~262~^0.^0^^~9~^~MC~^^^^^^^^^^~03/01/2013~
-~08348~^~268~^1448.^0^^~9~^~MC~^^^^^^^^^^~02/01/2015~
-~08348~^~301~^7.^0^^~9~^~MC~^^^^^^^^^^~03/01/2013~
-~08348~^~304~^24.^0^^~9~^~MC~^^^^^^^^^^~03/01/2013~
-~08348~^~305~^121.^0^^~9~^~MC~^^^^^^^^^^~03/01/2013~
-~08348~^~306~^114.^0^^~9~^~MC~^^^^^^^^^^~02/01/2015~
-~08348~^~307~^924.^0^^~9~^~MC~^^^^^^^^^^~02/01/2015~
-~08348~^~318~^1515.^0^^~9~^~MC~^^~Y~^^^^^^^^~02/01/2015~
-~08348~^~320~^455.^0^^~4~^~NC~^^^^^^^^^^~02/01/2015~
-~08348~^~324~^121.^0^^~9~^~MC~^^~Y~^^^^^^^^~02/01/2015~
-~08348~^~417~^1210.^0^^~9~^~MC~^^~Y~^^^^^^^^~02/01/2015~
-~08348~^~431~^1206.^0^^~4~^~NR~^^~Y~^^^^^^^^~02/01/2015~
-~08348~^~432~^4.^0^^~4~^~CAZN~^^^^^^^^^^~02/01/2005~
-~08348~^~435~^2054.^0^^~4~^~NC~^^^^^^^^^^~02/01/2015~
-~08348~^~601~^0.^0^^~9~^~MC~^^^^^^^^^^~03/01/2013~
-~08349~^~208~^391.^0^^~9~^~MC~^^^^^^^^^^~01/01/2015~
-~08349~^~262~^0.^0^^~9~^~MC~^^^^^^^^^^~01/01/2015~
-~08349~^~263~^0.^0^^~4~^~FLM~^^^^^^^^^^~03/01/2003~
-~08349~^~268~^1634.^0^^~9~^~MC~^^^^^^^^^^~01/01/2015~
-~08349~^~301~^313.^0^^~9~^~MC~^^~Y~^^^^^^^^~01/01/2015~
-~08349~^~304~^24.^0^^~9~^~MC~^^^^^^^^^^~01/01/2015~
-~08349~^~305~^78.^0^^~9~^~MC~^^^^^^^^^^~01/01/2015~
-~08349~^~306~^104.^0^^~9~^~MC~^^^^^^^^^^~01/01/2015~
-~08349~^~307~^453.^0^^~9~^~MC~^^^^^^^^^^~01/01/2015~
-~08349~^~318~^1563.^0^^~9~^~MC~^^~Y~^^^^^^^^~01/01/2015~
-~08349~^~319~^444.^0^^~4~^~NR~^^^^^^^^^^~01/01/2015~
-~08349~^~320~^448.^0^^~4~^~NC~^^^^^^^^^^~01/01/2015~
-~08349~^~321~^37.^0^^~4~^~FLM~^^^^^^^^^^~01/01/2015~
-~08349~^~322~^24.^0^^~4~^~FLM~^^^^^^^^^^~01/01/2015~
-~08349~^~324~^125.^0^^~9~^~MC~^^~Y~^^^^^^^^~01/01/2015~
-~08349~^~334~^0.^0^^~4~^~FLM~^^^^^^^^^^~03/01/2003~
-~08349~^~337~^0.^0^^~4~^~FLM~^^^^^^^^^^~03/01/2003~
-~08349~^~338~^625.^0^^~4~^~FLM~^^^^^^^^^^~01/01/2015~
-~08349~^~417~^625.^0^^~9~^~MC~^^~Y~^^^^^^^^~01/01/2015~
-~08349~^~431~^606.^0^^~4~^~NR~^^~Y~^^^^^^^^~02/01/2009~
-~08349~^~432~^19.^0^^~4~^~CAZN~^^^^^^^^^^~02/01/2005~
-~08349~^~435~^1049.^0^^~4~^~NC~^^^^^^^^^^~02/01/2009~
-~08349~^~601~^0.^0^^~9~^~MC~^^^^^^^^^^~01/01/2015~
-~08351~^~208~^407.^0^^~9~^~MC~^^^^^^^^^^~02/01/2014~
-~08351~^~268~^1704.^0^^~9~^~MC~^^^^^^^^^^~02/01/2014~
-~08351~^~301~^23.^0^^~9~^~MC~^^^^^^^^^^~02/01/2014~
-~08351~^~304~^74.^0^^~9~^~MC~^^^^^^^^^^~02/01/2002~
-~08351~^~305~^213.^0^^~9~^~MC~^^^^^^^^^^~02/01/2014~
-~08351~^~306~^296.^0^^~9~^~MC~^^^^^^^^^^~02/01/2014~
-~08351~^~307~^774.^0^^~9~^~MC~^^^^^^^^^^~06/01/2010~
-~08351~^~318~^159.^0^^~9~^~MC~^^^^^^^^^^~02/01/2014~
-~08351~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2002~
-~08351~^~320~^8.^0^^~4~^~NC~^^^^^^^^^^~02/01/2014~
-~08351~^~324~^0.^0^^~7~^~Z~^^~N~^^^^^^^^~05/01/2009~
-~08351~^~417~^24.^0^^~9~^~MC~^^^^^^^^^^~02/01/2002~
-~08351~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2002~
-~08351~^~432~^24.^0^^~9~^~MC~^^^^^^^^^^~02/01/2002~
-~08351~^~435~^24.^0^^~4~^~NC~^^^^^^^^^^~05/01/2009~
-~08351~^~601~^0.^0^^~9~^~MC~^^^^^^^^^^~02/01/2002~
-~08352~^~208~^372.^0^^~9~^~MC~^^^^^^^^^^~02/01/2014~
-~08352~^~268~^1558.^0^^~9~^~MC~^^^^^^^^^^~02/01/2014~
-~08352~^~301~^58.^0^^~9~^~MC~^^^^^^^^^^~02/01/2014~
-~08352~^~304~^136.^0^^~9~^~MC~^^^^^^^^^^~02/01/2014~
-~08352~^~305~^429.^0^^~9~^~MC~^^^^^^^^^^~02/01/2014~
-~08352~^~306~^489.^0^^~9~^~MC~^^^^^^^^^^~02/01/2014~
-~08352~^~307~^653.^0^^~9~^~MC~^^^^^^^^^^~02/01/2014~
-~08352~^~318~^63.^0^^~9~^~MC~^^^^^^^^^^~02/01/2014~
-~08352~^~320~^3.^0^^~4~^~NC~^^^^^^^^^^~02/01/2014~
-~08352~^~324~^0.^0^^~7~^~Z~^^~N~^^^^^^^^~05/01/2009~
-~08352~^~417~^36.^0^^~9~^~MC~^^^^^^^^^^~02/01/2014~
-~08352~^~432~^36.^0^^~9~^~MC~^^^^^^^^^^~02/01/2014~
-~08352~^~435~^36.^0^^~4~^~NC~^^^^^^^^^^~02/01/2014~
-~08352~^~601~^0.^0^^~9~^~MC~^^~N~^^^^^^^^~02/01/2014~
-~08353~^~208~^382.^0^^~9~^~MC~^^^^^^^^^^~02/01/2014~
-~08353~^~268~^1597.^0^^~9~^~MC~^^^^^^^^^^~02/01/2014~
-~08353~^~301~^50.^0^^~9~^~MC~^^^^^^^^^^~02/01/2014~
-~08353~^~304~^106.^0^^~9~^~MC~^^^^^^^^^^~02/01/2002~
-~08353~^~305~^347.^0^^~9~^~MC~^^^^^^^^^^~02/01/2014~
-~08353~^~306~^325.^0^^~9~^~MC~^^^^^^^^^^~02/01/2014~
-~08353~^~307~^275.^0^^~9~^~MC~^^^^^^^^^^~02/01/2014~
-~08353~^~318~^17.^0^^~9~^~MC~^^^^^^^^^^~02/01/2014~
-~08353~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2002~
-~08353~^~320~^1.^0^^~4~^~NC~^^^^^^^^^^~02/01/2014~
-~08353~^~324~^0.^0^^~7~^~Z~^^~N~^^^^^^^^~05/01/2009~
-~08353~^~417~^37.^0^^~9~^~MC~^^^^^^^^^^~02/01/2014~
-~08353~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2002~
-~08353~^~432~^37.^0^^~9~^~MC~^^^^^^^^^^~02/01/2014~
-~08353~^~435~^37.^0^^~4~^~NC~^^^^^^^^^^~02/01/2014~
-~08353~^~601~^0.^0^^~9~^~MC~^^^^^^^^^^~02/01/2002~
-~08354~^~208~^379.^0^^~9~^~MC~^^^^^^^^^^~02/01/2014~
-~08354~^~268~^1587.^0^^~9~^~MC~^^^^^^^^^^~02/01/2014~
-~08354~^~301~^18.^0^^~9~^~MC~^^^^^^^^^^~02/01/2014~
-~08354~^~304~^57.^0^^~9~^~MC~^^^^^^^^^^~02/01/2002~
-~08354~^~305~^156.^0^^~9~^~MC~^^^^^^^^^^~02/01/2014~
-~08354~^~306~^199.^0^^~9~^~MC~^^^^^^^^^^~02/01/2014~
-~08354~^~307~^758.^0^^~9~^~MC~^^^^^^^^^^~02/01/2014~
-~08354~^~318~^162.^0^^~9~^~MC~^^^^^^^^^^~02/01/2014~
-~08354~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2002~
-~08354~^~320~^8.^0^^~4~^~NC~^^^^^^^^^^~02/01/2014~
-~08354~^~417~^15.^0^^~9~^~MC~^^^^^^^^^^~02/01/2014~
-~08354~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2002~
-~08354~^~432~^15.^0^^~9~^~MC~^^^^^^^^^^~02/01/2014~
-~08354~^~435~^15.^0^^~4~^~NC~^^^^^^^^^^~02/01/2014~
-~08354~^~601~^0.^0^^~9~^~MC~^^^^^^^^^^~02/01/2002~
-~08355~^~208~^382.^0^^~9~^~MC~^^^^^^^^^^~02/01/2014~
-~08355~^~268~^1599.^0^^~9~^~MC~^^^^^^^^^^~02/01/2014~
-~08355~^~301~^16.^0^^~9~^~MC~^^^^^^^^^^~02/01/2014~
-~08355~^~304~^61.^0^^~9~^~MC~^^^^^^^^^^~02/01/2014~
-~08355~^~305~^166.^0^^~9~^~MC~^^^^^^^^^^~02/01/2014~
-~08355~^~306~^226.^0^^~9~^~MC~^^^^^^^^^^~02/01/2014~
-~08355~^~307~^452.^0^^~9~^~MC~^^^^^^^^^^~02/01/2014~
-~08355~^~318~^186.^0^^~9~^~MC~^^^^^^^^^^~02/01/2014~
-~08355~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2002~
-~08355~^~320~^9.^0^^~4~^~NC~^^^^^^^^^^~02/01/2014~
-~08355~^~324~^0.^0^^~7~^~Z~^^~N~^^^^^^^^~05/01/2009~
-~08355~^~417~^15.^0^^~9~^~MC~^^^^^^^^^^~02/01/2014~
-~08355~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2002~
-~08355~^~432~^15.^0^^~9~^~MC~^^^^^^^^^^~02/01/2014~
-~08355~^~435~^15.^0^^~4~^~NC~^^^^^^^^^^~02/01/2014~
-~08355~^~601~^0.^0^^~9~^~MC~^^^^^^^^^^~02/01/2002~
-~08363~^~208~^200.^0^^~9~^~MC~^^^^^^^^^^~02/01/2002~
-~08363~^~268~^839.^0^^~9~^~MC~^^^^^^^^^^~12/01/2006~
-~08363~^~301~^66.^0^^~9~^~MC~^^^^^^^^^^~02/01/2002~
-~08363~^~304~^606.^0^^~9~^~MC~^^^^^^^^^^~02/01/2002~
-~08363~^~305~^1314.^0^^~9~^~MC~^^^^^^^^^^~02/01/2002~
-~08363~^~306~^1284.^0^^~9~^~MC~^^^^^^^^^^~02/01/2002~
-~08363~^~307~^6.^0^^~9~^~MC~^^^^^^^^^^~02/01/2002~
-~08363~^~318~^0.^0^^~9~^~MC~^^^^^^^^^^~02/01/2002~
-~08363~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2002~
-~08363~^~320~^0.^0^^~4~^~NC~^^~N~^^^^^^^^~12/01/2006~
-~08363~^~324~^0.^0^^~9~^~MC~^^^^^^^^^^~07/01/2015~
-~08363~^~417~^193.^0^^~9~^~MC~^^^^^^^^^^~03/01/2002~
-~08363~^~432~^193.^0^^~9~^~MC~^^^^^^^^^^~07/01/2015~
-~08363~^~601~^0.^0^^~9~^~MC~^^^^^^^^^^~02/01/2002~
-~08365~^~208~^348.^0^^~9~^~MC~^^^^^^^^^^~01/01/2011~
-~08365~^~268~^1456.^0^^~9~^~MC~^^^^^^^^^^~01/01/2011~
-~08365~^~301~^45.^0^^~9~^~MC~^^^^^^^^^^~03/01/2002~
-~08365~^~304~^172.^0^^~9~^~MC~^^^^^^^^^^~01/01/2011~
-~08365~^~305~^362.^0^^~9~^~MC~^^^^^^^^^^~01/01/2011~
-~08365~^~306~^358.^0^^~9~^~MC~^^^^^^^^^^~01/01/2011~
-~08365~^~307~^4.^0^^~9~^~MC~^^^^^^^^^^~02/01/2002~
-~08365~^~318~^0.^0^^~9~^~MC~^^^^^^^^^^~02/01/2002~
-~08365~^~320~^0.^0^^~4~^~NC~^^~N~^^^^^^^^~03/01/2002~
-~08365~^~324~^0.^0^^~7~^~Z~^^~N~^^^^^^^^~05/01/2009~
-~08365~^~417~^51.^0^^~9~^~MC~^^^^^^^^^^~01/01/2011~
-~08365~^~431~^0.^0^^~7~^~Z~^^~N~^^^^^^^^~07/01/2014~
-~08365~^~432~^51.^0^^~9~^~MC~^^^^^^^^^^~01/01/2011~
-~08365~^~435~^51.^0^^~4~^~NC~^^^^^^^^^^~07/01/2014~
-~08365~^~601~^0.^0^^~9~^~MC~^^^^^^^^^^~02/01/2002~
-~08366~^~208~^366.^0^^~9~^~MC~^^^^^^^^^^~02/01/2002~
-~08366~^~268~^1532.^0^^~9~^~MC~^^^^^^^^^^~02/01/2002~
-~08366~^~301~^50.^0^^~9~^~MC~^^^^^^^^^^~02/01/2002~
-~08366~^~304~^313.^0^^~9~^~MC~^^^^^^^^^^~02/01/2002~
-~08366~^~305~^1130.^0^^~9~^~MC~^^^^^^^^^^~02/01/2002~
-~08366~^~306~^1097.^0^^~9~^~MC~^^^^^^^^^^~02/01/2002~
-~08366~^~307~^6.^0^^~9~^~MC~^^^^^^^^^^~02/01/2002~
-~08366~^~318~^127.^0^^~9~^~MC~^^^^^^^^^^~08/01/2014~
-~08366~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2002~
-~08366~^~320~^6.^0^^~4~^~NC~^^^^^^^^^^~08/01/2014~
-~08366~^~324~^0.^0^^~9~^~MC~^^^^^^^^^^~08/01/2014~
-~08366~^~417~^669.^0^^~9~^~MC~^^~Y~^^^^^^^^~02/01/2002~
-~08366~^~431~^317.^0^^~4~^~NR~^^~Y~^^^^^^^^~02/01/2002~
-~08366~^~432~^352.^0^^~4~^~BFZN~^~08084~^^^^^^^^^~07/01/2002~
-~08366~^~435~^892.^0^^~4~^~NC~^^^^^^^^^^~05/01/2009~
-~08366~^~601~^0.^0^^~9~^~MC~^^^^^^^^^^~02/01/2002~
-~08402~^~208~^371.^0^^~9~^~MC~^^^^^^^^^^~09/01/2002~
-~08402~^~262~^0.^0^^~4~^~BFZN~^~08120~^^^^^^^^^~04/01/2003~
-~08402~^~263~^0.^0^^~4~^~BFZN~^~08120~^^^^^^^^^~04/01/2003~
-~08402~^~268~^1552.^0^^~9~^~MC~^^^^^^^^^^~04/01/2003~
-~08402~^~301~^47.^0^^~9~^~MC~^^^^^^^^^^~09/01/2002~
-~08402~^~304~^270.^0^^~9~^~MC~^^^^^^^^^^~09/01/2002~
-~08402~^~305~^458.^0^^~9~^~MC~^^^^^^^^^^~09/01/2002~
-~08402~^~306~^358.^0^^~9~^~MC~^^^^^^^^^^~09/01/2002~
-~08402~^~307~^3.^0^^~9~^~MC~^^^^^^^^^^~09/01/2002~
-~08402~^~318~^0.^0^^~9~^~MC~^^^^^^^^^^~09/01/2002~
-~08402~^~319~^0.^0^^~4~^~BFZN~^~08120~^^^^^^^^^~04/01/2003~
-~08402~^~320~^0.^0^^~4~^~BFZN~^~08120~^^^^^^^^^~04/01/2003~
-~08402~^~321~^0.^0^^~4~^~BFZN~^~08120~^^^^^^^^^~04/01/2003~
-~08402~^~322~^0.^0^^~4~^~BFZN~^~08120~^^^^^^^^^~04/01/2003~
-~08402~^~324~^0.^0^^~9~^~MC~^^^^^^^^^^~02/01/2014~
-~08402~^~334~^0.^0^^~4~^~BFZN~^~08120~^^^^^^^^^~04/01/2003~
-~08402~^~337~^0.^0^^~4~^~BFZN~^~08120~^^^^^^^^^~04/01/2003~
-~08402~^~338~^180.^0^^~4~^~BFZN~^~08120~^^^^^^^^^~04/01/2003~
-~08402~^~417~^32.^0^^~4~^~BFZN~^~08120~^^^^^^^^^~04/01/2003~
-~08402~^~431~^0.^0^^~4~^~BFZN~^~08120~^^^^^^^^^~04/01/2003~
-~08402~^~432~^32.^0^^~4~^~BFZN~^~08120~^^^^^^^^^~04/01/2003~
-~08402~^~435~^32.^0^^~4~^~NC~^^^^^^^^^^~05/01/2009~
-~08402~^~601~^0.^0^^~9~^~MC~^^^^^^^^^^~09/01/2002~
-~08409~^~208~^389.^0^^~9~^~MC~^^^^^^^^^^~01/01/2015~
-~08409~^~262~^0.^0^^~9~^~MC~^^^^^^^^^^~03/01/2013~
-~08409~^~263~^0.^0^^~4~^~FLM~^^^^^^^^^^~04/01/2003~
-~08409~^~268~^1627.^0^^~9~^~MC~^^^^^^^^^^~01/01/2015~
-~08409~^~301~^3.^0^^~4~^~FLM~^^^^^^^^^^~01/01/2015~
-~08409~^~304~^12.^0^^~4~^~FLM~^^^^^^^^^^~01/01/2015~
-~08409~^~305~^46.^0^^~9~^~MC~^^^^^^^^^^~01/01/2015~
-~08409~^~306~^82.^0^^~9~^~MC~^^^^^^^^^^~01/01/2015~
-~08409~^~307~^451.^0^^~9~^~MC~^^^^^^^^^^~01/01/2015~
-~08409~^~318~^1613.^0^^~9~^~MC~^^~Y~^^^^^^^^~01/01/2015~
-~08409~^~319~^448.^0^^~4~^~NR~^^~Y~^^^^^^^^~05/01/2014~
-~08409~^~320~^454.^0^^~4~^~NC~^^^^^^^^^^~05/01/2014~
-~08409~^~321~^54.^0^^~4~^~FLM~^^^^^^^^^^~03/01/2013~
-~08409~^~322~^36.^0^^~4~^~FLM~^^^^^^^^^^~03/01/2013~
-~08409~^~324~^129.^0^^~9~^~MC~^^~Y~^^^^^^^^~01/01/2015~
-~08409~^~334~^0.^0^^~4~^~FLM~^^^^^^^^^^~04/01/2003~
-~08409~^~337~^0.^0^^~4~^~FLM~^^^^^^^^^^~04/01/2003~
-~08409~^~338~^763.^0^^~4~^~FLM~^^^^^^^^^^~01/01/2015~
-~08409~^~417~^323.^0^^~9~^~MC~^^~Y~^^^^^^^^~01/01/2015~
-~08409~^~431~^304.^0^^~4~^~NR~^^~Y~^^^^^^^^~03/01/2013~
-~08409~^~432~^19.^0^^~4~^~BFZN~^^^^^^^^^^~02/01/2005~
-~08409~^~435~^536.^0^^~4~^~NC~^^^^^^^^^^~03/01/2013~
-~08409~^~601~^0.^0^^~9~^~MC~^^^^^^^^^^~02/01/2005~
-~08410~^~208~^369.^0^^~9~^~MC~^^^^^^^^^^~08/01/2012~
-~08410~^~262~^0.^0^^~4~^~FLA~^^^^^^^^^^~11/01/2002~
-~08410~^~263~^0.^0^^~4~^~FLA~^^^^^^^^^^~11/01/2002~
-~08410~^~268~^1542.^0^^~9~^~MC~^^^^^^^^^^~08/01/2012~
-~08410~^~301~^229.^4^9.^~1~^~A~^^~Y~^1^211.^248.^3^199.^258.^~2, 3~^~08/01/2012~
-~08410~^~304~^99.^4^1.^~1~^~A~^^^1^97.^101.^3^95.^102.^~2, 3~^~08/01/2012~
-~08410~^~305~^353.^4^3.^~1~^~A~^^^1^345.^362.^3^341.^365.^~2, 3~^~08/01/2012~
-~08410~^~306~^303.^4^3.^~1~^~A~^^^1^296.^310.^3^292.^313.^~2, 3~^~08/01/2012~
-~08410~^~307~^416.^4^24.^~1~^~A~^^^1^373.^469.^3^339.^492.^~2, 3~^~08/01/2012~
-~08410~^~318~^1467.^0^^~1~^~AS~^^~Y~^^^^^^^^~08/01/2012~
-~08410~^~319~^440.^1^^~1~^~A~^^^^^^^^^^~08/01/2012~
-~08410~^~320~^440.^0^^~1~^~AS~^^^^^^^^^^~08/01/2012~
-~08410~^~321~^1.^0^^~4~^~FLA~^^^^^^^^^^~08/01/2012~
-~08410~^~322~^0.^0^^~4~^~FLA~^^^^^^^^^^~11/01/2002~
-~08410~^~324~^0.^0^^~9~^~MC~^^^^^^^^^^~04/01/2011~
-~08410~^~334~^1.^0^^~4~^~FLA~^^^^^^^^^^~08/01/2012~
-~08410~^~337~^0.^0^^~4~^~FLA~^^^^^^^^^^~11/01/2002~
-~08410~^~338~^123.^0^^~4~^~FLA~^^^^^^^^^^~08/01/2012~
-~08410~^~417~^191.^0^^~9~^~MC~^^~Y~^^^^^^^^~08/01/2012~
-~08410~^~431~^175.^0^^~4~^~NR~^^~Y~^^^^^^^^~08/01/2012~
-~08410~^~432~^17.^0^^~4~^~FLA~^^^^^^^^^^~08/01/2012~
-~08410~^~435~^314.^0^^~4~^~NC~^^^^^^^^^^~08/01/2012~
-~08410~^~601~^0.^0^^~9~^~MC~^^^^^^^^^^~11/01/2002~
-~08411~^~208~^384.^0^^~9~^~MC~^^^^^^^^^^~06/01/2013~
-~08411~^~262~^0.^0^^~4~^~FLM~^^^^^^^^^^~11/01/2002~
-~08411~^~263~^0.^0^^~4~^~FLM~^^^^^^^^^^~11/01/2002~
-~08411~^~268~^1607.^0^^~9~^~MC~^^^^^^^^^^~03/01/2014~
-~08411~^~301~^220.^0^^~9~^~MC~^^~Y~^^^^^^^^~11/01/2002~
-~08411~^~304~^89.^0^^~9~^~MC~^^^^^^^^^^~03/01/2014~
-~08411~^~305~^302.^0^^~9~^~MC~^^^^^^^^^^~03/01/2014~
-~08411~^~306~^250.^0^^~9~^~MC~^^^^^^^^^^~03/01/2014~
-~08411~^~307~^500.^0^^~9~^~MC~^^^^^^^^^^~03/01/2014~
-~08411~^~318~^2196.^0^^~9~^~MC~^^~Y~^^^^^^^^~03/01/2014~
-~08411~^~324~^0.^0^^~7~^~Z~^^~N~^^^^^^^^~05/01/2009~
-~08411~^~417~^176.^0^^~9~^~MC~^^~Y~^^^^^^^^~11/01/2002~
-~08411~^~601~^0.^0^^~9~^~MC~^^^^^^^^^^~11/01/2002~
-~08417~^~208~^368.^0^^~9~^~MC~^^^^^^^^^^~11/01/2002~
-~08417~^~268~^1541.^0^^~9~^~MC~^^^^^^^^^^~03/01/2014~
-~08417~^~301~^277.^0^^~9~^~MC~^^~Y~^^^^^^^^~03/01/2014~
-~08417~^~304~^92.^0^^~9~^~MC~^^^^^^^^^^~03/01/2014~
-~08417~^~305~^315.^0^^~9~^~MC~^^^^^^^^^^~03/01/2014~
-~08417~^~306~^287.^0^^~9~^~MC~^^^^^^^^^^~03/01/2014~
-~08417~^~307~^700.^0^^~9~^~MC~^^^^^^^^^^~11/01/2002~
-~08417~^~318~^2683.^0^^~9~^~MC~^^~Y~^^^^^^^^~11/01/2002~
-~08417~^~324~^0.^0^^~7~^~Z~^^~N~^^^^^^^^~05/01/2009~
-~08417~^~417~^247.^0^^~9~^~MC~^^~Y~^^^^^^^^~03/01/2014~
-~08417~^~601~^0.^0^^~9~^~MC~^^^^^^^^^^~11/01/2002~
-~08435~^~208~^346.^0^^~9~^~MC~^^^^^^^^^^~07/01/2012~
-~08435~^~262~^0.^0^^~4~^~FLA~^^^^^^^^^^~01/01/2003~
-~08435~^~263~^0.^0^^~4~^~FLA~^^^^^^^^^^~01/01/2003~
-~08435~^~268~^1449.^0^^~9~^~MC~^^^^^^^^^^~07/01/2012~
-~08435~^~301~^95.^1^^~1~^~A~^^^^^^^^^^~01/01/2003~
-~08435~^~304~^206.^1^^~1~^~A~^^^^^^^^^^~01/01/2003~
-~08435~^~305~^374.^1^^~1~^~A~^^^^^^^^^^~01/01/2003~
-~08435~^~306~^446.^1^^~1~^~A~^^^^^^^^^^~01/01/2003~
-~08435~^~307~^206.^1^^~1~^~A~^^^^^^^^^^~01/01/2003~
-~08435~^~318~^0.^0^^~9~^~MC~^^^^^^^^^^~07/01/2012~
-~08435~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2003~
-~08435~^~320~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2003~
-~08435~^~321~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2003~
-~08435~^~322~^0.^0^^~4~^~FLA~^^^^^^^^^^~01/01/2003~
-~08435~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2009~
-~08435~^~334~^0.^0^^~4~^~FLA~^^^^^^^^^^~01/01/2003~
-~08435~^~337~^0.^0^^~4~^~FLA~^^^^^^^^^^~01/01/2003~
-~08435~^~338~^331.^0^^~4~^~FLA~^^^^^^^^^^~07/01/2012~
-~08435~^~417~^53.^1^^~1~^~A~^^^^^^^^^^~01/01/2003~
-~08435~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2003~
-~08435~^~432~^53.^1^^~1~^~A~^^^^^^^^^^~01/01/2003~
-~08435~^~435~^53.^0^^~4~^~NC~^^^^^^^^^^~04/01/2006~
-~08435~^~601~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2003~
-~08436~^~208~^360.^0^^~9~^~MC~^^^^^^^^^^~02/01/2003~
-~08436~^~262~^0.^0^^~4~^~FLM~^^^^^^^^^^~02/01/2003~
-~08436~^~263~^0.^0^^~4~^~FLM~^^^^^^^^^^~02/01/2003~
-~08436~^~268~^1507.^0^^~9~^~MC~^^^^^^^^^^~08/01/2012~
-~08436~^~301~^235.^4^3.^~1~^~A~^^~Y~^1^227.^244.^3^223.^246.^~2, 3~^~08/01/2012~
-~08436~^~304~^82.^4^0.^~1~^~A~^^^1^81.^83.^3^80.^83.^~2, 3~^~08/01/2012~
-~08436~^~305~^292.^4^2.^~1~^~A~^^^1^287.^296.^3^285.^298.^~2, 3~^~08/01/2012~
-~08436~^~306~^360.^4^7.^~1~^~A~^^^1^347.^377.^3^336.^382.^~2, 3~^~08/01/2012~
-~08436~^~307~^440.^4^10.^~1~^~A~^^^1^414.^462.^3^406.^472.^~2, 3~^~08/01/2012~
-~08436~^~318~^1646.^0^^~1~^~AS~^^~Y~^^^^^^^^~08/01/2012~
-~08436~^~319~^494.^1^^~1~^~A~^^^^^^^^^^~08/01/2012~
-~08436~^~320~^494.^0^^~1~^~AS~^^^^^^^^^^~08/01/2012~
-~08436~^~321~^0.^0^^~4~^~FLM~^^^^^^^^^^~02/01/2003~
-~08436~^~322~^0.^0^^~4~^~FLM~^^^^^^^^^^~02/01/2003~
-~08436~^~324~^0.^0^^~9~^~MC~^^^^^^^^^^~02/01/2003~
-~08436~^~334~^0.^0^^~4~^~FLM~^^^^^^^^^^~02/01/2003~
-~08436~^~337~^0.^0^^~4~^~FLM~^^^^^^^^^^~02/01/2003~
-~08436~^~338~^104.^0^^~4~^~FLM~^^^^^^^^^^~08/01/2012~
-~08436~^~417~^213.^0^^~9~^~MC~^^~Y~^^^^^^^^~04/01/2011~
-~08436~^~431~^193.^0^^~4~^~NR~^^~Y~^^^^^^^^~08/01/2012~
-~08436~^~432~^19.^0^^~4~^~FLM~^^^^^^^^^^~04/01/2011~
-~08436~^~435~^348.^0^^~4~^~NC~^^^^^^^^^^~08/01/2012~
-~08436~^~601~^0.^0^^~9~^~MC~^^^^^^^^^^~02/01/2003~
-~08444~^~208~^342.^0^^~9~^~MC~^^^^^^^^^^~03/01/2014~
-~08444~^~268~^1430.^0^^~9~^~MC~^^^^^^^^^^~03/01/2014~
-~08444~^~301~^441.^0^^~9~^~MC~^^~Y~^^^^^^^^~03/01/2014~
-~08444~^~304~^32.^0^^~9~^~MC~^^^^^^^^^^~03/01/2014~
-~08444~^~305~^79.^0^^~9~^~MC~^^^^^^^^^^~03/01/2014~
-~08444~^~306~^172.^0^^~9~^~MC~^^^^^^^^^^~03/01/2014~
-~08444~^~307~^1805.^0^^~9~^~MC~^^^^^^^^^^~03/01/2014~
-~08444~^~318~^1.^0^^~9~^~MC~^^^^^^^^^^~03/01/2014~
-~08444~^~320~^0.^0^^~4~^~NC~^^^^^^^^^^~05/01/2003~
-~08444~^~417~^187.^0^^~9~^~MC~^^~Y~^^^^^^^^~03/01/2014~
-~08444~^~601~^0.^0^^~9~^~MC~^^^^^^^^^^~03/01/2003~
-~08449~^~208~^360.^0^^~9~^~MC~^^^^^^^^^^~02/01/2014~
-~08449~^~268~^1504.^0^^~9~^~MC~^^^^^^^^^^~02/01/2014~
-~08449~^~301~^418.^0^^~9~^~MC~^^~Y~^^^^^^^^~02/01/2014~
-~08449~^~304~^27.^0^^~9~^~MC~^^^^^^^^^^~02/01/2014~
-~08449~^~305~^76.^0^^~9~^~MC~^^^^^^^^^^~02/01/2014~
-~08449~^~306~^134.^0^^~9~^~MC~^^^^^^^^^^~02/01/2014~
-~08449~^~307~^1518.^0^^~9~^~MC~^^^^^^^^^^~03/01/2003~
-~08449~^~318~^11.^0^^~9~^~MC~^^^^^^^^^^~02/01/2014~
-~08449~^~320~^1.^0^^~4~^~NC~^^^^^^^^^^~02/01/2014~
-~08449~^~417~^173.^0^^~9~^~MC~^^~Y~^^^^^^^^~02/01/2014~
-~08449~^~601~^1.^0^^~9~^~MC~^^^^^^^^^^~03/01/2003~
-~08450~^~208~^355.^0^^~9~^~MC~^^^^^^^^^^~03/01/2014~
-~08450~^~268~^1487.^0^^~9~^~MC~^^^^^^^^^^~03/01/2014~
-~08450~^~301~^409.^0^^~9~^~MC~^^~Y~^^^^^^^^~03/01/2014~
-~08450~^~304~^35.^0^^~9~^~MC~^^^^^^^^^^~03/01/2014~
-~08450~^~305~^95.^0^^~9~^~MC~^^^^^^^^^^~03/01/2003~
-~08450~^~306~^210.^0^^~9~^~MC~^^^^^^^^^^~03/01/2014~
-~08450~^~307~^1930.^0^^~9~^~MC~^^^^^^^^^^~03/01/2014~
-~08450~^~318~^13.^0^^~9~^~MC~^^^^^^^^^^~03/01/2003~
-~08450~^~320~^1.^0^^~4~^~NC~^^^^^^^^^^~05/01/2003~
-~08450~^~417~^178.^0^^~9~^~MC~^^~Y~^^^^^^^^~03/01/2014~
-~08450~^~601~^1.^0^^~9~^~MC~^^^^^^^^^^~03/01/2003~
-~08451~^~208~^371.^0^^~9~^~MC~^^^^^^^^^^~03/01/2003~
-~08451~^~268~^1552.^0^^~9~^~MC~^^^^^^^^^^~05/01/2003~
-~08451~^~301~^47.^0^^~9~^~MC~^^^^^^^^^^~03/01/2003~
-~08451~^~304~^270.^0^^~9~^~MC~^^^^^^^^^^~03/01/2003~
-~08451~^~305~^458.^0^^~9~^~MC~^^^^^^^^^^~03/01/2003~
-~08451~^~306~^358.^0^^~9~^~MC~^^^^^^^^^^~03/01/2003~
-~08451~^~307~^3.^0^^~9~^~MC~^^^^^^^^^^~03/01/2003~
-~08451~^~318~^0.^0^^~9~^~MC~^^^^^^^^^^~03/01/2003~
-~08451~^~417~^49.^0^^~9~^~MC~^^^^^^^^^^~03/01/2003~
-~08451~^~601~^0.^0^^~9~^~MC~^^^^^^^^^^~03/01/2003~
-~08452~^~208~^333.^0^^~9~^~MC~^^^^^^^^^^~05/01/2011~
-~08452~^~268~^1393.^0^^~9~^~MC~^^^^^^^^^^~05/01/2011~
-~08452~^~301~^44.^0^^~9~^~MC~^^^^^^^^^^~05/01/2011~
-~08452~^~304~^147.^0^^~9~^~MC~^^^^^^^^^^~05/01/2011~
-~08452~^~305~^406.^0^^~9~^~MC~^^^^^^^^^^~05/01/2011~
-~08452~^~306~^502.^0^^~9~^~MC~^^^^^^^^^^~05/01/2011~
-~08452~^~307~^8.^0^^~9~^~MC~^^^^^^^^^^~05/01/2011~
-~08452~^~318~^11.^0^^~9~^~MC~^^^^^^^^^^~05/01/2011~
-~08452~^~417~^49.^0^^~9~^~MC~^^^^^^^^^^~05/01/2011~
-~08452~^~431~^0.^0^^~7~^~Z~^^~N~^^^^^^^^~07/01/2014~
-~08452~^~432~^49.^0^^~9~^~MC~^^^^^^^^^^~05/01/2011~
-~08452~^~435~^49.^0^^~4~^~NC~^^^^^^^^^^~07/01/2014~
-~08452~^~601~^0.^0^^~9~^~MC~^^^^^^^^^^~03/01/2003~
-~08476~^~208~^379.^0^^~8~^~LC~^^^^^^^^^^~04/01/2015~
-~08476~^~268~^1587.^0^^~8~^~LC~^^^^^^^^^^~04/01/2015~
-~08476~^~301~^14.^1^^~12~^~MA~^^^^^^^^^^~01/01/2005~
-~08476~^~304~^28.^0^^~8~^~LC~^^^^^^^^^^~04/01/2015~
-~08476~^~305~^69.^0^^~8~^~LC~^^^^^^^^^^~04/01/2015~
-~08476~^~306~^121.^0^^~8~^~LC~^^^^^^^^^^~04/01/2015~
-~08476~^~307~^759.^0^^~8~^~LC~^^^^^^^^^^~06/01/2010~
-~08476~^~318~^1724.^0^^~8~^~LC~^^^^^^^^^^~04/01/2015~
-~08476~^~324~^138.^0^^~8~^~LC~^^^^^^^^^^~04/01/2015~
-~08476~^~417~^690.^0^^~8~^~LC~^^^^^^^^^^~04/01/2015~
-~08476~^~601~^0.^0^^~8~^~LC~^^^^^^^^^^~04/01/2015~
-~08478~^~208~^370.^0^^~8~^~LC~^^^^^^^^^^~04/01/2015~
-~08478~^~262~^0.^0^^~4~^~FLA~^^^^^^^^^^~04/01/2007~
-~08478~^~263~^0.^0^^~4~^~FLA~^^^^^^^^^^~04/01/2007~
-~08478~^~268~^1550.^0^^~8~^~LC~^^^^^^^^^^~04/01/2015~
-~08478~^~301~^11.^3^0.^~1~^~A~^^^1^11.^11.^2^10.^11.^~2, 3~^~04/01/2007~
-~08478~^~304~^46.^3^0.^~1~^~A~^^^1^45.^48.^2^42.^49.^~2, 3~^~04/01/2007~
-~08478~^~305~^222.^0^^~8~^~LC~^^^^^^^^^^~04/01/2015~
-~08478~^~306~^204.^0^^~8~^~LC~^^^^^^^^^^~04/01/2015~
-~08478~^~307~^204.^0^^~8~^~LC~^^^^^^^^^^~04/01/2015~
-~08478~^~318~^1852.^0^^~8~^~LC~^^^^^^^^^^~04/01/2015~
-~08478~^~319~^554.^0^^~4~^~NR~^^^^^^^^^^~04/01/2015~
-~08478~^~320~^555.^0^^~4~^~NC~^^^^^^^^^^~04/01/2015~
-~08478~^~321~^2.^0^^~4~^~FLA~^^^^^^^^^^~04/01/2007~
-~08478~^~322~^0.^0^^~4~^~FLA~^^^^^^^^^^~04/01/2007~
-~08478~^~324~^151.^1^^~12~^~MA~^^^^^^^^^^~06/01/2007~
-~08478~^~334~^0.^0^^~4~^~FLA~^^^^^^^^^^~04/01/2007~
-~08478~^~337~^0.^0^^~4~^~FLA~^^^^^^^^^^~04/01/2007~
-~08478~^~338~^94.^0^^~4~^~FLA~^^^^^^^^^^~04/01/2007~
-~08478~^~417~^741.^0^^~8~^~LC~^^^^^^^^^^~02/01/2009~
-~08478~^~431~^728.^0^^~4~^~NR~^^~Y~^^^^^^^^~05/01/2009~
-~08478~^~432~^13.^0^^~4~^~FLA~^^^^^^^^^^~04/01/2007~
-~08478~^~435~^1250.^0^^~4~^~NC~^^^^^^^^^^~05/01/2009~
-~08478~^~601~^0.^0^^~4~^~FLA~^^^^^^^^^^~04/01/2007~
-~08481~^~208~^398.^0^^~9~^~MC~^^^^^^^^^^~03/01/2013~
-~08481~^~262~^0.^0^^~9~^~MC~^^^^^^^^^^~03/01/2013~
-~08481~^~263~^0.^0^^~4~^~FLC~^^^^^^^^^^~02/01/2009~
-~08481~^~268~^1664.^0^^~9~^~MC~^^^^^^^^^^~03/01/2013~
-~08481~^~301~^367.^0^^~9~^~MC~^^~Y~^^^^^^^^~03/01/2013~
-~08481~^~304~^31.^0^^~9~^~MC~^^^^^^^^^^~03/01/2013~
-~08481~^~305~^137.^0^^~9~^~MC~^^^^^^^^^^~03/01/2013~
-~08481~^~306~^226.^0^^~9~^~MC~^^^^^^^^^^~03/01/2013~
-~08481~^~307~^838.^0^^~9~^~MC~^^^^^^^^^^~03/01/2013~
-~08481~^~318~^1959.^0^^~9~^~MC~^^~Y~^^^^^^^^~03/01/2013~
-~08481~^~324~^152.^0^^~9~^~MC~^^~Y~^^^^^^^^~03/01/2013~
-~08481~^~417~^667.^0^^~8~^~LC~^^~Y~^^^^^^^^~02/01/2009~
-~08481~^~431~^648.^0^^~4~^~NR~^^~Y~^^^^^^^^~03/01/2013~
-~08481~^~432~^19.^0^^~4~^~CAZN~^^^^^^^^^^~03/01/2013~
-~08481~^~435~^1121.^0^^~4~^~NC~^^^^^^^^^^~03/01/2013~
-~08481~^~601~^0.^0^^~9~^~MC~^^^^^^^^^^~03/01/2013~
-~08484~^~208~^342.^0^^~9~^~MC~^^^^^^^^^^~03/01/2015~
-~08484~^~262~^0.^0^^~9~^~MC~^^^^^^^^^^~03/01/2013~
-~08484~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2013~
-~08484~^~268~^1433.^0^^~9~^~MC~^^^^^^^^^^~03/01/2015~
-~08484~^~301~^33.^0^^~9~^~MC~^^^^^^^^^^~03/01/2015~
-~08484~^~304~^136.^0^^~9~^~MC~^^^^^^^^^^~03/01/2015~
-~08484~^~305~^339.^0^^~9~^~MC~^^^^^^^^^^~03/01/2015~
-~08484~^~306~^546.^0^^~9~^~MC~^^^^^^^^^^~03/01/2015~
-~08484~^~307~^466.^0^^~9~^~MC~^^^^^^^^^^~03/01/2015~
-~08484~^~318~^847.^0^^~9~^~MC~^^~Y~^^^^^^^^~03/01/2015~
-~08484~^~319~^253.^0^^~4~^~NR~^^^^^^^^^^~03/01/2015~
-~08484~^~320~^253.^0^^~4~^~NC~^^^^^^^^^^~03/01/2015~
-~08484~^~321~^3.^0^^~4~^~FLM~^^^^^^^^^^~03/01/2013~
-~08484~^~322~^0.^0^^~4~^~FLM~^^^^^^^^^^~03/01/2013~
-~08484~^~324~^102.^0^^~9~^~MC~^^~Y~^^^^^^^^~03/01/2015~
-~08484~^~334~^0.^0^^~4~^~FLM~^^^^^^^^^^~03/01/2013~
-~08484~^~337~^0.^0^^~4~^~FLM~^^^^^^^^^^~03/01/2013~
-~08484~^~338~^118.^0^^~4~^~FLM~^^^^^^^^^^~03/01/2015~
-~08484~^~417~^339.^0^^~9~^~MC~^^~Y~^^^^^^^^~03/01/2015~
-~08484~^~431~^320.^0^^~4~^~NR~^^~Y~^^^^^^^^~03/01/2013~
-~08484~^~432~^19.^0^^~4~^~CAZN~^^^^^^^^^^~03/01/2013~
-~08484~^~435~^563.^0^^~4~^~NC~^^^^^^^^^^~03/01/2013~
-~08484~^~601~^0.^0^^~9~^~MC~^^^^^^^^^^~03/01/2013~
-~08487~^~208~^443.^0^^~9~^~MC~^^^^^^^^^^~02/01/2005~
-~08487~^~262~^0.^0^^~9~^~MC~^^^^^^^^^^~03/01/2013~
-~08487~^~268~^1853.^0^^~9~^~MC~^^^^^^^^^^~03/01/2013~
-~08487~^~301~^338.^0^^~9~^~MC~^^~Y~^^^^^^^^~03/01/2013~
-~08487~^~304~^38.^0^^~9~^~MC~^^^^^^^^^^~03/01/2013~
-~08487~^~305~^176.^0^^~9~^~MC~^^^^^^^^^^~03/01/2013~
-~08487~^~306~^179.^0^^~9~^~MC~^^^^^^^^^^~03/01/2013~
-~08487~^~307~^462.^0^^~9~^~MC~^^^^^^^^^^~03/01/2013~
-~08487~^~318~^1665.^0^^~9~^~MC~^^~Y~^^^^^^^^~03/01/2013~
-~08487~^~320~^500.^0^^~9~^~MC~^^~Y~^^^^^^^^~03/01/2013~
-~08487~^~321~^0.^0^^~7~^~Z~^^~N~^^^^^^^^~03/01/2005~
-~08487~^~322~^0.^0^^~7~^~Z~^^~N~^^^^^^^^~03/01/2005~
-~08487~^~324~^130.^0^^~9~^~MC~^^~Y~^^^^^^^^~03/01/2013~
-~08487~^~334~^0.^0^^~7~^~Z~^^~N~^^^^^^^^~03/01/2005~
-~08487~^~337~^0.^0^^~7~^~Z~^^~N~^^^^^^^^~03/01/2005~
-~08487~^~338~^0.^0^^~7~^~Z~^^~N~^^^^^^^^~03/01/2005~
-~08487~^~417~^667.^0^^~8~^~LC~^^~Y~^^^^^^^^~03/01/2013~
-~08487~^~431~^648.^0^^~4~^~NR~^^~Y~^^^^^^^^~03/01/2013~
-~08487~^~432~^19.^0^^~4~^~CAZN~^^^^^^^^^^~03/01/2005~
-~08487~^~435~^1121.^0^^~4~^~NC~^^^^^^^^^^~03/01/2013~
-~08487~^~601~^0.^0^^~9~^~MC~^^^^^^^^^^~03/01/2013~
-~08488~^~208~^365.^0^^~9~^~MC~^^^^^^^^^^~03/01/2013~
-~08488~^~262~^0.^0^^~9~^~MC~^^~N~^^^^^^^^~03/01/2013~
-~08488~^~268~^1528.^0^^~9~^~MC~^^^^^^^^^^~03/01/2013~
-~08488~^~301~^377.^0^^~9~^~MC~^^~Y~^^^^^^^^~03/01/2013~
-~08488~^~304~^13.^0^^~9~^~MC~^^^^^^^^^^~03/01/2013~
-~08488~^~305~^109.^0^^~9~^~MC~^^^^^^^^^^~03/01/2013~
-~08488~^~306~^93.^0^^~9~^~MC~^^^^^^^^^^~03/01/2013~
-~08488~^~307~^3.^0^^~9~^~MC~^^^^^^^^^^~03/01/2013~
-~08488~^~318~^0.^0^^~9~^~MC~^^~N~^^^^^^^^~03/01/2013~
-~08488~^~324~^0.^0^^~9~^~MC~^^~N~^^^^^^^^~03/01/2013~
-~08488~^~601~^0.^0^^~9~^~MC~^^~N~^^^^^^^^~03/01/2013~
-~08489~^~208~^368.^0^^~9~^~MC~^^^^^^^^^^~03/01/2013~
-~08489~^~262~^0.^0^^~9~^~MC~^^^^^^^^^^~03/01/2013~
-~08489~^~268~^1538.^0^^~9~^~MC~^^^^^^^^^^~03/01/2013~
-~08489~^~301~^318.^0^^~9~^~MC~^^~Y~^^^^^^^^~03/01/2013~
-~08489~^~304~^15.^0^^~9~^~MC~^^^^^^^^^^~03/01/2013~
-~08489~^~305~^125.^0^^~9~^~MC~^^^^^^^^^^~03/01/2013~
-~08489~^~306~^130.^0^^~9~^~MC~^^^^^^^^^^~03/01/2013~
-~08489~^~307~^5.^0^^~9~^~MC~^^^^^^^^^^~03/01/2013~
-~08489~^~318~^1.^0^^~9~^~MC~^^^^^^^^^^~03/01/2013~
-~08489~^~324~^0.^0^^~9~^~MC~^^^^^^^^^^~03/01/2013~
-~08489~^~417~^889.^0^^~8~^~LC~^^^^^^^^^^~03/01/2013~
-~08489~^~431~^870.^0^^~4~^~NR~^^~Y~^^^^^^^^~03/01/2013~
-~08489~^~432~^19.^0^^~4~^~CAZN~^^^^^^^^^^~03/01/2013~
-~08489~^~435~^1498.^0^^~4~^~NC~^^^^^^^^^^~03/01/2013~
-~08489~^~601~^0.^0^^~9~^~MC~^^^^^^^^^^~03/01/2013~
-~08491~^~208~^388.^0^^~9~^~MC~^^^^^^^^^^~01/01/2015~
-~08491~^~262~^0.^0^^~9~^~MC~^^^^^^^^^^~01/01/2015~
-~08491~^~268~^1623.^0^^~9~^~MC~^^^^^^^^^^~01/01/2015~
-~08491~^~301~^380.^0^^~9~^~MC~^^~Y~^^^^^^^^~01/01/2015~
-~08491~^~304~^92.^0^^~9~^~MC~^^^^^^^^^^~01/01/2015~
-~08491~^~305~^315.^0^^~9~^~MC~^^~Y~^^^^^^^^~01/01/2015~
-~08491~^~306~^241.^0^^~9~^~MC~^^^^^^^^^^~01/01/2015~
-~08491~^~307~^683.^0^^~9~^~MC~^^^^^^^^^^~01/01/2015~
-~08491~^~318~^0.^0^^~9~^~MC~^^^^^^^^^^~01/01/2015~
-~08491~^~324~^0.^0^^~9~^~MC~^^^^^^^^^^~01/01/2015~
-~08491~^~417~^30.^0^^~9~^~MC~^^^^^^^^^^~01/01/2015~
-~08491~^~432~^30.^0^^~9~^~MC~^^^^^^^^^^~01/01/2015~
-~08491~^~601~^0.^0^^~9~^~MC~^^^^^^^^^^~01/01/2015~
-~08493~^~208~^390.^0^^~9~^~MC~^^^^^^^^^^~01/01/2015~
-~08493~^~262~^0.^0^^~9~^~MC~^^^^^^^^^^~03/01/2013~
-~08493~^~268~^1633.^0^^~9~^~MC~^^^^^^^^^^~01/01/2015~
-~08493~^~301~^303.^0^^~9~^~MC~^^~Y~^^^^^^^^~01/01/2015~
-~08493~^~304~^24.^0^^~9~^~MC~^^^^^^^^^^~01/01/2015~
-~08493~^~305~^61.^0^^~9~^~MC~^^^^^^^^^^~01/01/2015~
-~08493~^~306~^96.^0^^~9~^~MC~^^^^^^^^^^~01/01/2015~
-~08493~^~307~^454.^0^^~9~^~MC~^^^^^^^^^^~01/01/2015~
-~08493~^~318~^1515.^0^^~9~^~MC~^^~Y~^^^^^^^^~01/01/2015~
-~08493~^~324~^121.^0^^~9~^~MC~^^~Y~^^^^^^^^~01/01/2015~
-~08493~^~417~^606.^0^^~9~^~MC~^^~Y~^^^^^^^^~01/01/2015~
-~08493~^~431~^587.^0^^~4~^~NR~^^~Y~^^^^^^^^~01/01/2015~
-~08493~^~432~^19.^0^^~4~^~CAZN~^^^^^^^^^^~03/01/2005~
-~08493~^~435~^1017.^0^^~4~^~NC~^^^^^^^^^^~01/01/2015~
-~08493~^~601~^0.^0^^~9~^~MC~^^^^^^^^^^~03/01/2013~
-~08494~^~208~^425.^0^^~9~^~MC~^^^^^^^^^^~01/01/2015~
-~08494~^~262~^0.^0^^~9~^~MC~^^^^^^^^^^~03/01/2013~
-~08494~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2013~
-~08494~^~268~^1778.^0^^~9~^~MC~^^^^^^^^^^~01/01/2015~
-~08494~^~301~^333.^0^^~9~^~MC~^^~Y~^^^^^^^^~01/01/2015~
-~08494~^~304~^27.^0^^~9~^~MC~^^^^^^^^^^~03/01/2013~
-~08494~^~305~^250.^0^^~9~^~MC~^^^^^^^^^^~01/01/2015~
-~08494~^~306~^157.^0^^~9~^~MC~^^^^^^^^^^~01/01/2015~
-~08494~^~307~^473.^0^^~9~^~MC~^^^^^^^^^^~01/01/2015~
-~08494~^~318~^1667.^0^^~9~^~MC~^^~Y~^^^^^^^^~01/01/2015~
-~08494~^~319~^498.^0^^~4~^~NR~^^^^^^^^^^~01/01/2015~
-~08494~^~320~^498.^0^^~4~^~NC~^^^^^^^^^^~01/01/2015~
-~08494~^~321~^3.^0^^~4~^~FLM~^^^^^^^^^^~03/01/2013~
-~08494~^~322~^0.^0^^~4~^~FLM~^^^^^^^^^^~03/01/2013~
-~08494~^~324~^133.^0^^~9~^~MC~^^~Y~^^^^^^^^~01/01/2015~
-~08494~^~334~^2.^0^^~4~^~FLM~^^^^^^^^^^~03/01/2013~
-~08494~^~337~^0.^0^^~4~^~FLM~^^^^^^^^^^~03/01/2013~
-~08494~^~338~^73.^0^^~4~^~FLM~^^^^^^^^^^~01/01/2015~
-~08494~^~417~^667.^0^^~9~^~MC~^^~Y~^^^^^^^^~01/01/2015~
-~08494~^~431~^648.^0^^~4~^~NR~^^~Y~^^^^^^^^~03/01/2013~
-~08494~^~432~^19.^0^^~4~^~CAZN~^^^^^^^^^^~03/01/2005~
-~08494~^~435~^1121.^0^^~4~^~NC~^^^^^^^^^^~03/01/2013~
-~08494~^~601~^0.^0^^~9~^~MC~^^^^^^^^^^~03/01/2013~
-~08495~^~208~^397.^0^^~9~^~MC~^^^^^^^^^^~02/01/2015~
-~08495~^~262~^4.^0^^~9~^~MC~^^^^^^^^^^~02/01/2015~
-~08495~^~263~^36.^0^^~4~^~FLM~^^^^^^^^^^~02/01/2015~
-~08495~^~268~^1659.^0^^~9~^~MC~^^^^^^^^^^~02/01/2015~
-~08495~^~301~^17.^0^^~4~^~FLM~^^^^^^^^^^~03/01/2013~
-~08495~^~304~^28.^0^^~9~^~MC~^^^^^^^^^^~02/01/2015~
-~08495~^~305~^69.^0^^~9~^~MC~^^^^^^^^^^~02/01/2015~
-~08495~^~306~^181.^0^^~9~^~MC~^^^^^^^^^^~02/01/2015~
-~08495~^~307~^534.^0^^~9~^~MC~^^^^^^^^^^~02/01/2015~
-~08495~^~318~^2586.^0^^~9~^~MC~^^~Y~^^^^^^^^~02/01/2015~
-~08495~^~319~^776.^0^^~4~^~NR~^^^^^^^^^^~02/01/2015~
-~08495~^~320~^776.^0^^~4~^~NC~^^^^^^^^^^~02/01/2015~
-~08495~^~321~^0.^0^^~4~^~FLM~^^^^^^^^^^~03/01/2013~
-~08495~^~322~^0.^0^^~4~^~FLM~^^^^^^^^^^~03/01/2013~
-~08495~^~324~^138.^0^^~9~^~MC~^^~Y~^^^^^^^^~02/01/2015~
-~08495~^~334~^0.^0^^~4~^~FLM~^^^^^^^^^^~03/01/2013~
-~08495~^~337~^0.^0^^~4~^~FLM~^^^^^^^^^^~03/01/2013~
-~08495~^~338~^1.^0^^~4~^~FLM~^^^^^^^^^^~03/01/2013~
-~08495~^~417~^345.^0^^~9~^~MC~^^~Y~^^^^^^^^~02/01/2015~
-~08495~^~431~^341.^0^^~4~^~NR~^^~Y~^^^^^^^^~03/01/2013~
-~08495~^~432~^4.^0^^~4~^~CAZN~^^^^^^^^^^~03/01/2005~
-~08495~^~435~^584.^0^^~4~^~NC~^^^^^^^^^^~03/01/2013~
-~08495~^~601~^0.^0^^~9~^~MC~^^^^^^^^^^~03/01/2013~
-~08500~^~208~^354.^0^^~9~^~MC~^^^^^^^^^^~01/01/2015~
-~08500~^~262~^0.^0^^~9~^~MC~^^^^^^^^^^~03/01/2013~
-~08500~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2013~
-~08500~^~268~^1480.^0^^~9~^~MC~^^^^^^^^^^~01/01/2015~
-~08500~^~301~^29.^0^^~4~^~FLM~^^^^^^^^^^~01/01/2015~
-~08500~^~304~^100.^0^^~9~^~MC~^^^^^^^^^^~01/01/2015~
-~08500~^~305~^273.^0^^~9~^~MC~^^^^^^^^^^~01/01/2015~
-~08500~^~306~^327.^0^^~9~^~MC~^^^^^^^^^^~03/01/2013~
-~08500~^~307~^18.^0^^~9~^~MC~^^^^^^^^^^~03/01/2013~
-~08500~^~318~^0.^0^^~9~^~MC~^^^^^^^^^^~03/01/2013~
-~08500~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2013~
-~08500~^~320~^0.^0^^~1~^~AS~^^~N~^^^^^^^^~01/01/2015~
-~08500~^~321~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2013~
-~08500~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2013~
-~08500~^~324~^0.^0^^~9~^~MC~^^^^^^^^^^~03/01/2013~
-~08500~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2013~
-~08500~^~337~^0.^0^^~4~^~FLM~^^^^^^^^^^~03/01/2013~
-~08500~^~338~^184.^0^^~4~^~FLM~^^^^^^^^^^~01/01/2015~
-~08500~^~417~^727.^0^^~9~^~MC~^^~Y~^^^^^^^^~01/01/2015~
-~08500~^~431~^699.^0^^~4~^~NR~^^~Y~^^^^^^^^~03/01/2013~
-~08500~^~432~^28.^0^^~4~^~CAZN~^^^^^^^^^^~03/01/2013~
-~08500~^~435~^1216.^0^^~4~^~NC~^^^^^^^^^^~03/01/2013~
-~08500~^~601~^0.^0^^~9~^~MC~^^^^^^^^^^~03/01/2013~
-~08501~^~208~^404.^1^^~9~^~MC~^^^^^^^^^^~10/01/2008~
-~08501~^~262~^0.^0^^~4~^~FLA~^^^^^^^^^^~02/01/2005~
-~08501~^~263~^0.^0^^~4~^~FLA~^^^^^^^^^^~02/01/2005~
-~08501~^~268~^1690.^0^^~4~^~NC~^^^^^^^^^^~05/01/2009~
-~08501~^~301~^3.^1^^~12~^~MA~^^^^^^^^^^~01/01/2005~
-~08501~^~304~^15.^0^^~4~^~FLA~^^^^^^^^^^~10/01/2008~
-~08501~^~305~^67.^0^^~4~^~FLA~^^^^^^^^^^~10/01/2008~
-~08501~^~306~^76.^1^^~12~^~MA~^^^^^^^^^^~01/01/2005~
-~08501~^~307~^630.^0^^~8~^~LC~^^^^^^^^^^~06/01/2010~
-~08501~^~318~^3630.^1^^~12~^~MA~^^^^^^^^^^~10/01/2008~
-~08501~^~319~^1090.^0^^~4~^~NR~^^^^^^^^^^~10/01/2008~
-~08501~^~320~^1090.^0^^~4~^~NC~^^^^^^^^^^~10/01/2008~
-~08501~^~321~^0.^0^^~4~^~FLA~^^^^^^^^^^~02/01/2005~
-~08501~^~322~^0.^0^^~4~^~FLA~^^^^^^^^^^~02/01/2005~
-~08501~^~324~^195.^1^^~12~^~MA~^^^^^^^^^^~10/01/2008~
-~08501~^~334~^0.^0^^~4~^~FLA~^^^^^^^^^^~02/01/2005~
-~08501~^~337~^0.^0^^~4~^~FLA~^^^^^^^^^^~02/01/2005~
-~08501~^~338~^0.^0^^~4~^~FLA~^^^^^^^^^^~02/01/2005~
-~08501~^~417~^496.^0^^~4~^~NR~^^^^^^^^^^~10/01/2008~
-~08501~^~431~^492.^1^^~12~^~MA~^^~Y~^^^^^^^^~01/01/2005~
-~08501~^~432~^4.^0^^~4~^~O~^^^^^^^^^^~10/01/2008~
-~08501~^~435~^840.^0^^~4~^~NC~^^^^^^^^^^~05/01/2009~
-~08501~^~601~^1.^1^^~12~^~MA~^^^^^^^^^^~01/01/2005~
-~08504~^~208~^390.^0^^~4~^~NR~^^^^^^^^^^~10/01/2016~
-~08504~^~268~^1633.^0^^~4~^~NR~^^^^^^^^^^~10/01/2016~
-~08504~^~301~^45.^3^2.^~1~^~A~^^^1^43.^49.^2^36.^53.^~2, 3~^~03/01/2005~
-~08504~^~304~^190.^3^0.^~1~^~A~^^^1^190.^190.^^^^~2, 3~^~03/01/2005~
-~08504~^~305~^533.^3^6.^~1~^~A~^^^1^520.^540.^2^504.^562.^~2, 3~^~03/01/2005~
-~08504~^~306~^630.^3^5.^~1~^~A~^^^1^620.^640.^2^605.^654.^~2, 3~^~03/01/2005~
-~08504~^~307~^586.^0^^~8~^~LC~^^^^^^^^^^~02/01/2014~
-~08504~^~318~^1771.^0^^~1~^~AS~^^~Y~^^^^^^^^~01/01/2007~
-~08504~^~319~^531.^3^24.^~1~^~A~^^^1^492.^576.^2^426.^636.^~2, 3~^~03/01/2005~
-~08504~^~320~^531.^0^^~1~^~AS~^^^^^^^^^^~03/01/2005~
-~08504~^~324~^345.^0^^~8~^~LC~^^~Y~^^^^^^^^~02/01/2014~
-~08504~^~417~^1379.^0^^~8~^~LC~^^~Y~^^^^^^^^~02/01/2014~
-~08504~^~601~^0.^0^^~8~^~LC~^^^^^^^^^^~02/01/2014~
-~08505~^~208~^376.^0^^~4~^~NR~^^^^^^^^^^~10/01/2016~
-~08505~^~268~^1573.^0^^~4~^~NR~^^^^^^^^^^~10/01/2016~
-~08505~^~301~^378.^3^7.^~1~^~A~^^~Y~^1^366.^391.^2^346.^408.^~2, 3~^~05/01/2009~
-~08505~^~304~^15.^3^0.^~1~^~A~^^^1^15.^15.^2^14.^15.^~2, 3~^~03/01/2005~
-~08505~^~305~^38.^3^0.^~1~^~A~^^^1^37.^39.^2^35.^40.^~2, 3~^~03/01/2005~
-~08505~^~306~^200.^0^^~8~^~LC~^^^^^^^^^^~02/01/2014~
-~08505~^~307~^767.^0^^~8~^~LC~^^^^^^^^^^~02/01/2014~
-~08505~^~318~^4167.^0^^~4~^~NC~^^~Y~^^^^^^^^~10/01/2016~
-~08505~^~319~^1061.^0^^~4~^~BNA~^^^^^^^^^^~02/01/2014~
-~08505~^~320~^1092.^0^^~4~^~NC~^^^^^^^^^^~02/01/2014~
-~08505~^~321~^261.^0^^~4~^~BNA~^^^^^^^^^^~02/01/2014~
-~08505~^~322~^0.^3^0.^~1~^~A~^^^1^0.^0.^^^^~1, 2, 3~^~04/01/2005~
-~08505~^~324~^333.^0^^~8~^~LC~^^~Y~^^^^^^^^~02/01/2014~
-~08505~^~334~^234.^0^^~4~^~BNA~^^^^^^^^^^~02/01/2014~
-~08505~^~337~^0.^3^0.^~1~^~A~^^^1^0.^0.^^^^~1, 2, 3~^~04/01/2005~
-~08505~^~417~^667.^0^^~8~^~LC~^^~Y~^^^^^^^^~02/01/2014~
-~08505~^~601~^0.^0^^~8~^~LC~^^~N~^^^^^^^^~02/01/2014~
-~08506~^~208~^384.^0^^~4~^~NR~^^^^^^^^^^~10/01/2016~
-~08506~^~268~^1607.^0^^~4~^~NR~^^^^^^^^^^~10/01/2016~
-~08506~^~301~^2.^3^0.^~1~^~A~^^^1^2.^2.^2^1.^2.^~2, 3~^~03/01/2005~
-~08506~^~304~^7.^3^0.^~1~^~A~^^^1^6.^8.^2^4.^8.^~2, 3~^~03/01/2005~
-~08506~^~305~^33.^3^0.^~1~^~A~^^^1^33.^34.^2^32.^33.^~2, 3~^~03/01/2005~
-~08506~^~306~^107.^0^^~8~^~LC~^^^^^^^^^^~02/01/2014~
-~08506~^~307~^571.^0^^~8~^~LC~^^^^^^^^^^~02/01/2014~
-~08506~^~318~^3571.^0^^~4~^~NC~^^~Y~^^^^^^^^~10/01/2016~
-~08506~^~319~^962.^0^^~4~^~BNA~^^^^^^^^^^~02/01/2014~
-~08506~^~320~^981.^0^^~4~^~NC~^^^^^^^^^^~02/01/2014~
-~08506~^~321~^144.^0^^~4~^~BNA~^^^^^^^^^^~02/01/2014~
-~08506~^~322~^38.^0^^~4~^~BNA~^^^^^^^^^^~02/01/2014~
-~08506~^~324~^286.^0^^~8~^~LC~^^~Y~^^^^^^^^~02/01/2014~
-~08506~^~334~^111.^0^^~4~^~BNA~^^^^^^^^^^~02/01/2014~
-~08506~^~337~^0.^3^0.^~1~^~A~^^^1^0.^0.^^^^~1, 2, 3~^~03/01/2005~
-~08506~^~417~^714.^0^^~8~^~LC~^^~Y~^^^^^^^^~02/01/2014~
-~08506~^~601~^0.^0^^~8~^~LC~^^~N~^^^^^^^^~02/01/2014~
-~08507~^~208~^379.^0^^~8~^~LC~^^^^^^^^^^~04/01/2005~
-~08507~^~268~^1587.^0^^~8~^~LC~^^^^^^^^^^~04/01/2005~
-~08507~^~301~^8.^3^0.^~1~^~A~^^^1^7.^10.^2^5.^11.^~2, 3~^~03/01/2005~
-~08507~^~304~^16.^3^0.^~1~^~A~^^^1^16.^17.^2^13.^18.^~2, 3~^~03/01/2005~
-~08507~^~305~^63.^3^1.^~1~^~A~^^^1^61.^65.^2^57.^67.^~2, 3~^~03/01/2005~
-~08507~^~306~^224.^0^^~8~^~LC~^^^^^^^^^^~02/01/2014~
-~08507~^~307~^517.^0^^~8~^~LC~^^^^^^^^^^~02/01/2014~
-~08507~^~318~^4310.^0^^~4~^~NC~^^~Y~^^^^^^^^~10/01/2016~
-~08507~^~319~^1248.^0^^~4~^~BNA~^^^^^^^^^^~02/01/2014~
-~08507~^~320~^1256.^0^^~4~^~NC~^^^^^^^^^^~02/01/2014~
-~08507~^~321~^63.^0^^~4~^~BNA~^^^^^^^^^^~02/01/2014~
-~08507~^~322~^0.^0^^~4~^~BNA~^^^^^^^^^^~02/01/2014~
-~08507~^~324~^345.^0^^~8~^~LC~^^~Y~^^^^^^^^~02/01/2014~
-~08507~^~334~^53.^0^^~4~^~BNA~^^^^^^^^^^~02/01/2014~
-~08507~^~337~^0.^3^0.^~1~^~A~^^^1^0.^0.^^^^~1, 2, 3~^~04/01/2005~
-~08507~^~417~^966.^0^^~8~^~LC~^^^^^^^^^^~02/01/2014~
-~08507~^~601~^0.^0^^~8~^~LC~^^~N~^^^^^^^^~02/01/2014~
-~08510~^~208~^413.^0^^~4~^~NC~^^^^^^^^^^~08/01/2015~
-~08510~^~262~^0.^0^^~4~^~FLC~^^^^^^^^^^~08/01/2015~
-~08510~^~263~^0.^0^^~4~^~FLC~^^^^^^^^^^~08/01/2015~
-~08510~^~268~^1728.^0^^~4~^~NC~^^^^^^^^^^~08/01/2015~
-~08510~^~301~^410.^2^^~8~^~LC~^^^1^385.^435.^1^^^^~08/01/2015~
-~08510~^~304~^21.^0^^~4~^~FLC~^^^^^^^^^^~04/01/2005~
-~08510~^~305~^155.^0^^~4~^~FLC~^^^^^^^^^^~04/01/2005~
-~08510~^~306~^254.^0^^~4~^~FLC~^^^^^^^^^^~04/01/2005~
-~08510~^~307~^319.^0^^~4~^~FLC~^^^^^^^^^^~04/01/2005~
-~08510~^~318~^627.^2^^~8~^~LC~^^^1^385.^870.^1^^^^~08/01/2015~
-~08510~^~319~^188.^0^^~4~^~NC~^^^^^^^^^^~08/01/2015~
-~08510~^~320~^188.^0^^~4~^~NC~^^^^^^^^^^~08/01/2015~
-~08510~^~321~^0.^0^^~7~^~Z~^^^^^^^^^^~08/01/2015~
-~08510~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~08/01/2015~
-~08510~^~324~^68.^2^^~8~^~LC~^^^1^31.^104.^1^^^^~08/01/2015~
-~08510~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~08/01/2015~
-~08510~^~337~^0.^0^^~4~^~FLC~^^^^^^^^^^~08/01/2015~
-~08510~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~08/01/2015~
-~08510~^~417~^98.^2^^~8~^~LC~^^^1^92.^104.^1^^^^~08/01/2015~
-~08510~^~431~^87.^0^^~4~^~NC~^^^^^^^^^^~08/01/2015~
-~08510~^~432~^11.^0^^~4~^~FLC~^^^^^^^^^^~04/01/2005~
-~08510~^~435~^159.^0^^~4~^~NC~^^^^^^^^^^~02/01/2009~
-~08510~^~601~^6.^0^^~4~^~FLC~^^^^^^^^^^~04/01/2005~
-~08511~^~208~^48.^0^^~9~^~MC~^^^^^^^^^^~03/01/2013~
-~08511~^~262~^0.^0^^~9~^~MC~^^^^^^^^^^~03/01/2013~
-~08511~^~268~^199.^0^^~9~^~MC~^^^^^^^^^^~03/01/2013~
-~08511~^~301~^37.^0^^~9~^~MC~^^~Y~^^^^^^^^~03/01/2015~
-~08511~^~304~^2.^0^^~9~^~MC~^^^^^^^^^^~03/01/2013~
-~08511~^~305~^22.^0^^~9~^~MC~^^^^^^^^^^~03/01/2015~
-~08511~^~306~^14.^0^^~9~^~MC~^^^^^^^^^^~03/01/2015~
-~08511~^~307~^0.^0^^~9~^~MC~^^^^^^^^^^~03/01/2013~
-~08511~^~318~^0.^0^^~9~^~MC~^^^^^^^^^^~03/01/2013~
-~08511~^~324~^0.^0^^~9~^~MC~^^^^^^^^^^~03/01/2013~
-~08511~^~601~^0.^0^^~9~^~MC~^^^^^^^^^^~03/01/2013~
-~08512~^~208~^47.^0^^~9~^~MC~^^^^^^^^^^~03/01/2013~
-~08512~^~262~^0.^0^^~9~^~MC~^^^^^^^^^^~03/01/2013~
-~08512~^~268~^199.^0^^~9~^~MC~^^^^^^^^^^~03/01/2013~
-~08512~^~301~^49.^0^^~9~^~MC~^^^^^^^^^^~03/01/2013~
-~08512~^~304~^4.^0^^~9~^~MC~^^^^^^^^^^~03/01/2013~
-~08512~^~305~^16.^0^^~9~^~MC~^^^^^^^^^^~03/01/2013~
-~08512~^~306~^32.^0^^~9~^~MC~^^^^^^^^^^~03/01/2013~
-~08512~^~307~^1.^0^^~9~^~MC~^^^^^^^^^^~03/01/2013~
-~08512~^~318~^0.^0^^~9~^~MC~^^^^^^^^^^~03/01/2013~
-~08512~^~320~^0.^0^^~4~^~NC~^^^^^^^^^^~03/01/2013~
-~08512~^~324~^0.^0^^~9~^~MC~^^^^^^^^^^~03/01/2013~
-~08512~^~601~^0.^0^^~9~^~MC~^^^^^^^^^^~03/01/2013~
-~08544~^~208~^384.^0^^~9~^~MC~^^^^^^^^^^~02/01/2013~
-~08544~^~262~^0.^0^^~4~^~FLM~^^^^^^^^^^~07/01/2006~
-~08544~^~263~^0.^0^^~4~^~FLM~^^^^^^^^^^~07/01/2006~
-~08544~^~268~^1607.^0^^~9~^~MC~^^^^^^^^^^~02/01/2013~
-~08544~^~301~^40.^0^^~9~^~MC~^^^^^^^^^^~02/01/2013~
-~08544~^~304~^89.^0^^~9~^~MC~^^^^^^^^^^~02/01/2013~
-~08544~^~305~^255.^0^^~9~^~MC~^^^^^^^^^^~02/01/2013~
-~08544~^~306~^308.^0^^~9~^~MC~^^^^^^^^^^~02/01/2013~
-~08544~^~307~^214.^0^^~9~^~MC~^^^^^^^^^^~02/01/2013~
-~08544~^~318~^1563.^0^^~9~^~MC~^^~Y~^^^^^^^^~02/01/2013~
-~08544~^~319~^466.^0^^~4~^~NR~^^^^^^^^^^~07/01/2012~
-~08544~^~320~^467.^0^^~4~^~NC~^^^^^^^^^^~02/01/2013~
-~08544~^~321~^5.^0^^~4~^~FLM~^^^^^^^^^^~02/01/2013~
-~08544~^~322~^0.^0^^~4~^~FLM~^^^^^^^^^^~07/01/2006~
-~08544~^~324~^83.^0^^~9~^~MC~^^~Y~^^^^^^^^~02/01/2013~
-~08544~^~334~^0.^0^^~4~^~FLM~^^^^^^^^^^~07/01/2006~
-~08544~^~337~^0.^0^^~4~^~FLM~^^^^^^^^^^~07/01/2006~
-~08544~^~338~^127.^0^^~4~^~FLM~^^^^^^^^^^~02/01/2013~
-~08544~^~417~^208.^0^^~9~^~MC~^^~Y~^^^^^^^^~02/01/2013~
-~08544~^~431~^189.^0^^~4~^~NR~^^~Y~^^^^^^^^~07/01/2012~
-~08544~^~432~^19.^0^^~4~^~CAZN~^^^^^^^^^^~03/01/2011~
-~08544~^~435~^341.^0^^~4~^~NC~^^^^^^^^^^~07/01/2012~
-~08544~^~601~^0.^0^^~9~^~MC~^^^^^^^^^^~02/01/2013~
-~08546~^~208~^409.^1^^~4~^~NC~^^^^^^^^^^~03/01/2007~
-~08546~^~262~^0.^0^^~4~^~FLC~^^^^^^^^^^~03/01/2007~
-~08546~^~263~^0.^0^^~4~^~FLC~^^^^^^^^^^~03/01/2007~
-~08546~^~268~^1712.^0^^~4~^~NC~^^^^^^^^^^~03/01/2007~
-~08546~^~301~^31.^0^^~4~^~FLC~^^^^^^^^^^~03/01/2007~
-~08546~^~304~^46.^0^^~4~^~FLC~^^^^^^^^^^~03/01/2007~
-~08546~^~305~^136.^0^^~4~^~FLC~^^^^^^^^^^~03/01/2007~
-~08546~^~306~^143.^0^^~4~^~FLC~^^^^^^^^^^~03/01/2007~
-~08546~^~307~^428.^0^^~8~^~LC~^^^^^^^^^^~07/01/2017~
-~08546~^~318~^0.^0^^~4~^~NC~^^^^^^^^^^~07/01/2017~
-~08546~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2007~
-~08546~^~320~^0.^0^^~4~^~NC~^^^^^^^^^^~03/01/2007~
-~08546~^~321~^0.^0^^~4~^~FLC~^^^^^^^^^^~03/01/2007~
-~08546~^~322~^0.^0^^~4~^~FLC~^^^^^^^^^^~03/01/2007~
-~08546~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2009~
-~08546~^~334~^0.^0^^~4~^~FLC~^^^^^^^^^^~03/01/2007~
-~08546~^~337~^0.^0^^~4~^~FLC~^^^^^^^^^^~03/01/2007~
-~08546~^~338~^0.^0^^~4~^~FLC~^^^^^^^^^^~03/01/2007~
-~08546~^~417~^15.^0^^~4~^~O~^^^^^^^^^^~03/01/2007~
-~08546~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2007~
-~08546~^~432~^15.^0^^~4~^~FLC~^^^^^^^^^^~03/01/2007~
-~08546~^~435~^15.^0^^~4~^~NC~^^^^^^^^^^~03/01/2007~
-~08546~^~601~^0.^1^^~8~^~LC~^^^^^^^^^^~03/01/2007~
-~08549~^~208~^373.^0^^~9~^~MC~^^^^^^^^^^~02/01/2007~
-~08549~^~268~^1561.^0^^~9~^~MC~^^^^^^^^^^~01/01/2011~
-~08549~^~301~^366.^0^^~9~^~MC~^^^^^^^^^^~02/01/2007~
-~08549~^~304~^90.^0^^~9~^~MC~^^^^^^^^^^~02/01/2007~
-~08549~^~305~^391.^0^^~9~^~MC~^^^^^^^^^^~02/01/2007~
-~08549~^~306~^269.^0^^~9~^~MC~^^^^^^^^^^~02/01/2007~
-~08549~^~307~^488.^0^^~9~^~MC~^^^^^^^^^^~02/01/2007~
-~08549~^~318~^38.^0^^~9~^~MC~^^^^^^^^^^~02/01/2007~
-~08549~^~417~^1311.^0^^~9~^~MC~^^^^^^^^^^~02/01/2007~
-~08549~^~601~^0.^0^^~9~^~MC~^^^^^^^^^^~02/01/2007~
-~08550~^~208~^397.^0^^~9~^~MC~^^^^^^^^^^~01/01/2011~
-~08550~^~262~^0.^0^^~4~^~FLM~^^^^^^^^^^~05/01/2011~
-~08550~^~263~^0.^0^^~4~^~FLM~^^^^^^^^^^~05/01/2011~
-~08550~^~268~^1661.^0^^~9~^~MC~^^^^^^^^^^~01/01/2011~
-~08550~^~301~^11.^0^^~9~^~MC~^^^^^^^^^^~01/01/2011~
-~08550~^~304~^55.^0^^~9~^~MC~^^^^^^^^^^~03/01/2007~
-~08550~^~305~^168.^0^^~9~^~MC~^^^^^^^^^^~03/01/2007~
-~08550~^~306~^186.^0^^~9~^~MC~^^^^^^^^^^~01/01/2011~
-~08550~^~307~^724.^0^^~9~^~MC~^^^^^^^^^^~01/01/2011~
-~08550~^~318~^148.^0^^~9~^~MC~^^^^^^^^^^~01/01/2011~
-~08550~^~319~^24.^0^^~4~^~O~^^^^^^^^^^~05/01/2011~
-~08550~^~320~^27.^0^^~4~^~NC~^^^^^^^^^^~05/01/2011~
-~08550~^~321~^32.^0^^~4~^~FLM~^^^^^^^^^^~05/01/2011~
-~08550~^~322~^18.^0^^~4~^~FLM~^^^^^^^^^^~05/01/2011~
-~08550~^~324~^0.^1^^~9~^~MC~^^^^^^^^^^~03/01/2007~
-~08550~^~334~^0.^0^^~4~^~FLM~^^^^^^^^^^~05/01/2011~
-~08550~^~337~^0.^0^^~4~^~FLM~^^^^^^^^^^~05/01/2011~
-~08550~^~338~^521.^0^^~4~^~FLM~^^^^^^^^^^~05/01/2011~
-~08550~^~417~^1537.^0^^~9~^~MC~^^~Y~^^^^^^^^~01/01/2011~
-~08550~^~431~^1518.^0^^~4~^~O~^^~Y~^^^^^^^^~05/01/2011~
-~08550~^~432~^19.^0^^~4~^~FLM~^^^^^^^^^^~05/01/2011~
-~08550~^~435~^2600.^0^^~4~^~NC~^^^^^^^^^^~05/01/2011~
-~08550~^~601~^0.^0^^~9~^~MC~^^^^^^^^^^~03/01/2007~
-~08554~^~208~^413.^0^^~9~^~MC~^^^^^^^^^^~04/01/2014~
-~08554~^~262~^0.^0^^~4~^~FLM~^^^^^^^^^^~04/01/2007~
-~08554~^~263~^0.^0^^~4~^~FLM~^^^^^^^^^^~04/01/2007~
-~08554~^~268~^1729.^0^^~9~^~MC~^^^^^^^^^^~04/01/2014~
-~08554~^~301~^39.^0^^~9~^~MC~^^^^^^^^^^~04/01/2014~
-~08554~^~304~^85.^0^^~9~^~MC~^^^^^^^^^^~04/01/2014~
-~08554~^~305~^259.^0^^~9~^~MC~^^^^^^^^^^~04/01/2014~
-~08554~^~306~^274.^0^^~9~^~MC~^^^^^^^^^^~04/01/2014~
-~08554~^~307~^239.^0^^~9~^~MC~^^^^^^^^^^~04/01/2014~
-~08554~^~318~^1442.^0^^~9~^~MC~^^~Y~^^^^^^^^~04/01/2007~
-~08554~^~319~^431.^0^^~4~^~NR~^^^^^^^^^^~03/01/2007~
-~08554~^~320~^431.^0^^~4~^~NC~^^^^^^^^^^~04/01/2007~
-~08554~^~321~^3.^0^^~4~^~FLM~^^^^^^^^^^~04/01/2014~
-~08554~^~322~^0.^0^^~4~^~FLM~^^^^^^^^^^~04/01/2007~
-~08554~^~324~^77.^0^^~9~^~MC~^^~Y~^^^^^^^^~04/01/2007~
-~08554~^~334~^0.^0^^~4~^~FLM~^^^^^^^^^^~04/01/2014~
-~08554~^~337~^0.^0^^~4~^~FLM~^^^^^^^^^^~04/01/2007~
-~08554~^~338~^119.^0^^~4~^~FLM~^^^^^^^^^^~04/01/2014~
-~08554~^~417~^192.^0^^~9~^~MC~^^~Y~^^^^^^^^~04/01/2007~
-~08554~^~431~^173.^0^^~4~^~NR~^^~Y~^^^^^^^^~04/01/2007~
-~08554~^~432~^19.^0^^~4~^~CAZN~^^^^^^^^^^~04/01/2007~
-~08554~^~435~^314.^0^^~4~^~NC~^^^^^^^^^^~04/01/2014~
-~08554~^~601~^0.^0^^~9~^~MC~^^^^^^^^^^~04/01/2007~
-~08571~^~208~^467.^0^^~9~^~MC~^^^^^^^^^^~02/01/2015~
-~08571~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2015~
-~08571~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2015~
-~08571~^~268~^1955.^0^^~9~^~MC~^^^^^^^^^^~02/01/2015~
-~08571~^~301~^51.^0^^~9~^~MC~^^^^^^^^^^~02/01/2015~
-~08571~^~304~^40.^0^^~9~^~MC~^^^^^^^^^^~02/01/2015~
-~08571~^~305~^323.^0^^~9~^~MC~^^^^^^^^^^~02/01/2015~
-~08571~^~306~^291.^0^^~9~^~MC~^^^^^^^^^^~02/01/2015~
-~08571~^~307~^74.^0^^~9~^~MC~^^^^^^^^^^~02/01/2015~
-~08571~^~318~^0.^0^^~4~^~NC~^^^^^^^^^^~02/01/2015~
-~08571~^~319~^0.^0^^~9~^~MC~^^^^^^^^^^~02/01/2015~
-~08571~^~320~^0.^0^^~4~^~NC~^^^^^^^^^^~02/01/2015~
-~08571~^~321~^0.^0^^~9~^~MC~^^^^^^^^^^~02/01/2015~
-~08571~^~322~^0.^0^^~4~^~FLM~^^^^^^^^^^~02/01/2015~
-~08571~^~324~^0.^0^^~9~^~MC~^^^^^^^^^^~02/01/2015~
-~08571~^~334~^0.^0^^~4~^~FLM~^^^^^^^^^^~02/01/2015~
-~08571~^~337~^0.^0^^~4~^~FLM~^^^^^^^^^^~02/01/2015~
-~08571~^~338~^143.^0^^~4~^~FLM~^^^^^^^^^^~02/01/2015~
-~08571~^~417~^15.^0^^~9~^~MC~^^^^^^^^^^~02/01/2015~
-~08571~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2015~
-~08571~^~432~^15.^0^^~9~^~MC~^^^^^^^^^^~02/01/2015~
-~08571~^~435~^15.^0^^~4~^~NC~^^^^^^^^^^~02/01/2015~
-~08571~^~601~^0.^0^^~9~^~MC~^^^^^^^^^^~03/01/2008~
-~08573~^~208~^355.^0^^~4~^~NC~^^^^^^^^^^~11/01/2008~
-~08573~^~268~^1484.^0^^~4~^~NC~^^^^^^^^^^~11/01/2008~
-~08573~^~301~^882.^4^57.^~1~^~A~^^^1^752.^1030.^3^700.^1063.^~2, 3~^~11/01/2008~
-~08573~^~304~^46.^4^1.^~1~^~A~^^^1^42.^50.^3^40.^50.^~2, 3~^~11/01/2008~
-~08573~^~305~^398.^4^30.^~1~^~A~^^^1^351.^487.^3^299.^495.^~2, 3~^~11/01/2008~
-~08573~^~306~^160.^4^6.^~1~^~A~^^^1^148.^177.^3^140.^179.^~2, 3~^~11/01/2008~
-~08573~^~307~^328.^4^36.^~1~^~A~^^^1^269.^435.^3^210.^445.^~2, 3~^~11/01/2008~
-~08574~^~208~^56.^0^^~4~^~NC~^^^^^^^^^^~11/01/2008~
-~08574~^~268~^234.^0^^~4~^~NC~^^^^^^^^^^~11/01/2008~
-~08574~^~301~^104.^3^3.^~1~^~A~^^^1^97.^111.^2^87.^121.^~2, 3~^~11/01/2008~
-~08574~^~304~^7.^3^0.^~1~^~A~^^^1^6.^7.^2^5.^8.^~2, 3~^~11/01/2008~
-~08574~^~305~^47.^3^0.^~1~^~A~^^^1^47.^49.^2^43.^50.^~2, 3~^~11/01/2008~
-~08574~^~306~^23.^3^0.^~1~^~A~^^^1^22.^23.^2^20.^24.^~2, 3~^~11/01/2008~
-~08574~^~307~^34.^3^0.^~1~^~A~^^^1^34.^36.^2^31.^36.^~2, 3~^~11/01/2008~
-~08574~^~417~^29.^3^2.^~1~^~A~^^^1^26.^33.^2^20.^37.^~2, 3~^~11/01/2008~
-~08574~^~431~^15.^3^0.^~1~^~A~^^~Y~^1^15.^16.^2^13.^16.^~2, 3~^~11/01/2008~
-~08574~^~432~^14.^3^2.^~1~^~AS~^^^1^11.^18.^2^4.^23.^~2, 3~^~11/01/2008~
-~08574~^~435~^40.^0^^~4~^~NC~^^^^^^^^^^~11/01/2008~
-~08575~^~208~^52.^0^^~4~^~NC~^^^^^^^^^^~11/01/2008~
-~08575~^~268~^219.^0^^~4~^~NC~^^^^^^^^^^~11/01/2008~
-~08575~^~301~^131.^4^3.^~1~^~A~^^^1^124.^140.^3^120.^141.^~2, 3~^~11/01/2008~
-~08575~^~304~^8.^4^0.^~1~^~A~^^^1^7.^8.^3^7.^8.^~2, 3~^~11/01/2008~
-~08575~^~305~^57.^4^1.^~1~^~A~^^^1^55.^61.^3^53.^61.^~2, 3~^~11/01/2008~
-~08575~^~306~^26.^4^1.^~1~^~A~^^^1^24.^29.^3^22.^30.^~2, 3~^~11/01/2008~
-~08575~^~307~^45.^4^2.^~1~^~A~^^^1^40.^51.^3^36.^52.^~2, 3~^~11/01/2008~
-~08575~^~417~^32.^4^2.^~1~^~A~^^^1^27.^37.^3^24.^38.^~2, 3~^~11/01/2008~
-~08575~^~431~^20.^4^2.^~1~^~A~^^~Y~^1^15.^24.^3^13.^26.^~2, 3~^~11/01/2008~
-~08575~^~432~^12.^4^1.^~1~^~AS~^^^1^8.^15.^3^5.^17.^~2, 3~^~11/01/2008~
-~08575~^~435~^46.^0^^~4~^~NC~^^^^^^^^^^~11/01/2008~
-~08576~^~208~^359.^0^^~4~^~NC~^^^^^^^^^^~11/01/2008~
-~08576~^~268~^1503.^0^^~4~^~NC~^^^^^^^^^^~11/01/2008~
-~08576~^~301~^801.^4^85.^~1~^~A~^^^1^558.^937.^3^529.^1072.^~2, 3~^~11/01/2008~
-~08576~^~304~^45.^4^1.^~1~^~A~^^^1^40.^47.^3^39.^50.^~2, 3~^~11/01/2008~
-~08576~^~305~^167.^4^5.^~1~^~A~^^^1^150.^174.^3^148.^185.^~2, 3~^~11/01/2008~
-~08576~^~306~^151.^4^4.^~1~^~A~^^^1^139.^157.^3^138.^164.^~2, 3~^~11/01/2008~
-~08576~^~307~^7.^4^0.^~1~^~A~^^^1^7.^7.^^^^~1, 2, 3~^~11/01/2008~
-~08577~^~208~^56.^0^^~4~^~NC~^^^^^^^^^^~11/01/2008~
-~08577~^~268~^235.^0^^~4~^~NC~^^^^^^^^^^~11/01/2008~
-~08577~^~301~^125.^4^13.^~1~^~A~^^^1^93.^157.^3^81.^167.^~2, 3~^~11/01/2008~
-~08577~^~304~^8.^4^0.^~1~^~A~^^^1^7.^9.^3^6.^9.^~2, 3~^~11/01/2008~
-~08577~^~305~^27.^4^1.^~1~^~A~^^^1^25.^32.^3^22.^32.^~2, 3~^~11/01/2008~
-~08577~^~306~^23.^4^0.^~1~^~A~^^^1^22.^25.^3^20.^25.^~2, 3~^~11/01/2008~
-~08577~^~307~^4.^4^0.^~1~^~A~^^^1^4.^4.^^^^~1, 2, 3~^~11/01/2008~
-~08577~^~417~^26.^4^2.^~1~^~A~^^^1^20.^31.^3^18.^33.^~2, 3~^~11/01/2008~
-~08577~^~431~^14.^4^2.^~1~^~A~^^~Y~^1^8.^19.^3^6.^21.^~2, 3~^~11/01/2008~
-~08577~^~432~^12.^4^0.^~1~^~AS~^^^1^11.^13.^3^10.^13.^~2, 3~^~11/01/2008~
-~08577~^~435~^36.^0^^~4~^~NC~^^^^^^^^^^~11/01/2008~
-~08578~^~208~^55.^0^^~4~^~NC~^^^^^^^^^^~11/01/2008~
-~08578~^~268~^230.^0^^~4~^~NC~^^^^^^^^^^~11/01/2008~
-~08578~^~301~^126.^4^11.^~1~^~A~^^^1^92.^145.^3^89.^162.^~2, 3~^~11/01/2008~
-~08578~^~304~^8.^4^0.^~1~^~A~^^^1^7.^8.^3^6.^8.^~2, 3~^~11/01/2008~
-~08578~^~305~^28.^4^0.^~1~^~A~^^^1^26.^30.^3^25.^31.^~2, 3~^~11/01/2008~
-~08578~^~306~^23.^4^0.^~1~^~A~^^^1^22.^24.^3^21.^24.^~2, 3~^~11/01/2008~
-~08578~^~307~^4.^4^0.^~1~^~A~^^^1^4.^4.^^^^~1, 2, 3~^~11/01/2008~
-~08578~^~417~^30.^4^2.^~1~^~A~^^^1^26.^35.^3^23.^36.^~2, 3~^~11/01/2008~
-~08578~^~431~^16.^4^1.^~1~^~A~^^~Y~^1^14.^19.^3^11.^19.^~2, 3~^~11/01/2008~
-~08578~^~432~^14.^4^1.^~1~^~AS~^^^1^10.^17.^3^8.^19.^~2, 3~^~11/01/2008~
-~08578~^~435~^41.^0^^~4~^~NC~^^^^^^^^^^~11/01/2008~
-~08580~^~208~^379.^0^^~4~^~NC~^^^^^^^^^^~01/01/2009~
-~08580~^~268~^1587.^0^^~4~^~NC~^^^^^^^^^^~01/01/2009~
-~08580~^~301~^600.^1^^~1~^~A~^^^^^^^^^^~01/01/2009~
-~08580~^~304~^220.^1^^~1~^~A~^^^^^^^^^^~01/01/2009~
-~08580~^~305~^530.^1^^~1~^~A~^^^^^^^^^^~01/01/2009~
-~08580~^~306~^1030.^1^^~1~^~A~^^^^^^^^^^~01/01/2009~
-~08580~^~307~^4.^1^^~1~^~A~^^^^^^^^^^~01/01/2009~
-~08580~^~318~^5900.^0^^~1~^~AS~^^^^^^^^^^~01/01/2009~
-~08580~^~319~^1770.^1^^~1~^~A~^^^^^^^^^^~01/01/2009~
-~08580~^~320~^1770.^0^^~1~^~AS~^^^^^^^^^^~01/01/2009~
-~08625~^~208~^402.^0^^~9~^~MC~^^^^^^^^^^~02/01/2014~
-~08625~^~268~^1680.^0^^~9~^~MC~^^^^^^^^^^~02/01/2014~
-~08625~^~301~^11.^0^^~9~^~MC~^^^^^^^^^^~01/01/2011~
-~08625~^~304~^54.^0^^~9~^~MC~^^^^^^^^^^~01/01/2011~
-~08625~^~305~^167.^0^^~9~^~MC~^^^^^^^^^^~01/01/2011~
-~08625~^~306~^185.^0^^~9~^~MC~^^^^^^^^^^~01/01/2011~
-~08625~^~307~^719.^0^^~9~^~MC~^^^^^^^^^^~01/01/2011~
-~08625~^~318~^147.^0^^~9~^~MC~^^^^^^^^^^~01/01/2011~
-~08625~^~417~^1615.^0^^~9~^~MC~^^~Y~^^^^^^^^~02/01/2014~
-~08625~^~601~^0.^0^^~9~^~MC~^^^^^^^^^^~01/01/2011~
-~08627~^~208~^418.^0^^~9~^~MC~^^^^^^^^^^~01/01/2011~
-~08627~^~268~^1749.^0^^~9~^~MC~^^^^^^^^^^~01/01/2011~
-~08627~^~301~^98.^0^^~9~^~MC~^^^^^^^^^^~01/01/2011~
-~08627~^~304~^106.^0^^~9~^~MC~^^^^^^^^^^~01/01/2011~
-~08627~^~305~^334.^0^^~9~^~MC~^^^^^^^^^^~01/01/2011~
-~08627~^~306~^444.^0^^~9~^~MC~^^^^^^^^^^~01/01/2011~
-~08627~^~307~^47.^0^^~9~^~MC~^^^^^^^^^^~01/01/2011~
-~08627~^~318~^19.^0^^~9~^~MC~^^^^^^^^^^~01/01/2011~
-~08627~^~417~^31.^0^^~9~^~MC~^^^^^^^^^^~01/01/2011~
-~08627~^~432~^31.^0^^~9~^~MC~^^^^^^^^^^~01/01/2011~
-~08627~^~601~^2.^0^^~9~^~MC~^^^^^^^^^^~01/01/2011~
-~08628~^~208~^373.^0^^~9~^~MC~^^^^^^^^^^~01/01/2011~
-~08628~^~268~^1561.^0^^~9~^~MC~^^^^^^^^^^~01/01/2011~
-~08628~^~301~^349.^0^^~9~^~MC~^^^^^^^^^^~01/01/2011~
-~08628~^~304~^91.^0^^~9~^~MC~^^^^^^^^^^~01/01/2011~
-~08628~^~305~^389.^0^^~9~^~MC~^^^^^^^^^^~01/01/2011~
-~08628~^~306~^262.^0^^~9~^~MC~^^^^^^^^^^~01/01/2011~
-~08628~^~307~^477.^0^^~9~^~MC~^^^^^^^^^^~01/01/2011~
-~08628~^~318~^37.^0^^~9~^~MC~^^^^^^^^^^~01/01/2011~
-~08628~^~417~^1436.^0^^~9~^~MC~^^^^^^^^^^~01/01/2011~
-~08628~^~601~^0.^0^^~9~^~MC~^^~N~^^^^^^^^~01/01/2011~
-~08629~^~208~^395.^0^^~9~^~MC~^^^^^^^^^^~01/01/2011~
-~08629~^~268~^1653.^0^^~9~^~MC~^^^^^^^^^^~01/01/2011~
-~08629~^~301~^11.^0^^~9~^~MC~^^^^^^^^^^~01/01/2011~
-~08629~^~304~^56.^0^^~9~^~MC~^^^^^^^^^^~01/01/2011~
-~08629~^~305~^170.^0^^~9~^~MC~^^^^^^^^^^~01/01/2011~
-~08629~^~306~^189.^0^^~9~^~MC~^^^^^^^^^^~01/01/2011~
-~08629~^~307~^637.^0^^~9~^~MC~^^^^^^^^^^~01/01/2011~
-~08629~^~318~^150.^0^^~9~^~MC~^^^^^^^^^^~01/01/2011~
-~08629~^~417~^1353.^0^^~9~^~MC~^^^^^^^^^^~01/01/2011~
-~08629~^~601~^0.^0^^~9~^~MC~^^~N~^^^^^^^^~01/01/2011~
-~08632~^~208~^380.^0^^~9~^~MC~^^^^^^^^^^~02/01/2011~
-~08632~^~268~^1590.^0^^~9~^~MC~^^^^^^^^^^~02/01/2011~
-~08632~^~301~^201.^0^^~9~^~MC~^^~Y~^^^^^^^^~02/01/2014~
-~08632~^~304~^115.^0^^~9~^~MC~^^^^^^^^^^~06/01/2013~
-~08632~^~305~^371.^0^^~9~^~MC~^^^^^^^^^^~02/01/2011~
-~08632~^~306~^358.^0^^~9~^~MC~^^^^^^^^^^~06/01/2013~
-~08632~^~307~^347.^0^^~9~^~MC~^^^^^^^^^^~06/01/2013~
-~08632~^~318~^1189.^0^^~9~^~MC~^^~Y~^^^^^^^^~06/01/2013~
-~08632~^~417~^723.^0^^~9~^~MC~^^~Y~^^^^^^^^~02/01/2014~
-~08632~^~601~^0.^0^^~9~^~MC~^^^^^^^^^^~02/01/2011~
-~08633~^~208~^394.^0^^~9~^~MC~^^^^^^^^^^~04/01/2014~
-~08633~^~262~^0.^0^^~4~^~BFZN~^~43570~^^^^^^^^^~03/01/2011~
-~08633~^~263~^0.^0^^~4~^~BFZN~^~43570~^^^^^^^^^~03/01/2011~
-~08633~^~268~^1650.^0^^~9~^~MC~^^^^^^^^^^~04/01/2014~
-~08633~^~301~^33.^0^^~9~^~MC~^^^^^^^^^^~02/01/2013~
-~08633~^~304~^75.^0^^~9~^~MC~^^^^^^^^^^~02/01/2013~
-~08633~^~305~^232.^0^^~9~^~MC~^^^^^^^^^^~02/01/2013~
-~08633~^~306~^262.^0^^~9~^~MC~^^^^^^^^^^~02/01/2013~
-~08633~^~307~^267.^0^^~9~^~MC~^^^^^^^^^^~02/01/2013~
-~08633~^~318~^1786.^0^^~9~^~MC~^^~Y~^^^^^^^^~04/01/2014~
-~08633~^~319~^525.^0^^~4~^~BNA~^~43570~^^^^^^^^^~04/01/2014~
-~08633~^~320~^527.^0^^~4~^~NC~^^^^^^^^^^~04/01/2014~
-~08633~^~321~^11.^0^^~4~^~BNA~^~43570~^^^^^^^^^~04/01/2014~
-~08633~^~322~^2.^0^^~4~^~BNA~^~43570~^^^^^^^^^~04/01/2013~
-~08633~^~324~^107.^0^^~9~^~MC~^^~Y~^^^^^^^^~04/01/2014~
-~08633~^~334~^18.^0^^~4~^~BNA~^~43570~^^^^^^^^^~04/01/2014~
-~08633~^~337~^0.^0^^~4~^~FLM~^^^^^^^^^^~03/01/2011~
-~08633~^~338~^141.^0^^~4~^~FLM~^^^^^^^^^^~04/01/2014~
-~08633~^~417~^357.^0^^~9~^~MC~^^~Y~^^^^^^^^~02/01/2013~
-~08633~^~431~^338.^0^^~4~^~NR~^^~Y~^^^^^^^^~03/01/2011~
-~08633~^~432~^19.^0^^~4~^~BFZN~^~43570~^^^^^^^^^~03/01/2011~
-~08633~^~435~^594.^0^^~4~^~NC~^^^^^^^^^^~03/01/2011~
-~08633~^~601~^0.^0^^~9~^~MC~^^^^^^^^^^~02/01/2013~
-~08639~^~208~^358.^0^^~9~^~MC~^^^^^^^^^^~03/01/2014~
-~08639~^~268~^1498.^0^^~9~^~MC~^^^^^^^^^^~03/01/2014~
-~08639~^~301~^313.^0^^~9~^~MC~^^~Y~^^^^^^^^~04/01/2011~
-~08639~^~304~^116.^0^^~9~^~MC~^^^^^^^^^^~03/01/2014~
-~08639~^~305~^391.^0^^~9~^~MC~^^^^^^^^^^~03/01/2014~
-~08639~^~306~^329.^0^^~9~^~MC~^^^^^^^^^^~03/01/2014~
-~08639~^~307~^760.^0^^~9~^~MC~^^^^^^^^^^~04/01/2011~
-~08639~^~318~^3409.^0^^~9~^~MC~^^~Y~^^^^^^^^~04/01/2011~
-~08639~^~417~^273.^0^^~9~^~MC~^^~Y~^^^^^^^^~04/01/2011~
-~08639~^~601~^0.^0^^~9~^~MC~^^^^^^^^^^~04/01/2011~
-~08640~^~208~^367.^0^^~9~^~MC~^^^^^^^^^^~04/01/2011~
-~08640~^~268~^1536.^0^^~9~^~MC~^^^^^^^^^^~04/01/2011~
-~08640~^~301~^52.^0^^~9~^~MC~^^^^^^^^^^~04/01/2011~
-~08640~^~304~^148.^0^^~9~^~MC~^^^^^^^^^^~04/01/2011~
-~08640~^~305~^474.^0^^~9~^~MC~^^^^^^^^^^~04/01/2011~
-~08640~^~306~^350.^0^^~9~^~MC~^^^^^^^^^^~04/01/2011~
-~08640~^~307~^4.^0^^~9~^~MC~^^^^^^^^^^~04/01/2011~
-~08640~^~318~^0.^0^^~9~^~MC~^^~N~^^^^^^^^~04/01/2011~
-~08640~^~417~^32.^0^^~9~^~MC~^^^^^^^^^^~04/01/2011~
-~08640~^~432~^32.^0^^~9~^~MC~^^^^^^^^^^~04/01/2011~
-~08640~^~601~^0.^0^^~9~^~MC~^^~N~^^^^^^^^~04/01/2011~
-~08641~^~208~^376.^0^^~9~^~MC~^^^^^^^^^^~04/01/2011~
-~08641~^~268~^1573.^0^^~9~^~MC~^^^^^^^^^^~04/01/2011~
-~08641~^~301~^246.^0^^~9~^~MC~^^^^^^^^^^~04/01/2011~
-~08641~^~304~^103.^0^^~9~^~MC~^^^^^^^^^^~04/01/2011~
-~08641~^~305~^359.^0^^~9~^~MC~^^^^^^^^^^~04/01/2011~
-~08641~^~306~^339.^0^^~9~^~MC~^^^^^^^^^^~04/01/2011~
-~08641~^~307~^559.^0^^~9~^~MC~^^^^^^^^^^~04/01/2011~
-~08641~^~318~^1666.^0^^~9~^~MC~^^^^^^^^^^~04/01/2011~
-~08641~^~417~^170.^0^^~9~^~MC~^^^^^^^^^^~04/01/2011~
-~08641~^~601~^0.^0^^~9~^~MC~^^^^^^^^^^~04/01/2011~
-~08642~^~208~^358.^0^^~9~^~MC~^^^^^^^^^^~06/01/2013~
-~08642~^~268~^1498.^0^^~9~^~MC~^^^^^^^^^^~06/01/2013~
-~08642~^~301~^355.^0^^~9~^~MC~^^~Y~^^^^^^^^~06/01/2013~
-~08642~^~304~^104.^0^^~9~^~MC~^^^^^^^^^^~06/01/2013~
-~08642~^~305~^357.^0^^~9~^~MC~^^^^^^^^^^~06/01/2013~
-~08642~^~306~^389.^0^^~9~^~MC~^^^^^^^^^^~06/01/2013~
-~08642~^~307~^535.^0^^~9~^~MC~^^^^^^^^^^~06/01/2013~
-~08642~^~318~^3549.^0^^~9~^~MC~^^~Y~^^^^^^^^~06/01/2013~
-~08642~^~417~^284.^0^^~9~^~MC~^^~Y~^^^^^^^^~06/01/2013~
-~08642~^~601~^0.^0^^~9~^~MC~^^^^^^^^^^~04/01/2011~
-~08655~^~208~^399.^0^^~9~^~MC~^^^^^^^^^^~04/01/2014~
-~08655~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2013~
-~08655~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2013~
-~08655~^~268~^1670.^0^^~9~^~MC~^^^^^^^^^^~04/01/2014~
-~08655~^~301~^19.^0^^~9~^~MC~^^^^^^^^^^~04/01/2014~
-~08655~^~304~^36.^0^^~9~^~MC~^^^^^^^^^^~04/01/2014~
-~08655~^~305~^140.^0^^~9~^~MC~^^^^^^^^^^~04/01/2014~
-~08655~^~306~^177.^0^^~9~^~MC~^^^^^^^^^^~04/01/2014~
-~08655~^~307~^483.^0^^~9~^~MC~^^^^^^^^^^~04/01/2014~
-~08655~^~318~^2586.^0^^~9~^~MC~^^~Y~^^^^^^^^~02/01/2013~
-~08655~^~319~^743.^0^^~4~^~NR~^^^^^^^^^^~02/01/2013~
-~08655~^~320~^748.^0^^~4~^~NC~^^^^^^^^^^~02/01/2013~
-~08655~^~321~^50.^0^^~4~^~FLM~^^^^^^^^^^~02/01/2013~
-~08655~^~322~^32.^0^^~4~^~FLM~^^^^^^^^^^~02/01/2013~
-~08655~^~324~^138.^0^^~9~^~MC~^^~Y~^^^^^^^^~02/01/2013~
-~08655~^~334~^0.^0^^~4~^~FLM~^^^^^^^^^^~02/01/2013~
-~08655~^~337~^0.^0^^~4~^~FLM~^^^^^^^^^^~02/01/2013~
-~08655~^~338~^787.^0^^~4~^~FLM~^^^^^^^^^^~02/01/2013~
-~08655~^~417~^690.^0^^~9~^~MC~^^~Y~^^^^^^^^~02/01/2013~
-~08655~^~431~^671.^0^^~4~^~NR~^^~Y~^^^^^^^^~02/01/2013~
-~08655~^~432~^19.^0^^~4~^~CAZN~^^^^^^^^^^~02/01/2013~
-~08655~^~435~^1159.^0^^~4~^~NC~^^^^^^^^^^~02/01/2013~
-~08655~^~601~^0.^0^^~9~^~MC~^^^^^^^^^^~02/01/2013~
-~08656~^~208~^350.^0^^~9~^~MC~^^^^^^^^^^~01/01/2013~
-~08656~^~262~^0.^0^^~9~^~MC~^^^^^^^^^^~01/01/2013~
-~08656~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2013~
-~08656~^~268~^1463.^0^^~9~^~MC~^^^^^^^^^^~01/01/2013~
-~08656~^~301~^55.^0^^~9~^~MC~^^^^^^^^^^~01/01/2013~
-~08656~^~304~^28.^0^^~9~^~MC~^^^^^^^^^^~01/01/2013~
-~08656~^~305~^460.^0^^~9~^~MC~^^^^^^^^^^~01/01/2013~
-~08656~^~306~^501.^0^^~9~^~MC~^^^^^^^^^^~01/01/2013~
-~08656~^~307~^458.^0^^~9~^~MC~^^^^^^^^^^~01/01/2013~
-~08656~^~318~^1.^0^^~9~^~MC~^^^^^^^^^^~01/01/2013~
-~08656~^~319~^0.^0^^~9~^~MC~^^^^^^^^^^~01/01/2013~
-~08656~^~320~^0.^0^^~4~^~NC~^^^^^^^^^^~01/01/2013~
-~08656~^~321~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2013~
-~08656~^~322~^0.^0^^~4~^~FLM~^^^^^^^^^^~01/01/2013~
-~08656~^~324~^0.^0^^~9~^~MC~^^^^^^^^^^~01/01/2013~
-~08656~^~334~^0.^0^^~4~^~FLM~^^^^^^^^^^~01/01/2013~
-~08656~^~337~^0.^0^^~4~^~FLM~^^^^^^^^^^~01/01/2013~
-~08656~^~338~^210.^0^^~4~^~FLM~^^^^^^^^^^~01/01/2013~
-~08656~^~417~^6.^0^^~9~^~MC~^^^^^^^^^^~01/01/2013~
-~08656~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2013~
-~08656~^~432~^6.^0^^~9~^~MC~^^^^^^^^^^~01/01/2013~
-~08656~^~435~^6.^0^^~4~^~NC~^^^^^^^^^^~01/01/2013~
-~08656~^~601~^0.^0^^~9~^~MC~^^^^^^^^^^~01/01/2013~
-~08657~^~208~^333.^0^^~8~^~LC~^^^^^^^^^^~04/01/2013~
-~08657~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2013~
-~08657~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2013~
-~08657~^~268~^1395.^0^^~8~^~LC~^^^^^^^^^^~04/01/2013~
-~08657~^~301~^70.^0^^~4~^~FLC~^^^^^^^^^^~04/01/2013~
-~08657~^~304~^107.^0^^~4~^~FLC~^^^^^^^^^^~04/01/2013~
-~08657~^~305~^126.^0^^~4~^~FLC~^^^^^^^^^^~04/01/2013~
-~08657~^~306~^315.^0^^~8~^~LC~^^^^^^^^^^~04/01/2013~
-~08657~^~307~^704.^0^^~8~^~LC~^^^^^^^^^^~04/01/2013~
-~08657~^~318~^0.^0^^~8~^~LC~^^^^^^^^^^~04/01/2013~
-~08657~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2013~
-~08657~^~320~^0.^0^^~1~^~AS~^^~N~^^^^^^^^~04/01/2013~
-~08657~^~321~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2013~
-~08657~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2013~
-~08657~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2013~
-~08657~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2013~
-~08657~^~337~^0.^0^^~4~^~FLC~^^^^^^^^^^~04/01/2013~
-~08657~^~338~^775.^0^^~4~^~FLC~^^^^^^^^^^~04/01/2013~
-~08657~^~417~^19.^0^^~4~^~FLC~^^^^^^^^^^~04/01/2013~
-~08657~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2013~
-~08657~^~432~^19.^0^^~4~^~FLC~^^^^^^^^^^~04/01/2013~
-~08657~^~435~^19.^0^^~4~^~NC~^^^^^^^^^^~04/01/2013~
-~08657~^~601~^0.^0^^~8~^~LC~^^^^^^^^^^~04/01/2013~
-~08662~^~208~^399.^0^^~9~^~MC~^^^^^^^^^^~01/01/2013~
-~08662~^~268~^1669.^0^^~9~^~MC~^^^^^^^^^^~01/01/2013~
-~08662~^~301~^26.^0^^~9~^~MC~^^^^^^^^^^~01/01/2013~
-~08662~^~304~^46.^0^^~9~^~MC~^^^^^^^^^^~01/01/2013~
-~08662~^~305~^139.^0^^~9~^~MC~^^^^^^^^^^~01/01/2013~
-~08662~^~306~^219.^0^^~9~^~MC~^^^^^^^^^^~01/01/2013~
-~08662~^~307~^410.^0^^~9~^~MC~^^^^^^^^^^~01/01/2013~
-~08662~^~318~^2419.^0^^~9~^~MC~^^~Y~^^^^^^^^~01/01/2013~
-~08662~^~324~^129.^0^^~9~^~MC~^^~Y~^^^^^^^^~01/01/2013~
-~08662~^~417~^323.^0^^~9~^~MC~^^~Y~^^^^^^^^~01/01/2013~
-~08662~^~431~^304.^0^^~4~^~NR~^^~Y~^^^^^^^^~01/01/2013~
-~08662~^~432~^19.^0^^~4~^~CAZN~^^^^^^^^^^~01/01/2013~
-~08662~^~435~^535.^0^^~4~^~NC~^^^^^^^^^^~01/01/2013~
-~08662~^~601~^0.^0^^~9~^~MC~^^^^^^^^^^~01/01/2013~
-~08665~^~208~^400.^0^^~9~^~MC~^^^^^^^^^^~04/01/2014~
-~08665~^~268~^1672.^0^^~9~^~MC~^^^^^^^^^^~04/01/2014~
-~08665~^~301~^36.^0^^~9~^~MC~^^^^^^^^^^~02/01/2013~
-~08665~^~304~^46.^0^^~9~^~MC~^^^^^^^^^^~02/01/2013~
-~08665~^~305~^145.^0^^~9~^~MC~^^^^^^^^^^~04/01/2014~
-~08665~^~306~^184.^0^^~9~^~MC~^^^^^^^^^^~02/01/2013~
-~08665~^~307~^464.^0^^~9~^~MC~^^^^^^^^^^~02/01/2013~
-~08665~^~318~^2500.^0^^~9~^~MC~^^~Y~^^^^^^^^~02/01/2013~
-~08665~^~324~^133.^0^^~9~^~MC~^^~Y~^^^^^^^^~02/01/2013~
-~08665~^~417~^667.^0^^~9~^~MC~^^~Y~^^^^^^^^~02/01/2013~
-~08665~^~601~^0.^0^^~9~^~MC~^^^^^^^^^^~02/01/2013~
-~08672~^~208~^392.^0^^~9~^~MC~^^^^^^^^^^~02/01/2015~
-~08672~^~262~^5.^0^^~9~^~MC~^^^^^^^^^^~02/01/2015~
-~08672~^~268~^1642.^0^^~9~^~MC~^^^^^^^^^^~02/01/2015~
-~08672~^~301~^267.^0^^~9~^~MC~^^~Y~^^^^^^^^~03/01/2013~
-~08672~^~304~^30.^0^^~9~^~MC~^^^^^^^^^^~02/01/2015~
-~08672~^~305~^85.^0^^~9~^~MC~^^^^^^^^^^~02/01/2015~
-~08672~^~306~^183.^0^^~9~^~MC~^^^^^^^^^^~03/01/2013~
-~08672~^~307~^368.^0^^~9~^~MC~^^^^^^^^^^~02/01/2015~
-~08672~^~318~^1333.^0^^~9~^~MC~^^~Y~^^^^^^^^~03/01/2013~
-~08672~^~324~^133.^0^^~9~^~MC~^^~Y~^^^^^^^^~03/01/2013~
-~08672~^~417~^533.^0^^~9~^~MC~^^~Y~^^^^^^^^~02/01/2015~
-~08672~^~431~^514.^0^^~4~^~NR~^^^^^^^^^^~03/01/2013~
-~08672~^~432~^19.^0^^~4~^~CAZN~^^~Y~^^^^^^^^~03/01/2013~
-~08672~^~435~^893.^0^^~4~^~NC~^^^^^^^^^^~03/01/2013~
-~08672~^~601~^0.^0^^~9~^~MC~^^^^^^^^^^~03/01/2013~
-~08673~^~208~^350.^0^^~9~^~MC~^^^^^^^^^^~03/01/2013~
-~08673~^~262~^0.^0^^~9~^~MC~^^^^^^^^^^~03/01/2013~
-~08673~^~268~^1464.^0^^~9~^~MC~^^^^^^^^^^~03/01/2013~
-~08673~^~301~^33.^0^^~9~^~MC~^^^^^^^^^^~03/01/2013~
-~08673~^~304~^73.^0^^~9~^~MC~^^^^^^^^^^~03/01/2013~
-~08673~^~305~^331.^0^^~9~^~MC~^^^^^^^^^^~03/01/2013~
-~08673~^~306~^327.^0^^~9~^~MC~^^^^^^^^^^~03/01/2013~
-~08673~^~307~^2.^0^^~9~^~MC~^^^^^^^^^^~03/01/2013~
-~08673~^~318~^0.^0^^~9~^~MC~^^^^^^^^^^~03/01/2013~
-~08673~^~324~^0.^0^^~9~^~MC~^^^^^^^^^^~03/01/2013~
-~08673~^~435~^848.^0^^~9~^~MC~^^~Y~^^^^^^^^~03/01/2013~
-~08673~^~601~^0.^0^^~9~^~MC~^^^^^^^^^^~03/01/2013~
-~08674~^~208~^396.^0^^~9~^~MC~^^^^^^^^^^~01/01/2015~
-~08674~^~262~^0.^0^^~9~^~MC~^^^^^^^^^^~03/01/2013~
-~08674~^~268~^1658.^0^^~9~^~MC~^^^^^^^^^^~01/01/2015~
-~08674~^~301~^23.^0^^~9~^~MC~^^^^^^^^^^~03/01/2013~
-~08674~^~304~^27.^0^^~9~^~MC~^^^^^^^^^^~01/01/2015~
-~08674~^~305~^133.^0^^~9~^~MC~^^^^^^^^^^~01/01/2015~
-~08674~^~306~^200.^0^^~9~^~MC~^^^^^^^^^^~01/01/2015~
-~08674~^~307~^515.^0^^~9~^~MC~^^^^^^^^^^~01/01/2015~
-~08674~^~318~^1667.^0^^~9~^~MC~^^~Y~^^^^^^^^~01/01/2015~
-~08674~^~324~^133.^0^^~9~^~MC~^^~Y~^^^^^^^^~01/01/2015~
-~08674~^~417~^667.^0^^~9~^~MC~^^~Y~^^^^^^^^~01/01/2015~
-~08674~^~431~^648.^0^^~4~^~NR~^^~Y~^^^^^^^^~03/01/2013~
-~08674~^~432~^19.^0^^~4~^~CAZN~^^^^^^^^^^~03/01/2013~
-~08674~^~435~^1121.^0^^~4~^~NC~^^^^^^^^^^~03/01/2013~
-~08674~^~601~^0.^0^^~9~^~MC~^^^^^^^^^^~03/01/2013~
-~08675~^~208~^379.^0^^~9~^~MC~^^^^^^^^^^~03/01/2013~
-~08675~^~262~^0.^0^^~9~^~MC~^^^^^^^^^^~03/01/2013~
-~08675~^~268~^1586.^0^^~9~^~MC~^^^^^^^^^^~03/01/2013~
-~08675~^~301~^33.^0^^~9~^~MC~^^~N~^^^^^^^^~03/01/2013~
-~08675~^~304~^61.^0^^~9~^~MC~^^^^^^^^^^~03/01/2013~
-~08675~^~305~^204.^0^^~9~^~MC~^^^^^^^^^^~03/01/2013~
-~08675~^~306~^240.^0^^~9~^~MC~^^^^^^^^^^~03/01/2013~
-~08675~^~307~^453.^0^^~9~^~MC~^^^^^^^^^^~03/01/2013~
-~08675~^~318~^1876.^0^^~9~^~MC~^^~Y~^^^^^^^^~03/01/2013~
-~08675~^~324~^144.^0^^~9~^~MC~^^~Y~^^^^^^^^~03/01/2013~
-~08675~^~417~^667.^0^^~8~^~LC~^^~Y~^^^^^^^^~03/01/2013~
-~08675~^~431~^648.^0^^~4~^~NR~^^~Y~^^^^^^^^~03/01/2013~
-~08675~^~432~^19.^0^^~4~^~CAZN~^^^^^^^^^^~03/01/2013~
-~08675~^~435~^1121.^0^^~4~^~NC~^^^^^^^^^^~03/01/2013~
-~08675~^~601~^0.^0^^~9~^~MC~^^^^^^^^^^~03/01/2013~
-~08676~^~208~^387.^0^^~9~^~MC~^^^^^^^^^^~01/01/2015~
-~08676~^~262~^0.^0^^~9~^~MC~^^^^^^^^^^~03/01/2013~
-~08676~^~268~^1620.^0^^~9~^~MC~^^^^^^^^^^~01/01/2015~
-~08676~^~301~^333.^0^^~9~^~MC~^^~Y~^^^^^^^^~01/01/2015~
-~08676~^~304~^92.^0^^~9~^~MC~^^^^^^^^^^~01/01/2015~
-~08676~^~305~^318.^0^^~9~^~MC~^^^^^^^^^^~01/01/2015~
-~08676~^~306~^241.^0^^~9~^~MC~^^^^^^^^^^~01/01/2015~
-~08676~^~307~^695.^0^^~9~^~MC~^^^^^^^^^^~01/01/2015~
-~08676~^~318~^1667.^0^^~9~^~MC~^^~Y~^^^^^^^^~03/01/2013~
-~08676~^~324~^133.^0^^~9~^~MC~^^~Y~^^^^^^^^~01/01/2015~
-~08676~^~417~^667.^0^^~9~^~MC~^^~Y~^^^^^^^^~01/01/2015~
-~08676~^~431~^648.^0^^~4~^~NR~^^~Y~^^^^^^^^~03/01/2013~
-~08676~^~432~^19.^0^^~4~^~CAZN~^^^^^^^^^^~03/01/2013~
-~08676~^~435~^1121.^0^^~4~^~NC~^^^^^^^^^^~03/01/2013~
-~08676~^~601~^0.^0^^~9~^~MC~^^^^^^^^^^~03/01/2013~
-~08680~^~208~^386.^0^^~4~^~NC~^^^^^^^^^^~02/01/2016~
-~08680~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2014~
-~08680~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2014~
-~08680~^~268~^1616.^0^^~4~^~NC~^^^^^^^^^^~02/01/2016~
-~08680~^~301~^258.^12^4.^~1~^~A~^^^1^217.^324.^8^248.^268.^~2, 3~^~04/01/2014~
-~08680~^~304~^90.^12^1.^~1~^~A~^^^1^85.^100.^6^87.^92.^~2, 3~^~04/01/2014~
-~08680~^~305~^305.^12^3.^~1~^~A~^^^1^283.^330.^9^298.^312.^~2, 3~^~04/01/2014~
-~08680~^~306~^361.^12^5.^~1~^~A~^^^1^256.^455.^10^350.^372.^~2, 3~^~04/01/2014~
-~08680~^~307~^505.^12^13.^~1~^~A~^^^1^360.^552.^7^471.^537.^~2, 3~^~04/01/2014~
-~08680~^~318~^2310.^0^^~1~^~AS~^^^^^^^^^^~04/01/2014~
-~08680~^~319~^692.^6^56.^~1~^~A~^^^1^505.^1063.^2^459.^925.^~2, 3~^~04/01/2014~
-~08680~^~320~^692.^0^^~1~^~AS~^^^^^^^^^^~04/01/2014~
-~08680~^~321~^2.^1^^~1~^~A~^^^^^^^^^^~04/01/2014~
-~08680~^~322~^0.^1^^~1~^~A~^^^^^^^^^~1~^~04/01/2014~
-~08680~^~324~^0.^0^^~4~^~FLA~^^^^^^^^^^~04/01/2014~
-~08680~^~334~^0.^1^^~1~^~A~^^^^^^^^^~1~^~04/01/2014~
-~08680~^~337~^0.^1^^~1~^~A~^^^^^^^^^~1~^~04/01/2014~
-~08680~^~338~^57.^1^^~1~^~A~^^^^^^^^^^~04/01/2014~
-~08680~^~417~^148.^6^10.^~1~^~A~^^^1^126.^215.^2^103.^192.^~2, 3~^~04/01/2014~
-~08680~^~431~^132.^0^^~4~^~NR~^^~Y~^^^^^^^^~04/01/2014~
-~08680~^~432~^16.^0^^~4~^~NC~^^^^^^^^^^~04/01/2014~
-~08680~^~435~^240.^0^^~4~^~NC~^^^^^^^^^^~04/01/2014~
-~08680~^~601~^0.^0^^~4~^~BFZN~^~08130~^^^^^^^^^~04/01/2014~
-~08685~^~208~^376.^0^^~9~^~MC~^^^^^^^^^^~02/01/2014~
-~08685~^~268~^1575.^0^^~9~^~MC~^^^^^^^^^^~02/01/2014~
-~08685~^~301~^0.^0^^~9~^~MC~^^~N~^^^^^^^^~02/01/2014~
-~08685~^~304~^77.^0^^~9~^~MC~^^^^^^^^^^~02/01/2014~
-~08685~^~305~^322.^0^^~9~^~MC~^^^^^^^^^^~02/01/2014~
-~08685~^~306~^568.^0^^~9~^~MC~^^~Y~^^^^^^^^~02/01/2014~
-~08685~^~307~^554.^0^^~9~^~MC~^^^^^^^^^^~02/01/2014~
-~08685~^~318~^3964.^0^^~9~^~MC~^^~Y~^^^^^^^^~02/01/2014~
-~08685~^~417~^1427.^0^^~9~^~MC~^^~Y~^^^^^^^^~02/01/2014~
-~08685~^~601~^0.^0^^~9~^~MC~^^~N~^^^^^^^^~02/01/2014~
-~08686~^~208~^361.^0^^~9~^~MC~^^^^^^^^^^~02/01/2014~
-~08686~^~268~^1509.^0^^~9~^~MC~^^^^^^^^^^~02/01/2014~
-~08686~^~301~^268.^0^^~9~^~MC~^^~Y~^^^^^^^^~02/01/2014~
-~08686~^~304~^116.^0^^~9~^~MC~^^^^^^^^^^~02/01/2014~
-~08686~^~305~^392.^0^^~9~^~MC~^^^^^^^^^^~02/01/2014~
-~08686~^~306~^330.^0^^~9~^~MC~^^^^^^^^^^~02/01/2014~
-~08686~^~307~^642.^0^^~9~^~MC~^^^^^^^^^^~02/01/2014~
-~08686~^~318~^2429.^0^^~9~^~MC~^^~Y~^^^^^^^^~02/01/2014~
-~08686~^~417~^235.^0^^~9~^~MC~^^~Y~^^^^^^^^~02/01/2014~
-~08686~^~601~^1.^0^^~9~^~MC~^^^^^^^^^^~02/01/2014~
-~08687~^~208~^361.^0^^~9~^~MC~^^^^^^^^^^~02/01/2014~
-~08687~^~268~^1512.^0^^~9~^~MC~^^^^^^^^^^~02/01/2014~
-~08687~^~301~^243.^0^^~9~^~MC~^^~Y~^^^^^^^^~02/01/2014~
-~08687~^~304~^117.^0^^~9~^~MC~^^^^^^^^^^~02/01/2014~
-~08687~^~305~^396.^0^^~9~^~MC~^^^^^^^^^^~02/01/2014~
-~08687~^~306~^327.^0^^~9~^~MC~^^^^^^^^^^~02/01/2014~
-~08687~^~307~^619.^0^^~9~^~MC~^^^^^^^^^^~02/01/2014~
-~08687~^~318~^2544.^0^^~9~^~MC~^^~Y~^^^^^^^^~02/01/2014~
-~08687~^~417~^204.^0^^~9~^~MC~^^~Y~^^^^^^^^~02/01/2014~
-~08687~^~601~^1.^0^^~9~^~MC~^^^^^^^^^^~02/01/2014~
-~08688~^~208~^366.^0^^~9~^~MC~^^^^^^^^^^~02/01/2014~
-~08688~^~268~^1531.^0^^~9~^~MC~^^^^^^^^^^~02/01/2014~
-~08688~^~301~^278.^0^^~9~^~MC~^^~Y~^^^^^^^^~02/01/2014~
-~08688~^~304~^91.^0^^~9~^~MC~^^^^^^^^^^~02/01/2014~
-~08688~^~305~^306.^0^^~9~^~MC~^^^^^^^^^^~02/01/2014~
-~08688~^~306~^256.^0^^~9~^~MC~^^^^^^^^^^~02/01/2014~
-~08688~^~307~^473.^0^^~9~^~MC~^^^^^^^^^^~02/01/2014~
-~08688~^~318~^3112.^0^^~9~^~MC~^^~Y~^^^^^^^^~02/01/2014~
-~08688~^~417~^249.^0^^~9~^~MC~^^~Y~^^^^^^^^~02/01/2014~
-~08688~^~601~^0.^0^^~9~^~MC~^^~N~^^^^^^^^~02/01/2014~
-~08689~^~208~^386.^0^^~9~^~MC~^^^^^^^^^^~02/01/2014~
-~08689~^~268~^1617.^0^^~9~^~MC~^^^^^^^^^^~02/01/2014~
-~08689~^~301~^64.^0^^~9~^~MC~^^^^^^^^^^~02/01/2014~
-~08689~^~304~^98.^0^^~9~^~MC~^^^^^^^^^^~02/01/2014~
-~08689~^~305~^287.^0^^~9~^~MC~^^^^^^^^^^~02/01/2014~
-~08689~^~306~^317.^0^^~9~^~MC~^^^^^^^^^^~02/01/2014~
-~08689~^~307~^337.^0^^~9~^~MC~^^^^^^^^^^~02/01/2014~
-~08689~^~318~^20.^0^^~9~^~MC~^^^^^^^^^^~02/01/2014~
-~08689~^~417~^34.^0^^~9~^~MC~^^^^^^^^^^~02/01/2014~
-~08689~^~432~^34.^0^^~9~^~MC~^^^^^^^^^^~02/01/2014~
-~08689~^~601~^1.^0^^~9~^~MC~^^^^^^^^^^~02/01/2014~
-~08690~^~208~^390.^0^^~9~^~MC~^^^^^^^^^^~02/01/2014~
-~08690~^~268~^1630.^0^^~9~^~MC~^^^^^^^^^^~02/01/2014~
-~08690~^~301~^57.^0^^~9~^~MC~^^^^^^^^^^~02/01/2014~
-~08690~^~304~^86.^0^^~9~^~MC~^^^^^^^^^^~02/01/2014~
-~08690~^~305~^239.^0^^~9~^~MC~^^^^^^^^^^~02/01/2014~
-~08690~^~306~^344.^0^^~9~^~MC~^^^^^^^^^^~02/01/2014~
-~08690~^~307~^356.^0^^~9~^~MC~^^^^^^^^^^~02/01/2014~
-~08690~^~318~^20.^0^^~9~^~MC~^^^^^^^^^^~02/01/2014~
-~08690~^~417~^20.^0^^~9~^~MC~^^^^^^^^^^~02/01/2014~
-~08690~^~432~^20.^0^^~9~^~MC~^^^^^^^^^^~02/01/2014~
-~08690~^~601~^0.^0^^~9~^~MC~^^^^^^^^^^~02/01/2014~
-~08691~^~208~^353.^0^^~9~^~MC~^^^^^^^^^^~02/01/2014~
-~08691~^~268~^1476.^0^^~9~^~MC~^^^^^^^^^^~02/01/2014~
-~08691~^~301~^124.^0^^~9~^~MC~^^^^^^^^^^~02/01/2014~
-~08691~^~304~^113.^0^^~9~^~MC~^^^^^^^^^^~02/01/2014~
-~08691~^~305~^358.^0^^~9~^~MC~^^^^^^^^^^~02/01/2014~
-~08691~^~306~^445.^0^^~9~^~MC~^^^^^^^^^^~02/01/2014~
-~08691~^~307~^354.^0^^~9~^~MC~^^^^^^^^^^~02/01/2014~
-~08691~^~318~^19.^0^^~9~^~MC~^^^^^^^^^^~02/01/2014~
-~08691~^~417~^39.^0^^~9~^~MC~^^^^^^^^^^~02/01/2014~
-~08691~^~432~^39.^0^^~9~^~MC~^^^^^^^^^^~02/01/2014~
-~08691~^~601~^1.^0^^~9~^~MC~^^^^^^^^^^~02/01/2014~
-~08692~^~208~^387.^0^^~9~^~MC~^^^^^^^^^^~02/01/2014~
-~08692~^~268~^1617.^0^^~9~^~MC~^^^^^^^^^^~02/01/2014~
-~08692~^~301~^105.^0^^~9~^~MC~^^^^^^^^^^~02/01/2014~
-~08692~^~304~^115.^0^^~9~^~MC~^^^^^^^^^^~02/01/2014~
-~08692~^~305~^302.^0^^~9~^~MC~^^^^^^^^^^~02/01/2014~
-~08692~^~306~^560.^0^^~9~^~MC~^^^^^^^^^^~02/01/2014~
-~08692~^~307~^201.^0^^~9~^~MC~^^^^^^^^^^~02/01/2014~
-~08692~^~318~^108.^0^^~9~^~MC~^^^^^^^^^^~02/01/2014~
-~08692~^~417~^27.^0^^~9~^~MC~^^^^^^^^^^~02/01/2014~
-~08692~^~432~^27.^0^^~9~^~MC~^^^^^^^^^^~02/01/2014~
-~08692~^~601~^0.^0^^~9~^~MC~^^^^^^^^^^~02/01/2014~
-~08693~^~208~^394.^0^^~9~^~MC~^^^^^^^^^^~02/01/2014~
-~08693~^~268~^1649.^0^^~9~^~MC~^^^^^^^^^^~02/01/2014~
-~08693~^~301~^132.^0^^~9~^~MC~^^^^^^^^^^~02/01/2014~
-~08693~^~304~^103.^0^^~9~^~MC~^^^^^^^^^^~02/01/2014~
-~08693~^~305~^333.^0^^~9~^~MC~^^^^^^^^^^~02/01/2014~
-~08693~^~306~^501.^0^^~9~^~MC~^^^^^^^^^^~02/01/2014~
-~08693~^~307~^181.^0^^~9~^~MC~^^^^^^^^^^~02/01/2014~
-~08693~^~318~^45.^0^^~9~^~MC~^^^^^^^^^^~02/01/2014~
-~08693~^~417~^22.^0^^~9~^~MC~^^^^^^^^^^~02/01/2014~
-~08693~^~432~^22.^0^^~9~^~MC~^^^^^^^^^^~02/01/2014~
-~08693~^~601~^1.^0^^~9~^~MC~^^^^^^^^^^~02/01/2014~
-~08694~^~208~^361.^0^^~9~^~MC~^^^^^^^^^^~02/01/2014~
-~08694~^~268~^1510.^0^^~9~^~MC~^^^^^^^^^^~02/01/2014~
-~08694~^~301~^245.^0^^~9~^~MC~^^~Y~^^^^^^^^~02/01/2014~
-~08694~^~304~^119.^0^^~9~^~MC~^^^^^^^^^^~02/01/2014~
-~08694~^~305~^402.^0^^~9~^~MC~^^^^^^^^^^~02/01/2014~
-~08694~^~306~^334.^0^^~9~^~MC~^^^^^^^^^^~02/01/2014~
-~08694~^~307~^618.^0^^~9~^~MC~^^^^^^^^^^~02/01/2014~
-~08694~^~318~^2558.^0^^~9~^~MC~^^~Y~^^^^^^^^~02/01/2014~
-~08694~^~417~^205.^0^^~9~^~MC~^^~Y~^^^^^^^^~02/01/2014~
-~08694~^~601~^1.^0^^~9~^~MC~^^^^^^^^^^~02/01/2014~
-~08709~^~208~^373.^0^^~9~^~MC~^^^^^^^^^^~01/01/2015~
-~08709~^~262~^0.^0^^~9~^~MC~^^^^^^^^^^~01/01/2015~
-~08709~^~268~^1560.^0^^~9~^~MC~^^^^^^^^^^~01/01/2015~
-~08709~^~301~^36.^0^^~9~^~MC~^^^^^^^^^^~01/01/2015~
-~08709~^~304~^73.^0^^~9~^~MC~^^^^^^^^^^~01/01/2015~
-~08709~^~305~^273.^0^^~9~^~MC~^^^^^^^^^^~01/01/2015~
-~08709~^~306~^336.^0^^~9~^~MC~^^^^^^^^^^~01/01/2015~
-~08709~^~307~^14.^0^^~9~^~MC~^^^^^^^^^^~01/01/2015~
-~08709~^~318~^0.^0^^~9~^~MC~^^^^^^^^^^~01/01/2015~
-~08709~^~324~^0.^0^^~9~^~MC~^^^^^^^^^^~01/01/2015~
-~08709~^~417~^30.^0^^~9~^~MC~^^^^^^^^^^~01/01/2015~
-~08709~^~432~^30.^0^^~9~^~MC~^^^^^^^^^^~01/01/2015~
-~08709~^~601~^0.^0^^~9~^~MC~^^^^^^^^^^~01/01/2015~
-~09001~^~208~^32.^0^^~4~^~NC~^^^^^^^^^^~08/01/1982~
-~09001~^~268~^134.^0^^~4~^^^^^^^^^^^
-~09001~^~301~^12.^0^^~1~^^^^^^^^^^^~08/01/1982~
-~09001~^~304~^18.^1^^~1~^^^^^^^^^^^~08/01/1982~
-~09001~^~305~^11.^0^^~1~^^^^^^^^^^^~08/01/1982~
-~09001~^~306~^146.^2^^~1~^^^^^^^^^^^~08/01/1982~
-~09001~^~307~^7.^3^3.^~1~^^^^^^^^^^^~08/01/1982~
-~09001~^~318~^767.^3^216.^~1~^^^^^^^^^^^~08/01/1982~
-~09001~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2002~
-~09001~^~320~^38.^3^10.^~1~^^^^^^^^^^^~06/01/2002~
-~09001~^~417~^14.^0^^~4~^^^^^^^^^^^~04/01/1985~
-~09001~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~
-~09001~^~432~^14.^0^^~4~^^^^^^^^^^^~04/01/1985~
-~09001~^~435~^14.^0^^~4~^~NC~^^^^^^^^^^~01/01/2001~
-~09001~^~601~^0.^0^^~7~^~Z~^^^^^^^^^^~08/01/1982~
-~09002~^~208~^23.^0^^~4~^~NC~^^^^^^^^^^~04/01/1997~
-~09002~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~
-~09002~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~
-~09002~^~268~^96.^0^^~4~^^^^^^^^^^^
-~09002~^~301~^10.^0^^~1~^^^^^^^^^^^~08/01/1982~
-~09002~^~304~^12.^0^^~1~^^^^^^^^^^^~08/01/1982~
-~09002~^~305~^9.^0^^~1~^^^^^^^^^^^~08/01/1982~
-~09002~^~306~^97.^0^^~1~^^^^^^^^^^^~08/01/1982~
-~09002~^~307~^3.^0^^~1~^^^^^^^^^^^~08/01/1982~
-~09002~^~318~^509.^0^^~1~^^^^^^^^^^^~08/01/1982~
-~09002~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2002~
-~09002~^~320~^25.^0^^~1~^^^^^^^^^^^~02/01/2003~
-~09002~^~321~^305.^0^^~4~^~BNA~^~09316~^^^^^^^^^~02/01/2003~
-~09002~^~322~^0.^0^^~4~^~BNA~^~09316~^^^^^^^^^~02/01/2003~
-~09002~^~334~^0.^0^^~4~^~BNA~^~09316~^^^^^^^^^~02/01/2003~
-~09002~^~337~^0.^0^^~4~^~BFSN~^~09316~^^^^^^^^^~02/01/2003~
-~09002~^~338~^17.^0^^~4~^~BFSN~^~09316~^^^^^^^^^~02/01/2003~
-~09002~^~417~^14.^0^^~4~^^^^^^^^^^^~04/01/1985~
-~09002~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~
-~09002~^~432~^14.^0^^~4~^^^^^^^^^^^~02/01/2003~
-~09002~^~435~^14.^0^^~4~^~NC~^^^^^^^^^^~02/01/2003~
-~09002~^~601~^0.^0^^~7~^~Z~^^^^^^^^^^~08/01/1982~
-~09003~^~208~^52.^0^^~4~^~NC~^^^^^^^^^^~05/01/2007~
-~09003~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~
-~09003~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~
-~09003~^~268~^218.^0^^~4~^~NC~^^^^^^^^^^~05/01/2007~
-~09003~^~301~^6.^26^0.^~1~^~A~^^^4^4.^9.^5^5.^6.^~2~^~06/01/2003~
-~09003~^~304~^5.^26^0.^~1~^~A~^^^4^4.^6.^4^4.^5.^~2~^~06/01/2003~
-~09003~^~305~^11.^23^0.^~1~^~A~^^^3^10.^13.^3^10.^12.^~2~^~06/01/2003~
-~09003~^~306~^107.^26^2.^~1~^~A~^^^4^88.^136.^6^101.^112.^~2~^~06/01/2003~
-~09003~^~307~^1.^6^0.^~1~^~A~^^^2^1.^2.^1^0.^2.^~2~^~06/01/2003~
-~09003~^~318~^54.^0^^~1~^~AS~^^^^^^^^^^~06/01/2003~
-~09003~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2002~
-~09003~^~320~^3.^0^^~1~^~AS~^^^^^^^^^^~06/01/2003~
-~09003~^~321~^27.^14^1.^~1~^~A~^^^2^11.^81.^1^15.^39.^~1, 2~^~06/01/2003~
-~09003~^~322~^0.^14^0.^~1~^~A~^^^2^0.^0.^^^^~1, 2, 3~^~04/01/2003~
-~09003~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~
-~09003~^~334~^11.^14^0.^~1~^~A~^^^2^0.^16.^2^6.^15.^~1, 2, 3~^~06/01/2003~
-~09003~^~337~^0.^14^0.^~1~^~A~^^^2^0.^0.^^^^~1, 2, 3~^~04/01/2003~
-~09003~^~338~^29.^14^1.^~1~^~A~^^^2^11.^73.^4^26.^32.^~1, 2, 3~^~06/01/2003~
-~09003~^~417~^3.^23^0.^~1~^^^^^^^^^^^~04/01/2003~
-~09003~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~
-~09003~^~432~^3.^23^0.^~1~^^^^^^^^^^^~05/01/2007~
-~09003~^~435~^3.^0^^~4~^~NC~^^^^^^^^^^~02/01/2008~
-~09003~^~601~^0.^0^^~7~^~Z~^^^^^^^^^^~08/01/1982~
-~09003~^~636~^12.^0^^~1~^^^^^^^^^^^~08/01/1982~
-~09004~^~208~^48.^0^^~4~^~NC~^^^^^^^^^^~05/01/2007~
-~09004~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~09/01/2002~
-~09004~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~09/01/2002~
-~09004~^~268~^200.^0^^~4~^~NC~^^^^^^^^^^~05/01/2007~
-~09004~^~301~^5.^4^0.^~1~^~A~^^^1^4.^9.^1^0.^10.^~2, 3~^~09/01/2002~
-~09004~^~304~^4.^4^0.^~1~^~A~^^^1^4.^6.^1^2.^6.^~2, 3~^~09/01/2002~
-~09004~^~305~^11.^4^0.^~1~^~A~^^^1^10.^13.^1^1.^21.^~2, 3~^~09/01/2002~
-~09004~^~306~^90.^4^7.^~1~^~A~^^^1^80.^102.^1^9.^171.^~2, 3~^~09/01/2002~
-~09004~^~307~^0.^85^0.^~1~^^^^^^^^^^^~08/01/1982~
-~09004~^~318~^38.^4^1.^~1~^~A~^^^1^28.^42.^1^27.^49.^~2, 3~^~09/01/2002~
-~09004~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2002~
-~09004~^~320~^2.^4^0.^~1~^~A~^^^1^1.^2.^1^1.^2.^~2, 3~^~09/01/2002~
-~09004~^~321~^17.^4^0.^~1~^~A~^^^1^11.^18.^1^5.^28.^~2, 3~^~09/01/2002~
-~09004~^~322~^0.^4^0.^~1~^~A~^^^1^0.^0.^^^^~1, 2, 3~^~09/01/2002~
-~09004~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~
-~09004~^~334~^13.^4^0.^~1~^~A~^^^1^9.^14.^2^9.^15.^~2, 3~^~09/01/2002~
-~09004~^~337~^0.^4^0.^~1~^~A~^^^1^0.^0.^^^^~1, 2, 3~^~09/01/2002~
-~09004~^~338~^18.^4^0.^~1~^~A~^^^1^14.^19.^1^13.^21.^~2, 3~^~09/01/2002~
-~09004~^~417~^0.^6^0.^~1~^^^^^^^^^^^~08/01/1982~
-~09004~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~
-~09004~^~432~^0.^6^0.^~1~^^^^^^^^^^^~05/01/2007~
-~09004~^~435~^0.^0^^~4~^~NC~^^^^^^^^^^~05/01/2007~
-~09004~^~601~^0.^0^^~7~^~Z~^^^^^^^^^^~08/01/1982~
-~09005~^~208~^53.^0^^~4~^~NC~^^^^^^^^^^~08/01/1982~
-~09005~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~09/01/2002~
-~09005~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~09/01/2002~
-~09005~^~268~^222.^0^^~4~^^^^^^^^^^^~12/01/2006~
-~09005~^~301~^5.^6^0.^~1~^^^^^^^^^^^~08/01/1982~
-~09005~^~304~^3.^6^0.^~1~^^^^^^^^^^^~08/01/1982~
-~09005~^~305~^8.^6^0.^~1~^^^^^^^^^^^~08/01/1982~
-~09005~^~306~^88.^6^5.^~1~^^^^^^^^^^^~08/01/1982~
-~09005~^~307~^1.^6^0.^~1~^^^^^^^^^^^~08/01/1982~
-~09005~^~318~^44.^6^9.^~1~^^^^^^^^^^^~09/01/2002~
-~09005~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2002~
-~09005~^~320~^2.^6^0.^~1~^^^^^^^^^^^~12/01/2006~
-~09005~^~321~^19.^0^^~4~^~BNA~^~09004~^^^^^^^^^~11/01/2002~
-~09005~^~322~^0.^0^^~4~^~BNA~^~09004~^^^^^^^^^~11/01/2002~
-~09005~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~
-~09005~^~334~^14.^0^^~4~^~BNA~^~09004~^^^^^^^^^~11/01/2002~
-~09005~^~337~^0.^0^^~4~^~BFSN~^~09004~^^^^^^^^^~11/01/2002~
-~09005~^~338~^19.^0^^~4~^~BFSN~^~09004~^^^^^^^^^~09/01/2002~
-~09005~^~417~^1.^6^0.^~1~^^^^^^^^^^^~08/01/1982~
-~09005~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~
-~09005~^~432~^1.^6^0.^~1~^^^^^^^^^^^~12/01/2006~
-~09005~^~435~^1.^0^^~4~^~NC~^^^^^^^^^^~12/01/2006~
-~09005~^~601~^0.^0^^~7~^~Z~^^^^^^^^^^~08/01/1982~
-~09006~^~208~^56.^0^^~4~^~NC~^^^^^^^^^^~08/01/1982~
-~09006~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~09/01/2002~
-~09006~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~09/01/2002~
-~09006~^~268~^234.^0^^~4~^^^^^^^^^^^~12/01/2006~
-~09006~^~301~^5.^6^0.^~1~^^^^^^^^^^^~08/01/1982~
-~09006~^~304~^3.^6^0.^~1~^^^^^^^^^^^~08/01/1982~
-~09006~^~305~^8.^6^0.^~1~^^^^^^^^^^^~08/01/1982~
-~09006~^~306~^93.^6^2.^~1~^^^^^^^^^^^~08/01/1982~
-~09006~^~307~^1.^6^0.^~1~^^^^^^^^^^^~08/01/1982~
-~09006~^~318~^40.^6^10.^~1~^^^^^^^^^^^~08/01/1982~
-~09006~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2002~
-~09006~^~320~^2.^6^0.^~1~^^^^^^^^^^^~12/01/2006~
-~09006~^~321~^17.^0^^~4~^~BNA~^~09004~^^^^^^^^^~11/01/2002~
-~09006~^~322~^0.^0^^~4~^~BNA~^~09004~^^^^^^^^^~11/01/2002~
-~09006~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~
-~09006~^~334~^13.^0^^~4~^~BNA~^~09004~^^^^^^^^^~11/01/2002~
-~09006~^~337~^0.^0^^~4~^~BFSN~^~09004~^^^^^^^^^~11/01/2002~
-~09006~^~338~^21.^0^^~4~^~BFSN~^~09004~^^^^^^^^^~11/01/2002~
-~09006~^~417~^1.^6^0.^~1~^^^^^^^^^^^~08/01/1982~
-~09006~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~
-~09006~^~432~^1.^6^0.^~1~^^^^^^^^^^^~12/01/2006~
-~09006~^~435~^1.^0^^~4~^~NC~^^^^^^^^^^~12/01/2006~
-~09006~^~601~^0.^0^^~7~^~Z~^^^^^^^^^^~08/01/1982~
-~09008~^~208~^67.^0^^~4~^~NC~^^^^^^^^^^~08/01/1982~
-~09008~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2003~
-~09008~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2003~
-~09008~^~268~^280.^0^^~4~^^^^^^^^^^^~01/01/2007~
-~09008~^~301~^4.^6^0.^~1~^^^^^^^^^^^~08/01/1982~
-~09008~^~304~^3.^6^0.^~1~^^^^^^^^^^^~08/01/1982~
-~09008~^~305~^6.^6^0.^~1~^^^^^^^^^^^~08/01/1982~
-~09008~^~306~^70.^6^2.^~1~^^^^^^^^^^^~08/01/1982~
-~09008~^~307~^3.^6^0.^~1~^^^^^^^^^^^~08/01/1982~
-~09008~^~318~^56.^6^6.^~1~^^^^^^^^^^^~08/01/1982~
-~09008~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2002~
-~09008~^~320~^3.^6^0.^~1~^^^^^^^^^^^~01/01/2007~
-~09008~^~321~^24.^0^^~4~^~BNA~^~09004~^^^^^^^^^~01/01/2003~
-~09008~^~322~^0.^0^^~4~^~BNA~^~09004~^^^^^^^^^~01/01/2003~
-~09008~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~
-~09008~^~334~^18.^0^^~4~^~BNA~^~09004~^^^^^^^^^~01/01/2003~
-~09008~^~337~^0.^0^^~4~^~BFZN~^~09004~^^^^^^^^^~01/01/2003~
-~09008~^~338~^18.^0^^~4~^~BFZN~^~09004~^^^^^^^^^~01/01/2003~
-~09008~^~417~^0.^6^0.^~1~^^^^^^^^^^^~08/01/1982~
-~09008~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~
-~09008~^~432~^0.^6^0.^~1~^^^^^^^^^^^~01/01/2007~
-~09008~^~435~^0.^0^^~4~^~NC~^^^^^^^^^^~01/01/2007~
-~09008~^~601~^0.^0^^~7~^~Z~^^^^^^^^^^~08/01/1982~
-~09009~^~208~^346.^0^^~4~^~NC~^^^^^^^^^^~08/01/1982~
-~09009~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~12/01/2002~
-~09009~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~12/01/2002~
-~09009~^~268~^1448.^0^^~4~^^^^^^^^^^^~01/01/2007~
-~09009~^~301~^19.^0^^~1~^^^^^^^^^^^~08/01/1982~
-~09009~^~304~^22.^0^^~1~^^^^^^^^^^^~08/01/1982~
-~09009~^~305~^55.^0^^~1~^^^^^^^^^^^~08/01/1982~
-~09009~^~306~^640.^0^^~1~^^^^^^^^^^^~08/01/1982~
-~09009~^~307~^124.^0^^~1~^^^^^^^^^^^~08/01/1982~
-~09009~^~318~^81.^2^^~1~^^^^^^^^^^^~08/01/1982~
-~09009~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2002~
-~09009~^~320~^4.^2^^~1~^^^^^^^^^^^~01/01/2007~
-~09009~^~321~^35.^0^^~4~^~BNA~^~09004~^^^^^^^^^~12/01/2002~
-~09009~^~322~^0.^0^^~4~^~BNA~^~09004~^^^^^^^^^~12/01/2002~
-~09009~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~
-~09009~^~334~^27.^0^^~4~^~BNA~^~09004~^^^^^^^^^~12/01/2002~
-~09009~^~337~^0.^0^^~4~^~BFSN~^~09011~^^^^^^^^^~12/01/2002~
-~09009~^~338~^25.^0^^~4~^~BFSN~^~09011~^^^^^^^^^~12/01/2002~
-~09009~^~417~^1.^2^^~1~^^^^^^^^^^^~08/01/1982~
-~09009~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~
-~09009~^~432~^1.^2^^~1~^^^^^^^^^^^~01/01/2007~
-~09009~^~435~^1.^0^^~4~^~NC~^^^^^^^^^^~01/01/2007~
-~09009~^~601~^0.^0^^~7~^~Z~^^^^^^^^^^~08/01/1982~
-~09010~^~208~^74.^0^^~4~^~NC~^^^^^^^^^^~08/01/1982~
-~09010~^~268~^310.^0^^~4~^^^^^^^^^^^
-~09010~^~301~^4.^0^^~1~^^^^^^^^^^^~08/01/1982~
-~09010~^~304~^5.^0^^~1~^^^^^^^^^^^~08/01/1982~
-~09010~^~305~^12.^0^^~1~^^^^^^^^^^^~08/01/1982~
-~09010~^~306~^136.^0^^~1~^^^^^^^^^^^~08/01/1982~
-~09010~^~307~^26.^0^^~1~^^^^^^^^^^^~08/01/1982~
-~09010~^~318~^19.^2^^~1~^^^^^^^^^^^~08/01/1982~
-~09010~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2002~
-~09010~^~320~^1.^2^^~1~^^^^^^^^^^^~06/01/2002~
-~09010~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~
-~09010~^~417~^0.^3^0.^~1~^^^^^^^^^^^~08/01/1982~
-~09010~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~
-~09010~^~432~^0.^3^0.^~1~^^^^^^^^^^^~08/01/1982~
-~09010~^~435~^0.^0^^~4~^~NC~^^^^^^^^^^~01/01/2001~
-~09010~^~601~^0.^0^^~7~^~Z~^^^^^^^^^^~08/01/1982~
-~09011~^~208~^243.^0^^~4~^~NC~^^^^^^^^^^~08/01/1982~
-~09011~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~11/01/2002~
-~09011~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~11/01/2002~
-~09011~^~268~^1017.^0^^~4~^^^^^^^^^^^~01/01/2007~
-~09011~^~301~^14.^37^0.^~1~^^^^^^^^^^^~08/01/1982~
-~09011~^~304~^16.^37^0.^~1~^^^^^^^^^^^~08/01/1982~
-~09011~^~305~^38.^37^2.^~1~^^^^^^^^^^^~08/01/1982~
-~09011~^~306~^450.^29^17.^~1~^^^^^^^^^^^~08/01/1982~
-~09011~^~307~^87.^29^12.^~1~^^^^^^^^^^^~08/01/1982~
-~09011~^~318~^0.^16^0.^~1~^^^^^^^^^^^~04/01/2003~
-~09011~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2002~
-~09011~^~320~^0.^0^^~1~^~AS~^^^^^^^^^^~01/01/2007~
-~09011~^~321~^0.^0^^~7~^~Z~^^^^^^^^^^~11/01/2002~
-~09011~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2003~
-~09011~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~
-~09011~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~11/01/2002~
-~09011~^~337~^0.^0^^~4~^~BFSN~^~09004~^^^^^^^^^~04/01/2003~
-~09011~^~338~^18.^0^^~4~^~BFSN~^~09004~^^^^^^^^^~04/01/2003~
-~09011~^~417~^0.^0^^~4~^^^^^^^^^^^~08/01/1982~
-~09011~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~
-~09011~^~432~^0.^0^^~4~^^^^^^^^^^^~01/01/2007~
-~09011~^~435~^0.^0^^~4~^~NC~^^^^^^^^^^~01/01/2007~
-~09011~^~601~^0.^0^^~7~^~Z~^^^^^^^^^^~08/01/1982~
-~09012~^~208~^57.^0^^~4~^~NC~^^^^^^^^^^~08/01/1982~
-~09012~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~11/01/2002~
-~09012~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~11/01/2002~
-~09012~^~268~^238.^0^^~4~^^^^^^^^^^^~01/01/2007~
-~09012~^~301~^3.^0^^~1~^^^^^^^^^^^~08/01/1982~
-~09012~^~304~^4.^0^^~1~^^^^^^^^^^^~08/01/1982~
-~09012~^~305~^9.^0^^~1~^^^^^^^^^^^~08/01/1982~
-~09012~^~306~^105.^0^^~1~^^^^^^^^^^^~08/01/1982~
-~09012~^~307~^20.^0^^~1~^^^^^^^^^^^~08/01/1982~
-~09012~^~318~^17.^3^6.^~1~^^^^^^^^^^^~08/01/1982~
-~09012~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2002~
-~09012~^~320~^1.^3^0.^~1~^^^^^^^^^^^~01/01/2007~
-~09012~^~321~^7.^0^^~4~^~BNA~^~09004~^^^^^^^^^~11/01/2002~
-~09012~^~322~^0.^0^^~4~^~BNA~^~09004~^^^^^^^^^~11/01/2002~
-~09012~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~
-~09012~^~334~^6.^0^^~4~^~BNA~^~09004~^^^^^^^^^~11/01/2002~
-~09012~^~337~^0.^0^^~4~^~BFSN~^~09011~^^^^^^^^^~11/01/2002~
-~09012~^~338~^4.^0^^~4~^~BFSN~^~09011~^^^^^^^^^~11/01/2002~
-~09012~^~417~^0.^1^^~1~^^^^^^^^^^^~08/01/1982~
-~09012~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~
-~09012~^~432~^0.^1^^~1~^^^^^^^^^^^~01/01/2007~
-~09012~^~435~^0.^0^^~4~^~NC~^^^^^^^^^^~01/01/2007~
-~09012~^~601~^0.^0^^~7~^~Z~^^^^^^^^^^~08/01/1982~
-~09013~^~208~^83.^0^^~4~^~NC~^^^^^^^^^^~08/01/1982~
-~09013~^~268~^347.^0^^~4~^^^^^^^^^^^
-~09013~^~301~^3.^0^^~1~^^^^^^^^^^^~08/01/1982~
-~09013~^~304~^3.^0^^~1~^^^^^^^^^^^~08/01/1982~
-~09013~^~305~^8.^0^^~1~^^^^^^^^^^^~08/01/1982~
-~09013~^~306~^98.^0^^~1~^^^^^^^^^^^~08/01/1982~
-~09013~^~307~^19.^0^^~1~^^^^^^^^^^^~08/01/1982~
-~09013~^~318~^16.^0^^~1~^^^^^^^^^^^~08/01/1982~
-~09013~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2002~
-~09013~^~320~^1.^0^^~1~^^^^^^^^^^^~06/01/2002~
-~09013~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~
-~09013~^~417~^0.^0^^~4~^^^^^^^^^^^~08/01/1982~
-~09013~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~
-~09013~^~432~^0.^0^^~4~^^^^^^^^^^^~08/01/1982~
-~09013~^~435~^0.^0^^~4~^~NC~^^^^^^^^^^~01/01/2001~
-~09013~^~601~^0.^0^^~7~^~Z~^^^^^^^^^^~08/01/1982~
-~09014~^~208~^48.^0^^~4~^~NC~^^^^^^^^^^~08/01/1982~
-~09014~^~268~^201.^0^^~4~^^^^^^^^^^^
-~09014~^~301~^4.^6^0.^~1~^^^^^^^^^^^~08/01/1982~
-~09014~^~304~^3.^6^0.^~1~^^^^^^^^^^^~08/01/1982~
-~09014~^~305~^8.^6^0.^~1~^^^^^^^^^^^~08/01/1982~
-~09014~^~306~^77.^6^2.^~1~^^^^^^^^^^^~08/01/1982~
-~09014~^~307~^3.^6^0.^~1~^^^^^^^^^^^~08/01/1982~
-~09014~^~318~^34.^6^6.^~1~^^^^^^^^^^^~08/01/1982~
-~09014~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2002~
-~09014~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~
-~09014~^~417~^1.^6^0.^~1~^^^^^^^^^^^~08/01/1982~
-~09014~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~
-~09014~^~432~^1.^6^0.^~1~^^^^^^^^^^^~07/01/2010~
-~09014~^~435~^1.^0^^~4~^~NC~^^^^^^^^^^~07/01/2010~
-~09014~^~601~^0.^0^^~7~^~Z~^^^^^^^^^^~08/01/1982~
-~09015~^~208~^47.^0^^~4~^~NC~^^^^^^^^^^~08/01/1982~
-~09015~^~268~^197.^0^^~4~^^^^^^^^^^^~03/01/2010~
-~09015~^~301~^5.^6^0.^~1~^^^^^^^^^^^~08/01/1982~
-~09015~^~304~^3.^6^0.^~1~^^^^^^^^^^^~08/01/1982~
-~09015~^~305~^8.^6^0.^~1~^^^^^^^^^^^~08/01/1982~
-~09015~^~306~^76.^6^2.^~1~^^^^^^^^^^^~08/01/1982~
-~09015~^~307~^3.^6^0.^~1~^^^^^^^^^^^~08/01/1982~
-~09015~^~318~^20.^6^3.^~1~^^^^^^^^^^^~08/01/1982~
-~09015~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2002~
-~09015~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~
-~09015~^~417~^1.^6^0.^~1~^^^^^^^^^^^~08/01/1982~
-~09015~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~
-~09015~^~432~^1.^6^0.^~1~^^^^^^^^^^^~07/01/2010~
-~09015~^~435~^1.^0^^~4~^~NC~^^^^^^^^^^~07/01/2010~
-~09015~^~601~^0.^0^^~7~^~Z~^^^^^^^^^^~08/01/1982~
-~09016~^~208~^46.^0^^~4~^~NC~^^^^^^^^^^~05/01/2008~
-~09016~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~11/01/2002~
-~09016~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~11/01/2002~
-~09016~^~268~^191.^0^^~4~^~NC~^^^^^^^^^^~05/01/2008~
-~09016~^~301~^8.^57^0.^~1~^~A~^^^17^4.^26.^8^6.^8.^~2, 3~^~05/01/2008~
-~09016~^~304~^5.^58^0.^~1~^~A~^^^17^4.^7.^22^4.^4.^~2, 3~^~05/01/2008~
-~09016~^~305~^7.^59^0.^~1~^~A~^^^17^5.^10.^16^6.^7.^~2, 3~^~05/01/2008~
-~09016~^~306~^101.^58^1.^~1~^~A~^^^17^73.^116.^18^98.^103.^~2, 3~^~05/01/2008~
-~09016~^~307~^4.^58^0.^~1~^~A~^^^17^1.^8.^25^3.^4.^~1, 2, 3~^~05/01/2008~
-~09016~^~318~^1.^1^^~1~^^^^^^^^^^^~08/01/1982~
-~09016~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2002~
-~09016~^~320~^0.^0^^~4~^~NC~^^^^^^^^^^~05/01/2008~
-~09016~^~321~^0.^0^^~4~^~BNA~^~09004~^^^^^^^^^~11/01/2002~
-~09016~^~322~^0.^0^^~4~^~BNA~^~09004~^^^^^^^^^~11/01/2002~
-~09016~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~
-~09016~^~334~^0.^0^^~4~^~BNA~^~09004~^^^^^^^^^~11/01/2002~
-~09016~^~337~^0.^0^^~4~^~BFSN~^~09004~^^^^^^^^^~11/01/2002~
-~09016~^~338~^16.^0^^~4~^~BFSN~^~09004~^^^^^^^^^~11/01/2002~
-~09016~^~417~^0.^3^0.^~1~^^^^^^^^^^^~08/01/1982~
-~09016~^~431~^0.^1^^~1~^~A~^^^^^^^^^~1~^~05/01/2008~
-~09016~^~432~^0.^3^0.^~1~^^^^^^^^^^^~05/01/2008~
-~09016~^~435~^0.^0^^~4~^~NC~^^^^^^^^^^~07/01/2008~
-~09016~^~601~^0.^0^^~7~^~Z~^^^^^^^^^^~08/01/1982~
-~09017~^~208~^166.^0^^~4~^~NC~^^^^^^^^^^~08/01/1982~
-~09017~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~11/01/2002~
-~09017~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~11/01/2002~
-~09017~^~268~^695.^0^^~4~^^^^^^^^^^^~01/01/2007~
-~09017~^~301~^20.^4^2.^~1~^^^^^^^^^^^~08/01/1982~
-~09017~^~304~^17.^4^1.^~1~^^^^^^^^^^^~08/01/1982~
-~09017~^~305~^25.^4^2.^~1~^^^^^^^^^^^~08/01/1982~
-~09017~^~306~^448.^4^26.^~1~^^^^^^^^^^^~08/01/1982~
-~09017~^~307~^25.^4^9.^~1~^^^^^^^^^^^~08/01/1982~
-~09017~^~318~^0.^3^^~1~^^^^^^^^^^^~08/01/1982~
-~09017~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2002~
-~09017~^~320~^0.^0^^~4~^~NC~^^^^^^^^^^~01/01/2007~
-~09017~^~321~^0.^0^^~7~^~Z~^^^^^^^^^^~11/01/2002~
-~09017~^~322~^0.^0^^~4~^~BFSN~^~09016~^^^^^^^^^~11/01/2002~
-~09017~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~
-~09017~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~11/01/2002~
-~09017~^~337~^0.^0^^~4~^~BFSN~^~09016~^^^^^^^^^~11/01/2002~
-~09017~^~338~^57.^0^^~4~^~BFSN~^~09016~^^^^^^^^^~11/01/2002~
-~09017~^~417~^1.^4^0.^~1~^^^^^^^^^^^~08/01/1982~
-~09017~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~
-~09017~^~432~^1.^4^0.^~1~^^^^^^^^^^^~01/01/2007~
-~09017~^~435~^1.^0^^~4~^~NC~^^^^^^^^^^~01/01/2007~
-~09017~^~601~^0.^0^^~7~^~Z~^^^^^^^^^^~08/01/1982~
-~09018~^~208~^47.^0^^~4~^~NC~^^^^^^^^^^~08/01/1982~
-~09018~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~11/01/2002~
-~09018~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~11/01/2002~
-~09018~^~268~^197.^0^^~4~^^^^^^^^^^^~01/01/2007~
-~09018~^~301~^6.^4^0.^~1~^^^^^^^^^^^~08/01/1982~
-~09018~^~304~^5.^4^0.^~1~^^^^^^^^^^^~08/01/1982~
-~09018~^~305~^7.^4^0.^~1~^^^^^^^^^^^~08/01/1982~
-~09018~^~306~^126.^4^7.^~1~^^^^^^^^^^^~08/01/1982~
-~09018~^~307~^7.^4^2.^~1~^^^^^^^^^^^~08/01/1982~
-~09018~^~318~^0.^0^^~4~^^^^^^^^^^^~08/01/1982~
-~09018~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2002~
-~09018~^~320~^0.^0^^~4~^~NC~^^^^^^^^^^~01/01/2007~
-~09018~^~321~^0.^0^^~4~^~BFSN~^~09017~^^^^^^^^^~11/01/2002~
-~09018~^~322~^0.^0^^~4~^~BFSN~^~09017~^^^^^^^^^~11/01/2002~
-~09018~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~
-~09018~^~334~^0.^0^^~4~^~BFSN~^~09017~^^^^^^^^^~11/01/2002~
-~09018~^~337~^0.^0^^~4~^~BFSN~^~09017~^^^^^^^^^~11/01/2002~
-~09018~^~338~^16.^0^^~4~^~BFSN~^~09017~^^^^^^^^^~11/01/2002~
-~09018~^~417~^0.^4^0.^~1~^^^^^^^^^^^~08/01/1982~
-~09018~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~
-~09018~^~432~^0.^4^0.^~1~^^^^^^^^^^^~01/01/2007~
-~09018~^~435~^0.^0^^~4~^~NC~^^^^^^^^^^~01/01/2007~
-~09018~^~601~^0.^0^^~7~^~Z~^^^^^^^^^^~08/01/1982~
-~09019~^~208~^42.^0^^~4~^~NC~^^^^^^^^^^~08/01/2008~
-~09019~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~12/01/2002~
-~09019~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~12/01/2002~
-~09019~^~268~^176.^0^^~4~^~NC~^^^^^^^^^^~08/01/2008~
-~09019~^~301~^4.^11^0.^~1~^~A~^^^4^3.^5.^3^1.^5.^~2~^~06/01/2008~
-~09019~^~304~^3.^11^0.^~1~^~A~^^^4^2.^3.^3^2.^2.^~2~^~06/01/2008~
-~09019~^~305~^5.^11^0.^~1~^~A~^^^4^3.^9.^3^4.^5.^~2~^~06/01/2008~
-~09019~^~306~^74.^11^3.^~1~^~A~^^^4^54.^88.^3^61.^86.^~2~^~06/01/2008~
-~09019~^~307~^2.^16^0.^~1~^^^^^^^^^^^~07/01/2008~
-~09019~^~318~^29.^0^^~4~^~NC~^^^^^^^^^^~03/01/2016~
-~09019~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2002~
-~09019~^~320~^1.^0^^~4~^~NC~^^^^^^^^^^~03/01/2016~
-~09019~^~321~^13.^0^^~4~^~BNA~^~09004~^^^^^^^^^~12/01/2002~
-~09019~^~322~^0.^0^^~4~^~BNA~^~09004~^^^^^^^^^~12/01/2002~
-~09019~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~
-~09019~^~334~^9.^0^^~4~^~BNA~^~09004~^^^^^^^^^~12/01/2002~
-~09019~^~337~^0.^0^^~4~^~BFZN~^~09004~^^^^^^^^^~12/01/2002~
-~09019~^~338~^18.^0^^~4~^~BFZN~^~09004~^^^^^^^^^~12/01/2002~
-~09019~^~417~^3.^3^0.^~1~^~A~^^^1^2.^4.^2^0.^5.^~2, 3~^~06/01/2008~
-~09019~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~08/01/2008~
-~09019~^~432~^3.^3^0.^~1~^~A~^^^1^2.^4.^2^0.^5.^~2, 3~^~06/01/2008~
-~09019~^~435~^3.^0^^~4~^~NC~^^^^^^^^^^~08/01/2008~
-~09019~^~601~^0.^0^^~7~^~Z~^^^^^^^^^^~08/01/1982~
-~09020~^~208~^68.^0^^~4~^~NC~^^^^^^^^^^~08/01/2008~
-~09020~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~11/01/2000~
-~09020~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~11/01/2000~
-~09020~^~268~^283.^0^^~4~^~NC~^^^^^^^^^^~08/01/2008~
-~09020~^~301~^3.^54^0.^~1~^~A~^^^16^2.^4.^15^2.^3.^~2~^~06/01/2008~
-~09020~^~304~^3.^55^0.^~1~^~A~^^^16^2.^4.^15^2.^3.^~2~^~06/01/2008~
-~09020~^~305~^6.^55^0.^~1~^~A~^^^16^4.^9.^15^6.^6.^~2~^~06/01/2008~
-~09020~^~306~^75.^55^2.^~1~^~A~^^^16^54.^101.^15^70.^80.^~2~^~06/01/2008~
-~09020~^~307~^2.^55^0.^~1~^~A~^^^16^0.^9.^15^1.^3.^~1, 2~^~06/01/2008~
-~09020~^~318~^6.^0^^~4~^~NC~^^^^^^^^^^~03/01/2016~
-~09020~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2002~
-~09020~^~320~^0.^0^^~4~^~NC~^^^^^^^^^^~03/01/2016~
-~09020~^~321~^3.^0^^~4~^~BNA~^~09004~^^^^^^^^^~06/01/2008~
-~09020~^~322~^0.^0^^~4~^~BNA~^~09004~^^^^^^^^^~12/01/2002~
-~09020~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~
-~09020~^~334~^2.^0^^~4~^~BNA~^~09004~^^^^^^^^^~06/01/2008~
-~09020~^~337~^0.^0^^~4~^~BFZN~^~09004~^^^^^^^^^~12/01/2002~
-~09020~^~338~^18.^0^^~4~^~BFZN~^~09004~^^^^^^^^^~12/01/2002~
-~09020~^~417~^1.^8^0.^~1~^~A~^^^2^1.^2.^1^-4.^6.^~2~^~06/01/2008~
-~09020~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~08/01/2008~
-~09020~^~432~^1.^8^0.^~1~^~A~^^^2^1.^2.^1^-4.^6.^^~08/01/2008~
-~09020~^~435~^1.^0^^~4~^~NC~^^^^^^^^^^~08/01/2008~
-~09020~^~601~^0.^0^^~7~^~Z~^^^^^^^^^^~08/01/1982~
-~09021~^~208~^48.^0^^~4~^~NC~^^^^^^^^^^~08/01/1982~
-~09021~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2003~
-~09021~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2003~
-~09021~^~268~^201.^0^^~4~^^^^^^^^^^^~12/01/2006~
-~09021~^~301~^13.^21^1.^~1~^~A~^^^8^9.^28.^7^10.^15.^~2, 3~^~01/01/2003~
-~09021~^~304~^10.^21^0.^~1~^~A~^^^8^9.^14.^5^9.^10.^~2, 3~^~01/01/2003~
-~09021~^~305~^23.^21^0.^~1~^~A~^^^8^13.^28.^10^22.^23.^~2, 3~^~01/01/2003~
-~09021~^~306~^259.^21^4.^~1~^~A~^^^8^214.^322.^9^249.^269.^~2, 3~^~01/01/2003~
-~09021~^~307~^1.^18^0.^~1~^^^^^^^^^^^~08/01/1982~
-~09021~^~318~^1926.^0^^~1~^~AS~^^^^^^^^^^~01/01/2003~
-~09021~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2002~
-~09021~^~320~^96.^0^^~1~^~AS~^^^^^^^^^^~01/01/2003~
-~09021~^~321~^1094.^8^346.^~1~^~A~^^^3^615.^1766.^2^-395.^2582.^~2~^~01/01/2003~
-~09021~^~322~^19.^8^10.^~1~^~A~^^^3^0.^37.^2^-27.^65.^~2~^~01/01/2003~
-~09021~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~
-~09021~^~334~^104.^8^64.^~1~^~A~^^^3^22.^231.^2^-171.^380.^~2~^~01/01/2003~
-~09021~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2003~
-~09021~^~338~^89.^2^^~1~^~A~^^^2^46.^132.^1^^^^~01/01/2003~
-~09021~^~417~^9.^4^1.^~1~^^^^^^^^^^^~08/01/1982~
-~09021~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~
-~09021~^~432~^9.^4^1.^~1~^^^^^^^^^^^~12/01/2006~
-~09021~^~435~^9.^0^^~4~^~NC~^^^^^^^^^^~12/01/2006~
-~09021~^~601~^0.^0^^~7~^~Z~^^^^^^^^^^~08/01/1982~
-~09021~^~636~^18.^0^^~1~^^^^^^^^^^^~08/01/1982~
-~09022~^~208~^27.^0^^~4~^~NC~^^^^^^^^^^~08/01/1982~
-~09022~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2003~
-~09022~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2003~
-~09022~^~268~^113.^0^^~4~^^^^^^^^^^^~01/01/2007~
-~09022~^~301~^8.^9^0.^~1~^^^^^^^^^^^~08/01/1982~
-~09022~^~304~^7.^8^0.^~1~^^^^^^^^^^^~08/01/1982~
-~09022~^~305~^13.^9^1.^~1~^^^^^^^^^^^~08/01/1982~
-~09022~^~306~^192.^37^9.^~1~^^^^^^^^^^^~08/01/1982~
-~09022~^~307~^3.^37^0.^~1~^^^^^^^^^^^~08/01/1982~
-~09022~^~318~^1959.^0^^~4~^~NC~^^^^^^^^^^~01/01/2007~
-~09022~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2002~
-~09022~^~320~^98.^0^^~4~^~NC~^^^^^^^^^^~01/01/2007~
-~09022~^~321~^1170.^0^^~4~^~BFYN~^~09357~^^^^^^^^^~01/01/2003~
-~09022~^~322~^0.^0^^~4~^~BFYN~^~09357~^^^^^^^^^~01/01/2003~
-~09022~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~
-~09022~^~334~^11.^0^^~4~^~BFYN~^~09357~^^^^^^^^^~01/01/2003~
-~09022~^~337~^0.^0^^~4~^~BFYN~^~09357~^^^^^^^^^~01/01/2003~
-~09022~^~338~^26.^0^^~4~^~BFYN~^~09357~^^^^^^^^^~01/01/2003~
-~09022~^~417~^2.^0^^~1~^^^^^^^^^^^~08/01/1982~
-~09022~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~
-~09022~^~432~^2.^0^^~1~^^^^^^^^^^^~01/01/2007~
-~09022~^~435~^2.^0^^~4~^~NC~^^^^^^^^^^~01/01/2007~
-~09022~^~601~^0.^0^^~7~^~Z~^^^^^^^^^^~08/01/1982~
-~09023~^~208~^22.^0^^~4~^~NC~^^^^^^^^^^~08/01/1982~
-~09023~^~268~^92.^0^^~4~^^^^^^^^^^^
-~09023~^~301~^8.^1^^~1~^^^^^^^^^^^~08/01/1982~
-~09023~^~304~^9.^1^^~1~^^^^^^^^^^^~08/01/1982~
-~09023~^~305~^16.^1^^~1~^^^^^^^^^^^~08/01/1982~
-~09023~^~306~^154.^3^6.^~1~^^^^^^^^^^^~08/01/1982~
-~09023~^~307~^11.^3^0.^~1~^^^^^^^^^^^~08/01/1982~
-~09023~^~318~^1810.^1^^~1~^^^^^^^^^^^~08/01/1982~
-~09023~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2002~
-~09023~^~320~^91.^1^^~1~^^^^^^^^^^^~06/01/2002~
-~09023~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~
-~09023~^~417~^2.^0^^~1~^^^^^^^^^^^~08/01/1982~
-~09023~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~
-~09023~^~432~^2.^0^^~1~^^^^^^^^^^^~08/01/1982~
-~09023~^~435~^2.^0^^~4~^~NC~^^^^^^^^^^~01/01/2001~
-~09023~^~601~^0.^0^^~7~^~Z~^^^^^^^^^^~08/01/1982~
-~09024~^~208~^48.^0^^~4~^~NC~^^^^^^^^^^~08/01/1982~
-~09024~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2003~
-~09024~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2003~
-~09024~^~268~^201.^0^^~4~^^^^^^^^^^^~01/01/2007~
-~09024~^~301~^12.^8^0.^~1~^^^^^^^^^^^~08/01/1982~
-~09024~^~304~^10.^6^0.^~1~^^^^^^^^^^^~08/01/1982~
-~09024~^~305~^20.^6^0.^~1~^^^^^^^^^^^~08/01/1982~
-~09024~^~306~^165.^7^8.^~1~^^^^^^^^^^^~08/01/1982~
-~09024~^~307~^4.^7^0.^~1~^^^^^^^^^^^~08/01/1982~
-~09024~^~318~^1691.^7^153.^~1~^^^^^^^^^^^~08/01/1982~
-~09024~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2002~
-~09024~^~320~^85.^7^7.^~1~^^^^^^^^^^^~01/01/2007~
-~09024~^~321~^1010.^0^^~4~^~BNA~^~09357~^^^^^^^^^~01/01/2003~
-~09024~^~322~^0.^0^^~4~^~BNA~^~09357~^^^^^^^^^~01/01/2003~
-~09024~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~
-~09024~^~334~^10.^0^^~4~^~BNA~^~09357~^^^^^^^^^~01/01/2003~
-~09024~^~337~^0.^0^^~4~^~BFYN~^~09357~^^^^^^^^^~01/01/2003~
-~09024~^~338~^26.^0^^~4~^~BFYN~^~09357~^^^^^^^^^~01/01/2003~
-~09024~^~417~^2.^0^^~4~^^^^^^^^^^^~08/01/1982~
-~09024~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~
-~09024~^~432~^2.^0^^~4~^^^^^^^^^^^~01/01/2007~
-~09024~^~435~^2.^0^^~4~^~NC~^^^^^^^^^^~01/01/2007~
-~09024~^~601~^0.^0^^~7~^~Z~^^^^^^^^^^~08/01/1982~
-~09025~^~208~^49.^0^^~4~^~NC~^^^^^^^^^^~08/01/1982~
-~09025~^~268~^205.^0^^~4~^^^^^^^^^^^
-~09025~^~301~^10.^1^^~1~^^^^^^^^^^^~08/01/1982~
-~09025~^~304~^6.^1^^~1~^^^^^^^^^^^~08/01/1982~
-~09025~^~305~^12.^1^^~1~^^^^^^^^^^^~08/01/1982~
-~09025~^~306~^140.^1^^~1~^^^^^^^^^^^~08/01/1982~
-~09025~^~307~^2.^1^^~1~^^^^^^^^^^^~08/01/1982~
-~09025~^~318~^1271.^0^^~1~^^^^^^^^^^^~08/01/1982~
-~09025~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2002~
-~09025~^~320~^64.^0^^~1~^^^^^^^^^^^~06/01/2002~
-~09025~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~
-~09025~^~417~^2.^0^^~1~^^^^^^^^^^^~08/01/1982~
-~09025~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~
-~09025~^~432~^2.^0^^~1~^^^^^^^^^^^~08/01/1982~
-~09025~^~435~^2.^0^^~4~^~NC~^^^^^^^^^^~01/01/2001~
-~09025~^~601~^0.^0^^~7~^~Z~^^^^^^^^^^~08/01/1982~
-~09026~^~208~^63.^0^^~4~^~NC~^^^^^^^^^^~08/01/1982~
-~09026~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2003~
-~09026~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2003~
-~09026~^~268~^264.^0^^~4~^^^^^^^^^^^~01/01/2007~
-~09026~^~301~^11.^28^0.^~1~^^^^^^^^^^^~08/01/1982~
-~09026~^~304~^8.^36^0.^~1~^^^^^^^^^^^~08/01/1982~
-~09026~^~305~^13.^28^0.^~1~^^^^^^^^^^^~08/01/1982~
-~09026~^~306~^138.^19^5.^~1~^^^^^^^^^^^~08/01/1982~
-~09026~^~307~^4.^19^0.^~1~^^^^^^^^^^^~08/01/1982~
-~09026~^~318~^1322.^148^30.^~1~^^^^^^^^^^^~08/01/1982~
-~09026~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2002~
-~09026~^~320~^66.^148^1.^~1~^^^^^^^^^^^~01/01/2007~
-~09026~^~321~^789.^0^^~4~^~BNA~^~09357~^^^^^^^^^~01/01/2003~
-~09026~^~322~^0.^0^^~4~^~BNA~^~09357~^^^^^^^^^~01/01/2003~
-~09026~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~
-~09026~^~334~^7.^0^^~4~^~BNA~^~09357~^^^^^^^^^~01/01/2003~
-~09026~^~337~^0.^0^^~4~^~BFYN~^~09357~^^^^^^^^^~01/01/2003~
-~09026~^~338~^26.^0^^~4~^~BFYN~^~09357~^^^^^^^^^~01/01/2003~
-~09026~^~417~^2.^0^^~1~^^^^^^^^^^^~08/01/1982~
-~09026~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~
-~09026~^~432~^2.^0^^~1~^^^^^^^^^^^~01/01/2007~
-~09026~^~435~^2.^0^^~4~^~NC~^^^^^^^^^^~01/01/2007~
-~09026~^~601~^0.^0^^~7~^~Z~^^^^^^^^^^~08/01/1982~
-~09027~^~208~^83.^0^^~4~^~NC~^^^^^^^^^^~08/01/1982~
-~09027~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2003~
-~09027~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2003~
-~09027~^~268~^347.^0^^~4~^^^^^^^^^^^~01/01/2007~
-~09027~^~301~^9.^129^0.^~1~^^^^^^^^^^^~08/01/1982~
-~09027~^~304~^7.^135^0.^~1~^^^^^^^^^^^~08/01/1982~
-~09027~^~305~^12.^130^0.^~1~^^^^^^^^^^^~08/01/1982~
-~09027~^~306~^140.^95^2.^~1~^^^^^^^^^^^~08/01/1982~
-~09027~^~307~^4.^107^0.^~1~^^^^^^^^^^^~08/01/1982~
-~09027~^~318~^1230.^276^30.^~1~^^^^^^^^^^^~08/01/1982~
-~09027~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2002~
-~09027~^~320~^62.^276^1.^~1~^^^^^^^^^^^~01/01/2007~
-~09027~^~321~^735.^0^^~4~^~BNA~^~09357~^^^^^^^^^~01/01/2003~
-~09027~^~322~^0.^0^^~4~^~BNA~^~09357~^^^^^^^^^~01/01/2003~
-~09027~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~
-~09027~^~334~^7.^0^^~4~^~BNA~^~09357~^^^^^^^^^~01/01/2003~
-~09027~^~337~^0.^0^^~4~^~BFYN~^~09357~^^^^^^^^^~01/01/2003~
-~09027~^~338~^26.^0^^~4~^~BFYN~^~09357~^^^^^^^^^~01/01/2003~
-~09027~^~417~^2.^3^0.^~1~^^^^^^^^^^^~08/01/1982~
-~09027~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~
-~09027~^~432~^2.^3^0.^~1~^^^^^^^^^^^~01/01/2007~
-~09027~^~435~^2.^0^^~4~^~NC~^^^^^^^^^^~01/01/2007~
-~09027~^~601~^0.^0^^~7~^~Z~^^^^^^^^^^~08/01/1982~
-~09028~^~208~^83.^0^^~4~^~NC~^^^^^^^^^^~08/01/1982~
-~09028~^~268~^347.^0^^~4~^^^^^^^^^^^
-~09028~^~301~^9.^65^0.^~1~^^^^^^^^^^^~08/01/1982~
-~09028~^~304~^8.^61^0.^~1~^^^^^^^^^^^~08/01/1982~
-~09028~^~305~^13.^66^0.^~1~^^^^^^^^^^^~08/01/1982~
-~09028~^~306~^134.^65^4.^~1~^^^^^^^^^^^~08/01/1982~
-~09028~^~307~^11.^63^1.^~1~^^^^^^^^^^^~08/01/1982~
-~09028~^~318~^1240.^168^37.^~1~^^^^^^^^^^^~08/01/1982~
-~09028~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2002~
-~09028~^~320~^62.^168^1.^~1~^^^^^^^^^^^~06/01/2002~
-~09028~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~
-~09028~^~417~^2.^0^^~1~^^^^^^^^^^^~08/01/1982~
-~09028~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~
-~09028~^~432~^2.^0^^~1~^^^^^^^^^^^~08/01/1982~
-~09028~^~435~^2.^0^^~4~^~NC~^^^^^^^^^^~01/01/2001~
-~09028~^~601~^0.^0^^~7~^~Z~^^^^^^^^^^~08/01/1982~
-~09029~^~208~^96.^0^^~4~^~NC~^^^^^^^^^^~08/01/1982~
-~09029~^~268~^402.^0^^~4~^^^^^^^^^^^
-~09029~^~301~^8.^4^1.^~1~^^^^^^^^^^^~08/01/1982~
-~09029~^~304~^8.^4^0.^~1~^^^^^^^^^^^~08/01/1982~
-~09029~^~305~^15.^4^1.^~1~^^^^^^^^^^^~08/01/1982~
-~09029~^~306~^126.^4^11.^~1~^^^^^^^^^^^~08/01/1982~
-~09029~^~307~^13.^4^1.^~1~^^^^^^^^^^^~08/01/1982~
-~09029~^~318~^1471.^15^110.^~1~^^^^^^^^^^^~08/01/1982~
-~09029~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2002~
-~09029~^~320~^74.^15^5.^~1~^^^^^^^^^^^~06/01/2002~
-~09029~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~
-~09029~^~417~^2.^0^^~1~^^^^^^^^^^^~08/01/1982~
-~09029~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~
-~09029~^~432~^2.^0^^~1~^^^^^^^^^^^~08/01/1982~
-~09029~^~435~^2.^0^^~4~^~NC~^^^^^^^^^^~01/01/2001~
-~09029~^~601~^0.^0^^~7~^~Z~^^^^^^^^^^~08/01/1982~
-~09030~^~208~^320.^0^^~4~^~NC~^^^^^^^^^^~08/01/1982~
-~09030~^~268~^1339.^0^^~4~^^^^^^^^^^^
-~09030~^~301~^61.^0^^~1~^^^^^^^^^^^~08/01/1982~
-~09030~^~304~^63.^0^^~1~^^^^^^^^^^^~08/01/1982~
-~09030~^~305~^157.^0^^~1~^^^^^^^^^^^~08/01/1982~
-~09030~^~306~^1850.^0^^~1~^^^^^^^^^^^~08/01/1982~
-~09030~^~307~^13.^0^^~1~^^^^^^^^^^^~08/01/1982~
-~09030~^~318~^12669.^2^^~1~^^^^^^^^^^^~08/01/1982~
-~09030~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2002~
-~09030~^~320~^633.^2^^~1~^^^^^^^^^^^~06/01/2002~
-~09030~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~
-~09030~^~417~^4.^2^^~1~^^^^^^^^^^^~08/01/1982~
-~09030~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~
-~09030~^~432~^4.^2^^~1~^^^^^^^^^^^~08/01/1982~
-~09030~^~435~^4.^0^^~4~^~NC~^^^^^^^^^^~01/01/2001~
-~09030~^~601~^0.^0^^~7~^~Z~^^^^^^^^^^~08/01/1982~
-~09031~^~208~^126.^0^^~4~^~NC~^^^^^^^^^^~08/01/1982~
-~09031~^~268~^527.^0^^~4~^^^^^^^^^^^
-~09031~^~301~^24.^0^^~1~^^^^^^^^^^^~08/01/1982~
-~09031~^~304~^25.^0^^~1~^^^^^^^^^^^~08/01/1982~
-~09031~^~305~^62.^0^^~1~^^^^^^^^^^^~08/01/1982~
-~09031~^~306~^728.^0^^~1~^^^^^^^^^^^~08/01/1982~
-~09031~^~307~^5.^0^^~1~^^^^^^^^^^^~08/01/1982~
-~09031~^~318~^4407.^2^^~1~^^^^^^^^^^^~08/01/1982~
-~09031~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2002~
-~09031~^~320~^220.^2^^~1~^^^^^^^^^^^~06/01/2002~
-~09031~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~
-~09031~^~417~^2.^2^^~1~^^^^^^^^^^^~08/01/1982~
-~09031~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~
-~09031~^~432~^2.^2^^~1~^^^^^^^^^^^~08/01/1982~
-~09031~^~435~^2.^0^^~4~^~NC~^^^^^^^^^^~01/01/2001~
-~09031~^~601~^0.^0^^~7~^~Z~^^^^^^^^^^~08/01/1982~
-~09032~^~208~^241.^0^^~4~^~NC~^^^^^^^^^^~04/01/2006~
-~09032~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~11/01/2000~
-~09032~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~11/01/2000~
-~09032~^~268~^1009.^0^^~4~^~NC~^^^^^^^^^^~04/01/2006~
-~09032~^~301~^55.^3^4.^~1~^~A~^^^1^46.^60.^2^35.^73.^~2, 3~^~05/01/2002~
-~09032~^~304~^32.^3^3.^~1~^~A~^^^1^25.^36.^2^16.^47.^~2, 3~^~05/01/2002~
-~09032~^~305~^71.^3^8.^~1~^~A~^^^1^55.^82.^2^36.^105.^~2, 3~^~05/01/2002~
-~09032~^~306~^1162.^3^61.^~1~^~A~^^^1^1046.^1255.^2^897.^1426.^~2, 3~^~05/01/2002~
-~09032~^~307~^10.^33^0.^~1~^^^^^^^^^^^~06/01/2002~
-~09032~^~318~^3604.^2^^~1~^~A~^^^1^3073.^4135.^1^^^^~05/01/2002~
-~09032~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2002~
-~09032~^~320~^180.^2^^~1~^~A~^^^1^154.^207.^1^^^^~05/01/2002~
-~09032~^~321~^2163.^2^^~1~^~A~^^^1^1844.^2481.^1^^^^~05/01/2002~
-~09032~^~322~^0.^2^^~1~^~A~^^^1^0.^0.^^^^^~05/01/2002~
-~09032~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~
-~09032~^~334~^0.^2^^~1~^~A~^^^1^0.^0.^^^^^~05/01/2002~
-~09032~^~337~^0.^2^^~1~^~A~^^^1^0.^0.^^^^^~05/01/2002~
-~09032~^~338~^0.^2^^~1~^~AS~^^^1^0.^0.^^^^^~05/01/2002~
-~09032~^~417~^10.^3^0.^~1~^~A~^^^1^10.^10.^2^9.^10.^~2, 3~^~05/01/2002~
-~09032~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~
-~09032~^~432~^10.^3^0.^~1~^~A~^^^1^10.^10.^2^9.^10.^^~04/01/2006~
-~09032~^~435~^10.^0^^~4~^~NC~^^^^^^^^^^~04/01/2006~
-~09032~^~601~^0.^0^^~7~^~Z~^^^^^^^^^^~08/01/1982~
-~09033~^~208~^85.^0^^~4~^~NC~^^^^^^^^^^~12/01/2006~
-~09033~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2003~
-~09033~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2003~
-~09033~^~268~^357.^0^^~4~^~NC~^^^^^^^^^^~12/01/2006~
-~09033~^~301~^19.^0^^~4~^~BFSN~^~09032~^^^^^^^^^~01/01/2003~
-~09033~^~304~^11.^0^^~4~^~BFSN~^~09032~^^^^^^^^^~01/01/2003~
-~09033~^~305~^25.^0^^~4~^~BFSN~^~09032~^^^^^^^^^~01/01/2003~
-~09033~^~306~^411.^0^^~4~^~BFSN~^~09032~^^^^^^^^^~01/01/2003~
-~09033~^~307~^4.^0^^~4~^~BFSN~^~09032~^^^^^^^^^~01/01/2003~
-~09033~^~318~^1275.^0^^~4~^~BFSN~^~09032~^^^^^^^^^~12/01/2006~
-~09033~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2002~
-~09033~^~320~^64.^0^^~4~^~NC~^^^^^^^^^^~12/01/2006~
-~09033~^~321~^765.^0^^~4~^~BFSN~^~09032~^^^^^^^^^~01/01/2003~
-~09033~^~322~^0.^0^^~4~^~BFSN~^~09032~^^^^^^^^^~01/01/2003~
-~09033~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~
-~09033~^~334~^0.^0^^~4~^~BFSN~^~09032~^^^^^^^^^~01/01/2003~
-~09033~^~337~^0.^0^^~4~^~BFSN~^~09032~^^^^^^^^^~01/01/2003~
-~09033~^~338~^0.^0^^~4~^~BFSN~^~09032~^^^^^^^^^~01/01/2003~
-~09033~^~417~^3.^0^^~4~^~BFSN~^~09032~^^^^^^^^^~01/01/2003~
-~09033~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~
-~09033~^~432~^3.^0^^~4~^~BFSN~^^^^^^^^^^~12/01/2006~
-~09033~^~435~^3.^0^^~4~^~NC~^^^^^^^^^^~12/01/2006~
-~09033~^~601~^0.^0^^~7~^~Z~^^^^^^^^^^~08/01/1982~
-~09034~^~208~^113.^0^^~4~^~NC~^^^^^^^^^^~08/01/1982~
-~09034~^~268~^473.^0^^~4~^^^^^^^^^^^
-~09034~^~301~^15.^0^^~1~^^^^^^^^^^^~08/01/1982~
-~09034~^~304~^15.^0^^~1~^^^^^^^^^^^~08/01/1982~
-~09034~^~305~^38.^0^^~1~^^^^^^^^^^^~08/01/1982~
-~09034~^~306~^443.^0^^~1~^^^^^^^^^^^~08/01/1982~
-~09034~^~307~^3.^0^^~1~^^^^^^^^^^^~08/01/1982~
-~09034~^~318~^2139.^0^^~1~^^^^^^^^^^^~08/01/1982~
-~09034~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2002~
-~09034~^~320~^107.^0^^~1~^^^^^^^^^^^~06/01/2002~
-~09034~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~
-~09034~^~417~^0.^0^^~1~^^^^^^^^^^^~08/01/1982~
-~09034~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~
-~09034~^~432~^0.^0^^~1~^^^^^^^^^^^~08/01/1982~
-~09034~^~435~^0.^0^^~4~^~NC~^^^^^^^^^^~01/01/2001~
-~09034~^~601~^0.^0^^~7~^~Z~^^^^^^^^^^~08/01/1982~
-~09035~^~208~^98.^0^^~4~^~NC~^^^^^^^^^^~08/01/1982~
-~09035~^~268~^410.^0^^~4~^^^^^^^^^^^
-~09035~^~301~^10.^0^^~1~^^^^^^^^^^^~08/01/1982~
-~09035~^~304~^9.^0^^~1~^^^^^^^^^^^~08/01/1982~
-~09035~^~305~^19.^0^^~1~^^^^^^^^^^^~08/01/1982~
-~09035~^~306~^229.^0^^~1~^^^^^^^^^^^~08/01/1982~
-~09035~^~307~^4.^0^^~1~^^^^^^^^^^^~08/01/1982~
-~09035~^~318~^1680.^0^^~1~^^^^^^^^^^^~08/01/1982~
-~09035~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2002~
-~09035~^~320~^84.^0^^~1~^^^^^^^^^^^~06/01/2002~
-~09035~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~
-~09035~^~417~^2.^0^^~4~^^^^^^^^^^^~08/01/1982~
-~09035~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~
-~09035~^~432~^2.^0^^~4~^^^^^^^^^^^~08/01/1982~
-~09035~^~435~^2.^0^^~4~^~NC~^^^^^^^^^^~01/01/2001~
-~09035~^~601~^0.^0^^~7~^~Z~^^^^^^^^^^~08/01/1982~
-~09036~^~208~^56.^0^^~4~^~NC~^^^^^^^^^^~08/01/1982~
-~09036~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2003~
-~09036~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2003~
-~09036~^~268~^234.^0^^~4~^~NC~^^^^^^^^^^~01/01/2007~
-~09036~^~301~^11.^4^0.^~1~^~A~^^^1^10.^13.^2^9.^12.^~2, 3~^~12/01/2016~
-~09036~^~304~^5.^4^0.^~1~^~A~^^^1^5.^5.^2^4.^5.^~2, 3~^~08/01/1982~
-~09036~^~305~^5.^4^0.^~1~^~A~^^^1^5.^8.^2^4.^5.^~2, 3~^~12/01/2016~
-~09036~^~306~^67.^4^1.^~1~^~A~^^^1^61.^97.^2^58.^75.^~2, 3~^~12/01/2016~
-~09036~^~307~^8.^4^0.^~1~^~A~^^^1^4.^11.^2^4.^12.^~1, 2, 3~^~12/01/2016~
-~09036~^~318~^322.^0^^~1~^~AS~^^^^^^^^^^~12/01/2016~
-~09036~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2002~
-~09036~^~320~^16.^0^^~1~^~AS~^^^^^^^^^^~12/01/2016~
-~09036~^~321~^189.^1^^~1~^~A~^^^^^^^^^^~12/01/2016~
-~09036~^~322~^3.^1^^~1~^~A~^^^1^3.^3.^^^^^~12/01/2016~
-~09036~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~
-~09036~^~334~^5.^1^^~1~^~A~^^^^^^^^^^~12/01/2016~
-~09036~^~337~^20.^1^^~1~^~A~^^^^^^^^^^~12/01/2016~
-~09036~^~338~^6.^1^^~1~^~A~^^^1^6.^6.^^^^^~12/01/2016~
-~09036~^~417~^1.^1^^~1~^~A~^^^^^^^^^~1~^~08/01/1982~
-~09036~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~
-~09036~^~432~^1.^1^^~1~^~A~^^^^^^^^^^~01/01/2007~
-~09036~^~435~^1.^0^^~4~^~NC~^^^^^^^^^^~01/01/2007~
-~09036~^~601~^0.^0^^~7~^~Z~^^^^^^^^^^~08/01/1982~
-~09037~^~208~^160.^0^^~4~^~NC~^^^^^^^^^^~08/01/2010~
-~09037~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2003~
-~09037~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2003~
-~09037~^~268~^670.^0^^~4~^~NC~^^^^^^^^^^~08/01/2010~
-~09037~^~301~^12.^29^0.^~1~^~A~^^^6^8.^19.^3^10.^14.^~2~^~03/01/2003~
-~09037~^~304~^29.^17^1.^~1~^~A~^^^5^17.^34.^2^22.^34.^~2~^~03/01/2003~
-~09037~^~305~^52.^16^1.^~1~^~A~^^^4^30.^70.^2^45.^59.^~2~^~03/01/2003~
-~09037~^~306~^485.^29^31.^~1~^~A~^^^6^219.^691.^4^394.^575.^~2~^~03/01/2003~
-~09037~^~307~^7.^23^1.^~1~^~A~^^^5^1.^17.^2^1.^11.^~2~^~03/01/2003~
-~09037~^~318~^146.^0^^~1~^~AS~^^^^^^^^^^~03/01/2003~
-~09037~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2002~
-~09037~^~320~^7.^0^^~1~^~AS~^^^^^^^^^^~03/01/2003~
-~09037~^~321~^62.^33^7.^~1~^~A~^^^6^32.^140.^4^40.^83.^~2~^~03/01/2003~
-~09037~^~322~^24.^31^11.^~1~^~A~^^^6^0.^100.^4^-7.^56.^~1, 2~^~03/01/2003~
-~09037~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~
-~09037~^~334~^28.^29^16.^~1~^~A~^^^5^0.^120.^3^-25.^81.^~1, 2~^~03/01/2003~
-~09037~^~337~^0.^7^0.^~1~^~A~^^^2^0.^0.^^^^~1, 2~^~03/01/2003~
-~09037~^~338~^271.^16^16.^~1~^~A~^^^3^170.^379.^2^199.^342.^~2~^~03/01/2003~
-~09037~^~417~^81.^24^10.^~1~^~A~^^^4^14.^155.^2^36.^125.^~2~^~05/01/2004~
-~09037~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~
-~09037~^~432~^81.^24^10.^~1~^~A~^^^4^14.^155.^2^36.^125.^^~08/01/2010~
-~09037~^~435~^81.^0^^~4~^~NC~^^^^^^^^^^~08/01/2010~
-~09037~^~601~^0.^0^^~7~^~Z~^^^^^^^^^^~08/01/1982~
-~09037~^~638~^2.^6^0.^~1~^~A~^^^1^2.^2.^5^1.^1.^~1, 4~^~03/01/2003~
-~09037~^~639~^5.^6^0.^~1~^~A~^^^1^5.^6.^5^4.^5.^~4~^~03/01/2003~
-~09037~^~641~^76.^6^5.^~1~^~A~^^^1^62.^98.^5^62.^90.^~4~^~03/01/2003~
-~09038~^~208~^167.^0^^~4~^~NC~^^^^^^^^^^~08/01/2010~
-~09038~^~268~^697.^0^^~4~^~NC~^^^^^^^^^^~08/01/2010~
-~09038~^~301~^13.^24^0.^~1~^~A~^^^4^8.^19.^3^10.^14.^~2~^~03/01/2003~
-~09038~^~304~^29.^12^1.^~1~^~A~^^^3^19.^34.^2^22.^36.^~2~^~03/01/2003~
-~09038~^~305~^54.^12^1.^~1~^~A~^^^3^41.^70.^2^46.^62.^~2~^~03/01/2003~
-~09038~^~306~^507.^24^34.^~1~^~A~^^^4^356.^691.^3^397.^616.^~2~^~03/01/2003~
-~09038~^~307~^8.^18^1.^~1~^~A~^^^3^2.^17.^2^1.^13.^~2~^~03/01/2003~
-~09038~^~318~^147.^0^^~1~^~AS~^^^^^^^^^^~03/01/2003~
-~09038~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2002~
-~09038~^~320~^7.^0^^~1~^~AS~^^^^^^^^^^~03/01/2003~
-~09038~^~321~^63.^29^8.^~1~^~A~^^^5^32.^140.^4^38.^87.^~2~^~03/01/2003~
-~09038~^~322~^24.^27^13.^~1~^~A~^^^5^0.^100.^4^-13.^60.^~1, 2~^~03/01/2003~
-~09038~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~
-~09038~^~334~^27.^25^19.^~1~^~A~^^^4^0.^120.^3^-35.^88.^~1, 2~^~03/01/2003~
-~09038~^~337~^0.^7^0.^~1~^~A~^^^2^0.^0.^^^^~1, 2, 3~^~03/01/2003~
-~09038~^~338~^271.^16^16.^~1~^~A~^^^3^170.^379.^2^199.^342.^~2~^~03/01/2003~
-~09038~^~417~^89.^20^12.^~1~^~A~^^^3^71.^155.^2^36.^140.^~2~^~05/01/2004~
-~09038~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~
-~09038~^~432~^89.^20^12.^~1~^~A~^^^3^71.^155.^2^36.^140.^^~08/01/2010~
-~09038~^~435~^89.^0^^~4~^~NC~^^^^^^^^^^~08/01/2010~
-~09038~^~601~^0.^0^^~7~^~Z~^^^^^^^^^^~08/01/1982~
-~09038~^~638~^2.^6^0.^~1~^~A~^^^1^2.^2.^5^1.^1.^~1, 4~^~03/01/2003~
-~09038~^~639~^5.^6^0.^~1~^~A~^^^1^5.^6.^5^4.^5.^~4~^~03/01/2003~
-~09038~^~641~^76.^6^5.^~1~^~A~^^^1^62.^98.^5^62.^90.^~4~^~03/01/2003~
-~09039~^~208~^120.^0^^~4~^~NC~^^^^^^^^^^~08/01/2010~
-~09039~^~268~^501.^0^^~4~^~NC~^^^^^^^^^^~08/01/2010~
-~09039~^~301~^10.^5^0.^~1~^~A~^^^2^9.^14.^1^0.^21.^~2~^~06/01/2003~
-~09039~^~304~^24.^5^3.^~1~^~A~^^^2^17.^27.^1^-20.^67.^~2~^~06/01/2003~
-~09039~^~305~^40.^4^5.^~1~^~A~^^^1^30.^55.^3^23.^57.^~4~^~06/01/2003~
-~09039~^~306~^351.^5^73.^~1~^~A~^^^2^219.^424.^1^-580.^1281.^~2~^~06/01/2003~
-~09039~^~307~^2.^5^0.^~1~^~A~^^^2^1.^4.^4^0.^3.^~4~^~06/01/2003~
-~09039~^~318~^140.^4^19.^~1~^~A~^^^1^98.^183.^3^78.^201.^~4~^~06/01/2003~
-~09039~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2002~
-~09039~^~320~^7.^4^0.^~1~^~A~^^^1^5.^9.^3^3.^10.^~4~^~06/01/2003~
-~09039~^~321~^53.^4^7.^~1~^~A~^^^1^38.^68.^3^28.^76.^~4~^~06/01/2003~
-~09039~^~322~^27.^4^6.^~1~^~A~^^^1^15.^41.^3^5.^48.^~4~^~06/01/2003~
-~09039~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~
-~09039~^~334~^36.^4^14.^~1~^~A~^^^1^16.^78.^3^-9.^81.^~4~^~06/01/2003~
-~09039~^~417~^35.^4^7.^~1~^~A~^^^1^14.^48.^3^11.^59.^~4~^~06/01/2003~
-~09039~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~
-~09039~^~432~^35.^4^7.^~1~^~A~^^^1^14.^48.^3^11.^59.^^~08/01/2010~
-~09039~^~435~^35.^0^^~4~^~NC~^^^^^^^^^^~08/01/2010~
-~09039~^~601~^0.^0^^~7~^~Z~^^^^^^^^^^~08/01/1982~
-~09040~^~208~^89.^0^^~4~^~NC~^^^^^^^^^^~04/01/2006~
-~09040~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~11/01/2000~
-~09040~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~11/01/2000~
-~09040~^~268~^371.^0^^~4~^~NC~^^^^^^^^^^~04/01/2006~
-~09040~^~301~^5.^45^0.^~1~^~A~^^^14^4.^7.^6^5.^5.^~2~^~12/01/2002~
-~09040~^~304~^27.^45^0.^~1~^~A~^^^14^18.^38.^1^22.^31.^~2~^~12/01/2002~
-~09040~^~305~^22.^45^0.^~1~^~A~^^^14^15.^29.^11^21.^21.^~2~^~12/01/2002~
-~09040~^~306~^358.^45^1.^~1~^~A~^^^14^308.^426.^7^353.^362.^~2~^~12/01/2002~
-~09040~^~307~^1.^45^0.^~1~^~A~^^^14^0.^5.^1^-4.^5.^~1, 2~^~12/01/2002~
-~09040~^~318~^64.^0^^~1~^~AS~^^^^^^^^^^~04/01/2006~
-~09040~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2002~
-~09040~^~320~^3.^0^^~1~^~AS~^^^^^^^^^^~04/01/2006~
-~09040~^~321~^26.^10^2.^~1~^~A~^^^3^14.^58.^1^-1.^53.^~1, 2~^~12/01/2002~
-~09040~^~322~^25.^8^4.^~1~^~A~^^^3^10.^75.^1^-31.^81.^~1, 2~^~12/01/2002~
-~09040~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~
-~09040~^~334~^0.^6^0.^~1~^~A~^^^2^0.^0.^^^^~1, 2, 3~^~12/01/2002~
-~09040~^~337~^0.^6^0.^~1~^~A~^^^2^0.^0.^^^^~1, 2, 3~^~12/01/2002~
-~09040~^~338~^22.^6^2.^~1~^~A~^^^2^13.^27.^2^9.^34.^~2, 3~^~12/01/2002~
-~09040~^~417~^20.^11^0.^~1~^~A~^^^3^8.^27.^1^14.^26.^~2~^~12/01/2002~
-~09040~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~
-~09040~^~432~^20.^11^0.^~1~^~A~^^^3^8.^27.^1^14.^26.^^~04/01/2006~
-~09040~^~435~^20.^0^^~4~^~NC~^^^^^^^^^^~04/01/2006~
-~09040~^~601~^0.^0^^~7~^~Z~^^^^^^^^^^~08/01/1982~
-~09040~^~636~^16.^0^^~1~^^^^^^^^^^^~08/01/1982~
-~09041~^~208~^346.^0^^~4~^~NC~^^^^^^^^^^~08/01/1982~
-~09041~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~12/01/2002~
-~09041~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~12/01/2002~
-~09041~^~268~^1448.^0^^~4~^^^^^^^^^^^~03/01/2007~
-~09041~^~301~^22.^0^^~1~^^^^^^^^^^^~08/01/1982~
-~09041~^~304~^108.^0^^~1~^^^^^^^^^^^~08/01/1982~
-~09041~^~305~^74.^0^^~1~^^^^^^^^^^^~08/01/1982~
-~09041~^~306~^1491.^0^^~1~^^^^^^^^^^^~08/01/1982~
-~09041~^~307~^3.^0^^~1~^^^^^^^^^^^~08/01/1982~
-~09041~^~318~^248.^0^^~4~^~BFSN~^~09040~^^^^^^^^^~12/01/2002~
-~09041~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2002~
-~09041~^~320~^12.^0^^~4~^~NC~^^^^^^^^^^~03/01/2007~
-~09041~^~321~^101.^0^^~4~^~BFSN~^~09040~^^^^^^^^^~12/01/2002~
-~09041~^~322~^96.^0^^~4~^~BFSN~^~09040~^^^^^^^^^~12/01/2002~
-~09041~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~
-~09041~^~334~^0.^0^^~4~^~BFSN~^~09040~^^^^^^^^^~12/01/2002~
-~09041~^~337~^0.^0^^~4~^~BFSN~^~09040~^^^^^^^^^~12/01/2002~
-~09041~^~338~^84.^0^^~4~^~BFSN~^~09040~^^^^^^^^^~12/01/2002~
-~09041~^~417~^14.^0^^~4~^^^^^^^^^^^~04/01/1985~
-~09041~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~
-~09041~^~432~^14.^0^^~4~^^^^^^^^^^^~03/01/2007~
-~09041~^~435~^14.^0^^~4~^~NC~^^^^^^^^^^~03/01/2007~
-~09041~^~601~^0.^0^^~7~^~Z~^^^^^^^^^^~08/01/1982~
-~09042~^~208~^43.^0^^~4~^~NC~^^^^^^^^^^~04/01/2006~
-~09042~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~
-~09042~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~
-~09042~^~268~^181.^0^^~4~^~NC~^^^^^^^^^^~04/01/2006~
-~09042~^~301~^29.^5^6.^~1~^~A~^^^2^14.^44.^3^6.^51.^~2, 3~^~02/01/2003~
-~09042~^~304~^20.^4^1.^~1~^~A~^^^2^19.^25.^1^5.^35.^~2, 3~^~02/01/2003~
-~09042~^~305~^22.^4^0.^~1~^~A~^^^2^15.^31.^1^13.^31.^~2, 3~^~02/01/2003~
-~09042~^~306~^162.^2^^~1~^~A~^^^1^159.^164.^1^^^^~05/01/2003~
-~09042~^~307~^1.^2^^~1~^~A~^^^1^1.^1.^1^^^^~05/01/2003~
-~09042~^~318~^214.^4^39.^~1~^~A~^^^2^67.^340.^2^44.^383.^~2, 3~^~02/01/2003~
-~09042~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2002~
-~09042~^~320~^11.^4^1.^~1~^~A~^^^2^3.^17.^2^2.^19.^~2, 3~^~02/01/2003~
-~09042~^~321~^128.^4^23.^~1~^~A~^^^2^40.^204.^2^26.^230.^~2, 3~^~02/01/2003~
-~09042~^~322~^0.^4^0.^~1~^~A~^^^2^0.^0.^^^^~1, 2, 3~^~02/01/2003~
-~09042~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~
-~09042~^~334~^0.^4^0.^~1~^~A~^^^2^0.^0.^^^^~1, 2, 3~^~02/01/2003~
-~09042~^~337~^0.^4^0.^~1~^~A~^^^2^0.^0.^^^^~1, 2, 3~^~02/01/2003~
-~09042~^~338~^118.^4^11.^~1~^~A~^^^2^87.^139.^2^69.^165.^~2, 3~^~02/01/2003~
-~09042~^~417~^25.^5^2.^~1~^~A~^^^2^20.^31.^3^18.^32.^~2, 3~^~02/01/2003~
-~09042~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~
-~09042~^~432~^25.^5^2.^~1~^~A~^^^2^20.^31.^3^18.^32.^^~04/01/2006~
-~09042~^~435~^25.^0^^~4~^~NC~^^^^^^^^^^~04/01/2006~
-~09042~^~601~^0.^0^^~7~^~Z~^^^^^^^^^^~08/01/1982~
-~09043~^~208~^38.^0^^~4~^~NC~^^^^^^^^^^~03/01/2007~
-~09043~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~
-~09043~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~
-~09043~^~268~^158.^0^^~4~^~NC~^^^^^^^^^^~03/01/2007~
-~09043~^~301~^12.^0^^~4~^~T~^^^^^^^^^^~02/01/2003~
-~09043~^~304~^21.^0^^~4~^~T~^^^^^^^^^^~02/01/2003~
-~09043~^~305~^12.^0^^~4~^~T~^^^^^^^^^^~02/01/2003~
-~09043~^~306~^135.^0^^~4~^~BFSY~^~09042~^^^^^^^^^~02/01/2003~
-~09043~^~307~^1.^0^^~4~^~T~^^^^^^^^^^~02/01/2003~
-~09043~^~318~^123.^0^^~4~^~BFSY~^~09042~^^^^^^^^^~02/01/2003~
-~09043~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~
-~09043~^~320~^6.^0^^~4~^~NC~^~09042~^^^^^^^^^~03/01/2007~
-~09043~^~321~^74.^0^^~4~^~BFSY~^~09042~^^^^^^^^^~02/01/2003~
-~09043~^~322~^0.^0^^~4~^~BFSY~^~09042~^^^^^^^^^~02/01/2003~
-~09043~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~
-~09043~^~334~^0.^0^^~4~^~BFSY~^~09042~^^^^^^^^^~02/01/2003~
-~09043~^~337~^0.^0^^~4~^~BFSY~^~09042~^^^^^^^^^~02/01/2003~
-~09043~^~338~^68.^0^^~4~^~BFSY~^~09042~^^^^^^^^^~02/01/2003~
-~09043~^~417~^10.^0^^~4~^~BFSY~^~09042~^^^^^^^^^~02/01/2003~
-~09043~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~
-~09043~^~432~^10.^0^^~4~^~BFSY~^^^^^^^^^^~03/01/2007~
-~09043~^~435~^10.^0^^~4~^~NC~^^^^^^^^^^~07/01/2008~
-~09043~^~601~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~
-~09044~^~208~^333.^0^^~4~^~NC~^^^^^^^^^^~03/01/2013~
-~09044~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2013~
-~09044~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2013~
-~09044~^~268~^1395.^0^^~4~^~NC~^^^^^^^^^^~03/01/2013~
-~09044~^~301~^38.^0^^~8~^~LC~^^^^^^^^^^~03/01/2013~
-~09044~^~304~^22.^0^^~4~^~FLC~^^^^^^^^^^~03/01/2013~
-~09044~^~305~^36.^0^^~4~^~FLC~^^^^^^^^^^~03/01/2013~
-~09044~^~306~^376.^0^^~4~^~FLC~^^^^^^^^^^~03/01/2013~
-~09044~^~307~^13.^0^^~8~^~LC~^^^^^^^^^^~03/01/2013~
-~09044~^~318~^2829.^0^^~8~^~LC~^^^^^^^^^^~03/01/2013~
-~09044~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2013~
-~09044~^~320~^141.^0^^~4~^~NC~^^^^^^^^^^~03/01/2013~
-~09044~^~321~^1697.^0^^~4~^~NR~^^^^^^^^^^~03/01/2013~
-~09044~^~322~^0.^0^^~4~^~FLC~^^^^^^^^^^~03/01/2013~
-~09044~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2013~
-~09044~^~334~^0.^0^^~4~^~FLC~^^^^^^^^^^~03/01/2013~
-~09044~^~337~^0.^0^^~4~^~FLC~^^^^^^^^^^~03/01/2013~
-~09044~^~338~^173.^0^^~4~^~FLC~^^^^^^^^^^~03/01/2013~
-~09044~^~417~^11.^0^^~4~^~FLC~^^^^^^^^^^~03/01/2013~
-~09044~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2013~
-~09044~^~432~^11.^0^^~4~^~FLC~^^^^^^^^^^~03/01/2013~
-~09044~^~435~^11.^0^^~4~^~NC~^^^^^^^^^^~03/01/2013~
-~09044~^~601~^0.^0^^~8~^~LC~^^^^^^^^^^~03/01/2013~
-~09046~^~208~^92.^0^^~4~^~NC~^^^^^^^^^^~08/01/1982~
-~09046~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~
-~09046~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~
-~09046~^~268~^385.^0^^~4~^^^^^^^^^^^~12/01/2006~
-~09046~^~301~^21.^3^1.^~1~^^^^^^^^^^^~08/01/1982~
-~09046~^~304~^17.^3^0.^~1~^^^^^^^^^^^~08/01/1982~
-~09046~^~305~^14.^3^0.^~1~^^^^^^^^^^^~08/01/1982~
-~09046~^~306~^99.^3^6.^~1~^^^^^^^^^^^~08/01/1982~
-~09046~^~307~^3.^3^0.^~1~^^^^^^^^^^^~08/01/1982~
-~09046~^~318~^219.^3^9.^~1~^^^^^^^^^^^~08/01/1982~
-~09046~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2002~
-~09046~^~320~^11.^3^0.^~1~^^^^^^^^^^^~12/01/2006~
-~09046~^~321~^131.^0^^~4~^~BNA~^~09042~^^^^^^^^^~02/01/2003~
-~09046~^~322~^0.^0^^~4~^~BNA~^~09042~^^^^^^^^^~02/01/2003~
-~09046~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~
-~09046~^~334~^0.^0^^~4~^~BNA~^~09042~^^^^^^^^^~02/01/2003~
-~09046~^~337~^0.^0^^~4~^~BFYN~^~09042~^^^^^^^^^~02/01/2003~
-~09046~^~338~^79.^0^^~4~^~BFYN~^~09042~^^^^^^^^^~02/01/2003~
-~09046~^~417~^27.^3^1.^~1~^^^^^^^^^^^~08/01/1982~
-~09046~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~
-~09046~^~432~^27.^3^1.^~1~^^^^^^^^^^^~12/01/2006~
-~09046~^~435~^27.^0^^~4~^~NC~^^^^^^^^^^~12/01/2006~
-~09046~^~601~^0.^0^^~7~^~Z~^^^^^^^^^^~08/01/1982~
-~09048~^~208~^64.^0^^~4~^~NC~^^^^^^^^^^~08/01/1982~
-~09048~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~11/01/2000~
-~09048~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~11/01/2000~
-~09048~^~268~^268.^0^^~4~^^^^^^^^^^^~12/01/2006~
-~09048~^~301~^29.^3^4.^~1~^^^^^^^^^^^~08/01/1982~
-~09048~^~304~^22.^3^2.^~1~^^^^^^^^^^^~08/01/1982~
-~09048~^~305~^30.^3^3.^~1~^^^^^^^^^^^~08/01/1982~
-~09048~^~306~^140.^3^13.^~1~^^^^^^^^^^^~08/01/1982~
-~09048~^~307~^1.^3^0.^~1~^^^^^^^^^^^~08/01/1982~
-~09048~^~318~^114.^3^23.^~1~^^^^^^^^^^^~08/01/1982~
-~09048~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2002~
-~09048~^~320~^6.^3^1.^~1~^^^^^^^^^^^~12/01/2006~
-~09048~^~321~^68.^0^^~4~^~BNA~^~09042~^^^^^^^^^~02/01/2003~
-~09048~^~322~^0.^0^^~4~^~BNA~^~09042~^^^^^^^^^~02/01/2003~
-~09048~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~
-~09048~^~334~^0.^0^^~4~^~BNA~^~09042~^^^^^^^^^~02/01/2003~
-~09048~^~337~^0.^0^^~4~^~BFZN~^~09042~^^^^^^^^^~02/01/2003~
-~09048~^~338~^118.^0^^~4~^~BFZN~^~09042~^^^^^^^^^~02/01/2003~
-~09048~^~417~^34.^3^3.^~1~^^^^^^^^^^^~08/01/1982~
-~09048~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~
-~09048~^~432~^34.^3^3.^~1~^^^^^^^^^^^~12/01/2006~
-~09048~^~435~^34.^0^^~4~^~NC~^^^^^^^^^^~12/01/2006~
-~09048~^~601~^0.^0^^~7~^~Z~^^^^^^^^^^~08/01/1982~
-~09050~^~208~^57.^0^^~4~^~NC~^^^^^^^^^^~06/01/2010~
-~09050~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~11/01/2000~
-~09050~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~11/01/2000~
-~09050~^~268~^240.^0^^~4~^~NC~^^^^^^^^^^~06/01/2010~
-~09050~^~301~^6.^12^0.^~1~^~A~^^^3^2.^11.^1^-3.^16.^~2~^~09/01/2002~
-~09050~^~304~^6.^12^0.^~1~^~A~^^^3^5.^7.^1^3.^8.^~2~^~09/01/2002~
-~09050~^~305~^12.^12^0.^~1~^~A~^^^3^7.^16.^1^5.^18.^~2~^~09/01/2002~
-~09050~^~306~^77.^6^5.^~1~^~A~^^^2^72.^83.^1^8.^146.^~4~^~05/01/2003~
-~09050~^~307~^1.^6^0.^~1~^~A~^^^2^0.^1.^1^-3.^5.^~4~^~05/01/2003~
-~09050~^~318~^54.^0^^~1~^~AS~^^^^^^^^^^~09/01/2002~
-~09050~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2002~
-~09050~^~320~^3.^0^^~1~^~AS~^^^^^^^^^^~09/01/2002~
-~09050~^~321~^32.^16^3.^~1~^~A~^^^4^13.^89.^1^-9.^74.^~2~^~09/01/2002~
-~09050~^~322~^0.^12^0.^~1~^~A~^^^3^0.^0.^^^^~1, 2~^~09/01/2002~
-~09050~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~
-~09050~^~334~^0.^12^0.^~1~^~A~^^^3^0.^0.^^^^~1, 2, 3~^~09/01/2002~
-~09050~^~337~^0.^6^0.^~1~^~A~^^^2^0.^0.^^^^~1, 2, 3~^~09/01/2002~
-~09050~^~338~^80.^6^5.^~1~^~A~^^^2^63.^113.^1^34.^124.^~2, 3~^~09/01/2002~
-~09050~^~417~^6.^12^0.^~1~^~A~^^^3^3.^11.^1^4.^7.^~1, 2~^~09/01/2002~
-~09050~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~
-~09050~^~432~^6.^12^0.^~1~^~A~^^^3^3.^11.^1^4.^7.^^~06/01/2010~
-~09050~^~435~^6.^0^^~4~^~NC~^^^^^^^^^^~06/01/2010~
-~09050~^~601~^0.^0^^~7~^~Z~^^^^^^^^^^~08/01/1982~
-~09052~^~208~^88.^0^^~4~^~NC~^^^^^^^^^^~08/01/1982~
-~09052~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~09/01/2002~
-~09052~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~09/01/2002~
-~09052~^~268~^368.^0^^~4~^^^^^^^^^^^~01/01/2007~
-~09052~^~301~^5.^3^0.^~1~^^^^^^^^^^^~08/01/1982~
-~09052~^~304~^4.^3^0.^~1~^^^^^^^^^^^~08/01/1982~
-~09052~^~305~^10.^3^0.^~1~^^^^^^^^^^^~08/01/1982~
-~09052~^~306~^40.^3^5.^~1~^^^^^^^^^^^~08/01/1982~
-~09052~^~307~^3.^3^0.^~1~^^^^^^^^^^^~08/01/1982~
-~09052~^~318~^36.^0^^~4~^~NC~^^^^^^^^^^~01/01/2007~
-~09052~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2002~
-~09052~^~320~^2.^0^^~4~^~NC~^^^^^^^^^^~01/01/2007~
-~09052~^~321~^22.^0^^~4~^~BFYN~^~09050~^^^^^^^^^~12/01/2002~
-~09052~^~322~^0.^0^^~4~^~BFYN~^~09050~^^^^^^^^^~12/01/2002~
-~09052~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~
-~09052~^~334~^0.^0^^~4~^~BFYN~^~09050~^^^^^^^^^~12/01/2002~
-~09052~^~337~^0.^0^^~4~^~BFYN~^~09050~^^^^^^^^^~12/01/2002~
-~09052~^~338~^53.^0^^~4~^~BFYN~^~09050~^^^^^^^^^~12/01/2002~
-~09052~^~417~^2.^3^0.^~1~^^^^^^^^^^^~08/01/1982~
-~09052~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~
-~09052~^~432~^2.^3^0.^~1~^^^^^^^^^^^~01/01/2007~
-~09052~^~435~^2.^0^^~4~^~NC~^^^^^^^^^^~01/01/2007~
-~09052~^~601~^0.^0^^~7~^~Z~^^^^^^^^^^~08/01/1982~
-~09053~^~208~^57.^0^^~4~^~NC~^^^^^^^^^^~02/01/2013~
-~09053~^~268~^238.^0^^~4~^~NC~^^^^^^^^^^~02/01/2013~
-~09053~^~301~^17.^1^^~1~^~A~^^^^^^^^^^~05/01/2008~
-~09053~^~304~^7.^1^^~1~^~A~^^^^^^^^^^~05/01/2008~
-~09053~^~305~^13.^1^^~1~^~A~^^^^^^^^^^~05/01/2008~
-~09053~^~306~^68.^1^^~1~^~A~^^^^^^^^^^~05/01/2008~
-~09053~^~307~^3.^1^^~1~^~A~^^^^^^^^^^~05/01/2008~
-~09053~^~318~^59.^1^^~1~^~A~^^^^^^^^^^~05/01/2008~
-~09053~^~320~^3.^1^^~1~^~A~^^^^^^^^^^~05/01/2008~
-~09053~^~321~^35.^1^^~1~^~A~^^^^^^^^^^~05/01/2008~
-~09053~^~322~^2.^1^^~1~^~A~^^^^^^^^^^~05/01/2008~
-~09053~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2013~
-~09053~^~601~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2013~
-~09054~^~208~^51.^0^^~4~^~NC~^^^^^^^^^^~08/01/1982~
-~09054~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~09/01/2002~
-~09054~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~09/01/2002~
-~09054~^~268~^213.^0^^~4~^^^^^^^^^^^~12/01/2006~
-~09054~^~301~^8.^3^2.^~1~^^^^^^^^^^^~08/01/1982~
-~09054~^~304~^5.^3^0.^~1~^^^^^^^^^^^~08/01/1982~
-~09054~^~305~^11.^3^2.^~1~^^^^^^^^^^^~08/01/1982~
-~09054~^~306~^54.^3^1.^~1~^^^^^^^^^^^~08/01/1982~
-~09054~^~307~^1.^3^0.^~1~^^^^^^^^^^^~08/01/1982~
-~09054~^~318~^46.^0^^~4~^~NC~^^^^^^^^^^~12/01/2006~
-~09054~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2002~
-~09054~^~320~^2.^0^^~4~^~NC~^^^^^^^^^^~12/01/2006~
-~09054~^~321~^28.^0^^~4~^~BFSN~^~09050~^^^^^^^^^~09/01/2002~
-~09054~^~322~^0.^0^^~4~^~BFSN~^~09050~^^^^^^^^^~09/01/2002~
-~09054~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~
-~09054~^~334~^0.^0^^~4~^~BFSN~^~09050~^^^^^^^^^~09/01/2002~
-~09054~^~337~^0.^0^^~4~^~BFSN~^~09050~^^^^^^^^^~09/01/2002~
-~09054~^~338~^68.^0^^~4~^~BFSN~^~09050~^^^^^^^^^~09/01/2002~
-~09054~^~417~^7.^3^1.^~1~^^^^^^^^^^^~08/01/1982~
-~09054~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~
-~09054~^~432~^7.^3^1.^~1~^^^^^^^^^^^~12/01/2006~
-~09054~^~435~^7.^0^^~4~^~NC~^^^^^^^^^^~12/01/2006~
-~09054~^~601~^0.^0^^~7~^~Z~^^^^^^^^^^~08/01/1982~
-~09055~^~208~^85.^0^^~4~^~NC~^^^^^^^^^^~06/01/2011~
-~09055~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~09/01/2002~
-~09055~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~09/01/2002~
-~09055~^~268~^355.^0^^~4~^~NC~^^^^^^^^^^~06/01/2011~
-~09055~^~301~^6.^3^0.^~1~^^^^^^^^^^^~08/01/1982~
-~09055~^~304~^2.^3^0.^~1~^^^^^^^^^^^~08/01/1982~
-~09055~^~305~^7.^3^0.^~1~^^^^^^^^^^^~08/01/1982~
-~09055~^~306~^60.^3^9.^~1~^^^^^^^^^^^~08/01/1982~
-~09055~^~307~^1.^3^0.^~1~^^^^^^^^^^^~08/01/1982~
-~09055~^~318~^49.^0^^~4~^~FLA~^^^^^^^^^^~03/01/2007~
-~09055~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2002~
-~09055~^~320~^2.^0^^~4~^~NC~^^^^^^^^^^~03/01/2007~
-~09055~^~321~^30.^0^^~4~^~FLA~^^^^^^^^^^~03/01/2007~
-~09055~^~322~^0.^0^^~4~^~FLA~^^^^^^^^^^~09/01/2002~
-~09055~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~
-~09055~^~334~^0.^0^^~4~^~FLA~^^^^^^^^^^~09/01/2002~
-~09055~^~337~^0.^0^^~4~^~FLA~^^^^^^^^^^~09/01/2002~
-~09055~^~338~^73.^0^^~4~^~FLA~^^^^^^^^^^~03/01/2007~
-~09055~^~417~^7.^0^^~1~^^^^^^^^^^^~12/01/2002~
-~09055~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~
-~09055~^~432~^7.^0^^~1~^^^^^^^^^^^~03/01/2007~
-~09055~^~435~^7.^0^^~4~^~NC~^^^^^^^^^^~03/01/2007~
-~09055~^~601~^0.^0^^~7~^~Z~^^^^^^^^^^~08/01/1982~
-~09056~^~208~^88.^0^^~4~^~NC~^^^^^^^^^^~08/01/1982~
-~09056~^~268~^368.^0^^~4~^^^^^^^^^^^
-~09056~^~301~^18.^3^0.^~1~^^^^^^^^^^^~08/01/1982~
-~09056~^~304~^11.^3^0.^~1~^^^^^^^^^^^~08/01/1982~
-~09056~^~305~^10.^3^0.^~1~^^^^^^^^^^^~08/01/1982~
-~09056~^~306~^90.^3^4.^~1~^^^^^^^^^^^~08/01/1982~
-~09056~^~307~^3.^3^0.^~1~^^^^^^^^^^^~08/01/1982~
-~09056~^~318~^40.^3^3.^~1~^^^^^^^^^^^~08/01/1982~
-~09056~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2002~
-~09056~^~320~^2.^3^0.^~1~^^^^^^^^^^^~06/01/2002~
-~09056~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~
-~09056~^~417~^34.^3^2.^~1~^^^^^^^^^^^~08/01/1982~
-~09056~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~
-~09056~^~432~^34.^3^2.^~1~^^^^^^^^^^^~08/01/1982~
-~09056~^~435~^34.^0^^~4~^~NC~^^^^^^^^^^~01/01/2001~
-~09056~^~601~^0.^0^^~7~^~Z~^^^^^^^^^^~08/01/1982~
-~09057~^~208~^50.^0^^~4~^~NC~^^^^^^^^^^~08/01/1982~
-~09057~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~11/01/2000~
-~09057~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~11/01/2000~
-~09057~^~268~^209.^0^^~4~^^^^^^^^^^^~02/01/2007~
-~09057~^~301~^27.^3^1.^~1~^^^^^^^^^^^~08/01/1982~
-~09057~^~304~^16.^3^0.^~1~^^^^^^^^^^^~08/01/1982~
-~09057~^~305~^27.^3^0.^~1~^^^^^^^^^^^~08/01/1982~
-~09057~^~306~^139.^3^5.^~1~^^^^^^^^^^^~08/01/1982~
-~09057~^~307~^1.^3^0.^~1~^^^^^^^^^^^~08/01/1982~
-~09057~^~318~^67.^3^8.^~1~^^^^^^^^^^^~08/01/1982~
-~09057~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2002~
-~09057~^~320~^3.^3^0.^~1~^^^^^^^^^^^~05/01/2007~
-~09057~^~321~^40.^0^^~4~^~BNA~^~09042~^^^^^^^^^~02/01/2003~
-~09057~^~322~^0.^0^^~4~^~BNA~^~09042~^^^^^^^^^~02/01/2003~
-~09057~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~
-~09057~^~334~^0.^0^^~4~^~BNA~^~09042~^^^^^^^^^~02/01/2003~
-~09057~^~337~^0.^0^^~4~^~BFZN~^~09042~^^^^^^^^^~02/01/2003~
-~09057~^~338~^118.^0^^~4~^~BFZN~^~09042~^^^^^^^^^~02/01/2003~
-~09057~^~417~^63.^3^4.^~1~^^^^^^^^^^^~08/01/1982~
-~09057~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~
-~09057~^~432~^63.^3^4.^~1~^^^^^^^^^^^~05/01/2007~
-~09057~^~435~^63.^0^^~4~^~NC~^^^^^^^^^^~05/01/2007~
-~09057~^~601~^0.^0^^~7~^~Z~^^^^^^^^^^~08/01/1982~
-~09059~^~208~^103.^0^^~4~^~NC~^^^^^^^^^^~08/01/1982~
-~09059~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~08/01/2002~
-~09059~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~08/01/2002~
-~09059~^~268~^431.^0^^~4~^^^^^^^^^^^~01/01/2007~
-~09059~^~301~^17.^2^^~1~^^^^^^^^^^^~08/01/1982~
-~09059~^~304~^25.^2^^~1~^^^^^^^^^^^~08/01/1982~
-~09059~^~305~^30.^2^^~1~^^^^^^^^^^^~08/01/1982~
-~09059~^~306~^490.^2^^~1~^^^^^^^^^^^~08/01/1982~
-~09059~^~307~^2.^2^^~1~^^^^^^^^^^^~08/01/1982~
-~09059~^~318~^0.^2^^~1~^~A~^^^^^^^^^^~03/01/2003~
-~09059~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2002~
-~09059~^~320~^0.^2^^~1~^~A~^^^^^^^^^^~03/01/2003~
-~09059~^~321~^0.^2^^~1~^~A~^^^^^^^^^~1~^~03/01/2003~
-~09059~^~322~^0.^2^^~1~^~A~^^^^^^^^^~1~^~03/01/2003~
-~09059~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~
-~09059~^~334~^0.^2^^~1~^~A~^^^^^^^^^~1~^~03/01/2003~
-~09059~^~337~^0.^0^^~4~^~BFZN~^~09040~^^^^^^^^^~03/01/2003~
-~09059~^~338~^22.^0^^~4~^~BFZN~^~09040~^^^^^^^^^~03/01/2003~
-~09059~^~417~^14.^0^^~4~^^^^^^^^^^^~04/01/1985~
-~09059~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~
-~09059~^~432~^14.^0^^~4~^^^^^^^^^^^~01/01/2007~
-~09059~^~435~^14.^0^^~4~^~NC~^^^^^^^^^^~01/01/2007~
-~09059~^~601~^0.^0^^~7~^~Z~^^^^^^^^^^~08/01/1982~
-~09060~^~208~^31.^0^^~4~^~NC~^^^^^^^^^^~03/01/2007~
-~09060~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~
-~09060~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~
-~09060~^~268~^128.^0^^~4~^~NC~^^^^^^^^^^~03/01/2007~
-~09060~^~301~^3.^5^0.^~1~^~A~^^^2^3.^4.^4^2.^4.^~4~^~09/01/2003~
-~09060~^~304~^10.^5^0.^~1~^~A~^^^2^9.^11.^4^8.^10.^~4~^~09/01/2003~
-~09060~^~305~^12.^4^0.^~1~^~A~^^^1^9.^13.^3^8.^14.^~4~^~09/01/2003~
-~09060~^~306~^133.^5^8.^~1~^~A~^^^2^117.^164.^4^109.^155.^~4~^~09/01/2003~
-~09060~^~307~^2.^5^0.^~1~^~A~^^^2^1.^3.^4^0.^2.^~4~^~09/01/2003~
-~09060~^~318~^61.^4^19.^~1~^~A~^^^1^17.^96.^3^-1.^124.^~4~^~02/01/2003~
-~09060~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2002~
-~09060~^~320~^3.^4^0.^~1~^~A~^^^1^1.^5.^3^0.^6.^~4~^~02/01/2003~
-~09060~^~321~^25.^4^24.^~1~^~A~^^^1^0.^49.^1^-286.^335.^~4~^~02/01/2003~
-~09060~^~322~^24.^4^8.^~1~^~A~^^^1^16.^33.^1^-83.^132.^~4~^~02/01/2003~
-~09060~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~
-~09060~^~334~^0.^4^0.^~1~^~A~^^^1^0.^0.^1^0.^0.^~4~^~02/01/2003~
-~09060~^~337~^0.^1^^~1~^~A~^^^^^^^^^^~02/01/2003~
-~09060~^~338~^66.^1^^~1~^~A~^^^^^^^^^^~02/01/2003~
-~09060~^~417~^12.^4^2.^~1~^~A~^^^1^7.^18.^3^3.^19.^~4~^~09/01/2003~
-~09060~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~
-~09060~^~432~^12.^4^2.^~1~^~A~^^^1^7.^18.^3^3.^19.^^~03/01/2007~
-~09060~^~435~^12.^0^^~4~^~NC~^^^^^^^^^^~03/01/2007~
-~09060~^~601~^0.^0^^~7~^~Z~^^^^^^^^^^~08/01/1982~
-~09061~^~208~^62.^0^^~4~^~NC~^^^^^^^^^^~08/01/1982~
-~09061~^~268~^259.^0^^~4~^^^^^^^^^^^
-~09061~^~301~^11.^0^^~1~^^^^^^^^^^^~08/01/1982~
-~09061~^~304~^16.^2^^~1~^^^^^^^^^^^~08/01/1982~
-~09061~^~305~^7.^0^^~1~^^^^^^^^^^^~08/01/1982~
-~09061~^~306~^260.^2^^~1~^^^^^^^^^^^~08/01/1982~
-~09061~^~307~^3.^2^^~1~^^^^^^^^^^^~08/01/1982~
-~09061~^~318~^40.^0^^~1~^^^^^^^^^^^~08/01/1982~
-~09061~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2002~
-~09061~^~320~^2.^0^^~1~^^^^^^^^^^^~06/01/2002~
-~09061~^~601~^0.^0^^~7~^~Z~^^^^^^^^^^~08/01/1982~
-~09062~^~208~^75.^0^^~4~^~NC~^^^^^^^^^^~08/01/2009~
-~09062~^~268~^313.^0^^~4~^~NC~^^^^^^^^^^~08/01/2009~
-~09062~^~301~^10.^6^2.^~1~^~A~^^^3^6.^16.^2^-1.^21.^~2~^~06/01/2009~
-~09062~^~304~^17.^6^0.^~1~^~A~^^^3^15.^20.^2^13.^20.^~2~^~06/01/2009~
-~09062~^~305~^26.^6^0.^~1~^~A~^^^3^20.^31.^2^23.^29.^~2~^~06/01/2009~
-~09062~^~306~^287.^6^30.^~1~^~A~^^^3^226.^368.^2^154.^419.^~2~^~06/01/2009~
-~09062~^~307~^7.^6^2.^~1~^~A~^^^3^4.^16.^2^-3.^16.^~2~^~06/01/2009~
-~09062~^~318~^5.^3^0.^~1~^~A~^^^1^4.^6.^2^2.^7.^~2, 3~^~07/01/2009~
-~09062~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2002~
-~09062~^~320~^0.^3^0.^~1~^~A~^^^1^0.^0.^2^0.^0.^~2, 3~^~07/01/2009~
-~09062~^~321~^2.^3^0.^~1~^~A~^^^1^2.^3.^2^0.^4.^~2, 3~^~07/01/2009~
-~09062~^~322~^0.^3^0.^~1~^~A~^^^1^0.^0.^2^0.^0.^~1, 2, 3~^~07/01/2009~
-~09062~^~334~^1.^3^0.^~1~^~A~^^^1^1.^2.^2^0.^2.^~2, 3~^~07/01/2009~
-~09062~^~337~^0.^3^0.^~1~^~A~^^^1^0.^0.^^^^~1, 2, 3~^~07/01/2009~
-~09062~^~338~^6.^3^0.^~1~^~A~^^^1^5.^7.^2^2.^9.^~2, 3~^~07/01/2009~
-~09062~^~417~^23.^4^4.^~1~^~A~^^^2^18.^34.^1^-38.^84.^~2~^~06/01/2009~
-~09062~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~07/01/2009~
-~09062~^~432~^23.^4^4.^~1~^~A~^^^2^18.^34.^1^-38.^84.^^~08/01/2009~
-~09062~^~435~^23.^0^^~4~^~NC~^^^^^^^^^^~08/01/2009~
-~09062~^~601~^0.^0^^~7~^~Z~^^^^^^^^^^~08/01/1982~
-~09063~^~208~^50.^0^^~4~^~NC~^^^^^^^^^^~08/01/1982~
-~09063~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~11/01/2000~
-~09063~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~11/01/2000~
-~09063~^~268~^209.^0^^~4~^^^^^^^^^^^~02/01/2007~
-~09063~^~301~^16.^331^^~1~^^^^^^^^^^^~08/01/1982~
-~09063~^~304~^9.^347^^~1~^^^^^^^^^^^~08/01/1982~
-~09063~^~305~^15.^347^^~1~^^^^^^^^^^^~08/01/1982~
-~09063~^~306~^173.^339^^~1~^^^^^^^^^^^~08/01/1982~
-~09063~^~307~^3.^339^^~1~^^^^^^^^^^^~08/01/1982~
-~09063~^~318~^1283.^330^18.^~1~^^^^^^^^^^^~08/01/1982~
-~09063~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2002~
-~09063~^~320~^64.^330^0.^~1~^^^^^^^^^^^~02/01/2007~
-~09063~^~321~^770.^0^^~4~^~BNA~^~09070~^^^^^^^^^~10/01/2002~
-~09063~^~322~^0.^0^^~4~^~BNA~^~09070~^^^^^^^^^~10/01/2002~
-~09063~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~
-~09063~^~334~^0.^0^^~4~^~BNA~^~09070~^^^^^^^^^~10/01/2002~
-~09063~^~337~^0.^0^^~4~^~BFZN~^~09070~^^^^^^^^^~10/01/2002~
-~09063~^~338~^85.^0^^~4~^~BFZN~^~09070~^^^^^^^^^~10/01/2002~
-~09063~^~417~^8.^4^0.^~1~^^^^^^^^^^^~08/01/1982~
-~09063~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~
-~09063~^~432~^8.^4^0.^~1~^^^^^^^^^^^~02/01/2007~
-~09063~^~435~^8.^0^^~4~^~NC~^^^^^^^^^^~02/01/2007~
-~09063~^~601~^0.^0^^~7~^~Z~^^^^^^^^^^~08/01/1982~
-~09064~^~208~^36.^0^^~4~^~NC~^^^^^^^^^^~08/01/1982~
-~09064~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~12/01/2002~
-~09064~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~12/01/2002~
-~09064~^~268~^151.^0^^~4~^^^^^^^^^^^~02/01/2007~
-~09064~^~301~^11.^5^0.^~1~^^^^^^^^^^^~08/01/1982~
-~09064~^~304~^6.^0^^~1~^^^^^^^^^^^~08/01/1982~
-~09064~^~305~^10.^0^^~1~^^^^^^^^^^^~08/01/1982~
-~09064~^~306~^98.^5^7.^~1~^^^^^^^^^^^~08/01/1982~
-~09064~^~307~^7.^3^1.^~1~^^^^^^^^^^^~08/01/1982~
-~09064~^~318~^754.^5^40.^~1~^^^^^^^^^^^~08/01/1982~
-~09064~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2002~
-~09064~^~320~^38.^5^2.^~1~^^^^^^^^^^^~02/01/2007~
-~09064~^~321~^452.^0^^~4~^~BNA~^~09070~^^^^^^^^^~12/01/2002~
-~09064~^~322~^0.^0^^~4~^~BNA~^~09070~^^^^^^^^^~12/01/2002~
-~09064~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~
-~09064~^~334~^0.^0^^~4~^~BNA~^~09070~^^^^^^^^^~12/01/2002~
-~09064~^~337~^0.^0^^~4~^~BFYN~^~09070~^^^^^^^^^~01/01/2003~
-~09064~^~338~^57.^0^^~4~^~BFYN~^~09070~^^^^^^^^^~01/01/2003~
-~09064~^~417~^8.^3^1.^~1~^^^^^^^^^^^~08/01/1982~
-~09064~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~
-~09064~^~432~^8.^3^1.^~1~^^^^^^^^^^^~02/01/2007~
-~09064~^~435~^8.^0^^~4~^~NC~^^^^^^^^^^~02/01/2007~
-~09064~^~601~^0.^0^^~7~^~Z~^^^^^^^^^^~08/01/1982~
-~09065~^~208~^75.^0^^~4~^~NC~^^^^^^^^^^~08/01/1982~
-~09065~^~268~^314.^0^^~4~^^^^^^^^^^^
-~09065~^~301~^10.^0^^~1~^^^^^^^^^^^~08/01/1982~
-~09065~^~304~^6.^0^^~1~^^^^^^^^^^^~08/01/1982~
-~09065~^~305~^10.^0^^~1~^^^^^^^^^^^~08/01/1982~
-~09065~^~306~^95.^0^^~1~^^^^^^^^^^^~08/01/1982~
-~09065~^~307~^7.^0^^~1~^^^^^^^^^^^~08/01/1982~
-~09065~^~318~^726.^0^^~1~^^^^^^^^^^^~08/01/1982~
-~09065~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2002~
-~09065~^~320~^36.^0^^~1~^^^^^^^^^^^~06/01/2002~
-~09065~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~
-~09065~^~417~^8.^0^^~1~^^^^^^^^^^^~08/01/1982~
-~09065~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~
-~09065~^~432~^8.^0^^~1~^^^^^^^^^^^~08/01/1982~
-~09065~^~435~^8.^0^^~4~^~NC~^^^^^^^^^^~01/01/2001~
-~09065~^~601~^0.^0^^~7~^~Z~^^^^^^^^^^~08/01/1982~
-~09066~^~208~^91.^0^^~4~^~NC~^^^^^^^^^^~08/01/1982~
-~09066~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2003~
-~09066~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2003~
-~09066~^~268~^381.^0^^~4~^^^^^^^^^^^~03/01/2007~
-~09066~^~301~^10.^0^^~1~^^^^^^^^^^^~08/01/1982~
-~09066~^~304~^6.^0^^~1~^^^^^^^^^^^~08/01/1982~
-~09066~^~305~^10.^0^^~1~^^^^^^^^^^^~08/01/1982~
-~09066~^~306~^93.^0^^~1~^^^^^^^^^^^~08/01/1982~
-~09066~^~307~^7.^0^^~1~^^^^^^^^^^^~08/01/1982~
-~09066~^~318~^714.^0^^~1~^^^^^^^^^^^~08/01/1982~
-~09066~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2002~
-~09066~^~320~^36.^0^^~1~^^^^^^^^^^^~03/01/2007~
-~09066~^~321~^428.^0^^~4~^~BNA~^~09070~^^^^^^^^^~01/01/2003~
-~09066~^~322~^0.^0^^~4~^~BNA~^~09070~^^^^^^^^^~01/01/2003~
-~09066~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~
-~09066~^~334~^0.^0^^~4~^~BNA~^~09070~^^^^^^^^^~01/01/2003~
-~09066~^~337~^0.^0^^~4~^~BFYN~^~09070~^^^^^^^^^~01/01/2003~
-~09066~^~338~^57.^0^^~4~^~BFYN~^~09070~^^^^^^^^^~01/01/2003~
-~09066~^~417~^8.^0^^~1~^^^^^^^^^^^~08/01/1982~
-~09066~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~
-~09066~^~432~^8.^0^^~1~^^^^^^^^^^^~03/01/2007~
-~09066~^~435~^8.^0^^~4~^~NC~^^^^^^^^^^~03/01/2007~
-~09066~^~601~^0.^0^^~7~^~Z~^^^^^^^^^^~08/01/1982~
-~09067~^~208~^114.^0^^~4~^~NC~^^^^^^^^^^~08/01/1982~
-~09067~^~268~^477.^0^^~4~^^^^^^^^^^^
-~09067~^~301~^10.^0^^~1~^^^^^^^^^^^~08/01/1982~
-~09067~^~304~^5.^0^^~1~^^^^^^^^^^^~08/01/1982~
-~09067~^~305~^9.^0^^~1~^^^^^^^^^^^~08/01/1982~
-~09067~^~306~^91.^0^^~1~^^^^^^^^^^^~08/01/1982~
-~09067~^~307~^7.^0^^~1~^^^^^^^^^^^~08/01/1982~
-~09067~^~318~^696.^0^^~1~^^^^^^^^^^^~08/01/1982~
-~09067~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2002~
-~09067~^~320~^35.^0^^~1~^^^^^^^^^^^~06/01/2002~
-~09067~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~
-~09067~^~417~^7.^0^^~1~^^^^^^^^^^^~08/01/1982~
-~09067~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~
-~09067~^~432~^7.^0^^~1~^^^^^^^^^^^~08/01/1982~
-~09067~^~435~^7.^0^^~4~^~NC~^^^^^^^^^^~01/01/2001~
-~09067~^~601~^0.^0^^~7~^~Z~^^^^^^^^^^~08/01/1982~
-~09068~^~208~^46.^0^^~4~^~NC~^^^^^^^^^^~08/01/1982~
-~09068~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2003~
-~09068~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2003~
-~09068~^~268~^192.^0^^~4~^^^^^^^^^^^~02/01/2007~
-~09068~^~301~^13.^3^0.^~1~^^^^^^^^^^^~08/01/1982~
-~09068~^~304~^9.^3^0.^~1~^^^^^^^^^^^~08/01/1982~
-~09068~^~305~^16.^3^0.^~1~^^^^^^^^^^^~08/01/1982~
-~09068~^~306~^124.^3^11.^~1~^^^^^^^^^^^~08/01/1982~
-~09068~^~307~^1.^3^0.^~1~^^^^^^^^^^^~08/01/1982~
-~09068~^~318~^870.^3^203.^~1~^^^^^^^^^^^~08/01/1982~
-~09068~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2002~
-~09068~^~320~^44.^3^10.^~1~^^^^^^^^^^^~02/01/2007~
-~09068~^~321~^522.^0^^~4~^~BNA~^~09070~^^^^^^^^^~01/01/2003~
-~09068~^~322~^0.^0^^~4~^~BNA~^~09070~^^^^^^^^^~01/01/2003~
-~09068~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~
-~09068~^~334~^0.^0^^~4~^~BNA~^~09070~^^^^^^^^^~01/01/2003~
-~09068~^~337~^0.^0^^~4~^~BFSN~^~09070~^^^^^^^^^~01/01/2003~
-~09068~^~338~^61.^0^^~4~^~BFSN~^~09070~^^^^^^^^^~01/01/2003~
-~09068~^~417~^5.^3^1.^~1~^^^^^^^^^^^~08/01/1982~
-~09068~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~
-~09068~^~432~^5.^3^1.^~1~^^^^^^^^^^^~02/01/2007~
-~09068~^~435~^5.^0^^~4~^~NC~^^^^^^^^^^~02/01/2007~
-~09068~^~601~^0.^0^^~7~^~Z~^^^^^^^^^^~08/01/1982~
-~09070~^~208~^63.^0^^~4~^~NC~^^^^^^^^^^~05/01/2007~
-~09070~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~10/01/2002~
-~09070~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~10/01/2002~
-~09070~^~268~^263.^0^^~4~^~NC~^^^^^^^^^^~05/01/2007~
-~09070~^~301~^13.^64^0.^~1~^~A~^^^20^11.^27.^16^12.^13.^~2~^~10/01/2002~
-~09070~^~304~^11.^65^0.^~1~^~A~^^^20^7.^19.^16^10.^11.^~2~^~10/01/2002~
-~09070~^~305~^21.^63^0.^~1~^~A~^^^19^13.^29.^16^21.^21.^~2~^~10/01/2002~
-~09070~^~306~^222.^65^1.^~1~^~A~^^^20^129.^267.^16^218.^224.^~2~^~10/01/2002~
-~09070~^~307~^0.^64^0.^~1~^~A~^^^20^0.^1.^16^0.^0.^~1, 2~^~10/01/2002~
-~09070~^~318~^64.^0^^~1~^~AS~^^^^^^^^^^~05/01/2007~
-~09070~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2002~
-~09070~^~320~^3.^0^^~1~^~AS~^^^^^^^^^^~05/01/2007~
-~09070~^~321~^38.^6^10.^~1~^~A~^^^2^25.^60.^2^-8.^85.^~4~^~10/01/2002~
-~09070~^~322~^0.^2^^~1~^~A~^^^1^0.^0.^^^^~1~^~10/01/2002~
-~09070~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~
-~09070~^~334~^0.^2^^~1~^~A~^^^1^0.^0.^^^^~1~^~10/01/2002~
-~09070~^~337~^0.^2^^~1~^~A~^^^1^0.^0.^^^^~1~^~10/01/2002~
-~09070~^~338~^85.^2^^~1~^~A~^^^1^84.^85.^1^^^^~10/01/2002~
-~09070~^~417~^4.^4^0.^~1~^~A~^^^1^3.^6.^1^-6.^14.^~1, 2, 3~^~10/01/2002~
-~09070~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~
-~09070~^~432~^4.^4^0.^~1~^~A~^^^1^3.^6.^1^-6.^14.^^~05/01/2007~
-~09070~^~435~^4.^0^^~4~^~NC~^^^^^^^^^^~05/01/2007~
-~09070~^~601~^0.^0^^~7~^~Z~^^^^^^^^^^~08/01/1982~
-~09070~^~636~^12.^0^^~1~^^^^^^^^^^^~08/01/1982~
-~09071~^~208~^46.^0^^~4~^~NC~^^^^^^^^^^~08/01/1982~
-~09071~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~10/01/2002~
-~09071~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~10/01/2002~
-~09071~^~268~^192.^0^^~4~^^^^^^^^^^^~03/01/2007~
-~09071~^~301~^11.^18^0.^~1~^^^^^^^^^^^~08/01/1982~
-~09071~^~304~^9.^18^0.^~1~^^^^^^^^^^^~08/01/1982~
-~09071~^~305~^15.^20^0.^~1~^^^^^^^^^^^~08/01/1982~
-~09071~^~306~^131.^19^3.^~1~^^^^^^^^^^^~08/01/1982~
-~09071~^~307~^1.^19^0.^~1~^^^^^^^^^^^~08/01/1982~
-~09071~^~318~^160.^0^^~1~^^^^^^^^^^^~01/01/2003~
-~09071~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2002~
-~09071~^~320~^8.^0^^~4~^~NC~^^^^^^^^^^~03/01/2007~
-~09071~^~321~^96.^0^^~4~^~BNA~^~09070~^^^^^^^^^~01/01/2003~
-~09071~^~322~^0.^0^^~4~^~BNA~^~09070~^^^^^^^^^~01/01/2003~
-~09071~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~
-~09071~^~334~^0.^0^^~4~^~BNA~^~09070~^^^^^^^^^~01/01/2003~
-~09071~^~337~^0.^0^^~4~^~BFYN~^~09070~^^^^^^^^^~01/01/2003~
-~09071~^~338~^57.^0^^~4~^~BFYN~^~09070~^^^^^^^^^~01/01/2003~
-~09071~^~417~^4.^0^^~4~^^^^^^^^^^^~08/01/1982~
-~09071~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~
-~09071~^~432~^4.^0^^~4~^^^^^^^^^^^~03/01/2007~
-~09071~^~435~^4.^0^^~4~^~NC~^^^^^^^^^^~03/01/2007~
-~09071~^~601~^0.^0^^~7~^~Z~^^^^^^^^^^~08/01/1982~
-~09072~^~208~^54.^0^^~4~^~NC~^^^^^^^^^^~08/01/1982~
-~09072~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2003~
-~09072~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2003~
-~09072~^~268~^226.^0^^~4~^^^^^^^^^^^~03/01/2007~
-~09072~^~301~^14.^6^0.^~1~^^^^^^^^^^^~08/01/1982~
-~09072~^~304~^12.^6^0.^~1~^^^^^^^^^^^~08/01/1982~
-~09072~^~305~^22.^6^1.^~1~^^^^^^^^^^^~08/01/1982~
-~09072~^~306~^131.^6^8.^~1~^^^^^^^^^^^~08/01/1982~
-~09072~^~307~^3.^6^0.^~1~^^^^^^^^^^^~08/01/1982~
-~09072~^~318~^125.^5^30.^~1~^^^^^^^^^^^~08/01/1982~
-~09072~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2002~
-~09072~^~320~^6.^5^1.^~1~^^^^^^^^^^^~03/01/2007~
-~09072~^~321~^75.^0^^~4~^~BNA~^~09070~^^^^^^^^^~01/01/2003~
-~09072~^~322~^0.^0^^~4~^~BNA~^~09070~^^^^^^^^^~01/01/2003~
-~09072~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~
-~09072~^~334~^0.^0^^~4~^~BNA~^~09070~^^^^^^^^^~01/01/2003~
-~09072~^~337~^0.^0^^~4~^~BFYN~^~09070~^^^^^^^^^~01/01/2003~
-~09072~^~338~^57.^0^^~4~^~BFYN~^~09070~^^^^^^^^^~01/01/2003~
-~09072~^~417~^4.^0^^~4~^^^^^^^^^^^~08/01/1982~
-~09072~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~
-~09072~^~432~^4.^0^^~4~^^^^^^^^^^^~03/01/2007~
-~09072~^~435~^4.^0^^~4~^~NC~^^^^^^^^^^~03/01/2007~
-~09072~^~601~^0.^0^^~7~^~Z~^^^^^^^^^^~08/01/1982~
-~09073~^~208~^67.^0^^~4~^~NC~^^^^^^^^^^~08/01/1982~
-~09073~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2003~
-~09073~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2003~
-~09073~^~268~^280.^0^^~4~^^^^^^^^^^^~03/01/2007~
-~09073~^~301~^9.^0^^~1~^^^^^^^^^^^~08/01/1982~
-~09073~^~304~^9.^0^^~1~^^^^^^^^^^^~08/01/1982~
-~09073~^~305~^18.^0^^~1~^^^^^^^^^^^~08/01/1982~
-~09073~^~306~^148.^0^^~1~^^^^^^^^^^^~08/01/1982~
-~09073~^~307~^3.^0^^~1~^^^^^^^^^^^~08/01/1982~
-~09073~^~318~^157.^0^^~1~^^^^^^^^^^^~08/01/1982~
-~09073~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2002~
-~09073~^~320~^8.^0^^~1~^^^^^^^^^^^~03/01/2007~
-~09073~^~321~^94.^0^^~4~^~BNA~^~09070~^^^^^^^^^~01/01/2003~
-~09073~^~322~^0.^0^^~4~^~BNA~^~09070~^^^^^^^^^~01/01/2003~
-~09073~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~
-~09073~^~334~^0.^0^^~4~^~BNA~^~09070~^^^^^^^^^~01/01/2003~
-~09073~^~337~^0.^0^^~4~^~BFYN~^~09070~^^^^^^^^^~01/01/2003~
-~09073~^~338~^57.^0^^~4~^~BFYN~^~09070~^^^^^^^^^~01/01/2003~
-~09073~^~417~^4.^0^^~4~^^^^^^^^^^^~08/01/1982~
-~09073~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~
-~09073~^~432~^4.^0^^~4~^^^^^^^^^^^~03/01/2007~
-~09073~^~435~^4.^0^^~4~^~NC~^^^^^^^^^^~03/01/2007~
-~09073~^~601~^0.^0^^~7~^~Z~^^^^^^^^^^~08/01/1982~
-~09074~^~208~^83.^0^^~4~^~NC~^^^^^^^^^^~08/01/1982~
-~09074~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2003~
-~09074~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2003~
-~09074~^~268~^347.^0^^~4~^^^^^^^^^^^~05/01/2008~
-~09074~^~301~^9.^82^0.^~1~^^^^^^^^^^^~08/01/1982~
-~09074~^~304~^9.^110^0.^~1~^^^^^^^^^^^~08/01/1982~
-~09074~^~305~^18.^82^0.^~1~^^^^^^^^^^^~08/01/1982~
-~09074~^~306~^145.^82^1.^~1~^^^^^^^^^^^~08/01/1982~
-~09074~^~307~^3.^88^0.^~1~^^^^^^^^^^^~08/01/1982~
-~09074~^~318~^154.^138^4.^~1~^^^^^^^^^^^~05/01/2008~
-~09074~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2002~
-~09074~^~320~^8.^138^0.^~1~^^^^^^^^^^^~05/01/2008~
-~09074~^~321~^92.^0^^~4~^~BNA~^~09070~^^^^^^^^^~05/01/2008~
-~09074~^~322~^0.^0^^~4~^~BNA~^~09070~^^^^^^^^^~05/01/2008~
-~09074~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~
-~09074~^~334~^0.^0^^~4~^~BNA~^~09070~^^^^^^^^^~05/01/2008~
-~09074~^~337~^0.^0^^~4~^~BFYN~^~09070~^^^^^^^^^~05/01/2008~
-~09074~^~338~^57.^0^^~4~^~BFYN~^~09070~^^^^^^^^^~04/01/2008~
-~09074~^~417~^4.^0^^~4~^^^^^^^^^^^~08/01/1982~
-~09074~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~
-~09074~^~432~^4.^0^^~4~^^^^^^^^^^^~05/01/2008~
-~09074~^~435~^4.^0^^~4~^~NC~^^^^^^^^^^~05/01/2008~
-~09074~^~601~^0.^0^^~7~^~Z~^^^^^^^^^^~08/01/1982~
-~09075~^~208~^102.^0^^~4~^~NC~^^^^^^^^^^~08/01/1982~
-~09075~^~268~^427.^0^^~4~^^^^^^^^^^^
-~09075~^~301~^9.^0^^~1~^^^^^^^^^^^~08/01/1982~
-~09075~^~304~^8.^0^^~1~^^^^^^^^^^^~08/01/1982~
-~09075~^~305~^17.^0^^~1~^^^^^^^^^^^~08/01/1982~
-~09075~^~306~^142.^0^^~1~^^^^^^^^^^^~08/01/1982~
-~09075~^~307~^3.^0^^~1~^^^^^^^^^^^~08/01/1982~
-~09075~^~318~^151.^0^^~1~^^^^^^^^^^^~08/01/1982~
-~09075~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2002~
-~09075~^~320~^8.^0^^~1~^^^^^^^^^^^~06/01/2002~
-~09075~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~
-~09075~^~417~^4.^0^^~4~^^^^^^^^^^^~08/01/1982~
-~09075~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~
-~09075~^~432~^4.^0^^~4~^^^^^^^^^^^~08/01/1982~
-~09075~^~435~^4.^0^^~4~^~NC~^^^^^^^^^^~01/01/2001~
-~09075~^~601~^0.^0^^~7~^~Z~^^^^^^^^^^~08/01/1982~
-~09077~^~208~^76.^0^^~4~^~NC~^^^^^^^^^^~08/01/1982~
-~09077~^~268~^318.^0^^~4~^^^^^^^^^^^
-~09077~^~301~^18.^3^4.^~1~^^^^^^^^^^^~08/01/1982~
-~09077~^~304~^7.^3^0.^~1~^^^^^^^^^^^~08/01/1982~
-~09077~^~305~^15.^3^4.^~1~^^^^^^^^^^^~08/01/1982~
-~09077~^~306~^194.^3^23.^~1~^^^^^^^^^^^~08/01/1982~
-~09077~^~307~^1.^3^0.^~1~^^^^^^^^^^^~08/01/1982~
-~09077~^~318~^40.^0^^~1~^^^^^^^^^^^~08/01/1982~
-~09077~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2002~
-~09077~^~320~^2.^0^^~1~^^^^^^^^^^^~06/01/2002~
-~09077~^~601~^0.^0^^~7~^~Z~^^^^^^^^^^~08/01/1982~
-~09078~^~208~^46.^0^^~4~^~NC~^^^^^^^^^^~04/01/2007~
-~09078~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~08/01/2002~
-~09078~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~08/01/2002~
-~09078~^~268~^191.^0^^~4~^~NC~^^^^^^^^^^~05/01/2015~
-~09078~^~301~^8.^5^0.^~1~^~A~^^^2^7.^9.^1^5.^10.^~2~^~08/01/2002~
-~09078~^~304~^6.^5^0.^~1~^~A~^^^2^6.^6.^1^5.^6.^~2~^~08/01/2002~
-~09078~^~305~^11.^5^1.^~1~^~A~^^^2^10.^14.^1^-7.^29.^~2~^~05/01/2015~
-~09078~^~306~^80.^5^5.^~1~^~A~^^^2^75.^91.^1^14.^145.^~2~^~05/01/2015~
-~09078~^~307~^2.^5^0.^~1~^~A~^^^2^0.^4.^1^0.^2.^~1, 2~^~08/01/2002~
-~09078~^~318~^63.^0^^~1~^~AS~^^^^^^^^^^~05/01/2015~
-~09078~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2002~
-~09078~^~320~^3.^0^^~1~^~AS~^^^^^^^^^^~08/01/2002~
-~09078~^~321~^38.^5^1.^~1~^~A~^^^2^29.^41.^1^14.^61.^~2~^~05/01/2015~
-~09078~^~322~^0.^4^0.^~1~^~A~^^^1^0.^0.^^^^~1, 2, 3~^~08/01/2002~
-~09078~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~
-~09078~^~334~^0.^4^0.^~1~^~A~^^^1^0.^0.^^^^~1, 2, 3~^~08/01/2002~
-~09078~^~337~^0.^4^0.^~1~^~A~^^^1^0.^0.^^^^~1, 2, 3~^~08/01/2002~
-~09078~^~338~^91.^4^9.^~1~^~A~^^^1^68.^111.^3^60.^121.^~2, 3~^~08/01/2002~
-~09078~^~417~^1.^4^0.^~1~^~A~^^^1^1.^1.^^^^~1, 2, 3~^~08/01/2002~
-~09078~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~
-~09078~^~432~^1.^4^0.^~1~^~A~^^^1^1.^1.^^^^^~04/01/2007~
-~09078~^~435~^1.^0^^~4~^~NC~^^^^^^^^^^~04/01/2007~
-~09078~^~601~^0.^1^^~1~^~A~^^^^^^^^^~1~^~05/01/2015~
-~09079~^~208~^308.^0^^~4~^~NC~^^^^^^^^^^~01/01/2007~
-~09079~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2003~
-~09079~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2003~
-~09079~^~268~^1288.^0^^~4~^~NC~^^^^^^^^^^~06/01/2015~
-~09079~^~301~^9.^7^1.^~1~^~A~^^^2^6.^10.^1^-5.^23.^~2~^~06/01/2015~
-~09079~^~304~^4.^4^0.^~1~^~A~^^^2^4.^5.^1^0.^8.^~2~^~06/01/2015~
-~09079~^~305~^8.^4^0.^~1~^~A~^^^2^7.^9.^1^7.^8.^~2~^~04/01/2003~
-~09079~^~306~^49.^4^8.^~1~^~A~^^^2^40.^60.^1^-60.^158.^~2~^~06/01/2015~
-~09079~^~307~^5.^7^1.^~1~^~A~^^^2^3.^12.^1^-18.^28.^~1, 2~^~06/01/2015~
-~09079~^~318~^46.^0^^~1~^~AS~^^^^^^^^^^~06/01/2015~
-~09079~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2003~
-~09079~^~320~^2.^0^^~4~^~NC~^^^^^^^^^^~06/01/2015~
-~09079~^~321~^27.^6^6.^~1~^~A~^^^1^14.^44.^5^11.^42.^~1, 4~^~06/01/2015~
-~09079~^~322~^0.^0^^~4~^~RA~^^^^^^^^^^~03/01/2003~
-~09079~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~
-~09079~^~334~^0.^0^^~4~^~RA~^^^^^^^^^^~03/01/2003~
-~09079~^~337~^0.^0^^~4~^~RA~^^^^^^^^^^~03/01/2003~
-~09079~^~338~^138.^0^^~4~^~RA~^^^^^^^^^^~06/01/2015~
-~09079~^~417~^0.^0^^~4~^~RA~^^^^^^^^^^~04/01/2003~
-~09079~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2003~
-~09079~^~432~^0.^0^^~4~^~RA~^^^^^^^^^^~01/01/2007~
-~09079~^~435~^0.^0^^~4~^~NC~^^^^^^^^^^~01/01/2007~
-~09079~^~601~^0.^7^0.^~1~^~A~^^^2^0.^0.^6^0.^0.^~1, 4~^~06/01/2015~
-~09081~^~208~^159.^0^^~4~^~NC~^^^^^^^^^^~06/01/2015~
-~09081~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~
-~09081~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~
-~09081~^~268~^667.^0^^~4~^~NC~^^^^^^^^^^~06/01/2015~
-~09081~^~301~^3.^2^^~1~^~A~^^^1^3.^3.^1^^^^~06/01/2015~
-~09081~^~304~^2.^2^^~1~^~A~^^^1^2.^2.^1^^^^~06/01/2015~
-~09081~^~305~^4.^2^^~1~^~A~^^^1^4.^4.^1^^^^~06/01/2015~
-~09081~^~306~^28.^2^^~1~^~A~^^^1^21.^34.^1^^^^~06/01/2015~
-~09081~^~307~^5.^2^^~1~^~A~^^^1^5.^5.^1^^^~1~^~06/01/2015~
-~09081~^~318~^33.^0^^~4~^~NC~^^^^^^^^^^~06/01/2015~
-~09081~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2002~
-~09081~^~320~^2.^0^^~4~^~NC~^^^^^^^^^^~01/01/2007~
-~09081~^~321~^20.^2^^~1~^~A~^^^1^20.^20.^1^^^~1~^~06/01/2015~
-~09081~^~322~^0.^0^^~4~^~FLA~^^^^^^^^^^~02/01/2003~
-~09081~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~
-~09081~^~334~^0.^0^^~4~^~FLA~^^^^^^^^^^~02/01/2003~
-~09081~^~337~^0.^0^^~4~^~FLA~^^^^^^^^^^~02/01/2003~
-~09081~^~338~^48.^0^^~4~^~FLA~^^^^^^^^^^~06/01/2015~
-~09081~^~417~^1.^0^^~4~^^^^^^^^^^^~04/01/1985~
-~09081~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~
-~09081~^~432~^1.^0^^~4~^^^^^^^^^^^~01/01/2007~
-~09081~^~435~^1.^0^^~4~^~NC~^^^^^^^^^^~01/01/2007~
-~09081~^~601~^0.^0^^~7~^~Z~^^^^^^^^^^~08/01/1982~
-~09082~^~208~^178.^0^^~4~^~NC~^^^^^^^^^^~08/01/1982~
-~09082~^~268~^745.^0^^~4~^^^^^^^^^^^
-~09082~^~301~^11.^1^^~1~^^^^^^^^^^^~08/01/1982~
-~09082~^~304~^4.^1^^~1~^^^^^^^^^^^~08/01/1982~
-~09082~^~305~^8.^1^^~1~^^^^^^^^^^^~08/01/1982~
-~09082~^~306~^38.^1^^~1~^^^^^^^^^^^~08/01/1982~
-~09082~^~307~^32.^1^^~1~^^^^^^^^^^^~08/01/1982~
-~09082~^~318~^70.^0^^~1~^^^^^^^^^^^~08/01/1982~
-~09082~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2002~
-~09082~^~320~^4.^0^^~1~^^^^^^^^^^^~06/01/2002~
-~09082~^~601~^0.^0^^~7~^~Z~^^^^^^^^^^~08/01/1982~
-~09083~^~208~^63.^0^^~4~^~NC~^^^^^^^^^^~08/01/1982~
-~09083~^~268~^264.^0^^~4~^^^^^^^^^^^
-~09083~^~301~^55.^3^4.^~1~^^^^^^^^^^^~08/01/1982~
-~09083~^~304~^24.^2^^~1~^^^^^^^^^^^~08/01/1982~
-~09083~^~305~^59.^3^1.^~1~^^^^^^^^^^^~08/01/1982~
-~09083~^~306~^322.^4^10.^~1~^^^^^^^^^^^~08/01/1982~
-~09083~^~307~^2.^1^^~1~^^^^^^^^^^^~08/01/1982~
-~09083~^~318~^230.^0^^~1~^^^^^^^^^^^~08/01/1982~
-~09083~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2002~
-~09083~^~320~^12.^0^^~1~^^^^^^^^^^^~06/01/2002~
-~09083~^~601~^0.^0^^~7~^~Z~^^^^^^^^^^~08/01/1982~
-~09084~^~208~^56.^0^^~4~^~NC~^^^^^^^^^^~08/01/1982~
-~09084~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~
-~09084~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~
-~09084~^~268~^234.^0^^~4~^^^^^^^^^^^~02/01/2007~
-~09084~^~301~^33.^5^3.^~1~^^^^^^^^^^^~08/01/1982~
-~09084~^~304~^13.^5^0.^~1~^^^^^^^^^^^~08/01/1982~
-~09084~^~305~^44.^6^2.^~1~^^^^^^^^^^^~08/01/1982~
-~09084~^~306~^275.^6^16.^~1~^^^^^^^^^^^~08/01/1982~
-~09084~^~307~^1.^4^0.^~1~^^^^^^^^^^^~08/01/1982~
-~09084~^~318~^42.^1^^~1~^~A~^^^^^^^^^^~01/01/2007~
-~09084~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2002~
-~09084~^~320~^2.^1^^~1~^~A~^^^^^^^^^^~01/01/2007~
-~09084~^~321~^25.^1^^~1~^~A~^^^^^^^^^^~02/01/2003~
-~09084~^~322~^0.^1^^~1~^~A~^^^^^^^^^^~02/01/2003~
-~09084~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~
-~09084~^~334~^0.^1^^~1~^~A~^^^^^^^^^^~02/01/2003~
-~09084~^~337~^0.^1^^~1~^~A~^^^^^^^^^^~02/01/2003~
-~09084~^~338~^47.^1^^~1~^~A~^^^^^^^^^^~02/01/2003~
-~09084~^~417~^8.^0^^~4~^^^^^^^^^^^~04/01/1985~
-~09084~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~
-~09084~^~432~^8.^0^^~4~^^^^^^^^^^^~02/01/2007~
-~09084~^~435~^8.^0^^~4~^~NC~^^^^^^^^^^~02/01/2007~
-~09084~^~601~^0.^0^^~7~^~Z~^^^^^^^^^^~08/01/1982~
-~09085~^~208~^290.^0^^~4~^~NC~^^^^^^^^^^~07/01/2017~
-~09085~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~12/01/2002~
-~09085~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~12/01/2002~
-~09085~^~268~^1215.^0^^~4~^~NC~^^^^^^^^^^~07/01/2017~
-~09085~^~301~^88.^6^4.^~1~^~A~^^^1^67.^98.^5^75.^99.^~2, 3~^~07/01/2017~
-~09085~^~304~^36.^6^0.^~1~^~A~^^^1^35.^37.^5^35.^36.^~2, 3~^~07/01/2017~
-~09085~^~305~^99.^6^2.^~1~^~A~^^^1^93.^106.^5^92.^104.^~2, 3~^~07/01/2017~
-~09085~^~306~^777.^6^14.^~1~^~A~^^^1^736.^829.^5^740.^813.^~2, 3~^~07/01/2017~
-~09085~^~307~^43.^6^11.^~1~^~A~^^^1^21.^96.^5^12.^73.^~2, 3~^~07/01/2017~
-~09085~^~318~^73.^0^^~4~^~NC~^^^^^^^^^^~07/01/2017~
-~09085~^~319~^0.^0^^~4~^~BNA~^~09132~^^^^^^^^^~07/01/2017~
-~09085~^~320~^4.^0^^~4~^~NC~^^^^^^^^^^~01/01/2007~
-~09085~^~321~^43.^0^^~4~^~BNA~^~09132~^^^^^^^^^~12/01/2002~
-~09085~^~322~^1.^0^^~4~^~BNA~^~09132~^^^^^^^^^~12/01/2002~
-~09085~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~
-~09085~^~334~^1.^0^^~4~^~BNA~^~09132~^^^^^^^^^~12/01/2002~
-~09085~^~337~^0.^0^^~4~^~BFSN~^~09298~^^^^^^^^^~12/01/2002~
-~09085~^~338~^0.^0^^~4~^~BFSN~^~09298~^^^^^^^^^~12/01/2002~
-~09085~^~417~^10.^4^0.^~1~^^^^^^^^^^^~08/01/1982~
-~09085~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~
-~09085~^~432~^10.^4^0.^~1~^^^^^^^^^^^~01/01/2007~
-~09085~^~435~^10.^0^^~4~^~NC~^^^^^^^^^^~01/01/2007~
-~09085~^~601~^0.^6^0.^~1~^~A~^^^1^0.^0.^^^^~1, 2, 3~^~07/01/2017~
-~09086~^~208~^101.^0^^~4~^~NC~^^^^^^^^^^~08/01/1982~
-~09086~^~268~^423.^0^^~4~^^^^^^^^^^^
-~09086~^~301~^30.^9^6.^~1~^^^^^^^^^^^~08/01/1982~
-~09086~^~304~^18.^1^^~1~^^^^^^^^^^^~08/01/1982~
-~09086~^~305~^21.^7^2.^~1~^^^^^^^^^^^~08/01/1982~
-~09086~^~306~^382.^4^52.^~1~^^^^^^^^^^^~08/01/1982~
-~09086~^~307~^4.^2^^~1~^^^^^^^^^^^~08/01/1982~
-~09086~^~318~^33.^0^^~4~^^^^^^^^^^^~08/01/1982~
-~09086~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2002~
-~09086~^~320~^2.^0^^~4~^^^^^^^^^^^~06/01/2002~
-~09086~^~601~^0.^0^^~7~^~Z~^^^^^^^^^^~08/01/1982~
-~09087~^~208~^282.^0^^~4~^~NC~^^^^^^^^^^~05/01/2007~
-~09087~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~10/01/2002~
-~09087~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~10/01/2002~
-~09087~^~268~^1178.^0^^~4~^~NC~^^^^^^^^^^~05/01/2007~
-~09087~^~301~^39.^13^3.^~1~^~A~^^^3^30.^47.^2^25.^51.^~2~^~10/01/2002~
-~09087~^~304~^43.^13^0.^~1~^~A~^^^3^40.^45.^2^41.^44.^~2~^~10/01/2002~
-~09087~^~305~^62.^13^2.^~1~^~A~^^^3^54.^68.^2^50.^72.^~2~^~10/01/2002~
-~09087~^~306~^656.^13^24.^~1~^~A~^^^3^584.^731.^2^548.^763.^~2~^~10/01/2002~
-~09087~^~307~^2.^9^1.^~1~^~A~^^^2^1.^5.^1^-18.^23.^~1, 2~^~10/01/2002~
-~09087~^~318~^10.^8^1.^~1~^~A~^^^2^0.^13.^3^4.^15.^~2, 3~^~10/01/2002~
-~09087~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2002~
-~09087~^~320~^0.^8^0.^~1~^~A~^^^2^0.^1.^3^0.^0.^~2, 3~^~10/01/2002~
-~09087~^~321~^6.^8^1.^~1~^~A~^^^2^0.^8.^3^2.^9.^~1, 2, 3~^~10/01/2002~
-~09087~^~322~^0.^8^0.^~1~^~A~^^^2^0.^0.^^^^~1, 2, 3~^~10/01/2002~
-~09087~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~
-~09087~^~334~^0.^8^0.^~1~^~A~^^^2^0.^0.^^^^~1, 2, 3~^~10/01/2002~
-~09087~^~337~^0.^8^0.^~1~^~A~^^^2^0.^0.^^^^~1, 2, 3~^~10/01/2002~
-~09087~^~338~^75.^8^5.^~1~^~A~^^^2^55.^102.^5^62.^88.^~2, 3~^~10/01/2002~
-~09087~^~417~^19.^13^1.^~1~^~A~^^^3^11.^28.^2^11.^26.^~2~^~10/01/2002~
-~09087~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~10/01/2002~
-~09087~^~432~^19.^13^1.^~1~^~A~^^^3^11.^28.^2^11.^26.^^~05/01/2007~
-~09087~^~435~^19.^0^^~4~^~NC~^^^^^^^^^^~05/01/2007~
-~09087~^~601~^0.^0^^~7~^~Z~^^^^^^^^^^~08/01/1982~
-~09088~^~208~^73.^0^^~4~^~NC~^^^^^^^^^^~08/01/1982~
-~09088~^~268~^305.^0^^~4~^^^^^^^^^^^
-~09088~^~301~^38.^0^^~1~^^^^^^^^^^^~08/01/1982~
-~09088~^~304~^5.^0^^~4~^^^^^^^^^^^~04/01/1985~
-~09088~^~305~^39.^12^2.^~1~^^^^^^^^^^^~08/01/1982~
-~09088~^~306~^280.^12^10.^~1~^^^^^^^^^^^~08/01/1982~
-~09088~^~307~^6.^0^^~1~^^^^^^^^^^^~04/01/1985~
-~09088~^~318~^600.^0^^~1~^^^^^^^^^^^~08/01/1982~
-~09088~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2002~
-~09088~^~320~^30.^0^^~1~^^^^^^^^^^^~06/01/2002~
-~09088~^~417~^6.^0^^~4~^^^^^^^^^^^~04/01/1985~
-~09088~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~
-~09088~^~432~^6.^0^^~4~^^^^^^^^^^^~04/01/1985~
-~09088~^~435~^6.^0^^~4~^~NC~^^^^^^^^^^~01/01/2001~
-~09088~^~601~^0.^0^^~7~^~Z~^^^^^^^^^^~08/01/1982~
-~09089~^~208~^74.^0^^~4~^~NC~^^^^^^^^^^~08/01/1982~
-~09089~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~12/01/2002~
-~09089~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~12/01/2002~
-~09089~^~268~^310.^0^^~4~^^^^^^^^^^^~12/01/2006~
-~09089~^~301~^35.^0^^~1~^^^^^^^^^^^~08/01/1982~
-~09089~^~304~^17.^16^1.^~1~^^^^^^^^^^^~08/01/1982~
-~09089~^~305~^14.^16^1.^~1~^^^^^^^^^^^~08/01/1982~
-~09089~^~306~^232.^8^10.^~1~^^^^^^^^^^^~08/01/1982~
-~09089~^~307~^1.^8^0.^~1~^^^^^^^^^^^~08/01/1982~
-~09089~^~318~^142.^1^^~1~^^^^^^^^^^^~08/01/1982~
-~09089~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2002~
-~09089~^~320~^7.^1^^~1~^^^^^^^^^^^~12/01/2006~
-~09089~^~321~^85.^0^^~4~^~BNA~^~09094~^^^^^^^^^~12/01/2002~
-~09089~^~322~^0.^0^^~4~^~BNA~^~09094~^^^^^^^^^~12/01/2002~
-~09089~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~
-~09089~^~334~^0.^0^^~4~^~BNA~^~09094~^^^^^^^^^~12/01/2002~
-~09089~^~337~^0.^0^^~4~^~BFSN~^~09094~^^^^^^^^^~12/01/2002~
-~09089~^~338~^9.^0^^~4~^~BFSN~^~09094~^^^^^^^^^~12/01/2002~
-~09089~^~417~^6.^0^^~4~^^^^^^^^^^^~04/01/1985~
-~09089~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~
-~09089~^~432~^6.^0^^~4~^^^^^^^^^^^~12/01/2006~
-~09089~^~435~^6.^0^^~4~^~NC~^^^^^^^^^^~12/01/2006~
-~09089~^~601~^0.^0^^~7~^~Z~^^^^^^^^^^~08/01/1982~
-~09089~^~636~^31.^0^^~1~^^^^^^^^^^^~08/01/1982~
-~09090~^~208~^53.^0^^~4~^~NC~^^^^^^^^^^~08/01/1982~
-~09090~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~12/01/2002~
-~09090~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~12/01/2002~
-~09090~^~268~^222.^0^^~4~^^^^^^^^^^^~12/01/2006~
-~09090~^~301~^28.^0^^~1~^^^^^^^^^^^~08/01/1982~
-~09090~^~304~^10.^0^^~1~^^^^^^^^^^^~08/01/1982~
-~09090~^~305~^10.^0^^~1~^^^^^^^^^^^~08/01/1982~
-~09090~^~306~^103.^0^^~1~^^^^^^^^^^^~08/01/1982~
-~09090~^~307~^1.^0^^~1~^^^^^^^^^^^~08/01/1982~
-~09090~^~318~^38.^0^^~1~^^^^^^^^^^^~08/01/1982~
-~09090~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2002~
-~09090~^~320~^2.^0^^~1~^^^^^^^^^^^~12/01/2006~
-~09090~^~321~^23.^0^^~4~^~BNA~^~09094~^^^^^^^^^~12/01/2002~
-~09090~^~322~^0.^0^^~4~^~BNA~^~09094~^^^^^^^^^~12/01/2002~
-~09090~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~
-~09090~^~334~^0.^0^^~4~^~BNA~^~09094~^^^^^^^^^~12/01/2002~
-~09090~^~337~^0.^0^^~4~^~BFSN~^~09094~^^^^^^^^^~12/01/2002~
-~09090~^~338~^7.^0^^~4~^~BFSN~^~09094~^^^^^^^^^~12/01/2002~
-~09090~^~417~^2.^0^^~4~^^^^^^^^^^^~04/01/1985~
-~09090~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~
-~09090~^~432~^2.^0^^~4~^^^^^^^^^^^~12/01/2006~
-~09090~^~435~^2.^0^^~4~^~NC~^^^^^^^^^^~12/01/2006~
-~09090~^~601~^0.^0^^~7~^~Z~^^^^^^^^^^~08/01/1982~
-~09091~^~208~^69.^0^^~4~^~NC~^^^^^^^^^^~08/01/1982~
-~09091~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~12/01/2002~
-~09091~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~12/01/2002~
-~09091~^~268~^289.^0^^~4~^^^^^^^^^^^~12/01/2006~
-~09091~^~301~^27.^0^^~1~^^^^^^^^^^^~08/01/1982~
-~09091~^~304~^10.^0^^~1~^^^^^^^^^^^~08/01/1982~
-~09091~^~305~^10.^0^^~1~^^^^^^^^^^^~08/01/1982~
-~09091~^~306~^102.^0^^~1~^^^^^^^^^^^~08/01/1982~
-~09091~^~307~^1.^0^^~1~^^^^^^^^^^^~08/01/1982~
-~09091~^~318~^37.^0^^~1~^^^^^^^^^^^~08/01/1982~
-~09091~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2002~
-~09091~^~320~^2.^0^^~1~^^^^^^^^^^^~12/01/2006~
-~09091~^~321~^22.^0^^~4~^~BNA~^~09094~^^^^^^^^^~12/01/2002~
-~09091~^~322~^0.^0^^~4~^~BNA~^~09094~^^^^^^^^^~12/01/2002~
-~09091~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~
-~09091~^~334~^0.^0^^~4~^~BNA~^~09094~^^^^^^^^^~12/01/2002~
-~09091~^~337~^0.^0^^~4~^~BFSN~^~09094~^^^^^^^^^~12/01/2002~
-~09091~^~338~^8.^0^^~4~^~BFSN~^~09094~^^^^^^^^^~12/01/2002~
-~09091~^~417~^2.^0^^~4~^^^^^^^^^^^~10/01/1986~
-~09091~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~
-~09091~^~432~^2.^0^^~4~^^^^^^^^^^^~12/01/2006~
-~09091~^~435~^2.^0^^~4~^~NC~^^^^^^^^^^~12/01/2006~
-~09091~^~601~^0.^0^^~7~^~Z~^^^^^^^^^^~08/01/1982~
-~09092~^~208~^88.^0^^~4~^~NC~^^^^^^^^^^~08/01/1982~
-~09092~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~12/01/2002~
-~09092~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~12/01/2002~
-~09092~^~268~^368.^0^^~4~^^^^^^^^^^^~12/01/2006~
-~09092~^~301~^27.^18^0.^~1~^^^^^^^^^^^~08/01/1982~
-~09092~^~304~^10.^17^0.^~1~^^^^^^^^^^^~08/01/1982~
-~09092~^~305~^10.^18^0.^~1~^^^^^^^^^^^~08/01/1982~
-~09092~^~306~^99.^17^2.^~1~^^^^^^^^^^^~08/01/1982~
-~09092~^~307~^1.^18^0.^~1~^^^^^^^^^^^~08/01/1982~
-~09092~^~318~^37.^18^3.^~1~^^^^^^^^^^^~08/01/1982~
-~09092~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2002~
-~09092~^~320~^2.^18^0.^~1~^^^^^^^^^^^~12/01/2006~
-~09092~^~321~^22.^0^^~4~^~BNA~^~09094~^^^^^^^^^~12/01/2002~
-~09092~^~322~^0.^0^^~4~^~BNA~^~09094~^^^^^^^^^~12/01/2002~
-~09092~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~
-~09092~^~334~^0.^0^^~4~^~BNA~^~09094~^^^^^^^^^~12/01/2002~
-~09092~^~337~^0.^0^^~4~^~BFSN~^~09094~^^^^^^^^^~12/01/2002~
-~09092~^~338~^11.^0^^~4~^~BFSN~^~09094~^^^^^^^^^~12/01/2002~
-~09092~^~417~^2.^0^^~4~^^^^^^^^^^^~04/01/1985~
-~09092~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~
-~09092~^~432~^2.^0^^~4~^^^^^^^^^^^~12/01/2006~
-~09092~^~435~^2.^0^^~4~^~NC~^^^^^^^^^^~12/01/2006~
-~09092~^~601~^0.^0^^~7~^~Z~^^^^^^^^^^~08/01/1982~
-~09093~^~208~^107.^0^^~4~^~NC~^^^^^^^^^^~08/01/1982~
-~09093~^~268~^448.^0^^~4~^^^^^^^^^^^
-~09093~^~301~^26.^0^^~1~^^^^^^^^^^^~08/01/1982~
-~09093~^~304~^10.^0^^~1~^^^^^^^^^^^~08/01/1982~
-~09093~^~305~^10.^0^^~1~^^^^^^^^^^^~08/01/1982~
-~09093~^~306~^97.^0^^~1~^^^^^^^^^^^~08/01/1982~
-~09093~^~307~^1.^0^^~1~^^^^^^^^^^^~08/01/1982~
-~09093~^~318~^36.^0^^~1~^^^^^^^^^^^~08/01/1982~
-~09093~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2002~
-~09093~^~320~^2.^0^^~1~^^^^^^^^^^^~06/01/2002~
-~09093~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~
-~09093~^~601~^0.^0^^~7~^~Z~^^^^^^^^^^~08/01/1982~
-~09094~^~208~^249.^0^^~4~^~NC~^^^^^^^^^^~04/01/2006~
-~09094~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~12/01/2002~
-~09094~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~12/01/2002~
-~09094~^~268~^1041.^0^^~4~^~NC~^^^^^^^^^^~04/01/2006~
-~09094~^~301~^162.^8^1.^~1~^~A~^^^2^153.^169.^5^157.^167.^~2, 3~^~12/01/2002~
-~09094~^~304~^68.^8^0.^~1~^~A~^^^2^63.^73.^5^66.^68.^~2, 3~^~12/01/2002~
-~09094~^~305~^67.^8^1.^~1~^~A~^^^2^62.^70.^5^64.^70.^~2, 3~^~12/01/2002~
-~09094~^~306~^680.^8^12.^~1~^~A~^^^2^581.^773.^6^650.^710.^~2, 3~^~12/01/2002~
-~09094~^~307~^10.^8^0.^~1~^~A~^^^2^7.^14.^6^8.^11.^~1, 2, 3~^~12/01/2002~
-~09094~^~318~^10.^8^0.^~1~^~A~^^^2^10.^10.^^^^~2, 3~^~12/01/2002~
-~09094~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2002~
-~09094~^~320~^0.^8^0.^~1~^~A~^^^2^0.^0.^^^^~2, 3~^~12/01/2002~
-~09094~^~321~^6.^8^0.^~1~^~A~^^^2^6.^6.^^^^~1, 2, 3~^~12/01/2002~
-~09094~^~322~^0.^8^0.^~1~^~A~^^^2^0.^0.^^^^~1, 2, 3~^~12/01/2002~
-~09094~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~
-~09094~^~334~^0.^8^0.^~1~^~A~^^^2^0.^0.^^^^~1, 2, 3~^~12/01/2002~
-~09094~^~337~^0.^8^0.^~1~^~A~^^^2^0.^0.^^^^~1, 2, 3~^~12/01/2002~
-~09094~^~338~^32.^8^3.^~1~^~A~^^^2^23.^50.^4^22.^40.^~2, 3~^~12/01/2002~
-~09094~^~417~^9.^8^0.^~1~^~A~^^^2^4.^12.^4^7.^11.^~1, 2, 3~^~12/01/2002~
-~09094~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~
-~09094~^~432~^9.^8^0.^~1~^~A~^^^2^4.^12.^4^7.^11.^^~04/01/2006~
-~09094~^~435~^9.^0^^~4~^~NC~^^^^^^^^^^~04/01/2006~
-~09094~^~601~^0.^0^^~7~^~Z~^^^^^^^^^^~08/01/1982~
-~09095~^~208~^107.^0^^~4~^~NC~^^^^^^^^^^~12/01/2006~
-~09095~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~12/01/2002~
-~09095~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~12/01/2002~
-~09095~^~268~^449.^0^^~4~^~NC~^^^^^^^^^^~12/01/2006~
-~09095~^~301~^70.^0^^~4~^~BFSN~^~09094~^^^^^^^^^~12/01/2002~
-~09095~^~304~^29.^0^^~4~^~BFSN~^~09094~^^^^^^^^^~12/01/2002~
-~09095~^~305~^29.^0^^~4~^~BFSN~^~09094~^^^^^^^^^~12/01/2002~
-~09095~^~306~^294.^0^^~4~^~BFSN~^~09094~^^^^^^^^^~12/01/2002~
-~09095~^~307~^4.^0^^~4~^~BFSN~^~09094~^^^^^^^^^~12/01/2002~
-~09095~^~318~^4.^0^^~4~^~BFSN~^~09094~^^^^^^^^^~12/01/2002~
-~09095~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2002~
-~09095~^~320~^0.^0^^~4~^~NC~^^^^^^^^^^~12/01/2006~
-~09095~^~321~^3.^0^^~4~^~BFSN~^~09094~^^^^^^^^^~12/01/2002~
-~09095~^~322~^0.^0^^~4~^~BFSN~^~09094~^^^^^^^^^~12/01/2002~
-~09095~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~
-~09095~^~334~^0.^0^^~4~^~BFSN~^~09094~^^^^^^^^^~12/01/2002~
-~09095~^~337~^0.^0^^~4~^~BFSN~^~09094~^^^^^^^^^~12/01/2002~
-~09095~^~338~^14.^0^^~4~^~BFSN~^~09094~^^^^^^^^^~12/01/2002~
-~09095~^~417~^1.^3^0.^~1~^^^^^^^^^^^~08/01/1982~
-~09095~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~
-~09095~^~432~^1.^3^0.^~1~^^^^^^^^^^^~12/01/2006~
-~09095~^~435~^1.^0^^~4~^~NC~^^^^^^^^^^~12/01/2006~
-~09095~^~601~^0.^0^^~7~^~Z~^^^^^^^^^^~08/01/1982~
-~09096~^~208~^32.^0^^~4~^~NC~^^^^^^^^^^~08/01/1982~
-~09096~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2003~
-~09096~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2003~
-~09096~^~268~^134.^0^^~4~^^^^^^^^^^^~01/01/2007~
-~09096~^~301~^5.^10^0.^~1~^^^^^^^^^^^~08/01/1982~
-~09096~^~304~^7.^10^0.^~1~^^^^^^^^^^^~08/01/1982~
-~09096~^~305~^11.^10^0.^~1~^^^^^^^^^^^~08/01/1982~
-~09096~^~306~^94.^31^2.^~1~^^^^^^^^^^^~08/01/1982~
-~09096~^~307~^4.^31^0.^~1~^^^^^^^^^^^~08/01/1982~
-~09096~^~318~^250.^12^16.^~1~^^^^^^^^^^^~08/01/1982~
-~09096~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2002~
-~09096~^~320~^13.^0^^~4~^~NC~^^^^^^^^^^~01/01/2007~
-~09096~^~321~^126.^0^^~4~^~BNA~^~09351~^^^^^^^^^~01/01/2003~
-~09096~^~322~^0.^0^^~4~^~BNA~^~09351~^^^^^^^^^~01/01/2003~
-~09096~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~
-~09096~^~334~^48.^0^^~4~^~BNA~^~09351~^^^^^^^^^~01/01/2003~
-~09096~^~337~^0.^0^^~4~^~BFZN~^~09100~^^^^^^^^^~01/01/2003~
-~09096~^~338~^75.^0^^~4~^~BFZN~^~09100~^^^^^^^^^~01/01/2003~
-~09096~^~417~^3.^0^^~4~^^^^^^^^^^^~08/01/1982~
-~09096~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~
-~09096~^~432~^3.^0^^~4~^^^^^^^^^^^~01/01/2007~
-~09096~^~435~^3.^0^^~4~^~NC~^^^^^^^^^^~01/01/2007~
-~09096~^~601~^0.^0^^~7~^~Z~^^^^^^^^^^~08/01/1982~
-~09097~^~208~^46.^0^^~4~^~NC~^^^^^^^^^^~08/01/1982~
-~09097~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2003~
-~09097~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2003~
-~09097~^~268~^192.^0^^~4~^^^^^^^^^^^~01/01/2007~
-~09097~^~301~^8.^7^0.^~1~^^^^^^^^^^^~08/01/1982~
-~09097~^~304~^7.^6^0.^~1~^^^^^^^^^^^~08/01/1982~
-~09097~^~305~^14.^6^1.^~1~^^^^^^^^^^^~08/01/1982~
-~09097~^~306~^95.^6^6.^~1~^^^^^^^^^^^~08/01/1982~
-~09097~^~307~^4.^6^0.^~1~^^^^^^^^^^^~08/01/1982~
-~09097~^~318~^305.^6^47.^~1~^^^^^^^^^^^~08/01/1982~
-~09097~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2002~
-~09097~^~320~^15.^0^^~4~^~NC~^^^^^^^^^^~01/01/2007~
-~09097~^~321~^154.^0^^~4~^~BNA~^~09100~^^^^^^^^^~01/01/2003~
-~09097~^~322~^0.^0^^~4~^~BNA~^~09100~^^^^^^^^^~01/01/2003~
-~09097~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~
-~09097~^~334~^58.^0^^~4~^~BNA~^~09100~^^^^^^^^^~01/01/2003~
-~09097~^~337~^0.^0^^~4~^~BFZN~^~09100~^^^^^^^^^~01/01/2003~
-~09097~^~338~^75.^0^^~4~^~BFZN~^~09100~^^^^^^^^^~01/01/2003~
-~09097~^~417~^3.^0^^~4~^^^^^^^^^^^~08/01/1982~
-~09097~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~
-~09097~^~432~^3.^0^^~4~^^^^^^^^^^^~01/01/2007~
-~09097~^~435~^3.^0^^~4~^~NC~^^^^^^^^^^~01/01/2007~
-~09097~^~601~^0.^0^^~7~^~Z~^^^^^^^^^^~08/01/1982~
-~09098~^~208~^45.^0^^~4~^~NC~^^^^^^^^^^~08/01/1982~
-~09098~^~268~^188.^0^^~4~^^^^^^^^^^^
-~09098~^~301~^8.^1^^~1~^^^^^^^^^^^~08/01/1982~
-~09098~^~304~^6.^1^^~1~^^^^^^^^^^^~08/01/1982~
-~09098~^~305~^12.^1^^~1~^^^^^^^^^^^~08/01/1982~
-~09098~^~306~^104.^1^^~1~^^^^^^^^^^^~08/01/1982~
-~09098~^~307~^4.^1^^~1~^^^^^^^^^^^~08/01/1982~
-~09098~^~318~^233.^1^^~1~^^^^^^^^^^^~08/01/1982~
-~09098~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2002~
-~09098~^~320~^12.^1^^~1~^^^^^^^^^^^~06/01/2002~
-~09098~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~
-~09098~^~417~^3.^0^^~4~^^^^^^^^^^^~08/01/1982~
-~09098~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~
-~09098~^~432~^3.^0^^~4~^^^^^^^^^^^~08/01/1982~
-~09098~^~435~^3.^0^^~4~^~NC~^^^^^^^^^^~01/01/2001~
-~09098~^~601~^0.^0^^~7~^~Z~^^^^^^^^^^~08/01/1982~
-~09099~^~208~^57.^0^^~4~^~NC~^^^^^^^^^^~08/01/1982~
-~09099~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2003~
-~09099~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2003~
-~09099~^~268~^238.^0^^~4~^^^^^^^^^^^~01/01/2007~
-~09099~^~301~^6.^0^^~1~^^^^^^^^^^^~08/01/1982~
-~09099~^~304~^5.^0^^~1~^^^^^^^^^^^~08/01/1982~
-~09099~^~305~^11.^0^^~1~^^^^^^^^^^^~08/01/1982~
-~09099~^~306~^89.^0^^~1~^^^^^^^^^^^~08/01/1982~
-~09099~^~307~^6.^0^^~1~^^^^^^^^^^^~08/01/1982~
-~09099~^~318~^208.^0^^~1~^^^^^^^^^^^~01/01/2007~
-~09099~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2002~
-~09099~^~320~^10.^0^^~4~^~NC~^^^^^^^^^^~01/01/2007~
-~09099~^~321~^104.^0^^~4~^~BFZN~^~09100~^^^^^^^^^~01/01/2003~
-~09099~^~322~^0.^0^^~4~^~BFZN~^~09100~^^^^^^^^^~01/01/2003~
-~09099~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~
-~09099~^~334~^39.^0^^~4~^~BFZN~^~09100~^^^^^^^^^~01/01/2003~
-~09099~^~337~^0.^0^^~4~^~BFZN~^~09100~^^^^^^^^^~01/01/2003~
-~09099~^~338~^75.^0^^~4~^~BFZN~^~09100~^^^^^^^^^~01/01/2003~
-~09099~^~417~^3.^0^^~4~^^^^^^^^^^^~08/01/1982~
-~09099~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~
-~09099~^~432~^3.^0^^~4~^^^^^^^^^^^~01/01/2007~
-~09099~^~435~^3.^0^^~4~^~NC~^^^^^^^^^^~01/01/2007~
-~09099~^~601~^0.^0^^~7~^~Z~^^^^^^^^^^~08/01/1982~
-~09100~^~208~^73.^0^^~4~^~NC~^^^^^^^^^^~08/01/1982~
-~09100~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2003~
-~09100~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2003~
-~09100~^~268~^305.^0^^~4~^^^^^^^^^^^~01/01/2007~
-~09100~^~301~^6.^102^0.^~1~^^^^^^^^^^^~08/01/1982~
-~09100~^~304~^5.^85^0.^~1~^^^^^^^^^^^~08/01/1982~
-~09100~^~305~^11.^105^0.^~1~^^^^^^^^^^^~08/01/1982~
-~09100~^~306~^88.^120^1.^~1~^^^^^^^^^^^~08/01/1982~
-~09100~^~307~^6.^140^0.^~1~^^^^^^^^^^^~08/01/1982~
-~09100~^~318~^205.^262^3.^~1~^^^^^^^^^^^~08/01/1982~
-~09100~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2002~
-~09100~^~320~^10.^0^^~4~^~NC~^^^^^^^^^^~01/01/2007~
-~09100~^~321~^104.^0^^~4~^~BNA~^~09351~^^^^^^^^^~01/01/2003~
-~09100~^~322~^0.^0^^~4~^~BNA~^~09351~^^^^^^^^^~01/01/2003~
-~09100~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~
-~09100~^~334~^39.^0^^~4~^~BNA~^~09351~^^^^^^^^^~01/01/2003~
-~09100~^~337~^0.^0^^~4~^~BFYN~^~09351~^^^^^^^^^~01/01/2003~
-~09100~^~338~^75.^0^^~4~^~BFYN~^~09351~^^^^^^^^^~01/01/2003~
-~09100~^~417~^3.^0^^~4~^^^^^^^^^^^~08/01/1982~
-~09100~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~
-~09100~^~432~^3.^0^^~4~^^^^^^^^^^^~01/01/2007~
-~09100~^~435~^3.^0^^~4~^~NC~^^^^^^^^^^~01/01/2007~
-~09100~^~601~^0.^0^^~7~^~Z~^^^^^^^^^^~08/01/1982~
-~09101~^~208~^88.^0^^~4~^~NC~^^^^^^^^^^~08/01/1982~
-~09101~^~268~^368.^0^^~4~^^^^^^^^^^^
-~09101~^~301~^6.^0^^~1~^^^^^^^^^^^~08/01/1982~
-~09101~^~304~^5.^0^^~1~^^^^^^^^^^^~08/01/1982~
-~09101~^~305~^11.^0^^~1~^^^^^^^^^^^~08/01/1982~
-~09101~^~306~^86.^0^^~1~^^^^^^^^^^^~08/01/1982~
-~09101~^~307~^6.^0^^~1~^^^^^^^^^^^~08/01/1982~
-~09101~^~318~^201.^0^^~1~^^^^^^^^^^^~08/01/1982~
-~09101~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2002~
-~09101~^~320~^10.^0^^~1~^^^^^^^^^^^~06/01/2002~
-~09101~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~
-~09101~^~417~^3.^0^^~4~^^^^^^^^^^^~08/01/1982~
-~09101~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~
-~09101~^~432~^3.^0^^~4~^^^^^^^^^^^~08/01/1982~
-~09101~^~435~^3.^0^^~4~^~NC~^^^^^^^^^^~01/01/2001~
-~09101~^~601~^0.^0^^~7~^~Z~^^^^^^^^^^~08/01/1982~
-~09102~^~208~^30.^0^^~4~^~NC~^^^^^^^^^^~08/01/1982~
-~09102~^~268~^126.^0^^~4~^^^^^^^^^^^
-~09102~^~301~^7.^0^^~1~^^^^^^^^^^^~08/01/1982~
-~09102~^~304~^5.^0^^~1~^^^^^^^^^^^~08/01/1982~
-~09102~^~305~^9.^0^^~1~^^^^^^^^^^^~08/01/1982~
-~09102~^~306~^78.^11^3.^~1~^^^^^^^^^^^~08/01/1982~
-~09102~^~307~^3.^10^0.^~1~^^^^^^^^^^^~08/01/1982~
-~09102~^~318~^440.^0^^~1~^^^^^^^^^^^~08/01/1982~
-~09102~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2002~
-~09102~^~320~^22.^0^^~1~^^^^^^^^^^^~06/01/2002~
-~09102~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~
-~09102~^~417~^3.^0^^~4~^^^^^^^^^^^~08/01/1982~
-~09102~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~
-~09102~^~432~^3.^0^^~4~^^^^^^^^^^^~08/01/1982~
-~09102~^~435~^3.^0^^~4~^~NC~^^^^^^^^^^~01/01/2001~
-~09102~^~601~^0.^0^^~7~^~Z~^^^^^^^^^^~08/01/1982~
-~09103~^~208~^50.^0^^~4~^~NC~^^^^^^^^^^~08/01/1982~
-~09103~^~268~^209.^0^^~4~^^^^^^^^^^^
-~09103~^~301~^11.^7^0.^~1~^^^^^^^^^^^~08/01/1982~
-~09103~^~304~^8.^6^0.^~1~^^^^^^^^^^^~08/01/1982~
-~09103~^~305~^14.^6^1.^~1~^^^^^^^^^^^~08/01/1982~
-~09103~^~306~^116.^7^6.^~1~^^^^^^^^^^^~08/01/1982~
-~09103~^~307~^5.^7^0.^~1~^^^^^^^^^^^~08/01/1982~
-~09103~^~318~^600.^6^42.^~1~^^^^^^^^^^^~08/01/1982~
-~09103~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2002~
-~09103~^~320~^30.^6^2.^~1~^^^^^^^^^^^~06/01/2002~
-~09103~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~
-~09103~^~417~^3.^0^^~4~^^^^^^^^^^^~08/01/1982~
-~09103~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~
-~09103~^~432~^3.^0^^~4~^^^^^^^^^^^~08/01/1982~
-~09103~^~435~^3.^0^^~4~^~NC~^^^^^^^^^^~01/01/2001~
-~09103~^~601~^0.^0^^~7~^~Z~^^^^^^^^^^~08/01/1982~
-~09104~^~208~^58.^0^^~4~^~NC~^^^^^^^^^^~08/01/1982~
-~09104~^~268~^243.^0^^~4~^^^^^^^^^^^
-~09104~^~301~^7.^0^^~1~^^^^^^^^^^^~08/01/1982~
-~09104~^~304~^5.^0^^~1~^^^^^^^^^^^~08/01/1982~
-~09104~^~305~^9.^0^^~1~^^^^^^^^^^^~08/01/1982~
-~09104~^~306~^82.^0^^~1~^^^^^^^^^^^~08/01/1982~
-~09104~^~307~^6.^0^^~1~^^^^^^^^^^^~08/01/1982~
-~09104~^~318~^429.^0^^~1~^^^^^^^^^^^~08/01/1982~
-~09104~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2002~
-~09104~^~320~^21.^0^^~1~^^^^^^^^^^^~06/01/2002~
-~09104~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~
-~09104~^~417~^3.^0^^~4~^^^^^^^^^^^~08/01/1982~
-~09104~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~
-~09104~^~432~^3.^0^^~4~^^^^^^^^^^^~08/01/1982~
-~09104~^~435~^3.^0^^~4~^~NC~^^^^^^^^^^~01/01/2001~
-~09104~^~601~^0.^0^^~7~^~Z~^^^^^^^^^^~08/01/1982~
-~09106~^~208~^88.^0^^~4~^~NC~^^^^^^^^^^~08/01/1982~
-~09106~^~268~^368.^0^^~4~^^^^^^^^^^^
-~09106~^~301~^6.^0^^~1~^^^^^^^^^^^~08/01/1982~
-~09106~^~304~^5.^0^^~1~^^^^^^^^^^^~08/01/1982~
-~09106~^~305~^9.^0^^~1~^^^^^^^^^^^~08/01/1982~
-~09106~^~306~^80.^0^^~1~^^^^^^^^^^^~08/01/1982~
-~09106~^~307~^5.^0^^~1~^^^^^^^^^^^~08/01/1982~
-~09106~^~318~^637.^5^22.^~1~^^^^^^^^^^^~08/01/1982~
-~09106~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2002~
-~09106~^~320~^32.^5^1.^~1~^^^^^^^^^^^~06/01/2002~
-~09106~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~
-~09106~^~417~^3.^0^^~4~^^^^^^^^^^^~08/01/1982~
-~09106~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~
-~09106~^~432~^3.^0^^~4~^^^^^^^^^^^~08/01/1982~
-~09106~^~435~^3.^0^^~4~^~NC~^^^^^^^^^^~01/01/2001~
-~09106~^~601~^0.^0^^~7~^~Z~^^^^^^^^^^~08/01/1982~
-~09107~^~208~^44.^0^^~4~^~NC~^^^^^^^^^^~08/01/1982~
-~09107~^~268~^184.^0^^~4~^^^^^^^^^^^
-~09107~^~301~^25.^5^2.^~1~^^^^^^^^^^^~08/01/1982~
-~09107~^~304~^10.^4^1.^~1~^^^^^^^^^^^~08/01/1982~
-~09107~^~305~^27.^5^1.^~1~^^^^^^^^^^^~08/01/1982~
-~09107~^~306~^198.^6^12.^~1~^^^^^^^^^^^~08/01/1982~
-~09107~^~307~^1.^1^^~1~^^^^^^^^^^^~08/01/1982~
-~09107~^~318~^290.^0^^~1~^^^^^^^^^^^~08/01/1982~
-~09107~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2002~
-~09107~^~320~^15.^0^^~1~^^^^^^^^^^^~06/01/2002~
-~09107~^~417~^6.^0^^~4~^^^^^^^^^^^~04/01/1985~
-~09107~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~
-~09107~^~432~^6.^0^^~4~^^^^^^^^^^^~04/01/1985~
-~09107~^~435~^6.^0^^~4~^~NC~^^^^^^^^^^~01/01/2001~
-~09107~^~601~^0.^0^^~7~^~Z~^^^^^^^^^^~08/01/1982~
-~09109~^~208~^73.^0^^~4~^~NC~^^^^^^^^^^~08/01/1982~
-~09109~^~268~^305.^0^^~4~^^^^^^^^^^^
-~09109~^~301~^16.^3^1.^~1~^^^^^^^^^^^~08/01/1982~
-~09109~^~304~^6.^3^0.^~1~^^^^^^^^^^^~08/01/1982~
-~09109~^~305~^7.^3^0.^~1~^^^^^^^^^^^~08/01/1982~
-~09109~^~306~^77.^3^2.^~1~^^^^^^^^^^^~08/01/1982~
-~09109~^~307~^2.^3^0.^~1~^^^^^^^^^^^~08/01/1982~
-~09109~^~318~^138.^3^0.^~1~^^^^^^^^^^^~08/01/1982~
-~09109~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2002~
-~09109~^~320~^7.^3^0.^~1~^^^^^^^^^^^~06/01/2002~
-~09109~^~417~^3.^3^0.^~1~^^^^^^^^^^^~08/01/1982~
-~09109~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~
-~09109~^~432~^3.^3^0.^~1~^^^^^^^^^^^~08/01/1982~
-~09109~^~435~^3.^0^^~4~^~NC~^^^^^^^^^^~01/01/2001~
-~09109~^~601~^0.^0^^~7~^~Z~^^^^^^^^^^~08/01/1982~
-~09110~^~208~^349.^0^^~8~^~LC~^^^^^^^^^^~12/01/2014~
-~09110~^~268~^1461.^0^^~8~^~LC~^^^^^^^^^^~12/01/2014~
-~09110~^~301~^190.^0^^~8~^~LC~^^^^^^^^^^~12/01/2014~
-~09110~^~307~^298.^0^^~8~^~LC~^^^^^^^^^^~12/01/2014~
-~09110~^~318~^26822.^0^^~8~^~LC~^^^^^^^^^^~12/01/2014~
-~09110~^~601~^0.^0^^~8~^~LC~^^^^^^^^^^~12/01/2014~
-~09111~^~208~^32.^0^^~4~^~NC~^^^^^^^^^^~08/01/1982~
-~09111~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~
-~09111~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~
-~09111~^~268~^134.^0^^~4~^^^^^^^^^^^~12/01/2006~
-~09111~^~301~^12.^49^0.^~1~^^^^^^^^^^^~08/01/1982~
-~09111~^~304~^8.^97^0.^~1~^^^^^^^^^^^~08/01/1982~
-~09111~^~305~^8.^50^0.^~1~^^^^^^^^^^^~08/01/1982~
-~09111~^~306~^139.^73^2.^~1~^^^^^^^^^^^~08/01/1982~
-~09111~^~307~^0.^36^0.^~1~^^^^^^^^^^^~08/01/1982~
-~09111~^~318~^927.^0^^~4~^~RA~^^^^^^^^^^~09/01/2003~
-~09111~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2002~
-~09111~^~320~^46.^0^^~4~^~RA~^^^^^^^^^^~09/01/2003~
-~09111~^~321~^552.^0^^~4~^~RA~^^^^^^^^^^~02/01/2003~
-~09111~^~322~^4.^0^^~4~^~RA~^^^^^^^^^^~02/01/2003~
-~09111~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~
-~09111~^~334~^6.^0^^~4~^~RA~^^^^^^^^^^~02/01/2003~
-~09111~^~337~^1135.^0^^~4~^~RA~^^^^^^^^^^~02/01/2003~
-~09111~^~338~^6.^0^^~4~^~RA~^^^^^^^^^^~02/01/2003~
-~09111~^~417~^10.^52^0.^~1~^^^^^^^^^^^~08/01/1982~
-~09111~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~
-~09111~^~432~^10.^52^0.^~1~^^^^^^^^^^^~12/01/2006~
-~09111~^~435~^10.^0^^~4~^~NC~^^^^^^^^^^~12/01/2006~
-~09111~^~601~^0.^0^^~7~^~Z~^^^^^^^^^^~08/01/1982~
-~09112~^~208~^42.^0^^~4~^~NC~^^^^^^^^^^~08/01/2010~
-~09112~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2003~
-~09112~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2003~
-~09112~^~268~^176.^0^^~4~^~NC~^^^^^^^^^^~08/01/2010~
-~09112~^~301~^22.^9^4.^~1~^~A~^^^3^13.^33.^2^3.^41.^~2~^~01/01/2003~
-~09112~^~304~^9.^9^0.^~1~^~A~^^^3^8.^10.^2^7.^9.^~2~^~01/01/2003~
-~09112~^~305~^18.^8^0.^~1~^~A~^^^2^15.^20.^6^16.^19.^~2, 3~^~01/01/2003~
-~09112~^~306~^135.^9^13.^~1~^~A~^^^3^95.^165.^2^76.^194.^~2~^~01/01/2003~
-~09112~^~307~^0.^17^0.^~1~^^^^^^^^^^^~08/01/1982~
-~09112~^~318~^1150.^0^^~1~^~AS~^^^^^^^^^^~01/01/2003~
-~09112~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2002~
-~09112~^~320~^58.^0^^~1~^~AS~^^^^^^^^^^~01/01/2003~
-~09112~^~321~^686.^91^245.^~1~^~A~^^^8^248.^2343.^7^104.^1267.^~2~^~01/01/2003~
-~09112~^~322~^3.^74^2.^~1~^~A~^^^6^0.^14.^5^-3.^8.^~2~^~01/01/2003~
-~09112~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~
-~09112~^~334~^6.^73^4.^~1~^~A~^^^6^0.^30.^5^-6.^18.^~2~^~01/01/2003~
-~09112~^~337~^1419.^23^525.^~1~^~A~^^^5^160.^3362.^4^-39.^2877.^~2~^~01/01/2003~
-~09112~^~338~^5.^8^5.^~1~^~A~^^^4^0.^20.^3^-10.^20.^~2~^~01/01/2003~
-~09112~^~417~^13.^8^0.^~1~^~A~^^^2^8.^19.^3^11.^14.^~1, 2, 3~^~01/01/2003~
-~09112~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~
-~09112~^~432~^13.^8^0.^~1~^~A~^^^2^8.^19.^3^11.^14.^^~08/01/2010~
-~09112~^~435~^13.^0^^~4~^~NC~^^^^^^^^^^~08/01/2010~
-~09112~^~601~^0.^0^^~7~^~Z~^^^^^^^^^^~08/01/1982~
-~09113~^~208~^37.^0^^~4~^~NC~^^^^^^^^^^~08/01/1982~
-~09113~^~268~^155.^0^^~4~^^^^^^^^^^^
-~09113~^~301~^11.^22^0.^~1~^^^^^^^^^^^~08/01/1982~
-~09113~^~304~^9.^22^0.^~1~^^^^^^^^^^^~08/01/1982~
-~09113~^~305~^12.^0^^~1~^^^^^^^^^^^~08/01/1982~
-~09113~^~306~^147.^22^2.^~1~^^^^^^^^^^^~08/01/1982~
-~09113~^~307~^1.^9^0.^~1~^^^^^^^^^^^~08/01/1982~
-~09113~^~318~^259.^0^^~1~^^^^^^^^^^^~08/01/1982~
-~09113~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2002~
-~09113~^~320~^13.^0^^~1~^^^^^^^^^^^~05/01/2011~
-~09113~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~
-~09113~^~417~^12.^22^0.^~1~^^^^^^^^^^^~08/01/1982~
-~09113~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~
-~09113~^~432~^12.^22^0.^~1~^^^^^^^^^^^~09/01/2003~
-~09113~^~435~^12.^0^^~4~^~NC~^^^^^^^^^^~09/01/2003~
-~09113~^~601~^0.^0^^~7~^~Z~^^^^^^^^^^~08/01/1982~
-~09114~^~208~^30.^0^^~4~^~NC~^^^^^^^^^^~01/01/2003~
-~09114~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2003~
-~09114~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2003~
-~09114~^~268~^126.^0^^~4~^^^^^^^^^^^~01/01/2003~
-~09114~^~301~^15.^0^^~1~^^^^^^^^^^^~01/01/2003~
-~09114~^~304~^8.^16^0.^~1~^^^^^^^^^^^~01/01/2003~
-~09114~^~305~^9.^16^0.^~1~^^^^^^^^^^^~01/01/2003~
-~09114~^~306~^127.^8^4.^~1~^^^^^^^^^^^~01/01/2003~
-~09114~^~307~^0.^8^0.^~1~^^^^^^^^^^^~08/01/1982~
-~09114~^~318~^259.^6^78.^~1~^^^^^^^^^^^~01/01/2003~
-~09114~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2002~
-~09114~^~320~^13.^6^3.^~1~^^^^^^^^^^^~09/01/2003~
-~09114~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~
-~09114~^~417~^9.^0^^~1~^^^^^^^^^^^~01/01/2003~
-~09114~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~
-~09114~^~432~^9.^0^^~1~^^^^^^^^^^^~09/01/2003~
-~09114~^~435~^9.^0^^~4~^~NC~^^^^^^^^^^~09/01/2003~
-~09114~^~601~^0.^0^^~7~^~Z~^^^^^^^^^^~08/01/1982~
-~09116~^~208~^33.^0^^~4~^~NC~^^^^^^^^^^~08/01/1982~
-~09116~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2003~
-~09116~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2003~
-~09116~^~268~^138.^0^^~4~^^^^^^^^^^^~12/01/2006~
-~09116~^~301~^12.^27^0.^~1~^^^^^^^^^^^~08/01/1982~
-~09116~^~304~^9.^59^0.^~1~^^^^^^^^^^^~08/01/1982~
-~09116~^~305~^8.^34^0.^~1~^^^^^^^^^^^~08/01/1982~
-~09116~^~306~^148.^43^2.^~1~^^^^^^^^^^^~08/01/1982~
-~09116~^~307~^0.^19^0.^~1~^^^^^^^^^^^~08/01/1982~
-~09116~^~318~^33.^0^^~1~^~AS~^^^^^^^^^^~12/01/2006~
-~09116~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2002~
-~09116~^~320~^2.^0^^~1~^~AS~^^^^^^^^^^~12/01/2006~
-~09116~^~321~^14.^3^^~1~^~A~^^^^^^^^^^~01/01/2003~
-~09116~^~322~^8.^3^^~1~^~A~^^^^^^^^^^~01/01/2003~
-~09116~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~
-~09116~^~334~^3.^1^^~1~^~A~^^^^^^^^^^~01/01/2003~
-~09116~^~337~^0.^1^^~1~^~A~^^^^^^^^^^~01/01/2003~
-~09116~^~338~^10.^1^^~1~^~A~^^^^^^^^^^~01/01/2003~
-~09116~^~417~^10.^30^0.^~1~^^^^^^^^^^^~08/01/1982~
-~09116~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~
-~09116~^~432~^10.^30^0.^~1~^^^^^^^^^^^~12/01/2006~
-~09116~^~435~^10.^0^^~4~^~NC~^^^^^^^^^^~01/01/2007~
-~09116~^~601~^0.^0^^~7~^~Z~^^^^^^^^^^~08/01/1982~
-~09116~^~636~^17.^0^^~1~^^^^^^^^^^^~08/01/1982~
-~09117~^~208~^37.^0^^~4~^~NC~^^^^^^^^^^~08/01/1982~
-~09117~^~268~^155.^0^^~4~^^^^^^^^^^^
-~09117~^~301~^12.^27^0.^~1~^^^^^^^^^^^~08/01/1982~
-~09117~^~304~^9.^43^0.^~1~^^^^^^^^^^^~08/01/1982~
-~09117~^~305~^12.^18^0.^~1~^^^^^^^^^^^~08/01/1982~
-~09117~^~306~^143.^35^2.^~1~^^^^^^^^^^^~08/01/1982~
-~09117~^~307~^0.^11^0.^~1~^^^^^^^^^^^~08/01/1982~
-~09117~^~318~^10.^0^^~1~^^^^^^^^^^^~08/01/1982~
-~09117~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2002~
-~09117~^~320~^0.^0^^~1~^~AS~^^^^^^^^^^~09/01/2003~
-~09117~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~
-~09117~^~417~^12.^27^0.^~1~^^^^^^^^^^^~08/01/1982~
-~09117~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~
-~09117~^~432~^12.^27^0.^~1~^^^^^^^^^^^~09/01/2003~
-~09117~^~435~^12.^0^^~4~^~NC~^^^^^^^^^^~09/01/2003~
-~09117~^~601~^0.^0^^~7~^~Z~^^^^^^^^^^~08/01/1982~
-~09118~^~208~^32.^0^^~4~^~NC~^^^^^^^^^^~08/01/1982~
-~09118~^~268~^134.^0^^~4~^^^^^^^^^^^
-~09118~^~301~^15.^0^^~1~^^^^^^^^^^^~08/01/1982~
-~09118~^~304~^9.^16^0.^~1~^^^^^^^^^^^~08/01/1982~
-~09118~^~305~^7.^16^0.^~1~^^^^^^^^^^^~08/01/1982~
-~09118~^~306~^150.^8^2.^~1~^^^^^^^^^^^~08/01/1982~
-~09118~^~307~^0.^8^0.^~1~^^^^^^^^^^^~08/01/1982~
-~09118~^~318~^10.^0^^~1~^^^^^^^^^^^~08/01/1982~
-~09118~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2002~
-~09118~^~320~^0.^0^^~1~^~AS~^^^^^^^^^^~09/01/2003~
-~09118~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~
-~09118~^~417~^9.^3^1.^~1~^^^^^^^^^^^~08/01/1982~
-~09118~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~
-~09118~^~432~^9.^3^1.^~1~^^^^^^^^^^^~09/01/2003~
-~09118~^~435~^9.^0^^~4~^~NC~^^^^^^^^^^~09/01/2003~
-~09118~^~601~^0.^0^^~7~^~Z~^^^^^^^^^^~08/01/1982~
-~09119~^~208~^36.^0^^~4~^~NC~^^^^^^^^^^~08/01/1982~
-~09119~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2003~
-~09119~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2003~
-~09119~^~268~^151.^0^^~4~^^^^^^^^^^^~12/01/2006~
-~09119~^~301~^15.^0^^~1~^^^^^^^^^^^~08/01/1982~
-~09119~^~304~^10.^0^^~1~^^^^^^^^^^^~08/01/1982~
-~09119~^~305~^10.^0^^~1~^^^^^^^^^^^~08/01/1982~
-~09119~^~306~^132.^0^^~1~^^^^^^^^^^^~08/01/1982~
-~09119~^~307~^2.^0^^~1~^^^^^^^^^^^~08/01/1982~
-~09119~^~318~^0.^0^^~1~^^^^^^^^^^^~08/01/1982~
-~09119~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2002~
-~09119~^~320~^0.^0^^~1~^^^^^^^^^^^~12/01/2006~
-~09119~^~321~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2003~
-~09119~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2003~
-~09119~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~
-~09119~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2003~
-~09119~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2003~
-~09119~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2003~
-~09119~^~417~^9.^0^^~1~^^^^^^^^^^^~08/01/1982~
-~09119~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~
-~09119~^~432~^9.^0^^~1~^^^^^^^^^^^~12/01/2006~
-~09119~^~435~^9.^0^^~4~^~NC~^^^^^^^^^^~12/01/2006~
-~09119~^~601~^0.^0^^~7~^~Z~^^^^^^^^^^~08/01/1982~
-~09120~^~208~^37.^0^^~4~^~NC~^^^^^^^^^^~08/01/1982~
-~09120~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2003~
-~09120~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2003~
-~09120~^~268~^155.^0^^~4~^^^^^^^^^^^~12/01/2006~
-~09120~^~301~^15.^14^0.^~1~^^^^^^^^^^^~08/01/1982~
-~09120~^~304~^11.^13^0.^~1~^^^^^^^^^^^~08/01/1982~
-~09120~^~305~^12.^14^0.^~1~^^^^^^^^^^^~08/01/1982~
-~09120~^~306~^169.^14^7.^~1~^^^^^^^^^^^~08/01/1982~
-~09120~^~307~^7.^13^0.^~1~^^^^^^^^^^^~08/01/1982~
-~09120~^~318~^0.^0^^~1~^^^^^^^^^^^~08/01/1982~
-~09120~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2002~
-~09120~^~320~^0.^0^^~1~^^^^^^^^^^^~12/01/2006~
-~09120~^~321~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2003~
-~09120~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2003~
-~09120~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~
-~09120~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2003~
-~09120~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2003~
-~09120~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2003~
-~09120~^~417~^9.^0^^~4~^^^^^^^^^^^~08/01/1982~
-~09120~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~
-~09120~^~432~^9.^0^^~4~^^^^^^^^^^^~12/01/2006~
-~09120~^~435~^9.^0^^~4~^~NC~^^^^^^^^^^~12/01/2006~
-~09120~^~601~^0.^0^^~7~^~Z~^^^^^^^^^^~08/01/1982~
-~09121~^~208~^60.^0^^~4~^~NC~^^^^^^^^^^~08/01/1982~
-~09121~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2003~
-~09121~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2003~
-~09121~^~268~^251.^0^^~4~^^^^^^^^^^^~12/01/2006~
-~09121~^~301~^14.^14^1.^~1~^^^^^^^^^^^~08/01/1982~
-~09121~^~304~^10.^14^0.^~1~^^^^^^^^^^^~08/01/1982~
-~09121~^~305~^10.^14^0.^~1~^^^^^^^^^^^~08/01/1982~
-~09121~^~306~^129.^14^2.^~1~^^^^^^^^^^^~08/01/1982~
-~09121~^~307~^2.^14^0.^~1~^^^^^^^^^^^~08/01/1982~
-~09121~^~318~^0.^1^^~1~^^^^^^^^^^^~08/01/1982~
-~09121~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2002~
-~09121~^~320~^0.^1^^~1~^^^^^^^^^^^~12/01/2006~
-~09121~^~321~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2003~
-~09121~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2003~
-~09121~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~
-~09121~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2003~
-~09121~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2003~
-~09121~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2003~
-~09121~^~417~^9.^3^2.^~1~^^^^^^^^^^^~08/01/1982~
-~09121~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~
-~09121~^~432~^9.^3^2.^~1~^^^^^^^^^^^~12/01/2006~
-~09121~^~435~^9.^0^^~4~^~NC~^^^^^^^^^^~12/01/2006~
-~09121~^~601~^0.^0^^~7~^~Z~^^^^^^^^^^~08/01/1982~
-~09123~^~208~^37.^0^^~4~^~NC~^^^^^^^^^^~10/01/2016~
-~09123~^~262~^0.^0^^~1~^~A~^^^^^^^^^^~11/01/2016~
-~09123~^~263~^0.^0^^~1~^~A~^^^^^^^^^^~11/01/2016~
-~09123~^~268~^154.^0^^~4~^~NC~^^^^^^^^^^~10/01/2016~
-~09123~^~301~^16.^11^0.^~1~^~A~^^^2^12.^20.^8^15.^16.^~2, 3~^~10/01/2016~
-~09123~^~304~^9.^11^0.^~1~^~A~^^^2^8.^10.^5^9.^9.^~2, 3~^~10/01/2016~
-~09123~^~305~^17.^11^0.^~1~^~A~^^^2^15.^19.^4^16.^17.^~2, 3~^~10/01/2016~
-~09123~^~306~^141.^11^3.^~1~^~A~^^^2^127.^160.^4^131.^150.^~2, 3~^~10/01/2016~
-~09123~^~307~^2.^11^0.^~1~^~A~^^^2^2.^3.^6^1.^2.^~1, 2, 3~^~10/01/2016~
-~09123~^~318~^35.^0^^~4~^~NC~^^^^^^^^^^~04/01/2015~
-~09123~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2002~
-~09123~^~320~^2.^0^^~4~^~NC~^^^^^^^^^^~04/01/2015~
-~09123~^~321~^20.^1^^~1~^~A~^^^^^^^^^~1~^~04/01/2015~
-~09123~^~322~^2.^0^^~4~^~BNA~^~09116~^^^^^^^^^~01/01/2003~
-~09123~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~
-~09123~^~334~^1.^0^^~4~^~BNA~^~09116~^^^^^^^^^~01/01/2003~
-~09123~^~337~^0.^0^^~4~^~BFZN~^~09116~^^^^^^^^^~01/01/2003~
-~09123~^~338~^10.^0^^~4~^~BFZN~^~09116~^^^^^^^^^~01/01/2003~
-~09123~^~417~^14.^3^0.^~1~^~A~^^^1^8.^15.^1^7.^20.^~2, 3~^~10/01/2016~
-~09123~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~
-~09123~^~432~^14.^3^0.^~1~^~A~^^^1^8.^15.^1^7.^20.^^~10/01/2016~
-~09123~^~435~^14.^0^^~4~^~NC~^^^^^^^^^^~10/01/2016~
-~09123~^~601~^1.^1^^~1~^~A~^^^^^^^^^~1~^~10/01/2016~
-~09124~^~208~^46.^0^^~4~^~NC~^^^^^^^^^^~08/01/1982~
-~09124~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2003~
-~09124~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2003~
-~09124~^~268~^192.^0^^~4~^^^^^^^^^^^~01/01/2005~
-~09124~^~301~^8.^16^0.^~1~^^^^^^^^^^^~08/01/1982~
-~09124~^~304~^10.^16^0.^~1~^^^^^^^^^^^~08/01/1982~
-~09124~^~305~^11.^16^0.^~1~^^^^^^^^^^^~08/01/1982~
-~09124~^~306~^162.^16^3.^~1~^^^^^^^^^^^~08/01/1982~
-~09124~^~307~^2.^16^0.^~1~^^^^^^^^^^^~08/01/1982~
-~09124~^~318~^7.^0^^~4~^~NC~^^^^^^^^^^~01/01/2005~
-~09124~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2002~
-~09124~^~320~^0.^0^^~4~^~NC~^^^^^^^^^^~01/01/2005~
-~09124~^~321~^3.^0^^~4~^~BFZN~^~09123~^^^^^^^^^~01/01/2003~
-~09124~^~322~^2.^0^^~4~^~BFZN~^~09123~^^^^^^^^^~01/01/2003~
-~09124~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~
-~09124~^~334~^1.^0^^~4~^~BFZN~^~09123~^^^^^^^^^~01/01/2003~
-~09124~^~337~^0.^0^^~4~^~BFZN~^~09123~^^^^^^^^^~01/01/2003~
-~09124~^~338~^10.^0^^~4~^~BFZN~^~09123~^^^^^^^^^~01/01/2003~
-~09124~^~417~^10.^0^^~1~^^^^^^^^^^^~08/01/1982~
-~09124~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~
-~09124~^~432~^10.^0^^~1~^^^^^^^^^^^~01/01/2005~
-~09124~^~435~^10.^0^^~4~^~NC~^^^^^^^^^^~01/01/2005~
-~09124~^~601~^0.^0^^~7~^~Z~^^^^^^^^^^~08/01/1982~
-~09125~^~208~^146.^0^^~4~^~NC~^^^^^^^^^^~08/01/1982~
-~09125~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2003~
-~09125~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2003~
-~09125~^~268~^611.^0^^~4~^^^^^^^^^^^~01/01/2007~
-~09125~^~301~^27.^3^2.^~1~^^^^^^^^^^^~08/01/1982~
-~09125~^~304~^38.^3^1.^~1~^^^^^^^^^^^~08/01/1982~
-~09125~^~305~^49.^3^0.^~1~^^^^^^^^^^^~08/01/1982~
-~09125~^~306~^484.^3^8.^~1~^^^^^^^^^^^~08/01/1982~
-~09125~^~307~^3.^3^0.^~1~^^^^^^^^^^^~08/01/1982~
-~09125~^~318~^31.^2^^~1~^^^^^^^^^^^~08/01/1982~
-~09125~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2002~
-~09125~^~320~^2.^2^^~1~^^^^^^^^^^^~01/01/2007~
-~09125~^~321~^13.^0^^~4~^~BNA~^~09116~^^^^^^^^^~01/01/2003~
-~09125~^~322~^8.^0^^~4~^~BNA~^~09116~^^^^^^^^^~01/01/2003~
-~09125~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~
-~09125~^~334~^3.^0^^~4~^~BNA~^~09116~^^^^^^^^^~01/01/2003~
-~09125~^~337~^0.^0^^~4~^~BFSN~^~09126~^^^^^^^^^~01/01/2003~
-~09125~^~338~^34.^0^^~4~^~BFSN~^~09126~^^^^^^^^^~01/01/2003~
-~09125~^~417~^13.^3^3.^~1~^^^^^^^^^^^~08/01/1982~
-~09125~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~
-~09125~^~432~^13.^3^3.^~1~^^^^^^^^^^^~01/01/2007~
-~09125~^~435~^13.^0^^~4~^~NC~^^^^^^^^^^~01/01/2007~
-~09125~^~601~^0.^0^^~7~^~Z~^^^^^^^^^^~08/01/1982~
-~09126~^~208~^41.^0^^~4~^~NC~^^^^^^^^^^~08/01/1982~
-~09126~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2003~
-~09126~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2003~
-~09126~^~268~^172.^0^^~4~^^^^^^^^^^^~12/01/2006~
-~09126~^~301~^8.^3^0.^~1~^^^^^^^^^^^~08/01/1982~
-~09126~^~304~^11.^3^0.^~1~^^^^^^^^^^^~08/01/1982~
-~09126~^~305~^14.^3^0.^~1~^^^^^^^^^^^~08/01/1982~
-~09126~^~306~^136.^3^2.^~1~^^^^^^^^^^^~08/01/1982~
-~09126~^~307~^1.^3^0.^~1~^^^^^^^^^^^~08/01/1982~
-~09126~^~318~^9.^3^1.^~1~^^^^^^^^^^^~08/01/1982~
-~09126~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2002~
-~09126~^~320~^0.^3^0.^~1~^^^^^^^^^^^~12/01/2006~
-~09126~^~321~^4.^0^^~4~^~BNA~^~09116~^^^^^^^^^~01/01/2003~
-~09126~^~322~^2.^0^^~4~^~BNA~^~09116~^^^^^^^^^~01/01/2003~
-~09126~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~
-~09126~^~334~^1.^0^^~4~^~BNA~^~09116~^^^^^^^^^~01/01/2003~
-~09126~^~337~^0.^0^^~4~^~BFZN~^~09116~^^^^^^^^^~01/01/2003~
-~09126~^~338~^10.^0^^~4~^~BFZN~^~09116~^^^^^^^^^~01/01/2003~
-~09126~^~417~^4.^3^1.^~1~^^^^^^^^^^^~08/01/1982~
-~09126~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~
-~09126~^~432~^4.^3^1.^~1~^^^^^^^^^^^~12/01/2006~
-~09126~^~435~^4.^0^^~4~^~NC~^^^^^^^^^^~12/01/2006~
-~09126~^~601~^0.^0^^~7~^~Z~^^^^^^^^^^~08/01/1982~
-~09127~^~208~^39.^0^^~4~^~NC~^^^^^^^^^^~10/01/2016~
-~09127~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2015~
-~09127~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2015~
-~09127~^~268~^164.^0^^~4~^~NC~^^^^^^^^^^~10/01/2016~
-~09127~^~301~^146.^0^^~8~^~LC~^^^^^^^^^^~03/01/2015~
-~09127~^~304~^9.^6^0.^~1~^~A~^^^1^9.^10.^5^8.^9.^~2, 3~^~10/01/2016~
-~09127~^~305~^16.^6^0.^~1~^~A~^^^1^15.^17.^5^15.^16.^~2, 3~^~10/01/2016~
-~09127~^~306~^132.^6^3.^~1~^~A~^^^1^124.^145.^5^123.^141.^~2, 3~^~10/01/2016~
-~09127~^~307~^2.^6^0.^~1~^~A~^^^1^2.^4.^5^1.^3.^~1, 2, 3~^~10/01/2016~
-~09127~^~318~^320.^0^^~1~^~AS~^^^^^^^^^^~10/01/2016~
-~09127~^~319~^0.^0^^~4~^~BNA~^~09112~^^^^^^^^^~11/01/2016~
-~09127~^~320~^16.^0^^~1~^~AS~^^^^^^^^^^~10/01/2016~
-~09127~^~321~^188.^2^^~1~^~A~^^^1^184.^193.^1^^^^~10/01/2016~
-~09127~^~322~^3.^2^^~1~^~A~^^^1^3.^3.^1^^^^~10/01/2016~
-~09127~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2015~
-~09127~^~334~^5.^2^^~1~^~A~^^^1^5.^5.^1^^^^~10/01/2016~
-~09127~^~337~^297.^2^^~1~^~A~^^^1^286.^307.^1^^^^~10/01/2016~
-~09127~^~338~^14.^2^^~1~^~A~^^^1^14.^15.^1^^^^~10/01/2016~
-~09127~^~417~^12.^1^^~1~^~A~^^^^^^^^^^~10/01/2016~
-~09127~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2015~
-~09127~^~432~^12.^1^^~1~^~A~^^^^^^^^^^~10/01/2016~
-~09127~^~435~^12.^0^^~4~^~NC~^^^^^^^^^^~10/01/2016~
-~09127~^~601~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2015~
-~09128~^~208~^39.^0^^~4~^~NC~^^^^^^^^^^~08/01/1982~
-~09128~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2003~
-~09128~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2003~
-~09128~^~268~^163.^0^^~4~^^^^^^^^^^^~01/01/2007~
-~09128~^~301~^9.^0^^~1~^^^^^^^^^^^~08/01/1982~
-~09128~^~304~^12.^0^^~1~^^^^^^^^^^^~08/01/1982~
-~09128~^~305~^15.^0^^~1~^^^^^^^^^^^~08/01/1982~
-~09128~^~306~^162.^0^^~1~^^^^^^^^^^^~08/01/1982~
-~09128~^~307~^1.^0^^~1~^^^^^^^^^^^~08/01/1982~
-~09128~^~318~^10.^0^^~1~^^^^^^^^^^^~01/01/2007~
-~09128~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2002~
-~09128~^~320~^1.^0^^~4~^~NC~^^^^^^^^^^~01/01/2007~
-~09128~^~321~^4.^0^^~4~^~BNA~^~09116~^^^^^^^^^~01/01/2007~
-~09128~^~322~^2.^0^^~4~^~BNA~^~09116~^^^^^^^^^~01/01/2007~
-~09128~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~
-~09128~^~334~^1.^0^^~4~^~BNA~^~09116~^^^^^^^^^~01/01/2007~
-~09128~^~337~^0.^0^^~4~^~BFZN~^~09116~^^^^^^^^^~01/01/2003~
-~09128~^~338~^10.^0^^~4~^~BFZN~^~09116~^^^^^^^^^~01/01/2003~
-~09128~^~417~^10.^0^^~4~^^^^^^^^^^^~08/01/1982~
-~09128~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~
-~09128~^~432~^10.^0^^~4~^^^^^^^^^^^~01/01/2007~
-~09128~^~435~^10.^0^^~4~^~NC~^^^^^^^^^^~01/01/2007~
-~09128~^~601~^0.^0^^~7~^~Z~^^^^^^^^^^~08/01/1982~
-~09129~^~208~^57.^0^^~4~^~NC~^^^^^^^^^^~11/01/2012~
-~09129~^~268~^238.^0^^~4~^~NC~^^^^^^^^^^~11/01/2012~
-~09129~^~301~^37.^1^^~1~^~A~^^^^^^^^^^~04/01/2009~
-~09129~^~304~^14.^1^^~1~^~A~^^^^^^^^^^~04/01/2009~
-~09129~^~305~^24.^1^^~1~^~A~^^^^^^^^^^~04/01/2009~
-~09129~^~306~^203.^1^^~1~^~A~^^^^^^^^^^~04/01/2009~
-~09129~^~307~^1.^1^^~1~^~A~^^^^^^^^^~1~^~04/01/2009~
-~09129~^~318~^67.^1^^~1~^~A~^^^^^^^^^^~04/01/2009~
-~09129~^~320~^3.^1^^~1~^~A~^^^^^^^^^^~04/01/2009~
-~09129~^~321~^39.^1^^~1~^~A~^^^^^^^^^^~04/01/2009~
-~09129~^~322~^1.^1^^~1~^~A~^^^^^^^^^^~04/01/2009~
-~09129~^~334~^1.^1^^~1~^~A~^^^^^^^^^^~04/01/2009~
-~09129~^~337~^0.^1^^~1~^~A~^^^^^^^^^~1~^~04/01/2009~
-~09129~^~338~^64.^1^^~1~^~A~^^^^^^^^^^~04/01/2009~
-~09129~^~417~^2.^1^^~1~^~A~^^^^^^^^^^~04/01/2009~
-~09129~^~432~^2.^1^^~1~^~A~^^^^^^^^^^~04/01/2009~
-~09130~^~208~^60.^0^^~4~^~NC~^^^^^^^^^^~06/01/2008~
-~09130~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2008~
-~09130~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2008~
-~09130~^~268~^252.^0^^~4~^~NC~^^^^^^^^^^~06/01/2008~
-~09130~^~301~^11.^10^0.^~1~^~A~^^^4^9.^12.^3^9.^11.^~2~^~06/01/2008~
-~09130~^~304~^10.^14^0.^~1~^~A~^^^5^7.^15.^4^7.^12.^~2~^~06/01/2008~
-~09130~^~305~^14.^14^1.^~1~^~A~^^^5^10.^18.^4^10.^17.^~2~^~06/01/2008~
-~09130~^~306~^104.^9^5.^~1~^~A~^^^4^83.^119.^3^87.^121.^~2~^~06/01/2008~
-~09130~^~307~^5.^14^0.^~1~^~A~^^^5^2.^8.^4^2.^6.^~2~^~06/01/2008~
-~09130~^~318~^8.^0^^~4~^~BFZN~^~09135~^^^^^^^^^~06/01/2008~
-~09130~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2008~
-~09130~^~320~^0.^0^^~4~^~NC~^^^^^^^^^^~06/01/2008~
-~09130~^~321~^5.^0^^~4~^~BFZN~^~09135~^^^^^^^^^~06/01/2008~
-~09130~^~322~^0.^0^^~4~^~BFZN~^~09135~^^^^^^^^^~06/01/2008~
-~09130~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2009~
-~09130~^~334~^0.^0^^~4~^~BFZN~^~09135~^^^^^^^^^~06/01/2008~
-~09130~^~337~^0.^0^^~4~^~BFSN~^~09132~^^^^^^^^^~06/01/2008~
-~09130~^~338~^57.^0^^~4~^~BFSN~^~09132~^^^^^^^^^~06/01/2008~
-~09130~^~417~^0.^1^^~1~^~A~^^^^^^^^^~1~^~06/01/2008~
-~09130~^~431~^0.^1^^~1~^~A~^^^^^^^^^~1~^~06/01/2008~
-~09130~^~432~^0.^0^^~1~^~AS~^^^^^^^^^^~06/01/2008~
-~09130~^~435~^0.^0^^~4~^~NC~^^^^^^^^^^~03/01/2009~
-~09130~^~601~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2008~
-~09131~^~208~^67.^0^^~4~^~NC~^^^^^^^^^^~04/01/1997~
-~09131~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2003~
-~09131~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2003~
-~09131~^~268~^280.^0^^~4~^^^^^^^^^^^~12/01/2006~
-~09131~^~301~^14.^7^1.^~1~^^^^^^^^^^^~08/01/1982~
-~09131~^~304~^5.^4^0.^~1~^^^^^^^^^^^~08/01/1982~
-~09131~^~305~^10.^4^0.^~1~^^^^^^^^^^^~08/01/1982~
-~09131~^~306~^191.^5^27.^~1~^^^^^^^^^^^~08/01/1982~
-~09131~^~307~^2.^12^0.^~1~^^^^^^^^^^^~08/01/1982~
-~09131~^~318~^100.^0^^~1~^^^^^^^^^^^~08/01/1982~
-~09131~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2002~
-~09131~^~320~^5.^0^^~4~^~NC~^^^^^^^^^^~12/01/2006~
-~09131~^~321~^59.^0^^~4~^~BNA~^~09132~^^^^^^^^^~01/01/2003~
-~09131~^~322~^1.^0^^~4~^~BNA~^~09132~^^^^^^^^^~01/01/2003~
-~09131~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~
-~09131~^~334~^0.^0^^~4~^~BNA~^~09132~^^^^^^^^^~01/01/2003~
-~09131~^~337~^0.^0^^~4~^~BFZN~^~09132~^^^^^^^^^~01/01/2003~
-~09131~^~338~^72.^0^^~4~^~BFZN~^~09132~^^^^^^^^^~01/01/2003~
-~09131~^~417~^4.^0^^~1~^^^^^^^^^^^~08/01/1982~
-~09131~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~
-~09131~^~432~^4.^0^^~1~^^^^^^^^^^^~12/01/2006~
-~09131~^~435~^4.^0^^~4~^~NC~^^^^^^^^^^~12/01/2006~
-~09131~^~601~^0.^0^^~7~^~Z~^^^^^^^^^^~08/01/1982~
-~09132~^~208~^69.^0^^~4~^~NC~^^^^^^^^^^~05/01/2006~
-~09132~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~11/01/2002~
-~09132~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~11/01/2002~
-~09132~^~268~^288.^0^^~4~^~NC~^^^^^^^^^^~05/01/2006~
-~09132~^~301~^10.^36^0.^~1~^~A~^^^11^6.^17.^10^9.^11.^~2~^~01/01/2003~
-~09132~^~304~^7.^36^0.^~1~^~A~^^^11^5.^10.^10^6.^7.^~2~^~01/01/2003~
-~09132~^~305~^20.^34^0.^~1~^~A~^^^10^14.^28.^9^18.^22.^~2~^~01/01/2003~
-~09132~^~306~^191.^36^6.^~1~^~A~^^^11^134.^292.^10^177.^205.^~2~^~01/01/2003~
-~09132~^~307~^2.^31^0.^~1~^~A~^^^11^0.^9.^10^1.^2.^~1, 2~^~05/01/2003~
-~09132~^~318~^66.^0^^~1~^~AS~^^^^^^^^^^~01/01/2003~
-~09132~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2002~
-~09132~^~320~^3.^0^^~1~^~AS~^^^^^^^^^^~01/01/2003~
-~09132~^~321~^39.^2^^~1~^~A~^^^^^^^^^^~11/01/2002~
-~09132~^~322~^1.^1^^~1~^~A~^^^^^^^^^^~01/01/2003~
-~09132~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~
-~09132~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2003~
-~09132~^~337~^0.^1^^~1~^~A~^^^^^^^^^^~11/01/2002~
-~09132~^~338~^72.^1^^~1~^~A~^^^^^^^^^^~01/01/2003~
-~09132~^~417~^2.^4^0.^~1~^~A~^^^1^2.^2.^^^^~1, 2, 3~^~01/01/2003~
-~09132~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~
-~09132~^~432~^2.^4^0.^~1~^~A~^^^1^2.^2.^^^^^~05/01/2006~
-~09132~^~435~^2.^0^^~4~^~NC~^^^^^^^^^^~05/01/2006~
-~09132~^~601~^0.^0^^~7~^~Z~^^^^^^^^^^~08/01/1982~
-~09132~^~636~^4.^0^^~1~^^^^^^^^^^^~08/01/1982~
-~09133~^~208~^40.^0^^~4~^~NC~^^^^^^^^^^~08/01/1982~
-~09133~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2003~
-~09133~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2003~
-~09133~^~268~^167.^0^^~4~^^^^^^^^^^^~12/01/2006~
-~09133~^~301~^10.^0^^~1~^^^^^^^^^^^~08/01/1982~
-~09133~^~304~^6.^0^^~1~^^^^^^^^^^^~08/01/1982~
-~09133~^~305~^18.^0^^~1~^^^^^^^^^^^~08/01/1982~
-~09133~^~306~^107.^0^^~1~^^^^^^^^^^^~08/01/1982~
-~09133~^~307~^6.^0^^~1~^^^^^^^^^^^~08/01/1982~
-~09133~^~318~^45.^0^^~4~^~NC~^^^^^^^^^^~12/01/2006~
-~09133~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2002~
-~09133~^~320~^2.^0^^~4~^~NC~^^^^^^^^^^~12/01/2006~
-~09133~^~321~^26.^0^^~4~^~BFYN~^~09132~^^^^^^^^^~01/01/2003~
-~09133~^~322~^1.^0^^~4~^~BFYN~^~09132~^^^^^^^^^~01/01/2003~
-~09133~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~
-~09133~^~334~^0.^0^^~4~^~BFYN~^~09132~^^^^^^^^^~01/01/2003~
-~09133~^~337~^0.^0^^~4~^~BFYN~^~09132~^^^^^^^^^~01/01/2003~
-~09133~^~338~^48.^0^^~4~^~BFYN~^~09132~^^^^^^^^^~01/01/2003~
-~09133~^~417~^3.^0^^~4~^^^^^^^^^^^~08/01/1982~
-~09133~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~
-~09133~^~432~^3.^0^^~4~^^^^^^^^^^^~12/01/2006~
-~09133~^~435~^3.^0^^~4~^~NC~^^^^^^^^^^~12/01/2006~
-~09133~^~601~^0.^0^^~7~^~Z~^^^^^^^^^^~08/01/1982~
-~09134~^~208~^76.^0^^~4~^~NC~^^^^^^^^^^~12/01/2006~
-~09134~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2003~
-~09134~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2003~
-~09134~^~268~^319.^0^^~4~^~NC~^^^^^^^^^^~12/01/2006~
-~09134~^~301~^10.^2^^~1~^^^^^^^^^^^~08/01/1982~
-~09134~^~304~^6.^1^^~1~^^^^^^^^^^^~08/01/1982~
-~09134~^~305~^17.^1^^~1~^^^^^^^^^^^~08/01/1982~
-~09134~^~306~^103.^1^^~1~^^^^^^^^^^^~08/01/1982~
-~09134~^~307~^5.^1^^~1~^^^^^^^^^^^~08/01/1982~
-~09134~^~318~^64.^2^^~1~^^^^^^^^^^^~08/01/1982~
-~09134~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2002~
-~09134~^~320~^3.^2^^~1~^^^^^^^^^^^~12/01/2006~
-~09134~^~321~^38.^0^^~4~^~BNA~^~09132~^^^^^^^^^~01/01/2003~
-~09134~^~322~^1.^0^^~4~^~BNA~^~09132~^^^^^^^^^~01/01/2003~
-~09134~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~
-~09134~^~334~^0.^0^^~4~^~BNA~^~09132~^^^^^^^^^~01/01/2003~
-~09134~^~337~^0.^0^^~4~^~BFYN~^~09132~^^^^^^^^^~01/01/2003~
-~09134~^~338~^48.^0^^~4~^~BFYN~^~09132~^^^^^^^^^~01/01/2003~
-~09134~^~417~^3.^0^^~4~^^^^^^^^^^^~08/01/1982~
-~09134~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~
-~09134~^~432~^3.^0^^~4~^^^^^^^^^^^~12/01/2006~
-~09134~^~435~^3.^0^^~4~^~NC~^^^^^^^^^^~12/01/2006~
-~09134~^~601~^0.^0^^~7~^~Z~^^^^^^^^^^~08/01/1982~
-~09135~^~208~^60.^0^^~4~^~NC~^^^^^^^^^^~06/01/2008~
-~09135~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~11/01/2002~
-~09135~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~11/01/2002~
-~09135~^~268~^252.^0^^~4~^~NC~^^^^^^^^^^~06/01/2008~
-~09135~^~301~^11.^10^0.^~1~^~A~^^^4^9.^12.^3^9.^11.^~2~^~06/01/2008~
-~09135~^~304~^10.^14^0.^~1~^~A~^^^5^7.^15.^4^7.^12.^~2~^~06/01/2008~
-~09135~^~305~^14.^14^1.^~1~^~A~^^^5^10.^18.^4^10.^17.^~2~^~06/01/2008~
-~09135~^~306~^104.^9^5.^~1~^~A~^^^4^83.^119.^3^87.^121.^~2~^~06/01/2008~
-~09135~^~307~^5.^14^0.^~1~^~A~^^^5^2.^8.^4^2.^6.^~2~^~06/01/2008~
-~09135~^~318~^8.^0^^~1~^^^^^^^^^^^~08/01/1982~
-~09135~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2002~
-~09135~^~320~^0.^0^^~4~^~NC~^^^^^^^^^^~04/01/2014~
-~09135~^~321~^5.^0^^~4~^~BNA~^~09132~^^^^^^^^^~11/01/2002~
-~09135~^~322~^0.^0^^~4~^~BNA~^~09132~^^^^^^^^^~11/01/2002~
-~09135~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~
-~09135~^~334~^0.^0^^~4~^~BNA~^~09132~^^^^^^^^^~11/01/2002~
-~09135~^~337~^0.^0^^~4~^~BFSN~^~09132~^^^^^^^^^~11/01/2002~
-~09135~^~338~^57.^0^^~4~^~BFSN~^~09132~^^^^^^^^^~04/01/2014~
-~09135~^~417~^0.^1^^~1~^~A~^^^^^^^^^~1~^~06/01/2008~
-~09135~^~431~^0.^1^^~1~^~A~^^^^^^^^^~1~^~06/01/2008~
-~09135~^~432~^0.^0^^~1~^~AS~^^^^^^^^^^~06/01/2008~
-~09135~^~435~^0.^0^^~4~^~NC~^^^^^^^^^^~08/01/2008~
-~09135~^~601~^0.^0^^~7~^~Z~^^^^^^^^^^~08/01/1982~
-~09138~^~208~^53.^0^^~4~^~NC~^^^^^^^^^^~08/01/1982~
-~09138~^~268~^222.^0^^~4~^^^^^^^^^^^
-~09138~^~301~^9.^0^^~1~^^^^^^^^^^^~08/01/1982~
-~09138~^~305~^40.^0^^~1~^^^^^^^^^^^~08/01/1982~
-~09138~^~318~^720.^0^^~1~^^^^^^^^^^^~08/01/1982~
-~09138~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2002~
-~09138~^~320~^36.^0^^~1~^^^^^^^^^^^~06/01/2002~
-~09138~^~601~^0.^0^^~7~^~Z~^^^^^^^^^^~08/01/1982~
-~09139~^~208~^68.^0^^~4~^~NC~^^^^^^^^^^~02/01/2007~
-~09139~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2003~
-~09139~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2003~
-~09139~^~268~^285.^0^^~4~^~NC~^^^^^^^^^^~02/01/2007~
-~09139~^~301~^18.^2^^~1~^~A~^^^1^18.^19.^1^^^^~09/01/2003~
-~09139~^~304~^22.^2^^~1~^~A~^^^1^16.^28.^1^^^^~09/01/2003~
-~09139~^~305~^40.^2^^~1~^~A~^^^1^36.^43.^1^^^^~09/01/2003~
-~09139~^~306~^417.^2^^~1~^~A~^^^1^374.^460.^1^^^^~09/01/2003~
-~09139~^~307~^2.^2^^~1~^~A~^^^1^1.^3.^1^^^^~09/01/2003~
-~09139~^~318~^624.^0^^~1~^~AS~^^^^^^^^^^~04/01/2003~
-~09139~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2002~
-~09139~^~320~^31.^0^^~1~^~AS~^^^^^^^^^^~04/01/2003~
-~09139~^~321~^374.^21^205.^~1~^~A~^^^3^0.^1190.^2^-510.^1258.^~1, 2~^~04/01/2003~
-~09139~^~322~^0.^2^^~1~^~A~^^^1^0.^0.^1^^^~1~^~04/01/2003~
-~09139~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~
-~09139~^~334~^0.^2^^~1~^~A~^^^1^0.^0.^1^^^~1~^~04/01/2003~
-~09139~^~337~^5204.^19^106.^~1~^~A~^^^2^4700.^5500.^1^3847.^6560.^~2~^~04/01/2003~
-~09139~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2003~
-~09139~^~417~^49.^2^^~1~^~A~^^^1^47.^51.^1^^^^~09/01/2003~
-~09139~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~
-~09139~^~432~^49.^2^^~1~^~A~^^^^^^^^^^~02/01/2007~
-~09139~^~435~^49.^0^^~4~^~NC~^^^^^^^^^^~02/01/2007~
-~09139~^~601~^0.^0^^~7~^~Z~^^^^^^^^^^~08/01/1982~
-~09140~^~208~^69.^0^^~4~^~NC~^^^^^^^^^^~08/01/1982~
-~09140~^~268~^289.^0^^~4~^^^^^^^^^^^
-~09140~^~301~^21.^0^^~1~^^^^^^^^^^^~08/01/1982~
-~09140~^~304~^17.^1^^~1~^^^^^^^^^^^~08/01/1982~
-~09140~^~305~^27.^0^^~1~^^^^^^^^^^^~08/01/1982~
-~09140~^~306~^292.^1^^~1~^^^^^^^^^^^~08/01/1982~
-~09140~^~307~^37.^1^^~1~^^^^^^^^^^^~08/01/1982~
-~09140~^~318~^90.^0^^~1~^^^^^^^^^^^~08/01/1982~
-~09140~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2002~
-~09140~^~320~^5.^0^^~1~^^^^^^^^^^^~06/01/2002~
-~09140~^~601~^0.^0^^~7~^~Z~^^^^^^^^^^~08/01/1982~
-~09143~^~208~^36.^0^^~4~^~NC~^^^^^^^^^^~08/01/1982~
-~09143~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2003~
-~09143~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2003~
-~09143~^~268~^151.^0^^~4~^^^^^^^^^^^~03/01/2007~
-~09143~^~301~^7.^1^^~1~^^^^^^^^^^^~08/01/1982~
-~09143~^~304~^7.^1^^~1~^^^^^^^^^^^~08/01/1982~
-~09143~^~305~^11.^1^^~1~^^^^^^^^^^^~08/01/1982~
-~09143~^~306~^225.^1^^~1~^^^^^^^^^^^~08/01/1982~
-~09143~^~307~^4.^1^^~1~^^^^^^^^^^^~08/01/1982~
-~09143~^~318~^283.^1^^~1~^^^^^^^^^^^~08/01/1982~
-~09143~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2002~
-~09143~^~320~^14.^0^^~4~^~NC~^^^^^^^^^^~03/01/2007~
-~09143~^~321~^170.^0^^~4~^~O~^^^^^^^^^^~04/01/2003~
-~09143~^~322~^0.^0^^~4~^~BFSN~^~09139~^^^^^^^^^~04/01/2003~
-~09143~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~
-~09143~^~334~^0.^0^^~4~^~BFSN~^~09139~^^^^^^^^^~04/01/2003~
-~09143~^~337~^3909.^0^^~4~^~BFSN~^~09139~^^^^^^^^^~04/01/2003~
-~09143~^~338~^0.^0^^~4~^~BFSN~^~09139~^^^^^^^^^~04/01/2003~
-~09143~^~417~^5.^0^^~4~^^^^^^^^^^^~04/01/1985~
-~09143~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~
-~09143~^~432~^5.^0^^~4~^^^^^^^^^^^~03/01/2007~
-~09143~^~435~^5.^0^^~4~^~NC~^^^^^^^^^^~03/01/2007~
-~09143~^~601~^0.^0^^~7~^~Z~^^^^^^^^^^~08/01/1982~
-~09144~^~208~^95.^0^^~4~^~NC~^^^^^^^^^^~08/01/2010~
-~09144~^~268~^397.^0^^~4~^~NC~^^^^^^^^^^~08/01/2010~
-~09144~^~301~^24.^2^^~1~^~A~^^^1^19.^29.^1^^^^~01/01/2010~
-~09144~^~304~^29.^2^^~1~^~A~^^^1^18.^40.^1^^^^~01/01/2010~
-~09144~^~305~^21.^2^^~1~^~A~^^^1^17.^26.^1^^^^~01/01/2010~
-~09144~^~306~^448.^2^^~1~^~A~^^^1^347.^548.^1^^^^~01/01/2010~
-~09144~^~307~^2.^2^^~1~^~A~^^^1^2.^2.^^^^~1~^~01/01/2010~
-~09144~^~318~^110.^2^^~1~^~A~^^^1^61.^158.^1^^^^~08/01/2010~
-~09144~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2002~
-~09144~^~320~^5.^2^^~1~^~A~^^^1^3.^8.^1^^^^~08/01/2010~
-~09144~^~321~^61.^2^^~1~^~A~^^^1^37.^84.^1^^^^~08/01/2010~
-~09144~^~322~^6.^2^^~1~^~A~^^^1^0.^12.^1^^^~1~^~08/01/2010~
-~09144~^~334~^5.^2^^~1~^~A~^^^1^0.^9.^1^^^~1~^~08/01/2010~
-~09144~^~337~^0.^2^^~1~^~A~^^^1^0.^0.^^^^~1~^~08/01/2010~
-~09144~^~338~^157.^2^^~1~^~A~^^^1^42.^273.^1^^^^~08/01/2010~
-~09144~^~417~^24.^1^^~1~^~A~^^^^^^^^^^~01/01/2010~
-~09144~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~
-~09144~^~432~^24.^1^^~1~^~A~^^^^^^^^^^~01/01/2010~
-~09144~^~435~^24.^0^^~4~^~NC~^^^^^^^^^^~08/01/2010~
-~09144~^~601~^0.^0^^~7~^~Z~^^^^^^^^^^~08/01/1982~
-~09145~^~208~^60.^0^^~4~^~NC~^^^^^^^^^^~08/01/1982~
-~09145~^~268~^251.^0^^~4~^^^^^^^^^^^
-~09145~^~301~^19.^3^7.^~1~^^^^^^^^^^^~08/01/1982~
-~09145~^~304~^15.^1^^~1~^^^^^^^^^^^~08/01/1982~
-~09145~^~305~^17.^3^3.^~1~^^^^^^^^^^^~08/01/1982~
-~09145~^~306~^79.^1^^~1~^^^^^^^^^^^~08/01/1982~
-~09145~^~307~^14.^1^^~1~^^^^^^^^^^^~08/01/1982~
-~09145~^~318~^3.^2^^~1~^^^^^^^^^^^~08/01/1982~
-~09145~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2002~
-~09145~^~320~^0.^2^^~1~^^^^^^^^^^^~06/01/2002~
-~09145~^~601~^0.^0^^~7~^~Z~^^^^^^^^^^~08/01/1982~
-~09146~^~208~^79.^0^^~4~^~NC~^^^^^^^^^^~08/01/1982~
-~09146~^~268~^331.^0^^~4~^^^^^^^^^^^
-~09146~^~301~^21.^8^3.^~1~^^^^^^^^^^^~08/01/1982~
-~09146~^~304~^10.^1^^~1~^^^^^^^^^^^~08/01/1982~
-~09146~^~305~^23.^6^3.^~1~^^^^^^^^^^^~08/01/1982~
-~09146~^~306~^250.^3^20.^~1~^^^^^^^^^^^~08/01/1982~
-~09146~^~307~^3.^2^^~1~^^^^^^^^^^^~08/01/1982~
-~09146~^~318~^40.^0^^~1~^^^^^^^^^^^~08/01/1982~
-~09146~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2002~
-~09146~^~320~^2.^0^^~1~^^^^^^^^^^^~06/01/2002~
-~09146~^~601~^0.^0^^~7~^~Z~^^^^^^^^^^~08/01/1982~
-~09147~^~208~^281.^0^^~4~^~NC~^^^^^^^^^^~07/01/2015~
-~09147~^~268~^1176.^0^^~4~^~NC~^^^^^^^^^^~07/01/2015~
-~09147~^~301~^63.^5^9.^~1~^~A~^^^1^38.^93.^4^37.^88.^~2, 3~^~07/01/2015~
-~09147~^~305~^68.^5^7.^~1~^~A~^^^1^47.^89.^4^46.^89.^~2, 3~^~07/01/2015~
-~09147~^~306~^217.^5^53.^~1~^~A~^^^1^64.^362.^4^68.^365.^~2, 3~^~07/01/2015~
-~09147~^~307~^5.^5^0.^~1~^~A~^^^1^2.^6.^4^3.^6.^~2, 3~^~07/01/2015~
-~09147~^~601~^0.^0^^~7~^~Z~^^^^^^^^^^~08/01/1982~
-~09148~^~208~^61.^0^^~4~^~NC~^^^^^^^^^^~05/01/2009~
-~09148~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2003~
-~09148~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2003~
-~09148~^~268~^255.^0^^~4~^~NC~^^^^^^^^^^~05/01/2009~
-~09148~^~301~^34.^20^4.^~1~^~A~^^^4^21.^45.^3^20.^46.^~2~^~01/01/2003~
-~09148~^~304~^17.^21^0.^~1~^~A~^^^4^12.^23.^3^13.^19.^~2~^~01/01/2003~
-~09148~^~305~^34.^19^1.^~1~^~A~^^^3^25.^42.^2^27.^40.^~2~^~01/01/2003~
-~09148~^~306~^312.^16^6.^~1~^~A~^^^3^286.^358.^2^283.^340.^~2~^~01/01/2003~
-~09148~^~307~^3.^18^0.^~1~^~A~^^^4^0.^4.^3^0.^5.^~1, 2~^~05/01/2003~
-~09148~^~318~^87.^18^4.^~1~^~A~^^^3^53.^120.^2^66.^107.^~2~^~01/01/2003~
-~09148~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2002~
-~09148~^~320~^4.^18^0.^~1~^~A~^^^3^3.^6.^2^3.^5.^~2~^~01/01/2003~
-~09148~^~321~^52.^18^2.^~1~^~A~^^^3^32.^70.^2^39.^65.^~2~^~01/01/2003~
-~09148~^~322~^0.^6^0.^~1~^~A~^^^2^0.^0.^^^^~1, 2, 3~^~01/01/2003~
-~09148~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~
-~09148~^~334~^0.^6^0.^~1~^~A~^^^2^0.^0.^^^^~1, 2, 3~^~01/01/2003~
-~09148~^~337~^0.^6^0.^~1~^~A~^^^2^0.^0.^^^^~1, 2, 3~^~01/01/2003~
-~09148~^~338~^122.^6^5.^~1~^~A~^^^2^96.^150.^4^105.^137.^~2, 3~^~01/01/2003~
-~09148~^~417~^25.^17^2.^~1~^~A~^^^3^20.^35.^2^16.^33.^~2~^~01/01/2003~
-~09148~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~
-~09148~^~432~^25.^17^2.^~1~^~A~^^^3^20.^35.^2^16.^33.^^~05/01/2009~
-~09148~^~435~^25.^0^^~4~^~NC~^^^^^^^^^^~05/01/2009~
-~09148~^~601~^0.^0^^~7~^~Z~^^^^^^^^^^~08/01/1982~
-~09149~^~208~^71.^0^^~4~^~NC~^^^^^^^^^^~02/01/2007~
-~09149~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~08/01/2002~
-~09149~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~08/01/2002~
-~09149~^~268~^296.^0^^~4~^~NC~^^^^^^^^^^~02/01/2007~
-~09149~^~301~^62.^2^^~1~^~A~^^^1^47.^77.^^^^^~02/01/2003~
-~09149~^~304~^20.^2^^~1~^~A~^^^1^18.^21.^^^^^~02/01/2003~
-~09149~^~305~^19.^2^^~1~^~A~^^^1^16.^22.^^^^^~02/01/2003~
-~09149~^~306~^186.^2^^~1~^~A~^^^1^179.^193.^^^^^~02/01/2003~
-~09149~^~307~^10.^2^^~1~^~A~^^^1^9.^11.^^^^^~02/01/2003~
-~09149~^~318~^290.^2^^~1~^~A~^^^^^^^^^^~02/01/2003~
-~09149~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2002~
-~09149~^~320~^15.^2^^~1~^~A~^^^^^^^^^^~08/01/2002~
-~09149~^~321~^0.^2^^~1~^~A~^^^^^^^^^^~08/01/2002~
-~09149~^~322~^155.^2^^~1~^~A~^^^^^^^^^^~08/01/2002~
-~09149~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~
-~09149~^~334~^193.^2^^~1~^~A~^^^^^^^^^^~08/01/2002~
-~09149~^~337~^0.^0^^~4~^~BFZN~^~09202~^^^^^^^^^~02/01/2003~
-~09149~^~338~^129.^0^^~4~^~BFZN~^~09202~^^^^^^^^^~05/01/2003~
-~09149~^~417~^17.^2^^~1~^~A~^^^1^15.^18.^^^^^~02/01/2003~
-~09149~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~
-~09149~^~432~^17.^2^^~1~^~A~^^^^^^^^^^~02/01/2007~
-~09149~^~435~^17.^0^^~4~^~NC~^^^^^^^^^^~10/01/2009~
-~09149~^~601~^0.^0^^~7~^~Z~^^^^^^^^^^~08/01/1982~
-~09150~^~208~^29.^0^^~4~^~NC~^^^^^^^^^^~08/01/1982~
-~09150~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~
-~09150~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~
-~09150~^~268~^121.^0^^~4~^^^^^^^^^^^~02/01/2007~
-~09150~^~301~^26.^0^^~1~^^^^^^^^^^^~08/01/1982~
-~09150~^~304~^8.^0^^~4~^^^^^^^^^^^~08/01/1982~
-~09150~^~305~^16.^0^^~1~^^^^^^^^^^^~08/01/1982~
-~09150~^~306~^138.^0^^~1~^^^^^^^^^^^~08/01/1982~
-~09150~^~307~^2.^0^^~1~^^^^^^^^^^^~08/01/1982~
-~09150~^~318~^22.^0^^~1~^~AS~^^^^^^^^^^~02/01/2007~
-~09150~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2002~
-~09150~^~320~^1.^0^^~1~^~AS~^^^^^^^^^^~02/01/2007~
-~09150~^~321~^3.^2^^~1~^~A~^^^2^3.^3.^1^^^^~02/01/2003~
-~09150~^~322~^1.^2^^~1~^~A~^^^2^0.^1.^1^^^^~02/01/2003~
-~09150~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~
-~09150~^~334~^20.^1^^~1~^~A~^^^^^^^^^^~02/01/2003~
-~09150~^~337~^0.^1^^~1~^~A~^^^^^^^^^^~02/01/2003~
-~09150~^~338~^11.^2^^~1~^~A~^^^2^9.^12.^1^^^^~02/01/2003~
-~09150~^~417~^11.^7^2.^~1~^^^^^^^^^^^~08/01/1982~
-~09150~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~
-~09150~^~432~^11.^7^2.^~1~^^^^^^^^^^^~02/01/2007~
-~09150~^~435~^11.^0^^~4~^~NC~^^^^^^^^^^~02/01/2007~
-~09150~^~601~^0.^0^^~7~^~Z~^^^^^^^^^^~08/01/1982~
-~09152~^~208~^22.^0^^~4~^~NC~^^^^^^^^^^~11/01/2009~
-~09152~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~
-~09152~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~
-~09152~^~268~^91.^0^^~4~^~NC~^^^^^^^^^^~11/01/2009~
-~09152~^~301~^6.^6^2.^~1~^~A~^^^2^3.^9.^1^-21.^33.^~2~^~11/01/2009~
-~09152~^~304~^6.^6^0.^~1~^~A~^^^2^3.^8.^1^-5.^17.^~2~^~11/01/2009~
-~09152~^~305~^8.^6^2.^~1~^~A~^^^2^4.^11.^1^-28.^44.^~2~^~11/01/2009~
-~09152~^~306~^103.^8^6.^~1~^~A~^^^2^53.^145.^1^26.^180.^~2~^~11/01/2009~
-~09152~^~307~^1.^15^0.^~1~^^^^^^^^^^^~11/01/2009~
-~09152~^~318~^6.^1^^~1~^~A~^^^^^^^^^^~11/01/2009~
-~09152~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2002~
-~09152~^~320~^0.^1^^~1~^~A~^^^^^^^^^^~11/01/2009~
-~09152~^~321~^1.^1^^~1~^~A~^^^^^^^^^^~11/01/2009~
-~09152~^~322~^0.^1^^~1~^~A~^^^^^^^^^^~11/01/2009~
-~09152~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~
-~09152~^~334~^4.^1^^~1~^~A~^^^^^^^^^^~11/01/2009~
-~09152~^~337~^0.^1^^~1~^~A~^^^^^^^^^~1~^~11/01/2009~
-~09152~^~338~^15.^1^^~1~^~A~^^^^^^^^^^~11/01/2009~
-~09152~^~417~^20.^4^6.^~1~^~A~^^^2^12.^34.^1^-60.^99.^~2~^~11/01/2009~
-~09152~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~
-~09152~^~432~^20.^4^6.^~1~^~A~^^^2^12.^34.^1^-60.^99.^^~11/01/2009~
-~09152~^~435~^20.^0^^~4~^~NC~^^^^^^^^^^~11/01/2009~
-~09152~^~601~^0.^0^^~7~^~Z~^^^^^^^^^^~08/01/1982~
-~09153~^~208~^17.^0^^~4~^~NC~^^^^^^^^^^~03/01/2015~
-~09153~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~
-~09153~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~
-~09153~^~268~^72.^0^^~4~^~NC~^^^^^^^^^^~03/01/2015~
-~09153~^~301~^10.^18^0.^~1~^~A~^^^1^7.^15.^11^8.^10.^~2, 3~^~03/01/2015~
-~09153~^~304~^7.^18^0.^~1~^~A~^^^1^6.^8.^12^6.^6.^~2, 3~^~03/01/2015~
-~09153~^~305~^9.^18^0.^~1~^~A~^^^1^7.^12.^11^8.^9.^~2, 3~^~08/01/1982~
-~09153~^~306~^109.^18^2.^~1~^~A~^^^1^76.^128.^12^103.^115.^~2, 3~^~03/01/2015~
-~09153~^~307~^24.^18^0.^~1~^~A~^^^1^14.^31.^12^22.^25.^~2, 3~^~03/01/2015~
-~09153~^~318~^33.^0^^~1~^~AS~^^^^^^^^^^~03/01/2015~
-~09153~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2002~
-~09153~^~320~^2.^0^^~1~^~AS~^^^^^^^^^^~03/01/2015~
-~09153~^~321~^0.^1^^~1~^~A~^^^^^^^^^~1~^~03/01/2015~
-~09153~^~322~^0.^1^^~1~^~A~^^^^^^^^^~1~^~03/01/2015~
-~09153~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~
-~09153~^~334~^40.^1^^~1~^~A~^^^^^^^^^^~03/01/2015~
-~09153~^~337~^0.^1^^~1~^~A~^^^^^^^^^~1~^~03/01/2015~
-~09153~^~338~^11.^1^^~1~^~A~^^^^^^^^^^~03/01/2015~
-~09153~^~417~^9.^9^0.^~1~^~A~^^^1^4.^12.^4^8.^9.^~1, 2, 3~^~03/01/2015~
-~09153~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~
-~09153~^~432~^9.^9^0.^~1~^~A~^^^1^4.^12.^4^8.^9.^^~03/01/2015~
-~09153~^~435~^9.^0^^~4~^~NC~^^^^^^^^^^~03/01/2015~
-~09153~^~601~^0.^0^^~7~^~Z~^^^^^^^^^^~08/01/1982~
-~09156~^~208~^47.^0^^~4~^^^^^^^^^^^~04/01/1985~
-~09156~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~
-~09156~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~
-~09156~^~268~^197.^0^^~4~^^^^^^^^^^^~02/01/2007~
-~09156~^~301~^134.^0^^~1~^^^^^^^^^^^~08/01/1982~
-~09156~^~304~^15.^0^^~1~^^^^^^^^^^^~08/01/1982~
-~09156~^~305~^12.^0^^~1~^^^^^^^^^^^~08/01/1982~
-~09156~^~306~^160.^0^^~1~^^^^^^^^^^^~08/01/1982~
-~09156~^~307~^6.^0^^~1~^^^^^^^^^^^~08/01/1982~
-~09156~^~318~^50.^0^^~1~^^^^^^^^^^^~08/01/1982~
-~09156~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2002~
-~09156~^~320~^3.^0^^~1~^^^^^^^^^^^~02/01/2007~
-~09156~^~321~^7.^0^^~4~^~BNA~^~09150~^^^^^^^^^~02/01/2003~
-~09156~^~322~^1.^0^^~4~^~BNA~^~09150~^^^^^^^^^~02/01/2003~
-~09156~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~
-~09156~^~334~^45.^0^^~4~^~BNA~^~09150~^^^^^^^^^~02/01/2003~
-~09156~^~337~^0.^0^^~4~^~BFSN~^~09150~^^^^^^^^^~02/01/2003~
-~09156~^~338~^18.^0^^~4~^~BFSN~^~09150~^^^^^^^^^~02/01/2003~
-~09156~^~417~^13.^0^^~4~^^^^^^^^^^^~04/01/1985~
-~09156~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~
-~09156~^~432~^13.^0^^~4~^^^^^^^^^^^~02/01/2007~
-~09156~^~435~^13.^0^^~4~^~NC~^^^^^^^^^^~02/01/2007~
-~09156~^~601~^0.^0^^~7~^~Z~^^^^^^^^^^~08/01/1982~
-~09156~^~636~^35.^0^^~1~^^^^^^^^^^^~08/01/1982~
-~09159~^~208~^30.^0^^~4~^~NC~^^^^^^^^^^~12/01/2006~
-~09159~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~
-~09159~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~
-~09159~^~268~^126.^0^^~4~^^^^^^^^^^^~12/01/2006~
-~09159~^~301~^33.^0^^~1~^^^^^^^^^^^~05/01/2004~
-~09159~^~304~^6.^0^^~4~^^^^^^^^^^^~05/01/2004~
-~09159~^~305~^18.^0^^~1~^^^^^^^^^^^~05/01/2004~
-~09159~^~306~^102.^0^^~1~^^^^^^^^^^^~05/01/2004~
-~09159~^~307~^2.^0^^~1~^^^^^^^^^^^~05/01/2004~
-~09159~^~318~^50.^0^^~4~^~BFZN~^~09160~^^^^^^^^^~05/01/2004~
-~09159~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2002~
-~09159~^~320~^2.^0^^~4~^~BFZN~^~09160~^^^^^^^^^~05/01/2004~
-~09159~^~321~^30.^0^^~4~^~BFZN~^~09160~^^^^^^^^^~05/01/2004~
-~09159~^~322~^0.^0^^~4~^~BFZN~^~09160~^^^^^^^^^~05/01/2004~
-~09159~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~
-~09159~^~334~^0.^0^^~4~^~BFZN~^~09160~^^^^^^^^^~05/01/2004~
-~09159~^~337~^0.^0^^~4~^~BFZN~^~09160~^^^^^^^^^~05/01/2004~
-~09159~^~338~^0.^0^^~4~^~BFZN~^~09160~^^^^^^^^^~05/01/2004~
-~09159~^~417~^8.^7^2.^~1~^^^^^^^^^^^~05/01/2004~
-~09159~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~
-~09159~^~432~^8.^7^2.^~1~^^^^^^^^^^^~12/01/2006~
-~09159~^~435~^8.^0^^~4~^~NC~^^^^^^^^^^~12/01/2006~
-~09159~^~601~^0.^0^^~7~^~Z~^^^^^^^^^^~08/01/1982~
-~09160~^~208~^25.^0^^~4~^~NC~^^^^^^^^^^~05/01/2006~
-~09160~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~
-~09160~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~
-~09160~^~268~^104.^0^^~4~^~NC~^^^^^^^^^^~05/01/2006~
-~09160~^~301~^14.^4^0.^~1~^~A~^^^1^12.^16.^3^11.^16.^~2, 3~^~04/01/2004~
-~09160~^~304~^8.^4^0.^~1~^~A~^^^1^8.^8.^3^7.^8.^~2, 3~^~04/01/2004~
-~09160~^~305~^14.^4^0.^~1~^~A~^^^1^14.^15.^3^13.^15.^~2, 3~^~04/01/2004~
-~09160~^~306~^117.^4^5.^~1~^~A~^^^1^104.^126.^3^100.^133.^~2, 3~^~04/01/2004~
-~09160~^~307~^2.^4^0.^~1~^~A~^^^1^0.^4.^3^0.^4.^~1, 2, 3~^~04/01/2004~
-~09160~^~318~^50.^4^20.^~1~^~A~^^^1^19.^109.^3^-14.^113.^~2, 3~^~04/01/2004~
-~09160~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2002~
-~09160~^~320~^2.^4^1.^~1~^~A~^^^1^1.^5.^3^0.^5.^~2, 3~^~04/01/2004~
-~09160~^~321~^30.^4^12.^~1~^~A~^^^1^11.^65.^3^-8.^68.^~1, 2, 3~^~04/01/2004~
-~09160~^~322~^0.^4^0.^~1~^~A~^^^1^0.^0.^^^^~1, 2, 3~^~04/01/2004~
-~09160~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~
-~09160~^~334~^0.^4^0.^~1~^~A~^^^1^0.^0.^^^^~1, 2, 3~^~04/01/2004~
-~09160~^~337~^0.^4^0.^~1~^~A~^^^1^0.^0.^^^^~1, 2, 3~^~04/01/2004~
-~09160~^~338~^0.^4^0.^~1~^~A~^^^1^0.^0.^^^^~2, 3~^~04/01/2004~
-~09160~^~417~^10.^4^1.^~1~^~A~^^^1^7.^14.^3^5.^15.^~2, 3~^~04/01/2004~
-~09160~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~
-~09160~^~432~^10.^4^1.^~1~^~A~^^^1^7.^14.^3^5.^15.^^~05/01/2006~
-~09160~^~435~^10.^0^^~4~^~NC~^^^^^^^^^^~05/01/2006~
-~09160~^~601~^0.^0^^~7~^~Z~^^^^^^^^^^~08/01/1982~
-~09161~^~208~^21.^0^^~4~^~NC~^^^^^^^^^^~08/01/1982~
-~09161~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~
-~09161~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~
-~09161~^~268~^88.^0^^~4~^^^^^^^^^^^~12/01/2006~
-~09161~^~301~^12.^3^0.^~1~^^^^^^^^^^^~08/01/1982~
-~09161~^~304~^7.^3^0.^~1~^^^^^^^^^^^~08/01/1982~
-~09161~^~305~^10.^3^0.^~1~^^^^^^^^^^^~08/01/1982~
-~09161~^~306~^75.^3^7.^~1~^^^^^^^^^^^~08/01/1982~
-~09161~^~307~^16.^3^2.^~1~^^^^^^^^^^^~08/01/1982~
-~09161~^~318~^16.^3^2.^~1~^^^^^^^^^^^~08/01/1982~
-~09161~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2002~
-~09161~^~320~^1.^3^0.^~1~^^^^^^^^^^^~12/01/2006~
-~09161~^~321~^10.^0^^~4~^~BNA~^~09159~^^^^^^^^^~02/01/2003~
-~09161~^~322~^0.^0^^~4~^~BNA~^~09159~^^^^^^^^^~02/01/2003~
-~09161~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~
-~09161~^~334~^0.^0^^~4~^~BNA~^~09159~^^^^^^^^^~02/01/2003~
-~09161~^~337~^0.^0^^~4~^~BFSN~^~09159~^^^^^^^^^~02/01/2003~
-~09161~^~338~^0.^0^^~4~^~BFSN~^~09159~^^^^^^^^^~02/01/2003~
-~09161~^~417~^8.^6^2.^~1~^^^^^^^^^^^~08/01/1982~
-~09161~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~
-~09161~^~432~^8.^6^2.^~1~^^^^^^^^^^^~12/01/2006~
-~09161~^~435~^8.^0^^~4~^~NC~^^^^^^^^^^~12/01/2006~
-~09161~^~601~^0.^0^^~7~^~Z~^^^^^^^^^^~08/01/1982~
-~09163~^~208~^317.^0^^~4~^~NC~^^^^^^^^^^~03/01/2013~
-~09163~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2013~
-~09163~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2013~
-~09163~^~268~^1328.^0^^~4~^~NC~^^^^^^^^^^~03/01/2013~
-~09163~^~301~^19.^0^^~4~^~FLC~^^^^^^^^^^~03/01/2013~
-~09163~^~304~^18.^0^^~4~^~FLC~^^^^^^^^^^~03/01/2013~
-~09163~^~305~^36.^0^^~4~^~FLC~^^^^^^^^^^~03/01/2013~
-~09163~^~306~^214.^0^^~4~^~FLC~^^^^^^^^^^~03/01/2013~
-~09163~^~307~^3.^0^^~4~^~FLC~^^^^^^^^^^~03/01/2013~
-~09163~^~318~^141.^0^^~4~^~FLC~^^^^^^^^^^~03/01/2013~
-~09163~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2013~
-~09163~^~320~^7.^0^^~4~^~NC~^^^^^^^^^^~03/01/2013~
-~09163~^~321~^84.^0^^~4~^~FLC~^^^^^^^^^^~03/01/2013~
-~09163~^~322~^0.^0^^~4~^~FLC~^^^^^^^^^^~03/01/2013~
-~09163~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2013~
-~09163~^~334~^0.^0^^~4~^~FLC~^^^^^^^^^^~03/01/2013~
-~09163~^~337~^0.^0^^~4~^~FLC~^^^^^^^^^^~03/01/2013~
-~09163~^~338~^208.^0^^~4~^~FLC~^^^^^^^^^^~03/01/2013~
-~09163~^~417~^12.^0^^~4~^~FLC~^^^^^^^^^^~03/01/2013~
-~09163~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2013~
-~09163~^~432~^12.^0^^~4~^~FLC~^^^^^^^^^^~03/01/2013~
-~09163~^~435~^12.^0^^~4~^~NC~^^^^^^^^^^~03/01/2013~
-~09163~^~601~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2013~
-~09164~^~208~^66.^0^^~4~^~NC~^^^^^^^^^^~08/01/1982~
-~09164~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2002~
-~09164~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2002~
-~09164~^~268~^276.^0^^~4~^^^^^^^^^^^~03/01/2007~
-~09164~^~301~^5.^7^1.^~1~^^^^^^^^^^^~08/01/1982~
-~09164~^~304~^10.^2^^~1~^^^^^^^^^^^~08/01/1982~
-~09164~^~305~^31.^7^3.^~1~^^^^^^^^^^^~08/01/1982~
-~09164~^~306~^171.^5^23.^~1~^^^^^^^^^^^~08/01/1982~
-~09164~^~307~^1.^3^0.^~1~^^^^^^^^^^^~08/01/1982~
-~09164~^~318~^0.^1^^~1~^^^^^^^^^^^~08/01/1982~
-~09164~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2002~
-~09164~^~320~^0.^1^^~1~^^^^^^^^^^^~03/01/2007~
-~09164~^~321~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~
-~09164~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~
-~09164~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~
-~09164~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~
-~09164~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~
-~09164~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~
-~09164~^~417~^14.^0^^~4~^^^^^^^^^^^~04/01/1985~
-~09164~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~
-~09164~^~432~^14.^0^^~4~^^^^^^^^^^^~03/01/2007~
-~09164~^~435~^14.^0^^~4~^~NC~^^^^^^^^^^~03/01/2007~
-~09164~^~601~^0.^0^^~7~^~Z~^^^^^^^^^^~08/01/1982~
-~09165~^~208~^277.^0^^~4~^~NC~^^^^^^^^^^~03/01/2007~
-~09165~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~11/01/2000~
-~09165~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~11/01/2000~
-~09165~^~268~^1159.^0^^~4~^^^^^^^^^^^~03/01/2007~
-~09165~^~301~^33.^0^^~1~^^^^^^^^^^^~08/01/1982~
-~09165~^~304~^42.^0^^~1~^^^^^^^^^^^~08/01/1982~
-~09165~^~305~^181.^0^^~1~^^^^^^^^^^^~08/01/1982~
-~09165~^~306~^1110.^0^^~1~^^^^^^^^^^^~08/01/1982~
-~09165~^~307~^3.^0^^~1~^^^^^^^^^^^~08/01/1982~
-~09165~^~318~^0.^0^^~1~^^^^^^^^^^^~08/01/1982~
-~09165~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2002~
-~09165~^~320~^0.^0^^~1~^^^^^^^^^^^~03/01/2007~
-~09165~^~321~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~
-~09165~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~
-~09165~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~
-~09165~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~
-~09165~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~
-~09165~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~
-~09165~^~417~^12.^0^^~4~^^^^^^^^^^^~04/01/1985~
-~09165~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~
-~09165~^~432~^12.^0^^~4~^^^^^^^^^^^~03/01/2007~
-~09165~^~435~^12.^0^^~4~^~NC~^^^^^^^^^^~03/01/2007~
-~09165~^~601~^0.^0^^~7~^~Z~^^^^^^^^^^~08/01/1982~
-~09167~^~208~^55.^0^^~4~^~NC~^^^^^^^^^^~08/01/1982~
-~09167~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~
-~09167~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~
-~09167~^~268~^230.^0^^~4~^^^^^^^^^^^~01/01/2007~
-~09167~^~301~^26.^3^0.^~1~^^^^^^^^^^^~08/01/1982~
-~09167~^~304~^21.^3^0.^~1~^^^^^^^^^^^~08/01/1982~
-~09167~^~305~^26.^3^1.^~1~^^^^^^^^^^^~08/01/1982~
-~09167~^~306~^145.^3^3.^~1~^^^^^^^^^^^~08/01/1982~
-~09167~^~307~^1.^3^0.^~1~^^^^^^^^^^^~08/01/1982~
-~09167~^~318~^35.^3^3.^~1~^^^^^^^^^^^~08/01/1982~
-~09167~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2002~
-~09167~^~320~^2.^3^0.^~1~^^^^^^^^^^^~01/01/2007~
-~09167~^~321~^21.^0^^~4~^~BNA~^~09042~^^^^^^^^^~02/01/2003~
-~09167~^~322~^0.^0^^~4~^~BNA~^~09042~^^^^^^^^^~02/01/2003~
-~09167~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~
-~09167~^~334~^0.^0^^~4~^~BNA~^~09042~^^^^^^^^^~02/01/2003~
-~09167~^~337~^0.^0^^~4~^~BFZN~^~09042~^^^^^^^^^~02/01/2003~
-~09167~^~338~^118.^0^^~4~^~BFZN~^~09042~^^^^^^^^^~02/01/2003~
-~09167~^~417~^26.^3^2.^~1~^^^^^^^^^^^~08/01/1982~
-~09167~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~
-~09167~^~432~^26.^3^2.^~1~^^^^^^^^^^^~01/01/2007~
-~09167~^~435~^26.^0^^~4~^~NC~^^^^^^^^^^~01/01/2007~
-~09167~^~601~^0.^0^^~7~^~Z~^^^^^^^^^^~08/01/1982~
-~09172~^~208~^60.^0^^~4~^~NC~^^^^^^^^^^~08/01/1982~
-~09172~^~268~^251.^0^^~4~^^^^^^^^^^^
-~09172~^~301~^1.^1^^~1~^^^^^^^^^^^~08/01/1982~
-~09172~^~304~^10.^1^^~1~^^^^^^^^^^^~08/01/1982~
-~09172~^~305~^21.^1^^~1~^^^^^^^^^^^~08/01/1982~
-~09172~^~306~^266.^1^^~1~^^^^^^^^^^^~08/01/1982~
-~09172~^~307~^0.^1^^~1~^^^^^^^^^^^~08/01/1982~
-~09172~^~601~^0.^0^^~7~^~Z~^^^^^^^^^^~08/01/1982~
-~09173~^~208~^286.^0^^~4~^~NC~^^^^^^^^^^~08/01/1982~
-~09173~^~268~^1197.^0^^~4~^^^^^^^^^^^
-~09173~^~301~^45.^0^^~1~^^^^^^^^^^^~08/01/1982~
-~09173~^~304~^46.^0^^~1~^^^^^^^^^^^~08/01/1982~
-~09173~^~305~^196.^0^^~1~^^^^^^^^^^^~08/01/1982~
-~09173~^~306~^658.^1^^~1~^^^^^^^^^^^~08/01/1982~
-~09173~^~307~^48.^1^^~1~^^^^^^^^^^^~08/01/1982~
-~09173~^~318~^0.^1^^~1~^^^^^^^^^^^~08/01/1982~
-~09173~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2002~
-~09173~^~601~^0.^0^^~7~^~Z~^^^^^^^^^^~08/01/1982~
-~09174~^~208~^47.^0^^~4~^~NC~^^^^^^^^^^~08/01/1982~
-~09174~^~268~^197.^0^^~4~^^^^^^^^^^^
-~09174~^~301~^16.^4^5.^~1~^^^^^^^^^^^~08/01/1982~
-~09174~^~304~^13.^2^^~1~^^^^^^^^^^^~08/01/1982~
-~09174~^~305~^27.^3^14.^~1~^^^^^^^^^^^~08/01/1982~
-~09174~^~306~^266.^4^77.^~1~^^^^^^^^^^^~08/01/1982~
-~09174~^~307~^1.^2^^~1~^^^^^^^^^^^~08/01/1982~
-~09174~^~318~^1528.^5^233.^~1~^^^^^^^^^^^~08/01/1982~
-~09174~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2002~
-~09174~^~320~^76.^5^11.^~1~^^^^^^^^^^^~06/01/2002~
-~09174~^~417~^14.^0^^~4~^^^^^^^^^^^~10/01/1986~
-~09174~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~
-~09174~^~432~^14.^0^^~4~^^^^^^^^^^^~10/01/1986~
-~09174~^~435~^14.^0^^~4~^~NC~^^^^^^^^^^~01/01/2001~
-~09174~^~601~^0.^0^^~7~^~Z~^^^^^^^^^^~08/01/1982~
-~09174~^~636~^2.^0^^~1~^^^^^^^^^^^~08/01/1982~
-~09175~^~208~^51.^0^^~4~^~NC~^^^^^^^^^^~08/01/1982~
-~09175~^~268~^213.^0^^~4~^^^^^^^^^^^
-~09175~^~301~^11.^0^^~1~^^^^^^^^^^^~08/01/1982~
-~09175~^~304~^16.^0^^~4~^^^^^^^^^^^~04/01/1985~
-~09175~^~305~^11.^0^^~1~^^^^^^^^^^^~08/01/1982~
-~09175~^~306~^47.^0^^~1~^^^^^^^^^^^~08/01/1982~
-~09175~^~307~^15.^0^^~1~^^^^^^^^^^^~08/01/1982~
-~09175~^~318~^230.^0^^~1~^^^^^^^^^^^~08/01/1982~
-~09175~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2002~
-~09175~^~320~^12.^0^^~1~^^^^^^^^^^^~06/01/2002~
-~09175~^~417~^14.^0^^~4~^^^^^^^^^^^~04/01/1985~
-~09175~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~
-~09175~^~432~^14.^0^^~4~^^^^^^^^^^^~04/01/1985~
-~09175~^~435~^14.^0^^~4~^~NC~^^^^^^^^^^~01/01/2001~
-~09175~^~601~^0.^0^^~7~^~Z~^^^^^^^^^^~08/01/1982~
-~09176~^~208~^60.^0^^~4~^~NC~^^^^^^^^^^~08/01/2010~
-~09176~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~
-~09176~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~
-~09176~^~268~^250.^0^^~4~^~NC~^^^^^^^^^^~08/01/2010~
-~09176~^~301~^11.^8^0.^~1~^~A~^^^3^7.^16.^2^7.^13.^~2~^~06/01/2010~
-~09176~^~304~^10.^8^0.^~1~^~A~^^^3^8.^19.^2^7.^12.^~2~^~06/01/2010~
-~09176~^~305~^14.^7^1.^~1~^~A~^^^2^10.^18.^1^0.^27.^~2~^~06/01/2010~
-~09176~^~306~^168.^8^0.^~1~^~A~^^^3^120.^211.^2^163.^172.^~2~^~06/01/2010~
-~09176~^~307~^1.^8^0.^~1~^~A~^^^3^0.^3.^2^0.^3.^~1, 2~^~06/01/2010~
-~09176~^~318~^1082.^0^^~1~^~AS~^^^^^^^^^^~06/01/2010~
-~09176~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2002~
-~09176~^~320~^54.^0^^~1~^~AS~^^^^^^^^^^~06/01/2010~
-~09176~^~321~^640.^298^193.^~1~^~A~^^^4^185.^1680.^3^25.^1255.^~2~^~06/01/2010~
-~09176~^~322~^9.^8^3.^~1~^~A~^^^3^0.^40.^2^-7.^24.^~1, 2~^~06/01/2010~
-~09176~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~
-~09176~^~334~^10.^8^7.^~1~^~A~^^^3^0.^32.^2^-20.^40.^~2~^~06/01/2010~
-~09176~^~337~^3.^3^1.^~1~^~A~^^^1^0.^6.^2^-4.^10.^~1, 2, 3~^~06/01/2010~
-~09176~^~338~^23.^4^17.^~1~^~A~^^^2^6.^63.^1^-198.^244.^~2~^~06/01/2010~
-~09176~^~417~^43.^6^17.^~1~^~A~^^^2^20.^69.^1^-174.^260.^~2~^~06/01/2010~
-~09176~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~
-~09176~^~432~^43.^6^17.^~1~^~A~^^^2^20.^69.^1^-174.^260.^~2~^~06/01/2010~
-~09176~^~435~^43.^0^^~4~^~NC~^^^^^^^^^^~08/01/2010~
-~09176~^~601~^0.^0^^~7~^~Z~^^^^^^^^^^~08/01/1982~
-~09177~^~208~^73.^0^^~4~^~NC~^^^^^^^^^^~11/01/1996~
-~09177~^~268~^305.^0^^~4~^^^^^^^^^^^
-~09177~^~301~^12.^2^^~1~^~A~^^^^^^^^^^~11/01/1996~
-~09177~^~304~^13.^2^^~1~^~A~^^^^^^^^^^~11/01/1996~
-~09177~^~305~^8.^2^^~1~^~A~^^^^^^^^^^~11/01/1996~
-~09177~^~306~^48.^2^^~1~^~A~^^^^^^^^^^~11/01/1996~
-~09177~^~307~^7.^2^^~1~^~A~^^^^^^^^^^~11/01/1996~
-~09177~^~318~^35.^2^^~1~^~A~^^^^^^^^^^~05/01/2003~
-~09177~^~320~^2.^2^^~1~^~A~^^^^^^^^^^~05/01/2003~
-~09177~^~321~^16.^2^^~1~^~A~^^^^^^^^^^~05/01/2003~
-~09177~^~322~^1.^2^^~1~^~A~^^^^^^^^^^~05/01/2003~
-~09177~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~
-~09177~^~334~^9.^2^^~1~^~A~^^^^^^^^^^~05/01/2003~
-~09177~^~417~^31.^2^^~1~^~A~^^^^^^^^^^~11/01/1996~
-~09177~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~
-~09177~^~432~^31.^2^^~1~^~A~^^^^^^^^^^~05/01/2003~
-~09177~^~435~^31.^0^^~4~^~NC~^^^^^^^^^^~05/01/2003~
-~09177~^~601~^0.^0^^~7~^~Z~^^^^^^^^^^~11/01/1996~
-~09178~^~208~^319.^0^^~8~^~LC~^^^^^^^^^^~02/01/2015~
-~09178~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2015~
-~09178~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2015~
-~09178~^~268~^1336.^0^^~8~^~LC~^^^^^^^^^^~02/01/2015~
-~09178~^~301~^0.^0^^~8~^~LC~^^^^^^^^^^~02/01/2015~
-~09178~^~304~^20.^0^^~8~^~LC~^^^^^^^^^^~02/01/2015~
-~09178~^~305~^50.^0^^~8~^~LC~^^^^^^^^^^~02/01/2015~
-~09178~^~306~^279.^0^^~8~^~LC~^^^^^^^^^^~02/01/2015~
-~09178~^~307~^162.^0^^~8~^~LC~^^^^^^^^^^~02/01/2015~
-~09178~^~318~^1343.^0^^~1~^~AS~^^^^^^^^^^~02/01/2015~
-~09178~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2015~
-~09178~^~320~^67.^0^^~1~^~AS~^^^^^^^^^^~02/01/2015~
-~09178~^~321~^786.^1^^~1~^~A~^^^^^^^^^^~02/01/2015~
-~09178~^~322~^11.^1^^~1~^~A~^^^^^^^^^^~02/01/2015~
-~09178~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2015~
-~09178~^~334~^29.^1^^~1~^~A~^^^^^^^^^^~02/01/2015~
-~09178~^~337~^0.^1^^~1~^~A~^^^^^^^^^^~02/01/2015~
-~09178~^~338~^52.^1^^~1~^~A~^^^^^^^^^^~02/01/2015~
-~09178~^~417~^68.^0^^~4~^~FLC~^^^^^^^^^^~02/01/2015~
-~09178~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2015~
-~09178~^~432~^68.^0^^~4~^~FLC~^^^^^^^^^^~02/01/2015~
-~09178~^~435~^68.^0^^~4~^~NC~^^^^^^^^^^~02/01/2015~
-~09178~^~601~^0.^0^^~8~^~LC~^^^^^^^^^^~02/01/2015~
-~09181~^~208~^34.^0^^~4~^~NC~^^^^^^^^^^~05/01/2006~
-~09181~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~12/01/2002~
-~09181~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~12/01/2002~
-~09181~^~268~^141.^0^^~4~^~NC~^^^^^^^^^^~05/01/2006~
-~09181~^~301~^9.^54^0.^~1~^~A~^^^15^5.^18.^14^7.^11.^~2~^~12/01/2002~
-~09181~^~304~^12.^54^0.^~1~^~A~^^^15^7.^18.^14^10.^12.^~2~^~12/01/2002~
-~09181~^~305~^15.^53^0.^~1~^~A~^^^14^8.^25.^13^13.^16.^~2~^~12/01/2002~
-~09181~^~306~^267.^54^10.^~1~^~A~^^^15^112.^420.^14^245.^289.^~2~^~05/01/2003~
-~09181~^~307~^16.^50^1.^~1~^~A~^^^14^5.^44.^13^12.^18.^~2~^~05/01/2003~
-~09181~^~318~^3382.^0^^~1~^~AS~^^^^^^^^^^~12/01/2002~
-~09181~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2002~
-~09181~^~320~^169.^0^^~1~^~AS~^^^^^^^^^^~12/01/2002~
-~09181~^~321~^2020.^52^252.^~1~^~A~^^^7^1377.^4712.^6^1401.^2639.^~2~^~12/01/2002~
-~09181~^~322~^16.^42^10.^~1~^~A~^^^6^0.^61.^5^-9.^42.^~1, 2~^~12/01/2002~
-~09181~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~
-~09181~^~334~^1.^21^1.^~1~^~A~^^^5^0.^6.^4^-2.^4.^~1, 2~^~12/01/2002~
-~09181~^~337~^0.^12^0.^~1~^~A~^^^4^0.^0.^^^^~1, 2~^~12/01/2002~
-~09181~^~338~^26.^12^9.^~1~^~A~^^^4^0.^51.^3^-5.^57.^~2~^~12/01/2002~
-~09181~^~417~^21.^17^7.^~1~^~A~^^^3^7.^40.^2^-9.^51.^~1, 2~^~12/01/2002~
-~09181~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~
-~09181~^~432~^21.^17^7.^~1~^~A~^^^3^7.^40.^2^-9.^51.^^~05/01/2006~
-~09181~^~435~^21.^0^^~4~^~NC~^^^^^^^^^^~05/01/2006~
-~09181~^~601~^0.^0^^~7~^~Z~^^^^^^^^^^~08/01/1982~
-~09181~^~636~^10.^0^^~1~^^^^^^^^^^^~08/01/1982~
-~09183~^~208~^28.^0^^~4~^~NC~^^^^^^^^^^~12/01/2006~
-~09183~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2003~
-~09183~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2003~
-~09183~^~268~^118.^0^^~4~^~NC~^^^^^^^^^^~12/01/2006~
-~09183~^~301~^11.^2^^~1~^~A~^^^1^9.^12.^^^^^~01/01/2003~
-~09183~^~304~^11.^2^^~1~^~A~^^^1^9.^12.^^^^^~01/01/2003~
-~09183~^~305~^5.^2^^~1~^~A~^^^1^5.^6.^^^^^~01/01/2003~
-~09183~^~306~^182.^2^^~1~^~A~^^^1^171.^193.^^^^^~01/01/2003~
-~09183~^~307~^9.^2^^~1~^~A~^^^1^5.^13.^^^^^~01/01/2003~
-~09183~^~318~^0.^2^^~1~^~A~^^^1^0.^0.^^^^^~01/01/2003~
-~09183~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2002~
-~09183~^~320~^0.^0^^~1~^~AS~^^^^^^^^^^~01/01/2003~
-~09183~^~321~^0.^2^^~1~^~A~^^^1^0.^0.^^^^^~01/01/2003~
-~09183~^~322~^0.^2^^~1~^~A~^^^1^0.^0.^^^^^~01/01/2003~
-~09183~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~
-~09183~^~334~^0.^2^^~1~^~A~^^^1^0.^0.^^^^^~01/01/2003~
-~09183~^~337~^0.^0^^~4~^~BFZN~^~09181~^^^^^^^^^~01/01/2003~
-~09183~^~338~^26.^0^^~4~^~BFZN~^~09181~^^^^^^^^^~01/01/2003~
-~09183~^~417~^8.^2^^~1~^~A~^^^1^7.^9.^^^^^~01/01/2003~
-~09183~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~
-~09183~^~432~^8.^2^^~1~^~A~^^^^^^^^^^~12/01/2006~
-~09183~^~435~^8.^0^^~4~^~NC~^^^^^^^^^^~12/01/2006~
-~09183~^~601~^0.^0^^~7~^~Z~^^^^^^^^^^~08/01/1982~
-~09184~^~208~^36.^0^^~4~^~NC~^^^^^^^^^^~01/01/2007~
-~09184~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2003~
-~09184~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2003~
-~09184~^~268~^150.^0^^~4~^~NC~^^^^^^^^^^~01/01/2007~
-~09184~^~301~^6.^19^1.^~1~^~A~^^^4^3.^13.^3^1.^10.^~2~^~01/01/2003~
-~09184~^~304~^10.^19^1.^~1~^~A~^^^4^7.^17.^3^6.^14.^~2~^~01/01/2003~
-~09184~^~305~^11.^18^0.^~1~^~A~^^^3^8.^16.^2^10.^12.^~2~^~01/01/2003~
-~09184~^~306~^228.^19^17.^~1~^~A~^^^4^144.^278.^3^170.^284.^~2~^~01/01/2003~
-~09184~^~307~^18.^12^1.^~1~^~A~^^^4^11.^26.^3^11.^23.^~2~^~01/01/2003~
-~09184~^~318~^50.^16^0.^~1~^~A~^^^3^33.^67.^2^47.^53.^~2~^~01/01/2003~
-~09184~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2002~
-~09184~^~320~^3.^16^0.^~1~^~A~^^^3^2.^3.^2^2.^2.^~2~^~01/01/2003~
-~09184~^~321~^30.^16^0.^~1~^~A~^^^3^20.^40.^2^28.^32.^~2~^~01/01/2003~
-~09184~^~322~^0.^6^0.^~1~^~A~^^^2^0.^0.^^^^~1, 2, 3~^~01/01/2003~
-~09184~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~
-~09184~^~334~^0.^6^0.^~1~^~A~^^^2^0.^0.^^^^~1, 2, 3~^~01/01/2003~
-~09184~^~337~^0.^6^0.^~1~^~A~^^^2^0.^0.^^^^~1, 2, 3~^~01/01/2003~
-~09184~^~338~^27.^6^3.^~1~^~A~^^^2^17.^42.^2^12.^41.^~2, 3~^~01/01/2003~
-~09184~^~417~^19.^18^3.^~1~^~A~^^^3^14.^44.^2^6.^32.^~2~^~01/01/2003~
-~09184~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~
-~09184~^~432~^19.^18^3.^~1~^~A~^^^3^14.^44.^2^6.^32.^^~01/01/2007~
-~09184~^~435~^19.^0^^~4~^~NC~^^^^^^^^^^~01/01/2007~
-~09184~^~601~^0.^0^^~7~^~Z~^^^^^^^^^^~08/01/1982~
-~09185~^~208~^33.^0^^~4~^~NC~^^^^^^^^^^~08/01/1982~
-~09185~^~268~^138.^0^^~4~^^^^^^^^^^^
-~09185~^~301~^10.^3^0.^~1~^^^^^^^^^^^~08/01/1982~
-~09185~^~304~^14.^3^0.^~1~^^^^^^^^^^^~08/01/1982~
-~09185~^~305~^12.^3^1.^~1~^^^^^^^^^^^~08/01/1982~
-~09185~^~306~^280.^3^8.^~1~^^^^^^^^^^^~08/01/1982~
-~09185~^~307~^31.^3^2.^~1~^^^^^^^^^^^~08/01/1982~
-~09185~^~318~^1774.^3^52.^~1~^^^^^^^^^^^~08/01/1982~
-~09185~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2002~
-~09185~^~320~^89.^3^2.^~1~^^^^^^^^^^^~06/01/2002~
-~09185~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~
-~09185~^~417~^26.^3^2.^~1~^^^^^^^^^^^~08/01/1982~
-~09185~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~
-~09185~^~432~^26.^3^2.^~1~^^^^^^^^^^^~08/01/1982~
-~09185~^~435~^26.^0^^~4~^~NC~^^^^^^^^^^~01/01/2001~
-~09185~^~601~^0.^0^^~7~^~Z~^^^^^^^^^^~08/01/1982~
-~09190~^~208~^43.^0^^~4~^~NC~^^^^^^^^^^~08/01/1982~
-~09190~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~
-~09190~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~
-~09190~^~268~^180.^0^^~4~^^^^^^^^^^^~03/01/2007~
-~09190~^~301~^39.^0^^~1~^^^^^^^^^^^~08/01/1982~
-~09190~^~304~^18.^1^^~1~^^^^^^^^^^^~08/01/1982~
-~09190~^~305~^38.^0^^~1~^^^^^^^^^^^~08/01/1982~
-~09190~^~306~^194.^1^^~1~^^^^^^^^^^^~08/01/1982~
-~09190~^~307~^10.^1^^~1~^^^^^^^^^^^~08/01/1982~
-~09190~^~318~^25.^0^^~1~^^^^^^^^^^^~08/01/1982~
-~09190~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2002~
-~09190~^~320~^1.^0^^~4~^~NC~^^^^^^^^^^~03/01/2007~
-~09190~^~321~^9.^0^^~4~^~BNA~^~09302~^^^^^^^^^~02/01/2003~
-~09190~^~322~^12.^0^^~4~^~BNA~^~09302~^^^^^^^^^~02/01/2003~
-~09190~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~
-~09190~^~334~^0.^0^^~4~^~BNA~^~09302~^^^^^^^^^~02/01/2003~
-~09190~^~337~^0.^0^^~4~^~BFZN~^~09302~^^^^^^^^^~02/01/2003~
-~09190~^~338~^136.^0^^~4~^~BFZN~^~09302~^^^^^^^^^~02/01/2003~
-~09190~^~417~^6.^0^^~4~^^^^^^^^^^^~04/01/1985~
-~09190~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~
-~09190~^~432~^6.^0^^~4~^^^^^^^^^^^~03/01/2007~
-~09190~^~435~^6.^0^^~4~^~NC~^^^^^^^^^^~03/01/2007~
-~09190~^~601~^0.^0^^~7~^~Z~^^^^^^^^^^~08/01/1982~
-~09191~^~208~^44.^0^^~4~^~NC~^^^^^^^^^^~08/01/2010~
-~09191~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~12/01/2002~
-~09191~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~12/01/2002~
-~09191~^~268~^185.^0^^~4~^~NC~^^^^^^^^^^~08/01/2010~
-~09191~^~301~^6.^4^1.^~1~^~A~^^^2^5.^8.^1^-11.^24.^~2~^~12/01/2002~
-~09191~^~304~^9.^8^0.^~1~^~A~^^^3^8.^10.^2^7.^10.^~2~^~12/01/2002~
-~09191~^~305~^26.^7^1.^~1~^~A~^^^2^22.^30.^5^22.^28.^~2, 3~^~12/01/2002~
-~09191~^~306~^201.^6^23.^~1~^~A~^^^3^149.^228.^2^101.^301.^~2~^~05/01/2003~
-~09191~^~307~^0.^3^0.^~1~^~A~^^^2^0.^1.^1^-1.^2.^~2~^~05/01/2003~
-~09191~^~318~^332.^0^^~1~^~AS~^^^^^^^^^^~12/01/2002~
-~09191~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2002~
-~09191~^~320~^17.^0^^~1~^~AS~^^^^^^^^^^~12/01/2002~
-~09191~^~321~^150.^10^30.^~1~^~A~^^^4^100.^331.^3^52.^248.^~2~^~12/01/2002~
-~09191~^~322~^0.^9^0.^~1~^~A~^^^3^0.^0.^^^^~1, 2~^~12/01/2002~
-~09191~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~
-~09191~^~334~^98.^9^19.^~1~^~A~^^^3^59.^159.^2^13.^182.^~2~^~12/01/2002~
-~09191~^~337~^0.^8^0.^~1~^~A~^^^2^0.^0.^^^^~1, 2, 3~^~12/01/2002~
-~09191~^~338~^130.^8^14.^~1~^~A~^^^2^63.^245.^4^89.^170.^~2, 3~^~12/01/2002~
-~09191~^~417~^5.^4^1.^~1~^~A~^^^1^3.^8.^3^0.^8.^~2, 3~^~12/01/2002~
-~09191~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~
-~09191~^~432~^5.^4^1.^~1~^~A~^^^1^3.^8.^3^0.^8.^^~08/01/2010~
-~09191~^~435~^5.^0^^~4~^~NC~^^^^^^^^^^~08/01/2010~
-~09191~^~601~^0.^0^^~7~^~Z~^^^^^^^^^^~08/01/1982~
-~09192~^~208~^28.^0^^~4~^~NC~^^^^^^^^^^~08/01/1982~
-~09192~^~268~^117.^0^^~4~^^^^^^^^^^^
-~09192~^~301~^7.^0^^~1~^^^^^^^^^^^~08/01/1982~
-~09192~^~304~^6.^1^^~1~^^^^^^^^^^^~08/01/1982~
-~09192~^~305~^10.^0^^~1~^^^^^^^^^^^~08/01/1982~
-~09192~^~306~^38.^1^^~1~^^^^^^^^^^^~08/01/1982~
-~09192~^~307~^1.^1^^~1~^^^^^^^^^^^~08/01/1982~
-~09192~^~318~^830.^0^^~1~^^^^^^^^^^^~08/01/1982~
-~09192~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2002~
-~09192~^~320~^42.^0^^~1~^^^^^^^^^^^~06/01/2002~
-~09192~^~601~^0.^0^^~7~^~Z~^^^^^^^^^^~08/01/1982~
-~09193~^~208~^116.^0^^~4~^~NC~^^^^^^^^^^~08/01/2016~
-~09193~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~
-~09193~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~
-~09193~^~268~^485.^0^^~4~^~NC~^^^^^^^^^^~08/01/2016~
-~09193~^~301~^88.^2^^~1~^^^^^^^^^^^~08/01/1982~
-~09193~^~304~^4.^2^^~1~^^^^^^^^^^^~08/01/1982~
-~09193~^~305~^3.^2^^~1~^^^^^^^^^^^~08/01/1982~
-~09193~^~306~^8.^2^^~1~^^^^^^^^^^^~08/01/1982~
-~09193~^~307~^735.^51^16.^~1~^~A~^^^15^488.^986.^14^700.^770.^~2~^~01/01/2010~
-~09193~^~318~^330.^0^^~4~^~NC~^^^^^^^^^^~08/01/2016~
-~09193~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2002~
-~09193~^~320~^17.^0^^~4~^~NC~^^^^^^^^^^~08/01/2016~
-~09193~^~321~^198.^1^^~12~^~MA~^^^^^^^^^^~08/01/2016~
-~09193~^~322~^0.^1^^~12~^~MA~^^^^^^^^^~1~^~08/01/2016~
-~09193~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~
-~09193~^~334~^0.^1^^~12~^~MA~^^^^^^^^^~1~^~08/01/2016~
-~09193~^~337~^0.^1^^~12~^~MA~^^^^^^^^^^~08/01/2016~
-~09193~^~338~^510.^0^^~4~^~BFZN~^~09195~^^^^^^^^^~02/01/2003~
-~09193~^~417~^0.^2^^~1~^^^^^^^^^^^~08/01/1982~
-~09193~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~
-~09193~^~432~^0.^2^^~1~^^^^^^^^^^^~01/01/2010~
-~09193~^~435~^0.^0^^~4~^~NC~^^^^^^^^^^~01/01/2010~
-~09193~^~601~^0.^0^^~7~^~Z~^^^^^^^^^^~08/01/1982~
-~09194~^~208~^81.^0^^~4~^~NC~^^^^^^^^^^~08/01/1982~
-~09194~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~
-~09194~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~
-~09194~^~268~^339.^0^^~4~^^^^^^^^^^^~01/01/2010~
-~09194~^~301~^94.^2^^~1~^^^^^^^^^^^~08/01/1982~
-~09194~^~304~^4.^0^^~4~^^^^^^^^^^^~08/01/1982~
-~09194~^~305~^3.^0^^~4~^^^^^^^^^^^~08/01/1982~
-~09194~^~306~^9.^2^^~1~^^^^^^^^^^^~08/01/1982~
-~09194~^~307~^735.^51^16.^~1~^~A~^^^15^488.^986.^14^700.^770.^~2~^~01/01/2010~
-~09194~^~318~^346.^2^^~1~^^^^^^^^^^^~08/01/1982~
-~09194~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2002~
-~09194~^~320~^17.^0^^~4~^~NC~^^^^^^^^^^~01/01/2010~
-~09194~^~321~^204.^0^^~4~^~BNA~^~09195~^^^^^^^^^~02/01/2003~
-~09194~^~322~^0.^0^^~4~^~BNA~^~09195~^^^^^^^^^~02/01/2003~
-~09194~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~
-~09194~^~334~^8.^0^^~4~^~BNA~^~09195~^^^^^^^^^~02/01/2003~
-~09194~^~337~^0.^0^^~4~^~BFZN~^~09195~^^^^^^^^^~02/01/2003~
-~09194~^~338~^510.^0^^~4~^~BFZN~^~09195~^^^^^^^^^~02/01/2003~
-~09194~^~417~^0.^0^^~4~^^^^^^^^^^^~08/01/1982~
-~09194~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~
-~09194~^~432~^0.^0^^~4~^^^^^^^^^^^~01/01/2010~
-~09194~^~435~^0.^0^^~4~^~NC~^^^^^^^^^^~01/01/2010~
-~09194~^~601~^0.^0^^~7~^~Z~^^^^^^^^^^~08/01/1982~
-~09195~^~208~^145.^0^^~4~^~NC~^^^^^^^^^^~03/01/2007~
-~09195~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~
-~09195~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~
-~09195~^~268~^609.^0^^~4~^~NC~^^^^^^^^^^~03/01/2007~
-~09195~^~301~^52.^6^3.^~6~^~JA~^^^2^35.^58.^5^42.^61.^~4~^~02/01/2003~
-~09195~^~304~^11.^2^^~1~^~A~^^^1^9.^14.^1^^^^~02/01/2003~
-~09195~^~305~^4.^2^^~1~^~A~^^^1^3.^5.^1^^^^~02/01/2003~
-~09195~^~306~^42.^6^8.^~6~^~JA~^^^2^23.^77.^5^19.^64.^~4~^~02/01/2003~
-~09195~^~307~^1556.^6^146.^~6~^~JA~^^^2^1105.^1961.^5^1180.^1932.^~4~^~02/01/2003~
-~09195~^~318~^393.^0^^~1~^~AS~^^^^^^^^^^~03/01/2007~
-~09195~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2007~
-~09195~^~320~^20.^0^^~1~^~AS~^^^^^^^^^^~02/01/2003~
-~09195~^~321~^231.^3^27.^~1~^~A~^^^2^184.^280.^2^111.^351.^~4~^~02/01/2003~
-~09195~^~322~^0.^1^^~1~^~A~^^^^^^^^^^~02/01/2003~
-~09195~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~
-~09195~^~334~^9.^3^4.^~1~^~A~^^^2^3.^19.^2^-12.^30.^~4~^~02/01/2003~
-~09195~^~337~^0.^1^^~1~^~A~^^^^^^^^^^~02/01/2003~
-~09195~^~338~^510.^1^^~1~^~A~^^^^^^^^^^~02/01/2003~
-~09195~^~417~^3.^1^^~1~^~A~^^^^^^^^^^~02/01/2003~
-~09195~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~
-~09195~^~432~^3.^1^^~1~^~A~^^^^^^^^^^~03/01/2007~
-~09195~^~435~^3.^0^^~4~^~NC~^^^^^^^^^^~03/01/2007~
-~09195~^~601~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~
-~09200~^~208~^47.^0^^~4~^~NC~^^^^^^^^^^~08/01/1982~
-~09200~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2003~
-~09200~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2003~
-~09200~^~268~^197.^0^^~4~^^^^^^^^^^^~12/01/2006~
-~09200~^~301~^40.^0^^~1~^^^^^^^^^^^~08/01/1982~
-~09200~^~304~^10.^212^0.^~1~^^^^^^^^^^^~08/01/1982~
-~09200~^~305~^14.^68^0.^~1~^^^^^^^^^^^~08/01/1982~
-~09200~^~306~^181.^180^1.^~1~^^^^^^^^^^^~08/01/1982~
-~09200~^~307~^0.^72^0.^~1~^^^^^^^^^^^~08/01/1982~
-~09200~^~318~^225.^0^^~1~^~AS~^^^^^^^^^^~05/01/2003~
-~09200~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2002~
-~09200~^~320~^11.^0^^~1~^~AS~^^^^^^^^^^~05/01/2003~
-~09200~^~321~^71.^55^22.^~1~^~A~^^^3^40.^237.^2^-24.^167.^~2~^~05/01/2003~
-~09200~^~322~^11.^55^5.^~1~^~A~^^^3^0.^20.^2^-13.^36.^~1, 2~^~05/01/2003~
-~09200~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~
-~09200~^~334~^116.^7^5.^~1~^~A~^^^2^83.^148.^1^41.^190.^~2~^~05/01/2003~
-~09200~^~337~^0.^7^0.^~1~^~A~^^^2^0.^0.^^^^~1, 2~^~05/01/2003~
-~09200~^~338~^129.^7^57.^~1~^~A~^^^2^54.^187.^1^-601.^860.^~2~^~05/01/2003~
-~09200~^~417~^30.^154^0.^~1~^^^^^^^^^^^~08/01/1982~
-~09200~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~
-~09200~^~432~^30.^154^0.^~1~^^^^^^^^^^^~12/01/2006~
-~09200~^~435~^30.^0^^~4~^~NC~^^^^^^^^^^~12/01/2006~
-~09200~^~601~^0.^0^^~7~^~Z~^^^^^^^^^^~08/01/1982~
-~09201~^~208~^49.^0^^~4~^~NC~^^^^^^^^^^~08/01/1982~
-~09201~^~268~^205.^0^^~4~^^^^^^^^^^^
-~09201~^~301~^40.^0^^~1~^^^^^^^^^^^~08/01/1982~
-~09201~^~304~^10.^94^0.^~1~^^^^^^^^^^^~08/01/1982~
-~09201~^~305~^17.^18^0.^~1~^^^^^^^^^^^~08/01/1982~
-~09201~^~306~^179.^86^2.^~1~^^^^^^^^^^^~08/01/1982~
-~09201~^~307~^0.^24^0.^~1~^^^^^^^^^^^~08/01/1982~
-~09201~^~318~^230.^78^8.^~1~^^^^^^^^^^^~08/01/1982~
-~09201~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2002~
-~09201~^~320~^12.^78^0.^~1~^^^^^^^^^^^~06/01/2002~
-~09201~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~
-~09201~^~417~^39.^81^5.^~1~^^^^^^^^^^^~08/01/1982~
-~09201~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~
-~09201~^~432~^39.^81^5.^~1~^^^^^^^^^^^~08/01/1982~
-~09201~^~435~^39.^0^^~4~^~NC~^^^^^^^^^^~01/01/2001~
-~09201~^~601~^0.^0^^~7~^~Z~^^^^^^^^^^~08/01/1982~
-~09202~^~208~^49.^0^^~4~^~NC~^^^^^^^^^^~08/01/2010~
-~09202~^~268~^207.^0^^~4~^~NC~^^^^^^^^^^~08/01/2010~
-~09202~^~301~^43.^8^2.^~1~^~A~^^^2^37.^57.^3^36.^49.^~2, 3~^~01/01/2003~
-~09202~^~304~^11.^8^0.^~1~^~A~^^^2^10.^12.^4^10.^10.^~2, 3~^~01/01/2003~
-~09202~^~305~^23.^8^0.^~1~^~A~^^^2^22.^25.^6^21.^24.^~2, 3~^~01/01/2003~
-~09202~^~306~^166.^8^3.^~1~^~A~^^^2^147.^188.^5^157.^173.^~2, 3~^~01/01/2003~
-~09202~^~307~^1.^4^0.^~1~^~A~^^^1^0.^4.^3^-1.^3.^~1, 2, 3~^~01/01/2003~
-~09202~^~318~^247.^7^35.^~1~^~A~^^^2^155.^518.^1^-204.^698.^~2~^~05/01/2003~
-~09202~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2002~
-~09202~^~320~^12.^7^1.^~1~^~A~^^^2^8.^26.^1^-10.^34.^~2~^~05/01/2003~
-~09202~^~321~^87.^7^27.^~1~^~A~^^^2^43.^237.^1^-266.^439.^~2~^~05/01/2003~
-~09202~^~322~^7.^7^7.^~1~^~A~^^^2^0.^14.^1^-83.^97.^~1, 2~^~05/01/2003~
-~09202~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~
-~09202~^~334~^116.^7^5.^~1~^~A~^^^2^83.^148.^1^41.^190.^~2~^~05/01/2003~
-~09202~^~337~^0.^7^0.^~1~^~A~^^^2^0.^0.^^^^~1, 2~^~05/01/2003~
-~09202~^~338~^129.^7^57.^~1~^~A~^^^2^54.^187.^1^-601.^860.^~2~^~05/01/2003~
-~09202~^~417~^34.^70^1.^~1~^^^^^^^^^^^~01/01/2003~
-~09202~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~
-~09202~^~432~^34.^70^1.^~1~^^^^^^^^^^^~08/01/2010~
-~09202~^~435~^34.^0^^~4~^~NC~^^^^^^^^^^~08/01/2010~
-~09202~^~601~^0.^0^^~7~^~Z~^^^^^^^^^^~08/01/1982~
-~09202~^~636~^24.^0^^~1~^^^^^^^^^^^~08/01/1982~
-~09203~^~208~^46.^0^^~4~^~NC~^^^^^^^^^^~08/01/1982~
-~09203~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2003~
-~09203~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2003~
-~09203~^~268~^192.^0^^~4~^^^^^^^^^^^~12/01/2006~
-~09203~^~301~^43.^0^^~1~^^^^^^^^^^^~08/01/1982~
-~09203~^~304~^10.^32^0.^~1~^^^^^^^^^^^~08/01/1982~
-~09203~^~305~^12.^32^0.^~1~^^^^^^^^^^^~08/01/1982~
-~09203~^~306~^169.^16^2.^~1~^^^^^^^^^^^~08/01/1982~
-~09203~^~307~^0.^16^0.^~1~^^^^^^^^^^^~08/01/1982~
-~09203~^~318~^225.^0^^~4~^~NC~^^^^^^^^^^~12/01/2006~
-~09203~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2002~
-~09203~^~320~^11.^0^^~4~^~NC~^^^^^^^^^^~12/01/2006~
-~09203~^~321~^71.^0^^~4~^~BFZN~^~09200~^^^^^^^^^~05/01/2003~
-~09203~^~322~^11.^0^^~4~^~BFZN~^~09200~^^^^^^^^^~05/01/2003~
-~09203~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~
-~09203~^~334~^116.^0^^~4~^~BFZN~^~09200~^^^^^^^^^~05/01/2003~
-~09203~^~337~^0.^0^^~4~^~BFZN~^~09200~^^^^^^^^^~01/01/2003~
-~09203~^~338~^129.^0^^~4~^~BFZN~^~09200~^^^^^^^^^~05/01/2003~
-~09203~^~417~^17.^3^3.^~1~^^^^^^^^^^^~08/01/1982~
-~09203~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~
-~09203~^~432~^17.^3^3.^~1~^^^^^^^^^^^~12/01/2006~
-~09203~^~435~^17.^0^^~4~^~NC~^^^^^^^^^^~12/01/2006~
-~09203~^~601~^0.^0^^~7~^~Z~^^^^^^^^^^~08/01/1982~
-~09205~^~208~^63.^0^^~4~^~NC~^^^^^^^^^^~05/01/2002~
-~09205~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2002~
-~09205~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2002~
-~09205~^~268~^262.^0^^~4~^~NC~^^^^^^^^^^~05/01/2002~
-~09205~^~301~^70.^0^^~1~^^^^^^^^^^^~08/01/1982~
-~09205~^~304~^14.^0^^~1~^^^^^^^^^^^~08/01/1982~
-~09205~^~305~^22.^0^^~1~^^^^^^^^^^^~08/01/1982~
-~09205~^~306~^196.^0^^~1~^^^^^^^^^^^~08/01/1982~
-~09205~^~307~^2.^0^^~1~^^^^^^^^^^^~08/01/1982~
-~09205~^~318~^250.^0^^~1~^^^^^^^^^^^~08/01/1982~
-~09205~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2002~
-~09205~^~320~^13.^0^^~1~^^^^^^^^^^^~05/01/2002~
-~09205~^~417~^30.^0^^~4~^^^^^^^^^^^~04/01/1985~
-~09205~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~
-~09205~^~432~^30.^0^^~4~^^^^^^^^^^^~04/01/1985~
-~09205~^~435~^30.^0^^~4~^~NC~^^^^^^^^^^~05/01/2002~
-~09205~^~601~^0.^0^^~7~^~Z~^^^^^^^^^^~08/01/1982~
-~09206~^~208~^45.^0^^~4~^~NC~^^^^^^^^^^~08/01/1982~
-~09206~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2003~
-~09206~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2003~
-~09206~^~268~^188.^0^^~4~^^^^^^^^^^^~12/01/2006~
-~09206~^~301~^11.^0^^~1~^^^^^^^^^^^~08/01/1982~
-~09206~^~304~^11.^0^^~1~^^^^^^^^^^^~08/01/1982~
-~09206~^~305~^17.^0^^~1~^^^^^^^^^^^~08/01/1982~
-~09206~^~306~^200.^0^^~1~^^^^^^^^^^^~08/01/1982~
-~09206~^~307~^1.^0^^~1~^^^^^^^^^^^~08/01/1982~
-~09206~^~318~^200.^0^^~1~^^^^^^^^^^^~08/01/1982~
-~09206~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2002~
-~09206~^~320~^10.^0^^~4~^~NC~^^^^^^^^^^~12/01/2006~
-~09206~^~321~^33.^0^^~4~^~BNA~^~09215~^^^^^^^^^~01/01/2003~
-~09206~^~322~^6.^0^^~4~^~BNA~^~09215~^^^^^^^^^~01/01/2003~
-~09206~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~
-~09206~^~334~^169.^0^^~4~^~BNA~^~09215~^^^^^^^^^~01/01/2003~
-~09206~^~337~^0.^0^^~4~^~BFZN~^~09215~^^^^^^^^^~01/01/2003~
-~09206~^~338~^115.^0^^~4~^~BFZN~^~09215~^^^^^^^^^~01/01/2003~
-~09206~^~417~^30.^0^^~4~^^^^^^^^^^^~08/01/1982~
-~09206~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~
-~09206~^~432~^30.^0^^~4~^^^^^^^^^^^~12/01/2006~
-~09206~^~435~^30.^0^^~4~^~NC~^^^^^^^^^^~12/01/2006~
-~09206~^~601~^0.^0^^~7~^~Z~^^^^^^^^^^~08/01/1982~
-~09207~^~208~^47.^0^^~4~^~NC~^^^^^^^^^^~05/01/2008~
-~09207~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2003~
-~09207~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2003~
-~09207~^~268~^196.^0^^~4~^~NC~^^^^^^^^^^~05/01/2008~
-~09207~^~301~^10.^2^^~1~^~A~^^^1^9.^12.^1^^^^~05/01/2008~
-~09207~^~304~^10.^3^0.^~1~^~A~^^^1^9.^11.^2^6.^13.^~2, 3~^~05/01/2008~
-~09207~^~305~^17.^3^0.^~1~^~A~^^^1^15.^18.^2^13.^20.^~2, 3~^~05/01/2008~
-~09207~^~306~^184.^3^2.^~1~^~A~^^^1^181.^190.^2^172.^196.^~2, 3~^~05/01/2008~
-~09207~^~307~^4.^3^0.^~1~^~A~^^^1^3.^4.^2^2.^4.^~2, 3~^~05/01/2008~
-~09207~^~318~^175.^28^5.^~1~^^^^^^^^^^^~08/01/1982~
-~09207~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2002~
-~09207~^~320~^9.^0^^~4~^~NC~^^^^^^^^^^~05/01/2008~
-~09207~^~321~^29.^0^^~4~^~BNA~^~09215~^^^^^^^^^~01/01/2003~
-~09207~^~322~^5.^0^^~4~^~BNA~^~09215~^^^^^^^^^~01/01/2003~
-~09207~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~
-~09207~^~334~^148.^0^^~4~^~BNA~^~09215~^^^^^^^^^~01/01/2003~
-~09207~^~337~^0.^0^^~4~^~BFZN~^~09215~^^^^^^^^^~01/01/2003~
-~09207~^~338~^115.^0^^~4~^~BFZN~^~09215~^^^^^^^^^~01/01/2003~
-~09207~^~417~^24.^1^^~1~^~A~^^^^^^^^^^~05/01/2008~
-~09207~^~431~^0.^1^^~1~^~A~^^^^^^^^^~1~^~05/01/2008~
-~09207~^~432~^24.^0^^~1~^~AS~^^^^^^^^^^~05/01/2008~
-~09207~^~435~^24.^0^^~4~^~NC~^^^^^^^^^^~07/01/2008~
-~09207~^~601~^0.^0^^~7~^~Z~^^^^^^^^^^~08/01/1982~
-~09209~^~208~^49.^0^^~4~^~NC~^^^^^^^^^^~04/01/2009~
-~09209~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2009~
-~09209~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2009~
-~09209~^~268~^203.^0^^~4~^~NC~^^^^^^^^^^~04/01/2009~
-~09209~^~301~^11.^13^0.^~1~^~A~^^^4^9.^13.^3^9.^12.^~2~^~03/01/2009~
-~09209~^~304~^11.^32^0.^~1~^~A~^^^6^9.^13.^5^10.^11.^~2~^~03/01/2009~
-~09209~^~305~^17.^13^1.^~1~^~A~^^^4^13.^20.^3^13.^21.^~2~^~03/01/2009~
-~09209~^~306~^178.^32^1.^~1~^~A~^^^6^140.^200.^5^174.^181.^~2~^~03/01/2009~
-~09209~^~307~^2.^28^0.^~1~^~A~^^^6^0.^6.^5^1.^3.^~1, 2~^~03/01/2009~
-~09209~^~318~^42.^3^8.^~1~^~A~^^^1^27.^54.^2^7.^77.^~2, 3~^~03/01/2009~
-~09209~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2002~
-~09209~^~320~^2.^3^0.^~1~^~A~^^^1^1.^3.^2^0.^3.^~2, 3~^~03/01/2009~
-~09209~^~321~^8.^3^0.^~1~^~A~^^^1^8.^8.^^^^~1, 2, 3~^~03/01/2009~
-~09209~^~322~^8.^3^0.^~1~^~A~^^^1^8.^8.^^^^~1, 2, 3~^~03/01/2009~
-~09209~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~
-~09209~^~334~^27.^3^9.^~1~^~A~^^^1^8.^41.^2^-15.^69.^~2, 3~^~03/01/2009~
-~09209~^~337~^0.^3^0.^~1~^~A~^^^1^0.^0.^^^^~1, 2, 3~^~04/01/2009~
-~09209~^~338~^27.^3^6.^~1~^~A~^^^1^16.^38.^2^0.^54.^~2, 3~^~03/01/2009~
-~09209~^~417~^19.^6^1.^~1~^~A~^^^1^15.^26.^5^14.^22.^~2, 3~^~03/01/2009~
-~09209~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~
-~09209~^~432~^19.^6^1.^~1~^~A~^^^1^15.^26.^5^14.^22.^^~04/01/2009~
-~09209~^~435~^19.^0^^~4~^~NC~^^^^^^^^^^~04/01/2009~
-~09209~^~601~^0.^0^^~7~^~Z~^^^^^^^^^^~08/01/1982~
-~09210~^~208~^47.^0^^~4~^~NC~^^^^^^^^^^~04/01/2009~
-~09210~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2009~
-~09210~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2009~
-~09210~^~268~^199.^0^^~4~^~NC~^^^^^^^^^^~04/01/2009~
-~09210~^~301~^140.^0^^~9~^~MC~^^^^^^^^^^~08/01/2012~
-~09210~^~304~^11.^32^0.^~1~^~A~^^^6^9.^13.^5^10.^11.^~2~^~03/01/2009~
-~09210~^~305~^47.^14^9.^~1~^~A~^^^2^18.^100.^9^26.^68.^~2, 3~^~03/01/2009~
-~09210~^~306~^178.^32^1.^~1~^~A~^^^6^140.^200.^5^174.^181.^~2~^~03/01/2009~
-~09210~^~307~^2.^28^0.^~1~^~A~^^^6^0.^6.^5^1.^3.^~1, 2~^~03/01/2009~
-~09210~^~318~^42.^3^8.^~1~^~A~^^^1^27.^54.^2^7.^77.^~2, 3~^~03/01/2009~
-~09210~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2009~
-~09210~^~320~^2.^3^0.^~1~^~A~^^^1^1.^3.^2^0.^3.^~2, 3~^~03/01/2009~
-~09210~^~321~^8.^3^0.^~1~^~A~^^^1^8.^8.^^^^~1, 2, 3~^~03/01/2009~
-~09210~^~322~^8.^3^0.^~1~^~A~^^^1^8.^8.^^^^~1, 2, 3~^~03/01/2009~
-~09210~^~324~^40.^0^^~9~^~MC~^^^^^^^^^^~08/01/2012~
-~09210~^~334~^27.^3^9.^~1~^~A~^^^1^8.^41.^2^-15.^69.^~2, 3~^~03/01/2009~
-~09210~^~337~^0.^3^0.^~1~^~A~^^^1^0.^0.^^^^~1, 2, 3~^~03/01/2009~
-~09210~^~338~^27.^3^6.^~1~^~A~^^^1^16.^38.^2^0.^54.^~2, 3~^~03/01/2009~
-~09210~^~417~^19.^6^1.^~1~^~A~^^^1^15.^26.^5^14.^22.^~2, 3~^~03/01/2009~
-~09210~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2009~
-~09210~^~432~^19.^6^1.^~1~^~A~^^^1^15.^26.^5^14.^22.^^~04/01/2009~
-~09210~^~435~^19.^0^^~4~^~NC~^^^^^^^^^^~04/01/2009~
-~09210~^~601~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2006~
-~09211~^~208~^47.^0^^~4~^~NC~^^^^^^^^^^~04/01/2009~
-~09211~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2009~
-~09211~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2009~
-~09211~^~268~^199.^0^^~4~^~NC~^^^^^^^^^^~04/01/2009~
-~09211~^~301~^140.^0^^~9~^~MC~^^^^^^^^^^~08/01/2012~
-~09211~^~304~^11.^32^0.^~1~^~A~^^^6^9.^13.^5^10.^11.^~2~^~03/01/2009~
-~09211~^~305~^47.^14^9.^~1~^~A~^^^2^18.^100.^9^26.^68.^~2, 3~^~03/01/2009~
-~09211~^~306~^178.^32^1.^~1~^~A~^^^6^140.^200.^5^174.^181.^~2~^~03/01/2009~
-~09211~^~307~^2.^28^0.^~1~^~A~^^^6^0.^6.^5^1.^3.^~1, 2~^~03/01/2009~
-~09211~^~318~^42.^3^8.^~1~^~A~^^^1^27.^54.^2^7.^77.^~2, 3~^~03/01/2009~
-~09211~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2009~
-~09211~^~320~^2.^3^0.^~1~^~A~^^^1^1.^3.^2^0.^3.^~2, 3~^~03/01/2009~
-~09211~^~321~^8.^3^0.^~1~^~A~^^^1^8.^8.^^^^~1, 2, 3~^~03/01/2009~
-~09211~^~322~^8.^3^0.^~1~^~A~^^^1^8.^8.^^^^~1, 2, 3~^~03/01/2009~
-~09211~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2009~
-~09211~^~334~^27.^3^9.^~1~^~A~^^^1^8.^41.^2^-15.^69.^~2, 3~^~03/01/2009~
-~09211~^~337~^0.^3^0.^~1~^~A~^^^1^0.^0.^^^^~1, 2, 3~^~03/01/2009~
-~09211~^~338~^27.^3^6.^~1~^~A~^^^1^16.^38.^2^0.^54.^~2, 3~^~03/01/2009~
-~09211~^~417~^19.^6^1.^~1~^~A~^^^1^15.^26.^5^14.^22.^~2, 3~^~03/01/2009~
-~09211~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2009~
-~09211~^~432~^19.^6^1.^~1~^~A~^^^1^15.^26.^5^14.^22.^^~04/01/2009~
-~09211~^~435~^19.^0^^~4~^~NC~^^^^^^^^^^~04/01/2009~
-~09211~^~601~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2009~
-~09212~^~208~^37.^0^^~4~^~NC~^^^^^^^^^^~02/01/2015~
-~09212~^~262~^0.^0^^~6~^~RPI~^^^^^^^^^^~02/01/2015~
-~09212~^~263~^0.^0^^~6~^~RPI~^^^^^^^^^^~02/01/2015~
-~09212~^~268~^154.^0^^~4~^~NC~^^^^^^^^^^~02/01/2015~
-~09212~^~301~^147.^0^^~1~^~RPA~^^^^^^^^^^~02/01/2015~
-~09212~^~304~^10.^0^^~1~^~RPA~^^^^^^^^^^~02/01/2015~
-~09212~^~305~^78.^0^^~1~^~RPA~^^^^^^^^^^~02/01/2015~
-~09212~^~306~^158.^0^^~1~^~RPA~^^^^^^^^^^~02/01/2015~
-~09212~^~307~^4.^0^^~1~^~RPA~^^^^^^^^^^~02/01/2015~
-~09212~^~318~^66.^0^^~6~^~RPI~^^^^^^^^^^~02/01/2015~
-~09212~^~319~^0.^0^^~6~^~RPI~^^^^^^^^^^~02/01/2015~
-~09212~^~320~^3.^0^^~1~^~RPA~^^^^^^^^^^~02/01/2015~
-~09212~^~321~^13.^0^^~6~^~RPI~^^^^^^^^^^~02/01/2015~
-~09212~^~322~^5.^0^^~6~^~RPI~^^^^^^^^^^~02/01/2015~
-~09212~^~324~^0.^0^^~6~^~RPI~^^^^^^^^^^~02/01/2015~
-~09212~^~334~^48.^0^^~6~^~RPI~^^^^^^^^^^~02/01/2015~
-~09212~^~337~^0.^0^^~6~^~RPI~^^^^^^^^^^~02/01/2015~
-~09212~^~338~^83.^0^^~6~^~RPI~^^^^^^^^^^~02/01/2015~
-~09212~^~417~^19.^0^^~6~^~RPI~^^^^^^^^^^~02/01/2015~
-~09212~^~431~^0.^0^^~6~^~RPI~^^^^^^^^^^~02/01/2015~
-~09212~^~432~^19.^0^^~6~^~RPI~^^^^^^^^^^~02/01/2015~
-~09212~^~435~^19.^0^^~4~^~NC~^^^^^^^^^^~02/01/2015~
-~09212~^~601~^0.^0^^~6~^~RPI~^^^^^^^^^^~02/01/2015~
-~09213~^~208~^147.^0^^~4~^~NC~^^^^^^^^^^~06/01/2014~
-~09213~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2014~
-~09213~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2014~
-~09213~^~268~^616.^0^^~4~^~NC~^^^^^^^^^^~06/01/2014~
-~09213~^~301~^578.^2^^~1~^~A~^^^1^568.^601.^^^^^~06/01/2014~
-~09213~^~304~^35.^14^0.^~1~^~A~^^^1^33.^39.^8^34.^36.^~2, 3~^~06/01/2014~
-~09213~^~305~^313.^2^^~1~^~A~^^^1^280.^386.^^^^^~06/01/2014~
-~09213~^~306~^629.^14^10.^~1~^~A~^^^1^556.^691.^7^605.^653.^~2, 3~^~06/01/2014~
-~09213~^~307~^7.^14^0.^~1~^~A~^^^1^2.^15.^7^4.^8.^~1, 2, 3~^~06/01/2014~
-~09213~^~318~^264.^0^^~1~^~AS~^^^^^^^^^^~06/01/2014~
-~09213~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2014~
-~09213~^~320~^13.^0^^~1~^~AS~^^^^^^^^^^~06/01/2014~
-~09213~^~321~^53.^6^10.^~1~^~A~^^^1^39.^86.^2^8.^97.^~2, 3~^~06/01/2014~
-~09213~^~322~^19.^6^2.^~1~^~A~^^^1^13.^24.^2^10.^27.^~2, 3~^~06/01/2014~
-~09213~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2014~
-~09213~^~334~^191.^6^28.^~1~^~A~^^^1^154.^279.^2^70.^312.^~2, 3~^~06/01/2014~
-~09213~^~337~^1.^6^0.^~1~^~A~^^^1^0.^4.^2^-2.^4.^~1, 2, 3~^~06/01/2014~
-~09213~^~338~^333.^6^4.^~1~^~A~^^^1^284.^361.^3^318.^348.^~2, 3~^~06/01/2014~
-~09213~^~417~^77.^6^2.^~1~^~A~^^^1^71.^83.^3^69.^84.^~2, 3~^~06/01/2014~
-~09213~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2014~
-~09213~^~432~^77.^6^2.^~1~^~A~^^^1^71.^83.^3^69.^84.^^~06/01/2014~
-~09213~^~435~^77.^0^^~4~^~NC~^^^^^^^^^^~06/01/2014~
-~09213~^~601~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2014~
-~09214~^~208~^148.^0^^~4~^~NC~^^^^^^^^^^~05/01/2014~
-~09214~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2003~
-~09214~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2003~
-~09214~^~268~^620.^0^^~4~^~NC~^^^^^^^^^^~05/01/2014~
-~09214~^~301~^38.^12^0.^~1~^~A~^^^1^35.^41.^5^36.^39.^~2, 3~^~05/01/2014~
-~09214~^~304~^35.^14^0.^~1~^~A~^^^1^33.^39.^8^34.^36.^~2, 3~^~05/01/2014~
-~09214~^~305~^61.^12^0.^~1~^~A~^^^1^56.^63.^5^59.^62.^~2, 3~^~05/01/2014~
-~09214~^~306~^629.^14^10.^~1~^~A~^^^1^556.^691.^7^605.^653.^~2, 3~^~05/01/2014~
-~09214~^~307~^7.^14^0.^~1~^~A~^^^1^2.^15.^7^4.^8.^~1, 2, 3~^~05/01/2014~
-~09214~^~318~^264.^0^^~1~^~AS~^^^^^^^^^^~05/01/2014~
-~09214~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2002~
-~09214~^~320~^13.^0^^~1~^~AS~^^^^^^^^^^~05/01/2014~
-~09214~^~321~^53.^6^10.^~1~^~A~^^^1^39.^86.^2^8.^97.^~2, 3~^~05/01/2014~
-~09214~^~322~^19.^6^2.^~1~^~A~^^^1^13.^24.^2^10.^27.^~2, 3~^~05/01/2014~
-~09214~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~
-~09214~^~334~^191.^6^28.^~1~^~A~^^^1^154.^279.^2^70.^312.^~2, 3~^~05/01/2014~
-~09214~^~337~^1.^6^0.^~1~^~A~^^^1^0.^4.^2^-2.^4.^~1, 2, 3~^~05/01/2014~
-~09214~^~338~^333.^6^4.^~1~^~A~^^^1^284.^361.^3^318.^348.^~2, 3~^~05/01/2014~
-~09214~^~417~^77.^6^2.^~1~^~A~^^^1^71.^83.^3^69.^84.^~2, 3~^~05/01/2014~
-~09214~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~
-~09214~^~432~^77.^6^2.^~1~^~A~^^^1^71.^83.^3^69.^84.^^~05/01/2014~
-~09214~^~435~^77.^0^^~4~^~NC~^^^^^^^^^^~05/01/2014~
-~09214~^~601~^0.^0^^~7~^~Z~^^^^^^^^^^~08/01/1982~
-~09215~^~208~^37.^0^^~4~^~NC~^^^^^^^^^^~06/01/2014~
-~09215~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2003~
-~09215~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2003~
-~09215~^~268~^155.^0^^~4~^~NC~^^^^^^^^^^~06/01/2014~
-~09215~^~301~^12.^0^^~1~^~RPA~^^^^^^^^^^~06/01/2014~
-~09215~^~304~^10.^0^^~1~^~RPA~^^^^^^^^^^~08/01/1982~
-~09215~^~305~^15.^0^^~1~^~RPA~^^^^^^^^^^~06/01/2014~
-~09215~^~306~^158.^0^^~1~^~RPA~^^^^^^^^^^~06/01/2014~
-~09215~^~307~^4.^0^^~1~^~RPA~^^^^^^^^^^~06/01/2014~
-~09215~^~318~^66.^0^^~6~^~RPI~^^^^^^^^^^~06/01/2014~
-~09215~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2002~
-~09215~^~320~^3.^0^^~1~^~RPA~^^^^^^^^^^~06/01/2014~
-~09215~^~321~^13.^0^^~6~^~RPI~^^^^^^^^^^~06/01/2014~
-~09215~^~322~^5.^0^^~6~^~RPI~^^^^^^^^^^~06/01/2014~
-~09215~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~
-~09215~^~334~^48.^0^^~6~^~RPI~^^^^^^^^^^~06/01/2014~
-~09215~^~337~^0.^0^^~6~^~RPI~^^^^^^^^^^~06/01/2014~
-~09215~^~338~^83.^0^^~6~^~RPI~^^^^^^^^^^~06/01/2014~
-~09215~^~417~^19.^0^^~6~^~RPI~^^^^^^^^^^~06/01/2014~
-~09215~^~431~^0.^0^^~6~^~RPI~^^^^^^^^^^~06/01/2014~
-~09215~^~432~^19.^0^^~6~^~RPI~^^^^^^^^^^~06/01/2014~
-~09215~^~435~^19.^0^^~4~^~NC~^^^^^^^^^^~06/01/2014~
-~09215~^~601~^0.^0^^~7~^~Z~^^^^^^^^^^~08/01/1982~
-~09216~^~208~^97.^0^^~4~^~NC~^^^^^^^^^^~05/01/2005~
-~09216~^~268~^405.^0^^~4~^~NC~^^^^^^^^^^~05/01/2005~
-~09216~^~301~^161.^0^^~1~^^^^^^^^^^^~08/01/1982~
-~09216~^~304~^22.^0^^~1~^^^^^^^^^^^~08/01/1982~
-~09216~^~305~^21.^0^^~1~^^^^^^^^^^^~08/01/1982~
-~09216~^~306~^212.^0^^~1~^^^^^^^^^^^~08/01/1982~
-~09216~^~307~^3.^0^^~1~^^^^^^^^^^^~08/01/1982~
-~09216~^~318~^420.^0^^~1~^^^^^^^^^^^~08/01/1982~
-~09216~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2002~
-~09216~^~320~^21.^0^^~1~^^^^^^^^^^^~05/01/2005~
-~09216~^~417~^30.^0^^~4~^^^^^^^^^^^~04/01/1985~
-~09216~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~
-~09216~^~432~^30.^0^^~4~^^^^^^^^^^^~05/01/2005~
-~09216~^~435~^30.^0^^~4~^~NC~^^^^^^^^^^~06/01/2005~
-~09216~^~601~^0.^0^^~7~^~Z~^^^^^^^^^^~08/01/1982~
-~09216~^~636~^34.^0^^~1~^^^^^^^^^^^~08/01/1982~
-~09217~^~208~^43.^0^^~4~^~NC~^^^^^^^^^^~08/01/1982~
-~09217~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~
-~09217~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~
-~09217~^~268~^180.^0^^~4~^^^^^^^^^^^~02/01/2007~
-~09217~^~301~^8.^14^0.^~1~^^^^^^^^^^^~08/01/1982~
-~09217~^~304~^10.^14^0.^~1~^^^^^^^^^^^~08/01/1982~
-~09217~^~305~^14.^14^0.^~1~^^^^^^^^^^^~08/01/1982~
-~09217~^~306~^158.^14^5.^~1~^^^^^^^^^^^~08/01/1982~
-~09217~^~307~^3.^20^0.^~1~^^^^^^^^^^^~08/01/1982~
-~09217~^~318~^119.^14^4.^~1~^^^^^^^^^^^~08/01/1982~
-~09217~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2002~
-~09217~^~320~^6.^14^0.^~1~^^^^^^^^^^^~02/01/2007~
-~09217~^~321~^20.^0^^~4~^~BNA~^^^^^^^^^^~02/01/2003~
-~09217~^~322~^4.^0^^~4~^~BNA~^^^^^^^^^^~02/01/2003~
-~09217~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~
-~09217~^~334~^98.^0^^~4~^~BNA~^^^^^^^^^^~02/01/2003~
-~09217~^~337~^0.^0^^~4~^~RA~^^^^^^^^^^~02/01/2003~
-~09217~^~338~^73.^0^^~4~^~RA~^^^^^^^^^^~02/01/2003~
-~09217~^~417~^14.^0^^~4~^^^^^^^^^^^~08/01/1982~
-~09217~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~
-~09217~^~432~^14.^0^^~4~^^^^^^^^^^^~02/01/2007~
-~09217~^~435~^14.^0^^~4~^~NC~^^^^^^^^^^~02/01/2007~
-~09217~^~601~^0.^0^^~7~^~Z~^^^^^^^^^^~08/01/1982~
-~09218~^~208~^53.^0^^~4~^~NC~^^^^^^^^^^~05/01/2006~
-~09218~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~
-~09218~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~
-~09218~^~268~^223.^0^^~4~^~NC~^^^^^^^^^^~05/01/2006~
-~09218~^~301~^37.^9^0.^~1~^~A~^^^2^29.^48.^1^26.^46.^~2~^~12/01/2003~
-~09218~^~304~^12.^9^0.^~1~^~A~^^^2^11.^13.^1^11.^12.^~2~^~12/01/2003~
-~09218~^~305~^20.^9^0.^~1~^~A~^^^2^17.^22.^1^18.^21.^~2~^~12/01/2003~
-~09218~^~306~^166.^9^2.^~1~^~A~^^^2^130.^196.^1^139.^193.^~2~^~12/01/2003~
-~09218~^~307~^2.^3^0.^~1~^~A~^^^1^0.^4.^2^-2.^5.^~1, 2, 3~^~04/01/2004~
-~09218~^~318~^681.^0^^~1~^~AS~^^^^^^^^^^~04/01/2004~
-~09218~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2002~
-~09218~^~320~^34.^0^^~1~^~AS~^^^^^^^^^^~04/01/2004~
-~09218~^~321~^155.^12^58.^~1~^~A~^^^3^30.^445.^2^-97.^407.^~2~^~04/01/2004~
-~09218~^~322~^101.^8^86.^~1~^~A~^^^2^14.^400.^1^-997.^1198.^~2~^~07/01/2003~
-~09218~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~
-~09218~^~334~^407.^8^77.^~1~^~A~^^^2^43.^485.^1^-578.^1393.^~2~^~07/01/2003~
-~09218~^~337~^0.^8^0.^~1~^~A~^^^2^0.^0.^^^^~1, 2~^~07/01/2003~
-~09218~^~338~^138.^8^105.^~1~^~A~^^^2^11.^243.^1^-1198.^1474.^~2~^~07/01/2003~
-~09218~^~417~^16.^9^2.^~1~^~A~^^^2^9.^23.^1^-13.^46.^~2~^~12/01/2003~
-~09218~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~
-~09218~^~432~^16.^9^2.^~1~^~A~^^^2^9.^23.^1^-13.^46.^^~05/01/2006~
-~09218~^~435~^16.^0^^~4~^~NC~^^^^^^^^^^~05/01/2007~
-~09218~^~601~^0.^0^^~7~^~Z~^^^^^^^^^^~08/01/1982~
-~09219~^~208~^37.^0^^~4~^~NC~^^^^^^^^^^~08/01/1982~
-~09219~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~
-~09219~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~
-~09219~^~268~^155.^0^^~4~^^^^^^^^^^^~02/01/2007~
-~09219~^~301~^11.^2^^~1~^^^^^^^^^^^~08/01/1982~
-~09219~^~304~^11.^2^^~1~^^^^^^^^^^^~08/01/1982~
-~09219~^~305~^10.^2^^~1~^^^^^^^^^^^~08/01/1982~
-~09219~^~306~^133.^2^^~1~^^^^^^^^^^^~08/01/1982~
-~09219~^~307~^5.^2^^~1~^^^^^^^^^^^~08/01/1982~
-~09219~^~318~^852.^2^^~1~^^^^^^^^^^^~08/01/1982~
-~09219~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2002~
-~09219~^~320~^43.^2^^~1~^^^^^^^^^^^~02/01/2007~
-~09219~^~321~^193.^0^^~4~^~BNA~^~09218~^^^^^^^^^~02/01/2003~
-~09219~^~322~^133.^0^^~4~^~BNA~^~09218~^^^^^^^^^~02/01/2003~
-~09219~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~
-~09219~^~334~^503.^0^^~4~^~BNA~^~09218~^^^^^^^^^~02/01/2003~
-~09219~^~337~^0.^0^^~4~^~BFYN~^~09218~^^^^^^^^^~02/01/2003~
-~09219~^~338~^163.^0^^~4~^~BFYN~^~09218~^^^^^^^^^~02/01/2003~
-~09219~^~417~^5.^0^^~4~^^^^^^^^^^^~08/01/1982~
-~09219~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~
-~09219~^~432~^5.^0^^~4~^^^^^^^^^^^~02/01/2007~
-~09219~^~435~^5.^0^^~4~^~NC~^^^^^^^^^^~02/01/2007~
-~09219~^~601~^0.^0^^~7~^~Z~^^^^^^^^^^~08/01/1982~
-~09220~^~208~^61.^0^^~4~^~NC~^^^^^^^^^^~08/01/1982~
-~09220~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~
-~09220~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~
-~09220~^~268~^255.^0^^~4~^^^^^^^^^^^~02/01/2007~
-~09220~^~301~^7.^33^0.^~1~^^^^^^^^^^^~08/01/1982~
-~09220~^~304~^8.^33^0.^~1~^^^^^^^^^^^~08/01/1982~
-~09220~^~305~^10.^33^0.^~1~^^^^^^^^^^^~08/01/1982~
-~09220~^~306~^78.^33^1.^~1~^^^^^^^^^^^~08/01/1982~
-~09220~^~307~^6.^33^0.^~1~^^^^^^^^^^^~08/01/1982~
-~09220~^~318~^840.^34^100.^~1~^^^^^^^^^^^~08/01/1982~
-~09220~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2002~
-~09220~^~320~^42.^34^5.^~1~^^^^^^^^^^^~02/01/2007~
-~09220~^~321~^191.^0^^~4~^~BNA~^~09218~^^^^^^^^^~02/01/2003~
-~09220~^~322~^131.^0^^~4~^~BNA~^~09218~^^^^^^^^^~02/01/2003~
-~09220~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~
-~09220~^~334~^496.^0^^~4~^~BNA~^~09218~^^^^^^^^^~02/01/2003~
-~09220~^~337~^0.^0^^~4~^~BFYN~^~09218~^^^^^^^^^~02/01/2003~
-~09220~^~338~^163.^0^^~4~^~BFYN~^~09218~^^^^^^^^^~02/01/2003~
-~09220~^~417~^5.^0^^~4~^^^^^^^^^^^~08/01/1982~
-~09220~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~
-~09220~^~432~^5.^0^^~4~^^^^^^^^^^^~02/01/2007~
-~09220~^~435~^5.^0^^~4~^~NC~^^^^^^^^^^~02/01/2007~
-~09220~^~601~^0.^0^^~7~^~Z~^^^^^^^^^^~08/01/1982~
-~09221~^~208~^43.^0^^~4~^~NC~^^^^^^^^^^~08/01/1982~
-~09221~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~
-~09221~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~
-~09221~^~268~^180.^0^^~4~^^^^^^^^^^^~02/01/2007~
-~09221~^~301~^18.^0^^~1~^^^^^^^^^^^~08/01/1982~
-~09221~^~304~^8.^0^^~1~^^^^^^^^^^^~08/01/1982~
-~09221~^~305~^14.^0^^~1~^^^^^^^^^^^~08/01/1982~
-~09221~^~306~^178.^0^^~1~^^^^^^^^^^^~08/01/1982~
-~09221~^~307~^1.^0^^~1~^^^^^^^^^^^~08/01/1982~
-~09221~^~318~^253.^7^^~1~^~A~^^^^^^^^^^~02/01/2003~
-~09221~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2002~
-~09221~^~320~^13.^7^^~1~^~A~^^^^^^^^^^~02/01/2003~
-~09221~^~321~^38.^7^^~1~^~A~^^^^^^^^^^~02/01/2003~
-~09221~^~322~^14.^7^^~1~^~A~^^^^^^^^^^~02/01/2003~
-~09221~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~
-~09221~^~334~^214.^7^^~1~^~A~^^^^^^^^^^~02/01/2003~
-~09221~^~337~^0.^0^^~4~^~BFSN~^~09218~^^^^^^^^^~02/01/2003~
-~09221~^~338~^166.^7^^~1~^~A~^^^^^^^^^^~02/01/2003~
-~09221~^~417~^5.^0^^~4~^^^^^^^^^^^~08/01/1982~
-~09221~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~
-~09221~^~432~^5.^0^^~4~^^^^^^^^^^^~02/01/2007~
-~09221~^~435~^5.^0^^~4~^~NC~^^^^^^^^^^~02/01/2007~
-~09221~^~601~^0.^0^^~7~^~Z~^^^^^^^^^^~08/01/1982~
-~09226~^~208~^43.^0^^~4~^~NC~^^^^^^^^^^~08/01/2010~
-~09226~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~09/01/2002~
-~09226~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~09/01/2002~
-~09226~^~268~^179.^0^^~4~^~NC~^^^^^^^^^^~08/01/2010~
-~09226~^~301~^20.^70^2.^~1~^~A~^^^4^10.^32.^3^13.^26.^~2~^~07/01/2010~
-~09226~^~304~^21.^70^1.^~1~^~A~^^^4^16.^33.^3^15.^26.^~2~^~07/01/2010~
-~09226~^~305~^10.^69^2.^~1~^~A~^^^3^5.^20.^2^0.^19.^~2~^~07/01/2010~
-~09226~^~306~^182.^70^11.^~1~^~A~^^^4^90.^223.^3^146.^217.^~2~^~07/01/2010~
-~09226~^~307~^8.^70^2.^~1~^~A~^^^4^4.^24.^3^1.^14.^~2~^~07/01/2010~
-~09226~^~318~^950.^0^^~1~^~AS~^^^^^^^^^^~07/01/2010~
-~09226~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2002~
-~09226~^~320~^47.^0^^~1~^~AS~^^^^^^^^^^~07/01/2010~
-~09226~^~321~^274.^76^122.^~1~^~A~^^^7^31.^910.^6^-24.^572.^~2~^~07/01/2010~
-~09226~^~322~^2.^67^2.^~1~^~A~^^^4^0.^17.^3^-4.^9.^~1, 2~^~07/01/2010~
-~09226~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~
-~09226~^~334~^589.^75^160.^~1~^~A~^^^6^13.^1264.^5^175.^1002.^~2~^~07/01/2010~
-~09226~^~337~^1828.^22^206.^~1~^~A~^^^3^678.^3674.^2^939.^2717.^~2~^~07/01/2010~
-~09226~^~338~^89.^67^31.^~1~^~A~^^^4^31.^318.^3^-11.^189.^~2~^~07/01/2010~
-~09226~^~417~^37.^8^1.^~1~^~A~^^^2^26.^44.^1^17.^55.^~2~^~07/01/2010~
-~09226~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~
-~09226~^~432~^37.^8^1.^~1~^~A~^^^2^26.^44.^1^17.^55.^^~08/01/2010~
-~09226~^~435~^37.^0^^~4~^~NC~^^^^^^^^^^~08/01/2010~
-~09226~^~601~^0.^0^^~7~^~Z~^^^^^^^^^^~08/01/1982~
-~09228~^~208~^206.^0^^~4~^~NC~^^^^^^^^^^~04/01/2010~
-~09228~^~268~^862.^0^^~4~^~NC~^^^^^^^^^^~04/01/2010~
-~09228~^~301~^21.^2^^~1~^~A~^^^1^19.^24.^1^^^^~04/01/2010~
-~09228~^~304~^6.^2^^~1~^~A~^^^1^6.^7.^1^^^^~04/01/2010~
-~09228~^~305~^6.^2^^~1~^~A~^^^1^5.^7.^1^^^^~04/01/2010~
-~09228~^~306~^67.^2^^~1~^~A~^^^1^58.^75.^1^^^^~04/01/2010~
-~09228~^~307~^9.^2^^~1~^~A~^^^1^8.^11.^1^^^^~04/01/2010~
-~09228~^~318~^6.^1^^~1~^~A~^^^^^^^^^^~04/01/2010~
-~09228~^~320~^0.^1^^~1~^~A~^^^^^^^^^^~04/01/2010~
-~09228~^~321~^3.^1^^~1~^~A~^^^^^^^^^^~04/01/2010~
-~09228~^~322~^1.^1^^~1~^~A~^^^^^^^^^^~04/01/2010~
-~09228~^~334~^1.^1^^~1~^~A~^^^^^^^^^^~04/01/2010~
-~09228~^~337~^1.^1^^~1~^~A~^^^^^^^^^^~04/01/2010~
-~09228~^~338~^4.^1^^~1~^~A~^^^^^^^^^^~04/01/2010~
-~09229~^~208~^57.^0^^~4~^~NC~^^^^^^^^^^~08/01/1982~
-~09229~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~
-~09229~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~
-~09229~^~268~^238.^0^^~4~^^^^^^^^^^^~01/01/2007~
-~09229~^~301~^10.^3^1.^~1~^^^^^^^^^^^~08/01/1982~
-~09229~^~304~^3.^3^0.^~1~^^^^^^^^^^^~08/01/1982~
-~09229~^~305~^0.^3^0.^~1~^^^^^^^^^^^~08/01/1982~
-~09229~^~306~^31.^3^4.^~1~^^^^^^^^^^^~08/01/1982~
-~09229~^~307~^5.^3^1.^~1~^^^^^^^^^^^~08/01/1982~
-~09229~^~318~^361.^0^^~4~^~NC~^^^^^^^^^^~01/01/2007~
-~09229~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2002~
-~09229~^~320~^18.^0^^~4~^~NC~^^^^^^^^^^~01/01/2007~
-~09229~^~321~^91.^0^^~4~^~BFYN~^~09226~^^^^^^^^^~02/01/2003~
-~09229~^~322~^0.^0^^~4~^~BFYN~^~09226~^^^^^^^^^~02/01/2003~
-~09229~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~
-~09229~^~334~^251.^0^^~4~^~BFYN~^~09226~^^^^^^^^^~02/01/2003~
-~09229~^~337~^0.^0^^~4~^~BFYN~^~09226~^^^^^^^^^~02/01/2003~
-~09229~^~338~^25.^0^^~4~^~BFYN~^~09226~^^^^^^^^^~02/01/2003~
-~09229~^~417~^2.^3^1.^~1~^^^^^^^^^^^~08/01/1982~
-~09229~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~
-~09229~^~432~^2.^3^1.^~1~^^^^^^^^^^^~01/01/2007~
-~09229~^~435~^2.^0^^~4~^~NC~^^^^^^^^^^~01/01/2007~
-~09229~^~601~^0.^0^^~7~^~Z~^^^^^^^^^^~08/01/1982~
-~09231~^~208~^97.^0^^~4~^~NC~^^^^^^^^^^~08/01/1982~
-~09231~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2003~
-~09231~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2003~
-~09231~^~268~^406.^0^^~4~^^^^^^^^^^^~03/01/2007~
-~09231~^~301~^12.^3^4.^~1~^^^^^^^^^^^~08/01/1982~
-~09231~^~304~^29.^0^^~1~^^^^^^^^^^^~08/01/1982~
-~09231~^~305~^68.^3^4.^~1~^^^^^^^^^^^~08/01/1982~
-~09231~^~306~^348.^0^^~1~^^^^^^^^^^^~08/01/1982~
-~09231~^~307~^28.^0^^~1~^^^^^^^^^^^~08/01/1982~
-~09231~^~318~^1272.^2^^~1~^~A~^^^^^^^^^^~03/01/2003~
-~09231~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2002~
-~09231~^~320~^64.^2^^~1~^~A~^^^^^^^^^^~03/01/2003~
-~09231~^~321~^743.^2^^~1~^~A~^^^^^^^^^^~03/01/2007~
-~09231~^~322~^0.^2^^~1~^~A~^^^^^^^^^^~03/01/2003~
-~09231~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~
-~09231~^~334~^41.^2^^~1~^~A~^^^^^^^^^^~03/01/2007~
-~09231~^~337~^0.^0^^~4~^~BFZN~^~09266~^^^^^^^^^~03/01/2003~
-~09231~^~338~^0.^0^^~4~^~BFZN~^~09266~^^^^^^^^^~03/01/2003~
-~09231~^~417~^14.^0^^~4~^^^^^^^^^^^~04/01/1985~
-~09231~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~
-~09231~^~432~^14.^0^^~4~^^^^^^^^^^^~03/01/2007~
-~09231~^~435~^14.^0^^~4~^~NC~^^^^^^^^^^~03/01/2007~
-~09231~^~601~^0.^0^^~7~^~Z~^^^^^^^^^^~08/01/1982~
-~09232~^~208~^51.^0^^~4~^~NC~^^^^^^^^^^~08/01/1982~
-~09232~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2003~
-~09232~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2003~
-~09232~^~268~^213.^0^^~4~^^^^^^^^^^^~03/01/2007~
-~09232~^~301~^4.^0^^~1~^^^^^^^^^^^~08/01/1982~
-~09232~^~304~^17.^0^^~4~^^^^^^^^^^^~08/01/1982~
-~09232~^~305~^13.^0^^~1~^^^^^^^^^^^~08/01/1982~
-~09232~^~306~^278.^0^^~4~^^^^^^^^^^^~08/01/1982~
-~09232~^~307~^6.^0^^~4~^^^^^^^^^^^~08/01/1982~
-~09232~^~318~^717.^0^^~1~^^^^^^^^^^^~08/01/1982~
-~09232~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2002~
-~09232~^~320~^36.^0^^~1~^^^^^^^^^^^~03/01/2007~
-~09232~^~321~^419.^0^^~4~^~BNA~^~09231~^^^^^^^^^~03/01/2003~
-~09232~^~322~^0.^0^^~4~^~BNA~^~09231~^^^^^^^^^~03/01/2003~
-~09232~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~
-~09232~^~334~^23.^0^^~4~^~BNA~^~09231~^^^^^^^^^~03/01/2003~
-~09232~^~337~^0.^0^^~4~^~BFSN~^~09231~^^^^^^^^^~03/01/2003~
-~09232~^~338~^0.^0^^~4~^~BFSN~^~09231~^^^^^^^^^~03/01/2003~
-~09232~^~417~^7.^0^^~4~^^^^^^^^^^^~04/01/1985~
-~09232~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~
-~09232~^~432~^7.^0^^~4~^^^^^^^^^^^~03/01/2007~
-~09232~^~435~^7.^0^^~4~^~NC~^^^^^^^^^^~03/01/2007~
-~09232~^~601~^0.^0^^~7~^~Z~^^^^^^^^^^~08/01/1982~
-~09233~^~208~^60.^0^^~4~^~NC~^^^^^^^^^^~08/01/1982~
-~09233~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2007~
-~09233~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2007~
-~09233~^~268~^251.^0^^~4~^^^^^^^^^^^~05/01/2007~
-~09233~^~301~^4.^0^^~1~^^^^^^^^^^^~08/01/1982~
-~09233~^~304~^17.^1^^~1~^^^^^^^^^^^~08/01/1982~
-~09233~^~305~^25.^0^^~1~^^^^^^^^^^^~08/01/1982~
-~09233~^~306~^278.^1^^~1~^^^^^^^^^^^~08/01/1982~
-~09233~^~307~^6.^1^^~1~^^^^^^^^^^^~08/01/1982~
-~09233~^~318~^943.^0^^~1~^~AS~^^^^^^^^^^~05/01/2007~
-~09233~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2002~
-~09233~^~320~^47.^0^^~1~^~AS~^^^^^^^^^^~05/01/2007~
-~09233~^~321~^525.^4^^~1~^~A~^^^^^^^^^^~05/01/2007~
-~09233~^~322~^35.^4^^~1~^~A~^^^^^^^^^^~05/01/2007~
-~09233~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~
-~09233~^~334~^47.^4^^~1~^~A~^^^^^^^^^^~05/01/2007~
-~09233~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2007~
-~09233~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2007~
-~09233~^~417~^8.^0^^~4~^^^^^^^^^^^~04/01/1985~
-~09233~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~
-~09233~^~432~^8.^0^^~4~^^^^^^^^^^^~05/01/2007~
-~09233~^~435~^8.^0^^~4~^~NC~^^^^^^^^^^~05/01/2007~
-~09233~^~601~^0.^0^^~7~^~Z~^^^^^^^^^^~08/01/1982~
-~09236~^~208~^39.^0^^~4~^~NC~^^^^^^^^^^~04/01/2006~
-~09236~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~12/01/2002~
-~09236~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~12/01/2002~
-~09236~^~268~^165.^0^^~4~^~NC~^^^^^^^^^^~04/01/2006~
-~09236~^~301~^6.^28^0.^~1~^~A~^^^11^4.^8.^10^5.^6.^~2~^~12/01/2002~
-~09236~^~304~^9.^32^0.^~1~^~A~^^^12^7.^10.^11^8.^9.^~2~^~12/01/2002~
-~09236~^~305~^20.^31^0.^~1~^~A~^^^11^14.^25.^10^19.^21.^~2~^~12/01/2002~
-~09236~^~306~^190.^30^7.^~1~^~A~^^^12^138.^238.^11^174.^206.^~2~^~05/01/2003~
-~09236~^~307~^0.^26^0.^~1~^~A~^^^11^0.^1.^10^0.^0.^~2~^~05/01/2003~
-~09236~^~318~^326.^32^11.^~1~^~A~^^^5^133.^588.^2^275.^375.^~2~^~12/01/2002~
-~09236~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2002~
-~09236~^~320~^16.^32^0.^~1~^~A~^^^5^7.^29.^2^13.^18.^~2~^~12/01/2002~
-~09236~^~321~^162.^32^5.^~1~^~A~^^^5^77.^289.^2^137.^185.^~2~^~12/01/2002~
-~09236~^~322~^0.^32^0.^~1~^~A~^^^5^0.^3.^2^-1.^2.^~1, 2~^~12/01/2002~
-~09236~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~
-~09236~^~334~^67.^32^4.^~1~^~A~^^^5^3.^178.^3^52.^81.^~2~^~12/01/2002~
-~09236~^~337~^0.^8^0.^~1~^~A~^^^4^0.^0.^^^^~1, 2~^~12/01/2002~
-~09236~^~338~^91.^8^19.^~1~^~A~^^^4^10.^167.^2^-28.^210.^~2~^~12/01/2002~
-~09236~^~417~^4.^4^^~1~^~A~^^^1^3.^4.^^^^~2~^~12/01/2002~
-~09236~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~
-~09236~^~432~^4.^4^^~1~^~A~^^^1^3.^4.^^^^^~04/01/2006~
-~09236~^~435~^4.^0^^~4~^~NC~^^^^^^^^^^~04/01/2006~
-~09236~^~601~^0.^0^^~7~^~Z~^^^^^^^^^^~08/01/1982~
-~09236~^~636~^10.^0^^~1~^^^^^^^^^^^~08/01/1982~
-~09237~^~208~^24.^0^^~4~^~NC~^^^^^^^^^^~08/01/1982~
-~09237~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~12/01/2002~
-~09237~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~12/01/2002~
-~09237~^~268~^100.^0^^~4~^^^^^^^^^^^~01/01/2007~
-~09237~^~301~^2.^12^0.^~1~^^^^^^^^^^^~08/01/1982~
-~09237~^~304~^5.^12^0.^~1~^^^^^^^^^^^~08/01/1982~
-~09237~^~305~^10.^12^0.^~1~^^^^^^^^^^^~08/01/1982~
-~09237~^~306~^99.^33^1.^~1~^^^^^^^^^^^~08/01/1982~
-~09237~^~307~^3.^33^0.^~1~^^^^^^^^^^^~08/01/1982~
-~09237~^~318~^532.^29^35.^~1~^^^^^^^^^^^~12/01/2002~
-~09237~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2002~
-~09237~^~320~^27.^29^1.^~1~^^^^^^^^^^^~01/01/2007~
-~09237~^~321~^264.^0^^~4~^~BNA~^~09236~^^^^^^^^^~12/01/2002~
-~09237~^~322~^1.^0^^~4~^~BNA~^~09236~^^^^^^^^^~12/01/2002~
-~09237~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~
-~09237~^~334~^109.^0^^~4~^~BNA~^~09236~^^^^^^^^^~12/01/2002~
-~09237~^~337~^0.^0^^~1~^~DA~^~09236~^^^^^^^^^~12/01/2002~
-~09237~^~338~^61.^0^^~1~^~DA~^~09236~^^^^^^^^^~12/01/2002~
-~09237~^~417~^3.^0^^~1~^^^^^^^^^^^~08/01/1982~
-~09237~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~
-~09237~^~432~^3.^0^^~1~^^^^^^^^^^^~01/01/2007~
-~09237~^~435~^3.^0^^~4~^~NC~^^^^^^^^^^~01/01/2007~
-~09237~^~601~^0.^0^^~7~^~Z~^^^^^^^^^^~08/01/1982~
-~09238~^~208~^44.^0^^~4~^~NC~^^^^^^^^^^~08/01/1982~
-~09238~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~12/01/2002~
-~09238~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~12/01/2002~
-~09238~^~268~^184.^0^^~4~^^^^^^^^^^^~01/01/2007~
-~09238~^~301~^6.^23^0.^~1~^^^^^^^^^^^~08/01/1982~
-~09238~^~304~^7.^20^0.^~1~^^^^^^^^^^^~08/01/1982~
-~09238~^~305~^17.^21^0.^~1~^^^^^^^^^^^~08/01/1982~
-~09238~^~306~^128.^24^4.^~1~^^^^^^^^^^^~08/01/1982~
-~09238~^~307~^4.^25^0.^~1~^^^^^^^^^^^~08/01/1982~
-~09238~^~318~^381.^17^54.^~1~^^^^^^^^^^^~08/01/1982~
-~09238~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2002~
-~09238~^~320~^19.^17^2.^~1~^^^^^^^^^^^~01/01/2007~
-~09238~^~321~^189.^0^^~4~^~BNA~^~09236~^^^^^^^^^~12/01/2002~
-~09238~^~322~^1.^0^^~4~^~BNA~^~09236~^^^^^^^^^~12/01/2002~
-~09238~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~
-~09238~^~334~^78.^0^^~4~^~BNA~^~09236~^^^^^^^^^~12/01/2002~
-~09238~^~337~^0.^0^^~1~^~DA~^~09236~^^^^^^^^^~12/01/2002~
-~09238~^~338~^61.^0^^~1~^~DA~^~09236~^^^^^^^^^~12/01/2002~
-~09238~^~417~^3.^0^^~4~^^^^^^^^^^^~08/01/1982~
-~09238~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~
-~09238~^~432~^3.^0^^~4~^^^^^^^^^^^~01/01/2007~
-~09238~^~435~^3.^0^^~4~^~NC~^^^^^^^^^^~01/01/2007~
-~09238~^~601~^0.^0^^~7~^~Z~^^^^^^^^^^~08/01/1982~
-~09239~^~208~^42.^0^^~4~^~NC~^^^^^^^^^^~08/01/1982~
-~09239~^~268~^176.^0^^~4~^^^^^^^^^^^
-~09239~^~301~^5.^1^^~1~^^^^^^^^^^^~08/01/1982~
-~09239~^~304~^5.^1^^~1~^^^^^^^^^^^~08/01/1982~
-~09239~^~305~^11.^1^^~1~^^^^^^^^^^^~08/01/1982~
-~09239~^~306~^74.^1^^~1~^^^^^^^^^^^~08/01/1982~
-~09239~^~307~^5.^1^^~1~^^^^^^^^^^^~08/01/1982~
-~09239~^~318~^270.^1^^~1~^^^^^^^^^^^~08/01/1982~
-~09239~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2002~
-~09239~^~320~^14.^1^^~1~^^^^^^^^^^^~06/01/2002~
-~09239~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~
-~09239~^~417~^3.^0^^~1~^^^^^^^^^^^~08/01/1982~
-~09239~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~
-~09239~^~432~^3.^0^^~1~^^^^^^^^^^^~08/01/1982~
-~09239~^~435~^3.^0^^~4~^~NC~^^^^^^^^^^~01/01/2001~
-~09239~^~601~^0.^0^^~7~^~Z~^^^^^^^^^^~08/01/1982~
-~09240~^~208~^54.^0^^~4~^~NC~^^^^^^^^^^~08/01/1982~
-~09240~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~12/01/2002~
-~09240~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~12/01/2002~
-~09240~^~268~^226.^0^^~4~^^^^^^^^^^^~01/01/2007~
-~09240~^~301~^3.^19^0.^~1~^^^^^^^^^^^~08/01/1982~
-~09240~^~304~^5.^19^0.^~1~^^^^^^^^^^^~08/01/1982~
-~09240~^~305~^11.^19^0.^~1~^^^^^^^^^^^~08/01/1982~
-~09240~^~306~^97.^11^3.^~1~^^^^^^^^^^^~08/01/1982~
-~09240~^~307~^5.^11^0.^~1~^^^^^^^^^^^~08/01/1982~
-~09240~^~318~^354.^128^8.^~1~^^^^^^^^^^^~08/01/1982~
-~09240~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2002~
-~09240~^~320~^18.^128^0.^~1~^^^^^^^^^^^~01/01/2007~
-~09240~^~321~^176.^0^^~4~^~BNA~^~09236~^^^^^^^^^~12/01/2002~
-~09240~^~322~^1.^0^^~4~^~BNA~^~09236~^^^^^^^^^~12/01/2002~
-~09240~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~
-~09240~^~334~^73.^0^^~4~^~BNA~^~09236~^^^^^^^^^~12/01/2002~
-~09240~^~337~^0.^0^^~1~^~DA~^~09236~^^^^^^^^^~12/01/2002~
-~09240~^~338~^61.^0^^~1~^~DA~^~09236~^^^^^^^^^~12/01/2002~
-~09240~^~417~^3.^0^^~1~^^^^^^^^^^^~08/01/1982~
-~09240~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~
-~09240~^~432~^3.^0^^~1~^^^^^^^^^^^~01/01/2007~
-~09240~^~435~^3.^0^^~4~^~NC~^^^^^^^^^^~01/01/2007~
-~09240~^~601~^0.^0^^~7~^~Z~^^^^^^^^^^~08/01/1982~
-~09241~^~208~^74.^0^^~4~^~NC~^^^^^^^^^^~08/01/1982~
-~09241~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~12/01/2002~
-~09241~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~12/01/2002~
-~09241~^~268~^310.^0^^~4~^^^^^^^^^^^~03/01/2007~
-~09241~^~301~^3.^283^0.^~1~^^^^^^^^^^^~08/01/1982~
-~09241~^~304~^5.^239^0.^~1~^^^^^^^^^^^~08/01/1982~
-~09241~^~305~^11.^271^0.^~1~^^^^^^^^^^^~08/01/1982~
-~09241~^~306~^92.^311^1.^~1~^^^^^^^^^^^~08/01/1982~
-~09241~^~307~^6.^326^0.^~1~^^^^^^^^^^^~08/01/1982~
-~09241~^~318~^332.^597^5.^~1~^^^^^^^^^^^~08/01/1982~
-~09241~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2002~
-~09241~^~320~^17.^597^0.^~1~^^^^^^^^^^^~03/01/2007~
-~09241~^~321~^165.^0^^~4~^~BNA~^~09236~^^^^^^^^^~12/01/2002~
-~09241~^~322~^0.^0^^~4~^~BNA~^~09236~^^^^^^^^^~12/01/2002~
-~09241~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~
-~09241~^~334~^68.^0^^~4~^~BNA~^~09236~^^^^^^^^^~12/01/2002~
-~09241~^~337~^0.^0^^~1~^~DA~^~09236~^^^^^^^^^~12/01/2002~
-~09241~^~338~^61.^0^^~1~^~DA~^~09236~^^^^^^^^^~12/01/2002~
-~09241~^~417~^3.^3^0.^~1~^^^^^^^^^^^~08/01/1982~
-~09241~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~
-~09241~^~432~^3.^3^0.^~1~^^^^^^^^^^^~03/01/2007~
-~09241~^~435~^3.^0^^~4~^~NC~^^^^^^^^^^~03/01/2007~
-~09241~^~601~^0.^0^^~7~^~Z~^^^^^^^^^^~08/01/1982~
-~09242~^~208~^96.^0^^~4~^~NC~^^^^^^^^^^~08/01/1982~
-~09242~^~268~^402.^0^^~4~^^^^^^^^^^^
-~09242~^~301~^3.^14^0.^~1~^^^^^^^^^^^~08/01/1982~
-~09242~^~304~^5.^14^0.^~1~^^^^^^^^^^^~08/01/1982~
-~09242~^~305~^11.^14^0.^~1~^^^^^^^^^^^~08/01/1982~
-~09242~^~306~^83.^45^1.^~1~^^^^^^^^^^^~08/01/1982~
-~09242~^~307~^8.^32^0.^~1~^^^^^^^^^^^~08/01/1982~
-~09242~^~318~^131.^148^2.^~1~^^^^^^^^^^^~08/01/1982~
-~09242~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2002~
-~09242~^~320~^7.^148^0.^~1~^^^^^^^^^^^~06/01/2002~
-~09242~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~
-~09242~^~417~^3.^0^^~1~^^^^^^^^^^^~08/01/1982~
-~09242~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~
-~09242~^~432~^3.^0^^~1~^^^^^^^^^^^~08/01/1982~
-~09242~^~435~^3.^0^^~4~^~NC~^^^^^^^^^^~01/01/2001~
-~09242~^~601~^0.^0^^~7~^~Z~^^^^^^^^^^~08/01/1982~
-~09243~^~208~^75.^0^^~4~^~NC~^^^^^^^^^^~08/01/1982~
-~09243~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~12/01/2002~
-~09243~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~12/01/2002~
-~09243~^~268~^314.^0^^~4~^^^^^^^^^^^~03/01/2007~
-~09243~^~301~^6.^19^0.^~1~^^^^^^^^^^^~08/01/1982~
-~09243~^~304~^7.^19^0.^~1~^^^^^^^^^^^~08/01/1982~
-~09243~^~305~^9.^19^0.^~1~^^^^^^^^^^^~08/01/1982~
-~09243~^~306~^85.^19^3.^~1~^^^^^^^^^^^~08/01/1982~
-~09243~^~307~^4.^19^0.^~1~^^^^^^^^^^^~08/01/1982~
-~09243~^~318~^317.^19^23.^~1~^^^^^^^^^^^~08/01/1982~
-~09243~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2002~
-~09243~^~320~^16.^19^1.^~1~^^^^^^^^^^^~03/01/2007~
-~09243~^~321~^157.^0^^~4~^~BNA~^~09236~^^^^^^^^^~12/01/2002~
-~09243~^~322~^0.^0^^~4~^~BNA~^~09236~^^^^^^^^^~12/01/2002~
-~09243~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~
-~09243~^~334~^65.^0^^~4~^~BNA~^~09236~^^^^^^^^^~12/01/2002~
-~09243~^~337~^0.^0^^~4~^~BFYN~^~09236~^^^^^^^^^~12/01/2002~
-~09243~^~338~^61.^0^^~4~^~BFYN~^~09236~^^^^^^^^^~12/01/2002~
-~09243~^~417~^3.^0^^~4~^^^^^^^^^^^~08/01/1982~
-~09243~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~
-~09243~^~432~^3.^0^^~4~^^^^^^^^^^^~03/01/2007~
-~09243~^~435~^3.^0^^~4~^~NC~^^^^^^^^^^~03/01/2007~
-~09243~^~601~^0.^0^^~7~^~Z~^^^^^^^^^^~08/01/1982~
-~09244~^~208~^325.^0^^~4~^~NC~^^^^^^^^^^~08/01/1982~
-~09244~^~268~^1360.^0^^~4~^^^^^^^^^^^
-~09244~^~301~^38.^0^^~1~^^^^^^^^^^^~08/01/1982~
-~09244~^~304~^57.^0^^~1~^^^^^^^^^^^~08/01/1982~
-~09244~^~305~^162.^0^^~1~^^^^^^^^^^^~08/01/1982~
-~09244~^~306~^1351.^0^^~1~^^^^^^^^^^^~08/01/1982~
-~09244~^~307~^10.^0^^~1~^^^^^^^^^^^~08/01/1982~
-~09244~^~318~^1417.^2^^~1~^^^^^^^^^^^~08/01/1982~
-~09244~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2002~
-~09244~^~320~^71.^2^^~1~^^^^^^^^^^^~06/01/2002~
-~09244~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~
-~09244~^~417~^7.^2^^~1~^^^^^^^^^^^~08/01/1982~
-~09244~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~
-~09244~^~432~^7.^2^^~1~^^^^^^^^^^^~08/01/1982~
-~09244~^~435~^7.^0^^~4~^~NC~^^^^^^^^^^~01/01/2001~
-~09244~^~601~^0.^0^^~7~^~Z~^^^^^^^^^^~08/01/1982~
-~09245~^~208~^133.^0^^~4~^~NC~^^^^^^^^^^~08/01/1982~
-~09245~^~268~^556.^0^^~4~^^^^^^^^^^^
-~09245~^~301~^16.^0^^~1~^^^^^^^^^^^~08/01/1982~
-~09245~^~304~^23.^0^^~1~^^^^^^^^^^^~08/01/1982~
-~09245~^~305~^66.^0^^~1~^^^^^^^^^^^~08/01/1982~
-~09245~^~306~^554.^0^^~1~^^^^^^^^^^^~08/01/1982~
-~09245~^~307~^4.^0^^~1~^^^^^^^^^^^~08/01/1982~
-~09245~^~318~^396.^2^^~1~^^^^^^^^^^^~08/01/1982~
-~09245~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2002~
-~09245~^~320~^20.^2^^~1~^^^^^^^^^^^~06/01/2002~
-~09245~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~
-~09245~^~417~^3.^2^^~1~^^^^^^^^^^^~08/01/1982~
-~09245~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~
-~09245~^~432~^3.^2^^~1~^^^^^^^^^^^~08/01/1982~
-~09245~^~435~^3.^0^^~4~^~NC~^^^^^^^^^^~01/01/2001~
-~09245~^~601~^0.^0^^~7~^~Z~^^^^^^^^^^~08/01/1982~
-~09246~^~208~^239.^0^^~4~^~NC~^^^^^^^^^^~08/01/1982~
-~09246~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~11/01/2000~
-~09246~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~11/01/2000~
-~09246~^~268~^1000.^0^^~4~^^^^^^^^^^^~03/01/2007~
-~09246~^~301~^28.^24^1.^~1~^^^^^^^^^^^~08/01/1982~
-~09246~^~304~^42.^24^1.^~1~^^^^^^^^^^^~08/01/1982~
-~09246~^~305~^119.^24^7.^~1~^^^^^^^^^^^~08/01/1982~
-~09246~^~306~^996.^24^12.^~1~^^^^^^^^^^^~08/01/1982~
-~09246~^~307~^7.^24^0.^~1~^^^^^^^^^^^~08/01/1982~
-~09246~^~318~^2163.^21^133.^~1~^^^^^^^^^^^~08/01/1982~
-~09246~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2002~
-~09246~^~320~^108.^21^6.^~1~^^^^^^^^^^^~03/01/2007~
-~09246~^~321~^1074.^0^^~4~^~BNA~^~09236~^^^^^^^^^~12/01/2002~
-~09246~^~322~^3.^0^^~4~^~BNA~^~09236~^^^^^^^^^~12/01/2002~
-~09246~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~
-~09246~^~334~^444.^0^^~4~^~BNA~^~09236~^^^^^^^^^~12/01/2002~
-~09246~^~337~^0.^0^^~4~^~BFSN~^~09236~^^^^^^^^^~12/01/2002~
-~09246~^~338~^559.^0^^~4~^~BFSN~^~09236~^^^^^^^^^~12/01/2002~
-~09246~^~417~^0.^0^^~4~^^^^^^^^^^^~08/01/1982~
-~09246~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~
-~09246~^~432~^0.^0^^~4~^^^^^^^^^^^~03/01/2007~
-~09246~^~435~^0.^0^^~4~^~NC~^^^^^^^^^^~03/01/2007~
-~09246~^~601~^0.^0^^~7~^~Z~^^^^^^^^^^~08/01/1982~
-~09247~^~208~^77.^0^^~4~^~NC~^^^^^^^^^^~08/01/1982~
-~09247~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~
-~09247~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~
-~09247~^~268~^322.^0^^~4~^^^^^^^^^^^~03/01/2007~
-~09247~^~301~^9.^0^^~1~^^^^^^^^^^^~08/01/1982~
-~09247~^~304~^13.^0^^~1~^^^^^^^^^^^~08/01/1982~
-~09247~^~305~^38.^0^^~1~^^^^^^^^^^^~08/01/1982~
-~09247~^~306~^320.^0^^~1~^^^^^^^^^^^~08/01/1982~
-~09247~^~307~^2.^0^^~1~^^^^^^^^^^^~08/01/1982~
-~09247~^~318~^197.^3^7.^~1~^^^^^^^^^^^~08/01/1982~
-~09247~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2002~
-~09247~^~320~^10.^0^^~4~^~NC~^^^^^^^^^^~03/01/2007~
-~09247~^~321~^98.^0^^~4~^~BNA~^~09246~^^^^^^^^^~02/01/2003~
-~09247~^~322~^0.^0^^~4~^~BNA~^~09246~^^^^^^^^^~02/01/2003~
-~09247~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~
-~09247~^~334~^40.^0^^~4~^~BNA~^~09246~^^^^^^^^^~02/01/2003~
-~09247~^~337~^0.^0^^~4~^~BFSN~^~09246~^^^^^^^^^~02/01/2003~
-~09247~^~338~^180.^0^^~4~^~BFSN~^~09246~^^^^^^^^^~02/01/2003~
-~09247~^~417~^0.^3^0.^~1~^^^^^^^^^^^~08/01/1982~
-~09247~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~
-~09247~^~432~^0.^3^0.^~1~^^^^^^^^^^^~03/01/2007~
-~09247~^~435~^0.^0^^~4~^~NC~^^^^^^^^^^~03/01/2007~
-~09247~^~601~^0.^0^^~7~^~Z~^^^^^^^^^^~08/01/1982~
-~09248~^~208~^103.^0^^~4~^~NC~^^^^^^^^^^~08/01/1982~
-~09248~^~268~^431.^0^^~4~^^^^^^^^^^^
-~09248~^~301~^8.^0^^~1~^^^^^^^^^^^~08/01/1982~
-~09248~^~304~^12.^0^^~1~^^^^^^^^^^^~08/01/1982~
-~09248~^~305~^35.^0^^~1~^^^^^^^^^^^~08/01/1982~
-~09248~^~306~^292.^0^^~1~^^^^^^^^^^^~08/01/1982~
-~09248~^~307~^2.^0^^~1~^^^^^^^^^^^~08/01/1982~
-~09248~^~318~^180.^0^^~1~^^^^^^^^^^^~08/01/1982~
-~09248~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2002~
-~09248~^~320~^9.^0^^~1~^^^^^^^^^^^~06/01/2002~
-~09248~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~
-~09248~^~417~^0.^0^^~1~^^^^^^^^^^^~08/01/1982~
-~09248~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~
-~09248~^~432~^0.^0^^~1~^^^^^^^^^^^~08/01/1982~
-~09248~^~435~^0.^0^^~4~^~NC~^^^^^^^^^^~01/01/2001~
-~09248~^~601~^0.^0^^~7~^~Z~^^^^^^^^^^~08/01/1982~
-~09250~^~208~^94.^0^^~4~^~NC~^^^^^^^^^^~08/01/1982~
-~09250~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~12/01/2002~
-~09250~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~12/01/2002~
-~09250~^~268~^393.^0^^~4~^^^^^^^^^^^~01/01/2007~
-~09250~^~301~^3.^3^0.^~1~^^^^^^^^^^^~08/01/1982~
-~09250~^~304~^5.^3^0.^~1~^^^^^^^^^^^~08/01/1982~
-~09250~^~305~^11.^3^1.^~1~^^^^^^^^^^^~08/01/1982~
-~09250~^~306~^130.^3^4.^~1~^^^^^^^^^^^~08/01/1982~
-~09250~^~307~^6.^3^1.^~1~^^^^^^^^^^^~08/01/1982~
-~09250~^~318~^284.^3^16.^~1~^^^^^^^^^^^~08/01/1982~
-~09250~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2002~
-~09250~^~320~^14.^3^0.^~1~^^^^^^^^^^^~01/01/2007~
-~09250~^~321~^141.^0^^~4~^~BNA~^~09236~^^^^^^^^^~12/01/2002~
-~09250~^~322~^0.^0^^~4~^~BNA~^~09236~^^^^^^^^^~12/01/2002~
-~09250~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~
-~09250~^~334~^58.^0^^~4~^~BNA~^~09236~^^^^^^^^^~12/01/2002~
-~09250~^~337~^0.^0^^~4~^~FLA~^^^^^^^^^^~12/01/2002~
-~09250~^~338~^77.^0^^~4~^~FLA~^^^^^^^^^^~12/01/2002~
-~09250~^~417~^3.^0^^~4~^^^^^^^^^^^~08/01/1982~
-~09250~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~
-~09250~^~432~^3.^0^^~4~^^^^^^^^^^^~01/01/2007~
-~09250~^~435~^3.^0^^~4~^~NC~^^^^^^^^^^~01/01/2007~
-~09250~^~601~^0.^0^^~7~^~Z~^^^^^^^^^^~08/01/1982~
-~09251~^~208~^49.^0^^~4~^~NC~^^^^^^^^^^~12/01/2016~
-~09251~^~262~^0.^0^^~4~^~FLA~^^^^^^^^^^~12/01/2016~
-~09251~^~263~^0.^0^^~4~^~FLA~^^^^^^^^^^~12/01/2016~
-~09251~^~268~^206.^0^^~4~^~NC~^^^^^^^^^^~12/01/2016~
-~09251~^~301~^6.^5^0.^~1~^~A~^^^1^5.^7.^4^4.^7.^~2, 3~^~12/01/2016~
-~09251~^~304~^4.^5^0.^~1~^~A~^^^1^4.^5.^4^3.^4.^~2, 3~^~08/01/1982~
-~09251~^~305~^3.^5^0.^~1~^~A~^^^1^2.^3.^4^2.^2.^~2, 3~^~12/01/2016~
-~09251~^~306~^30.^5^0.^~1~^~A~^^^1^29.^32.^4^28.^32.^~2, 3~^~12/01/2016~
-~09251~^~307~^11.^5^0.^~1~^~A~^^^1^11.^12.^4^10.^11.^~2, 3~^~12/01/2016~
-~09251~^~318~^326.^0^^~4~^~NC~^^^^^^^^^^~12/01/2016~
-~09251~^~319~^0.^0^^~4~^~FLA~^^^^^^^^^^~12/01/2016~
-~09251~^~320~^16.^0^^~4~^~NC~^^^^^^^^^^~12/01/2016~
-~09251~^~321~^193.^1^^~1~^~A~^^^^^^^^^^~12/01/2016~
-~09251~^~322~^0.^1^^~1~^~A~^^^^^^^^^~1~^~12/01/2016~
-~09251~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~
-~09251~^~334~^4.^1^^~1~^~A~^^^^^^^^^^~12/01/2016~
-~09251~^~337~^0.^1^^~1~^~A~^^^^^^^^^~1~^~12/01/2002~
-~09251~^~338~^6.^1^^~1~^~A~^^^^^^^^^^~12/01/2016~
-~09251~^~417~^1.^1^^~1~^~A~^^^^^^^^^~1~^~12/01/2016~
-~09251~^~431~^0.^0^^~4~^~FLA~^^^^^^^^^^~12/01/2016~
-~09251~^~432~^1.^1^^~1~^~A~^^^^^^^^^^~12/01/2016~
-~09251~^~435~^1.^0^^~4~^~NC~^^^^^^^^^^~03/01/2007~
-~09251~^~601~^0.^0^^~7~^~Z~^^^^^^^^^^~08/01/1982~
-~09252~^~208~^57.^0^^~4~^~NC~^^^^^^^^^^~08/01/2012~
-~09252~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~12/01/2002~
-~09252~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~12/01/2002~
-~09252~^~268~^239.^0^^~4~^~NC~^^^^^^^^^^~08/01/2012~
-~09252~^~301~^9.^51^0.^~1~^~A~^^^14^6.^13.^4^8.^10.^~4~^~05/01/2003~
-~09252~^~304~^7.^51^0.^~1~^~A~^^^14^6.^7.^8^6.^6.^~4~^~05/01/2003~
-~09252~^~305~^12.^50^0.^~1~^~A~^^^13^8.^14.^10^11.^12.^~4~^~08/01/2012~
-~09252~^~306~^116.^50^3.^~1~^~A~^^^14^86.^144.^2^98.^134.^~4~^~08/01/2012~
-~09252~^~307~^1.^51^0.^~1~^~A~^^^13^0.^2.^11^0.^1.^~1, 4~^~12/01/2002~
-~09252~^~318~^25.^0^^~1~^~AS~^^^^^^^^^^~08/01/2012~
-~09252~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2002~
-~09252~^~320~^1.^0^^~1~^~AS~^^^^^^^^^^~05/01/2003~
-~09252~^~321~^14.^16^4.^~1~^~A~^^^3^6.^27.^3^0.^26.^~1, 4~^~08/01/2012~
-~09252~^~322~^1.^16^0.^~1~^~A~^^^3^0.^6.^2^-2.^4.^~1, 4~^~08/01/2012~
-~09252~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~
-~09252~^~334~^2.^14^0.^~1~^~A~^^^2^0.^8.^1^-3.^6.^~1, 2, 3~^~05/01/2003~
-~09252~^~337~^0.^14^0.^~1~^~A~^^^2^0.^0.^^^^~1, 2, 3~^~05/01/2003~
-~09252~^~338~^44.^14^2.^~1~^~A~^^^2^11.^67.^2^33.^53.^~1, 2, 3~^~08/01/2012~
-~09252~^~417~^7.^16^0.^~1~^~A~^^^2^4.^14.^2^5.^8.^~1, 2, 3~^~12/01/2002~
-~09252~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~
-~09252~^~432~^7.^16^0.^~1~^~A~^^^2^4.^14.^2^5.^8.^^~11/01/2006~
-~09252~^~435~^7.^0^^~4~^~NC~^^^^^^^^^^~11/01/2006~
-~09252~^~601~^0.^0^^~7~^~Z~^^^^^^^^^^~08/01/1982~
-~09252~^~636~^8.^0^^~1~^^^^^^^^^^^~08/01/1982~
-~09253~^~208~^29.^0^^~4~^~NC~^^^^^^^^^^~08/01/1982~
-~09253~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2003~
-~09253~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2003~
-~09253~^~268~^121.^0^^~4~^^^^^^^^^^^~01/01/2007~
-~09253~^~301~^4.^12^0.^~1~^^^^^^^^^^^~08/01/1982~
-~09253~^~304~^4.^12^0.^~1~^^^^^^^^^^^~08/01/1982~
-~09253~^~305~^7.^12^0.^~1~^^^^^^^^^^^~08/01/1982~
-~09253~^~306~^53.^54^1.^~1~^^^^^^^^^^^~08/01/1982~
-~09253~^~307~^2.^80^0.^~1~^^^^^^^^^^^~08/01/1982~
-~09253~^~318~^0.^0^^~1~^^^^^^^^^^^~08/01/1982~
-~09253~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2002~
-~09253~^~320~^0.^0^^~1~^^^^^^^^^^^~01/01/2007~
-~09253~^~321~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2003~
-~09253~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2003~
-~09253~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~
-~09253~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2003~
-~09253~^~337~^0.^0^^~4~^~BFYN~^~09252~^^^^^^^^^~01/01/2003~
-~09253~^~338~^34.^0^^~4~^~BFYN~^~09252~^^^^^^^^^~01/01/2003~
-~09253~^~417~^1.^0^^~1~^^^^^^^^^^^~08/01/1982~
-~09253~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~
-~09253~^~432~^1.^0^^~1~^^^^^^^^^^^~01/01/2007~
-~09253~^~435~^1.^0^^~4~^~NC~^^^^^^^^^^~01/01/2007~
-~09253~^~601~^0.^0^^~7~^~Z~^^^^^^^^^^~08/01/1982~
-~09254~^~208~^50.^0^^~4~^~NC~^^^^^^^^^^~08/01/1982~
-~09254~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2003~
-~09254~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2003~
-~09254~^~268~^209.^0^^~4~^^^^^^^^^^^~01/01/2007~
-~09254~^~301~^9.^14^0.^~1~^^^^^^^^^^^~08/01/1982~
-~09254~^~304~^7.^13^0.^~1~^^^^^^^^^^^~08/01/1982~
-~09254~^~305~^12.^14^0.^~1~^^^^^^^^^^^~08/01/1982~
-~09254~^~306~^96.^13^8.^~1~^^^^^^^^^^^~08/01/1982~
-~09254~^~307~^4.^13^0.^~1~^^^^^^^^^^^~08/01/1982~
-~09254~^~318~^6.^2^^~1~^^^^^^^^^^^~08/01/1982~
-~09254~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2002~
-~09254~^~320~^0.^2^^~1~^^^^^^^^^^^~01/01/2007~
-~09254~^~321~^3.^0^^~4~^~BNA~^~09252~^^^^^^^^^~01/01/2003~
-~09254~^~322~^0.^0^^~4~^~BNA~^~09252~^^^^^^^^^~01/01/2003~
-~09254~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~
-~09254~^~334~^0.^0^^~4~^~BNA~^~09252~^^^^^^^^^~01/01/2003~
-~09254~^~337~^0.^0^^~4~^~BFYN~^~09252~^^^^^^^^^~01/01/2003~
-~09254~^~338~^34.^0^^~4~^~BFYN~^~09252~^^^^^^^^^~01/01/2003~
-~09254~^~417~^1.^0^^~4~^^^^^^^^^^^~08/01/1982~
-~09254~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~
-~09254~^~432~^1.^0^^~4~^^^^^^^^^^^~01/01/2007~
-~09254~^~435~^1.^0^^~4~^~NC~^^^^^^^^^^~01/01/2007~
-~09254~^~601~^0.^0^^~7~^~Z~^^^^^^^^^^~08/01/1982~
-~09255~^~208~^47.^0^^~4~^~NC~^^^^^^^^^^~08/01/1982~
-~09255~^~268~^197.^0^^~4~^^^^^^^^^^^
-~09255~^~301~^7.^2^^~1~^^^^^^^^^^^~08/01/1982~
-~09255~^~304~^5.^2^^~1~^^^^^^^^^^^~08/01/1982~
-~09255~^~305~^7.^2^^~1~^^^^^^^^^^^~08/01/1982~
-~09255~^~306~^45.^2^^~1~^^^^^^^^^^^~08/01/1982~
-~09255~^~307~^2.^2^^~1~^^^^^^^^^^^~08/01/1982~
-~09255~^~318~^0.^0^^~1~^^^^^^^^^^^~08/01/1982~
-~09255~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2002~
-~09255~^~320~^0.^0^^~1~^^^^^^^^^^^~06/01/2002~
-~09255~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~
-~09255~^~417~^1.^0^^~1~^^^^^^^^^^^~08/01/1982~
-~09255~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~
-~09255~^~432~^1.^0^^~1~^^^^^^^^^^^~08/01/1982~
-~09255~^~435~^1.^0^^~4~^~NC~^^^^^^^^^^~01/01/2001~
-~09255~^~601~^0.^0^^~7~^~Z~^^^^^^^^^^~08/01/1982~
-~09256~^~208~^57.^0^^~4~^~NC~^^^^^^^^^^~08/01/1982~
-~09256~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2003~
-~09256~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2003~
-~09256~^~268~^238.^0^^~4~^^^^^^^^^^^~01/01/2007~
-~09256~^~301~^5.^16^0.^~1~^^^^^^^^^^^~08/01/1982~
-~09256~^~304~^4.^17^0.^~1~^^^^^^^^^^^~08/01/1982~
-~09256~^~305~^7.^17^0.^~1~^^^^^^^^^^^~08/01/1982~
-~09256~^~306~^66.^0^^~1~^^^^^^^^^^^~08/01/1982~
-~09256~^~307~^5.^0^^~1~^^^^^^^^^^^~08/01/1982~
-~09256~^~318~^0.^0^^~1~^^^^^^^^^^^~08/01/1982~
-~09256~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2002~
-~09256~^~320~^0.^0^^~1~^^^^^^^^^^^~01/01/2007~
-~09256~^~321~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2003~
-~09256~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2003~
-~09256~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~
-~09256~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2003~
-~09256~^~337~^0.^0^^~4~^~BFYN~^~09252~^^^^^^^^^~01/01/2003~
-~09256~^~338~^34.^0^^~4~^~BFYN~^~09252~^^^^^^^^^~01/01/2003~
-~09256~^~417~^1.^0^^~1~^^^^^^^^^^^~08/01/1982~
-~09256~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~
-~09256~^~432~^1.^0^^~1~^^^^^^^^^^^~01/01/2007~
-~09256~^~435~^1.^0^^~4~^~NC~^^^^^^^^^^~01/01/2007~
-~09256~^~601~^0.^0^^~7~^~Z~^^^^^^^^^^~08/01/1982~
-~09257~^~208~^74.^0^^~4~^~NC~^^^^^^^^^^~08/01/1982~
-~09257~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2003~
-~09257~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2003~
-~09257~^~268~^310.^0^^~4~^^^^^^^^^^^~11/01/2006~
-~09257~^~301~^5.^100^0.^~1~^^^^^^^^^^^~08/01/1982~
-~09257~^~304~^4.^84^0.^~1~^^^^^^^^^^^~08/01/1982~
-~09257~^~305~^7.^102^0.^~1~^^^^^^^^^^^~08/01/1982~
-~09257~^~306~^65.^63^2.^~1~^^^^^^^^^^^~08/01/1982~
-~09257~^~307~^5.^83^0.^~1~^^^^^^^^^^^~08/01/1982~
-~09257~^~318~^0.^26^0.^~1~^^^^^^^^^^^~08/01/1982~
-~09257~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2002~
-~09257~^~320~^0.^26^0.^~1~^^^^^^^^^^^~11/01/2006~
-~09257~^~321~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2003~
-~09257~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2003~
-~09257~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~
-~09257~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2003~
-~09257~^~337~^0.^0^^~4~^~BFYN~^~09252~^^^^^^^^^~01/01/2003~
-~09257~^~338~^34.^0^^~4~^~BFYN~^~09252~^^^^^^^^^~01/01/2003~
-~09257~^~417~^1.^3^0.^~1~^^^^^^^^^^^~08/01/1982~
-~09257~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~
-~09257~^~432~^1.^3^0.^~1~^^^^^^^^^^^~11/01/2006~
-~09257~^~435~^1.^0^^~4~^~NC~^^^^^^^^^^~11/01/2006~
-~09257~^~601~^0.^0^^~7~^~Z~^^^^^^^^^^~08/01/1982~
-~09258~^~208~^97.^0^^~4~^~NC~^^^^^^^^^^~08/01/1982~
-~09258~^~268~^406.^0^^~4~^^^^^^^^^^^
-~09258~^~301~^5.^0^^~1~^^^^^^^^^^^~08/01/1982~
-~09258~^~304~^4.^0^^~1~^^^^^^^^^^^~08/01/1982~
-~09258~^~305~^7.^0^^~1~^^^^^^^^^^^~08/01/1982~
-~09258~^~306~^64.^0^^~1~^^^^^^^^^^^~08/01/1982~
-~09258~^~307~^5.^0^^~1~^^^^^^^^^^^~08/01/1982~
-~09258~^~318~^0.^0^^~1~^^^^^^^^^^^~08/01/1982~
-~09258~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2002~
-~09258~^~320~^0.^0^^~1~^^^^^^^^^^^~06/01/2002~
-~09258~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~
-~09258~^~417~^1.^0^^~1~^^^^^^^^^^^~08/01/1982~
-~09258~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~
-~09258~^~432~^1.^0^^~1~^^^^^^^^^^^~08/01/1982~
-~09258~^~435~^1.^0^^~4~^~NC~^^^^^^^^^^~01/01/2001~
-~09258~^~601~^0.^0^^~7~^~Z~^^^^^^^^^^~08/01/1982~
-~09259~^~208~^262.^0^^~4~^~NC~^^^^^^^^^^~08/01/1982~
-~09259~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~11/01/2000~
-~09259~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~11/01/2000~
-~09259~^~268~^1096.^0^^~4~^^^^^^^^^^^~01/01/2007~
-~09259~^~301~^34.^19^1.^~1~^^^^^^^^^^^~08/01/1982~
-~09259~^~304~^33.^19^0.^~1~^^^^^^^^^^^~08/01/1982~
-~09259~^~305~^59.^19^1.^~1~^^^^^^^^^^^~08/01/1982~
-~09259~^~306~^533.^21^16.^~1~^^^^^^^^^^^~08/01/1982~
-~09259~^~307~^6.^21^0.^~1~^^^^^^^^^^^~08/01/1982~
-~09259~^~318~^3.^15^3.^~1~^^^^^^^^^^^~08/01/1982~
-~09259~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2002~
-~09259~^~320~^0.^15^0.^~1~^^^^^^^^^^^~01/01/2007~
-~09259~^~321~^2.^0^^~4~^~BNA~^~09252~^^^^^^^^^~01/01/2003~
-~09259~^~322~^0.^0^^~4~^~BNA~^~09252~^^^^^^^^^~01/01/2003~
-~09259~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~
-~09259~^~334~^0.^0^^~4~^~BNA~^~09252~^^^^^^^^^~01/01/2003~
-~09259~^~337~^0.^0^^~4~^~BFZN~^~09252~^^^^^^^^^~01/01/2003~
-~09259~^~338~^50.^0^^~4~^~BFZN~^~09252~^^^^^^^^^~01/01/2003~
-~09259~^~417~^0.^0^^~4~^^^^^^^^^^^~08/01/1982~
-~09259~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~
-~09259~^~432~^0.^0^^~4~^^^^^^^^^^^~01/01/2007~
-~09259~^~435~^0.^0^^~4~^~NC~^^^^^^^^^^~01/01/2007~
-~09259~^~601~^0.^0^^~7~^~Z~^^^^^^^^^^~08/01/1982~
-~09260~^~208~^127.^0^^~4~^~NC~^^^^^^^^^^~08/01/1982~
-~09260~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~
-~09260~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~
-~09260~^~268~^531.^0^^~4~^^^^^^^^^^^~01/01/2007~
-~09260~^~301~^16.^0^^~1~^^^^^^^^^^^~08/01/1982~
-~09260~^~304~^16.^0^^~1~^^^^^^^^^^^~08/01/1982~
-~09260~^~305~^28.^0^^~1~^^^^^^^^^^^~08/01/1982~
-~09260~^~306~^258.^0^^~1~^^^^^^^^^^^~08/01/1982~
-~09260~^~307~^3.^0^^~1~^^^^^^^^^^^~08/01/1982~
-~09260~^~318~^42.^3^25.^~1~^^^^^^^^^^^~08/01/1982~
-~09260~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2002~
-~09260~^~320~^2.^0^^~4~^~NC~^^^^^^^^^^~01/01/2007~
-~09260~^~321~^23.^0^^~4~^~BNA~^~09252~^^^^^^^^^~02/01/2003~
-~09260~^~322~^1.^0^^~4~^~BNA~^~09252~^^^^^^^^^~02/01/2003~
-~09260~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~
-~09260~^~334~^3.^0^^~4~^~BNA~^~09252~^^^^^^^^^~02/01/2003~
-~09260~^~337~^0.^0^^~4~^~BFSN~^~09259~^^^^^^^^^~02/01/2003~
-~09260~^~338~^24.^0^^~4~^~BFSN~^~09259~^^^^^^^^^~02/01/2003~
-~09260~^~417~^0.^1^^~1~^^^^^^^^^^^~08/01/1982~
-~09260~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~
-~09260~^~432~^0.^1^^~1~^^^^^^^^^^^~01/01/2007~
-~09260~^~435~^0.^0^^~4~^~NC~^^^^^^^^^^~01/01/2007~
-~09260~^~601~^0.^0^^~7~^~Z~^^^^^^^^^^~08/01/1982~
-~09261~^~208~^140.^0^^~4~^~NC~^^^^^^^^^^~08/01/1982~
-~09261~^~268~^586.^0^^~4~^^^^^^^^^^^
-~09261~^~301~^15.^0^^~1~^^^^^^^^^^^~08/01/1982~
-~09261~^~304~^15.^0^^~1~^^^^^^^^^^^~08/01/1982~
-~09261~^~305~^27.^0^^~1~^^^^^^^^^^^~08/01/1982~
-~09261~^~306~^245.^0^^~1~^^^^^^^^^^^~08/01/1982~
-~09261~^~307~^3.^0^^~1~^^^^^^^^^^^~08/01/1982~
-~09261~^~318~^40.^0^^~1~^^^^^^^^^^^~08/01/1982~
-~09261~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2002~
-~09261~^~320~^2.^0^^~1~^^^^^^^^^^^~06/01/2002~
-~09261~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~
-~09261~^~417~^0.^0^^~1~^^^^^^^^^^^~08/01/1982~
-~09261~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~
-~09261~^~432~^0.^0^^~1~^^^^^^^^^^^~08/01/1982~
-~09261~^~435~^0.^0^^~4~^~NC~^^^^^^^^^^~01/01/2001~
-~09261~^~601~^0.^0^^~7~^~Z~^^^^^^^^^^~08/01/1982~
-~09262~^~208~^60.^0^^~4~^~NC~^^^^^^^^^^~08/01/1982~
-~09262~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2003~
-~09262~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2003~
-~09262~^~268~^251.^0^^~4~^^^^^^^^^^^~01/01/2007~
-~09262~^~301~^5.^22^0.^~1~^^^^^^^^^^^~08/01/1982~
-~09262~^~304~^3.^21^0.^~1~^^^^^^^^^^^~08/01/1982~
-~09262~^~305~^3.^21^0.^~1~^^^^^^^^^^^~08/01/1982~
-~09262~^~306~^13.^21^2.^~1~^^^^^^^^^^^~08/01/1982~
-~09262~^~307~^4.^21^0.^~1~^^^^^^^^^^^~08/01/1982~
-~09262~^~318~^1.^16^0.^~1~^^^^^^^^^^^~08/01/1982~
-~09262~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2002~
-~09262~^~320~^0.^16^0.^~1~^^^^^^^^^^^~01/01/2007~
-~09262~^~321~^1.^0^^~4~^~BNA~^~09252~^^^^^^^^^~01/01/2003~
-~09262~^~322~^0.^0^^~4~^~BNA~^~09252~^^^^^^^^^~01/01/2003~
-~09262~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~
-~09262~^~334~^0.^0^^~4~^~BNA~^~09252~^^^^^^^^^~01/01/2003~
-~09262~^~337~^0.^0^^~4~^~BFYN~^~09252~^^^^^^^^^~01/01/2003~
-~09262~^~338~^20.^0^^~4~^~BFYN~^~09252~^^^^^^^^^~01/01/2003~
-~09262~^~417~^1.^0^^~4~^^^^^^^^^^^~08/01/1982~
-~09262~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~
-~09262~^~432~^1.^0^^~4~^^^^^^^^^^^~01/01/2007~
-~09262~^~435~^1.^0^^~4~^~NC~^^^^^^^^^^~01/01/2007~
-~09262~^~601~^0.^0^^~7~^~Z~^^^^^^^^^^~08/01/1982~
-~09263~^~208~^70.^0^^~4~^~NC~^^^^^^^^^^~08/01/1982~
-~09263~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~
-~09263~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~
-~09263~^~268~^293.^0^^~4~^^^^^^^^^^^~02/01/2007~
-~09263~^~301~^8.^4^2.^~1~^^^^^^^^^^^~08/01/1982~
-~09263~^~304~^9.^2^^~1~^^^^^^^^^^^~08/01/1982~
-~09263~^~305~^17.^2^^~1~^^^^^^^^^^^~08/01/1982~
-~09263~^~306~^161.^3^28.^~1~^^^^^^^^^^^~08/01/1982~
-~09263~^~307~^1.^3^0.^~1~^^^^^^^^^^^~08/01/1982~
-~09263~^~318~^1627.^0^^~1~^~AS~^^^^^^^^^^~02/01/2007~
-~09263~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2002~
-~09263~^~320~^81.^0^^~1~^~AS~^^^^^^^^^^~02/01/2007~
-~09263~^~321~^253.^2^^~1~^~A~^^^1^240.^266.^1^^^^~02/01/2003~
-~09263~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~
-~09263~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~
-~09263~^~334~^1447.^2^^~1~^~A~^^^1^1234.^1660.^1^^^^~02/01/2003~
-~09263~^~337~^159.^1^^~1~^~A~^^^^^^^^^^~02/01/2003~
-~09263~^~338~^834.^1^^~1~^~A~^^^^^^^^^^~02/01/2003~
-~09263~^~417~^8.^4^0.^~1~^^^^^^^^^^^~08/01/1982~
-~09263~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~
-~09263~^~432~^8.^4^0.^~1~^^^^^^^^^^^~02/01/2007~
-~09263~^~435~^8.^0^^~4~^~NC~^^^^^^^^^^~02/01/2007~
-~09263~^~601~^0.^0^^~7~^~Z~^^^^^^^^^^~08/01/1982~
-~09263~^~636~^4.^0^^~1~^^^^^^^^^^^~08/01/1982~
-~09264~^~208~^274.^0^^~4~^~NC~^^^^^^^^^^~08/01/1982~
-~09264~^~268~^1146.^0^^~4~^^^^^^^^^^^
-~09264~^~301~^25.^1^^~1~^^^^^^^^^^^~08/01/1982~
-~09264~^~304~^31.^1^^~1~^^^^^^^^^^^~08/01/1982~
-~09264~^~305~^81.^1^^~1~^^^^^^^^^^^~08/01/1982~
-~09264~^~306~^802.^1^^~1~^^^^^^^^^^^~08/01/1982~
-~09264~^~307~^2.^1^^~1~^^^^^^^^^^^~08/01/1982~
-~09264~^~318~^767.^2^^~1~^~A~^^^^^^^^^^~05/01/2003~
-~09264~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2002~
-~09264~^~320~^38.^2^^~1~^~A~^^^^^^^^^^~05/01/2003~
-~09264~^~321~^374.^2^^~1~^~A~^^^^^^^^^^~05/01/2003~
-~09264~^~322~^18.^2^^~1~^~A~^^^^^^^^^^~05/01/2003~
-~09264~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~
-~09264~^~334~^156.^2^^~1~^~A~^^^^^^^^^^~05/01/2003~
-~09264~^~601~^0.^0^^~7~^~Z~^^^^^^^^^^~08/01/1982~
-~09265~^~208~^127.^0^^~4~^~NC~^^^^^^^^^^~08/01/1982~
-~09265~^~268~^531.^0^^~4~^^^^^^^^^^^
-~09265~^~301~^27.^0^^~1~^^^^^^^^^^^~08/01/1982~
-~09265~^~305~^26.^0^^~1~^^^^^^^^^^^~08/01/1982~
-~09265~^~306~^310.^0^^~1~^^^^^^^^^^^~08/01/1982~
-~09265~^~307~^1.^0^^~1~^^^^^^^^^^^~08/01/1982~
-~09265~^~601~^0.^0^^~7~^~Z~^^^^^^^^^^~08/01/1982~
-~09266~^~208~^50.^0^^~4~^~NC~^^^^^^^^^^~02/01/2007~
-~09266~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2003~
-~09266~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2003~
-~09266~^~268~^209.^0^^~4~^~NC~^^^^^^^^^^~02/01/2007~
-~09266~^~301~^13.^21^0.^~1~^~A~^^^4^6.^19.^2^9.^16.^~2~^~01/01/2007~
-~09266~^~304~^12.^22^0.^~1~^~A~^^^4^9.^24.^3^11.^13.^~2~^~01/01/2007~
-~09266~^~305~^8.^21^0.^~1~^~A~^^^3^5.^17.^1^0.^15.^~2~^~01/01/2007~
-~09266~^~306~^109.^22^11.^~1~^~A~^^^4^81.^162.^1^17.^199.^~2~^~01/01/2007~
-~09266~^~307~^1.^11^0.^~1~^^^^^^^^^^^~01/01/2007~
-~09266~^~318~^58.^16^7.^~1~^~A~^^^3^28.^83.^1^-24.^141.^~2~^~01/01/2007~
-~09266~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2002~
-~09266~^~320~^3.^16^0.^~1~^~A~^^^3^1.^4.^1^-1.^7.^~2~^~01/01/2007~
-~09266~^~321~^35.^16^4.^~1~^~A~^^^3^17.^50.^1^-14.^84.^~2~^~01/01/2007~
-~09266~^~322~^0.^8^0.^~1~^~A~^^^2^0.^0.^^^^~1, 2~^~01/01/2003~
-~09266~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~
-~09266~^~334~^0.^8^0.^~1~^~A~^^^2^0.^0.^^^^~1, 2~^~01/01/2003~
-~09266~^~337~^0.^8^0.^~1~^~A~^^^2^0.^0.^^^^~1, 2~^~01/01/2003~
-~09266~^~338~^0.^8^0.^~1~^~A~^^^2^0.^0.^^^^~1, 2~^~01/01/2003~
-~09266~^~417~^18.^18^8.^~1~^~A~^^^3^8.^36.^1^-94.^130.^~1, 2~^~01/01/2007~
-~09266~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~
-~09266~^~432~^18.^18^8.^~1~^~A~^^^3^8.^36.^1^-94.^130.^^~02/01/2007~
-~09266~^~435~^18.^0^^~4~^~NC~^^^^^^^^^^~02/01/2007~
-~09266~^~601~^0.^0^^~7~^~Z~^^^^^^^^^^~08/01/1982~
-~09266~^~636~^6.^0^^~1~^^^^^^^^^^^~08/01/1982~
-~09267~^~208~^32.^0^^~4~^~NC~^^^^^^^^^^~08/01/1982~
-~09267~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2003~
-~09267~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2003~
-~09267~^~268~^134.^0^^~4~^^^^^^^^^^^~03/01/2007~
-~09267~^~301~^15.^9^1.^~1~^^^^^^^^^^^~08/01/1982~
-~09267~^~304~^18.^8^1.^~1~^^^^^^^^^^^~08/01/1982~
-~09267~^~305~^4.^8^0.^~1~^^^^^^^^^^^~08/01/1982~
-~09267~^~306~^127.^9^7.^~1~^^^^^^^^^^^~08/01/1982~
-~09267~^~307~^1.^6^0.^~1~^^^^^^^^^^^~08/01/1982~
-~09267~^~318~^38.^0^^~4~^~NC~^^^^^^^^^^~03/01/2007~
-~09267~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2002~
-~09267~^~320~^2.^0^^~4~^~NC~^^^^^^^^^^~03/01/2007~
-~09267~^~321~^23.^0^^~4~^~BFYN~^~09266~^^^^^^^^^~01/01/2003~
-~09267~^~322~^0.^0^^~4~^~BFYN~^~09266~^^^^^^^^^~01/01/2003~
-~09267~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~
-~09267~^~334~^0.^0^^~4~^~BFYN~^~09266~^^^^^^^^^~01/01/2003~
-~09267~^~337~^0.^0^^~4~^~BFYN~^~09266~^^^^^^^^^~01/01/2003~
-~09267~^~338~^0.^0^^~4~^~BFYN~^~09266~^^^^^^^^^~01/01/2003~
-~09267~^~417~^5.^0^^~1~^^^^^^^^^^^~08/01/1982~
-~09267~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~
-~09267~^~432~^5.^0^^~1~^^^^^^^^^^^~03/01/2007~
-~09267~^~435~^5.^0^^~4~^~NC~^^^^^^^^^^~03/01/2007~
-~09267~^~601~^0.^0^^~7~^~Z~^^^^^^^^^^~08/01/1982~
-~09268~^~208~^60.^0^^~4~^~NC~^^^^^^^^^^~08/01/1982~
-~09268~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2003~
-~09268~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2003~
-~09268~^~268~^251.^0^^~4~^^^^^^^^^^^~02/01/2007~
-~09268~^~301~^14.^667^0.^~1~^^^^^^^^^^^~08/01/1982~
-~09268~^~304~^14.^84^0.^~1~^^^^^^^^^^^~08/01/1982~
-~09268~^~305~^6.^84^0.^~1~^^^^^^^^^^^~08/01/1982~
-~09268~^~306~^122.^456^1.^~1~^^^^^^^^^^^~08/01/1982~
-~09268~^~307~^1.^627^0.^~1~^^^^^^^^^^^~08/01/1982~
-~09268~^~318~^38.^75^1.^~1~^^^^^^^^^^^~08/01/1982~
-~09268~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2002~
-~09268~^~320~^2.^75^0.^~1~^^^^^^^^^^^~02/01/2007~
-~09268~^~321~^23.^0^^~4~^~BFYN~^~09266~^^^^^^^^^~01/01/2003~
-~09268~^~322~^0.^0^^~4~^~BFYN~^~09266~^^^^^^^^^~01/01/2003~
-~09268~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~
-~09268~^~334~^0.^0^^~4~^~BFYN~^~09266~^^^^^^^^^~01/01/2003~
-~09268~^~337~^0.^0^^~4~^~BFYN~^~09266~^^^^^^^^^~01/01/2003~
-~09268~^~338~^0.^0^^~4~^~BFYN~^~09266~^^^^^^^^^~01/01/2003~
-~09268~^~417~^5.^0^^~4~^^^^^^^^^^^~08/01/1982~
-~09268~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~
-~09268~^~432~^5.^0^^~4~^^^^^^^^^^^~02/01/2007~
-~09268~^~435~^5.^0^^~4~^~NC~^^^^^^^^^^~02/01/2007~
-~09268~^~601~^0.^0^^~7~^~Z~^^^^^^^^^^~08/01/1982~
-~09269~^~208~^52.^0^^~4~^~NC~^^^^^^^^^^~08/01/1982~
-~09269~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2003~
-~09269~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2003~
-~09269~^~268~^218.^0^^~4~^^^^^^^^^^^~03/01/2007~
-~09269~^~301~^14.^0^^~1~^^^^^^^^^^^~08/01/1982~
-~09269~^~304~^16.^0^^~1~^^^^^^^^^^^~08/01/1982~
-~09269~^~305~^7.^0^^~1~^^^^^^^^^^^~08/01/1982~
-~09269~^~306~^105.^0^^~1~^^^^^^^^^^^~08/01/1982~
-~09269~^~307~^1.^0^^~1~^^^^^^^^^^^~08/01/1982~
-~09269~^~318~^38.^0^^~4~^~NC~^^^^^^^^^^~03/01/2007~
-~09269~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2002~
-~09269~^~320~^2.^0^^~4~^~NC~^^^^^^^^^^~03/01/2007~
-~09269~^~321~^23.^0^^~4~^~BFYN~^~09266~^^^^^^^^^~01/01/2003~
-~09269~^~322~^0.^0^^~4~^~BFYN~^~09266~^^^^^^^^^~01/01/2003~
-~09269~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~
-~09269~^~334~^0.^0^^~4~^~BFYN~^~09266~^^^^^^^^^~01/01/2003~
-~09269~^~337~^0.^0^^~4~^~BFYN~^~09266~^^^^^^^^^~01/01/2003~
-~09269~^~338~^0.^0^^~4~^~BFYN~^~09266~^^^^^^^^^~01/01/2003~
-~09269~^~417~^5.^0^^~1~^^^^^^^^^^^~08/01/1982~
-~09269~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~
-~09269~^~432~^5.^0^^~1~^^^^^^^^^^^~03/01/2007~
-~09269~^~435~^5.^0^^~4~^~NC~^^^^^^^^^^~03/01/2007~
-~09269~^~601~^0.^0^^~7~^~Z~^^^^^^^^^^~08/01/1982~
-~09270~^~208~^78.^0^^~4~^~NC~^^^^^^^^^^~08/01/1982~
-~09270~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2003~
-~09270~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2003~
-~09270~^~268~^326.^0^^~4~^^^^^^^^^^^~03/01/2007~
-~09270~^~301~^14.^185^0.^~1~^^^^^^^^^^^~08/01/1982~
-~09270~^~304~^16.^110^0.^~1~^^^^^^^^^^^~08/01/1982~
-~09270~^~305~^7.^110^0.^~1~^^^^^^^^^^^~08/01/1982~
-~09270~^~306~^104.^123^4.^~1~^^^^^^^^^^^~08/01/1982~
-~09270~^~307~^1.^123^0.^~1~^^^^^^^^^^^~08/01/1982~
-~09270~^~318~^14.^110^2.^~1~^^^^^^^^^^^~08/01/1982~
-~09270~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2002~
-~09270~^~320~^1.^110^0.^~1~^^^^^^^^^^^~03/01/2007~
-~09270~^~321~^8.^0^^~4~^~BNA~^~09266~^^^^^^^^^~01/01/2003~
-~09270~^~322~^0.^0^^~4~^~BNA~^~09266~^^^^^^^^^~01/01/2003~
-~09270~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~
-~09270~^~334~^0.^0^^~4~^~BNA~^~09266~^^^^^^^^^~01/01/2003~
-~09270~^~337~^0.^0^^~4~^~BFYN~^~09266~^^^^^^^^^~01/01/2003~
-~09270~^~338~^0.^0^^~4~^~BFYN~^~09266~^^^^^^^^^~01/01/2003~
-~09270~^~417~^5.^3^0.^~1~^^^^^^^^^^^~08/01/1982~
-~09270~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~
-~09270~^~432~^5.^3^0.^~1~^^^^^^^^^^^~03/01/2007~
-~09270~^~435~^5.^0^^~4~^~NC~^^^^^^^^^^~03/01/2007~
-~09270~^~601~^0.^0^^~7~^~Z~^^^^^^^^^^~08/01/1982~
-~09271~^~208~^83.^0^^~4~^~NC~^^^^^^^^^^~08/01/1982~
-~09271~^~268~^347.^0^^~4~^^^^^^^^^^^
-~09271~^~301~^14.^0^^~1~^^^^^^^^^^^~08/01/1982~
-~09271~^~304~^15.^0^^~1~^^^^^^^^^^^~08/01/1982~
-~09271~^~305~^7.^0^^~1~^^^^^^^^^^^~08/01/1982~
-~09271~^~306~^102.^0^^~1~^^^^^^^^^^^~08/01/1982~
-~09271~^~307~^1.^0^^~1~^^^^^^^^^^^~08/01/1982~
-~09271~^~318~^14.^0^^~1~^^^^^^^^^^^~08/01/1982~
-~09271~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2002~
-~09271~^~320~^1.^0^^~1~^^^^^^^^^^^~06/01/2002~
-~09271~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~
-~09271~^~417~^5.^0^^~1~^^^^^^^^^^^~08/01/1982~
-~09271~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~
-~09271~^~432~^5.^0^^~1~^^^^^^^^^^^~08/01/1982~
-~09271~^~435~^5.^0^^~4~^~NC~^^^^^^^^^^~01/01/2001~
-~09271~^~601~^0.^0^^~7~^~Z~^^^^^^^^^^~08/01/1982~
-~09272~^~208~^86.^0^^~4~^~NC~^^^^^^^^^^~03/01/2007~
-~09272~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2003~
-~09272~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2003~
-~09272~^~268~^360.^0^^~4~^~NC~^^^^^^^^^^~03/01/2007~
-~09272~^~301~^9.^0^^~1~^^^^^^^^^^^~08/01/1982~
-~09272~^~304~^10.^0^^~1~^^^^^^^^^^^~08/01/1982~
-~09272~^~305~^4.^0^^~1~^^^^^^^^^^^~08/01/1982~
-~09272~^~306~^100.^0^^~1~^^^^^^^^^^^~08/01/1982~
-~09272~^~307~^2.^0^^~1~^^^^^^^^^^^~08/01/1982~
-~09272~^~318~^30.^0^^~1~^^^^^^^^^^^~08/01/1982~
-~09272~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2002~
-~09272~^~320~^2.^0^^~4~^~NC~^^^^^^^^^^~03/01/2007~
-~09272~^~321~^18.^0^^~4~^~BNA~^~09266~^^^^^^^^^~01/01/2003~
-~09272~^~322~^0.^0^^~4~^~BNA~^~09266~^^^^^^^^^~01/01/2003~
-~09272~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~
-~09272~^~334~^0.^0^^~4~^~BNA~^~09266~^^^^^^^^^~01/01/2003~
-~09272~^~337~^0.^0^^~4~^~BFZN~^~09266~^^^^^^^^^~01/01/2003~
-~09272~^~338~^0.^0^^~4~^~BFZN~^~09266~^^^^^^^^^~01/01/2003~
-~09272~^~417~^11.^0^^~4~^^^^^^^^^^^~08/01/1982~
-~09272~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~
-~09272~^~432~^11.^0^^~4~^^^^^^^^^^^~03/01/2007~
-~09272~^~435~^11.^0^^~4~^~NC~^^^^^^^^^^~03/01/2007~
-~09272~^~601~^0.^0^^~7~^~Z~^^^^^^^^^^~08/01/1982~
-~09273~^~208~^53.^0^^~4~^~NC~^^^^^^^^^^~02/01/2007~
-~09273~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2003~
-~09273~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2003~
-~09273~^~268~^220.^0^^~4~^~NC~^^^^^^^^^^~02/01/2007~
-~09273~^~301~^13.^86^2.^~1~^~A~^^^3^7.^24.^2^0.^26.^~2~^~04/01/2005~
-~09273~^~304~^12.^29^1.^~1~^~A~^^^2^11.^15.^1^-5.^30.^~2~^~04/01/2005~
-~09273~^~305~^8.^27^0.^~1~^~A~^^^2^6.^9.^1^3.^12.^~2~^~04/01/2005~
-~09273~^~306~^130.^64^3.^~1~^~A~^^^3^85.^160.^2^115.^145.^~2~^~04/01/2005~
-~09273~^~307~^2.^75^1.^~1~^~A~^^^3^0.^5.^2^-3.^7.^~2~^~04/01/2005~
-~09273~^~318~^5.^14^4.^~1~^~A~^^^1^0.^65.^1^-54.^63.^~2, 3~^~04/01/2005~
-~09273~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2002~
-~09273~^~320~^0.^0^^~4~^~NC~^^^^^^^^^^~02/01/2007~
-~09273~^~321~^3.^0^^~4~^~BNA~^~09266~^^^^^^^^^~04/01/2005~
-~09273~^~322~^0.^0^^~4~^~BNA~^~09266~^^^^^^^^^~01/01/2003~
-~09273~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~
-~09273~^~334~^0.^0^^~4~^~BNA~^~09266~^^^^^^^^^~01/01/2003~
-~09273~^~337~^0.^0^^~4~^~BFZN~^~09275~^^^^^^^^^~01/01/2003~
-~09273~^~338~^0.^0^^~4~^~BFZN~^~09275~^^^^^^^^^~01/01/2003~
-~09273~^~417~^18.^4^5.^~1~^~A~^^^2^12.^26.^1^-52.^87.^~2~^~04/01/2005~
-~09273~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~
-~09273~^~432~^18.^4^5.^~1~^~A~^^^2^12.^26.^1^-52.^87.^^~02/01/2007~
-~09273~^~435~^18.^0^^~4~^~NC~^^^^^^^^^^~02/01/2007~
-~09273~^~601~^0.^0^^~7~^~Z~^^^^^^^^^^~08/01/1982~
-~09274~^~208~^179.^0^^~4~^~NC~^^^^^^^^^^~08/01/1982~
-~09274~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2003~
-~09274~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2003~
-~09274~^~268~^749.^0^^~4~^^^^^^^^^^^~02/01/2007~
-~09274~^~301~^39.^0^^~1~^^^^^^^^^^^~08/01/1982~
-~09274~^~304~^35.^0^^~1~^^^^^^^^^^^~08/01/1982~
-~09274~^~305~^28.^0^^~1~^^^^^^^^^^^~08/01/1982~
-~09274~^~306~^472.^0^^~1~^^^^^^^^^^^~08/01/1982~
-~09274~^~307~^3.^0^^~1~^^^^^^^^^^^~08/01/1982~
-~09274~^~318~^50.^0^^~1~^^^^^^^^^^^~08/01/1982~
-~09274~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2002~
-~09274~^~320~^3.^0^^~4~^~NC~^^^^^^^^^^~02/01/2007~
-~09274~^~321~^30.^0^^~4~^~BNA~^~09266~^^^^^^^^^~01/01/2003~
-~09274~^~322~^0.^0^^~4~^~BNA~^~09266~^^^^^^^^^~01/01/2003~
-~09274~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~
-~09274~^~334~^0.^0^^~4~^~BNA~^~09266~^^^^^^^^^~01/01/2003~
-~09274~^~337~^0.^0^^~4~^~BFZN~^~09266~^^^^^^^^^~01/01/2003~
-~09274~^~338~^0.^0^^~4~^~BFZN~^~09266~^^^^^^^^^~01/01/2003~
-~09274~^~417~^37.^0^^~4~^^^^^^^^^^^~08/01/1982~
-~09274~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~
-~09274~^~432~^37.^0^^~4~^^^^^^^^^^^~02/01/2007~
-~09274~^~435~^37.^0^^~4~^~NC~^^^^^^^^^^~02/01/2007~
-~09274~^~601~^0.^0^^~7~^~Z~^^^^^^^^^^~08/01/1982~
-~09275~^~208~^51.^0^^~4~^~NC~^^^^^^^^^^~12/01/2009~
-~09275~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2003~
-~09275~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2003~
-~09275~^~268~^214.^0^^~4~^~NC~^^^^^^^^^^~12/01/2009~
-~09275~^~301~^13.^51^0.^~1~^~A~^^^15^9.^20.^14^12.^13.^~2~^~12/01/2009~
-~09275~^~304~^14.^51^0.^~1~^~A~^^^15^11.^18.^14^13.^14.^~2~^~12/01/2009~
-~09275~^~305~^9.^51^0.^~1~^~A~^^^15^5.^14.^14^8.^9.^~2~^~12/01/2009~
-~09275~^~306~^132.^51^4.^~1~^~A~^^^15^82.^180.^14^122.^141.^~2~^~12/01/2009~
-~09275~^~307~^1.^51^0.^~1~^~A~^^^15^0.^3.^14^1.^1.^~1, 2~^~12/01/2009~
-~09275~^~318~^10.^0^^~1~^^^^^^^^^^^~08/01/1982~
-~09275~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2002~
-~09275~^~320~^1.^0^^~4~^~NC~^^^^^^^^^^~12/01/2009~
-~09275~^~321~^6.^0^^~4~^~BNA~^~09266~^^^^^^^^^~01/01/2003~
-~09275~^~322~^0.^0^^~4~^~BNA~^~09266~^^^^^^^^^~01/01/2003~
-~09275~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~
-~09275~^~334~^0.^0^^~4~^~BNA~^~09266~^^^^^^^^^~01/01/2003~
-~09275~^~337~^0.^0^^~4~^~BFZN~^~09266~^^^^^^^^^~01/01/2003~
-~09275~^~338~^0.^0^^~4~^~BFZN~^~09266~^^^^^^^^^~01/01/2003~
-~09275~^~417~^11.^0^^~4~^^^^^^^^^^^~08/01/1982~
-~09275~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~
-~09275~^~432~^11.^0^^~4~^^^^^^^^^^^~12/01/2009~
-~09275~^~435~^11.^0^^~4~^~NC~^^^^^^^^^^~12/01/2009~
-~09275~^~601~^0.^0^^~7~^~Z~^^^^^^^^^^~08/01/1982~
-~09276~^~208~^33.^0^^~4~^~NC~^^^^^^^^^^~08/01/1982~
-~09276~^~268~^138.^0^^~4~^^^^^^^^^^^
-~09276~^~301~^9.^0^^~1~^^^^^^^^^^^~08/01/1982~
-~09276~^~304~^12.^1^^~1~^^^^^^^^^^^~08/01/1982~
-~09276~^~305~^11.^0^^~1~^^^^^^^^^^^~08/01/1982~
-~09276~^~306~^103.^1^^~1~^^^^^^^^^^^~08/01/1982~
-~09276~^~307~^3.^1^^~1~^^^^^^^^^^^~08/01/1982~
-~09276~^~318~^1500.^0^^~1~^^^^^^^^^^^~08/01/1982~
-~09276~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2002~
-~09276~^~320~^75.^0^^~1~^^^^^^^^^^^~06/01/2002~
-~09276~^~601~^0.^0^^~7~^~Z~^^^^^^^^^^~08/01/1982~
-~09277~^~208~^122.^0^^~4~^~NC~^^^^^^^^^^~11/01/2016~
-~09277~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2003~
-~09277~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2003~
-~09277~^~268~^510.^0^^~4~^^^^^^^^^^^~11/01/2016~
-~09277~^~301~^3.^4^0.^~6~^~JA~^^^2^3.^3.^2^2.^4.^~2, 3~^~11/01/2016~
-~09277~^~304~^36.^7^1.^~6~^~JA~^^^2^32.^37.^5^33.^39.^~2, 3~^~11/01/2016~
-~09277~^~305~^32.^4^1.^~6~^~JA~^^^2^28.^34.^2^25.^39.^~2, 3~^~11/01/2016~
-~09277~^~306~^487.^9^38.^~6~^~JA~^^^2^389.^499.^7^396.^577.^~2, 3~^~11/01/2016~
-~09277~^~307~^4.^7^2.^~6~^~JA~^^^2^2.^4.^5^-2.^9.^~1, 2, 3~^~11/01/2016~
-~09277~^~318~^1127.^0^^~4~^~NC~^^^^^^^^^^~11/01/2016~
-~09277~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2002~
-~09277~^~320~^56.^0^^~4~^~NC~^^^^^^^^^^~11/01/2016~
-~09277~^~321~^457.^0^^~4~^~BNA~^~09040~^^^^^^^^^~11/01/2016~
-~09277~^~322~^438.^0^^~4~^~BNA~^~09040~^^^^^^^^^~11/01/2016~
-~09277~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~
-~09277~^~334~^0.^0^^~4~^~BNA~^~09040~^^^^^^^^^~01/01/2003~
-~09277~^~337~^0.^0^^~4~^~BFSN~^~09040~^^^^^^^^^~11/01/2016~
-~09277~^~338~^30.^0^^~4~^~BFSN~^~09040~^^^^^^^^^~11/01/2016~
-~09277~^~417~^22.^7^0.^~6~^~JA~^^^2^19.^22.^5^19.^23.^~2, 3~^~11/01/2016~
-~09277~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~
-~09277~^~432~^22.^7^0.^~6~^~JA~^^^2^19.^22.^5^19.^23.^^~11/01/2016~
-~09277~^~435~^22.^0^^~4~^~NC~^^^^^^^^^^~11/01/2016~
-~09277~^~601~^0.^0^^~7~^~Z~^^^^^^^^^^~08/01/1982~
-~09278~^~208~^155.^0^^~4~^~NC~^^^^^^^^^^~11/01/2016~
-~09278~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2003~
-~09278~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2003~
-~09278~^~268~^650.^0^^~4~^~NC~^^^^^^^^^^~11/01/2016~
-~09278~^~301~^3.^3^0.^~1~^~A~^^^1^2.^4.^2^0.^6.^~2, 3~^~11/01/2016~
-~09278~^~304~^41.^3^3.^~1~^~A~^^^1^35.^46.^2^27.^53.^~2, 3~^~11/01/2016~
-~09278~^~305~^37.^3^3.^~1~^~A~^^^1^32.^43.^2^23.^50.^~2, 3~^~11/01/2016~
-~09278~^~306~^477.^3^23.^~1~^~A~^^^1^453.^523.^2^378.^575.^~2, 3~^~11/01/2016~
-~09278~^~307~^2.^3^0.^~1~^~A~^^^1^2.^2.^2^1.^1.^~1, 2, 3~^~11/01/2016~
-~09278~^~318~^909.^0^^~4~^~NC~^^^^^^^^^^~11/01/2016~
-~09278~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2002~
-~09278~^~320~^45.^0^^~4~^~NC~^^^^^^^^^^~11/01/2016~
-~09278~^~321~^369.^0^^~4~^~BNA~^~09040~^^^^^^^^^~03/01/2003~
-~09278~^~322~^353.^0^^~4~^~BNA~^~09040~^^^^^^^^^~03/01/2003~
-~09278~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~
-~09278~^~334~^0.^0^^~4~^~BNA~^~09040~^^^^^^^^^~03/01/2003~
-~09278~^~337~^0.^0^^~4~^~BFSN~^~09040~^^^^^^^^^~03/01/2003~
-~09278~^~338~^28.^0^^~4~^~BFSN~^~09040~^^^^^^^^^~03/01/2003~
-~09278~^~417~^53.^2^^~1~^~A~^^^1^24.^82.^1^^^^~11/01/2016~
-~09278~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~
-~09278~^~432~^53.^2^^~1~^~A~^^^^^^^^^^~11/01/2016~
-~09278~^~435~^53.^0^^~4~^~NC~^^^^^^^^^^~11/01/2016~
-~09278~^~601~^0.^0^^~7~^~Z~^^^^^^^^^^~08/01/1982~
-~09279~^~208~^46.^0^^~4~^~NC~^^^^^^^^^^~01/01/2007~
-~09279~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~12/01/2002~
-~09279~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~12/01/2002~
-~09279~^~268~^192.^0^^~4~^~NC~^^^^^^^^^^~01/01/2007~
-~09279~^~301~^6.^39^0.^~1~^~A~^^^12^4.^26.^11^4.^7.^~2~^~12/01/2002~
-~09279~^~304~^7.^44^0.^~1~^~A~^^^13^5.^9.^12^6.^7.^~2~^~12/01/2002~
-~09279~^~305~^16.^44^0.^~1~^~A~^^^13^9.^25.^12^14.^17.^~2~^~12/01/2002~
-~09279~^~306~^157.^41^3.^~1~^~A~^^^13^111.^207.^12^147.^165.^~2~^~05/01/2003~
-~09279~^~307~^0.^37^0.^~1~^~A~^^^12^0.^2.^11^0.^0.^~1, 2~^~05/01/2003~
-~09279~^~318~^345.^7^43.^~1~^~A~^^^2^193.^555.^5^233.^456.^~2, 3~^~12/01/2002~
-~09279~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2002~
-~09279~^~320~^17.^7^2.^~1~^~A~^^^2^10.^28.^5^11.^22.^~2, 3~^~12/01/2002~
-~09279~^~321~^190.^7^23.^~1~^~A~^^^2^109.^305.^5^128.^250.^~2, 3~^~12/01/2002~
-~09279~^~322~^0.^7^0.^~1~^~A~^^^2^0.^0.^^^^~1, 2, 3~^~12/01/2002~
-~09279~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~
-~09279~^~334~^35.^7^7.^~1~^~A~^^^2^13.^72.^4^12.^57.^~2, 3~^~12/01/2002~
-~09279~^~337~^0.^7^0.^~1~^~A~^^^2^0.^0.^^^^~1, 2, 3~^~12/01/2002~
-~09279~^~338~^73.^7^12.^~1~^~A~^^^2^37.^122.^5^39.^106.^~2, 3~^~12/01/2002~
-~09279~^~417~^5.^8^0.^~1~^~A~^^^2^3.^7.^3^5.^5.^~1, 2, 3~^~12/01/2002~
-~09279~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~
-~09279~^~432~^5.^8^0.^~1~^~A~^^^2^3.^7.^3^5.^5.^^~01/01/2007~
-~09279~^~435~^5.^0^^~4~^~NC~^^^^^^^^^^~01/01/2007~
-~09279~^~601~^0.^0^^~7~^~Z~^^^^^^^^^^~08/01/1982~
-~09279~^~636~^7.^0^^~1~^^^^^^^^^^^~08/01/1982~
-~09281~^~208~^41.^0^^~4~^~NC~^^^^^^^^^^~08/01/1982~
-~09281~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~12/01/2002~
-~09281~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~12/01/2002~
-~09281~^~268~^172.^0^^~4~^^^^^^^^^^^~01/01/2007~
-~09281~^~301~^7.^1^^~1~^^^^^^^^^^^~08/01/1982~
-~09281~^~304~^5.^1^^~1~^^^^^^^^^^^~08/01/1982~
-~09281~^~305~^13.^1^^~1~^^^^^^^^^^^~08/01/1982~
-~09281~^~306~^126.^1^^~1~^^^^^^^^^^^~08/01/1982~
-~09281~^~307~^1.^1^^~1~^^^^^^^^^^^~08/01/1982~
-~09281~^~318~^914.^1^^~1~^^^^^^^^^^^~08/01/1982~
-~09281~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2002~
-~09281~^~320~^46.^1^^~1~^^^^^^^^^^^~01/01/2007~
-~09281~^~321~^502.^0^^~4~^~BNA~^~09279~^^^^^^^^^~12/01/2002~
-~09281~^~322~^0.^0^^~4~^~BNA~^~09279~^^^^^^^^^~12/01/2002~
-~09281~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~
-~09281~^~334~^93.^0^^~4~^~BNA~^~09279~^^^^^^^^^~12/01/2002~
-~09281~^~337~^0.^0^^~4~^~BFYN~^~09279~^^^^^^^^^~12/01/2002~
-~09281~^~338~^49.^0^^~4~^~BFYN~^~09279~^^^^^^^^^~12/01/2002~
-~09281~^~417~^3.^0^^~1~^^^^^^^^^^^~08/01/1982~
-~09281~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~
-~09281~^~432~^3.^0^^~1~^^^^^^^^^^^~01/01/2007~
-~09281~^~435~^3.^0^^~4~^~NC~^^^^^^^^^^~01/01/2007~
-~09281~^~601~^0.^0^^~7~^~Z~^^^^^^^^^^~08/01/1982~
-~09282~^~208~^58.^0^^~4~^~NC~^^^^^^^^^^~08/01/1982~
-~09282~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~12/01/2002~
-~09282~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~12/01/2002~
-~09282~^~268~^243.^0^^~4~^^^^^^^^^^^~01/01/2007~
-~09282~^~301~^10.^6^0.^~1~^^^^^^^^^^^~08/01/1982~
-~09282~^~304~^8.^6^0.^~1~^^^^^^^^^^^~08/01/1982~
-~09282~^~305~^15.^6^1.^~1~^^^^^^^^^^^~08/01/1982~
-~09282~^~306~^154.^6^6.^~1~^^^^^^^^^^^~08/01/1982~
-~09282~^~307~^1.^6^0.^~1~^^^^^^^^^^^~08/01/1982~
-~09282~^~318~^1009.^6^43.^~1~^^^^^^^^^^^~08/01/1982~
-~09282~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2002~
-~09282~^~320~^50.^6^2.^~1~^^^^^^^^^^^~01/01/2007~
-~09282~^~321~^554.^0^^~4~^~BNA~^~09279~^^^^^^^^^~12/01/2002~
-~09282~^~322~^0.^0^^~4~^~BNA~^~09279~^^^^^^^^^~12/01/2002~
-~09282~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~
-~09282~^~334~^102.^0^^~4~^~BNA~^~09279~^^^^^^^^^~12/01/2002~
-~09282~^~337~^0.^0^^~4~^~BFYN~^~09279~^^^^^^^^^~12/01/2002~
-~09282~^~338~^49.^0^^~4~^~BFYN~^~09279~^^^^^^^^^~12/01/2002~
-~09282~^~417~^3.^0^^~4~^^^^^^^^^^^~08/01/1982~
-~09282~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~
-~09282~^~432~^3.^0^^~4~^^^^^^^^^^^~01/01/2007~
-~09282~^~435~^3.^0^^~4~^~NC~^^^^^^^^^^~01/01/2007~
-~09282~^~601~^0.^0^^~7~^~Z~^^^^^^^^^^~08/01/1982~
-~09283~^~208~^63.^0^^~4~^~NC~^^^^^^^^^^~08/01/1982~
-~09283~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~12/01/2002~
-~09283~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~12/01/2002~
-~09283~^~268~^264.^0^^~4~^^^^^^^^^^^~01/01/2007~
-~09283~^~301~^9.^0^^~1~^^^^^^^^^^^~08/01/1982~
-~09283~^~304~^5.^0^^~1~^^^^^^^^^^^~08/01/1982~
-~09283~^~305~^13.^0^^~1~^^^^^^^^^^^~08/01/1982~
-~09283~^~306~^93.^0^^~1~^^^^^^^^^^^~08/01/1982~
-~09283~^~307~^20.^0^^~1~^^^^^^^^^^^~08/01/1982~
-~09283~^~318~^231.^0^^~4~^~NC~^^^^^^^^^^~01/01/2007~
-~09283~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2002~
-~09283~^~320~^12.^0^^~4~^~NC~^^^^^^^^^^~01/01/2007~
-~09283~^~321~^127.^0^^~4~^~BFYN~^~09279~^^^^^^^^^~12/01/2002~
-~09283~^~322~^0.^0^^~4~^~BFYN~^~09279~^^^^^^^^^~12/01/2002~
-~09283~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~
-~09283~^~334~^23.^0^^~4~^~BFYN~^~09279~^^^^^^^^^~12/01/2002~
-~09283~^~337~^0.^0^^~4~^~BFYN~^~09279~^^^^^^^^^~12/01/2002~
-~09283~^~338~^49.^0^^~4~^~BFYN~^~09279~^^^^^^^^^~12/01/2002~
-~09283~^~417~^3.^0^^~1~^^^^^^^^^^^~08/01/1982~
-~09283~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~
-~09283~^~432~^3.^0^^~1~^^^^^^^^^^^~01/01/2007~
-~09283~^~435~^3.^0^^~4~^~NC~^^^^^^^^^^~01/01/2007~
-~09283~^~601~^0.^0^^~7~^~Z~^^^^^^^^^^~08/01/1982~
-~09284~^~208~^89.^0^^~4~^~NC~^^^^^^^^^^~08/01/1982~
-~09284~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~12/01/2002~
-~09284~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~12/01/2002~
-~09284~^~268~^372.^0^^~4~^^^^^^^^^^^~01/01/2007~
-~09284~^~301~^9.^8^0.^~1~^^^^^^^^^^^~08/01/1982~
-~09284~^~304~^5.^0^^~1~^^^^^^^^^^^~08/01/1982~
-~09284~^~305~^13.^0^^~1~^^^^^^^^^^^~08/01/1982~
-~09284~^~306~^91.^8^5.^~1~^^^^^^^^^^^~08/01/1982~
-~09284~^~307~^19.^8^1.^~1~^^^^^^^^^^^~08/01/1982~
-~09284~^~318~^259.^8^63.^~1~^^^^^^^^^^^~08/01/1982~
-~09284~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2002~
-~09284~^~320~^13.^8^3.^~1~^^^^^^^^^^^~01/01/2007~
-~09284~^~321~^142.^0^^~4~^~BNA~^~09279~^^^^^^^^^~12/01/2002~
-~09284~^~322~^0.^0^^~4~^~BNA~^~09279~^^^^^^^^^~12/01/2002~
-~09284~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~
-~09284~^~334~^26.^0^^~4~^~BNA~^~09279~^^^^^^^^^~12/01/2002~
-~09284~^~337~^0.^0^^~4~^~BFYN~^~09279~^^^^^^^^^~12/01/2002~
-~09284~^~338~^49.^0^^~4~^~BFYN~^~09279~^^^^^^^^^~12/01/2002~
-~09284~^~417~^3.^3^0.^~1~^^^^^^^^^^^~08/01/1982~
-~09284~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~
-~09284~^~432~^3.^3^0.^~1~^^^^^^^^^^^~01/01/2007~
-~09284~^~435~^3.^0^^~4~^~NC~^^^^^^^^^^~01/01/2007~
-~09284~^~601~^0.^0^^~7~^~Z~^^^^^^^^^^~08/01/1982~
-~09285~^~208~^101.^0^^~4~^~NC~^^^^^^^^^^~08/01/1982~
-~09285~^~268~^423.^0^^~4~^^^^^^^^^^^
-~09285~^~301~^9.^0^^~1~^^^^^^^^^^^~08/01/1982~
-~09285~^~304~^5.^0^^~1~^^^^^^^^^^^~08/01/1982~
-~09285~^~305~^12.^0^^~1~^^^^^^^^^^^~08/01/1982~
-~09285~^~306~^89.^0^^~1~^^^^^^^^^^^~08/01/1982~
-~09285~^~307~^19.^0^^~1~^^^^^^^^^^^~08/01/1982~
-~09285~^~318~^254.^0^^~1~^^^^^^^^^^^~08/01/1982~
-~09285~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2002~
-~09285~^~320~^13.^0^^~1~^^^^^^^^^^^~06/01/2002~
-~09285~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~
-~09285~^~417~^3.^0^^~1~^^^^^^^^^^^~08/01/1982~
-~09285~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~
-~09285~^~432~^3.^0^^~1~^^^^^^^^^^^~08/01/1982~
-~09285~^~435~^3.^0^^~4~^~NC~^^^^^^^^^^~01/01/2001~
-~09285~^~601~^0.^0^^~7~^~Z~^^^^^^^^^^~08/01/1982~
-~09286~^~208~^83.^0^^~4~^~NC~^^^^^^^^^^~06/01/2008~
-~09286~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~
-~09286~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~
-~09286~^~268~^346.^0^^~4~^~NC~^^^^^^^^^^~06/01/2008~
-~09286~^~301~^10.^3^0.^~1~^~A~^^^1^9.^11.^2^7.^13.^~4~^~03/01/2008~
-~09286~^~304~^12.^3^1.^~1~^~A~^^^1^10.^15.^2^6.^18.^~4~^~03/01/2008~
-~09286~^~305~^36.^3^4.^~1~^~A~^^^1^27.^42.^2^16.^55.^~4~^~03/01/2008~
-~09286~^~306~^236.^3^12.^~1~^~A~^^^1^212.^249.^2^183.^288.^~4~^~03/01/2008~
-~09286~^~307~^3.^3^0.^~1~^~A~^^^1^3.^3.^2^2.^3.^~1, 4~^~03/01/2008~
-~09286~^~318~^0.^0^^~4~^~NC~^^^^^^^^^^~06/01/2008~
-~09286~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2002~
-~09286~^~320~^0.^0^^~4~^~NC~^^^^^^^^^^~06/01/2008~
-~09286~^~321~^0.^0^^~4~^~BFSN~^~09442~^^^^^^^^^~06/01/2008~
-~09286~^~322~^0.^0^^~4~^~BFSN~^~09442~^^^^^^^^^~06/01/2008~
-~09286~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~
-~09286~^~334~^0.^0^^~4~^~BFSN~^~09442~^^^^^^^^^~06/01/2008~
-~09286~^~337~^0.^0^^~4~^~BFSN~^~09442~^^^^^^^^^~06/01/2008~
-~09286~^~338~^0.^0^^~4~^~BFSN~^~09442~^^^^^^^^^~06/01/2008~
-~09286~^~417~^38.^3^11.^~1~^~A~^^^1^21.^60.^2^-10.^86.^~4~^~03/01/2008~
-~09286~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~
-~09286~^~432~^38.^3^11.^~1~^~A~^^^1^21.^60.^2^-10.^86.^^~06/01/2008~
-~09286~^~435~^38.^0^^~4~^~NC~^^^^^^^^^^~06/01/2008~
-~09286~^~601~^0.^0^^~7~^~Z~^^^^^^^^^^~08/01/1982~
-~09286~^~638~^0.^1^^~1~^~A~^^^^^^^^^^~03/01/2008~
-~09286~^~639~^1.^1^^~1~^~A~^^^^^^^^^^~03/01/2008~
-~09286~^~641~^4.^1^^~1~^~A~^^^^^^^^^^~03/01/2008~
-~09287~^~208~^41.^0^^~4~^~NC~^^^^^^^^^^~08/01/1982~
-~09287~^~268~^172.^0^^~4~^^^^^^^^^^^
-~09287~^~301~^56.^1^^~1~^^^^^^^^^^^~08/01/1982~
-~09287~^~304~^85.^2^^~1~^^^^^^^^^^^~08/01/1982~
-~09287~^~305~^24.^1^^~1~^^^^^^^^^^^~08/01/1982~
-~09287~^~306~^220.^2^^~1~^^^^^^^^^^^~08/01/1982~
-~09287~^~307~^5.^2^^~1~^^^^^^^^^^^~08/01/1982~
-~09287~^~318~^43.^4^43.^~1~^~A~^^^2^0.^87.^1^-507.^593.^~2~^~05/01/2003~
-~09287~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2002~
-~09287~^~320~^2.^4^2.^~1~^~A~^^^2^0.^4.^1^-25.^29.^~2~^~05/01/2003~
-~09287~^~321~^25.^4^24.^~1~^~A~^^^2^0.^49.^1^-286.^335.^~2~^~05/01/2003~
-~09287~^~322~^0.^4^0.^~1~^~A~^^^2^0.^0.^^^^~2~^~05/01/2003~
-~09287~^~334~^3.^4^3.^~1~^~A~^^^2^0.^6.^1^-35.^41.^~2~^~05/01/2003~
-~09287~^~417~^6.^0^^~4~^^^^^^^^^^^~04/01/1985~
-~09287~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~
-~09287~^~432~^6.^0^^~4~^^^^^^^^^^^~05/01/2003~
-~09287~^~435~^6.^0^^~4~^~NC~^^^^^^^^^^~05/01/2003~
-~09287~^~601~^0.^0^^~7~^~Z~^^^^^^^^^^~08/01/1982~
-~09288~^~208~^105.^0^^~4~^~NC~^^^^^^^^^^~08/01/1982~
-~09288~^~268~^439.^0^^~4~^^^^^^^^^^^
-~09288~^~301~^17.^20^0.^~1~^^^^^^^^^^^~08/01/1982~
-~09288~^~304~^15.^20^0.^~1~^^^^^^^^^^^~08/01/1982~
-~09288~^~305~^26.^20^0.^~1~^^^^^^^^^^^~08/01/1982~
-~09288~^~306~^226.^20^5.^~1~^^^^^^^^^^^~08/01/1982~
-~09288~^~307~^3.^26^0.^~1~^^^^^^^^^^^~08/01/1982~
-~09288~^~318~^797.^21^74.^~1~^^^^^^^^^^^~08/01/1982~
-~09288~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2002~
-~09288~^~320~^40.^21^3.^~1~^^^^^^^^^^^~06/01/2002~
-~09288~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~
-~09288~^~417~^0.^0^^~4~^^^^^^^^^^^~08/01/1982~
-~09288~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~
-~09288~^~432~^0.^0^^~4~^^^^^^^^^^^~08/01/1982~
-~09288~^~435~^0.^0^^~4~^~NC~^^^^^^^^^^~01/01/2001~
-~09288~^~601~^0.^0^^~7~^~Z~^^^^^^^^^^~08/01/1982~
-~09289~^~208~^339.^0^^~4~^~NC~^^^^^^^^^^~08/01/1982~
-~09289~^~268~^1418.^0^^~4~^^^^^^^^^^^
-~09289~^~301~^72.^0^^~1~^^^^^^^^^^^~08/01/1982~
-~09289~^~304~^64.^0^^~1~^^^^^^^^^^^~08/01/1982~
-~09289~^~305~^112.^0^^~1~^^^^^^^^^^^~08/01/1982~
-~09289~^~306~^1058.^0^^~1~^^^^^^^^^^^~08/01/1982~
-~09289~^~307~^5.^0^^~1~^^^^^^^^^^^~08/01/1982~
-~09289~^~318~^1762.^2^^~1~^^^^^^^^^^^~08/01/1982~
-~09289~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2002~
-~09289~^~320~^88.^2^^~1~^^^^^^^^^^^~06/01/2002~
-~09289~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~
-~09289~^~417~^2.^2^^~1~^^^^^^^^^^^~08/01/1982~
-~09289~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~
-~09289~^~432~^2.^2^^~1~^^^^^^^^^^^~08/01/1982~
-~09289~^~435~^2.^0^^~4~^~NC~^^^^^^^^^^~01/01/2001~
-~09289~^~601~^0.^0^^~7~^~Z~^^^^^^^^^^~08/01/1982~
-~09290~^~208~^113.^0^^~4~^~NC~^^^^^^^^^^~08/01/1982~
-~09290~^~268~^473.^0^^~4~^^^^^^^^^^^
-~09290~^~301~^24.^0^^~1~^^^^^^^^^^^~08/01/1982~
-~09290~^~304~^21.^0^^~1~^^^^^^^^^^^~08/01/1982~
-~09290~^~305~^37.^0^^~1~^^^^^^^^^^^~08/01/1982~
-~09290~^~306~^353.^0^^~1~^^^^^^^^^^^~08/01/1982~
-~09290~^~307~^2.^0^^~1~^^^^^^^^^^^~08/01/1982~
-~09290~^~318~^523.^2^^~1~^^^^^^^^^^^~08/01/1982~
-~09290~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2002~
-~09290~^~320~^26.^2^^~1~^^^^^^^^^^^~06/01/2002~
-~09290~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~
-~09290~^~417~^0.^2^^~1~^^^^^^^^^^^~08/01/1982~
-~09290~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~
-~09290~^~432~^0.^2^^~1~^^^^^^^^^^^~08/01/1982~
-~09290~^~435~^0.^0^^~4~^~NC~^^^^^^^^^^~01/01/2001~
-~09290~^~601~^0.^0^^~7~^~Z~^^^^^^^^^^~08/01/1982~
-~09291~^~208~^240.^0^^~4~^~NC~^^^^^^^^^^~08/01/2010~
-~09291~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~10/01/2002~
-~09291~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~10/01/2002~
-~09291~^~268~^1006.^0^^~4~^~NC~^^^^^^^^^^~08/01/2010~
-~09291~^~301~^43.^42^1.^~1~^~A~^^^13^19.^72.^12^39.^45.^~2~^~10/01/2002~
-~09291~^~304~^41.^42^0.^~1~^~A~^^^13^30.^47.^12^39.^42.^~2~^~10/01/2002~
-~09291~^~305~^69.^42^1.^~1~^~A~^^^13^53.^81.^12^66.^72.^~2~^~10/01/2002~
-~09291~^~306~^732.^42^6.^~1~^~A~^^^13^630.^826.^12^716.^746.^~2~^~10/01/2002~
-~09291~^~307~^2.^38^0.^~1~^~A~^^^13^0.^4.^12^1.^1.^~1, 2~^~10/01/2002~
-~09291~^~318~^781.^31^230.^~1~^~A~^^^3^325.^1649.^2^-210.^1772.^~2~^~10/01/2002~
-~09291~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2002~
-~09291~^~320~^39.^31^11.^~1~^~A~^^^3^16.^82.^2^-10.^88.^~2~^~10/01/2002~
-~09291~^~321~^394.^31^117.^~1~^~A~^^^3^150.^834.^2^-111.^899.^~2~^~10/01/2002~
-~09291~^~322~^57.^31^17.^~1~^~A~^^^3^22.^115.^2^-18.^131.^~2~^~10/01/2002~
-~09291~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~
-~09291~^~334~^93.^31^24.^~1~^~A~^^^3^42.^196.^2^-12.^198.^~2~^~10/01/2002~
-~09291~^~337~^0.^7^0.^~1~^~A~^^^2^0.^0.^^^^~1, 2, 3~^~10/01/2002~
-~09291~^~338~^148.^31^18.^~1~^~A~^^^3^87.^256.^2^68.^227.^~2~^~10/01/2002~
-~09291~^~417~^4.^4^0.^~1~^~A~^^^1^4.^4.^^^^~1, 2, 3~^~10/01/2002~
-~09291~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~
-~09291~^~432~^4.^4^0.^~1~^~A~^^^1^4.^4.^^^^^~08/01/2010~
-~09291~^~435~^4.^0^^~4~^~NC~^^^^^^^^^^~08/01/2010~
-~09291~^~601~^0.^0^^~7~^~Z~^^^^^^^^^^~08/01/1982~
-~09292~^~208~^107.^0^^~4~^~NC~^^^^^^^^^^~08/01/1982~
-~09292~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~
-~09292~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~
-~09292~^~268~^448.^0^^~4~^^^^^^^^^^^~01/01/2007~
-~09292~^~301~^19.^0^^~4~^~BFSN~^~09291~^^^^^^^^^~02/01/2003~
-~09292~^~304~^18.^0^^~4~^~BFSN~^~09291~^^^^^^^^^~02/01/2003~
-~09292~^~305~^30.^0^^~4~^~BFSN~^~09291~^^^^^^^^^~02/01/2003~
-~09292~^~306~^321.^0^^~4~^~BFSN~^~09291~^^^^^^^^^~02/01/2003~
-~09292~^~307~^1.^0^^~4~^~BFSN~^~09291~^^^^^^^^^~02/01/2003~
-~09292~^~318~^342.^0^^~4~^~NC~^^^^^^^^^^~01/01/2007~
-~09292~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2002~
-~09292~^~320~^17.^0^^~4~^~NC~^^^^^^^^^^~01/01/2007~
-~09292~^~321~^173.^0^^~4~^~BFSN~^~09291~^^^^^^^^^~02/01/2003~
-~09292~^~322~^25.^0^^~4~^~BFSN~^~09291~^^^^^^^^^~02/01/2003~
-~09292~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~
-~09292~^~334~^41.^0^^~4~^~BFSN~^~09291~^^^^^^^^^~02/01/2003~
-~09292~^~337~^0.^0^^~4~^~BFSN~^~09291~^^^^^^^^^~02/01/2003~
-~09292~^~338~^65.^0^^~4~^~BFSN~^~09291~^^^^^^^^^~02/01/2003~
-~09292~^~417~^0.^3^0.^~1~^^^^^^^^^^^~08/01/1982~
-~09292~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~
-~09292~^~432~^0.^3^0.^~1~^^^^^^^^^^^~01/01/2007~
-~09292~^~435~^0.^0^^~4~^~NC~^^^^^^^^^^~05/01/2007~
-~09292~^~601~^0.^0^^~7~^~Z~^^^^^^^^^^~08/01/1982~
-~09293~^~208~^124.^0^^~4~^~NC~^^^^^^^^^^~08/01/1982~
-~09293~^~268~^519.^0^^~4~^^^^^^^^^^^
-~09293~^~301~^21.^0^^~1~^^^^^^^^^^^~08/01/1982~
-~09293~^~304~^19.^0^^~1~^^^^^^^^^^^~08/01/1982~
-~09293~^~305~^33.^0^^~1~^^^^^^^^^^^~08/01/1982~
-~09293~^~306~^312.^0^^~1~^^^^^^^^^^^~08/01/1982~
-~09293~^~307~^2.^0^^~1~^^^^^^^^^^^~08/01/1982~
-~09293~^~318~^285.^0^^~1~^^^^^^^^^^^~08/01/1982~
-~09293~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2002~
-~09293~^~320~^14.^0^^~1~^^^^^^^^^^^~06/01/2002~
-~09293~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~
-~09293~^~417~^0.^0^^~1~^^^^^^^^^^^~08/01/1982~
-~09293~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~
-~09293~^~432~^0.^0^^~1~^^^^^^^^^^^~08/01/1982~
-~09293~^~435~^0.^0^^~4~^~NC~^^^^^^^^^^~04/01/2003~
-~09293~^~601~^0.^0^^~7~^~Z~^^^^^^^^^^~08/01/1982~
-~09294~^~208~^71.^0^^~4~^~NC~^^^^^^^^^^~08/01/1982~
-~09294~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~10/01/2002~
-~09294~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~10/01/2002~
-~09294~^~268~^297.^0^^~4~^^^^^^^^^^^~01/01/2007~
-~09294~^~301~^12.^30^0.^~1~^^^^^^^^^^^~08/01/1982~
-~09294~^~304~^14.^23^0.^~1~^^^^^^^^^^^~08/01/1982~
-~09294~^~305~^25.^23^0.^~1~^^^^^^^^^^^~08/01/1982~
-~09294~^~306~^276.^22^11.^~1~^^^^^^^^^^^~08/01/1982~
-~09294~^~307~^4.^22^1.^~1~^^^^^^^^^^^~08/01/1982~
-~09294~^~318~^3.^26^1.^~1~^^^^^^^^^^^~08/01/1982~
-~09294~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2002~
-~09294~^~320~^0.^26^0.^~1~^^^^^^^^^^^~01/01/2007~
-~09294~^~321~^2.^0^^~4~^~BNA~^~09291~^^^^^^^^^~10/01/2002~
-~09294~^~322~^0.^0^^~4~^~BNA~^~09291~^^^^^^^^^~10/01/2002~
-~09294~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~
-~09294~^~334~^0.^0^^~4~^~BNA~^~09291~^^^^^^^^^~10/01/2002~
-~09294~^~337~^0.^0^^~4~^~BFSN~^~09291~^^^^^^^^^~10/01/2002~
-~09294~^~338~^40.^0^^~4~^~BFSN~^~09291~^^^^^^^^^~10/01/2002~
-~09294~^~417~^0.^3^0.^~1~^^^^^^^^^^^~08/01/1982~
-~09294~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~
-~09294~^~432~^0.^3^0.^~1~^^^^^^^^^^^~01/01/2007~
-~09294~^~435~^0.^0^^~4~^~NC~^^^^^^^^^^~01/01/2007~
-~09294~^~601~^0.^0^^~7~^~Z~^^^^^^^^^^~08/01/1982~
-~09295~^~208~^38.^0^^~4~^~NC~^^^^^^^^^^~08/01/1982~
-~09295~^~268~^159.^0^^~4~^^^^^^^^^^^
-~09295~^~301~^4.^2^^~1~^^^^^^^^^^^~08/01/1982~
-~09295~^~304~^6.^3^0.^~1~^^^^^^^^^^^~08/01/1982~
-~09295~^~305~^17.^2^^~1~^^^^^^^^^^^~08/01/1982~
-~09295~^~306~^216.^3^24.^~1~^^^^^^^^^^^~08/01/1982~
-~09295~^~307~^1.^3^0.^~1~^^^^^^^^^^^~08/01/1982~
-~09295~^~318~^8.^1^^~1~^~A~^^^^^^^^^^~07/01/2003~
-~09295~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2002~
-~09295~^~320~^0.^1^^~1~^~A~^^^^^^^^^^~07/01/2003~
-~09295~^~321~^0.^1^^~1~^~A~^^^^^^^^^^~07/01/2003~
-~09295~^~322~^0.^1^^~1~^~A~^^^^^^^^^^~07/01/2003~
-~09295~^~334~^10.^1^^~1~^~A~^^^^^^^^^^~07/01/2003~
-~09295~^~601~^0.^0^^~7~^~Z~^^^^^^^^^^~08/01/1982~
-~09296~^~208~^57.^0^^~4~^~NC~^^^^^^^^^^~08/01/1982~
-~09296~^~268~^238.^0^^~4~^^^^^^^^^^^
-~09296~^~301~^11.^0^^~1~^^^^^^^^^^^~08/01/1982~
-~09296~^~304~^8.^2^^~1~^^^^^^^^^^^~08/01/1982~
-~09296~^~305~^17.^0^^~1~^^^^^^^^^^^~08/01/1982~
-~09296~^~306~^197.^0^^~1~^^^^^^^^^^^~08/01/1982~
-~09296~^~307~^4.^0^^~1~^^^^^^^^^^^~08/01/1982~
-~09296~^~318~^40.^0^^~1~^^^^^^^^^^^~08/01/1982~
-~09296~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2002~
-~09296~^~320~^2.^0^^~1~^^^^^^^^^^^~06/01/2002~
-~09296~^~417~^3.^0^^~4~^^^^^^^^^^^~11/01/1988~
-~09296~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~
-~09296~^~432~^3.^0^^~4~^^^^^^^^^^^~11/01/1988~
-~09296~^~435~^3.^0^^~4~^~NC~^^^^^^^^^^~01/01/2001~
-~09296~^~601~^0.^0^^~7~^~Z~^^^^^^^^^^~08/01/1982~
-~09297~^~208~^301.^0^^~4~^~NC~^^^^^^^^^^~07/01/2017~
-~09297~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2003~
-~09297~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2003~
-~09297~^~268~^1258.^0^^~4~^~NC~^^^^^^^^^^~07/01/2017~
-~09297~^~301~^64.^6^0.^~1~^~A~^^^1^61.^67.^5^62.^66.^~2, 3~^~07/01/2017~
-~09297~^~304~^35.^6^0.^~1~^~A~^^^1^34.^38.^5^33.^36.^~2, 3~^~08/01/1982~
-~09297~^~305~^101.^6^3.^~1~^~A~^^^1^90.^111.^5^93.^109.^~2, 3~^~07/01/2017~
-~09297~^~306~^746.^6^16.^~1~^~A~^^^1^669.^791.^5^702.^789.^~2, 3~^~08/01/1982~
-~09297~^~307~^24.^6^3.^~1~^~A~^^^1^16.^37.^5^14.^33.^~2, 3~^~07/01/2017~
-~09297~^~318~^0.^0^^~4~^~NC~^^^^^^^^^^~02/01/2007~
-~09297~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2002~
-~09297~^~320~^0.^0^^~4~^~NC~^^^^^^^^^^~02/01/2007~
-~09297~^~321~^0.^0^^~4~^~BFZN~^~09298~^^^^^^^^^~01/01/2003~
-~09297~^~322~^0.^0^^~4~^~BFZN~^~09298~^^^^^^^^^~01/01/2003~
-~09297~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~
-~09297~^~334~^0.^0^^~4~^~BFZN~^~09298~^^^^^^^^^~01/01/2003~
-~09297~^~337~^0.^0^^~4~^~BFZN~^~09298~^^^^^^^^^~01/01/2003~
-~09297~^~338~^0.^0^^~4~^~BFZN~^~09298~^^^^^^^^^~01/01/2003~
-~09297~^~417~^3.^0^^~1~^^^^^^^^^^^~08/01/1982~
-~09297~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~
-~09297~^~432~^3.^0^^~1~^^^^^^^^^^^~02/01/2007~
-~09297~^~435~^3.^0^^~4~^~NC~^^^^^^^^^^~02/01/2007~
-~09297~^~601~^0.^6^0.^~1~^~A~^^^1^0.^0.^^^^~1, 2, 3~^~07/01/2017~
-~09298~^~208~^299.^0^^~4~^~NC~^^^^^^^^^^~08/01/2010~
-~09298~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~10/01/2002~
-~09298~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~10/01/2002~
-~09298~^~268~^1250.^0^^~4~^~NC~^^^^^^^^^^~07/01/2017~
-~09298~^~301~^62.^12^2.^~1~^~A~^^^1^53.^98.^10^57.^66.^~2, 3~^~07/01/2017~
-~09298~^~304~^36.^12^0.^~1~^~A~^^^1^33.^39.^10^35.^36.^~2, 3~^~07/01/2017~
-~09298~^~305~^98.^12^1.^~1~^~A~^^^1^92.^109.^6^94.^101.^~2, 3~^~07/01/2017~
-~09298~^~306~^744.^12^12.^~1~^~A~^^^1^681.^821.^6^713.^774.^~2, 3~^~07/01/2017~
-~09298~^~307~^26.^12^2.^~1~^~A~^^^1^17.^48.^6^18.^32.^~2, 3~^~07/01/2017~
-~09298~^~318~^0.^0^^~1~^~AS~^^^^^^^^^^~10/01/2002~
-~09298~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2002~
-~09298~^~320~^0.^0^^~1~^~AS~^^^^^^^^^^~10/01/2002~
-~09298~^~321~^0.^8^0.^~1~^~A~^^^2^0.^0.^^^^~1, 2, 3~^~10/01/2002~
-~09298~^~322~^0.^8^0.^~1~^~A~^^^2^0.^0.^^^^~1, 2, 3~^~10/01/2002~
-~09298~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~
-~09298~^~334~^0.^8^0.^~1~^~A~^^^2^0.^0.^^^^~1, 2, 3~^~10/01/2002~
-~09298~^~337~^0.^8^0.^~1~^~A~^^^2^0.^0.^^^^~1, 2, 3~^~10/01/2002~
-~09298~^~338~^0.^8^0.^~1~^~A~^^^2^0.^0.^^^^~1, 2, 3~^~10/01/2002~
-~09298~^~417~^5.^4^0.^~1~^~A~^^^1^4.^6.^3^3.^6.^~1, 2, 3~^~10/01/2002~
-~09298~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~
-~09298~^~432~^5.^4^0.^~1~^~A~^^^1^4.^6.^3^3.^6.^^~08/01/2010~
-~09298~^~435~^5.^0^^~4~^~NC~^^^^^^^^^^~08/01/2010~
-~09298~^~601~^0.^11^0.^~1~^~A~^^^1^0.^0.^^^^~1, 2, 3~^~07/01/2017~
-~09299~^~208~^296.^0^^~4~^~NC~^^^^^^^^^^~08/01/1982~
-~09299~^~268~^1238.^0^^~4~^^^^^^^^^^^
-~09299~^~301~^28.^34^1.^~1~^^^^^^^^^^^~08/01/1982~
-~09299~^~304~^30.^34^0.^~1~^^^^^^^^^^^~08/01/1982~
-~09299~^~305~^75.^34^3.^~1~^^^^^^^^^^^~08/01/1982~
-~09299~^~306~^825.^26^14.^~1~^^^^^^^^^^^~08/01/1982~
-~09299~^~307~^28.^26^1.^~1~^^^^^^^^^^^~08/01/1982~
-~09299~^~318~^0.^14^0.^~1~^^^^^^^^^^^~08/01/1982~
-~09299~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2002~
-~09299~^~320~^0.^14^0.^~1~^^^^^^^^^^^~06/01/2002~
-~09299~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~
-~09299~^~417~^3.^0^^~1~^^^^^^^^^^^~08/01/1982~
-~09299~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~
-~09299~^~432~^3.^0^^~1~^^^^^^^^^^^~08/01/1982~
-~09299~^~435~^3.^0^^~4~^~NC~^^^^^^^^^^~01/01/2001~
-~09299~^~601~^0.^0^^~7~^~Z~^^^^^^^^^^~08/01/1982~
-~09301~^~208~^82.^0^^~4~^~NC~^^^^^^^^^^~11/01/1996~
-~09301~^~268~^343.^0^^~4~^^^^^^^^^^^
-~09301~^~301~^22.^2^^~1~^~A~^^^^^^^^^^~11/01/1996~
-~09301~^~304~^7.^2^^~1~^~A~^^^^^^^^^^~11/01/1996~
-~09301~^~305~^9.^2^^~1~^~A~^^^^^^^^^^~11/01/1996~
-~09301~^~306~^42.^2^^~1~^~A~^^^^^^^^^^~11/01/1996~
-~09301~^~307~^11.^2^^~1~^~A~^^^^^^^^^^~11/01/1996~
-~09301~^~318~^3.^2^^~1~^~A~^^^^^^^^^^~05/01/2003~
-~09301~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2002~
-~09301~^~320~^0.^2^^~1~^~A~^^^^^^^^^^~05/01/2003~
-~09301~^~321~^2.^2^^~1~^~A~^^^^^^^^^^~05/01/2003~
-~09301~^~322~^0.^2^^~1~^~A~^^^^^^^^^^~05/01/2003~
-~09301~^~334~^0.^2^^~1~^~A~^^^^^^^^^^~05/01/2003~
-~09301~^~417~^8.^2^^~1~^~A~^^^^^^^^^^~11/01/1996~
-~09301~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~
-~09301~^~432~^8.^2^^~1~^~A~^^^^^^^^^^~05/01/2003~
-~09301~^~435~^8.^0^^~4~^~NC~^^^^^^^^^^~05/01/2003~
-~09301~^~601~^0.^0^^~7~^~Z~^^^^^^^^^^~11/01/1996~
-~09302~^~208~^52.^0^^~4~^~NC~^^^^^^^^^^~04/01/2006~
-~09302~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~12/01/2002~
-~09302~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~12/01/2002~
-~09302~^~268~^220.^0^^~4~^~NC~^^^^^^^^^^~04/01/2006~
-~09302~^~301~^25.^11^1.^~1~^~A~^^^4^19.^32.^3^20.^28.^~2~^~12/01/2002~
-~09302~^~304~^22.^12^2.^~1~^~A~^^^4^13.^32.^3^14.^28.^~2~^~12/01/2002~
-~09302~^~305~^29.^11^2.^~1~^~A~^^^4^21.^37.^3^20.^38.^~2~^~12/01/2002~
-~09302~^~306~^151.^12^20.^~1~^~A~^^^4^93.^206.^3^86.^216.^~2~^~05/01/2003~
-~09302~^~307~^1.^8^0.^~1~^~A~^^^3^0.^3.^2^-1.^3.^~2~^~05/01/2003~
-~09302~^~318~^33.^0^^~1~^~AS~^^^^^^^^^^~12/01/2002~
-~09302~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2002~
-~09302~^~320~^2.^0^^~1~^~AS~^^^^^^^^^^~12/01/2002~
-~09302~^~321~^12.^16^8.^~1~^~A~^^^5^0.^42.^4^-10.^33.^~1, 2~^~12/01/2002~
-~09302~^~322~^16.^12^6.^~1~^~A~^^^4^0.^31.^3^-3.^35.^~2~^~12/01/2002~
-~09302~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~
-~09302~^~334~^0.^12^0.^~1~^~A~^^^4^0.^0.^^^^~1, 2~^~12/01/2002~
-~09302~^~337~^0.^4^0.^~1~^~A~^^^2^0.^0.^^^^~1, 2, 3~^~12/01/2002~
-~09302~^~338~^136.^4^2.^~1~^~A~^^^2^123.^146.^2^126.^145.^~2, 3~^~12/01/2002~
-~09302~^~417~^21.^12^5.^~1~^~A~^^^4^7.^41.^3^2.^39.^~1, 2~^~12/01/2002~
-~09302~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~
-~09302~^~432~^21.^12^5.^~1~^~A~^^^4^7.^41.^3^2.^39.^^~04/01/2006~
-~09302~^~435~^21.^0^^~4~^~NC~^^^^^^^^^^~04/01/2006~
-~09302~^~601~^0.^0^^~7~^~Z~^^^^^^^^^^~08/01/1982~
-~09304~^~208~^91.^0^^~4~^~NC~^^^^^^^^^^~08/01/1982~
-~09304~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~
-~09304~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~
-~09304~^~268~^381.^0^^~4~^^^^^^^^^^^~02/01/2007~
-~09304~^~301~^11.^3^1.^~1~^^^^^^^^^^^~08/01/1982~
-~09304~^~304~^12.^3^0.^~1~^^^^^^^^^^^~08/01/1982~
-~09304~^~305~^9.^3^0.^~1~^^^^^^^^^^^~08/01/1982~
-~09304~^~306~^94.^3^10.^~1~^^^^^^^^^^^~08/01/1982~
-~09304~^~307~^3.^3^0.^~1~^^^^^^^^^^^~08/01/1982~
-~09304~^~318~^33.^3^14.^~1~^^^^^^^^^^^~08/01/1982~
-~09304~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2002~
-~09304~^~320~^2.^0^^~4~^~NC~^^^^^^^^^^~02/01/2007~
-~09304~^~321~^12.^0^^~4~^~BNA~^~09302~^^^^^^^^^~02/01/2003~
-~09304~^~322~^16.^0^^~4~^~BNA~^~09302~^^^^^^^^^~02/01/2003~
-~09304~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~
-~09304~^~334~^0.^0^^~4~^~BNA~^~09302~^^^^^^^^^~02/01/2003~
-~09304~^~337~^0.^0^^~4~^~BFYN~^~09302~^^^^^^^^^~02/01/2003~
-~09304~^~338~^91.^0^^~4~^~BFYN~^~09302~^^^^^^^^^~02/01/2003~
-~09304~^~417~^11.^3^0.^~1~^^^^^^^^^^^~08/01/1982~
-~09304~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~
-~09304~^~432~^11.^3^0.^~1~^^^^^^^^^^^~02/01/2007~
-~09304~^~435~^11.^0^^~4~^~NC~^^^^^^^^^^~02/01/2007~
-~09304~^~601~^0.^0^^~7~^~Z~^^^^^^^^^^~08/01/1982~
-~09306~^~208~^103.^0^^~4~^~NC~^^^^^^^^^^~08/01/1982~
-~09306~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~
-~09306~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~
-~09306~^~268~^431.^0^^~4~^^^^^^^^^^^~02/01/2007~
-~09306~^~301~^15.^3^^~1~^^^^^^^^^^^~08/01/1982~
-~09306~^~304~^13.^1^^~1~^^^^^^^^^^^~08/01/1982~
-~09306~^~305~^17.^2^^~1~^^^^^^^^^^^~08/01/1982~
-~09306~^~306~^114.^1^^~1~^^^^^^^^^^^~08/01/1982~
-~09306~^~307~^1.^1^^~1~^^^^^^^^^^^~08/01/1982~
-~09306~^~318~^60.^3^^~1~^^^^^^^^^^^~08/01/1982~
-~09306~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2002~
-~09306~^~320~^3.^0^^~4~^~NC~^^^^^^^^^^~02/01/2007~
-~09306~^~321~^21.^0^^~4~^~BNA~^~09302~^^^^^^^^^~02/01/2003~
-~09306~^~322~^29.^0^^~4~^~BNA~^~09302~^^^^^^^^^~02/01/2003~
-~09306~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~
-~09306~^~334~^0.^0^^~4~^~BNA~^~09302~^^^^^^^^^~02/01/2003~
-~09306~^~337~^0.^0^^~4~^~RA~^^^^^^^^^^~02/01/2003~
-~09306~^~338~^113.^0^^~4~^~RA~^^^^^^^^^^~02/01/2003~
-~09306~^~417~^26.^1^^~1~^^^^^^^^^^^~08/01/1982~
-~09306~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~
-~09306~^~432~^26.^1^^~1~^^^^^^^^^^^~02/01/2007~
-~09306~^~435~^26.^0^^~4~^~NC~^^^^^^^^^^~02/01/2007~
-~09306~^~601~^0.^0^^~7~^~Z~^^^^^^^^^^~08/01/1982~
-~09307~^~208~^21.^0^^~4~^~NC~^^^^^^^^^^~08/01/1982~
-~09307~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~
-~09307~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~
-~09307~^~268~^88.^0^^~4~^^^^^^^^^^^~02/01/2007~
-~09307~^~301~^86.^9^6.^~1~^^^^^^^^^^^~08/01/1982~
-~09307~^~304~^12.^33^0.^~1~^^^^^^^^^^^~08/01/1982~
-~09307~^~305~^14.^33^1.^~1~^^^^^^^^^^^~08/01/1982~
-~09307~^~306~^288.^17^21.^~1~^^^^^^^^^^^~08/01/1982~
-~09307~^~307~^4.^17^1.^~1~^^^^^^^^^^^~08/01/1982~
-~09307~^~318~^102.^1^^~1~^~A~^^^^^^^^^^~02/01/2003~
-~09307~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2002~
-~09307~^~320~^5.^1^^~1~^~A~^^^^^^^^^^~02/01/2003~
-~09307~^~321~^61.^1^^~1~^~A~^^^^^^^^^^~02/01/2003~
-~09307~^~322~^0.^1^^~1~^~A~^^^^^^^^^^~02/01/2003~
-~09307~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~
-~09307~^~334~^0.^1^^~1~^~A~^^^^^^^^^^~02/01/2003~
-~09307~^~337~^0.^1^^~1~^~A~^^^^^^^^^^~02/01/2003~
-~09307~^~338~^170.^1^^~1~^~A~^^^^^^^^^^~02/01/2003~
-~09307~^~417~^7.^4^0.^~1~^^^^^^^^^^^~08/01/1982~
-~09307~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~
-~09307~^~432~^7.^4^0.^~1~^^^^^^^^^^^~02/01/2007~
-~09307~^~435~^7.^0^^~4~^~NC~^^^^^^^^^^~02/01/2007~
-~09307~^~601~^0.^0^^~7~^~Z~^^^^^^^^^^~08/01/1982~
-~09309~^~208~^21.^0^^~4~^~NC~^^^^^^^^^^~08/01/1982~
-~09309~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~
-~09309~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~
-~09309~^~268~^88.^0^^~4~^^^^^^^^^^^~02/01/2007~
-~09309~^~301~^194.^3^16.^~1~^^^^^^^^^^^~08/01/1982~
-~09309~^~304~^18.^3^1.^~1~^^^^^^^^^^^~08/01/1982~
-~09309~^~305~^12.^3^1.^~1~^^^^^^^^^^^~08/01/1982~
-~09309~^~306~^108.^3^10.^~1~^^^^^^^^^^^~08/01/1982~
-~09309~^~307~^2.^3^0.^~1~^^^^^^^^^^^~08/01/1982~
-~09309~^~318~^107.^3^7.^~1~^^^^^^^^^^^~08/01/1982~
-~09309~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2002~
-~09309~^~320~^5.^3^0.^~1~^^^^^^^^^^^~02/01/2007~
-~09309~^~321~^64.^0^^~4~^~BNA~^~09307~^^^^^^^^^~02/01/2003~
-~09309~^~322~^0.^0^^~4~^~BNA~^~09307~^^^^^^^^^~02/01/2003~
-~09309~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~
-~09309~^~334~^0.^0^^~4~^~BNA~^~09307~^^^^^^^^^~02/01/2003~
-~09309~^~337~^0.^0^^~4~^~BFZN~^~09307~^^^^^^^^^~02/01/2003~
-~09309~^~338~^170.^0^^~4~^~BFZN~^~09307~^^^^^^^^^~02/01/2003~
-~09309~^~417~^8.^3^0.^~1~^^^^^^^^^^^~08/01/1982~
-~09309~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~
-~09309~^~432~^8.^3^0.^~1~^^^^^^^^^^^~02/01/2007~
-~09309~^~435~^8.^0^^~4~^~NC~^^^^^^^^^^~02/01/2007~
-~09309~^~601~^0.^0^^~7~^~Z~^^^^^^^^^^~08/01/1982~
-~09310~^~208~^116.^0^^~4~^~NC~^^^^^^^^^^~02/01/2007~
-~09310~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~
-~09310~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~
-~09310~^~268~^485.^0^^~4~^^^^^^^^^^^~02/01/2007~
-~09310~^~301~^145.^3^5.^~1~^^^^^^^^^^^~08/01/1982~
-~09310~^~304~^12.^3^0.^~1~^^^^^^^^^^^~08/01/1982~
-~09310~^~305~^8.^3^0.^~1~^^^^^^^^^^^~08/01/1982~
-~09310~^~306~^96.^3^3.^~1~^^^^^^^^^^^~08/01/1982~
-~09310~^~307~^1.^3^0.^~1~^^^^^^^^^^^~08/01/1982~
-~09310~^~318~^73.^0^^~4~^~NC~^^^^^^^^^^~02/01/2007~
-~09310~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2002~
-~09310~^~320~^4.^0^^~4~^~NC~^^^^^^^^^^~02/01/2007~
-~09310~^~321~^44.^0^^~4~^~FLA~^^^^^^^^^^~02/01/2003~
-~09310~^~322~^0.^0^^~4~^~FLA~^^^^^^^^^^~02/01/2003~
-~09310~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~
-~09310~^~334~^0.^0^^~4~^~FLA~^^^^^^^^^^~02/01/2003~
-~09310~^~337~^0.^0^^~4~^~FLA~^^^^^^^^^^~02/01/2003~
-~09310~^~338~^123.^0^^~4~^~FLA~^^^^^^^^^^~02/01/2003~
-~09310~^~417~^5.^3^1.^~1~^^^^^^^^^^^~08/01/1982~
-~09310~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~
-~09310~^~432~^5.^3^1.^~1~^^^^^^^^^^^~02/01/2007~
-~09310~^~435~^5.^0^^~4~^~NC~^^^^^^^^^^~02/01/2007~
-~09310~^~601~^0.^0^^~7~^~Z~^^^^^^^^^^~08/01/1982~
-~09311~^~208~^49.^0^^~4~^~NC~^^^^^^^^^^~08/01/1982~
-~09311~^~268~^205.^0^^~4~^^^^^^^^^^^
-~09311~^~301~^215.^1^^~1~^^^^^^^^^^^~08/01/1982~
-~09311~^~304~^51.^1^^~1~^^^^^^^^^^^~08/01/1982~
-~09311~^~305~^37.^1^^~1~^^^^^^^^^^^~08/01/1982~
-~09311~^~306~^208.^1^^~1~^^^^^^^^^^^~08/01/1982~
-~09311~^~307~^6.^1^^~1~^^^^^^^^^^^~08/01/1982~
-~09311~^~318~^287.^0^^~1~^^^^^^^^^^^~08/01/1982~
-~09311~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2002~
-~09311~^~320~^14.^0^^~1~^^^^^^^^^^^~06/01/2002~
-~09311~^~601~^0.^0^^~7~^~Z~^^^^^^^^^^~08/01/1982~
-~09312~^~208~^25.^0^^~4~^~NC~^^^^^^^^^^~08/01/1982~
-~09312~^~268~^105.^0^^~4~^^^^^^^^^^^
-~09312~^~301~^29.^1^^~1~^^^^^^^^^^^~08/01/1982~
-~09312~^~304~^5.^1^^~1~^^^^^^^^^^^~08/01/1982~
-~09312~^~305~^8.^1^^~1~^^^^^^^^^^^~08/01/1982~
-~09312~^~306~^123.^1^^~1~^^^^^^^^^^^~08/01/1982~
-~09312~^~307~^0.^1^^~1~^^^^^^^^^^^~08/01/1982~
-~09312~^~318~^339.^3^214.^~1~^^^^^^^^^^^~08/01/1982~
-~09312~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2002~
-~09312~^~320~^17.^3^10.^~1~^^^^^^^^^^^~06/01/2002~
-~09312~^~601~^0.^0^^~7~^~Z~^^^^^^^^^^~08/01/1982~
-~09313~^~208~^83.^0^^~4~^~NC~^^^^^^^^^^~08/01/1982~
-~09313~^~268~^347.^0^^~4~^^^^^^^^^^^
-~09313~^~301~^21.^0^^~1~^^^^^^^^^^^~08/01/1982~
-~09313~^~304~^12.^0^^~4~^^^^^^^^^^^~09/01/1986~
-~09313~^~305~^12.^0^^~1~^^^^^^^^^^^~08/01/1982~
-~09313~^~306~^193.^0^^~1~^^^^^^^^^^^~08/01/1982~
-~09313~^~307~^12.^0^^~1~^^^^^^^^^^^~08/01/1982~
-~09313~^~318~^60.^0^^~1~^^^^^^^^^^^~08/01/1982~
-~09313~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2002~
-~09313~^~320~^3.^0^^~1~^^^^^^^^^^^~06/01/2002~
-~09313~^~417~^14.^0^^~4~^^^^^^^^^^^~09/01/1986~
-~09313~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~
-~09313~^~432~^14.^0^^~4~^^^^^^^^^^^~09/01/1986~
-~09313~^~435~^14.^0^^~4~^~NC~^^^^^^^^^^~01/01/2001~
-~09313~^~601~^0.^0^^~7~^~Z~^^^^^^^^^^~08/01/1982~
-~09314~^~208~^124.^0^^~4~^~NC~^^^^^^^^^^~08/01/2010~
-~09314~^~268~^520.^0^^~4~^~NC~^^^^^^^^^^~08/01/2010~
-~09314~^~301~^18.^19^4.^~1~^~A~^^^3^5.^30.^2^-1.^37.^~2~^~08/01/2010~
-~09314~^~304~^11.^19^0.^~1~^~A~^^^3^8.^13.^2^8.^13.^~2~^~08/01/2010~
-~09314~^~305~^26.^19^5.^~1~^~A~^^^3^12.^41.^2^3.^47.^~2~^~08/01/2010~
-~09314~^~306~^454.^19^48.^~1~^~A~^^^3^263.^564.^2^242.^664.^~2~^~08/01/2010~
-~09314~^~307~^7.^5^1.^~1~^~A~^^^2^5.^10.^1^-15.^30.^~2~^~08/01/2010~
-~09314~^~318~^143.^5^1.^~1~^~A~^^^2^41.^346.^1^129.^156.^~2~^~08/01/2010~
-~09314~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2002~
-~09314~^~320~^7.^5^0.^~1~^~A~^^^2^2.^17.^1^6.^7.^~2~^~08/01/2010~
-~09314~^~321~^82.^5^3.^~1~^~A~^^^2^17.^202.^1^43.^120.^~2~^~08/01/2010~
-~09314~^~322~^0.^5^0.^~1~^~A~^^^2^0.^0.^^^^~1, 2~^~08/01/2010~
-~09314~^~334~^7.^5^7.^~1~^~A~^^^2^0.^18.^1^-86.^101.^~2~^~08/01/2010~
-~09314~^~337~^199.^3^66.^~1~^~A~^^^1^68.^289.^2^-89.^486.^~4~^~08/01/2010~
-~09314~^~338~^204.^3^54.^~1~^~A~^^^1^113.^302.^2^-32.^440.^~4~^~08/01/2010~
-~09314~^~417~^7.^4^1.^~1~^~A~^^^2^3.^10.^1^-9.^23.^~2~^~08/01/2010~
-~09314~^~432~^7.^4^1.^~1~^~A~^^^2^3.^10.^1^-9.^23.^^~08/01/2010~
-~09314~^~601~^0.^0^^~7~^~Z~^^^^^^^^^^~08/01/1982~
-~09315~^~208~^66.^0^^~4~^~NC~^^^^^^^^^^~08/01/1982~
-~09315~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~
-~09315~^~263~^0.^0^^~4~^~NR~^^^^^^^^^^~02/01/2003~
-~09315~^~268~^276.^0^^~4~^^^^^^^^^^^~02/01/2007~
-~09315~^~301~^14.^0^^~1~^^^^^^^^^^^~08/01/1982~
-~09315~^~304~^21.^1^^~1~^^^^^^^^^^^~08/01/1982~
-~09315~^~305~^27.^0^^~1~^^^^^^^^^^^~08/01/1982~
-~09315~^~306~^278.^3^12.^~1~^^^^^^^^^^^~08/01/1982~
-~09315~^~307~^14.^3^5.^~1~^^^^^^^^^^^~08/01/1982~
-~09315~^~318~^2.^6^1.^~1~^^^^^^^^^^^~08/01/1982~
-~09315~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2002~
-~09315~^~320~^0.^6^0.^~1~^^^^^^^^^^^~02/01/2007~
-~09315~^~321~^1.^0^^~4~^~NR~^^^^^^^^^^~02/01/2003~
-~09315~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~
-~09315~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~
-~09315~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~
-~09315~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~
-~09315~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~
-~09315~^~417~^14.^0^^~4~^^^^^^^^^^^~04/01/1985~
-~09315~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~
-~09315~^~432~^14.^0^^~4~^^^^^^^^^^^~02/01/2007~
-~09315~^~435~^14.^0^^~4~^~NC~^^^^^^^^^^~02/01/2007~
-~09315~^~601~^0.^0^^~7~^~Z~^^^^^^^^^^~08/01/1982~
-~09316~^~208~^32.^0^^~4~^~NC~^^^^^^^^^^~05/01/2006~
-~09316~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2003~
-~09316~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2003~
-~09316~^~268~^136.^0^^~4~^~NC~^^^^^^^^^^~05/01/2006~
-~09316~^~301~^16.^73^0.^~1~^~A~^^^22^8.^24.^21^14.^16.^~2~^~05/01/2006~
-~09316~^~304~^13.^74^0.^~1~^~A~^^^21^8.^18.^20^12.^13.^~2~^~04/01/2003~
-~09316~^~305~^24.^73^0.^~1~^~A~^^^21^9.^39.^20^22.^25.^~2~^~04/01/2003~
-~09316~^~306~^153.^76^4.^~1~^~A~^^^22^77.^207.^21^144.^161.^~2~^~05/01/2003~
-~09316~^~307~^1.^72^0.^~1~^~A~^^^21^0.^2.^20^0.^1.^~1, 2~^~05/01/2003~
-~09316~^~318~^12.^6^0.^~1~^~A~^^^2^5.^20.^1^3.^19.^~2~^~05/01/2006~
-~09316~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2002~
-~09316~^~320~^1.^6^0.^~1~^~A~^^^2^0.^1.^1^0.^0.^~2~^~05/01/2006~
-~09316~^~321~^7.^8^0.^~1~^~A~^^^3^3.^12.^2^6.^8.^~1, 2~^~02/01/2003~
-~09316~^~322~^0.^6^0.^~1~^~A~^^^2^0.^0.^^^^~1, 2, 3~^~02/01/2003~
-~09316~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~
-~09316~^~334~^0.^6^0.^~1~^~A~^^^2^0.^0.^^^^~1, 2, 3~^~02/01/2003~
-~09316~^~337~^0.^6^0.^~1~^~A~^^^2^0.^0.^^^^~1, 2, 3~^~02/01/2003~
-~09316~^~338~^26.^6^8.^~1~^~A~^^^2^5.^53.^3^0.^52.^~2, 3~^~02/01/2003~
-~09316~^~417~^24.^3^5.^~1~^~A~^^^2^19.^30.^1^-44.^93.^~2~^~04/01/2003~
-~09316~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~
-~09316~^~432~^24.^3^5.^~1~^~A~^^^2^19.^30.^1^-44.^93.^^~05/01/2006~
-~09316~^~435~^24.^0^^~4~^~NC~^^^^^^^^^^~05/01/2006~
-~09316~^~601~^0.^0^^~7~^~Z~^^^^^^^^^^~08/01/1982~
-~09316~^~636~^12.^0^^~1~^^^^^^^^^^^~08/01/1982~
-~09317~^~208~^92.^0^^~4~^~NC~^^^^^^^^^^~08/01/1982~
-~09317~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~
-~09317~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~
-~09317~^~268~^385.^0^^~4~^^^^^^^^^^^~02/01/2007~
-~09317~^~301~^13.^3^3.^~1~^^^^^^^^^^^~08/01/1982~
-~09317~^~304~^8.^3^0.^~1~^^^^^^^^^^^~08/01/1982~
-~09317~^~305~^12.^3^0.^~1~^^^^^^^^^^^~08/01/1982~
-~09317~^~306~^86.^3^4.^~1~^^^^^^^^^^^~08/01/1982~
-~09317~^~307~^4.^3^0.^~1~^^^^^^^^^^^~08/01/1982~
-~09317~^~318~^26.^3^5.^~1~^^^^^^^^^^^~08/01/1982~
-~09317~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2002~
-~09317~^~320~^1.^3^0.^~1~^^^^^^^^^^^~02/01/2007~
-~09317~^~321~^16.^0^^~4~^~BNA~^~09316~^^^^^^^^^~02/01/2003~
-~09317~^~322~^0.^0^^~4~^~BNA~^~09316~^^^^^^^^^~02/01/2003~
-~09317~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~
-~09317~^~334~^0.^0^^~4~^~BNA~^~09316~^^^^^^^^^~02/01/2003~
-~09317~^~337~^0.^0^^~4~^~BFYN~^~09316~^^^^^^^^^~02/01/2003~
-~09317~^~338~^18.^0^^~4~^~BFYN~^~09316~^^^^^^^^^~02/01/2003~
-~09317~^~417~^28.^3^8.^~1~^^^^^^^^^^^~08/01/1982~
-~09317~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~
-~09317~^~432~^28.^3^8.^~1~^^^^^^^^^^^~02/01/2007~
-~09317~^~435~^28.^0^^~4~^~NC~^^^^^^^^^^~02/01/2007~
-~09317~^~601~^0.^0^^~7~^~Z~^^^^^^^^^^~08/01/1982~
-~09318~^~208~^35.^0^^~4~^~NC~^^^^^^^^^^~08/01/1982~
-~09318~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~
-~09318~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~
-~09318~^~268~^146.^0^^~4~^^^^^^^^^^^~02/01/2007~
-~09318~^~301~^16.^6^0.^~1~^^^^^^^^^^^~08/01/1982~
-~09318~^~304~^11.^1^^~1~^^^^^^^^^^^~08/01/1982~
-~09318~^~305~^13.^7^1.^~1~^^^^^^^^^^^~08/01/1982~
-~09318~^~306~^148.^6^9.^~1~^^^^^^^^^^^~08/01/1982~
-~09318~^~307~^2.^1^^~1~^^^^^^^^^^^~08/01/1982~
-~09318~^~318~^45.^5^10.^~1~^^^^^^^^^^^~02/01/2003~
-~09318~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2002~
-~09318~^~320~^2.^5^0.^~1~^^^^^^^^^^^~02/01/2007~
-~09318~^~321~^27.^0^^~4~^~BNA~^~09316~^^^^^^^^^~02/01/2003~
-~09318~^~322~^0.^0^^~4~^~BNA~^~09316~^^^^^^^^^~02/01/2003~
-~09318~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~
-~09318~^~334~^0.^0^^~4~^~BNA~^~09316~^^^^^^^^^~02/01/2003~
-~09318~^~337~^0.^0^^~4~^~BFZN~^~09316~^^^^^^^^^~02/01/2003~
-~09318~^~338~^26.^0^^~4~^~BFZN~^~09316~^^^^^^^^^~02/01/2003~
-~09318~^~417~^17.^3^5.^~1~^^^^^^^^^^^~08/01/1982~
-~09318~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~
-~09318~^~432~^17.^3^5.^~1~^^^^^^^^^^^~02/01/2007~
-~09318~^~435~^17.^0^^~4~^~NC~^^^^^^^^^^~02/01/2007~
-~09318~^~601~^0.^0^^~7~^~Z~^^^^^^^^^^~08/01/1982~
-~09320~^~208~^96.^0^^~4~^~NC~^^^^^^^^^^~08/01/1982~
-~09320~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~
-~09320~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~
-~09320~^~268~^402.^0^^~4~^^^^^^^^^^^~02/01/2007~
-~09320~^~301~^11.^18^0.^~1~^^^^^^^^^^^~08/01/1982~
-~09320~^~304~^7.^12^0.^~1~^^^^^^^^^^^~08/01/1982~
-~09320~^~305~^13.^13^0.^~1~^^^^^^^^^^^~08/01/1982~
-~09320~^~306~^98.^10^3.^~1~^^^^^^^^^^^~08/01/1982~
-~09320~^~307~^3.^10^0.^~1~^^^^^^^^^^^~08/01/1982~
-~09320~^~318~^24.^18^2.^~1~^^^^^^^^^^^~04/01/2005~
-~09320~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2002~
-~09320~^~320~^1.^18^0.^~1~^^^^^^^^^^^~02/01/2007~
-~09320~^~321~^14.^0^^~4~^~BNA~^~09316~^^^^^^^^^~02/01/2003~
-~09320~^~322~^0.^0^^~4~^~BNA~^~09316~^^^^^^^^^~02/01/2003~
-~09320~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~
-~09320~^~334~^0.^0^^~4~^~BNA~^~09316~^^^^^^^^^~02/01/2003~
-~09320~^~337~^0.^0^^~4~^~FLA~^^^^^^^^^^~02/01/2003~
-~09320~^~338~^21.^0^^~4~^~FLA~^^^^^^^^^^~02/01/2003~
-~09320~^~417~^15.^2^^~1~^^^^^^^^^^^~08/01/1982~
-~09320~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~
-~09320~^~432~^15.^2^^~1~^^^^^^^^^^^~02/01/2007~
-~09320~^~435~^15.^0^^~4~^~NC~^^^^^^^^^^~02/01/2007~
-~09320~^~601~^0.^0^^~7~^~Z~^^^^^^^^^^~08/01/1982~
-~09321~^~208~^94.^0^^~4~^~NC~^^^^^^^^^^~08/01/1982~
-~09321~^~268~^393.^0^^~4~^^^^^^^^^^^
-~09321~^~301~^24.^10^3.^~1~^^^^^^^^^^^~08/01/1982~
-~09321~^~304~^21.^1^^~1~^^^^^^^^^^^~08/01/1982~
-~09321~^~305~^32.^8^5.^~1~^^^^^^^^^^^~08/01/1982~
-~09321~^~306~^247.^5^28.^~1~^^^^^^^^^^^~08/01/1982~
-~09321~^~307~^9.^5^3.^~1~^^^^^^^^^^^~08/01/1982~
-~09321~^~318~^6.^9^2.^~1~^^^^^^^^^^^~08/01/1982~
-~09321~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2002~
-~09321~^~320~^0.^9^0.^~1~^^^^^^^^^^^~06/01/2002~
-~09321~^~417~^14.^0^^~4~^^^^^^^^^^^~04/01/1985~
-~09321~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~
-~09321~^~432~^14.^0^^~4~^^^^^^^^^^^~04/01/1985~
-~09321~^~435~^14.^0^^~4~^~NC~^^^^^^^^^^~01/01/2001~
-~09321~^~601~^0.^0^^~7~^~Z~^^^^^^^^^^~08/01/1982~
-~09322~^~208~^239.^0^^~4~^~NC~^^^^^^^^^^~08/01/1982~
-~09322~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~
-~09322~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~
-~09322~^~268~^1000.^0^^~4~^^^^^^^^^^^~02/01/2007~
-~09322~^~301~^74.^0^^~1~^^^^^^^^^^^~08/01/1982~
-~09322~^~304~^92.^1^^~1~^^^^^^^^^^^~08/01/1982~
-~09322~^~305~^113.^0^^~1~^^^^^^^^^^^~08/01/1982~
-~09322~^~306~^628.^3^106.^~1~^^^^^^^^^^^~08/01/1982~
-~09322~^~307~^28.^3^17.^~1~^^^^^^^^^^^~08/01/1982~
-~09322~^~318~^30.^0^^~1~^^^^^^^^^^^~08/01/1982~
-~09322~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2002~
-~09322~^~320~^2.^0^^~4~^~NC~^^^^^^^^^^~06/01/2014~
-~09322~^~321~^18.^0^^~4~^~NR~^^^^^^^^^^~02/01/2003~
-~09322~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~
-~09322~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~
-~09322~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~
-~09322~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~
-~09322~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~
-~09322~^~417~^14.^0^^~4~^^^^^^^^^^^~04/01/1985~
-~09322~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~
-~09322~^~432~^14.^0^^~4~^^^^^^^^^^^~02/01/2007~
-~09322~^~435~^14.^0^^~4~^~NC~^^^^^^^^^^~02/01/2007~
-~09322~^~601~^0.^0^^~7~^~Z~^^^^^^^^^^~08/01/1982~
-~09325~^~208~^86.^0^^~4~^~NC~^^^^^^^^^^~08/01/1982~
-~09325~^~268~^360.^0^^~4~^^^^^^^^^^^
-~09325~^~301~^13.^26^0.^~1~^^^^^^^^^^^~08/01/1982~
-~09325~^~304~^13.^26^0.^~1~^^^^^^^^^^^~08/01/1982~
-~09325~^~305~^7.^26^0.^~1~^^^^^^^^^^^~08/01/1982~
-~09325~^~306~^131.^26^2.^~1~^^^^^^^^^^^~08/01/1982~
-~09325~^~307~^2.^26^0.^~1~^^^^^^^^^^^~08/01/1982~
-~09325~^~318~^127.^40^10.^~1~^^^^^^^^^^^~08/01/1982~
-~09325~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2002~
-~09325~^~320~^6.^40^0.^~1~^^^^^^^^^^^~06/01/2002~
-~09325~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~
-~09325~^~417~^9.^0^^~4~^^^^^^^^^^^~04/01/1985~
-~09325~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~
-~09325~^~432~^9.^0^^~4~^^^^^^^^^^^~04/01/1985~
-~09325~^~435~^9.^0^^~4~^~NC~^^^^^^^^^^~01/01/2001~
-~09325~^~601~^0.^0^^~7~^~Z~^^^^^^^^^^~08/01/1982~
-~09326~^~208~^30.^0^^~4~^~NC~^^^^^^^^^^~04/01/2006~
-~09326~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~11/01/2000~
-~09326~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~11/01/2000~
-~09326~^~268~^127.^0^^~4~^~NC~^^^^^^^^^^~04/01/2006~
-~09326~^~301~^7.^42^0.^~1~^~A~^^^13^4.^14.^12^6.^7.^~2~^~03/01/2003~
-~09326~^~304~^10.^45^0.^~1~^~A~^^^14^5.^12.^13^9.^10.^~2~^~03/01/2003~
-~09326~^~305~^11.^42^0.^~1~^~A~^^^13^5.^19.^12^10.^12.^~2~^~03/01/2003~
-~09326~^~306~^112.^44^3.^~1~^~A~^^^14^58.^191.^13^105.^119.^~2~^~05/01/2003~
-~09326~^~307~^1.^40^0.^~1~^~A~^^^13^0.^5.^12^1.^1.^~1, 2~^~05/01/2003~
-~09326~^~318~^569.^0^^~1~^~AS~^^^^^^^^^^~03/01/2003~
-~09326~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2002~
-~09326~^~320~^28.^0^^~1~^~AS~^^^^^^^^^^~03/01/2003~
-~09326~^~321~^303.^14^8.^~1~^~A~^^^5^184.^476.^4^278.^326.^~2~^~03/01/2003~
-~09326~^~322~^0.^9^0.^~1~^~A~^^^3^0.^0.^^^^~1, 2~^~03/01/2003~
-~09326~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~
-~09326~^~334~^78.^10^77.^~1~^~A~^^^4^0.^310.^3^-169.^324.^~1, 2~^~03/01/2003~
-~09326~^~337~^4532.^150^386.^~1~^~A~^^^4^3040.^5590.^3^3300.^5763.^~2~^~03/01/2003~
-~09326~^~338~^8.^9^4.^~1~^~A~^^^3^0.^17.^2^-12.^29.^~1, 2~^~03/01/2003~
-~09326~^~417~^3.^3^0.^~1~^~A~^^^1^2.^3.^2^1.^3.^~2, 3~^~03/01/2003~
-~09326~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~
-~09326~^~432~^3.^3^0.^~1~^~A~^^^1^2.^3.^2^1.^3.^^~04/01/2006~
-~09326~^~435~^3.^0^^~4~^~NC~^^^^^^^^^^~04/01/2006~
-~09326~^~601~^0.^0^^~7~^~Z~^^^^^^^^^^~08/01/1982~
-~09326~^~636~^2.^0^^~1~^^^^^^^^^^^~08/01/1982~
-~09328~^~208~^165.^0^^~4~^~NC~^^^^^^^^^^~03/01/2007~
-~09328~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2003~
-~09328~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2003~
-~09328~^~268~^690.^0^^~4~^~NC~^^^^^^^^^^~03/01/2007~
-~09328~^~301~^54.^1^^~1~^~A~^^^^54.^54.^^^^^~03/01/2003~
-~09328~^~304~^4.^1^^~1~^~A~^^^^4.^4.^^^^^~03/01/2003~
-~09328~^~305~^3.^1^^~1~^~A~^^^^3.^3.^^^^^~03/01/2003~
-~09328~^~306~^21.^1^^~1~^~A~^^^^21.^21.^^^^^~03/01/2003~
-~09328~^~307~^4.^1^^~1~^~A~^^^^4.^4.^^^^^~03/01/2003~
-~09328~^~318~^45.^0^^~4~^~RA~^^^^^^^^^^~01/01/2005~
-~09328~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2003~
-~09328~^~320~^2.^0^^~4~^~RA~^^^^^^^^^^~03/01/2003~
-~09328~^~321~^27.^0^^~4~^~RA~^^^^^^^^^^~03/01/2003~
-~09328~^~322~^0.^0^^~4~^~RA~^^^^^^^^^^~03/01/2003~
-~09328~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~
-~09328~^~334~^0.^0^^~4~^~RA~^^^^^^^^^^~03/01/2003~
-~09328~^~337~^0.^0^^~4~^~RA~^^^^^^^^^^~03/01/2003~
-~09328~^~338~^59.^0^^~4~^~RA~^^^^^^^^^^~03/01/2003~
-~09328~^~417~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2003~
-~09328~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2003~
-~09328~^~432~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2003~
-~09328~^~435~^0.^0^^~4~^~NC~^^^^^^^^^^~03/01/2007~
-~09328~^~601~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2003~
-~09334~^~208~^61.^0^^~4~^~NC~^^^^^^^^^^~06/01/2014~
-~09334~^~268~^254.^0^^~4~^~NC~^^^^^^^^^^~06/01/2014~
-~09334~^~301~^17.^5^0.^~1~^~A~^^^2^10.^26.^1^14.^18.^~2~^~07/01/2010~
-~09334~^~304~^9.^5^0.^~1~^~A~^^^2^8.^10.^1^9.^9.^~2~^~07/01/2010~
-~09334~^~305~^19.^5^1.^~1~^~A~^^^2^16.^21.^1^4.^32.^~2~^~07/01/2010~
-~09334~^~306~^172.^5^16.^~1~^~A~^^^2^150.^193.^1^-39.^383.^~2~^~07/01/2010~
-~09334~^~307~^3.^5^0.^~1~^~A~^^^2^2.^4.^1^0.^5.^~1, 2~^~07/01/2010~
-~09334~^~318~^6.^3^5.^~1~^~A~^^^2^0.^11.^1^-66.^77.^~2~^~07/01/2010~
-~09334~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2002~
-~09334~^~320~^0.^3^0.^~1~^~A~^^^2^0.^1.^1^-3.^3.^~2~^~07/01/2010~
-~09334~^~321~^2.^3^1.^~1~^~A~^^^2^0.^4.^1^-21.^25.^~2~^~07/01/2010~
-~09334~^~322~^0.^3^0.^~1~^~A~^^^2^0.^0.^1^-2.^2.^~2~^~07/01/2010~
-~09334~^~334~^3.^3^2.^~1~^~A~^^^2^0.^6.^1^-34.^39.^~2~^~07/01/2010~
-~09334~^~337~^5.^1^^~1~^~A~^^^^^^^^^^~07/01/2010~
-~09334~^~338~^27.^1^^~1~^~A~^^^^^^^^^^~07/01/2010~
-~09334~^~417~^23.^5^15.^~1~^~A~^^^2^4.^43.^1^-175.^221.^~1, 2~^~07/01/2010~
-~09334~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~
-~09334~^~432~^23.^5^15.^~1~^~A~^^^2^4.^43.^1^-175.^221.^^~07/01/2010~
-~09334~^~435~^23.^0^^~4~^~NC~^^^^^^^^^^~07/01/2010~
-~09334~^~601~^0.^0^^~7~^~Z~^^^^^^^^^^~08/01/1982~
-~09340~^~208~^42.^0^^~4~^~NC~^^^^^^^^^^~08/01/1982~
-~09340~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~
-~09340~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~
-~09340~^~268~^176.^0^^~4~^^^^^^^^^^^~01/01/2007~
-~09340~^~301~^4.^2^^~1~^^^^^^^^^^^~08/01/1982~
-~09340~^~304~^8.^2^^~1~^^^^^^^^^^^~08/01/1982~
-~09340~^~305~^11.^2^^~1~^^^^^^^^^^^~08/01/1982~
-~09340~^~306~^121.^2^^~1~^^^^^^^^^^^~08/01/1982~
-~09340~^~307~^0.^2^^~1~^^^^^^^^^^^~08/01/1982~
-~09340~^~318~^0.^2^^~1~^^^^^^^^^^^~08/01/1982~
-~09340~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2002~
-~09340~^~320~^0.^0^^~1~^~AS~^^^^^^^^^^~01/01/2007~
-~09340~^~321~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~
-~09340~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~
-~09340~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~
-~09340~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~
-~09340~^~337~^0.^0^^~4~^~BFZN~^~09252~^^^^^^^^^~02/01/2003~
-~09340~^~338~^50.^0^^~4~^~BFZN~^~09252~^^^^^^^^^~02/01/2003~
-~09340~^~417~^8.^2^^~1~^^^^^^^^^^^~08/01/1982~
-~09340~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~
-~09340~^~432~^8.^2^^~1~^^^^^^^^^^^~01/01/2007~
-~09340~^~435~^8.^0^^~4~^~NC~^^^^^^^^^^~01/01/2007~
-~09340~^~601~^0.^0^^~7~^~Z~^^^^^^^^^^~08/01/1982~
-~09351~^~208~^70.^0^^~4~^~NC~^^^^^^^^^^~03/01/2007~
-~09351~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2003~
-~09351~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2003~
-~09351~^~268~^293.^0^^~4~^~NC~^^^^^^^^^^~03/01/2007~
-~09351~^~301~^7.^0^^~4~^~BD~^~09100~^^^^^^^^^~01/01/2003~
-~09351~^~304~^5.^0^^~4~^~BD~^~09100~^^^^^^^^^~01/01/2003~
-~09351~^~305~^12.^0^^~4~^~BD~^~09100~^^^^^^^^^~01/01/2003~
-~09351~^~306~^90.^0^^~4~^~BD~^~09100~^^^^^^^^^~01/01/2003~
-~09351~^~307~^6.^0^^~4~^~BD~^~09100~^^^^^^^^^~01/01/2003~
-~09351~^~318~^273.^3^^~1~^~A~^^^^^^^^^^~01/01/2003~
-~09351~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2003~
-~09351~^~320~^14.^3^^~1~^~A~^^^^^^^^^^~01/01/2003~
-~09351~^~321~^138.^3^^~1~^~A~^^^^^^^^^^~01/01/2003~
-~09351~^~322~^0.^3^^~1~^~A~^^^^^^^^^^~01/01/2003~
-~09351~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~
-~09351~^~334~^52.^3^^~1~^~A~^^^^^^^^^^~01/01/2003~
-~09351~^~337~^0.^3^^~1~^~A~^^^^^^^^^^~01/01/2003~
-~09351~^~338~^112.^3^^~1~^~A~^^^^^^^^^^~01/01/2003~
-~09351~^~417~^3.^0^^~4~^~BD~^~09100~^^^^^^^^^~01/01/2003~
-~09351~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2003~
-~09351~^~432~^3.^0^^~4~^~BD~^^^^^^^^^^~03/01/2007~
-~09351~^~435~^3.^0^^~4~^~NC~^^^^^^^^^^~03/01/2007~
-~09351~^~601~^0.^0^^~7~^^^^^^^^^^^~03/01/2007~
-~09352~^~208~^88.^0^^~4~^~NC~^^^^^^^^^^~04/01/2009~
-~09352~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2009~
-~09352~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2009~
-~09352~^~268~^370.^0^^~4~^~NC~^^^^^^^^^^~04/01/2009~
-~09352~^~301~^6.^3^0.^~1~^~A~^^^1^5.^7.^2^3.^9.^~2, 3~^~04/01/2008~
-~09352~^~304~^4.^3^0.^~1~^~A~^^^1^3.^5.^2^2.^5.^~2, 3~^~04/01/2008~
-~09352~^~305~^12.^3^1.^~1~^~A~^^^1^10.^13.^2^7.^16.^~2, 3~^~04/01/2008~
-~09352~^~306~^54.^3^5.^~1~^~A~^^^1^43.^61.^2^30.^77.^~2, 3~^~04/01/2008~
-~09352~^~307~^3.^3^0.^~1~^~A~^^^1^2.^3.^2^1.^3.^~2, 3~^~04/01/2008~
-~09352~^~318~^36.^0^^~4~^~NC~^^^^^^^^^^~04/01/2009~
-~09352~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2009~
-~09352~^~320~^2.^0^^~4~^~NC~^^^^^^^^^^~04/01/2009~
-~09352~^~321~^22.^0^^~4~^~BFZN~^~09052~^^^^^^^^^~04/01/2009~
-~09352~^~322~^0.^3^0.^~1~^~A~^^^1^0.^0.^^^^~1, 2, 3~^~04/01/2009~
-~09352~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2009~
-~09352~^~334~^0.^3^0.^~1~^~A~^^^1^0.^0.^^^^~1, 2, 3~^~04/01/2009~
-~09352~^~337~^0.^3^0.^~1~^~A~^^^1^0.^0.^^^^~1, 2, 3~^~04/01/2009~
-~09352~^~338~^53.^0^^~4~^~BFZN~^~09052~^^^^^^^^^~04/01/2009~
-~09352~^~417~^2.^0^^~4~^~BFZN~^~09052~^^^^^^^^^~04/01/2009~
-~09352~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2009~
-~09352~^~432~^2.^0^^~4~^~BFZN~^~09052~^^^^^^^^^~04/01/2009~
-~09352~^~435~^2.^0^^~4~^~NC~^^^^^^^^^^~04/01/2009~
-~09352~^~601~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2009~
-~09353~^~208~^107.^0^^~4~^~NC~^^^^^^^^^^~04/01/2008~
-~09353~^~268~^446.^0^^~4~^~NC~^^^^^^^^^^~04/01/2008~
-~09353~^~301~^19.^1^^~1~^~A~^^^^^^^^^^~10/01/2006~
-~09353~^~304~^6.^1^^~1~^~A~^^^^^^^^^^~10/01/2006~
-~09353~^~305~^14.^1^^~1~^~A~^^^^^^^^^^~10/01/2006~
-~09353~^~306~^46.^1^^~1~^~A~^^^^^^^^^^~10/01/2006~
-~09353~^~307~^1.^1^^~1~^~A~^^^^^^^^^~1~^~10/01/2006~
-~09353~^~417~^8.^1^^~1~^~A~^^^^^^^^^^~10/01/2006~
-~09353~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2008~
-~09353~^~432~^8.^1^^~1~^~A~^^^^^^^^^^~10/01/2006~
-~09353~^~435~^8.^0^^~4~^~NC~^^^^^^^^^^~04/01/2008~
-~09354~^~208~^60.^0^^~4~^~NC~^^^^^^^^^^~02/01/2007~
-~09354~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2003~
-~09354~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2003~
-~09354~^~268~^252.^0^^~4~^~NC~^^^^^^^^^^~02/01/2007~
-~09354~^~301~^16.^0^^~4~^~BD~^~09268~^^^^^^^^^~01/01/2003~
-~09354~^~304~^15.^0^^~4~^~BD~^~09268~^^^^^^^^^~01/01/2003~
-~09354~^~305~^7.^0^^~4~^~BD~^~09268~^^^^^^^^^~01/01/2003~
-~09354~^~306~^124.^0^^~4~^~BD~^~09268~^^^^^^^^^~01/01/2003~
-~09354~^~307~^1.^0^^~4~^~BD~^~09268~^^^^^^^^^~01/01/2003~
-~09354~^~318~^50.^0^^~4~^~NC~^~09268~^^^^^^^^^~02/01/2007~
-~09354~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2003~
-~09354~^~320~^3.^0^^~4~^~NC~^^^^^^^^^^~02/01/2007~
-~09354~^~321~^30.^1^^~1~^~A~^^^^^^^^^^~01/01/2003~
-~09354~^~322~^0.^0^^~4~^~BFZN~^~09266~^^^^^^^^^~01/01/2003~
-~09354~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~
-~09354~^~334~^0.^0^^~4~^~BFZN~^~09266~^^^^^^^^^~01/01/2003~
-~09354~^~337~^0.^0^^~4~^~BFZN~^~09266~^^^^^^^^^~01/01/2003~
-~09354~^~338~^0.^0^^~4~^~BFZN~^~09266~^^^^^^^^^~01/01/2003~
-~09354~^~417~^5.^0^^~4~^~BD~^~09268~^^^^^^^^^~01/01/2003~
-~09354~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2003~
-~09354~^~432~^5.^0^^~4~^~BD~^^^^^^^^^^~02/01/2007~
-~09354~^~435~^5.^0^^~4~^~NC~^^^^^^^^^^~02/01/2007~
-~09354~^~601~^0.^0^^~7~^^^^^^^^^^^~02/01/2007~
-~09357~^~208~^83.^0^^~4~^~NC~^^^^^^^^^^~01/01/2007~
-~09357~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2003~
-~09357~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2003~
-~09357~^~268~^347.^0^^~4~^~NC~^^^^^^^^^^~01/01/2007~
-~09357~^~301~^10.^0^^~4~^~BD~^~09027~^^^^^^^^^~01/01/2003~
-~09357~^~304~^7.^0^^~4~^~BD~^~09027~^^^^^^^^^~01/01/2003~
-~09357~^~305~^13.^0^^~4~^~BD~^~09027~^^^^^^^^^~01/01/2003~
-~09357~^~306~^143.^0^^~4~^~BD~^~09027~^^^^^^^^^~01/01/2003~
-~09357~^~307~^4.^0^^~4~^~BD~^~09027~^^^^^^^^^~01/01/2003~
-~09357~^~318~^2924.^0^^~1~^~AS~^^^^^^^^^^~01/01/2007~
-~09357~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2003~
-~09357~^~320~^146.^0^^~1~^~AS~^^^^^^^^^^~01/01/2007~
-~09357~^~321~^1746.^8^513.^~1~^~A~^^^5^560.^3370.^4^320.^3172.^~2~^~01/01/2003~
-~09357~^~322~^0.^2^^~1~^~A~^^^2^0.^0.^^^^^~01/01/2003~
-~09357~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~
-~09357~^~334~^16.^2^^~1~^~A~^^^2^1.^32.^1^^^^~01/01/2003~
-~09357~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2003~
-~09357~^~338~^39.^2^^~1~^~A~^^^2^4.^75.^1^^^^~01/01/2003~
-~09357~^~417~^2.^0^^~4~^~BD~^~09027~^^^^^^^^^~01/01/2003~
-~09357~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2003~
-~09357~^~432~^2.^0^^~4~^~BD~^^^^^^^^^^~01/01/2007~
-~09357~^~435~^2.^0^^~4~^~NC~^^^^^^^^^^~01/01/2007~
-~09357~^~601~^0.^0^^~7~^^^^^^^^^^^~01/01/2007~
-~09362~^~208~^42.^0^^~4~^~NC~^^^^^^^^^^~05/01/2008~
-~09362~^~268~^174.^0^^~4~^~NC~^^^^^^^^^^~05/01/2008~
-~09362~^~301~^11.^2^^~1~^~A~^^^1^10.^12.^1^^^^~04/01/2008~
-~09362~^~304~^8.^2^^~1~^~A~^^^1^8.^9.^1^^^^~04/01/2008~
-~09362~^~305~^16.^2^^~1~^~A~^^^1^14.^17.^1^^^^~04/01/2008~
-~09362~^~306~^115.^2^^~1~^~A~^^^1^110.^120.^1^^^^~04/01/2008~
-~09362~^~307~^4.^2^^~1~^~A~^^^1^3.^4.^1^^^^~04/01/2008~
-~09367~^~208~^83.^0^^~4~^~NC~^^^^^^^^^^~06/01/2008~
-~09367~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2003~
-~09367~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2003~
-~09367~^~268~^348.^0^^~4~^~NC~^^^^^^^^^^~06/01/2008~
-~09367~^~301~^10.^0^^~4~^~BD~^~09074~^^^^^^^^^~01/01/2003~
-~09367~^~304~^9.^0^^~4~^~BD~^~09074~^^^^^^^^^~01/01/2003~
-~09367~^~305~^20.^0^^~4~^~BD~^~09074~^^^^^^^^^~01/01/2003~
-~09367~^~306~^148.^0^^~4~^~BD~^~09074~^^^^^^^^^~01/01/2003~
-~09367~^~307~^3.^0^^~4~^~BD~^~09074~^^^^^^^^^~01/01/2003~
-~09367~^~318~^237.^0^^~4~^~BD~^~09074~^^^^^^^^^~01/01/2003~
-~09367~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2003~
-~09367~^~320~^12.^0^^~4~^~NC~^^^^^^^^^^~06/01/2008~
-~09367~^~321~^142.^0^^~4~^~BNA~^~09070~^^^^^^^^^~01/01/2003~
-~09367~^~322~^0.^0^^~4~^~BNA~^~09070~^^^^^^^^^~01/01/2003~
-~09367~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~
-~09367~^~334~^0.^0^^~4~^~BNA~^~09070~^^^^^^^^^~01/01/2003~
-~09367~^~337~^0.^0^^~4~^~BFZN~^~09074~^^^^^^^^^~01/01/2003~
-~09367~^~338~^57.^0^^~4~^~BFZN~^~09074~^^^^^^^^^~01/01/2003~
-~09367~^~417~^5.^0^^~4~^~BD~^~09074~^^^^^^^^^~01/01/2003~
-~09367~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2003~
-~09367~^~432~^5.^0^^~4~^~BD~^^^^^^^^^^~06/01/2008~
-~09367~^~435~^5.^0^^~4~^~NC~^^^^^^^^^^~06/01/2008~
-~09367~^~601~^0.^0^^~7~^^^^^^^^^^^~06/01/2008~
-~09370~^~208~^72.^0^^~4~^~NC~^^^^^^^^^^~11/01/2009~
-~09370~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~12/01/2002~
-~09370~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~12/01/2002~
-~09370~^~268~^303.^0^^~4~^~NC~^^^^^^^^^^~11/01/2009~
-~09370~^~301~^3.^0^^~4~^~BD~^~09241~^^^^^^^^^~12/01/2002~
-~09370~^~304~^5.^0^^~4~^~BD~^~09241~^^^^^^^^^~12/01/2002~
-~09370~^~305~^12.^0^^~4~^~BD~^~09241~^^^^^^^^^~12/01/2002~
-~09370~^~306~^94.^0^^~4~^~BD~^~09241~^^^^^^^^^~12/01/2002~
-~09370~^~307~^6.^0^^~4~^~BD~^~09241~^^^^^^^^^~12/01/2002~
-~09370~^~318~^626.^6^227.^~1~^~A~^^^3^168.^1081.^2^-354.^1605.^~2~^~11/01/2009~
-~09370~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~12/01/2002~
-~09370~^~320~^31.^6^11.^~1~^~A~^^^3^8.^54.^2^-17.^80.^~2~^~11/01/2009~
-~09370~^~321~^333.^6^148.^~1~^~A~^^^3^60.^625.^2^-306.^972.^~2~^~11/01/2009~
-~09370~^~322~^0.^4^0.^~1~^~A~^^^2^0.^0.^^^^~1, 2~^~11/01/2009~
-~09370~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~
-~09370~^~334~^85.^6^51.^~1~^~A~^^^3^16.^295.^2^-137.^308.^~2~^~11/01/2009~
-~09370~^~337~^0.^4^0.^~1~^~A~^^^2^0.^0.^^^^~1, 2~^~11/01/2009~
-~09370~^~338~^33.^1^^~1~^~A~^^^^^^^^^^~12/01/2002~
-~09370~^~417~^9.^3^1.^~1~^~A~^^^1^7.^13.^2^0.^17.^~2, 3~^~11/01/2009~
-~09370~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~12/01/2002~
-~09370~^~432~^9.^3^1.^~1~^~A~^^^1^7.^13.^2^0.^17.^^~11/01/2009~
-~09370~^~435~^9.^0^^~4~^~NC~^^^^^^^^^^~01/01/2010~
-~09370~^~601~^0.^0^^~7~^~Z~^^^^^^^^^^~12/01/2009~
-~09374~^~208~^74.^0^^~4~^~NC~^^^^^^^^^^~03/01/2007~
-~09374~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~
-~09374~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~
-~09374~^~268~^309.^0^^~4~^~NC~^^^^^^^^^^~03/01/2007~
-~09374~^~301~^6.^0^^~4~^~BD~^~09257~^^^^^^^^^~02/01/2003~
-~09374~^~304~^4.^0^^~4~^~BD~^~09257~^^^^^^^^^~02/01/2003~
-~09374~^~305~^8.^0^^~4~^~BD~^~09257~^^^^^^^^^~02/01/2003~
-~09374~^~306~^66.^0^^~4~^~BD~^~09257~^^^^^^^^^~02/01/2003~
-~09374~^~307~^5.^0^^~4~^~BD~^~09257~^^^^^^^^^~02/01/2003~
-~09374~^~318~^8.^0^^~4~^~NC~^^^^^^^^^^~03/01/2007~
-~09374~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~
-~09374~^~320~^0.^0^^~4~^~NC~^^^^^^^^^^~03/01/2007~
-~09374~^~321~^4.^1^^~1~^~A~^^^^^^^^^^~02/01/2003~
-~09374~^~322~^0.^0^^~4~^~BFZN~^~09252~^^^^^^^^^~02/01/2003~
-~09374~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~
-~09374~^~334~^2.^0^^~4~^~BFZN~^~09252~^^^^^^^^^~02/01/2003~
-~09374~^~337~^0.^0^^~4~^~BFZN~^~09252~^^^^^^^^^~02/01/2003~
-~09374~^~338~^50.^0^^~4~^~BFZN~^~09252~^^^^^^^^^~02/01/2003~
-~09374~^~417~^1.^0^^~4~^~BD~^~09257~^^^^^^^^^~02/01/2003~
-~09374~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~
-~09374~^~432~^1.^0^^~4~^~BD~^^^^^^^^^^~03/01/2007~
-~09374~^~435~^1.^0^^~4~^~NC~^^^^^^^^^^~03/01/2007~
-~09374~^~601~^0.^0^^~7~^^^^^^^^^^^~03/01/2007~
-~09379~^~208~^89.^0^^~4~^~NC~^^^^^^^^^^~03/01/2007~
-~09379~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~
-~09379~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~
-~09379~^~268~^374.^0^^~4~^~NC~^^^^^^^^^^~03/01/2007~
-~09379~^~301~^10.^0^^~4~^~BD~^~09284~^^^^^^^^^~02/01/2003~
-~09379~^~304~^5.^0^^~4~^~BD~^~09284~^^^^^^^^^~02/01/2003~
-~09379~^~305~^15.^0^^~4~^~BD~^~09284~^^^^^^^^^~02/01/2003~
-~09379~^~306~^93.^0^^~4~^~BD~^~09284~^^^^^^^^^~02/01/2003~
-~09379~^~307~^19.^0^^~4~^~BD~^~09284~^^^^^^^^^~02/01/2003~
-~09379~^~318~^399.^0^^~4~^~BD~^~09284~^^^^^^^^^~02/01/2003~
-~09379~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~
-~09379~^~320~^20.^0^^~4~^~NC~^^^^^^^^^^~03/01/2007~
-~09379~^~321~^219.^0^^~4~^~BNA~^~09279~^^^^^^^^^~02/01/2003~
-~09379~^~322~^0.^0^^~4~^~BNA~^~09279~^^^^^^^^^~02/01/2003~
-~09379~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~
-~09379~^~334~^40.^0^^~4~^~BNA~^~09279~^^^^^^^^^~02/01/2003~
-~09379~^~337~^0.^0^^~4~^~BFZN~^~09279~^^^^^^^^^~02/01/2003~
-~09379~^~338~^73.^0^^~4~^~BFZN~^~09279~^^^^^^^^^~02/01/2003~
-~09379~^~417~^3.^0^^~4~^~BD~^~09284~^^^^^^^^^~02/01/2003~
-~09379~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~
-~09379~^~432~^3.^0^^~4~^~BD~^^^^^^^^^^~03/01/2007~
-~09379~^~435~^3.^0^^~4~^~NC~^^^^^^^^^^~03/01/2007~
-~09379~^~601~^0.^0^^~7~^^^^^^^^^^^~03/01/2007~
-~09383~^~208~^38.^0^^~4~^~NC~^^^^^^^^^^~03/01/2007~
-~09383~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~
-~09383~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~
-~09383~^~268~^158.^0^^~4~^~NC~^^^^^^^^^^~03/01/2007~
-~09383~^~301~^12.^0^^~4~^~BD~^~09219~^^^^^^^^^~02/01/2003~
-~09383~^~304~^11.^0^^~4~^~BD~^~09219~^^^^^^^^^~02/01/2003~
-~09383~^~305~^11.^0^^~4~^~BD~^~09219~^^^^^^^^^~02/01/2003~
-~09383~^~306~^136.^0^^~4~^~BD~^~09219~^^^^^^^^^~02/01/2003~
-~09383~^~307~^5.^0^^~4~^~BD~^~09219~^^^^^^^^^~02/01/2003~
-~09383~^~318~^1312.^0^^~4~^~BD~^~09219~^^^^^^^^^~02/01/2003~
-~09383~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~
-~09383~^~320~^66.^0^^~4~^~NC~^^^^^^^^^^~03/01/2007~
-~09383~^~321~^298.^0^^~4~^~BNA~^~09218~^^^^^^^^^~02/01/2003~
-~09383~^~322~^204.^0^^~4~^~BNA~^~09218~^^^^^^^^^~02/01/2003~
-~09383~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~
-~09383~^~334~^775.^0^^~4~^~BNA~^~09218~^^^^^^^^^~02/01/2003~
-~09383~^~337~^0.^0^^~4~^~BFZN~^~09218~^^^^^^^^^~02/01/2003~
-~09383~^~338~^243.^0^^~4~^~BFZN~^~09218~^^^^^^^^^~02/01/2003~
-~09383~^~417~^5.^0^^~4~^~BD~^~09219~^^^^^^^^^~02/01/2003~
-~09383~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~
-~09383~^~432~^5.^0^^~4~^~BD~^^^^^^^^^^~03/01/2007~
-~09383~^~435~^5.^0^^~4~^~NC~^^^^^^^^^^~03/01/2007~
-~09383~^~601~^0.^0^^~7~^^^^^^^^^^^~03/01/2007~
-~09400~^~208~^46.^0^^~4~^~NC~^^^^^^^^^^~05/01/2008~
-~09400~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2005~
-~09400~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2005~
-~09400~^~268~^191.^0^^~4~^~NC~^^^^^^^^^^~05/01/2008~
-~09400~^~301~^8.^57^0.^~1~^~A~^^^17^4.^26.^8^6.^8.^~2, 3~^~05/01/2008~
-~09400~^~304~^5.^58^0.^~1~^~A~^^^17^4.^7.^22^4.^4.^~2, 3~^~05/01/2008~
-~09400~^~305~^7.^59^0.^~1~^~A~^^^17^5.^10.^16^6.^7.^~2, 3~^~05/01/2008~
-~09400~^~306~^101.^58^1.^~1~^~A~^^^17^73.^116.^18^98.^103.^~2, 3~^~05/01/2008~
-~09400~^~307~^4.^58^0.^~1~^~A~^^^17^1.^8.^25^3.^4.^~1, 2, 3~^~05/01/2008~
-~09400~^~318~^1.^1^^~1~^^^^^^^^^^^~08/01/1982~
-~09400~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2002~
-~09400~^~320~^0.^0^^~4~^~NC~^^^^^^^^^^~05/01/2008~
-~09400~^~321~^0.^0^^~4~^~BFZN~^~09016~^^^^^^^^^~04/01/2005~
-~09400~^~322~^0.^0^^~4~^~BFZN~^~09016~^^^^^^^^^~03/01/2006~
-~09400~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~
-~09400~^~334~^0.^0^^~4~^~BFZN~^~09016~^^^^^^^^^~04/01/2005~
-~09400~^~337~^0.^0^^~4~^~BFZN~^~09016~^^^^^^^^^~03/01/2006~
-~09400~^~338~^16.^0^^~4~^~BFZN~^~09016~^^^^^^^^^~04/01/2005~
-~09400~^~417~^0.^3^0.^~1~^^^^^^^^^^^~08/01/1982~
-~09400~^~431~^0.^1^^~1~^~A~^^^^^^^^^~1~^~05/01/2008~
-~09400~^~432~^0.^3^0.^~1~^^^^^^^^^^^~05/01/2008~
-~09400~^~435~^0.^0^^~4~^~NC~^^^^^^^^^^~07/01/2008~
-~09400~^~601~^0.^0^^~7~^~Z~^^^^^^^^^^~08/01/1982~
-~09401~^~208~^42.^0^^~4~^~NC~^^^^^^^^^^~08/01/2008~
-~09401~^~268~^176.^0^^~4~^~NC~^^^^^^^^^^~08/01/2008~
-~09401~^~301~^4.^11^0.^~1~^~A~^^^4^3.^5.^3^1.^5.^~2~^~06/01/2008~
-~09401~^~304~^3.^11^0.^~1~^~A~^^^4^2.^3.^3^2.^2.^~2~^~06/01/2008~
-~09401~^~305~^5.^11^0.^~1~^~A~^^^4^3.^9.^3^4.^5.^~2~^~06/01/2008~
-~09401~^~306~^74.^11^3.^~1~^~A~^^^4^54.^88.^3^61.^86.^~2~^~06/01/2008~
-~09401~^~307~^2.^16^0.^~1~^^^^^^^^^^^~07/01/2008~
-~09401~^~318~^29.^3^5.^~1~^^^^^^^^^^^~08/01/1982~
-~09401~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2002~
-~09401~^~320~^1.^3^0.^~1~^^^^^^^^^^^~08/01/2008~
-~09401~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~
-~09401~^~417~^3.^3^0.^~1~^~A~^^^1^2.^4.^2^0.^5.^~2, 3~^~06/01/2008~
-~09401~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~08/01/2008~
-~09401~^~432~^3.^3^0.^~1~^~A~^^^1^2.^4.^2^0.^5.^~2, 3~^~06/01/2008~
-~09401~^~435~^3.^0^^~4~^~NC~^^^^^^^^^^~08/01/2008~
-~09401~^~601~^0.^0^^~7~^~Z~^^^^^^^^^^~08/01/1982~
-~09402~^~208~^76.^0^^~4~^~NC~^^^^^^^^^^~08/01/1982~
-~09402~^~268~^318.^0^^~4~^^^^^^^^^^^
-~09402~^~301~^4.^40^0.^~1~^^^^^^^^^^^~08/01/1982~
-~09402~^~304~^3.^27^0.^~1~^^^^^^^^^^^~08/01/1982~
-~09402~^~305~^7.^27^0.^~1~^^^^^^^^^^^~08/01/1982~
-~09402~^~306~^61.^37^1.^~1~^^^^^^^^^^^~08/01/1982~
-~09402~^~307~^28.^9^4.^~1~^^^^^^^^^^^~08/01/1982~
-~09402~^~318~^11.^23^1.^~1~^^^^^^^^^^^~08/01/1982~
-~09402~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2002~
-~09402~^~320~^1.^23^0.^~1~^^^^^^^^^^^~06/01/2002~
-~09402~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~
-~09402~^~417~^1.^9^0.^~1~^^^^^^^^^^^~08/01/1982~
-~09402~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~
-~09402~^~432~^1.^9^0.^~1~^^^^^^^^^^^~08/01/1982~
-~09402~^~435~^1.^0^^~4~^~NC~^^^^^^^^^^~01/01/2001~
-~09402~^~601~^0.^0^^~7~^~Z~^^^^^^^^^^~08/01/1982~
-~09404~^~208~^39.^0^^~4~^~NC~^^^^^^^^^^~08/01/1982~
-~09404~^~268~^163.^0^^~4~^^^^^^^^^^^
-~09404~^~301~^9.^0^^~1~^^^^^^^^^^^~08/01/1982~
-~09404~^~304~^12.^0^^~1~^^^^^^^^^^^~08/01/1982~
-~09404~^~305~^15.^0^^~1~^^^^^^^^^^^~08/01/1982~
-~09404~^~306~^162.^0^^~1~^^^^^^^^^^^~08/01/1982~
-~09404~^~307~^1.^0^^~1~^^^^^^^^^^^~08/01/1982~
-~09404~^~318~^440.^0^^~1~^^^^^^^^^^^~08/01/1982~
-~09404~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2002~
-~09404~^~320~^22.^0^^~1~^^^^^^^^^^^~06/01/2002~
-~09404~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~
-~09404~^~417~^10.^0^^~4~^^^^^^^^^^^~08/01/1982~
-~09404~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~
-~09404~^~432~^10.^0^^~4~^^^^^^^^^^^~08/01/1982~
-~09404~^~435~^10.^0^^~4~^~NC~^^^^^^^^^^~01/01/2001~
-~09404~^~601~^0.^0^^~7~^~Z~^^^^^^^^^^~08/01/1982~
-~09407~^~208~^50.^0^^~4~^~NC~^^^^^^^^^^~12/01/2016~
-~09407~^~268~^210.^0^^~4~^~NC~^^^^^^^^^^~12/01/2016~
-~09407~^~301~^6.^3^0.^~1~^~A~^^^1^5.^7.^2^3.^8.^~2, 3~^~12/01/2016~
-~09407~^~304~^5.^3^0.^~1~^~A~^^^1^4.^5.^2^3.^6.^~2, 3~^~12/01/2016~
-~09407~^~305~^5.^3^0.^~1~^~A~^^^1^5.^6.^2^4.^6.^~2, 3~^~12/01/2016~
-~09407~^~306~^50.^3^2.^~1~^~A~^^^1^45.^53.^2^38.^61.^~2, 3~^~12/01/2016~
-~09407~^~307~^8.^3^1.^~1~^~A~^^^1^6.^11.^2^1.^14.^~2, 3~^~12/01/2016~
-~09407~^~318~^569.^0^^~1~^~AS~^^^^^^^^^^~12/01/2016~
-~09407~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2002~
-~09407~^~320~^28.^0^^~1~^~AS~^^^^^^^^^^~12/01/2016~
-~09407~^~321~^308.^1^^~1~^~A~^^^^^^^^^^~12/01/2016~
-~09407~^~322~^0.^1^^~1~^~A~^^^^^^^^^~1~^~12/01/2016~
-~09407~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~
-~09407~^~334~^68.^1^^~1~^~A~^^^^^^^^^^~12/01/2016~
-~09407~^~337~^0.^1^^~1~^~A~^^^^^^^^^~1~^~12/01/2016~
-~09407~^~338~^29.^1^^~1~^~A~^^^^^^^^^^~12/01/2016~
-~09407~^~417~^1.^1^^~1~^~A~^^^^^^^^^~1~^~12/01/2016~
-~09407~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~
-~09407~^~432~^1.^1^^~1~^~A~^^^^^^^^^^~12/01/2016~
-~09407~^~435~^1.^0^^~4~^~NC~^^^^^^^^^^~01/01/2006~
-~09407~^~601~^0.^0^^~7~^~Z~^^^^^^^^^^~08/01/1982~
-~09408~^~208~^60.^0^^~4~^~NC~^^^^^^^^^^~08/01/1982~
-~09408~^~268~^251.^0^^~4~^^^^^^^^^^^~02/01/2006~
-~09408~^~301~^5.^22^0.^~1~^^^^^^^^^^^~08/01/1982~
-~09408~^~304~^3.^21^0.^~1~^^^^^^^^^^^~08/01/1982~
-~09408~^~305~^3.^21^0.^~1~^^^^^^^^^^^~08/01/1982~
-~09408~^~306~^13.^21^2.^~1~^^^^^^^^^^^~08/01/1982~
-~09408~^~307~^4.^21^0.^~1~^^^^^^^^^^^~08/01/1982~
-~09408~^~318~^1.^16^0.^~1~^^^^^^^^^^^~08/01/1982~
-~09408~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2002~
-~09408~^~320~^0.^16^0.^~1~^^^^^^^^^^^~02/01/2006~
-~09408~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~
-~09408~^~417~^1.^0^^~4~^^^^^^^^^^^~08/01/1982~
-~09408~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~
-~09408~^~432~^1.^0^^~4~^^^^^^^^^^^~02/01/2006~
-~09408~^~435~^1.^0^^~4~^~NC~^^^^^^^^^^~02/01/2006~
-~09408~^~601~^0.^0^^~7~^~Z~^^^^^^^^^^~08/01/1982~
-~09409~^~208~^53.^0^^~4~^~NC~^^^^^^^^^^~02/01/2007~
-~09409~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~
-~09409~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~
-~09409~^~268~^220.^0^^~4~^~NC~^^^^^^^^^^~02/01/2007~
-~09409~^~301~^13.^86^2.^~1~^~A~^^^3^7.^24.^2^0.^26.^~2~^~04/01/2005~
-~09409~^~304~^12.^29^1.^~1~^~A~^^^2^11.^15.^1^-5.^30.^~2~^~04/01/2005~
-~09409~^~305~^8.^27^0.^~1~^~A~^^^2^6.^9.^1^3.^12.^~2~^~04/01/2005~
-~09409~^~306~^130.^64^3.^~1~^~A~^^^3^85.^160.^2^115.^145.^~2~^~04/01/2005~
-~09409~^~307~^2.^75^1.^~1~^~A~^^^3^0.^5.^2^-3.^7.^~2~^~04/01/2005~
-~09409~^~318~^5.^14^4.^~1~^~A~^^^1^0.^65.^1^-54.^63.^~2, 3~^~04/01/2005~
-~09409~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2002~
-~09409~^~320~^0.^0^^~4~^~NC~^^^^^^^^^^~02/01/2007~
-~09409~^~321~^3.^0^^~4~^~BFZN~^~09273~^^^^^^^^^~04/01/2005~
-~09409~^~322~^0.^0^^~4~^~BFZN~^~09273~^^^^^^^^^~02/01/2003~
-~09409~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~
-~09409~^~334~^0.^0^^~4~^~BFZN~^~09273~^^^^^^^^^~02/01/2003~
-~09409~^~337~^0.^0^^~4~^~BFZN~^~09273~^^^^^^^^^~02/01/2003~
-~09409~^~338~^0.^0^^~4~^~BFZN~^~09273~^^^^^^^^^~02/01/2003~
-~09409~^~417~^18.^4^5.^~1~^~A~^^^2^12.^26.^1^-52.^87.^~2~^~04/01/2005~
-~09409~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~
-~09409~^~432~^18.^4^5.^~1~^~A~^^^2^12.^26.^1^-52.^87.^^~02/01/2007~
-~09409~^~435~^18.^0^^~4~^~NC~^^^^^^^^^^~02/01/2007~
-~09409~^~601~^0.^0^^~7~^~Z~^^^^^^^^^^~08/01/1982~
-~09410~^~208~^166.^0^^~4~^~NC~^^^^^^^^^^~08/01/1982~
-~09410~^~268~^695.^0^^~4~^^^^^^^^^^^~06/01/2005~
-~09410~^~301~^20.^4^2.^~1~^^^^^^^^^^^~08/01/1982~
-~09410~^~304~^17.^4^1.^~1~^^^^^^^^^^^~08/01/1982~
-~09410~^~305~^25.^4^2.^~1~^^^^^^^^^^^~08/01/1982~
-~09410~^~306~^448.^4^26.^~1~^^^^^^^^^^^~08/01/1982~
-~09410~^~307~^25.^4^9.^~1~^^^^^^^^^^^~08/01/1982~
-~09410~^~318~^0.^3^^~1~^^^^^^^^^^^~08/01/1982~
-~09410~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2002~
-~09410~^~320~^0.^0^^~1~^~AS~^^^^^^^^^^~06/01/2005~
-~09410~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~
-~09410~^~417~^1.^4^0.^~1~^^^^^^^^^^^~08/01/1982~
-~09410~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~
-~09410~^~432~^1.^4^0.^~1~^^^^^^^^^^^~06/01/2005~
-~09410~^~435~^1.^0^^~4~^~NC~^^^^^^^^^^~06/01/2005~
-~09410~^~601~^0.^0^^~7~^~Z~^^^^^^^^^^~08/01/1982~
-~09411~^~208~^47.^0^^~4~^~NC~^^^^^^^^^^~08/01/1982~
-~09411~^~268~^197.^0^^~4~^^^^^^^^^^^
-~09411~^~301~^6.^4^0.^~1~^^^^^^^^^^^~08/01/1982~
-~09411~^~304~^5.^4^0.^~1~^^^^^^^^^^^~08/01/1982~
-~09411~^~305~^7.^4^0.^~1~^^^^^^^^^^^~08/01/1982~
-~09411~^~306~^126.^4^7.^~1~^^^^^^^^^^^~08/01/1982~
-~09411~^~307~^7.^4^2.^~1~^^^^^^^^^^^~08/01/1982~
-~09411~^~318~^0.^0^^~4~^^^^^^^^^^^~08/01/1982~
-~09411~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2002~
-~09411~^~320~^0.^0^^~4~^^^^^^^^^^^~06/01/2002~
-~09411~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~
-~09411~^~417~^0.^4^0.^~1~^^^^^^^^^^^~08/01/1982~
-~09411~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~
-~09411~^~432~^0.^4^0.^~1~^^^^^^^^^^^~08/01/1982~
-~09411~^~435~^0.^0^^~4~^~NC~^^^^^^^^^^~01/01/2001~
-~09411~^~601~^0.^0^^~7~^~Z~^^^^^^^^^^~08/01/1982~
-~09412~^~208~^63.^0^^~4~^~NC~^^^^^^^^^^~08/01/2012~
-~09412~^~268~^264.^0^^~4~^~NC~^^^^^^^^^^~08/01/2012~
-~09412~^~301~^9.^4^0.^~1~^~A~^^^2^8.^11.^2^8.^10.^~2, 3~^~08/01/2012~
-~09412~^~304~^6.^4^0.^~1~^~A~^^^2^6.^7.^1^6.^6.^~2, 3~^~08/01/2012~
-~09412~^~305~^11.^4^0.^~1~^~A~^^^2^11.^12.^2^10.^12.^~2, 3~^~08/01/2012~
-~09412~^~306~^101.^4^4.^~1~^~A~^^^2^79.^121.^2^79.^122.^~2, 3~^~08/01/2012~
-~09412~^~307~^1.^0^^~4~^~BFZN~^^^^^^^^^^~08/01/2012~
-~09412~^~318~^28.^0^^~1~^~AS~^^^^^^^^^^~08/01/2012~
-~09412~^~320~^1.^5^0.^~1~^~A~^^^3^0.^3.^1^0.^1.^~2, 3~^~08/01/2012~
-~09412~^~321~^14.^6^0.^~1~^~A~^^^3^5.^27.^2^9.^19.^~2, 3~^~08/01/2012~
-~09412~^~322~^2.^6^0.^~1~^~A~^^^3^0.^6.^^^^~1, 2, 3~^~08/01/2012~
-~09412~^~334~^3.^4^1.^~1~^~A~^^^2^0.^8.^1^-9.^15.^~2, 3~^~08/01/2012~
-~09412~^~337~^0.^4^0.^~1~^~A~^^^2^0.^0.^^^^~1, 2, 3~^~08/01/2012~
-~09412~^~338~^51.^4^4.^~1~^~A~^^^2^40.^57.^1^-2.^104.^~2, 3~^~08/01/2012~
-~09412~^~417~^6.^4^0.^~1~^~A~^^^2^4.^8.^^^^~1, 2, 3~^~08/01/2012~
-~09412~^~432~^6.^4^0.^~1~^~A~^^^2^4.^8.^^^^^~08/01/2012~
-~09413~^~208~^62.^0^^~4~^~NC~^^^^^^^^^^~08/01/2012~
-~09413~^~268~^261.^0^^~4~^~NC~^^^^^^^^^^~08/01/2012~
-~09413~^~301~^11.^4^0.^~1~^~A~^^^2^8.^13.^1^4.^17.^~2, 3~^~08/01/2012~
-~09413~^~304~^7.^4^0.^~1~^~A~^^^2^7.^7.^2^6.^7.^~2, 3~^~08/01/2012~
-~09413~^~305~^13.^4^0.^~1~^~A~^^^2^13.^14.^2^13.^13.^~2, 3~^~08/01/2012~
-~09413~^~306~^123.^4^2.^~1~^~A~^^^2^112.^128.^1^87.^157.^~2, 3~^~08/01/2012~
-~09413~^~307~^1.^0^^~4~^~BFZN~^^^^^^^^^^~08/01/2012~
-~09413~^~318~^24.^0^^~1~^~AS~^^^^^^^^^^~08/01/2012~
-~09413~^~320~^1.^3^0.^~1~^~A~^^^2^0.^2.^1^0.^1.^~2, 3~^~08/01/2012~
-~09413~^~321~^14.^4^3.^~1~^~A~^^^2^5.^28.^1^-23.^50.^~2, 3~^~08/01/2012~
-~09413~^~322~^0.^4^0.^~1~^~A~^^^2^0.^0.^^^^~1, 2, 3~^~08/01/2012~
-~09413~^~334~^1.^4^0.^~1~^~A~^^^2^0.^3.^1^-1.^4.^~2, 3~^~08/01/2012~
-~09413~^~337~^0.^4^0.^~1~^~A~^^^2^0.^0.^^^^~1, 2, 3~^~08/01/2012~
-~09413~^~338~^53.^4^4.^~1~^~A~^^^2^41.^67.^2^34.^72.^~2, 3~^~08/01/2012~
-~09413~^~417~^7.^4^0.^~1~^~A~^^^2^4.^8.^1^-2.^16.^~1, 2, 3~^~08/01/2012~
-~09413~^~432~^7.^4^0.^~1~^~A~^^^2^4.^8.^1^-2.^16.^^~08/01/2012~
-~09414~^~208~^67.^0^^~4~^~NC~^^^^^^^^^^~08/01/2012~
-~09414~^~268~^279.^0^^~4~^~NC~^^^^^^^^^^~08/01/2012~
-~09414~^~301~^10.^4^0.^~1~^~A~^^^2^9.^11.^2^8.^11.^~2, 3~^~08/01/2012~
-~09414~^~304~^7.^4^0.^~1~^~A~^^^2^7.^8.^2^6.^8.^~2, 3~^~08/01/2012~
-~09414~^~305~^14.^4^0.^~1~^~A~^^^2^14.^15.^1^12.^16.^~2, 3~^~08/01/2012~
-~09414~^~306~^122.^4^6.^~1~^~A~^^^2^94.^138.^1^44.^199.^~2, 3~^~08/01/2012~
-~09414~^~307~^1.^0^^~4~^~BFZN~^^^^^^^^^^~08/01/2012~
-~09414~^~318~^19.^2^^~1~^~A~^^^2^19.^19.^^^^^~08/01/2012~
-~09414~^~320~^1.^2^^~1~^~A~^^^2^1.^1.^^^^^~08/01/2012~
-~09414~^~321~^11.^2^^~1~^~A~^^^2^11.^11.^^^^~1~^~08/01/2012~
-~09414~^~322~^0.^2^^~1~^~A~^^^2^0.^0.^^^^~1~^~08/01/2012~
-~09414~^~334~^0.^2^^~1~^~A~^^^2^0.^0.^^^^~1~^~08/01/2012~
-~09414~^~337~^0.^2^^~1~^~A~^^^2^0.^0.^^^^~1~^~08/01/2012~
-~09414~^~338~^11.^2^^~1~^~A~^^^2^11.^11.^^^^~1~^~08/01/2012~
-~09414~^~417~^7.^4^0.^~1~^~A~^^^2^4.^8.^1^-1.^16.^~1, 2, 3~^~08/01/2012~
-~09414~^~432~^7.^4^0.^~1~^~A~^^^2^4.^8.^1^-1.^16.^^~08/01/2012~
-~09415~^~208~^66.^0^^~4~^~NC~^^^^^^^^^^~08/01/2012~
-~09415~^~268~^275.^0^^~4~^~NC~^^^^^^^^^^~08/01/2012~
-~09415~^~301~^11.^4^0.^~1~^~A~^^^2^9.^12.^1^3.^18.^~2, 3~^~08/01/2012~
-~09415~^~304~^7.^4^0.^~1~^~A~^^^2^6.^8.^2^6.^7.^~2, 3~^~08/01/2012~
-~09415~^~305~^13.^4^0.^~1~^~A~^^^2^13.^13.^2^12.^13.^~2, 3~^~08/01/2012~
-~09415~^~306~^127.^4^5.^~1~^~A~^^^2^107.^154.^1^84.^170.^~2, 3~^~08/01/2012~
-~09415~^~307~^1.^0^^~4~^~BFZN~^^^^^^^^^^~08/01/2012~
-~09415~^~318~^25.^0^^~1~^~AS~^^^^^^^^^^~08/01/2012~
-~09415~^~320~^1.^3^0.^~1~^~A~^^^2^0.^2.^1^0.^1.^~2, 3~^~08/01/2012~
-~09415~^~321~^14.^4^1.^~1~^~A~^^^2^5.^26.^1^-2.^30.^~2, 3~^~08/01/2012~
-~09415~^~322~^0.^4^0.^~1~^~A~^^^2^0.^0.^^^^~1, 2, 3~^~08/01/2012~
-~09415~^~334~^1.^4^0.^~1~^~A~^^^2^0.^2.^^^^~2, 3~^~08/01/2012~
-~09415~^~337~^0.^4^0.^~1~^~A~^^^2^0.^0.^^^^~1, 2, 3~^~08/01/2012~
-~09415~^~338~^46.^4^5.^~1~^~A~^^^2^37.^57.^2^11.^80.^~2, 3~^~08/01/2012~
-~09415~^~417~^9.^4^2.^~1~^~A~^^^2^4.^14.^1^-21.^38.^~1, 2, 3~^~08/01/2012~
-~09415~^~432~^9.^4^2.^~1~^~A~^^^2^4.^14.^1^-21.^38.^^~08/01/2012~
-~09416~^~208~^37.^0^^~4~^~NC~^^^^^^^^^^~10/01/2016~
-~09416~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~10/01/2016~
-~09416~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~10/01/2016~
-~09416~^~268~^153.^0^^~4~^~NC~^^^^^^^^^^~10/01/2016~
-~09416~^~301~^15.^6^0.^~1~^~A~^^^2^14.^17.^4^14.^16.^~2, 3~^~10/01/2016~
-~09416~^~304~^9.^6^0.^~1~^~A~^^^2^8.^10.^4^8.^9.^~2, 3~^~10/01/2016~
-~09416~^~305~^17.^6^0.^~1~^~A~^^^2^15.^19.^4^16.^18.^~2, 3~^~10/01/2016~
-~09416~^~306~^142.^6^4.^~1~^~A~^^^2^129.^160.^4^129.^153.^~2, 3~^~10/01/2016~
-~09416~^~307~^2.^6^0.^~1~^~A~^^^2^2.^3.^4^1.^2.^~1, 2, 3~^~10/01/2016~
-~09416~^~318~^33.^0^^~1~^~AS~^^^^^^^^^^~10/01/2016~
-~09416~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~10/01/2016~
-~09416~^~320~^2.^0^^~1~^~AS~^^^^^^^^^^~10/01/2016~
-~09416~^~321~^20.^1^^~1~^~A~^^^^^^^^^~1~^~06/01/2015~
-~09416~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~10/01/2016~
-~09416~^~417~^15.^1^^~1~^~A~^^^^^^^^^^~10/01/2016~
-~09416~^~432~^15.^1^^~1~^~A~^^^^^^^^^^~10/01/2016~
-~09416~^~601~^0.^0^^~7~^~Z~^^^^^^^^^^~11/01/2016~
-~09420~^~208~^92.^0^^~4~^~NC~^^^^^^^^^^~11/01/1996~
-~09420~^~268~^385.^0^^~4~^^^^^^^^^^^
-~09420~^~301~^44.^2^^~1~^~A~^^^^^^^^^^~11/01/1996~
-~09420~^~304~^10.^2^^~1~^~A~^^^^^^^^^^~11/01/1996~
-~09420~^~305~^6.^2^^~1~^~A~^^^^^^^^^^~11/01/1996~
-~09420~^~306~^96.^2^^~1~^~A~^^^^^^^^^^~11/01/1996~
-~09420~^~307~^11.^2^^~1~^~A~^^^^^^^^^^~11/01/1996~
-~09420~^~318~^2.^2^^~1~^~A~^^^^^^^^^^~11/01/1996~
-~09420~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2002~
-~09420~^~320~^0.^2^^~1~^~A~^^^^^^^^^^~06/01/2002~
-~09420~^~417~^14.^2^^~1~^~A~^^^^^^^^^^~11/01/1996~
-~09420~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~
-~09420~^~432~^14.^2^^~1~^~A~^^^^^^^^^^~11/01/1996~
-~09420~^~435~^14.^0^^~4~^~NC~^^^^^^^^^^~01/01/2001~
-~09420~^~601~^0.^0^^~7~^~Z~^^^^^^^^^^~11/01/1996~
-~09421~^~208~^277.^0^^~4~^~NC~^^^^^^^^^^~04/01/2006~
-~09421~^~268~^1160.^0^^~4~^~NC~^^^^^^^^^^~04/01/2006~
-~09421~^~301~^64.^2^^~1~^~A~^^^2^60.^69.^^^^^~04/01/2003~
-~09421~^~304~^54.^2^^~1~^~A~^^^2^53.^55.^^^^^~04/01/2003~
-~09421~^~305~^62.^2^^~1~^~A~^^^2^60.^64.^^^^^~04/01/2003~
-~09421~^~306~^696.^2^^~1~^~A~^^^2^690.^701.^^^^^~04/01/2003~
-~09421~^~307~^1.^2^^~1~^~A~^^^2^0.^1.^^^^~1~^~04/01/2003~
-~09421~^~318~^149.^2^^~1~^~A~^^^2^120.^178.^^^^^~04/01/2003~
-~09421~^~320~^7.^2^^~1~^~A~^^^2^6.^9.^^^^^~04/01/2003~
-~09421~^~321~^89.^2^^~1~^~A~^^^2^72.^107.^^^^^~04/01/2003~
-~09421~^~322~^0.^2^^~1~^~A~^^^2^0.^0.^^^^~1~^~04/01/2003~
-~09421~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~
-~09421~^~334~^0.^2^^~1~^~A~^^^2^0.^0.^^^^~1~^~04/01/2003~
-~09421~^~337~^0.^2^^~1~^~A~^^^2^0.^0.^^^^~1~^~04/01/2003~
-~09421~^~338~^23.^2^^~1~^~A~^^^2^17.^29.^^^^^~04/01/2003~
-~09421~^~417~^15.^1^^~1~^~A~^^^^^^^^^^~04/01/2003~
-~09421~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2003~
-~09421~^~432~^15.^1^^~1~^~A~^^^^^^^^^^~04/01/2006~
-~09421~^~435~^15.^0^^~4~^~NC~^^^^^^^^^^~04/01/2006~
-~09422~^~208~^147.^0^^~4~^~NC~^^^^^^^^^^~05/01/2003~
-~09422~^~268~^615.^0^^~4~^~NC~^^^^^^^^^^~05/01/2003~
-~09422~^~301~^6.^2^^~1~^~A~^^^1^5.^7.^^^^^~08/01/2002~
-~09422~^~304~^30.^2^^~1~^~A~^^^1^22.^37.^^^^^~08/01/2002~
-~09422~^~305~^39.^2^^~1~^~A~^^^1^38.^39.^^^^^~08/01/2002~
-~09422~^~306~^436.^2^^~1~^~A~^^^1^420.^453.^^^^^~08/01/2002~
-~09422~^~307~^2.^1^^~1~^~A~^^^^^^^^^^~08/01/2002~
-~09422~^~318~^44.^2^^~1~^~A~^^^1^42.^47.^^^^^~08/01/2002~
-~09422~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2002~
-~09422~^~320~^2.^2^^~1~^~A~^^^1^2.^2.^^^^^~08/01/2002~
-~09422~^~321~^23.^2^^~1~^~A~^^^1^21.^26.^^^^^~08/01/2002~
-~09422~^~322~^6.^2^^~1~^~A~^^^1^5.^8.^^^^^~08/01/2002~
-~09422~^~334~^0.^2^^~1~^~A~^^^^^^^^^^~05/01/2003~
-~09422~^~417~^36.^2^^~1~^~A~^^^1^16.^56.^^^^^~08/01/2002~
-~09422~^~432~^36.^2^^~1~^~A~^^^^^^^^^^~05/01/2003~
-~09422~^~601~^0.^0^^~7~^~Z~^^^^^^^^^^~11/01/1996~
-~09423~^~208~^257.^0^^~9~^~MC~^^^^^^^^^^~02/01/1997~
-~09423~^~268~^1075.^0^^~9~^~MC~^^^^^^^^^^~07/01/2008~
-~09423~^~301~^31.^0^^~9~^~MC~^^^^^^^^^^~02/01/1997~
-~09423~^~305~^72.^0^^~9~^~MC~^^^^^^^^^^~02/01/1997~
-~09423~^~306~^852.^0^^~9~^~MC~^^^^^^^^^^~02/01/1997~
-~09423~^~307~^23.^0^^~9~^~MC~^^^^^^^^^^~02/01/1997~
-~09423~^~318~^2000.^0^^~9~^~MC~^^^^^^^^^^~02/01/1997~
-~09423~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2002~
-~09423~^~320~^100.^0^^~4~^~NC~^^^^^^^^^^~06/01/2002~
-~09423~^~601~^0.^0^^~9~^~MC~^^^^^^^^^^~02/01/1997~
-~09426~^~208~^322.^0^^~4~^~RA~^^^^^^^^^^~02/01/2007~
-~09426~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~
-~09426~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~
-~09426~^~268~^1345.^0^^~4~^~RA~^^^^^^^^^^~02/01/2007~
-~09426~^~301~^18.^0^^~4~^~RA~^^^^^^^^^^~02/01/2007~
-~09426~^~304~^4.^0^^~4~^~RA~^^^^^^^^^^~02/01/2007~
-~09426~^~305~^5.^0^^~4~^~RA~^^^^^^^^^^~02/01/2007~
-~09426~^~306~^56.^0^^~4~^~RA~^^^^^^^^^^~02/01/2007~
-~09426~^~307~^98.^0^^~4~^~T~^^^^^^^^^^~02/01/2003~
-~09426~^~318~^19.^0^^~4~^~RA~^^^^^^^^^^~02/01/2007~
-~09426~^~319~^0.^0^^~4~^~RA~^^^^^^^^^^~02/01/2003~
-~09426~^~320~^1.^0^^~4~^~RA~^^^^^^^^^^~02/01/2007~
-~09426~^~321~^9.^0^^~4~^~RA~^^^^^^^^^^~02/01/2007~
-~09426~^~322~^0.^0^^~4~^~RA~^^^^^^^^^^~02/01/2003~
-~09426~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~
-~09426~^~334~^5.^0^^~4~^~RA~^^^^^^^^^^~02/01/2007~
-~09426~^~337~^0.^0^^~4~^~RA~^^^^^^^^^^~02/01/2003~
-~09426~^~338~^11.^0^^~4~^~RA~^^^^^^^^^^~02/01/2007~
-~09426~^~417~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~
-~09426~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~
-~09426~^~432~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~
-~09426~^~435~^0.^0^^~4~^~NC~^^^^^^^^^^~02/01/2007~
-~09426~^~601~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2005~
-~09427~^~208~^69.^0^^~4~^~NC~^^^^^^^^^^~03/01/2001~
-~09427~^~268~^290.^0^^~4~^~NC~^^^^^^^^^^~03/01/2001~
-~09427~^~301~^8.^1^^~1~^~A~^^^^^^^^^^~11/01/2000~
-~09427~^~304~^24.^1^^~1~^~A~^^^^^^^^^^~11/01/2000~
-~09427~^~305~^47.^1^^~1~^~A~^^^^^^^^^^~11/01/2000~
-~09427~^~306~^304.^1^^~1~^~A~^^^^^^^^^^~11/01/2000~
-~09427~^~307~^20.^1^^~1~^~A~^^^^^^^^^^~11/01/2000~
-~09427~^~318~^100.^1^^~1~^~A~^^^^^^^^^^~03/01/2001~
-~09427~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2002~
-~09427~^~320~^5.^1^^~1~^~A~^^^^^^^^^^~06/01/2002~
-~09427~^~321~^60.^1^^~1~^~A~^^^^^^^^^^~11/01/2000~
-~09427~^~322~^0.^1^^~1~^~A~^^^^^^^^^~1~^~11/01/2000~
-~09428~^~208~^111.^0^^~4~^~NC~^^^^^^^^^^~12/01/2000~
-~09428~^~268~^462.^0^^~4~^~NC~^^^^^^^^^^~12/01/2000~
-~09428~^~301~^15.^1^^~1~^~A~^^^^^^^^^^~11/01/2000~
-~09428~^~304~^32.^1^^~1~^~A~^^^^^^^^^^~11/01/2000~
-~09428~^~305~^52.^1^^~1~^~A~^^^^^^^^^^~11/01/2000~
-~09428~^~306~^131.^1^^~1~^~A~^^^^^^^^^^~11/01/2000~
-~09428~^~307~^4.^1^^~1~^~A~^^^^^^^^^^~11/01/2000~
-~09428~^~318~^383.^1^^~1~^~A~^^^^^^^^^^~03/01/2001~
-~09428~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2002~
-~09428~^~320~^19.^1^^~1~^~A~^^^^^^^^^^~06/01/2002~
-~09428~^~321~^230.^1^^~1~^~A~^^^^^^^^^^~11/01/2000~
-~09428~^~322~^0.^1^^~1~^~A~^^^^^^^^^~1~^~11/01/2000~
-~09429~^~208~^45.^0^^~4~^~NC~^^^^^^^^^^~02/01/2007~
-~09429~^~268~^190.^0^^~4~^~NC~^^^^^^^^^^~02/01/2007~
-~09429~^~301~^13.^11^1.^~1~^~A~^^^3^6.^19.^2^5.^20.^~2~^~06/01/2003~
-~09429~^~304~^12.^12^1.^~1~^~A~^^^3^9.^24.^2^5.^19.^~2~^~06/01/2003~
-~09429~^~305~^9.^11^2.^~1~^~A~^^^2^5.^17.^1^-27.^45.^~2~^~06/01/2003~
-~09429~^~306~^125.^12^18.^~1~^~A~^^^3^81.^162.^2^44.^205.^~2~^~06/01/2003~
-~09429~^~307~^1.^0^^~4~^~BFZN~^~09266~^^^^^^^^^~06/01/2003~
-~09429~^~318~^52.^10^6.^~1~^~A~^^^2^33.^83.^1^-27.^131.^~2~^~06/01/2003~
-~09429~^~320~^3.^10^0.^~1~^~A~^^^2^2.^4.^1^-1.^6.^~2~^~06/01/2003~
-~09429~^~321~^31.^10^3.^~1~^~A~^^^2^20.^50.^1^-16.^78.^~2~^~06/01/2003~
-~09429~^~322~^0.^2^^~1~^~A~^^^1^0.^0.^^^^~1~^~06/01/2003~
-~09429~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~
-~09429~^~334~^0.^2^^~1~^~A~^^^1^0.^0.^^^^~1~^~06/01/2003~
-~09429~^~337~^0.^2^^~1~^~A~^^^1^0.^0.^^^^~1~^~06/01/2003~
-~09429~^~338~^0.^2^^~1~^~A~^^^1^0.^0.^^^^~1~^~06/01/2003~
-~09429~^~417~^11.^10^2.^~1~^~A~^^^2^8.^17.^1^-18.^39.^~1, 2~^~06/01/2003~
-~09429~^~432~^11.^10^2.^~1~^~A~^^^2^8.^17.^1^-18.^39.^^~02/01/2007~
-~09430~^~208~^51.^0^^~4~^~NC~^^^^^^^^^^~02/01/2007~
-~09430~^~268~^215.^0^^~4~^~NC~^^^^^^^^^^~02/01/2007~
-~09430~^~301~^13.^10^0.^~1~^~A~^^^2^9.^18.^6^11.^15.^~2, 3~^~05/01/2003~
-~09430~^~304~^12.^10^0.^~1~^~A~^^^2^9.^17.^8^10.^14.^~2, 3~^~05/01/2003~
-~09430~^~305~^8.^10^0.^~1~^~A~^^^2^6.^11.^7^6.^8.^~2, 3~^~05/01/2003~
-~09430~^~306~^108.^10^2.^~1~^~A~^^^2^86.^130.^7^102.^112.^~2, 3~^~05/01/2003~
-~09430~^~307~^1.^0^^~4~^~BFZN~^~09266~^^^^^^^^^~06/01/2003~
-~09430~^~318~^57.^6^6.^~1~^~A~^^^2^28.^82.^4^37.^76.^~2, 3~^~05/01/2003~
-~09430~^~320~^3.^6^0.^~1~^~A~^^^2^1.^4.^4^1.^3.^~2, 3~^~05/01/2003~
-~09430~^~321~^34.^6^3.^~1~^~A~^^^2^17.^49.^4^22.^45.^~2, 3~^~05/01/2003~
-~09430~^~322~^0.^6^0.^~1~^~A~^^^2^0.^0.^^^^~1, 2, 3~^~05/01/2003~
-~09430~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~
-~09430~^~334~^0.^6^0.^~1~^~A~^^^2^0.^0.^^^^~1, 2, 3~^~05/01/2003~
-~09430~^~337~^0.^6^0.^~1~^~A~^^^2^0.^0.^^^^~1, 2, 3~^~05/01/2003~
-~09430~^~338~^0.^6^0.^~1~^~A~^^^2^0.^0.^^^^~1, 2, 3~^~05/01/2003~
-~09430~^~417~^19.^8^1.^~1~^~A~^^^2^8.^36.^3^15.^23.^~1, 2, 3~^~05/01/2003~
-~09430~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2003~
-~09430~^~432~^19.^8^1.^~1~^~A~^^^2^8.^36.^3^15.^23.^^~02/01/2007~
-~09430~^~435~^19.^0^^~4~^~NC~^^^^^^^^^^~02/01/2007~
-~09433~^~208~^47.^0^^~4~^~NC~^^^^^^^^^^~05/01/2006~
-~09433~^~268~^198.^0^^~4~^~NC~^^^^^^^^^^~05/01/2006~
-~09433~^~301~^30.^5^2.^~1~^~A~^^^2^25.^38.^3^23.^36.^~2, 3~^~05/01/2005~
-~09433~^~304~^10.^5^0.^~1~^~A~^^^2^9.^11.^3^9.^11.^~2, 3~^~05/01/2005~
-~09433~^~305~^21.^5^1.^~1~^~A~^^^2^18.^24.^3^17.^24.^~2, 3~^~05/01/2005~
-~09433~^~306~^177.^5^4.^~1~^~A~^^^2^149.^239.^3^161.^192.^~2, 3~^~05/01/2005~
-~09433~^~307~^1.^1^^~1~^~A~^^^^^^^^^^~05/01/2005~
-~09433~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~
-~09433~^~417~^24.^5^2.^~1~^~A~^^^2^16.^32.^3^15.^33.^~2, 3~^~05/01/2005~
-~09433~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2005~
-~09433~^~432~^24.^5^2.^~1~^~A~^^^2^16.^32.^3^15.^33.^^~05/01/2006~
-~09433~^~435~^24.^0^^~4~^~NC~^^^^^^^^^^~05/01/2006~
-~09434~^~208~^59.^0^^~4~^~NC~^^^^^^^^^^~03/01/2007~
-~09434~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2007~
-~09434~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2007~
-~09434~^~268~^245.^0^^~4~^~NC~^^^^^^^^^^~03/01/2007~
-~09434~^~301~^7.^2^^~1~^~A~^^^1^4.^11.^1^^^^~04/01/2006~
-~09434~^~304~^3.^2^^~1~^~A~^^^1^3.^3.^1^^^^~04/01/2006~
-~09434~^~305~^2.^2^^~1~^~A~^^^1^1.^3.^1^^^^~04/01/2006~
-~09434~^~306~^25.^2^^~1~^~A~^^^1^12.^38.^1^^^^~04/01/2006~
-~09434~^~307~^8.^2^^~1~^~A~^^^1^4.^12.^1^^^^~04/01/2006~
-~09434~^~318~^0.^1^^~1~^~A~^^^^^^^^^^~03/01/2007~
-~09434~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2007~
-~09434~^~320~^0.^1^^~1~^~A~^^^^^^^^^^~03/01/2007~
-~09434~^~321~^0.^2^^~1~^~A~^^^1^0.^0.^^^^~1~^~11/01/2006~
-~09434~^~322~^0.^2^^~1~^~A~^^^1^0.^0.^^^^~1~^~11/01/2006~
-~09434~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2009~
-~09434~^~334~^0.^2^^~1~^~A~^^^1^0.^0.^^^^~1~^~11/01/2006~
-~09434~^~337~^0.^2^^~1~^~A~^^^1^0.^0.^^^^~1~^~11/01/2006~
-~09434~^~338~^0.^1^^~1~^~A~^^^^^^^^^^~03/01/2007~
-~09434~^~417~^6.^2^^~1~^~A~^^^1^5.^6.^1^^^^~04/01/2006~
-~09434~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~11/01/2008~
-~09434~^~432~^6.^2^^~1~^~A~^^^1^5.^6.^1^^^^~04/01/2006~
-~09434~^~435~^6.^0^^~4~^~NC~^^^^^^^^^^~03/01/2009~
-~09434~^~601~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2007~
-~09435~^~208~^63.^0^^~4~^~NC~^^^^^^^^^^~05/01/2014~
-~09435~^~268~^262.^0^^~4~^~NC~^^^^^^^^^^~05/01/2014~
-~09435~^~301~^8.^1^^~1~^~A~^^^^^^^^^^~05/01/2014~
-~09435~^~304~^2.^1^^~1~^~A~^^^^^^^^^^~05/01/2014~
-~09435~^~305~^2.^1^^~1~^~A~^^^^^^^^^^~06/01/2006~
-~09435~^~306~^39.^1^^~1~^~A~^^^^^^^^^^~05/01/2014~
-~09435~^~307~^6.^1^^~1~^~A~^^^^^^^^^^~05/01/2014~
-~09435~^~318~^106.^0^^~8~^~LC~^^^^^^^^^^~05/01/2014~
-~09435~^~337~^35.^1^^~1~^~A~^^^^^^^^^^~05/01/2014~
-~09435~^~338~^0.^1^^~1~^~A~^^^^^^^^^^~11/01/2006~
-~09435~^~417~^3.^1^^~1~^~A~^^^^^^^^^^~06/01/2006~
-~09435~^~431~^0.^1^^~7~^~Z~^^^^^^^^^^~11/01/2008~
-~09435~^~432~^3.^1^^~1~^~A~^^^^^^^^^^~06/01/2006~
-~09435~^~435~^3.^0^^~4~^~NC~^^^^^^^^^^~11/01/2008~
-~09435~^~601~^0.^0^^~8~^~LC~^^^^^^^^^^~05/01/2014~
-~09436~^~208~^51.^0^^~4~^~NC~^^^^^^^^^^~03/01/2007~
-~09436~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2007~
-~09436~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2007~
-~09436~^~268~^212.^0^^~4~^~NC~^^^^^^^^^^~03/01/2007~
-~09436~^~301~^17.^2^^~1~^~A~^^^1^9.^24.^1^^^^~06/01/2006~
-~09436~^~304~^3.^2^^~1~^~A~^^^1^2.^4.^1^^^^~06/01/2006~
-~09436~^~305~^2.^2^^~1~^~A~^^^1^2.^2.^1^^^^~06/01/2006~
-~09436~^~306~^24.^2^^~1~^~A~^^^1^23.^26.^1^^^^~06/01/2006~
-~09436~^~307~^5.^2^^~1~^~A~^^^1^2.^8.^1^^^^~06/01/2006~
-~09436~^~318~^692.^0^^~1~^~AS~^^^^^^^^^^~06/01/2006~
-~09436~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2007~
-~09436~^~320~^35.^0^^~1~^~AS~^^^^^^^^^^~06/01/2006~
-~09436~^~321~^402.^2^^~1~^~A~^^^1^328.^476.^1^^^^~06/01/2006~
-~09436~^~322~^0.^2^^~1~^~A~^^^1^0.^0.^^^^~1~^~06/01/2006~
-~09436~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2009~
-~09436~^~334~^26.^2^^~1~^~A~^^^1^23.^29.^1^^^^~06/01/2006~
-~09436~^~337~^0.^2^^~1~^~A~^^^1^0.^0.^^^^~1~^~06/01/2006~
-~09436~^~338~^0.^2^^~1~^~A~^^^1^0.^0.^^^^^~11/01/2006~
-~09436~^~417~^7.^2^^~1~^~A~^^^1^5.^9.^1^^^^~06/01/2006~
-~09436~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~11/01/2008~
-~09436~^~432~^7.^2^^~1~^~A~^^^1^5.^9.^1^^^^~06/01/2006~
-~09436~^~435~^7.^0^^~4~^~NC~^^^^^^^^^^~11/01/2008~
-~09436~^~601~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2007~
-~09437~^~208~^57.^0^^~4~^~NC~^^^^^^^^^^~11/01/2006~
-~09437~^~268~^240.^0^^~4~^~NC~^^^^^^^^^^~11/01/2006~
-~09437~^~301~^10.^2^^~1~^~A~^^^1^7.^12.^1^^^^~04/01/2006~
-~09437~^~304~^4.^2^^~1~^~A~^^^1^4.^4.^1^^^^~04/01/2006~
-~09437~^~305~^2.^2^^~1~^~A~^^^1^2.^3.^1^^^^~04/01/2006~
-~09437~^~306~^27.^2^^~1~^~A~^^^1^21.^33.^1^^^^~04/01/2006~
-~09437~^~307~^7.^2^^~1~^~A~^^^1^4.^10.^1^^^^~04/01/2006~
-~09437~^~318~^0.^0^^~1~^~AS~^^^^^^^^^^~06/01/2006~
-~09437~^~320~^0.^0^^~1~^~AS~^^^^^^^^^^~06/01/2006~
-~09437~^~321~^0.^2^^~1~^~A~^^^1^0.^0.^^^^~1~^~06/01/2006~
-~09437~^~322~^0.^2^^~1~^~A~^^^1^0.^0.^^^^~1~^~06/01/2006~
-~09437~^~334~^0.^2^^~1~^~A~^^^1^0.^0.^^^^~1~^~06/01/2006~
-~09437~^~337~^0.^2^^~1~^~A~^^^1^0.^0.^^^^~1~^~06/01/2006~
-~09437~^~338~^0.^2^^~1~^~A~^^^1^0.^0.^^^^^~11/01/2006~
-~09437~^~417~^1.^2^^~1~^~A~^^^1^1.^1.^1^^^~1~^~04/01/2006~
-~09437~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~11/01/2008~
-~09437~^~432~^1.^2^^~1~^~A~^^^1^1.^1.^1^^^~1~^~04/01/2006~
-~09437~^~435~^1.^0^^~4~^~NC~^^^^^^^^^^~11/01/2008~
-~09437~^~601~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2006~
-~09442~^~208~^54.^0^^~4~^~NC~^^^^^^^^^^~06/01/2008~
-~09442~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2008~
-~09442~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2008~
-~09442~^~268~^228.^0^^~4~^~NC~^^^^^^^^^^~06/01/2008~
-~09442~^~301~^11.^3^1.^~1~^~A~^^^1^8.^14.^2^3.^18.^~2, 3~^~06/01/2008~
-~09442~^~304~^7.^3^0.^~1~^~A~^^^1^6.^8.^2^3.^10.^~2, 3~^~06/01/2008~
-~09442~^~305~^11.^3^0.^~1~^~A~^^^1^10.^13.^2^7.^14.^~2, 3~^~06/01/2008~
-~09442~^~306~^214.^3^5.^~1~^~A~^^^1^204.^222.^2^191.^236.^~2, 3~^~06/01/2008~
-~09442~^~307~^9.^3^3.^~1~^~A~^^^1^2.^13.^2^-6.^24.^~1, 2, 3~^~06/01/2008~
-~09442~^~318~^0.^0^^~1~^~AS~^^^^^^^^^^~06/01/2008~
-~09442~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2008~
-~09442~^~320~^0.^0^^~1~^~AS~^^^^^^^^^^~06/01/2008~
-~09442~^~321~^0.^2^^~1~^~A~^^^1^0.^0.^1^^^^~06/01/2008~
-~09442~^~322~^0.^2^^~1~^~A~^^^1^0.^0.^1^^^^~06/01/2008~
-~09442~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2009~
-~09442~^~334~^0.^2^^~1~^~A~^^^1^0.^0.^^^^~1~^~06/01/2008~
-~09442~^~337~^0.^2^^~1~^~A~^^^1^0.^0.^^^^~1~^~06/01/2008~
-~09442~^~338~^0.^2^^~1~^~A~^^^1^0.^0.^1^^^^~06/01/2008~
-~09442~^~417~^24.^0^^~4~^~BFSN~^~09286~^^^^^^^^^~06/01/2008~
-~09442~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2008~
-~09442~^~432~^24.^0^^~4~^~BFSN~^^^^^^^^^^~06/01/2008~
-~09442~^~435~^24.^0^^~4~^~NC~^^^^^^^^^^~03/01/2009~
-~09442~^~601~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2008~
-~09443~^~208~^50.^0^^~4~^~NC~^^^^^^^^^^~07/01/2008~
-~09443~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2011~
-~09443~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2011~
-~09443~^~268~^211.^0^^~4~^~NC~^^^^^^^^^^~07/01/2008~
-~09443~^~301~^11.^2^^~1~^~A~^^^1^11.^11.^1^^^^~06/01/2008~
-~09443~^~304~^7.^2^^~1~^~A~^^^1^6.^8.^1^^^^~06/01/2008~
-~09443~^~305~^9.^2^^~1~^~A~^^^1^9.^10.^1^^^^~06/01/2008~
-~09443~^~306~^96.^2^^~1~^~A~^^^1^95.^97.^1^^^^~06/01/2008~
-~09443~^~307~^7.^2^^~1~^~A~^^^1^5.^8.^1^^^^~06/01/2008~
-~09443~^~318~^4.^0^^~4~^~RA~^^^^^^^^^^~05/01/2011~
-~09443~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2011~
-~09443~^~320~^0.^0^^~4~^~RA~^^^^^^^^^^~05/01/2011~
-~09443~^~321~^2.^0^^~4~^~RA~^^^^^^^^^^~05/01/2011~
-~09443~^~322~^0.^0^^~4~^~RA~^^^^^^^^^^~05/01/2011~
-~09443~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2011~
-~09443~^~334~^0.^0^^~4~^~RA~^^^^^^^^^^~05/01/2011~
-~09443~^~337~^0.^0^^~4~^~RA~^^^^^^^^^^~05/01/2011~
-~09443~^~338~^33.^0^^~4~^~RA~^^^^^^^^^^~05/01/2011~
-~09443~^~417~^0.^0^^~4~^~RA~^^^^^^^^^^~05/01/2011~
-~09443~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2011~
-~09443~^~432~^0.^0^^~4~^~RA~^^^^^^^^^^~05/01/2011~
-~09443~^~435~^0.^0^^~4~^~NC~^^^^^^^^^^~05/01/2011~
-~09443~^~601~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2011~
-~09444~^~208~^52.^0^^~4~^~NC~^^^^^^^^^^~04/01/2009~
-~09444~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2009~
-~09444~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2009~
-~09444~^~268~^219.^0^^~4~^~NC~^^^^^^^^^^~04/01/2009~
-~09444~^~301~^72.^1^^~1~^~A~^^^^^^^^^^~06/01/2008~
-~09444~^~304~^6.^1^^~1~^~A~^^^^^^^^^^~06/01/2008~
-~09444~^~305~^11.^1^^~1~^~A~^^^^^^^^^^~06/01/2008~
-~09444~^~306~^89.^1^^~1~^~A~^^^^^^^^^^~06/01/2008~
-~09444~^~307~^5.^1^^~1~^~A~^^^^^^^^^^~06/01/2008~
-~09444~^~318~^1.^0^^~4~^~NC~^^^^^^^^^^~04/01/2009~
-~09444~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2009~
-~09444~^~320~^0.^0^^~4~^~NC~^^^^^^^^^^~04/01/2009~
-~09444~^~321~^0.^0^^~4~^~BFZN~^~09400~^^^^^^^^^~04/01/2009~
-~09444~^~322~^0.^0^^~4~^~BFZN~^~09400~^^^^^^^^^~04/01/2009~
-~09444~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2009~
-~09444~^~334~^0.^0^^~4~^~BFZN~^~09400~^^^^^^^^^~04/01/2009~
-~09444~^~337~^0.^0^^~4~^~BFZN~^~09400~^^^^^^^^^~04/01/2009~
-~09444~^~338~^16.^0^^~4~^~BFZN~^~09400~^^^^^^^^^~04/01/2009~
-~09444~^~417~^0.^0^^~4~^~BFZN~^~09400~^^^^^^^^^~04/01/2009~
-~09444~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2009~
-~09444~^~432~^0.^0^^~4~^~BFZN~^~09400~^^^^^^^^^~04/01/2009~
-~09444~^~435~^0.^0^^~4~^~NC~^^^^^^^^^^~04/01/2009~
-~09444~^~601~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2009~
-~09446~^~208~^309.^0^^~4~^~NC~^^^^^^^^^^~07/01/2009~
-~09446~^~268~^1293.^0^^~4~^~NC~^^^^^^^^^^~07/01/2009~
-~09446~^~301~^4.^3^0.^~1~^~A~^^^2^3.^4.^1^2.^4.^~2~^~07/01/2009~
-~09446~^~304~^58.^3^10.^~1~^~A~^^^2^48.^86.^1^-78.^195.^~2~^~07/01/2009~
-~09446~^~305~^44.^3^3.^~1~^~A~^^^2^40.^48.^1^5.^83.^~2~^~07/01/2009~
-~09446~^~306~^482.^3^18.^~1~^~A~^^^2^456.^545.^1^251.^713.^~2~^~07/01/2009~
-~09446~^~307~^2.^3^1.^~1~^~A~^^^2^1.^4.^1^-18.^22.^~1, 2~^~07/01/2009~
-~09446~^~318~^1192.^3^^~1~^~A~^^^1^1053.^1348.^^^^~2~^~07/01/2009~
-~09446~^~320~^60.^3^^~1~^~A~^^^1^53.^67.^^^^~2~^~07/01/2009~
-~09446~^~321~^548.^3^^~1~^~A~^^^1^460.^616.^^^^~2~^~07/01/2009~
-~09446~^~322~^332.^3^^~1~^~A~^^^1^268.^385.^^^^~2~^~07/01/2009~
-~09446~^~334~^2.^3^^~1~^~A~^^^1^1.^5.^^^^~1, 2~^~07/01/2009~
-~09446~^~417~^15.^1^^~1~^~A~^^^^^^^^^^~07/01/2009~
-~09446~^~432~^15.^1^^~1~^~A~^^^^^^^^^^~07/01/2009~
-~09447~^~208~^236.^0^^~4~^~NC~^^^^^^^^^^~07/01/2009~
-~09447~^~268~^989.^0^^~4~^~NC~^^^^^^^^^^~07/01/2009~
-~09447~^~301~^6.^3^0.^~1~^~A~^^^1^5.^7.^2^4.^7.^~2, 3~^~07/01/2009~
-~09447~^~304~^45.^3^5.^~1~^~A~^^^1^37.^55.^2^21.^67.^~2, 3~^~07/01/2009~
-~09447~^~305~^43.^3^2.^~1~^~A~^^^1^37.^47.^2^29.^55.^~2, 3~^~07/01/2009~
-~09447~^~306~^507.^3^31.^~1~^~A~^^^1^446.^550.^2^372.^642.^~2, 3~^~07/01/2009~
-~09447~^~307~^6.^3^1.^~1~^~A~^^^1^4.^7.^2^0.^11.^~1, 2, 3~^~07/01/2009~
-~09447~^~318~^1318.^1^^~1~^~A~^^^^^^^^^^~07/01/2009~
-~09447~^~320~^66.^1^^~1~^~A~^^^^^^^^^^~07/01/2009~
-~09447~^~321~^582.^1^^~1~^~A~^^^^^^^^^^~07/01/2009~
-~09447~^~322~^407.^1^^~1~^~A~^^^^^^^^^^~07/01/2009~
-~09447~^~334~^11.^1^^~1~^~A~^^^^^^^^^^~07/01/2009~
-~09447~^~337~^0.^1^^~1~^~A~^^^^^^^^^~1~^~07/01/2009~
-~09447~^~338~^100.^1^^~1~^~A~^^^^^^^^^^~07/01/2009~
-~09448~^~208~^95.^0^^~4~^~NC~^^^^^^^^^^~07/01/2010~
-~09448~^~268~^396.^0^^~4~^~NC~^^^^^^^^^^~07/01/2010~
-~09448~^~301~^42.^1^^~1~^~A~^^^^^^^^^^~07/01/2010~
-~09448~^~304~^16.^1^^~1~^~A~^^^^^^^^^^~07/01/2010~
-~09448~^~305~^7.^1^^~1~^~A~^^^^^^^^^^~07/01/2010~
-~09448~^~306~^194.^1^^~1~^~A~^^^^^^^^^^~07/01/2010~
-~09448~^~307~^8.^1^^~1~^~A~^^^^^^^^^^~07/01/2010~
-~09449~^~208~^73.^0^^~4~^~NC~^^^^^^^^^^~08/01/2010~
-~09449~^~268~^306.^0^^~4~^~NC~^^^^^^^^^^~08/01/2010~
-~09449~^~301~^46.^5^1.^~1~^~A~^^^1^44.^50.^4^42.^49.^~2, 3~^~07/01/2010~
-~09449~^~304~^20.^5^0.^~1~^~A~^^^1^19.^22.^4^19.^21.^~2, 3~^~07/01/2010~
-~09449~^~305~^10.^5^0.^~1~^~A~^^^1^9.^13.^4^8.^11.^~2, 3~^~07/01/2010~
-~09449~^~306~^244.^5^11.^~1~^~A~^^^1^215.^271.^4^211.^276.^~2, 3~^~07/01/2010~
-~09449~^~307~^3.^5^0.^~1~^~A~^^^1^2.^5.^4^1.^4.^~1, 2, 3~^~07/01/2010~
-~09449~^~318~^74.^5^2.^~1~^~A~^^^1^63.^79.^4^66.^81.^~2, 3~^~07/01/2010~
-~09449~^~320~^4.^5^0.^~1~^~A~^^^1^3.^4.^4^3.^4.^~2, 3~^~07/01/2010~
-~09449~^~321~^40.^5^1.^~1~^~A~^^^1^35.^44.^4^35.^44.^~2, 3~^~07/01/2010~
-~09449~^~322~^3.^5^0.^~1~^~A~^^^1^3.^5.^4^2.^4.^~2, 3~^~07/01/2010~
-~09449~^~334~^5.^5^0.^~1~^~A~^^^1^4.^6.^4^4.^5.^~2, 3~^~07/01/2010~
-~09449~^~337~^0.^5^0.^~1~^~A~^^^1^0.^0.^^^^~1, 2, 3~^~07/01/2010~
-~09449~^~338~^569.^5^14.^~1~^~A~^^^1^529.^604.^4^528.^610.^~2, 3~^~07/01/2010~
-~09449~^~417~^8.^3^0.^~1~^~AS~^^^1^7.^9.^2^6.^9.^~2, 3~^~07/01/2010~
-~09449~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~08/01/2010~
-~09449~^~432~^8.^3^0.^~1~^~AS~^^^1^7.^9.^2^6.^9.^~2, 3~^~07/01/2010~
-~09449~^~435~^8.^0^^~4~^~NC~^^^^^^^^^^~08/01/2010~
-~09450~^~208~^25.^0^^~4~^~NC~^^^^^^^^^^~04/01/2010~
-~09450~^~268~^103.^0^^~4~^~NC~^^^^^^^^^^~04/01/2010~
-~09450~^~301~^8.^3^1.^~1~^~A~^^^1^5.^10.^2^1.^13.^~2, 3~^~04/01/2010~
-~09450~^~304~^11.^3^2.^~1~^~A~^^^1^7.^16.^2^0.^22.^~2, 3~^~04/01/2010~
-~09450~^~305~^12.^3^2.^~1~^~A~^^^1^8.^18.^2^0.^24.^~2, 3~^~04/01/2010~
-~09450~^~306~^200.^3^6.^~1~^~A~^^^1^191.^212.^2^173.^226.^~2, 3~^~04/01/2010~
-~09450~^~307~^4.^3^2.^~1~^~A~^^^1^2.^9.^2^-6.^14.^~1, 2, 3~^~04/01/2010~
-~09450~^~318~^568.^3^148.^~1~^~A~^^^1^357.^854.^2^-70.^1206.^~2, 3~^~04/01/2010~
-~09450~^~320~^28.^3^7.^~1~^~A~^^^1^18.^43.^2^-3.^60.^~2, 3~^~04/01/2010~
-~09450~^~321~^333.^3^88.^~1~^~A~^^^1^207.^503.^2^-45.^712.^~2, 3~^~04/01/2010~
-~09450~^~322~^4.^3^0.^~1~^~A~^^^1^3.^6.^2^1.^7.^~2, 3~^~04/01/2010~
-~09450~^~334~^10.^3^1.^~1~^~A~^^^1^7.^13.^2^3.^17.^~2, 3~^~04/01/2010~
-~09450~^~337~^0.^3^0.^~1~^~A~^^^1^0.^0.^^^^~1, 2, 3~^~04/01/2010~
-~09450~^~338~^299.^3^19.^~1~^~A~^^^1^259.^320.^2^213.^384.^~2, 3~^~04/01/2010~
-~09450~^~417~^3.^0^^~1~^~AS~^^^^^^^^^^~04/01/2010~
-~09450~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2010~
-~09450~^~432~^3.^0^^~1~^~AS~^^^^^^^^^^~04/01/2010~
-~09450~^~435~^3.^0^^~4~^~NC~^^^^^^^^^^~04/01/2010~
-~09451~^~208~^44.^0^^~4~^~NC~^^^^^^^^^^~07/01/2010~
-~09451~^~268~^183.^0^^~4~^~NC~^^^^^^^^^^~07/01/2010~
-~09451~^~301~^13.^2^^~1~^~A~^^^1^13.^13.^1^^^^~07/01/2009~
-~09451~^~304~^40.^2^^~1~^~A~^^^1^37.^43.^1^^^^~07/01/2009~
-~09451~^~305~^37.^2^^~1~^~A~^^^1^32.^42.^1^^^^~07/01/2009~
-~09451~^~306~^123.^2^^~1~^~A~^^^1^122.^123.^1^^^^~07/01/2009~
-~09451~^~307~^2.^2^^~1~^~A~^^^1^2.^2.^1^^^^~07/01/2009~
-~09451~^~318~^147.^2^^~1~^~A~^^^1^135.^159.^1^^^^~07/01/2009~
-~09451~^~320~^7.^0^^~1~^~AS~^^^^^^^^^^~07/01/2009~
-~09451~^~321~^88.^2^^~1~^~A~^^^1^81.^95.^1^^^^~07/01/2009~
-~09451~^~417~^3.^2^^~1~^~A~^^^1^3.^3.^1^^^^~07/01/2009~
-~09451~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~07/01/2010~
-~09451~^~432~^3.^2^^~1~^~A~^^^^^^^^^^~07/01/2010~
-~09451~^~435~^3.^0^^~4~^~NC~^^^^^^^^^^~07/01/2010~
-~09452~^~208~^51.^0^^~4~^~NC~^^^^^^^^^^~03/01/2011~
-~09452~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2011~
-~09452~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2011~
-~09452~^~268~^214.^0^^~4~^~NC~^^^^^^^^^^~03/01/2011~
-~09452~^~301~^8.^1^^~8~^~LC~^^^^^^^^^^~03/01/2011~
-~09452~^~304~^10.^0^^~4~^~FLC~^^^^^^^^^^~03/01/2011~
-~09452~^~305~^11.^0^^~4~^~FLC~^^^^^^^^^^~03/01/2011~
-~09452~^~306~^150.^1^^~8~^~LC~^^^^^^^^^^~03/01/2011~
-~09452~^~307~^4.^1^^~8~^~LC~^^^^^^^^^^~03/01/2011~
-~09452~^~318~^17.^0^^~4~^~FLC~^^^^^^^^^^~03/01/2011~
-~09452~^~319~^0.^0^^~4~^~FLC~^^^^^^^^^^~03/01/2011~
-~09452~^~320~^1.^0^^~4~^~FLC~^^^^^^^^^^~03/01/2011~
-~09452~^~321~^5.^0^^~4~^~FLC~^^^^^^^^^^~03/01/2011~
-~09452~^~322~^3.^0^^~4~^~FLC~^^^^^^^^^^~03/01/2011~
-~09452~^~324~^0.^0^^~4~^~FLC~^^^^^^^^^^~03/01/2011~
-~09452~^~334~^9.^0^^~4~^~FLC~^^^^^^^^^^~03/01/2011~
-~09452~^~337~^0.^0^^~4~^~FLC~^^^^^^^^^^~03/01/2011~
-~09452~^~338~^14.^0^^~4~^~FLC~^^^^^^^^^^~03/01/2011~
-~09452~^~417~^10.^0^^~4~^~FLC~^^^^^^^^^^~03/01/2011~
-~09452~^~431~^0.^0^^~4~^~FLC~^^^^^^^^^^~03/01/2011~
-~09452~^~432~^10.^0^^~4~^~FLC~^^^^^^^^^^~03/01/2011~
-~09452~^~435~^10.^0^^~4~^~NC~^^^^^^^^^^~03/01/2011~
-~09452~^~601~^0.^0^^~4~^~FLC~^^^^^^^^^^~03/01/2011~
-~09500~^~208~^59.^0^^~4~^~NC~^^^^^^^^^^~08/01/2012~
-~09500~^~268~^247.^0^^~4~^~NC~^^^^^^^^^^~08/01/2012~
-~09500~^~301~^6.^5^0.^~1~^~A~^^^3^4.^9.^1^0.^12.^~2, 3~^~08/01/2012~
-~09500~^~304~^5.^5^0.^~1~^~A~^^^3^5.^5.^1^4.^5.^~2, 3~^~08/01/2012~
-~09500~^~305~^12.^4^0.^~1~^~A~^^^2^11.^12.^2^9.^13.^~2, 3~^~08/01/2012~
-~09500~^~306~^104.^5^2.^~1~^~A~^^^3^94.^109.^1^65.^141.^~2, 3~^~08/01/2012~
-~09500~^~307~^1.^1^^~1~^~A~^^^^^^^^^^~08/01/2012~
-~09500~^~318~^55.^4^3.^~1~^~A~^^^2^48.^60.^1^32.^77.^~2, 3~^~08/01/2012~
-~09500~^~320~^3.^4^0.^~1~^~A~^^^2^2.^3.^1^1.^3.^~2, 3~^~08/01/2012~
-~09500~^~321~^27.^4^1.^~1~^~A~^^^2^25.^29.^2^20.^33.^~2, 3~^~08/01/2012~
-~09500~^~322~^0.^4^0.^~1~^~A~^^^2^0.^0.^^^^~1, 2, 3~^~08/01/2012~
-~09500~^~334~^12.^4^1.^~1~^~A~^^^2^7.^15.^1^-1.^25.^~2, 3~^~08/01/2012~
-~09500~^~337~^0.^4^0.^~1~^~A~^^^2^0.^0.^^^^~1, 2, 3~^~08/01/2012~
-~09500~^~338~^31.^4^1.^~1~^~A~^^^2^22.^40.^2^21.^39.^~2, 3~^~08/01/2012~
-~09500~^~417~^3.^0^^~4~^~BFZN~^^^^^^^^^^~08/01/2012~
-~09500~^~432~^3.^0^^~4~^~BFZN~^^^^^^^^^^~08/01/2012~
-~09501~^~208~^57.^0^^~4~^~NC~^^^^^^^^^^~08/01/2012~
-~09501~^~268~^238.^0^^~4~^~NC~^^^^^^^^^^~08/01/2012~
-~09501~^~301~^6.^5^0.^~1~^~A~^^^3^5.^7.^1^4.^7.^~2, 3~^~08/01/2012~
-~09501~^~304~^5.^5^0.^~1~^~A~^^^3^4.^6.^2^4.^5.^~2, 3~^~08/01/2012~
-~09501~^~305~^10.^4^0.^~1~^~A~^^^2^10.^11.^2^8.^12.^~2, 3~^~08/01/2012~
-~09501~^~306~^100.^5^2.^~1~^~A~^^^3^88.^109.^1^75.^124.^~2, 3~^~08/01/2012~
-~09501~^~307~^2.^1^^~1~^~A~^^^^^^^^^^~08/01/2012~
-~09501~^~318~^51.^4^5.^~1~^~A~^^^2^38.^65.^2^29.^72.^~2, 3~^~08/01/2012~
-~09501~^~320~^3.^4^0.^~1~^~A~^^^2^2.^3.^2^1.^3.^~2, 3~^~08/01/2012~
-~09501~^~321~^25.^4^2.^~1~^~A~^^^2^17.^31.^2^11.^38.^~2, 3~^~08/01/2012~
-~09501~^~322~^0.^4^0.^~1~^~A~^^^2^0.^0.^^^^~1, 2, 3~^~08/01/2012~
-~09501~^~334~^12.^4^1.^~1~^~A~^^^2^10.^16.^1^-1.^25.^~2, 3~^~08/01/2012~
-~09501~^~337~^0.^4^0.^~1~^~A~^^^2^0.^0.^^^^~1, 2, 3~^~08/01/2012~
-~09501~^~338~^28.^4^2.^~1~^~A~^^^2^23.^34.^2^11.^43.^~2, 3~^~08/01/2012~
-~09501~^~417~^3.^0^^~4~^~BFZN~^^^^^^^^^^~08/01/2012~
-~09501~^~432~^3.^0^^~4~^~BFZN~^^^^^^^^^^~08/01/2012~
-~09502~^~208~^58.^0^^~4~^~NC~^^^^^^^^^^~08/01/2012~
-~09502~^~268~^242.^0^^~4~^~NC~^^^^^^^^^^~08/01/2012~
-~09502~^~301~^5.^5^0.^~1~^~A~^^^3^4.^8.^1^-3.^13.^~2, 3~^~08/01/2012~
-~09502~^~304~^5.^5^0.^~1~^~A~^^^3^5.^6.^1^4.^6.^~2, 3~^~08/01/2012~
-~09502~^~305~^12.^4^0.^~1~^~A~^^^2^11.^13.^2^10.^13.^~2, 3~^~08/01/2012~
-~09502~^~306~^120.^5^1.^~1~^~A~^^^3^96.^136.^1^99.^141.^~2, 3~^~08/01/2012~
-~09502~^~307~^1.^1^^~1~^~A~^^^^^^^^^^~08/01/2012~
-~09502~^~318~^100.^4^6.^~1~^~A~^^^2^75.^135.^1^25.^173.^~2, 3~^~08/01/2012~
-~09502~^~320~^5.^4^0.^~1~^~A~^^^2^4.^7.^1^1.^8.^~2, 3~^~08/01/2012~
-~09502~^~321~^59.^4^4.^~1~^~A~^^^2^45.^81.^1^1.^116.^~2, 3~^~08/01/2012~
-~09502~^~322~^0.^4^0.^~1~^~A~^^^2^0.^0.^^^^~1, 2, 3~^~08/01/2012~
-~09502~^~334~^2.^4^2.^~1~^~A~^^^2^0.^8.^1^-23.^27.^~1, 2, 3~^~08/01/2012~
-~09502~^~337~^0.^4^0.^~1~^~A~^^^2^0.^0.^^^^~1, 2, 3~^~08/01/2012~
-~09502~^~338~^64.^4^4.^~1~^~A~^^^2^49.^73.^1^23.^104.^~2, 3~^~08/01/2012~
-~09502~^~417~^3.^0^^~4~^~BFZN~^^^^^^^^^^~08/01/2012~
-~09502~^~432~^3.^0^^~4~^~BFZN~^^^^^^^^^^~08/01/2012~
-~09503~^~208~^57.^0^^~4~^~NC~^^^^^^^^^^~08/01/2012~
-~09503~^~268~^237.^0^^~4~^~NC~^^^^^^^^^^~08/01/2012~
-~09503~^~301~^7.^4^0.^~1~^~A~^^^2^6.^8.^1^2.^11.^~2, 3~^~08/01/2012~
-~09503~^~304~^5.^4^0.^~1~^~A~^^^2^5.^5.^2^5.^5.^~2, 3~^~08/01/2012~
-~09503~^~305~^11.^4^0.^~1~^~A~^^^2^10.^11.^1^9.^11.^~2, 3~^~08/01/2012~
-~09503~^~306~^108.^4^3.^~1~^~A~^^^2^97.^117.^2^91.^123.^~2, 3~^~08/01/2012~
-~09503~^~307~^1.^0^^~4~^~BFZN~^^^^^^^^^^~08/01/2012~
-~09503~^~318~^28.^1^^~1~^~A~^^^^^^^^^^~08/01/2012~
-~09503~^~320~^1.^1^^~1~^~A~^^^^^^^^^^~08/01/2012~
-~09503~^~321~^11.^1^^~1~^~A~^^^^^^^^^~1~^~08/01/2012~
-~09503~^~322~^0.^1^^~1~^~A~^^^^^^^^^~1~^~08/01/2012~
-~09503~^~334~^11.^1^^~1~^~A~^^^^^^^^^~1~^~08/01/2012~
-~09503~^~337~^0.^1^^~1~^~A~^^^^^^^^^~1~^~08/01/2012~
-~09503~^~338~^11.^1^^~1~^~A~^^^^^^^^^~1~^~08/01/2012~
-~09503~^~417~^3.^0^^~4~^~BFZN~^^^^^^^^^^~08/01/2012~
-~09503~^~432~^3.^0^^~4~^~BFZN~^^^^^^^^^^~08/01/2012~
-~09504~^~208~^63.^0^^~4~^~NC~^^^^^^^^^^~08/01/2012~
-~09504~^~268~^265.^0^^~4~^~NC~^^^^^^^^^^~08/01/2012~
-~09504~^~301~^7.^4^0.^~1~^~A~^^^2^6.^8.^1^4.^8.^~2, 3~^~08/01/2012~
-~09504~^~304~^5.^4^0.^~1~^~A~^^^2^5.^5.^1^4.^5.^~2, 3~^~08/01/2012~
-~09504~^~305~^13.^4^0.^~1~^~A~^^^2^11.^13.^1^6.^18.^~2, 3~^~08/01/2012~
-~09504~^~306~^109.^4^4.^~1~^~A~^^^2^90.^126.^2^84.^133.^~2, 3~^~08/01/2012~
-~09504~^~307~^1.^0^^~4~^~BFZN~^^^^^^^^^^~08/01/2012~
-~09504~^~318~^38.^1^^~1~^~A~^^^^^^^^^^~08/01/2012~
-~09504~^~320~^2.^1^^~1~^~A~^^^^^^^^^^~08/01/2012~
-~09504~^~321~^17.^1^^~1~^~A~^^^^^^^^^^~08/01/2012~
-~09504~^~322~^0.^1^^~1~^~A~^^^^^^^^^~1~^~08/01/2012~
-~09504~^~334~^11.^1^^~1~^~A~^^^^^^^^^~1~^~08/01/2012~
-~09504~^~337~^0.^1^^~1~^~A~^^^^^^^^^~1~^~08/01/2012~
-~09504~^~338~^11.^1^^~1~^~A~^^^^^^^^^~1~^~08/01/2012~
-~09504~^~417~^3.^0^^~4~^~BFZN~^^^^^^^^^^~08/01/2012~
-~09504~^~432~^3.^0^^~4~^~BFZN~^^^^^^^^^^~08/01/2012~
-~09506~^~208~^49.^0^^~4~^~NC~^^^^^^^^^^~03/01/2014~
-~09506~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2014~
-~09506~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2014~
-~09506~^~268~^203.^0^^~4~^~NC~^^^^^^^^^^~03/01/2014~
-~09506~^~301~^146.^0^^~8~^~LC~^^^^^^^^^^~03/01/2014~
-~09506~^~304~^11.^32^0.^~1~^~A~^^^6^9.^13.^5^10.^11.^~2~^~03/01/2014~
-~09506~^~305~^17.^13^1.^~1~^~A~^^^4^13.^20.^3^13.^21.^~2~^~03/01/2014~
-~09506~^~306~^178.^32^1.^~1~^~A~^^^6^140.^200.^5^174.^181.^~2~^~03/01/2014~
-~09506~^~307~^2.^28^0.^~1~^~A~^^^6^0.^6.^5^1.^3.^~1, 2~^~03/01/2014~
-~09506~^~318~^417.^0^^~8~^~LC~^^^^^^^^^^~03/01/2014~
-~09506~^~319~^112.^0^^~4~^~NR~^^^^^^^^^^~03/01/2014~
-~09506~^~320~^114.^0^^~4~^~NC~^^^^^^^^^^~03/01/2014~
-~09506~^~321~^8.^3^0.^~1~^~A~^^^1^8.^8.^^^^~1, 2, 3~^~03/01/2014~
-~09506~^~322~^8.^3^0.^~1~^~A~^^^1^8.^8.^^^^~1, 2, 3~^~03/01/2014~
-~09506~^~324~^42.^0^^~8~^~LC~^^^^^^^^^^~03/01/2014~
-~09506~^~334~^27.^3^9.^~1~^~A~^^^1^8.^41.^2^-15.^69.^~2, 3~^~03/01/2014~
-~09506~^~337~^0.^3^0.^~1~^~A~^^^1^0.^0.^^^^~1, 2, 3~^~03/01/2014~
-~09506~^~338~^27.^3^6.^~1~^~A~^^^1^16.^38.^2^0.^54.^~2, 3~^~03/01/2014~
-~09506~^~417~^19.^6^1.^~1~^~A~^^^1^15.^26.^5^14.^22.^~2, 3~^~03/01/2014~
-~09506~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2014~
-~09506~^~432~^19.^6^1.^~1~^~A~^^^1^15.^26.^5^14.^22.^^~03/01/2014~
-~09506~^~435~^19.^0^^~4~^~NC~^^^^^^^^^^~03/01/2014~
-~09506~^~601~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2014~
-~09507~^~208~^63.^0^^~8~^~LC~^^^^^^^^^^~04/01/2014~
-~09507~^~268~^262.^0^^~8~^~LC~^^^^^^^^^^~04/01/2014~
-~09507~^~301~^8.^0^^~8~^~LC~^^^^^^^^^^~04/01/2014~
-~09507~^~306~^142.^0^^~8~^~LC~^^^^^^^^^^~04/01/2014~
-~09507~^~307~^4.^0^^~8~^~LC~^^^^^^^^^^~04/01/2014~
-~09507~^~318~^2083.^0^^~8~^~LC~^^^^^^^^^^~04/01/2014~
-~09507~^~601~^0.^0^^~8~^~LC~^^^^^^^^^^~04/01/2014~
-~09508~^~208~^53.^0^^~4~^~NC~^^^^^^^^^^~06/01/2015~
-~09508~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2015~
-~09508~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2015~
-~09508~^~268~^223.^0^^~4~^~NC~^^^^^^^^^^~06/01/2015~
-~09508~^~301~^11.^2^^~1~^~A~^^^1^11.^12.^1^^^^~06/01/2015~
-~09508~^~304~^10.^2^^~1~^~A~^^^1^10.^10.^1^^^^~06/01/2015~
-~09508~^~305~^15.^2^^~1~^~A~^^^1^15.^16.^1^^^^~06/01/2015~
-~09508~^~306~^165.^2^^~1~^~A~^^^1^162.^168.^1^^^^~06/01/2015~
-~09508~^~307~^6.^2^^~1~^~A~^^^1^6.^6.^1^^^^~06/01/2015~
-~09508~^~318~^428.^0^^~1~^~AS~^^^^^^^^^^~06/01/2015~
-~09508~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2015~
-~09508~^~320~^21.^0^^~1~^~AS~^^^^^^^^^^~06/01/2015~
-~09508~^~321~^247.^1^^~1~^~A~^^^^^^^^^^~06/01/2015~
-~09508~^~322~^5.^1^^~1~^~A~^^^^^^^^^^~06/01/2015~
-~09508~^~324~^0.^0^^~4~^~RA~^^^^^^^^^^~06/01/2015~
-~09508~^~334~^15.^1^^~1~^~A~^^^^^^^^^^~06/01/2015~
-~09508~^~337~^0.^1^^~1~^~A~^^^^^^^^^~1~^~06/01/2015~
-~09508~^~338~^183.^1^^~1~^~A~^^^^^^^^^^~06/01/2015~
-~09508~^~417~^15.^2^^~1~^~A~^^^1^14.^15.^1^^^^~06/01/2015~
-~09508~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2015~
-~09508~^~432~^15.^2^^~1~^~A~^^^^^^^^^^~06/01/2015~
-~09508~^~435~^15.^0^^~4~^~NC~^^^^^^^^^^~06/01/2015~
-~09508~^~601~^0.^0^^~8~^~LC~^^^^^^^^^^~04/01/2014~
-~09510~^~208~^50.^0^^~4~^~NC~^^^^^^^^^^~07/01/2015~
-~09510~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2014~
-~09510~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2014~
-~09510~^~268~^210.^0^^~4~^~NC~^^^^^^^^^^~07/01/2015~
-~09510~^~301~^14.^58^4.^~1~^~A~^^^2^10.^24.^1^-46.^75.^~2~^~04/01/2014~
-~09510~^~304~^11.^1^^~1~^~A~^^^^^^^^^^~04/01/2014~
-~09510~^~305~^9.^1^^~1~^~A~^^^^^^^^^^~04/01/2014~
-~09510~^~306~^132.^35^5.^~1~^~A~^^^2^85.^160.^1^59.^203.^~2~^~04/01/2014~
-~09510~^~307~^3.^50^2.^~1~^~A~^^^2^0.^5.^1^-25.^30.^~2~^~04/01/2014~
-~09510~^~318~^235.^0^^~8~^~LC~^^^^^^^^^^~04/01/2014~
-~09510~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2014~
-~09510~^~417~^12.^1^^~1~^~A~^^^^^^^^^^~04/01/2014~
-~09510~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2014~
-~09510~^~432~^12.^1^^~1~^~A~^^^^^^^^^^~04/01/2014~
-~09510~^~435~^12.^0^^~4~^~NC~^^^^^^^^^^~04/01/2014~
-~09510~^~601~^0.^0^^~8~^~LC~^^^^^^^^^^~04/01/2014~
-~09511~^~208~^71.^0^^~8~^~LC~^^^^^^^^^^~04/01/2014~
-~09511~^~268~^296.^0^^~8~^~LC~^^^^^^^^^^~04/01/2014~
-~09511~^~301~^0.^0^^~8~^~LC~^^^^^^^^^^~04/01/2014~
-~09511~^~306~^154.^0^^~8~^~LC~^^^^^^^^^^~04/01/2014~
-~09511~^~307~^4.^0^^~8~^~LC~^^^^^^^^^^~04/01/2014~
-~09511~^~318~^0.^0^^~8~^~LC~^^^^^^^^^^~04/01/2014~
-~09511~^~601~^0.^0^^~8~^~LC~^^^^^^^^^^~04/01/2014~
-~09512~^~208~^62.^0^^~4~^~NC~^^^^^^^^^^~04/01/2014~
-~09512~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2015~
-~09512~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2015~
-~09512~^~268~^258.^0^^~4~^~NC~^^^^^^^^^^~04/01/2014~
-~09512~^~301~^42.^0^^~8~^~LC~^^^^^^^^^^~04/01/2014~
-~09512~^~304~^10.^14^0.^~1~^~A~^^^5^7.^15.^4^7.^12.^~2~^~04/01/2014~
-~09512~^~305~^14.^14^1.^~1~^~A~^^^5^10.^18.^4^10.^17.^~2~^~04/01/2014~
-~09512~^~306~^104.^9^5.^~1~^~A~^^^4^83.^119.^3^87.^121.^~2~^~04/01/2014~
-~09512~^~307~^5.^14^0.^~1~^~A~^^^5^2.^8.^4^2.^6.^~2~^~04/01/2014~
-~09512~^~318~^8.^0^^~1~^^^^^^^^^^^~02/01/2015~
-~09512~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2015~
-~09512~^~320~^0.^0^^~4~^~BFZN~^~09135~^^^^^^^^^~02/01/2015~
-~09512~^~321~^5.^0^^~4~^~BFZN~^~09135~^^^^^^^^^~02/01/2015~
-~09512~^~322~^0.^0^^~4~^~BFZN~^~09135~^^^^^^^^^~02/01/2015~
-~09512~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2015~
-~09512~^~334~^0.^0^^~4~^~BFZN~^~09135~^^^^^^^^^~02/01/2015~
-~09512~^~337~^0.^0^^~4~^~BFSN~^~09132~^^^^^^^^^~02/01/2015~
-~09512~^~338~^57.^0^^~4~^~BFSN~^~09132~^^^^^^^^^~02/01/2015~
-~09512~^~417~^0.^1^^~1~^~A~^^^^^^^^^~1~^~04/01/2014~
-~09512~^~431~^0.^1^^~1~^~A~^^^^^^^^^~1~^~04/01/2014~
-~09512~^~432~^0.^0^^~1~^~AS~^^^^^^^^^^~04/01/2014~
-~09512~^~435~^0.^0^^~4~^~NC~^^^^^^^^^^~04/01/2014~
-~09512~^~601~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2014~
-~09513~^~208~^50.^0^^~4~^~NC~^^^^^^^^^^~06/01/2015~
-~09513~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2015~
-~09513~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2015~
-~09513~^~268~^210.^0^^~4~^~NC~^^^^^^^^^^~06/01/2015~
-~09513~^~301~^7.^2^^~1~^~A~^^^1^6.^7.^1^^^^~06/01/2015~
-~09513~^~304~^9.^2^^~1~^~A~^^^1^9.^9.^1^^^^~06/01/2015~
-~09513~^~305~^24.^2^^~1~^~A~^^^1^23.^25.^1^^^^~06/01/2015~
-~09513~^~306~^145.^2^^~1~^~A~^^^1^139.^151.^1^^^^~06/01/2015~
-~09513~^~307~^3.^2^^~1~^~A~^^^1^3.^4.^1^^^^~06/01/2015~
-~09513~^~318~^1408.^0^^~4~^~NC~^^^^^^^^^^~08/01/2016~
-~09513~^~319~^0.^0^^~4~^~BNA~^^^^^^^^^^~08/01/2016~
-~09513~^~320~^70.^0^^~4~^~NC~^^^^^^^^^^~06/01/2015~
-~09513~^~321~^794.^0^^~4~^~BNA~^^^^^^^^^^~06/01/2015~
-~09513~^~322~^14.^0^^~4~^~BNA~^^^^^^^^^^~06/01/2015~
-~09513~^~334~^87.^0^^~4~^~BNA~^^^^^^^^^^~06/01/2015~
-~09513~^~337~^1.^0^^~4~^~RA~^^^^^^^^^^~06/01/2015~
-~09513~^~338~^38.^0^^~4~^~RA~^^^^^^^^^^~06/01/2015~
-~09513~^~417~^14.^2^^~1~^~A~^^^1^14.^15.^1^^^^~06/01/2015~
-~09513~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2015~
-~09513~^~432~^14.^2^^~1~^~A~^^^^^^^^^^~06/01/2015~
-~09513~^~435~^14.^0^^~4~^~NC~^^^^^^^^^^~06/01/2015~
-~09513~^~601~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2015~
-~09514~^~208~^46.^0^^~8~^~LC~^^^^^^^^^^~04/01/2014~
-~09514~^~268~^194.^0^^~8~^~LC~^^^^^^^^^^~04/01/2014~
-~09514~^~301~^10.^0^^~8~^~LC~^^^^^^^^^^~04/01/2014~
-~09514~^~306~^116.^0^^~8~^~LC~^^^^^^^^^^~04/01/2014~
-~09514~^~307~^4.^0^^~8~^~LC~^^^^^^^^^^~04/01/2014~
-~09514~^~318~^290.^0^^~8~^~LC~^^^^^^^^^^~04/01/2014~
-~09514~^~601~^0.^0^^~8~^~LC~^^^^^^^^^^~04/01/2014~
-~09515~^~208~^56.^0^^~4~^~NC~^^^^^^^^^^~06/01/2015~
-~09515~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2015~
-~09515~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2015~
-~09515~^~268~^234.^0^^~4~^~NC~^^^^^^^^^^~06/01/2015~
-~09515~^~301~^18.^3^0.^~1~^~A~^^^1^17.^18.^2^16.^19.^~2, 3~^~06/01/2015~
-~09515~^~304~^15.^3^0.^~1~^~A~^^^1^15.^15.^2^13.^15.^~2, 3~^~06/01/2015~
-~09515~^~305~^16.^3^0.^~1~^~A~^^^1^16.^17.^2^16.^16.^~2, 3~^~06/01/2015~
-~09515~^~306~^177.^3^0.^~1~^~A~^^^1^176.^178.^2^174.^179.^~2, 3~^~06/01/2015~
-~09515~^~307~^11.^3^0.^~1~^~A~^^^1^10.^11.^2^9.^12.^~2, 3~^~06/01/2015~
-~09515~^~318~^417.^0^^~8~^~LC~^^^^^^^^^^~06/01/2015~
-~09515~^~319~^0.^0^^~4~^~BNA~^^^^^^^^^^~08/01/2016~
-~09515~^~320~^21.^0^^~4~^~NC~^^^^^^^^^^~06/01/2015~
-~09515~^~321~^242.^0^^~4~^~BNA~^^^^^^^^^^~06/01/2015~
-~09515~^~322~^12.^0^^~4~^~BNA~^^^^^^^^^^~06/01/2015~
-~09515~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2015~
-~09515~^~334~^4.^0^^~4~^~BNA~^^^^^^^^^^~06/01/2015~
-~09515~^~337~^0.^0^^~4~^~RA~^^^^^^^^^^~06/01/2015~
-~09515~^~338~^16.^0^^~4~^~RA~^^^^^^^^^^~06/01/2015~
-~09515~^~417~^17.^3^0.^~1~^~A~^^^1^16.^18.^2^14.^20.^~2, 3~^~06/01/2015~
-~09515~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2015~
-~09515~^~432~^17.^3^0.^~1~^~A~^^^1^16.^18.^2^14.^20.^^~06/01/2015~
-~09515~^~435~^17.^0^^~4~^~NC~^^^^^^^^^^~06/01/2015~
-~09515~^~601~^0.^0^^~8~^~LC~^^^^^^^^^^~04/01/2014~
-~09516~^~208~^52.^0^^~4~^~NC~^^^^^^^^^^~06/01/2015~
-~09516~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2015~
-~09516~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2015~
-~09516~^~268~^219.^0^^~4~^~NC~^^^^^^^^^^~06/01/2015~
-~09516~^~301~^11.^3^0.^~1~^~A~^^^1^10.^13.^2^7.^14.^~2, 3~^~06/01/2015~
-~09516~^~304~^13.^3^0.^~1~^~A~^^^1^12.^13.^2^12.^12.^~2, 3~^~06/01/2015~
-~09516~^~305~^16.^3^0.^~1~^~A~^^^1^16.^16.^2^15.^16.^~2, 3~^~06/01/2015~
-~09516~^~306~^184.^3^1.^~1~^~A~^^^1^181.^186.^2^177.^190.^~2, 3~^~06/01/2015~
-~09516~^~307~^5.^3^0.^~1~^~A~^^^1^5.^6.^2^4.^6.^~2, 3~^~06/01/2015~
-~09516~^~318~^20.^0^^~8~^~LC~^^^^^^^^^^~04/01/2014~
-~09516~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2015~
-~09516~^~320~^1.^0^^~4~^~RA~^^^^^^^^^^~06/01/2015~
-~09516~^~321~^9.^0^^~4~^~BNA~^^^^^^^^^^~06/01/2015~
-~09516~^~322~^4.^0^^~4~^~BNA~^^^^^^^^^^~06/01/2015~
-~09516~^~334~^1.^0^^~4~^~BNA~^^^^^^^^^^~06/01/2015~
-~09516~^~337~^0.^0^^~4~^~RA~^^^^^^^^^^~06/01/2015~
-~09516~^~338~^25.^0^^~4~^~RA~^^^^^^^^^^~06/01/2015~
-~09516~^~417~^24.^3^0.^~1~^~A~^^^1^23.^24.^2^21.^25.^~2, 3~^~06/01/2015~
-~09516~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2015~
-~09516~^~432~^24.^3^0.^~1~^~A~^^^1^23.^24.^2^21.^25.^^~06/01/2015~
-~09516~^~435~^24.^0^^~4~^~NC~^^^^^^^^^^~06/01/2015~
-~09516~^~601~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2015~
-~09517~^~208~^48.^0^^~4~^~NC~^^^^^^^^^^~05/01/2014~
-~09517~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2015~
-~09517~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2015~
-~09517~^~268~^201.^0^^~4~^~NC~^^^^^^^^^^~05/01/2014~
-~09517~^~301~^70.^1^^~1~^~A~^^^^^^^^^^~05/01/2014~
-~09517~^~304~^5.^1^^~1~^~A~^^^^^^^^^^~05/01/2014~
-~09517~^~305~^9.^1^^~1~^~A~^^^^^^^^^^~05/01/2014~
-~09517~^~306~^184.^0^^~8~^~LC~^^^^^^^^^^~05/01/2014~
-~09517~^~307~^5.^1^^~1~^~A~^^^^^^^^^^~05/01/2014~
-~09517~^~318~^1.^0^^~4~^~BFZN~^~09400~^^^^^^^^^~03/01/2015~
-~09517~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2015~
-~09517~^~320~^0.^0^^~4~^~BFZN~^~09400~^^^^^^^^^~03/01/2015~
-~09517~^~321~^0.^0^^~4~^~BFZN~^~09400~^^^^^^^^^~03/01/2015~
-~09517~^~322~^0.^0^^~4~^~BFZN~^~09400~^^^^^^^^^~03/01/2015~
-~09517~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2015~
-~09517~^~334~^0.^0^^~4~^~BFZN~^~09400~^^^^^^^^^~03/01/2015~
-~09517~^~337~^0.^0^^~4~^~BFZN~^~09400~^^^^^^^^^~03/01/2015~
-~09517~^~338~^16.^0^^~4~^~BFZN~^~09400~^^^^^^^^^~03/01/2015~
-~09517~^~417~^0.^1^^~1~^~A~^^^^^^^^^~1~^~05/01/2014~
-~09517~^~431~^0.^1^^~1~^~A~^^^^^^^^^~1~^~05/01/2014~
-~09517~^~432~^0.^0^^~1~^~AS~^^^^^^^^^^~05/01/2014~
-~09517~^~435~^0.^0^^~4~^~NC~^^^^^^^^^^~05/01/2014~
-~09517~^~601~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2015~
-~09518~^~208~^56.^0^^~4~^~NC~^^^^^^^^^^~12/01/2016~
-~09518~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2014~
-~09518~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2014~
-~09518~^~268~^234.^0^^~4~^~NC~^^^^^^^^^^~12/01/2016~
-~09518~^~301~^24.^11^3.^~1~^~A~^^^1^13.^40.^3^12.^34.^~2, 3~^~12/01/2016~
-~09518~^~304~^23.^11^2.^~1~^~A~^^^1^15.^39.^3^12.^33.^~2, 3~^~12/01/2016~
-~09518~^~305~^30.^11^4.^~1~^~A~^^^1^18.^54.^2^14.^44.^~2, 3~^~12/01/2016~
-~09518~^~306~^184.^11^7.^~1~^~A~^^^1^141.^223.^8^166.^200.^~2, 3~^~12/01/2016~
-~09518~^~307~^4.^11^0.^~1~^~A~^^^1^4.^4.^7^3.^3.^~1, 2, 3~^~12/01/2016~
-~09518~^~318~^74.^0^^~1~^~AS~^^^^^^^^^^~12/01/2016~
-~09518~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2014~
-~09518~^~320~^4.^0^^~1~^~AS~^^^^^^^^^^~12/01/2016~
-~09518~^~321~^10.^6^3.^~1~^~A~^^^1^2.^32.^3^0.^19.^~2, 3~^~12/01/2016~
-~09518~^~322~^68.^6^19.^~1~^~A~^^^1^8.^230.^3^-2.^138.^~2, 3~^~12/01/2016~
-~09518~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2014~
-~09518~^~334~^0.^6^0.^~1~^~A~^^^1^0.^0.^^^^~1, 2, 3~^~05/01/2014~
-~09518~^~337~^0.^6^0.^~1~^~A~^^^1^0.^0.^^^^~1, 2, 3~^~05/01/2014~
-~09518~^~338~^240.^6^31.^~1~^~A~^^^1^163.^320.^3^140.^339.^~2, 3~^~12/01/2016~
-~09518~^~417~^28.^3^0.^~1~^~A~^^^1^24.^36.^1^18.^37.^~2, 3~^~12/01/2016~
-~09518~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2014~
-~09518~^~432~^28.^3^0.^~1~^~A~^^^1^24.^36.^1^18.^37.^^~12/01/2016~
-~09518~^~435~^28.^0^^~4~^~NC~^^^^^^^^^^~12/01/2016~
-~09518~^~601~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2014~
-~09519~^~208~^48.^0^^~8~^~LC~^^^^^^^^^^~12/01/2014~
-~09519~^~262~^0.^0^^~4~^~FLC~^^^^^^^^^^~12/01/2014~
-~09519~^~263~^0.^0^^~4~^~FLC~^^^^^^^^^^~12/01/2014~
-~09519~^~268~^200.^0^^~8~^~LC~^^^^^^^^^^~12/01/2014~
-~09519~^~301~^8.^0^^~4~^~BFZN~^~09435~^^^^^^^^^~12/01/2014~
-~09519~^~304~^2.^0^^~4~^~FLC~^^^^^^^^^^~12/01/2014~
-~09519~^~305~^3.^0^^~4~^~FLC~^^^^^^^^^^~12/01/2014~
-~09519~^~306~^33.^0^^~4~^~FLC~^^^^^^^^^^~12/01/2014~
-~09519~^~307~^6.^0^^~4~^~BFZN~^~09435~^^^^^^^^^~12/01/2014~
-~09519~^~318~^49.^0^^~4~^~FLC~^^^^^^^^^^~12/01/2014~
-~09519~^~319~^0.^0^^~4~^~FLC~^^^^^^^^^^~12/01/2014~
-~09519~^~320~^2.^0^^~4~^~FLC~^^^^^^^^^^~12/01/2014~
-~09519~^~321~^29.^0^^~4~^~FLC~^^^^^^^^^^~12/01/2014~
-~09519~^~322~^0.^0^^~4~^~FLC~^^^^^^^^^^~12/01/2014~
-~09519~^~324~^0.^0^^~4~^~FLC~^^^^^^^^^^~12/01/2014~
-~09519~^~334~^0.^0^^~4~^~FLC~^^^^^^^^^^~12/01/2014~
-~09519~^~337~^35.^0^^~4~^~BFZN~^~09435~^^^^^^^^^~12/01/2014~
-~09519~^~338~^0.^0^^~4~^~FLC~^^^^^^^^^^~12/01/2014~
-~09519~^~417~^4.^0^^~4~^~FLC~^^^^^^^^^^~12/01/2014~
-~09519~^~431~^0.^0^^~4~^~FLC~^^^^^^^^^^~12/01/2014~
-~09519~^~432~^4.^0^^~4~^~FLC~^^^^^^^^^^~12/01/2014~
-~09519~^~435~^4.^0^^~4~^~NC~^^^^^^^^^^~12/01/2014~
-~09519~^~601~^0.^0^^~8~^~LC~^^^^^^^^^^~12/01/2014~
-~09520~^~208~^63.^0^^~4~^~NC~^^^^^^^^^^~03/01/2015~
-~09520~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2015~
-~09520~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2015~
-~09520~^~268~^262.^0^^~4~^~NC~^^^^^^^^^^~03/01/2015~
-~09520~^~301~^17.^10^0.^~1~^~A~^^^1^15.^24.^9^15.^19.^~4~^~03/01/2015~
-~09520~^~304~^12.^10^0.^~1~^~A~^^^1^11.^16.^9^11.^13.^~4~^~03/01/2015~
-~09520~^~305~^25.^10^1.^~1~^~A~^^^1^19.^31.^9^22.^27.^~4~^~03/01/2015~
-~09520~^~306~^315.^10^7.^~1~^~A~^^^1^270.^350.^9^297.^332.^~4~^~03/01/2015~
-~09520~^~307~^3.^10^0.^~1~^~A~^^^1^2.^4.^9^2.^3.^~4~^~03/01/2015~
-~09520~^~318~^23.^0^^~1~^~AS~^^^^^^^^^^~03/01/2015~
-~09520~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2015~
-~09520~^~320~^1.^0^^~1~^~AS~^^^^^^^^^^~03/01/2015~
-~09520~^~321~^14.^10^0.^~1~^~A~^^^1^11.^19.^9^11.^16.^~4~^~03/01/2015~
-~09520~^~322~^0.^10^0.^~1~^~A~^^^1^0.^0.^9^0.^0.^~1, 4~^~03/01/2015~
-~09520~^~324~^0.^0^^~1~^~A~^^^^^^^^^^~03/01/2015~
-~09520~^~337~^0.^10^0.^~1~^~A~^^^1^0.^0.^9^0.^0.^~1, 4~^~03/01/2015~
-~09520~^~338~^24.^10^2.^~1~^~A~^^^1^16.^36.^9^18.^28.^~4~^~03/01/2015~
-~09520~^~417~^31.^10^1.^~1~^~A~^^^1^22.^41.^9^26.^34.^~4~^~03/01/2015~
-~09520~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2015~
-~09520~^~432~^31.^10^1.^~1~^~A~^^^1^22.^41.^9^26.^34.^^~03/01/2015~
-~09520~^~435~^31.^0^^~4~^~NC~^^^^^^^^^^~03/01/2015~
-~09520~^~601~^0.^1^^~1~^~A~^^^^^^^^^~1~^~03/01/2015~
-~09522~^~208~^45.^0^^~4~^~NC~^^^^^^^^^^~03/01/2015~
-~09522~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2015~
-~09522~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2015~
-~09522~^~268~^187.^0^^~4~^~NC~^^^^^^^^^^~03/01/2015~
-~09522~^~301~^19.^0^^~8~^~LC~^^^^^^^^^^~03/01/2015~
-~09522~^~304~^5.^1^^~1~^~A~^^^^^^^^^^~03/01/2015~
-~09522~^~305~^8.^1^^~1~^~A~^^^^^^^^^^~03/01/2015~
-~09522~^~306~^76.^1^^~1~^~A~^^^^^^^^^^~03/01/2015~
-~09522~^~307~^6.^1^^~1~^~A~^^^^^^^^^^~03/01/2015~
-~09522~^~318~^25.^0^^~4~^~NC~^^^^^^^^^^~03/01/2015~
-~09522~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2015~
-~09522~^~320~^1.^0^^~4~^~NC~^^^^^^^^^^~03/01/2015~
-~09522~^~321~^15.^1^^~1~^~A~^^^^^^^^^~1~^~03/01/2015~
-~09522~^~322~^0.^0^^~4~^~BFZN~^~43382~^^^^^^^^^~03/01/2015~
-~09522~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2015~
-~09522~^~334~^0.^0^^~4~^~BFZN~^~43382~^^^^^^^^^~03/01/2015~
-~09522~^~337~^0.^0^^~4~^~BFZN~^~43382~^^^^^^^^^~03/01/2015~
-~09522~^~338~^68.^0^^~4~^~BFZN~^~43382~^^^^^^^^^~03/01/2015~
-~09522~^~417~^18.^1^^~1~^~A~^^^^^^^^^^~03/01/2015~
-~09522~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2015~
-~09522~^~432~^18.^1^^~1~^~A~^^^^^^^^^^~03/01/2015~
-~09522~^~435~^18.^0^^~4~^~NC~^^^^^^^^^^~03/01/2015~
-~09522~^~601~^0.^1^^~1~^~A~^^^^^^^^^~1~^~03/01/2015~
-~09523~^~208~^24.^0^^~4~^~NC~^^^^^^^^^^~03/01/2015~
-~09523~^~268~^99.^0^^~4~^~NC~^^^^^^^^^^~03/01/2015~
-~09523~^~301~^8.^5^0.^~1~^~A~^^^1^7.^9.^4^6.^8.^~2, 3~^~03/01/2015~
-~09523~^~304~^6.^5^0.^~1~^~A~^^^1^6.^7.^4^5.^6.^~2, 3~^~03/01/2015~
-~09523~^~305~^9.^5^0.^~1~^~A~^^^1^8.^9.^4^7.^9.^~2, 3~^~03/01/2015~
-~09523~^~306~^112.^5^2.^~1~^~A~^^^1^104.^118.^4^104.^119.^~2, 3~^~03/01/2015~
-~09523~^~307~^29.^5^0.^~1~^~A~^^^1^26.^31.^4^26.^31.^~2, 3~^~03/01/2015~
-~09523~^~417~^4.^3^0.^~1~^~A~^^^1^4.^4.^^^^~1, 2, 3~^~03/01/2015~
-~09523~^~432~^4.^3^0.^~1~^~A~^^^1^4.^4.^^^^^~03/01/2015~
-~09524~^~208~^17.^0^^~4~^~NC~^^^^^^^^^^~03/01/2015~
-~09524~^~268~^73.^0^^~4~^~NC~^^^^^^^^^^~03/01/2015~
-~09524~^~301~^9.^6^0.^~1~^~A~^^^1^8.^12.^5^7.^11.^~2, 3~^~03/01/2015~
-~09524~^~304~^6.^6^0.^~1~^~A~^^^1^6.^7.^5^5.^6.^~2, 3~^~03/01/2015~
-~09524~^~305~^9.^6^0.^~1~^~A~^^^1^8.^11.^5^8.^10.^~2, 3~^~03/01/2015~
-~09524~^~306~^109.^6^3.^~1~^~A~^^^1^92.^119.^5^99.^118.^~2, 3~^~03/01/2015~
-~09524~^~307~^26.^6^0.^~1~^~A~^^^1^24.^29.^5^23.^28.^~2, 3~^~03/01/2015~
-~09524~^~318~^33.^0^^~1~^~AS~^^^^^^^^^^~03/01/2015~
-~09524~^~320~^2.^0^^~1~^~AS~^^^^^^^^^^~03/01/2015~
-~09524~^~321~^0.^1^^~1~^~A~^^^^^^^^^~1~^~03/01/2015~
-~09524~^~322~^0.^1^^~1~^~A~^^^^^^^^^~1~^~03/01/2015~
-~09524~^~334~^40.^1^^~1~^~A~^^^^^^^^^^~03/01/2015~
-~09524~^~337~^0.^1^^~1~^~A~^^^^^^^^^~1~^~03/01/2015~
-~09524~^~338~^11.^1^^~1~^~A~^^^^^^^^^^~03/01/2015~
-~09524~^~417~^11.^3^0.^~1~^~A~^^^1^10.^12.^2^9.^12.^~2, 3~^~03/01/2015~
-~09524~^~432~^11.^3^0.^~1~^~A~^^^1^10.^12.^2^9.^12.^^~03/01/2015~
-~09525~^~208~^158.^0^^~4~^~NC~^^^^^^^^^^~06/01/2015~
-~09525~^~268~^661.^0^^~4~^~NC~^^^^^^^^^^~06/01/2015~
-~09525~^~301~^3.^1^^~1~^~A~^^^^^^^^^^~06/01/2015~
-~09525~^~304~^2.^1^^~1~^~A~^^^^^^^^^^~06/01/2015~
-~09525~^~305~^4.^1^^~1~^~A~^^^^^^^^^^~06/01/2015~
-~09525~^~306~^21.^1^^~1~^~A~^^^^^^^^^^~06/01/2015~
-~09525~^~307~^5.^1^^~1~^~A~^^^^^^^^^~1~^~06/01/2015~
-~09525~^~318~^33.^0^^~1~^~AS~^^^^^^^^^^~06/01/2015~
-~09525~^~320~^2.^0^^~1~^~AS~^^^^^^^^^^~06/01/2015~
-~09525~^~321~^20.^1^^~1~^~A~^^^^^^^^^~1~^~06/01/2015~
-~09525~^~601~^0.^1^^~1~^~A~^^^^^^^^^~1~^~06/01/2015~
-~09526~^~208~^160.^0^^~4~^~NC~^^^^^^^^^^~06/01/2015~
-~09526~^~268~^669.^0^^~4~^~NC~^^^^^^^^^^~06/01/2015~
-~09526~^~301~^3.^1^^~1~^~A~^^^^^^^^^^~06/01/2015~
-~09526~^~304~^2.^1^^~1~^~A~^^^^^^^^^^~06/01/2015~
-~09526~^~305~^4.^1^^~1~^~A~^^^^^^^^^^~06/01/2015~
-~09526~^~306~^34.^1^^~1~^~A~^^^^^^^^^^~06/01/2015~
-~09526~^~307~^5.^1^^~1~^~A~^^^^^^^^^~1~^~06/01/2015~
-~09526~^~318~^33.^0^^~1~^~AS~^^^^^^^^^^~06/01/2015~
-~09526~^~320~^2.^0^^~1~^~AS~^^^^^^^^^^~06/01/2015~
-~09526~^~321~^20.^1^^~1~^~A~^^^^^^^^^~1~^~06/01/2015~
-~09526~^~601~^0.^1^^~1~^~A~^^^^^^^^^~1~^~06/01/2015~
-~09528~^~208~^44.^0^^~4~^~NC~^^^^^^^^^^~05/01/2015~
-~09528~^~268~^183.^0^^~4~^~NC~^^^^^^^^^^~05/01/2015~
-~09528~^~301~^10.^1^^~1~^~A~^^^^^^^^^^~05/01/2015~
-~09528~^~306~^94.^1^^~1~^~A~^^^^^^^^^^~05/01/2015~
-~09528~^~307~^8.^1^^~1~^~A~^^^^^^^^^^~05/01/2015~
-~09528~^~318~^129.^0^^~1~^~AS~^^^^^^^^^^~05/01/2015~
-~09528~^~320~^6.^0^^~1~^~AS~^^^^^^^^^^~05/01/2015~
-~09528~^~321~^77.^4^4.^~1~^~A~^^^1^67.^89.^3^63.^91.^~4~^~05/01/2015~
-~09528~^~337~^116.^2^^~1~^~A~^^^1^99.^133.^1^^^^~05/01/2015~
-~09528~^~601~^0.^1^^~1~^~A~^^^^^^^^^~1~^~05/01/2015~
-~09530~^~208~^48.^0^^~4~^~NC~^^^^^^^^^^~06/01/2015~
-~09530~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2015~
-~09530~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2015~
-~09530~^~268~^200.^0^^~4~^~NC~^^^^^^^^^^~06/01/2015~
-~09530~^~301~^10.^0^^~4~^~BFZN~^~09531~^^^^^^^^^~06/01/2015~
-~09530~^~304~^14.^0^^~4~^~BFZN~^~09531~^^^^^^^^^~06/01/2015~
-~09530~^~305~^18.^0^^~4~^~BFZN~^~09531~^^^^^^^^^~06/01/2015~
-~09530~^~306~^201.^0^^~4~^~BFZN~^~09531~^^^^^^^^^~06/01/2015~
-~09530~^~307~^2.^0^^~4~^~BFZN~^~09531~^^^^^^^^^~06/01/2015~
-~09530~^~318~^222.^0^^~8~^~LC~^^^^^^^^^^~06/01/2015~
-~09530~^~319~^0.^0^^~4~^~BNA~^^^^^^^^^^~08/01/2016~
-~09530~^~320~^11.^0^^~4~^~NC~^^^^^^^^^^~06/01/2015~
-~09530~^~321~^45.^0^^~4~^~BNA~^^^^^^^^^^~06/01/2015~
-~09530~^~322~^7.^0^^~4~^~BNA~^^^^^^^^^^~06/01/2015~
-~09530~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2015~
-~09530~^~334~^169.^0^^~4~^~BNA~^^^^^^^^^^~06/01/2015~
-~09530~^~337~^0.^0^^~4~^~RA~^^^^^^^^^^~06/01/2015~
-~09530~^~338~^48.^0^^~4~^~RA~^^^^^^^^^^~06/01/2015~
-~09530~^~417~^30.^2^^~1~^~A~^^^1^29.^31.^1^^^^~06/01/2015~
-~09530~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2015~
-~09530~^~432~^30.^2^^~1~^~A~^^^^^^^^^^~06/01/2015~
-~09530~^~435~^30.^0^^~4~^~NC~^^^^^^^^^^~06/01/2015~
-~09530~^~601~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2015~
-~09531~^~208~^50.^0^^~4~^~NC~^^^^^^^^^^~06/01/2015~
-~09531~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2015~
-~09531~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2015~
-~09531~^~268~^207.^0^^~4~^~NC~^^^^^^^^^^~06/01/2015~
-~09531~^~301~^10.^3^0.^~1~^~A~^^^1^10.^11.^2^8.^11.^~2, 3~^~06/01/2015~
-~09531~^~304~^14.^3^0.^~1~^~A~^^^1^13.^14.^2^11.^15.^~2, 3~^~06/01/2015~
-~09531~^~305~^18.^3^0.^~1~^~A~^^^1^17.^18.^2^15.^19.^~2, 3~^~06/01/2015~
-~09531~^~306~^201.^3^6.^~1~^~A~^^^1^189.^209.^2^174.^226.^~2, 3~^~06/01/2015~
-~09531~^~307~^2.^3^0.^~1~^~A~^^^1^2.^2.^^^^~1, 2, 3~^~06/01/2015~
-~09531~^~318~^31.^0^^~4~^~NC~^^^^^^^^^^~06/01/2015~
-~09531~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2015~
-~09531~^~320~^2.^0^^~4~^~NC~^^^^^^^^^^~06/01/2015~
-~09531~^~321~^11.^0^^~4~^~RA~^^^^^^^^^^~06/01/2015~
-~09531~^~322~^7.^0^^~4~^~RA~^^^^^^^^^^~06/01/2015~
-~09531~^~334~^9.^0^^~4~^~RA~^^^^^^^^^^~06/01/2015~
-~09531~^~337~^0.^0^^~4~^~RA~^^^^^^^^^^~06/01/2015~
-~09531~^~338~^26.^0^^~4~^~RA~^^^^^^^^^^~06/01/2015~
-~09531~^~417~^35.^3^0.^~1~^~A~^^^1^34.^36.^2^31.^38.^~2, 3~^~06/01/2015~
-~09531~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2015~
-~09531~^~432~^35.^3^0.^~1~^~A~^^^1^34.^36.^2^31.^38.^^~06/01/2015~
-~09531~^~435~^35.^0^^~4~^~NC~^^^^^^^^^^~06/01/2015~
-~09531~^~601~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2015~
-~09542~^~208~^152.^0^^~4~^~NC~^^^^^^^^^^~10/01/2016~
-~09542~^~268~^635.^0^^~4~^~NC~^^^^^^^^^^~10/01/2016~
-~09542~^~301~^2.^1^^~1~^~A~^^^^^^^^^^~10/01/2016~
-~09542~^~304~^41.^1^^~1~^~A~^^^^^^^^^^~10/01/2016~
-~09542~^~305~^31.^1^^~1~^~A~^^^^^^^^^^~10/01/2016~
-~09542~^~306~^431.^1^^~1~^~A~^^^^^^^^^^~10/01/2016~
-~09542~^~307~^2.^1^^~1~^~A~^^^^^^^^^~1~^~10/01/2016~
-~09542~^~417~^28.^1^^~1~^~A~^^^^^^^^^^~10/01/2016~
-~09542~^~432~^28.^1^^~1~^~A~^^^^^^^^^^~10/01/2016~
-~09543~^~208~^121.^0^^~4~^~NC~^^^^^^^^^^~11/01/2016~
-~09543~^~268~^507.^0^^~4~^~NC~^^^^^^^^^^~11/01/2016~
-~09543~^~301~^3.^3^0.^~1~^~A~^^^1^1.^4.^2^0.^6.^~2, 3~^~11/01/2016~
-~09543~^~304~^28.^3^1.^~1~^~A~^^^1^24.^31.^2^19.^36.^~2, 3~^~11/01/2016~
-~09543~^~305~^24.^3^1.^~1~^~A~^^^1^21.^26.^2^17.^29.^~2, 3~^~11/01/2016~
-~09543~^~306~^289.^3^6.^~1~^~A~^^^1^276.^298.^2^260.^317.^~2, 3~^~11/01/2016~
-~09543~^~307~^2.^3^0.^~1~^~A~^^^1^2.^2.^2^1.^1.^~1, 2, 3~^~11/01/2016~
-~09543~^~417~^48.^2^^~1~^~A~^^^1^29.^67.^1^^^^~11/01/2016~
-~09543~^~432~^48.^2^^~1~^~A~^^^^^^^^^^~11/01/2016~
-~09544~^~208~^250.^9^^~12~^~MA~^^^1^237.^264.^^^^~2~^~11/01/2016~
-~09544~^~268~^1045.^10^^~12~^~MA~^^^1^991.^1105.^^^^~2~^~11/01/2016~
-~09544~^~301~^342.^10^^~12~^~MA~^^^1^267.^424.^^^^~2~^~11/01/2016~
-~09544~^~304~^158.^12^^~12~^~MA~^^^1^119.^186.^^^^~2~^~11/01/2016~
-~09544~^~305~^47.^10^^~12~^~MA~^^^1^36.^71.^^^^~2~^~11/01/2016~
-~09544~^~306~^2189.^12^^~12~^~MA~^^^1^1665.^3305.^^^^~2~^~11/01/2016~
-~09544~^~307~^10.^10^^~12~^~MA~^^^1^0.^25.^^^^~2~^~11/01/2016~
-~09544~^~417~^43.^4^^~12~^~MA~^^^1^23.^67.^^^^~2~^~11/01/2016~
-~09544~^~432~^43.^4^^~12~^~MA~^^^1^23.^67.^^^^^~11/01/2016~
-~09546~^~208~^59.^0^^~4~^~NC~^^^^^^^^^^~12/01/2016~
-~09546~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~12/01/2016~
-~09546~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~12/01/2016~
-~09546~^~268~^248.^0^^~4~^~NC~^^^^^^^^^^~12/01/2016~
-~09546~^~301~^13.^2^^~1~^~A~^^^1^9.^17.^1^^^^~12/01/2016~
-~09546~^~304~^11.^2^^~1~^~A~^^^1^11.^11.^^^^^~12/01/2016~
-~09546~^~305~^17.^2^^~1~^~A~^^^1^13.^21.^1^^^^~12/01/2016~
-~09546~^~306~^161.^2^^~1~^~A~^^^1^136.^186.^1^^^^~12/01/2016~
-~09546~^~307~^4.^2^^~1~^~A~^^^1^4.^5.^1^^^~1~^~12/01/2016~
-~09546~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~12/01/2016~
-~09546~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~12/01/2016~
-~09546~^~601~^0.^0^^~7~^~Z~^^^^^^^^^^~12/01/2016~
-~09552~^~208~^41.^0^^~4~^~NC~^^^^^^^^^^~12/01/2016~
-~09552~^~268~^170.^0^^~4~^~NC~^^^^^^^^^^~12/01/2016~
-~09552~^~301~^14.^4^0.^~1~^~A~^^^1^13.^16.^3^11.^16.^~2, 3~^~12/01/2016~
-~09552~^~304~^15.^4^1.^~1~^~A~^^^1^11.^18.^3^10.^20.^~2, 3~^~12/01/2016~
-~09552~^~305~^20.^4^0.^~1~^~A~^^^1^19.^22.^3^17.^22.^~2, 3~^~12/01/2016~
-~09552~^~306~^169.^4^15.^~1~^~A~^^^1^125.^195.^3^118.^218.^~2, 3~^~12/01/2016~
-~09552~^~307~^4.^4^0.^~1~^~A~^^^1^4.^4.^3^3.^3.^~1, 2, 3~^~12/01/2016~
-~09552~^~318~^38.^0^^~1~^~AS~^^^^^^^^^^~12/01/2016~
-~09552~^~320~^2.^0^^~1~^~AS~^^^^^^^^^^~12/01/2016~
-~09552~^~321~^8.^2^^~1~^~A~^^^1^8.^8.^1^^^^~12/01/2016~
-~09552~^~322~^30.^2^^~1~^~A~^^^1^22.^37.^1^^^^~12/01/2016~
-~09552~^~334~^0.^2^^~1~^~A~^^^1^0.^0.^^^^~1~^~12/01/2016~
-~09552~^~337~^0.^2^^~1~^~A~^^^1^0.^0.^^^^~1~^~12/01/2016~
-~09552~^~338~^448.^2^^~1~^~A~^^^1^355.^540.^1^^^^~12/01/2016~
-~09552~^~417~^29.^1^^~1~^~A~^^^^^^^^^^~12/01/2016~
-~09552~^~432~^29.^1^^~1~^~A~^^^^^^^^^^~12/01/2016~
-~09553~^~208~^55.^0^^~4~^~NC~^^^^^^^^^^~12/01/2016~
-~09553~^~268~^230.^0^^~4~^~NC~^^^^^^^^^^~12/01/2016~
-~09553~^~301~^23.^8^1.^~1~^~A~^^^1^12.^29.^4^18.^27.^~2, 3~^~12/01/2016~
-~09553~^~304~^25.^8^1.^~1~^~A~^^^1^14.^29.^4^20.^28.^~2, 3~^~12/01/2016~
-~09553~^~305~^30.^8^1.^~1~^~A~^^^1^18.^38.^4^25.^35.^~2, 3~^~12/01/2016~
-~09553~^~306~^195.^8^7.^~1~^~A~^^^1^138.^224.^4^175.^214.^~2, 3~^~12/01/2016~
-~09553~^~307~^4.^8^0.^~1~^~A~^^^1^4.^4.^5^3.^3.^~1, 2, 3~^~12/01/2016~
-~09553~^~318~^97.^0^^~1~^~AS~^^^^^^^^^^~12/01/2016~
-~09553~^~320~^5.^0^^~1~^~AS~^^^^^^^^^^~12/01/2016~
-~09553~^~321~^19.^2^^~1~^~A~^^^1^9.^20.^^^^^~12/01/2016~
-~09553~^~322~^79.^2^^~1~^~A~^^^1^35.^85.^^^^^~12/01/2016~
-~09553~^~334~^0.^2^^~1~^~A~^^^1^0.^0.^^^^~1~^~12/01/2016~
-~09553~^~337~^0.^2^^~1~^~A~^^^1^0.^0.^^^^~1~^~12/01/2016~
-~09553~^~338~^469.^2^^~1~^~A~^^^1^195.^506.^^^^^~12/01/2016~
-~09553~^~417~^30.^1^^~1~^~A~^^^^^^^^^^~12/01/2016~
-~09553~^~432~^30.^1^^~1~^~A~^^^^^^^^^^~12/01/2016~
-~09554~^~208~^221.^0^^~4~^~NC~^^^^^^^^^^~12/01/2016~
-~09554~^~268~^924.^0^^~4~^~NC~^^^^^^^^^^~12/01/2016~
-~09554~^~301~^97.^4^13.^~1~^~A~^^^1^81.^113.^1^-71.^265.^~2, 3~^~12/01/2016~
-~09554~^~304~^112.^4^5.^~1~^~A~^^^1^102.^122.^1^63.^161.^~2, 3~^~12/01/2016~
-~09554~^~305~^100.^4^9.^~1~^~A~^^^1^70.^115.^1^4.^196.^~2, 3~^~12/01/2016~
-~09554~^~306~^1178.^4^33.^~1~^~A~^^^1^1120.^1290.^1^783.^1572.^~2, 3~^~12/01/2016~
-~09554~^~307~^10.^4^1.^~1~^~A~^^^1^7.^13.^1^-13.^33.^~1, 2, 3~^~12/01/2016~
-~09554~^~318~^0.^0^^~1~^~AS~^^^^^^^^^^~12/01/2016~
-~09554~^~320~^0.^0^^~1~^~AS~^^^^^^^^^^~12/01/2016~
-~09554~^~321~^0.^2^^~1~^~A~^^^1^0.^0.^^^^~1~^~12/01/2016~
-~09554~^~322~^0.^2^^~1~^~A~^^^1^0.^0.^^^^~1~^~12/01/2016~
-~09554~^~334~^0.^2^^~1~^~A~^^^1^0.^0.^^^^~1~^~12/01/2016~
-~09554~^~337~^0.^2^^~1~^~A~^^^1^0.^0.^^^^~1~^~12/01/2016~
-~09554~^~338~^0.^2^^~1~^~A~^^^1^0.^0.^^^^~1~^~12/01/2016~
-~09554~^~417~^9.^1^^~1~^~A~^^^^^^^^^^~12/01/2016~
-~09554~^~432~^9.^1^^~1~^~A~^^^^^^^^^^~12/01/2016~
-~10000~^~208~^585.^0^^~4~^~NC~^^^^^^^^^^~07/01/2009~
-~10000~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2007~
-~10000~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2007~
-~10000~^~268~^2449.^0^^~4~^~NC~^^^^^^^^^^~07/01/2009~
-~10000~^~301~^36.^4^7.^~1~^~A~^^^1^22.^53.^3^10.^60.^~2, 3~^~05/01/2007~
-~10000~^~304~^12.^4^0.^~1~^~A~^^^1^11.^13.^3^10.^12.^~2, 3~^~05/01/2007~
-~10000~^~305~^160.^4^7.^~1~^~A~^^^1^139.^176.^3^135.^184.^~2, 3~^~05/01/2007~
-~10000~^~306~^214.^4^17.^~1~^~A~^^^1^173.^247.^3^156.^271.^~2, 3~^~05/01/2007~
-~10000~^~307~^125.^4^23.^~1~^~A~^^^1^70.^179.^3^50.^199.^~2, 3~^~05/01/2007~
-~10000~^~318~^0.^0^^~1~^~AS~^^^^^^^^^^~05/01/2007~
-~10000~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2007~
-~10000~^~320~^0.^0^^~1~^~AS~^^^^^^^^^^~05/01/2007~
-~10000~^~321~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2007~
-~10000~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2007~
-~10000~^~324~^61.^0^^~4~^~BFFN~^^^^^^^^^^~07/01/2009~
-~10000~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2007~
-~10000~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2007~
-~10000~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2007~
-~10000~^~417~^0.^0^^~4~^~BFPN~^~10007~^^^^^^^^^~05/01/2007~
-~10000~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2007~
-~10000~^~432~^0.^0^^~4~^~BFPN~^^^^^^^^^^~07/01/2009~
-~10000~^~435~^0.^0^^~4~^~NC~^^^^^^^^^^~07/01/2009~
-~10000~^~601~^81.^4^8.^~1~^~A~^^^1^61.^104.^3^52.^109.^~2, 3~^~05/01/2007~
-~10001~^~208~^376.^0^^~4~^~NC~^^^^^^^^^^~12/01/1992~
-~10001~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2005~
-~10001~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2005~
-~10001~^~268~^1573.^0^^~4~^^^^^^^^^^^~06/01/2005~
-~10001~^~301~^19.^0^^~1~^^^^^^^^^^^~12/01/1992~
-~10001~^~304~^13.^0^^~1~^^^^^^^^^^^~12/01/1992~
-~10001~^~305~^155.^0^^~1~^^^^^^^^^^^~12/01/1992~
-~10001~^~306~^253.^0^^~1~^^^^^^^^^^^~12/01/1992~
-~10001~^~307~^42.^0^^~1~^^^^^^^^^^^~12/01/1992~
-~10001~^~318~^8.^0^^~1~^^^^^^^^^^^~12/01/1992~
-~10001~^~319~^2.^0^^~4~^~NR~^^^^^^^^^^~06/01/2005~
-~10001~^~320~^2.^0^^~1~^^^^^^^^^^^~06/01/2005~
-~10001~^~321~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2005~
-~10001~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2005~
-~10001~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2005~
-~10001~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2005~
-~10001~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2005~
-~10001~^~417~^4.^0^^~1~^^^^^^^^^^^~12/01/1992~
-~10001~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~
-~10001~^~432~^4.^0^^~1~^^^^^^^^^^^~06/01/2005~
-~10001~^~435~^4.^0^^~4~^~NC~^^^^^^^^^^~10/01/2005~
-~10001~^~601~^74.^0^^~1~^^^^^^^^^^^~12/01/1992~
-~10001~^~636~^0.^0^^~1~^^^^^^^^^^^~12/01/1992~
-~10002~^~208~^134.^0^^~4~^~PIK~^^^^^^^^^^~03/01/2009~
-~10002~^~262~^0.^0^^~4~^~PIK~^^^^^^^^^^~03/01/2009~
-~10002~^~263~^0.^0^^~4~^~PIK~^^^^^^^^^^~03/01/2009~
-~10002~^~268~^562.^0^^~4~^~PIK~^^^^^^^^^^~10/01/2013~
-~10002~^~301~^13.^0^^~1~^~PAK~^^^^^^^^^^~03/01/2009~
-~10002~^~304~^24.^0^^~1~^~PAK~^^^^^^^^^^~03/01/2009~
-~10002~^~305~^216.^0^^~1~^~PAK~^^^^^^^^^^~10/01/2013~
-~10002~^~306~^363.^0^^~1~^~PAK~^^^^^^^^^^~10/01/2013~
-~10002~^~307~^59.^0^^~1~^~PAK~^^^^^^^^^^~03/01/2009~
-~10002~^~318~^2.^0^^~1~^~PAK~^^^^^^^^^^~03/01/2009~
-~10002~^~319~^1.^0^^~4~^~PIK~^^^^^^^^^^~03/01/2009~
-~10002~^~320~^1.^0^^~4~^~PIK~^^^^^^^^^^~03/01/2009~
-~10002~^~321~^0.^0^^~4~^~PIK~^^^^^^^^^^~03/01/2009~
-~10002~^~322~^0.^0^^~4~^~PIK~^^^^^^^^^^~03/01/2009~
-~10002~^~324~^19.^0^^~4~^~PIK~^^^^^^^^^^~03/01/2009~
-~10002~^~334~^0.^0^^~4~^~PIK~^^^^^^^^^^~03/01/2009~
-~10002~^~337~^0.^0^^~4~^~PIK~^^^^^^^^^^~03/01/2009~
-~10002~^~338~^0.^0^^~4~^~PIK~^^^^^^^^^^~03/01/2009~
-~10002~^~417~^2.^0^^~4~^~PIK~^^^^^^^^^^~03/01/2009~
-~10002~^~431~^0.^0^^~4~^~PIK~^^^^^^^^^^~03/01/2009~
-~10002~^~432~^2.^0^^~4~^~PIK~^^^^^^^^^^~03/01/2009~
-~10002~^~435~^2.^0^^~4~^~NC~^^^^^^^^^^~03/01/2009~
-~10002~^~601~^64.^0^^~4~^~PIK~^^^^^^^^^^~03/01/2009~
-~10003~^~208~^211.^0^^~4~^~PIK~^^^^^^^^^^~03/01/2009~
-~10003~^~262~^0.^0^^~4~^~PIK~^^^^^^^^^^~03/01/2009~
-~10003~^~263~^0.^0^^~4~^~PIK~^^^^^^^^^^~03/01/2009~
-~10003~^~268~^884.^0^^~4~^~PIK~^^^^^^^^^^~03/01/2009~
-~10003~^~301~^11.^0^^~1~^~PAK~^^^^^^^^^^~03/01/2009~
-~10003~^~304~^21.^0^^~1~^~PAK~^^^^^^^^^^~03/01/2009~
-~10003~^~305~^195.^0^^~1~^~PAK~^^^^^^^^^^~03/01/2009~
-~10003~^~306~^319.^0^^~1~^~PAK~^^^^^^^^^^~03/01/2009~
-~10003~^~307~^57.^0^^~1~^~PAK~^^^^^^^^^^~03/01/2009~
-~10003~^~318~^6.^0^^~1~^~PAK~^^^^^^^^^^~03/01/2009~
-~10003~^~319~^1.^0^^~4~^~PIK~^^^^^^^^^^~03/01/2009~
-~10003~^~320~^1.^0^^~4~^~PIK~^^^^^^^^^^~03/01/2009~
-~10003~^~321~^0.^0^^~4~^~PIK~^^^^^^^^^^~03/01/2009~
-~10003~^~322~^0.^0^^~4~^~PIK~^^^^^^^^^^~03/01/2009~
-~10003~^~324~^29.^0^^~4~^~PIK~^^^^^^^^^^~03/01/2009~
-~10003~^~334~^0.^0^^~4~^~PIK~^^^^^^^^^^~03/01/2009~
-~10003~^~337~^0.^0^^~4~^~PIK~^^^^^^^^^^~03/01/2009~
-~10003~^~338~^0.^0^^~4~^~PIK~^^^^^^^^^^~03/01/2009~
-~10003~^~417~^3.^0^^~4~^~PIK~^^^^^^^^^^~03/01/2009~
-~10003~^~431~^0.^0^^~4~^~PIK~^^^^^^^^^^~03/01/2009~
-~10003~^~432~^3.^0^^~4~^~PIK~^^^^^^^^^^~03/01/2009~
-~10003~^~435~^3.^0^^~4~^~NC~^^^^^^^^^^~04/01/2009~
-~10003~^~601~^69.^0^^~4~^~PIK~^^^^^^^^^^~03/01/2009~
-~10004~^~208~^812.^0^^~4~^~NC~^^^^^^^^^^~12/01/1992~
-~10004~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~10/01/2002~
-~10004~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~10/01/2002~
-~10004~^~268~^3397.^0^^~4~^^^^^^^^^^^~06/01/2009~
-~10004~^~301~^2.^0^^~1~^^^^^^^^^^^~12/01/1992~
-~10004~^~304~^2.^0^^~1~^^^^^^^^^^^~12/01/1992~
-~10004~^~305~^38.^0^^~1~^^^^^^^^^^^~12/01/1992~
-~10004~^~306~^65.^0^^~1~^^^^^^^^^^^~12/01/1992~
-~10004~^~307~^11.^0^^~1~^^^^^^^^^^^~12/01/1992~
-~10004~^~318~^15.^0^^~1~^^^^^^^^^^^~08/01/2004~
-~10004~^~319~^5.^0^^~4~^~NR~^^^^^^^^^^~10/01/2004~
-~10004~^~320~^5.^0^^~4~^~NC~^^^^^^^^^^~06/01/2009~
-~10004~^~321~^0.^0^^~7~^~Z~^^^^^^^^^^~10/01/2002~
-~10004~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~10/01/2002~
-~10004~^~324~^122.^0^^~4~^~BFFN~^^^^^^^^^^~06/01/2009~
-~10004~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~10/01/2002~
-~10004~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~10/01/2002~
-~10004~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~10/01/2002~
-~10004~^~417~^1.^0^^~1~^^^^^^^^^^^~12/01/1992~
-~10004~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~
-~10004~^~432~^1.^0^^~1~^^^^^^^^^^^~06/01/2009~
-~10004~^~435~^1.^0^^~4~^~NC~^^^^^^^^^^~06/01/2009~
-~10004~^~601~^57.^8^2.^~1~^^^^^^^^^^^~12/01/1992~
-~10005~^~208~^518.^0^^~4~^~NC~^^^^^^^^^^~12/01/1992~
-~10005~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~07/01/2002~
-~10005~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~07/01/2002~
-~10005~^~268~^2167.^0^^~4~^^^^^^^^^^^~07/01/2004~
-~10005~^~301~^5.^0^^~1~^^^^^^^^^^^~12/01/1992~
-~10005~^~304~^4.^0^^~1~^^^^^^^^^^^~12/01/1992~
-~10005~^~305~^108.^0^^~1~^^^^^^^^^^^~12/01/1992~
-~10005~^~306~^185.^0^^~1~^^^^^^^^^^^~12/01/1992~
-~10005~^~307~^32.^0^^~1~^^^^^^^^^^^~12/01/1992~
-~10005~^~318~^10.^0^^~1~^^^^^^^^^^^~07/01/2002~
-~10005~^~319~^3.^0^^~4~^~NR~^^^^^^^^^^~07/01/2004~
-~10005~^~320~^3.^0^^~1~^^^^^^^^^^^~07/01/2004~
-~10005~^~321~^0.^0^^~7~^~Z~^^^^^^^^^^~07/01/2002~
-~10005~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~07/01/2002~
-~10005~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~07/01/2002~
-~10005~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~07/01/2002~
-~10005~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~07/01/2002~
-~10005~^~417~^1.^0^^~4~^~BFZN~^^^^^^^^^^~10/01/2002~
-~10005~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~
-~10005~^~432~^1.^0^^~4~^~BFZN~^^^^^^^^^^~10/01/2002~
-~10005~^~435~^1.^0^^~4~^~NC~^^^^^^^^^^~07/01/2004~
-~10005~^~601~^72.^1^^~1~^^^^^^^^^^^~12/01/1992~
-~10006~^~208~^632.^0^^~4~^~NC~^^^^^^^^^^~02/01/2011~
-~10006~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2003~
-~10006~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2003~
-~10006~^~268~^2645.^0^^~4~^~NC~^^^^^^^^^^~02/01/2011~
-~10006~^~301~^14.^1^^~1~^~A~^^^^^^^^^^~02/01/2011~
-~10006~^~304~^6.^1^^~1~^~A~^^^^^^^^^^~02/01/2011~
-~10006~^~305~^84.^1^^~1~^~A~^^^^^^^^^^~02/01/2011~
-~10006~^~306~^333.^1^^~1~^~A~^^^^^^^^^^~02/01/2011~
-~10006~^~307~^47.^1^^~1~^~A~^^^^^^^^^^~02/01/2011~
-~10006~^~318~^86.^0^^~1~^~AS~^^^^^^^^^^~04/01/2010~
-~10006~^~319~^26.^1^^~1~^~A~^^^^^^^^^^~04/01/2010~
-~10006~^~320~^26.^0^^~1~^~AS~^^^^^^^^^^~04/01/2010~
-~10006~^~321~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2003~
-~10006~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2003~
-~10006~^~324~^69.^1^^~1~^~A~^^^^^^^^^^~04/01/2009~
-~10006~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2003~
-~10006~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2003~
-~10006~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2003~
-~10006~^~417~^0.^0^^~4~^~BFPN~^~10068~^^^^^^^^^~04/01/2010~
-~10006~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~
-~10006~^~432~^0.^1^^~1~^~A~^^^^^^^^^~1~^~02/01/2011~
-~10006~^~435~^0.^0^^~4~^~NC~^^^^^^^^^^~04/01/2010~
-~10006~^~601~^72.^1^^~1~^~A~^^^^^^^^^^~02/01/2011~
-~10007~^~208~^626.^0^^~4~^~NC~^^^^^^^^^^~02/01/2011~
-~10007~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~09/01/2002~
-~10007~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~09/01/2002~
-~10007~^~268~^2621.^0^^~4~^~NC~^^^^^^^^^^~02/01/2011~
-~10007~^~301~^22.^1^^~1~^~A~^^^^^^^^^^~02/01/2011~
-~10007~^~304~^9.^1^^~1~^~A~^^^^^^^^^^~02/01/2011~
-~10007~^~305~^109.^1^^~1~^~A~^^^^^^^^^^~02/01/2011~
-~10007~^~306~^125.^1^^~1~^~A~^^^^^^^^^^~02/01/2011~
-~10007~^~307~^56.^1^^~1~^~A~^^^^^^^^^^~02/01/2011~
-~10007~^~318~^80.^0^^~1~^~AS~^^^^^^^^^^~04/01/2010~
-~10007~^~319~^24.^1^^~1~^~A~^^^^^^^^^^~04/01/2010~
-~10007~^~320~^24.^0^^~1~^~AS~^^^^^^^^^^~04/01/2010~
-~10007~^~321~^0.^0^^~7~^~Z~^^^^^^^^^^~09/01/2002~
-~10007~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~09/01/2002~
-~10007~^~324~^72.^1^^~1~^~A~^^^^^^^^^^~04/01/2009~
-~10007~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~09/01/2002~
-~10007~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~09/01/2002~
-~10007~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~09/01/2002~
-~10007~^~417~^0.^1^^~1~^~A~^^^^^^^^^~1~^~04/01/2010~
-~10007~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~
-~10007~^~432~^0.^1^^~1~^~A~^^^^^^^^^^~04/01/2010~
-~10007~^~435~^0.^0^^~4~^~NC~^^^^^^^^^^~04/01/2010~
-~10007~^~601~^79.^1^^~1~^~A~^^^^^^^^^^~02/01/2011~
-~10008~^~208~^245.^0^^~4~^~NC~^^^^^^^^^^~12/01/1992~
-~10008~^~268~^1025.^0^^~4~^^^^^^^^^^^~03/01/2009~
-~10008~^~301~^5.^0^^~1~^^^^^^^^^^^~12/01/1992~
-~10008~^~304~^20.^0^^~1~^^^^^^^^^^^~12/01/1992~
-~10008~^~305~^199.^0^^~1~^^^^^^^^^^^~12/01/1992~
-~10008~^~306~^315.^0^^~1~^^^^^^^^^^^~12/01/1992~
-~10008~^~307~^47.^0^^~1~^^^^^^^^^^^~12/01/1992~
-~10008~^~318~^7.^0^^~1~^^^^^^^^^^^~12/01/1992~
-~10008~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2009~
-~10008~^~320~^0.^0^^~4~^~NR~^^^^^^^^^^~03/01/2009~
-~10008~^~324~^20.^0^^~4~^~BFNN~^^^^^^^^^^~03/01/2009~
-~10008~^~417~^7.^0^^~1~^^^^^^^^^^^~12/01/1992~
-~10008~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~
-~10008~^~432~^7.^0^^~1~^^^^^^^^^^^~03/01/2009~
-~10008~^~435~^7.^0^^~4~^~NC~^^^^^^^^^^~06/01/2009~
-~10008~^~601~^73.^0^^~1~^^^^^^^^^^^~12/01/1992~
-~10009~^~208~^273.^0^^~4~^~NC~^^^^^^^^^^~12/01/1992~
-~10009~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~10/01/2002~
-~10009~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~10/01/2002~
-~10009~^~268~^1142.^0^^~4~^^^^^^^^^^^~03/01/2009~
-~10009~^~301~^14.^0^^~1~^^^^^^^^^^^~12/01/1992~
-~10009~^~304~^22.^0^^~1~^^^^^^^^^^^~12/01/1992~
-~10009~^~305~^263.^0^^~1~^^^^^^^^^^^~12/01/1992~
-~10009~^~306~^352.^0^^~1~^^^^^^^^^^^~12/01/1992~
-~10009~^~307~^60.^0^^~1~^^^^^^^^^^^~12/01/1992~
-~10009~^~318~^10.^0^^~1~^^^^^^^^^^^~12/01/1992~
-~10009~^~319~^3.^0^^~4~^~NR~^^^^^^^^^^~10/01/2002~
-~10009~^~320~^3.^0^^~4~^~NC~^^^^^^^^^^~03/01/2009~
-~10009~^~321~^0.^0^^~7~^~Z~^^^^^^^^^^~10/01/2002~
-~10009~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~10/01/2002~
-~10009~^~324~^33.^0^^~4~^~BFNN~^^^^^^^^^^~03/01/2009~
-~10009~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~10/01/2002~
-~10009~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~10/01/2002~
-~10009~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~10/01/2002~
-~10009~^~417~^10.^0^^~1~^^^^^^^^^^^~12/01/1992~
-~10009~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~
-~10009~^~432~^10.^0^^~1~^^^^^^^^^^^~03/01/2009~
-~10009~^~435~^10.^0^^~4~^~NC~^^^^^^^^^^~03/01/2009~
-~10009~^~601~^94.^0^^~1~^^^^^^^^^^^~12/01/1992~
-~10010~^~208~^136.^0^^~4~^~NC~^^^^^^^^^^~12/01/1992~
-~10010~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~10/01/2002~
-~10010~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~10/01/2002~
-~10010~^~268~^569.^0^^~4~^^^^^^^^^^^~03/01/2009~
-~10010~^~301~^6.^38^0.^~1~^^^^^^^^^^^~12/01/1992~
-~10010~^~304~^25.^25^0.^~1~^^^^^^^^^^^~12/01/1992~
-~10010~^~305~^229.^11^3.^~1~^^^^^^^^^^^~12/01/1992~
-~10010~^~306~^369.^149^3.^~1~^^^^^^^^^^^~12/01/1992~
-~10010~^~307~^55.^123^1.^~1~^^^^^^^^^^^~12/01/1992~
-~10010~^~318~^6.^0^^~1~^^^^^^^^^^^~08/01/2004~
-~10010~^~319~^2.^0^^~4~^~NR~^^^^^^^^^^~10/01/2004~
-~10010~^~320~^2.^0^^~4~^~NC~^^^^^^^^^^~03/01/2009~
-~10010~^~321~^0.^0^^~7~^~Z~^^^^^^^^^^~10/01/2002~
-~10010~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~10/01/2002~
-~10010~^~324~^23.^0^^~4~^~BFNN~^^^^^^^^^^~03/01/2009~
-~10010~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~10/01/2002~
-~10010~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~10/01/2002~
-~10010~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~10/01/2002~
-~10010~^~417~^9.^4^3.^~1~^^^^^^^^^^^~12/01/1992~
-~10010~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~
-~10010~^~432~^9.^4^3.^~1~^^^^^^^^^^^~03/01/2009~
-~10010~^~435~^9.^0^^~4~^~NC~^^^^^^^^^^~03/01/2009~
-~10010~^~601~^68.^25^3.^~1~^^^^^^^^^^^~12/01/1992~
-~10011~^~208~^211.^0^^~4~^~NC~^^^^^^^^^^~12/01/1992~
-~10011~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~10/01/2002~
-~10011~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~10/01/2002~
-~10011~^~268~^883.^0^^~4~^^^^^^^^^^^~03/01/2009~
-~10011~^~301~^7.^1^^~1~^^^^^^^^^^^~12/01/1992~
-~10011~^~304~^25.^1^^~1~^^^^^^^^^^^~12/01/1992~
-~10011~^~305~^281.^1^^~1~^^^^^^^^^^^~12/01/1992~
-~10011~^~306~^373.^12^13.^~1~^^^^^^^^^^^~12/01/1992~
-~10011~^~307~^64.^12^1.^~1~^^^^^^^^^^^~12/01/1992~
-~10011~^~318~^9.^0^^~1~^^^^^^^^^^^~08/01/2004~
-~10011~^~319~^3.^0^^~4~^~NR~^^^^^^^^^^~10/01/2004~
-~10011~^~320~^3.^0^^~4~^~NC~^^^^^^^^^^~03/01/2009~
-~10011~^~321~^0.^0^^~7~^~Z~^^^^^^^^^^~10/01/2002~
-~10011~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~10/01/2002~
-~10011~^~324~^36.^0^^~4~^~BFNN~^^^^^^^^^^~03/01/2009~
-~10011~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~10/01/2002~
-~10011~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~10/01/2002~
-~10011~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~10/01/2002~
-~10011~^~417~^12.^0^^~1~^^^^^^^^^^^~12/01/1992~
-~10011~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~
-~10011~^~432~^12.^0^^~1~^^^^^^^^^^^~03/01/2009~
-~10011~^~435~^12.^0^^~4~^~NC~^^^^^^^^^^~03/01/2009~
-~10011~^~601~^94.^11^2.^~1~^^^^^^^^^^^~12/01/1992~
-~10012~^~208~^182.^0^^~4~^~PIK~^^^^^^^^^^~05/01/2011~
-~10012~^~262~^0.^0^^~4~^~PIK~^^^^^^^^^^~05/01/2011~
-~10012~^~263~^0.^0^^~4~^~PIK~^^^^^^^^^^~05/01/2011~
-~10012~^~268~^763.^0^^~4~^~PIK~^^^^^^^^^^~05/01/2011~
-~10012~^~301~^12.^0^^~1~^~PAK~^^^^^^^^^^~05/01/2011~
-~10012~^~304~^20.^0^^~1~^~PAK~^^^^^^^^^^~05/01/2011~
-~10012~^~305~^216.^0^^~1~^~PAK~^^^^^^^^^^~05/01/2011~
-~10012~^~306~^356.^0^^~1~^~PAK~^^^^^^^^^^~05/01/2011~
-~10012~^~307~^73.^0^^~1~^~PAK~^^^^^^^^^^~05/01/2011~
-~10012~^~318~^16.^0^^~4~^~PIK~^^^^^^^^^^~05/01/2011~
-~10012~^~319~^5.^0^^~4~^~PIK~^^^^^^^^^^~05/01/2011~
-~10012~^~320~^5.^0^^~4~^~PIK~^^^^^^^^^^~05/01/2011~
-~10012~^~321~^0.^0^^~4~^~PIK~^^^^^^^^^^~05/01/2011~
-~10012~^~322~^0.^0^^~4~^~PIK~^^^^^^^^^^~05/01/2011~
-~10012~^~324~^18.^0^^~4~^~PIK~^^^^^^^^^^~05/01/2011~
-~10012~^~334~^0.^0^^~4~^~PIK~^^^^^^^^^^~05/01/2011~
-~10012~^~337~^0.^0^^~4~^~PIK~^^^^^^^^^^~05/01/2011~
-~10012~^~338~^0.^0^^~4~^~PIK~^^^^^^^^^^~05/01/2011~
-~10012~^~417~^0.^0^^~4~^~PIK~^^^^^^^^^^~05/01/2011~
-~10012~^~431~^0.^0^^~4~^~PIK~^^^^^^^^^^~05/01/2011~
-~10012~^~432~^0.^0^^~4~^~PIK~^^^^^^^^^^~05/01/2011~
-~10012~^~435~^0.^0^^~4~^~NC~^^^^^^^^^^~05/01/2011~
-~10012~^~601~^63.^0^^~1~^~PAK~^^^^^^^^^^~05/01/2011~
-~10013~^~208~^209.^0^^~4~^~PIK~^^^^^^^^^^~02/01/2011~
-~10013~^~262~^0.^0^^~4~^~PIK~^^^^^^^^^^~02/01/2011~
-~10013~^~263~^0.^0^^~4~^~PIK~^^^^^^^^^^~02/01/2011~
-~10013~^~268~^873.^0^^~4~^~PIK~^^^^^^^^^^~02/01/2011~
-~10013~^~301~^16.^0^^~1~^~PAK~^^^^^^^^^^~02/01/2011~
-~10013~^~304~^25.^0^^~1~^~PAK~^^^^^^^^^^~02/01/2011~
-~10013~^~305~^255.^0^^~1~^~PAK~^^^^^^^^^^~02/01/2011~
-~10013~^~306~^416.^0^^~1~^~PAK~^^^^^^^^^^~02/01/2011~
-~10013~^~307~^77.^0^^~1~^~PAK~^^^^^^^^^^~02/01/2011~
-~10013~^~318~^10.^0^^~4~^~PIK~^^^^^^^^^^~02/01/2011~
-~10013~^~319~^3.^0^^~4~^~PIK~^^^^^^^^^^~10/01/2004~
-~10013~^~320~^3.^0^^~4~^~PIK~^^^^^^^^^^~03/01/2009~
-~10013~^~321~^0.^0^^~4~^~PIK~^^^^^^^^^^~02/01/2011~
-~10013~^~322~^0.^0^^~4~^~PIK~^^^^^^^^^^~02/01/2011~
-~10013~^~324~^17.^0^^~4~^~PIK~^^^^^^^^^^~02/01/2011~
-~10013~^~334~^0.^0^^~4~^~PIK~^^^^^^^^^^~02/01/2011~
-~10013~^~337~^0.^0^^~4~^~PIK~^^^^^^^^^^~02/01/2011~
-~10013~^~338~^0.^0^^~4~^~PIK~^^^^^^^^^^~02/01/2011~
-~10013~^~417~^0.^0^^~4~^~PIK~^^^^^^^^^^~02/01/2011~
-~10013~^~431~^0.^0^^~4~^~PIK~^^^^^^^^^^~02/01/2011~
-~10013~^~432~^0.^0^^~4~^~PIK~^^^^^^^^^^~02/01/2011~
-~10013~^~435~^0.^0^^~4~^~NC~^^^^^^^^^^~02/01/2011~
-~10013~^~601~^85.^0^^~1~^~PAK~^^^^^^^^^^~02/01/2011~
-~10014~^~208~^120.^0^^~4~^~NC~^^^^^^^^^^~01/01/2011~
-~10014~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2006~
-~10014~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2006~
-~10014~^~268~^500.^0^^~4~^~NC~^^^^^^^^^^~01/01/2011~
-~10014~^~301~^12.^6^0.^~1~^~A~^^^1^10.^14.^5^10.^13.^~2, 3~^~01/01/2011~
-~10014~^~304~^22.^6^0.^~1~^~A~^^^1^20.^24.^5^20.^23.^~2, 3~^~01/01/2011~
-~10014~^~305~^235.^6^4.^~1~^~A~^^^1^219.^251.^5^223.^246.^~2, 3~^~01/01/2011~
-~10014~^~306~^359.^6^14.^~1~^~A~^^^1^324.^405.^5^321.^396.^~2, 3~^~01/01/2011~
-~10014~^~307~^76.^6^2.^~1~^~A~^^^1^71.^86.^5^70.^82.^~2, 3~^~01/01/2011~
-~10014~^~318~^7.^0^^~4~^~NC~^^^^^^^^^^~01/01/2011~
-~10014~^~319~^2.^0^^~4~^~NR~^^^^^^^^^^~04/01/2006~
-~10014~^~320~^2.^0^^~4~^~NC~^^^^^^^^^^~04/01/2006~
-~10014~^~321~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2006~
-~10014~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2006~
-~10014~^~324~^11.^0^^~4~^~BFFN~^~10032~^^^^^^^^^~01/01/2011~
-~10014~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2006~
-~10014~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2006~
-~10014~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2006~
-~10014~^~417~^0.^0^^~4~^~BFSN~^~10032~^^^^^^^^^~01/01/2011~
-~10014~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2006~
-~10014~^~432~^0.^0^^~4~^~NR~^^^^^^^^^^~01/01/2011~
-~10014~^~435~^0.^0^^~4~^~NC~^^^^^^^^^^~01/01/2011~
-~10014~^~601~^62.^6^1.^~1~^~A~^^^1^59.^67.^5^58.^64.^~2, 3~^~01/01/2011~
-~10015~^~208~^165.^0^^~4~^~NC~^^^^^^^^^^~01/01/2011~
-~10015~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2006~
-~10015~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2006~
-~10015~^~268~^690.^0^^~4~^~NC~^^^^^^^^^^~01/01/2011~
-~10015~^~301~^16.^6^0.^~1~^~A~^^^1^13.^19.^5^13.^18.^~2, 3~^~01/01/2011~
-~10015~^~304~^27.^6^0.^~1~^~A~^^^1^25.^31.^5^24.^28.^~2, 3~^~01/01/2011~
-~10015~^~305~^273.^6^6.^~1~^~A~^^^1^253.^295.^5^255.^291.^~2, 3~^~01/01/2011~
-~10015~^~306~^425.^6^15.^~1~^~A~^^^1^380.^477.^5^383.^465.^~2, 3~^~01/01/2011~
-~10015~^~307~^80.^6^2.^~1~^~A~^^^1^73.^90.^5^73.^86.^~2, 3~^~01/01/2011~
-~10015~^~318~^2.^0^^~4~^~NC~^^^^^^^^^^~01/01/2011~
-~10015~^~319~^1.^0^^~4~^~BFFN~^~10035~^^^^^^^^^~01/01/2011~
-~10015~^~320~^1.^0^^~4~^~NC~^^^^^^^^^^~01/01/2011~
-~10015~^~321~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2006~
-~10015~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2006~
-~10015~^~324~^12.^0^^~4~^~BFFN~^~10035~^^^^^^^^^~01/01/2011~
-~10015~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2006~
-~10015~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2006~
-~10015~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2006~
-~10015~^~417~^0.^0^^~4~^~BFPN~^~10035~^^^^^^^^^~01/01/2011~
-~10015~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2006~
-~10015~^~432~^0.^0^^~4~^~NR~^^^^^^^^^^~01/01/2011~
-~10015~^~435~^0.^0^^~4~^~NC~^^^^^^^^^^~01/01/2011~
-~10015~^~601~^86.^6^3.^~1~^~A~^^^1^76.^97.^5^77.^95.^~2, 3~^~01/01/2011~
-~10016~^~208~^193.^0^^~4~^~PIK~^^^^^^^^^^~02/01/2011~
-~10016~^~262~^0.^0^^~4~^~PIK~^^^^^^^^^^~02/01/2011~
-~10016~^~263~^0.^0^^~4~^~PIK~^^^^^^^^^^~02/01/2011~
-~10016~^~268~^807.^0^^~4~^~PIK~^^^^^^^^^^~02/01/2011~
-~10016~^~301~^12.^0^^~1~^~PAK~^^^^^^^^^^~02/01/2011~
-~10016~^~304~^19.^0^^~1~^~PAK~^^^^^^^^^^~12/01/1992~
-~10016~^~305~^204.^0^^~1~^~PAK~^^^^^^^^^^~02/01/2011~
-~10016~^~306~^329.^0^^~1~^~PAK~^^^^^^^^^^~02/01/2011~
-~10016~^~307~^84.^0^^~1~^~PAK~^^^^^^^^^^~02/01/2011~
-~10016~^~318~^20.^0^^~4~^~PIK~^^^^^^^^^^~02/01/2011~
-~10016~^~319~^6.^0^^~4~^~PIK~^^^^^^^^^^~02/01/2011~
-~10016~^~320~^6.^0^^~4~^~PIK~^^^^^^^^^^~02/01/2011~
-~10016~^~321~^0.^0^^~4~^~PIK~^^^^^^^^^^~02/01/2011~
-~10016~^~322~^0.^0^^~4~^~PIK~^^^^^^^^^^~02/01/2011~
-~10016~^~324~^20.^0^^~4~^~PIK~^^^^^^^^^^~02/01/2011~
-~10016~^~334~^0.^0^^~4~^~PIK~^^^^^^^^^^~02/01/2011~
-~10016~^~337~^0.^0^^~4~^~PIK~^^^^^^^^^^~02/01/2011~
-~10016~^~338~^0.^0^^~4~^~PIK~^^^^^^^^^^~02/01/2011~
-~10016~^~417~^0.^0^^~4~^~PIK~^^^^^^^^^^~02/01/2011~
-~10016~^~431~^0.^0^^~4~^~PIK~^^^^^^^^^^~02/01/2011~
-~10016~^~432~^0.^0^^~4~^~PIK~^^^^^^^^^^~02/01/2011~
-~10016~^~435~^0.^0^^~4~^~NC~^^^^^^^^^^~02/01/2011~
-~10016~^~601~^67.^0^^~1~^~PAK~^^^^^^^^^^~02/01/2011~
-~10017~^~208~^232.^0^^~4~^~PIK~^^^^^^^^^^~02/01/2011~
-~10017~^~262~^0.^0^^~4~^~PIK~^^^^^^^^^^~02/01/2011~
-~10017~^~263~^0.^0^^~4~^~PIK~^^^^^^^^^^~02/01/2011~
-~10017~^~268~^970.^0^^~4~^~PIK~^^^^^^^^^^~02/01/2011~
-~10017~^~301~^15.^0^^~1~^~PAK~^^^^^^^^^^~12/01/1992~
-~10017~^~304~^22.^0^^~1~^~PAK~^^^^^^^^^^~12/01/1992~
-~10017~^~305~^242.^0^^~1~^~PAK~^^^^^^^^^^~02/01/2011~
-~10017~^~306~^345.^0^^~1~^~PAK~^^^^^^^^^^~02/01/2011~
-~10017~^~307~^81.^0^^~1~^~PAK~^^^^^^^^^^~02/01/2011~
-~10017~^~318~^14.^0^^~4~^~PIK~^^^^^^^^^^~02/01/2011~
-~10017~^~319~^4.^0^^~4~^~PIK~^^^^^^^^^^~02/01/2011~
-~10017~^~320~^4.^0^^~4~^~PIK~^^^^^^^^^^~02/01/2011~
-~10017~^~321~^0.^0^^~4~^~PIK~^^^^^^^^^^~02/01/2011~
-~10017~^~322~^0.^0^^~4~^~PIK~^^^^^^^^^^~02/01/2011~
-~10017~^~324~^22.^0^^~4~^~PIK~^^^^^^^^^^~02/01/2011~
-~10017~^~334~^0.^0^^~4~^~PIK~^^^^^^^^^^~02/01/2011~
-~10017~^~337~^0.^0^^~4~^~PIK~^^^^^^^^^^~02/01/2011~
-~10017~^~338~^0.^0^^~4~^~PIK~^^^^^^^^^^~02/01/2011~
-~10017~^~417~^0.^0^^~4~^~PIK~^^^^^^^^^^~02/01/2011~
-~10017~^~431~^0.^0^^~4~^~PIK~^^^^^^^^^^~02/01/2011~
-~10017~^~432~^0.^0^^~4~^~PIK~^^^^^^^^^^~02/01/2011~
-~10017~^~435~^0.^0^^~4~^~NC~^^^^^^^^^^~02/01/2011~
-~10017~^~601~^91.^0^^~1~^~PAK~^^^^^^^^^^~02/01/2011~
-~10018~^~208~^119.^0^^~4~^~NC~^^^^^^^^^^~01/01/2011~
-~10018~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2005~
-~10018~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2005~
-~10018~^~268~^498.^0^^~4~^~NC~^^^^^^^^^^~01/01/2011~
-~10018~^~301~^12.^6^0.^~1~^~A~^^^1^9.^15.^5^9.^13.^~2, 3~^~01/01/2011~
-~10018~^~304~^21.^6^0.^~1~^~A~^^^1^18.^24.^5^18.^22.^~2, 3~^~01/01/2011~
-~10018~^~305~^224.^6^4.^~1~^~A~^^^1^201.^233.^5^212.^236.^~2, 3~^~01/01/2011~
-~10018~^~306~^329.^6^3.^~1~^~A~^^^1^322.^343.^5^320.^337.^~2, 3~^~01/01/2011~
-~10018~^~307~^90.^6^4.^~1~^~A~^^^1^81.^112.^5^78.^101.^~2, 3~^~01/01/2011~
-~10018~^~318~^9.^0^^~4~^~NC~^^^^^^^^^^~01/01/2011~
-~10018~^~319~^3.^0^^~4~^~BFSN~^~10032~^^^^^^^^^~01/01/2011~
-~10018~^~320~^3.^0^^~4~^~NC~^^^^^^^^^^~01/01/2011~
-~10018~^~321~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2005~
-~10018~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2005~
-~10018~^~324~^11.^0^^~4~^~BFFN~^~10032~^^^^^^^^^~01/01/2011~
-~10018~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2005~
-~10018~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2005~
-~10018~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2005~
-~10018~^~417~^0.^0^^~4~^~BFPN~^~10032~^^^^^^^^^~01/01/2011~
-~10018~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2006~
-~10018~^~432~^0.^0^^~4~^~NR~^^^^^^^^^^~01/01/2011~
-~10018~^~435~^0.^0^^~4~^~NC~^^^^^^^^^^~01/01/2011~
-~10018~^~601~^66.^6^2.^~1~^~A~^^^1^59.^79.^5^58.^72.^~2, 3~^~01/01/2011~
-~10019~^~208~^175.^0^^~4~^~NC~^^^^^^^^^^~01/01/2011~
-~10019~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2006~
-~10019~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2006~
-~10019~^~268~^733.^0^^~4~^~NC~^^^^^^^^^^~01/01/2011~
-~10019~^~301~^14.^6^0.^~1~^~A~^^^1^12.^17.^5^12.^15.^~2, 3~^~01/01/2011~
-~10019~^~304~^24.^6^0.^~1~^~A~^^^1^21.^26.^5^22.^25.^~2, 3~^~01/01/2011~
-~10019~^~305~^261.^6^4.^~1~^~A~^^^1^246.^277.^5^248.^272.^~2, 3~^~01/01/2011~
-~10019~^~306~^376.^6^5.^~1~^~A~^^^1^362.^398.^5^361.^390.^~2, 3~^~01/01/2011~
-~10019~^~307~^84.^6^4.^~1~^~A~^^^1^73.^102.^5^73.^95.^~2, 3~^~01/01/2011~
-~10019~^~318~^4.^0^^~4~^~NC~^^^^^^^^^^~01/01/2011~
-~10019~^~319~^1.^0^^~4~^~BFSN~^~10035~^^^^^^^^^~01/01/2011~
-~10019~^~320~^1.^0^^~4~^~NC~^^^^^^^^^^~01/01/2011~
-~10019~^~321~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2006~
-~10019~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2006~
-~10019~^~324~^15.^0^^~4~^~BFFN~^~10035~^^^^^^^^^~01/01/2011~
-~10019~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2006~
-~10019~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2006~
-~10019~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2006~
-~10019~^~417~^0.^0^^~4~^~BFPN~^~10035~^^^^^^^^^~01/01/2011~
-~10019~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2006~
-~10019~^~432~^0.^0^^~4~^~NR~^^^^^^^^^^~01/01/2011~
-~10019~^~435~^0.^0^^~4~^~NC~^^^^^^^^^^~01/01/2011~
-~10019~^~601~^93.^6^4.^~1~^~A~^^^1^82.^111.^5^82.^103.^~2, 3~^~01/01/2011~
-~10020~^~208~^198.^0^^~4~^~NC~^^^^^^^^^^~12/01/1992~
-~10020~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~09/01/2002~
-~10020~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~09/01/2002~
-~10020~^~268~^828.^0^^~4~^^^^^^^^^^^~03/01/2009~
-~10020~^~301~^18.^0^^~1~^^^^^^^^^^^~12/01/1992~
-~10020~^~304~^21.^0^^~1~^^^^^^^^^^^~12/01/1992~
-~10020~^~305~^197.^0^^~1~^^^^^^^^^^^~12/01/1992~
-~10020~^~306~^356.^0^^~1~^^^^^^^^^^^~12/01/1992~
-~10020~^~307~^50.^0^^~1~^^^^^^^^^^^~12/01/1992~
-~10020~^~318~^7.^0^^~1~^^^^^^^^^^^~08/01/2004~
-~10020~^~319~^2.^0^^~4~^~NR~^^^^^^^^^^~09/01/2002~
-~10020~^~320~^2.^0^^~4~^~NC~^^^^^^^^^^~03/01/2009~
-~10020~^~321~^0.^0^^~7~^~Z~^^^^^^^^^^~09/01/2002~
-~10020~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~09/01/2002~
-~10020~^~324~^21.^0^^~4~^~BFNN~^^^^^^^^^^~03/01/2009~
-~10020~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~09/01/2002~
-~10020~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~09/01/2002~
-~10020~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~09/01/2002~
-~10020~^~417~^1.^0^^~4~^~BFZN~^^^^^^^^^^~11/01/2002~
-~10020~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~
-~10020~^~432~^1.^0^^~4~^~BFZN~^^^^^^^^^^~03/01/2009~
-~10020~^~435~^1.^0^^~4~^~NC~^^^^^^^^^^~03/01/2009~
-~10020~^~601~^63.^0^^~1~^^^^^^^^^^^~12/01/1992~
-~10021~^~208~^239.^0^^~4~^~NC~^^^^^^^^^^~12/01/1992~
-~10021~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~10/01/2002~
-~10021~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~10/01/2002~
-~10021~^~268~^1000.^0^^~4~^^^^^^^^^^^~03/01/2009~
-~10021~^~301~^21.^0^^~1~^^^^^^^^^^^~12/01/1992~
-~10021~^~304~^19.^0^^~1~^^^^^^^^^^^~12/01/1992~
-~10021~^~305~^181.^0^^~1~^^^^^^^^^^^~12/01/1992~
-~10021~^~306~^374.^0^^~1~^^^^^^^^^^^~12/01/1992~
-~10021~^~307~^48.^0^^~1~^^^^^^^^^^^~12/01/1992~
-~10021~^~318~^7.^0^^~1~^^^^^^^^^^^~08/01/2004~
-~10021~^~319~^2.^0^^~4~^~NR~^^^^^^^^^^~10/01/2002~
-~10021~^~320~^2.^0^^~4~^~NC~^^^^^^^^^^~03/01/2009~
-~10021~^~321~^0.^0^^~7~^~Z~^^^^^^^^^^~10/01/2002~
-~10021~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~10/01/2002~
-~10021~^~324~^47.^0^^~4~^~BFFN~^^^^^^^^^^~03/01/2009~
-~10021~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~10/01/2002~
-~10021~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~10/01/2002~
-~10021~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~10/01/2002~
-~10021~^~417~^3.^0^^~1~^^^^^^^^^^^~12/01/1992~
-~10021~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~
-~10021~^~432~^3.^0^^~1~^^^^^^^^^^^~03/01/2009~
-~10021~^~435~^3.^0^^~4~^~NC~^^^^^^^^^^~03/01/2009~
-~10021~^~601~^80.^0^^~1~^^^^^^^^^^^~12/01/1992~
-~10022~^~208~^242.^0^^~4~^~NC~^^^^^^^^^^~12/01/1992~
-~10022~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~10/01/2002~
-~10022~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~10/01/2002~
-~10022~^~268~^1013.^0^^~4~^^^^^^^^^^^~03/01/2009~
-~10022~^~301~^19.^0^^~1~^^^^^^^^^^^~12/01/1992~
-~10022~^~304~^28.^0^^~1~^^^^^^^^^^^~12/01/1992~
-~10022~^~305~^246.^0^^~1~^^^^^^^^^^^~12/01/1992~
-~10022~^~306~^423.^0^^~1~^^^^^^^^^^^~12/01/1992~
-~10022~^~307~^62.^0^^~1~^^^^^^^^^^^~12/01/1992~
-~10022~^~318~^7.^0^^~1~^^^^^^^^^^^~08/01/2004~
-~10022~^~319~^2.^0^^~4~^~NR~^^^^^^^^^^~10/01/2002~
-~10022~^~320~^2.^0^^~4~^~NC~^^^^^^^^^^~03/01/2009~
-~10022~^~321~^0.^0^^~7~^~Z~^^^^^^^^^^~10/01/2002~
-~10022~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~10/01/2002~
-~10022~^~324~^53.^0^^~4~^~BFFN~^^^^^^^^^^~03/01/2009~
-~10022~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~10/01/2002~
-~10022~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~10/01/2002~
-~10022~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~10/01/2002~
-~10022~^~417~^5.^0^^~1~^^^^^^^^^^^~12/01/1992~
-~10022~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~
-~10022~^~432~^5.^0^^~1~^^^^^^^^^^^~03/01/2009~
-~10022~^~435~^5.^0^^~4~^~NC~^^^^^^^^^^~03/01/2009~
-~10022~^~601~^80.^0^^~1~^^^^^^^^^^^~12/01/1992~
-~10023~^~208~^248.^0^^~4~^~NC~^^^^^^^^^^~12/01/1992~
-~10023~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~10/01/2002~
-~10023~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~10/01/2002~
-~10023~^~268~^1038.^0^^~4~^^^^^^^^^^^~03/01/2009~
-~10023~^~301~^19.^0^^~1~^^^^^^^^^^^~12/01/1992~
-~10023~^~304~^26.^0^^~1~^^^^^^^^^^^~12/01/1992~
-~10023~^~305~^242.^0^^~1~^^^^^^^^^^^~12/01/1992~
-~10023~^~306~^408.^0^^~1~^^^^^^^^^^^~12/01/1992~
-~10023~^~307~^59.^0^^~1~^^^^^^^^^^^~12/01/1992~
-~10023~^~318~^9.^0^^~1~^^^^^^^^^^^~08/01/2004~
-~10023~^~319~^3.^0^^~4~^~NR~^^^^^^^^^^~10/01/2004~
-~10023~^~320~^3.^0^^~4~^~NC~^^^^^^^^^^~03/01/2009~
-~10023~^~321~^0.^0^^~7~^~Z~^^^^^^^^^^~10/01/2002~
-~10023~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~10/01/2002~
-~10023~^~324~^42.^0^^~4~^~BFFN~^^^^^^^^^^~03/01/2009~
-~10023~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~10/01/2002~
-~10023~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~10/01/2002~
-~10023~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~10/01/2002~
-~10023~^~417~^6.^0^^~1~^^^^^^^^^^^~12/01/1992~
-~10023~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~
-~10023~^~432~^6.^0^^~1~^^^^^^^^^^^~03/01/2009~
-~10023~^~435~^6.^0^^~4~^~NC~^^^^^^^^^^~03/01/2009~
-~10023~^~601~^82.^0^^~1~^^^^^^^^^^^~12/01/1992~
-~10024~^~208~^143.^0^^~4~^~NC~^^^^^^^^^^~12/01/1992~
-~10024~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~10/01/2002~
-~10024~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~10/01/2002~
-~10024~^~268~^598.^0^^~4~^^^^^^^^^^^~02/01/2009~
-~10024~^~301~^17.^0^^~1~^^^^^^^^^^^~12/01/1992~
-~10024~^~304~^23.^0^^~1~^^^^^^^^^^^~12/01/1992~
-~10024~^~305~^211.^0^^~1~^^^^^^^^^^^~12/01/1992~
-~10024~^~306~^389.^0^^~1~^^^^^^^^^^^~12/01/1992~
-~10024~^~307~^52.^0^^~1~^^^^^^^^^^^~12/01/1992~
-~10024~^~318~^7.^0^^~1~^^^^^^^^^^^~08/01/2004~
-~10024~^~319~^2.^0^^~4~^~NR~^^^^^^^^^^~01/01/2003~
-~10024~^~320~^2.^0^^~4~^~NC~^^^^^^^^^^~02/01/2009~
-~10024~^~321~^0.^0^^~7~^~Z~^^^^^^^^^^~10/01/2002~
-~10024~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~10/01/2002~
-~10024~^~324~^22.^0^^~4~^~BFFN~^^^^^^^^^^~02/01/2009~
-~10024~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~10/01/2002~
-~10024~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~10/01/2002~
-~10024~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~10/01/2002~
-~10024~^~417~^5.^0^^~1~^^^^^^^^^^^~12/01/1992~
-~10024~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~
-~10024~^~432~^5.^0^^~1~^^^^^^^^^^^~02/01/2009~
-~10024~^~435~^5.^0^^~4~^~NC~^^^^^^^^^^~02/01/2009~
-~10024~^~601~^59.^0^^~1~^^^^^^^^^^^~02/01/2009~
-~10025~^~208~^204.^0^^~4~^~NC~^^^^^^^^^^~12/01/1992~
-~10025~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2003~
-~10025~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2003~
-~10025~^~268~^854.^0^^~4~^^^^^^^^^^^~02/01/2009~
-~10025~^~301~^18.^0^^~1~^^^^^^^^^^^~12/01/1992~
-~10025~^~304~^20.^0^^~1~^^^^^^^^^^^~12/01/1992~
-~10025~^~305~^183.^0^^~1~^^^^^^^^^^^~12/01/1992~
-~10025~^~306~^387.^0^^~1~^^^^^^^^^^^~12/01/1992~
-~10025~^~307~^50.^0^^~1~^^^^^^^^^^^~12/01/1992~
-~10025~^~318~^7.^0^^~1~^^^^^^^^^^^~08/01/2004~
-~10025~^~319~^2.^0^^~4~^~NR~^^^^^^^^^^~01/01/2003~
-~10025~^~320~^2.^0^^~4~^~NC~^^^^^^^^^^~02/01/2009~
-~10025~^~321~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2003~
-~10025~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2003~
-~10025~^~324~^31.^0^^~4~^~BFFN~^^^^^^^^^^~02/01/2009~
-~10025~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2003~
-~10025~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2003~
-~10025~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2003~
-~10025~^~417~^4.^0^^~1~^^^^^^^^^^^~12/01/1992~
-~10025~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~
-~10025~^~432~^4.^0^^~1~^^^^^^^^^^^~02/01/2009~
-~10025~^~435~^4.^0^^~4~^~NC~^^^^^^^^^^~02/01/2009~
-~10025~^~601~^79.^0^^~1~^^^^^^^^^^^~02/01/2009~
-~10026~^~208~^210.^0^^~4~^~NC~^^^^^^^^^^~12/01/1992~
-~10026~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2003~
-~10026~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2003~
-~10026~^~268~^879.^0^^~4~^^^^^^^^^^^~02/01/2009~
-~10026~^~301~^17.^0^^~1~^^^^^^^^^^^~12/01/1992~
-~10026~^~304~^29.^0^^~1~^^^^^^^^^^^~12/01/1992~
-~10026~^~305~^253.^0^^~1~^^^^^^^^^^^~12/01/1992~
-~10026~^~306~^438.^0^^~1~^^^^^^^^^^^~12/01/1992~
-~10026~^~307~^64.^0^^~1~^^^^^^^^^^^~12/01/1992~
-~10026~^~318~^7.^0^^~1~^^^^^^^^^^^~08/01/2004~
-~10026~^~319~^2.^0^^~4~^~NR~^^^^^^^^^^~01/01/2003~
-~10026~^~320~^2.^0^^~4~^~NC~^^^^^^^^^^~02/01/2009~
-~10026~^~321~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2003~
-~10026~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2003~
-~10026~^~324~^37.^0^^~4~^~BFFN~^^^^^^^^^^~02/01/2009~
-~10026~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2003~
-~10026~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2003~
-~10026~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2003~
-~10026~^~417~^6.^0^^~1~^^^^^^^^^^^~12/01/1992~
-~10026~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~
-~10026~^~432~^6.^0^^~1~^^^^^^^^^^^~02/01/2009~
-~10026~^~435~^6.^0^^~4~^~NC~^^^^^^^^^^~02/01/2009~
-~10026~^~601~^79.^0^^~1~^^^^^^^^^^^~02/01/2009~
-~10027~^~208~^209.^0^^~4~^~NC~^^^^^^^^^^~12/01/1992~
-~10027~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~09/01/2002~
-~10027~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~09/01/2002~
-~10027~^~268~^874.^0^^~4~^^^^^^^^^^^~02/01/2009~
-~10027~^~301~^18.^0^^~1~^^^^^^^^^^^~12/01/1992~
-~10027~^~304~^28.^0^^~1~^^^^^^^^^^^~12/01/1992~
-~10027~^~305~^249.^0^^~1~^^^^^^^^^^^~12/01/1992~
-~10027~^~306~^425.^0^^~1~^^^^^^^^^^^~12/01/1992~
-~10027~^~307~^58.^0^^~1~^^^^^^^^^^^~12/01/1992~
-~10027~^~318~^8.^0^^~1~^^^^^^^^^^^~12/01/2006~
-~10027~^~319~^2.^0^^~4~^~NR~^^^^^^^^^^~09/01/2002~
-~10027~^~320~^2.^0^^~4~^~NC~^^^^^^^^^^~02/01/2009~
-~10027~^~321~^0.^0^^~7~^~Z~^^^^^^^^^^~09/01/2002~
-~10027~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~09/01/2002~
-~10027~^~324~^27.^0^^~4~^~BFFN~^^^^^^^^^^~02/01/2009~
-~10027~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~09/01/2002~
-~10027~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~09/01/2002~
-~10027~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~09/01/2002~
-~10027~^~417~^1.^0^^~4~^~BFZN~^^^^^^^^^^~11/01/2002~
-~10027~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~
-~10027~^~432~^1.^0^^~4~^~BFZN~^^^^^^^^^^~02/01/2009~
-~10027~^~435~^1.^0^^~4~^~NC~^^^^^^^^^^~02/01/2009~
-~10027~^~601~^81.^0^^~1~^^^^^^^^^^^~02/01/2009~
-~10028~^~208~^194.^0^^~4~^~PIK~^^^^^^^^^^~06/01/2010~
-~10028~^~262~^0.^0^^~4~^~PIK~^^^^^^^^^^~06/01/2010~
-~10028~^~263~^0.^0^^~4~^~PIK~^^^^^^^^^^~06/01/2010~
-~10028~^~268~^813.^0^^~4~^~PIK~^^^^^^^^^^~06/01/2010~
-~10028~^~301~^35.^0^^~1~^~PAK~^^^^^^^^^^~06/01/2010~
-~10028~^~304~^17.^0^^~1~^~PAK~^^^^^^^^^^~06/01/2010~
-~10028~^~305~^207.^0^^~1~^~PAK~^^^^^^^^^^~06/01/2010~
-~10028~^~306~^288.^0^^~1~^~PAK~^^^^^^^^^^~06/01/2010~
-~10028~^~307~^69.^0^^~1~^~PAK~^^^^^^^^^^~06/01/2010~
-~10028~^~318~^20.^0^^~1~^~PAK~^^^^^^^^^^~06/01/2010~
-~10028~^~319~^6.^0^^~1~^~PAK~^^^^^^^^^^~06/01/2010~
-~10028~^~320~^6.^0^^~1~^~PAK~^^^^^^^^^^~06/01/2010~
-~10028~^~321~^0.^0^^~4~^~PIK~^^^^^^^^^^~06/01/2010~
-~10028~^~322~^0.^0^^~4~^~PIK~^^^^^^^^^^~06/01/2010~
-~10028~^~324~^29.^0^^~1~^~PAK~^^^^^^^^^^~06/01/2010~
-~10028~^~334~^0.^0^^~4~^~PIK~^^^^^^^^^^~06/01/2010~
-~10028~^~337~^0.^0^^~4~^~PIK~^^^^^^^^^^~06/01/2010~
-~10028~^~338~^0.^0^^~4~^~PIK~^^^^^^^^^^~06/01/2010~
-~10028~^~417~^0.^0^^~4~^~PIK~^^^^^^^^^^~06/01/2010~
-~10028~^~431~^0.^0^^~4~^~PIK~^^^^^^^^^^~06/01/2010~
-~10028~^~432~^0.^0^^~4~^~PIK~^^^^^^^^^^~06/01/2010~
-~10028~^~435~^0.^0^^~4~^~NC~^^^^^^^^^^~09/01/2010~
-~10028~^~601~^63.^0^^~1~^~PAK~^^^^^^^^^^~06/01/2010~
-~10029~^~208~^255.^0^^~4~^~PIK~^^^^^^^^^^~06/01/2010~
-~10029~^~262~^0.^0^^~4~^~PIK~^^^^^^^^^^~06/01/2010~
-~10029~^~263~^0.^0^^~4~^~PIK~^^^^^^^^^^~06/01/2010~
-~10029~^~268~^1067.^0^^~4~^~PIK~^^^^^^^^^^~06/01/2010~
-~10029~^~301~^51.^0^^~1~^~PAK~^^^^^^^^^^~06/01/2010~
-~10029~^~304~^19.^0^^~1~^~PAK~^^^^^^^^^^~06/01/2010~
-~10029~^~305~^213.^0^^~1~^~PAK~^^^^^^^^^^~06/01/2010~
-~10029~^~306~^259.^0^^~1~^~PAK~^^^^^^^^^^~06/01/2010~
-~10029~^~307~^69.^0^^~1~^~PAK~^^^^^^^^^^~06/01/2010~
-~10029~^~318~^13.^0^^~1~^~PAK~^^^^^^^^^^~06/01/2010~
-~10029~^~319~^4.^0^^~1~^~PAK~^^^^^^^^^^~06/01/2010~
-~10029~^~320~^4.^0^^~1~^~PAK~^^^^^^^^^^~06/01/2010~
-~10029~^~321~^0.^0^^~4~^~PIK~^^^^^^^^^^~06/01/2010~
-~10029~^~322~^0.^0^^~4~^~PIK~^^^^^^^^^^~06/01/2010~
-~10029~^~324~^39.^0^^~1~^~PAK~^^^^^^^^^^~06/01/2010~
-~10029~^~334~^0.^0^^~4~^~PIK~^^^^^^^^^^~06/01/2010~
-~10029~^~337~^0.^0^^~4~^~PIK~^^^^^^^^^^~06/01/2010~
-~10029~^~338~^0.^0^^~4~^~PIK~^^^^^^^^^^~06/01/2010~
-~10029~^~417~^0.^0^^~4~^~PIK~^^^^^^^^^^~06/01/2010~
-~10029~^~431~^0.^0^^~4~^~PIK~^^^^^^^^^^~06/01/2010~
-~10029~^~432~^0.^0^^~4~^~PIK~^^^^^^^^^^~06/01/2010~
-~10029~^~435~^0.^0^^~4~^~NC~^^^^^^^^^^~06/01/2010~
-~10029~^~601~^86.^0^^~1~^~PAK~^^^^^^^^^^~06/01/2010~
-~10030~^~208~^231.^0^^~4~^~PIK~^^^^^^^^^^~06/01/2010~
-~10030~^~262~^0.^0^^~4~^~PIK~^^^^^^^^^^~06/01/2010~
-~10030~^~263~^0.^0^^~4~^~PIK~^^^^^^^^^^~06/01/2010~
-~10030~^~268~^965.^0^^~4~^~PIK~^^^^^^^^^^~06/01/2010~
-~10030~^~301~^56.^0^^~1~^~PAK~^^^^^^^^^^~06/01/2010~
-~10030~^~304~^20.^0^^~1~^~PAK~^^^^^^^^^^~06/01/2010~
-~10030~^~305~^241.^0^^~1~^~PAK~^^^^^^^^^^~06/01/2010~
-~10030~^~306~^315.^0^^~1~^~PAK~^^^^^^^^^^~06/01/2010~
-~10030~^~307~^74.^0^^~1~^~PAK~^^^^^^^^^^~06/01/2010~
-~10030~^~318~^15.^0^^~1~^~PAK~^^^^^^^^^^~06/01/2010~
-~10030~^~319~^4.^0^^~1~^~PAK~^^^^^^^^^^~06/01/2010~
-~10030~^~320~^4.^0^^~1~^~PAK~^^^^^^^^^^~06/01/2010~
-~10030~^~321~^0.^0^^~4~^~PIK~^^^^^^^^^^~06/01/2010~
-~10030~^~322~^0.^0^^~4~^~PIK~^^^^^^^^^^~06/01/2010~
-~10030~^~324~^40.^0^^~1~^~PAK~^^^^^^^^^^~06/01/2010~
-~10030~^~334~^0.^0^^~4~^~PIK~^^^^^^^^^^~06/01/2010~
-~10030~^~337~^0.^0^^~4~^~PIK~^^^^^^^^^^~06/01/2010~
-~10030~^~338~^0.^0^^~4~^~PIK~^^^^^^^^^^~06/01/2010~
-~10030~^~417~^0.^0^^~4~^~PIK~^^^^^^^^^^~06/01/2010~
-~10030~^~431~^0.^0^^~4~^~PIK~^^^^^^^^^^~06/01/2010~
-~10030~^~432~^0.^0^^~4~^~PIK~^^^^^^^^^^~06/01/2010~
-~10030~^~435~^0.^0^^~4~^~NC~^^^^^^^^^^~06/01/2010~
-~10030~^~601~^78.^0^^~1~^~PAK~^^^^^^^^^^~06/01/2010~
-~10031~^~208~^254.^0^^~4~^~PIK~^^^^^^^^^^~06/01/2010~
-~10031~^~262~^0.^0^^~4~^~PIK~^^^^^^^^^^~06/01/2010~
-~10031~^~263~^0.^0^^~4~^~PIK~^^^^^^^^^^~06/01/2010~
-~10031~^~268~^1065.^0^^~4~^~PIK~^^^^^^^^^^~06/01/2010~
-~10031~^~301~^31.^0^^~1~^~PAK~^^^^^^^^^^~06/01/2010~
-~10031~^~304~^19.^0^^~1~^~PAK~^^^^^^^^^^~06/01/2010~
-~10031~^~305~^194.^0^^~1~^~PAK~^^^^^^^^^^~06/01/2010~
-~10031~^~306~^318.^0^^~1~^~PAK~^^^^^^^^^^~06/01/2010~
-~10031~^~307~^76.^0^^~1~^~PAK~^^^^^^^^^^~06/01/2010~
-~10031~^~318~^12.^0^^~1~^~PAK~^^^^^^^^^^~06/01/2010~
-~10031~^~319~^4.^0^^~1~^~PAK~^^^^^^^^^^~06/01/2010~
-~10031~^~320~^4.^0^^~1~^~PAK~^^^^^^^^^^~06/01/2010~
-~10031~^~321~^0.^0^^~4~^~PIK~^^^^^^^^^^~06/01/2010~
-~10031~^~322~^0.^0^^~4~^~PIK~^^^^^^^^^^~06/01/2010~
-~10031~^~324~^35.^0^^~1~^~PAK~^^^^^^^^^^~06/01/2010~
-~10031~^~334~^0.^0^^~4~^~PIK~^^^^^^^^^^~06/01/2010~
-~10031~^~337~^0.^0^^~4~^~PIK~^^^^^^^^^^~06/01/2010~
-~10031~^~338~^0.^0^^~4~^~PIK~^^^^^^^^^^~06/01/2010~
-~10031~^~417~^0.^0^^~4~^~PIK~^^^^^^^^^^~06/01/2010~
-~10031~^~431~^0.^0^^~4~^~PIK~^^^^^^^^^^~06/01/2010~
-~10031~^~432~^0.^0^^~4~^~PIK~^^^^^^^^^^~06/01/2010~
-~10031~^~435~^0.^0^^~4~^~NC~^^^^^^^^^^~06/01/2010~
-~10031~^~601~^83.^0^^~1~^~PAK~^^^^^^^^^^~06/01/2010~
-~10032~^~208~^143.^0^^~4~^~NC~^^^^^^^^^^~04/01/2010~
-~10032~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2010~
-~10032~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2010~
-~10032~^~268~^599.^0^^~4~^~NC~^^^^^^^^^^~04/01/2010~
-~10032~^~301~^30.^12^3.^~1~^~A~^^^1^17.^48.^11^23.^37.^~2, 3~^~04/01/2010~
-~10032~^~304~^18.^12^0.^~1~^~A~^^^1^17.^22.^11^17.^19.^~2, 3~^~04/01/2010~
-~10032~^~305~^226.^12^6.^~1~^~A~^^^1^184.^265.^11^211.^239.^~2, 3~^~04/01/2010~
-~10032~^~306~^313.^12^10.^~1~^~A~^^^1^247.^361.^11^290.^335.^~2, 3~^~04/01/2010~
-~10032~^~307~^73.^12^1.^~1~^~A~^^^1^62.^79.^11^69.^76.^~2, 3~^~04/01/2010~
-~10032~^~318~^9.^0^^~1~^~AS~^^^^^^^^^^~04/01/2010~
-~10032~^~319~^3.^1^^~1~^~A~^^^^^^^^^^~04/01/2010~
-~10032~^~320~^3.^0^^~1~^~AS~^^^^^^^^^^~04/01/2010~
-~10032~^~321~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2010~
-~10032~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2010~
-~10032~^~324~^22.^1^^~1~^~A~^^^^^^^^^^~03/01/2010~
-~10032~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2010~
-~10032~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2010~
-~10032~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2010~
-~10032~^~417~^0.^0^^~4~^~BFPN~^~10068~^^^^^^^^^~04/01/2010~
-~10032~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~
-~10032~^~432~^0.^0^^~4~^~BFPN~^^^^^^^^^^~04/01/2010~
-~10032~^~435~^0.^0^^~4~^~NC~^^^^^^^^^^~04/01/2010~
-~10032~^~601~^59.^6^0.^~1~^~A~^^^1^57.^62.^5^57.^61.^~2, 3~^~04/01/2010~
-~10033~^~208~^222.^0^^~4~^~NC~^^^^^^^^^^~04/01/2010~
-~10033~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2003~
-~10033~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2003~
-~10033~^~268~^927.^0^^~4~^~NC~^^^^^^^^^^~04/01/2010~
-~10033~^~301~^49.^12^3.^~1~^~A~^^^1^37.^72.^11^42.^56.^~2, 3~^~03/01/2010~
-~10033~^~304~^20.^12^1.^~1~^~A~^^^1^16.^30.^11^17.^21.^~2, 3~^~03/01/2010~
-~10033~^~305~^224.^12^4.^~1~^~A~^^^1^189.^256.^11^213.^233.^~2, 3~^~03/01/2010~
-~10033~^~306~^270.^12^5.^~1~^~A~^^^1^240.^297.^11^257.^281.^~2, 3~^~03/01/2010~
-~10033~^~307~^70.^12^1.^~1~^~A~^^^1^56.^78.^11^66.^74.^~2, 3~^~03/01/2010~
-~10033~^~318~^6.^0^^~1~^~AS~^^^^^^^^^^~04/01/2010~
-~10033~^~319~^2.^1^^~1~^~A~^^^^^^^^^^~04/01/2010~
-~10033~^~320~^2.^0^^~1~^~AS~^^^^^^^^^^~04/01/2010~
-~10033~^~321~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2003~
-~10033~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2003~
-~10033~^~324~^36.^1^^~1~^~A~^^^^^^^^^^~04/01/2010~
-~10033~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2003~
-~10033~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2003~
-~10033~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2003~
-~10033~^~417~^0.^0^^~4~^~BFPN~^~10068~^^^^^^^^^~04/01/2010~
-~10033~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~
-~10033~^~432~^0.^0^^~4~^~BFPN~^^^^^^^^^^~04/01/2010~
-~10033~^~435~^0.^0^^~4~^~NC~^^^^^^^^^^~04/01/2010~
-~10033~^~601~^87.^6^0.^~1~^~A~^^^1^85.^91.^5^84.^89.^~2, 3~^~03/01/2010~
-~10034~^~208~^193.^0^^~4~^~NC~^^^^^^^^^^~04/01/2010~
-~10034~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2010~
-~10034~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2010~
-~10034~^~268~^807.^0^^~4~^~NC~^^^^^^^^^^~04/01/2010~
-~10034~^~301~^55.^12^6.^~1~^~A~^^^1^30.^94.^11^40.^69.^~2, 3~^~03/01/2010~
-~10034~^~304~^21.^12^1.^~1~^~A~^^^1^18.^28.^11^18.^23.^~2, 3~^~03/01/2010~
-~10034~^~305~^255.^12^5.^~1~^~A~^^^1^221.^285.^11^242.^266.^~2, 3~^~03/01/2010~
-~10034~^~306~^332.^12^4.^~1~^~A~^^^1^301.^352.^11^321.^342.^~2, 3~^~03/01/2010~
-~10034~^~307~^76.^12^1.^~1~^~A~^^^1^63.^84.^11^71.^79.^~2, 3~^~03/01/2010~
-~10034~^~318~^8.^0^^~1~^~AS~^^^^^^^^^^~04/01/2010~
-~10034~^~319~^2.^1^^~1~^~A~^^^^^^^^^^~04/01/2010~
-~10034~^~320~^2.^0^^~1~^~AS~^^^^^^^^^^~04/01/2010~
-~10034~^~321~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2010~
-~10034~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2010~
-~10034~^~324~^36.^1^^~1~^~A~^^^^^^^^^^~03/01/2010~
-~10034~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2010~
-~10034~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2010~
-~10034~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2010~
-~10034~^~417~^0.^0^^~4~^~BFPN~^~10068~^^^^^^^^^~04/01/2010~
-~10034~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~
-~10034~^~432~^0.^0^^~4~^~BFPN~^^^^^^^^^^~04/01/2010~
-~10034~^~435~^0.^0^^~4~^~NC~^^^^^^^^^^~04/01/2010~
-~10034~^~601~^78.^6^2.^~1~^~A~^^^1^73.^84.^5^72.^82.^~2, 3~^~03/01/2010~
-~10035~^~208~^217.^0^^~4~^~NC~^^^^^^^^^^~04/01/2010~
-~10035~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2010~
-~10035~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2010~
-~10035~^~268~^908.^0^^~4~^~NC~^^^^^^^^^^~04/01/2010~
-~10035~^~301~^27.^12^2.^~1~^~A~^^^1^13.^45.^11^20.^33.^~2, 3~^~04/01/2010~
-~10035~^~304~^19.^12^0.^~1~^~A~^^^1^17.^22.^11^18.^19.^~2, 3~^~04/01/2010~
-~10035~^~305~^203.^12^3.^~1~^~A~^^^1^186.^220.^11^195.^210.^~2, 3~^~04/01/2010~
-~10035~^~306~^337.^12^7.^~1~^~A~^^^1^293.^363.^11^320.^353.^~2, 3~^~04/01/2010~
-~10035~^~307~^78.^12^1.^~1~^~A~^^^1^69.^86.^11^74.^81.^~2, 3~^~04/01/2010~
-~10035~^~318~^4.^0^^~1~^~AS~^^^^^^^^^^~04/01/2010~
-~10035~^~319~^1.^1^^~1~^~A~^^^^^^^^^^~04/01/2010~
-~10035~^~320~^1.^0^^~1~^~AS~^^^^^^^^^^~04/01/2010~
-~10035~^~321~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2010~
-~10035~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2010~
-~10035~^~324~^31.^1^^~1~^~A~^^^^^^^^^^~04/01/2010~
-~10035~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2010~
-~10035~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2010~
-~10035~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2010~
-~10035~^~417~^0.^0^^~4~^~BFPN~^~10068~^^^^^^^^^~04/01/2010~
-~10035~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~
-~10035~^~432~^0.^0^^~4~^~BFPN~^^^^^^^^^^~04/01/2010~
-~10035~^~435~^0.^0^^~4~^~NC~^^^^^^^^^^~04/01/2010~
-~10035~^~601~^83.^6^1.^~1~^~A~^^^1^78.^86.^5^79.^85.^~2, 3~^~04/01/2010~
-~10036~^~208~^170.^0^^~4~^~PIK~^^^^^^^^^^~02/01/2007~
-~10036~^~262~^0.^0^^~4~^~PIK~^^^^^^^^^^~02/01/2007~
-~10036~^~263~^0.^0^^~4~^~PIK~^^^^^^^^^^~02/01/2007~
-~10036~^~268~^711.^0^^~4~^~PIK~^^^^^^^^^^~02/01/2007~
-~10036~^~301~^19.^0^^~1~^~PAK~^^^^^^^^^^~02/01/2007~
-~10036~^~304~^25.^0^^~1~^~PAK~^^^^^^^^^^~02/01/2007~
-~10036~^~305~^209.^0^^~1~^~PAK~^^^^^^^^^^~02/01/2007~
-~10036~^~306~^343.^0^^~1~^~PAK~^^^^^^^^^^~02/01/2007~
-~10036~^~307~^55.^0^^~1~^~PAK~^^^^^^^^^^~02/01/2007~
-~10036~^~318~^6.^0^^~4~^~NC~^^^^^^^^^^~09/01/2010~
-~10036~^~319~^2.^0^^~4~^~PIK~^^^^^^^^^^~02/01/2007~
-~10036~^~320~^2.^0^^~1~^~PAK~^^^^^^^^^^~02/01/2007~
-~10036~^~321~^0.^0^^~4~^~PIK~^^^^^^^^^^~02/01/2007~
-~10036~^~322~^0.^0^^~4~^~PIK~^^^^^^^^^^~02/01/2007~
-~10036~^~324~^21.^0^^~4~^~PIK~^^^^^^^^^^~03/01/2009~
-~10036~^~334~^0.^0^^~4~^~PIK~^^^^^^^^^^~02/01/2007~
-~10036~^~337~^0.^0^^~4~^~PIK~^^^^^^^^^^~02/01/2007~
-~10036~^~338~^0.^0^^~4~^~PIK~^^^^^^^^^^~02/01/2007~
-~10036~^~417~^0.^0^^~4~^~PIK~^^^^^^^^^^~02/01/2007~
-~10036~^~431~^0.^0^^~4~^~PIK~^^^^^^^^^^~02/01/2007~
-~10036~^~432~^0.^0^^~4~^~PIK~^^^^^^^^^^~02/01/2007~
-~10036~^~435~^0.^0^^~4~^~NC~^^^^^^^^^^~03/01/2009~
-~10036~^~601~^69.^0^^~4~^~PIK~^^^^^^^^^^~03/01/2007~
-~10037~^~208~^242.^0^^~4~^~PIK~^^^^^^^^^^~06/01/2010~
-~10037~^~262~^0.^0^^~4~^~PIK~^^^^^^^^^^~06/01/2010~
-~10037~^~263~^0.^0^^~4~^~PIK~^^^^^^^^^^~06/01/2010~
-~10037~^~268~^1014.^0^^~4~^~PIK~^^^^^^^^^^~06/01/2010~
-~10037~^~301~^55.^0^^~4~^~PIK~^^^^^^^^^^~06/01/2010~
-~10037~^~304~^20.^0^^~4~^~PIK~^^^^^^^^^^~06/01/2010~
-~10037~^~305~^225.^0^^~4~^~PIK~^^^^^^^^^^~06/01/2010~
-~10037~^~306~^273.^0^^~4~^~PIK~^^^^^^^^^^~06/01/2010~
-~10037~^~307~^73.^0^^~4~^~PIK~^^^^^^^^^^~06/01/2010~
-~10037~^~318~^14.^0^^~4~^~PIK~^^^^^^^^^^~06/01/2010~
-~10037~^~319~^4.^0^^~4~^~PIK~^^^^^^^^^^~06/01/2010~
-~10037~^~320~^4.^0^^~4~^~PIK~^^^^^^^^^^~06/01/2010~
-~10037~^~321~^0.^0^^~4~^~PIK~^^^^^^^^^^~06/01/2010~
-~10037~^~322~^0.^0^^~4~^~PIK~^^^^^^^^^^~06/01/2010~
-~10037~^~324~^33.^0^^~4~^~PIK~^^^^^^^^^^~06/01/2010~
-~10037~^~334~^0.^0^^~4~^~PIK~^^^^^^^^^^~06/01/2010~
-~10037~^~337~^0.^0^^~4~^~PIK~^^^^^^^^^^~06/01/2010~
-~10037~^~338~^0.^0^^~4~^~PIK~^^^^^^^^^^~06/01/2010~
-~10037~^~417~^0.^0^^~4~^~PIK~^^^^^^^^^^~06/01/2010~
-~10037~^~431~^0.^0^^~4~^~PIK~^^^^^^^^^^~06/01/2010~
-~10037~^~432~^0.^0^^~4~^~PIK~^^^^^^^^^^~06/01/2010~
-~10037~^~435~^0.^0^^~4~^~NC~^^^^^^^^^^~06/01/2010~
-~10037~^~601~^81.^0^^~1~^~PAK~^^^^^^^^^^~06/01/2010~
-~10038~^~208~^209.^0^^~4~^~PIK~^^^^^^^^^^~02/01/2007~
-~10038~^~262~^0.^0^^~4~^~PIK~^^^^^^^^^^~03/01/2009~
-~10038~^~263~^0.^0^^~4~^~PIK~^^^^^^^^^^~03/01/2009~
-~10038~^~268~^875.^0^^~4~^~PIK~^^^^^^^^^^~02/01/2007~
-~10038~^~301~^24.^0^^~1~^~PAK~^^^^^^^^^^~02/01/2007~
-~10038~^~304~^25.^0^^~1~^~PAK~^^^^^^^^^^~02/01/2007~
-~10038~^~305~^220.^0^^~1~^~PAK~^^^^^^^^^^~02/01/2007~
-~10038~^~306~^344.^0^^~1~^~PAK~^^^^^^^^^^~02/01/2007~
-~10038~^~307~^55.^0^^~1~^~PAK~^^^^^^^^^^~02/01/2007~
-~10038~^~318~^6.^0^^~1~^~PAK~^^^^^^^^^^~02/01/2007~
-~10038~^~319~^2.^0^^~4~^~PIK~^^^^^^^^^^~02/01/2007~
-~10038~^~320~^2.^0^^~1~^~PAK~^^^^^^^^^^~02/01/2007~
-~10038~^~321~^0.^0^^~4~^~PIK~^^^^^^^^^^~03/01/2009~
-~10038~^~322~^0.^0^^~4~^~PIK~^^^^^^^^^^~03/01/2009~
-~10038~^~324~^30.^0^^~4~^~PIK~^^^^^^^^^^~03/01/2009~
-~10038~^~334~^0.^0^^~4~^~PIK~^^^^^^^^^^~03/01/2009~
-~10038~^~337~^0.^0^^~4~^~PIK~^^^^^^^^^^~03/01/2009~
-~10038~^~338~^0.^0^^~4~^~PIK~^^^^^^^^^^~03/01/2009~
-~10038~^~417~^0.^0^^~4~^~PIK~^^^^^^^^^^~03/01/2009~
-~10038~^~431~^0.^0^^~4~^~PIK~^^^^^^^^^^~02/01/2007~
-~10038~^~432~^0.^0^^~4~^~PIK~^^^^^^^^^^~03/01/2009~
-~10038~^~435~^0.^0^^~4~^~NC~^^^^^^^^^^~03/01/2009~
-~10038~^~601~^84.^0^^~1~^~PAK~^^^^^^^^^^~02/01/2007~
-~10039~^~208~^231.^0^^~4~^~PIK~^^^^^^^^^^~06/01/2010~
-~10039~^~262~^0.^0^^~4~^~PIK~^^^^^^^^^^~06/01/2010~
-~10039~^~263~^0.^0^^~4~^~PIK~^^^^^^^^^^~06/01/2010~
-~10039~^~268~^966.^0^^~4~^~PIK~^^^^^^^^^^~06/01/2010~
-~10039~^~301~^33.^0^^~4~^~PIK~^^^^^^^^^^~06/01/2010~
-~10039~^~304~^20.^0^^~4~^~PIK~^^^^^^^^^^~06/01/2010~
-~10039~^~305~^213.^0^^~4~^~PIK~^^^^^^^^^^~06/01/2010~
-~10039~^~306~^350.^0^^~4~^~PIK~^^^^^^^^^^~06/01/2010~
-~10039~^~307~^83.^0^^~4~^~PIK~^^^^^^^^^^~06/01/2010~
-~10039~^~318~^15.^0^^~4~^~PIK~^^^^^^^^^^~06/01/2010~
-~10039~^~319~^4.^0^^~4~^~PIK~^^^^^^^^^^~06/01/2010~
-~10039~^~320~^4.^0^^~4~^~PIK~^^^^^^^^^^~06/01/2010~
-~10039~^~321~^0.^0^^~4~^~PIK~^^^^^^^^^^~06/01/2010~
-~10039~^~322~^0.^0^^~4~^~PIK~^^^^^^^^^^~06/01/2010~
-~10039~^~324~^25.^0^^~4~^~PIK~^^^^^^^^^^~06/01/2010~
-~10039~^~334~^0.^0^^~4~^~PIK~^^^^^^^^^^~06/01/2010~
-~10039~^~337~^0.^0^^~4~^~PIK~^^^^^^^^^^~06/01/2010~
-~10039~^~338~^0.^0^^~4~^~PIK~^^^^^^^^^^~06/01/2010~
-~10039~^~417~^0.^0^^~4~^~PIK~^^^^^^^^^^~06/01/2010~
-~10039~^~431~^0.^0^^~4~^~PIK~^^^^^^^^^^~06/01/2010~
-~10039~^~432~^0.^0^^~4~^~PIK~^^^^^^^^^^~06/01/2010~
-~10039~^~435~^0.^0^^~4~^~NC~^^^^^^^^^^~06/01/2010~
-~10039~^~601~^76.^0^^~1~^~PAK~^^^^^^^^^^~06/01/2010~
-~10040~^~208~^127.^0^^~4~^~NC~^^^^^^^^^^~03/01/2009~
-~10040~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2003~
-~10040~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2003~
-~10040~^~268~^533.^0^^~4~^~NC~^^^^^^^^^^~03/01/2009~
-~10040~^~301~^18.^12^1.^~1~^~A~^^^1^12.^29.^11^13.^21.^~2, 3~^~02/01/2007~
-~10040~^~304~^26.^12^0.^~1~^~A~^^^1^23.^28.^11^25.^26.^~2, 3~^~02/01/2007~
-~10040~^~305~^220.^12^2.^~1~^~A~^^^1^206.^235.^11^213.^226.^~2, 3~^~02/01/2007~
-~10040~^~306~^362.^12^7.^~1~^~A~^^^1^304.^402.^11^345.^377.^~2, 3~^~02/01/2007~
-~10040~^~307~^58.^12^1.^~1~^~A~^^^1^51.^67.^11^55.^60.^~2, 3~^~02/01/2007~
-~10040~^~318~^0.^0^^~1~^~AS~^^^^^^^^^^~02/01/2007~
-~10040~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2007~
-~10040~^~320~^0.^0^^~1~^~AS~^^^^^^^^^^~02/01/2007~
-~10040~^~321~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2003~
-~10040~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2003~
-~10040~^~324~^14.^0^^~4~^~BFFN~^^^^^^^^^^~03/01/2009~
-~10040~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2003~
-~10040~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2003~
-~10040~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2003~
-~10040~^~417~^0.^0^^~4~^~BFPN~^~10066~^^^^^^^^^~02/01/2007~
-~10040~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~
-~10040~^~432~^0.^0^^~4~^~BFPN~^^^^^^^^^^~03/01/2009~
-~10040~^~435~^0.^0^^~4~^~NC~^^^^^^^^^^~03/01/2009~
-~10040~^~601~^69.^0^^~4~^~BFYN~^~10042~^^^^^^^^^~03/01/2007~
-~10041~^~208~^200.^0^^~4~^~NC~^^^^^^^^^^~05/01/2010~
-~10041~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2003~
-~10041~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2003~
-~10041~^~268~^836.^0^^~4~^~NC~^^^^^^^^^^~05/01/2010~
-~10041~^~301~^53.^0^^~4~^~BFNN~^~10033~^^^^^^^^^~05/01/2010~
-~10041~^~304~^21.^0^^~4~^~BFNN~^~10033~^^^^^^^^^~05/01/2010~
-~10041~^~305~^239.^0^^~4~^~BFNN~^~10033~^^^^^^^^^~05/01/2010~
-~10041~^~306~^288.^0^^~4~^~BFNN~^~10033~^^^^^^^^^~05/01/2010~
-~10041~^~307~^75.^0^^~4~^~BFNN~^~10033~^^^^^^^^^~05/01/2010~
-~10041~^~318~^6.^0^^~4~^~NC~^^^^^^^^^^~05/01/2010~
-~10041~^~319~^2.^0^^~4~^~BFSN~^~10033~^^^^^^^^^~05/01/2010~
-~10041~^~320~^2.^0^^~4~^~NC~^^^^^^^^^^~05/01/2010~
-~10041~^~321~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2003~
-~10041~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2003~
-~10041~^~324~^29.^0^^~4~^~BFFN~^^^^^^^^^^~02/01/2009~
-~10041~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2003~
-~10041~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2003~
-~10041~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2003~
-~10041~^~417~^0.^0^^~4~^~BFPN~^~10068~^^^^^^^^^~05/01/2010~
-~10041~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~
-~10041~^~432~^0.^0^^~4~^~BFPN~^^^^^^^^^^~05/01/2010~
-~10041~^~435~^0.^0^^~4~^~NC~^^^^^^^^^^~05/01/2010~
-~10041~^~601~^81.^6^0.^~1~^~A~^^^1^79.^86.^5^78.^83.^~2, 3~^~05/01/2010~
-~10042~^~208~^180.^0^^~4~^~NC~^^^^^^^^^^~03/01/2009~
-~10042~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2007~
-~10042~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2007~
-~10042~^~268~^753.^0^^~4~^~NC~^^^^^^^^^^~03/01/2009~
-~10042~^~301~^23.^12^2.^~1~^~A~^^^1^14.^37.^11^17.^27.^~2, 3~^~02/01/2007~
-~10042~^~304~^26.^12^0.^~1~^~A~^^^1^23.^30.^11^25.^27.^~2, 3~^~02/01/2007~
-~10042~^~305~^228.^12^2.^~1~^~A~^^^1^211.^247.^11^221.^234.^~2, 3~^~02/01/2007~
-~10042~^~306~^356.^12^8.^~1~^~A~^^^1^276.^389.^11^337.^374.^~2, 3~^~02/01/2007~
-~10042~^~307~^56.^12^1.^~1~^~A~^^^1^50.^62.^11^53.^59.^~2, 3~^~02/01/2007~
-~10042~^~318~^0.^0^^~1~^~AS~^^^^^^^^^^~02/01/2007~
-~10042~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2007~
-~10042~^~320~^0.^0^^~1~^~AS~^^^^^^^^^^~02/01/2007~
-~10042~^~321~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2007~
-~10042~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2007~
-~10042~^~324~^28.^0^^~4~^~BFFN~^^^^^^^^^^~03/01/2009~
-~10042~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2007~
-~10042~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2007~
-~10042~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2007~
-~10042~^~417~^0.^0^^~4~^~BFPN~^~10068~^^^^^^^^^~03/01/2009~
-~10042~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~
-~10042~^~432~^0.^0^^~4~^~BFPN~^^^^^^^^^^~03/01/2009~
-~10042~^~435~^0.^0^^~4~^~NC~^^^^^^^^^^~03/01/2009~
-~10042~^~601~^84.^4^7.^~1~^~A~^^^1^71.^102.^3^61.^106.^~2, 3~^~02/01/2007~
-~10043~^~208~^194.^0^^~4~^~NC~^^^^^^^^^^~05/01/2010~
-~10043~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2010~
-~10043~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2010~
-~10043~^~268~^811.^0^^~4~^~NC~^^^^^^^^^^~05/01/2010~
-~10043~^~301~^30.^0^^~4~^~BFNN~^~10035~^^^^^^^^^~05/01/2010~
-~10043~^~304~^21.^0^^~4~^~BFNN~^~10035~^^^^^^^^^~05/01/2010~
-~10043~^~305~^223.^0^^~4~^~BFNN~^~10035~^^^^^^^^^~05/01/2010~
-~10043~^~306~^370.^0^^~4~^~BFNN~^~10035~^^^^^^^^^~05/01/2010~
-~10043~^~307~^86.^0^^~4~^~BFNN~^~10035~^^^^^^^^^~05/01/2010~
-~10043~^~318~^8.^0^^~4~^~NC~^^^^^^^^^^~05/01/2010~
-~10043~^~319~^2.^0^^~4~^~BFSN~^~10034~^^^^^^^^^~05/01/2010~
-~10043~^~320~^2.^0^^~4~^~NC~^^^^^^^^^^~05/01/2010~
-~10043~^~321~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2010~
-~10043~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2010~
-~10043~^~324~^21.^0^^~4~^~BFFN~^~10035~^^^^^^^^^~05/01/2010~
-~10043~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2010~
-~10043~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2010~
-~10043~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2010~
-~10043~^~417~^0.^0^^~4~^~BFPN~^~10068~^^^^^^^^^~05/01/2010~
-~10043~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~
-~10043~^~432~^0.^0^^~4~^~BFPN~^^^^^^^^^^~05/01/2010~
-~10043~^~435~^0.^0^^~4~^~NC~^^^^^^^^^^~05/01/2010~
-~10043~^~601~^75.^6^1.^~1~^~A~^^^1^71.^85.^5^70.^80.^~2, 3~^~05/01/2010~
-~10044~^~208~^186.^0^^~4~^~PIK~^^^^^^^^^^~03/01/2007~
-~10044~^~262~^0.^0^^~4~^~PIK~^^^^^^^^^^~03/01/2009~
-~10044~^~263~^0.^0^^~4~^~PIK~^^^^^^^^^^~03/01/2009~
-~10044~^~268~^779.^0^^~4~^~PIK~^^^^^^^^^^~03/01/2007~
-~10044~^~301~^25.^0^^~1~^~PAK~^^^^^^^^^^~03/01/2007~
-~10044~^~304~^23.^0^^~1~^~PAK~^^^^^^^^^^~03/01/2007~
-~10044~^~305~^203.^0^^~1~^~PAK~^^^^^^^^^^~03/01/2007~
-~10044~^~306~^337.^0^^~1~^~PAK~^^^^^^^^^^~03/01/2007~
-~10044~^~307~^56.^0^^~1~^~PAK~^^^^^^^^^^~03/01/2007~
-~10044~^~318~^8.^0^^~4~^~NC~^^^^^^^^^^~07/01/2015~
-~10044~^~319~^2.^0^^~4~^~PIK~^^^^^^^^^^~03/01/2007~
-~10044~^~320~^2.^0^^~4~^~NC~^^^^^^^^^^~07/01/2015~
-~10044~^~321~^0.^0^^~4~^~PIK~^^^^^^^^^^~03/01/2009~
-~10044~^~322~^0.^0^^~4~^~PIK~^^^^^^^^^^~03/01/2009~
-~10044~^~324~^26.^0^^~4~^~PIK~^^^^^^^^^^~03/01/2009~
-~10044~^~334~^0.^0^^~4~^~PIK~^^^^^^^^^^~03/01/2009~
-~10044~^~337~^0.^0^^~4~^~PIK~^^^^^^^^^^~03/01/2009~
-~10044~^~338~^0.^0^^~4~^~PIK~^^^^^^^^^^~03/01/2009~
-~10044~^~417~^0.^0^^~4~^~PIK~^^^^^^^^^^~03/01/2009~
-~10044~^~431~^0.^0^^~4~^~PIK~^^^^^^^^^^~03/01/2007~
-~10044~^~432~^0.^0^^~4~^~PIK~^^^^^^^^^^~03/01/2009~
-~10044~^~435~^0.^0^^~4~^~NC~^^^^^^^^^^~03/01/2009~
-~10044~^~601~^58.^0^^~4~^~PIK~^^^^^^^^^^~03/01/2007~
-~10045~^~208~^261.^0^^~4~^~PIK~^^^^^^^^^^~06/01/2010~
-~10045~^~262~^0.^0^^~4~^~PIK~^^^^^^^^^^~06/01/2010~
-~10045~^~263~^0.^0^^~4~^~PIK~^^^^^^^^^^~06/01/2010~
-~10045~^~268~^1091.^0^^~4~^~PIK~^^^^^^^^^^~06/01/2010~
-~10045~^~301~^53.^0^^~4~^~PIK~^^^^^^^^^^~06/01/2010~
-~10045~^~304~^19.^0^^~4~^~PIK~^^^^^^^^^^~06/01/2010~
-~10045~^~305~^213.^0^^~4~^~PIK~^^^^^^^^^^~06/01/2010~
-~10045~^~306~^259.^0^^~4~^~PIK~^^^^^^^^^^~06/01/2010~
-~10045~^~307~^70.^0^^~4~^~PIK~^^^^^^^^^^~06/01/2010~
-~10045~^~318~^16.^0^^~4~^~PIK~^^^^^^^^^^~06/01/2010~
-~10045~^~319~^5.^0^^~4~^~PIK~^^^^^^^^^^~06/01/2010~
-~10045~^~320~^5.^0^^~4~^~PIK~^^^^^^^^^^~06/01/2010~
-~10045~^~321~^0.^0^^~4~^~PIK~^^^^^^^^^^~06/01/2010~
-~10045~^~322~^0.^0^^~4~^~PIK~^^^^^^^^^^~06/01/2010~
-~10045~^~324~^37.^0^^~4~^~PIK~^^^^^^^^^^~06/01/2010~
-~10045~^~334~^0.^0^^~4~^~PIK~^^^^^^^^^^~06/01/2010~
-~10045~^~337~^0.^0^^~4~^~PIK~^^^^^^^^^^~06/01/2010~
-~10045~^~338~^0.^0^^~4~^~PIK~^^^^^^^^^^~06/01/2010~
-~10045~^~417~^0.^0^^~4~^~PIK~^^^^^^^^^^~06/01/2010~
-~10045~^~431~^0.^0^^~4~^~PIK~^^^^^^^^^^~06/01/2010~
-~10045~^~432~^0.^0^^~4~^~PIK~^^^^^^^^^^~06/01/2010~
-~10045~^~435~^0.^0^^~4~^~NC~^^^^^^^^^^~06/01/2010~
-~10045~^~601~^79.^0^^~1~^~PAK~^^^^^^^^^^~06/01/2010~
-~10046~^~208~^222.^0^^~4~^~PIK~^^^^^^^^^^~03/01/2007~
-~10046~^~262~^0.^0^^~4~^~PIK~^^^^^^^^^^~03/01/2009~
-~10046~^~263~^0.^0^^~4~^~PIK~^^^^^^^^^^~03/01/2009~
-~10046~^~268~^929.^0^^~4~^~PIK~^^^^^^^^^^~03/01/2007~
-~10046~^~301~^28.^0^^~1~^~PAK~^^^^^^^^^^~03/01/2007~
-~10046~^~304~^24.^0^^~1~^~PAK~^^^^^^^^^^~03/01/2007~
-~10046~^~305~^209.^0^^~1~^~PAK~^^^^^^^^^^~03/01/2007~
-~10046~^~306~^329.^0^^~1~^~PAK~^^^^^^^^^^~03/01/2007~
-~10046~^~307~^55.^0^^~1~^~PAK~^^^^^^^^^^~03/01/2007~
-~10046~^~318~^8.^0^^~1~^~PAK~^^^^^^^^^^~03/01/2007~
-~10046~^~319~^2.^0^^~4~^~PIK~^^^^^^^^^^~03/01/2007~
-~10046~^~320~^2.^0^^~1~^~PAK~^^^^^^^^^^~03/01/2007~
-~10046~^~321~^0.^0^^~4~^~PIK~^^^^^^^^^^~03/01/2009~
-~10046~^~322~^0.^0^^~4~^~PIK~^^^^^^^^^^~03/01/2009~
-~10046~^~324~^35.^0^^~4~^~PIK~^^^^^^^^^^~03/01/2009~
-~10046~^~334~^0.^0^^~4~^~PIK~^^^^^^^^^^~03/01/2009~
-~10046~^~337~^0.^0^^~4~^~PIK~^^^^^^^^^^~03/01/2009~
-~10046~^~338~^0.^0^^~4~^~PIK~^^^^^^^^^^~03/01/2009~
-~10046~^~417~^0.^0^^~4~^~PIK~^^^^^^^^^^~03/01/2009~
-~10046~^~431~^0.^0^^~4~^~PIK~^^^^^^^^^^~03/01/2007~
-~10046~^~432~^0.^0^^~4~^~PIK~^^^^^^^^^^~03/01/2009~
-~10046~^~435~^0.^0^^~4~^~NC~^^^^^^^^^^~03/01/2009~
-~10046~^~601~^67.^0^^~1~^~PAK~^^^^^^^^^^~03/01/2007~
-~10047~^~208~^248.^0^^~4~^~PIK~^^^^^^^^^^~06/01/2010~
-~10047~^~262~^0.^0^^~4~^~PIK~^^^^^^^^^^~06/01/2010~
-~10047~^~263~^0.^0^^~4~^~PIK~^^^^^^^^^^~06/01/2010~
-~10047~^~268~^1036.^0^^~4~^~PIK~^^^^^^^^^^~06/01/2010~
-~10047~^~301~^19.^0^^~1~^~PAK~^^^^^^^^^^~06/01/2010~
-~10047~^~304~^21.^0^^~1~^~PAK~^^^^^^^^^^~06/01/2010~
-~10047~^~305~^230.^0^^~1~^~PAK~^^^^^^^^^^~06/01/2010~
-~10047~^~306~^272.^0^^~1~^~PAK~^^^^^^^^^^~06/01/2010~
-~10047~^~307~^91.^0^^~1~^~PAK~^^^^^^^^^^~06/01/2010~
-~10047~^~318~^16.^0^^~4~^~PIK~^^^^^^^^^^~06/01/2010~
-~10047~^~319~^5.^0^^~4~^~PIK~^^^^^^^^^^~06/01/2010~
-~10047~^~320~^5.^0^^~4~^~PIK~^^^^^^^^^^~06/01/2010~
-~10047~^~321~^0.^0^^~4~^~PIK~^^^^^^^^^^~06/01/2010~
-~10047~^~322~^0.^0^^~4~^~PIK~^^^^^^^^^^~06/01/2010~
-~10047~^~324~^29.^0^^~4~^~PIK~^^^^^^^^^^~06/01/2010~
-~10047~^~334~^0.^0^^~4~^~PIK~^^^^^^^^^^~06/01/2010~
-~10047~^~337~^0.^0^^~4~^~PIK~^^^^^^^^^^~06/01/2010~
-~10047~^~338~^0.^0^^~4~^~PIK~^^^^^^^^^^~06/01/2010~
-~10047~^~417~^0.^0^^~4~^~PIK~^^^^^^^^^^~06/01/2010~
-~10047~^~431~^0.^0^^~4~^~PIK~^^^^^^^^^^~06/01/2010~
-~10047~^~432~^0.^0^^~4~^~PIK~^^^^^^^^^^~06/01/2010~
-~10047~^~435~^0.^0^^~4~^~NC~^^^^^^^^^^~06/01/2010~
-~10047~^~601~^78.^0^^~1~^~PAK~^^^^^^^^^^~06/01/2010~
-~10048~^~208~^136.^0^^~4~^~NC~^^^^^^^^^^~07/01/2010~
-~10048~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2003~
-~10048~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2003~
-~10048~^~268~^570.^0^^~4~^~NC~^^^^^^^^^^~07/01/2010~
-~10048~^~301~^24.^12^3.^~1~^~A~^^^1^15.^50.^11^17.^31.^~2, 3~^~03/01/2007~
-~10048~^~304~^25.^12^0.^~1~^~A~^^^1^22.^27.^11^23.^25.^~2, 3~^~03/01/2007~
-~10048~^~305~^216.^12^3.^~1~^~A~^^^1^186.^236.^11^207.^223.^~2, 3~^~03/01/2007~
-~10048~^~306~^359.^12^5.^~1~^~A~^^^1^322.^382.^11^346.^371.^~2, 3~^~03/01/2007~
-~10048~^~307~^60.^12^1.^~1~^~A~^^^1^52.^70.^11^56.^62.^~2, 3~^~03/01/2007~
-~10048~^~318~^0.^0^^~1~^~AS~^^^^^^^^^^~03/01/2007~
-~10048~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2007~
-~10048~^~320~^0.^0^^~1~^~AS~^^^^^^^^^^~03/01/2007~
-~10048~^~321~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2003~
-~10048~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2003~
-~10048~^~324~^19.^0^^~4~^~BFFN~^^^^^^^^^^~03/01/2009~
-~10048~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2003~
-~10048~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2003~
-~10048~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2003~
-~10048~^~417~^0.^0^^~4~^~BFPN~^~10066~^^^^^^^^^~03/01/2007~
-~10048~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~
-~10048~^~432~^0.^0^^~4~^~BFPN~^^^^^^^^^^~07/01/2010~
-~10048~^~435~^0.^0^^~4~^~NC~^^^^^^^^^^~07/01/2010~
-~10048~^~601~^56.^0^^~4~^~BFYN~^~10050~^^^^^^^^^~03/01/2007~
-~10049~^~208~^208.^0^^~4~^~NC~^^^^^^^^^^~06/01/2010~
-~10049~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2003~
-~10049~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2003~
-~10049~^~268~^871.^0^^~4~^~NC~^^^^^^^^^^~06/01/2010~
-~10049~^~301~^51.^0^^~4~^~BFNN~^~10033~^^^^^^^^^~05/01/2010~
-~10049~^~304~^20.^0^^~4~^~BFNN~^~10033~^^^^^^^^^~05/01/2010~
-~10049~^~305~^229.^0^^~4~^~BFNN~^~10033~^^^^^^^^^~05/01/2010~
-~10049~^~306~^277.^0^^~4~^~BFNN~^~10033~^^^^^^^^^~05/01/2010~
-~10049~^~307~^72.^0^^~4~^~BFNN~^~10033~^^^^^^^^^~05/01/2010~
-~10049~^~318~^6.^0^^~4~^~NC~^^^^^^^^^^~06/01/2010~
-~10049~^~319~^2.^0^^~4~^~NR~^^^^^^^^^^~10/01/2004~
-~10049~^~320~^2.^0^^~4~^~NC~^^^^^^^^^^~06/01/2010~
-~10049~^~321~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2003~
-~10049~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2003~
-~10049~^~324~^32.^0^^~4~^~BFFN~^^^^^^^^^^~02/01/2009~
-~10049~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2003~
-~10049~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2003~
-~10049~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2003~
-~10049~^~417~^0.^0^^~4~^~BFPN~^~10068~^^^^^^^^^~05/01/2010~
-~10049~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~
-~10049~^~432~^0.^0^^~4~^~BFPN~^^^^^^^^^^~06/01/2010~
-~10049~^~435~^0.^0^^~4~^~NC~^^^^^^^^^^~06/01/2010~
-~10049~^~601~^79.^6^1.^~1~^~A~^^^1^71.^83.^5^73.^83.^~2, 3~^~05/01/2010~
-~10050~^~208~^186.^0^^~4~^~NC~^^^^^^^^^^~02/01/2009~
-~10050~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2003~
-~10050~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2003~
-~10050~^~268~^776.^0^^~4~^~NC~^^^^^^^^^^~02/01/2009~
-~10050~^~301~^26.^12^2.^~1~^~A~^^^1^17.^46.^11^19.^33.^~2, 3~^~03/01/2007~
-~10050~^~304~^25.^12^0.^~1~^~A~^^^1^21.^27.^11^23.^25.^~2, 3~^~03/01/2007~
-~10050~^~305~^218.^12^3.^~1~^~A~^^^1^194.^240.^11^210.^225.^~2, 3~^~03/01/2007~
-~10050~^~306~^343.^12^7.^~1~^~A~^^^1^283.^371.^11^326.^359.^~2, 3~^~03/01/2007~
-~10050~^~307~^57.^12^1.^~1~^~A~^^^1^48.^62.^11^54.^59.^~2, 3~^~03/01/2007~
-~10050~^~318~^0.^0^^~1~^~AS~^^^^^^^^^^~03/01/2007~
-~10050~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2007~
-~10050~^~320~^0.^0^^~1~^~AS~^^^^^^^^^^~03/01/2007~
-~10050~^~321~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2003~
-~10050~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2003~
-~10050~^~324~^32.^0^^~4~^~BFFN~^^^^^^^^^^~02/01/2009~
-~10050~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2003~
-~10050~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2003~
-~10050~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2003~
-~10050~^~417~^0.^0^^~4~^~BFPN~^~10068~^^^^^^^^^~02/01/2009~
-~10050~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~
-~10050~^~432~^0.^0^^~4~^~BFPN~^^^^^^^^^^~02/01/2009~
-~10050~^~435~^0.^0^^~4~^~NC~^^^^^^^^^^~03/01/2009~
-~10050~^~601~^66.^4^6.^~1~^~A~^^^1^48.^76.^3^45.^85.^~2, 3~^~03/01/2007~
-~10051~^~208~^206.^0^^~4~^~NC~^^^^^^^^^^~05/01/2010~
-~10051~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2010~
-~10051~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2010~
-~10051~^~268~^863.^0^^~4~^~NC~^^^^^^^^^^~05/01/2010~
-~10051~^~301~^13.^6^0.^~1~^~A~^^^1^12.^14.^5^11.^13.^~2, 3~^~05/01/2010~
-~10051~^~304~^22.^6^0.^~1~^~A~^^^1^21.^23.^5^20.^22.^~2, 3~^~05/01/2010~
-~10051~^~305~^244.^6^5.^~1~^~A~^^^1^223.^256.^5^231.^257.^~2, 3~^~05/01/2010~
-~10051~^~306~^287.^6^10.^~1~^~A~^^^1^253.^317.^5^261.^313.^~2, 3~^~05/01/2010~
-~10051~^~307~^95.^6^3.^~1~^~A~^^^1^80.^106.^5^86.^104.^~2, 3~^~05/01/2010~
-~10051~^~318~^9.^0^^~4~^~NC~^^^^^^^^^^~05/01/2010~
-~10051~^~319~^3.^0^^~4~^~BFSN~^~10034~^^^^^^^^^~05/01/2010~
-~10051~^~320~^3.^0^^~4~^~NC~^^^^^^^^^^~05/01/2010~
-~10051~^~321~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2010~
-~10051~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2010~
-~10051~^~324~^24.^0^^~4~^~BFFN~^~10035~^^^^^^^^^~05/01/2010~
-~10051~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2010~
-~10051~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2010~
-~10051~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2010~
-~10051~^~417~^0.^0^^~4~^~BFPN~^~10068~^^^^^^^^^~05/01/2010~
-~10051~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~
-~10051~^~432~^0.^0^^~4~^~BFPN~^^^^^^^^^^~05/01/2010~
-~10051~^~435~^0.^0^^~4~^~NC~^^^^^^^^^^~05/01/2010~
-~10051~^~601~^78.^6^2.^~1~^~A~^^^1^69.^85.^5^71.^84.^~2, 3~^~05/01/2010~
-~10052~^~208~^168.^0^^~4~^~PIK~^^^^^^^^^^~03/01/2007~
-~10052~^~262~^0.^0^^~4~^~PIK~^^^^^^^^^^~03/01/2009~
-~10052~^~263~^0.^0^^~4~^~PIK~^^^^^^^^^^~03/01/2009~
-~10052~^~268~^704.^0^^~4~^~PIK~^^^^^^^^^^~03/01/2007~
-~10052~^~301~^14.^0^^~1~^~PAK~^^^^^^^^^^~03/01/2007~
-~10052~^~304~^23.^0^^~1~^~PAK~^^^^^^^^^^~03/01/2007~
-~10052~^~305~^209.^0^^~1~^~PAK~^^^^^^^^^^~03/01/2007~
-~10052~^~306~^336.^0^^~1~^~PAK~^^^^^^^^^^~03/01/2007~
-~10052~^~307~^57.^0^^~1~^~PAK~^^^^^^^^^^~03/01/2007~
-~10052~^~318~^6.^0^^~1~^~PAK~^^^^^^^^^^~03/01/2007~
-~10052~^~319~^2.^0^^~4~^~PIK~^^^^^^^^^^~03/01/2007~
-~10052~^~320~^2.^0^^~1~^~PAK~^^^^^^^^^^~03/01/2007~
-~10052~^~321~^0.^0^^~4~^~PIK~^^^^^^^^^^~03/01/2009~
-~10052~^~322~^0.^0^^~4~^~PIK~^^^^^^^^^^~03/01/2009~
-~10052~^~324~^22.^0^^~4~^~PIK~^^^^^^^^^^~03/01/2009~
-~10052~^~334~^0.^0^^~4~^~PIK~^^^^^^^^^^~03/01/2009~
-~10052~^~337~^0.^0^^~4~^~PIK~^^^^^^^^^^~03/01/2009~
-~10052~^~338~^0.^0^^~4~^~PIK~^^^^^^^^^^~03/01/2009~
-~10052~^~417~^0.^0^^~4~^~PIK~^^^^^^^^^^~03/01/2009~
-~10052~^~431~^0.^0^^~4~^~PIK~^^^^^^^^^^~03/01/2007~
-~10052~^~432~^0.^0^^~4~^~PIK~^^^^^^^^^^~03/01/2009~
-~10052~^~435~^0.^0^^~4~^~NC~^^^^^^^^^^~03/01/2009~
-~10052~^~601~^70.^0^^~4~^~PIK~^^^^^^^^^^~03/01/2007~
-~10053~^~208~^234.^0^^~4~^~PIK~^^^^^^^^^^~02/01/2011~
-~10053~^~262~^0.^0^^~4~^~PIK~^^^^^^^^^^~02/01/2011~
-~10053~^~263~^0.^0^^~4~^~PIK~^^^^^^^^^^~02/01/2011~
-~10053~^~268~^979.^0^^~4~^~PIK~^^^^^^^^^^~02/01/2011~
-~10053~^~301~^12.^0^^~4~^~PIK~^^^^^^^^^^~02/01/2011~
-~10053~^~304~^24.^0^^~4~^~PIK~^^^^^^^^^^~02/01/2011~
-~10053~^~305~^285.^0^^~4~^~PIK~^^^^^^^^^^~02/01/2011~
-~10053~^~306~^400.^0^^~4~^~PIK~^^^^^^^^^^~02/01/2011~
-~10053~^~307~^58.^0^^~4~^~PIK~^^^^^^^^^^~02/01/2011~
-~10053~^~318~^13.^0^^~4~^~PIK~^^^^^^^^^^~02/01/2011~
-~10053~^~319~^4.^0^^~4~^~PIK~^^^^^^^^^^~02/01/2011~
-~10053~^~320~^4.^0^^~4~^~PIK~^^^^^^^^^^~02/01/2011~
-~10053~^~321~^0.^0^^~4~^~PIK~^^^^^^^^^^~02/01/2011~
-~10053~^~322~^0.^0^^~4~^~PIK~^^^^^^^^^^~02/01/2011~
-~10053~^~324~^22.^0^^~4~^~PIK~^^^^^^^^^^~02/01/2011~
-~10053~^~334~^0.^0^^~4~^~PIK~^^^^^^^^^^~02/01/2011~
-~10053~^~337~^0.^0^^~4~^~PIK~^^^^^^^^^^~02/01/2011~
-~10053~^~338~^0.^0^^~4~^~PIK~^^^^^^^^^^~02/01/2011~
-~10053~^~417~^0.^0^^~4~^~PIK~^^^^^^^^^^~02/01/2011~
-~10053~^~431~^0.^0^^~4~^~PIK~^^^^^^^^^^~02/01/2011~
-~10053~^~432~^0.^0^^~4~^~PIK~^^^^^^^^^^~02/01/2011~
-~10053~^~435~^0.^0^^~4~^~NC~^^^^^^^^^^~02/01/2011~
-~10053~^~601~^87.^0^^~1~^~PAK~^^^^^^^^^^~02/01/2011~
-~10054~^~208~^222.^0^^~4~^~PIK~^^^^^^^^^^~02/01/2011~
-~10054~^~262~^0.^0^^~4~^~PIK~^^^^^^^^^^~02/01/2011~
-~10054~^~263~^0.^0^^~4~^~PIK~^^^^^^^^^^~02/01/2011~
-~10054~^~268~^928.^0^^~4~^~PIK~^^^^^^^^^^~02/01/2011~
-~10054~^~301~^60.^0^^~4~^~PIK~^^^^^^^^^^~02/01/2011~
-~10054~^~304~^23.^0^^~4~^~PIK~^^^^^^^^^^~02/01/2011~
-~10054~^~305~^280.^0^^~4~^~PIK~^^^^^^^^^^~02/01/2011~
-~10054~^~306~^363.^0^^~4~^~PIK~^^^^^^^^^^~02/01/2011~
-~10054~^~307~^86.^0^^~4~^~PIK~^^^^^^^^^^~02/01/2011~
-~10054~^~318~^16.^0^^~4~^~PIK~^^^^^^^^^^~02/01/2011~
-~10054~^~319~^5.^0^^~4~^~PIK~^^^^^^^^^^~02/01/2011~
-~10054~^~320~^5.^0^^~4~^~PIK~^^^^^^^^^^~02/01/2011~
-~10054~^~321~^0.^0^^~4~^~PIK~^^^^^^^^^^~02/01/2011~
-~10054~^~322~^0.^0^^~4~^~PIK~^^^^^^^^^^~02/01/2011~
-~10054~^~324~^42.^0^^~4~^~PIK~^^^^^^^^^^~02/01/2011~
-~10054~^~334~^0.^0^^~4~^~PIK~^^^^^^^^^^~02/01/2011~
-~10054~^~337~^0.^0^^~4~^~PIK~^^^^^^^^^^~02/01/2011~
-~10054~^~338~^0.^0^^~4~^~PIK~^^^^^^^^^^~02/01/2011~
-~10054~^~417~^0.^0^^~4~^~PIK~^^^^^^^^^^~02/01/2011~
-~10054~^~431~^0.^0^^~4~^~PIK~^^^^^^^^^^~02/01/2011~
-~10054~^~432~^0.^0^^~4~^~PIK~^^^^^^^^^^~02/01/2011~
-~10054~^~435~^0.^0^^~4~^~NC~^^^^^^^^^^~02/01/2011~
-~10054~^~601~^87.^0^^~1~^~PAK~^^^^^^^^^^~02/01/2011~
-~10055~^~208~^230.^0^^~4~^~PIK~^^^^^^^^^^~03/01/2007~
-~10055~^~262~^0.^0^^~4~^~PIK~^^^^^^^^^^~03/01/2009~
-~10055~^~263~^0.^0^^~4~^~PIK~^^^^^^^^^^~03/01/2009~
-~10055~^~268~^961.^0^^~4~^~PIK~^^^^^^^^^^~03/01/2007~
-~10055~^~301~^15.^0^^~1~^~PAK~^^^^^^^^^^~03/01/2007~
-~10055~^~304~^25.^0^^~1~^~PAK~^^^^^^^^^^~03/01/2007~
-~10055~^~305~^228.^0^^~1~^~PAK~^^^^^^^^^^~03/01/2007~
-~10055~^~306~^340.^0^^~1~^~PAK~^^^^^^^^^^~03/01/2007~
-~10055~^~307~^57.^0^^~1~^~PAK~^^^^^^^^^^~03/01/2007~
-~10055~^~318~^6.^0^^~1~^~PAK~^^^^^^^^^^~03/01/2007~
-~10055~^~319~^2.^0^^~4~^~PIK~^^^^^^^^^^~03/01/2007~
-~10055~^~320~^2.^0^^~1~^~PAK~^^^^^^^^^^~03/01/2007~
-~10055~^~321~^0.^0^^~4~^~PIK~^^^^^^^^^^~03/01/2009~
-~10055~^~322~^0.^0^^~4~^~PIK~^^^^^^^^^^~03/01/2009~
-~10055~^~324~^29.^0^^~4~^~PIK~^^^^^^^^^^~03/01/2009~
-~10055~^~334~^0.^0^^~4~^~PIK~^^^^^^^^^^~03/01/2009~
-~10055~^~337~^0.^0^^~4~^~PIK~^^^^^^^^^^~03/01/2009~
-~10055~^~338~^0.^0^^~4~^~PIK~^^^^^^^^^^~03/01/2009~
-~10055~^~417~^0.^0^^~4~^~PIK~^^^^^^^^^^~03/01/2009~
-~10055~^~431~^0.^0^^~4~^~PIK~^^^^^^^^^^~03/01/2007~
-~10055~^~432~^0.^0^^~4~^~PIK~^^^^^^^^^^~03/01/2009~
-~10055~^~435~^0.^0^^~4~^~NC~^^^^^^^^^^~03/01/2009~
-~10055~^~601~^89.^0^^~1~^~PAK~^^^^^^^^^^~03/01/2007~
-~10056~^~208~^129.^0^^~4~^~NC~^^^^^^^^^^~09/01/2010~
-~10056~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2003~
-~10056~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2003~
-~10056~^~268~^538.^0^^~4~^~NC~^^^^^^^^^^~09/01/2010~
-~10056~^~301~^12.^12^1.^~1~^~A~^^^1^9.^24.^11^9.^14.^~2, 3~^~03/01/2007~
-~10056~^~304~^25.^12^0.^~1~^~A~^^^1^23.^26.^11^24.^25.^~2, 3~^~03/01/2007~
-~10056~^~305~^219.^12^2.^~1~^~A~^^^1^204.^234.^11^212.^224.^~2, 3~^~03/01/2007~
-~10056~^~306~^353.^12^3.^~1~^~A~^^^1^329.^372.^11^343.^361.^~2, 3~^~03/01/2007~
-~10056~^~307~^59.^12^1.^~1~^~A~^^^1^52.^66.^11^56.^62.^~2, 3~^~03/01/2007~
-~10056~^~318~^0.^0^^~1~^~AS~^^^^^^^^^^~03/01/2007~
-~10056~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2009~
-~10056~^~320~^0.^0^^~1~^~AS~^^^^^^^^^^~03/01/2007~
-~10056~^~321~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2003~
-~10056~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2003~
-~10056~^~324~^16.^0^^~4~^~BFFN~^^^^^^^^^^~03/01/2009~
-~10056~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2003~
-~10056~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2003~
-~10056~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2003~
-~10056~^~417~^0.^0^^~4~^~BFPN~^~10060~^^^^^^^^^~03/01/2007~
-~10056~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~
-~10056~^~432~^0.^0^^~4~^~BFPN~^^^^^^^^^^~09/01/2010~
-~10056~^~435~^0.^0^^~4~^~NC~^^^^^^^^^^~09/01/2010~
-~10056~^~601~^69.^0^^~4~^~BFYN~^~10059~^^^^^^^^^~03/01/2007~
-~10057~^~208~^195.^0^^~4~^~NC~^^^^^^^^^^~01/01/2011~
-~10057~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2011~
-~10057~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2011~
-~10057~^~268~^814.^0^^~4~^~NC~^^^^^^^^^^~01/01/2011~
-~10057~^~301~^11.^0^^~4~^~BFNN~^~10215~^^^^^^^^^~01/01/2011~
-~10057~^~304~^26.^0^^~4~^~BFNN~^~10215~^^^^^^^^^~01/01/2011~
-~10057~^~305~^303.^0^^~4~^~BFNN~^~10215~^^^^^^^^^~01/01/2011~
-~10057~^~306~^428.^0^^~4~^~BFNN~^~10215~^^^^^^^^^~01/01/2011~
-~10057~^~307~^58.^0^^~4~^~BFNN~^~10215~^^^^^^^^^~01/01/2011~
-~10057~^~318~^6.^0^^~4~^~NC~^^^^^^^^^^~01/01/2011~
-~10057~^~319~^2.^0^^~4~^~BFSN~^~10033~^^^^^^^^^~01/01/2011~
-~10057~^~320~^2.^0^^~4~^~NC~^^^^^^^^^^~01/01/2011~
-~10057~^~321~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2011~
-~10057~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2011~
-~10057~^~324~^17.^0^^~4~^~BFFN~^~10033~^^^^^^^^^~01/01/2011~
-~10057~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2011~
-~10057~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2011~
-~10057~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2011~
-~10057~^~417~^0.^0^^~4~^~BFPN~^~10033~^^^^^^^^^~01/01/2011~
-~10057~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~
-~10057~^~432~^0.^0^^~4~^~BFPN~^^^^^^^^^^~01/01/2011~
-~10057~^~435~^0.^0^^~4~^~NC~^^^^^^^^^^~01/01/2011~
-~10057~^~601~^88.^6^2.^~1~^~A~^^^1^79.^99.^5^80.^95.^~2, 3~^~01/01/2011~
-~10058~^~208~^174.^0^^~4~^~NC~^^^^^^^^^^~01/01/2011~
-~10058~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~09/01/2002~
-~10058~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~09/01/2002~
-~10058~^~268~^729.^0^^~4~^~NC~^^^^^^^^^^~01/01/2011~
-~10058~^~301~^65.^0^^~4~^~BFNN~^~10034~^^^^^^^^^~01/01/2011~
-~10058~^~304~^25.^0^^~4~^~BFNN~^~10034~^^^^^^^^^~01/01/2011~
-~10058~^~305~^300.^0^^~4~^~BFNN~^~10034~^^^^^^^^^~01/01/2011~
-~10058~^~306~^391.^0^^~4~^~BFNN~^~10034~^^^^^^^^^~01/01/2011~
-~10058~^~307~^89.^0^^~4~^~BFNN~^~10034~^^^^^^^^^~01/01/2011~
-~10058~^~318~^8.^0^^~4~^~NC~^^^^^^^^^^~01/01/2011~
-~10058~^~319~^2.^0^^~4~^~BFSN~^~10034~^^^^^^^^^~09/01/2002~
-~10058~^~320~^2.^0^^~4~^~NC~^^^^^^^^^^~02/01/2009~
-~10058~^~321~^0.^0^^~7~^~Z~^^^^^^^^^^~09/01/2002~
-~10058~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~09/01/2002~
-~10058~^~324~^38.^0^^~4~^~BFFN~^^^^^^^^^^~02/01/2009~
-~10058~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~09/01/2002~
-~10058~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~09/01/2002~
-~10058~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~09/01/2002~
-~10058~^~417~^0.^0^^~4~^~BFPN~^~10034~^^^^^^^^^~01/01/2011~
-~10058~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~
-~10058~^~432~^0.^0^^~4~^~BFPN~^^^^^^^^^^~01/01/2011~
-~10058~^~435~^0.^0^^~4~^~NC~^^^^^^^^^^~01/01/2011~
-~10058~^~601~^88.^6^2.^~1~^~A~^^^1^80.^95.^5^81.^93.^~2, 3~^~01/01/2011~
-~10059~^~208~^204.^0^^~4~^~NC~^^^^^^^^^^~03/01/2009~
-~10059~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2007~
-~10059~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2007~
-~10059~^~268~^852.^0^^~4~^~NC~^^^^^^^^^^~03/01/2009~
-~10059~^~301~^13.^12^1.^~1~^~A~^^^1^7.^25.^11^9.^16.^~2, 3~^~01/01/2007~
-~10059~^~304~^26.^12^0.^~1~^~A~^^^1^22.^30.^11^24.^27.^~2, 3~^~01/01/2007~
-~10059~^~305~^235.^12^4.^~1~^~A~^^^1^201.^256.^11^226.^244.^~2, 3~^~01/01/2007~
-~10059~^~306~^352.^12^8.^~1~^~A~^^^1^293.^396.^11^332.^370.^~2, 3~^~01/01/2007~
-~10059~^~307~^59.^12^1.^~1~^~A~^^^1^50.^66.^11^55.^62.^~2, 3~^~01/01/2007~
-~10059~^~318~^0.^0^^~1~^~AS~^^^^^^^^^^~01/01/2007~
-~10059~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2007~
-~10059~^~320~^0.^0^^~1~^~AS~^^^^^^^^^^~01/01/2007~
-~10059~^~321~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2007~
-~10059~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2007~
-~10059~^~324~^27.^0^^~4~^~BFFN~^^^^^^^^^^~03/01/2009~
-~10059~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2007~
-~10059~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2007~
-~10059~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2007~
-~10059~^~417~^0.^0^^~4~^~BFPN~^~10061~^^^^^^^^^~03/01/2009~
-~10059~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~
-~10059~^~432~^0.^0^^~4~^~BFPN~^^^^^^^^^^~03/01/2009~
-~10059~^~435~^0.^0^^~4~^~NC~^^^^^^^^^^~08/01/2009~
-~10059~^~601~^89.^4^4.^~1~^~A~^^^1^82.^103.^3^73.^104.^~2, 3~^~01/01/2007~
-~10060~^~208~^109.^0^^~4~^~NC~^^^^^^^^^^~02/01/2009~
-~10060~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2003~
-~10060~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2003~
-~10060~^~268~^456.^0^^~4~^~NC~^^^^^^^^^^~02/01/2009~
-~10060~^~301~^5.^12^0.^~1~^~A~^^^1^4.^7.^11^4.^5.^~2, 3~^~02/01/2007~
-~10060~^~304~^27.^12^0.^~1~^~A~^^^1^22.^36.^11^25.^29.^~2, 3~^~02/01/2007~
-~10060~^~305~^247.^12^7.^~1~^~A~^^^1^223.^324.^11^229.^263.^~2, 3~^~02/01/2007~
-~10060~^~306~^399.^12^16.^~1~^~A~^^^1^298.^536.^11^362.^434.^~2, 3~^~02/01/2007~
-~10060~^~307~^53.^12^6.^~1~^~A~^^^1^37.^117.^11^39.^65.^~2, 3~^~02/01/2007~
-~10060~^~318~^0.^0^^~1~^~AS~^^^^^^^^^^~02/01/2007~
-~10060~^~319~^0.^1^^~1~^~A~^^^^^^^^^~1~^~02/01/2007~
-~10060~^~320~^0.^0^^~1~^~AS~^^^^^^^^^^~02/01/2007~
-~10060~^~321~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2003~
-~10060~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2003~
-~10060~^~324~^8.^0^^~4~^~BFFN~^^^^^^^^^^~02/01/2009~
-~10060~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2003~
-~10060~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2003~
-~10060~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2003~
-~10060~^~417~^0.^1^^~1~^~A~^^^^^^^^^~1~^~02/01/2007~
-~10060~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~
-~10060~^~432~^0.^1^^~1~^~A~^^^^^^^^^~1~^~02/01/2007~
-~10060~^~435~^0.^0^^~4~^~NC~^^^^^^^^^^~08/01/2009~
-~10060~^~601~^65.^12^5.^~1~^~A~^^^1^42.^97.^11^53.^76.^~2, 3~^~02/01/2007~
-~10061~^~208~^143.^0^^~4~^~NC~^^^^^^^^^^~02/01/2009~
-~10061~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2003~
-~10061~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2003~
-~10061~^~268~^600.^0^^~4~^~NC~^^^^^^^^^^~02/01/2009~
-~10061~^~301~^6.^12^0.^~1~^~A~^^^1^5.^7.^11^5.^6.^~2, 3~^~02/01/2007~
-~10061~^~304~^29.^12^0.^~1~^~A~^^^1^27.^31.^11^28.^29.^~2, 3~^~02/01/2007~
-~10061~^~305~^267.^12^7.^~1~^~A~^^^1^241.^338.^11^251.^282.^~2, 3~^~02/01/2007~
-~10061~^~306~^421.^12^4.^~1~^~A~^^^1^391.^444.^11^410.^430.^~2, 3~^~02/01/2007~
-~10061~^~307~^57.^12^8.^~1~^~A~^^^1^45.^149.^11^39.^75.^~2, 3~^~02/01/2007~
-~10061~^~318~^0.^0^^~1~^~AS~^^^^^^^^^^~02/01/2007~
-~10061~^~319~^0.^1^^~1~^~A~^^^^^^^^^~1~^~02/01/2007~
-~10061~^~320~^0.^0^^~1~^~AS~^^^^^^^^^^~02/01/2007~
-~10061~^~321~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2003~
-~10061~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2003~
-~10061~^~324~^10.^0^^~4~^~BFFN~^^^^^^^^^^~02/01/2009~
-~10061~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2003~
-~10061~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2003~
-~10061~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2007~
-~10061~^~417~^0.^1^^~1~^~A~^^^^^^^^^~1~^~02/01/2007~
-~10061~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~
-~10061~^~432~^0.^1^^~1~^~A~^^^^^^^^^~1~^~02/01/2007~
-~10061~^~435~^0.^0^^~4~^~NC~^^^^^^^^^^~02/01/2009~
-~10061~^~601~^73.^12^2.^~1~^~A~^^^1^54.^90.^11^67.^79.^~4~^~02/01/2007~
-~10062~^~208~^155.^0^^~4~^~PIK~^^^^^^^^^^~03/01/2009~
-~10062~^~262~^0.^0^^~4~^~PIK~^^^^^^^^^^~02/01/2007~
-~10062~^~263~^0.^0^^~4~^~PIK~^^^^^^^^^^~02/01/2007~
-~10062~^~268~^647.^0^^~4~^~PIK~^^^^^^^^^^~03/01/2009~
-~10062~^~301~^7.^0^^~1~^~PAK~^^^^^^^^^^~02/01/2007~
-~10062~^~304~^26.^0^^~1~^~PAK~^^^^^^^^^^~02/01/2007~
-~10062~^~305~^226.^0^^~1~^~PAK~^^^^^^^^^^~02/01/2007~
-~10062~^~306~^373.^0^^~1~^~PAK~^^^^^^^^^^~02/01/2007~
-~10062~^~307~^48.^0^^~1~^~PAK~^^^^^^^^^^~02/01/2007~
-~10062~^~318~^4.^0^^~1~^~PAK~^^^^^^^^^^~02/01/2007~
-~10062~^~319~^1.^0^^~1~^~PAK~^^^^^^^^^^~02/01/2007~
-~10062~^~320~^1.^0^^~1~^~PAK~^^^^^^^^^^~02/01/2007~
-~10062~^~321~^0.^0^^~4~^~PIK~^^^^^^^^^^~02/01/2007~
-~10062~^~322~^0.^0^^~4~^~PIK~^^^^^^^^^^~02/01/2007~
-~10062~^~324~^18.^0^^~4~^~PIK~^^^^^^^^^^~03/01/2009~
-~10062~^~334~^0.^0^^~4~^~PIK~^^^^^^^^^^~02/01/2007~
-~10062~^~337~^0.^0^^~4~^~PIK~^^^^^^^^^^~02/01/2007~
-~10062~^~338~^0.^0^^~4~^~PIK~^^^^^^^^^^~02/01/2007~
-~10062~^~417~^0.^0^^~1~^~PAK~^^^^^^^^^^~02/01/2007~
-~10062~^~431~^0.^0^^~4~^~PIK~^^^^^^^^^^~02/01/2007~
-~10062~^~432~^0.^0^^~1~^~PAK~^^^^^^^^^^~02/01/2007~
-~10062~^~435~^0.^0^^~4~^~NC~^^^^^^^^^^~03/01/2009~
-~10062~^~601~^67.^0^^~1~^~PAK~^^^^^^^^^^~02/01/2007~
-~10063~^~208~^200.^0^^~4~^~PIK~^^^^^^^^^^~06/01/2010~
-~10063~^~262~^0.^0^^~4~^~PIK~^^^^^^^^^^~06/01/2010~
-~10063~^~263~^0.^0^^~4~^~PIK~^^^^^^^^^^~06/01/2010~
-~10063~^~268~^835.^0^^~4~^~PIK~^^^^^^^^^^~06/01/2010~
-~10063~^~301~^12.^0^^~1~^~PAK~^^^^^^^^^^~06/01/2010~
-~10063~^~304~^23.^0^^~1~^~PAK~^^^^^^^^^^~06/01/2010~
-~10063~^~305~^221.^0^^~1~^~PAK~^^^^^^^^^^~06/01/2010~
-~10063~^~306~^261.^0^^~1~^~PAK~^^^^^^^^^^~06/01/2010~
-~10063~^~307~^66.^0^^~1~^~PAK~^^^^^^^^^^~06/01/2010~
-~10063~^~318~^11.^0^^~4~^~PIK~^^^^^^^^^^~06/01/2010~
-~10063~^~319~^3.^0^^~4~^~PIK~^^^^^^^^^^~06/01/2010~
-~10063~^~320~^3.^0^^~4~^~PIK~^^^^^^^^^^~06/01/2010~
-~10063~^~321~^0.^0^^~4~^~PIK~^^^^^^^^^^~06/01/2010~
-~10063~^~322~^0.^0^^~4~^~PIK~^^^^^^^^^^~06/01/2010~
-~10063~^~324~^38.^0^^~1~^~PAK~^^^^^^^^^^~06/01/2010~
-~10063~^~334~^0.^0^^~4~^~PIK~^^^^^^^^^^~06/01/2010~
-~10063~^~337~^0.^0^^~4~^~PIK~^^^^^^^^^^~06/01/2010~
-~10063~^~338~^0.^0^^~4~^~PIK~^^^^^^^^^^~06/01/2010~
-~10063~^~417~^0.^0^^~4~^~PIK~^^^^^^^^^^~06/01/2010~
-~10063~^~431~^0.^0^^~4~^~PIK~^^^^^^^^^^~06/01/2010~
-~10063~^~432~^0.^0^^~4~^~PIK~^^^^^^^^^^~06/01/2010~
-~10063~^~435~^0.^0^^~4~^~NC~^^^^^^^^^^~06/01/2010~
-~10063~^~601~^72.^0^^~1~^~PAK~^^^^^^^^^^~06/01/2010~
-~10064~^~208~^196.^0^^~4~^~PIK~^^^^^^^^^^~03/01/2009~
-~10064~^~262~^0.^0^^~4~^~PIK~^^^^^^^^^^~02/01/2007~
-~10064~^~263~^0.^0^^~4~^~PIK~^^^^^^^^^^~02/01/2007~
-~10064~^~268~^820.^0^^~4~^~PIK~^^^^^^^^^^~03/01/2009~
-~10064~^~301~^7.^0^^~1~^~PAK~^^^^^^^^^^~03/01/2009~
-~10064~^~304~^26.^0^^~1~^~PAK~^^^^^^^^^^~03/01/2009~
-~10064~^~305~^230.^0^^~1~^~PAK~^^^^^^^^^^~03/01/2009~
-~10064~^~306~^357.^0^^~1~^~PAK~^^^^^^^^^^~03/01/2009~
-~10064~^~307~^44.^0^^~1~^~PAK~^^^^^^^^^^~03/01/2009~
-~10064~^~318~^5.^0^^~1~^~PAK~^^^^^^^^^^~03/01/2009~
-~10064~^~319~^1.^0^^~1~^~PAK~^^^^^^^^^^~03/01/2009~
-~10064~^~320~^1.^0^^~1~^~PAK~^^^^^^^^^^~03/01/2009~
-~10064~^~321~^0.^0^^~4~^~PIK~^^^^^^^^^^~02/01/2007~
-~10064~^~322~^0.^0^^~4~^~PIK~^^^^^^^^^^~02/01/2007~
-~10064~^~324~^3.^0^^~4~^~PIK~^^^^^^^^^^~03/01/2009~
-~10064~^~334~^0.^0^^~4~^~PIK~^^^^^^^^^^~02/01/2007~
-~10064~^~337~^0.^0^^~4~^~PIK~^^^^^^^^^^~02/01/2007~
-~10064~^~338~^0.^0^^~4~^~PIK~^^^^^^^^^^~02/01/2007~
-~10064~^~417~^0.^0^^~1~^~PAK~^^^^^^^^^^~03/01/2009~
-~10064~^~431~^0.^0^^~4~^~PIK~^^^^^^^^^^~02/01/2007~
-~10064~^~432~^0.^0^^~1~^~PAK~^^^^^^^^^^~03/01/2009~
-~10064~^~435~^0.^0^^~4~^~NC~^^^^^^^^^^~03/01/2009~
-~10064~^~601~^73.^0^^~1~^~PAK~^^^^^^^^^^~03/01/2009~
-~10065~^~208~^192.^0^^~4~^~PIK~^^^^^^^^^^~03/01/2007~
-~10065~^~262~^0.^0^^~4~^~PIK~^^^^^^^^^^~03/01/2009~
-~10065~^~263~^0.^0^^~4~^~PIK~^^^^^^^^^^~03/01/2009~
-~10065~^~268~^805.^0^^~4~^~PIK~^^^^^^^^^^~03/01/2007~
-~10065~^~301~^7.^0^^~1~^~PAK~^^^^^^^^^^~03/01/2007~
-~10065~^~304~^25.^0^^~1~^~PAK~^^^^^^^^^^~03/01/2007~
-~10065~^~305~^223.^0^^~1~^~PAK~^^^^^^^^^^~03/01/2007~
-~10065~^~306~^349.^0^^~1~^~PAK~^^^^^^^^^^~03/01/2007~
-~10065~^~307~^46.^0^^~1~^~PAK~^^^^^^^^^^~03/01/2007~
-~10065~^~318~^4.^0^^~1~^~PAK~^^^^^^^^^^~03/01/2007~
-~10065~^~319~^1.^0^^~4~^~PIK~^^^^^^^^^^~03/01/2007~
-~10065~^~320~^1.^0^^~1~^~PAK~^^^^^^^^^^~03/01/2007~
-~10065~^~321~^0.^0^^~4~^~PIK~^^^^^^^^^^~03/01/2009~
-~10065~^~322~^0.^0^^~4~^~PIK~^^^^^^^^^^~03/01/2009~
-~10065~^~324~^20.^0^^~4~^~PIK~^^^^^^^^^^~03/01/2009~
-~10065~^~334~^0.^0^^~4~^~PIK~^^^^^^^^^^~03/01/2009~
-~10065~^~337~^0.^0^^~4~^~PIK~^^^^^^^^^^~03/01/2009~
-~10065~^~338~^0.^0^^~4~^~PIK~^^^^^^^^^^~03/01/2009~
-~10065~^~417~^0.^0^^~4~^~PIK~^^^^^^^^^^~03/01/2009~
-~10065~^~431~^0.^0^^~4~^~PIK~^^^^^^^^^^~03/01/2007~
-~10065~^~432~^0.^0^^~4~^~PIK~^^^^^^^^^^~03/01/2009~
-~10065~^~435~^0.^0^^~4~^~NC~^^^^^^^^^^~03/01/2009~
-~10065~^~601~^80.^0^^~1~^~PAK~^^^^^^^^^^~03/01/2007~
-~10066~^~208~^127.^0^^~4~^~NC~^^^^^^^^^^~03/01/2009~
-~10066~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2003~
-~10066~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2003~
-~10066~^~268~^530.^0^^~4~^~NC~^^^^^^^^^^~03/01/2009~
-~10066~^~301~^5.^12^0.^~1~^~A~^^^1^4.^6.^11^4.^5.^~2, 3~^~02/01/2007~
-~10066~^~304~^27.^12^0.^~1~^~A~^^^1^25.^29.^11^26.^28.^~2, 3~^~02/01/2007~
-~10066~^~305~^234.^12^3.^~1~^~A~^^^1^215.^266.^11^225.^242.^~2, 3~^~02/01/2007~
-~10066~^~306~^387.^12^5.^~1~^~A~^^^1^349.^416.^11^373.^400.^~2, 3~^~02/01/2007~
-~10066~^~307~^49.^12^3.^~1~^~A~^^^1^39.^80.^11^42.^56.^~2, 3~^~02/01/2007~
-~10066~^~318~^0.^0^^~1~^~AS~^^^^^^^^^^~02/01/2007~
-~10066~^~319~^0.^1^^~1~^~A~^^^^^^^^^~1~^~02/01/2007~
-~10066~^~320~^0.^0^^~1~^~AS~^^^^^^^^^^~02/01/2007~
-~10066~^~321~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2003~
-~10066~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2003~
-~10066~^~324~^13.^0^^~4~^~BFFN~^^^^^^^^^^~03/01/2009~
-~10066~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2003~
-~10066~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2003~
-~10066~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2003~
-~10066~^~417~^0.^1^^~1~^~A~^^^^^^^^^~1~^~02/01/2007~
-~10066~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~
-~10066~^~432~^0.^1^^~1~^~A~^^^^^^^^^~1~^~02/01/2007~
-~10066~^~435~^0.^0^^~4~^~NC~^^^^^^^^^^~03/01/2009~
-~10066~^~601~^66.^12^5.^~1~^~A~^^^1^38.^105.^11^53.^79.^~2, 3~^~02/01/2007~
-~10067~^~208~^170.^0^^~4~^~NC~^^^^^^^^^^~04/01/2010~
-~10067~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2003~
-~10067~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2003~
-~10067~^~268~^709.^0^^~4~^~NC~^^^^^^^^^^~04/01/2010~
-~10067~^~301~^8.^6^0.^~1~^~A~^^^1^7.^8.^5^6.^8.^~2, 3~^~04/01/2010~
-~10067~^~304~^23.^6^0.^~1~^~A~^^^1^21.^25.^5^21.^24.^~2, 3~^~04/01/2010~
-~10067~^~305~^230.^6^3.^~1~^~A~^^^1^218.^243.^5^220.^239.^~2, 3~^~04/01/2010~
-~10067~^~306~^269.^6^9.^~1~^~A~^^^1^233.^289.^5^244.^294.^~2, 3~^~04/01/2010~
-~10067~^~307~^67.^6^1.^~1~^~A~^^^1^61.^75.^5^62.^71.^~2, 3~^~04/01/2010~
-~10067~^~318~^6.^0^^~4~^~NC~^^^^^^^^^^~05/01/2010~
-~10067~^~319~^2.^0^^~4~^~BFSN~^~10033~^^^^^^^^^~04/01/2010~
-~10067~^~320~^2.^0^^~4~^~NC~^^^^^^^^^^~05/01/2010~
-~10067~^~321~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2003~
-~10067~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2003~
-~10067~^~324~^36.^1^^~1~^~A~^^^^^^^^^^~04/01/2010~
-~10067~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2003~
-~10067~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2003~
-~10067~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2003~
-~10067~^~417~^0.^0^^~4~^~BFPN~^~10068~^^^^^^^^^~04/01/2010~
-~10067~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~
-~10067~^~432~^0.^0^^~4~^~BFPN~^^^^^^^^^^~04/01/2010~
-~10067~^~435~^0.^0^^~4~^~NC~^^^^^^^^^^~04/01/2010~
-~10067~^~601~^71.^6^0.^~1~^~A~^^^1^69.^73.^5^69.^73.^~2, 3~^~04/01/2010~
-~10068~^~208~^173.^0^^~4~^~NC~^^^^^^^^^^~03/01/2009~
-~10068~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2003~
-~10068~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2003~
-~10068~^~268~^722.^0^^~4~^~NC~^^^^^^^^^^~03/01/2009~
-~10068~^~301~^5.^12^0.^~1~^~A~^^^1^5.^6.^11^5.^5.^~2, 3~^~02/01/2007~
-~10068~^~304~^27.^12^0.^~1~^~A~^^^1^25.^29.^11^26.^27.^~2, 3~^~02/01/2007~
-~10068~^~305~^237.^12^3.^~1~^~A~^^^1^213.^254.^11^228.^244.^~2, 3~^~02/01/2007~
-~10068~^~306~^367.^12^8.^~1~^~A~^^^1^321.^407.^11^348.^385.^~2, 3~^~02/01/2007~
-~10068~^~307~^45.^12^1.^~1~^~A~^^^1^39.^58.^11^41.^49.^~2, 3~^~02/01/2007~
-~10068~^~318~^0.^0^^~1~^~AS~^^^^^^^^^^~02/01/2007~
-~10068~^~319~^0.^1^^~1~^~A~^^^^^^^^^~1~^~02/01/2007~
-~10068~^~320~^0.^0^^~1~^~AS~^^^^^^^^^^~02/01/2007~
-~10068~^~321~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2003~
-~10068~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2003~
-~10068~^~324~^23.^0^^~4~^~BFFN~^^^^^^^^^^~03/01/2009~
-~10068~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2003~
-~10068~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2003~
-~10068~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2003~
-~10068~^~417~^0.^1^^~1~^~A~^^^^^^^^^~1~^~02/01/2007~
-~10068~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~
-~10068~^~432~^0.^1^^~1~^~A~^^^^^^^^^~1~^~02/01/2007~
-~10068~^~435~^0.^0^^~4~^~NC~^^^^^^^^^^~03/01/2009~
-~10068~^~601~^72.^12^2.^~1~^~A~^^^1^53.^87.^11^65.^78.^~2, 3~^~02/01/2007~
-~10069~^~208~^173.^0^^~4~^~NC~^^^^^^^^^^~03/01/2009~
-~10069~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2007~
-~10069~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2007~
-~10069~^~268~^723.^0^^~4~^~NC~^^^^^^^^^^~03/01/2009~
-~10069~^~301~^6.^12^0.^~1~^~A~^^^1^4.^9.^11^4.^6.^~2, 3~^~03/01/2007~
-~10069~^~304~^26.^12^0.^~1~^~A~^^^1^22.^28.^11^24.^27.^~2, 3~^~03/01/2007~
-~10069~^~305~^227.^12^3.^~1~^~A~^^^1^206.^251.^11^219.^235.^~2, 3~^~03/01/2007~
-~10069~^~306~^357.^12^6.^~1~^~A~^^^1^323.^399.^11^341.^372.^~2, 3~^~03/01/2007~
-~10069~^~307~^47.^12^1.^~1~^~A~^^^1^42.^54.^11^43.^49.^~2, 3~^~03/01/2007~
-~10069~^~318~^0.^0^^~1~^~AS~^^^^^^^^^^~03/01/2007~
-~10069~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2007~
-~10069~^~320~^0.^0^^~1~^~AS~^^^^^^^^^^~03/01/2007~
-~10069~^~321~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2007~
-~10069~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2007~
-~10069~^~324~^18.^0^^~4~^~BFFN~^^^^^^^^^^~03/01/2009~
-~10069~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2007~
-~10069~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2007~
-~10069~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2007~
-~10069~^~417~^0.^0^^~4~^~BFPN~^~10068~^^^^^^^^^~03/01/2007~
-~10069~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~
-~10069~^~432~^0.^0^^~4~^~BFPN~^^^^^^^^^^~03/01/2009~
-~10069~^~435~^0.^0^^~4~^~NC~^^^^^^^^^^~03/01/2009~
-~10069~^~601~^79.^4^10.^~1~^~A~^^^1^62.^110.^3^45.^113.^~2, 3~^~03/01/2007~
-~10070~^~208~^236.^0^^~4~^~NC~^^^^^^^^^^~12/01/1992~
-~10070~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2003~
-~10070~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2003~
-~10070~^~268~^987.^0^^~4~^^^^^^^^^^^~03/01/2009~
-~10070~^~301~^15.^0^^~1~^^^^^^^^^^^~12/01/1992~
-~10070~^~304~^18.^0^^~1~^^^^^^^^^^^~12/01/1992~
-~10070~^~305~^182.^0^^~1~^^^^^^^^^^^~12/01/1992~
-~10070~^~306~^302.^0^^~1~^^^^^^^^^^^~12/01/1992~
-~10070~^~307~^65.^0^^~1~^^^^^^^^^^^~12/01/1992~
-~10070~^~318~^7.^0^^~1~^^^^^^^^^^^~08/01/2004~
-~10070~^~319~^2.^0^^~4~^~NR~^^^^^^^^^^~01/01/2003~
-~10070~^~320~^2.^0^^~4~^~NC~^^^^^^^^^^~03/01/2009~
-~10070~^~321~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2003~
-~10070~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2003~
-~10070~^~324~^70.^0^^~4~^~BFFN~^^^^^^^^^^~03/01/2009~
-~10070~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2003~
-~10070~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2003~
-~10070~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2003~
-~10070~^~417~^5.^0^^~1~^^^^^^^^^^^~12/01/1992~
-~10070~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~
-~10070~^~432~^5.^0^^~1~^^^^^^^^^^^~03/01/2009~
-~10070~^~435~^5.^0^^~4~^~NC~^^^^^^^^^^~03/01/2009~
-~10070~^~601~^71.^0^^~1~^^^^^^^^^^^~12/01/1992~
-~10071~^~208~^292.^0^^~4~^~NC~^^^^^^^^^^~12/01/1992~
-~10071~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2003~
-~10071~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2003~
-~10071~^~268~^1222.^0^^~4~^^^^^^^^^^^~03/01/2009~
-~10071~^~301~^24.^0^^~1~^^^^^^^^^^^~12/01/1992~
-~10071~^~304~^18.^0^^~1~^^^^^^^^^^^~12/01/1992~
-~10071~^~305~^212.^0^^~1~^^^^^^^^^^^~12/01/1992~
-~10071~^~306~^329.^0^^~1~^^^^^^^^^^^~12/01/1992~
-~10071~^~307~^68.^0^^~1~^^^^^^^^^^^~12/01/1992~
-~10071~^~318~^8.^0^^~1~^^^^^^^^^^^~08/01/2004~
-~10071~^~319~^2.^0^^~4~^~NR~^^^^^^^^^^~10/01/2004~
-~10071~^~320~^2.^0^^~4~^~NC~^^^^^^^^^^~03/01/2009~
-~10071~^~321~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2003~
-~10071~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2003~
-~10071~^~324~^61.^0^^~4~^~BFFN~^^^^^^^^^^~03/01/2009~
-~10071~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2003~
-~10071~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2003~
-~10071~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2003~
-~10071~^~417~^5.^0^^~1~^^^^^^^^^^^~12/01/1992~
-~10071~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~
-~10071~^~432~^5.^0^^~1~^^^^^^^^^^^~03/01/2009~
-~10071~^~435~^5.^0^^~4~^~NC~^^^^^^^^^^~03/01/2009~
-~10071~^~601~^90.^0^^~1~^^^^^^^^^^^~12/01/1992~
-~10072~^~208~^148.^0^^~4~^~NC~^^^^^^^^^^~12/01/1992~
-~10072~^~268~^619.^0^^~4~^^^^^^^^^^^
-~10072~^~301~^14.^0^^~1~^^^^^^^^^^^~12/01/1992~
-~10072~^~304~^21.^0^^~1~^^^^^^^^^^^~12/01/1992~
-~10072~^~305~^202.^0^^~1~^^^^^^^^^^^~12/01/1992~
-~10072~^~306~^341.^0^^~1~^^^^^^^^^^^~12/01/1992~
-~10072~^~307~^76.^0^^~1~^^^^^^^^^^^~12/01/1992~
-~10072~^~318~^6.^0^^~1~^^^^^^^^^^^~12/01/1992~
-~10072~^~319~^2.^0^^~1~^^^^^^^^^^^~06/01/2002~
-~10072~^~320~^2.^0^^~1~^^^^^^^^^^^~06/01/2002~
-~10072~^~417~^5.^0^^~1~^^^^^^^^^^^~12/01/1992~
-~10072~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~
-~10072~^~432~^5.^0^^~1~^^^^^^^^^^^~12/01/1992~
-~10072~^~435~^5.^0^^~4~^~NC~^^^^^^^^^^~01/01/2001~
-~10072~^~601~^67.^0^^~1~^^^^^^^^^^^~12/01/1992~
-~10073~^~208~^230.^0^^~4~^~NC~^^^^^^^^^^~12/01/1992~
-~10073~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2003~
-~10073~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2003~
-~10073~^~268~^962.^0^^~4~^^^^^^^^^^^~02/01/2009~
-~10073~^~301~^18.^0^^~1~^^^^^^^^^^^~12/01/1992~
-~10073~^~304~^20.^0^^~1~^^^^^^^^^^^~12/01/1992~
-~10073~^~305~^221.^0^^~1~^^^^^^^^^^^~12/01/1992~
-~10073~^~306~^346.^0^^~1~^^^^^^^^^^^~12/01/1992~
-~10073~^~307~^75.^0^^~1~^^^^^^^^^^^~12/01/1992~
-~10073~^~318~^7.^0^^~1~^^^^^^^^^^^~08/01/2004~
-~10073~^~319~^2.^0^^~4~^~NR~^^^^^^^^^^~01/01/2003~
-~10073~^~320~^2.^0^^~4~^~NC~^^^^^^^^^^~02/01/2009~
-~10073~^~321~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2003~
-~10073~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2003~
-~10073~^~324~^39.^0^^~4~^~BFFN~^^^^^^^^^^~02/01/2009~
-~10073~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2003~
-~10073~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2003~
-~10073~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2003~
-~10073~^~417~^5.^0^^~1~^^^^^^^^^^^~12/01/1992~
-~10073~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~
-~10073~^~432~^5.^0^^~1~^^^^^^^^^^^~02/01/2009~
-~10073~^~435~^5.^0^^~4~^~NC~^^^^^^^^^^~02/01/2009~
-~10073~^~601~^90.^0^^~1~^^^^^^^^^^^~12/01/1992~
-~10074~^~208~^193.^0^^~4~^~PIK~^^^^^^^^^^~02/01/2011~
-~10074~^~262~^0.^0^^~4~^~PIK~^^^^^^^^^^~02/01/2011~
-~10074~^~263~^0.^0^^~4~^~PIK~^^^^^^^^^^~02/01/2011~
-~10074~^~268~^806.^0^^~4~^~PIK~^^^^^^^^^^~02/01/2011~
-~10074~^~301~^12.^0^^~1~^~PAK~^^^^^^^^^^~02/01/2011~
-~10074~^~304~^18.^0^^~1~^~PAK~^^^^^^^^^^~02/01/2011~
-~10074~^~305~^200.^0^^~1~^~PAK~^^^^^^^^^^~02/01/2011~
-~10074~^~306~^413.^0^^~1~^~PAK~^^^^^^^^^^~02/01/2011~
-~10074~^~307~^84.^0^^~1~^~PAK~^^^^^^^^^^~02/01/2011~
-~10074~^~318~^18.^0^^~4~^~PIK~^^^^^^^^^^~02/01/2011~
-~10074~^~319~^5.^0^^~4~^~PIK~^^^^^^^^^^~02/01/2011~
-~10074~^~320~^5.^0^^~4~^~PIK~^^^^^^^^^^~02/01/2011~
-~10074~^~321~^0.^0^^~4~^~PIK~^^^^^^^^^^~02/01/2011~
-~10074~^~322~^0.^0^^~4~^~PIK~^^^^^^^^^^~02/01/2011~
-~10074~^~324~^30.^0^^~4~^~PIK~^^^^^^^^^^~02/01/2011~
-~10074~^~334~^0.^0^^~4~^~PIK~^^^^^^^^^^~02/01/2011~
-~10074~^~337~^0.^0^^~4~^~PIK~^^^^^^^^^^~02/01/2011~
-~10074~^~338~^0.^0^^~4~^~PIK~^^^^^^^^^^~02/01/2011~
-~10074~^~417~^0.^0^^~4~^~PIK~^^^^^^^^^^~02/01/2011~
-~10074~^~431~^0.^0^^~4~^~PIK~^^^^^^^^^^~02/01/2011~
-~10074~^~432~^0.^0^^~4~^~PIK~^^^^^^^^^^~02/01/2011~
-~10074~^~435~^0.^0^^~4~^~NC~^^^^^^^^^^~02/01/2011~
-~10074~^~601~^63.^0^^~1~^~PAK~^^^^^^^^^^~02/01/2011~
-~10075~^~208~^235.^0^^~4~^~PIK~^^^^^^^^^^~02/01/2011~
-~10075~^~262~^0.^0^^~4~^~PIK~^^^^^^^^^^~02/01/2011~
-~10075~^~263~^0.^0^^~4~^~PIK~^^^^^^^^^^~02/01/2011~
-~10075~^~268~^985.^0^^~4~^~PIK~^^^^^^^^^^~02/01/2011~
-~10075~^~301~^16.^0^^~1~^~PAK~^^^^^^^^^^~02/01/2011~
-~10075~^~304~^22.^0^^~1~^~PAK~^^^^^^^^^^~02/01/2011~
-~10075~^~305~^240.^0^^~1~^~PAK~^^^^^^^^^^~02/01/2011~
-~10075~^~306~^357.^0^^~1~^~PAK~^^^^^^^^^^~02/01/2011~
-~10075~^~307~^96.^0^^~1~^~PAK~^^^^^^^^^^~02/01/2011~
-~10075~^~318~^13.^0^^~4~^~PIK~^^^^^^^^^^~02/01/2011~
-~10075~^~319~^4.^0^^~4~^~PIK~^^^^^^^^^^~02/01/2011~
-~10075~^~320~^4.^0^^~4~^~PIK~^^^^^^^^^^~02/01/2011~
-~10075~^~321~^0.^0^^~4~^~PIK~^^^^^^^^^^~02/01/2011~
-~10075~^~322~^0.^0^^~4~^~PIK~^^^^^^^^^^~02/01/2011~
-~10075~^~324~^45.^0^^~4~^~PIK~^^^^^^^^^^~02/01/2011~
-~10075~^~334~^0.^0^^~4~^~PIK~^^^^^^^^^^~02/01/2011~
-~10075~^~337~^0.^0^^~4~^~PIK~^^^^^^^^^^~02/01/2011~
-~10075~^~338~^0.^0^^~4~^~PIK~^^^^^^^^^^~02/01/2011~
-~10075~^~417~^5.^0^^~1~^~PAK~^^^^^^^^^^~02/01/2011~
-~10075~^~431~^0.^0^^~4~^~PIK~^^^^^^^^^^~02/01/2011~
-~10075~^~432~^5.^0^^~1~^~PAK~^^^^^^^^^^~02/01/2011~
-~10075~^~435~^5.^0^^~4~^~NC~^^^^^^^^^^~02/01/2011~
-~10075~^~601~^86.^0^^~1~^~PAK~^^^^^^^^^^~02/01/2011~
-~10076~^~208~^317.^0^^~4~^~NC~^^^^^^^^^^~12/01/1992~
-~10076~^~268~^1326.^0^^~4~^^^^^^^^^^^
-~10076~^~301~^19.^0^^~1~^^^^^^^^^^^~12/01/1992~
-~10076~^~304~^17.^0^^~1~^^^^^^^^^^^~12/01/1992~
-~10076~^~305~^228.^0^^~1~^^^^^^^^^^^~12/01/1992~
-~10076~^~306~^325.^0^^~1~^^^^^^^^^^^~12/01/1992~
-~10076~^~307~^70.^0^^~1~^^^^^^^^^^^~12/01/1992~
-~10076~^~318~^8.^0^^~1~^^^^^^^^^^^~12/01/1992~
-~10076~^~319~^2.^0^^~1~^^^^^^^^^^^~06/01/2002~
-~10076~^~320~^2.^0^^~1~^^^^^^^^^^^~06/01/2002~
-~10076~^~417~^4.^0^^~1~^^^^^^^^^^^~12/01/1992~
-~10076~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~
-~10076~^~432~^4.^0^^~1~^^^^^^^^^^^~12/01/1992~
-~10076~^~435~^4.^0^^~4~^~NC~^^^^^^^^^^~01/01/2001~
-~10076~^~601~^94.^0^^~1~^^^^^^^^^^^~12/01/1992~
-~10077~^~208~^120.^0^^~4~^~NC~^^^^^^^^^^~01/01/2011~
-~10077~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2003~
-~10077~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2003~
-~10077~^~268~^504.^0^^~4~^~NC~^^^^^^^^^^~01/01/2011~
-~10077~^~301~^11.^6^1.^~1~^~A~^^^1^9.^16.^5^8.^14.^~2, 3~^~01/01/2011~
-~10077~^~304~^20.^6^0.^~1~^~A~^^^1^20.^21.^5^19.^20.^~2, 3~^~01/01/2011~
-~10077~^~305~^219.^6^6.^~1~^~A~^^^1^201.^241.^5^202.^236.^~2, 3~^~01/01/2011~
-~10077~^~306~^427.^6^11.^~1~^~A~^^^1^395.^462.^5^398.^454.^~2, 3~^~01/01/2011~
-~10077~^~307~^90.^6^1.^~1~^~A~^^^1^81.^93.^5^85.^94.^~2, 3~^~01/01/2011~
-~10077~^~318~^7.^0^^~4~^~NC~^^^^^^^^^^~01/01/2011~
-~10077~^~319~^2.^0^^~4~^~NR~^^^^^^^^^^~01/01/2003~
-~10077~^~320~^2.^0^^~4~^~NC~^^^^^^^^^^~03/01/2009~
-~10077~^~321~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2003~
-~10077~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2003~
-~10077~^~324~^24.^0^^~4~^~BFFN~^^^^^^^^^^~03/01/2009~
-~10077~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2003~
-~10077~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2003~
-~10077~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2003~
-~10077~^~417~^0.^0^^~4~^~BFPN~^~10068~^^^^^^^^^~01/01/2011~
-~10077~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~
-~10077~^~432~^0.^0^^~4~^~BFPN~^^^^^^^^^^~01/01/2011~
-~10077~^~435~^0.^0^^~4~^~NC~^^^^^^^^^^~01/01/2011~
-~10077~^~601~^62.^6^0.^~1~^~A~^^^1^60.^64.^5^59.^63.^~2, 3~^~01/01/2011~
-~10078~^~208~^194.^0^^~4~^~NC~^^^^^^^^^^~01/01/2011~
-~10078~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2003~
-~10078~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2003~
-~10078~^~268~^813.^0^^~4~^~NC~^^^^^^^^^^~01/01/2011~
-~10078~^~301~^16.^6^1.^~1~^~A~^^^1^12.^19.^5^12.^18.^~2, 3~^~01/01/2011~
-~10078~^~304~^23.^6^0.^~1~^~A~^^^1^21.^25.^5^21.^24.^~2, 3~^~01/01/2011~
-~10078~^~305~^254.^6^3.^~1~^~A~^^^1^245.^271.^5^244.^264.^~2, 3~^~01/01/2011~
-~10078~^~306~^382.^6^15.^~1~^~A~^^^1^323.^418.^5^341.^422.^~2, 3~^~01/01/2011~
-~10078~^~307~^100.^6^1.^~1~^~A~^^^1^96.^107.^5^95.^103.^~2, 3~^~01/01/2011~
-~10078~^~318~^6.^0^^~4~^~NR~^^^^^^^^^^~01/01/2011~
-~10078~^~319~^2.^0^^~4~^~BFSN~^~10033~^^^^^^^^^~10/01/2004~
-~10078~^~320~^2.^0^^~4~^~NR~^^^^^^^^^^~02/01/2009~
-~10078~^~321~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2003~
-~10078~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2003~
-~10078~^~324~^42.^0^^~4~^~BFFN~^^^^^^^^^^~02/01/2009~
-~10078~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2003~
-~10078~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2003~
-~10078~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2003~
-~10078~^~417~^5.^0^^~1~^^^^^^^^^^^~12/01/1992~
-~10078~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~
-~10078~^~432~^5.^0^^~1~^^^^^^^^^^^~02/01/2009~
-~10078~^~435~^5.^0^^~4~^~NC~^^^^^^^^^^~02/01/2009~
-~10078~^~601~^87.^6^4.^~1~^~A~^^^1^66.^101.^5^74.^99.^~2, 3~^~01/01/2011~
-~10079~^~208~^228.^0^^~4~^~NC~^^^^^^^^^^~12/01/1992~
-~10079~^~268~^954.^0^^~4~^^^^^^^^^^^~03/01/2009~
-~10079~^~301~^9.^1^^~1~^^^^^^^^^^^~12/01/1992~
-~10079~^~304~^20.^1^^~1~^^^^^^^^^^^~12/01/1992~
-~10079~^~305~^247.^1^^~1~^^^^^^^^^^^~12/01/1992~
-~10079~^~306~^351.^12^9.^~1~^^^^^^^^^^^~12/01/1992~
-~10079~^~307~^80.^12^2.^~1~^^^^^^^^^^^~12/01/1992~
-~10079~^~318~^7.^0^^~1~^^^^^^^^^^^~12/01/1992~
-~10079~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2009~
-~10079~^~320~^0.^0^^~4~^~NR~^^^^^^^^^^~03/01/2009~
-~10079~^~324~^36.^0^^~4~^~BFFN~^^^^^^^^^^~03/01/2009~
-~10079~^~417~^5.^0^^~1~^^^^^^^^^^^~12/01/1992~
-~10079~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~
-~10079~^~432~^5.^0^^~1~^^^^^^^^^^^~03/01/2009~
-~10079~^~435~^5.^0^^~4~^~NC~^^^^^^^^^^~06/01/2009~
-~10079~^~601~^95.^11^3.^~1~^^^^^^^^^^^~12/01/1992~
-~10080~^~208~^186.^0^^~4~^~PIK~^^^^^^^^^^~02/01/2007~
-~10080~^~262~^0.^0^^~4~^~PIK~^^^^^^^^^^~03/01/2009~
-~10080~^~263~^0.^0^^~4~^~PIK~^^^^^^^^^^~03/01/2009~
-~10080~^~268~^778.^0^^~4~^~PIK~^^^^^^^^^^~02/01/2007~
-~10080~^~301~^16.^0^^~1~^~PAK~^^^^^^^^^^~02/01/2007~
-~10080~^~304~^20.^0^^~1~^~PAK~^^^^^^^^^^~02/01/2007~
-~10080~^~305~^190.^0^^~1~^~PAK~^^^^^^^^^^~02/01/2007~
-~10080~^~306~^318.^0^^~1~^~PAK~^^^^^^^^^^~02/01/2007~
-~10080~^~307~^61.^0^^~1~^~PAK~^^^^^^^^^^~02/01/2007~
-~10080~^~318~^8.^0^^~1~^~PAK~^^^^^^^^^^~02/01/2007~
-~10080~^~319~^2.^0^^~4~^~PIK~^^^^^^^^^^~02/01/2007~
-~10080~^~320~^2.^0^^~1~^~PAK~^^^^^^^^^^~02/01/2007~
-~10080~^~321~^0.^0^^~4~^~PIK~^^^^^^^^^^~03/01/2009~
-~10080~^~322~^0.^0^^~4~^~PIK~^^^^^^^^^^~03/01/2009~
-~10080~^~324~^30.^0^^~4~^~PIK~^^^^^^^^^^~03/01/2009~
-~10080~^~334~^0.^0^^~4~^~PIK~^^^^^^^^^^~03/01/2009~
-~10080~^~337~^0.^0^^~4~^~PIK~^^^^^^^^^^~03/01/2009~
-~10080~^~338~^0.^0^^~4~^~PIK~^^^^^^^^^^~03/01/2009~
-~10080~^~417~^0.^0^^~4~^~PIK~^^^^^^^^^^~03/01/2009~
-~10080~^~431~^0.^0^^~4~^~PIK~^^^^^^^^^^~02/01/2007~
-~10080~^~432~^0.^0^^~4~^~PIK~^^^^^^^^^^~03/01/2009~
-~10080~^~435~^0.^0^^~4~^~NC~^^^^^^^^^^~03/01/2009~
-~10080~^~601~^62.^0^^~1~^~PAK~^^^^^^^^^^~02/01/2007~
-~10081~^~208~^267.^0^^~4~^~PIK~^^^^^^^^^^~03/01/2009~
-~10081~^~262~^0.^0^^~4~^~PIK~^^^^^^^^^^~02/01/2007~
-~10081~^~263~^0.^0^^~4~^~PIK~^^^^^^^^^^~02/01/2007~
-~10081~^~268~^1116.^0^^~4~^~PIK~^^^^^^^^^^~03/01/2009~
-~10081~^~301~^26.^0^^~1~^~PAK~^^^^^^^^^^~03/01/2009~
-~10081~^~304~^23.^0^^~1~^~PAK~^^^^^^^^^^~03/01/2009~
-~10081~^~305~^208.^0^^~1~^~PAK~^^^^^^^^^^~03/01/2009~
-~10081~^~306~^305.^0^^~1~^~PAK~^^^^^^^^^^~03/01/2009~
-~10081~^~307~^58.^0^^~1~^~PAK~^^^^^^^^^^~03/01/2009~
-~10081~^~318~^8.^0^^~1~^~PAK~^^^^^^^^^^~02/01/2007~
-~10081~^~319~^2.^0^^~4~^~PIK~^^^^^^^^^^~03/01/2009~
-~10081~^~320~^2.^0^^~1~^~PAK~^^^^^^^^^^~02/01/2007~
-~10081~^~321~^0.^0^^~4~^~PIK~^^^^^^^^^^~02/01/2007~
-~10081~^~322~^0.^0^^~4~^~PIK~^^^^^^^^^^~02/01/2007~
-~10081~^~324~^47.^0^^~4~^~PIK~^^^^^^^^^^~03/01/2009~
-~10081~^~334~^0.^0^^~4~^~PIK~^^^^^^^^^^~02/01/2007~
-~10081~^~337~^0.^0^^~4~^~PIK~^^^^^^^^^^~02/01/2007~
-~10081~^~338~^0.^0^^~4~^~PIK~^^^^^^^^^^~02/01/2007~
-~10081~^~417~^0.^0^^~4~^~PIK~^^^^^^^^^^~03/01/2009~
-~10081~^~431~^0.^0^^~4~^~PIK~^^^^^^^^^^~02/01/2007~
-~10081~^~432~^0.^0^^~4~^~PIK~^^^^^^^^^^~03/01/2009~
-~10081~^~435~^0.^0^^~4~^~NC~^^^^^^^^^^~03/01/2009~
-~10081~^~601~^98.^0^^~1~^~PAK~^^^^^^^^^^~03/01/2009~
-~10082~^~208~^259.^0^^~4~^~NC~^^^^^^^^^^~12/01/1992~
-~10082~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2003~
-~10082~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2003~
-~10082~^~268~^1084.^0^^~4~^^^^^^^^^^^~03/01/2009~
-~10082~^~301~^36.^0^^~1~^^^^^^^^^^^~12/01/1992~
-~10082~^~304~^21.^0^^~1~^^^^^^^^^^^~12/01/1992~
-~10082~^~305~^210.^0^^~1~^^^^^^^^^^^~12/01/1992~
-~10082~^~306~^326.^0^^~1~^^^^^^^^^^^~12/01/1992~
-~10082~^~307~^69.^0^^~1~^^^^^^^^^^^~12/01/1992~
-~10082~^~318~^9.^0^^~1~^^^^^^^^^^^~08/01/2004~
-~10082~^~319~^3.^0^^~4~^~NR~^^^^^^^^^^~10/01/2004~
-~10082~^~320~^3.^0^^~4~^~NC~^^^^^^^^^^~03/01/2009~
-~10082~^~321~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2003~
-~10082~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2003~
-~10082~^~324~^63.^0^^~4~^~BFFN~^^^^^^^^^^~03/01/2009~
-~10082~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2003~
-~10082~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2003~
-~10082~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2003~
-~10082~^~417~^4.^0^^~1~^^^^^^^^^^^~12/01/1992~
-~10082~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~
-~10082~^~432~^4.^0^^~1~^^^^^^^^^^^~03/01/2009~
-~10082~^~435~^4.^0^^~4~^~NC~^^^^^^^^^^~03/01/2009~
-~10082~^~601~^95.^13^2.^~1~^^^^^^^^^^^~12/01/1992~
-~10083~^~208~^269.^0^^~4~^~NC~^^^^^^^^^^~12/01/1992~
-~10083~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2003~
-~10083~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2003~
-~10083~^~268~^1125.^0^^~4~^^^^^^^^^^^~03/01/2009~
-~10083~^~301~^28.^0^^~1~^^^^^^^^^^^~12/01/1992~
-~10083~^~304~^18.^0^^~1~^^^^^^^^^^^~12/01/1992~
-~10083~^~305~^197.^0^^~1~^^^^^^^^^^^~12/01/1992~
-~10083~^~306~^332.^0^^~1~^^^^^^^^^^^~12/01/1992~
-~10083~^~307~^67.^0^^~1~^^^^^^^^^^^~12/01/1992~
-~10083~^~318~^7.^0^^~1~^^^^^^^^^^^~08/01/2004~
-~10083~^~319~^2.^0^^~4~^~NR~^^^^^^^^^^~01/01/2003~
-~10083~^~320~^2.^0^^~4~^~NC~^^^^^^^^^^~03/01/2009~
-~10083~^~321~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2003~
-~10083~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2003~
-~10083~^~324~^54.^0^^~4~^~BFFN~^^^^^^^^^^~03/01/2009~
-~10083~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2003~
-~10083~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2003~
-~10083~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2003~
-~10083~^~417~^5.^0^^~1~^^^^^^^^^^^~12/01/1992~
-~10083~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~
-~10083~^~432~^5.^0^^~1~^^^^^^^^^^^~03/01/2009~
-~10083~^~435~^5.^0^^~4~^~NC~^^^^^^^^^^~03/01/2009~
-~10083~^~601~^86.^0^^~1~^^^^^^^^^^^~12/01/1992~
-~10084~^~208~^132.^0^^~4~^~NC~^^^^^^^^^^~02/01/2009~
-~10084~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2003~
-~10084~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2003~
-~10084~^~268~^550.^0^^~4~^~NC~^^^^^^^^^^~02/01/2009~
-~10084~^~301~^14.^12^1.^~1~^~A~^^^1^7.^26.^11^11.^17.^~2, 3~^~02/01/2007~
-~10084~^~304~^22.^12^0.^~1~^~A~^^^1^19.^24.^11^21.^22.^~2, 3~^~02/01/2007~
-~10084~^~305~^202.^12^3.^~1~^~A~^^^1^175.^220.^11^193.^210.^~2, 3~^~02/01/2007~
-~10084~^~306~^339.^12^5.^~1~^~A~^^^1^304.^380.^11^327.^351.^~2, 3~^~02/01/2007~
-~10084~^~307~^65.^12^1.^~1~^~A~^^^1^57.^73.^11^61.^68.^~2, 3~^~02/01/2007~
-~10084~^~318~^0.^0^^~1~^~AS~^^^^^^^^^^~02/01/2007~
-~10084~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2007~
-~10084~^~320~^0.^0^^~1~^~AS~^^^^^^^^^^~02/01/2007~
-~10084~^~321~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2003~
-~10084~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2003~
-~10084~^~324~^22.^0^^~4~^~BFFN~^^^^^^^^^^~02/01/2009~
-~10084~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2003~
-~10084~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2003~
-~10084~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2003~
-~10084~^~417~^0.^0^^~4~^~BFPN~^^^^^^^^^^~02/01/2007~
-~10084~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~
-~10084~^~432~^0.^0^^~4~^~BFPN~^^^^^^^^^^~02/01/2009~
-~10084~^~435~^0.^0^^~4~^~NC~^^^^^^^^^^~11/01/2009~
-~10084~^~601~^60.^12^4.^~1~^~A~^^^1^39.^92.^11^50.^69.^~2, 3~^~02/01/2007~
-~10085~^~208~^233.^0^^~4~^~NC~^^^^^^^^^^~02/01/2009~
-~10085~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2003~
-~10085~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2003~
-~10085~^~268~^973.^0^^~4~^~NC~^^^^^^^^^^~02/01/2009~
-~10085~^~301~^25.^12^3.^~1~^~A~^^^1^13.^56.^11^17.^32.^~2, 3~^~02/01/2007~
-~10085~^~304~^24.^12^0.^~1~^~A~^^^1^21.^25.^11^23.^24.^~2, 3~^~02/01/2007~
-~10085~^~305~^217.^12^4.^~1~^~A~^^^1^188.^235.^11^207.^225.^~2, 3~^~02/01/2007~
-~10085~^~306~^318.^12^4.^~1~^~A~^^^1^283.^337.^11^307.^327.^~2, 3~^~02/01/2007~
-~10085~^~307~^60.^12^1.^~1~^~A~^^^1^53.^65.^11^58.^62.^~2, 3~^~02/01/2007~
-~10085~^~318~^0.^0^^~1~^~AS~^^^^^^^^^^~02/01/2007~
-~10085~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2007~
-~10085~^~320~^0.^0^^~1~^~AS~^^^^^^^^^^~02/01/2007~
-~10085~^~321~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2003~
-~10085~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2003~
-~10085~^~324~^45.^0^^~4~^~BFFN~^^^^^^^^^^~02/01/2009~
-~10085~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2003~
-~10085~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2003~
-~10085~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2003~
-~10085~^~417~^0.^0^^~4~^~BFPN~^^^^^^^^^^~02/01/2007~
-~10085~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~
-~10085~^~432~^0.^0^^~4~^~BFPN~^^^^^^^^^^~02/01/2009~
-~10085~^~435~^0.^0^^~4~^~NC~^^^^^^^^^^~11/01/2009~
-~10085~^~601~^100.^12^3.^~1~^~A~^^^1^85.^120.^11^92.^107.^~2, 3~^~02/01/2007~
-~10086~^~208~^227.^0^^~4~^~NC~^^^^^^^^^^~12/01/1992~
-~10086~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2003~
-~10086~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2003~
-~10086~^~268~^950.^0^^~4~^^^^^^^^^^^~02/01/2009~
-~10086~^~301~^33.^5^2.^~1~^^^^^^^^^^^~12/01/1992~
-~10086~^~304~^24.^5^0.^~1~^^^^^^^^^^^~12/01/1992~
-~10086~^~305~^220.^5^4.^~1~^^^^^^^^^^^~12/01/1992~
-~10086~^~306~^343.^5^10.^~1~^^^^^^^^^^^~12/01/1992~
-~10086~^~307~^74.^5^1.^~1~^^^^^^^^^^^~12/01/1992~
-~10086~^~318~^8.^0^^~1~^^^^^^^^^^^~08/01/2004~
-~10086~^~319~^2.^0^^~4~^~NR~^^^^^^^^^^~10/01/2004~
-~10086~^~320~^2.^0^^~4~^~NC~^^^^^^^^^^~02/01/2009~
-~10086~^~321~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2003~
-~10086~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2003~
-~10086~^~324~^48.^0^^~4~^~BFFN~^^^^^^^^^^~02/01/2009~
-~10086~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2003~
-~10086~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2003~
-~10086~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2003~
-~10086~^~417~^5.^0^^~1~^^^^^^^^^^^~12/01/1992~
-~10086~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~
-~10086~^~432~^5.^0^^~1~^^^^^^^^^^^~02/01/2009~
-~10086~^~435~^5.^0^^~4~^~NC~^^^^^^^^^^~02/01/2009~
-~10086~^~601~^94.^13^2.^~1~^^^^^^^^^^^~12/01/1992~
-~10087~^~208~^232.^0^^~4~^~NC~^^^^^^^^^^~12/01/1992~
-~10087~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2003~
-~10087~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2003~
-~10087~^~268~^971.^0^^~4~^^^^^^^^^^^~02/01/2009~
-~10087~^~301~^27.^0^^~1~^^^^^^^^^^^~12/01/1992~
-~10087~^~304~^26.^0^^~1~^^^^^^^^^^^~12/01/1992~
-~10087~^~305~^235.^0^^~1~^^^^^^^^^^^~12/01/1992~
-~10087~^~306~^427.^0^^~1~^^^^^^^^^^^~12/01/1992~
-~10087~^~307~^88.^0^^~1~^^^^^^^^^^^~12/01/1992~
-~10087~^~318~^9.^0^^~1~^^^^^^^^^^^~08/01/2004~
-~10087~^~319~^3.^0^^~4~^~NR~^^^^^^^^^^~10/01/2004~
-~10087~^~320~^3.^0^^~4~^~NC~^^^^^^^^^^~02/01/2009~
-~10087~^~321~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2003~
-~10087~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2003~
-~10087~^~324~^41.^0^^~4~^~BFFN~^^^^^^^^^^~02/01/2009~
-~10087~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2003~
-~10087~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2003~
-~10087~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2003~
-~10087~^~417~^8.^0^^~1~^^^^^^^^^^^~12/01/1992~
-~10087~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~
-~10087~^~432~^8.^0^^~1~^^^^^^^^^^^~02/01/2009~
-~10087~^~435~^8.^0^^~4~^~NC~^^^^^^^^^^~02/01/2009~
-~10087~^~601~^85.^0^^~1~^^^^^^^^^^^~12/01/1992~
-~10088~^~208~^277.^0^^~4~^~NC~^^^^^^^^^^~03/01/2009~
-~10088~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2003~
-~10088~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2003~
-~10088~^~268~^1159.^0^^~4~^~NC~^^^^^^^^^^~03/01/2009~
-~10088~^~301~^15.^12^0.^~1~^~A~^^^1^10.^23.^11^12.^17.^~2, 3~^~03/01/2007~
-~10088~^~304~^16.^12^0.^~1~^~A~^^^1^13.^19.^11^15.^17.^~2, 3~^~03/01/2007~
-~10088~^~305~^141.^12^5.^~1~^~A~^^^1^113.^173.^11^129.^152.^~2, 3~^~03/01/2007~
-~10088~^~306~^242.^12^8.^~1~^~A~^^^1^184.^289.^11^223.^259.^~2, 3~^~03/01/2007~
-~10088~^~307~^81.^12^3.^~1~^~A~^^^1^66.^101.^11^74.^88.^~2, 3~^~03/01/2007~
-~10088~^~318~^0.^0^^~1~^~AS~^^^^^^^^^^~03/01/2007~
-~10088~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2007~
-~10088~^~320~^0.^0^^~1~^~AS~^^^^^^^^^^~03/01/2007~
-~10088~^~321~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2003~
-~10088~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2003~
-~10088~^~324~^91.^0^^~4~^~BFFN~^^^^^^^^^^~03/01/2009~
-~10088~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2003~
-~10088~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2003~
-~10088~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2003~
-~10088~^~417~^0.^0^^~4~^~BFPN~^~10060~^^^^^^^^^~03/01/2007~
-~10088~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~
-~10088~^~432~^0.^0^^~4~^~BFPN~^^^^^^^^^^~03/01/2009~
-~10088~^~435~^0.^0^^~4~^~NC~^^^^^^^^^^~06/01/2009~
-~10088~^~601~^80.^0^^~4~^~BFYN~^~10940~^^^^^^^^^~03/01/2007~
-~10089~^~208~^397.^0^^~4~^~NC~^^^^^^^^^^~12/01/1992~
-~10089~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2003~
-~10089~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2003~
-~10089~^~268~^1661.^0^^~4~^^^^^^^^^^^~03/01/2009~
-~10089~^~301~^47.^2^^~1~^^^^^^^^^^^~12/01/1992~
-~10089~^~304~^24.^2^^~1~^^^^^^^^^^^~12/01/1992~
-~10089~^~305~^261.^0^^~1~^^^^^^^^^^^~12/01/1992~
-~10089~^~306~^320.^6^11.^~1~^^^^^^^^^^^~12/01/1992~
-~10089~^~307~^93.^5^8.^~1~^^^^^^^^^^^~12/01/1992~
-~10089~^~318~^10.^2^^~1~^^^^^^^^^^^~12/01/1992~
-~10089~^~319~^3.^0^^~4~^~NR~^^^^^^^^^^~01/01/2003~
-~10089~^~320~^3.^0^^~4~^~NC~^^^^^^^^^^~03/01/2009~
-~10089~^~321~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2003~
-~10089~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2003~
-~10089~^~324~^104.^0^^~4~^~BFFN~^^^^^^^^^^~03/01/2009~
-~10089~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2003~
-~10089~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2003~
-~10089~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2003~
-~10089~^~417~^4.^0^^~1~^^^^^^^^^^^~12/01/1992~
-~10089~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~
-~10089~^~432~^4.^0^^~1~^^^^^^^^^^^~03/01/2009~
-~10089~^~435~^4.^0^^~4~^~NC~^^^^^^^^^^~03/01/2009~
-~10089~^~601~^121.^6^3.^~1~^^^^^^^^^^^~12/01/1992~
-~10093~^~208~^201.^0^^~4~^~PIK~^^^^^^^^^^~03/01/2009~
-~10093~^~262~^0.^0^^~4~^~PIK~^^^^^^^^^^~03/01/2009~
-~10093~^~263~^0.^0^^~4~^~PIK~^^^^^^^^^^~03/01/2009~
-~10093~^~268~^839.^0^^~4~^~PIK~^^^^^^^^^^~03/01/2009~
-~10093~^~301~^18.^0^^~1~^~PAK~^^^^^^^^^^~03/01/2009~
-~10093~^~304~^25.^0^^~1~^~PAK~^^^^^^^^^^~03/01/2009~
-~10093~^~305~^231.^0^^~1~^~PAK~^^^^^^^^^^~03/01/2009~
-~10093~^~306~^357.^0^^~1~^~PAK~^^^^^^^^^^~03/01/2009~
-~10093~^~307~^55.^0^^~1~^~PAK~^^^^^^^^^^~03/01/2009~
-~10093~^~318~^4.^0^^~1~^~PAK~^^^^^^^^^^~03/01/2009~
-~10093~^~319~^1.^0^^~4~^~PIK~^^^^^^^^^^~03/01/2009~
-~10093~^~320~^1.^0^^~4~^~PIK~^^^^^^^^^^~03/01/2009~
-~10093~^~321~^0.^0^^~4~^~PIK~^^^^^^^^^^~03/01/2009~
-~10093~^~322~^0.^0^^~4~^~PIK~^^^^^^^^^^~03/01/2009~
-~10093~^~324~^31.^0^^~4~^~PIK~^^^^^^^^^^~03/01/2009~
-~10093~^~334~^0.^0^^~4~^~PIK~^^^^^^^^^^~03/01/2009~
-~10093~^~337~^0.^0^^~4~^~PIK~^^^^^^^^^^~03/01/2009~
-~10093~^~338~^0.^0^^~4~^~PIK~^^^^^^^^^^~03/01/2009~
-~10093~^~417~^3.^0^^~4~^~PIK~^^^^^^^^^^~03/01/2009~
-~10093~^~431~^0.^0^^~4~^~PIK~^^^^^^^^^^~03/01/2009~
-~10093~^~432~^3.^0^^~4~^~PIK~^^^^^^^^^^~03/01/2009~
-~10093~^~435~^3.^0^^~4~^~NC~^^^^^^^^^^~06/01/2009~
-~10093~^~601~^84.^0^^~1~^~PAK~^^^^^^^^^^~03/01/2009~
-~10094~^~208~^123.^0^^~4~^~NC~^^^^^^^^^^~05/01/2014~
-~10094~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2014~
-~10094~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2014~
-~10094~^~268~^514.^0^^~4~^~NC~^^^^^^^^^^~05/01/2014~
-~10094~^~301~^6.^6^0.^~1~^~A~^^^1^5.^10.^5^4.^8.^~2, 3~^~05/01/2014~
-~10094~^~304~^26.^6^0.^~1~^~A~^^^1^24.^27.^5^24.^26.^~2, 3~^~05/01/2014~
-~10094~^~305~^221.^6^7.^~1~^~A~^^^1^194.^243.^5^201.^239.^~2, 3~^~05/01/2014~
-~10094~^~306~^386.^6^12.^~1~^~A~^^^1^341.^434.^5^352.^419.^~2, 3~^~05/01/2014~
-~10094~^~307~^87.^6^18.^~1~^~A~^^^1^43.^143.^5^38.^135.^~2, 3~^~05/01/2014~
-~10094~^~318~^4.^0^^~1~^~AS~^^^^^^^^^^~05/01/2014~
-~10094~^~319~^1.^1^^~1~^~A~^^^^^^^^^^~05/01/2014~
-~10094~^~320~^1.^0^^~1~^~AS~^^^^^^^^^^~05/01/2014~
-~10094~^~321~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2014~
-~10094~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2014~
-~10094~^~324~^23.^0^^~4~^~BFSN~^^^^^^^^^^~01/01/2015~
-~10094~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2014~
-~10094~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2014~
-~10094~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2014~
-~10094~^~417~^0.^0^^~4~^~BFPN~^~10040~^^^^^^^^^~05/01/2014~
-~10094~^~431~^0.^0^^~4~^~BFPN~^~10040~^^^^^^^^^~01/01/2015~
-~10094~^~432~^0.^0^^~4~^~BFPN~^^^^^^^^^^~05/01/2014~
-~10094~^~435~^0.^0^^~4~^~NC~^~10040~^^^^^^^^^~01/01/2015~
-~10094~^~601~^56.^3^0.^~1~^~A~^^^1^54.^57.^2^51.^59.^~2, 3~^~05/01/2014~
-~10096~^~208~^127.^0^^~4~^~NC~^^^^^^^^^^~12/01/1992~
-~10096~^~268~^531.^0^^~4~^^^^^^^^^^^
-~10096~^~301~^10.^3^1.^~1~^^^^^^^^^^^~12/01/1992~
-~10096~^~304~^14.^3^1.^~1~^^^^^^^^^^^~12/01/1992~
-~10096~^~305~^282.^3^15.^~1~^^^^^^^^^^^~12/01/1992~
-~10096~^~306~^258.^6^28.^~1~^^^^^^^^^^^~12/01/1992~
-~10096~^~307~^120.^5^12.^~1~^^^^^^^^^^^~12/01/1992~
-~10096~^~318~^0.^3^^~1~^^^^^^^^^^^~12/01/1992~
-~10096~^~319~^0.^3^0.^~1~^^^^^^^^^^^~06/01/2002~
-~10096~^~320~^0.^3^0.^~1~^^^^^^^^^^^~06/01/2002~
-~10096~^~417~^6.^0^^~1~^^^^^^^^^^^~12/01/1992~
-~10096~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~
-~10096~^~432~^6.^0^^~1~^^^^^^^^^^^~12/01/1992~
-~10096~^~435~^6.^0^^~4~^~NC~^^^^^^^^^^~01/01/2001~
-~10096~^~601~^2195.^27^249.^~1~^^^^^^^^^^^~12/01/1992~
-~10097~^~208~^138.^0^^~4~^~NC~^^^^^^^^^^~12/01/1992~
-~10097~^~268~^577.^0^^~4~^^^^^^^^^^^
-~10097~^~301~^9.^0^^~1~^^^^^^^^^^^~12/01/1992~
-~10097~^~304~^12.^0^^~1~^^^^^^^^^^^~12/01/1992~
-~10097~^~305~^220.^0^^~1~^^^^^^^^^^^~12/01/1992~
-~10097~^~306~^195.^0^^~1~^^^^^^^^^^^~12/01/1992~
-~10097~^~307~^91.^0^^~1~^^^^^^^^^^^~12/01/1992~
-~10097~^~318~^0.^0^^~1~^^^^^^^^^^^~12/01/1992~
-~10097~^~319~^0.^0^^~1~^^^^^^^^^^^~06/01/2002~
-~10097~^~320~^0.^0^^~1~^^^^^^^^^^^~06/01/2002~
-~10097~^~417~^4.^0^^~4~^^^^^^^^^^^~12/01/1992~
-~10097~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~
-~10097~^~432~^4.^0^^~4~^^^^^^^^^^^~12/01/1992~
-~10097~^~435~^4.^0^^~4~^~NC~^^^^^^^^^^~01/01/2001~
-~10097~^~601~^2552.^0^^~1~^^^^^^^^^^^~12/01/1992~
-~10097~^~636~^0.^0^^~4~^^^^^^^^^^^~12/01/1992~
-~10098~^~208~^182.^0^^~4~^~NC~^^^^^^^^^^~03/01/2004~
-~10098~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~
-~10098~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~
-~10098~^~268~^764.^0^^~4~^~NC~^^^^^^^^^^~05/01/2007~
-~10098~^~301~^16.^1^^~1~^~A~^^^^^^^^^^~02/01/2003~
-~10098~^~304~^6.^1^^~1~^~A~^^^^^^^^^^~02/01/2003~
-~10098~^~305~^48.^1^^~1~^~A~^^^^^^^^^^~02/01/2003~
-~10098~^~306~^18.^1^^~1~^~A~^^^^^^^^^^~02/01/2003~
-~10098~^~307~^24.^1^^~1~^~A~^^^^^^^^^^~02/01/2003~
-~10098~^~318~^0.^0^^~1~^~AS~^^^^^^^^^^~02/01/2003~
-~10098~^~319~^0.^1^^~1~^~A~^^^^^^^^^~1~^~02/01/2003~
-~10098~^~320~^0.^0^^~1~^~AS~^^^^^^^^^^~02/01/2003~
-~10098~^~321~^0.^1^^~1~^~A~^^^^^^^^^~1~^~02/01/2003~
-~10098~^~322~^0.^1^^~1~^~A~^^^^^^^^^~1~^~02/01/2003~
-~10098~^~334~^0.^1^^~1~^~A~^^^^^^^^^~1~^~02/01/2003~
-~10098~^~337~^0.^1^^~1~^~A~^^^^^^^^^~1~^~02/01/2003~
-~10098~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~
-~10098~^~417~^3.^1^^~1~^~A~^^^^^^^^^^~04/01/2003~
-~10098~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~
-~10098~^~432~^3.^1^^~1~^~A~^^^^^^^^^^~07/01/2003~
-~10098~^~435~^3.^0^^~4~^~NC~^^^^^^^^^^~05/01/2007~
-~10098~^~601~^154.^1^^~1~^~A~^^^^^^^^^^~02/01/2003~
-~10099~^~208~^233.^1^^~1~^~A~^^^^^^^^^^~04/01/2005~
-~10099~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~
-~10099~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~
-~10099~^~268~^975.^0^^~1~^~A~^^^^^^^^^^~04/01/2005~
-~10099~^~301~^25.^1^^~1~^~A~^^^^^^^^^^~02/01/2003~
-~10099~^~304~^9.^1^^~1~^~A~^^^^^^^^^^~02/01/2003~
-~10099~^~305~^66.^1^^~1~^~A~^^^^^^^^^^~02/01/2003~
-~10099~^~306~^14.^1^^~1~^~A~^^^^^^^^^^~02/01/2003~
-~10099~^~307~^18.^1^^~1~^~A~^^^^^^^^^^~02/01/2003~
-~10099~^~318~^0.^0^^~1~^~AS~^^^^^^^^^^~02/01/2003~
-~10099~^~319~^0.^1^^~1~^~A~^^^^^^^^^~1~^~02/01/2003~
-~10099~^~320~^0.^0^^~1~^~AS~^^^^^^^^^^~02/01/2003~
-~10099~^~321~^0.^0^^~7~^~Z~^^^^^^^^^^~08/01/2004~
-~10099~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~08/01/2004~
-~10099~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2009~
-~10099~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~08/01/2004~
-~10099~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~08/01/2004~
-~10099~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~
-~10099~^~417~^1.^1^^~1~^~A~^^^^^^^^^^~04/01/2003~
-~10099~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~
-~10099~^~432~^1.^1^^~1~^~A~^^^^^^^^^^~04/01/2005~
-~10099~^~435~^1.^0^^~4~^~NC~^^^^^^^^^^~03/01/2009~
-~10099~^~601~^277.^1^^~1~^~A~^^^^^^^^^^~02/01/2003~
-~10100~^~208~^234.^0^^~4~^~NC~^^^^^^^^^^~12/01/1992~
-~10100~^~268~^979.^0^^~4~^^^^^^^^^^^
-~10100~^~301~^21.^1^^~1~^^^^^^^^^^^~12/01/1992~
-~10100~^~304~^7.^1^^~1~^^^^^^^^^^^~12/01/1992~
-~10100~^~305~^41.^1^^~1~^^^^^^^^^^^~12/01/1992~
-~10100~^~306~^55.^1^^~1~^^^^^^^^^^^~12/01/1992~
-~10100~^~307~^191.^1^^~1~^^^^^^^^^^^~12/01/1992~
-~10100~^~318~^0.^1^^~1~^^^^^^^^^^^~12/01/1992~
-~10100~^~319~^0.^1^^~1~^^^^^^^^^^^~06/01/2002~
-~10100~^~320~^0.^1^^~1~^^^^^^^^^^^~06/01/2002~
-~10100~^~417~^0.^0^^~4~^^^^^^^^^^^~12/01/1992~
-~10100~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~
-~10100~^~432~^0.^0^^~4~^^^^^^^^^^^~12/01/1992~
-~10100~^~435~^0.^0^^~4~^~NC~^^^^^^^^^^~01/01/2001~
-~10100~^~601~^82.^1^^~1~^^^^^^^^^^^~12/01/1992~
-~10100~^~636~^0.^0^^~4~^^^^^^^^^^^~12/01/1992~
-~10101~^~208~^166.^0^^~4~^~NC~^^^^^^^^^^~12/01/1992~
-~10101~^~268~^695.^0^^~4~^^^^^^^^^^^
-~10101~^~301~^18.^1^^~1~^^^^^^^^^^^~12/01/1992~
-~10101~^~304~^7.^1^^~1~^^^^^^^^^^^~12/01/1992~
-~10101~^~305~^24.^1^^~1~^^^^^^^^^^^~12/01/1992~
-~10101~^~306~^40.^1^^~1~^^^^^^^^^^^~12/01/1992~
-~10101~^~307~^167.^1^^~1~^^^^^^^^^^^~12/01/1992~
-~10101~^~318~^0.^1^^~1~^^^^^^^^^^^~12/01/1992~
-~10101~^~319~^0.^1^^~1~^^^^^^^^^^^~06/01/2002~
-~10101~^~320~^0.^1^^~1~^^^^^^^^^^^~06/01/2002~
-~10101~^~417~^0.^0^^~4~^^^^^^^^^^^~02/01/1995~
-~10101~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~
-~10101~^~432~^0.^0^^~4~^^^^^^^^^^^~02/01/1995~
-~10101~^~435~^0.^0^^~4~^~NC~^^^^^^^^^^~01/01/2001~
-~10101~^~601~^90.^1^^~1~^^^^^^^^^^^~12/01/1992~
-~10101~^~636~^0.^0^^~4~^^^^^^^^^^^~12/01/1992~
-~10102~^~208~^212.^0^^~4~^~NC~^^^^^^^^^^~03/01/2004~
-~10102~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~
-~10102~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~
-~10102~^~268~^889.^0^^~4~^~NC~^^^^^^^^^^~03/01/2004~
-~10102~^~301~^70.^1^^~1~^~A~^^^^^^^^^^~02/01/2003~
-~10102~^~304~^6.^1^^~1~^~A~^^^^^^^^^^~02/01/2003~
-~10102~^~305~^75.^1^^~1~^~A~^^^^^^^^^^~02/01/2003~
-~10102~^~306~^63.^1^^~1~^~A~^^^^^^^^^^~02/01/2003~
-~10102~^~307~^132.^1^^~1~^~A~^^^^^^^^^^~02/01/2003~
-~10102~^~318~^0.^0^^~1~^~AS~^^^^^^^^^^~02/01/2003~
-~10102~^~319~^0.^1^^~1~^~A~^^^^^^^^^~1~^~02/01/2003~
-~10102~^~320~^0.^0^^~1~^~AS~^^^^^^^^^^~02/01/2003~
-~10102~^~321~^0.^1^^~1~^~A~^^^^^^^^^~1~^~02/01/2003~
-~10102~^~322~^0.^1^^~1~^~A~^^^^^^^^^~1~^~02/01/2003~
-~10102~^~334~^0.^1^^~1~^~A~^^^^^^^^^~1~^~02/01/2003~
-~10102~^~337~^0.^1^^~1~^~A~^^^^^^^^^~1~^~02/01/2003~
-~10102~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~
-~10102~^~417~^10.^1^^~1~^~A~^^^^^^^^^^~04/01/2003~
-~10102~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~
-~10102~^~432~^10.^1^^~1~^~A~^^^^^^^^^^~06/01/2003~
-~10102~^~435~^10.^0^^~4~^~NC~^^^^^^^^^^~07/01/2004~
-~10102~^~601~^88.^1^^~1~^~A~^^^^^^^^^^~02/01/2003~
-~10103~^~208~^118.^0^^~4~^~NC~^^^^^^^^^^~12/01/1992~
-~10103~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2005~
-~10103~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2005~
-~10103~^~268~^494.^0^^~4~^^^^^^^^^^^~06/01/2005~
-~10103~^~301~^5.^8^0.^~1~^^^^^^^^^^^~12/01/1992~
-~10103~^~304~^19.^10^1.^~1~^^^^^^^^^^^~12/01/1992~
-~10103~^~305~^169.^7^12.^~1~^^^^^^^^^^^~12/01/1992~
-~10103~^~306~^294.^9^8.^~1~^^^^^^^^^^^~12/01/1992~
-~10103~^~307~^56.^3^2.^~1~^^^^^^^^^^^~12/01/1992~
-~10103~^~318~^25.^3^13.^~1~^^^^^^^^^^^~06/01/2005~
-~10103~^~319~^8.^0^^~4~^~NR~^^^^^^^^^^~06/01/2005~
-~10103~^~320~^8.^3^3.^~1~^^^^^^^^^^^~06/01/2005~
-~10103~^~321~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2005~
-~10103~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2005~
-~10103~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2005~
-~10103~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2005~
-~10103~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2005~
-~10103~^~417~^4.^4^1.^~1~^^^^^^^^^^^~12/01/1992~
-~10103~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~
-~10103~^~432~^4.^4^1.^~1~^^^^^^^^^^^~06/01/2005~
-~10103~^~435~^4.^0^^~4~^~NC~^^^^^^^^^^~10/01/2005~
-~10103~^~601~^131.^32^12.^~1~^^^^^^^^^^^~12/01/1992~
-~10103~^~636~^0.^0^^~4~^^^^^^^^^^^~12/01/1992~
-~10104~^~208~^148.^0^^~4~^~NC~^^^^^^^^^^~12/01/1992~
-~10104~^~268~^619.^0^^~4~^^^^^^^^^^^
-~10104~^~301~^7.^0^^~1~^^^^^^^^^^^~12/01/1992~
-~10104~^~304~^24.^0^^~1~^^^^^^^^^^^~12/01/1992~
-~10104~^~305~^178.^0^^~1~^^^^^^^^^^^~12/01/1992~
-~10104~^~306~^206.^0^^~1~^^^^^^^^^^^~12/01/1992~
-~10104~^~307~^35.^0^^~1~^^^^^^^^^^^~12/01/1992~
-~10104~^~318~^22.^0^^~1~^^^^^^^^^^^~12/01/1992~
-~10104~^~319~^7.^0^^~1~^^^^^^^^^^^~06/01/2002~
-~10104~^~320~^7.^0^^~1~^^^^^^^^^^^~06/01/2002~
-~10104~^~417~^4.^0^^~1~^^^^^^^^^^^~12/01/1992~
-~10104~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~
-~10104~^~432~^4.^0^^~1~^^^^^^^^^^^~12/01/1992~
-~10104~^~435~^4.^0^^~4~^~NC~^^^^^^^^^^~01/01/2001~
-~10104~^~601~^221.^0^^~1~^^^^^^^^^^^~12/01/1992~
-~10104~^~636~^0.^0^^~4~^^^^^^^^^^^~12/01/1992~
-~10105~^~208~^655.^0^^~4~^~NC~^^^^^^^^^^~12/01/1992~
-~10105~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2005~
-~10105~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2005~
-~10105~^~268~^2741.^0^^~4~^^^^^^^^^^^~06/01/2005~
-~10105~^~301~^4.^0^^~1~^^^^^^^^^^^~12/01/1992~
-~10105~^~304~^3.^0^^~1~^^^^^^^^^^^~12/01/1992~
-~10105~^~305~^86.^0^^~1~^^^^^^^^^^^~12/01/1992~
-~10105~^~306~^148.^0^^~1~^^^^^^^^^^^~12/01/1992~
-~10105~^~307~^25.^0^^~1~^^^^^^^^^^^~12/01/1992~
-~10105~^~318~^9.^0^^~1~^^^^^^^^^^^~12/01/1992~
-~10105~^~319~^3.^0^^~4~^~NR~^^^^^^^^^^~06/01/2005~
-~10105~^~320~^3.^0^^~1~^^^^^^^^^^^~06/01/2005~
-~10105~^~321~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2005~
-~10105~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2005~
-~10105~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2005~
-~10105~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2005~
-~10105~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2005~
-~10105~^~417~^1.^0^^~1~^^^^^^^^^^^~12/01/1992~
-~10105~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~
-~10105~^~432~^1.^0^^~1~^^^^^^^^^^^~06/01/2005~
-~10105~^~435~^1.^0^^~4~^~NC~^^^^^^^^^^~10/01/2005~
-~10105~^~601~^90.^0^^~1~^^^^^^^^^^^~12/01/1992~
-~10105~^~636~^0.^0^^~4~^^^^^^^^^^^~12/01/1992~
-~10106~^~208~^100.^0^^~4~^~NC~^^^^^^^^^^~12/01/1992~
-~10106~^~268~^418.^0^^~4~^^^^^^^^^^^
-~10106~^~301~^9.^12^0.^~1~^^^^^^^^^^^~12/01/1992~
-~10106~^~304~^17.^11^0.^~1~^^^^^^^^^^^~12/01/1992~
-~10106~^~305~^204.^8^7.^~1~^^^^^^^^^^^~12/01/1992~
-~10106~^~306~^229.^12^8.^~1~^^^^^^^^^^^~12/01/1992~
-~10106~^~307~^121.^4^12.^~1~^^^^^^^^^^^~12/01/1992~
-~10106~^~318~^198.^4^56.^~1~^^^^^^^^^^^~12/01/1992~
-~10106~^~319~^59.^4^16.^~1~^^^^^^^^^^^~06/01/2002~
-~10106~^~320~^59.^4^16.^~1~^^^^^^^^^^^~06/01/2002~
-~10106~^~417~^42.^1^^~1~^^^^^^^^^^^~12/01/1992~
-~10106~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~
-~10106~^~432~^42.^1^^~1~^^^^^^^^^^^~12/01/1992~
-~10106~^~435~^42.^0^^~4~^~NC~^^^^^^^^^^~01/01/2001~
-~10106~^~601~^319.^30^18.^~1~^^^^^^^^^^^~12/01/1992~
-~10106~^~636~^0.^0^^~4~^^^^^^^^^^^~12/01/1992~
-~10107~^~208~^151.^0^^~4~^~NC~^^^^^^^^^^~12/01/1992~
-~10107~^~268~^632.^0^^~4~^^^^^^^^^^^
-~10107~^~301~^13.^0^^~1~^^^^^^^^^^^~12/01/1992~
-~10107~^~304~^18.^0^^~1~^^^^^^^^^^^~12/01/1992~
-~10107~^~305~^240.^0^^~1~^^^^^^^^^^^~12/01/1992~
-~10107~^~306~^143.^0^^~1~^^^^^^^^^^^~12/01/1992~
-~10107~^~307~^80.^0^^~1~^^^^^^^^^^^~12/01/1992~
-~10107~^~318~^260.^0^^~1~^^^^^^^^^^^~12/01/1992~
-~10107~^~319~^78.^0^^~1~^^^^^^^^^^^~06/01/2002~
-~10107~^~320~^78.^0^^~1~^^^^^^^^^^^~06/01/2002~
-~10107~^~417~^41.^0^^~1~^^^^^^^^^^^~12/01/1992~
-~10107~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~
-~10107~^~432~^41.^0^^~1~^^^^^^^^^^^~12/01/1992~
-~10107~^~435~^41.^0^^~4~^~NC~^^^^^^^^^^~01/01/2001~
-~10107~^~601~^480.^0^^~1~^^^^^^^^^^^~12/01/1992~
-~10107~^~636~^0.^0^^~4~^^^^^^^^^^^~12/01/1992~
-~10109~^~208~^857.^0^^~4~^~NC~^^^^^^^^^^~12/01/1992~
-~10109~^~268~^3586.^0^^~4~^^^^^^^^^^^
-~10109~^~301~^1.^0^^~1~^^^^^^^^^^^~12/01/1992~
-~10109~^~304~^1.^0^^~1~^^^^^^^^^^^~12/01/1992~
-~10109~^~305~^19.^0^^~4~^^^^^^^^^^^~12/01/1992~
-~10109~^~306~^31.^0^^~4~^^^^^^^^^^^~12/01/1992~
-~10109~^~307~^5.^0^^~1~^^^^^^^^^^^~12/01/1992~
-~10109~^~318~^0.^0^^~4~^^^^^^^^^^^~12/01/1992~
-~10109~^~319~^0.^0^^~4~^^^^^^^^^^^~06/01/2002~
-~10109~^~320~^0.^0^^~4~^^^^^^^^^^^~06/01/2002~
-~10109~^~417~^0.^0^^~4~^^^^^^^^^^^~12/01/1992~
-~10109~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~
-~10109~^~432~^0.^0^^~4~^^^^^^^^^^^~12/01/1992~
-~10109~^~435~^0.^0^^~4~^~NC~^^^^^^^^^^~01/01/2001~
-~10109~^~601~^110.^0^^~1~^^^^^^^^^^^~12/01/1992~
-~10109~^~636~^0.^0^^~4~^^^^^^^^^^^~12/01/1992~
-~10110~^~208~^134.^0^^~4~^~NC~^^^^^^^^^^~12/01/1992~
-~10110~^~268~^561.^0^^~4~^^^^^^^^^^^
-~10110~^~301~^9.^10^0.^~1~^^^^^^^^^^^~12/01/1992~
-~10110~^~304~^18.^11^0.^~1~^^^^^^^^^^^~12/01/1992~
-~10110~^~305~^288.^8^21.^~1~^^^^^^^^^^^~12/01/1992~
-~10110~^~306~^273.^11^10.^~1~^^^^^^^^^^^~12/01/1992~
-~10110~^~307~^87.^3^15.^~1~^^^^^^^^^^^~12/01/1992~
-~10110~^~318~^21650.^13^3334.^~1~^^^^^^^^^^^~12/01/1992~
-~10110~^~319~^6502.^13^1001.^~1~^^^^^^^^^^^~06/01/2002~
-~10110~^~320~^6502.^13^1001.^~1~^^^^^^^^^^^~06/01/2002~
-~10110~^~417~^212.^7^36.^~1~^^^^^^^^^^^~12/01/1992~
-~10110~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~
-~10110~^~432~^212.^7^36.^~1~^^^^^^^^^^^~12/01/1992~
-~10110~^~435~^212.^0^^~4~^~NC~^^^^^^^^^^~01/01/2001~
-~10110~^~601~^301.^109^5.^~1~^^^^^^^^^^^~12/01/1992~
-~10110~^~636~^0.^0^^~4~^^^^^^^^^^^~12/01/1992~
-~10111~^~208~^165.^0^^~4~^~NC~^^^^^^^^^^~12/01/1992~
-~10111~^~268~^690.^0^^~4~^^^^^^^^^^^
-~10111~^~301~^10.^0^^~1~^^^^^^^^^^^~12/01/1992~
-~10111~^~304~^14.^0^^~1~^^^^^^^^^^^~12/01/1992~
-~10111~^~305~^241.^0^^~1~^^^^^^^^^^^~12/01/1992~
-~10111~^~306~^150.^0^^~1~^^^^^^^^^^^~12/01/1992~
-~10111~^~307~^49.^0^^~1~^^^^^^^^^^^~12/01/1992~
-~10111~^~318~^17997.^6^2883.^~1~^^^^^^^^^^^~12/01/1992~
-~10111~^~319~^5405.^6^865.^~1~^^^^^^^^^^^~06/01/2002~
-~10111~^~320~^5405.^6^865.^~1~^^^^^^^^^^^~06/01/2002~
-~10111~^~417~^163.^0^^~1~^^^^^^^^^^^~12/01/1992~
-~10111~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~
-~10111~^~432~^163.^0^^~1~^^^^^^^^^^^~12/01/1992~
-~10111~^~435~^163.^0^^~4~^~NC~^^^^^^^^^^~01/01/2001~
-~10111~^~601~^355.^0^^~1~^^^^^^^^^^^~12/01/1992~
-~10111~^~636~^0.^0^^~4~^^^^^^^^^^^~12/01/1992~
-~10112~^~208~^85.^0^^~4~^~NC~^^^^^^^^^^~12/01/1992~
-~10112~^~268~^356.^0^^~4~^^^^^^^^^^^
-~10112~^~301~^7.^14^0.^~1~^^^^^^^^^^^~12/01/1992~
-~10112~^~304~^14.^13^0.^~1~^^^^^^^^^^^~12/01/1992~
-~10112~^~305~^196.^14^8.^~1~^^^^^^^^^^^~12/01/1992~
-~10112~^~306~^303.^16^16.^~1~^^^^^^^^^^^~12/01/1992~
-~10112~^~307~^153.^15^9.^~1~^^^^^^^^^^^~12/01/1992~
-~10112~^~318~^0.^3^^~1~^^^^^^^^^^^~12/01/1992~
-~10112~^~319~^0.^3^0.^~1~^^^^^^^^^^^~06/01/2002~
-~10112~^~320~^0.^3^0.^~1~^^^^^^^^^^^~06/01/2002~
-~10112~^~417~^3.^0^^~4~^^^^^^^^^^^~12/01/1992~
-~10112~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~
-~10112~^~432~^3.^0^^~4~^^^^^^^^^^^~12/01/1992~
-~10112~^~435~^3.^0^^~4~^~NC~^^^^^^^^^^~01/01/2001~
-~10112~^~601~^320.^28^20.^~1~^^^^^^^^^^^~12/01/1992~
-~10112~^~636~^0.^0^^~4~^^^^^^^^^^^~12/01/1992~
-~10113~^~208~^99.^0^^~4~^~NC~^^^^^^^^^^~12/01/1992~
-~10113~^~268~^414.^0^^~4~^^^^^^^^^^^
-~10113~^~301~^8.^0^^~1~^^^^^^^^^^^~12/01/1992~
-~10113~^~304~^12.^0^^~1~^^^^^^^^^^^~12/01/1992~
-~10113~^~305~^186.^0^^~1~^^^^^^^^^^^~12/01/1992~
-~10113~^~306~^151.^0^^~1~^^^^^^^^^^^~12/01/1992~
-~10113~^~307~^81.^0^^~1~^^^^^^^^^^^~12/01/1992~
-~10113~^~318~^0.^0^^~1~^^^^^^^^^^^~12/01/1992~
-~10113~^~319~^0.^0^^~1~^^^^^^^^^^^~06/01/2002~
-~10113~^~320~^0.^0^^~1~^^^^^^^^^^^~06/01/2002~
-~10113~^~417~^2.^0^^~4~^^^^^^^^^^^~12/01/1992~
-~10113~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~
-~10113~^~432~^2.^0^^~4~^^^^^^^^^^^~12/01/1992~
-~10113~^~435~^2.^0^^~4~^~NC~^^^^^^^^^^~01/01/2001~
-~10113~^~601~^387.^0^^~1~^^^^^^^^^^^~12/01/1992~
-~10113~^~636~^0.^0^^~4~^^^^^^^^^^^~12/01/1992~
-~10114~^~208~^304.^0^^~4~^~NC~^^^^^^^^^^~12/01/1992~
-~10114~^~268~^1272.^0^^~4~^^^^^^^^^^^
-~10114~^~301~^315.^23^22.^~1~^^^^^^^^^^^~12/01/1992~
-~10114~^~304~^16.^0^^~4~^^^^^^^^^^^~12/01/1992~
-~10114~^~305~^200.^1^^~1~^^^^^^^^^^^~12/01/1992~
-~10114~^~306~^298.^0^^~4~^^^^^^^^^^^~12/01/1992~
-~10114~^~307~^50.^0^^~4~^^^^^^^^^^^~12/01/1992~
-~10114~^~318~^10.^0^^~4~^^^^^^^^^^^~12/01/1992~
-~10114~^~319~^3.^0^^~4~^^^^^^^^^^^~06/01/2002~
-~10114~^~320~^3.^0^^~4~^^^^^^^^^^^~06/01/2002~
-~10114~^~417~^3.^0^^~4~^^^^^^^^^^^~12/01/1992~
-~10114~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~
-~10114~^~432~^3.^0^^~4~^^^^^^^^^^^~12/01/1992~
-~10114~^~435~^3.^0^^~4~^~NC~^^^^^^^^^^~01/01/2001~
-~10114~^~601~^77.^6^11.^~1~^^^^^^^^^^^~12/01/1992~
-~10114~^~636~^0.^0^^~4~^^^^^^^^^^^~12/01/1992~
-~10115~^~208~^199.^0^^~4~^~NC~^^^^^^^^^^~12/01/1992~
-~10115~^~268~^833.^0^^~4~^^^^^^^^^^^
-~10115~^~301~^11.^1^^~1~^^^^^^^^^^^~12/01/1992~
-~10115~^~304~^17.^1^^~1~^^^^^^^^^^^~12/01/1992~
-~10115~^~305~^234.^1^^~1~^^^^^^^^^^^~12/01/1992~
-~10115~^~306~^197.^2^^~1~^^^^^^^^^^^~12/01/1992~
-~10115~^~307~^44.^2^^~1~^^^^^^^^^^^~12/01/1992~
-~10115~^~318~^0.^3^^~1~^^^^^^^^^^^~12/01/1992~
-~10115~^~319~^0.^3^0.^~1~^^^^^^^^^^^~06/01/2002~
-~10115~^~320~^0.^3^0.^~1~^^^^^^^^^^^~06/01/2002~
-~10115~^~417~^3.^0^^~4~^^^^^^^^^^^~12/01/1992~
-~10115~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~
-~10115~^~432~^3.^0^^~4~^^^^^^^^^^^~12/01/1992~
-~10115~^~435~^3.^0^^~4~^~NC~^^^^^^^^^^~01/01/2001~
-~10115~^~601~^193.^6^10.^~1~^^^^^^^^^^^~12/01/1992~
-~10115~^~636~^0.^0^^~4~^^^^^^^^^^^~12/01/1992~
-~10116~^~208~^219.^0^^~4~^~NC~^^^^^^^^^^~12/01/1992~
-~10116~^~268~^916.^0^^~4~^^^^^^^^^^^
-~10116~^~301~^16.^0^^~1~^^^^^^^^^^^~12/01/1992~
-~10116~^~304~^23.^0^^~1~^^^^^^^^^^^~12/01/1992~
-~10116~^~305~^291.^0^^~1~^^^^^^^^^^^~12/01/1992~
-~10116~^~306~^168.^0^^~1~^^^^^^^^^^^~12/01/1992~
-~10116~^~307~^42.^0^^~1~^^^^^^^^^^^~12/01/1992~
-~10116~^~318~^0.^0^^~1~^^^^^^^^^^^~12/01/1992~
-~10116~^~319~^0.^0^^~1~^^^^^^^^^^^~06/01/2002~
-~10116~^~320~^0.^0^^~1~^^^^^^^^^^^~06/01/2002~
-~10116~^~417~^5.^0^^~4~^^^^^^^^^^^~12/01/1992~
-~10116~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~
-~10116~^~432~^5.^0^^~4~^^^^^^^^^^^~12/01/1992~
-~10116~^~435~^5.^0^^~4~^~NC~^^^^^^^^^^~01/01/2001~
-~10116~^~601~^315.^0^^~1~^^^^^^^^^^^~12/01/1992~
-~10116~^~636~^0.^0^^~4~^^^^^^^^^^^~12/01/1992~
-~10117~^~208~^100.^0^^~4~^~NC~^^^^^^^^^^~12/01/1992~
-~10117~^~268~^418.^0^^~4~^^^^^^^^^^^
-~10117~^~301~^10.^1^^~1~^^^^^^^^^^^~12/01/1992~
-~10117~^~304~^13.^0^^~4~^^^^^^^^^^^~12/01/1992~
-~10117~^~305~^260.^10^3.^~1~^^^^^^^^^^^~12/01/1992~
-~10117~^~306~^396.^2^^~1~^^^^^^^^^^^~12/01/1992~
-~10117~^~307~^98.^0^^~4~^^^^^^^^^^^~12/01/1992~
-~10117~^~318~^0.^3^^~1~^^^^^^^^^^^~12/01/1992~
-~10117~^~319~^0.^3^0.^~1~^^^^^^^^^^^~06/01/2002~
-~10117~^~320~^0.^3^0.^~1~^^^^^^^^^^^~06/01/2002~
-~10117~^~417~^4.^0^^~4~^^^^^^^^^^^~12/01/1992~
-~10117~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~
-~10117~^~432~^4.^0^^~4~^^^^^^^^^^^~12/01/1992~
-~10117~^~435~^4.^0^^~4~^~NC~^^^^^^^^^^~01/01/2001~
-~10117~^~601~^363.^8^32.^~1~^^^^^^^^^^^~12/01/1992~
-~10117~^~636~^0.^0^^~4~^^^^^^^^^^^~12/01/1992~
-~10118~^~208~^149.^0^^~4~^~NC~^^^^^^^^^^~12/01/1992~
-~10118~^~268~^623.^0^^~4~^^^^^^^^^^^
-~10118~^~301~^13.^0^^~1~^^^^^^^^^^^~12/01/1992~
-~10118~^~304~^15.^0^^~4~^^^^^^^^^^^~12/01/1992~
-~10118~^~305~^283.^0^^~1~^^^^^^^^^^^~12/01/1992~
-~10118~^~306~^227.^0^^~1~^^^^^^^^^^^~12/01/1992~
-~10118~^~307~^107.^0^^~4~^^^^^^^^^^^~12/01/1992~
-~10118~^~318~^0.^0^^~1~^^^^^^^^^^^~12/01/1992~
-~10118~^~319~^0.^0^^~1~^^^^^^^^^^^~06/01/2002~
-~10118~^~320~^0.^0^^~1~^^^^^^^^^^^~06/01/2002~
-~10118~^~417~^4.^0^^~4~^^^^^^^^^^^~12/01/1992~
-~10118~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~
-~10118~^~432~^4.^0^^~4~^^^^^^^^^^^~12/01/1992~
-~10118~^~435~^4.^0^^~4~^~NC~^^^^^^^^^^~01/01/2001~
-~10118~^~601~^504.^0^^~1~^^^^^^^^^^^~12/01/1992~
-~10118~^~636~^0.^0^^~4~^^^^^^^^^^^~12/01/1992~
-~10119~^~208~^159.^1^^~1~^~A~^^^^^^^^^^~04/01/2005~
-~10119~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~
-~10119~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~
-~10119~^~268~^665.^0^^~1~^~A~^^^^^^^^^^~04/01/2005~
-~10119~^~301~^11.^1^^~1~^~A~^^^^^^^^^^~02/01/2003~
-~10119~^~304~^11.^1^^~1~^~A~^^^^^^^^^^~02/01/2003~
-~10119~^~305~^130.^1^^~1~^~A~^^^^^^^^^^~02/01/2003~
-~10119~^~306~^140.^1^^~1~^~A~^^^^^^^^^^~02/01/2003~
-~10119~^~307~^75.^1^^~1~^~A~^^^^^^^^^^~02/01/2003~
-~10119~^~318~^0.^0^^~1~^~AS~^^^^^^^^^^~02/01/2003~
-~10119~^~319~^0.^1^^~1~^~A~^^^^^^^^^~1~^~02/01/2003~
-~10119~^~320~^0.^0^^~1~^~AS~^^^^^^^^^^~02/01/2003~
-~10119~^~321~^0.^0^^~7~^~Z~^^^^^^^^^^~08/01/2004~
-~10119~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~08/01/2004~
-~10119~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2009~
-~10119~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~08/01/2004~
-~10119~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~08/01/2004~
-~10119~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~
-~10119~^~417~^3.^1^^~1~^~A~^^^^^^^^^^~04/01/2003~
-~10119~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~
-~10119~^~432~^3.^1^^~1~^~A~^^^^^^^^^^~04/01/2005~
-~10119~^~435~^3.^0^^~4~^~NC~^^^^^^^^^^~03/01/2009~
-~10119~^~601~^223.^1^^~1~^~A~^^^^^^^^^^~02/01/2003~
-~10120~^~208~^222.^0^^~4~^~NC~^^^^^^^^^^~04/01/2010~
-~10120~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2003~
-~10120~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2003~
-~10120~^~268~^929.^0^^~4~^~NC~^^^^^^^^^^~04/01/2010~
-~10120~^~301~^46.^12^3.^~1~^~A~^^^1^25.^58.^11^38.^52.^~2, 3~^~04/01/2010~
-~10120~^~304~^21.^12^0.^~1~^~A~^^^1^18.^24.^11^19.^22.^~2, 3~^~04/01/2010~
-~10120~^~305~^237.^12^5.^~1~^~A~^^^1^200.^271.^11^224.^249.^~2, 3~^~04/01/2010~
-~10120~^~306~^335.^12^9.^~1~^~A~^^^1^266.^379.^11^314.^354.^~2, 3~^~04/01/2010~
-~10120~^~307~^88.^12^1.^~1~^~A~^^^1^77.^97.^11^84.^91.^~2, 3~^~04/01/2010~
-~10120~^~318~^10.^0^^~1~^~AS~^^^^^^^^^^~04/01/2010~
-~10120~^~319~^3.^1^^~1~^~A~^^^^^^^^^^~04/01/2010~
-~10120~^~320~^3.^0^^~1~^~AS~^^^^^^^^^^~04/01/2010~
-~10120~^~321~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2003~
-~10120~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2003~
-~10120~^~324~^23.^1^^~1~^~A~^^^^^^^^^^~04/01/2010~
-~10120~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2003~
-~10120~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2003~
-~10120~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2003~
-~10120~^~417~^0.^0^^~4~^~BFPN~^~10068~^^^^^^^^^~04/01/2010~
-~10120~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~
-~10120~^~432~^0.^0^^~4~^~BFPN~^^^^^^^^^^~04/01/2010~
-~10120~^~435~^0.^0^^~4~^~NC~^^^^^^^^^^~04/01/2010~
-~10120~^~601~^82.^6^1.^~1~^~A~^^^1^75.^88.^5^77.^86.^~2, 3~^~04/01/2010~
-~10121~^~208~^225.^0^^~4~^~NC~^^^^^^^^^^~12/01/1992~
-~10121~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2005~
-~10121~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2005~
-~10121~^~268~^941.^0^^~4~^^^^^^^^^^^~06/01/2005~
-~10121~^~301~^16.^6^3.^~1~^^^^^^^^^^^~12/01/1992~
-~10121~^~304~^18.^2^^~1~^^^^^^^^^^^~12/01/1992~
-~10121~^~305~^193.^2^^~1~^^^^^^^^^^^~12/01/1992~
-~10121~^~306~^243.^5^20.^~1~^^^^^^^^^^^~12/01/1992~
-~10121~^~307~^110.^3^17.^~1~^^^^^^^^^^^~12/01/1992~
-~10121~^~318~^0.^0^^~1~^~AS~^^^^^^^^^^~06/01/2005~
-~10121~^~319~^0.^0^^~4~^~NR~^^^^^^^^^^~06/01/2005~
-~10121~^~320~^0.^0^^~1~^~AS~^^^^^^^^^^~06/01/2005~
-~10121~^~321~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2005~
-~10121~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2005~
-~10121~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2005~
-~10121~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2005~
-~10121~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2005~
-~10121~^~417~^4.^0^^~4~^^^^^^^^^^^~12/01/1992~
-~10121~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~
-~10121~^~432~^4.^0^^~4~^^^^^^^^^^^~06/01/2005~
-~10121~^~435~^4.^0^^~4~^~NC~^^^^^^^^^^~10/01/2005~
-~10121~^~601~^101.^1^^~1~^^^^^^^^^^^~12/01/1992~
-~10121~^~636~^0.^0^^~4~^^^^^^^^^^^~12/01/1992~
-~10122~^~208~^271.^0^^~4~^~NC~^^^^^^^^^^~12/01/1992~
-~10122~^~268~^1134.^0^^~4~^^^^^^^^^^^
-~10122~^~301~^19.^0^^~1~^^^^^^^^^^^~12/01/1992~
-~10122~^~304~^20.^0^^~1~^^^^^^^^^^^~12/01/1992~
-~10122~^~305~^174.^0^^~1~^^^^^^^^^^^~12/01/1992~
-~10122~^~306~^237.^0^^~1~^^^^^^^^^^^~12/01/1992~
-~10122~^~307~^109.^0^^~1~^^^^^^^^^^^~12/01/1992~
-~10122~^~318~^0.^0^^~1~^^^^^^^^^^^~12/01/1992~
-~10122~^~319~^0.^0^^~1~^^^^^^^^^^^~06/01/2002~
-~10122~^~320~^0.^0^^~1~^^^^^^^^^^^~06/01/2002~
-~10122~^~417~^4.^0^^~4~^^^^^^^^^^^~12/01/1992~
-~10122~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~
-~10122~^~432~^4.^0^^~4~^^^^^^^^^^^~12/01/1992~
-~10122~^~435~^4.^0^^~4~^~NC~^^^^^^^^^^~01/01/2001~
-~10122~^~601~^146.^0^^~1~^^^^^^^^^^^~12/01/1992~
-~10122~^~636~^0.^0^^~1~^^^^^^^^^^^~12/01/1992~
-~10123~^~208~^393.^0^^~4~^~NC~^^^^^^^^^^~03/01/2016~
-~10123~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~09/01/2002~
-~10123~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~09/01/2002~
-~10123~^~268~^1645.^0^^~4~^~NC~^^^^^^^^^^~03/01/2016~
-~10123~^~301~^6.^18^0.^~1~^~A~^^^1^3.^12.^13^5.^6.^~2, 3~^~03/01/2016~
-~10123~^~304~^13.^18^0.^~1~^~A~^^^1^8.^16.^9^11.^14.^~2, 3~^~03/01/2016~
-~10123~^~305~^166.^18^4.^~1~^~A~^^^1^111.^207.^10^154.^176.^~2, 3~^~03/01/2016~
-~10123~^~306~^201.^18^8.^~1~^~A~^^^1^137.^255.^10^182.^218.^~2, 3~^~03/01/2016~
-~10123~^~307~^751.^18^22.^~1~^~A~^^^1^560.^1080.^9^700.^802.^~2, 3~^~03/01/2016~
-~10123~^~318~^37.^0^^~1~^~AS~^^^^^^^^^^~06/01/2009~
-~10123~^~319~^11.^4^0.^~1~^~A~^^^1^11.^11.^^^^~1, 2, 3~^~08/01/2004~
-~10123~^~320~^11.^0^^~1~^~AS~^^^^^^^^^^~06/01/2009~
-~10123~^~321~^0.^0^^~7~^~Z~^^^^^^^^^^~09/01/2002~
-~10123~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~09/01/2002~
-~10123~^~324~^16.^1^^~1~^~A~^^^^^^^^^^~05/01/2012~
-~10123~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~09/01/2002~
-~10123~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~09/01/2002~
-~10123~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~09/01/2002~
-~10123~^~417~^0.^0^^~4~^~BFPN~^~10068~^^^^^^^^^~05/01/2012~
-~10123~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~
-~10123~^~432~^0.^0^^~4~^~BFPN~^^^^^^^^^^~05/01/2012~
-~10123~^~435~^0.^0^^~4~^~NC~^^^^^^^^^^~05/01/2012~
-~10123~^~601~^66.^18^1.^~1~^~A~^^^1^54.^76.^13^62.^69.^~2, 3~^~05/01/2012~
-~10128~^~208~^388.^0^^~4~^~NC~^^^^^^^^^^~12/01/1992~
-~10128~^~268~^1623.^0^^~4~^^^^^^^^^^^
-~10128~^~301~^8.^3^1.^~1~^^^^^^^^^^^~12/01/1992~
-~10128~^~304~^12.^6^0.^~1~^^^^^^^^^^^~12/01/1992~
-~10128~^~305~^137.^6^17.^~1~^^^^^^^^^^^~12/01/1992~
-~10128~^~306~^204.^6^11.^~1~^^^^^^^^^^^~12/01/1992~
-~10128~^~307~^987.^6^40.^~1~^^^^^^^^^^^~12/01/1992~
-~10128~^~318~^0.^0^^~1~^^^^^^^^^^^~12/01/1992~
-~10128~^~319~^0.^0^^~1~^^^^^^^^^^^~06/01/2002~
-~10128~^~320~^0.^0^^~1~^^^^^^^^^^^~06/01/2002~
-~10128~^~417~^3.^0^^~1~^^^^^^^^^^^~12/01/1992~
-~10128~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~
-~10128~^~432~^3.^0^^~1~^^^^^^^^^^^~12/01/1992~
-~10128~^~435~^3.^0^^~4~^~NC~^^^^^^^^^^~01/01/2001~
-~10128~^~601~^69.^4^2.^~1~^^^^^^^^^^^~12/01/1992~
-~10128~^~636~^0.^0^^~4~^^^^^^^^^^^~12/01/1992~
-~10130~^~208~^110.^0^^~4~^~NC~^^^^^^^^^^~08/01/2015~
-~10130~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2003~
-~10130~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2003~
-~10130~^~268~^461.^0^^~4~^~NC~^^^^^^^^^^~08/01/2015~
-~10130~^~301~^6.^5^0.^~1~^~A~^^^1^4.^9.^1^2.^8.^~2, 3~^~04/01/2013~
-~10130~^~304~^20.^5^0.^~1~^~A~^^^1^17.^23.^2^17.^23.^~2, 3~^~04/01/2013~
-~10130~^~305~^240.^5^2.^~1~^~A~^^^1^215.^284.^2^229.^250.^~2, 3~^~05/01/2015~
-~10130~^~306~^683.^5^6.^~1~^~A~^^^1^278.^927.^1^631.^734.^~2, 3~^~05/01/2015~
-~10130~^~307~^751.^5^19.^~1~^~A~^^^1^653.^885.^1^505.^996.^~2, 3~^~05/01/2015~
-~10130~^~318~^0.^0^^~1~^~AS~^^^^^^^^^^~12/01/1992~
-~10130~^~319~^0.^1^^~1~^~A~^^^^^^^^^~1~^~04/01/2013~
-~10130~^~320~^0.^0^^~1~^~AS~^^^^^^^^^^~04/01/2013~
-~10130~^~321~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2003~
-~10130~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2003~
-~10130~^~324~^6.^1^^~1~^~A~^^^^^^^^^^~04/01/2013~
-~10130~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2003~
-~10130~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2003~
-~10130~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2003~
-~10130~^~417~^4.^1^^~1~^~A~^^^^^^^^^~1~^~12/01/1992~
-~10130~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~
-~10130~^~432~^4.^1^^~1~^~A~^^^^^^^^^^~03/01/2009~
-~10130~^~435~^4.^0^^~4~^~NC~^^^^^^^^^^~03/01/2009~
-~10130~^~601~^48.^3^^~1~^~A~^^^1^47.^50.^^^^~2, 3~^~04/01/2013~
-~10132~^~208~^140.^0^^~4~^~NC~^^^^^^^^^^~03/01/2009~
-~10132~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2006~
-~10132~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2006~
-~10132~^~268~^586.^0^^~4~^~NC~^^^^^^^^^^~03/01/2009~
-~10132~^~301~^32.^0^^~1~^^^^^^^^^^^~03/01/2006~
-~10132~^~304~^11.^1^^~1~^~A~^^^^^^^^^^~03/01/2006~
-~10132~^~305~^87.^1^^~1~^~A~^^^^^^^^^^~03/01/2006~
-~10132~^~306~^13.^1^^~1~^~A~^^^^^^^^^^~03/01/2006~
-~10132~^~307~^946.^0^^~8~^~LC~^^^^^^^^^^~08/01/2012~
-~10132~^~318~^37.^0^^~1~^~AS~^^^^^^^^^^~03/01/2006~
-~10132~^~319~^11.^1^^~1~^~A~^^^^^^^^^~1~^~03/01/2006~
-~10132~^~320~^11.^0^^~1~^~AS~^^^^^^^^^^~03/01/2006~
-~10132~^~321~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2006~
-~10132~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2006~
-~10132~^~324~^16.^0^^~4~^~BFNN~^^^^^^^^^^~03/01/2009~
-~10132~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2006~
-~10132~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2006~
-~10132~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2006~
-~10132~^~417~^1.^1^^~1~^~A~^^^^^^^^^^~03/01/2006~
-~10132~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2006~
-~10132~^~432~^1.^1^^~4~^~NR~^^^^^^^^^^~03/01/2006~
-~10132~^~435~^1.^0^^~4~^~NC~^^^^^^^^^^~03/01/2009~
-~10132~^~601~^83.^1^^~1~^~A~^^^^^^^^^^~03/01/2006~
-~10132~^~636~^0.^0^^~4~^^^^^^^^^^^~03/01/2006~
-~10134~^~208~^145.^0^^~4~^~NC~^^^^^^^^^^~12/01/1992~
-~10134~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~09/01/2002~
-~10134~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~09/01/2002~
-~10134~^~268~^607.^0^^~4~^^^^^^^^^^^~02/01/2009~
-~10134~^~301~^8.^0^^~1~^^^^^^^^^^^~12/01/1992~
-~10134~^~304~^14.^0^^~1~^^^^^^^^^^^~12/01/1992~
-~10134~^~305~^196.^0^^~1~^^^^^^^^^^^~12/01/1992~
-~10134~^~306~^287.^0^^~1~^^^^^^^^^^^~12/01/1992~
-~10134~^~307~^1203.^0^^~1~^^^^^^^^^^^~12/01/1992~
-~10134~^~318~^0.^0^^~1~^^^^^^^^^^^~12/01/1992~
-~10134~^~319~^0.^0^^~4~^~NR~^^^^^^^^^^~09/01/2002~
-~10134~^~320~^0.^0^^~4~^~NC~^^^^^^^^^^~02/01/2009~
-~10134~^~321~^0.^0^^~7~^~Z~^^^^^^^^^^~09/01/2002~
-~10134~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~09/01/2002~
-~10134~^~324~^32.^0^^~4~^~BFNN~^^^^^^^^^^~02/01/2009~
-~10134~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~09/01/2002~
-~10134~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~09/01/2002~
-~10134~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~09/01/2002~
-~10134~^~417~^3.^0^^~1~^^^^^^^^^^^~12/01/1992~
-~10134~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~
-~10134~^~432~^3.^0^^~1~^^^^^^^^^^^~02/01/2009~
-~10134~^~435~^3.^0^^~4~^~NC~^^^^^^^^^^~02/01/2009~
-~10134~^~601~^53.^0^^~1~^^^^^^^^^^^~12/01/1992~
-~10134~^~636~^0.^0^^~4~^^^^^^^^^^^~12/01/1992~
-~10136~^~208~^178.^0^^~4~^~NC~^^^^^^^^^^~12/01/1992~
-~10136~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2003~
-~10136~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2003~
-~10136~^~268~^745.^0^^~4~^^^^^^^^^^^~02/01/2009~
-~10136~^~301~^8.^3^0.^~1~^^^^^^^^^^^~12/01/1992~
-~10136~^~304~^22.^3^0.^~1~^^^^^^^^^^^~12/01/1992~
-~10136~^~305~^281.^3^5.^~1~^^^^^^^^^^^~12/01/1992~
-~10136~^~306~^409.^3^15.^~1~^^^^^^^^^^^~12/01/1992~
-~10136~^~307~^1500.^3^86.^~1~^^^^^^^^^^^~12/01/1992~
-~10136~^~318~^0.^0^^~1~^^^^^^^^^^^~12/01/1992~
-~10136~^~319~^0.^0^^~4~^~NR~^^^^^^^^^^~01/01/2003~
-~10136~^~320~^0.^0^^~4~^~NC~^^^^^^^^^^~02/01/2009~
-~10136~^~321~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2003~
-~10136~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2003~
-~10136~^~324~^32.^0^^~4~^~BFNN~^^^^^^^^^^~02/01/2009~
-~10136~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2003~
-~10136~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2003~
-~10136~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2003~
-~10136~^~417~^3.^0^^~4~^^^^^^^^^^^~12/01/1992~
-~10136~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~
-~10136~^~432~^3.^0^^~4~^^^^^^^^^^^~02/01/2009~
-~10136~^~435~^3.^0^^~4~^~NC~^^^^^^^^^^~02/01/2009~
-~10136~^~601~^59.^3^3.^~1~^^^^^^^^^^^~12/01/1992~
-~10136~^~636~^0.^0^^~4~^^^^^^^^^^^~12/01/1992~
-~10137~^~208~^120.^0^^~4~^~NC~^^^^^^^^^^~12/01/1992~
-~10137~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2003~
-~10137~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2003~
-~10137~^~268~^502.^0^^~4~^^^^^^^^^^^~02/01/2009~
-~10137~^~301~^6.^1^^~1~^^^^^^^^^^^~12/01/1992~
-~10137~^~304~^17.^21^0.^~1~^^^^^^^^^^^~12/01/1992~
-~10137~^~305~^224.^21^9.^~1~^^^^^^^^^^^~12/01/1992~
-~10137~^~306~^364.^17^6.^~1~^^^^^^^^^^^~12/01/1992~
-~10137~^~307~^1255.^21^39.^~1~^^^^^^^^^^^~12/01/1992~
-~10137~^~318~^0.^0^^~1~^^^^^^^^^^^~12/01/1992~
-~10137~^~319~^0.^0^^~4~^~NR~^^^^^^^^^^~01/01/2003~
-~10137~^~320~^0.^0^^~4~^~NC~^^^^^^^^^^~02/01/2009~
-~10137~^~321~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2003~
-~10137~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2003~
-~10137~^~324~^93.^0^^~4~^~BFNN~^^^^^^^^^^~02/01/2009~
-~10137~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2003~
-~10137~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2003~
-~10137~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2003~
-~10137~^~417~^6.^0^^~1~^^^^^^^^^^^~12/01/1992~
-~10137~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~
-~10137~^~432~^6.^0^^~1~^^^^^^^^^^^~02/01/2009~
-~10137~^~435~^6.^0^^~4~^~NC~^^^^^^^^^^~02/01/2009~
-~10137~^~601~^38.^2^^~1~^^^^^^^^^^^~02/01/2009~
-~10137~^~636~^0.^0^^~4~^^^^^^^^^^^~12/01/1992~
-~10138~^~208~^136.^0^^~4~^~NC~^^^^^^^^^^~12/01/1992~
-~10138~^~268~^569.^0^^~4~^^^^^^^^^^^
-~10138~^~301~^6.^1^^~1~^^^^^^^^^^^~12/01/1992~
-~10138~^~304~^21.^4^1.^~1~^^^^^^^^^^^~12/01/1992~
-~10138~^~305~^209.^4^21.^~1~^^^^^^^^^^^~12/01/1992~
-~10138~^~306~^348.^4^25.^~1~^^^^^^^^^^^~12/01/1992~
-~10138~^~307~^1135.^4^100.^~1~^^^^^^^^^^^~12/01/1992~
-~10138~^~318~^0.^0^^~1~^^^^^^^^^^^~12/01/1992~
-~10138~^~319~^0.^0^^~1~^^^^^^^^^^^~06/01/2002~
-~10138~^~320~^0.^0^^~1~^^^^^^^^^^^~06/01/2002~
-~10138~^~417~^5.^0^^~1~^^^^^^^^^^^~12/01/1992~
-~10138~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~
-~10138~^~432~^5.^0^^~1~^^^^^^^^^^^~12/01/1992~
-~10138~^~435~^5.^0^^~4~^~NC~^^^^^^^^^^~01/01/2001~
-~10138~^~601~^30.^2^^~1~^^^^^^^^^^^~12/01/1992~
-~10138~^~636~^0.^0^^~4~^^^^^^^^^^^~12/01/1992~
-~10140~^~208~^226.^0^^~4~^~NC~^^^^^^^^^^~12/01/1992~
-~10140~^~268~^946.^0^^~4~^^^^^^^^^^^
-~10140~^~301~^8.^3^0.^~1~^^^^^^^^^^^~12/01/1992~
-~10140~^~304~^17.^4^0.^~1~^^^^^^^^^^^~12/01/1992~
-~10140~^~305~^243.^4^3.^~1~^^^^^^^^^^^~12/01/1992~
-~10140~^~306~^357.^4^10.^~1~^^^^^^^^^^^~12/01/1992~
-~10140~^~307~^941.^4^82.^~1~^^^^^^^^^^^~12/01/1992~
-~10140~^~318~^0.^0^^~1~^^^^^^^^^^^~12/01/1992~
-~10140~^~319~^0.^0^^~1~^^^^^^^^^^^~06/01/2002~
-~10140~^~320~^0.^0^^~1~^^^^^^^^^^^~06/01/2002~
-~10140~^~417~^5.^0^^~1~^^^^^^^^^^^~12/01/1992~
-~10140~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~
-~10140~^~432~^5.^0^^~1~^^^^^^^^^^^~12/01/1992~
-~10140~^~435~^5.^0^^~4~^~NC~^^^^^^^^^^~01/01/2001~
-~10140~^~601~^62.^4^13.^~1~^^^^^^^^^^^~12/01/1992~
-~10140~^~636~^0.^0^^~4~^^^^^^^^^^^~12/01/1992~
-~10141~^~208~^195.^0^^~4~^~NC~^^^^^^^^^^~04/01/2006~
-~10141~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2003~
-~10141~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2003~
-~10141~^~268~^816.^0^^~4~^^^^^^^^^^^~03/01/2009~
-~10141~^~301~^10.^0^^~4~^^^^^^^^^^^~04/01/2006~
-~10141~^~304~^25.^0^^~4~^^^^^^^^^^^~04/01/2006~
-~10141~^~305~^318.^0^^~4~^^^^^^^^^^^~04/01/2006~
-~10141~^~306~^510.^0^^~4~^^^^^^^^^^^~04/01/2006~
-~10141~^~307~^2695.^0^^~4~^^^^^^^^^^^~04/01/2006~
-~10141~^~318~^0.^0^^~1~^^^^^^^^^^^~04/01/2006~
-~10141~^~319~^0.^0^^~4~^~NR~^^^^^^^^^^~01/01/2003~
-~10141~^~320~^0.^0^^~1~^~AS~^^^^^^^^^^~03/01/2006~
-~10141~^~321~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2003~
-~10141~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2003~
-~10141~^~324~^37.^0^^~4~^~BFNN~^^^^^^^^^^~03/01/2009~
-~10141~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2003~
-~10141~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2003~
-~10141~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2003~
-~10141~^~417~^5.^0^^~4~^^^^^^^^^^^~04/01/2006~
-~10141~^~431~^0.^1^^~7~^~Z~^^^^^^^^^~1~^~03/01/2006~
-~10141~^~432~^5.^0^^~4~^~NR~^^^^^^^^^^~04/01/2006~
-~10141~^~435~^5.^0^^~4~^~NC~^^^^^^^^^^~03/01/2009~
-~10141~^~601~^70.^0^^~4~^^^^^^^^^^^~04/01/2006~
-~10142~^~208~^203.^0^^~4~^~NC~^^^^^^^^^^~12/01/1992~
-~10142~^~268~^849.^0^^~4~^^^^^^^^^^^
-~10142~^~301~^7.^0^^~1~^^^^^^^^^^^~12/01/1992~
-~10142~^~304~^16.^0^^~1~^^^^^^^^^^^~12/01/1992~
-~10142~^~305~^215.^0^^~1~^^^^^^^^^^^~12/01/1992~
-~10142~^~306~^337.^0^^~1~^^^^^^^^^^^~12/01/1992~
-~10142~^~307~^1386.^0^^~1~^^^^^^^^^^^~12/01/1992~
-~10142~^~318~^0.^0^^~1~^^^^^^^^^^^~12/01/1992~
-~10142~^~319~^0.^0^^~1~^^^^^^^^^^^~06/01/2002~
-~10142~^~320~^0.^0^^~1~^^^^^^^^^^^~06/01/2002~
-~10142~^~417~^4.^0^^~1~^^^^^^^^^^^~12/01/1992~
-~10142~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~
-~10142~^~432~^4.^0^^~1~^^^^^^^^^^^~12/01/1992~
-~10142~^~435~^4.^0^^~4~^~NC~^^^^^^^^^^~01/01/2001~
-~10142~^~601~^54.^0^^~1~^^^^^^^^^^^~12/01/1992~
-~10146~^~208~^315.^0^^~4~^~NC~^^^^^^^^^^~12/01/1992~
-~10146~^~268~^1318.^0^^~4~^^^^^^^^^^^
-~10146~^~301~^8.^3^1.^~1~^^^^^^^^^^^~12/01/1992~
-~10146~^~304~^10.^3^0.^~1~^^^^^^^^^^^~12/01/1992~
-~10146~^~305~^149.^4^26.^~1~^^^^^^^^^^^~12/01/1992~
-~10146~^~306~^239.^3^54.^~1~^^^^^^^^^^^~12/01/1992~
-~10146~^~307~^1088.^4^60.^~1~^^^^^^^^^^^~12/01/1992~
-~10146~^~318~^0.^1^^~1~^^^^^^^^^^^~12/01/1992~
-~10146~^~319~^0.^1^^~1~^^^^^^^^^^^~06/01/2002~
-~10146~^~320~^0.^1^^~1~^^^^^^^^^^^~06/01/2002~
-~10146~^~417~^3.^0^^~4~^^^^^^^^^^^~12/01/1992~
-~10146~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~
-~10146~^~432~^3.^0^^~4~^^^^^^^^^^^~12/01/1992~
-~10146~^~435~^3.^0^^~4~^~NC~^^^^^^^^^^~01/01/2001~
-~10146~^~601~^70.^1^^~1~^^^^^^^^^^^~12/01/1992~
-~10146~^~636~^0.^0^^~4~^^^^^^^^^^^~12/01/1992~
-~10149~^~208~^122.^0^^~4~^^^^^^^^^^^~12/01/1992~
-~10149~^~268~^510.^0^^~4~^^^^^^^^^^^
-~10149~^~301~^4.^20^0.^~1~^^^^^^^^^^^~12/01/1992~
-~10149~^~304~^19.^46^0.^~1~^^^^^^^^^^^~12/01/1992~
-~10149~^~305~^260.^46^4.^~1~^^^^^^^^^^^~12/01/1992~
-~10149~^~306~^325.^53^4.^~1~^^^^^^^^^^^~12/01/1992~
-~10149~^~307~^1269.^52^18.^~1~^^^^^^^^^^^~12/01/1992~
-~10149~^~318~^0.^0^^~1~^^^^^^^^^^^~12/01/1992~
-~10149~^~319~^0.^0^^~1~^^^^^^^^^^^~06/01/2002~
-~10149~^~320~^0.^0^^~1~^^^^^^^^^^^~06/01/2002~
-~10149~^~417~^4.^0^^~4~^^^^^^^^^^^~12/01/1992~
-~10149~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~
-~10149~^~432~^4.^0^^~4~^^^^^^^^^^^~12/01/1992~
-~10149~^~435~^4.^0^^~4~^~NC~^^^^^^^^^^~01/01/2001~
-~10149~^~601~^45.^11^2.^~1~^^^^^^^^^^^~12/01/1992~
-~10149~^~636~^0.^0^^~4~^^^^^^^^^^^~12/01/1992~
-~10150~^~208~^246.^0^^~4~^~NC~^^^^^^^^^^~12/01/1992~
-~10150~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~09/01/2002~
-~10150~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~09/01/2002~
-~10150~^~268~^1029.^0^^~4~^^^^^^^^^^^~08/01/2004~
-~10150~^~301~^7.^0^^~1~^^^^^^^^^^^~12/01/1992~
-~10150~^~304~^15.^0^^~1~^^^^^^^^^^^~12/01/1992~
-~10150~^~305~^201.^0^^~1~^^^^^^^^^^^~12/01/1992~
-~10150~^~306~^310.^0^^~1~^^^^^^^^^^^~12/01/1992~
-~10150~^~307~^1284.^0^^~1~^^^^^^^^^^^~12/01/1992~
-~10150~^~318~^0.^0^^~1~^^^^^^^^^^^~12/01/1992~
-~10150~^~319~^0.^0^^~4~^~NR~^^^^^^^^^^~09/01/2002~
-~10150~^~320~^0.^0^^~4~^~NC~^^^^^^^^^^~08/01/2004~
-~10150~^~321~^0.^0^^~7~^~Z~^^^^^^^^^^~09/01/2002~
-~10150~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~09/01/2002~
-~10150~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~09/01/2002~
-~10150~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~09/01/2002~
-~10150~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~09/01/2002~
-~10150~^~417~^1.^0^^~4~^~BFZN~^~10859~^^^^^^^^^~01/01/2003~
-~10150~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~
-~10150~^~432~^1.^0^^~4~^~BFZN~^^^^^^^^^^~08/01/2004~
-~10150~^~435~^1.^0^^~4~^~NC~^^^^^^^^^^~08/01/2004~
-~10150~^~601~^56.^0^^~1~^^^^^^^^^^^~12/01/1992~
-~10150~^~636~^0.^0^^~4~^^^^^^^^^^^~12/01/1992~
-~10152~^~208~^147.^0^^~4~^~NC~^^^^^^^^^^~12/01/1992~
-~10152~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2003~
-~10152~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2003~
-~10152~^~268~^615.^0^^~4~^^^^^^^^^^^~03/01/2009~
-~10152~^~301~^7.^0^^~1~^^^^^^^^^^^~12/01/1992~
-~10152~^~304~^18.^0^^~1~^^^^^^^^^^^~12/01/1992~
-~10152~^~305~^232.^0^^~1~^^^^^^^^^^^~12/01/1992~
-~10152~^~306~^371.^0^^~1~^^^^^^^^^^^~12/01/1992~
-~10152~^~307~^1516.^0^^~1~^^^^^^^^^^^~12/01/1992~
-~10152~^~318~^0.^0^^~1~^^^^^^^^^^^~12/01/1992~
-~10152~^~319~^0.^0^^~4~^~NR~^^^^^^^^^^~01/01/2003~
-~10152~^~320~^0.^0^^~4~^~NC~^^^^^^^^^^~03/01/2009~
-~10152~^~321~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2003~
-~10152~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2003~
-~10152~^~324~^27.^0^^~4~^~BFNN~^^^^^^^^^^~03/01/2009~
-~10152~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2003~
-~10152~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2003~
-~10152~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2003~
-~10152~^~417~^4.^0^^~1~^^^^^^^^^^^~12/01/1992~
-~10152~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~
-~10152~^~432~^4.^0^^~1~^^^^^^^^^^^~03/01/2009~
-~10152~^~435~^4.^0^^~4~^~NC~^^^^^^^^^^~03/01/2009~
-~10152~^~601~^52.^0^^~1~^^^^^^^^^^^~12/01/1992~
-~10152~^~636~^0.^0^^~4~^^^^^^^^^^^~12/01/1992~
-~10153~^~208~^157.^0^^~4~^~NC~^^^^^^^^^^~12/01/1992~
-~10153~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~09/01/2002~
-~10153~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~09/01/2002~
-~10153~^~268~^657.^0^^~4~^^^^^^^^^^^~03/01/2009~
-~10153~^~301~^7.^21^0.^~1~^^^^^^^^^^^~12/01/1992~
-~10153~^~304~^22.^21^0.^~1~^^^^^^^^^^^~12/01/1992~
-~10153~^~305~^227.^0^^~1~^^^^^^^^^^^~12/01/1992~
-~10153~^~306~^316.^21^8.^~1~^^^^^^^^^^^~12/01/1992~
-~10153~^~307~^1327.^21^80.^~1~^^^^^^^^^^^~12/01/1992~
-~10153~^~318~^0.^0^^~1~^^^^^^^^^^^~12/01/1992~
-~10153~^~319~^0.^0^^~4~^~NR~^^^^^^^^^^~09/01/2002~
-~10153~^~320~^0.^0^^~4~^~NC~^^^^^^^^^^~03/01/2009~
-~10153~^~321~^0.^0^^~7~^~Z~^^^^^^^^^^~09/01/2002~
-~10153~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~09/01/2002~
-~10153~^~324~^34.^0^^~4~^~BFNN~^^^^^^^^^^~03/01/2009~
-~10153~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~09/01/2002~
-~10153~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~09/01/2002~
-~10153~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~09/01/2002~
-~10153~^~417~^4.^0^^~1~^^^^^^^^^^^~12/01/1992~
-~10153~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~
-~10153~^~432~^4.^0^^~1~^^^^^^^^^^^~03/01/2009~
-~10153~^~435~^4.^0^^~4~^~NC~^^^^^^^^^^~03/01/2009~
-~10153~^~601~^55.^0^^~1~^^^^^^^^^^^~12/01/1992~
-~10153~^~636~^0.^0^^~4~^^^^^^^^^^^~12/01/1992~
-~10163~^~208~^162.^0^^~4~^~NC~^^^^^^^^^^~05/01/2014~
-~10163~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2014~
-~10163~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2014~
-~10163~^~268~^677.^0^^~4~^~NC~^^^^^^^^^^~05/01/2014~
-~10163~^~301~^6.^6^0.^~1~^~A~^^^1^5.^7.^5^5.^7.^~2, 3~^~05/01/2014~
-~10163~^~304~^27.^6^0.^~1~^~A~^^^1^26.^29.^5^26.^28.^~2, 3~^~05/01/2014~
-~10163~^~305~^242.^6^6.^~1~^~A~^^^1^219.^265.^5^224.^259.^~2, 3~^~05/01/2014~
-~10163~^~306~^407.^6^14.^~1~^~A~^^^1^362.^458.^5^368.^444.^~2, 3~^~05/01/2014~
-~10163~^~307~^91.^6^18.^~1~^~A~^^^1^39.^158.^5^42.^139.^~2, 3~^~05/01/2014~
-~10163~^~318~^5.^0^^~1~^~AS~^^^^^^^^^^~05/01/2014~
-~10163~^~319~^2.^1^^~1~^~A~^^^^^^^^^^~05/01/2014~
-~10163~^~320~^2.^0^^~1~^~AS~^^^^^^^^^^~05/01/2014~
-~10163~^~321~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2014~
-~10163~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2014~
-~10163~^~324~^29.^0^^~4~^~BFSN~^^^^^^^^^^~01/01/2015~
-~10163~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2014~
-~10163~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2014~
-~10163~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2014~
-~10163~^~417~^0.^0^^~4~^~BFNN~^~10040~^^^^^^^^^~05/01/2014~
-~10163~^~431~^0.^0^^~4~^~BFNN~^~10040~^^^^^^^^^~01/01/2015~
-~10163~^~432~^0.^0^^~4~^~BFNN~^^^^^^^^^^~05/01/2014~
-~10163~^~435~^0.^0^^~4~^~NC~^~10040~^^^^^^^^^~01/01/2015~
-~10163~^~601~^74.^3^2.^~1~^~A~^^^1^70.^77.^2^64.^83.^~2, 3~^~05/01/2014~
-~10164~^~208~^201.^0^^~4~^~NC~^^^^^^^^^^~05/01/2014~
-~10164~^~262~^0.^0^^~4~^~PIK~^^^^^^^^^^~05/01/2014~
-~10164~^~263~^0.^0^^~4~^~PIK~^^^^^^^^^^~05/01/2014~
-~10164~^~268~^842.^0^^~4~^~NC~^^^^^^^^^^~05/01/2014~
-~10164~^~301~^9.^0^^~1~^~PAK~^^^^^^^^^^~05/01/2014~
-~10164~^~304~^23.^0^^~1~^~PAK~^^^^^^^^^^~05/01/2014~
-~10164~^~305~^203.^0^^~1~^~PAK~^^^^^^^^^^~05/01/2014~
-~10164~^~306~^345.^0^^~1~^~PAK~^^^^^^^^^^~05/01/2014~
-~10164~^~307~^82.^0^^~1~^~PAK~^^^^^^^^^^~05/01/2014~
-~10164~^~318~^16.^0^^~1~^~PAK~^^^^^^^^^^~05/01/2014~
-~10164~^~319~^5.^0^^~1~^~PAK~^^^^^^^^^^~05/01/2014~
-~10164~^~320~^5.^0^^~1~^~PAK~^^^^^^^^^^~05/01/2014~
-~10164~^~321~^0.^0^^~4~^~PIK~^^^^^^^^^^~05/01/2014~
-~10164~^~322~^0.^0^^~4~^~PIK~^^^^^^^^^^~05/01/2014~
-~10164~^~324~^11.^0^^~1~^~PAK~^^^^^^^^^^~05/01/2014~
-~10164~^~334~^0.^0^^~4~^~PIK~^^^^^^^^^^~05/01/2014~
-~10164~^~337~^0.^0^^~4~^~PIK~^^^^^^^^^^~05/01/2014~
-~10164~^~338~^0.^0^^~4~^~PIK~^^^^^^^^^^~05/01/2014~
-~10164~^~417~^0.^0^^~4~^~PIK~^^^^^^^^^^~05/01/2014~
-~10164~^~431~^0.^0^^~4~^~PIK~^^^^^^^^^^~05/01/2014~
-~10164~^~432~^0.^0^^~4~^~PIK~^^^^^^^^^^~05/01/2014~
-~10164~^~435~^0.^0^^~4~^~NC~^^^^^^^^^^~05/01/2014~
-~10164~^~601~^59.^0^^~1~^~PAK~^^^^^^^^^^~05/01/2014~
-~10165~^~208~^748.^0^^~4~^~NC~^^^^^^^^^^~12/01/1992~
-~10165~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2003~
-~10165~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2003~
-~10165~^~268~^3130.^0^^~4~^^^^^^^^^^^~03/01/2009~
-~10165~^~301~^6.^0^^~1~^^^^^^^^^^^~12/01/1992~
-~10165~^~304~^7.^0^^~1~^^^^^^^^^^^~12/01/1992~
-~10165~^~305~^52.^0^^~1~^^^^^^^^^^^~12/01/1992~
-~10165~^~306~^66.^2^^~1~^^^^^^^^^^^~12/01/1992~
-~10165~^~307~^2684.^0^^~8~^~LC~^^^^^^^^^^~08/01/2012~
-~10165~^~318~^0.^0^^~1~^^^^^^^^^^^~12/01/1992~
-~10165~^~319~^0.^0^^~4~^~NR~^^^^^^^^^^~01/01/2003~
-~10165~^~320~^0.^0^^~4~^~NC~^^^^^^^^^^~03/01/2009~
-~10165~^~321~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2003~
-~10165~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2003~
-~10165~^~324~^9.^0^^~4~^~BFNN~^^^^^^^^^^~03/01/2009~
-~10165~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2003~
-~10165~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2003~
-~10165~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2003~
-~10165~^~417~^1.^0^^~1~^^^^^^^^^^^~12/01/1992~
-~10165~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~
-~10165~^~432~^1.^0^^~1~^^^^^^^^^^^~03/01/2009~
-~10165~^~435~^1.^0^^~4~^~NC~^^^^^^^^^^~03/01/2009~
-~10165~^~601~^86.^0^^~1~^^^^^^^^^^^~03/01/2009~
-~10165~^~636~^0.^0^^~4~^^^^^^^^^^^~12/01/1992~
-~10166~^~208~^579.^0^^~4~^~NC~^^^^^^^^^^~12/01/1992~
-~10166~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2003~
-~10166~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2003~
-~10166~^~268~^2423.^0^^~4~^^^^^^^^^^^~03/01/2009~
-~10166~^~301~^5.^0^^~1~^^^^^^^^^^^~12/01/1992~
-~10166~^~304~^6.^0^^~1~^^^^^^^^^^^~12/01/1992~
-~10166~^~305~^98.^0^^~1~^^^^^^^^^^^~12/01/1992~
-~10166~^~306~^105.^0^^~1~^^^^^^^^^^^~12/01/1992~
-~10166~^~307~^505.^0^^~1~^^^^^^^^^^^~12/01/1992~
-~10166~^~318~^0.^0^^~1~^^^^^^^^^^^~12/01/1992~
-~10166~^~319~^0.^0^^~4~^~NR~^^^^^^^^^^~01/01/2003~
-~10166~^~320~^0.^0^^~4~^~NC~^^^^^^^^^^~03/01/2009~
-~10166~^~321~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2003~
-~10166~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2003~
-~10166~^~324~^8.^0^^~4~^~BFNN~^^^^^^^^^^~03/01/2009~
-~10166~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2003~
-~10166~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2003~
-~10166~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2003~
-~10166~^~417~^1.^0^^~1~^^^^^^^^^^^~12/01/1992~
-~10166~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~
-~10166~^~432~^1.^0^^~1~^^^^^^^^^^^~03/01/2009~
-~10166~^~435~^1.^0^^~4~^~NC~^^^^^^^^^^~03/01/2009~
-~10166~^~601~^68.^0^^~1~^^^^^^^^^^^~12/01/1992~
-~10166~^~636~^0.^0^^~4~^^^^^^^^^^^~12/01/1992~
-~10167~^~208~^591.^0^^~4~^~NC~^^^^^^^^^^~12/01/1992~
-~10167~^~268~^2473.^0^^~4~^^^^^^^^^^^
-~10167~^~301~^8.^0^^~1~^^^^^^^^^^^~12/01/1992~
-~10167~^~304~^9.^0^^~1~^^^^^^^^^^^~12/01/1992~
-~10167~^~305~^160.^0^^~1~^^^^^^^^^^^~12/01/1992~
-~10167~^~306~^164.^0^^~1~^^^^^^^^^^^~12/01/1992~
-~10167~^~307~^624.^0^^~1~^^^^^^^^^^^~12/01/1992~
-~10167~^~318~^0.^0^^~1~^^^^^^^^^^^~12/01/1992~
-~10167~^~319~^0.^0^^~1~^^^^^^^^^^^~06/01/2002~
-~10167~^~320~^0.^0^^~1~^^^^^^^^^^^~06/01/2002~
-~10167~^~417~^2.^0^^~1~^^^^^^^^^^^~12/01/1992~
-~10167~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~
-~10167~^~432~^2.^0^^~1~^^^^^^^^^^^~12/01/1992~
-~10167~^~435~^2.^0^^~4~^~NC~^^^^^^^^^^~01/01/2001~
-~10167~^~601~^86.^0^^~1~^^^^^^^^^^^~12/01/1992~
-~10167~^~636~^0.^0^^~4~^^^^^^^^^^^~12/01/1992~
-~10168~^~208~^280.^0^^~4~^~NC~^^^^^^^^^^~12/01/1992~
-~10168~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2003~
-~10168~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2003~
-~10168~^~268~^1172.^0^^~4~^^^^^^^^^^^~03/01/2009~
-~10168~^~301~^10.^0^^~1~^^^^^^^^^^^~12/01/1992~
-~10168~^~304~^14.^0^^~1~^^^^^^^^^^^~12/01/1992~
-~10168~^~305~^221.^0^^~1~^^^^^^^^^^^~12/01/1992~
-~10168~^~306~^258.^0^^~1~^^^^^^^^^^^~12/01/1992~
-~10168~^~307~^1072.^0^^~1~^^^^^^^^^^^~12/01/1992~
-~10168~^~318~^0.^0^^~4~^^^^^^^^^^^~12/01/1992~
-~10168~^~319~^0.^0^^~4~^~NR~^^^^^^^^^^~01/01/2003~
-~10168~^~320~^0.^0^^~4~^~NC~^^^^^^^^^^~03/01/2009~
-~10168~^~321~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2003~
-~10168~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2003~
-~10168~^~324~^29.^0^^~4~^~BFNN~^^^^^^^^^^~03/01/2009~
-~10168~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2003~
-~10168~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2003~
-~10168~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2003~
-~10168~^~417~^3.^0^^~1~^^^^^^^^^^^~12/01/1992~
-~10168~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~
-~10168~^~432~^3.^0^^~1~^^^^^^^^^^^~03/01/2009~
-~10168~^~435~^3.^0^^~4~^~NC~^^^^^^^^^^~03/01/2009~
-~10168~^~601~^58.^0^^~1~^^^^^^^^^^^~12/01/1992~
-~10168~^~636~^0.^0^^~4~^^^^^^^^^^^~12/01/1992~
-~10169~^~208~^170.^0^^~4~^~NC~^^^^^^^^^^~12/01/1992~
-~10169~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2003~
-~10169~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2003~
-~10169~^~268~^711.^0^^~4~^^^^^^^^^^^~03/01/2009~
-~10169~^~301~^11.^0^^~1~^^^^^^^^^^^~12/01/1992~
-~10169~^~304~^16.^0^^~1~^^^^^^^^^^^~12/01/1992~
-~10169~^~305~^243.^0^^~1~^^^^^^^^^^^~12/01/1992~
-~10169~^~306~^292.^0^^~1~^^^^^^^^^^^~12/01/1992~
-~10169~^~307~^1231.^0^^~1~^^^^^^^^^^^~12/01/1992~
-~10169~^~318~^0.^0^^~1~^^^^^^^^^^^~12/01/1992~
-~10169~^~319~^0.^0^^~4~^~NR~^^^^^^^^^^~01/01/2003~
-~10169~^~320~^0.^0^^~4~^~NC~^^^^^^^^^^~03/01/2009~
-~10169~^~321~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2003~
-~10169~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2003~
-~10169~^~324~^35.^0^^~4~^~BFNN~^^^^^^^^^^~03/01/2009~
-~10169~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2003~
-~10169~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2003~
-~10169~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2003~
-~10169~^~417~^4.^0^^~1~^^^^^^^^^^^~12/01/1992~
-~10169~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~
-~10169~^~432~^4.^0^^~1~^^^^^^^^^^^~03/01/2009~
-~10169~^~435~^4.^0^^~4~^~NC~^^^^^^^^^^~03/01/2009~
-~10169~^~601~^48.^0^^~1~^^^^^^^^^^^~12/01/1992~
-~10169~^~636~^0.^0^^~4~^^^^^^^^^^^~12/01/1992~
-~10170~^~208~^269.^0^^~4~^~NC~^^^^^^^^^^~12/01/1992~
-~10170~^~268~^1125.^0^^~4~^^^^^^^^^^^
-~10170~^~301~^7.^0^^~1~^^^^^^^^^^^~12/01/1992~
-~10170~^~304~^13.^4^0.^~1~^^^^^^^^^^^~12/01/1992~
-~10170~^~305~^199.^8^6.^~1~^^^^^^^^^^^~12/01/1992~
-~10170~^~306~^295.^6^31.^~1~^^^^^^^^^^^~12/01/1992~
-~10170~^~307~^1250.^6^190.^~1~^^^^^^^^^^^~12/01/1992~
-~10170~^~318~^0.^0^^~1~^^^^^^^^^^^~12/01/1992~
-~10170~^~319~^0.^0^^~1~^^^^^^^^^^^~06/01/2002~
-~10170~^~320~^0.^0^^~1~^^^^^^^^^^^~06/01/2002~
-~10170~^~417~^3.^1^^~1~^^^^^^^^^^^~12/01/1992~
-~10170~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~
-~10170~^~432~^3.^1^^~1~^^^^^^^^^^^~12/01/1992~
-~10170~^~435~^3.^0^^~4~^~NC~^^^^^^^^^^~01/01/2001~
-~10170~^~601~^53.^4^4.^~1~^^^^^^^^^^^~12/01/1992~
-~10171~^~208~^287.^0^^~4~^~NC~^^^^^^^^^^~12/01/1992~
-~10171~^~268~^1201.^0^^~4~^^^^^^^^^^^
-~10171~^~301~^7.^1^^~1~^^^^^^^^^^^~12/01/1992~
-~10171~^~304~^13.^4^0.^~1~^^^^^^^^^^^~12/01/1992~
-~10171~^~305~^156.^4^22.^~1~^^^^^^^^^^^~12/01/1992~
-~10171~^~306~^194.^4^9.^~1~^^^^^^^^^^^~12/01/1992~
-~10171~^~307~^973.^4^30.^~1~^^^^^^^^^^^~12/01/1992~
-~10171~^~318~^0.^0^^~1~^^^^^^^^^^^~12/01/1992~
-~10171~^~319~^0.^0^^~1~^^^^^^^^^^^~06/01/2002~
-~10171~^~320~^0.^0^^~1~^^^^^^^^^^^~06/01/2002~
-~10171~^~417~^3.^0^^~1~^^^^^^^^^^^~12/01/1992~
-~10171~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~
-~10171~^~432~^3.^0^^~1~^^^^^^^^^^^~12/01/1992~
-~10171~^~435~^3.^0^^~4~^~NC~^^^^^^^^^^~01/01/2001~
-~10171~^~601~^67.^4^2.^~1~^^^^^^^^^^^~12/01/1992~
-~10171~^~636~^0.^0^^~4~^^^^^^^^^^^~12/01/1992~
-~10173~^~208~^238.^0^^~4~^~NC~^^^^^^^^^^~09/01/2012~
-~10173~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~
-~10173~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~
-~10173~^~268~^998.^0^^~4~^~NC~^^^^^^^^^^~09/01/2012~
-~10173~^~301~^0.^1^^~1~^~A~^^^^^^^^^~1~^~02/01/2003~
-~10173~^~304~^5.^1^^~1~^~A~^^^^^^^^^^~02/01/2003~
-~10173~^~305~^82.^1^^~1~^~A~^^^^^^^^^^~02/01/2003~
-~10173~^~306~^33.^1^^~1~^~A~^^^^^^^^^^~02/01/2003~
-~10173~^~307~^73.^1^^~1~^~A~^^^^^^^^^^~02/01/2003~
-~10173~^~318~^0.^0^^~1~^~AS~^^^^^^^^^^~02/01/2003~
-~10173~^~319~^0.^1^^~1~^~A~^^^^^^^^^~1~^~02/01/2003~
-~10173~^~320~^0.^0^^~1~^~AS~^^^^^^^^^^~02/01/2003~
-~10173~^~321~^0.^1^^~1~^~A~^^^^^^^^^~1~^~04/01/2005~
-~10173~^~322~^0.^1^^~1~^~A~^^^^^^^^^~1~^~04/01/2005~
-~10173~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2009~
-~10173~^~334~^0.^1^^~1~^~A~^^^^^^^^^~1~^~04/01/2005~
-~10173~^~337~^0.^1^^~1~^~A~^^^^^^^^^~1~^~04/01/2005~
-~10173~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~
-~10173~^~417~^2.^1^^~1~^~A~^^^^^^^^^^~04/01/2003~
-~10173~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~
-~10173~^~432~^2.^1^^~1~^~A~^^^^^^^^^^~02/01/2007~
-~10173~^~435~^2.^0^^~4~^~NC~^^^^^^^^^^~05/01/2009~
-~10173~^~601~^107.^1^^~1~^~A~^^^^^^^^^^~02/01/2003~
-~10174~^~208~^378.^0^^~4~^~NC~^^^^^^^^^^~12/01/1992~
-~10174~^~268~^1582.^0^^~4~^^^^^^^^^^^
-~10174~^~301~^18.^1^^~1~^^^^^^^^^^^~12/01/1992~
-~10174~^~304~^8.^1^^~1~^^^^^^^^^^^~12/01/1992~
-~10174~^~305~^50.^1^^~1~^^^^^^^^^^^~12/01/1992~
-~10174~^~306~^349.^0^^~4~^^^^^^^^^^^~12/01/1992~
-~10174~^~307~^63.^0^^~4~^^^^^^^^^^^~12/01/1992~
-~10174~^~318~^0.^1^^~1~^^^^^^^^^^^~12/01/1992~
-~10174~^~319~^0.^1^^~1~^^^^^^^^^^^~06/01/2002~
-~10174~^~320~^0.^1^^~1~^^^^^^^^^^^~06/01/2002~
-~10174~^~417~^5.^0^^~4~^^^^^^^^^^^~12/01/1992~
-~10174~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~
-~10174~^~432~^5.^0^^~4~^^^^^^^^^^^~12/01/1992~
-~10174~^~435~^5.^0^^~4~^~NC~^^^^^^^^^^~01/01/2001~
-~10174~^~601~^97.^1^^~1~^^^^^^^^^^^~12/01/1992~
-~10174~^~636~^0.^0^^~4~^^^^^^^^^^^~12/01/1992~
-~10175~^~208~^396.^0^^~4~^~NC~^^^^^^^^^^~12/01/1992~
-~10175~^~268~^1657.^0^^~4~^^^^^^^^^^^
-~10175~^~301~^14.^1^^~1~^^^^^^^^^^^~12/01/1992~
-~10175~^~304~^7.^1^^~1~^^^^^^^^^^^~12/01/1992~
-~10175~^~305~^47.^1^^~1~^^^^^^^^^^^~12/01/1992~
-~10175~^~306~^157.^0^^~4~^^^^^^^^^^^~12/01/1992~
-~10175~^~307~^25.^0^^~4~^^^^^^^^^^^~12/01/1992~
-~10175~^~318~^0.^1^^~1~^^^^^^^^^^^~12/01/1992~
-~10175~^~319~^0.^1^^~1~^^^^^^^^^^^~06/01/2002~
-~10175~^~320~^0.^1^^~1~^^^^^^^^^^^~06/01/2002~
-~10175~^~417~^4.^0^^~4~^^^^^^^^^^^~12/01/1992~
-~10175~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~
-~10175~^~432~^4.^0^^~4~^^^^^^^^^^^~12/01/1992~
-~10175~^~435~^4.^0^^~4~^~NC~^^^^^^^^^^~01/01/2001~
-~10175~^~601~^129.^1^^~1~^^^^^^^^^^^~12/01/1992~
-~10175~^~636~^0.^0^^~4~^^^^^^^^^^^~12/01/1992~
-~10176~^~208~^195.^0^^~4~^~NC~^^^^^^^^^^~05/01/2010~
-~10176~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2003~
-~10176~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2003~
-~10176~^~268~^817.^0^^~4~^~NC~^^^^^^^^^^~05/01/2010~
-~10176~^~301~^51.^0^^~4~^~BFNN~^~10120~^^^^^^^^^~05/01/2010~
-~10176~^~304~^24.^0^^~4~^~BFNN~^~10120~^^^^^^^^^~05/01/2010~
-~10176~^~305~^268.^0^^~4~^~BFNN~^~10120~^^^^^^^^^~05/01/2010~
-~10176~^~306~^378.^0^^~4~^~BFNN~^~10120~^^^^^^^^^~05/01/2010~
-~10176~^~307~^99.^0^^~4~^~BFNN~^~10120~^^^^^^^^^~05/01/2010~
-~10176~^~318~^10.^0^^~4~^~NC~^^^^^^^^^^~05/01/2010~
-~10176~^~319~^3.^0^^~4~^~BFSN~^~10120~^^^^^^^^^~05/01/2010~
-~10176~^~320~^3.^0^^~4~^~NC~^^^^^^^^^^~05/01/2010~
-~10176~^~321~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2003~
-~10176~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2003~
-~10176~^~324~^20.^0^^~4~^~BFFN~^^^^^^^^^^~03/01/2009~
-~10176~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2003~
-~10176~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2003~
-~10176~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2003~
-~10176~^~417~^0.^0^^~4~^~BFPN~^~10068~^^^^^^^^^~05/01/2010~
-~10176~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~
-~10176~^~432~^0.^0^^~4~^~BFPN~^^^^^^^^^^~05/01/2010~
-~10176~^~435~^0.^0^^~4~^~NC~^^^^^^^^^^~05/01/2010~
-~10176~^~601~^78.^6^1.^~1~^~A~^^^1^74.^84.^5^74.^82.^~2, 3~^~05/01/2010~
-~10177~^~208~^211.^0^^~4~^~NC~^^^^^^^^^^~05/01/2010~
-~10177~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2003~
-~10177~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2003~
-~10177~^~268~^882.^0^^~4~^~NC~^^^^^^^^^^~05/01/2010~
-~10177~^~301~^45.^0^^~4~^~BFSN~^~10120~^^^^^^^^^~05/01/2010~
-~10177~^~304~^21.^0^^~4~^~BFSN~^~10120~^^^^^^^^^~05/01/2010~
-~10177~^~305~^237.^0^^~4~^~BFSN~^~10120~^^^^^^^^^~05/01/2010~
-~10177~^~306~^335.^0^^~4~^~BFSN~^~10120~^^^^^^^^^~05/01/2010~
-~10177~^~307~^88.^0^^~4~^~BFSN~^~10120~^^^^^^^^^~05/01/2010~
-~10177~^~318~^10.^0^^~4~^~NC~^^^^^^^^^^~05/01/2010~
-~10177~^~319~^3.^0^^~4~^~BFSN~^~10120~^^^^^^^^^~05/01/2010~
-~10177~^~320~^3.^0^^~4~^~NC~^^^^^^^^^^~05/01/2010~
-~10177~^~321~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2003~
-~10177~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2003~
-~10177~^~324~^21.^0^^~4~^~BFFN~^^^^^^^^^^~03/01/2009~
-~10177~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2003~
-~10177~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2003~
-~10177~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2003~
-~10177~^~417~^0.^0^^~4~^~BFPN~^~10120~^^^^^^^^^~05/01/2010~
-~10177~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~
-~10177~^~432~^0.^0^^~4~^~BFPN~^^^^^^^^^^~05/01/2010~
-~10177~^~435~^0.^0^^~4~^~NC~^^^^^^^^^^~05/01/2010~
-~10177~^~601~^77.^6^1.^~1~^~A~^^^1^73.^81.^5^74.^80.^~2, 3~^~05/01/2010~
-~10178~^~208~^256.^0^^~4~^~PIK~^^^^^^^^^^~06/01/2010~
-~10178~^~262~^0.^0^^~4~^~PIK~^^^^^^^^^^~06/01/2010~
-~10178~^~263~^0.^0^^~4~^~PIK~^^^^^^^^^^~06/01/2010~
-~10178~^~268~^1072.^0^^~4~^~PIK~^^^^^^^^^^~06/01/2010~
-~10178~^~301~^48.^0^^~1~^~PAK~^^^^^^^^^^~06/01/2010~
-~10178~^~304~^20.^0^^~1~^~PAK~^^^^^^^^^^~06/01/2010~
-~10178~^~305~^226.^0^^~1~^~PAK~^^^^^^^^^^~06/01/2010~
-~10178~^~306~^318.^0^^~1~^~PAK~^^^^^^^^^^~06/01/2010~
-~10178~^~307~^85.^0^^~1~^~PAK~^^^^^^^^^^~06/01/2010~
-~10178~^~318~^17.^0^^~1~^~PAK~^^^^^^^^^^~07/01/2013~
-~10178~^~319~^5.^0^^~1~^~PAK~^^^^^^^^^^~06/01/2010~
-~10178~^~320~^5.^0^^~1~^~PAK~^^^^^^^^^^~07/01/2013~
-~10178~^~321~^0.^0^^~4~^~PIK~^^^^^^^^^^~06/01/2010~
-~10178~^~322~^0.^0^^~4~^~PIK~^^^^^^^^^^~06/01/2010~
-~10178~^~324~^27.^0^^~1~^~PAK~^^^^^^^^^^~06/01/2010~
-~10178~^~334~^0.^0^^~4~^~PIK~^^^^^^^^^^~06/01/2010~
-~10178~^~337~^0.^0^^~4~^~PIK~^^^^^^^^^^~06/01/2010~
-~10178~^~338~^0.^0^^~4~^~PIK~^^^^^^^^^^~06/01/2010~
-~10178~^~417~^0.^0^^~4~^~PIK~^^^^^^^^^^~06/01/2010~
-~10178~^~431~^0.^0^^~4~^~PIK~^^^^^^^^^^~06/01/2010~
-~10178~^~432~^0.^0^^~4~^~PIK~^^^^^^^^^^~06/01/2010~
-~10178~^~435~^0.^0^^~4~^~NC~^^^^^^^^^^~06/01/2010~
-~10178~^~601~^82.^0^^~1~^~PAK~^^^^^^^^^^~06/01/2010~
-~10179~^~208~^238.^0^^~4~^~PIK~^^^^^^^^^^~06/01/2010~
-~10179~^~262~^0.^0^^~4~^~PIK~^^^^^^^^^^~06/01/2010~
-~10179~^~263~^0.^0^^~4~^~PIK~^^^^^^^^^^~06/01/2010~
-~10179~^~268~^997.^0^^~4~^~PIK~^^^^^^^^^^~06/01/2010~
-~10179~^~301~^53.^0^^~4~^~PIK~^^^^^^^^^^~06/01/2010~
-~10179~^~304~^23.^0^^~4~^~PIK~^^^^^^^^^^~06/01/2010~
-~10179~^~305~^251.^0^^~4~^~PIK~^^^^^^^^^^~06/01/2010~
-~10179~^~306~^353.^0^^~4~^~PIK~^^^^^^^^^^~06/01/2010~
-~10179~^~307~^94.^0^^~4~^~PIK~^^^^^^^^^^~06/01/2010~
-~10179~^~318~^17.^0^^~4~^~PIK~^^^^^^^^^^~06/01/2010~
-~10179~^~319~^5.^0^^~4~^~PIK~^^^^^^^^^^~06/01/2010~
-~10179~^~320~^5.^0^^~4~^~PIK~^^^^^^^^^^~06/01/2010~
-~10179~^~321~^0.^0^^~4~^~PIK~^^^^^^^^^^~06/01/2010~
-~10179~^~322~^0.^0^^~4~^~PIK~^^^^^^^^^^~06/01/2010~
-~10179~^~324~^25.^0^^~4~^~PIK~^^^^^^^^^^~06/01/2010~
-~10179~^~334~^0.^0^^~4~^~PIK~^^^^^^^^^^~06/01/2010~
-~10179~^~337~^0.^0^^~4~^~PIK~^^^^^^^^^^~06/01/2010~
-~10179~^~338~^0.^0^^~4~^~PIK~^^^^^^^^^^~06/01/2010~
-~10179~^~417~^0.^0^^~4~^~PIK~^^^^^^^^^^~06/01/2010~
-~10179~^~431~^0.^0^^~4~^~PIK~^^^^^^^^^^~06/01/2010~
-~10179~^~432~^0.^0^^~4~^~PIK~^^^^^^^^^^~06/01/2010~
-~10179~^~435~^0.^0^^~4~^~NC~^^^^^^^^^^~06/01/2010~
-~10179~^~601~^79.^0^^~1~^~PAK~^^^^^^^^^^~06/01/2010~
-~10180~^~208~^256.^0^^~4~^~PIK~^^^^^^^^^^~06/01/2010~
-~10180~^~262~^0.^0^^~4~^~PIK~^^^^^^^^^^~06/01/2010~
-~10180~^~263~^0.^0^^~4~^~PIK~^^^^^^^^^^~06/01/2010~
-~10180~^~268~^1072.^0^^~4~^~PIK~^^^^^^^^^^~06/01/2010~
-~10180~^~301~^48.^0^^~4~^~PIK~^^^^^^^^^^~06/01/2010~
-~10180~^~304~^20.^0^^~4~^~PIK~^^^^^^^^^^~06/01/2010~
-~10180~^~305~^222.^0^^~4~^~PIK~^^^^^^^^^^~06/01/2010~
-~10180~^~306~^313.^0^^~4~^~PIK~^^^^^^^^^^~06/01/2010~
-~10180~^~307~^84.^0^^~4~^~PIK~^^^^^^^^^^~06/01/2010~
-~10180~^~318~^18.^0^^~4~^~PIK~^^^^^^^^^^~06/01/2010~
-~10180~^~319~^6.^0^^~4~^~PIK~^^^^^^^^^^~06/01/2010~
-~10180~^~320~^6.^0^^~4~^~PIK~^^^^^^^^^^~06/01/2010~
-~10180~^~321~^0.^0^^~4~^~PIK~^^^^^^^^^^~06/01/2010~
-~10180~^~322~^0.^0^^~4~^~PIK~^^^^^^^^^^~06/01/2010~
-~10180~^~324~^26.^0^^~4~^~PIK~^^^^^^^^^^~06/01/2010~
-~10180~^~334~^0.^0^^~4~^~PIK~^^^^^^^^^^~06/01/2010~
-~10180~^~337~^0.^0^^~4~^~PIK~^^^^^^^^^^~06/01/2010~
-~10180~^~338~^0.^0^^~4~^~PIK~^^^^^^^^^^~06/01/2010~
-~10180~^~417~^0.^0^^~4~^~PIK~^^^^^^^^^^~06/01/2010~
-~10180~^~431~^0.^0^^~4~^~PIK~^^^^^^^^^^~06/01/2010~
-~10180~^~432~^0.^0^^~4~^~PIK~^^^^^^^^^^~06/01/2010~
-~10180~^~435~^0.^0^^~4~^~NC~^^^^^^^^^^~06/01/2010~
-~10180~^~601~^78.^0^^~1~^~PAK~^^^^^^^^^^~06/01/2010~
-~10181~^~208~^172.^0^^~4~^~NC~^^^^^^^^^^~06/01/2010~
-~10181~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2003~
-~10181~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2003~
-~10181~^~268~^718.^0^^~4~^~NC~^^^^^^^^^^~06/01/2010~
-~10181~^~301~^8.^6^0.^~1~^~A~^^^1^8.^9.^5^7.^9.^~2, 3~^~04/01/2010~
-~10181~^~304~^26.^6^0.^~1~^~A~^^^1^25.^27.^5^25.^26.^~2, 3~^~04/01/2010~
-~10181~^~305~^293.^6^3.^~1~^~A~^^^1^285.^306.^5^283.^302.^~2, 3~^~04/01/2010~
-~10181~^~306~^390.^6^5.^~1~^~A~^^^1^374.^409.^5^374.^404.^~2, 3~^~04/01/2010~
-~10181~^~307~^87.^6^1.^~1~^~A~^^^1^83.^92.^5^84.^90.^~2, 3~^~04/01/2010~
-~10181~^~318~^9.^0^^~4~^~NC~^^^^^^^^^^~06/01/2010~
-~10181~^~319~^3.^0^^~4~^~BFSN~^~10120~^^^^^^^^^~04/01/2010~
-~10181~^~320~^3.^0^^~4~^~NC~^^^^^^^^^^~06/01/2010~
-~10181~^~321~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2003~
-~10181~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2003~
-~10181~^~324~^20.^0^^~4~^~BFFN~^^^^^^^^^^~03/01/2009~
-~10181~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2003~
-~10181~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2003~
-~10181~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2003~
-~10181~^~417~^0.^0^^~4~^~BFPN~^~10068~^^^^^^^^^~04/01/2010~
-~10181~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~
-~10181~^~432~^0.^0^^~4~^~BFPN~^^^^^^^^^^~06/01/2010~
-~10181~^~435~^0.^0^^~4~^~NC~^^^^^^^^^^~06/01/2010~
-~10181~^~601~^69.^6^1.^~1~^~A~^^^1^65.^72.^5^66.^71.^~2, 3~^~04/01/2010~
-~10182~^~208~^162.^0^^~4~^~NC~^^^^^^^^^^~12/01/1992~
-~10182~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2003~
-~10182~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2003~
-~10182~^~268~^678.^0^^~4~^^^^^^^^^^^~03/01/2009~
-~10182~^~301~^7.^6^1.^~1~^^^^^^^^^^^~12/01/1992~
-~10182~^~304~^18.^28^0.^~1~^^^^^^^^^^^~12/01/1992~
-~10182~^~305~^236.^31^7.^~1~^^^^^^^^^^^~12/01/1992~
-~10182~^~306~^297.^70^6.^~1~^^^^^^^^^^^~12/01/1992~
-~10182~^~307~^1278.^74^31.^~1~^^^^^^^^^^^~12/01/1992~
-~10182~^~318~^0.^0^^~4~^^^^^^^^^^^~12/01/1992~
-~10182~^~319~^0.^0^^~4~^~NR~^^^^^^^^^^~01/01/2003~
-~10182~^~320~^0.^0^^~4~^~NC~^^^^^^^^^^~03/01/2009~
-~10182~^~321~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2003~
-~10182~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2003~
-~10182~^~324~^26.^0^^~4~^~BFNN~^^^^^^^^^^~03/01/2009~
-~10182~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2003~
-~10182~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2003~
-~10182~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2003~
-~10182~^~417~^3.^0^^~1~^^^^^^^^^^^~12/01/1992~
-~10182~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~
-~10182~^~432~^3.^0^^~1~^^^^^^^^^^^~03/01/2009~
-~10182~^~435~^3.^0^^~4~^~NC~^^^^^^^^^^~03/01/2009~
-~10182~^~601~^53.^19^2.^~1~^^^^^^^^^^^~12/01/1992~
-~10182~^~636~^0.^0^^~4~^^^^^^^^^^^~12/01/1992~
-~10183~^~208~^165.^0^^~4~^~NC~^^^^^^^^^^~12/01/1992~
-~10183~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2003~
-~10183~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2003~
-~10183~^~268~^690.^0^^~4~^^^^^^^^^^^~03/01/2009~
-~10183~^~301~^8.^0^^~1~^^^^^^^^^^^~12/01/1992~
-~10183~^~304~^19.^0^^~1~^^^^^^^^^^^~12/01/1992~
-~10183~^~305~^248.^0^^~1~^^^^^^^^^^^~12/01/1992~
-~10183~^~306~^362.^0^^~1~^^^^^^^^^^^~12/01/1992~
-~10183~^~307~^1385.^0^^~1~^^^^^^^^^^^~12/01/1992~
-~10183~^~318~^0.^0^^~4~^^^^^^^^^^^~12/01/1992~
-~10183~^~319~^0.^0^^~4~^~NR~^^^^^^^^^^~01/01/2003~
-~10183~^~320~^0.^0^^~4~^~NC~^^^^^^^^^^~03/01/2009~
-~10183~^~321~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2003~
-~10183~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2003~
-~10183~^~324~^32.^0^^~4~^~BFNN~^^^^^^^^^^~03/01/2009~
-~10183~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2003~
-~10183~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2003~
-~10183~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2003~
-~10183~^~417~^3.^0^^~1~^^^^^^^^^^^~12/01/1992~
-~10183~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~
-~10183~^~432~^3.^0^^~1~^^^^^^^^^^^~03/01/2009~
-~10183~^~435~^3.^0^^~4~^~NC~^^^^^^^^^^~03/01/2009~
-~10183~^~601~^57.^0^^~1~^^^^^^^^^^^~03/01/2009~
-~10183~^~636~^0.^0^^~4~^^^^^^^^^^^~12/01/1992~
-~10184~^~208~^144.^0^^~4~^~NC~^^^^^^^^^^~12/01/1992~
-~10184~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2003~
-~10184~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2003~
-~10184~^~268~^602.^0^^~4~^^^^^^^^^^^~03/01/2009~
-~10184~^~301~^6.^3^^~1~^^^^^^^^^^^~12/01/1992~
-~10184~^~304~^16.^32^0.^~1~^^^^^^^^^^^~12/01/1992~
-~10184~^~305~^207.^32^6.^~1~^^^^^^^^^^^~12/01/1992~
-~10184~^~306~^334.^28^4.^~1~^^^^^^^^^^^~12/01/1992~
-~10184~^~307~^1276.^36^32.^~1~^^^^^^^^^^^~12/01/1992~
-~10184~^~318~^0.^0^^~4~^^^^^^^^^^^~12/01/1992~
-~10184~^~319~^0.^0^^~4~^~NR~^^^^^^^^^^~01/01/2003~
-~10184~^~320~^0.^0^^~4~^~NC~^^^^^^^^^^~03/01/2009~
-~10184~^~321~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2003~
-~10184~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2003~
-~10184~^~324~^22.^0^^~4~^~BFNN~^^^^^^^^^^~03/01/2009~
-~10184~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2003~
-~10184~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2003~
-~10184~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2003~
-~10184~^~417~^6.^0^^~1~^^^^^^^^^^^~12/01/1992~
-~10184~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~
-~10184~^~432~^6.^0^^~1~^^^^^^^^^^^~03/01/2009~
-~10184~^~435~^6.^0^^~4~^~NC~^^^^^^^^^^~03/01/2009~
-~10184~^~601~^38.^5^3.^~1~^^^^^^^^^^^~12/01/1992~
-~10184~^~636~^0.^0^^~4~^^^^^^^^^^^~12/01/1992~
-~10185~^~208~^167.^0^^~4~^~NC~^^^^^^^^^^~12/01/1992~
-~10185~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2003~
-~10185~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2003~
-~10185~^~268~^699.^0^^~4~^^^^^^^^^^^~03/01/2009~
-~10185~^~301~^7.^4^^~1~^^^^^^^^^^^~12/01/1992~
-~10185~^~304~^20.^8^0.^~1~^^^^^^^^^^^~12/01/1992~
-~10185~^~305~^221.^8^14.^~1~^^^^^^^^^^^~12/01/1992~
-~10185~^~306~^351.^8^17.^~1~^^^^^^^^^^^~12/01/1992~
-~10185~^~307~^1068.^8^71.^~1~^^^^^^^^^^^~12/01/1992~
-~10185~^~318~^0.^0^^~4~^^^^^^^^^^^~12/01/1992~
-~10185~^~319~^0.^0^^~4~^~NR~^^^^^^^^^^~01/01/2003~
-~10185~^~320~^0.^0^^~4~^~NC~^^^^^^^^^^~03/01/2009~
-~10185~^~321~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2003~
-~10185~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2003~
-~10185~^~324~^30.^0^^~4~^~BFNN~^^^^^^^^^^~03/01/2009~
-~10185~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2003~
-~10185~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2003~
-~10185~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2003~
-~10185~^~417~^5.^2^^~1~^^^^^^^^^^^~12/01/1992~
-~10185~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~
-~10185~^~432~^5.^2^^~1~^^^^^^^^^^^~03/01/2009~
-~10185~^~435~^5.^0^^~4~^~NC~^^^^^^^^^^~03/01/2009~
-~10185~^~601~^41.^6^4.^~1~^^^^^^^^^^^~12/01/1992~
-~10185~^~636~^0.^0^^~4~^^^^^^^^^^^~12/01/1992~
-~10186~^~208~^196.^0^^~4~^~PIK~^^^^^^^^^^~06/01/2010~
-~10186~^~262~^0.^0^^~4~^~PIK~^^^^^^^^^^~06/01/2010~
-~10186~^~263~^0.^0^^~4~^~PIK~^^^^^^^^^^~06/01/2010~
-~10186~^~268~^821.^0^^~4~^~PIK~^^^^^^^^^^~06/01/2010~
-~10186~^~301~^12.^0^^~1~^~PAK~^^^^^^^^^^~06/01/2010~
-~10186~^~304~^25.^0^^~1~^~PAK~^^^^^^^^^^~06/01/2010~
-~10186~^~305~^283.^0^^~1~^~PAK~^^^^^^^^^^~06/01/2010~
-~10186~^~306~^376.^0^^~1~^~PAK~^^^^^^^^^^~06/01/2010~
-~10186~^~307~^86.^0^^~1~^~PAK~^^^^^^^^^^~06/01/2010~
-~10186~^~318~^13.^0^^~4~^~PIK~^^^^^^^^^^~06/01/2010~
-~10186~^~319~^4.^0^^~4~^~PIK~^^^^^^^^^^~06/01/2010~
-~10186~^~320~^4.^0^^~4~^~PIK~^^^^^^^^^^~06/01/2010~
-~10186~^~321~^0.^0^^~4~^~PIK~^^^^^^^^^^~06/01/2010~
-~10186~^~322~^0.^0^^~4~^~PIK~^^^^^^^^^^~06/01/2010~
-~10186~^~324~^23.^0^^~4~^~PIK~^^^^^^^^^^~06/01/2010~
-~10186~^~334~^0.^0^^~4~^~PIK~^^^^^^^^^^~06/01/2010~
-~10186~^~337~^0.^0^^~4~^~PIK~^^^^^^^^^^~06/01/2010~
-~10186~^~338~^0.^0^^~4~^~PIK~^^^^^^^^^^~06/01/2010~
-~10186~^~417~^0.^0^^~4~^~PIK~^^^^^^^^^^~06/01/2010~
-~10186~^~431~^0.^0^^~4~^~PIK~^^^^^^^^^^~06/01/2010~
-~10186~^~432~^0.^0^^~4~^~PIK~^^^^^^^^^^~06/01/2010~
-~10186~^~435~^0.^0^^~4~^~NC~^^^^^^^^^^~06/01/2010~
-~10186~^~601~^70.^0^^~1~^~PAK~^^^^^^^^^^~06/01/2010~
-~10187~^~208~^216.^0^^~4~^~NC~^^^^^^^^^^~12/01/1992~
-~10187~^~268~^904.^0^^~4~^^^^^^^^^^^
-~10187~^~301~^19.^0^^~1~^^^^^^^^^^^~12/01/1992~
-~10187~^~304~^21.^0^^~1~^^^^^^^^^^^~12/01/1992~
-~10187~^~305~^200.^0^^~1~^^^^^^^^^^^~12/01/1992~
-~10187~^~306~^335.^0^^~1~^^^^^^^^^^^~12/01/1992~
-~10187~^~307~^55.^0^^~1~^^^^^^^^^^^~12/01/1992~
-~10187~^~318~^7.^0^^~1~^^^^^^^^^^^~12/01/1992~
-~10187~^~319~^2.^0^^~1~^^^^^^^^^^^~06/01/2002~
-~10187~^~320~^2.^0^^~1~^^^^^^^^^^^~06/01/2002~
-~10187~^~417~^5.^0^^~1~^^^^^^^^^^^~12/01/1992~
-~10187~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~
-~10187~^~432~^5.^0^^~1~^^^^^^^^^^^~12/01/1992~
-~10187~^~435~^5.^0^^~4~^~NC~^^^^^^^^^^~01/01/2001~
-~10187~^~601~^67.^0^^~1~^^^^^^^^^^^~12/01/1992~
-~10188~^~208~^238.^0^^~4~^~PIK~^^^^^^^^^^~03/01/2009~
-~10188~^~262~^0.^0^^~4~^~PIK~^^^^^^^^^^~03/01/2009~
-~10188~^~263~^0.^0^^~4~^~PIK~^^^^^^^^^^~03/01/2009~
-~10188~^~268~^995.^0^^~4~^~PIK~^^^^^^^^^^~03/01/2009~
-~10188~^~301~^20.^0^^~1~^~PAK~^^^^^^^^^^~03/01/2009~
-~10188~^~304~^24.^0^^~1~^~PAK~^^^^^^^^^^~03/01/2009~
-~10188~^~305~^221.^0^^~1~^~PAK~^^^^^^^^^^~06/01/2009~
-~10188~^~306~^341.^0^^~1~^~PAK~^^^^^^^^^^~03/01/2009~
-~10188~^~307~^57.^0^^~1~^~PAK~^^^^^^^^^^~03/01/2009~
-~10188~^~318~^7.^0^^~1~^~PAK~^^^^^^^^^^~03/01/2009~
-~10188~^~319~^2.^0^^~4~^~PIK~^^^^^^^^^^~03/01/2009~
-~10188~^~320~^2.^0^^~4~^~PIK~^^^^^^^^^^~03/01/2009~
-~10188~^~321~^0.^0^^~4~^~PIK~^^^^^^^^^^~03/01/2009~
-~10188~^~322~^0.^0^^~4~^~PIK~^^^^^^^^^^~03/01/2009~
-~10188~^~324~^38.^0^^~4~^~PIK~^^^^^^^^^^~03/01/2009~
-~10188~^~334~^0.^0^^~4~^~PIK~^^^^^^^^^^~03/01/2009~
-~10188~^~337~^0.^0^^~4~^~PIK~^^^^^^^^^^~03/01/2009~
-~10188~^~338~^0.^0^^~4~^~PIK~^^^^^^^^^^~03/01/2009~
-~10188~^~417~^2.^0^^~4~^~PIK~^^^^^^^^^^~03/01/2009~
-~10188~^~431~^0.^0^^~4~^~PIK~^^^^^^^^^^~03/01/2009~
-~10188~^~432~^2.^0^^~4~^~PIK~^^^^^^^^^^~03/01/2009~
-~10188~^~435~^2.^0^^~4~^~NC~^^^^^^^^^^~06/01/2009~
-~10188~^~601~^88.^0^^~1~^~PAK~^^^^^^^^^^~03/01/2009~
-~10189~^~208~^229.^0^^~4~^~NC~^^^^^^^^^^~05/01/2014~
-~10189~^~262~^0.^0^^~4~^~PIK~^^^^^^^^^^~05/01/2014~
-~10189~^~263~^0.^0^^~4~^~PIK~^^^^^^^^^^~05/01/2014~
-~10189~^~268~^958.^0^^~4~^~NC~^^^^^^^^^^~05/01/2014~
-~10189~^~301~^9.^0^^~1~^~PAK~^^^^^^^^^^~05/01/2014~
-~10189~^~304~^25.^0^^~1~^~PAK~^^^^^^^^^^~05/01/2014~
-~10189~^~305~^222.^0^^~1~^~PAK~^^^^^^^^^^~05/01/2014~
-~10189~^~306~^366.^0^^~1~^~PAK~^^^^^^^^^^~05/01/2014~
-~10189~^~307~^86.^0^^~1~^~PAK~^^^^^^^^^^~05/01/2014~
-~10189~^~318~^16.^0^^~1~^~PAK~^^^^^^^^^^~05/01/2014~
-~10189~^~319~^5.^0^^~1~^~PAK~^^^^^^^^^^~05/01/2014~
-~10189~^~320~^5.^0^^~1~^~PAK~^^^^^^^^^^~05/01/2014~
-~10189~^~321~^0.^0^^~4~^~PIK~^^^^^^^^^^~05/01/2014~
-~10189~^~322~^0.^0^^~4~^~PIK~^^^^^^^^^^~05/01/2014~
-~10189~^~324~^10.^0^^~1~^~PAK~^^^^^^^^^^~05/01/2014~
-~10189~^~334~^0.^0^^~4~^~PIK~^^^^^^^^^^~05/01/2014~
-~10189~^~337~^0.^0^^~4~^~PIK~^^^^^^^^^^~05/01/2014~
-~10189~^~338~^0.^0^^~4~^~PIK~^^^^^^^^^^~05/01/2014~
-~10189~^~417~^0.^0^^~4~^~PIK~^^^^^^^^^^~05/01/2014~
-~10189~^~431~^0.^0^^~4~^~PIK~^^^^^^^^^^~05/01/2014~
-~10189~^~432~^0.^0^^~4~^~PIK~^^^^^^^^^^~05/01/2014~
-~10189~^~435~^0.^0^^~4~^~NC~^^^^^^^^^^~05/01/2014~
-~10189~^~601~^75.^0^^~1~^~PAK~^^^^^^^^^^~05/01/2014~
-~10192~^~208~^224.^0^^~4~^~PIK~^^^^^^^^^^~06/01/2010~
-~10192~^~262~^0.^0^^~4~^~PIK~^^^^^^^^^^~06/01/2010~
-~10192~^~263~^0.^0^^~4~^~PIK~^^^^^^^^^^~06/01/2010~
-~10192~^~268~^936.^0^^~4~^~PIK~^^^^^^^^^^~06/01/2010~
-~10192~^~301~^31.^0^^~1~^~PAK~^^^^^^^^^^~06/01/2010~
-~10192~^~304~^16.^0^^~1~^~PAK~^^^^^^^^^^~06/01/2010~
-~10192~^~305~^154.^0^^~1~^~PAK~^^^^^^^^^^~06/01/2010~
-~10192~^~306~^247.^0^^~1~^~PAK~^^^^^^^^^^~06/01/2010~
-~10192~^~307~^87.^0^^~1~^~PAK~^^^^^^^^^^~06/01/2010~
-~10192~^~318~^22.^0^^~4~^~PIK~^^^^^^^^^^~06/01/2010~
-~10192~^~319~^7.^0^^~4~^~PIK~^^^^^^^^^^~06/01/2010~
-~10192~^~320~^7.^0^^~4~^~PIK~^^^^^^^^^^~06/01/2010~
-~10192~^~321~^0.^0^^~4~^~PIK~^^^^^^^^^^~06/01/2010~
-~10192~^~322~^0.^0^^~4~^~PIK~^^^^^^^^^^~06/01/2010~
-~10192~^~324~^42.^0^^~4~^~PIK~^^^^^^^^^^~06/01/2010~
-~10192~^~334~^0.^0^^~4~^~PIK~^^^^^^^^^^~06/01/2010~
-~10192~^~337~^0.^0^^~4~^~PIK~^^^^^^^^^^~06/01/2010~
-~10192~^~338~^0.^0^^~4~^~PIK~^^^^^^^^^^~06/01/2010~
-~10192~^~417~^0.^0^^~4~^~PIK~^^^^^^^^^^~06/01/2010~
-~10192~^~431~^0.^0^^~4~^~PIK~^^^^^^^^^^~06/01/2010~
-~10192~^~432~^0.^0^^~4~^~PIK~^^^^^^^^^^~06/01/2010~
-~10192~^~435~^0.^0^^~4~^~NC~^^^^^^^^^^~06/01/2010~
-~10192~^~601~^69.^0^^~1~^~PAK~^^^^^^^^^^~06/01/2010~
-~10193~^~208~^292.^0^^~4~^~NC~^^^^^^^^^^~09/01/2012~
-~10193~^~262~^0.^0^^~4~^~PIK~^^^^^^^^^^~06/01/2010~
-~10193~^~263~^0.^0^^~4~^~PIK~^^^^^^^^^^~06/01/2010~
-~10193~^~268~^1223.^0^^~4~^~NC~^^^^^^^^^^~05/01/2013~
-~10193~^~301~^46.^0^^~1~^~PAK~^^^^^^^^^^~06/01/2010~
-~10193~^~304~^17.^0^^~1~^~PAK~^^^^^^^^^^~06/01/2010~
-~10193~^~305~^165.^0^^~1~^~PAK~^^^^^^^^^^~06/01/2010~
-~10193~^~306~^240.^0^^~1~^~PAK~^^^^^^^^^^~06/01/2010~
-~10193~^~307~^94.^0^^~1~^~PAK~^^^^^^^^^^~06/01/2010~
-~10193~^~318~^20.^0^^~4~^~NC~^^^^^^^^^^~06/01/2010~
-~10193~^~319~^6.^0^^~4~^~PIK~^^^^^^^^^^~06/01/2010~
-~10193~^~320~^6.^0^^~4~^~PIK~^^^^^^^^^^~06/01/2010~
-~10193~^~321~^0.^0^^~4~^~PIK~^^^^^^^^^^~06/01/2010~
-~10193~^~322~^0.^0^^~4~^~PIK~^^^^^^^^^^~06/01/2010~
-~10193~^~324~^48.^0^^~4~^~PIK~^^^^^^^^^^~06/01/2010~
-~10193~^~334~^0.^0^^~4~^~PIK~^^^^^^^^^^~06/01/2010~
-~10193~^~337~^0.^0^^~4~^~PIK~^^^^^^^^^^~06/01/2010~
-~10193~^~338~^0.^0^^~4~^~PIK~^^^^^^^^^^~06/01/2010~
-~10193~^~417~^0.^0^^~4~^~PIK~^^^^^^^^^^~06/01/2010~
-~10193~^~431~^0.^0^^~4~^~PIK~^^^^^^^^^^~06/01/2010~
-~10193~^~432~^0.^0^^~4~^~PIK~^^^^^^^^^^~06/01/2010~
-~10193~^~435~^0.^0^^~4~^~NC~^^^^^^^^^^~06/01/2010~
-~10193~^~601~^84.^0^^~1~^~PAK~^^^^^^^^^^~06/01/2010~
-~10194~^~208~^211.^0^^~4~^~NC~^^^^^^^^^^~12/01/1992~
-~10194~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2009~
-~10194~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2009~
-~10194~^~268~^883.^0^^~4~^^^^^^^^^^^~03/01/2009~
-~10194~^~301~^5.^0^^~1~^^^^^^^^^^^~12/01/1992~
-~10194~^~304~^20.^0^^~1~^^^^^^^^^^^~12/01/1992~
-~10194~^~305~^193.^0^^~1~^^^^^^^^^^^~12/01/1992~
-~10194~^~306~^384.^0^^~1~^^^^^^^^^^^~12/01/1992~
-~10194~^~307~^42.^0^^~1~^^^^^^^^^^^~12/01/1992~
-~10194~^~318~^6.^0^^~1~^^^^^^^^^^^~03/01/2009~
-~10194~^~319~^2.^0^^~4~^~NR~^^^^^^^^^^~06/01/2005~
-~10194~^~320~^0.^0^^~1~^~AS~^^^^^^^^^^~03/01/2009~
-~10194~^~321~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2009~
-~10194~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2009~
-~10194~^~324~^54.^0^^~4~^~BFFN~^^^^^^^^^^~03/01/2009~
-~10194~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2009~
-~10194~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2009~
-~10194~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2009~
-~10194~^~417~^6.^0^^~1~^^^^^^^^^^^~12/01/1992~
-~10194~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~
-~10194~^~432~^6.^0^^~1~^^^^^^^^^^^~03/01/2009~
-~10194~^~435~^6.^0^^~4~^~NC~^^^^^^^^^^~03/01/2009~
-~10194~^~601~^60.^0^^~1~^^^^^^^^^^^~12/01/1992~
-~10195~^~208~^255.^0^^~4~^~NC~^^^^^^^^^^~12/01/1992~
-~10195~^~268~^1067.^0^^~4~^^^^^^^^^^^
-~10195~^~301~^5.^0^^~1~^^^^^^^^^^^~12/01/1992~
-~10195~^~304~^17.^0^^~1~^^^^^^^^^^^~12/01/1992~
-~10195~^~305~^172.^0^^~1~^^^^^^^^^^^~12/01/1992~
-~10195~^~306~^387.^0^^~1~^^^^^^^^^^^~12/01/1992~
-~10195~^~307~^40.^0^^~1~^^^^^^^^^^^~12/01/1992~
-~10195~^~318~^7.^0^^~1~^^^^^^^^^^^~12/01/1992~
-~10195~^~319~^2.^0^^~1~^^^^^^^^^^^~06/01/2002~
-~10195~^~320~^2.^0^^~1~^^^^^^^^^^^~06/01/2002~
-~10195~^~417~^4.^0^^~1~^^^^^^^^^^^~12/01/1992~
-~10195~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~
-~10195~^~432~^4.^0^^~1~^^^^^^^^^^^~12/01/1992~
-~10195~^~435~^4.^0^^~4~^~NC~^^^^^^^^^^~01/01/2001~
-~10195~^~601~^73.^0^^~1~^^^^^^^^^^^~12/01/1992~
-~10196~^~208~^260.^0^^~4~^~NC~^^^^^^^^^^~12/01/1992~
-~10196~^~268~^1088.^0^^~4~^^^^^^^^^^^
-~10196~^~301~^28.^0^^~1~^^^^^^^^^^^~12/01/1992~
-~10196~^~304~^26.^0^^~1~^^^^^^^^^^^~12/01/1992~
-~10196~^~305~^237.^0^^~1~^^^^^^^^^^^~12/01/1992~
-~10196~^~306~^401.^0^^~1~^^^^^^^^^^^~12/01/1992~
-~10196~^~307~^62.^0^^~1~^^^^^^^^^^^~12/01/1992~
-~10196~^~318~^7.^0^^~1~^^^^^^^^^^^~12/01/1992~
-~10196~^~319~^2.^0^^~1~^^^^^^^^^^^~06/01/2002~
-~10196~^~320~^2.^0^^~1~^^^^^^^^^^^~06/01/2002~
-~10196~^~417~^8.^0^^~1~^^^^^^^^^^^~12/01/1992~
-~10196~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~
-~10196~^~432~^8.^0^^~1~^^^^^^^^^^^~12/01/1992~
-~10196~^~435~^8.^0^^~4~^~NC~^^^^^^^^^^~01/01/2001~
-~10196~^~601~^82.^0^^~1~^^^^^^^^^^^~12/01/1992~
-~10197~^~208~^273.^0^^~4~^~NC~^^^^^^^^^^~08/01/2004~
-~10197~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2003~
-~10197~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2003~
-~10197~^~268~^1142.^0^^~4~^^^^^^^^^^^~03/01/2009~
-~10197~^~301~^11.^0^^~1~^^^^^^^^^^^~07/01/2003~
-~10197~^~304~^24.^0^^~1~^^^^^^^^^^^~07/01/2003~
-~10197~^~305~^228.^0^^~1~^^^^^^^^^^^~07/01/2003~
-~10197~^~306~^428.^0^^~1~^^^^^^^^^^^~07/01/2003~
-~10197~^~307~^50.^0^^~1~^^^^^^^^^^^~07/01/2003~
-~10197~^~318~^7.^0^^~1~^^^^^^^^^^^~07/01/2003~
-~10197~^~319~^2.^0^^~4~^~NR~^^^^^^^^^^~01/01/2003~
-~10197~^~320~^2.^0^^~4~^~NC~^^^^^^^^^^~03/01/2009~
-~10197~^~321~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2003~
-~10197~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2003~
-~10197~^~324~^34.^0^^~4~^~BFFN~^^^^^^^^^^~03/01/2009~
-~10197~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2003~
-~10197~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2003~
-~10197~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2003~
-~10197~^~417~^7.^0^^~1~^^^^^^^^^^^~07/01/2003~
-~10197~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~
-~10197~^~432~^7.^0^^~1~^^^^^^^^^^^~03/01/2009~
-~10197~^~435~^7.^0^^~4~^~NC~^^^^^^^^^^~03/01/2009~
-~10197~^~601~^73.^0^^~1~^^^^^^^^^^^~07/01/2003~
-~10197~^~636~^3.^0^^~1~^^^^^^^^^^^~12/01/1992~
-~10198~^~208~^252.^0^^~4~^~NC~^^^^^^^^^^~12/01/1992~
-~10198~^~268~^1054.^0^^~4~^^^^^^^^^^^~03/01/2009~
-~10198~^~301~^6.^0^^~1~^^^^^^^^^^^~12/01/1992~
-~10198~^~304~^22.^0^^~1~^^^^^^^^^^^~12/01/1992~
-~10198~^~305~^214.^0^^~1~^^^^^^^^^^^~12/01/1992~
-~10198~^~306~^346.^0^^~1~^^^^^^^^^^^~12/01/1992~
-~10198~^~307~^48.^0^^~1~^^^^^^^^^^^~12/01/1992~
-~10198~^~318~^9.^0^^~1~^^^^^^^^^^^~12/01/1992~
-~10198~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2009~
-~10198~^~320~^0.^0^^~4~^~NR~^^^^^^^^^^~03/01/2009~
-~10198~^~324~^43.^0^^~4~^~BFFN~^^^^^^^^^^~03/01/2009~
-~10198~^~417~^8.^0^^~1~^^^^^^^^^^^~12/01/1992~
-~10198~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~
-~10198~^~432~^8.^0^^~1~^^^^^^^^^^^~03/01/2009~
-~10198~^~435~^8.^0^^~4~^~NC~^^^^^^^^^^~06/01/2009~
-~10198~^~601~^81.^15^2.^~1~^^^^^^^^^^^~12/01/1992~
-~10199~^~208~^152.^0^^~4~^~NC~^^^^^^^^^^~12/01/1992~
-~10199~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2003~
-~10199~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2003~
-~10199~^~268~^636.^0^^~4~^^^^^^^^^^^~03/01/2009~
-~10199~^~301~^5.^5^0.^~1~^^^^^^^^^^^~12/01/1992~
-~10199~^~304~^22.^26^0.^~1~^^^^^^^^^^^~12/01/1992~
-~10199~^~305~^207.^5^1.^~1~^^^^^^^^^^^~12/01/1992~
-~10199~^~306~^421.^146^2.^~1~^^^^^^^^^^^~12/01/1992~
-~10199~^~307~^45.^164^1.^~1~^^^^^^^^^^^~12/01/1992~
-~10199~^~318~^6.^1^^~1~^^^^^^^^^^^~03/01/2009~
-~10199~^~319~^2.^0^^~4~^~NR~^^^^^^^^^^~01/01/2003~
-~10199~^~320~^2.^0^^~4~^~NC~^^^^^^^^^^~03/01/2009~
-~10199~^~321~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2003~
-~10199~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2003~
-~10199~^~324~^25.^0^^~4~^~BFFN~^^^^^^^^^^~03/01/2009~
-~10199~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2003~
-~10199~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2003~
-~10199~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2003~
-~10199~^~417~^7.^4^1.^~1~^^^^^^^^^^^~12/01/1992~
-~10199~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~
-~10199~^~432~^7.^4^1.^~1~^^^^^^^^^^^~03/01/2009~
-~10199~^~435~^7.^0^^~4~^~NC~^^^^^^^^^^~03/01/2009~
-~10199~^~601~^55.^58^1.^~1~^^^^^^^^^^^~12/01/1992~
-~10200~^~208~^211.^0^^~4~^~NC~^^^^^^^^^^~12/01/1992~
-~10200~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2003~
-~10200~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2003~
-~10200~^~268~^883.^0^^~4~^^^^^^^^^^^~03/01/2009~
-~10200~^~301~^5.^0^^~1~^^^^^^^^^^^~12/01/1992~
-~10200~^~304~^19.^0^^~1~^^^^^^^^^^^~12/01/1992~
-~10200~^~305~^173.^0^^~1~^^^^^^^^^^^~12/01/1992~
-~10200~^~306~^405.^0^^~1~^^^^^^^^^^^~12/01/1992~
-~10200~^~307~^41.^0^^~1~^^^^^^^^^^^~12/01/1992~
-~10200~^~318~^6.^0^^~1~^^^^^^^^^^^~08/01/2004~
-~10200~^~319~^2.^0^^~4~^~NR~^^^^^^^^^^~10/01/2004~
-~10200~^~320~^2.^0^^~4~^~NC~^^^^^^^^^^~03/01/2009~
-~10200~^~321~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2003~
-~10200~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2003~
-~10200~^~324~^35.^0^^~4~^~BFFN~^^^^^^^^^^~03/01/2009~
-~10200~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2003~
-~10200~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2003~
-~10200~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2003~
-~10200~^~417~^4.^0^^~1~^^^^^^^^^^^~12/01/1992~
-~10200~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~
-~10200~^~432~^4.^0^^~1~^^^^^^^^^^^~03/01/2009~
-~10200~^~435~^4.^0^^~4~^~NC~^^^^^^^^^^~03/01/2009~
-~10200~^~601~^71.^0^^~1~^^^^^^^^^^^~12/01/1992~
-~10201~^~208~^216.^0^^~4~^~NC~^^^^^^^^^^~12/01/1992~
-~10201~^~268~^904.^0^^~4~^^^^^^^^^^^
-~10201~^~301~^31.^5^1.^~1~^^^^^^^^^^^~12/01/1992~
-~10201~^~304~^28.^8^1.^~1~^^^^^^^^^^^~12/01/1992~
-~10201~^~305~^245.^6^4.^~1~^^^^^^^^^^^~12/01/1992~
-~10201~^~306~^420.^17^9.^~1~^^^^^^^^^^^~12/01/1992~
-~10201~^~307~^65.^17^1.^~1~^^^^^^^^^^^~12/01/1992~
-~10201~^~318~^6.^1^^~1~^^^^^^^^^^^~12/01/1992~
-~10201~^~319~^2.^1^^~1~^^^^^^^^^^^~06/01/2002~
-~10201~^~320~^2.^1^^~1~^^^^^^^^^^^~06/01/2002~
-~10201~^~417~^9.^1^^~1~^^^^^^^^^^^~12/01/1992~
-~10201~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~
-~10201~^~432~^9.^1^^~1~^^^^^^^^^^^~12/01/1992~
-~10201~^~435~^9.^0^^~4~^~NC~^^^^^^^^^^~01/01/2001~
-~10201~^~601~^81.^15^1.^~1~^^^^^^^^^^^~12/01/1992~
-~10202~^~208~^224.^0^^~4~^~NC~^^^^^^^^^^~12/01/1992~
-~10202~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2003~
-~10202~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2003~
-~10202~^~268~^937.^0^^~4~^^^^^^^^^^^~03/01/2009~
-~10202~^~301~^5.^0^^~1~^^^^^^^^^^^~12/01/1992~
-~10202~^~304~^27.^0^^~1~^^^^^^^^^^^~12/01/1992~
-~10202~^~305~^237.^0^^~1~^^^^^^^^^^^~12/01/1992~
-~10202~^~306~^454.^0^^~1~^^^^^^^^^^^~12/01/1992~
-~10202~^~307~^52.^0^^~1~^^^^^^^^^^^~12/01/1992~
-~10202~^~318~^6.^0^^~1~^^^^^^^^^^^~08/01/2004~
-~10202~^~319~^2.^0^^~4~^~NR~^^^^^^^^^^~10/01/2004~
-~10202~^~320~^2.^0^^~4~^~NC~^^^^^^^^^^~03/01/2009~
-~10202~^~321~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2003~
-~10202~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2003~
-~10202~^~324~^22.^0^^~4~^~BFFN~^^^^^^^^^^~03/01/2009~
-~10202~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2003~
-~10202~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2003~
-~10202~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2003~
-~10202~^~417~^8.^0^^~1~^^^^^^^^^^^~12/01/1992~
-~10202~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~
-~10202~^~432~^8.^0^^~1~^^^^^^^^^^^~03/01/2009~
-~10202~^~435~^8.^0^^~4~^~NC~^^^^^^^^^^~03/01/2009~
-~10202~^~601~^70.^0^^~1~^^^^^^^^^^^~12/01/1992~
-~10202~^~636~^3.^0^^~1~^^^^^^^^^^^~12/01/1992~
-~10203~^~208~^214.^0^^~4~^~NC~^^^^^^^^^^~12/01/1992~
-~10203~^~268~^895.^0^^~4~^^^^^^^^^^^~03/01/2009~
-~10203~^~301~^6.^5^0.^~1~^^^^^^^^^^^~12/01/1992~
-~10203~^~304~^24.^5^0.^~1~^^^^^^^^^^^~12/01/1992~
-~10203~^~305~^222.^5^5.^~1~^^^^^^^^^^^~12/01/1992~
-~10203~^~306~^363.^5^7.^~1~^^^^^^^^^^^~12/01/1992~
-~10203~^~307~^50.^5^2.^~1~^^^^^^^^^^^~12/01/1992~
-~10203~^~318~^8.^0^^~1~^^^^^^^^^^^~12/01/1992~
-~10203~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2009~
-~10203~^~320~^0.^0^^~4~^~NR~^^^^^^^^^^~03/01/2009~
-~10203~^~324~^29.^0^^~4~^~BFFN~^^^^^^^^^^~03/01/2009~
-~10203~^~417~^9.^0^^~1~^^^^^^^^^^^~12/01/1992~
-~10203~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~
-~10203~^~432~^9.^0^^~1~^^^^^^^^^^^~03/01/2009~
-~10203~^~435~^9.^0^^~4~^~NC~^^^^^^^^^^~06/01/2009~
-~10203~^~601~^83.^15^3.^~1~^^^^^^^^^^^~12/01/1992~
-~10204~^~208~^189.^0^^~4~^~PIK~^^^^^^^^^^~03/01/2007~
-~10204~^~262~^0.^0^^~4~^~PIK~^^^^^^^^^^~03/01/2007~
-~10204~^~263~^0.^0^^~4~^~PIK~^^^^^^^^^^~03/01/2007~
-~10204~^~268~^792.^0^^~4~^~PIK~^^^^^^^^^^~03/01/2007~
-~10204~^~301~^22.^0^^~1~^~PAK~^^^^^^^^^^~03/01/2007~
-~10204~^~304~^21.^0^^~1~^~PAK~^^^^^^^^^^~03/01/2007~
-~10204~^~305~^193.^0^^~1~^~PAK~^^^^^^^^^^~03/01/2007~
-~10204~^~306~^318.^0^^~1~^~PAK~^^^^^^^^^^~03/01/2007~
-~10204~^~307~^63.^0^^~1~^~PAK~^^^^^^^^^^~03/01/2007~
-~10204~^~318~^8.^0^^~1~^~PAK~^^^^^^^^^^~03/01/2007~
-~10204~^~319~^2.^0^^~4~^~PIK~^^^^^^^^^^~03/01/2007~
-~10204~^~320~^2.^0^^~1~^~PAK~^^^^^^^^^^~03/01/2007~
-~10204~^~321~^0.^0^^~4~^~PIK~^^^^^^^^^^~03/01/2007~
-~10204~^~322~^0.^0^^~4~^~PIK~^^^^^^^^^^~03/01/2007~
-~10204~^~324~^29.^0^^~4~^~PIK~^^^^^^^^^^~03/01/2009~
-~10204~^~334~^0.^0^^~4~^~PIK~^^^^^^^^^^~03/01/2007~
-~10204~^~337~^0.^0^^~4~^~PIK~^^^^^^^^^^~03/01/2007~
-~10204~^~338~^0.^0^^~4~^~PIK~^^^^^^^^^^~03/01/2007~
-~10204~^~417~^0.^0^^~4~^~PIK~^^^^^^^^^^~03/01/2009~
-~10204~^~431~^0.^0^^~4~^~PIK~^^^^^^^^^^~03/01/2007~
-~10204~^~432~^0.^0^^~4~^~PIK~^^^^^^^^^^~03/01/2009~
-~10204~^~435~^0.^0^^~4~^~NC~^^^^^^^^^^~03/01/2009~
-~10204~^~601~^74.^0^^~4~^~PIK~^^^^^^^^^^~03/01/2007~
-~10205~^~208~^273.^0^^~4~^~PIK~^^^^^^^^^^~03/01/2007~
-~10205~^~262~^0.^0^^~4~^~PIK~^^^^^^^^^^~03/01/2009~
-~10205~^~263~^0.^0^^~4~^~PIK~^^^^^^^^^^~03/01/2009~
-~10205~^~268~^1141.^0^^~4~^~PIK~^^^^^^^^^^~03/01/2007~
-~10205~^~301~^34.^0^^~1~^~PAK~^^^^^^^^^^~03/01/2007~
-~10205~^~304~^23.^0^^~1~^~PAK~^^^^^^^^^^~03/01/2007~
-~10205~^~305~^202.^0^^~1~^~PAK~^^^^^^^^^^~03/01/2007~
-~10205~^~306~^288.^0^^~1~^~PAK~^^^^^^^^^^~03/01/2007~
-~10205~^~307~^58.^0^^~1~^~PAK~^^^^^^^^^^~03/01/2007~
-~10205~^~318~^6.^0^^~1~^~PAK~^^^^^^^^^^~03/01/2007~
-~10205~^~319~^2.^0^^~4~^~PIK~^^^^^^^^^^~03/01/2007~
-~10205~^~320~^2.^0^^~1~^~PAK~^^^^^^^^^^~03/01/2007~
-~10205~^~321~^0.^0^^~4~^~PIK~^^^^^^^^^^~03/01/2009~
-~10205~^~322~^0.^0^^~4~^~PIK~^^^^^^^^^^~03/01/2009~
-~10205~^~324~^50.^0^^~4~^~PIK~^^^^^^^^^^~03/01/2009~
-~10205~^~334~^0.^0^^~4~^~PIK~^^^^^^^^^^~03/01/2009~
-~10205~^~337~^0.^0^^~4~^~PIK~^^^^^^^^^^~03/01/2009~
-~10205~^~338~^0.^0^^~4~^~PIK~^^^^^^^^^^~03/01/2009~
-~10205~^~417~^0.^0^^~4~^~PIK~^^^^^^^^^^~03/01/2009~
-~10205~^~431~^0.^0^^~4~^~PIK~^^^^^^^^^^~03/01/2007~
-~10205~^~432~^0.^0^^~4~^~PIK~^^^^^^^^^^~03/01/2009~
-~10205~^~435~^0.^0^^~4~^~NC~^^^^^^^^^^~03/01/2009~
-~10205~^~601~^103.^0^^~1~^~PAK~^^^^^^^^^^~03/01/2007~
-~10206~^~208~^359.^0^^~4~^~PIK~^^^^^^^^^^~02/01/2011~
-~10206~^~262~^0.^0^^~4~^~PIK~^^^^^^^^^^~02/01/2011~
-~10206~^~263~^0.^0^^~4~^~PIK~^^^^^^^^^^~02/01/2011~
-~10206~^~268~^1500.^0^^~4~^~PIK~^^^^^^^^^^~02/01/2011~
-~10206~^~301~^25.^0^^~1~^~PAK~^^^^^^^^^^~12/01/1992~
-~10206~^~304~^22.^0^^~1~^~PAK~^^^^^^^^^^~02/01/2011~
-~10206~^~305~^214.^0^^~1~^~PAK~^^^^^^^^^^~02/01/2011~
-~10206~^~306~^322.^0^^~1~^~PAK~^^^^^^^^^^~02/01/2011~
-~10206~^~307~^52.^0^^~1~^~PAK~^^^^^^^^^^~12/01/1992~
-~10206~^~318~^8.^0^^~4~^~NC~^^^^^^^^^^~02/01/2011~
-~10206~^~319~^2.^0^^~4~^~PIK~^^^^^^^^^^~02/01/2011~
-~10206~^~320~^2.^0^^~4~^~NC~^^^^^^^^^^~02/01/2011~
-~10206~^~321~^0.^0^^~4~^~PIK~^^^^^^^^^^~02/01/2011~
-~10206~^~322~^0.^0^^~4~^~PIK~^^^^^^^^^^~02/01/2011~
-~10206~^~324~^72.^0^^~4~^~PIK~^^^^^^^^^^~03/01/2009~
-~10206~^~334~^0.^0^^~4~^~PIK~^^^^^^^^^^~02/01/2011~
-~10206~^~337~^0.^0^^~4~^~PIK~^^^^^^^^^^~02/01/2011~
-~10206~^~338~^0.^0^^~4~^~PIK~^^^^^^^^^^~02/01/2011~
-~10206~^~417~^4.^0^^~1~^~PAK~^^^^^^^^^^~02/01/2011~
-~10206~^~431~^0.^0^^~4~^~PIK~^^^^^^^^^^~02/01/2011~
-~10206~^~432~^4.^0^^~1~^~PAK~^^^^^^^^^^~02/01/2011~
-~10206~^~435~^4.^0^^~4~^~NC~^^^^^^^^^^~02/01/2011~
-~10206~^~601~^91.^0^^~1~^~PAK~^^^^^^^^^^~02/01/2011~
-~10207~^~208~^140.^0^^~4~^~NC~^^^^^^^^^^~07/01/2010~
-~10207~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2003~
-~10207~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2003~
-~10207~^~268~^584.^0^^~4~^~NC~^^^^^^^^^^~07/01/2010~
-~10207~^~301~^21.^12^2.^~1~^~A~^^^1^7.^32.^11^16.^25.^~2, 3~^~03/01/2007~
-~10207~^~304~^23.^12^0.^~1~^~A~^^^1^19.^25.^11^21.^23.^~2, 3~^~03/01/2007~
-~10207~^~305~^204.^12^3.^~1~^~A~^^^1^182.^219.^11^196.^211.^~2, 3~^~03/01/2007~
-~10207~^~306~^338.^12^4.^~1~^~A~^^^1^312.^367.^11^327.^348.^~2, 3~^~03/01/2007~
-~10207~^~307~^67.^12^1.^~1~^~A~^^^1^57.^78.^11^63.^70.^~2, 3~^~03/01/2007~
-~10207~^~318~^0.^0^^~1~^~AS~^^^^^^^^^^~03/01/2009~
-~10207~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2007~
-~10207~^~320~^0.^0^^~1~^~AS~^^^^^^^^^^~03/01/2009~
-~10207~^~321~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2003~
-~10207~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2003~
-~10207~^~324~^22.^0^^~4~^~BFFN~^^^^^^^^^^~03/01/2009~
-~10207~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2003~
-~10207~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2003~
-~10207~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2003~
-~10207~^~417~^0.^0^^~4~^~BFPN~^~10060~^^^^^^^^^~03/01/2009~
-~10207~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~
-~10207~^~432~^0.^0^^~4~^~BFPN~^^^^^^^^^^~07/01/2010~
-~10207~^~435~^0.^0^^~4~^~NC~^^^^^^^^^^~07/01/2010~
-~10207~^~601~^74.^0^^~4~^~BFYN~^~10208~^^^^^^^^^~03/01/2007~
-~10208~^~208~^247.^0^^~4~^~NC~^^^^^^^^^^~03/01/2009~
-~10208~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2007~
-~10208~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2007~
-~10208~^~268~^1034.^0^^~4~^~NC~^^^^^^^^^^~03/01/2009~
-~10208~^~301~^33.^12^3.^~1~^~A~^^^1^10.^54.^11^25.^41.^~2, 3~^~03/01/2007~
-~10208~^~304~^23.^12^0.^~1~^~A~^^^1^21.^26.^11^22.^24.^~2, 3~^~03/01/2007~
-~10208~^~305~^208.^12^4.^~1~^~A~^^^1^182.^230.^11^197.^217.^~2, 3~^~03/01/2007~
-~10208~^~306~^297.^12^5.^~1~^~A~^^^1^262.^319.^11^284.^308.^~2, 3~^~03/01/2007~
-~10208~^~307~^60.^12^1.^~1~^~A~^^^1^47.^70.^11^55.^64.^~2, 3~^~03/01/2007~
-~10208~^~318~^0.^0^^~1~^~AS~^^^^^^^^^^~03/01/2007~
-~10208~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2007~
-~10208~^~320~^0.^0^^~1~^~AS~^^^^^^^^^^~03/01/2007~
-~10208~^~321~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2007~
-~10208~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2007~
-~10208~^~324~^49.^0^^~4~^~BFFN~^^^^^^^^^^~03/01/2009~
-~10208~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2007~
-~10208~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2007~
-~10208~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2007~
-~10208~^~417~^0.^0^^~4~^~BFPN~^~10061~^^^^^^^^^~03/01/2009~
-~10208~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~
-~10208~^~432~^0.^0^^~4~^~BFPN~^^^^^^^^^^~03/01/2009~
-~10208~^~435~^0.^0^^~4~^~NC~^^^^^^^^^^~03/01/2009~
-~10208~^~601~^105.^4^11.^~1~^~A~^^^1^72.^125.^3^67.^142.^~2, 3~^~03/01/2007~
-~10209~^~208~^227.^0^^~4~^~NC~^^^^^^^^^^~02/01/2011~
-~10209~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2011~
-~10209~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2011~
-~10209~^~268~^951.^0^^~4~^~NC~^^^^^^^^^^~02/01/2011~
-~10209~^~301~^31.^0^^~4~^~BFNN~^~10035~^^^^^^^^^~02/01/2011~
-~10209~^~304~^22.^0^^~4~^~BFNN~^~10035~^^^^^^^^^~02/01/2011~
-~10209~^~305~^235.^0^^~4~^~BFNN~^~10035~^^^^^^^^^~02/01/2011~
-~10209~^~306~^390.^0^^~4~^~BFNN~^~10035~^^^^^^^^^~02/01/2011~
-~10209~^~307~^91.^0^^~4~^~BFNN~^~10035~^^^^^^^^^~02/01/2011~
-~10209~^~318~^5.^0^^~4~^~NC~^^^^^^^^^^~02/01/2011~
-~10209~^~319~^1.^0^^~4~^~BFSN~^~10035~^^^^^^^^^~02/01/2011~
-~10209~^~320~^1.^0^^~4~^~NC~^^^^^^^^^^~02/01/2011~
-~10209~^~321~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2011~
-~10209~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2011~
-~10209~^~324~^42.^0^^~4~^~BFFN~^^^^^^^^^^~03/01/2009~
-~10209~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2011~
-~10209~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2011~
-~10209~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2011~
-~10209~^~417~^0.^0^^~4~^~BFPN~^~10035~^^^^^^^^^~02/01/2011~
-~10209~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~
-~10209~^~432~^0.^0^^~4~^~BFPN~^^^^^^^^^^~02/01/2011~
-~10209~^~435~^0.^0^^~4~^~NC~^^^^^^^^^^~02/01/2011~
-~10209~^~601~^99.^6^1.^~1~^~A~^^^1^95.^104.^5^94.^102.^~2, 3~^~02/01/2011~
-~10210~^~208~^133.^0^^~4~^~PIK~^^^^^^^^^^~02/01/2011~
-~10210~^~262~^0.^0^^~4~^~PIK~^^^^^^^^^^~02/01/2011~
-~10210~^~263~^0.^0^^~4~^~PIK~^^^^^^^^^^~02/01/2011~
-~10210~^~268~^555.^0^^~4~^~PIK~^^^^^^^^^^~02/01/2011~
-~10210~^~301~^9.^0^^~1~^~PAK~^^^^^^^^^^~02/01/2011~
-~10210~^~304~^22.^0^^~1~^~PAK~^^^^^^^^^^~02/01/2011~
-~10210~^~305~^247.^0^^~1~^~PAK~^^^^^^^^^^~02/01/2011~
-~10210~^~306~^354.^0^^~1~^~PAK~^^^^^^^^^^~02/01/2011~
-~10210~^~307~^63.^0^^~1~^~PAK~^^^^^^^^^^~02/01/2011~
-~10210~^~318~^8.^0^^~4~^~PIK~^^^^^^^^^^~02/01/2011~
-~10210~^~319~^3.^0^^~4~^~PIK~^^^^^^^^^^~02/01/2011~
-~10210~^~320~^3.^0^^~4~^~PIK~^^^^^^^^^^~02/01/2011~
-~10210~^~321~^0.^0^^~4~^~PIK~^^^^^^^^^^~02/01/2011~
-~10210~^~322~^0.^0^^~4~^~PIK~^^^^^^^^^^~02/01/2011~
-~10210~^~324~^18.^0^^~4~^~PIK~^^^^^^^^^^~02/01/2011~
-~10210~^~334~^0.^0^^~4~^~PIK~^^^^^^^^^^~02/01/2011~
-~10210~^~337~^0.^0^^~4~^~PIK~^^^^^^^^^^~02/01/2011~
-~10210~^~338~^0.^0^^~4~^~PIK~^^^^^^^^^^~02/01/2011~
-~10210~^~417~^0.^0^^~4~^~PIK~^^^^^^^^^^~02/01/2011~
-~10210~^~431~^0.^0^^~4~^~PIK~^^^^^^^^^^~02/01/2011~
-~10210~^~432~^0.^0^^~4~^~PIK~^^^^^^^^^^~02/01/2011~
-~10210~^~435~^0.^0^^~4~^~NC~^^^^^^^^^^~02/01/2011~
-~10210~^~601~^63.^0^^~1~^~PAK~^^^^^^^^^^~02/01/2011~
-~10211~^~208~^171.^0^^~4~^~NC~^^^^^^^^^^~02/01/2011~
-~10211~^~262~^0.^0^^~4~^~PIK~^^^^^^^^^^~02/01/2011~
-~10211~^~263~^0.^0^^~4~^~PIK~^^^^^^^^^^~02/01/2011~
-~10211~^~268~^714.^0^^~4~^~NC~^^^^^^^^^^~02/01/2011~
-~10211~^~301~^11.^0^^~1~^~PAK~^^^^^^^^^^~02/01/2011~
-~10211~^~304~^25.^0^^~1~^~PAK~^^^^^^^^^^~02/01/2011~
-~10211~^~305~^291.^0^^~1~^~PAK~^^^^^^^^^^~02/01/2011~
-~10211~^~306~^411.^0^^~1~^~PAK~^^^^^^^^^^~02/01/2011~
-~10211~^~307~^56.^0^^~1~^~PAK~^^^^^^^^^^~02/01/2011~
-~10211~^~318~^7.^0^^~4~^~PIK~^^^^^^^^^^~02/01/2011~
-~10211~^~319~^2.^0^^~4~^~PIK~^^^^^^^^^^~01/01/2003~
-~10211~^~320~^2.^0^^~4~^~PIK~^^^^^^^^^^~03/01/2009~
-~10211~^~321~^0.^0^^~4~^~PIK~^^^^^^^^^^~02/01/2011~
-~10211~^~322~^0.^0^^~4~^~PIK~^^^^^^^^^^~02/01/2011~
-~10211~^~324~^15.^0^^~4~^~PIK~^^^^^^^^^^~02/01/2011~
-~10211~^~334~^0.^0^^~4~^~PIK~^^^^^^^^^^~02/01/2011~
-~10211~^~337~^0.^0^^~4~^~PIK~^^^^^^^^^^~02/01/2011~
-~10211~^~338~^0.^0^^~4~^~PIK~^^^^^^^^^^~02/01/2011~
-~10211~^~417~^0.^0^^~4~^~PIK~^^^^^^^^^^~02/01/2011~
-~10211~^~431~^0.^0^^~4~^~PIK~^^^^^^^^^^~02/01/2011~
-~10211~^~432~^0.^0^^~4~^~PIK~^^^^^^^^^^~02/01/2011~
-~10211~^~435~^0.^0^^~4~^~NC~^^^^^^^^^^~02/01/2011~
-~10211~^~601~^80.^0^^~1~^~PAK~^^^^^^^^^^~02/01/2011~
-~10212~^~208~^170.^0^^~4~^~PIK~^^^^^^^^^^~02/01/2011~
-~10212~^~262~^0.^0^^~4~^~PIK~^^^^^^^^^^~02/01/2011~
-~10212~^~263~^0.^0^^~4~^~PIK~^^^^^^^^^^~02/01/2011~
-~10212~^~268~^712.^0^^~4~^~PIK~^^^^^^^^^^~02/01/2011~
-~10212~^~301~^11.^0^^~1~^~PAK~^^^^^^^^^^~02/01/2011~
-~10212~^~304~^27.^0^^~1~^~PAK~^^^^^^^^^^~12/01/1992~
-~10212~^~305~^292.^0^^~1~^~PAK~^^^^^^^^^^~02/01/2011~
-~10212~^~306~^420.^0^^~1~^~PAK~^^^^^^^^^^~02/01/2011~
-~10212~^~307~^65.^0^^~1~^~PAK~^^^^^^^^^^~02/01/2011~
-~10212~^~318~^8.^0^^~4~^~PIK~^^^^^^^^^^~02/01/2011~
-~10212~^~319~^2.^0^^~4~^~PIK~^^^^^^^^^^~10/01/2004~
-~10212~^~320~^2.^0^^~4~^~PIK~^^^^^^^^^^~03/01/2009~
-~10212~^~321~^0.^0^^~4~^~PIK~^^^^^^^^^^~02/01/2011~
-~10212~^~322~^0.^0^^~4~^~PIK~^^^^^^^^^^~02/01/2011~
-~10212~^~324~^26.^0^^~4~^~PIK~^^^^^^^^^^~02/01/2011~
-~10212~^~334~^0.^0^^~4~^~PIK~^^^^^^^^^^~02/01/2011~
-~10212~^~337~^0.^0^^~4~^~PIK~^^^^^^^^^^~02/01/2011~
-~10212~^~338~^0.^0^^~4~^~PIK~^^^^^^^^^^~02/01/2011~
-~10212~^~417~^0.^0^^~4~^~PIK~^^^^^^^^^^~02/01/2011~
-~10212~^~431~^0.^0^^~4~^~PIK~^^^^^^^^^^~02/01/2011~
-~10212~^~432~^0.^0^^~4~^~PIK~^^^^^^^^^^~02/01/2011~
-~10212~^~435~^0.^0^^~4~^~NC~^^^^^^^^^^~02/01/2011~
-~10212~^~601~^76.^0^^~1~^~PAK~^^^^^^^^^^~02/01/2011~
-~10213~^~208~^192.^0^^~4~^~PIK~^^^^^^^^^^~02/01/2011~
-~10213~^~262~^0.^0^^~4~^~PIK~^^^^^^^^^^~02/01/2011~
-~10213~^~263~^0.^0^^~4~^~PIK~^^^^^^^^^^~02/01/2011~
-~10213~^~268~^805.^0^^~4~^~PIK~^^^^^^^^^^~02/01/2011~
-~10213~^~301~^13.^0^^~1~^~PAK~^^^^^^^^^^~02/01/2011~
-~10213~^~304~^27.^0^^~1~^~PAK~^^^^^^^^^^~02/01/2011~
-~10213~^~305~^304.^0^^~1~^~PAK~^^^^^^^^^^~02/01/2011~
-~10213~^~306~^398.^0^^~1~^~PAK~^^^^^^^^^^~02/01/2011~
-~10213~^~307~^66.^0^^~1~^~PAK~^^^^^^^^^^~02/01/2011~
-~10213~^~318~^7.^0^^~4~^~PIK~^^^^^^^^^^~02/01/2011~
-~10213~^~319~^2.^0^^~4~^~PIK~^^^^^^^^^^~01/01/2003~
-~10213~^~320~^2.^0^^~4~^~PIK~^^^^^^^^^^~03/01/2009~
-~10213~^~321~^0.^0^^~4~^~PIK~^^^^^^^^^^~02/01/2011~
-~10213~^~322~^0.^0^^~4~^~PIK~^^^^^^^^^^~02/01/2011~
-~10213~^~324~^25.^0^^~4~^~PIK~^^^^^^^^^^~02/01/2011~
-~10213~^~334~^0.^0^^~4~^~PIK~^^^^^^^^^^~02/01/2011~
-~10213~^~337~^0.^0^^~4~^~PIK~^^^^^^^^^^~02/01/2011~
-~10213~^~338~^0.^0^^~4~^~PIK~^^^^^^^^^^~02/01/2011~
-~10213~^~417~^0.^0^^~4~^~PIK~^^^^^^^^^^~02/01/2011~
-~10213~^~431~^0.^0^^~4~^~PIK~^^^^^^^^^^~02/01/2011~
-~10213~^~432~^0.^0^^~4~^~PIK~^^^^^^^^^^~02/01/2011~
-~10213~^~435~^0.^0^^~4~^~NC~^^^^^^^^^^~02/01/2011~
-~10213~^~601~^84.^0^^~1~^~PAK~^^^^^^^^^^~02/01/2011~
-~10214~^~208~^121.^0^^~4~^~NC~^^^^^^^^^^~02/01/2011~
-~10214~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2003~
-~10214~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2003~
-~10214~^~268~^505.^0^^~4~^~NC~^^^^^^^^^^~02/01/2011~
-~10214~^~301~^9.^12^0.^~1~^~A~^^^1^8.^10.^11^8.^9.^~2, 3~^~02/01/2011~
-~10214~^~304~^23.^12^0.^~1~^~A~^^^1^19.^26.^11^21.^23.^~2, 3~^~02/01/2011~
-~10214~^~305~^251.^12^4.^~1~^~A~^^^1^222.^283.^11^240.^261.^~2, 3~^~02/01/2011~
-~10214~^~306~^354.^12^4.^~1~^~A~^^^1^333.^380.^11^343.^365.^~2, 3~^~02/01/2011~
-~10214~^~307~^63.^12^0.^~1~^~A~^^^1^58.^66.^11^61.^64.^~2, 3~^~02/01/2011~
-~10214~^~318~^7.^0^^~4~^~NC~^^^^^^^^^^~02/01/2011~
-~10214~^~319~^2.^0^^~4~^~NR~^^^^^^^^^^~01/01/2003~
-~10214~^~320~^2.^0^^~4~^~NC~^^^^^^^^^^~03/01/2009~
-~10214~^~321~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2003~
-~10214~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2003~
-~10214~^~324~^16.^0^^~4~^~BFFN~^^^^^^^^^^~03/01/2009~
-~10214~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2003~
-~10214~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2003~
-~10214~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2003~
-~10214~^~417~^0.^0^^~4~^~BFPN~^~10032~^^^^^^^^^~02/01/2011~
-~10214~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~
-~10214~^~432~^0.^0^^~4~^~BFPN~^^^^^^^^^^~02/01/2011~
-~10214~^~435~^0.^0^^~4~^~NC~^^^^^^^^^^~02/01/2011~
-~10214~^~601~^63.^6^1.^~1~^~A~^^^1^57.^66.^5^58.^66.^~2, 3~^~12/01/1992~
-~10215~^~208~^163.^0^^~4~^~NC~^^^^^^^^^^~01/01/2011~
-~10215~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2011~
-~10215~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2011~
-~10215~^~268~^683.^0^^~4~^~NC~^^^^^^^^^^~01/01/2011~
-~10215~^~301~^11.^12^0.^~1~^~A~^^^1^9.^14.^11^9.^11.^~2, 3~^~01/01/2011~
-~10215~^~304~^25.^12^0.^~1~^~A~^^^1^23.^27.^11^24.^26.^~2, 3~^~01/01/2011~
-~10215~^~305~^294.^12^4.^~1~^~A~^^^1^265.^326.^11^283.^305.^~2, 3~^~01/01/2011~
-~10215~^~306~^416.^12^8.^~1~^~A~^^^1^368.^453.^11^396.^434.^~2, 3~^~01/01/2011~
-~10215~^~307~^56.^12^0.^~1~^~A~^^^1^51.^59.^11^54.^58.^~2, 3~^~01/01/2011~
-~10215~^~318~^5.^0^^~4~^~NC~^^^^^^^^^^~01/01/2011~
-~10215~^~319~^2.^0^^~4~^~BFSN~^~10033~^^^^^^^^^~01/01/2011~
-~10215~^~320~^2.^0^^~4~^~NC~^^^^^^^^^^~01/01/2011~
-~10215~^~321~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2011~
-~10215~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2011~
-~10215~^~324~^14.^0^^~4~^~BFFN~^~10033~^^^^^^^^^~01/01/2011~
-~10215~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2011~
-~10215~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2011~
-~10215~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2011~
-~10215~^~417~^0.^0^^~4~^~BFPN~^~10033~^^^^^^^^^~01/01/2011~
-~10215~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~
-~10215~^~432~^0.^0^^~4~^~BFPN~^^^^^^^^^^~01/01/2011~
-~10215~^~435~^0.^0^^~4~^~NC~^^^^^^^^^^~01/01/2011~
-~10215~^~601~^80.^6^1.^~1~^~A~^^^1^72.^85.^5^74.^84.^~2, 3~^~01/01/2011~
-~10216~^~208~^161.^0^^~4~^~NC~^^^^^^^^^^~01/01/2011~
-~10216~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~09/01/2002~
-~10216~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~09/01/2002~
-~10216~^~268~^676.^0^^~4~^~NC~^^^^^^^^^^~01/01/2011~
-~10216~^~301~^11.^12^0.^~1~^~A~^^^1^10.^12.^11^10.^11.^~2, 3~^~01/01/2011~
-~10216~^~304~^27.^12^0.^~1~^~A~^^^1^23.^30.^11^25.^28.^~2, 3~^~12/01/1992~
-~10216~^~305~^296.^12^3.^~1~^~A~^^^1^275.^324.^11^286.^304.^~2, 3~^~01/01/2011~
-~10216~^~306~^425.^12^10.^~1~^~A~^^^1^376.^479.^11^401.^449.^~2, 3~^~01/01/2011~
-~10216~^~307~^66.^12^0.^~1~^~A~^^^1^61.^70.^11^63.^67.^~2, 3~^~01/01/2011~
-~10216~^~318~^7.^0^^~4~^~NC~^^^^^^^^^^~01/01/2011~
-~10216~^~319~^2.^0^^~4~^~NR~^^^^^^^^^^~09/01/2002~
-~10216~^~320~^2.^0^^~4~^~NC~^^^^^^^^^^~03/01/2009~
-~10216~^~321~^0.^0^^~7~^~Z~^^^^^^^^^^~09/01/2002~
-~10216~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~09/01/2002~
-~10216~^~324~^25.^0^^~4~^~BFFN~^^^^^^^^^^~03/01/2009~
-~10216~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~09/01/2002~
-~10216~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~09/01/2002~
-~10216~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~09/01/2002~
-~10216~^~417~^0.^0^^~4~^~BFPN~^~10034~^^^^^^^^^~01/01/2011~
-~10216~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~
-~10216~^~432~^0.^0^^~4~^~BFPN~^^^^^^^^^^~01/01/2011~
-~10216~^~435~^0.^0^^~4~^~NC~^^^^^^^^^^~01/01/2011~
-~10216~^~601~^76.^6^1.^~1~^~A~^^^1^72.^81.^5^72.^80.^~2, 3~^~01/01/2011~
-~10217~^~208~^178.^0^^~4~^~NC~^^^^^^^^^^~01/01/2011~
-~10217~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2003~
-~10217~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2003~
-~10217~^~268~^743.^0^^~4~^~NC~^^^^^^^^^^~01/01/2011~
-~10217~^~301~^12.^12^0.^~1~^~A~^^^1^11.^16.^11^11.^13.^~2, 3~^~01/01/2011~
-~10217~^~304~^28.^12^0.^~1~^~A~^^^1^24.^31.^11^26.^29.^~2, 3~^~01/01/2011~
-~10217~^~305~^311.^12^7.^~1~^~A~^^^1^269.^350.^11^293.^327.^~2, 3~^~01/01/2011~
-~10217~^~306~^408.^12^8.^~1~^~A~^^^1^364.^460.^11^388.^426.^~2, 3~^~01/01/2011~
-~10217~^~307~^66.^12^1.^~1~^~A~^^^1^57.^76.^11^62.^69.^~2, 3~^~01/01/2011~
-~10217~^~318~^4.^0^^~4~^~NC~^^^^^^^^^^~01/01/2011~
-~10217~^~319~^1.^0^^~4~^~BFSN~^~10035~^^^^^^^^^~01/01/2011~
-~10217~^~320~^1.^0^^~4~^~NC~^^^^^^^^^^~01/01/2011~
-~10217~^~321~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2003~
-~10217~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2003~
-~10217~^~324~^24.^0^^~4~^~BFFN~^^^^^^^^^^~03/01/2009~
-~10217~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2003~
-~10217~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2003~
-~10217~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2003~
-~10217~^~417~^0.^0^^~4~^~BFPN~^~10035~^^^^^^^^^~01/01/2011~
-~10217~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~
-~10217~^~432~^0.^0^^~4~^~BFPN~^^^^^^^^^^~01/01/2011~
-~10217~^~435~^0.^0^^~4~^~NC~^^^^^^^^^^~01/01/2011~
-~10217~^~601~^84.^6^2.^~1~^~A~^^^1^72.^89.^5^76.^91.^~2, 3~^~01/01/2011~
-~10218~^~208~^120.^0^^~4~^~PIK~^^^^^^^^^^~02/01/2007~
-~10218~^~262~^0.^0^^~4~^~PIK~^^^^^^^^^^~03/01/2009~
-~10218~^~263~^0.^0^^~4~^~PIK~^^^^^^^^^^~03/01/2009~
-~10218~^~268~^502.^0^^~4~^~PIK~^^^^^^^^^^~02/01/2007~
-~10218~^~301~^6.^0^^~1~^~PAK~^^^^^^^^^^~02/01/2007~
-~10218~^~304~^27.^0^^~1~^~PAK~^^^^^^^^^^~02/01/2007~
-~10218~^~305~^243.^0^^~1~^~PAK~^^^^^^^^^^~02/01/2007~
-~10218~^~306~^393.^0^^~1~^~PAK~^^^^^^^^^^~02/01/2007~
-~10218~^~307~^52.^0^^~1~^~PAK~^^^^^^^^^^~02/01/2007~
-~10218~^~318~^2.^0^^~1~^~PAK~^^^^^^^^^^~02/01/2007~
-~10218~^~319~^0.^0^^~1~^~PAK~^^^^^^^^^^~02/01/2007~
-~10218~^~320~^0.^0^^~1~^~PAK~^^^^^^^^^^~02/01/2007~
-~10218~^~321~^0.^0^^~4~^~PIK~^^^^^^^^^^~03/01/2009~
-~10218~^~322~^0.^0^^~4~^~PIK~^^^^^^^^^^~03/01/2009~
-~10218~^~324~^10.^0^^~4~^~PIK~^^^^^^^^^^~03/01/2009~
-~10218~^~334~^0.^0^^~4~^~PIK~^^^^^^^^^^~03/01/2009~
-~10218~^~337~^0.^0^^~4~^~PIK~^^^^^^^^^^~03/01/2009~
-~10218~^~338~^0.^0^^~4~^~PIK~^^^^^^^^^^~03/01/2009~
-~10218~^~417~^0.^0^^~1~^~PAK~^^^^^^^^^^~03/01/2009~
-~10218~^~431~^0.^0^^~4~^~PIK~^^^^^^^^^^~02/01/2007~
-~10218~^~432~^0.^0^^~1~^~PAK~^^^^^^^^^^~03/01/2009~
-~10218~^~435~^0.^0^^~4~^~NC~^^^^^^^^^^~03/01/2009~
-~10218~^~601~^65.^0^^~1~^~PAK~^^^^^^^^^^~02/01/2007~
-~10219~^~208~^263.^0^^~4~^~NC~^^^^^^^^^^~12/01/1992~
-~10219~^~268~^1100.^0^^~4~^^^^^^^^^^^
-~10219~^~301~^14.^5^2.^~1~^^^^^^^^^^^~12/01/1992~
-~10219~^~304~^19.^5^0.^~1~^^^^^^^^^^^~12/01/1992~
-~10219~^~305~^175.^5^6.^~1~^^^^^^^^^^^~12/01/1992~
-~10219~^~306~^287.^5^9.^~1~^^^^^^^^^^^~12/01/1992~
-~10219~^~307~^56.^5^0.^~1~^^^^^^^^^^^~12/01/1992~
-~10219~^~318~^7.^1^^~1~^^^^^^^^^^^~12/01/1992~
-~10219~^~319~^2.^1^^~1~^^^^^^^^^^^~06/01/2002~
-~10219~^~320~^2.^1^^~1~^^^^^^^^^^^~06/01/2002~
-~10219~^~417~^5.^1^^~1~^^^^^^^^^^^~12/01/1992~
-~10219~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~
-~10219~^~432~^5.^1^^~1~^^^^^^^^^^^~12/01/1992~
-~10219~^~435~^5.^0^^~4~^~NC~^^^^^^^^^^~01/01/2001~
-~10219~^~601~^72.^1^^~1~^^^^^^^^^^^~12/01/1992~
-~10220~^~208~^297.^0^^~4~^~NC~^^^^^^^^^^~12/01/1992~
-~10220~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~09/01/2002~
-~10220~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~09/01/2002~
-~10220~^~268~^1243.^0^^~4~^^^^^^^^^^^~03/01/2009~
-~10220~^~301~^22.^5^4.^~1~^^^^^^^^^^^~12/01/1992~
-~10220~^~304~^24.^5^0.^~1~^^^^^^^^^^^~12/01/1992~
-~10220~^~305~^226.^5^5.^~1~^^^^^^^^^^^~12/01/1992~
-~10220~^~306~^362.^5^8.^~1~^^^^^^^^^^^~12/01/1992~
-~10220~^~307~^73.^4^2.^~1~^^^^^^^^^^^~12/01/1992~
-~10220~^~318~^8.^0^^~1~^^^^^^^^^^^~04/01/2007~
-~10220~^~319~^2.^0^^~4~^~NR~^^^^^^^^^^~09/01/2002~
-~10220~^~320~^2.^0^^~4~^~NC~^^^^^^^^^^~03/01/2009~
-~10220~^~321~^0.^0^^~7~^~Z~^^^^^^^^^^~09/01/2002~
-~10220~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~09/01/2002~
-~10220~^~324~^21.^0^^~4~^~BFFN~^^^^^^^^^^~03/01/2009~
-~10220~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~09/01/2002~
-~10220~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~09/01/2002~
-~10220~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~09/01/2002~
-~10220~^~417~^6.^0^^~1~^^^^^^^^^^^~12/01/1992~
-~10220~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~
-~10220~^~432~^6.^0^^~1~^^^^^^^^^^^~03/01/2009~
-~10220~^~435~^6.^0^^~4~^~NC~^^^^^^^^^^~03/01/2009~
-~10220~^~601~^94.^13^1.^~1~^^^^^^^^^^^~12/01/1992~
-~10221~^~208~^201.^0^^~4~^~NC~^^^^^^^^^^~12/01/1992~
-~10221~^~268~^841.^0^^~4~^^^^^^^^^^^
-~10221~^~301~^5.^0^^~1~^^^^^^^^^^^~12/01/1992~
-~10221~^~304~^35.^0^^~1~^^^^^^^^^^^~12/01/1992~
-~10221~^~305~^290.^0^^~1~^^^^^^^^^^^~12/01/1992~
-~10221~^~306~^444.^0^^~1~^^^^^^^^^^^~12/01/1992~
-~10221~^~307~^64.^0^^~1~^^^^^^^^^^^~12/01/1992~
-~10221~^~318~^7.^0^^~1~^^^^^^^^^^^~12/01/1992~
-~10221~^~319~^2.^0^^~1~^^^^^^^^^^^~06/01/2002~
-~10221~^~320~^2.^0^^~1~^^^^^^^^^^^~06/01/2002~
-~10221~^~417~^6.^0^^~1~^^^^^^^^^^^~12/01/1992~
-~10221~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~
-~10221~^~432~^6.^0^^~1~^^^^^^^^^^^~12/01/1992~
-~10221~^~435~^6.^0^^~4~^~NC~^^^^^^^^^^~01/01/2001~
-~10221~^~601~^94.^0^^~1~^^^^^^^^^^^~12/01/1992~
-~10222~^~208~^147.^0^^~4~^~PIK~^^^^^^^^^^~02/01/2007~
-~10222~^~262~^0.^0^^~4~^~PIK~^^^^^^^^^^~02/01/2007~
-~10222~^~263~^0.^0^^~4~^~PIK~^^^^^^^^^^~02/01/2007~
-~10222~^~268~^615.^0^^~4~^~PIK~^^^^^^^^^^~02/01/2007~
-~10222~^~301~^6.^0^^~1~^~PAK~^^^^^^^^^^~02/01/2007~
-~10222~^~304~^29.^0^^~1~^~PAK~^^^^^^^^^^~02/01/2007~
-~10222~^~305~^265.^0^^~1~^~PAK~^^^^^^^^^^~02/01/2007~
-~10222~^~306~^419.^0^^~1~^~PAK~^^^^^^^^^^~02/01/2007~
-~10222~^~307~^57.^0^^~1~^~PAK~^^^^^^^^^^~02/01/2007~
-~10222~^~318~^1.^0^^~1~^~PAK~^^^^^^^^^^~02/01/2007~
-~10222~^~319~^0.^0^^~1~^~PAK~^^^^^^^^^^~02/01/2007~
-~10222~^~320~^0.^0^^~1~^~PAK~^^^^^^^^^^~02/01/2007~
-~10222~^~321~^0.^0^^~4~^~PIK~^^^^^^^^^^~02/01/2007~
-~10222~^~322~^0.^0^^~4~^~PIK~^^^^^^^^^^~02/01/2007~
-~10222~^~324~^10.^0^^~4~^~PIK~^^^^^^^^^^~03/01/2009~
-~10222~^~334~^0.^0^^~4~^~PIK~^^^^^^^^^^~02/01/2007~
-~10222~^~337~^0.^0^^~4~^~PIK~^^^^^^^^^^~02/01/2007~
-~10222~^~338~^0.^0^^~4~^~PIK~^^^^^^^^^^~02/01/2007~
-~10222~^~417~^0.^0^^~1~^~PAK~^^^^^^^^^^~03/01/2009~
-~10222~^~431~^0.^0^^~4~^~PIK~^^^^^^^^^^~02/01/2007~
-~10222~^~432~^0.^0^^~1~^~PAK~^^^^^^^^^^~03/01/2009~
-~10222~^~435~^0.^0^^~4~^~NC~^^^^^^^^^^~03/01/2009~
-~10222~^~601~^73.^0^^~1~^~PAK~^^^^^^^^^^~02/01/2007~
-~10223~^~208~^187.^0^^~4~^~NC~^^^^^^^^^^~12/01/1992~
-~10223~^~268~^782.^0^^~4~^^^^^^^^^^^
-~10223~^~301~^5.^0^^~1~^^^^^^^^^^^~12/01/1992~
-~10223~^~304~^36.^0^^~1~^^^^^^^^^^^~12/01/1992~
-~10223~^~305~^295.^0^^~1~^^^^^^^^^^^~12/01/1992~
-~10223~^~306~^451.^0^^~1~^^^^^^^^^^^~12/01/1992~
-~10223~^~307~^65.^0^^~1~^^^^^^^^^^^~12/01/1992~
-~10223~^~318~^7.^0^^~1~^^^^^^^^^^^~12/01/1992~
-~10223~^~319~^2.^0^^~1~^^^^^^^^^^^~06/01/2002~
-~10223~^~320~^2.^0^^~1~^^^^^^^^^^^~06/01/2002~
-~10223~^~417~^6.^0^^~1~^^^^^^^^^^^~12/01/1992~
-~10223~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~
-~10223~^~432~^6.^0^^~1~^^^^^^^^^^^~12/01/1992~
-~10223~^~435~^6.^0^^~4~^~NC~^^^^^^^^^^~01/01/2001~
-~10223~^~601~^94.^0^^~1~^^^^^^^^^^^~12/01/1992~
-~10224~^~208~^166.^0^^~4~^~PIK~^^^^^^^^^^~05/01/2007~
-~10224~^~262~^0.^0^^~4~^~PIK~^^^^^^^^^^~03/01/2009~
-~10224~^~263~^0.^0^^~4~^~PIK~^^^^^^^^^^~03/01/2009~
-~10224~^~268~^696.^0^^~4~^~PIK~^^^^^^^^^^~05/01/2007~
-~10224~^~301~^7.^0^^~1~^~PAK~^^^^^^^^^^~05/01/2007~
-~10224~^~304~^24.^0^^~1~^~PAK~^^^^^^^^^^~05/01/2007~
-~10224~^~305~^216.^0^^~1~^~PAK~^^^^^^^^^^~05/01/2007~
-~10224~^~306~^358.^0^^~1~^~PAK~^^^^^^^^^^~05/01/2007~
-~10224~^~307~^47.^0^^~1~^~PAK~^^^^^^^^^^~05/01/2007~
-~10224~^~318~^5.^0^^~4~^~NC~^^^^^^^^^^~04/01/2016~
-~10224~^~319~^2.^0^^~4~^~PIK~^^^^^^^^^^~05/01/2007~
-~10224~^~320~^2.^0^^~4~^~NC~^^^^^^^^^^~04/01/2016~
-~10224~^~321~^0.^0^^~4~^~PIK~^^^^^^^^^^~03/01/2009~
-~10224~^~322~^0.^0^^~4~^~PIK~^^^^^^^^^^~03/01/2009~
-~10224~^~324~^21.^0^^~4~^~PIK~^^^^^^^^^^~03/01/2009~
-~10224~^~334~^0.^0^^~4~^~PIK~^^^^^^^^^^~03/01/2009~
-~10224~^~337~^0.^0^^~4~^~PIK~^^^^^^^^^^~03/01/2009~
-~10224~^~338~^0.^0^^~4~^~PIK~^^^^^^^^^^~03/01/2009~
-~10224~^~417~^0.^0^^~4~^~PIK~^^^^^^^^^^~03/01/2009~
-~10224~^~431~^0.^0^^~4~^~PIK~^^^^^^^^^^~03/01/2009~
-~10224~^~432~^0.^0^^~4~^~PIK~^^^^^^^^^^~03/01/2009~
-~10224~^~435~^0.^0^^~4~^~NC~^^^^^^^^^^~03/01/2009~
-~10224~^~601~^64.^0^^~4~^~PIK~^^^^^^^^^^~05/01/2007~
-~10225~^~208~^132.^0^^~4~^~NC~^^^^^^^^^^~07/01/2010~
-~10225~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2003~
-~10225~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2003~
-~10225~^~268~^553.^0^^~4~^~NC~^^^^^^^^^^~07/01/2010~
-~10225~^~301~^5.^12^0.^~1~^~A~^^^1^4.^6.^11^4.^5.^~2, 3~^~03/01/2007~
-~10225~^~304~^26.^12^0.^~1~^~A~^^^1^23.^28.^11^24.^26.^~2, 3~^~03/01/2007~
-~10225~^~305~^225.^12^3.^~1~^~A~^^^1^207.^244.^11^218.^231.^~2, 3~^~03/01/2007~
-~10225~^~306~^374.^12^3.^~1~^~A~^^^1^355.^399.^11^366.^381.^~2, 3~^~03/01/2007~
-~10225~^~307~^49.^12^1.^~1~^~A~^^^1^42.^59.^11^45.^52.^~2, 3~^~03/01/2007~
-~10225~^~318~^0.^0^^~1~^~AS~^^^^^^^^^^~03/01/2007~
-~10225~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2007~
-~10225~^~320~^0.^0^^~1~^~AS~^^^^^^^^^^~03/01/2007~
-~10225~^~321~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2003~
-~10225~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2003~
-~10225~^~324~^16.^0^^~4~^~BFFN~^^^^^^^^^^~03/01/2009~
-~10225~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2003~
-~10225~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2003~
-~10225~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2003~
-~10225~^~417~^0.^0^^~4~^~BFPN~^~10066~^^^^^^^^^~03/01/2007~
-~10225~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~
-~10225~^~432~^0.^0^^~4~^~BFPN~^^^^^^^^^^~07/01/2010~
-~10225~^~435~^0.^0^^~4~^~NC~^^^^^^^^^^~07/01/2010~
-~10225~^~601~^63.^0^^~4~^~BFYN~^~10069~^^^^^^^^^~05/01/2007~
-~10226~^~208~^177.^0^^~4~^~PIK~^^^^^^^^^^~03/01/2009~
-~10226~^~262~^0.^0^^~4~^~PIK~^^^^^^^^^^~03/01/2009~
-~10226~^~263~^0.^0^^~4~^~PIK~^^^^^^^^^^~03/01/2009~
-~10226~^~268~^741.^0^^~4~^~PIK~^^^^^^^^^^~03/01/2009~
-~10226~^~301~^16.^0^^~1~^~PAK~^^^^^^^^^^~03/01/2009~
-~10226~^~304~^23.^0^^~1~^~PAK~^^^^^^^^^^~03/01/2009~
-~10226~^~305~^205.^0^^~1~^~PAK~^^^^^^^^^^~03/01/2009~
-~10226~^~306~^345.^0^^~1~^~PAK~^^^^^^^^^^~03/01/2009~
-~10226~^~307~^54.^0^^~1~^~PAK~^^^^^^^^^^~03/01/2009~
-~10226~^~318~^7.^0^^~1~^~PAK~^^^^^^^^^^~03/01/2009~
-~10226~^~319~^2.^0^^~4~^~PIK~^^^^^^^^^^~03/01/2009~
-~10226~^~320~^2.^0^^~4~^~PIK~^^^^^^^^^^~03/01/2009~
-~10226~^~321~^0.^0^^~4~^~PIK~^^^^^^^^^^~03/01/2009~
-~10226~^~322~^0.^0^^~4~^~PIK~^^^^^^^^^^~03/01/2009~
-~10226~^~324~^22.^0^^~4~^~PIK~^^^^^^^^^^~03/01/2009~
-~10226~^~334~^0.^0^^~4~^~PIK~^^^^^^^^^^~03/01/2009~
-~10226~^~337~^0.^0^^~4~^~PIK~^^^^^^^^^^~03/01/2009~
-~10226~^~338~^0.^0^^~4~^~PIK~^^^^^^^^^^~03/01/2009~
-~10226~^~417~^1.^0^^~4~^~PIK~^^^^^^^^^^~03/01/2009~
-~10226~^~431~^0.^0^^~4~^~PIK~^^^^^^^^^^~03/01/2009~
-~10226~^~432~^1.^0^^~4~^~PIK~^^^^^^^^^^~03/01/2009~
-~10226~^~435~^1.^0^^~4~^~NC~^^^^^^^^^^~04/01/2009~
-~10226~^~601~^65.^0^^~4~^~PIK~^^^^^^^^^^~03/01/2009~
-~10227~^~208~^235.^0^^~4~^~PIK~^^^^^^^^^^~03/01/2009~
-~10227~^~262~^0.^0^^~4~^~PIK~^^^^^^^^^^~05/01/2007~
-~10227~^~263~^0.^0^^~4~^~PIK~^^^^^^^^^^~05/01/2007~
-~10227~^~268~^981.^0^^~4~^~PIK~^^^^^^^^^^~03/01/2009~
-~10227~^~301~^20.^0^^~1~^~PAK~^^^^^^^^^^~03/01/2009~
-~10227~^~304~^24.^0^^~1~^~PAK~^^^^^^^^^^~03/01/2009~
-~10227~^~305~^222.^0^^~1~^~PAK~^^^^^^^^^^~03/01/2009~
-~10227~^~306~^345.^0^^~1~^~PAK~^^^^^^^^^^~03/01/2009~
-~10227~^~307~^55.^0^^~1~^~PAK~^^^^^^^^^^~03/01/2009~
-~10227~^~318~^7.^0^^~1~^~PAK~^^^^^^^^^^~03/01/2009~
-~10227~^~319~^2.^0^^~4~^~PIK~^^^^^^^^^^~03/01/2009~
-~10227~^~320~^2.^0^^~4~^~PIK~^^^^^^^^^^~03/01/2009~
-~10227~^~321~^0.^0^^~4~^~PIK~^^^^^^^^^^~05/01/2007~
-~10227~^~322~^0.^0^^~4~^~PIK~^^^^^^^^^^~05/01/2007~
-~10227~^~324~^38.^0^^~4~^~PIK~^^^^^^^^^^~03/01/2009~
-~10227~^~334~^0.^0^^~4~^~PIK~^^^^^^^^^^~05/01/2007~
-~10227~^~337~^0.^0^^~4~^~PIK~^^^^^^^^^^~05/01/2007~
-~10227~^~338~^0.^0^^~4~^~PIK~^^^^^^^^^^~05/01/2007~
-~10227~^~417~^2.^0^^~4~^~PIK~^^^^^^^^^^~05/01/2007~
-~10227~^~431~^0.^0^^~4~^~PIK~^^^^^^^^^^~05/01/2007~
-~10227~^~432~^2.^0^^~4~^~PIK~^^^^^^^^^^~05/01/2007~
-~10227~^~435~^2.^0^^~4~^~NC~^^^^^^^^^^~03/01/2009~
-~10227~^~601~^83.^0^^~1~^~PAK~^^^^^^^^^^~03/01/2009~
-~10228~^~208~^144.^0^^~4~^~NC~^^^^^^^^^^~12/01/1992~
-~10228~^~268~^602.^0^^~4~^^^^^^^^^^^
-~10228~^~301~^17.^0^^~1~^^^^^^^^^^^~12/01/1992~
-~10228~^~304~^23.^0^^~1~^^^^^^^^^^^~12/01/1992~
-~10228~^~305~^209.^0^^~1~^^^^^^^^^^^~12/01/1992~
-~10228~^~306~^384.^0^^~1~^^^^^^^^^^^~12/01/1992~
-~10228~^~307~^54.^0^^~1~^^^^^^^^^^^~12/01/1992~
-~10228~^~318~^7.^0^^~1~^^^^^^^^^^^~12/01/1992~
-~10228~^~319~^2.^0^^~1~^^^^^^^^^^^~06/01/2002~
-~10228~^~320~^2.^0^^~1~^^^^^^^^^^^~06/01/2002~
-~10228~^~417~^5.^0^^~1~^^^^^^^^^^^~12/01/1992~
-~10228~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~
-~10228~^~432~^5.^0^^~1~^^^^^^^^^^^~12/01/1992~
-~10228~^~435~^5.^0^^~4~^~NC~^^^^^^^^^^~01/01/2001~
-~10228~^~601~^60.^0^^~1~^^^^^^^^^^^~12/01/1992~
-~10229~^~208~^211.^0^^~4~^~NC~^^^^^^^^^^~12/01/1992~
-~10229~^~268~^883.^0^^~4~^^^^^^^^^^^
-~10229~^~301~^22.^0^^~1~^^^^^^^^^^^~12/01/1992~
-~10229~^~304~^26.^0^^~1~^^^^^^^^^^^~12/01/1992~
-~10229~^~305~^234.^0^^~1~^^^^^^^^^^^~12/01/1992~
-~10229~^~306~^377.^0^^~1~^^^^^^^^^^^~12/01/1992~
-~10229~^~307~^57.^0^^~1~^^^^^^^^^^^~12/01/1992~
-~10229~^~318~^7.^0^^~1~^^^^^^^^^^^~12/01/1992~
-~10229~^~319~^2.^0^^~1~^^^^^^^^^^^~06/01/2002~
-~10229~^~320~^2.^0^^~1~^^^^^^^^^^^~06/01/2002~
-~10229~^~417~^6.^0^^~1~^^^^^^^^^^^~12/01/1992~
-~10229~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~
-~10229~^~432~^6.^0^^~1~^^^^^^^^^^^~12/01/1992~
-~10229~^~435~^6.^0^^~4~^~NC~^^^^^^^^^^~01/01/2001~
-~10229~^~601~^85.^0^^~1~^^^^^^^^^^^~12/01/1992~
-~10851~^~208~^106.^0^^~9~^~MC~^^^^^^^^^^~08/01/1998~
-~10851~^~268~^444.^0^^~9~^^^^^^^^^^^
-~10851~^~301~^4.^10^0.^~1~^~A~^^^^^^^^^^~08/01/1998~
-~10851~^~304~^20.^10^1.^~1~^~A~^^^^^^^^^^~08/01/1998~
-~10851~^~306~^319.^9^5.^~1~^~A~^^^^^^^^^^~08/01/1998~
-~10851~^~307~^1038.^20^43.^~1~^~A~^^^^^^^^^^~08/01/1998~
-~10851~^~318~^0.^10^0.^~1~^~A~^^^^^^^^^^~07/01/1998~
-~10851~^~601~^51.^19^2.^~1~^~A~^^^^^^^^^^~08/01/1998~
-~10852~^~208~^119.^0^^~9~^~MC~^^^^^^^^^^~08/01/1998~
-~10852~^~268~^499.^0^^~9~^^^^^^^^^^^
-~10852~^~301~^7.^7^1.^~1~^~A~^^^^^^^^^^~08/01/1998~
-~10852~^~304~^22.^8^1.^~1~^~A~^^^^^^^^^^~08/01/1998~
-~10852~^~306~^536.^8^58.^~1~^~A~^^^^^^^^^^~08/01/1998~
-~10852~^~307~^413.^15^89.^~1~^~A~^^^^^^^^^^~08/01/1998~
-~10852~^~318~^0.^8^0.^~1~^~A~^^^^^^^^^^~07/01/1998~
-~10852~^~601~^46.^8^10.^~1~^~A~^^^^^^^^^^~08/01/1998~
-~10853~^~208~^110.^0^^~9~^~MC~^^^^^^^^^^~08/01/1998~
-~10853~^~268~^461.^0^^~9~^^^^^^^^^^^
-~10853~^~301~^14.^9^4.^~1~^~A~^^^^^^^^^^~08/01/1998~
-~10853~^~304~^21.^9^1.^~1~^~A~^^^^^^^^^^~08/01/1998~
-~10853~^~306~^586.^9^27.^~1~^~A~^^^^^^^^^^~08/01/1998~
-~10853~^~307~^594.^18^36.^~1~^~A~^^^^^^^^^^~08/01/1998~
-~10853~^~318~^0.^9^0.^~1~^~A~^^^^^^^^^^~07/01/1998~
-~10853~^~601~^47.^9^3.^~1~^~A~^^^^^^^^^^~08/01/1998~
-~10854~^~208~^118.^0^^~9~^~MC~^^^^^^^^^^~08/01/1998~
-~10854~^~268~^492.^0^^~9~^^^^^^^^^^^
-~10854~^~301~^6.^5^0.^~1~^~A~^^^^^^^^^^~08/01/1998~
-~10854~^~304~^20.^5^1.^~1~^~A~^^^^^^^^^^~08/01/1998~
-~10854~^~306~^542.^5^60.^~1~^~A~^^^^^^^^^^~08/01/1998~
-~10854~^~307~^590.^19^77.^~1~^~A~^^^^^^^^^^~07/01/1998~
-~10854~^~318~^0.^5^0.^~1~^~A~^^^^^^^^^^~07/01/1998~
-~10854~^~601~^42.^12^2.^~1~^~A~^^^^^^^^^^~08/01/1998~
-~10855~^~208~^167.^0^^~9~^~MC~^^^^^^^^^^~08/01/1998~
-~10855~^~268~^699.^0^^~9~^^^^^^^^^^^
-~10855~^~301~^14.^5^4.^~1~^~A~^^^^^^^^^^~08/01/1998~
-~10855~^~304~^21.^5^0.^~1~^~A~^^^^^^^^^^~08/01/1998~
-~10855~^~306~^307.^5^4.^~1~^~A~^^^^^^^^^^~08/01/1998~
-~10855~^~307~^378.^10^47.^~1~^~A~^^^^^^^^^^~08/01/1998~
-~10855~^~318~^0.^5^0.^~1~^~A~^^^^^^^^^^~07/01/1998~
-~10855~^~601~^52.^7^2.^~1~^~A~^^^^^^^^^^~08/01/1998~
-~10856~^~208~^145.^0^^~9~^~MC~^^^^^^^^^^~08/01/1998~
-~10856~^~268~^609.^0^^~9~^^^^^^^^^^^
-~10856~^~301~^4.^5^0.^~1~^~A~^^^^^^^^^^~08/01/1998~
-~10856~^~304~^21.^5^1.^~1~^~A~^^^^^^^^^^~08/01/1998~
-~10856~^~306~^310.^5^14.^~1~^~A~^^^^^^^^^^~08/01/1998~
-~10856~^~307~^358.^10^40.^~1~^~A~^^^^^^^^^^~08/01/1998~
-~10856~^~318~^0.^5^0.^~1~^~A~^^^^^^^^^^~07/01/1998~
-~10856~^~601~^49.^5^5.^~1~^~A~^^^^^^^^^^~08/01/1998~
-~10857~^~208~^122.^0^^~9~^~MC~^^^^^^^^^^~08/01/1998~
-~10857~^~268~^511.^0^^~9~^^^^^^^^^^^
-~10857~^~301~^6.^6^1.^~1~^~A~^^^^^^^^^^~08/01/1998~
-~10857~^~304~^19.^6^0.^~1~^~A~^^^^^^^^^^~08/01/1998~
-~10857~^~306~^279.^6^12.^~1~^~A~^^^^^^^^^^~08/01/1998~
-~10857~^~307~^1016.^12^29.^~1~^~A~^^^^^^^^^^~08/01/1998~
-~10857~^~318~^0.^6^0.^~1~^~A~^^^^^^^^^^~08/01/1998~
-~10857~^~601~^49.^6^3.^~1~^~A~^^^^^^^^^^~08/01/1998~
-~10858~^~208~^169.^0^^~4~^~NC~^^^^^^^^^^~03/01/2006~
-~10858~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2003~
-~10858~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2003~
-~10858~^~268~^706.^0^^~4~^~NC~^^^^^^^^^^~03/01/2006~
-~10858~^~301~^10.^4^3.^~1~^~A~^^^1^5.^21.^3^-2.^22.^~2, 3~^~02/01/2003~
-~10858~^~304~^28.^4^0.^~1~^~A~^^^1^26.^30.^3^24.^30.^~2, 3~^~02/01/2003~
-~10858~^~305~^320.^4^6.^~1~^~A~^^^1^303.^335.^3^298.^341.^~2, 3~^~02/01/2003~
-~10858~^~306~^517.^4^49.^~1~^~A~^^^1^379.^606.^3^360.^673.^~2, 3~^~02/01/2003~
-~10858~^~307~^209.^4^26.^~1~^~A~^^^1^141.^272.^3^122.^294.^~2, 3~^~02/01/2003~
-~10858~^~318~^0.^0^^~1~^~AS~^^^^^^^^^^~01/01/2003~
-~10858~^~319~^0.^4^0.^~1~^~A~^^^1^0.^0.^^^^~1, 2, 3~^~02/01/2003~
-~10858~^~320~^0.^0^^~1~^~AS~^^^^^^^^^^~01/01/2003~
-~10858~^~321~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2003~
-~10858~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2003~
-~10858~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2003~
-~10858~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2003~
-~10858~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2003~
-~10858~^~417~^1.^2^^~1~^~A~^^^1^1.^1.^^^^^~02/01/2003~
-~10858~^~431~^0.^0^^~4~^~NR~^^^^^^^^^^~01/01/2003~
-~10858~^~432~^1.^2^^~1~^~A~^^^^^^^^^^~03/01/2006~
-~10858~^~435~^1.^0^^~4~^~NC~^^^^^^^^^^~08/01/2009~
-~10858~^~601~^75.^4^3.^~1~^~A~^^^1^68.^85.^3^63.^86.^~2, 3~^~02/01/2003~
-~10859~^~208~^190.^0^^~4~^~NC~^^^^^^^^^^~03/01/2003~
-~10859~^~262~^0.^0^^~4~^~PIK~^^^^^^^^^^~01/01/2003~
-~10859~^~263~^0.^0^^~4~^~PIK~^^^^^^^^^^~01/01/2003~
-~10859~^~268~^796.^0^^~4~^~NC~^^^^^^^^^^~03/01/2003~
-~10859~^~301~^10.^0^^~1~^~PAK~^^^^^^^^^^~03/01/2003~
-~10859~^~304~^28.^0^^~1~^~PAK~^^^^^^^^^^~03/01/2003~
-~10859~^~305~^317.^0^^~1~^~PAK~^^^^^^^^^^~03/01/2003~
-~10859~^~306~^512.^0^^~1~^~PAK~^^^^^^^^^^~03/01/2003~
-~10859~^~307~^205.^0^^~1~^~PAK~^^^^^^^^^^~03/01/2003~
-~10859~^~318~^6.^0^^~1~^~PAK~^^^^^^^^^^~01/01/2003~
-~10859~^~319~^2.^0^^~1~^~PAK~^^^^^^^^^^~01/01/2003~
-~10859~^~320~^2.^0^^~1~^~PAK~^^^^^^^^^^~01/01/2003~
-~10859~^~321~^0.^0^^~4~^~PIK~^^^^^^^^^^~01/01/2003~
-~10859~^~322~^0.^0^^~4~^~PIK~^^^^^^^^^^~01/01/2003~
-~10859~^~334~^0.^0^^~4~^~PIK~^^^^^^^^^^~01/01/2003~
-~10859~^~337~^0.^0^^~4~^~PIK~^^^^^^^^^^~01/01/2003~
-~10859~^~338~^0.^0^^~4~^~PIK~^^^^^^^^^^~01/01/2003~
-~10859~^~417~^1.^0^^~4~^~PIK~^^^^^^^^^^~01/01/2003~
-~10859~^~431~^0.^0^^~4~^~PIK~^^^^^^^^^^~01/01/2003~
-~10859~^~432~^1.^0^^~4~^~PIK~^^^^^^^^^^~01/01/2003~
-~10859~^~435~^1.^0^^~4~^~NC~^^^^^^^^^^~03/01/2006~
-~10859~^~601~^75.^0^^~1~^~PAK~^^^^^^^^^^~03/01/2003~
-~10860~^~208~^548.^0^^~4~^~NC~^^^^^^^^^^~03/01/2006~
-~10860~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2003~
-~10860~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2003~
-~10860~^~268~^2293.^0^^~4~^~NC~^^^^^^^^^^~03/01/2006~
-~10860~^~301~^10.^4^0.^~1~^~A~^^^1^10.^12.^3^9.^11.^~2, 3~^~02/01/2003~
-~10860~^~304~^30.^4^1.^~1~^~A~^^^1^27.^34.^3^25.^34.^~2, 3~^~02/01/2003~
-~10860~^~305~^506.^4^10.^~1~^~A~^^^1^480.^529.^3^470.^540.^~2, 3~^~02/01/2003~
-~10860~^~306~^539.^4^20.^~1~^~A~^^^1^512.^600.^3^472.^604.^~2, 3~^~02/01/2003~
-~10860~^~307~^2193.^4^73.^~1~^~A~^^^1^1990.^2330.^3^1959.^2425.^~2, 3~^~02/01/2003~
-~10860~^~318~^37.^0^^~1~^~AS~^^^^^^^^^^~01/01/2003~
-~10860~^~319~^11.^4^0.^~1~^~A~^^^1^11.^11.^^^^~1, 2, 3~^~02/01/2003~
-~10860~^~320~^11.^0^^~1~^~AS~^^^^^^^^^^~01/01/2003~
-~10860~^~321~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2003~
-~10860~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2003~
-~10860~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2003~
-~10860~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2003~
-~10860~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2003~
-~10860~^~417~^2.^2^^~1~^~A~^^^1^2.^2.^^^^^~02/01/2003~
-~10860~^~431~^0.^0^^~4~^~NR~^^^^^^^^^^~01/01/2003~
-~10860~^~432~^2.^2^^~1~^~A~^^^^^^^^^^~03/01/2006~
-~10860~^~435~^2.^0^^~4~^~NC~^^^^^^^^^^~03/01/2006~
-~10860~^~601~^107.^4^1.^~1~^~A~^^^1^103.^112.^3^100.^112.^~2, 3~^~02/01/2003~
-~10861~^~208~^476.^0^^~4~^~NC~^^^^^^^^^^~05/01/2012~
-~10861~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2003~
-~10861~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2003~
-~10861~^~268~^1992.^0^^~4~^~NC~^^^^^^^^^^~05/01/2012~
-~10861~^~301~^13.^18^0.^~1~^~A~^^^1^10.^19.^13^12.^14.^~2, 3~^~05/01/2012~
-~10861~^~304~^34.^18^0.^~1~^~A~^^^1^30.^37.^13^32.^34.^~2, 3~^~05/01/2012~
-~10861~^~305~^389.^18^5.^~1~^~A~^^^1^269.^483.^10^376.^402.^~2, 3~^~05/01/2012~
-~10861~^~306~^525.^18^6.^~1~^~A~^^^1^476.^588.^10^509.^540.^~2, 3~^~05/01/2012~
-~10861~^~307~^1783.^18^27.^~1~^~A~^^^1^1510.^2030.^13^1722.^1843.^~2, 3~^~05/01/2012~
-~10861~^~321~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2003~
-~10861~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2003~
-~10861~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2003~
-~10861~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2003~
-~10861~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2003~
-~10861~^~431~^0.^0^^~4~^~NR~^^^^^^^^^^~01/01/2003~
-~10861~^~601~^111.^18^1.^~1~^~A~^^^1^94.^128.^7^106.^115.^~2, 3~^~05/01/2012~
-~10862~^~208~^468.^0^^~4~^~NC~^^^^^^^^^^~05/01/2013~
-~10862~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2003~
-~10862~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2003~
-~10862~^~268~^1958.^0^^~4~^~NC~^^^^^^^^^^~05/01/2013~
-~10862~^~301~^11.^18^0.^~1~^~A~^^^1^9.^17.^9^10.^12.^~2, 3~^~05/01/2013~
-~10862~^~304~^31.^18^0.^~1~^~A~^^^1^28.^37.^6^29.^32.^~2, 3~^~05/01/2012~
-~10862~^~305~^388.^18^4.^~1~^~A~^^^1^273.^447.^10^379.^397.^~2, 3~^~05/01/2013~
-~10862~^~306~^499.^18^9.^~1~^~A~^^^1^440.^580.^7^475.^521.^~2, 3~^~05/01/2013~
-~10862~^~307~^1684.^18^34.^~1~^~A~^^^1^1340.^1910.^7^1603.^1764.^~2, 3~^~06/01/2013~
-~10862~^~318~^37.^0^^~1~^~AS~^^^^^^^^^^~06/01/2013~
-~10862~^~319~^11.^4^0.^~1~^~A~^^^1^11.^11.^^^^~1, 2, 3~^~02/01/2003~
-~10862~^~320~^11.^0^^~1~^~AS~^^^^^^^^^^~06/01/2013~
-~10862~^~321~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2003~
-~10862~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2003~
-~10862~^~324~^17.^1^^~1~^~A~^^^^^^^^^^~05/01/2012~
-~10862~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2003~
-~10862~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2003~
-~10862~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2003~
-~10862~^~417~^0.^0^^~4~^~BFPN~^~10068~^^^^^^^^^~05/01/2012~
-~10862~^~431~^0.^0^^~4~^~NR~^^^^^^^^^^~01/01/2003~
-~10862~^~432~^0.^0^^~4~^~BFPN~^^^^^^^^^^~05/01/2012~
-~10862~^~435~^0.^0^^~4~^~NC~^^^^^^^^^^~05/01/2012~
-~10862~^~601~^99.^18^1.^~1~^~A~^^^1^81.^117.^10^94.^102.^~2, 3~^~05/01/2013~
-~10863~^~208~^157.^0^^~4~^~NC~^^^^^^^^^^~03/01/2004~
-~10863~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~
-~10863~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~
-~10863~^~268~^658.^0^^~4~^~NC~^^^^^^^^^^~03/01/2004~
-~10863~^~301~^15.^1^^~1~^~A~^^^^^^^^^^~02/01/2003~
-~10863~^~304~^15.^1^^~1~^~A~^^^^^^^^^^~02/01/2003~
-~10863~^~305~^129.^1^^~1~^~A~^^^^^^^^^^~02/01/2003~
-~10863~^~306~^85.^1^^~1~^~A~^^^^^^^^^^~02/01/2003~
-~10863~^~307~^40.^1^^~1~^~A~^^^^^^^^^^~02/01/2003~
-~10863~^~318~^0.^0^^~1~^~AS~^^^^^^^^^^~02/01/2003~
-~10863~^~319~^0.^1^^~1~^~A~^^^^^^^^^~1~^~02/01/2003~
-~10863~^~320~^0.^0^^~1~^~AS~^^^^^^^^^^~02/01/2003~
-~10863~^~321~^0.^1^^~1~^~A~^^^^^^^^^~1~^~02/01/2003~
-~10863~^~322~^0.^1^^~1~^~A~^^^^^^^^^~1~^~02/01/2003~
-~10863~^~334~^0.^1^^~1~^~A~^^^^^^^^^~1~^~02/01/2003~
-~10863~^~337~^0.^1^^~1~^~A~^^^^^^^^^~1~^~02/01/2003~
-~10863~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~
-~10863~^~417~^3.^1^^~1~^~A~^^^^^^^^^^~04/01/2003~
-~10863~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2003~
-~10863~^~432~^3.^1^^~1~^~A~^^^^^^^^^^~04/01/2003~
-~10863~^~435~^3.^0^^~4~^~NC~^^^^^^^^^^~08/01/2009~
-~10863~^~601~^316.^1^^~1~^~A~^^^^^^^^^^~02/01/2003~
-~10864~^~208~^898.^0^^~4~^~NC~^^^^^^^^^^~03/01/2006~
-~10864~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2003~
-~10864~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2003~
-~10864~^~268~^3756.^0^^~4~^~NC~^^^^^^^^^^~03/01/2006~
-~10864~^~301~^1.^1^^~1~^~A~^^^^^^^^^^~03/01/2003~
-~10864~^~304~^0.^1^^~1~^~A~^^^^^^^^^~1~^~03/01/2003~
-~10864~^~305~^9.^1^^~1~^~A~^^^^^^^^^^~03/01/2003~
-~10864~^~306~^15.^1^^~1~^~A~^^^^^^^^^^~03/01/2003~
-~10864~^~307~^27.^1^^~1~^~A~^^^^^^^^^^~03/01/2003~
-~10864~^~318~^37.^0^^~1~^~AS~^^^^^^^^^^~03/01/2003~
-~10864~^~319~^11.^1^^~1~^~A~^^^^^^^^^~1~^~03/01/2003~
-~10864~^~320~^11.^0^^~1~^~AS~^^^^^^^^^^~03/01/2003~
-~10864~^~321~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2003~
-~10864~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2003~
-~10864~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2003~
-~10864~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2003~
-~10864~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2003~
-~10864~^~417~^0.^0^^~4~^~BFNN~^~10007~^^^^^^^^^~03/01/2006~
-~10864~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2006~
-~10864~^~432~^0.^0^^~4~^~BFNN~^^^^^^^^^^~03/01/2006~
-~10864~^~435~^0.^0^^~4~^~NC~^^^^^^^^^^~03/01/2006~
-~10864~^~601~^97.^1^^~1~^~A~^^^^^^^^^^~03/01/2003~
-~10865~^~208~^121.^0^^~4~^~NC~^^^^^^^^^^~03/01/2006~
-~10865~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2006~
-~10865~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2006~
-~10865~^~268~^507.^0^^~4~^~NC~^^^^^^^^^^~03/01/2006~
-~10865~^~301~^8.^2^^~1~^~A~^^^1^7.^10.^1^^^^~03/01/2006~
-~10865~^~304~^18.^2^^~1~^~A~^^^1^17.^19.^1^^^^~03/01/2006~
-~10865~^~305~^246.^2^^~1~^~A~^^^1^240.^251.^1^^^^~03/01/2006~
-~10865~^~306~^250.^2^^~1~^~A~^^^1^227.^272.^1^^^^~03/01/2006~
-~10865~^~307~^1150.^2^^~1~^~A~^^^1^1090.^1210.^1^^^^~03/01/2006~
-~10865~^~318~^37.^0^^~1~^~AS~^^^^^^^^^^~03/01/2006~
-~10865~^~319~^11.^1^^~1~^~A~^^^^^^^^^~1~^~03/01/2006~
-~10865~^~320~^11.^0^^~1~^~AS~^^^^^^^^^^~03/01/2006~
-~10865~^~321~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2006~
-~10865~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2006~
-~10865~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2006~
-~10865~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2006~
-~10865~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2006~
-~10865~^~417~^4.^1^^~1~^~A~^^^^^^^^^^~03/01/2006~
-~10865~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2006~
-~10865~^~432~^4.^1^^~4~^~NR~^^^^^^^^^^~03/01/2006~
-~10865~^~435~^4.^0^^~4~^~NC~^^^^^^^^^^~03/01/2007~
-~10865~^~601~^62.^5^4.^~1~^~A~^^^1^55.^76.^4^50.^73.^~2, 3~^~03/01/2006~
-~10866~^~208~^95.^0^^~4~^~NC~^^^^^^^^^^~05/01/2006~
-~10866~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2006~
-~10866~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2006~
-~10866~^~268~^399.^0^^~4~^~NC~^^^^^^^^^^~05/01/2006~
-~10866~^~301~^7.^1^^~1~^~A~^^^^^^^^^^~03/01/2006~
-~10866~^~304~^16.^1^^~1~^~A~^^^^^^^^^^~03/01/2006~
-~10866~^~305~^235.^1^^~1~^~A~^^^^^^^^^^~03/01/2006~
-~10866~^~306~^205.^1^^~1~^~A~^^^^^^^^^^~03/01/2006~
-~10866~^~307~^1170.^1^^~1~^~A~^^^^^^^^^^~03/01/2006~
-~10866~^~318~^29.^0^^~4~^~NC~^^^^^^^^^^~05/01/2006~
-~10866~^~319~^9.^0^^~4~^~BFSN~^~10865~^^^^^^^^^~03/01/2006~
-~10866~^~320~^9.^0^^~4~^~NC~^^^^^^^^^^~05/01/2006~
-~10866~^~321~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2006~
-~10866~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2006~
-~10866~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2006~
-~10866~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2006~
-~10866~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2006~
-~10866~^~417~^3.^0^^~4~^~BFPN~^~10865~^^^^^^^^^~03/01/2006~
-~10866~^~431~^0.^0^^~4~^~BFPN~^~10865~^^^^^^^^^~03/01/2006~
-~10866~^~432~^3.^0^^~4~^~BFPN~^^^^^^^^^^~05/01/2006~
-~10866~^~435~^3.^0^^~4~^~NC~^~10865~^^^^^^^^^~07/01/2008~
-~10866~^~601~^53.^1^^~1~^~A~^^^^^^^^^^~03/01/2006~
-~10867~^~208~^128.^0^^~4~^~NC~^^^^^^^^^^~03/01/2006~
-~10867~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2006~
-~10867~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2006~
-~10867~^~268~^537.^0^^~4~^~NC~^^^^^^^^^^~03/01/2006~
-~10867~^~301~^9.^3^0.^~1~^~A~^^^1^8.^11.^2^5.^12.^~2, 3~^~03/01/2006~
-~10867~^~304~^18.^3^0.^~1~^~A~^^^1^16.^19.^2^14.^21.^~2, 3~^~03/01/2006~
-~10867~^~305~^216.^3^13.^~1~^~A~^^^1^201.^243.^2^158.^273.^~2, 3~^~03/01/2006~
-~10867~^~306~^241.^3^17.^~1~^~A~^^^1^214.^273.^2^166.^315.^~2, 3~^~03/01/2006~
-~10867~^~307~^1060.^3^105.^~1~^~A~^^^1^935.^1270.^2^606.^1514.^~2, 3~^~03/01/2006~
-~10867~^~318~^37.^0^^~1~^~AS~^^^^^^^^^^~03/01/2006~
-~10867~^~319~^11.^2^^~1~^~A~^^^1^11.^11.^^^^~1~^~03/01/2006~
-~10867~^~320~^11.^0^^~1~^~AS~^^^^^^^^^^~03/01/2006~
-~10867~^~321~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2006~
-~10867~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2006~
-~10867~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2006~
-~10867~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2006~
-~10867~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2006~
-~10867~^~417~^1.^2^^~1~^~A~^^^1^1.^1.^^^^^~03/01/2006~
-~10867~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2006~
-~10867~^~432~^1.^2^^~4~^~NR~^^^1^1.^1.^^^^^~03/01/2006~
-~10867~^~435~^1.^0^^~4~^~NC~^^^^^^^^^^~03/01/2007~
-~10867~^~601~^65.^6^3.^~1~^~A~^^^1^57.^79.^5^55.^73.^~2, 3~^~03/01/2006~
-~10868~^~208~^131.^0^^~4~^~NC~^^^^^^^^^^~03/01/2006~
-~10868~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2006~
-~10868~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2006~
-~10868~^~268~^548.^0^^~4~^~NC~^^^^^^^^^^~03/01/2006~
-~10868~^~301~^11.^5^0.^~1~^~A~^^^1^11.^12.^4^10.^11.^~2, 3~^~03/01/2006~
-~10868~^~304~^20.^5^0.^~1~^~A~^^^1^18.^21.^4^17.^21.^~2, 3~^~03/01/2006~
-~10868~^~305~^260.^5^2.^~1~^~A~^^^1^250.^266.^4^252.^267.^~2, 3~^~03/01/2006~
-~10868~^~306~^289.^5^12.^~1~^~A~^^^1^246.^315.^4^254.^323.^~2, 3~^~03/01/2006~
-~10868~^~307~^1374.^5^75.^~1~^~A~^^^1^1220.^1630.^4^1165.^1582.^~2, 3~^~03/01/2006~
-~10868~^~318~^38.^0^^~1~^~AS~^^^^^^^^^^~03/01/2006~
-~10868~^~319~^12.^4^0.^~1~^~A~^^^1^11.^12.^3^11.^11.^~1, 2, 3~^~03/01/2006~
-~10868~^~320~^12.^0^^~1~^~AS~^^^^^^^^^^~03/01/2006~
-~10868~^~321~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2006~
-~10868~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2006~
-~10868~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2006~
-~10868~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2006~
-~10868~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2006~
-~10868~^~417~^2.^4^0.^~1~^~A~^^^1^1.^2.^3^0.^2.^~2, 3~^~03/01/2006~
-~10868~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2006~
-~10868~^~432~^2.^4^0.^~4~^~NR~^^^1^1.^2.^3^0.^2.^~2, 3~^~03/01/2006~
-~10868~^~435~^2.^0^^~4~^~NC~^^^^^^^^^^~03/01/2007~
-~10868~^~601~^65.^8^1.^~1~^~A~^^^1^55.^71.^7^60.^69.^~2, 3~^~03/01/2006~
-~10869~^~208~^122.^0^^~4~^~NC~^^^^^^^^^^~03/01/2006~
-~10869~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2006~
-~10869~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2006~
-~10869~^~268~^509.^0^^~4~^~NC~^^^^^^^^^^~03/01/2006~
-~10869~^~301~^12.^3^1.^~1~^~A~^^^1^9.^13.^2^5.^17.^~2, 3~^~03/01/2006~
-~10869~^~304~^19.^3^0.^~1~^~A~^^^1^17.^20.^2^15.^23.^~2, 3~^~03/01/2006~
-~10869~^~305~^258.^3^3.^~1~^~A~^^^1^253.^264.^2^244.^271.^~2, 3~^~03/01/2006~
-~10869~^~306~^289.^3^10.^~1~^~A~^^^1^269.^305.^2^243.^333.^~2, 3~^~03/01/2006~
-~10869~^~307~^1237.^3^164.^~1~^~A~^^^1^1020.^1560.^2^527.^1945.^~2, 3~^~03/01/2006~
-~10869~^~318~^38.^0^^~1~^~AS~^^^^^^^^^^~03/01/2006~
-~10869~^~319~^11.^2^^~1~^~A~^^^1^11.^12.^1^^^~1~^~03/01/2006~
-~10869~^~320~^11.^0^^~1~^~AS~^^^^^^^^^^~03/01/2006~
-~10869~^~321~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2006~
-~10869~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2006~
-~10869~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2006~
-~10869~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2006~
-~10869~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2006~
-~10869~^~417~^2.^2^^~1~^~A~^^^1^1.^3.^1^^^^~03/01/2006~
-~10869~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2006~
-~10869~^~432~^2.^2^^~4~^~NR~^^^1^1.^3.^1^^^^~03/01/2006~
-~10869~^~435~^2.^0^^~4~^~NC~^^^^^^^^^^~03/01/2007~
-~10869~^~601~^64.^5^1.^~1~^~A~^^^1^60.^68.^4^59.^67.^~2, 3~^~03/01/2006~
-~10870~^~208~^123.^0^^~4~^~NC~^^^^^^^^^^~03/01/2009~
-~10870~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2006~
-~10870~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2006~
-~10870~^~268~^516.^0^^~4~^~NC~^^^^^^^^^^~03/01/2009~
-~10870~^~301~^8.^2^^~1~^~A~^^^1^6.^9.^1^^^^~03/01/2006~
-~10870~^~304~^17.^2^^~1~^~A~^^^1^16.^19.^1^^^^~03/01/2006~
-~10870~^~305~^240.^2^^~1~^~A~^^^1^224.^256.^1^^^^~03/01/2006~
-~10870~^~306~^272.^2^^~1~^~A~^^^1^252.^292.^1^^^^~03/01/2006~
-~10870~^~307~^1390.^2^^~1~^~A~^^^1^1330.^1450.^1^^^^~03/01/2006~
-~10870~^~318~^44.^0^^~1~^~AS~^^^^^^^^^^~03/01/2006~
-~10870~^~319~^13.^2^^~1~^~A~^^^1^13.^13.^1^^^~1~^~03/01/2006~
-~10870~^~320~^13.^0^^~1~^~AS~^^^^^^^^^^~03/01/2006~
-~10870~^~321~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2006~
-~10870~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2006~
-~10870~^~324~^34.^0^^~4~^~BFNN~^^^^^^^^^^~03/01/2009~
-~10870~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2006~
-~10870~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2006~
-~10870~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2006~
-~10870~^~417~^3.^2^^~1~^~A~^^^1^2.^3.^1^^^^~03/01/2006~
-~10870~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2006~
-~10870~^~432~^3.^2^^~4~^~NR~^^^1^2.^3.^1^^^^~03/01/2006~
-~10870~^~435~^3.^0^^~4~^~NC~^^^^^^^^^^~06/01/2009~
-~10870~^~601~^45.^4^1.^~1~^~A~^^^1^42.^51.^3^39.^51.^~2, 3~^~03/01/2006~
-~10871~^~208~^123.^0^^~4~^~NC~^^^^^^^^^^~03/01/2009~
-~10871~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2006~
-~10871~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2006~
-~10871~^~268~^513.^0^^~4~^~NC~^^^^^^^^^^~03/01/2009~
-~10871~^~301~^8.^2^^~1~^~A~^^^1^6.^10.^1^^^^~03/01/2006~
-~10871~^~304~^15.^2^^~1~^~A~^^^1^14.^17.^1^^^^~03/01/2006~
-~10871~^~305~^224.^2^^~1~^~A~^^^1^212.^235.^1^^^^~03/01/2006~
-~10871~^~306~^245.^2^^~1~^~A~^^^1^226.^264.^1^^^^~03/01/2006~
-~10871~^~307~^1335.^2^^~1~^~A~^^^1^1280.^1390.^1^^^^~03/01/2006~
-~10871~^~318~^44.^0^^~1~^~AS~^^^^^^^^^^~03/01/2006~
-~10871~^~319~^13.^2^^~1~^~A~^^^1^13.^13.^1^^^~1~^~03/01/2006~
-~10871~^~320~^13.^0^^~1~^~AS~^^^^^^^^^^~03/01/2006~
-~10871~^~321~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2006~
-~10871~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2006~
-~10871~^~324~^27.^0^^~4~^~BFNN~^^^^^^^^^^~03/01/2009~
-~10871~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2006~
-~10871~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2006~
-~10871~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2006~
-~10871~^~417~^2.^2^^~1~^~A~^^^1^1.^3.^1^^^^~03/01/2006~
-~10871~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2006~
-~10871~^~432~^2.^2^^~4~^~NR~^^^1^1.^3.^1^^^^~03/01/2006~
-~10871~^~435~^2.^0^^~4~^~NC~^^^^^^^^^^~06/01/2009~
-~10871~^~601~^43.^4^0.^~1~^~A~^^^1^41.^45.^3^40.^45.^~2, 3~^~03/01/2006~
-~10872~^~208~^116.^0^^~4~^~NC~^^^^^^^^^^~03/01/2009~
-~10872~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2006~
-~10872~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2006~
-~10872~^~268~^486.^0^^~4~^~NC~^^^^^^^^^^~03/01/2009~
-~10872~^~301~^8.^2^^~1~^~A~^^^1^6.^10.^1^^^^~03/01/2006~
-~10872~^~304~^17.^2^^~1~^~A~^^^1^16.^18.^1^^^^~03/01/2006~
-~10872~^~305~^229.^2^^~1~^~A~^^^1^216.^241.^1^^^^~03/01/2006~
-~10872~^~306~^268.^2^^~1~^~A~^^^1^248.^287.^1^^^^~03/01/2006~
-~10872~^~307~^1310.^2^^~1~^~A~^^^1^1240.^1380.^1^^^^~03/01/2006~
-~10872~^~318~^45.^0^^~1~^~AS~^^^^^^^^^^~03/01/2006~
-~10872~^~319~^13.^2^^~1~^~A~^^^1^13.^13.^^^^~1~^~03/01/2006~
-~10872~^~320~^13.^0^^~1~^~AS~^^^^^^^^^^~03/01/2006~
-~10872~^~321~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2006~
-~10872~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2006~
-~10872~^~324~^23.^0^^~4~^~BFNN~^^^^^^^^^^~03/01/2009~
-~10872~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2006~
-~10872~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2006~
-~10872~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2006~
-~10872~^~417~^4.^2^^~1~^~A~^^^1^2.^5.^1^^^^~03/01/2006~
-~10872~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2006~
-~10872~^~432~^4.^2^^~4~^~NR~^^^1^2.^5.^1^^^^~03/01/2006~
-~10872~^~435~^4.^0^^~4~^~NC~^^^^^^^^^^~06/01/2009~
-~10872~^~601~^43.^4^0.^~1~^~A~^^^1^40.^44.^3^39.^45.^~2, 3~^~03/01/2006~
-~10873~^~208~^137.^0^^~4~^~NC~^^^^^^^^^^~03/01/2006~
-~10873~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2006~
-~10873~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2006~
-~10873~^~268~^571.^0^^~4~^~NC~^^^^^^^^^^~03/01/2006~
-~10873~^~301~^10.^3^1.^~1~^~A~^^^1^8.^12.^2^5.^15.^~2, 3~^~03/01/2006~
-~10873~^~304~^22.^3^1.^~1~^~A~^^^1^19.^24.^2^16.^27.^~2, 3~^~03/01/2006~
-~10873~^~305~^271.^3^1.^~1~^~A~^^^1^267.^273.^2^262.^278.^~2, 3~^~03/01/2006~
-~10873~^~306~^511.^3^169.^~1~^~A~^^^1^335.^850.^2^-217.^1240.^~2, 3~^~03/01/2006~
-~10873~^~307~^861.^3^56.^~1~^~A~^^^1^759.^955.^2^617.^1105.^~2, 3~^~03/01/2006~
-~10873~^~318~^37.^0^^~1~^~AS~^^^^^^^^^^~03/01/2006~
-~10873~^~319~^11.^2^^~1~^~A~^^^1^11.^11.^1^^^~1~^~03/01/2006~
-~10873~^~320~^11.^0^^~1~^~AS~^^^^^^^^^^~03/01/2006~
-~10873~^~321~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2006~
-~10873~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2006~
-~10873~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2006~
-~10873~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2006~
-~10873~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2006~
-~10873~^~417~^1.^2^^~1~^~A~^^^1^1.^1.^^^^^~03/01/2006~
-~10873~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2006~
-~10873~^~432~^1.^2^^~4~^~NR~^^^1^1.^1.^^^^^~03/01/2006~
-~10873~^~435~^1.^0^^~4~^~NC~^^^^^^^^^^~05/01/2009~
-~10873~^~601~^72.^8^2.^~1~^~A~^^^1^67.^85.^7^67.^77.^~2, 3~^~03/01/2006~
-~10874~^~208~^145.^0^^~4~^~NC~^^^^^^^^^^~03/01/2006~
-~10874~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2006~
-~10874~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2006~
-~10874~^~268~^605.^0^^~4~^~NC~^^^^^^^^^^~03/01/2006~
-~10874~^~301~^7.^3^0.^~1~^~A~^^^1^7.^8.^2^6.^8.^~2, 3~^~03/01/2006~
-~10874~^~304~^21.^3^0.^~1~^~A~^^^1^19.^22.^2^16.^24.^~2, 3~^~03/01/2006~
-~10874~^~305~^255.^3^7.^~1~^~A~^^^1^242.^269.^2^221.^288.^~2, 3~^~03/01/2006~
-~10874~^~306~^458.^3^159.^~1~^~A~^^^1^270.^775.^2^-228.^1144.^~2, 3~^~03/01/2006~
-~10874~^~307~^820.^3^27.^~1~^~A~^^^1^786.^874.^2^701.^937.^~2, 3~^~03/01/2006~
-~10874~^~318~^37.^0^^~1~^~AS~^^^^^^^^^^~03/01/2006~
-~10874~^~319~^11.^2^^~1~^~A~^^^1^11.^11.^^^^~1~^~03/01/2006~
-~10874~^~320~^11.^0^^~1~^~AS~^^^^^^^^^^~03/01/2006~
-~10874~^~321~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2006~
-~10874~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2006~
-~10874~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2006~
-~10874~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2006~
-~10874~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2006~
-~10874~^~417~^3.^2^^~1~^~A~^^^1^3.^3.^^^^^~03/01/2006~
-~10874~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2006~
-~10874~^~432~^3.^2^^~4~^~NR~^^^1^3.^3.^^^^^~03/01/2006~
-~10874~^~435~^3.^0^^~4~^~NC~^^^^^^^^^^~05/01/2009~
-~10874~^~601~^74.^7^3.^~1~^~A~^^^1^63.^88.^6^66.^82.^~2, 3~^~03/01/2006~
-~10875~^~208~^150.^0^^~4~^~NC~^^^^^^^^^^~03/01/2006~
-~10875~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2006~
-~10875~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2006~
-~10875~^~268~^629.^0^^~4~^~NC~^^^^^^^^^^~03/01/2006~
-~10875~^~301~^12.^2^^~1~^~A~^^^1^12.^13.^1^^^^~03/01/2006~
-~10875~^~304~^23.^2^^~1~^~A~^^^1^22.^23.^1^^^^~03/01/2006~
-~10875~^~305~^291.^2^^~1~^~A~^^^1^290.^291.^1^^^^~03/01/2006~
-~10875~^~306~^358.^2^^~1~^~A~^^^1^354.^361.^1^^^^~03/01/2006~
-~10875~^~307~^835.^2^^~1~^~A~^^^1^787.^882.^1^^^^~03/01/2006~
-~10875~^~318~^45.^0^^~1~^~AS~^^^^^^^^^^~03/01/2006~
-~10875~^~319~^13.^1^^~1~^~A~^^^^^^^^^~1~^~03/01/2006~
-~10875~^~320~^13.^0^^~1~^~AS~^^^^^^^^^^~03/01/2006~
-~10875~^~321~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2006~
-~10875~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2006~
-~10875~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2006~
-~10875~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2006~
-~10875~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2006~
-~10875~^~417~^1.^1^^~1~^~A~^^^^^^^^^^~03/01/2006~
-~10875~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2006~
-~10875~^~432~^1.^1^^~4~^~NR~^^^^^^^^^^~03/01/2006~
-~10875~^~435~^1.^0^^~4~^~NC~^^^^^^^^^^~03/01/2007~
-~10875~^~601~^80.^2^^~1~^~A~^^^1^75.^86.^1^^^^~03/01/2006~
-~10876~^~208~^126.^0^^~4~^~NC~^^^^^^^^^^~03/01/2009~
-~10876~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2006~
-~10876~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2006~
-~10876~^~268~^527.^0^^~4~^~NC~^^^^^^^^^^~03/01/2009~
-~10876~^~301~^4.^1^^~1~^~A~^^^^^^^^^^~03/01/2006~
-~10876~^~304~^22.^1^^~1~^~A~^^^^^^^^^^~03/01/2006~
-~10876~^~305~^312.^1^^~1~^~A~^^^^^^^^^^~03/01/2006~
-~10876~^~306~^349.^1^^~1~^~A~^^^^^^^^^^~03/01/2006~
-~10876~^~307~^986.^1^^~1~^~A~^^^^^^^^^^~03/01/2006~
-~10876~^~318~^43.^0^^~1~^~AS~^^^^^^^^^^~03/01/2006~
-~10876~^~319~^13.^1^^~1~^~A~^^^^^^^^^~1~^~03/01/2006~
-~10876~^~320~^13.^0^^~1~^~AS~^^^^^^^^^^~03/01/2006~
-~10876~^~321~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2006~
-~10876~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2006~
-~10876~^~324~^32.^0^^~4~^~BFNN~^^^^^^^^^^~03/01/2009~
-~10876~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2006~
-~10876~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2006~
-~10876~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2006~
-~10876~^~417~^1.^1^^~1~^~A~^^^^^^^^^^~03/01/2006~
-~10876~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2006~
-~10876~^~432~^1.^1^^~4~^~NR~^^^^^^^^^^~03/01/2006~
-~10876~^~435~^1.^0^^~4~^~NC~^^^^^^^^^^~06/01/2009~
-~10876~^~601~^63.^3^2.^~1~^~A~^^^1^58.^68.^2^50.^75.^~2, 3~^~03/01/2006~
-~10877~^~208~^131.^0^^~4~^~NC~^^^^^^^^^^~03/01/2006~
-~10877~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2006~
-~10877~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2006~
-~10877~^~268~^550.^0^^~4~^~NC~^^^^^^^^^^~03/01/2006~
-~10877~^~301~^10.^3^1.^~1~^~A~^^^1^8.^12.^2^5.^15.^~2, 3~^~03/01/2006~
-~10877~^~304~^19.^3^0.^~1~^~A~^^^1^17.^20.^2^14.^22.^~2, 3~^~03/01/2006~
-~10877~^~305~^221.^3^11.^~1~^~A~^^^1^200.^240.^2^170.^270.^~2, 3~^~03/01/2006~
-~10877~^~306~^264.^3^4.^~1~^~A~^^^1^256.^270.^2^246.^281.^~2, 3~^~03/01/2006~
-~10877~^~307~^1267.^3^95.^~1~^~A~^^^1^1130.^1450.^2^856.^1676.^~2, 3~^~03/01/2006~
-~10877~^~318~^38.^0^^~1~^~AS~^^^^^^^^^^~03/01/2006~
-~10877~^~319~^11.^2^^~1~^~A~^^^1^11.^12.^1^^^~1~^~03/01/2006~
-~10877~^~320~^11.^0^^~1~^~AS~^^^^^^^^^^~03/01/2006~
-~10877~^~321~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2006~
-~10877~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2006~
-~10877~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2006~
-~10877~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2006~
-~10877~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2006~
-~10877~^~417~^2.^1^^~1~^~A~^^^^^^^^^^~03/01/2006~
-~10877~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2006~
-~10877~^~432~^2.^1^^~4~^~NR~^^^^^^^^^^~03/01/2006~
-~10877~^~435~^2.^0^^~4~^~NC~^^^^^^^^^^~03/01/2007~
-~10877~^~601~^66.^5^1.^~1~^~A~^^^1^61.^70.^4^61.^70.^~2, 3~^~03/01/2006~
-~10878~^~208~^119.^0^^~4~^~NC~^^^^^^^^^^~09/01/2012~
-~10878~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2006~
-~10878~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2006~
-~10878~^~268~^498.^0^^~4~^~NC~^^^^^^^^^^~09/01/2012~
-~10878~^~301~^9.^4^2.^~1~^~A~^^^1^6.^15.^3^2.^15.^~2, 3~^~03/01/2006~
-~10878~^~304~^21.^4^0.^~1~^~A~^^^1^19.^22.^3^17.^23.^~2, 3~^~03/01/2006~
-~10878~^~305~^284.^4^8.^~1~^~A~^^^1^267.^306.^3^257.^309.^~2, 3~^~03/01/2006~
-~10878~^~306~^337.^4^11.^~1~^~A~^^^1^310.^362.^3^298.^374.^~2, 3~^~03/01/2006~
-~10878~^~307~^1223.^4^64.^~1~^~A~^^^1^1030.^1300.^3^1016.^1428.^~2, 3~^~03/01/2006~
-~10878~^~318~^43.^0^^~1~^~AS~^^^^^^^^^^~03/01/2006~
-~10878~^~319~^13.^4^0.^~1~^~A~^^^1^12.^13.^3^12.^13.^~1, 2, 3~^~03/01/2006~
-~10878~^~320~^13.^0^^~1~^~AS~^^^^^^^^^^~03/01/2006~
-~10878~^~321~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2006~
-~10878~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2006~
-~10878~^~324~^34.^0^^~4~^~BFNN~^^^^^^^^^^~03/01/2009~
-~10878~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2006~
-~10878~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2006~
-~10878~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2006~
-~10878~^~417~^1.^4^0.^~1~^~A~^^^1^0.^3.^3^0.^3.^~1, 2, 3~^~03/01/2006~
-~10878~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2006~
-~10878~^~432~^1.^4^0.^~4~^~NR~^^^1^0.^3.^3^0.^3.^~1, 2, 3~^~03/01/2006~
-~10878~^~435~^1.^0^^~4~^~NC~^^^^^^^^^^~05/01/2009~
-~10878~^~601~^54.^12^0.^~1~^~A~^^^1^50.^58.^11^52.^55.^~2, 3~^~03/01/2006~
-~10879~^~208~^117.^0^^~4~^~NC~^^^^^^^^^^~03/01/2009~
-~10879~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2006~
-~10879~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2006~
-~10879~^~268~^489.^0^^~4~^~NC~^^^^^^^^^^~03/01/2009~
-~10879~^~301~^9.^4^2.^~1~^~A~^^^1^5.^14.^3^1.^15.^~2, 3~^~03/01/2006~
-~10879~^~304~^19.^4^0.^~1~^~A~^^^1^17.^20.^3^16.^21.^~2, 3~^~03/01/2006~
-~10879~^~305~^270.^4^7.^~1~^~A~^^^1^248.^279.^3^246.^293.^~2, 3~^~03/01/2006~
-~10879~^~306~^316.^4^13.^~1~^~A~^^^1^281.^338.^3^273.^358.^~2, 3~^~03/01/2006~
-~10879~^~307~^1193.^4^22.^~1~^~A~^^^1^1160.^1260.^3^1119.^1265.^~2, 3~^~03/01/2006~
-~10879~^~318~^44.^0^^~1~^~AS~^^^^^^^^^^~03/01/2006~
-~10879~^~319~^13.^4^0.^~1~^~A~^^^1^13.^14.^3^12.^13.^~1, 2, 3~^~03/01/2006~
-~10879~^~320~^13.^0^^~1~^~AS~^^^^^^^^^^~03/01/2006~
-~10879~^~321~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2006~
-~10879~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2006~
-~10879~^~324~^28.^0^^~4~^~BFNN~^^^^^^^^^^~03/01/2009~
-~10879~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2006~
-~10879~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2006~
-~10879~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2006~
-~10879~^~417~^1.^4^0.^~1~^~A~^^^1^1.^1.^^^^~2, 3~^~03/01/2006~
-~10879~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2006~
-~10879~^~432~^1.^4^0.^~4~^~NR~^^^1^1.^1.^^^^~2, 3~^~03/01/2006~
-~10879~^~435~^1.^0^^~4~^~NC~^^^^^^^^^^~03/01/2009~
-~10879~^~601~^53.^12^1.^~1~^~A~^^^1^47.^62.^11^51.^55.^~2, 3~^~03/01/2006~
-~10880~^~208~^110.^0^^~4~^~NC~^^^^^^^^^^~03/01/2009~
-~10880~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2006~
-~10880~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2006~
-~10880~^~268~^459.^0^^~4~^~NC~^^^^^^^^^^~03/01/2009~
-~10880~^~301~^8.^4^1.^~1~^~A~^^^1^5.^14.^3^2.^14.^~2, 3~^~03/01/2006~
-~10880~^~304~^19.^4^0.^~1~^~A~^^^1^18.^21.^3^17.^21.^~2, 3~^~03/01/2006~
-~10880~^~305~^265.^4^6.^~1~^~A~^^^1^246.^278.^3^243.^286.^~2, 3~^~03/01/2006~
-~10880~^~306~^317.^4^7.^~1~^~A~^^^1^297.^331.^3^291.^341.^~2, 3~^~03/01/2006~
-~10880~^~307~^1141.^4^53.^~1~^~A~^^^1^995.^1250.^3^970.^1312.^~2, 3~^~03/01/2006~
-~10880~^~318~^42.^0^^~1~^~AS~^^^^^^^^^^~03/01/2006~
-~10880~^~319~^13.^4^0.^~1~^~A~^^^1^11.^14.^3^10.^14.^~1, 2, 3~^~03/01/2006~
-~10880~^~320~^13.^0^^~1~^~AS~^^^^^^^^^^~03/01/2006~
-~10880~^~321~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2006~
-~10880~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2006~
-~10880~^~324~^23.^0^^~4~^~BFNN~^^^^^^^^^^~03/01/2009~
-~10880~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2006~
-~10880~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2006~
-~10880~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2006~
-~10880~^~417~^2.^4^0.^~1~^~A~^^^1^1.^2.^3^0.^2.^~2, 3~^~03/01/2006~
-~10880~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2006~
-~10880~^~432~^2.^4^0.^~4~^~NR~^^^1^1.^2.^3^0.^2.^~2, 3~^~03/01/2006~
-~10880~^~435~^2.^0^^~4~^~NC~^^^^^^^^^^~06/01/2009~
-~10880~^~601~^50.^12^0.^~1~^~A~^^^1^47.^53.^11^48.^51.^~2, 3~^~03/01/2006~
-~10881~^~208~^132.^0^^~4~^~NC~^^^^^^^^^^~03/01/2006~
-~10881~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2006~
-~10881~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2006~
-~10881~^~268~^551.^0^^~4~^~NC~^^^^^^^^^^~03/01/2006~
-~10881~^~301~^9.^3^0.^~1~^~A~^^^1^8.^10.^2^7.^11.^~2, 3~^~03/01/2006~
-~10881~^~304~^15.^3^1.^~1~^~A~^^^1^13.^17.^2^10.^20.^~2, 3~^~03/01/2006~
-~10881~^~305~^202.^3^4.^~1~^~A~^^^1^195.^210.^2^183.^220.^~2, 3~^~03/01/2006~
-~10881~^~306~^224.^3^14.^~1~^~A~^^^1^197.^248.^2^160.^287.^~2, 3~^~03/01/2006~
-~10881~^~307~^1045.^3^49.^~1~^~A~^^^1^974.^1140.^2^831.^1257.^~2, 3~^~03/01/2006~
-~10881~^~318~^37.^0^^~1~^~AS~^^^^^^^^^^~03/01/2006~
-~10881~^~319~^11.^2^^~1~^~A~^^^1^11.^11.^1^^^~1~^~03/01/2006~
-~10881~^~320~^11.^0^^~1~^~AS~^^^^^^^^^^~03/01/2006~
-~10881~^~321~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2006~
-~10881~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2006~
-~10881~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2006~
-~10881~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2006~
-~10881~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2006~
-~10881~^~417~^2.^2^^~1~^~A~^^^1^1.^2.^1^^^^~03/01/2006~
-~10881~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2006~
-~10881~^~432~^2.^2^^~4~^~NR~^^^1^1.^2.^1^^^^~03/01/2006~
-~10881~^~435~^2.^0^^~4~^~NC~^^^^^^^^^^~03/01/2007~
-~10881~^~601~^72.^6^2.^~1~^~A~^^^1^66.^83.^5^66.^78.^~2, 3~^~03/01/2006~
-~10882~^~208~^116.^0^^~4~^~NC~^^^^^^^^^^~03/01/2009~
-~10882~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2006~
-~10882~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2006~
-~10882~^~268~^486.^0^^~4~^~NC~^^^^^^^^^^~03/01/2009~
-~10882~^~301~^6.^4^0.^~1~^~A~^^^1^5.^8.^3^4.^8.^~2, 3~^~03/01/2006~
-~10882~^~304~^22.^4^0.^~1~^~A~^^^1^21.^23.^3^20.^23.^~2, 3~^~03/01/2006~
-~10882~^~305~^322.^4^3.^~1~^~A~^^^1^311.^328.^3^310.^333.^~2, 3~^~03/01/2006~
-~10882~^~306~^364.^4^11.^~1~^~A~^^^1^336.^388.^3^327.^400.^~2, 3~^~03/01/2006~
-~10882~^~307~^1163.^4^71.^~1~^~A~^^^1^971.^1300.^3^933.^1391.^~2, 3~^~03/01/2006~
-~10882~^~318~^44.^0^^~1~^~AS~^^^^^^^^^^~06/01/2009~
-~10882~^~319~^13.^4^0.^~1~^~A~^^^1^13.^13.^3^12.^13.^~1, 2, 3~^~03/01/2006~
-~10882~^~320~^13.^0^^~1~^~AS~^^^^^^^^^^~06/01/2009~
-~10882~^~321~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2006~
-~10882~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2006~
-~10882~^~324~^37.^0^^~4~^~BFNN~^^^^^^^^^^~03/01/2009~
-~10882~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2006~
-~10882~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2006~
-~10882~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2006~
-~10882~^~417~^1.^4^0.^~1~^~A~^^^1^0.^2.^3^0.^2.^~1, 2, 3~^~03/01/2006~
-~10882~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2006~
-~10882~^~432~^1.^4^0.^~4~^~NR~^^^1^0.^2.^3^0.^2.^~1, 2, 3~^~03/01/2006~
-~10882~^~435~^1.^0^^~4~^~NC~^^^^^^^^^^~06/01/2009~
-~10882~^~601~^57.^11^0.^~1~^~A~^^^1^52.^65.^10^55.^59.^~2, 3~^~03/01/2006~
-~10883~^~208~^113.^0^^~4~^~NC~^^^^^^^^^^~03/01/2009~
-~10883~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2006~
-~10883~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2006~
-~10883~^~268~^472.^0^^~4~^~NC~^^^^^^^^^^~03/01/2009~
-~10883~^~301~^6.^3^0.^~1~^~A~^^^1^5.^7.^2^4.^7.^~2, 3~^~03/01/2006~
-~10883~^~304~^22.^3^1.^~1~^~A~^^^1^20.^24.^2^16.^26.^~2, 3~^~03/01/2006~
-~10883~^~305~^318.^3^8.^~1~^~A~^^^1^304.^332.^2^283.^353.^~2, 3~^~03/01/2006~
-~10883~^~306~^367.^3^27.^~1~^~A~^^^1^314.^407.^2^248.^485.^~2, 3~^~03/01/2006~
-~10883~^~307~^1180.^3^40.^~1~^~A~^^^1^1140.^1260.^2^1007.^1352.^~2, 3~^~03/01/2006~
-~10883~^~318~^44.^0^^~1~^~AS~^^^^^^^^^^~03/01/2006~
-~10883~^~319~^13.^3^0.^~1~^~A~^^^1^13.^14.^2^11.^14.^~1, 2, 3~^~03/01/2006~
-~10883~^~320~^13.^0^^~1~^~AS~^^^^^^^^^^~03/01/2006~
-~10883~^~321~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2006~
-~10883~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2006~
-~10883~^~324~^30.^0^^~4~^~BFNN~^^^^^^^^^^~03/01/2009~
-~10883~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2006~
-~10883~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2006~
-~10883~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2006~
-~10883~^~417~^2.^3^0.^~1~^~A~^^^1^0.^3.^2^-1.^5.^~1, 2, 3~^~03/01/2006~
-~10883~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2006~
-~10883~^~432~^2.^3^0.^~4~^~NR~^^^1^0.^3.^2^-1.^5.^~1, 2, 3~^~03/01/2006~
-~10883~^~435~^2.^0^^~4~^~NC~^^^^^^^^^^~06/01/2009~
-~10883~^~601~^56.^9^1.^~1~^~A~^^^1^51.^66.^8^51.^59.^~2, 3~^~03/01/2006~
-~10884~^~208~^111.^0^^~4~^~NC~^^^^^^^^^^~07/01/2015~
-~10884~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2006~
-~10884~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2006~
-~10884~^~268~^463.^0^^~4~^~NC~^^^^^^^^^^~07/01/2015~
-~10884~^~301~^6.^4^0.^~1~^~A~^^^1^4.^7.^3^3.^7.^~2, 3~^~03/01/2006~
-~10884~^~304~^21.^4^0.^~1~^~A~^^^1^20.^22.^3^19.^22.^~2, 3~^~03/01/2006~
-~10884~^~305~^303.^4^5.^~1~^~A~^^^1^288.^315.^3^284.^320.^~2, 3~^~03/01/2006~
-~10884~^~306~^347.^4^15.^~1~^~A~^^^1^305.^377.^3^297.^396.^~2, 3~^~03/01/2006~
-~10884~^~307~^1098.^4^72.^~1~^~A~^^^1^891.^1200.^3^865.^1329.^~2, 3~^~03/01/2006~
-~10884~^~318~^44.^0^^~1~^~AS~^^^^^^^^^^~03/01/2006~
-~10884~^~319~^13.^4^0.^~1~^~A~^^^1^13.^14.^3^12.^13.^~1, 2, 3~^~03/01/2006~
-~10884~^~320~^13.^0^^~1~^~AS~^^^^^^^^^^~03/01/2006~
-~10884~^~321~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2006~
-~10884~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2006~
-~10884~^~324~^25.^0^^~4~^~BFNN~^^^^^^^^^^~03/01/2009~
-~10884~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2006~
-~10884~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2006~
-~10884~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2006~
-~10884~^~417~^1.^4^0.^~1~^~A~^^^1^0.^1.^3^0.^1.^~1, 2, 3~^~03/01/2006~
-~10884~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2006~
-~10884~^~432~^1.^4^0.^~4~^~NR~^^^1^0.^1.^3^0.^1.^~1, 2, 3~^~03/01/2006~
-~10884~^~435~^1.^0^^~4~^~NC~^^^^^^^^^^~06/01/2009~
-~10884~^~601~^53.^11^1.^~1~^~A~^^^1^46.^59.^10^50.^55.^~2, 3~^~03/01/2006~
-~10885~^~208~^91.^0^^~4~^~NC~^^^^^^^^^^~05/01/2006~
-~10885~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2006~
-~10885~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2006~
-~10885~^~268~^382.^0^^~4~^~NC~^^^^^^^^^^~05/01/2006~
-~10885~^~301~^7.^1^^~1~^~A~^^^^^^^^^^~03/01/2006~
-~10885~^~304~^18.^1^^~1~^~A~^^^^^^^^^^~03/01/2006~
-~10885~^~305~^229.^1^^~1~^~A~^^^^^^^^^^~03/01/2006~
-~10885~^~306~^229.^1^^~1~^~A~^^^^^^^^^^~03/01/2006~
-~10885~^~307~^1040.^1^^~1~^~A~^^^^^^^^^^~03/01/2006~
-~10885~^~318~^29.^0^^~4~^~NC~^^^^^^^^^^~05/01/2006~
-~10885~^~319~^9.^0^^~4~^~BFSN~^~10867~^^^^^^^^^~03/01/2006~
-~10885~^~320~^9.^0^^~4~^~NC~^^^^^^^^^^~05/01/2006~
-~10885~^~321~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2006~
-~10885~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2006~
-~10885~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2006~
-~10885~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2006~
-~10885~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2006~
-~10885~^~417~^1.^0^^~4~^~BFPN~^~10867~^^^^^^^^^~03/01/2006~
-~10885~^~431~^0.^0^^~4~^~BFPN~^~10867~^^^^^^^^^~03/01/2006~
-~10885~^~432~^1.^0^^~4~^~BFPN~^~10867~^^^^^^^^^~03/01/2006~
-~10885~^~435~^1.^0^^~4~^~NC~^~10867~^^^^^^^^^~07/01/2008~
-~10885~^~601~^50.^1^^~1~^~A~^^^^^^^^^^~03/01/2006~
-~10886~^~208~^95.^0^^~4~^~NC~^^^^^^^^^^~09/01/2012~
-~10886~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2006~
-~10886~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2006~
-~10886~^~268~^398.^0^^~4~^~NC~^^^^^^^^^^~09/01/2012~
-~10886~^~301~^9.^1^^~1~^~A~^^^^^^^^^^~03/01/2006~
-~10886~^~304~^17.^1^^~1~^~A~^^^^^^^^^^~03/01/2006~
-~10886~^~305~^235.^1^^~1~^~A~^^^^^^^^^^~03/01/2006~
-~10886~^~306~^221.^1^^~1~^~A~^^^^^^^^^^~03/01/2006~
-~10886~^~307~^1090.^1^^~1~^~A~^^^^^^^^^^~03/01/2006~
-~10886~^~318~^28.^0^^~4~^~NC~^^^^^^^^^^~03/01/2006~
-~10886~^~319~^9.^0^^~4~^~BFSN~^~10868~^^^^^^^^^~03/01/2006~
-~10886~^~320~^9.^0^^~4~^~NC~^^^^^^^^^^~03/01/2006~
-~10886~^~321~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2006~
-~10886~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2006~
-~10886~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2006~
-~10886~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2006~
-~10886~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2006~
-~10886~^~417~^1.^0^^~4~^~BFPN~^~10868~^^^^^^^^^~03/01/2006~
-~10886~^~431~^0.^0^^~4~^~BFPN~^~10868~^^^^^^^^^~03/01/2006~
-~10886~^~432~^1.^0^^~4~^~BFPN~^~10868~^^^^^^^^^~03/01/2006~
-~10886~^~435~^1.^0^^~4~^~NC~^~10868~^^^^^^^^^~05/01/2006~
-~10886~^~601~^54.^1^^~1~^~A~^^^^^^^^^^~03/01/2006~
-~10887~^~208~^107.^0^^~4~^~NC~^^^^^^^^^^~05/01/2006~
-~10887~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2006~
-~10887~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2006~
-~10887~^~268~^448.^0^^~4~^~NC~^^^^^^^^^^~05/01/2006~
-~10887~^~301~^10.^1^^~1~^~A~^^^^^^^^^^~03/01/2006~
-~10887~^~304~^18.^1^^~1~^~A~^^^^^^^^^^~03/01/2006~
-~10887~^~305~^218.^1^^~1~^~A~^^^^^^^^^^~03/01/2006~
-~10887~^~306~^221.^1^^~1~^~A~^^^^^^^^^^~03/01/2006~
-~10887~^~307~^1070.^1^^~1~^~A~^^^^^^^^^^~03/01/2006~
-~10887~^~318~^32.^0^^~4~^~NC~^^^^^^^^^^~05/01/2006~
-~10887~^~319~^10.^0^^~4~^~BFSN~^~10877~^^^^^^^^^~03/01/2006~
-~10887~^~320~^10.^0^^~4~^~NC~^^^^^^^^^^~05/01/2006~
-~10887~^~321~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2006~
-~10887~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2006~
-~10887~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2006~
-~10887~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2006~
-~10887~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2006~
-~10887~^~417~^2.^0^^~4~^~BFPN~^~10877~^^^^^^^^^~03/01/2006~
-~10887~^~431~^0.^0^^~4~^~BFPN~^~10877~^^^^^^^^^~03/01/2006~
-~10887~^~432~^2.^0^^~4~^~BFPN~^~10877~^^^^^^^^^~03/01/2006~
-~10887~^~435~^2.^0^^~4~^~NC~^~10877~^^^^^^^^^~08/01/2006~
-~10887~^~601~^58.^1^^~1~^~A~^^^^^^^^^^~03/01/2006~
-~10888~^~208~^103.^0^^~4~^~NC~^^^^^^^^^^~03/01/2006~
-~10888~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2006~
-~10888~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2006~
-~10888~^~268~^432.^0^^~4~^~NC~^^^^^^^^^^~03/01/2006~
-~10888~^~301~^9.^1^^~1~^~A~^^^^^^^^^^~03/01/2006~
-~10888~^~304~^14.^1^^~1~^~A~^^^^^^^^^^~03/01/2006~
-~10888~^~305~^222.^1^^~1~^~A~^^^^^^^^^^~03/01/2006~
-~10888~^~306~^209.^1^^~1~^~A~^^^^^^^^^^~03/01/2006~
-~10888~^~307~^1160.^1^^~1~^~A~^^^^^^^^^^~03/01/2006~
-~10888~^~318~^31.^0^^~4~^~NC~^^^^^^^^^^~03/01/2006~
-~10888~^~319~^9.^0^^~4~^~BFSN~^~10869~^^^^^^^^^~03/01/2006~
-~10888~^~320~^9.^0^^~4~^~NC~^^^^^^^^^^~03/01/2006~
-~10888~^~321~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2006~
-~10888~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2006~
-~10888~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2006~
-~10888~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2006~
-~10888~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2006~
-~10888~^~417~^1.^0^^~4~^~BFPN~^~10869~^^^^^^^^^~03/01/2006~
-~10888~^~431~^0.^0^^~4~^~BFPN~^~10869~^^^^^^^^^~03/01/2006~
-~10888~^~432~^1.^0^^~4~^~BFPN~^~10869~^^^^^^^^^~03/01/2006~
-~10888~^~435~^1.^0^^~4~^~NC~^~10869~^^^^^^^^^~03/01/2007~
-~10888~^~601~^49.^1^^~1~^~A~^^^^^^^^^^~03/01/2006~
-~10889~^~208~^113.^0^^~4~^~NC~^^^^^^^^^^~03/01/2006~
-~10889~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2006~
-~10889~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2006~
-~10889~^~268~^471.^0^^~4~^~NC~^^^^^^^^^^~03/01/2006~
-~10889~^~301~^8.^1^^~1~^~A~^^^^^^^^^^~03/01/2006~
-~10889~^~304~^15.^1^^~1~^~A~^^^^^^^^^^~03/01/2006~
-~10889~^~305~^209.^1^^~1~^~A~^^^^^^^^^^~03/01/2006~
-~10889~^~306~^234.^1^^~1~^~A~^^^^^^^^^^~03/01/2006~
-~10889~^~307~^1090.^1^^~1~^~A~^^^^^^^^^^~03/01/2006~
-~10889~^~318~^32.^0^^~4~^~NC~^^^^^^^^^^~03/01/2006~
-~10889~^~319~^9.^0^^~4~^~BFSN~^~10881~^^^^^^^^^~03/01/2006~
-~10889~^~320~^9.^0^^~4~^~NC~^^^^^^^^^^~03/01/2006~
-~10889~^~321~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2006~
-~10889~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2006~
-~10889~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2006~
-~10889~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2006~
-~10889~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2006~
-~10889~^~417~^1.^0^^~4~^~BFPN~^~10881~^^^^^^^^^~03/01/2006~
-~10889~^~431~^0.^0^^~4~^~BFPN~^~10881~^^^^^^^^^~03/01/2006~
-~10889~^~432~^1.^0^^~4~^~BFPN~^~10881~^^^^^^^^^~03/01/2006~
-~10889~^~435~^1.^0^^~4~^~NC~^~10881~^^^^^^^^^~03/01/2006~
-~10889~^~601~^52.^1^^~1~^~A~^^^^^^^^^^~03/01/2006~
-~10890~^~208~^122.^0^^~4~^~NC~^^^^^^^^^^~03/01/2006~
-~10890~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2006~
-~10890~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2006~
-~10890~^~268~^512.^0^^~4~^~NC~^^^^^^^^^^~03/01/2006~
-~10890~^~301~^9.^1^^~1~^~A~^^^^^^^^^^~03/01/2006~
-~10890~^~304~^21.^1^^~1~^~A~^^^^^^^^^^~03/01/2006~
-~10890~^~305~^253.^1^^~1~^~A~^^^^^^^^^^~03/01/2006~
-~10890~^~306~^303.^1^^~1~^~A~^^^^^^^^^^~03/01/2006~
-~10890~^~307~^893.^1^^~1~^~A~^^^^^^^^^^~03/01/2006~
-~10890~^~318~^34.^0^^~4~^~NC~^^^^^^^^^^~03/01/2006~
-~10890~^~319~^10.^0^^~4~^~BFSN~^~10873~^^^^^^^^^~03/01/2006~
-~10890~^~320~^10.^0^^~4~^~NC~^^^^^^^^^^~03/01/2006~
-~10890~^~321~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2006~
-~10890~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2006~
-~10890~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2006~
-~10890~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2006~
-~10890~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2006~
-~10890~^~417~^1.^0^^~4~^~BFPN~^~10873~^^^^^^^^^~03/01/2006~
-~10890~^~431~^0.^0^^~4~^~BFPN~^~10873~^^^^^^^^^~03/01/2006~
-~10890~^~432~^1.^0^^~4~^~BFPN~^~10873~^^^^^^^^^~03/01/2006~
-~10890~^~435~^1.^0^^~4~^~NC~^~10873~^^^^^^^^^~05/01/2006~
-~10890~^~601~^68.^1^^~1~^~A~^^^^^^^^^^~03/01/2006~
-~10891~^~208~^130.^0^^~4~^~NC~^^^^^^^^^^~05/01/2006~
-~10891~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2006~
-~10891~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2006~
-~10891~^~268~^546.^0^^~4~^~NC~^^^^^^^^^^~05/01/2006~
-~10891~^~301~^7.^1^^~1~^~A~^^^^^^^^^^~03/01/2006~
-~10891~^~304~^20.^1^^~1~^~A~^^^^^^^^^^~03/01/2006~
-~10891~^~305~^250.^1^^~1~^~A~^^^^^^^^^^~03/01/2006~
-~10891~^~306~^299.^1^^~1~^~A~^^^^^^^^^^~03/01/2006~
-~10891~^~307~^809.^1^^~1~^~A~^^^^^^^^^^~03/01/2006~
-~10891~^~318~^33.^0^^~4~^~NC~^^^^^^^^^^~05/01/2006~
-~10891~^~319~^10.^0^^~4~^~BFSN~^~10874~^^^^^^^^^~03/01/2006~
-~10891~^~320~^10.^0^^~4~^~NC~^^^^^^^^^^~05/01/2006~
-~10891~^~321~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2006~
-~10891~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2006~
-~10891~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2006~
-~10891~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2006~
-~10891~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2006~
-~10891~^~417~^3.^0^^~4~^~BFPN~^~10874~^^^^^^^^^~03/01/2006~
-~10891~^~431~^0.^0^^~4~^~BFPN~^~10874~^^^^^^^^^~03/01/2006~
-~10891~^~432~^3.^0^^~4~^~BFPN~^~10874~^^^^^^^^^~03/01/2006~
-~10891~^~435~^3.^0^^~4~^~NC~^~10874~^^^^^^^^^~05/01/2006~
-~10891~^~601~^63.^1^^~1~^~A~^^^^^^^^^^~03/01/2006~
-~10892~^~208~^123.^0^^~4~^~NC~^^^^^^^^^^~03/01/2006~
-~10892~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2006~
-~10892~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2006~
-~10892~^~268~^515.^0^^~4~^~NC~^^^^^^^^^^~03/01/2006~
-~10892~^~301~^9.^1^^~1~^~A~^^^^^^^^^^~03/01/2006~
-~10892~^~304~^20.^1^^~1~^~A~^^^^^^^^^^~03/01/2006~
-~10892~^~305~^258.^1^^~1~^~A~^^^^^^^^^^~03/01/2006~
-~10892~^~306~^300.^1^^~1~^~A~^^^^^^^^^^~03/01/2006~
-~10892~^~307~^861.^1^^~1~^~A~^^^^^^^^^^~03/01/2006~
-~10892~^~318~^39.^0^^~4~^~NC~^^^^^^^^^^~03/01/2006~
-~10892~^~319~^12.^0^^~4~^~BFSN~^~10875~^^^^^^^^^~03/01/2006~
-~10892~^~320~^12.^0^^~4~^~NC~^^^^^^^^^^~03/01/2006~
-~10892~^~321~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2006~
-~10892~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2006~
-~10892~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2006~
-~10892~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2006~
-~10892~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2006~
-~10892~^~417~^1.^0^^~4~^~BFPN~^~10875~^^^^^^^^^~03/01/2006~
-~10892~^~431~^0.^0^^~4~^~BFPN~^~10875~^^^^^^^^^~03/01/2006~
-~10892~^~432~^1.^0^^~4~^~BFPN~^~10875~^^^^^^^^^~03/01/2006~
-~10892~^~435~^1.^0^^~4~^~NC~^~10875~^^^^^^^^^~03/01/2006~
-~10892~^~601~^63.^1^^~1~^~A~^^^^^^^^^^~03/01/2006~
-~10893~^~208~^109.^0^^~4~^~NC~^^^^^^^^^^~03/01/2009~
-~10893~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2006~
-~10893~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2006~
-~10893~^~268~^455.^0^^~4~^~NC~^^^^^^^^^^~03/01/2009~
-~10893~^~301~^4.^0^^~4~^~BFNN~^~10876~^^^^^^^^^~03/01/2006~
-~10893~^~304~^20.^0^^~4~^~BFNN~^~10876~^^^^^^^^^~03/01/2006~
-~10893~^~305~^283.^0^^~4~^~BFNN~^~10876~^^^^^^^^^~03/01/2006~
-~10893~^~306~^317.^0^^~4~^~BFNN~^~10876~^^^^^^^^^~03/01/2006~
-~10893~^~307~^895.^0^^~4~^~BFNN~^~10876~^^^^^^^^^~03/01/2006~
-~10893~^~318~^39.^0^^~4~^~NC~^^^^^^^^^^~03/01/2009~
-~10893~^~319~^12.^0^^~4~^~BFSN~^~10876~^^^^^^^^^~03/01/2006~
-~10893~^~320~^12.^0^^~4~^~NC~^^^^^^^^^^~03/01/2009~
-~10893~^~321~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2006~
-~10893~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2006~
-~10893~^~324~^25.^0^^~4~^~BFNN~^^^^^^^^^^~03/01/2009~
-~10893~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2006~
-~10893~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2006~
-~10893~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2006~
-~10893~^~417~^1.^0^^~4~^~BFPN~^~10876~^^^^^^^^^~03/01/2006~
-~10893~^~431~^0.^0^^~4~^~BFPN~^~10876~^^^^^^^^^~03/01/2006~
-~10893~^~432~^1.^0^^~4~^~BFPN~^~10876~^^^^^^^^^~03/01/2006~
-~10893~^~435~^1.^0^^~4~^~NC~^~10876~^^^^^^^^^~03/01/2009~
-~10893~^~601~^57.^1^^~1~^~A~^^^^^^^^^^~03/01/2006~
-~10894~^~208~^507.^0^^~4~^~NC~^^^^^^^^^^~03/01/2009~
-~10894~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2006~
-~10894~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2006~
-~10894~^~268~^2122.^0^^~4~^~NC~^^^^^^^^^^~03/01/2009~
-~10894~^~301~^6.^1^^~1~^~A~^^^^^^^^^^~03/01/2006~
-~10894~^~304~^16.^1^^~1~^~A~^^^^^^^^^^~03/01/2006~
-~10894~^~305~^169.^1^^~1~^~A~^^^^^^^^^^~03/01/2006~
-~10894~^~306~^195.^1^^~1~^~A~^^^^^^^^^^~03/01/2006~
-~10894~^~307~^677.^1^^~1~^~A~^^^^^^^^^^~03/01/2006~
-~10894~^~318~^42.^0^^~1~^~AS~^^^^^^^^^^~03/01/2006~
-~10894~^~319~^12.^1^^~1~^~A~^^^^^^^^^~1~^~03/01/2006~
-~10894~^~320~^12.^0^^~1~^~AS~^^^^^^^^^^~03/01/2006~
-~10894~^~321~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2006~
-~10894~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2006~
-~10894~^~324~^75.^0^^~4~^~BFNN~^^^^^^^^^^~03/01/2009~
-~10894~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2006~
-~10894~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2006~
-~10894~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2006~
-~10894~^~417~^1.^1^^~1~^~A~^^^^^^^^^^~03/01/2006~
-~10894~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2006~
-~10894~^~432~^1.^1^^~4~^~NR~^^^^^^^^^^~03/01/2006~
-~10894~^~435~^1.^0^^~4~^~NC~^^^^^^^^^^~03/01/2009~
-~10894~^~601~^72.^1^^~1~^~A~^^^^^^^^^^~03/01/2006~
-~10895~^~208~^515.^0^^~4~^~NC~^^^^^^^^^^~03/01/2009~
-~10895~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2006~
-~10895~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2006~
-~10895~^~268~^2153.^0^^~4~^~NC~^^^^^^^^^^~03/01/2009~
-~10895~^~301~^4.^1^^~1~^~A~^^^^^^^^^^~03/01/2006~
-~10895~^~304~^11.^1^^~1~^~A~^^^^^^^^^^~03/01/2006~
-~10895~^~305~^143.^1^^~1~^~A~^^^^^^^^^^~03/01/2006~
-~10895~^~306~^174.^1^^~1~^~A~^^^^^^^^^^~03/01/2006~
-~10895~^~307~^616.^1^^~1~^~A~^^^^^^^^^^~03/01/2006~
-~10895~^~318~^44.^0^^~1~^~AS~^^^^^^^^^^~03/01/2006~
-~10895~^~319~^13.^1^^~1~^~A~^^^^^^^^^~1~^~03/01/2006~
-~10895~^~320~^13.^0^^~1~^~AS~^^^^^^^^^^~03/01/2006~
-~10895~^~321~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2006~
-~10895~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2006~
-~10895~^~324~^48.^0^^~4~^~BFNN~^^^^^^^^^^~03/01/2009~
-~10895~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2006~
-~10895~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2006~
-~10895~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2006~
-~10895~^~417~^0.^1^^~1~^~A~^^^^^^^^^~1~^~03/01/2006~
-~10895~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2006~
-~10895~^~432~^0.^1^^~4~^~NR~^^^^^^^^^~1~^~03/01/2006~
-~10895~^~435~^0.^0^^~4~^~NC~^^^^^^^^^^~03/01/2009~
-~10895~^~601~^61.^1^^~1~^~A~^^^^^^^^^^~03/01/2006~
-~10898~^~208~^171.^0^^~4~^~NC~^^^^^^^^^^~03/01/2006~
-~10898~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2006~
-~10898~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2006~
-~10898~^~268~^716.^0^^~4~^~NC~^^^^^^^^^^~03/01/2006~
-~10898~^~301~^19.^1^^~1~^~A~^^^^^^^^^^~03/01/2006~
-~10898~^~304~^6.^1^^~1~^~A~^^^^^^^^^^~03/01/2006~
-~10898~^~305~^60.^1^^~1~^~A~^^^^^^^^^^~03/01/2006~
-~10898~^~306~^47.^1^^~1~^~A~^^^^^^^^^^~03/01/2006~
-~10898~^~307~^1050.^1^^~1~^~A~^^^^^^^^^^~03/01/2006~
-~10898~^~318~^76.^0^^~1~^~AS~^^^^^^^^^^~03/01/2006~
-~10898~^~319~^23.^1^^~1~^~A~^^^^^^^^^~1~^~03/01/2006~
-~10898~^~320~^23.^0^^~1~^~AS~^^^^^^^^^^~03/01/2006~
-~10898~^~321~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2006~
-~10898~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2006~
-~10898~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2006~
-~10898~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2006~
-~10898~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2006~
-~10898~^~417~^1.^1^^~1~^~A~^^^^^^^^^^~03/01/2006~
-~10898~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2006~
-~10898~^~432~^1.^1^^~4~^~NR~^^^^^^^^^^~03/01/2006~
-~10898~^~435~^1.^0^^~4~^~NC~^^^^^^^^^^~03/01/2006~
-~10898~^~601~^89.^1^^~1~^~A~^^^^^^^^^^~03/01/2006~
-~10899~^~208~^148.^0^^~4~^~NC~^^^^^^^^^^~09/01/2012~
-~10899~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2006~
-~10899~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2006~
-~10899~^~268~^621.^0^^~4~^~NC~^^^^^^^^^^~09/01/2012~
-~10899~^~301~^15.^3^1.^~1~^~A~^^^1^12.^17.^2^9.^20.^~2, 3~^~03/01/2006~
-~10899~^~304~^25.^3^0.^~1~^~A~^^^1^25.^27.^2^22.^28.^~2, 3~^~03/01/2006~
-~10899~^~305~^296.^3^3.^~1~^~A~^^^1^290.^302.^2^281.^311.^~2, 3~^~03/01/2006~
-~10899~^~306~^427.^3^1.^~1~^~A~^^^1^423.^429.^2^418.^434.^~2, 3~^~03/01/2006~
-~10899~^~307~^870.^3^11.^~1~^~A~^^^1^847.^884.^2^820.^919.^~2, 3~^~03/01/2006~
-~10899~^~318~^0.^0^^~1~^~AS~^^^^^^^^^^~03/01/2006~
-~10899~^~319~^0.^0^^~4~^~NR~^^^^^^^^^^~03/01/2006~
-~10899~^~320~^0.^0^^~1~^~AS~^^^^^^^^^^~03/01/2006~
-~10899~^~321~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2006~
-~10899~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2006~
-~10899~^~324~^44.^0^^~4~^~BFNN~^^^^^^^^^^~03/01/2009~
-~10899~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2006~
-~10899~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2006~
-~10899~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2006~
-~10899~^~417~^2.^1^^~1~^~A~^^^^^^^^^^~03/01/2006~
-~10899~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2006~
-~10899~^~432~^2.^1^^~4~^~NR~^^^^^^^^^^~03/01/2006~
-~10899~^~435~^2.^0^^~4~^~NC~^^^^^^^^^^~06/01/2009~
-~10899~^~601~^73.^3^1.^~1~^~A~^^^1^72.^76.^2^67.^79.^~2, 3~^~03/01/2006~
-~10900~^~208~^112.^0^^~4~^~PIK~^^^^^^^^^^~03/01/2006~
-~10900~^~262~^0.^0^^~4~^~PIK~^^^^^^^^^^~03/01/2006~
-~10900~^~263~^0.^0^^~4~^~PIK~^^^^^^^^^^~03/01/2006~
-~10900~^~268~^469.^0^^~4~^~PIK~^^^^^^^^^^~03/01/2006~
-~10900~^~301~^6.^0^^~1~^~PAK~^^^^^^^^^^~03/01/2006~
-~10900~^~304~^21.^0^^~1~^~PAK~^^^^^^^^^^~03/01/2006~
-~10900~^~305~^302.^0^^~1~^~PAK~^^^^^^^^^^~03/01/2006~
-~10900~^~306~^346.^0^^~1~^~PAK~^^^^^^^^^^~03/01/2006~
-~10900~^~307~^1096.^0^^~1~^~PAK~^^^^^^^^^^~03/01/2006~
-~10900~^~318~^44.^0^^~1~^~PAK~^^^^^^^^^^~03/01/2006~
-~10900~^~319~^13.^0^^~1~^~PAK~^^^^^^^^^^~03/01/2006~
-~10900~^~320~^13.^0^^~1~^~PAK~^^^^^^^^^^~03/01/2006~
-~10900~^~321~^0.^0^^~4~^~PIK~^^^^^^^^^^~03/01/2006~
-~10900~^~322~^0.^0^^~4~^~PIK~^^^^^^^^^^~03/01/2006~
-~10900~^~324~^25.^0^^~4~^~PIK~^^^^^^^^^^~03/01/2009~
-~10900~^~334~^0.^0^^~4~^~PIK~^^^^^^^^^^~03/01/2009~
-~10900~^~337~^0.^0^^~4~^~PIK~^^^^^^^^^^~03/01/2006~
-~10900~^~338~^0.^0^^~4~^~PIK~^^^^^^^^^^~03/01/2006~
-~10900~^~417~^1.^0^^~1~^~PAK~^^^^^^^^^^~03/01/2006~
-~10900~^~431~^0.^0^^~4~^~PIK~^^^^^^^^^^~03/01/2006~
-~10900~^~432~^1.^0^^~4~^~PIK~^^^^^^^^^^~03/01/2006~
-~10900~^~435~^1.^0^^~4~^~NC~^^^^^^^^^^~03/01/2009~
-~10900~^~601~^53.^0^^~1~^~PAK~^^^^^^^^^^~03/01/2006~
-~10901~^~208~^129.^0^^~4~^~PIK~^^^^^^^^^^~05/01/2006~
-~10901~^~262~^0.^0^^~4~^~PIK~^^^^^^^^^^~03/01/2006~
-~10901~^~263~^0.^0^^~4~^~PIK~^^^^^^^^^^~03/01/2006~
-~10901~^~268~^541.^0^^~4~^~PIK~^^^^^^^^^^~05/01/2006~
-~10901~^~301~^4.^0^^~4~^~PIK~^^^^^^^^^^~03/01/2006~
-~10901~^~304~^19.^0^^~4~^~PIK~^^^^^^^^^^~03/01/2006~
-~10901~^~305~^276.^0^^~4~^~PIK~^^^^^^^^^^~03/01/2006~
-~10901~^~306~^310.^0^^~4~^~PIK~^^^^^^^^^^~03/01/2006~
-~10901~^~307~^881.^0^^~4~^~PIK~^^^^^^^^^^~03/01/2006~
-~10901~^~318~^39.^0^^~4~^~PIK~^^^^^^^^^^~03/01/2006~
-~10901~^~319~^12.^0^^~4~^~PIK~^^^^^^^^^^~03/01/2006~
-~10901~^~320~^12.^0^^~4~^~PIK~^^^^^^^^^^~03/01/2006~
-~10901~^~321~^0.^0^^~4~^~PIK~^^^^^^^^^^~03/01/2006~
-~10901~^~322~^0.^0^^~4~^~PIK~^^^^^^^^^^~03/01/2006~
-~10901~^~324~^27.^0^^~4~^~PIK~^^^^^^^^^^~03/01/2009~
-~10901~^~334~^0.^0^^~4~^~PIK~^^^^^^^^^^~03/01/2006~
-~10901~^~337~^0.^0^^~4~^~PIK~^^^^^^^^^^~03/01/2006~
-~10901~^~338~^0.^0^^~4~^~PIK~^^^^^^^^^^~03/01/2006~
-~10901~^~417~^1.^0^^~4~^~PIK~^^^^^^^^^^~03/01/2006~
-~10901~^~431~^0.^0^^~4~^~PIK~^^^^^^^^^^~03/01/2006~
-~10901~^~432~^1.^0^^~4~^~PIK~^^^^^^^^^^~03/01/2006~
-~10901~^~435~^1.^0^^~4~^~NC~^^^^^^^^^^~06/01/2009~
-~10901~^~601~^57.^0^^~1~^~PAK~^^^^^^^^^^~03/01/2006~
-~10902~^~208~^159.^0^^~4~^~NC~^^^^^^^^^^~03/01/2006~
-~10902~^~262~^0.^0^^~4~^~PIK~^^^^^^^^^^~03/01/2006~
-~10902~^~263~^0.^0^^~4~^~PIK~^^^^^^^^^^~03/01/2006~
-~10902~^~268~^663.^0^^~4~^~NC~^^^^^^^^^^~03/01/2006~
-~10902~^~301~^9.^0^^~1~^~PAK~^^^^^^^^^^~03/01/2006~
-~10902~^~304~^19.^0^^~1~^~PAK~^^^^^^^^^^~03/01/2006~
-~10902~^~305~^248.^0^^~1~^~PAK~^^^^^^^^^^~03/01/2006~
-~10902~^~306~^289.^0^^~1~^~PAK~^^^^^^^^^^~03/01/2006~
-~10902~^~307~^839.^0^^~1~^~PAK~^^^^^^^^^^~03/01/2006~
-~10902~^~318~^39.^0^^~4~^~PIK~^^^^^^^^^^~03/01/2006~
-~10902~^~319~^12.^0^^~4~^~PIK~^^^^^^^^^^~03/01/2006~
-~10902~^~320~^12.^0^^~4~^~PIK~^^^^^^^^^^~03/01/2006~
-~10902~^~321~^0.^0^^~4~^~PIK~^^^^^^^^^^~03/01/2006~
-~10902~^~322~^0.^0^^~4~^~PIK~^^^^^^^^^^~03/01/2006~
-~10902~^~334~^0.^0^^~4~^~PIK~^^^^^^^^^^~03/01/2006~
-~10902~^~337~^0.^0^^~4~^~PIK~^^^^^^^^^^~03/01/2006~
-~10902~^~338~^0.^0^^~4~^~PIK~^^^^^^^^^^~03/01/2006~
-~10902~^~417~^1.^0^^~4~^~PIK~^^^^^^^^^^~03/01/2006~
-~10902~^~431~^0.^0^^~4~^~PIK~^^^^^^^^^^~03/01/2006~
-~10902~^~432~^1.^0^^~4~^~PIK~^^^^^^^^^^~03/01/2006~
-~10902~^~435~^1.^0^^~4~^~NC~^^^^^^^^^^~04/01/2006~
-~10902~^~601~^63.^0^^~1~^~PAK~^^^^^^^^^^~03/01/2006~
-~10903~^~208~^191.^0^^~4~^~PIK~^^^^^^^^^^~05/01/2006~
-~10903~^~262~^0.^0^^~4~^~PIK~^^^^^^^^^^~05/01/2006~
-~10903~^~263~^0.^0^^~4~^~PIK~^^^^^^^^^^~05/01/2006~
-~10903~^~268~^797.^0^^~4~^~PIK~^^^^^^^^^^~05/01/2006~
-~10903~^~301~^6.^0^^~1~^~PAK~^^^^^^^^^^~04/01/2006~
-~10903~^~304~^19.^0^^~1~^~PAK~^^^^^^^^^^~04/01/2006~
-~10903~^~305~^233.^0^^~1~^~PAK~^^^^^^^^^^~04/01/2006~
-~10903~^~306~^279.^0^^~1~^~PAK~^^^^^^^^^^~04/01/2006~
-~10903~^~307~^779.^0^^~1~^~PAK~^^^^^^^^^^~04/01/2006~
-~10903~^~318~^35.^0^^~4~^~PIK~^^^^^^^^^^~04/01/2006~
-~10903~^~319~^10.^0^^~4~^~PIK~^^^^^^^^^^~04/01/2006~
-~10903~^~320~^10.^0^^~4~^~PIK~^^^^^^^^^^~04/01/2006~
-~10903~^~321~^0.^0^^~4~^~PIK~^^^^^^^^^^~05/01/2006~
-~10903~^~322~^0.^0^^~4~^~PIK~^^^^^^^^^^~05/01/2006~
-~10903~^~334~^0.^0^^~4~^~PIK~^^^^^^^^^^~05/01/2006~
-~10903~^~337~^0.^0^^~4~^~PIK~^^^^^^^^^^~05/01/2006~
-~10903~^~338~^0.^0^^~4~^~PIK~^^^^^^^^^^~05/01/2006~
-~10903~^~417~^3.^0^^~4~^~PIK~^^^^^^^^^^~04/01/2006~
-~10903~^~431~^0.^0^^~4~^~PIK~^^^^^^^^^^~05/01/2006~
-~10903~^~432~^3.^0^^~4~^~PIK~^^^^^^^^^^~04/01/2006~
-~10903~^~435~^3.^0^^~4~^~NC~^^^^^^^^^^~05/01/2006~
-~10903~^~601~^62.^0^^~1~^~PAK~^^^^^^^^^^~04/01/2006~
-~10904~^~208~^200.^0^^~4~^~NC~^^^^^^^^^^~04/01/2006~
-~10904~^~262~^0.^0^^~4~^~PIK~^^^^^^^^^^~04/01/2006~
-~10904~^~263~^0.^0^^~4~^~PIK~^^^^^^^^^^~04/01/2006~
-~10904~^~268~^836.^0^^~4~^~NC~^^^^^^^^^^~04/01/2006~
-~10904~^~301~^8.^0^^~1~^~PAK~^^^^^^^^^^~04/01/2006~
-~10904~^~304~^19.^0^^~1~^~PAK~^^^^^^^^^^~04/01/2006~
-~10904~^~305~^231.^0^^~1~^~PAK~^^^^^^^^^^~04/01/2006~
-~10904~^~306~^278.^0^^~1~^~PAK~^^^^^^^^^^~04/01/2006~
-~10904~^~307~^838.^0^^~1~^~PAK~^^^^^^^^^^~04/01/2006~
-~10904~^~318~^36.^0^^~4~^~PIK~^^^^^^^^^^~04/01/2006~
-~10904~^~319~^11.^0^^~4~^~PIK~^^^^^^^^^^~04/01/2006~
-~10904~^~320~^11.^0^^~4~^~PIK~^^^^^^^^^^~04/01/2006~
-~10904~^~321~^0.^0^^~4~^~PIK~^^^^^^^^^^~04/01/2006~
-~10904~^~322~^0.^0^^~4~^~PIK~^^^^^^^^^^~04/01/2006~
-~10904~^~334~^0.^0^^~4~^~PIK~^^^^^^^^^^~04/01/2006~
-~10904~^~337~^0.^0^^~4~^~PIK~^^^^^^^^^^~04/01/2006~
-~10904~^~338~^0.^0^^~4~^~PIK~^^^^^^^^^^~04/01/2006~
-~10904~^~417~^1.^0^^~4~^~PIK~^^^^^^^^^^~04/01/2006~
-~10904~^~431~^0.^0^^~4~^~PIK~^^^^^^^^^^~04/01/2006~
-~10904~^~432~^1.^0^^~4~^~PIK~^^^^^^^^^^~04/01/2006~
-~10904~^~435~^1.^0^^~4~^~NC~^^^^^^^^^^~04/01/2006~
-~10904~^~601~^67.^0^^~1~^~PAK~^^^^^^^^^^~04/01/2006~
-~10905~^~208~^117.^0^^~4~^~PIK~^^^^^^^^^^~03/01/2009~
-~10905~^~262~^0.^0^^~4~^~PIK~^^^^^^^^^^~03/01/2009~
-~10905~^~263~^0.^0^^~4~^~PIK~^^^^^^^^^^~03/01/2009~
-~10905~^~268~^490.^0^^~4~^~PIK~^^^^^^^^^^~03/01/2009~
-~10905~^~301~^8.^0^^~1~^~PAK~^^^^^^^^^^~04/01/2006~
-~10905~^~304~^17.^0^^~1~^~PAK~^^^^^^^^^^~04/01/2006~
-~10905~^~305~^228.^0^^~1~^~PAK~^^^^^^^^^^~04/01/2006~
-~10905~^~306~^267.^0^^~1~^~PAK~^^^^^^^^^^~04/01/2006~
-~10905~^~307~^1308.^0^^~1~^~PAK~^^^^^^^^^^~04/01/2006~
-~10905~^~318~^45.^0^^~1~^~PAK~^^^^^^^^^^~04/01/2006~
-~10905~^~319~^13.^0^^~1~^~PAK~^^^^^^^^^^~04/01/2006~
-~10905~^~320~^13.^0^^~1~^~PAK~^^^^^^^^^^~04/01/2006~
-~10905~^~321~^0.^0^^~4~^~PIK~^^^^^^^^^^~03/01/2009~
-~10905~^~322~^0.^0^^~4~^~PIK~^^^^^^^^^^~03/01/2009~
-~10905~^~324~^23.^0^^~4~^~PIK~^^^^^^^^^^~03/01/2009~
-~10905~^~334~^0.^0^^~4~^~PIK~^^^^^^^^^^~03/01/2009~
-~10905~^~337~^0.^0^^~4~^~PIK~^^^^^^^^^^~03/01/2009~
-~10905~^~338~^0.^0^^~4~^~PIK~^^^^^^^^^^~03/01/2009~
-~10905~^~417~^3.^0^^~1~^~PAK~^^^^^^^^^^~04/01/2006~
-~10905~^~431~^0.^0^^~4~^~PIK~^^^^^^^^^^~03/01/2009~
-~10905~^~432~^3.^0^^~4~^~PIK~^^^^^^^^^^~04/01/2006~
-~10905~^~435~^3.^0^^~4~^~NC~^^^^^^^^^^~03/01/2009~
-~10905~^~601~^43.^0^^~1~^~PAK~^^^^^^^^^^~04/01/2006~
-~10906~^~208~^149.^0^^~4~^~NC~^^^^^^^^^^~04/01/2006~
-~10906~^~262~^0.^0^^~4~^~PIK~^^^^^^^^^^~04/01/2006~
-~10906~^~263~^0.^0^^~4~^~PIK~^^^^^^^^^^~04/01/2006~
-~10906~^~268~^624.^0^^~4~^~NC~^^^^^^^^^^~04/01/2006~
-~10906~^~301~^8.^0^^~1~^~PAK~^^^^^^^^^^~04/01/2006~
-~10906~^~304~^14.^0^^~1~^~PAK~^^^^^^^^^^~04/01/2006~
-~10906~^~305~^213.^0^^~1~^~PAK~^^^^^^^^^^~04/01/2006~
-~10906~^~306~^205.^0^^~1~^~PAK~^^^^^^^^^^~04/01/2006~
-~10906~^~307~^1099.^0^^~1~^~PAK~^^^^^^^^^^~04/01/2006~
-~10906~^~318~^33.^0^^~4~^~PIK~^^^^^^^^^^~04/01/2006~
-~10906~^~319~^10.^0^^~4~^~PIK~^^^^^^^^^^~04/01/2006~
-~10906~^~320~^10.^0^^~4~^~PIK~^^^^^^^^^^~04/01/2006~
-~10906~^~321~^0.^0^^~4~^~PIK~^^^^^^^^^^~04/01/2006~
-~10906~^~322~^0.^0^^~4~^~PIK~^^^^^^^^^^~04/01/2006~
-~10906~^~334~^0.^0^^~4~^~PIK~^^^^^^^^^^~04/01/2006~
-~10906~^~337~^0.^0^^~4~^~PIK~^^^^^^^^^^~04/01/2006~
-~10906~^~338~^0.^0^^~4~^~PIK~^^^^^^^^^^~04/01/2006~
-~10906~^~417~^1.^0^^~4~^~PIK~^^^^^^^^^^~04/01/2006~
-~10906~^~431~^0.^0^^~4~^~PIK~^^^^^^^^^^~04/01/2006~
-~10906~^~432~^1.^0^^~4~^~PIK~^^^^^^^^^^~04/01/2006~
-~10906~^~435~^1.^0^^~4~^~NC~^^^^^^^^^^~05/01/2006~
-~10906~^~601~^50.^0^^~1~^~PAK~^^^^^^^^^^~04/01/2006~
-~10907~^~208~^243.^0^^~4~^~NC~^^^^^^^^^^~04/01/2006~
-~10907~^~262~^0.^0^^~4~^~PIK~^^^^^^^^^^~04/01/2006~
-~10907~^~263~^0.^0^^~4~^~PIK~^^^^^^^^^^~04/01/2006~
-~10907~^~268~^1016.^0^^~4~^~NC~^^^^^^^^^^~04/01/2006~
-~10907~^~301~^6.^0^^~1~^~PAK~^^^^^^^^^^~04/01/2006~
-~10907~^~304~^14.^0^^~1~^~PAK~^^^^^^^^^^~04/01/2006~
-~10907~^~305~^188.^0^^~1~^~PAK~^^^^^^^^^^~04/01/2006~
-~10907~^~306~^215.^0^^~1~^~PAK~^^^^^^^^^^~04/01/2006~
-~10907~^~307~^936.^0^^~1~^~PAK~^^^^^^^^^^~04/01/2006~
-~10907~^~318~^36.^0^^~4~^~PIK~^^^^^^^^^^~04/01/2006~
-~10907~^~319~^11.^0^^~4~^~PIK~^^^^^^^^^^~04/01/2006~
-~10907~^~320~^11.^0^^~4~^~PIK~^^^^^^^^^^~04/01/2006~
-~10907~^~321~^0.^0^^~4~^~PIK~^^^^^^^^^^~04/01/2006~
-~10907~^~322~^0.^0^^~4~^~PIK~^^^^^^^^^^~04/01/2006~
-~10907~^~334~^0.^0^^~4~^~PIK~^^^^^^^^^^~04/01/2006~
-~10907~^~337~^0.^0^^~4~^~PIK~^^^^^^^^^^~04/01/2006~
-~10907~^~338~^0.^0^^~4~^~PIK~^^^^^^^^^^~04/01/2006~
-~10907~^~417~^1.^0^^~4~^~PIK~^^^^^^^^^^~04/01/2006~
-~10907~^~431~^0.^0^^~4~^~PIK~^^^^^^^^^^~04/01/2006~
-~10907~^~432~^1.^0^^~4~^~PIK~^^^^^^^^^^~04/01/2006~
-~10907~^~435~^1.^0^^~4~^~NC~^^^^^^^^^^~03/01/2007~
-~10907~^~601~^55.^0^^~1~^~PAK~^^^^^^^^^^~04/01/2006~
-~10908~^~208~^179.^0^^~4~^~PIK~^^^^^^^^^^~05/01/2006~
-~10908~^~262~^0.^0^^~4~^~PIK~^^^^^^^^^^~05/01/2006~
-~10908~^~263~^0.^0^^~4~^~PIK~^^^^^^^^^^~05/01/2006~
-~10908~^~268~^749.^0^^~4~^~PIK~^^^^^^^^^^~05/01/2006~
-~10908~^~301~^9.^0^^~1~^~PAK~^^^^^^^^^^~04/01/2006~
-~10908~^~304~^17.^0^^~1~^~PAK~^^^^^^^^^^~04/01/2006~
-~10908~^~305~^205.^0^^~1~^~PAK~^^^^^^^^^^~04/01/2006~
-~10908~^~306~^213.^0^^~1~^~PAK~^^^^^^^^^^~04/01/2006~
-~10908~^~307~^990.^0^^~1~^~PAK~^^^^^^^^^^~04/01/2006~
-~10908~^~318~^34.^0^^~4~^~PIK~^^^^^^^^^^~04/01/2006~
-~10908~^~319~^10.^0^^~4~^~PIK~^^^^^^^^^^~04/01/2006~
-~10908~^~320~^10.^0^^~4~^~PIK~^^^^^^^^^^~04/01/2006~
-~10908~^~321~^0.^0^^~4~^~PIK~^^^^^^^^^^~05/01/2006~
-~10908~^~322~^0.^0^^~4~^~PIK~^^^^^^^^^^~05/01/2006~
-~10908~^~334~^0.^0^^~4~^~PIK~^^^^^^^^^^~05/01/2006~
-~10908~^~337~^0.^0^^~4~^~PIK~^^^^^^^^^^~05/01/2006~
-~10908~^~338~^0.^0^^~4~^~PIK~^^^^^^^^^^~05/01/2006~
-~10908~^~417~^1.^0^^~4~^~PIK~^^^^^^^^^^~04/01/2006~
-~10908~^~431~^0.^0^^~4~^~PIK~^^^^^^^^^^~05/01/2006~
-~10908~^~432~^1.^0^^~4~^~PIK~^^^^^^^^^^~04/01/2006~
-~10908~^~435~^1.^0^^~4~^~NC~^^^^^^^^^^~05/01/2006~
-~10908~^~601~^58.^0^^~1~^~PAK~^^^^^^^^^^~04/01/2006~
-~10909~^~208~^121.^0^^~4~^~PIK~^^^^^^^^^^~03/01/2009~
-~10909~^~262~^0.^0^^~4~^~PIK~^^^^^^^^^^~03/01/2009~
-~10909~^~263~^0.^0^^~4~^~PIK~^^^^^^^^^^~03/01/2009~
-~10909~^~268~^508.^0^^~4~^~PIK~^^^^^^^^^^~03/01/2009~
-~10909~^~301~^8.^0^^~1~^~PAK~^^^^^^^^^^~04/01/2006~
-~10909~^~304~^19.^0^^~1~^~PAK~^^^^^^^^^^~04/01/2006~
-~10909~^~305~^262.^0^^~1~^~PAK~^^^^^^^^^^~04/01/2006~
-~10909~^~306~^312.^0^^~1~^~PAK~^^^^^^^^^^~04/01/2006~
-~10909~^~307~^1126.^0^^~1~^~PAK~^^^^^^^^^^~04/01/2006~
-~10909~^~318~^42.^0^^~1~^~PAK~^^^^^^^^^^~04/01/2006~
-~10909~^~319~^13.^0^^~1~^~PAK~^^^^^^^^^^~04/01/2006~
-~10909~^~320~^13.^0^^~1~^~PAK~^^^^^^^^^^~04/01/2006~
-~10909~^~321~^0.^0^^~4~^~PIK~^^^^^^^^^^~03/01/2009~
-~10909~^~322~^0.^0^^~4~^~PIK~^^^^^^^^^^~03/01/2009~
-~10909~^~324~^22.^0^^~4~^~PIK~^^^^^^^^^^~03/01/2009~
-~10909~^~334~^0.^0^^~4~^~PIK~^^^^^^^^^^~03/01/2009~
-~10909~^~337~^0.^0^^~4~^~PIK~^^^^^^^^^^~03/01/2009~
-~10909~^~338~^0.^0^^~4~^~PIK~^^^^^^^^^^~03/01/2009~
-~10909~^~417~^2.^0^^~1~^~PAK~^^^^^^^^^^~04/01/2006~
-~10909~^~431~^0.^0^^~4~^~PIK~^^^^^^^^^^~03/01/2009~
-~10909~^~432~^2.^0^^~4~^~PIK~^^^^^^^^^^~04/01/2006~
-~10909~^~435~^2.^0^^~4~^~NC~^^^^^^^^^^~06/01/2009~
-~10909~^~601~^50.^0^^~1~^~PAK~^^^^^^^^^^~04/01/2006~
-~10910~^~208~^164.^0^^~4~^~NC~^^^^^^^^^^~09/01/2012~
-~10910~^~262~^0.^0^^~4~^~PIK~^^^^^^^^^^~04/01/2006~
-~10910~^~263~^0.^0^^~4~^~PIK~^^^^^^^^^^~04/01/2006~
-~10910~^~268~^687.^0^^~4~^~NC~^^^^^^^^^^~09/01/2012~
-~10910~^~301~^8.^0^^~1~^~PAK~^^^^^^^^^^~04/01/2006~
-~10910~^~304~^16.^0^^~1~^~PAK~^^^^^^^^^^~04/01/2006~
-~10910~^~305~^220.^0^^~1~^~PAK~^^^^^^^^^^~04/01/2006~
-~10910~^~306~^213.^0^^~1~^~PAK~^^^^^^^^^^~04/01/2006~
-~10910~^~307~^1011.^0^^~1~^~PAK~^^^^^^^^^^~04/01/2006~
-~10910~^~318~^31.^0^^~4~^~NC~^^^^^^^^^^~04/01/2006~
-~10910~^~319~^9.^0^^~4~^~PIK~^^^^^^^^^^~04/01/2006~
-~10910~^~320~^9.^0^^~4~^~NC~^^^^^^^^^^~04/01/2006~
-~10910~^~321~^0.^0^^~4~^~PIK~^^^^^^^^^^~04/01/2006~
-~10910~^~322~^0.^0^^~4~^~PIK~^^^^^^^^^^~04/01/2006~
-~10910~^~334~^0.^0^^~4~^~PIK~^^^^^^^^^^~04/01/2006~
-~10910~^~337~^0.^0^^~4~^~PIK~^^^^^^^^^^~04/01/2006~
-~10910~^~338~^0.^0^^~4~^~PIK~^^^^^^^^^^~04/01/2006~
-~10910~^~417~^1.^0^^~4~^~PIK~^^^^^^^^^^~04/01/2006~
-~10910~^~431~^0.^0^^~4~^~PIK~^^^^^^^^^^~04/01/2006~
-~10910~^~432~^1.^0^^~4~^~PIK~^^^^^^^^^^~04/01/2006~
-~10910~^~435~^1.^0^^~4~^~NC~^^^^^^^^^^~05/01/2006~
-~10910~^~601~^55.^0^^~1~^~PAK~^^^^^^^^^^~04/01/2006~
-~10911~^~208~^167.^0^^~4~^~PIK~^^^^^^^^^^~05/01/2006~
-~10911~^~262~^0.^0^^~4~^~PIK~^^^^^^^^^^~05/01/2006~
-~10911~^~263~^0.^0^^~4~^~PIK~^^^^^^^^^^~05/01/2006~
-~10911~^~268~^699.^0^^~4~^~PIK~^^^^^^^^^^~05/01/2006~
-~10911~^~301~^7.^0^^~1~^~PAK~^^^^^^^^^^~04/01/2006~
-~10911~^~304~^17.^0^^~1~^~PAK~^^^^^^^^^^~04/01/2006~
-~10911~^~305~^214.^0^^~1~^~PAK~^^^^^^^^^^~04/01/2006~
-~10911~^~306~^219.^0^^~1~^~PAK~^^^^^^^^^^~04/01/2006~
-~10911~^~307~^964.^0^^~1~^~PAK~^^^^^^^^^^~04/01/2006~
-~10911~^~318~^32.^0^^~4~^~PIK~^^^^^^^^^^~04/01/2006~
-~10911~^~319~^9.^0^^~4~^~PIK~^^^^^^^^^^~04/01/2006~
-~10911~^~320~^9.^0^^~4~^~PIK~^^^^^^^^^^~04/01/2006~
-~10911~^~321~^0.^0^^~4~^~PIK~^^^^^^^^^^~05/01/2006~
-~10911~^~322~^0.^0^^~4~^~PIK~^^^^^^^^^^~05/01/2006~
-~10911~^~334~^0.^0^^~4~^~PIK~^^^^^^^^^^~05/01/2006~
-~10911~^~337~^0.^0^^~4~^~PIK~^^^^^^^^^^~05/01/2006~
-~10911~^~338~^0.^0^^~4~^~PIK~^^^^^^^^^^~05/01/2006~
-~10911~^~417~^1.^0^^~4~^~PIK~^^^^^^^^^^~04/01/2006~
-~10911~^~431~^0.^0^^~4~^~PIK~^^^^^^^^^^~05/01/2006~
-~10911~^~432~^1.^0^^~4~^~PIK~^^^^^^^^^^~04/01/2006~
-~10911~^~435~^1.^0^^~4~^~NC~^^^^^^^^^^~08/01/2006~
-~10911~^~601~^52.^0^^~1~^~PAK~^^^^^^^^^^~04/01/2006~
-~10912~^~208~^172.^0^^~4~^~PIK~^^^^^^^^^^~05/01/2006~
-~10912~^~262~^0.^0^^~4~^~PIK~^^^^^^^^^^~05/01/2006~
-~10912~^~263~^0.^0^^~4~^~PIK~^^^^^^^^^^~05/01/2006~
-~10912~^~268~^718.^0^^~4~^~PIK~^^^^^^^^^^~05/01/2006~
-~10912~^~301~^6.^0^^~1~^~PAK~^^^^^^^^^^~04/01/2006~
-~10912~^~304~^15.^0^^~1~^~PAK~^^^^^^^^^^~04/01/2006~
-~10912~^~305~^218.^0^^~1~^~PAK~^^^^^^^^^^~04/01/2006~
-~10912~^~306~^199.^0^^~1~^~PAK~^^^^^^^^^^~04/01/2006~
-~10912~^~307~^1069.^0^^~1~^~PAK~^^^^^^^^^^~04/01/2006~
-~10912~^~318~^32.^0^^~4~^~PIK~^^^^^^^^^^~04/01/2006~
-~10912~^~319~^10.^0^^~4~^~PIK~^^^^^^^^^^~04/01/2006~
-~10912~^~320~^10.^0^^~4~^~PIK~^^^^^^^^^^~04/01/2006~
-~10912~^~321~^0.^0^^~4~^~PIK~^^^^^^^^^^~05/01/2006~
-~10912~^~322~^0.^0^^~4~^~PIK~^^^^^^^^^^~05/01/2006~
-~10912~^~334~^0.^0^^~4~^~PIK~^^^^^^^^^^~05/01/2006~
-~10912~^~337~^0.^0^^~4~^~PIK~^^^^^^^^^^~05/01/2006~
-~10912~^~338~^0.^0^^~4~^~PIK~^^^^^^^^^^~05/01/2006~
-~10912~^~417~^2.^0^^~4~^~PIK~^^^^^^^^^^~04/01/2006~
-~10912~^~431~^0.^0^^~4~^~PIK~^^^^^^^^^^~05/01/2006~
-~10912~^~432~^2.^0^^~4~^~PIK~^^^^^^^^^^~04/01/2006~
-~10912~^~435~^2.^0^^~4~^~NC~^^^^^^^^^^~08/01/2006~
-~10912~^~601~^54.^0^^~1~^~PAK~^^^^^^^^^^~04/01/2006~
-~10913~^~208~^161.^0^^~4~^~PIK~^^^^^^^^^^~05/01/2006~
-~10913~^~262~^0.^0^^~4~^~PIK~^^^^^^^^^^~05/01/2006~
-~10913~^~263~^0.^0^^~4~^~PIK~^^^^^^^^^^~05/01/2006~
-~10913~^~268~^675.^0^^~4~^~PIK~^^^^^^^^^^~05/01/2006~
-~10913~^~301~^8.^0^^~1~^~PAK~^^^^^^^^^^~04/01/2006~
-~10913~^~304~^18.^0^^~1~^~PAK~^^^^^^^^^^~04/01/2006~
-~10913~^~305~^238.^0^^~1~^~PAK~^^^^^^^^^^~04/01/2006~
-~10913~^~306~^244.^0^^~1~^~PAK~^^^^^^^^^^~04/01/2006~
-~10913~^~307~^1101.^0^^~1~^~PAK~^^^^^^^^^^~04/01/2006~
-~10913~^~318~^37.^0^^~1~^~PAK~^^^^^^^^^^~04/01/2006~
-~10913~^~319~^11.^0^^~1~^~PAK~^^^^^^^^^^~04/01/2006~
-~10913~^~320~^11.^0^^~1~^~PAK~^^^^^^^^^^~04/01/2006~
-~10913~^~321~^0.^0^^~4~^~PIK~^^^^^^^^^^~05/01/2006~
-~10913~^~322~^0.^0^^~4~^~PIK~^^^^^^^^^^~05/01/2006~
-~10913~^~334~^0.^0^^~4~^~PIK~^^^^^^^^^^~05/01/2006~
-~10913~^~337~^0.^0^^~4~^~PIK~^^^^^^^^^^~05/01/2006~
-~10913~^~338~^0.^0^^~4~^~PIK~^^^^^^^^^^~05/01/2006~
-~10913~^~417~^4.^0^^~1~^~PAK~^^^^^^^^^^~04/01/2006~
-~10913~^~431~^0.^0^^~4~^~PIK~^^^^^^^^^^~05/01/2006~
-~10913~^~432~^4.^0^^~4~^~PIK~^^^^^^^^^^~04/01/2006~
-~10913~^~435~^4.^0^^~4~^~NC~^^^^^^^^^^~03/01/2007~
-~10913~^~601~^63.^0^^~1~^~PAK~^^^^^^^^^^~04/01/2006~
-~10914~^~208~^200.^0^^~4~^~PIK~^^^^^^^^^^~05/01/2006~
-~10914~^~262~^0.^0^^~4~^~PIK~^^^^^^^^^^~05/01/2006~
-~10914~^~263~^0.^0^^~4~^~PIK~^^^^^^^^^^~05/01/2006~
-~10914~^~268~^838.^0^^~4~^~PIK~^^^^^^^^^^~05/01/2006~
-~10914~^~301~^9.^0^^~1~^~PAK~^^^^^^^^^^~04/01/2006~
-~10914~^~304~^17.^0^^~1~^~PAK~^^^^^^^^^^~04/01/2006~
-~10914~^~305~^207.^0^^~1~^~PAK~^^^^^^^^^^~04/01/2006~
-~10914~^~306~^232.^0^^~1~^~PAK~^^^^^^^^^^~04/01/2006~
-~10914~^~307~^988.^0^^~1~^~PAK~^^^^^^^^^^~04/01/2006~
-~10914~^~318~^38.^0^^~1~^~PAK~^^^^^^^^^^~04/01/2006~
-~10914~^~319~^11.^0^^~1~^~PAK~^^^^^^^^^^~04/01/2006~
-~10914~^~320~^11.^0^^~1~^~PAK~^^^^^^^^^^~04/01/2006~
-~10914~^~321~^0.^0^^~4~^~PIK~^^^^^^^^^^~05/01/2006~
-~10914~^~322~^0.^0^^~4~^~PIK~^^^^^^^^^^~05/01/2006~
-~10914~^~334~^0.^0^^~4~^~PIK~^^^^^^^^^^~05/01/2006~
-~10914~^~337~^0.^0^^~4~^~PIK~^^^^^^^^^^~05/01/2006~
-~10914~^~338~^0.^0^^~4~^~PIK~^^^^^^^^^^~05/01/2006~
-~10914~^~417~^1.^0^^~1~^~PAK~^^^^^^^^^^~04/01/2006~
-~10914~^~431~^0.^0^^~4~^~PIK~^^^^^^^^^^~05/01/2006~
-~10914~^~432~^1.^0^^~4~^~PIK~^^^^^^^^^^~04/01/2006~
-~10914~^~435~^1.^0^^~4~^~NC~^^^^^^^^^^~03/01/2007~
-~10914~^~601~^66.^0^^~1~^~PAK~^^^^^^^^^^~04/01/2006~
-~10915~^~208~^166.^0^^~4~^~NC~^^^^^^^^^^~04/01/2006~
-~10915~^~262~^0.^0^^~4~^~PIK~^^^^^^^^^^~04/01/2006~
-~10915~^~263~^0.^0^^~4~^~PIK~^^^^^^^^^^~04/01/2006~
-~10915~^~268~^695.^0^^~4~^~NC~^^^^^^^^^^~04/01/2006~
-~10915~^~301~^11.^0^^~1~^~PAK~^^^^^^^^^^~04/01/2006~
-~10915~^~304~^19.^0^^~1~^~PAK~^^^^^^^^^^~04/01/2006~
-~10915~^~305~^251.^0^^~1~^~PAK~^^^^^^^^^^~04/01/2006~
-~10915~^~306~^280.^0^^~1~^~PAK~^^^^^^^^^^~04/01/2006~
-~10915~^~307~^1309.^0^^~1~^~PAK~^^^^^^^^^^~04/01/2006~
-~10915~^~318~^39.^0^^~1~^~PAK~^^^^^^^^^^~04/01/2006~
-~10915~^~319~^12.^0^^~1~^~PAK~^^^^^^^^^^~04/01/2006~
-~10915~^~320~^12.^0^^~1~^~PAK~^^^^^^^^^^~04/01/2006~
-~10915~^~321~^0.^0^^~4~^~PIK~^^^^^^^^^^~04/01/2006~
-~10915~^~322~^0.^0^^~4~^~PIK~^^^^^^^^^^~04/01/2006~
-~10915~^~334~^0.^0^^~4~^~PIK~^^^^^^^^^^~04/01/2006~
-~10915~^~337~^0.^0^^~4~^~PIK~^^^^^^^^^^~04/01/2006~
-~10915~^~338~^0.^0^^~4~^~PIK~^^^^^^^^^^~04/01/2006~
-~10915~^~417~^2.^0^^~1~^~PAK~^^^^^^^^^^~04/01/2006~
-~10915~^~431~^0.^0^^~4~^~PIK~^^^^^^^^^^~04/01/2006~
-~10915~^~432~^2.^0^^~4~^~PIK~^^^^^^^^^^~04/01/2006~
-~10915~^~435~^2.^0^^~4~^~NC~^^^^^^^^^^~03/01/2007~
-~10915~^~601~^66.^0^^~1~^~PAK~^^^^^^^^^^~04/01/2006~
-~10916~^~208~^125.^0^^~4~^~PIK~^^^^^^^^^^~03/01/2009~
-~10916~^~262~^0.^0^^~4~^~PIK~^^^^^^^^^^~03/01/2009~
-~10916~^~263~^0.^0^^~4~^~PIK~^^^^^^^^^^~03/01/2009~
-~10916~^~268~^523.^0^^~4~^~PIK~^^^^^^^^^^~03/01/2009~
-~10916~^~301~^9.^0^^~1~^~PAK~^^^^^^^^^^~04/01/2006~
-~10916~^~304~^21.^0^^~1~^~PAK~^^^^^^^^^^~04/01/2006~
-~10916~^~305~^281.^0^^~1~^~PAK~^^^^^^^^^^~04/01/2006~
-~10916~^~306~^334.^0^^~1~^~PAK~^^^^^^^^^^~04/01/2006~
-~10916~^~307~^1212.^0^^~1~^~PAK~^^^^^^^^^^~04/01/2006~
-~10916~^~318~^43.^0^^~1~^~PAK~^^^^^^^^^^~04/01/2006~
-~10916~^~319~^13.^0^^~1~^~PAK~^^^^^^^^^^~04/01/2006~
-~10916~^~320~^13.^0^^~1~^~PAK~^^^^^^^^^^~04/01/2006~
-~10916~^~321~^0.^0^^~4~^~PIK~^^^^^^^^^^~03/01/2009~
-~10916~^~322~^0.^0^^~4~^~PIK~^^^^^^^^^^~03/01/2009~
-~10916~^~324~^35.^0^^~4~^~PIK~^^^^^^^^^^~03/01/2009~
-~10916~^~334~^0.^0^^~4~^~PIK~^^^^^^^^^^~03/01/2009~
-~10916~^~337~^0.^0^^~4~^~PIK~^^^^^^^^^^~03/01/2009~
-~10916~^~338~^0.^0^^~4~^~PIK~^^^^^^^^^^~03/01/2009~
-~10916~^~417~^1.^0^^~1~^~PAK~^^^^^^^^^^~04/01/2006~
-~10916~^~431~^0.^0^^~4~^~PIK~^^^^^^^^^^~03/01/2009~
-~10916~^~432~^1.^0^^~4~^~PIK~^^^^^^^^^^~04/01/2006~
-~10916~^~435~^1.^0^^~4~^~NC~^^^^^^^^^^~06/01/2009~
-~10916~^~601~^54.^0^^~1~^~PAK~^^^^^^^^^^~04/01/2006~
-~10917~^~208~^126.^0^^~4~^~PIK~^^^^^^^^^^~03/01/2009~
-~10917~^~262~^0.^0^^~4~^~PIK~^^^^^^^^^^~03/01/2009~
-~10917~^~263~^0.^0^^~4~^~PIK~^^^^^^^^^^~03/01/2009~
-~10917~^~268~^527.^0^^~4~^~PIK~^^^^^^^^^^~03/01/2009~
-~10917~^~301~^9.^0^^~1~^~PAK~^^^^^^^^^^~04/01/2006~
-~10917~^~304~^19.^0^^~1~^~PAK~^^^^^^^^^^~04/01/2006~
-~10917~^~305~^268.^0^^~1~^~PAK~^^^^^^^^^^~04/01/2006~
-~10917~^~306~^313.^0^^~1~^~PAK~^^^^^^^^^^~04/01/2006~
-~10917~^~307~^1181.^0^^~1~^~PAK~^^^^^^^^^^~04/01/2006~
-~10917~^~318~^44.^0^^~1~^~PAK~^^^^^^^^^^~04/01/2006~
-~10917~^~319~^13.^0^^~1~^~PAK~^^^^^^^^^^~04/01/2006~
-~10917~^~320~^13.^0^^~1~^~PAK~^^^^^^^^^^~04/01/2006~
-~10917~^~321~^0.^0^^~4~^~PIK~^^^^^^^^^^~03/01/2009~
-~10917~^~322~^0.^0^^~4~^~PIK~^^^^^^^^^^~03/01/2009~
-~10917~^~324~^29.^0^^~4~^~PIK~^^^^^^^^^^~03/01/2009~
-~10917~^~334~^0.^0^^~4~^~PIK~^^^^^^^^^^~03/01/2009~
-~10917~^~337~^0.^0^^~4~^~PIK~^^^^^^^^^^~03/01/2009~
-~10917~^~338~^0.^0^^~4~^~PIK~^^^^^^^^^^~03/01/2009~
-~10917~^~417~^1.^0^^~1~^~PAK~^^^^^^^^^^~04/01/2006~
-~10917~^~431~^0.^0^^~4~^~PIK~^^^^^^^^^^~03/01/2009~
-~10917~^~432~^1.^0^^~4~^~PIK~^^^^^^^^^^~04/01/2006~
-~10917~^~435~^1.^0^^~4~^~NC~^^^^^^^^^^~06/01/2009~
-~10917~^~601~^54.^0^^~1~^~PAK~^^^^^^^^^^~04/01/2006~
-~10918~^~208~^186.^0^^~4~^~PIK~^^^^^^^^^^~05/01/2006~
-~10918~^~262~^0.^0^^~4~^~PIK~^^^^^^^^^^~05/01/2006~
-~10918~^~263~^0.^0^^~4~^~PIK~^^^^^^^^^^~05/01/2006~
-~10918~^~268~^777.^0^^~4~^~PIK~^^^^^^^^^^~05/01/2006~
-~10918~^~301~^10.^0^^~1~^~PAK~^^^^^^^^^^~04/01/2006~
-~10918~^~304~^18.^0^^~1~^~PAK~^^^^^^^^^^~04/01/2006~
-~10918~^~305~^213.^0^^~1~^~PAK~^^^^^^^^^^~04/01/2006~
-~10918~^~306~^254.^0^^~1~^~PAK~^^^^^^^^^^~04/01/2006~
-~10918~^~307~^1181.^0^^~1~^~PAK~^^^^^^^^^^~04/01/2006~
-~10918~^~318~^38.^0^^~1~^~PAK~^^^^^^^^^^~04/01/2006~
-~10918~^~319~^12.^0^^~1~^~PAK~^^^^^^^^^^~04/01/2006~
-~10918~^~320~^12.^0^^~1~^~PAK~^^^^^^^^^^~04/01/2006~
-~10918~^~321~^0.^0^^~4~^~PIK~^^^^^^^^^^~05/01/2006~
-~10918~^~322~^0.^0^^~4~^~PIK~^^^^^^^^^^~05/01/2006~
-~10918~^~334~^0.^0^^~4~^~PIK~^^^^^^^^^^~05/01/2006~
-~10918~^~337~^0.^0^^~4~^~PIK~^^^^^^^^^^~05/01/2006~
-~10918~^~338~^0.^0^^~4~^~PIK~^^^^^^^^^^~05/01/2006~
-~10918~^~417~^2.^0^^~1~^~PAK~^^^^^^^^^^~04/01/2006~
-~10918~^~431~^0.^0^^~4~^~PIK~^^^^^^^^^^~05/01/2006~
-~10918~^~432~^2.^0^^~4~^~PIK~^^^^^^^^^^~04/01/2006~
-~10918~^~435~^2.^0^^~4~^~NC~^^^^^^^^^^~03/01/2007~
-~10918~^~601~^67.^0^^~1~^~PAK~^^^^^^^^^^~04/01/2006~
-~10919~^~208~^234.^0^^~4~^~NC~^^^^^^^^^^~04/01/2006~
-~10919~^~262~^0.^0^^~4~^~PIK~^^^^^^^^^^~04/01/2006~
-~10919~^~263~^0.^0^^~4~^~PIK~^^^^^^^^^^~04/01/2006~
-~10919~^~268~^979.^0^^~4~^~NC~^^^^^^^^^^~04/01/2006~
-~10919~^~301~^8.^0^^~1~^~PAK~^^^^^^^^^^~04/01/2006~
-~10919~^~304~^15.^0^^~1~^~PAK~^^^^^^^^^^~04/01/2006~
-~10919~^~305~^193.^0^^~1~^~PAK~^^^^^^^^^^~04/01/2006~
-~10919~^~306~^216.^0^^~1~^~PAK~^^^^^^^^^^~04/01/2006~
-~10919~^~307~^945.^0^^~1~^~PAK~^^^^^^^^^^~04/01/2006~
-~10919~^~318~^38.^0^^~1~^~PAK~^^^^^^^^^^~04/01/2006~
-~10919~^~319~^12.^0^^~1~^~PAK~^^^^^^^^^^~04/01/2006~
-~10919~^~320~^12.^0^^~1~^~PAK~^^^^^^^^^^~04/01/2006~
-~10919~^~321~^0.^0^^~4~^~PIK~^^^^^^^^^^~04/01/2006~
-~10919~^~322~^0.^0^^~4~^~PIK~^^^^^^^^^^~04/01/2006~
-~10919~^~334~^0.^0^^~4~^~PIK~^^^^^^^^^^~04/01/2006~
-~10919~^~337~^0.^0^^~4~^~PIK~^^^^^^^^^^~04/01/2006~
-~10919~^~338~^0.^0^^~4~^~PIK~^^^^^^^^^^~04/01/2006~
-~10919~^~417~^1.^0^^~1~^~PAK~^^^^^^^^^^~04/01/2006~
-~10919~^~431~^0.^0^^~4~^~PIK~^^^^^^^^^^~04/01/2006~
-~10919~^~432~^1.^0^^~4~^~PIK~^^^^^^^^^^~04/01/2006~
-~10919~^~435~^1.^0^^~4~^~NC~^^^^^^^^^^~03/01/2007~
-~10919~^~601~^72.^0^^~1~^~PAK~^^^^^^^^^^~04/01/2006~
-~10920~^~208~^155.^0^^~4~^~NC~^^^^^^^^^^~04/01/2006~
-~10920~^~262~^0.^0^^~4~^~PIK~^^^^^^^^^^~04/01/2006~
-~10920~^~263~^0.^0^^~4~^~PIK~^^^^^^^^^^~04/01/2006~
-~10920~^~268~^649.^0^^~4~^~NC~^^^^^^^^^^~04/01/2006~
-~10920~^~301~^11.^0^^~1~^~PAK~^^^^^^^^^^~04/01/2006~
-~10920~^~304~^19.^0^^~1~^~PAK~^^^^^^^^^^~04/01/2006~
-~10920~^~305~^250.^0^^~1~^~PAK~^^^^^^^^^^~04/01/2006~
-~10920~^~306~^281.^0^^~1~^~PAK~^^^^^^^^^^~04/01/2006~
-~10920~^~307~^1188.^0^^~1~^~PAK~^^^^^^^^^^~04/01/2006~
-~10920~^~318~^38.^0^^~1~^~PAK~^^^^^^^^^^~04/01/2006~
-~10920~^~319~^11.^0^^~1~^~PAK~^^^^^^^^^^~04/01/2006~
-~10920~^~320~^11.^0^^~1~^~PAK~^^^^^^^^^^~04/01/2006~
-~10920~^~321~^0.^0^^~4~^~PIK~^^^^^^^^^^~04/01/2006~
-~10920~^~322~^0.^0^^~4~^~PIK~^^^^^^^^^^~04/01/2006~
-~10920~^~334~^0.^0^^~4~^~PIK~^^^^^^^^^^~04/01/2006~
-~10920~^~337~^0.^0^^~4~^~PIK~^^^^^^^^^^~04/01/2006~
-~10920~^~338~^0.^0^^~4~^~PIK~^^^^^^^^^^~04/01/2006~
-~10920~^~417~^2.^0^^~1~^~PAK~^^^^^^^^^^~04/01/2006~
-~10920~^~431~^0.^0^^~4~^~PIK~^^^^^^^^^^~04/01/2006~
-~10920~^~432~^2.^0^^~4~^~PIK~^^^^^^^^^^~04/01/2006~
-~10920~^~435~^2.^0^^~4~^~NC~^^^^^^^^^^~03/01/2007~
-~10920~^~601~^64.^0^^~1~^~PAK~^^^^^^^^^^~04/01/2006~
-~10921~^~208~^124.^0^^~4~^~PIK~^^^^^^^^^^~03/01/2009~
-~10921~^~262~^0.^0^^~4~^~PIK~^^^^^^^^^^~03/01/2009~
-~10921~^~263~^0.^0^^~4~^~PIK~^^^^^^^^^^~03/01/2009~
-~10921~^~268~^519.^0^^~4~^~PIK~^^^^^^^^^^~03/01/2009~
-~10921~^~301~^8.^0^^~1~^~PAK~^^^^^^^^^^~04/01/2006~
-~10921~^~304~^17.^0^^~1~^~PAK~^^^^^^^^^^~04/01/2006~
-~10921~^~305~^240.^0^^~1~^~PAK~^^^^^^^^^^~04/01/2006~
-~10921~^~306~^272.^0^^~1~^~PAK~^^^^^^^^^^~04/01/2006~
-~10921~^~307~^1389.^0^^~1~^~PAK~^^^^^^^^^^~04/01/2006~
-~10921~^~318~^44.^0^^~1~^~PAK~^^^^^^^^^^~04/01/2006~
-~10921~^~319~^13.^0^^~1~^~PAK~^^^^^^^^^^~04/01/2006~
-~10921~^~320~^13.^0^^~1~^~PAK~^^^^^^^^^^~04/01/2006~
-~10921~^~321~^0.^0^^~4~^~PIK~^^^^^^^^^^~03/01/2009~
-~10921~^~322~^0.^0^^~4~^~PIK~^^^^^^^^^^~03/01/2009~
-~10921~^~324~^34.^0^^~4~^~PIK~^^^^^^^^^^~03/01/2009~
-~10921~^~334~^0.^0^^~4~^~PIK~^^^^^^^^^^~03/01/2009~
-~10921~^~337~^0.^0^^~4~^~PIK~^^^^^^^^^^~03/01/2009~
-~10921~^~338~^0.^0^^~4~^~PIK~^^^^^^^^^^~03/01/2009~
-~10921~^~417~^2.^0^^~1~^~PAK~^^^^^^^^^^~04/01/2006~
-~10921~^~431~^0.^0^^~4~^~PIK~^^^^^^^^^^~03/01/2009~
-~10921~^~432~^2.^0^^~4~^~PIK~^^^^^^^^^^~04/01/2006~
-~10921~^~435~^2.^0^^~4~^~NC~^^^^^^^^^^~03/01/2009~
-~10921~^~601~^45.^0^^~1~^~PAK~^^^^^^^^^^~04/01/2006~
-~10922~^~208~^123.^0^^~4~^~PIK~^^^^^^^^^^~03/01/2009~
-~10922~^~262~^0.^0^^~4~^~PIK~^^^^^^^^^^~03/01/2009~
-~10922~^~263~^0.^0^^~4~^~PIK~^^^^^^^^^^~03/01/2009~
-~10922~^~268~^513.^0^^~4~^~PIK~^^^^^^^^^^~03/01/2009~
-~10922~^~301~^8.^0^^~1~^~PAK~^^^^^^^^^^~04/01/2006~
-~10922~^~304~^15.^0^^~1~^~PAK~^^^^^^^^^^~04/01/2006~
-~10922~^~305~^224.^0^^~1~^~PAK~^^^^^^^^^^~04/01/2006~
-~10922~^~306~^245.^0^^~1~^~PAK~^^^^^^^^^^~04/01/2006~
-~10922~^~307~^1335.^0^^~1~^~PAK~^^^^^^^^^^~04/01/2006~
-~10922~^~318~^44.^0^^~1~^~PAK~^^^^^^^^^^~04/01/2006~
-~10922~^~319~^13.^0^^~1~^~PAK~^^^^^^^^^^~04/01/2006~
-~10922~^~320~^13.^0^^~1~^~PAK~^^^^^^^^^^~04/01/2006~
-~10922~^~321~^0.^0^^~4~^~PIK~^^^^^^^^^^~03/01/2009~
-~10922~^~322~^0.^0^^~4~^~PIK~^^^^^^^^^^~03/01/2009~
-~10922~^~324~^27.^0^^~4~^~PIK~^^^^^^^^^^~03/01/2009~
-~10922~^~334~^0.^0^^~4~^~PIK~^^^^^^^^^^~03/01/2009~
-~10922~^~337~^0.^0^^~4~^~PIK~^^^^^^^^^^~03/01/2009~
-~10922~^~338~^0.^0^^~4~^~PIK~^^^^^^^^^^~03/01/2009~
-~10922~^~417~^2.^0^^~1~^~PAK~^^^^^^^^^^~04/01/2006~
-~10922~^~431~^0.^0^^~4~^~PIK~^^^^^^^^^^~03/01/2009~
-~10922~^~432~^2.^0^^~4~^~PIK~^^^^^^^^^^~04/01/2006~
-~10922~^~435~^2.^0^^~4~^~NC~^^^^^^^^^^~03/01/2009~
-~10922~^~601~^43.^0^^~1~^~PAK~^^^^^^^^^^~04/01/2006~
-~10923~^~208~^177.^0^^~4~^~NC~^^^^^^^^^^~04/01/2006~
-~10923~^~262~^0.^0^^~4~^~PIK~^^^^^^^^^^~04/01/2006~
-~10923~^~263~^0.^0^^~4~^~PIK~^^^^^^^^^^~04/01/2006~
-~10923~^~268~^740.^0^^~4~^~NC~^^^^^^^^^^~04/01/2006~
-~10923~^~301~^10.^0^^~1~^~PAK~^^^^^^^^^^~04/01/2006~
-~10923~^~304~^21.^0^^~1~^~PAK~^^^^^^^^^^~04/01/2006~
-~10923~^~305~^260.^0^^~1~^~PAK~^^^^^^^^^^~04/01/2006~
-~10923~^~306~^477.^0^^~1~^~PAK~^^^^^^^^^^~04/01/2006~
-~10923~^~307~^841.^0^^~1~^~PAK~^^^^^^^^^^~04/01/2006~
-~10923~^~318~^38.^0^^~1~^~PAK~^^^^^^^^^^~04/01/2006~
-~10923~^~319~^11.^0^^~1~^~PAK~^^^^^^^^^^~04/01/2006~
-~10923~^~320~^11.^0^^~1~^~PAK~^^^^^^^^^^~04/01/2006~
-~10923~^~321~^0.^0^^~4~^~PIK~^^^^^^^^^^~04/01/2006~
-~10923~^~322~^0.^0^^~4~^~PIK~^^^^^^^^^^~04/01/2006~
-~10923~^~334~^0.^0^^~4~^~PIK~^^^^^^^^^^~04/01/2006~
-~10923~^~337~^0.^0^^~4~^~PIK~^^^^^^^^^^~04/01/2006~
-~10923~^~338~^0.^0^^~4~^~PIK~^^^^^^^^^^~04/01/2006~
-~10923~^~417~^1.^0^^~1~^~PAK~^^^^^^^^^^~04/01/2006~
-~10923~^~431~^0.^0^^~4~^~PIK~^^^^^^^^^^~04/01/2006~
-~10923~^~432~^1.^0^^~4~^~PIK~^^^^^^^^^^~04/01/2006~
-~10923~^~435~^1.^0^^~4~^~NC~^^^^^^^^^^~03/01/2007~
-~10923~^~601~^72.^0^^~1~^~PAK~^^^^^^^^^^~04/01/2006~
-~10924~^~208~^191.^0^^~4~^~PIK~^^^^^^^^^^~05/01/2006~
-~10924~^~262~^0.^0^^~4~^~PIK~^^^^^^^^^^~05/01/2006~
-~10924~^~263~^0.^0^^~4~^~PIK~^^^^^^^^^^~05/01/2006~
-~10924~^~268~^799.^0^^~4~^~PIK~^^^^^^^^^^~05/01/2006~
-~10924~^~301~^7.^0^^~1~^~PAK~^^^^^^^^^^~04/01/2006~
-~10924~^~304~^20.^0^^~1~^~PAK~^^^^^^^^^^~04/01/2006~
-~10924~^~305~^244.^0^^~1~^~PAK~^^^^^^^^^^~04/01/2006~
-~10924~^~306~^424.^0^^~1~^~PAK~^^^^^^^^^^~04/01/2006~
-~10924~^~307~^801.^0^^~1~^~PAK~^^^^^^^^^^~04/01/2006~
-~10924~^~318~^38.^0^^~1~^~PAK~^^^^^^^^^^~04/01/2006~
-~10924~^~319~^11.^0^^~1~^~PAK~^^^^^^^^^^~04/01/2006~
-~10924~^~320~^11.^0^^~1~^~PAK~^^^^^^^^^^~04/01/2006~
-~10924~^~321~^0.^0^^~4~^~PIK~^^^^^^^^^^~05/01/2006~
-~10924~^~322~^0.^0^^~4~^~PIK~^^^^^^^^^^~05/01/2006~
-~10924~^~334~^0.^0^^~4~^~PIK~^^^^^^^^^^~05/01/2006~
-~10924~^~337~^0.^0^^~4~^~PIK~^^^^^^^^^^~05/01/2006~
-~10924~^~338~^0.^0^^~4~^~PIK~^^^^^^^^^^~05/01/2006~
-~10924~^~417~^3.^0^^~1~^~PAK~^^^^^^^^^^~04/01/2006~
-~10924~^~431~^0.^0^^~4~^~PIK~^^^^^^^^^^~05/01/2006~
-~10924~^~432~^3.^0^^~4~^~PIK~^^^^^^^^^^~04/01/2006~
-~10924~^~435~^3.^0^^~4~^~NC~^^^^^^^^^^~03/01/2007~
-~10924~^~601~^74.^0^^~1~^~PAK~^^^^^^^^^^~04/01/2006~
-~10925~^~208~^180.^0^^~4~^~NC~^^^^^^^^^^~04/01/2006~
-~10925~^~262~^0.^0^^~4~^~PIK~^^^^^^^^^^~04/01/2006~
-~10925~^~263~^0.^0^^~4~^~PIK~^^^^^^^^^^~04/01/2006~
-~10925~^~268~^753.^0^^~4~^~NC~^^^^^^^^^^~04/01/2006~
-~10925~^~301~^12.^0^^~1~^~PAK~^^^^^^^^^^~04/01/2006~
-~10925~^~304~^22.^0^^~1~^~PAK~^^^^^^^^^^~04/01/2006~
-~10925~^~305~^280.^0^^~1~^~PAK~^^^^^^^^^^~04/01/2006~
-~10925~^~306~^344.^0^^~1~^~PAK~^^^^^^^^^^~04/01/2006~
-~10925~^~307~^821.^0^^~1~^~PAK~^^^^^^^^^^~04/01/2006~
-~10925~^~318~^44.^0^^~1~^~PAK~^^^^^^^^^^~04/01/2006~
-~10925~^~319~^13.^0^^~1~^~PAK~^^^^^^^^^^~04/01/2006~
-~10925~^~320~^13.^0^^~1~^~PAK~^^^^^^^^^^~04/01/2006~
-~10925~^~321~^0.^0^^~4~^~PIK~^^^^^^^^^^~04/01/2006~
-~10925~^~322~^0.^0^^~4~^~PIK~^^^^^^^^^^~04/01/2006~
-~10925~^~334~^0.^0^^~4~^~PIK~^^^^^^^^^^~04/01/2006~
-~10925~^~337~^0.^0^^~4~^~PIK~^^^^^^^^^^~04/01/2006~
-~10925~^~338~^0.^0^^~4~^~PIK~^^^^^^^^^^~04/01/2006~
-~10925~^~417~^1.^0^^~1~^~PAK~^^^^^^^^^^~04/01/2006~
-~10925~^~431~^0.^0^^~4~^~PIK~^^^^^^^^^^~04/01/2006~
-~10925~^~432~^1.^0^^~4~^~PIK~^^^^^^^^^^~04/01/2006~
-~10925~^~435~^1.^0^^~4~^~NC~^^^^^^^^^^~03/01/2007~
-~10925~^~601~^80.^0^^~1~^~PAK~^^^^^^^^^^~04/01/2006~
-~10926~^~208~^118.^0^^~4~^~PIK~^^^^^^^^^^~03/01/2009~
-~10926~^~262~^0.^0^^~4~^~PIK~^^^^^^^^^^~03/01/2009~
-~10926~^~263~^0.^0^^~4~^~PIK~^^^^^^^^^^~03/01/2009~
-~10926~^~268~^494.^0^^~4~^~PIK~^^^^^^^^^^~03/01/2009~
-~10926~^~301~^6.^0^^~1~^~PAK~^^^^^^^^^^~04/01/2006~
-~10926~^~304~^22.^0^^~1~^~PAK~^^^^^^^^^^~04/01/2006~
-~10926~^~305~^321.^0^^~1~^~PAK~^^^^^^^^^^~04/01/2006~
-~10926~^~306~^363.^0^^~1~^~PAK~^^^^^^^^^^~04/01/2006~
-~10926~^~307~^1160.^0^^~1~^~PAK~^^^^^^^^^^~04/01/2006~
-~10926~^~318~^44.^0^^~1~^~PAK~^^^^^^^^^^~04/01/2006~
-~10926~^~319~^13.^0^^~1~^~PAK~^^^^^^^^^^~04/01/2006~
-~10926~^~320~^13.^0^^~1~^~PAK~^^^^^^^^^^~04/01/2006~
-~10926~^~321~^0.^0^^~4~^~PIK~^^^^^^^^^^~03/01/2009~
-~10926~^~322~^0.^0^^~4~^~PIK~^^^^^^^^^^~03/01/2009~
-~10926~^~324~^37.^0^^~4~^~PIK~^^^^^^^^^^~03/01/2009~
-~10926~^~334~^0.^0^^~4~^~PIK~^^^^^^^^^^~03/01/2009~
-~10926~^~337~^0.^0^^~4~^~PIK~^^^^^^^^^^~03/01/2009~
-~10926~^~338~^0.^0^^~4~^~PIK~^^^^^^^^^^~03/01/2009~
-~10926~^~417~^1.^0^^~1~^~PAK~^^^^^^^^^^~04/01/2006~
-~10926~^~431~^0.^0^^~4~^~PIK~^^^^^^^^^^~03/01/2009~
-~10926~^~432~^1.^0^^~4~^~PIK~^^^^^^^^^^~04/01/2006~
-~10926~^~435~^1.^0^^~4~^~NC~^^^^^^^^^^~03/01/2009~
-~10926~^~601~^58.^0^^~1~^~PAK~^^^^^^^^^^~04/01/2006~
-~10927~^~208~^139.^0^^~4~^~NC~^^^^^^^^^^~09/01/2012~
-~10927~^~262~^0.^0^^~4~^~PIK~^^^^^^^^^^~05/01/2006~
-~10927~^~263~^0.^0^^~4~^~PIK~^^^^^^^^^^~05/01/2006~
-~10927~^~268~^581.^0^^~4~^~NC~^^^^^^^^^^~09/01/2012~
-~10927~^~301~^4.^0^^~1~^~PAK~^^^^^^^^^^~04/01/2006~
-~10927~^~304~^22.^0^^~1~^~PAK~^^^^^^^^^^~04/01/2006~
-~10927~^~305~^308.^0^^~1~^~PAK~^^^^^^^^^^~04/01/2006~
-~10927~^~306~^345.^0^^~1~^~PAK~^^^^^^^^^^~04/01/2006~
-~10927~^~307~^977.^0^^~1~^~PAK~^^^^^^^^^^~04/01/2006~
-~10927~^~318~^43.^0^^~4~^~NC~^^^^^^^^^^~07/01/2013~
-~10927~^~319~^13.^0^^~1~^~PAK~^^^^^^^^^^~04/01/2006~
-~10927~^~320~^13.^0^^~4~^~NC~^^^^^^^^^^~07/01/2013~
-~10927~^~321~^0.^0^^~4~^~PIK~^^^^^^^^^^~05/01/2006~
-~10927~^~322~^0.^0^^~4~^~PIK~^^^^^^^^^^~05/01/2006~
-~10927~^~324~^33.^0^^~4~^~PIK~^^^^^^^^^^~03/01/2009~
-~10927~^~334~^0.^0^^~4~^~PIK~^^^^^^^^^^~05/01/2006~
-~10927~^~337~^0.^0^^~4~^~PIK~^^^^^^^^^^~05/01/2006~
-~10927~^~338~^0.^0^^~4~^~PIK~^^^^^^^^^^~05/01/2006~
-~10927~^~417~^1.^0^^~1~^~PAK~^^^^^^^^^^~04/01/2006~
-~10927~^~431~^0.^0^^~4~^~PIK~^^^^^^^^^^~05/01/2006~
-~10927~^~432~^1.^0^^~4~^~PIK~^^^^^^^^^^~04/01/2006~
-~10927~^~435~^1.^0^^~4~^~NC~^^^^^^^^^^~06/01/2009~
-~10927~^~601~^64.^0^^~1~^~PAK~^^^^^^^^^^~04/01/2006~
-~10928~^~208~^114.^0^^~4~^~PIK~^^^^^^^^^^~03/01/2009~
-~10928~^~262~^0.^0^^~4~^~PIK~^^^^^^^^^^~03/01/2009~
-~10928~^~263~^0.^0^^~4~^~PIK~^^^^^^^^^^~03/01/2009~
-~10928~^~268~^476.^0^^~4~^~PIK~^^^^^^^^^^~03/01/2009~
-~10928~^~301~^6.^0^^~1~^~PAK~^^^^^^^^^^~03/01/2009~
-~10928~^~304~^22.^0^^~1~^~PAK~^^^^^^^^^^~03/01/2009~
-~10928~^~305~^318.^0^^~1~^~PAK~^^^^^^^^^^~03/01/2009~
-~10928~^~306~^367.^0^^~1~^~PAK~^^^^^^^^^^~03/01/2009~
-~10928~^~307~^1179.^0^^~1~^~PAK~^^^^^^^^^^~03/01/2009~
-~10928~^~318~^44.^0^^~1~^~PAK~^^^^^^^^^^~03/01/2009~
-~10928~^~319~^13.^0^^~1~^~PAK~^^^^^^^^^^~03/01/2009~
-~10928~^~320~^13.^0^^~1~^~PAK~^^^^^^^^^^~03/01/2009~
-~10928~^~321~^0.^0^^~4~^~PIK~^^^^^^^^^^~03/01/2009~
-~10928~^~322~^0.^0^^~4~^~PIK~^^^^^^^^^^~03/01/2009~
-~10928~^~324~^30.^0^^~4~^~PIK~^^^^^^^^^^~03/01/2009~
-~10928~^~334~^0.^0^^~4~^~PIK~^^^^^^^^^^~03/01/2009~
-~10928~^~337~^0.^0^^~4~^~PIK~^^^^^^^^^^~03/01/2009~
-~10928~^~338~^0.^0^^~4~^~PIK~^^^^^^^^^^~03/01/2009~
-~10928~^~417~^2.^0^^~1~^~PAK~^^^^^^^^^^~03/01/2009~
-~10928~^~431~^0.^0^^~4~^~PIK~^^^^^^^^^^~03/01/2009~
-~10928~^~432~^2.^0^^~4~^~PIK~^^^^^^^^^^~03/01/2009~
-~10928~^~435~^2.^0^^~4~^~NC~^^^^^^^^^^~03/01/2009~
-~10928~^~601~^56.^0^^~1~^~PAK~^^^^^^^^^^~03/01/2009~
-~10929~^~208~^177.^0^^~4~^~PIK~^^^^^^^^^^~03/01/2009~
-~10929~^~262~^0.^0^^~4~^~PIK~^^^^^^^^^^~04/01/2006~
-~10929~^~263~^0.^0^^~4~^~PIK~^^^^^^^^^^~04/01/2006~
-~10929~^~268~^741.^0^^~4~^~PIK~^^^^^^^^^^~03/01/2009~
-~10929~^~301~^7.^0^^~1~^~PAK~^^^^^^^^^^~04/01/2006~
-~10929~^~304~^23.^0^^~1~^~PAK~^^^^^^^^^^~04/01/2006~
-~10929~^~305~^263.^0^^~1~^~PAK~^^^^^^^^^^~04/01/2006~
-~10929~^~306~^370.^0^^~1~^~PAK~^^^^^^^^^^~04/01/2006~
-~10929~^~307~^826.^0^^~1~^~PAK~^^^^^^^^^^~04/01/2006~
-~10929~^~318~^5.^0^^~1~^~PAK~^^^^^^^^^^~04/01/2006~
-~10929~^~319~^1.^0^^~4~^~PIK~^^^^^^^^^^~04/01/2006~
-~10929~^~320~^1.^0^^~1~^~PAK~^^^^^^^^^^~04/01/2006~
-~10929~^~321~^0.^0^^~4~^~PIK~^^^^^^^^^^~04/01/2006~
-~10929~^~322~^0.^0^^~4~^~PIK~^^^^^^^^^^~04/01/2006~
-~10929~^~324~^33.^0^^~4~^~BFNN~^^^^^^^^^^~03/01/2009~
-~10929~^~334~^0.^0^^~4~^~PIK~^^^^^^^^^^~04/01/2006~
-~10929~^~337~^0.^0^^~4~^~PIK~^^^^^^^^^^~04/01/2006~
-~10929~^~338~^0.^0^^~4~^~PIK~^^^^^^^^^^~04/01/2006~
-~10929~^~417~^0.^0^^~1~^~PAK~^^^^^^^^^^~04/01/2006~
-~10929~^~431~^0.^0^^~4~^~PIK~^^^^^^^^^^~04/01/2006~
-~10929~^~432~^0.^0^^~4~^~PIK~^^^^^^^^^^~04/01/2006~
-~10929~^~435~^0.^0^^~4~^~NC~^^^^^^^^^^~03/01/2009~
-~10929~^~601~^71.^0^^~1~^~PAK~^^^^^^^^^^~04/01/2006~
-~10931~^~208~^132.^0^^~4~^~NC~^^^^^^^^^^~04/01/2006~
-~10931~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2006~
-~10931~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2006~
-~10931~^~268~^553.^0^^~4~^~NC~^^^^^^^^^^~04/01/2006~
-~10931~^~301~^8.^3^0.^~1~^~A~^^^1^7.^8.^2^6.^9.^~2, 3~^~04/01/2006~
-~10931~^~304~^24.^3^0.^~1~^~A~^^^1^23.^24.^2^22.^24.^~2, 3~^~04/01/2006~
-~10931~^~305~^275.^3^9.^~1~^~A~^^^1^259.^292.^2^234.^316.^~2, 3~^~04/01/2006~
-~10931~^~306~^394.^3^5.^~1~^~A~^^^1^383.^402.^2^369.^417.^~2, 3~^~04/01/2006~
-~10931~^~307~^846.^3^33.^~1~^~A~^^^1^780.^882.^2^703.^988.^~2, 3~^~04/01/2006~
-~10931~^~318~^0.^0^^~1~^~AS~^^^^^^^^^^~04/01/2006~
-~10931~^~319~^0.^0^^~4~^~NR~^^^^^^^^^^~04/01/2006~
-~10931~^~320~^0.^0^^~1~^~AS~^^^^^^^^^^~04/01/2006~
-~10931~^~321~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2006~
-~10931~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2006~
-~10931~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2006~
-~10931~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2006~
-~10931~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2006~
-~10931~^~417~^0.^1^^~1~^~A~^^^^^^^^^~1~^~04/01/2006~
-~10931~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2006~
-~10931~^~432~^0.^1^^~4~^~NR~^^^^^^^^^~1~^~04/01/2006~
-~10931~^~435~^0.^0^^~4~^~NC~^^^^^^^^^^~03/01/2007~
-~10931~^~601~^71.^3^2.^~1~^~A~^^^1^66.^75.^2^59.^82.^~2, 3~^~04/01/2006~
-~10932~^~208~^125.^0^^~4~^~NC~^^^^^^^^^^~04/01/2006~
-~10932~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2006~
-~10932~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2006~
-~10932~^~268~^525.^0^^~4~^~NC~^^^^^^^^^^~04/01/2006~
-~10932~^~301~^7.^3^0.^~1~^~A~^^^1^6.^8.^2^4.^9.^~2, 3~^~04/01/2006~
-~10932~^~304~^24.^3^0.^~1~^~A~^^^1^23.^24.^2^22.^25.^~2, 3~^~04/01/2006~
-~10932~^~305~^267.^3^5.^~1~^~A~^^^1^255.^273.^2^241.^291.^~2, 3~^~04/01/2006~
-~10932~^~306~^385.^3^9.^~1~^~A~^^^1^375.^403.^2^345.^424.^~2, 3~^~04/01/2006~
-~10932~^~307~^737.^3^26.^~1~^~A~^^^1^684.^770.^2^621.^853.^~2, 3~^~04/01/2006~
-~10932~^~318~^0.^0^^~1~^~AS~^^^^^^^^^^~04/01/2006~
-~10932~^~319~^0.^0^^~4~^~BFSN~^~10931~^^^^^^^^^~04/01/2006~
-~10932~^~320~^0.^0^^~1~^~AS~^^^^^^^^^^~04/01/2006~
-~10932~^~321~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2006~
-~10932~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2006~
-~10932~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2006~
-~10932~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2006~
-~10932~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2006~
-~10932~^~417~^1.^1^^~1~^~A~^^^^^^^^^^~04/01/2006~
-~10932~^~431~^0.^1^^~7~^~Z~^^^^^^^^^~1~^~04/01/2006~
-~10932~^~432~^1.^1^^~4~^~NR~^^^^^^^^^^~04/01/2006~
-~10932~^~435~^1.^0^^~4~^~NC~^^^^^^^^^^~08/01/2006~
-~10932~^~601~^63.^3^3.^~1~^~A~^^^1^57.^69.^2^47.^78.^~2, 3~^~04/01/2006~
-~10933~^~208~^139.^0^^~4~^~NC~^^^^^^^^^^~03/01/2009~
-~10933~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2009~
-~10933~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2009~
-~10933~^~268~^582.^0^^~4~^~NC~^^^^^^^^^^~03/01/2009~
-~10933~^~301~^7.^3^0.^~1~^~A~^^^1^6.^7.^2^5.^7.^~2, 3~^~04/01/2006~
-~10933~^~304~^23.^3^0.^~1~^~A~^^^1^23.^24.^2^22.^24.^~2, 3~^~04/01/2006~
-~10933~^~305~^269.^3^6.^~1~^~A~^^^1^258.^282.^2^239.^299.^~2, 3~^~04/01/2006~
-~10933~^~306~^378.^3^3.^~1~^~A~^^^1^372.^381.^2^365.^390.^~2, 3~^~04/01/2006~
-~10933~^~307~^828.^3^31.^~1~^~A~^^^1^766.^867.^2^692.^963.^~2, 3~^~04/01/2006~
-~10933~^~318~^0.^0^^~1~^~AS~^^^^^^^^^^~03/01/2009~
-~10933~^~319~^0.^0^^~4~^~NR~^^^^^^^^^^~04/01/2006~
-~10933~^~320~^0.^0^^~1~^~AS~^^^^^^^^^^~03/01/2009~
-~10933~^~321~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2009~
-~10933~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2009~
-~10933~^~324~^34.^0^^~4~^~BFNN~^^^^^^^^^^~03/01/2009~
-~10933~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2009~
-~10933~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2009~
-~10933~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2009~
-~10933~^~417~^1.^1^^~1~^~A~^^^^^^^^^^~04/01/2006~
-~10933~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2009~
-~10933~^~432~^1.^1^^~4~^~NR~^^^^^^^^^^~04/01/2006~
-~10933~^~435~^1.^0^^~4~^~NC~^^^^^^^^^^~06/01/2009~
-~10933~^~601~^70.^3^2.^~1~^~A~^^^1^65.^75.^2^57.^82.^~2, 3~^~04/01/2006~
-~10934~^~208~^125.^0^^~4~^~NC~^^^^^^^^^^~04/01/2006~
-~10934~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2006~
-~10934~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2006~
-~10934~^~268~^521.^0^^~4~^~NC~^^^^^^^^^^~04/01/2006~
-~10934~^~301~^6.^3^0.^~1~^~A~^^^1^6.^7.^2^5.^7.^~2, 3~^~04/01/2006~
-~10934~^~304~^22.^3^0.^~1~^~A~^^^1^21.^22.^2^20.^22.^~2, 3~^~04/01/2006~
-~10934~^~305~^258.^3^8.^~1~^~A~^^^1^244.^272.^2^223.^293.^~2, 3~^~04/01/2006~
-~10934~^~306~^364.^3^2.^~1~^~A~^^^1^360.^368.^2^354.^373.^~2, 3~^~04/01/2006~
-~10934~^~307~^846.^3^15.^~1~^~A~^^^1^819.^874.^2^778.^914.^~2, 3~^~04/01/2006~
-~10934~^~318~^0.^0^^~1~^~AS~^^^^^^^^^^~04/01/2006~
-~10934~^~319~^0.^0^^~4~^~NR~^^^^^^^^^^~04/01/2006~
-~10934~^~320~^0.^0^^~1~^~AS~^^^^^^^^^^~04/01/2006~
-~10934~^~321~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2006~
-~10934~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2006~
-~10934~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2006~
-~10934~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2006~
-~10934~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2006~
-~10934~^~417~^0.^1^^~1~^~A~^^^^^^^^^~1~^~04/01/2006~
-~10934~^~431~^0.^1^^~7~^~Z~^^^^^^^^^~1~^~04/01/2006~
-~10934~^~432~^0.^1^^~4~^~NR~^^^^^^^^^~1~^~04/01/2006~
-~10934~^~435~^0.^0^^~4~^~NC~^^^^^^^^^^~08/01/2006~
-~10934~^~601~^61.^3^2.^~1~^~A~^^^1^59.^66.^2^51.^70.^~2, 3~^~04/01/2006~
-~10935~^~208~^191.^0^^~4~^~NC~^^^^^^^^^^~06/01/2014~
-~10935~^~262~^0.^0^^~4~^~PIK~^^^^^^^^^^~03/01/2009~
-~10935~^~263~^0.^0^^~4~^~PIK~^^^^^^^^^^~03/01/2009~
-~10935~^~268~^799.^0^^~4~^~NC~^^^^^^^^^^~06/01/2014~
-~10935~^~301~^7.^0^^~1~^~PAK~^^^^^^^^^^~04/01/2006~
-~10935~^~304~^22.^0^^~1~^~PAK~^^^^^^^^^^~04/01/2006~
-~10935~^~305~^257.^0^^~1~^~PAK~^^^^^^^^^^~04/01/2006~
-~10935~^~306~^356.^0^^~1~^~PAK~^^^^^^^^^^~04/01/2006~
-~10935~^~307~^810.^0^^~1~^~PAK~^^^^^^^^^^~04/01/2006~
-~10935~^~318~^5.^0^^~1~^~PAK~^^^^^^^^^^~07/01/2013~
-~10935~^~319~^1.^0^^~4~^~PIK~^^^^^^^^^^~04/01/2006~
-~10935~^~320~^1.^0^^~1~^~PAK~^^^^^^^^^^~07/01/2013~
-~10935~^~321~^0.^0^^~4~^~PIK~^^^^^^^^^^~03/01/2009~
-~10935~^~322~^0.^0^^~4~^~PIK~^^^^^^^^^^~03/01/2009~
-~10935~^~324~^39.^0^^~4~^~PIK~^^^^^^^^^^~10/01/2013~
-~10935~^~334~^0.^0^^~4~^~PIK~^^^^^^^^^^~03/01/2009~
-~10935~^~337~^0.^0^^~4~^~PIK~^^^^^^^^^^~03/01/2009~
-~10935~^~338~^0.^0^^~4~^~PIK~^^^^^^^^^^~03/01/2009~
-~10935~^~417~^1.^0^^~1~^~PAK~^^^^^^^^^^~04/01/2006~
-~10935~^~431~^0.^0^^~4~^~PIK~^^^^^^^^^^~03/01/2009~
-~10935~^~432~^1.^0^^~4~^~PIK~^^^^^^^^^^~04/01/2006~
-~10935~^~435~^1.^0^^~4~^~NC~^^^^^^^^^^~06/01/2009~
-~10935~^~601~^70.^0^^~1~^~PAK~^^^^^^^^^^~04/01/2006~
-~10936~^~208~^177.^0^^~4~^~NC~^^^^^^^^^^~04/01/2006~
-~10936~^~262~^0.^0^^~4~^~PIK~^^^^^^^^^^~04/01/2006~
-~10936~^~263~^0.^0^^~4~^~PIK~^^^^^^^^^^~04/01/2006~
-~10936~^~268~^739.^0^^~4~^~NC~^^^^^^^^^^~04/01/2006~
-~10936~^~301~^6.^0^^~1~^~PAK~^^^^^^^^^^~04/01/2006~
-~10936~^~304~^20.^0^^~1~^~PAK~^^^^^^^^^^~04/01/2006~
-~10936~^~305~^243.^0^^~1~^~PAK~^^^^^^^^^^~04/01/2006~
-~10936~^~306~^339.^0^^~1~^~PAK~^^^^^^^^^^~04/01/2006~
-~10936~^~307~^816.^0^^~1~^~PAK~^^^^^^^^^^~04/01/2006~
-~10936~^~318~^6.^0^^~1~^~PAK~^^^^^^^^^^~04/01/2006~
-~10936~^~319~^2.^0^^~4~^~PIK~^^^^^^^^^^~04/01/2006~
-~10936~^~320~^2.^0^^~1~^~PAK~^^^^^^^^^^~04/01/2006~
-~10936~^~321~^0.^0^^~4~^~PIK~^^^^^^^^^^~04/01/2006~
-~10936~^~322~^0.^0^^~4~^~PIK~^^^^^^^^^^~04/01/2006~
-~10936~^~334~^0.^0^^~4~^~PIK~^^^^^^^^^^~04/01/2006~
-~10936~^~337~^0.^0^^~4~^~PIK~^^^^^^^^^^~04/01/2006~
-~10936~^~338~^0.^0^^~4~^~PIK~^^^^^^^^^^~04/01/2006~
-~10936~^~417~^0.^0^^~1~^~PAK~^^^^^^^^^^~04/01/2006~
-~10936~^~431~^0.^0^^~4~^~PIK~^^^^^^^^^^~04/01/2006~
-~10936~^~432~^0.^0^^~4~^~PIK~^^^^^^^^^^~04/01/2006~
-~10936~^~435~^0.^0^^~4~^~NC~^^^^^^^^^^~08/01/2006~
-~10936~^~601~^61.^0^^~1~^~PAK~^^^^^^^^^^~04/01/2006~
-~10937~^~208~^181.^0^^~4~^~NC~^^^^^^^^^^~07/01/2015~
-~10937~^~262~^0.^0^^~4~^~PIK~^^^^^^^^^^~03/01/2009~
-~10937~^~263~^0.^0^^~4~^~PIK~^^^^^^^^^^~03/01/2009~
-~10937~^~268~^757.^0^^~4~^~NC~^^^^^^^^^^~07/01/2015~
-~10937~^~301~^14.^0^^~1~^~PAK~^^^^^^^^^^~04/01/2006~
-~10937~^~304~^25.^0^^~1~^~PAK~^^^^^^^^^^~04/01/2006~
-~10937~^~305~^285.^0^^~1~^~PAK~^^^^^^^^^^~04/01/2006~
-~10937~^~306~^405.^0^^~1~^~PAK~^^^^^^^^^^~04/01/2006~
-~10937~^~307~^852.^0^^~1~^~PAK~^^^^^^^^^^~04/01/2006~
-~10937~^~318~^4.^0^^~1~^~PAK~^^^^^^^^^^~04/01/2006~
-~10937~^~319~^1.^0^^~4~^~PIK~^^^^^^^^^^~04/01/2006~
-~10937~^~320~^1.^0^^~1~^~PAK~^^^^^^^^^^~04/01/2006~
-~10937~^~321~^0.^0^^~4~^~PIK~^^^^^^^^^^~03/01/2009~
-~10937~^~322~^0.^0^^~4~^~PIK~^^^^^^^^^^~03/01/2009~
-~10937~^~324~^40.^0^^~4~^~PIK~^^^^^^^^^^~03/01/2009~
-~10937~^~334~^0.^0^^~4~^~PIK~^^^^^^^^^^~03/01/2009~
-~10937~^~337~^0.^0^^~4~^~PIK~^^^^^^^^^^~03/01/2009~
-~10937~^~338~^0.^0^^~4~^~PIK~^^^^^^^^^^~03/01/2009~
-~10937~^~417~^2.^0^^~1~^~PAK~^^^^^^^^^^~04/01/2006~
-~10937~^~431~^0.^0^^~4~^~PIK~^^^^^^^^^^~03/01/2009~
-~10937~^~432~^2.^0^^~4~^~PIK~^^^^^^^^^^~04/01/2006~
-~10937~^~435~^2.^0^^~4~^~NC~^^^^^^^^^^~06/01/2009~
-~10937~^~601~^73.^0^^~1~^~PAK~^^^^^^^^^^~04/01/2006~
-~10938~^~208~^130.^0^^~4~^~NC~^^^^^^^^^^~04/01/2006~
-~10938~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2006~
-~10938~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2006~
-~10938~^~268~^543.^0^^~4~^~NC~^^^^^^^^^^~04/01/2006~
-~10938~^~301~^13.^3^1.^~1~^~A~^^^1^12.^15.^2^8.^17.^~2, 3~^~04/01/2006~
-~10938~^~304~^23.^3^0.^~1~^~A~^^^1^22.^24.^2^20.^26.^~2, 3~^~04/01/2006~
-~10938~^~305~^263.^3^1.^~1~^~A~^^^1^260.^265.^2^256.^270.^~2, 3~^~04/01/2006~
-~10938~^~306~^370.^3^4.^~1~^~A~^^^1^361.^378.^2^348.^391.^~2, 3~^~04/01/2006~
-~10938~^~307~^760.^3^8.^~1~^~A~^^^1^744.^771.^2^724.^796.^~2, 3~^~04/01/2006~
-~10938~^~318~^0.^0^^~1~^~AS~^^^^^^^^^^~04/01/2006~
-~10938~^~319~^0.^0^^~4~^~NR~^^^^^^^^^^~04/01/2006~
-~10938~^~320~^0.^0^^~1~^~AS~^^^^^^^^^^~04/01/2006~
-~10938~^~321~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2006~
-~10938~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2006~
-~10938~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2006~
-~10938~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2006~
-~10938~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2006~
-~10938~^~417~^1.^1^^~1~^~A~^^^^^^^^^^~04/01/2006~
-~10938~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2006~
-~10938~^~432~^1.^1^^~4~^~NR~^^^^^^^^^^~04/01/2006~
-~10938~^~435~^1.^0^^~4~^~NC~^^^^^^^^^^~03/01/2007~
-~10938~^~601~^65.^3^2.^~1~^~A~^^^1^62.^70.^2^53.^76.^~2, 3~^~04/01/2006~
-~10939~^~208~^173.^0^^~4~^~NC~^^^^^^^^^^~04/01/2006~
-~10939~^~262~^0.^0^^~4~^~PIK~^^^^^^^^^^~04/01/2006~
-~10939~^~263~^0.^0^^~4~^~PIK~^^^^^^^^^^~04/01/2006~
-~10939~^~268~^725.^0^^~4~^~NC~^^^^^^^^^^~04/01/2006~
-~10939~^~301~^12.^0^^~1~^~PAK~^^^^^^^^^^~04/01/2006~
-~10939~^~304~^22.^0^^~1~^~PAK~^^^^^^^^^^~04/01/2006~
-~10939~^~305~^250.^0^^~1~^~PAK~^^^^^^^^^^~04/01/2006~
-~10939~^~306~^348.^0^^~1~^~PAK~^^^^^^^^^^~04/01/2006~
-~10939~^~307~^744.^0^^~1~^~PAK~^^^^^^^^^^~04/01/2006~
-~10939~^~318~^5.^0^^~1~^~PAK~^^^^^^^^^^~04/01/2006~
-~10939~^~319~^1.^0^^~4~^~PIK~^^^^^^^^^^~04/01/2006~
-~10939~^~320~^1.^0^^~1~^~PAK~^^^^^^^^^^~04/01/2006~
-~10939~^~321~^0.^0^^~4~^~PIK~^^^^^^^^^^~04/01/2006~
-~10939~^~322~^0.^0^^~4~^~PIK~^^^^^^^^^^~04/01/2006~
-~10939~^~334~^0.^0^^~4~^~PIK~^^^^^^^^^^~04/01/2006~
-~10939~^~337~^0.^0^^~4~^~PIK~^^^^^^^^^^~04/01/2006~
-~10939~^~338~^0.^0^^~4~^~PIK~^^^^^^^^^^~04/01/2006~
-~10939~^~417~^1.^0^^~1~^~PAK~^^^^^^^^^^~04/01/2006~
-~10939~^~431~^0.^0^^~4~^~PIK~^^^^^^^^^^~04/01/2006~
-~10939~^~432~^1.^0^^~4~^~PIK~^^^^^^^^^^~04/01/2006~
-~10939~^~435~^1.^0^^~4~^~NC~^^^^^^^^^^~03/01/2007~
-~10939~^~601~^65.^0^^~1~^~PAK~^^^^^^^^^^~04/01/2006~
-~10940~^~208~^361.^0^^~4~^~NC~^^^^^^^^^^~03/01/2009~
-~10940~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2009~
-~10940~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2009~
-~10940~^~268~^1512.^0^^~4~^~NC~^^^^^^^^^^~03/01/2009~
-~10940~^~301~^19.^12^1.^~1~^~A~^^^1^11.^38.^11^14.^23.^~2, 3~^~03/01/2007~
-~10940~^~304~^18.^12^0.^~1~^~A~^^^1^12.^21.^11^16.^19.^~2, 3~^~03/01/2007~
-~10940~^~305~^162.^12^6.^~1~^~A~^^^1^111.^188.^11^148.^175.^~2, 3~^~03/01/2007~
-~10940~^~306~^265.^12^12.^~1~^~A~^^^1^167.^313.^11^238.^291.^~2, 3~^~03/01/2007~
-~10940~^~307~^91.^12^5.^~1~^~A~^^^1^64.^134.^11^78.^103.^~2, 3~^~03/01/2007~
-~10940~^~318~^0.^0^^~1~^~AS~^^^^^^^^^^~03/01/2009~
-~10940~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2007~
-~10940~^~320~^0.^0^^~1~^~AS~^^^^^^^^^^~03/01/2009~
-~10940~^~321~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2009~
-~10940~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2009~
-~10940~^~324~^88.^0^^~4~^~BFFN~^^^^^^^^^^~03/01/2009~
-~10940~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2009~
-~10940~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2009~
-~10940~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2009~
-~10940~^~417~^0.^0^^~4~^~BFPN~^~10061~^^^^^^^^^~03/01/2009~
-~10940~^~432~^0.^0^^~4~^~BFPN~^^^^^^^^^^~03/01/2009~
-~10940~^~601~^105.^4^13.^~1~^~A~^^^1^72.^126.^3^63.^146.^~2, 3~^~03/01/2007~
-~10942~^~208~^508.^0^^~4~^~NC~^^^^^^^^^^~05/01/2007~
-~10942~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2007~
-~10942~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2007~
-~10942~^~268~^2126.^0^^~4~^~NC~^^^^^^^^^^~05/01/2007~
-~10942~^~301~^22.^4^3.^~1~^~A~^^^1^15.^32.^3^9.^34.^~2, 3~^~05/01/2007~
-~10942~^~304~^9.^4^0.^~1~^~A~^^^1^8.^10.^3^7.^10.^~2, 3~^~05/01/2007~
-~10942~^~305~^121.^4^7.^~1~^~A~^^^1^106.^142.^3^96.^145.^~2, 3~^~05/01/2007~
-~10942~^~306~^191.^4^33.^~1~^~A~^^^1^152.^291.^3^85.^297.^~2, 3~^~05/01/2007~
-~10942~^~307~^81.^4^11.^~1~^~A~^^^1^58.^109.^3^44.^118.^~2, 3~^~05/01/2007~
-~10942~^~318~^0.^0^^~1~^~AS~^^^^^^^^^^~05/01/2007~
-~10942~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2007~
-~10942~^~320~^0.^0^^~1~^~AS~^^^^^^^^^^~05/01/2007~
-~10942~^~321~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2007~
-~10942~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2007~
-~10942~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2007~
-~10942~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2007~
-~10942~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2007~
-~10942~^~417~^0.^0^^~4~^~BFPN~^~10006~^^^^^^^^^~05/01/2007~
-~10942~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2007~
-~10942~^~432~^0.^0^^~4~^~BFPN~^^^^^^^^^^~05/01/2007~
-~10942~^~435~^0.^0^^~4~^~NC~^^^^^^^^^^~06/01/2009~
-~10942~^~601~^83.^4^5.^~1~^~A~^^^1^71.^100.^3^64.^102.^~2, 3~^~05/01/2007~
-~10943~^~208~^116.^0^^~4~^~NC~^^^^^^^^^^~07/01/2009~
-~10943~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~07/01/2009~
-~10943~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~07/01/2009~
-~10943~^~268~^486.^0^^~4~^~NC~^^^^^^^^^^~07/01/2009~
-~10943~^~301~^5.^12^0.^~1~^~A~^^^1^4.^6.^11^4.^5.^~2, 3~^~05/01/2007~
-~10943~^~304~^25.^12^0.^~1~^~A~^^^1^21.^29.^11^23.^26.^~2, 3~^~05/01/2007~
-~10943~^~305~^316.^12^12.^~1~^~A~^^^1^254.^424.^11^287.^344.^~2, 3~^~05/01/2007~
-~10943~^~306~^567.^12^66.^~1~^~A~^^^1^377.^948.^11^419.^713.^~2, 3~^~05/01/2007~
-~10943~^~307~^231.^11^33.^~1~^~A~^^^1^56.^392.^10^155.^306.^~2, 3~^~05/01/2007~
-~10943~^~318~^0.^0^^~1~^~AS~^^^^^^^^^^~07/01/2009~
-~10943~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2007~
-~10943~^~320~^0.^0^^~1~^~AS~^^^^^^^^^^~07/01/2009~
-~10943~^~321~^0.^0^^~7~^~Z~^^^^^^^^^^~07/01/2009~
-~10943~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~07/01/2009~
-~10943~^~324~^9.^0^^~4~^~BFFN~^^^^^^^^^^~07/01/2009~
-~10943~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~07/01/2009~
-~10943~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~07/01/2009~
-~10943~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~07/01/2009~
-~10943~^~417~^0.^0^^~4~^~BFPN~^~10061~^^^^^^^^^~07/01/2009~
-~10943~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2007~
-~10943~^~432~^0.^0^^~4~^~BFPN~^^^^^^^^^^~07/01/2009~
-~10943~^~435~^0.^0^^~4~^~NC~^^^^^^^^^^~07/01/2009~
-~10943~^~601~^57.^12^1.^~1~^~A~^^^1^48.^65.^11^52.^60.^~2, 3~^~05/01/2007~
-~10944~^~208~^106.^0^^~4~^~NC~^^^^^^^^^^~07/01/2009~
-~10944~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~07/01/2009~
-~10944~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~07/01/2009~
-~10944~^~268~^443.^0^^~4~^~NC~^^^^^^^^^^~07/01/2009~
-~10944~^~301~^4.^12^0.^~1~^~A~^^^1^4.^5.^11^4.^4.^~2, 3~^~05/01/2007~
-~10944~^~304~^23.^12^0.^~1~^~A~^^^1^21.^28.^11^22.^24.^~2, 3~^~05/01/2007~
-~10944~^~305~^290.^12^7.^~1~^~A~^^^1^231.^326.^11^272.^307.^~2, 3~^~05/01/2007~
-~10944~^~306~^527.^12^65.^~1~^~A~^^^1^326.^992.^11^382.^670.^~2, 3~^~05/01/2007~
-~10944~^~307~^243.^12^32.^~1~^~A~^^^1^43.^379.^11^171.^313.^~2, 3~^~05/01/2007~
-~10944~^~318~^0.^0^^~1~^~AS~^^^^^^^^^^~07/01/2009~
-~10944~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2007~
-~10944~^~320~^0.^0^^~1~^~AS~^^^^^^^^^^~07/01/2009~
-~10944~^~321~^0.^0^^~7~^~Z~^^^^^^^^^^~07/01/2009~
-~10944~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~07/01/2009~
-~10944~^~324~^8.^0^^~4~^~BFFN~^^^^^^^^^^~07/01/2009~
-~10944~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~07/01/2009~
-~10944~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~07/01/2009~
-~10944~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~07/01/2009~
-~10944~^~417~^0.^0^^~4~^~BFPN~^~10060~^^^^^^^^^~07/01/2009~
-~10944~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2007~
-~10944~^~432~^0.^0^^~4~^~BFPN~^^^^^^^^^^~07/01/2009~
-~10944~^~435~^0.^0^^~4~^~NC~^^^^^^^^^^~07/01/2009~
-~10944~^~601~^48.^12^1.^~1~^~A~^^^1^40.^60.^11^44.^51.^~2, 3~^~05/01/2007~
-~10945~^~208~^227.^0^^~4~^~NC~^^^^^^^^^^~07/01/2009~
-~10945~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~07/01/2009~
-~10945~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~07/01/2009~
-~10945~^~268~^951.^0^^~4~^~NC~^^^^^^^^^^~07/01/2009~
-~10945~^~301~^26.^12^4.^~1~^~A~^^^1^10.^57.^11^16.^35.^~2, 3~^~05/01/2007~
-~10945~^~304~^21.^12^0.^~1~^~A~^^^1^16.^25.^11^19.^22.^~2, 3~^~05/01/2007~
-~10945~^~305~^234.^12^5.^~1~^~A~^^^1^206.^269.^11^221.^246.^~2, 3~^~05/01/2007~
-~10945~^~306~^388.^12^46.^~1~^~A~^^^1^281.^720.^11^285.^490.^~2, 3~^~05/01/2007~
-~10945~^~307~^154.^12^14.^~1~^~A~^^^1^65.^208.^11^122.^184.^~2, 3~^~05/01/2007~
-~10945~^~318~^0.^0^^~1~^~AS~^^^^^^^^^^~07/01/2009~
-~10945~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2007~
-~10945~^~320~^0.^0^^~1~^~AS~^^^^^^^^^^~07/01/2009~
-~10945~^~321~^0.^0^^~7~^~Z~^^^^^^^^^^~07/01/2009~
-~10945~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~07/01/2009~
-~10945~^~324~^42.^0^^~4~^~BFFN~^^^^^^^^^^~07/01/2009~
-~10945~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~07/01/2009~
-~10945~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~07/01/2009~
-~10945~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~07/01/2009~
-~10945~^~417~^0.^0^^~4~^~BFPN~^~10085~^^^^^^^^^~07/01/2009~
-~10945~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2007~
-~10945~^~432~^0.^0^^~4~^~BFPN~^^^^^^^^^^~07/01/2009~
-~10945~^~435~^0.^0^^~4~^~NC~^^^^^^^^^^~07/01/2009~
-~10945~^~601~^98.^12^2.^~1~^~A~^^^1^86.^115.^11^92.^104.^~2, 3~^~05/01/2007~
-~10946~^~208~^122.^0^^~4~^~NC~^^^^^^^^^^~05/01/2007~
-~10946~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2007~
-~10946~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2007~
-~10946~^~268~^511.^0^^~4~^~NC~^^^^^^^^^^~05/01/2007~
-~10946~^~301~^14.^12^1.^~1~^~A~^^^1^8.^33.^11^9.^18.^~2, 3~^~05/01/2007~
-~10946~^~304~^19.^12^0.^~1~^~A~^^^1^17.^21.^11^18.^19.^~2, 3~^~05/01/2007~
-~10946~^~305~^223.^12^6.^~1~^~A~^^^1^188.^260.^11^208.^237.^~2, 3~^~05/01/2007~
-~10946~^~306~^419.^12^50.^~1~^~A~^^^1^286.^854.^11^307.^530.^~2, 3~^~05/01/2007~
-~10946~^~307~^165.^12^14.^~1~^~A~^^^1^70.^238.^11^132.^197.^~2, 3~^~05/01/2007~
-~10946~^~318~^0.^0^^~1~^~AS~^^^^^^^^^^~05/01/2007~
-~10946~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2007~
-~10946~^~320~^0.^0^^~1~^~AS~^^^^^^^^^^~05/01/2007~
-~10946~^~321~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2007~
-~10946~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2007~
-~10946~^~324~^21.^0^^~4~^~BFFN~^^^^^^^^^^~05/01/2011~
-~10946~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2007~
-~10946~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2007~
-~10946~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2007~
-~10946~^~417~^0.^0^^~4~^~BFPN~^~10084~^^^^^^^^^~05/01/2007~
-~10946~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2007~
-~10946~^~432~^0.^0^^~4~^~BFPN~^^^^^^^^^^~05/01/2007~
-~10946~^~435~^0.^0^^~4~^~NC~^^^^^^^^^^~05/01/2007~
-~10946~^~601~^59.^12^1.^~1~^~A~^^^1^48.^76.^11^54.^63.^~2, 3~^~05/01/2007~
-~10947~^~208~^170.^0^^~4~^~NC~^^^^^^^^^^~06/01/2014~
-~10947~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~07/01/2009~
-~10947~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~07/01/2009~
-~10947~^~268~^712.^0^^~4~^~NC~^^^^^^^^^^~06/01/2014~
-~10947~^~301~^9.^5^2.^~1~^~A~^^^1^5.^20.^4^1.^16.^~2, 3~^~06/01/2014~
-~10947~^~304~^29.^5^0.^~1~^~A~^^^1^28.^31.^4^27.^30.^~2, 3~^~06/01/2014~
-~10947~^~305~^317.^5^19.^~1~^~A~^^^1^266.^384.^4^262.^372.^~2, 3~^~06/01/2014~
-~10947~^~306~^608.^5^37.^~1~^~A~^^^1^505.^686.^4^502.^713.^~2, 3~^~06/01/2014~
-~10947~^~307~^315.^5^29.^~1~^~A~^^^1^214.^381.^4^232.^398.^~2, 3~^~06/01/2014~
-~10947~^~318~^0.^0^^~1~^~AS~^^^^^^^^^^~07/01/2009~
-~10947~^~319~^0.^1^^~1~^~A~^^^^^^^^^~1~^~06/01/2014~
-~10947~^~320~^0.^0^^~1~^~AS~^^^^^^^^^^~07/01/2009~
-~10947~^~321~^0.^0^^~7~^~Z~^^^^^^^^^^~07/01/2009~
-~10947~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~07/01/2009~
-~10947~^~324~^22.^0^^~4~^~BFFN~^^^^^^^^^^~06/01/2014~
-~10947~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~07/01/2009~
-~10947~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~07/01/2009~
-~10947~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~07/01/2009~
-~10947~^~417~^0.^0^^~4~^~BFPN~^~10066~^^^^^^^^^~07/01/2009~
-~10947~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2007~
-~10947~^~432~^0.^0^^~4~^~BFPN~^^^^^^^^^^~07/01/2009~
-~10947~^~435~^0.^0^^~4~^~NC~^^^^^^^^^^~07/01/2009~
-~10947~^~601~^70.^3^2.^~1~^~A~^^^1^66.^75.^2^58.^82.^~2, 3~^~06/01/2014~
-~10948~^~208~^117.^0^^~4~^~NC~^^^^^^^^^^~06/01/2014~
-~10948~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2007~
-~10948~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2007~
-~10948~^~268~^488.^0^^~4~^~NC~^^^^^^^^^^~06/01/2014~
-~10948~^~301~^7.^5^1.^~1~^~A~^^^1^5.^15.^4^1.^12.^~2, 3~^~06/01/2014~
-~10948~^~304~^23.^5^0.^~1~^~A~^^^1^22.^25.^4^21.^24.^~2, 3~^~06/01/2014~
-~10948~^~305~^264.^5^21.^~1~^~A~^^^1^205.^317.^4^202.^324.^~2, 3~^~06/01/2014~
-~10948~^~306~^537.^5^40.^~1~^~A~^^^1^414.^644.^4^425.^647.^~2, 3~^~06/01/2014~
-~10948~^~307~^278.^5^19.^~1~^~A~^^^1^204.^310.^4^225.^331.^~2, 3~^~06/01/2014~
-~10948~^~318~^0.^0^^~1~^~AS~^^^^^^^^^^~05/01/2007~
-~10948~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2007~
-~10948~^~320~^0.^0^^~1~^~AS~^^^^^^^^^^~05/01/2007~
-~10948~^~321~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2007~
-~10948~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2007~
-~10948~^~324~^14.^0^^~4~^~BFFN~^^^^^^^^^^~06/01/2014~
-~10948~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2007~
-~10948~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2007~
-~10948~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2007~
-~10948~^~417~^0.^0^^~4~^~BFPN~^~10066~^^^^^^^^^~05/01/2007~
-~10948~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2007~
-~10948~^~432~^0.^0^^~4~^~BFPN~^^^^^^^^^^~05/01/2007~
-~10948~^~435~^0.^0^^~4~^~NC~^^^^^^^^^^~05/01/2007~
-~10948~^~601~^51.^3^2.^~1~^~A~^^^1^48.^57.^2^39.^63.^~2, 3~^~06/01/2014~
-~10949~^~208~^171.^0^^~4~^~PIK~^^^^^^^^^^~06/01/2014~
-~10949~^~262~^0.^0^^~4~^~PIK~^^^^^^^^^^~05/01/2007~
-~10949~^~263~^0.^0^^~4~^~PIK~^^^^^^^^^^~05/01/2007~
-~10949~^~268~^715.^0^^~4~^~PIK~^^^^^^^^^^~06/01/2014~
-~10949~^~301~^9.^0^^~1~^~PAK~^^^^^^^^^^~06/01/2014~
-~10949~^~304~^21.^0^^~1~^~PAK~^^^^^^^^^^~06/01/2014~
-~10949~^~305~^244.^0^^~1~^~PAK~^^^^^^^^^^~06/01/2014~
-~10949~^~306~^489.^0^^~1~^~PAK~^^^^^^^^^^~06/01/2014~
-~10949~^~307~^251.^0^^~1~^~PAK~^^^^^^^^^^~06/01/2014~
-~10949~^~318~^0.^0^^~1~^~PAK~^^^^^^^^^^~05/01/2007~
-~10949~^~319~^0.^0^^~4~^~PIK~^^^^^^^^^^~05/01/2007~
-~10949~^~320~^0.^0^^~1~^~PAK~^^^^^^^^^^~05/01/2007~
-~10949~^~321~^0.^0^^~4~^~PIK~^^^^^^^^^^~05/01/2007~
-~10949~^~322~^0.^0^^~4~^~PIK~^^^^^^^^^^~05/01/2007~
-~10949~^~324~^12.^0^^~4~^~PIK~^^^^^^^^^^~06/01/2014~
-~10949~^~334~^0.^0^^~4~^~PIK~^^^^^^^^^^~05/01/2007~
-~10949~^~337~^0.^0^^~4~^~PIK~^^^^^^^^^^~05/01/2007~
-~10949~^~338~^0.^0^^~4~^~PIK~^^^^^^^^^^~05/01/2007~
-~10949~^~417~^0.^0^^~4~^~PIK~^^^^^^^^^^~05/01/2007~
-~10949~^~431~^0.^0^^~4~^~PIK~^^^^^^^^^^~05/01/2007~
-~10949~^~432~^0.^0^^~4~^~PIK~^^^^^^^^^^~05/01/2007~
-~10949~^~435~^0.^0^^~4~^~NC~^^^^^^^^^^~05/01/2007~
-~10949~^~601~^56.^0^^~1~^~PAK~^^^^^^^^^^~06/01/2014~
-~10950~^~208~^198.^0^^~4~^~PIK~^^^^^^^^^^~06/01/2014~
-~10950~^~262~^0.^0^^~4~^~PIK~^^^^^^^^^^~07/01/2009~
-~10950~^~263~^0.^0^^~4~^~PIK~^^^^^^^^^^~07/01/2009~
-~10950~^~268~^829.^0^^~4~^~PIK~^^^^^^^^^^~06/01/2014~
-~10950~^~301~^11.^0^^~1~^~PAK~^^^^^^^^^^~06/01/2014~
-~10950~^~304~^28.^0^^~1~^~PAK~^^^^^^^^^^~06/01/2014~
-~10950~^~305~^307.^0^^~1~^~PAK~^^^^^^^^^^~06/01/2014~
-~10950~^~306~^581.^0^^~1~^~PAK~^^^^^^^^^^~06/01/2014~
-~10950~^~307~^302.^0^^~1~^~PAK~^^^^^^^^^^~06/01/2014~
-~10950~^~318~^0.^0^^~1~^~PAK~^^^^^^^^^^~07/01/2009~
-~10950~^~319~^0.^0^^~4~^~PIK~^^^^^^^^^^~07/01/2009~
-~10950~^~320~^0.^0^^~1~^~PAK~^^^^^^^^^^~07/01/2009~
-~10950~^~321~^0.^0^^~4~^~PIK~^^^^^^^^^^~07/01/2009~
-~10950~^~322~^0.^0^^~4~^~PIK~^^^^^^^^^^~07/01/2009~
-~10950~^~324~^25.^0^^~4~^~PIK~^^^^^^^^^^~06/01/2014~
-~10950~^~334~^0.^0^^~4~^~PIK~^^^^^^^^^^~07/01/2009~
-~10950~^~337~^0.^0^^~4~^~PIK~^^^^^^^^^^~07/01/2009~
-~10950~^~338~^0.^0^^~4~^~PIK~^^^^^^^^^^~07/01/2009~
-~10950~^~417~^0.^0^^~4~^~PIK~^^^^^^^^^^~07/01/2009~
-~10950~^~431~^0.^0^^~4~^~PIK~^^^^^^^^^^~07/01/2009~
-~10950~^~432~^0.^0^^~4~^~PIK~^^^^^^^^^^~07/01/2009~
-~10950~^~435~^0.^0^^~4~^~NC~^^^^^^^^^^~07/01/2009~
-~10950~^~601~^71.^0^^~1~^~PAK~^^^^^^^^^^~06/01/2014~
-~10951~^~208~^114.^0^^~4~^~PIK~^^^^^^^^^^~05/01/2011~
-~10951~^~262~^0.^0^^~4~^~PIK~^^^^^^^^^^~05/01/2007~
-~10951~^~263~^0.^0^^~4~^~PIK~^^^^^^^^^^~05/01/2007~
-~10951~^~268~^478.^0^^~4~^~PIK~^^^^^^^^^^~05/01/2011~
-~10951~^~301~^5.^0^^~1~^~PAK~^^^^^^^^^^~05/01/2007~
-~10951~^~304~^23.^0^^~1~^~PAK~^^^^^^^^^^~05/01/2007~
-~10951~^~305~^286.^0^^~1~^~PAK~^^^^^^^^^^~05/01/2007~
-~10951~^~306~^519.^0^^~1~^~PAK~^^^^^^^^^^~05/01/2007~
-~10951~^~307~^239.^0^^~1~^~PAK~^^^^^^^^^^~05/01/2007~
-~10951~^~318~^0.^0^^~1~^~PAK~^^^^^^^^^^~05/01/2007~
-~10951~^~319~^0.^0^^~4~^~PIK~^^^^^^^^^^~05/01/2007~
-~10951~^~320~^0.^0^^~1~^~PAK~^^^^^^^^^^~05/01/2007~
-~10951~^~321~^0.^0^^~4~^~PIK~^^^^^^^^^^~05/01/2007~
-~10951~^~322~^0.^0^^~4~^~PIK~^^^^^^^^^^~05/01/2007~
-~10951~^~324~^8.^0^^~4~^~PIK~^^^^^^^^^^~05/01/2011~
-~10951~^~334~^0.^0^^~4~^~PIK~^^^^^^^^^^~05/01/2007~
-~10951~^~337~^0.^0^^~4~^~PIK~^^^^^^^^^^~05/01/2007~
-~10951~^~338~^0.^0^^~4~^~PIK~^^^^^^^^^^~05/01/2007~
-~10951~^~417~^0.^0^^~4~^~PIK~^^^^^^^^^^~05/01/2007~
-~10951~^~431~^0.^0^^~4~^~PIK~^^^^^^^^^^~05/01/2007~
-~10951~^~432~^0.^0^^~4~^~PIK~^^^^^^^^^^~05/01/2007~
-~10951~^~435~^0.^0^^~4~^~NC~^^^^^^^^^^~05/01/2007~
-~10951~^~601~^49.^0^^~1~^~PAK~^^^^^^^^^^~05/01/2007~
-~10952~^~208~^121.^0^^~4~^~PIK~^^^^^^^^^^~07/01/2009~
-~10952~^~262~^0.^0^^~4~^~PIK~^^^^^^^^^^~07/01/2009~
-~10952~^~263~^0.^0^^~4~^~PIK~^^^^^^^^^^~07/01/2009~
-~10952~^~268~^504.^0^^~4~^~PIK~^^^^^^^^^^~07/01/2009~
-~10952~^~301~^5.^0^^~1~^~PAK~^^^^^^^^^^~05/01/2007~
-~10952~^~304~^25.^0^^~1~^~PAK~^^^^^^^^^^~05/01/2007~
-~10952~^~305~^315.^0^^~1~^~PAK~^^^^^^^^^^~05/01/2007~
-~10952~^~306~^563.^0^^~1~^~PAK~^^^^^^^^^^~05/01/2007~
-~10952~^~307~^230.^0^^~1~^~PAK~^^^^^^^^^^~05/01/2007~
-~10952~^~318~^0.^0^^~1~^~PAK~^^^^^^^^^^~07/01/2009~
-~10952~^~319~^0.^0^^~4~^~PIK~^^^^^^^^^^~07/01/2009~
-~10952~^~320~^0.^0^^~1~^~PAK~^^^^^^^^^^~07/01/2009~
-~10952~^~321~^0.^0^^~4~^~PIK~^^^^^^^^^^~07/01/2009~
-~10952~^~322~^0.^0^^~4~^~PIK~^^^^^^^^^^~07/01/2009~
-~10952~^~324~^9.^0^^~4~^~PIK~^^^^^^^^^^~07/01/2009~
-~10952~^~334~^0.^0^^~4~^~PIK~^^^^^^^^^^~07/01/2009~
-~10952~^~337~^0.^0^^~4~^~PIK~^^^^^^^^^^~07/01/2009~
-~10952~^~338~^0.^0^^~4~^~PIK~^^^^^^^^^^~07/01/2009~
-~10952~^~417~^0.^0^^~4~^~PIK~^^^^^^^^^^~07/01/2009~
-~10952~^~431~^0.^0^^~4~^~PIK~^^^^^^^^^^~07/01/2009~
-~10952~^~432~^0.^0^^~4~^~PIK~^^^^^^^^^^~07/01/2009~
-~10952~^~435~^0.^0^^~4~^~NC~^^^^^^^^^^~07/01/2009~
-~10952~^~601~^57.^0^^~1~^~PAK~^^^^^^^^^^~05/01/2007~
-~10953~^~208~^169.^0^^~4~^~PIK~^^^^^^^^^^~05/01/2007~
-~10953~^~262~^0.^0^^~4~^~PIK~^^^^^^^^^^~05/01/2007~
-~10953~^~263~^0.^0^^~4~^~PIK~^^^^^^^^^^~05/01/2007~
-~10953~^~268~^709.^0^^~4~^~PIK~^^^^^^^^^^~05/01/2007~
-~10953~^~301~^15.^0^^~1~^~PAK~^^^^^^^^^^~05/01/2007~
-~10953~^~304~^18.^0^^~1~^~PAK~^^^^^^^^^^~05/01/2007~
-~10953~^~305~^211.^0^^~1~^~PAK~^^^^^^^^^^~05/01/2007~
-~10953~^~306~^391.^0^^~1~^~PAK~^^^^^^^^^^~05/01/2007~
-~10953~^~307~^155.^0^^~1~^~PAK~^^^^^^^^^^~05/01/2007~
-~10953~^~318~^0.^0^^~1~^~PAK~^^^^^^^^^^~05/01/2007~
-~10953~^~319~^0.^0^^~4~^~PIK~^^^^^^^^^^~05/01/2007~
-~10953~^~320~^0.^0^^~1~^~PAK~^^^^^^^^^^~05/01/2007~
-~10953~^~321~^0.^0^^~4~^~PIK~^^^^^^^^^^~05/01/2007~
-~10953~^~322~^0.^0^^~4~^~PIK~^^^^^^^^^^~05/01/2007~
-~10953~^~324~^18.^0^^~4~^~PIK~^^^^^^^^^^~05/01/2011~
-~10953~^~334~^0.^0^^~4~^~PIK~^^^^^^^^^^~05/01/2007~
-~10953~^~337~^0.^0^^~4~^~PIK~^^^^^^^^^^~05/01/2007~
-~10953~^~338~^0.^0^^~4~^~PIK~^^^^^^^^^^~05/01/2007~
-~10953~^~417~^0.^0^^~4~^~PIK~^^^^^^^^^^~05/01/2007~
-~10953~^~431~^0.^0^^~4~^~PIK~^^^^^^^^^^~05/01/2007~
-~10953~^~432~^0.^0^^~4~^~PIK~^^^^^^^^^^~05/01/2007~
-~10953~^~435~^0.^0^^~4~^~NC~^^^^^^^^^^~05/01/2007~
-~10953~^~601~^62.^0^^~1~^~PAK~^^^^^^^^^^~05/01/2007~
-~10954~^~208~^263.^0^^~4~^~PIK~^^^^^^^^^^~07/01/2009~
-~10954~^~262~^0.^0^^~4~^~PIK~^^^^^^^^^^~07/01/2009~
-~10954~^~263~^0.^0^^~4~^~PIK~^^^^^^^^^^~07/01/2009~
-~10954~^~268~^1100.^0^^~4~^~PIK~^^^^^^^^^^~07/01/2009~
-~10954~^~301~^27.^0^^~1~^~PAK~^^^^^^^^^^~05/01/2007~
-~10954~^~304~^20.^0^^~1~^~PAK~^^^^^^^^^^~05/01/2007~
-~10954~^~305~^227.^0^^~1~^~PAK~^^^^^^^^^^~05/01/2007~
-~10954~^~306~^370.^0^^~1~^~PAK~^^^^^^^^^^~05/01/2007~
-~10954~^~307~^151.^0^^~1~^~PAK~^^^^^^^^^^~05/01/2007~
-~10954~^~318~^0.^0^^~1~^~PAK~^^^^^^^^^^~07/01/2009~
-~10954~^~319~^0.^0^^~4~^~PIK~^^^^^^^^^^~07/01/2009~
-~10954~^~320~^0.^0^^~1~^~PAK~^^^^^^^^^^~07/01/2009~
-~10954~^~321~^0.^0^^~4~^~PIK~^^^^^^^^^^~07/01/2009~
-~10954~^~322~^0.^0^^~4~^~PIK~^^^^^^^^^^~07/01/2009~
-~10954~^~324~^44.^0^^~4~^~PIK~^^^^^^^^^^~07/01/2009~
-~10954~^~334~^0.^0^^~4~^~PIK~^^^^^^^^^^~07/01/2009~
-~10954~^~337~^0.^0^^~4~^~PIK~^^^^^^^^^^~07/01/2009~
-~10954~^~338~^0.^0^^~4~^~PIK~^^^^^^^^^^~07/01/2009~
-~10954~^~417~^0.^0^^~4~^~PIK~^^^^^^^^^^~07/01/2009~
-~10954~^~431~^0.^0^^~4~^~PIK~^^^^^^^^^^~07/01/2009~
-~10954~^~432~^0.^0^^~4~^~PIK~^^^^^^^^^^~07/01/2009~
-~10954~^~435~^0.^0^^~4~^~NC~^^^^^^^^^^~07/01/2009~
-~10954~^~601~^97.^0^^~1~^~PAK~^^^^^^^^^^~05/01/2007~
-~10955~^~208~^176.^0^^~4~^~RA~^^^^^^^^^^~05/01/2007~
-~10955~^~262~^0.^0^^~4~^~RA~^^^^^^^^^^~05/01/2007~
-~10955~^~263~^0.^0^^~4~^~RA~^^^^^^^^^^~05/01/2007~
-~10955~^~268~^735.^0^^~4~^~RA~^^^^^^^^^^~05/01/2007~
-~10955~^~301~^7.^0^^~4~^~RA~^^^^^^^^^^~05/01/2007~
-~10955~^~304~^22.^0^^~4~^~RA~^^^^^^^^^^~05/01/2007~
-~10955~^~305~^251.^0^^~4~^~RA~^^^^^^^^^^~05/01/2007~
-~10955~^~306~^358.^0^^~4~^~RA~^^^^^^^^^^~05/01/2007~
-~10955~^~307~^722.^0^^~4~^~RA~^^^^^^^^^^~05/01/2007~
-~10955~^~318~^6.^0^^~4~^~RA~^^^^^^^^^^~05/01/2007~
-~10955~^~319~^2.^0^^~4~^~RA~^^^^^^^^^^~05/01/2007~
-~10955~^~320~^2.^0^^~4~^~RA~^^^^^^^^^^~05/01/2007~
-~10955~^~321~^0.^0^^~4~^~RA~^^^^^^^^^^~05/01/2007~
-~10955~^~322~^0.^0^^~4~^~RA~^^^^^^^^^^~05/01/2007~
-~10955~^~334~^0.^0^^~4~^~RA~^^^^^^^^^^~05/01/2007~
-~10955~^~337~^0.^0^^~4~^~RA~^^^^^^^^^^~05/01/2007~
-~10955~^~338~^0.^0^^~4~^~RA~^^^^^^^^^^~05/01/2007~
-~10955~^~417~^1.^0^^~4~^~RA~^^^^^^^^^^~05/01/2007~
-~10955~^~431~^0.^0^^~4~^~RA~^^^^^^^^^^~05/01/2007~
-~10955~^~432~^1.^0^^~4~^~RA~^^^^^^^^^^~05/01/2007~
-~10955~^~435~^1.^0^^~4~^~NC~^^^^^^^^^^~05/01/2007~
-~10955~^~601~^62.^0^^~4~^~RA~^^^^^^^^^^~05/01/2007~
-~10956~^~208~^158.^0^^~4~^~NC~^^^^^^^^^^~03/01/2008~
-~10956~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2008~
-~10956~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2008~
-~10956~^~268~^659.^0^^~4~^~NC~^^^^^^^^^^~03/01/2008~
-~10956~^~301~^7.^6^0.^~1~^~A~^^^1^6.^8.^5^6.^7.^~4~^~02/01/2008~
-~10956~^~304~^23.^6^0.^~1~^~A~^^^1^22.^24.^5^22.^24.^~4~^~02/01/2008~
-~10956~^~305~^221.^6^3.^~1~^~A~^^^1^210.^230.^5^212.^228.^~4~^~02/01/2008~
-~10956~^~306~^366.^6^7.^~1~^~A~^^^1^336.^382.^5^347.^385.^~4~^~02/01/2008~
-~10956~^~307~^76.^6^4.^~1~^~A~^^^1^59.^93.^5^62.^88.^~4~^~02/01/2008~
-~10956~^~318~^0.^0^^~1~^~AS~^^^^^^^^^^~02/01/2008~
-~10956~^~319~^0.^0^^~1~^~A~^^^^^^^^^^~03/01/2008~
-~10956~^~320~^0.^0^^~1~^~AS~^^^^^^^^^^~02/01/2008~
-~10956~^~321~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2008~
-~10956~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2008~
-~10956~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2008~
-~10956~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2008~
-~10956~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2008~
-~10956~^~417~^1.^4^0.^~1~^~A~^^^1^0.^3.^3^0.^2.^~1, 4~^~02/01/2008~
-~10956~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2008~
-~10956~^~432~^1.^4^0.^~1~^~A~^^^1^0.^3.^3^0.^2.^^~03/01/2008~
-~10956~^~435~^1.^0^^~4~^~NC~^^^^^^^^^^~04/01/2008~
-~10956~^~601~^81.^12^1.^~1~^~A~^^^1^69.^88.^11^77.^84.^~4~^~02/01/2008~
-~10957~^~208~^123.^0^^~4~^~NC~^^^^^^^^^^~03/01/2008~
-~10957~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2008~
-~10957~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2008~
-~10957~^~268~^515.^0^^~4~^~NC~^^^^^^^^^^~03/01/2008~
-~10957~^~301~^7.^6^0.^~1~^~A~^^^1^5.^10.^5^4.^8.^~4~^~02/01/2008~
-~10957~^~304~^22.^6^0.^~1~^~A~^^^1^21.^23.^5^21.^22.^~4~^~02/01/2008~
-~10957~^~305~^207.^6^2.^~1~^~A~^^^1^199.^214.^5^200.^213.^~4~^~02/01/2008~
-~10957~^~306~^365.^6^4.^~1~^~A~^^^1^349.^379.^5^353.^376.^~4~^~02/01/2008~
-~10957~^~307~^73.^6^5.^~1~^~A~^^^1^60.^96.^5^59.^86.^~4~^~02/01/2008~
-~10957~^~318~^0.^0^^~1~^~AS~^^^^^^^^^^~03/01/2008~
-~10957~^~319~^0.^0^^~1~^~A~^^^^^^^^^^~03/01/2008~
-~10957~^~320~^0.^0^^~1~^~AS~^^^^^^^^^^~03/01/2008~
-~10957~^~321~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2008~
-~10957~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2008~
-~10957~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2008~
-~10957~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2008~
-~10957~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2008~
-~10957~^~417~^1.^3^1.^~1~^~A~^^^1^0.^3.^2^-3.^5.^~1, 4~^~02/01/2008~
-~10957~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2008~
-~10957~^~432~^1.^3^1.^~1~^~A~^^^1^0.^3.^2^-3.^5.^^~03/01/2008~
-~10957~^~435~^1.^0^^~4~^~NC~^^^^^^^^^^~04/01/2008~
-~10957~^~601~^63.^12^0.^~1~^~A~^^^1^58.^67.^11^61.^64.^~4~^~02/01/2008~
-~10958~^~208~^127.^0^^~4~^~NC~^^^^^^^^^^~04/01/2008~
-~10958~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2008~
-~10958~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2008~
-~10958~^~268~^531.^0^^~4~^~NC~^^^^^^^^^^~04/01/2008~
-~10958~^~301~^7.^6^0.^~1~^~A~^^^1^5.^11.^5^4.^8.^~4~^~02/01/2008~
-~10958~^~304~^26.^6^0.^~1~^~A~^^^1^25.^28.^5^24.^27.^~4~^~02/01/2008~
-~10958~^~305~^229.^6^2.^~1~^~A~^^^1^226.^239.^5^223.^234.^~4~^~02/01/2008~
-~10958~^~306~^378.^6^7.^~1~^~A~^^^1^343.^388.^5^359.^396.^~4~^~02/01/2008~
-~10958~^~307~^54.^6^2.^~1~^~A~^^^1^48.^61.^5^48.^60.^~4~^~02/01/2008~
-~10958~^~318~^0.^0^^~1~^~AS~^^^^^^^^^^~04/01/2008~
-~10958~^~319~^0.^0^^~1~^~A~^^^^^^^^^^~04/01/2008~
-~10958~^~320~^0.^0^^~1~^~AS~^^^^^^^^^^~04/01/2008~
-~10958~^~321~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2008~
-~10958~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2008~
-~10958~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2008~
-~10958~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2008~
-~10958~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2008~
-~10958~^~417~^0.^4^0.^~1~^~A~^^^1^0.^1.^3^0.^1.^~1, 4~^~02/01/2008~
-~10958~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2008~
-~10958~^~432~^0.^4^0.^~1~^~A~^^^1^0.^1.^3^0.^1.^^~04/01/2008~
-~10958~^~435~^0.^0^^~4~^~NC~^^^^^^^^^^~04/01/2008~
-~10958~^~601~^60.^12^1.^~1~^~A~^^^1^52.^67.^11^57.^62.^~4~^~02/01/2008~
-~10959~^~208~^162.^0^^~4~^~NC~^^^^^^^^^^~04/01/2008~
-~10959~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2008~
-~10959~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2008~
-~10959~^~268~^678.^0^^~4~^~NC~^^^^^^^^^^~04/01/2008~
-~10959~^~301~^7.^6^0.^~1~^~A~^^^1^5.^9.^5^5.^8.^~4~^~02/01/2008~
-~10959~^~304~^26.^6^0.^~1~^~A~^^^1^24.^28.^5^24.^27.^~4~^~02/01/2008~
-~10959~^~305~^240.^6^3.^~1~^~A~^^^1^229.^253.^5^231.^249.^~4~^~02/01/2008~
-~10959~^~306~^364.^6^3.^~1~^~A~^^^1^346.^373.^5^353.^373.^~4~^~02/01/2008~
-~10959~^~307~^54.^6^3.^~1~^~A~^^^1^45.^72.^5^44.^64.^~4~^~02/01/2008~
-~10959~^~318~^0.^0^^~1~^~AS~^^^^^^^^^^~02/01/2008~
-~10959~^~319~^0.^0^^~1~^~A~^^^^^^^^^^~04/01/2008~
-~10959~^~320~^0.^0^^~1~^~AS~^^^^^^^^^^~02/01/2008~
-~10959~^~321~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2008~
-~10959~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2008~
-~10959~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2008~
-~10959~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2008~
-~10959~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2008~
-~10959~^~417~^2.^4^0.^~1~^~A~^^^1^0.^3.^3^0.^3.^~1, 4~^~02/01/2008~
-~10959~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2008~
-~10959~^~432~^2.^4^0.^~1~^~A~^^^1^0.^3.^3^0.^3.^^~04/01/2008~
-~10959~^~435~^2.^0^^~4~^~NC~^^^^^^^^^^~04/01/2008~
-~10959~^~601~^78.^12^0.^~1~^~A~^^^1^74.^84.^11^76.^80.^~4~^~02/01/2008~
-~10960~^~208~^155.^0^^~4~^~NC~^^^^^^^^^^~04/01/2008~
-~10960~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2008~
-~10960~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2008~
-~10960~^~268~^650.^0^^~4~^~NC~^^^^^^^^^^~04/01/2008~
-~10960~^~301~^8.^4^0.^~1~^~A~^^^1^6.^9.^3^5.^9.^~4~^~03/01/2008~
-~10960~^~304~^27.^4^0.^~1~^~A~^^^1^26.^29.^3^25.^28.^~4~^~03/01/2008~
-~10960~^~305~^254.^4^1.^~1~^~A~^^^1^250.^258.^3^248.^258.^~4~^~03/01/2008~
-~10960~^~306~^415.^4^9.^~1~^~A~^^^1^391.^433.^3^386.^444.^~4~^~03/01/2008~
-~10960~^~307~^53.^4^2.^~1~^~A~^^^1^50.^61.^3^45.^61.^~4~^~03/01/2008~
-~10960~^~318~^0.^0^^~1~^~AS~^^^^^^^^^^~04/01/2008~
-~10960~^~319~^0.^0^^~1~^~A~^^^^^^^^^^~04/01/2008~
-~10960~^~320~^0.^0^^~1~^~AS~^^^^^^^^^^~04/01/2008~
-~10960~^~321~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2008~
-~10960~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2008~
-~10960~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2008~
-~10960~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2008~
-~10960~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2008~
-~10960~^~417~^1.^4^0.^~1~^~A~^^^1^0.^3.^3^-1.^3.^~1, 4~^~03/01/2008~
-~10960~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2008~
-~10960~^~432~^1.^4^0.^~1~^~A~^^^1^0.^3.^3^-1.^3.^^~04/01/2008~
-~10960~^~435~^1.^0^^~4~^~NC~^^^^^^^^^^~04/01/2008~
-~10960~^~601~^82.^12^1.^~1~^~A~^^^1^75.^89.^11^79.^84.^~4~^~03/01/2008~
-~10961~^~208~^128.^0^^~4~^~NC~^^^^^^^^^^~04/01/2008~
-~10961~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2008~
-~10961~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2008~
-~10961~^~268~^535.^0^^~4~^~NC~^^^^^^^^^^~04/01/2008~
-~10961~^~301~^6.^4^0.^~1~^~A~^^^1^5.^7.^3^5.^7.^~4~^~03/01/2008~
-~10961~^~304~^24.^4^0.^~1~^~A~^^^1^24.^25.^3^23.^25.^~4~^~03/01/2008~
-~10961~^~305~^229.^4^1.^~1~^~A~^^^1^225.^233.^3^223.^233.^~4~^~03/01/2008~
-~10961~^~306~^391.^4^3.^~1~^~A~^^^1^380.^397.^3^378.^403.^~4~^~03/01/2008~
-~10961~^~307~^50.^4^2.^~1~^~A~^^^1^47.^57.^3^43.^57.^~4~^~03/01/2008~
-~10961~^~318~^0.^0^^~1~^~AS~^^^^^^^^^^~03/01/2008~
-~10961~^~319~^0.^0^^~1~^~A~^^^^^^^^^^~04/01/2008~
-~10961~^~320~^0.^0^^~1~^~AS~^^^^^^^^^^~03/01/2008~
-~10961~^~321~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2008~
-~10961~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2008~
-~10961~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2008~
-~10961~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2008~
-~10961~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2008~
-~10961~^~417~^2.^4^1.^~1~^~A~^^^1^0.^5.^3^-2.^5.^~1, 4~^~03/01/2008~
-~10961~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2008~
-~10961~^~432~^2.^4^1.^~1~^~A~^^^1^0.^5.^3^-2.^5.^^~04/01/2008~
-~10961~^~435~^2.^0^^~4~^~NC~^^^^^^^^^^~04/01/2008~
-~10961~^~601~^66.^12^0.^~1~^~A~^^^1^63.^71.^11^64.^68.^~4~^~03/01/2008~
-~10962~^~208~^156.^0^^~4~^~NC~^^^^^^^^^^~04/01/2008~
-~10962~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2008~
-~10962~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2008~
-~10962~^~268~^652.^0^^~4~^~NC~^^^^^^^^^^~04/01/2008~
-~10962~^~301~^5.^6^0.^~1~^~A~^^^1^5.^6.^5^4.^5.^~4~^~03/01/2008~
-~10962~^~304~^25.^6^0.^~1~^~A~^^^1^25.^26.^5^24.^25.^~4~^~03/01/2008~
-~10962~^~305~^237.^6^3.^~1~^~A~^^^1^222.^245.^5^227.^246.^~4~^~03/01/2008~
-~10962~^~306~^363.^6^6.^~1~^~A~^^^1^342.^384.^5^345.^379.^~4~^~03/01/2008~
-~10962~^~307~^43.^6^1.^~1~^~A~^^^1^38.^47.^5^39.^45.^~4~^~03/01/2008~
-~10962~^~318~^0.^0^^~1~^~AS~^^^^^^^^^^~04/01/2008~
-~10962~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2008~
-~10962~^~320~^0.^0^^~1~^~AS~^^^^^^^^^^~04/01/2008~
-~10962~^~321~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2008~
-~10962~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2008~
-~10962~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2008~
-~10962~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2008~
-~10962~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2008~
-~10962~^~417~^1.^3^0.^~1~^~A~^^^1^0.^3.^2^-2.^4.^~1, 4~^~03/01/2008~
-~10962~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2008~
-~10962~^~432~^1.^3^0.^~1~^~A~^^^1^0.^3.^2^-2.^4.^^~04/01/2008~
-~10962~^~435~^1.^0^^~4~^~NC~^^^^^^^^^^~08/01/2009~
-~10962~^~601~^84.^12^1.^~1~^~A~^^^1^80.^91.^11^81.^86.^~4~^~03/01/2008~
-~10963~^~208~^113.^0^^~4~^~NC~^^^^^^^^^^~04/01/2008~
-~10963~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2008~
-~10963~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2008~
-~10963~^~268~^474.^0^^~4~^~NC~^^^^^^^^^^~04/01/2008~
-~10963~^~301~^5.^6^0.^~1~^~A~^^^1^4.^6.^5^4.^5.^~4~^~03/01/2008~
-~10963~^~304~^25.^6^0.^~1~^~A~^^^1^23.^26.^5^23.^25.^~4~^~03/01/2008~
-~10963~^~305~^232.^6^2.^~1~^~A~^^^1^224.^239.^5^225.^237.^~4~^~03/01/2008~
-~10963~^~306~^399.^6^3.^~1~^~A~^^^1^392.^413.^5^390.^407.^~4~^~03/01/2008~
-~10963~^~307~^50.^6^2.^~1~^~A~^^^1^43.^56.^5^44.^55.^~4~^~03/01/2008~
-~10963~^~318~^0.^0^^~1~^~AS~^^^^^^^^^^~03/01/2008~
-~10963~^~319~^0.^0^^~1~^~A~^^^^^^^^^^~04/01/2008~
-~10963~^~320~^0.^0^^~1~^~AS~^^^^^^^^^^~03/01/2008~
-~10963~^~321~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2008~
-~10963~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2008~
-~10963~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2008~
-~10963~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2008~
-~10963~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2008~
-~10963~^~417~^0.^4^0.^~1~^~A~^^^1^0.^2.^3^0.^1.^~1, 4~^~03/01/2008~
-~10963~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2008~
-~10963~^~432~^0.^4^0.^~1~^~A~^^^1^0.^2.^3^0.^1.^^~04/01/2008~
-~10963~^~435~^0.^0^^~4~^~NC~^^^^^^^^^^~08/01/2009~
-~10963~^~601~^62.^12^1.^~1~^~A~^^^1^57.^76.^11^59.^65.^~4~^~03/01/2008~
-~10972~^~208~^218.^0^^~4~^~NC~^^^^^^^^^^~05/01/2009~
-~10972~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2009~
-~10972~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2009~
-~10972~^~268~^911.^0^^~4~^~NC~^^^^^^^^^^~05/01/2009~
-~10972~^~301~^15.^8^0.^~1~^~AR~^^^^14.^17.^^^^^~05/01/2009~
-~10972~^~304~^16.^8^0.^~1~^~AR~^^^^14.^18.^^^^^~05/01/2009~
-~10972~^~305~^161.^8^2.^~1~^~AR~^^^^143.^177.^^^^^~05/01/2009~
-~10972~^~306~^244.^8^5.^~1~^~AR~^^^^211.^289.^^^^^~05/01/2009~
-~10972~^~307~^68.^8^5.^~1~^~AR~^^^^50.^89.^^^^^~05/01/2009~
-~10972~^~318~^0.^0^^~1~^~AS~^^^^^^^^^^~05/01/2009~
-~10972~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2009~
-~10972~^~320~^0.^0^^~1~^~AS~^^^^^^^^^^~05/01/2009~
-~10972~^~321~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2009~
-~10972~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2009~
-~10972~^~324~^17.^1^^~1~^~A~^^^^^^^^^^~05/01/2009~
-~10972~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2009~
-~10972~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2009~
-~10972~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2009~
-~10972~^~417~^2.^1^^~1~^~AR~^^^^^^^^^^~05/01/2009~
-~10972~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2009~
-~10972~^~432~^2.^1^^~1~^~AR~^^^^^^^^^^~05/01/2009~
-~10972~^~435~^2.^0^^~4~^~NC~^^^^^^^^^^~06/01/2009~
-~10972~^~601~^68.^16^2.^~1~^~AR~^^^^62.^85.^^^^^~05/01/2009~
-~10973~^~208~^121.^0^^~4~^~NC~^^^^^^^^^^~05/01/2009~
-~10973~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2009~
-~10973~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2009~
-~10973~^~268~^507.^0^^~4~^~NC~^^^^^^^^^^~05/01/2009~
-~10973~^~301~^15.^7^0.^~1~^~AR~^^^^^^^^^^~05/01/2009~
-~10973~^~304~^19.^7^0.^~1~^~AR~^^^^^^^^^^~05/01/2009~
-~10973~^~305~^190.^7^2.^~1~^~AR~^^^^^^^^^^~05/01/2009~
-~10973~^~306~^310.^7^6.^~1~^~AR~^^^^^^^^^^~05/01/2009~
-~10973~^~307~^67.^7^5.^~1~^~AR~^^^^^^^^^^~05/01/2009~
-~10973~^~318~^0.^0^^~1~^~AS~^^^^^^^^^^~05/01/2009~
-~10973~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2009~
-~10973~^~320~^0.^0^^~1~^~AS~^^^^^^^^^^~05/01/2009~
-~10973~^~321~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2009~
-~10973~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2009~
-~10973~^~324~^4.^0^^~4~^~BFFN~^^^^^^^^^^~05/01/2009~
-~10973~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2009~
-~10973~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2009~
-~10973~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2009~
-~10973~^~417~^2.^1^^~1~^~AR~^^^^^^^^^^~05/01/2009~
-~10973~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2009~
-~10973~^~432~^2.^1^^~1~^~AR~^^^^^^^^^^~05/01/2009~
-~10973~^~435~^2.^0^^~4~^~NC~^^^^^^^^^^~06/01/2009~
-~10973~^~601~^59.^14^2.^~1~^~AR~^^^^^^^^^^~05/01/2009~
-~10974~^~208~^393.^0^^~4~^~NC~^^^^^^^^^^~05/01/2009~
-~10974~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2009~
-~10974~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2009~
-~10974~^~268~^1645.^0^^~4~^~NC~^^^^^^^^^^~05/01/2009~
-~10974~^~301~^20.^8^0.^~1~^~AR~^^^^^^^^^^~05/01/2009~
-~10974~^~304~^19.^8^1.^~1~^~AR~^^^^^^^^^^~05/01/2009~
-~10974~^~305~^192.^8^16.^~1~^~AR~^^^^^^^^^^~05/01/2009~
-~10974~^~306~^280.^8^19.^~1~^~AR~^^^^^^^^^^~05/01/2009~
-~10974~^~307~^94.^8^4.^~1~^~AR~^^^^^^^^^^~05/01/2009~
-~10974~^~318~^0.^0^^~1~^~AS~^^^^^^^^^^~05/01/2009~
-~10974~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2009~
-~10974~^~320~^0.^0^^~1~^~AS~^^^^^^^^^^~05/01/2009~
-~10974~^~321~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2009~
-~10974~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2009~
-~10974~^~324~^34.^0^^~4~^~BFFN~^^^^^^^^^^~05/01/2009~
-~10974~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2009~
-~10974~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2009~
-~10974~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2009~
-~10974~^~417~^2.^1^^~1~^~AR~^^^^^^^^^^~05/01/2009~
-~10974~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2009~
-~10974~^~432~^2.^1^^~1~^~AR~^^^^^^^^^^~05/01/2009~
-~10974~^~435~^2.^0^^~4~^~NC~^^^^^^^^^^~08/01/2009~
-~10974~^~601~^100.^16^4.^~1~^~AR~^^^^^^^^^^~05/01/2009~
-~10975~^~208~^289.^0^^~4~^~NC~^^^^^^^^^^~05/01/2009~
-~10975~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2009~
-~10975~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2009~
-~10975~^~268~^1211.^0^^~4~^~NC~^^^^^^^^^^~05/01/2009~
-~10975~^~301~^20.^8^0.^~1~^~AR~^^^^17.^22.^^^^^~05/01/2009~
-~10975~^~304~^23.^8^0.^~1~^~AR~^^^^17.^25.^^^^^~05/01/2009~
-~10975~^~305~^226.^8^14.^~1~^~AR~^^^^153.^268.^^^^^~05/01/2009~
-~10975~^~306~^354.^8^14.^~1~^~AR~^^^^298.^391.^^^^^~05/01/2009~
-~10975~^~307~^89.^8^4.^~1~^~AR~^^^^71.^102.^^^^^~05/01/2009~
-~10975~^~318~^0.^0^^~1~^~AS~^^^^^^^^^^~05/01/2009~
-~10975~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2009~
-~10975~^~320~^0.^0^^~1~^~AS~^^^^^^^^^^~05/01/2009~
-~10975~^~321~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2009~
-~10975~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2009~
-~10975~^~324~^20.^1^^~1~^~A~^^^^^^^^^^~05/01/2009~
-~10975~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2009~
-~10975~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2009~
-~10975~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2009~
-~10975~^~417~^1.^1^^~1~^~AR~^^^^^^^^^^~05/01/2009~
-~10975~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2009~
-~10975~^~432~^1.^1^^~1~^~AR~^^^^^^^^^^~05/01/2009~
-~10975~^~435~^1.^0^^~4~^~NC~^^^^^^^^^^~06/01/2009~
-~10975~^~601~^89.^16^3.^~1~^~AR~^^^^81.^118.^^^^^~05/01/2009~
-~10976~^~208~^187.^0^^~4~^~NC~^^^^^^^^^^~05/01/2009~
-~10976~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2009~
-~10976~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2009~
-~10976~^~268~^781.^0^^~4~^~NC~^^^^^^^^^^~05/01/2009~
-~10976~^~301~^19.^7^0.^~1~^~AR~^^^^^^^^^^~05/01/2009~
-~10976~^~304~^27.^7^1.^~1~^~AR~^^^^^^^^^^~05/01/2009~
-~10976~^~305~^261.^7^16.^~1~^~AR~^^^^^^^^^^~05/01/2009~
-~10976~^~306~^428.^7^15.^~1~^~AR~^^^^^^^^^^~05/01/2009~
-~10976~^~307~^84.^7^4.^~1~^~AR~^^^^^^^^^^~05/01/2009~
-~10976~^~318~^0.^0^^~1~^~AS~^^^^^^^^^^~05/01/2009~
-~10976~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2009~
-~10976~^~320~^0.^0^^~1~^~AS~^^^^^^^^^^~05/01/2009~
-~10976~^~321~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2009~
-~10976~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2009~
-~10976~^~324~^7.^0^^~4~^~BFFN~^^^^^^^^^^~05/01/2009~
-~10976~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2009~
-~10976~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2009~
-~10976~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2009~
-~10976~^~417~^0.^1^^~1~^~AR~^^^^^^^^^^~05/01/2009~
-~10976~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2009~
-~10976~^~432~^0.^1^^~1~^~AR~^^^^^^^^^^~05/01/2009~
-~10976~^~435~^0.^0^^~4~^~NC~^^^^^^^^^^~06/01/2009~
-~10976~^~601~^78.^14^4.^~1~^~AR~^^^^^^^^^^~05/01/2009~
-~10977~^~208~^377.^0^^~4~^~NC~^^^^^^^^^^~05/01/2009~
-~10977~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2009~
-~10977~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2009~
-~10977~^~268~^1579.^0^^~4~^~NC~^^^^^^^^^^~05/01/2009~
-~10977~^~301~^20.^8^0.^~1~^~AR~^^^^^^^^^^~05/01/2009~
-~10977~^~304~^18.^8^0.^~1~^~AR~^^^^^^^^^^~05/01/2009~
-~10977~^~305~^181.^8^7.^~1~^~AR~^^^^^^^^^^~05/01/2009~
-~10977~^~306~^275.^8^25.^~1~^~AR~^^^^^^^^^^~05/01/2009~
-~10977~^~307~^91.^8^4.^~1~^~AR~^^^^^^^^^^~05/01/2009~
-~10977~^~318~^0.^0^^~1~^~AS~^^^^^^^^^^~05/01/2009~
-~10977~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2009~
-~10977~^~320~^0.^0^^~1~^~AS~^^^^^^^^^^~05/01/2009~
-~10977~^~321~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2009~
-~10977~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2009~
-~10977~^~324~^32.^0^^~4~^~BFFN~^^^^^^^^^^~05/01/2009~
-~10977~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2009~
-~10977~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2009~
-~10977~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2009~
-~10977~^~417~^4.^1^^~1~^~AR~^^^^^^^^^^~05/01/2009~
-~10977~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2009~
-~10977~^~432~^4.^1^^~1~^~AR~^^^^^^^^^^~05/01/2009~
-~10977~^~435~^4.^0^^~4~^~NC~^^^^^^^^^^~08/01/2009~
-~10977~^~601~^99.^16^4.^~1~^~AR~^^^^^^^^^^~05/01/2009~
-~10978~^~208~^301.^0^^~4~^~NC~^^^^^^^^^^~05/01/2009~
-~10978~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2009~
-~10978~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2009~
-~10978~^~268~^1260.^0^^~4~^~NC~^^^^^^^^^^~05/01/2009~
-~10978~^~301~^20.^8^0.^~1~^~AR~^^^^^^^^^^~05/01/2009~
-~10978~^~304~^22.^8^0.^~1~^~AR~^^^^^^^^^^~05/01/2009~
-~10978~^~305~^221.^8^6.^~1~^~AR~^^^^^^^^^^~05/01/2009~
-~10978~^~306~^345.^8^24.^~1~^~AR~^^^^^^^^^^~05/01/2009~
-~10978~^~307~^89.^8^4.^~1~^~AR~^^^^^^^^^^~05/01/2009~
-~10978~^~318~^0.^0^^~1~^~AS~^^^^^^^^^^~05/01/2009~
-~10978~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2009~
-~10978~^~320~^0.^0^^~1~^~AS~^^^^^^^^^^~05/01/2009~
-~10978~^~321~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2009~
-~10978~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2009~
-~10978~^~324~^22.^0^^~4~^~BFFN~^^^^^^^^^^~05/01/2009~
-~10978~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2009~
-~10978~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2009~
-~10978~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2009~
-~10978~^~417~^4.^1^^~1~^~AR~^^^^^^^^^^~05/01/2009~
-~10978~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2009~
-~10978~^~432~^4.^1^^~1~^~AR~^^^^^^^^^^~05/01/2009~
-~10978~^~435~^4.^0^^~4~^~NC~^^^^^^^^^^~08/01/2009~
-~10978~^~601~^97.^16^4.^~1~^~AR~^^^^^^^^^^~05/01/2009~
-~10979~^~208~^185.^0^^~4~^~NC~^^^^^^^^^^~05/01/2009~
-~10979~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2009~
-~10979~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2009~
-~10979~^~268~^773.^0^^~4~^~NC~^^^^^^^^^^~05/01/2009~
-~10979~^~301~^20.^7^1.^~1~^~AR~^^^^^^^^^^~05/01/2009~
-~10979~^~304~^25.^7^0.^~1~^~AR~^^^^^^^^^^~05/01/2009~
-~10979~^~305~^261.^7^7.^~1~^~AR~^^^^^^^^^^~05/01/2009~
-~10979~^~306~^415.^7^25.^~1~^~AR~^^^^^^^^^^~05/01/2009~
-~10979~^~307~^88.^7^4.^~1~^~AR~^^^^^^^^^^~05/01/2009~
-~10979~^~318~^0.^0^^~1~^~AS~^^^^^^^^^^~05/01/2009~
-~10979~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2009~
-~10979~^~320~^0.^0^^~1~^~AS~^^^^^^^^^^~05/01/2009~
-~10979~^~321~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2009~
-~10979~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2009~
-~10979~^~324~^6.^0^^~4~^~BFFN~^^^^^^^^^^~05/01/2009~
-~10979~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2009~
-~10979~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2009~
-~10979~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2009~
-~10979~^~417~^3.^1^^~1~^~AR~^^^^^^^^^^~05/01/2009~
-~10979~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2009~
-~10979~^~432~^3.^1^^~1~^~AR~^^^^^^^^^^~05/01/2009~
-~10979~^~435~^3.^0^^~4~^~NC~^^^^^^^^^^~08/01/2009~
-~10979~^~601~^85.^14^5.^~1~^~AR~^^^^^^^^^^~05/01/2009~
-~10980~^~208~^172.^0^^~4~^~NC~^^^^^^^^^^~05/01/2010~
-~10980~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2010~
-~10980~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2010~
-~10980~^~268~^719.^0^^~4~^~NC~^^^^^^^^^^~05/01/2010~
-~10980~^~301~^26.^12^1.^~1~^~A~^^^1^21.^31.^11^23.^27.^~2, 3~^~04/01/2010~
-~10980~^~304~^17.^12^0.^~1~^~A~^^^1^16.^19.^11^16.^17.^~2, 3~^~04/01/2010~
-~10980~^~305~^165.^12^4.^~1~^~A~^^^1^135.^182.^11^155.^175.^~2, 3~^~04/01/2010~
-~10980~^~306~^268.^12^7.^~1~^~A~^^^1^234.^306.^11^252.^284.^~2, 3~^~04/01/2010~
-~10980~^~307~^95.^12^1.^~1~^~A~^^^1^86.^102.^11^91.^98.^~2, 3~^~04/01/2010~
-~10980~^~318~^11.^0^^~4~^~NC~^^^^^^^^^^~05/01/2010~
-~10980~^~319~^3.^0^^~4~^~BFSN~^~10032~^^^^^^^^^~04/01/2010~
-~10980~^~320~^3.^0^^~4~^~NC~^^^^^^^^^^~05/01/2010~
-~10980~^~321~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2010~
-~10980~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2010~
-~10980~^~324~^38.^0^^~4~^~BFFN~^~10032~^^^^^^^^^~04/01/2010~
-~10980~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2010~
-~10980~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2010~
-~10980~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2010~
-~10980~^~417~^0.^0^^~4~^~BFNN~^~10068~^^^^^^^^^~04/01/2010~
-~10980~^~431~^0.^0^^~4~^~BFNN~^~10068~^^^^^^^^^~01/01/2015~
-~10980~^~432~^0.^0^^~4~^~BFNN~^^^^^^^^^^~05/01/2010~
-~10980~^~435~^0.^0^^~4~^~NC~^~10068~^^^^^^^^^~01/01/2015~
-~10980~^~601~^66.^6^0.^~1~^~A~^^^1^62.^68.^5^63.^67.^~2, 3~^~04/01/2010~
-~10981~^~208~^255.^0^^~4~^~NC~^^^^^^^^^^~05/01/2010~
-~10981~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2010~
-~10981~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2010~
-~10981~^~268~^1069.^0^^~4~^~NC~^^^^^^^^^^~05/01/2010~
-~10981~^~301~^44.^12^7.^~1~^~A~^^^1^23.^101.^11^27.^59.^~2, 3~^~05/01/2010~
-~10981~^~304~^17.^12^0.^~1~^~A~^^^1^15.^19.^11^16.^17.^~2, 3~^~05/01/2010~
-~10981~^~305~^171.^12^4.^~1~^~A~^^^1^147.^205.^11^161.^180.^~2, 3~^~05/01/2010~
-~10981~^~306~^249.^12^8.^~1~^~A~^^^1^175.^285.^11^230.^268.^~2, 3~^~05/01/2010~
-~10981~^~307~^98.^12^1.^~1~^~A~^^^1^90.^104.^11^95.^99.^~2, 3~^~05/01/2010~
-~10981~^~318~^15.^0^^~4~^~NC~^^^^^^^^^^~05/01/2010~
-~10981~^~319~^4.^0^^~4~^~BFSN~^~10032~^^^^^^^^^~05/01/2010~
-~10981~^~320~^4.^0^^~4~^~NC~^^^^^^^^^^~05/01/2010~
-~10981~^~321~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2010~
-~10981~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2010~
-~10981~^~324~^46.^0^^~4~^~BFFN~^~10035~^^^^^^^^^~05/01/2010~
-~10981~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2010~
-~10981~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2010~
-~10981~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2010~
-~10981~^~417~^0.^0^^~4~^~BFNN~^~10068~^^^^^^^^^~05/01/2010~
-~10981~^~431~^0.^0^^~4~^~BFNN~^~10068~^^^^^^^^^~01/01/2015~
-~10981~^~432~^0.^0^^~4~^~BFNN~^^^^^^^^^^~05/01/2010~
-~10981~^~435~^0.^0^^~4~^~NC~^~10068~^^^^^^^^^~01/01/2015~
-~10981~^~601~^84.^6^1.^~1~^~A~^^^1^79.^92.^5^79.^88.^~2, 3~^~05/01/2010~
-~10982~^~208~^123.^0^^~4~^~NC~^^^^^^^^^^~01/01/2011~
-~10982~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2011~
-~10982~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2011~
-~10982~^~268~^513.^0^^~4~^~NC~^^^^^^^^^^~01/01/2011~
-~10982~^~301~^6.^12^0.^~1~^~A~^^^1^4.^9.^11^4.^6.^~2, 3~^~01/01/2011~
-~10982~^~304~^22.^12^0.^~1~^~A~^^^1^20.^24.^11^21.^22.^~2, 3~^~01/01/2011~
-~10982~^~305~^244.^12^4.^~1~^~A~^^^1^207.^260.^11^234.^253.^~2, 3~^~01/01/2011~
-~10982~^~306~^375.^12^4.^~1~^~A~^^^1^349.^399.^11^364.^385.^~2, 3~^~01/01/2011~
-~10982~^~307~^65.^12^1.^~1~^~A~^^^1^60.^74.^11^61.^67.^~2, 3~^~01/01/2011~
-~10982~^~318~^9.^0^^~4~^~NC~^^^^^^^^^^~01/01/2011~
-~10982~^~319~^3.^0^^~4~^~BFSN~^~10032~^^^^^^^^^~01/01/2011~
-~10982~^~320~^3.^0^^~4~^~NC~^^^^^^^^^^~01/01/2011~
-~10982~^~321~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2011~
-~10982~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2011~
-~10982~^~324~^15.^0^^~4~^~BFFN~^~10032~^^^^^^^^^~01/01/2011~
-~10982~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2011~
-~10982~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2011~
-~10982~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2011~
-~10982~^~417~^0.^0^^~4~^~BFPN~^~10032~^^^^^^^^^~01/01/2011~
-~10982~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2011~
-~10982~^~432~^0.^0^^~4~^~BFPN~^^^^^^^^^^~01/01/2011~
-~10982~^~435~^0.^0^^~4~^~NC~^^^^^^^^^^~01/01/2011~
-~10982~^~601~^58.^6^2.^~1~^~A~^^^1^53.^64.^5^52.^63.^~2, 3~^~01/01/2011~
-~10983~^~208~^175.^0^^~4~^~NC~^^^^^^^^^^~01/01/2011~
-~10983~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2011~
-~10983~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2011~
-~10983~^~268~^731.^0^^~4~^~NC~^^^^^^^^^^~01/01/2011~
-~10983~^~301~^11.^12^0.^~1~^~A~^^^1^8.^15.^11^9.^12.^~2, 3~^~01/01/2011~
-~10983~^~304~^24.^12^0.^~1~^~A~^^^1^22.^26.^11^23.^25.^~2, 3~^~01/01/2011~
-~10983~^~305~^277.^12^6.^~1~^~A~^^^1^227.^323.^11^261.^291.^~2, 3~^~01/01/2011~
-~10983~^~306~^457.^12^13.^~1~^~A~^^^1^403.^536.^11^427.^486.^~2, 3~^~01/01/2011~
-~10983~^~307~^68.^12^1.^~1~^~A~^^^1^59.^82.^11^63.^72.^~2, 3~^~01/01/2011~
-~10983~^~318~^4.^0^^~4~^~NC~^^^^^^^^^^~01/01/2011~
-~10983~^~319~^1.^0^^~4~^~BFSN~^~10035~^^^^^^^^^~01/01/2011~
-~10983~^~320~^1.^0^^~4~^~NC~^^^^^^^^^^~01/01/2011~
-~10983~^~321~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2011~
-~10983~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2011~
-~10983~^~324~^19.^0^^~4~^~BFFN~^~10035~^^^^^^^^^~01/01/2011~
-~10983~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2011~
-~10983~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2011~
-~10983~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2011~
-~10983~^~417~^0.^0^^~4~^~BFPN~^~10035~^^^^^^^^^~01/01/2011~
-~10983~^~431~^0.^0^^~4~^~NR~^^^^^^^^^^~01/01/2011~
-~10983~^~432~^0.^0^^~4~^~BFPN~^^^^^^^^^^~01/01/2011~
-~10983~^~435~^0.^0^^~4~^~NC~^^^^^^^^^^~01/01/2011~
-~10983~^~601~^76.^6^2.^~1~^~A~^^^1^67.^81.^5^70.^81.^~2, 3~^~01/01/2011~
-~10984~^~208~^169.^0^^~4~^~NC~^^^^^^^^^^~01/01/2011~
-~10984~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2011~
-~10984~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2011~
-~10984~^~268~^706.^0^^~4~^~NC~^^^^^^^^^^~01/01/2011~
-~10984~^~301~^7.^12^0.^~1~^~A~^^^1^5.^10.^11^6.^8.^~2, 3~^~01/01/2011~
-~10984~^~304~^25.^12^0.^~1~^~A~^^^1^22.^29.^11^24.^26.^~2, 3~^~01/01/2011~
-~10984~^~305~^284.^12^6.^~1~^~A~^^^1^255.^318.^11^269.^297.^~2, 3~^~01/01/2011~
-~10984~^~306~^430.^12^9.^~1~^~A~^^^1^373.^484.^11^409.^449.^~2, 3~^~01/01/2011~
-~10984~^~307~^58.^12^2.^~1~^~A~^^^1^46.^76.^11^52.^63.^~2, 3~^~01/01/2011~
-~10984~^~318~^8.^0^^~4~^~NC~^^^^^^^^^^~01/01/2011~
-~10984~^~319~^2.^0^^~4~^~BFSN~^~10034~^^^^^^^^^~01/01/2011~
-~10984~^~320~^2.^0^^~4~^~NC~^^^^^^^^^^~01/01/2011~
-~10984~^~321~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2011~
-~10984~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2011~
-~10984~^~324~^26.^0^^~4~^~BFFN~^~10034~^^^^^^^^^~01/01/2011~
-~10984~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2011~
-~10984~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2011~
-~10984~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2011~
-~10984~^~417~^0.^0^^~4~^~BFPN~^~10068~^^^^^^^^^~01/01/2011~
-~10984~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2011~
-~10984~^~432~^0.^0^^~4~^~BFPN~^^^^^^^^^^~01/01/2011~
-~10984~^~435~^0.^0^^~4~^~NC~^^^^^^^^^^~01/01/2011~
-~10984~^~601~^76.^6^2.^~1~^~A~^^^1^65.^87.^5^69.^83.^~2, 3~^~01/01/2011~
-~10985~^~208~^216.^0^^~4~^~NC~^^^^^^^^^^~02/01/2011~
-~10985~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2011~
-~10985~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2011~
-~10985~^~268~^905.^0^^~4~^~NC~^^^^^^^^^^~02/01/2011~
-~10985~^~301~^7.^0^^~4~^~BFNN~^~10984~^^^^^^^^^~02/01/2011~
-~10985~^~304~^26.^0^^~4~^~BFNN~^~10984~^^^^^^^^^~02/01/2011~
-~10985~^~305~^285.^0^^~4~^~BFNN~^~10984~^^^^^^^^^~02/01/2011~
-~10985~^~306~^431.^0^^~4~^~BFNN~^~10984~^^^^^^^^^~02/01/2011~
-~10985~^~307~^58.^0^^~4~^~BFNN~^~10984~^^^^^^^^^~02/01/2011~
-~10985~^~318~^9.^0^^~4~^~NC~^^^^^^^^^^~02/01/2011~
-~10985~^~319~^3.^0^^~4~^~BFSN~^~10984~^^^^^^^^^~02/01/2011~
-~10985~^~320~^3.^0^^~4~^~NC~^^^^^^^^^^~02/01/2011~
-~10985~^~321~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2011~
-~10985~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2011~
-~10985~^~324~^44.^0^^~4~^~BFFN~^~10034~^^^^^^^^^~02/01/2011~
-~10985~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2011~
-~10985~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2011~
-~10985~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2011~
-~10985~^~417~^0.^0^^~4~^~BFPN~^~10984~^^^^^^^^^~02/01/2011~
-~10985~^~431~^0.^0^^~4~^~NR~^^^^^^^^^^~02/01/2011~
-~10985~^~432~^0.^0^^~4~^~BFPN~^^^^^^^^^^~02/01/2011~
-~10985~^~435~^0.^0^^~4~^~NC~^^^^^^^^^^~02/01/2011~
-~10985~^~601~^89.^6^2.^~1~^~A~^^^1^78.^95.^5^82.^94.^~2, 3~^~02/01/2011~
-~10986~^~208~^216.^0^^~4~^~NC~^^^^^^^^^^~02/01/2011~
-~10986~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2011~
-~10986~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2011~
-~10986~^~268~^905.^0^^~4~^~NC~^^^^^^^^^^~02/01/2011~
-~10986~^~301~^61.^0^^~4~^~BFNN~^~10034~^^^^^^^^^~02/01/2011~
-~10986~^~304~^24.^0^^~4~^~BFNN~^~10034~^^^^^^^^^~02/01/2011~
-~10986~^~305~^284.^0^^~4~^~BFNN~^~10034~^^^^^^^^^~02/01/2011~
-~10986~^~306~^370.^0^^~4~^~BFNN~^~10034~^^^^^^^^^~02/01/2011~
-~10986~^~307~^84.^0^^~4~^~BFNN~^~10034~^^^^^^^^^~02/01/2011~
-~10986~^~318~^9.^0^^~4~^~NC~^^^^^^^^^^~02/01/2011~
-~10986~^~319~^3.^0^^~4~^~BFSN~^~10034~^^^^^^^^^~02/01/2011~
-~10986~^~320~^3.^0^^~4~^~NC~^^^^^^^^^^~02/01/2011~
-~10986~^~321~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2011~
-~10986~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2011~
-~10986~^~324~^44.^0^^~4~^~BFFN~^~10034~^^^^^^^^^~02/01/2011~
-~10986~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2011~
-~10986~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2011~
-~10986~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2011~
-~10986~^~417~^0.^0^^~4~^~BFPN~^~10034~^^^^^^^^^~02/01/2011~
-~10986~^~431~^0.^0^^~4~^~NR~^^^^^^^^^^~02/01/2011~
-~10986~^~432~^0.^0^^~4~^~BFPN~^^^^^^^^^^~02/01/2011~
-~10986~^~435~^0.^0^^~4~^~NC~^^^^^^^^^^~02/01/2011~
-~10986~^~601~^89.^6^2.^~1~^~A~^^^1^78.^95.^5^82.^94.^~2, 3~^~02/01/2011~
-~10987~^~208~^219.^0^^~4~^~NC~^^^^^^^^^^~02/01/2011~
-~10987~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2011~
-~10987~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2011~
-~10987~^~268~^917.^0^^~4~^~NC~^^^^^^^^^^~02/01/2011~
-~10987~^~301~^12.^0^^~4~^~BFNN~^~10983~^^^^^^^^^~02/01/2011~
-~10987~^~304~^26.^0^^~4~^~BFNN~^~10983~^^^^^^^^^~02/01/2011~
-~10987~^~305~^294.^0^^~4~^~BFNN~^~10983~^^^^^^^^^~02/01/2011~
-~10987~^~306~^486.^0^^~4~^~BFNN~^~10983~^^^^^^^^^~02/01/2011~
-~10987~^~307~^72.^0^^~4~^~BFNN~^~10983~^^^^^^^^^~02/01/2011~
-~10987~^~318~^5.^0^^~4~^~NC~^^^^^^^^^^~02/01/2011~
-~10987~^~319~^1.^0^^~4~^~BFSN~^~10983~^^^^^^^^^~02/01/2011~
-~10987~^~320~^1.^0^^~4~^~NC~^^^^^^^^^^~02/01/2011~
-~10987~^~321~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2011~
-~10987~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2011~
-~10987~^~324~^30.^0^^~4~^~BFFN~^~10035~^^^^^^^^^~02/01/2011~
-~10987~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2011~
-~10987~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2011~
-~10987~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2011~
-~10987~^~417~^0.^0^^~4~^~BFPN~^~10983~^^^^^^^^^~02/01/2011~
-~10987~^~431~^0.^0^^~4~^~NR~^^^^^^^^^^~02/01/2011~
-~10987~^~432~^0.^0^^~4~^~BFPN~^^^^^^^^^^~02/01/2011~
-~10987~^~435~^0.^0^^~4~^~NC~^^^^^^^^^^~02/01/2011~
-~10987~^~601~^99.^6^1.^~1~^~A~^^^1^95.^104.^5^94.^102.^~2, 3~^~02/01/2011~
-~10988~^~208~^202.^0^^~4~^~NC~^^^^^^^^^^~02/01/2011~
-~10988~^~262~^0.^0^^~4~^~PIK~^^^^^^^^^^~02/01/2011~
-~10988~^~263~^0.^0^^~4~^~PIK~^^^^^^^^^^~02/01/2011~
-~10988~^~268~^847.^0^^~4~^~NC~^^^^^^^^^^~02/01/2011~
-~10988~^~301~^8.^0^^~1~^~PAK~^^^^^^^^^^~02/01/2011~
-~10988~^~304~^24.^0^^~1~^~PAK~^^^^^^^^^^~02/01/2011~
-~10988~^~305~^271.^0^^~1~^~PAK~^^^^^^^^^^~02/01/2011~
-~10988~^~306~^407.^0^^~1~^~PAK~^^^^^^^^^^~02/01/2011~
-~10988~^~307~^58.^0^^~1~^~PAK~^^^^^^^^^^~02/01/2011~
-~10988~^~318~^13.^0^^~4~^~PIK~^^^^^^^^^^~02/01/2011~
-~10988~^~319~^4.^0^^~4~^~PIK~^^^^^^^^^^~02/01/2011~
-~10988~^~320~^4.^0^^~4~^~PIK~^^^^^^^^^^~02/01/2011~
-~10988~^~321~^0.^0^^~4~^~PIK~^^^^^^^^^^~02/01/2011~
-~10988~^~322~^0.^0^^~4~^~PIK~^^^^^^^^^^~02/01/2011~
-~10988~^~324~^29.^0^^~4~^~PIK~^^^^^^^^^^~02/01/2011~
-~10988~^~334~^0.^0^^~4~^~PIK~^^^^^^^^^^~02/01/2011~
-~10988~^~337~^0.^0^^~4~^~PIK~^^^^^^^^^^~02/01/2011~
-~10988~^~338~^0.^0^^~4~^~PIK~^^^^^^^^^^~02/01/2011~
-~10988~^~417~^0.^0^^~4~^~PIK~^^^^^^^^^^~02/01/2011~
-~10988~^~431~^0.^0^^~4~^~PIK~^^^^^^^^^^~02/01/2011~
-~10988~^~432~^0.^0^^~4~^~PIK~^^^^^^^^^^~02/01/2011~
-~10988~^~435~^0.^0^^~4~^~NC~^^^^^^^^^^~02/01/2011~
-~10988~^~601~^77.^0^^~1~^~PAK~^^^^^^^^^^~02/01/2011~
-~10989~^~208~^157.^0^^~4~^~NC~^^^^^^^^^^~02/01/2011~
-~10989~^~262~^0.^0^^~4~^~PIK~^^^^^^^^^^~02/01/2011~
-~10989~^~263~^0.^0^^~4~^~PIK~^^^^^^^^^^~02/01/2011~
-~10989~^~268~^656.^0^^~4~^~NC~^^^^^^^^^^~02/01/2011~
-~10989~^~301~^6.^0^^~1~^~PAK~^^^^^^^^^^~02/01/2011~
-~10989~^~304~^21.^0^^~1~^~PAK~^^^^^^^^^^~02/01/2011~
-~10989~^~305~^233.^0^^~1~^~PAK~^^^^^^^^^^~02/01/2011~
-~10989~^~306~^372.^0^^~1~^~PAK~^^^^^^^^^^~02/01/2011~
-~10989~^~307~^64.^0^^~1~^~PAK~^^^^^^^^^^~02/01/2011~
-~10989~^~318~^14.^0^^~4~^~PIK~^^^^^^^^^^~02/01/2011~
-~10989~^~319~^4.^0^^~4~^~PIK~^^^^^^^^^^~02/01/2011~
-~10989~^~320~^4.^0^^~4~^~PIK~^^^^^^^^^^~02/01/2011~
-~10989~^~321~^0.^0^^~4~^~PIK~^^^^^^^^^^~02/01/2011~
-~10989~^~322~^0.^0^^~4~^~PIK~^^^^^^^^^^~02/01/2011~
-~10989~^~324~^18.^0^^~4~^~PIK~^^^^^^^^^^~02/01/2011~
-~10989~^~334~^0.^0^^~4~^~PIK~^^^^^^^^^^~02/01/2011~
-~10989~^~337~^0.^0^^~4~^~PIK~^^^^^^^^^^~02/01/2011~
-~10989~^~338~^0.^0^^~4~^~PIK~^^^^^^^^^^~02/01/2011~
-~10989~^~417~^0.^0^^~4~^~PIK~^^^^^^^^^^~02/01/2011~
-~10989~^~431~^0.^0^^~4~^~PIK~^^^^^^^^^^~02/01/2011~
-~10989~^~432~^0.^0^^~4~^~PIK~^^^^^^^^^^~02/01/2011~
-~10989~^~435~^0.^0^^~4~^~NC~^^^^^^^^^^~02/01/2011~
-~10989~^~601~^59.^0^^~1~^~PAK~^^^^^^^^^^~02/01/2011~
-~10990~^~208~^199.^0^^~4~^~NC~^^^^^^^^^^~02/01/2011~
-~10990~^~262~^0.^0^^~4~^~PIK~^^^^^^^^^^~02/01/2011~
-~10990~^~263~^0.^0^^~4~^~PIK~^^^^^^^^^^~02/01/2011~
-~10990~^~268~^832.^0^^~4~^~NC~^^^^^^^^^^~02/01/2011~
-~10990~^~301~^12.^0^^~1~^~PAK~^^^^^^^^^^~02/01/2011~
-~10990~^~304~^23.^0^^~1~^~PAK~^^^^^^^^^^~02/01/2011~
-~10990~^~305~^268.^0^^~1~^~PAK~^^^^^^^^^^~02/01/2011~
-~10990~^~306~^439.^0^^~1~^~PAK~^^^^^^^^^^~02/01/2011~
-~10990~^~307~^67.^0^^~1~^~PAK~^^^^^^^^^^~02/01/2011~
-~10990~^~318~^8.^0^^~4~^~PIK~^^^^^^^^^^~02/01/2011~
-~10990~^~319~^2.^0^^~4~^~PIK~^^^^^^^^^^~02/01/2011~
-~10990~^~320~^2.^0^^~4~^~PIK~^^^^^^^^^^~02/01/2011~
-~10990~^~321~^0.^0^^~4~^~PIK~^^^^^^^^^^~02/01/2011~
-~10990~^~322~^0.^0^^~4~^~PIK~^^^^^^^^^^~02/01/2011~
-~10990~^~324~^22.^0^^~4~^~PIK~^^^^^^^^^^~02/01/2011~
-~10990~^~334~^0.^0^^~4~^~PIK~^^^^^^^^^^~02/01/2011~
-~10990~^~337~^0.^0^^~4~^~PIK~^^^^^^^^^^~02/01/2011~
-~10990~^~338~^0.^0^^~4~^~PIK~^^^^^^^^^^~02/01/2011~
-~10990~^~417~^0.^0^^~4~^~PIK~^^^^^^^^^^~02/01/2011~
-~10990~^~431~^0.^0^^~4~^~PIK~^^^^^^^^^^~02/01/2011~
-~10990~^~432~^0.^0^^~4~^~PIK~^^^^^^^^^^~02/01/2011~
-~10990~^~435~^0.^0^^~4~^~NC~^^^^^^^^^^~02/01/2011~
-~10990~^~601~^76.^0^^~1~^~PAK~^^^^^^^^^^~02/01/2011~
-~10991~^~208~^247.^0^^~4~^~NC~^^^^^^^^^^~02/01/2011~
-~10991~^~262~^0.^0^^~4~^~PIK~^^^^^^^^^^~02/01/2011~
-~10991~^~263~^0.^0^^~4~^~PIK~^^^^^^^^^^~02/01/2011~
-~10991~^~268~^1032.^0^^~4~^~NC~^^^^^^^^^^~02/01/2011~
-~10991~^~301~^8.^0^^~4~^~PIK~^^^^^^^^^^~02/01/2011~
-~10991~^~304~^24.^0^^~4~^~PIK~^^^^^^^^^^~02/01/2011~
-~10991~^~305~^272.^0^^~4~^~PIK~^^^^^^^^^^~02/01/2011~
-~10991~^~306~^408.^0^^~4~^~PIK~^^^^^^^^^^~02/01/2011~
-~10991~^~307~^58.^0^^~4~^~PIK~^^^^^^^^^^~02/01/2011~
-~10991~^~318~^14.^0^^~4~^~NC~^^^^^^^^^^~02/01/2011~
-~10991~^~319~^4.^0^^~4~^~PIK~^^^^^^^^^^~02/01/2011~
-~10991~^~320~^4.^0^^~4~^~PIK~^^^^^^^^^^~02/01/2011~
-~10991~^~321~^0.^0^^~4~^~PIK~^^^^^^^^^^~02/01/2011~
-~10991~^~322~^0.^0^^~4~^~PIK~^^^^^^^^^^~02/01/2011~
-~10991~^~324~^46.^0^^~4~^~PIK~^^^^^^^^^^~02/01/2011~
-~10991~^~334~^0.^0^^~4~^~PIK~^^^^^^^^^^~02/01/2011~
-~10991~^~337~^0.^0^^~4~^~PIK~^^^^^^^^^^~02/01/2011~
-~10991~^~338~^0.^0^^~4~^~PIK~^^^^^^^^^^~02/01/2011~
-~10991~^~417~^0.^0^^~4~^~PIK~^^^^^^^^^^~02/01/2011~
-~10991~^~431~^0.^0^^~4~^~PIK~^^^^^^^^^^~02/01/2011~
-~10991~^~432~^0.^0^^~4~^~PIK~^^^^^^^^^^~02/01/2011~
-~10991~^~435~^0.^0^^~4~^~NC~^^^^^^^^^^~02/01/2011~
-~10991~^~601~^88.^0^^~1~^~PAK~^^^^^^^^^^~02/01/2011~
-~10992~^~208~^260.^0^^~4~^~NC~^^^^^^^^^^~02/01/2011~
-~10992~^~262~^0.^0^^~4~^~PIK~^^^^^^^^^^~02/01/2011~
-~10992~^~263~^0.^0^^~4~^~PIK~^^^^^^^^^^~02/01/2011~
-~10992~^~268~^1089.^0^^~4~^~NC~^^^^^^^^^^~02/01/2011~
-~10992~^~301~^57.^0^^~4~^~PIK~^^^^^^^^^^~02/01/2011~
-~10992~^~304~^22.^0^^~4~^~PIK~^^^^^^^^^^~02/01/2011~
-~10992~^~305~^265.^0^^~4~^~PIK~^^^^^^^^^^~02/01/2011~
-~10992~^~306~^344.^0^^~4~^~PIK~^^^^^^^^^^~02/01/2011~
-~10992~^~307~^81.^0^^~4~^~PIK~^^^^^^^^^^~02/01/2011~
-~10992~^~318~^17.^0^^~4~^~PIK~^^^^^^^^^^~02/01/2011~
-~10992~^~319~^5.^0^^~4~^~PIK~^^^^^^^^^^~02/01/2011~
-~10992~^~320~^5.^0^^~4~^~PIK~^^^^^^^^^^~02/01/2011~
-~10992~^~321~^0.^0^^~4~^~PIK~^^^^^^^^^^~02/01/2011~
-~10992~^~322~^0.^0^^~4~^~PIK~^^^^^^^^^^~02/01/2011~
-~10992~^~324~^47.^0^^~4~^~PIK~^^^^^^^^^^~02/01/2011~
-~10992~^~334~^0.^0^^~4~^~PIK~^^^^^^^^^^~02/01/2011~
-~10992~^~337~^0.^0^^~4~^~PIK~^^^^^^^^^^~02/01/2011~
-~10992~^~338~^0.^0^^~4~^~PIK~^^^^^^^^^^~02/01/2011~
-~10992~^~417~^0.^0^^~4~^~PIK~^^^^^^^^^^~02/01/2011~
-~10992~^~431~^0.^0^^~4~^~PIK~^^^^^^^^^^~02/01/2011~
-~10992~^~432~^0.^0^^~4~^~PIK~^^^^^^^^^^~02/01/2011~
-~10992~^~435~^0.^0^^~4~^~NC~^^^^^^^^^^~02/01/2011~
-~10992~^~601~^87.^0^^~1~^~PAK~^^^^^^^^^^~02/01/2011~
-~10993~^~208~^270.^0^^~4~^~NC~^^^^^^^^^^~02/01/2011~
-~10993~^~262~^0.^0^^~4~^~PIK~^^^^^^^^^^~02/01/2011~
-~10993~^~263~^0.^0^^~4~^~PIK~^^^^^^^^^^~02/01/2011~
-~10993~^~268~^1131.^0^^~4~^~NC~^^^^^^^^^^~02/01/2011~
-~10993~^~301~^13.^0^^~4~^~PIK~^^^^^^^^^^~02/01/2011~
-~10993~^~304~^24.^0^^~4~^~PIK~^^^^^^^^^^~02/01/2011~
-~10993~^~305~^271.^0^^~4~^~PIK~^^^^^^^^^^~02/01/2011~
-~10993~^~306~^441.^0^^~4~^~PIK~^^^^^^^^^^~02/01/2011~
-~10993~^~307~^70.^0^^~4~^~PIK~^^^^^^^^^^~02/01/2011~
-~10993~^~318~^14.^0^^~4~^~NC~^^^^^^^^^^~02/01/2011~
-~10993~^~319~^4.^0^^~4~^~PIK~^^^^^^^^^^~02/01/2011~
-~10993~^~320~^4.^0^^~4~^~NC~^^^^^^^^^^~02/01/2011~
-~10993~^~321~^0.^0^^~4~^~PIK~^^^^^^^^^^~02/01/2011~
-~10993~^~322~^0.^0^^~4~^~PIK~^^^^^^^^^^~02/01/2011~
-~10993~^~324~^35.^0^^~4~^~PIK~^^^^^^^^^^~02/01/2011~
-~10993~^~334~^0.^0^^~4~^~PIK~^^^^^^^^^^~02/01/2011~
-~10993~^~337~^0.^0^^~4~^~PIK~^^^^^^^^^^~02/01/2011~
-~10993~^~338~^0.^0^^~4~^~PIK~^^^^^^^^^^~02/01/2011~
-~10993~^~417~^0.^0^^~4~^~PIK~^^^^^^^^^^~02/01/2011~
-~10993~^~431~^0.^0^^~4~^~PIK~^^^^^^^^^^~02/01/2011~
-~10993~^~432~^0.^0^^~4~^~PIK~^^^^^^^^^^~02/01/2011~
-~10993~^~435~^0.^0^^~4~^~NC~^^^^^^^^^^~02/01/2011~
-~10993~^~601~^96.^0^^~1~^~PAK~^^^^^^^^^^~02/01/2011~
-~10994~^~208~^407.^0^^~4~^~NC~^^^^^^^^^^~04/01/2012~
-~10994~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2012~
-~10994~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2012~
-~10994~^~268~^1702.^0^^~4~^~NC~^^^^^^^^^^~04/01/2012~
-~10994~^~301~^4.^6^0.^~1~^~A~^^^1^4.^5.^5^3.^4.^~2, 3~^~04/01/2012~
-~10994~^~304~^12.^6^0.^~1~^~A~^^^1^11.^15.^5^10.^13.^~2, 3~^~04/01/2012~
-~10994~^~305~^180.^6^5.^~1~^~A~^^^1^164.^198.^5^164.^194.^~2, 3~^~04/01/2012~
-~10994~^~306~^506.^6^13.^~1~^~A~^^^1^474.^542.^5^472.^540.^~2, 3~^~04/01/2012~
-~10994~^~307~^470.^6^11.^~1~^~A~^^^1^430.^509.^5^440.^500.^~2, 3~^~04/01/2012~
-~10994~^~318~^0.^0^^~1~^~AS~^^^^^^^^^^~04/01/2012~
-~10994~^~320~^0.^0^^~1~^~AS~^^^^^^^^^^~04/01/2012~
-~10994~^~321~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2012~
-~10994~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2012~
-~10994~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2012~
-~10994~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2012~
-~10994~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2012~
-~10998~^~208~^146.^0^^~4~^~NC~^^^^^^^^^^~04/01/2013~
-~10998~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2013~
-~10998~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2013~
-~10998~^~268~^609.^0^^~4~^~NC~^^^^^^^^^^~04/01/2013~
-~10998~^~301~^7.^5^0.^~1~^~A~^^^1^5.^10.^2^5.^7.^~2, 3~^~04/01/2013~
-~10998~^~304~^27.^5^0.^~1~^~A~^^^1^23.^28.^2^23.^29.^~2, 3~^~08/01/2015~
-~10998~^~305~^309.^5^16.^~1~^~A~^^^1^274.^418.^2^237.^379.^~2, 3~^~08/01/2015~
-~10998~^~306~^999.^5^83.^~1~^~A~^^^1^395.^1210.^2^640.^1357.^~2, 3~^~08/01/2015~
-~10998~^~307~^993.^5^45.^~1~^~A~^^^1^886.^1300.^2^797.^1188.^~2, 3~^~08/01/2015~
-~10998~^~318~^0.^0^^~1~^~AS~^^^^^^^^^^~04/01/2013~
-~10998~^~319~^0.^1^^~1~^~A~^^^^^^^^^~1~^~04/01/2013~
-~10998~^~320~^0.^0^^~1~^~AS~^^^^^^^^^^~04/01/2013~
-~10998~^~321~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2013~
-~10998~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2013~
-~10998~^~324~^9.^1^^~1~^~A~^^^^^^^^^^~04/01/2013~
-~10998~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2013~
-~10998~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2013~
-~10998~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2013~
-~10998~^~417~^4.^1^^~1~^~A~^^^^^^^^^~1~^~04/01/2013~
-~10998~^~431~^0.^0^^~7~^~Z~^~10130~^^^^^^^^^~04/01/2013~
-~10998~^~432~^4.^1^^~1~^~A~^^^^^^^^^^~04/01/2013~
-~10998~^~435~^4.^0^^~4~^~NC~^~10130~^^^^^^^^^~04/01/2013~
-~10998~^~601~^67.^3^0.^~1~^~A~^^^1^65.^68.^1^64.^68.^~2, 3~^~08/01/2015~
-~11001~^~208~^23.^0^^~4~^~NC~^^^^^^^^^^~05/01/2006~
-~11001~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~12/01/2002~
-~11001~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~12/01/2002~
-~11001~^~268~^96.^0^^~4~^~NC~^^^^^^^^^^~05/01/2006~
-~11001~^~301~^32.^10^4.^~1~^^^^^^^^^^^~08/01/1984~
-~11001~^~304~^27.^10^3.^~1~^^^^^^^^^^^~08/01/1984~
-~11001~^~305~^70.^10^7.^~1~^^^^^^^^^^^~08/01/1984~
-~11001~^~306~^79.^10^9.^~1~^^^^^^^^^^^~08/01/1984~
-~11001~^~307~^6.^10^1.^~1~^^^^^^^^^^^~08/01/1984~
-~11001~^~318~^155.^0^^~4~^~NC~^^^^^^^^^^~05/01/2006~
-~11001~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2002~
-~11001~^~320~^8.^0^^~4~^~NC~^^^^^^^^^^~05/01/2006~
-~11001~^~321~^87.^0^^~4~^~O~^^^^^^^^^^~01/01/2003~
-~11001~^~322~^6.^0^^~4~^~BFSN~^~11043~^^^^^^^^^~01/01/2003~
-~11001~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~
-~11001~^~334~^6.^0^^~4~^~BFSN~^~11043~^^^^^^^^^~01/01/2003~
-~11001~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~12/01/2002~
-~11001~^~338~^0.^0^^~4~^~BFSN~^~11043~^^^^^^^^^~01/01/2003~
-~11001~^~417~^36.^10^0.^~1~^^^^^^^^^^^~08/01/1984~
-~11001~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~
-~11001~^~432~^36.^10^0.^~1~^^^^^^^^^^^~03/01/2006~
-~11001~^~435~^36.^0^^~4~^~NC~^^^^^^^^^^~05/01/2006~
-~11001~^~601~^0.^0^^~7~^~Z~^^^^^^^^^^~08/01/1984~
-~11003~^~208~^23.^0^^~4~^~NC~^^^^^^^^^^~05/01/2003~
-~11003~^~268~^97.^0^^~4~^~NC~^^^^^^^^^^~05/01/2003~
-~11003~^~301~^215.^6^59.^~1~^^^^^^^^^^^~08/01/1984~
-~11003~^~304~^55.^1^^~1~^^^^^^^^^^^~08/01/1984~
-~11003~^~305~^50.^15^1.^~1~^^^^^^^^^^^~08/01/1984~
-~11003~^~306~^611.^1^^~1~^^^^^^^^^^^~08/01/1984~
-~11003~^~307~^20.^1^^~1~^^^^^^^^^^^~08/01/1984~
-~11003~^~318~^2917.^5^1200.^~1~^~A~^^^^^^^^^^~06/01/2005~
-~11003~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2002~
-~11003~^~320~^146.^0^^~1~^~AS~^^^^^^^^^^~06/01/2005~
-~11003~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~
-~11003~^~417~^85.^0^^~1~^^^^^^^^^^^~08/01/1984~
-~11003~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~
-~11003~^~432~^85.^0^^~1~^^^^^^^^^^^~12/01/1984~
-~11003~^~435~^85.^0^^~4~^~NC~^^^^^^^^^^~06/01/2005~
-~11003~^~601~^0.^0^^~7~^~Z~^^^^^^^^^^~08/01/1984~
-~11004~^~208~^21.^0^^~4~^~NC~^^^^^^^^^^~08/01/1984~
-~11004~^~268~^88.^0^^~4~^^^^^^^^^^^
-~11004~^~301~^209.^0^^~1~^^^^^^^^^^^~08/01/1984~
-~11004~^~304~^55.^1^^~1~^^^^^^^^^^^~08/01/1984~
-~11004~^~305~^72.^1^^~1~^^^^^^^^^^^~08/01/1984~
-~11004~^~306~^641.^1^^~1~^^^^^^^^^^^~08/01/1984~
-~11004~^~307~^21.^1^^~1~^^^^^^^^^^^~08/01/1984~
-~11004~^~318~^2770.^5^1140.^~1~^^^^^^^^^^^~08/01/1984~
-~11004~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2002~
-~11004~^~320~^139.^5^57.^~1~^^^^^^^^^^^~06/01/2002~
-~11004~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~
-~11004~^~417~^57.^0^^~4~^^^^^^^^^^^~08/01/1984~
-~11004~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~
-~11004~^~432~^57.^0^^~4~^^^^^^^^^^^~12/01/1984~
-~11004~^~435~^57.^0^^~4~^~NC~^^^^^^^^^^~01/01/2001~
-~11004~^~601~^0.^0^^~7~^~Z~^^^^^^^^^^~08/01/1984~
-~11005~^~208~^99.^0^^~4~^~NC~^^^^^^^^^^~08/01/1984~
-~11005~^~268~^414.^0^^~4~^^^^^^^^^^^
-~11005~^~301~^10.^0^^~1~^^^^^^^^^^^~08/01/1984~
-~11005~^~304~^51.^1^^~1~^^^^^^^^^^^~08/01/1984~
-~11005~^~305~^174.^0^^~1~^^^^^^^^^^^~08/01/1984~
-~11005~^~306~^922.^1^^~1~^^^^^^^^^^^~08/01/1984~
-~11005~^~307~^22.^1^^~1~^^^^^^^^^^^~08/01/1984~
-~11005~^~318~^0.^0^^~1~^^^^^^^^^^^~08/01/1984~
-~11005~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2002~
-~11005~^~320~^0.^0^^~1~^^^^^^^^^^^~06/01/2002~
-~11005~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~
-~11005~^~417~^14.^0^^~4~^^^^^^^^^^^~08/01/1984~
-~11005~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~
-~11005~^~432~^14.^0^^~4~^^^^^^^^^^^~12/01/1984~
-~11005~^~435~^14.^0^^~4~^~NC~^^^^^^^^^^~01/01/2001~
-~11005~^~601~^0.^0^^~7~^~Z~^^^^^^^^^^~08/01/1984~
-~11006~^~208~^78.^0^^~4~^~NC~^^^^^^^^^^~08/01/1984~
-~11006~^~268~^326.^0^^~4~^^^^^^^^^^^
-~11006~^~301~^7.^1^^~1~^^^^^^^^^^^~08/01/1984~
-~11006~^~304~^49.^1^^~1~^^^^^^^^^^^~08/01/1984~
-~11006~^~305~^197.^1^^~1~^^^^^^^^^^^~08/01/1984~
-~11006~^~306~^881.^1^^~1~^^^^^^^^^^^~08/01/1984~
-~11006~^~307~^18.^1^^~1~^^^^^^^^^^^~08/01/1984~
-~11006~^~318~^0.^0^^~1~^^^^^^^^^^^~08/01/1984~
-~11006~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2002~
-~11006~^~320~^0.^0^^~1~^^^^^^^^^^^~06/01/2002~
-~11006~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~
-~11006~^~417~^9.^0^^~4~^^^^^^^^^^^~08/01/1984~
-~11006~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~
-~11006~^~432~^9.^0^^~4~^^^^^^^^^^^~12/01/1984~
-~11006~^~435~^9.^0^^~4~^~NC~^^^^^^^^^^~01/01/2001~
-~11006~^~601~^0.^0^^~7~^~Z~^^^^^^^^^^~08/01/1984~
-~11007~^~208~^47.^0^^~4~^~NC~^^^^^^^^^^~01/01/2007~
-~11007~^~268~^197.^0^^~4~^^^^^^^^^^^~01/01/2007~
-~11007~^~301~^44.^11^2.^~1~^^^^^^^^^^^~08/01/1984~
-~11007~^~304~^60.^11^4.^~1~^^^^^^^^^^^~08/01/1984~
-~11007~^~305~^90.^11^3.^~1~^^^^^^^^^^^~08/01/1984~
-~11007~^~306~^370.^12^19.^~1~^^^^^^^^^^^~08/01/1984~
-~11007~^~307~^94.^12^8.^~1~^^^^^^^^^^^~08/01/1984~
-~11007~^~318~^13.^0^^~4~^~NC~^^^^^^^^^^~01/01/2007~
-~11007~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2002~
-~11007~^~320~^1.^0^^~4~^~NC~^^^^^^^^^^~01/01/2007~
-~11007~^~321~^8.^0^^~4~^~BFZN~^~11008~^^^^^^^^^~01/01/2007~
-~11007~^~322~^0.^0^^~4~^~BFZN~^~11008~^^^^^^^^^~01/01/2007~
-~11007~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~
-~11007~^~334~^0.^0^^~4~^~BFZN~^~11008~^^^^^^^^^~01/01/2007~
-~11007~^~337~^0.^0^^~4~^~BFZN~^~11008~^^^^^^^^^~01/01/2007~
-~11007~^~338~^464.^0^^~4~^~BFZN~^~11008~^^^^^^^^^~06/01/2005~
-~11007~^~417~^68.^9^2.^~1~^^^^^^^^^^^~08/01/1984~
-~11007~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~
-~11007~^~432~^68.^9^2.^~1~^^^^^^^^^^^~01/01/2007~
-~11007~^~435~^68.^0^^~4~^~NC~^^^^^^^^^^~01/01/2007~
-~11007~^~601~^0.^0^^~7~^~Z~^^^^^^^^^^~08/01/1984~
-~11008~^~208~^53.^0^^~4~^~NC~^^^^^^^^^^~01/01/2007~
-~11008~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2003~
-~11008~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2003~
-~11008~^~268~^220.^0^^~4~^~NC~^^^^^^^^^^~01/01/2007~
-~11008~^~301~^21.^1^^~1~^~A~^^^^^^^^^^~01/01/2007~
-~11008~^~304~^42.^1^^~1~^~A~^^^^^^^^^^~01/01/2007~
-~11008~^~305~^73.^1^^~1~^~A~^^^^^^^^^^~01/01/2007~
-~11008~^~306~^286.^1^^~1~^~A~^^^^^^^^^^~01/01/2007~
-~11008~^~307~^60.^1^^~1~^~A~^^^^^^^^^^~01/01/2007~
-~11008~^~318~^13.^0^^~1~^~AS~^^^^^^^^^^~01/01/2007~
-~11008~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2002~
-~11008~^~320~^1.^0^^~1~^~AS~^^^^^^^^^^~01/01/2007~
-~11008~^~321~^8.^1^^~1~^~A~^^^^^^^^^^~01/01/2007~
-~11008~^~322~^0.^1^^~1~^~A~^^^^^^^^^~1~^~01/01/2003~
-~11008~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~
-~11008~^~334~^0.^1^^~1~^~A~^^^^^^^^^~1~^~01/01/2003~
-~11008~^~337~^0.^1^^~1~^~A~^^^^^^^^^~1~^~01/01/2003~
-~11008~^~338~^464.^1^^~1~^~A~^^^^^^^^^^~01/01/2003~
-~11008~^~417~^89.^1^^~1~^~A~^^^^^^^^^^~01/01/2007~
-~11008~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~
-~11008~^~432~^89.^1^^~1~^~A~^^^^^^^^^^~01/01/2007~
-~11008~^~435~^89.^0^^~4~^~NC~^^^^^^^^^^~01/01/2007~
-~11008~^~601~^0.^0^^~7~^~Z~^^^^^^^^^^~08/01/1984~
-~11009~^~208~^38.^0^^~4~^~NC~^^^^^^^^^^~08/01/1984~
-~11009~^~268~^158.^0^^~4~^~NC~^^^^^^^^^^~06/01/2013~
-~11009~^~301~^19.^4^2.^~1~^^^^^^^^^^^~08/01/1984~
-~11009~^~304~^27.^3^2.^~1~^^^^^^^^^^^~08/01/1984~
-~11009~^~305~^58.^4^4.^~1~^^^^^^^^^^^~08/01/1984~
-~11009~^~306~^248.^3^20.^~1~^^^^^^^^^^^~08/01/1984~
-~11009~^~307~^47.^3^5.^~1~^^^^^^^^^^^~08/01/1984~
-~11009~^~318~^154.^4^8.^~1~^^^^^^^^^^^~08/01/1984~
-~11009~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2002~
-~11009~^~320~^8.^4^0.^~1~^^^^^^^^^^^~06/01/2002~
-~11009~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~
-~11009~^~417~^126.^3^4.^~1~^^^^^^^^^^^~08/01/1984~
-~11009~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~
-~11009~^~432~^126.^3^4.^~1~^^^^^^^^^^^~12/01/1984~
-~11009~^~435~^126.^0^^~4~^~NC~^^^^^^^^^^~01/01/2001~
-~11009~^~601~^0.^0^^~7~^~Z~^^^^^^^^^^~08/01/1984~
-~11010~^~208~^45.^0^^~4~^~NC~^^^^^^^^^^~01/01/2007~
-~11010~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~
-~11010~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~
-~11010~^~268~^188.^0^^~4~^^^^^^^^^^^~01/01/2007~
-~11010~^~301~^21.^0^^~1~^^^^^^^^^^^~08/01/1984~
-~11010~^~304~^31.^0^^~1~^^^^^^^^^^^~08/01/1984~
-~11010~^~305~^61.^0^^~1~^^^^^^^^^^^~08/01/1984~
-~11010~^~306~^264.^0^^~1~^^^^^^^^^^^~08/01/1984~
-~11010~^~307~^53.^0^^~1~^^^^^^^^^^^~08/01/1984~
-~11010~^~318~^11.^0^^~4~^~NC~^^^^^^^^^^~01/01/2007~
-~11010~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2002~
-~11010~^~320~^1.^0^^~4~^~NC~^^^^^^^^^^~01/01/2007~
-~11010~^~321~^7.^0^^~4~^~BFSN~^~11008~^^^^^^^^^~01/01/2007~
-~11010~^~322~^0.^0^^~4~^~BFSN~^~11008~^^^^^^^^^~02/01/2003~
-~11010~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~
-~11010~^~334~^0.^0^^~4~^~BFSN~^~11008~^^^^^^^^^~02/01/2003~
-~11010~^~337~^0.^0^^~4~^~BFSN~^~11008~^^^^^^^^^~02/01/2003~
-~11010~^~338~^394.^0^^~4~^~BFSN~^~11008~^^^^^^^^^~01/01/2007~
-~11010~^~417~^119.^0^^~1~^^^^^^^^^^^~08/01/1984~
-~11010~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~
-~11010~^~432~^119.^0^^~1~^^^^^^^^^^^~01/01/2007~
-~11010~^~435~^119.^0^^~4~^~NC~^^^^^^^^^^~01/01/2007~
-~11010~^~601~^0.^0^^~7~^~Z~^^^^^^^^^^~08/01/1984~
-~11011~^~208~^20.^0^^~4~^~NC~^^^^^^^^^^~08/01/2007~
-~11011~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~12/01/2002~
-~11011~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~12/01/2002~
-~11011~^~268~^85.^0^^~4~^~NC~^^^^^^^^^^~08/01/2007~
-~11011~^~301~^24.^4^1.^~1~^~A~^^^1^22.^28.^3^20.^28.^~2, 3~^~12/01/2002~
-~11011~^~304~^14.^4^0.^~1~^~A~^^^1^13.^15.^3^12.^15.^~2, 3~^~12/01/2002~
-~11011~^~305~^52.^4^0.^~1~^~A~^^^1^51.^53.^3^50.^53.^~2, 3~^~12/01/2002~
-~11011~^~306~^202.^4^8.^~1~^~A~^^^1^192.^227.^3^175.^228.^~2, 3~^~12/01/2002~
-~11011~^~307~^2.^17^0.^~1~^^^^^^^^^^^~08/01/1984~
-~11011~^~318~^756.^0^^~1~^~AS~^^^^^^^^^^~08/01/2007~
-~11011~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2002~
-~11011~^~320~^38.^0^^~1~^~AS~^^^^^^^^^^~08/01/2007~
-~11011~^~321~^449.^6^76.^~1~^~A~^^^1^317.^581.^2^120.^777.^~4~^~12/01/2002~
-~11011~^~322~^9.^6^5.^~1~^~A~^^^1^0.^17.^2^-12.^30.^~4~^~12/01/2002~
-~11011~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~
-~11011~^~334~^0.^27^^~1~^~A~^^^1^0.^0.^^^^~2, 3~^~12/01/2002~
-~11011~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~12/01/2002~
-~11011~^~338~^710.^0^^~4~^~BFSN~^~11012~^^^^^^^^^~12/01/2002~
-~11011~^~417~^52.^4^6.^~1~^~A~^^^1^40.^70.^3^31.^72.^~2, 3~^~03/01/2006~
-~11011~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~
-~11011~^~432~^52.^4^6.^~1~^~A~^^^1^40.^70.^3^31.^72.^^~03/01/2006~
-~11011~^~435~^52.^0^^~4~^~NC~^^^^^^^^^^~08/01/2007~
-~11011~^~601~^0.^0^^~7~^~Z~^^^^^^^^^^~08/01/1984~
-~11011~^~636~^24.^1^^~1~^^^^^^^^^^^~08/01/1984~
-~11012~^~208~^22.^0^^~4~^~NC~^^^^^^^^^^~03/01/2006~
-~11012~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~12/01/2002~
-~11012~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~12/01/2002~
-~11012~^~268~^94.^0^^~4~^~NC~^^^^^^^^^^~03/01/2006~
-~11012~^~301~^23.^4^0.^~1~^~A~^^^1^21.^25.^3^20.^25.^~2, 3~^~12/01/2002~
-~11012~^~304~^14.^4^0.^~1~^~A~^^^1^13.^15.^3^12.^15.^~2, 3~^~12/01/2002~
-~11012~^~305~^54.^4^2.^~1~^~A~^^^1^49.^62.^3^45.^62.^~2, 3~^~12/01/2002~
-~11012~^~306~^224.^4^7.^~1~^~A~^^^1^203.^237.^3^199.^247.^~2, 3~^~12/01/2002~
-~11012~^~307~^14.^4^1.^~1~^~A~^^^1^11.^16.^3^10.^17.^~2, 3~^~12/01/2002~
-~11012~^~318~^1006.^0^^~1~^~AS~^^^^^^^^^^~03/01/2006~
-~11012~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2002~
-~11012~^~320~^50.^0^^~1~^~AS~^^^^^^^^^^~03/01/2006~
-~11012~^~321~^604.^4^60.^~1~^~A~^^^1^500.^771.^3^410.^796.^~2, 3~^~12/01/2002~
-~11012~^~322~^0.^4^0.^~1~^~A~^^^1^0.^0.^^^^~1, 2, 3~^~12/01/2002~
-~11012~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~
-~11012~^~334~^0.^4^0.^~1~^~A~^^^1^0.^0.^^^^~1, 2, 3~^~12/01/2002~
-~11012~^~337~^30.^4^2.^~1~^~A~^^^1^26.^36.^3^22.^36.^~2, 3~^~12/01/2002~
-~11012~^~338~^771.^4^78.^~1~^~A~^~11019~^^1^603.^977.^3^521.^1020.^~2, 3~^~03/01/2006~
-~11012~^~417~^149.^4^8.^~1~^~A~^^^1^136.^171.^3^123.^175.^~2, 3~^~12/01/2002~
-~11012~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~
-~11012~^~432~^149.^4^8.^~1~^~A~^^^1^136.^171.^3^123.^175.^^~03/01/2006~
-~11012~^~435~^149.^0^^~4~^~NC~^^^^^^^^^^~03/01/2006~
-~11012~^~601~^0.^0^^~7~^~Z~^^^^^^^^^^~08/01/1984~
-~11013~^~208~^15.^0^^~4~^~NC~^^^^^^^^^^~04/01/1996~
-~11013~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2013~
-~11013~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2013~
-~11013~^~268~^62.^0^^~4~^~NC~^^^^^^^^^^~04/01/2013~
-~11013~^~301~^15.^166^0.^~1~^~A~^^^^^^^^^^~04/01/1996~
-~11013~^~304~^9.^143^0.^~1~^^^^^^^^^^^~08/01/1984~
-~11013~^~305~^38.^153^0.^~1~^^^^^^^^^^^~08/01/1984~
-~11013~^~306~^172.^112^3.^~1~^~A~^^^^^^^^^^~04/01/1996~
-~11013~^~307~^284.^21^16.^~1~^~A~^^^^^^^^^^~05/01/2013~
-~11013~^~318~^526.^203^11.^~1~^~A~^^^^^^^^^^~04/01/1996~
-~11013~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2002~
-~11013~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~
-~11013~^~417~^85.^3^10.^~1~^^^^^^^^^^^~08/01/1984~
-~11013~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~
-~11013~^~432~^85.^3^10.^~1~^^^^^^^^^^^~12/01/1984~
-~11013~^~435~^85.^0^^~4~^~NC~^^^^^^^^^^~01/01/2001~
-~11013~^~601~^0.^0^^~7~^~Z~^^^^^^^^^^~08/01/1984~
-~11015~^~208~^19.^0^^~4~^~NC~^^^^^^^^^^~12/01/2006~
-~11015~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~12/01/2002~
-~11015~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~12/01/2002~
-~11015~^~268~^81.^0^^~4~^~NC~^^^^^^^^^^~12/01/2006~
-~11015~^~301~^16.^0^^~4~^^^^^^^^^^^~08/01/1984~
-~11015~^~304~^10.^0^^~4~^^^^^^^^^^^~08/01/1984~
-~11015~^~305~^43.^0^^~4~^^^^^^^^^^^~08/01/1984~
-~11015~^~306~^172.^0^^~4~^^^^^^^^^^^~08/01/1984~
-~11015~^~307~^287.^0^^~4~^~BD~^^^^^^^^^^~05/01/2013~
-~11015~^~318~^822.^0^^~4~^~NC~^^^^^^^^^^~12/01/2006~
-~11015~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2002~
-~11015~^~320~^41.^0^^~4~^~NC~^^^^^^^^^^~12/01/2006~
-~11015~^~321~^493.^0^^~4~^~BFSN~^~11012~^^^^^^^^^~12/01/2002~
-~11015~^~322~^0.^0^^~4~^~BFSN~^~11012~^^^^^^^^^~12/01/2002~
-~11015~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~
-~11015~^~334~^0.^0^^~4~^~BFSN~^~11012~^^^^^^^^^~12/01/2002~
-~11015~^~337~^24.^0^^~4~^~BFSN~^~11012~^^^^^^^^^~12/01/2002~
-~11015~^~338~^630.^0^^~4~^~BFSN~^~11012~^^^^^^^^^~12/01/2002~
-~11015~^~417~^96.^0^^~1~^^^^^^^^^^^~08/01/1984~
-~11015~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~
-~11015~^~432~^96.^0^^~1~^^^^^^^^^^^~12/01/2006~
-~11015~^~435~^96.^0^^~4~^~NC~^^^^^^^^^^~12/01/2006~
-~11015~^~601~^0.^0^^~7~^~Z~^^^^^^^^^^~08/01/1984~
-~11018~^~208~^24.^0^^~4~^~NC~^^^^^^^^^^~08/01/1984~
-~11018~^~268~^100.^0^^~4~^^^^^^^^^^^
-~11018~^~301~^25.^43^1.^~1~^^^^^^^^^^^~08/01/1984~
-~11018~^~304~^14.^14^0.^~1~^^^^^^^^^^^~08/01/1984~
-~11018~^~305~^64.^20^2.^~1~^^^^^^^^^^^~08/01/1984~
-~11018~^~306~^253.^15^13.^~1~^^^^^^^^^^^~08/01/1984~
-~11018~^~307~^8.^15^2.^~1~^^^^^^^^^^^~08/01/1984~
-~11018~^~318~^948.^39^50.^~1~^^^^^^^^^^^~08/01/1984~
-~11018~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2002~
-~11018~^~320~^47.^39^2.^~1~^^^^^^^^^^^~06/01/2002~
-~11018~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~
-~11018~^~417~^191.^3^9.^~1~^^^^^^^^^^^~08/01/1984~
-~11018~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~
-~11018~^~432~^191.^3^9.^~1~^^^^^^^^^^^~12/01/1984~
-~11018~^~435~^191.^0^^~4~^~NC~^^^^^^^^^^~01/01/2001~
-~11018~^~601~^0.^0^^~7~^~Z~^^^^^^^^^^~08/01/1984~
-~11019~^~208~^18.^0^^~4~^~NC~^^^^^^^^^^~12/01/2006~
-~11019~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~12/01/2002~
-~11019~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~12/01/2002~
-~11019~^~268~^74.^0^^~4~^~NC~^^^^^^^^^^~12/01/2006~
-~11019~^~301~^18.^38^0.^~6~^~JA~^^^7^9.^26.^37^16.^19.^~4~^~12/01/2002~
-~11019~^~304~^10.^38^0.^~6~^~JA~^^^7^3.^16.^37^9.^11.^~4~^~12/01/2002~
-~11019~^~305~^49.^38^1.^~6~^~JA~^^^7^24.^73.^37^45.^52.^~4~^~12/01/2002~
-~11019~^~306~^172.^38^7.^~6~^~JA~^^^7^69.^292.^37^156.^186.^~4~^~12/01/2002~
-~11019~^~307~^3.^38^0.^~6~^~JA~^^^7^1.^23.^37^1.^4.^~4~^~12/01/2002~
-~11019~^~318~^806.^0^^~4~^~NC~^^^^^^^^^^~12/01/2006~
-~11019~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2002~
-~11019~^~320~^40.^0^^~4~^~NC~^^^^^^^^^^~12/01/2006~
-~11019~^~321~^483.^0^^~4~^~BFSN~^~11012~^^^^^^^^^~12/01/2002~
-~11019~^~322~^0.^0^^~4~^~BFSN~^~11012~^^^^^^^^^~12/01/2002~
-~11019~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~
-~11019~^~334~^0.^0^^~4~^~BFSN~^~11012~^^^^^^^^^~12/01/2002~
-~11019~^~337~^24.^0^^~4~^~BFSN~^~11012~^^^^^^^^^~12/01/2002~
-~11019~^~338~^618.^0^^~4~^~BFSN~^~11012~^^^^^^^^^~12/01/2002~
-~11019~^~417~^135.^6^25.^~1~^^^^^^^^^^^~08/01/1984~
-~11019~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~
-~11019~^~432~^135.^6^25.^~1~^^^^^^^^^^^~12/01/2006~
-~11019~^~435~^135.^0^^~4~^~NC~^^^^^^^^^^~12/01/2006~
-~11019~^~601~^0.^0^^~7~^~Z~^^^^^^^^^^~08/01/1984~
-~11022~^~208~^30.^0^^~4~^~NC~^^^^^^^^^^~08/01/1984~
-~11022~^~268~^126.^0^^~4~^^^^^^^^^^^
-~11022~^~301~^84.^0^^~1~^^^^^^^^^^^~08/01/1984~
-~11022~^~304~^85.^1^^~1~^^^^^^^^^^^~08/01/1984~
-~11022~^~305~^99.^0^^~1~^^^^^^^^^^^~08/01/1984~
-~11022~^~306~^608.^1^^~1~^^^^^^^^^^^~08/01/1984~
-~11022~^~307~^11.^1^^~1~^^^^^^^^^^^~08/01/1984~
-~11022~^~318~^1734.^0^^~1~^^^^^^^^^^^~08/01/1984~
-~11022~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2002~
-~11022~^~320~^87.^0^^~1~^^^^^^^^^^^~06/01/2002~
-~11022~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~
-~11022~^~417~^128.^0^^~4~^^^^^^^^^^^~08/01/1984~
-~11022~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~
-~11022~^~432~^128.^0^^~4~^^^^^^^^^^^~12/01/1984~
-~11022~^~435~^128.^0^^~4~^~NC~^^^^^^^^^^~01/01/2001~
-~11022~^~601~^0.^0^^~7~^~Z~^^^^^^^^^^~08/01/1984~
-~11023~^~208~^34.^0^^~4~^~NC~^^^^^^^^^^~03/01/2007~
-~11023~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2003~
-~11023~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2003~
-~11023~^~268~^144.^0^^~4~^~NC~^^^^^^^^^^~03/01/2007~
-~11023~^~301~^42.^0^^~1~^^^^^^^^^^^~08/01/1984~
-~11023~^~304~^94.^1^^~1~^^^^^^^^^^^~08/01/1984~
-~11023~^~305~^77.^1^^~1~^^^^^^^^^^^~08/01/1984~
-~11023~^~306~^602.^1^^~1~^^^^^^^^^^^~08/01/1984~
-~11023~^~307~^13.^1^^~1~^^^^^^^^^^^~08/01/1984~
-~11023~^~318~^2416.^0^^~4~^~NC~^^^^^^^^^^~03/01/2007~
-~11023~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2002~
-~11023~^~320~^121.^0^^~4~^~NC~^^^^^^^^^^~03/01/2007~
-~11023~^~321~^1450.^0^^~4~^~BFSN~^~11419~^^^^^^^^^~01/01/2003~
-~11023~^~322~^0.^0^^~4~^~BFSN~^~11419~^^^^^^^^^~01/01/2003~
-~11023~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~
-~11023~^~334~^0.^0^^~4~^~BFSN~^~11419~^^^^^^^^^~01/01/2003~
-~11023~^~337~^0.^0^^~4~^~BFSN~^~11419~^^^^^^^^^~01/01/2003~
-~11023~^~338~^2638.^0^^~4~^~BFSN~^~11419~^^^^^^^^^~01/01/2003~
-~11023~^~417~^88.^0^^~1~^^^^^^^^^^^~08/01/1984~
-~11023~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~
-~11023~^~432~^88.^0^^~1~^^^^^^^^^^^~03/01/2007~
-~11023~^~435~^88.^0^^~4~^~NC~^^^^^^^^^^~03/01/2007~
-~11023~^~601~^0.^0^^~7~^~Z~^^^^^^^^^^~08/01/1984~
-~11024~^~208~^17.^0^^~4~^~NC~^^^^^^^^^^~05/01/2003~
-~11024~^~268~^71.^0^^~4~^~NC~^^^^^^^^^^~05/01/2003~
-~11024~^~301~^19.^1^^~1~^^^^^^^^^^^~08/01/1984~
-~11024~^~304~^17.^1^^~1~^^^^^^^^^^^~08/01/1984~
-~11024~^~305~^31.^2^^~1~^^^^^^^^^^^~08/01/1984~
-~11024~^~306~^296.^1^^~1~^^^^^^^^^^^~08/01/1984~
-~11024~^~307~^5.^1^^~1~^^^^^^^^^^^~08/01/1984~
-~11024~^~318~^471.^0^^~1~^~AS~^^^^^^^^^^~05/01/2003~
-~11024~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2002~
-~11024~^~320~^24.^0^^~1~^~AS~^^^^^^^^^^~05/01/2003~
-~11024~^~321~^190.^10^^~1~^~A~^^^1^150.^230.^^^^~2~^~05/01/2003~
-~11024~^~322~^185.^10^^~1~^~A~^^^1^150.^220.^^^^~2~^~05/01/2003~
-~11024~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~
-~11024~^~338~^170.^10^^~1~^~A~^^^1^100.^240.^^^^~2~^~05/01/2003~
-~11024~^~417~^72.^0^^~1~^^^^^^^^^^^~08/01/1984~
-~11024~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~
-~11024~^~432~^72.^0^^~1~^^^^^^^^^^^~05/01/2003~
-~11024~^~435~^72.^0^^~4~^~NC~^^^^^^^^^^~05/01/2003~
-~11024~^~601~^0.^0^^~7~^~Z~^^^^^^^^^^~08/01/1984~
-~11025~^~208~^19.^0^^~4~^~NC~^^^^^^^^^^~03/01/2007~
-~11025~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2003~
-~11025~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2003~
-~11025~^~268~^79.^0^^~4~^^^^^^^^^^^~03/01/2007~
-~11025~^~301~^9.^1^^~1~^^^^^^^^^^^~08/01/1984~
-~11025~^~304~^16.^1^^~1~^^^^^^^^^^^~08/01/1984~
-~11025~^~305~^36.^1^^~1~^^^^^^^^^^^~08/01/1984~
-~11025~^~306~^319.^1^^~1~^^^^^^^^^^^~08/01/1984~
-~11025~^~307~^6.^1^^~1~^^^^^^^^^^^~08/01/1984~
-~11025~^~318~^113.^0^^~4~^~NC~^^^^^^^^^^~05/01/2007~
-~11025~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2002~
-~11025~^~320~^6.^0^^~4~^~NC~^^^^^^^^^^~05/01/2007~
-~11025~^~321~^68.^0^^~4~^~O~^~11478~^^^^^^^^^~05/01/2007~
-~11025~^~322~^0.^0^^~4~^~BFSN~^~11478~^^^^^^^^^~03/01/2007~
-~11025~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~
-~11025~^~334~^0.^0^^~4~^~BFSN~^~11478~^^^^^^^^^~03/01/2007~
-~11025~^~337~^0.^0^^~4~^~BFSN~^~11478~^^^^^^^^^~03/01/2007~
-~11025~^~338~^1323.^0^^~4~^~BFSN~^~11478~^^^^^^^^^~01/01/2003~
-~11025~^~417~^51.^0^^~4~^^^^^^^^^^^~08/01/1984~
-~11025~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~
-~11025~^~432~^51.^0^^~4~^^^^^^^^^^^~03/01/2007~
-~11025~^~435~^51.^0^^~4~^~NC~^^^^^^^^^^~05/01/2007~
-~11025~^~601~^0.^0^^~7~^~Z~^^^^^^^^^^~08/01/1984~
-~11026~^~208~^27.^0^^~4~^~NC~^^^^^^^^^^~01/01/2003~
-~11026~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2003~
-~11026~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2003~
-~11026~^~268~^115.^0^^~4~^~NC~^^^^^^^^^^~01/01/2003~
-~11026~^~301~^13.^0^^~1~^^^^^^^^^^^~08/01/1984~
-~11026~^~304~^3.^1^^~1~^^^^^^^^^^^~08/01/1984~
-~11026~^~305~^59.^0^^~1~^^^^^^^^^^^~08/01/1984~
-~11026~^~306~^533.^0^^~1~^^^^^^^^^^^~08/01/1984~
-~11026~^~307~^4.^1^^~1~^^^^^^^^^^^~08/01/1984~
-~11026~^~318~^20.^0^^~4~^~NC~^^^^^^^^^^~03/01/2007~
-~11026~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2002~
-~11026~^~320~^1.^0^^~4~^~NC~^^^^^^^^^^~03/01/2007~
-~11026~^~321~^12.^0^^~4~^~O~^^^^^^^^^^~01/01/2003~
-~11026~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2003~
-~11026~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~
-~11026~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2003~
-~11026~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2003~
-~11026~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2003~
-~11026~^~417~^7.^0^^~4~^^^^^^^^^^^~08/01/1984~
-~11026~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~
-~11026~^~432~^7.^0^^~4~^^^^^^^^^^^~12/01/1984~
-~11026~^~435~^7.^0^^~4~^~NC~^^^^^^^^^^~03/01/2007~
-~11026~^~601~^0.^0^^~7~^~Z~^^^^^^^^^^~08/01/1984~
-~11026~^~636~^19.^0^^~1~^^^^^^^^^^^~08/01/1984~
-~11027~^~208~^12.^0^^~4~^~NC~^^^^^^^^^^~08/01/1984~
-~11027~^~268~^50.^0^^~4~^^^^^^^^^^^
-~11027~^~301~^12.^0^^~1~^^^^^^^^^^^~08/01/1984~
-~11027~^~304~^3.^0^^~1~^^^^^^^^^^^~08/01/1984~
-~11027~^~305~^20.^0^^~1~^^^^^^^^^^^~08/01/1984~
-~11027~^~306~^533.^7^45.^~1~^^^^^^^^^^^~08/01/1984~
-~11027~^~307~^4.^0^^~1~^^^^^^^^^^^~08/01/1984~
-~11027~^~318~^0.^0^^~1~^^^^^^^^^^^~08/01/1984~
-~11027~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2002~
-~11027~^~320~^0.^0^^~1~^^^^^^^^^^^~06/01/2002~
-~11027~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~
-~11027~^~417~^2.^0^^~4~^^^^^^^^^^^~08/01/1984~
-~11027~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~
-~11027~^~432~^2.^0^^~4~^^^^^^^^^^^~12/01/1984~
-~11027~^~435~^2.^0^^~4~^~NC~^^^^^^^^^^~01/01/2001~
-~11027~^~601~^0.^0^^~7~^~Z~^^^^^^^^^^~08/01/1984~
-~11028~^~208~^19.^0^^~4~^~NC~^^^^^^^^^^~03/01/2007~
-~11028~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2003~
-~11028~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2003~
-~11028~^~268~^79.^0^^~4~^^^^^^^^^^^~03/01/2007~
-~11028~^~301~^8.^7^1.^~1~^^^^^^^^^^^~08/01/1984~
-~11028~^~304~^4.^2^^~1~^^^^^^^^^^^~08/01/1984~
-~11028~^~305~^25.^2^^~1~^^^^^^^^^^^~08/01/1984~
-~11028~^~306~^80.^7^10.^~1~^^^^^^^^^^^~08/01/1984~
-~11028~^~307~^7.^7^0.^~1~^^^^^^^^^^^~08/01/1984~
-~11028~^~318~^13.^0^^~4~^~NC~^^^^^^^^^^~03/01/2007~
-~11028~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2002~
-~11028~^~320~^1.^0^^~4~^~NC~^^^^^^^^^^~03/01/2007~
-~11028~^~321~^8.^0^^~4~^~BFSN~^~11026~^^^^^^^^^~01/01/2003~
-~11028~^~322~^0.^0^^~4~^~BFSN~^~11026~^^^^^^^^^~01/01/2003~
-~11028~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~
-~11028~^~334~^0.^0^^~4~^~BFSN~^~11026~^^^^^^^^^~01/01/2003~
-~11028~^~337~^0.^0^^~4~^~BFSN~^~11026~^^^^^^^^^~01/01/2003~
-~11028~^~338~^0.^0^^~4~^~BFSN~^~11026~^^^^^^^^^~01/01/2003~
-~11028~^~417~^3.^0^^~4~^^^^^^^^^^^~08/01/1984~
-~11028~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~
-~11028~^~432~^3.^0^^~4~^^^^^^^^^^^~03/01/2007~
-~11028~^~435~^3.^0^^~4~^~NC~^^^^^^^^^^~03/01/2007~
-~11028~^~601~^0.^0^^~7~^~Z~^^^^^^^^^^~08/01/1984~
-~11029~^~208~^29.^0^^~4~^~NC~^^^^^^^^^^~08/01/1984~
-~11029~^~268~^121.^0^^~4~^^^^^^^^^^^
-~11029~^~301~^17.^1^^~1~^^^^^^^^^^^~08/01/1984~
-~11029~^~304~^21.^1^^~1~^^^^^^^^^^^~08/01/1984~
-~11029~^~305~^37.^1^^~1~^^^^^^^^^^^~08/01/1984~
-~11029~^~306~^187.^1^^~1~^^^^^^^^^^^~08/01/1984~
-~11029~^~307~^6.^0^^~4~^^^^^^^^^^^~08/01/1984~
-~11029~^~318~^2.^1^^~1~^^^^^^^^^^^~08/01/1984~
-~11029~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2002~
-~11029~^~320~^0.^1^^~1~^^^^^^^^^^^~06/01/2002~
-~11029~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~
-~11029~^~417~^59.^0^^~4~^^^^^^^^^^^~08/01/1984~
-~11029~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~
-~11029~^~432~^59.^0^^~4~^^^^^^^^^^^~12/01/1984~
-~11029~^~435~^59.^0^^~4~^~NC~^^^^^^^^^^~01/01/2001~
-~11029~^~601~^0.^0^^~7~^~Z~^^^^^^^^^^~08/01/1984~
-~11030~^~208~^33.^0^^~4~^~NC~^^^^^^^^^^~08/01/1984~
-~11030~^~268~^138.^0^^~4~^^^^^^^^^^^
-~11030~^~301~^19.^0^^~1~^^^^^^^^^^^~08/01/1984~
-~11030~^~304~^23.^0^^~1~^^^^^^^^^^^~08/01/1984~
-~11030~^~305~^38.^0^^~1~^^^^^^^^^^^~08/01/1984~
-~11030~^~306~^194.^0^^~1~^^^^^^^^^^^~08/01/1984~
-~11030~^~307~^7.^0^^~4~^^^^^^^^^^^~08/01/1984~
-~11030~^~318~^2.^0^^~1~^^^^^^^^^^^~08/01/1984~
-~11030~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2002~
-~11030~^~320~^0.^0^^~1~^^^^^^^^^^^~06/01/2002~
-~11030~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~
-~11030~^~417~^47.^0^^~4~^^^^^^^^^^^~08/01/1984~
-~11030~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~
-~11030~^~432~^47.^0^^~4~^^^^^^^^^^^~12/01/1984~
-~11030~^~435~^47.^0^^~4~^~NC~^^^^^^^^^^~01/01/2001~
-~11030~^~601~^0.^0^^~7~^~Z~^^^^^^^^^^~08/01/1984~
-~11031~^~208~^113.^0^^~4~^~NC~^^^^^^^^^^~03/01/2007~
-~11031~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~12/01/2002~
-~11031~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~12/01/2002~
-~11031~^~268~^473.^0^^~4~^~NC~^^^^^^^^^^~03/01/2007~
-~11031~^~301~^34.^10^^~1~^^^^^^^^^^^~08/01/1984~
-~11031~^~304~^58.^8^^~1~^^^^^^^^^^^~08/01/1984~
-~11031~^~305~^136.^8^^~1~^^^^^^^^^^^~08/01/1984~
-~11031~^~306~^467.^10^^~1~^^^^^^^^^^^~08/01/1984~
-~11031~^~307~^8.^6^^~1~^^^^^^^^^^^~08/01/1984~
-~11031~^~318~^209.^0^^~4~^~NC~^^^^^^^^^^~03/01/2007~
-~11031~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2002~
-~11031~^~320~^10.^0^^~4~^~NC~^^^^^^^^^^~03/01/2007~
-~11031~^~321~^126.^0^^~4~^~BFSN~^~11038~^^^^^^^^^~03/01/2007~
-~11031~^~322~^0.^0^^~4~^~BFSN~^~11038~^^^^^^^^^~12/01/2002~
-~11031~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~
-~11031~^~334~^0.^0^^~4~^~BFSN~^~11038~^^^^^^^^^~12/01/2002~
-~11031~^~337~^0.^0^^~4~^~BFSN~^~11038~^^^^^^^^^~12/01/2002~
-~11031~^~338~^0.^0^^~4~^~BFSN~^~11038~^^^^^^^^^~12/01/2002~
-~11031~^~417~^34.^0^^~4~^^^^^^^^^^^~08/01/1984~
-~11031~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~
-~11031~^~432~^34.^0^^~4~^^^^^^^^^^^~03/01/2007~
-~11031~^~435~^34.^0^^~4~^~NC~^^^^^^^^^^~03/01/2007~
-~11031~^~601~^0.^0^^~7~^~Z~^^^^^^^^^^~08/01/1984~
-~11032~^~208~^123.^0^^~4~^~NC~^^^^^^^^^^~08/01/1984~
-~11032~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~12/01/2002~
-~11032~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~12/01/2002~
-~11032~^~268~^515.^0^^~4~^^^^^^^^^^^~03/01/2007~
-~11032~^~301~^32.^12^1.^~1~^^^^^^^^^^^~08/01/1984~
-~11032~^~304~^74.^12^1.^~1~^^^^^^^^^^^~08/01/1984~
-~11032~^~305~^130.^12^5.^~1~^^^^^^^^^^^~08/01/1984~
-~11032~^~306~^570.^12^11.^~1~^^^^^^^^^^^~08/01/1984~
-~11032~^~307~^17.^4^0.^~1~^^^^^^^^^^^~08/01/1984~
-~11032~^~318~^303.^0^^~4~^~NC~^^^^^^^^^^~05/01/2007~
-~11032~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2002~
-~11032~^~320~^15.^0^^~4~^~NC~^^^^^^^^^^~05/01/2007~
-~11032~^~321~^182.^0^^~4~^~O~^^^^^^^^^^~05/01/2007~
-~11032~^~322~^0.^0^^~4~^~BFSY~^~11031~^^^^^^^^^~12/01/2002~
-~11032~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~
-~11032~^~334~^0.^0^^~4~^~BFSY~^~11031~^^^^^^^^^~12/01/2002~
-~11032~^~337~^0.^0^^~4~^~BFSY~^~11031~^^^^^^^^^~12/01/2002~
-~11032~^~338~^0.^0^^~4~^~BFSY~^~11031~^^^^^^^^^~12/01/2002~
-~11032~^~417~^26.^0^^~4~^^^^^^^^^^^~08/01/1984~
-~11032~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~
-~11032~^~432~^26.^0^^~4~^^^^^^^^^^^~03/01/2007~
-~11032~^~435~^26.^0^^~4~^~NC~^^^^^^^^^^~05/01/2007~
-~11032~^~601~^0.^0^^~7~^~Z~^^^^^^^^^^~08/01/1984~
-~11033~^~208~^71.^0^^~4~^~NC~^^^^^^^^^^~04/01/1996~
-~11033~^~268~^297.^0^^~4~^^^^^^^^^^^
-~11033~^~301~^28.^115^0.^~1~^~A~^^^^^^^^^^~04/01/1996~
-~11033~^~304~^34.^82^0.^~1~^^^^^^^^^^^~08/01/1984~
-~11033~^~305~^71.^120^1.^~1~^^^^^^^^^^^~08/01/1984~
-~11033~^~306~^285.^106^7.^~1~^~A~^^^^^^^^^^~04/01/1996~
-~11033~^~307~^252.^37^8.^~1~^~A~^^^^^^^^^^~04/01/1996~
-~11033~^~318~^150.^122^8.^~1~^~A~^^^^^^^^^^~04/01/1996~
-~11033~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2002~
-~11033~^~320~^8.^122^0.^~1~^~A~^^^^^^^^^^~06/01/2002~
-~11033~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~
-~11033~^~417~^16.^0^^~4~^^^^^^^^^^^~08/01/1984~
-~11033~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~
-~11033~^~432~^16.^0^^~4~^^^^^^^^^^^~12/01/1984~
-~11033~^~435~^16.^0^^~4~^~NC~^^^^^^^^^^~01/01/2001~
-~11033~^~601~^0.^0^^~7~^~Z~^^^^^^^^^^~08/01/1984~
-~11037~^~208~^106.^0^^~4~^~NC~^^^^^^^^^^~03/01/2007~
-~11037~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~12/01/2002~
-~11037~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~12/01/2002~
-~11037~^~268~^444.^0^^~4~^^^^^^^^^^^~03/01/2007~
-~11037~^~301~^24.^22^1.^~1~^^^^^^^^^^^~08/01/1984~
-~11037~^~304~^38.^8^3.^~1~^^^^^^^^^^^~08/01/1984~
-~11037~^~305~^74.^10^4.^~1~^^^^^^^^^^^~08/01/1984~
-~11037~^~306~^478.^8^20.^~1~^^^^^^^^^^^~08/01/1984~
-~11037~^~307~^58.^8^18.^~1~^^^^^^^^^^^~08/01/1984~
-~11037~^~318~^223.^0^^~4~^~NC~^^^^^^^^^^~03/01/2007~
-~11037~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2002~
-~11037~^~320~^11.^0^^~4~^~NC~^^^^^^^^^^~03/01/2007~
-~11037~^~321~^134.^0^^~4~^~O~^^^^^^^^^^~12/01/2002~
-~11037~^~322~^0.^0^^~4~^~BFSN~^~11038~^^^^^^^^^~12/01/2002~
-~11037~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~
-~11037~^~334~^0.^0^^~4~^~BFSN~^~11038~^^^^^^^^^~12/01/2002~
-~11037~^~337~^0.^0^^~4~^~BFSN~^~11038~^^^^^^^^^~12/01/2002~
-~11037~^~338~^0.^0^^~4~^~BFSN~^~11038~^^^^^^^^^~12/01/2002~
-~11037~^~417~^32.^0^^~4~^^^^^^^^^^^~08/01/1984~
-~11037~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~
-~11037~^~432~^32.^0^^~4~^^^^^^^^^^^~03/01/2007~
-~11037~^~435~^32.^0^^~4~^~NC~^^^^^^^^^^~03/01/2007~
-~11037~^~601~^0.^0^^~7~^~Z~^^^^^^^^^^~08/01/1984~
-~11038~^~208~^103.^0^^~4~^~NC~^^^^^^^^^^~03/01/2007~
-~11038~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~12/01/2002~
-~11038~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~12/01/2002~
-~11038~^~268~^429.^0^^~4~^~NC~^^^^^^^^^^~03/01/2007~
-~11038~^~301~^30.^47^0.^~1~^^^^5^20.^39.^35^28.^31.^~2, 3~^~12/01/2002~
-~11038~^~304~^42.^48^1.^~1~^^^^5^26.^57.^31^40.^44.^~2, 3~^~12/01/2002~
-~11038~^~305~^97.^47^2.^~1~^^^^5^69.^128.^27^92.^100.^~2, 3~^~12/01/2002~
-~11038~^~306~^304.^48^11.^~1~^^^^5^74.^440.^39^279.^327.^~2, 3~^~12/01/2002~
-~11038~^~307~^69.^48^3.^~1~^^^^5^26.^147.^37^61.^77.^~2, 3~^~12/01/2002~
-~11038~^~318~^190.^0^^~4~^~NC~^^^^^^^^^^~03/01/2007~
-~11038~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2002~
-~11038~^~320~^10.^0^^~4~^~NC~^^^^^^^^^^~03/01/2007~
-~11038~^~321~^114.^0^^~4~^~O~^^^^^^^^^^~12/01/2002~
-~11038~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~12/01/2002~
-~11038~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~
-~11038~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~12/01/2002~
-~11038~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~12/01/2002~
-~11038~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~12/01/2002~
-~11038~^~417~^21.^0^^~4~^^^^^^^^^^^~08/01/1984~
-~11038~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~
-~11038~^~432~^21.^0^^~4~^^^^^^^^^^^~03/01/2007~
-~11038~^~435~^21.^0^^~4~^~NC~^^^^^^^^^^~03/01/2007~
-~11038~^~601~^0.^0^^~7~^~Z~^^^^^^^^^^~08/01/1984~
-~11039~^~208~^132.^0^^~4~^~NC~^^^^^^^^^^~03/01/2010~
-~11039~^~268~^554.^0^^~4~^~NC~^^^^^^^^^^~03/01/2010~
-~11039~^~301~^35.^66^1.^~1~^^^^^^^^^^^~08/01/1984~
-~11039~^~304~^50.^20^2.^~1~^^^^^^^^^^^~08/01/1984~
-~11039~^~305~^104.^26^2.^~1~^^^^^^^^^^^~08/01/1984~
-~11039~^~306~^452.^29^22.^~1~^^^^^^^^^^^~08/01/1984~
-~11039~^~307~^52.^28^9.^~1~^^^^^^^^^^^~08/01/1984~
-~11039~^~318~^189.^55^14.^~1~^^^^^^^^^^^~08/01/1984~
-~11039~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2002~
-~11039~^~320~^9.^55^0.^~1~^^^^^^^^^^^~06/01/2002~
-~11039~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~
-~11039~^~417~^28.^0^^~4~^^^^^^^^^^^~08/01/1984~
-~11039~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~
-~11039~^~432~^28.^0^^~4~^^^^^^^^^^^~12/01/1984~
-~11039~^~435~^28.^0^^~4~^~NC~^^^^^^^^^^~03/01/2010~
-~11039~^~601~^0.^0^^~7~^~Z~^^^^^^^^^^~08/01/1984~
-~11040~^~208~^105.^0^^~4~^~NC~^^^^^^^^^^~08/01/1984~
-~11040~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~12/01/2002~
-~11040~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~12/01/2002~
-~11040~^~268~^439.^0^^~4~^^^^^^^^^^^~03/01/2007~
-~11040~^~301~^28.^6^1.^~1~^^^^^^^^^^^~08/01/1984~
-~11040~^~304~^56.^6^0.^~1~^^^^^^^^^^^~08/01/1984~
-~11040~^~305~^112.^6^2.^~1~^^^^^^^^^^^~08/01/1984~
-~11040~^~306~^411.^6^24.^~1~^^^^^^^^^^^~08/01/1984~
-~11040~^~307~^29.^6^5.^~1~^^^^^^^^^^^~08/01/1984~
-~11040~^~318~^167.^0^^~4~^~NC~^^^^^^^^^^~03/01/2007~
-~11040~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2002~
-~11040~^~320~^8.^0^^~4~^~NC~^^^^^^^^^^~03/01/2007~
-~11040~^~321~^100.^0^^~4~^~O~^^^^^^^^^^~12/01/2002~
-~11040~^~322~^0.^0^^~4~^~BFSN~^~11038~^^^^^^^^^~12/01/2002~
-~11040~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~
-~11040~^~334~^0.^0^^~4~^~BFSN~^~11038~^^^^^^^^^~12/01/2002~
-~11040~^~337~^0.^0^^~4~^~BFSN~^~11038~^^^^^^^^^~12/01/2002~
-~11040~^~338~^0.^0^^~4~^~BFSN~^~11038~^^^^^^^^^~12/01/2002~
-~11040~^~417~^16.^0^^~4~^^^^^^^^^^^~08/01/1984~
-~11040~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~
-~11040~^~432~^16.^0^^~4~^^^^^^^^^^^~03/01/2007~
-~11040~^~435~^16.^0^^~4~^~NC~^^^^^^^^^^~03/01/2007~
-~11040~^~601~^0.^0^^~7~^~Z~^^^^^^^^^^~08/01/1984~
-~11043~^~208~^30.^0^^~4~^~NC~^^^^^^^^^^~03/01/2007~
-~11043~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2003~
-~11043~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2003~
-~11043~^~268~^126.^0^^~4~^~NC~^^^^^^^^^^~03/01/2007~
-~11043~^~301~^13.^8^1.^~1~^^^^^^^^^^^~08/01/1984~
-~11043~^~304~^21.^8^3.^~1~^^^^^^^^^^^~08/01/1984~
-~11043~^~305~^54.^8^8.^~1~^^^^^^^^^^^~08/01/1984~
-~11043~^~306~^149.^8^23.^~1~^^^^^^^^^^^~08/01/1984~
-~11043~^~307~^6.^4^1.^~1~^^^^^^^^^^^~08/01/1984~
-~11043~^~318~^21.^0^^~4~^~NC~^^^^^^^^^^~03/01/2007~
-~11043~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2002~
-~11043~^~320~^1.^0^^~4~^~NC~^^^^^^^^^^~03/01/2007~
-~11043~^~321~^6.^0^^~4~^~O~^^^^^^^^^^~01/01/2003~
-~11043~^~322~^6.^0^^~4~^~O~^^^^^^^^^^~01/01/2003~
-~11043~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~
-~11043~^~334~^6.^0^^~4~^~O~^^^^^^^^^^~01/01/2003~
-~11043~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2003~
-~11043~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2003~
-~11043~^~417~^61.^16^6.^~1~^^^^^^^^^^^~08/01/1984~
-~11043~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~
-~11043~^~432~^61.^16^6.^~1~^^^^^^^^^^^~03/01/2007~
-~11043~^~435~^61.^0^^~4~^~NC~^^^^^^^^^^~03/01/2007~
-~11043~^~601~^0.^0^^~7~^~Z~^^^^^^^^^^~08/01/1984~
-~11043~^~636~^15.^0^^~1~^^^^^^^^^^^~08/01/1984~
-~11044~^~208~^21.^0^^~4~^~NC~^^^^^^^^^^~03/01/2007~
-~11044~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2003~
-~11044~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2003~
-~11044~^~268~^88.^0^^~4~^^^^^^^^^^^~03/01/2007~
-~11044~^~301~^12.^0^^~1~^^^^^^^^^^^~08/01/1984~
-~11044~^~304~^14.^1^^~1~^^^^^^^^^^^~08/01/1984~
-~11044~^~305~^28.^0^^~1~^^^^^^^^^^^~08/01/1984~
-~11044~^~306~^101.^1^^~1~^^^^^^^^^^^~08/01/1984~
-~11044~^~307~^10.^1^^~1~^^^^^^^^^^^~08/01/1984~
-~11044~^~318~^13.^0^^~4~^~NC~^^^^^^^^^^~03/01/2007~
-~11044~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2002~
-~11044~^~320~^1.^0^^~4~^~NC~^^^^^^^^^^~03/01/2007~
-~11044~^~321~^4.^0^^~4~^~BFSY~^~11043~^^^^^^^^^~01/01/2003~
-~11044~^~322~^4.^0^^~4~^~BFSY~^~11043~^^^^^^^^^~01/01/2003~
-~11044~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~
-~11044~^~334~^4.^0^^~4~^~BFSY~^~11043~^^^^^^^^^~01/01/2003~
-~11044~^~337~^0.^0^^~4~^~BFSY~^~11043~^^^^^^^^^~01/01/2003~
-~11044~^~338~^0.^0^^~4~^~BFSY~^~11043~^^^^^^^^^~01/01/2003~
-~11044~^~417~^29.^0^^~4~^^^^^^^^^^^~08/01/1984~
-~11044~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~
-~11044~^~432~^29.^0^^~4~^^^^^^^^^^^~03/01/2007~
-~11044~^~435~^29.^0^^~4~^~NC~^^^^^^^^^^~03/01/2007~
-~11044~^~601~^0.^0^^~7~^~Z~^^^^^^^^^^~08/01/1984~
-~11045~^~208~^50.^0^^~4~^~NC~^^^^^^^^^^~08/01/1984~
-~11045~^~268~^209.^0^^~4~^^^^^^^^^^^
-~11045~^~301~^13.^1^^~1~^^^^^^^^^^^~08/01/1984~
-~11045~^~304~^33.^0^^~4~^^^^^^^^^^^~08/01/1984~
-~11045~^~305~^79.^0^^~4~^^^^^^^^^^^~08/01/1984~
-~11045~^~306~^219.^0^^~4~^^^^^^^^^^^~08/01/1984~
-~11045~^~307~^9.^0^^~4~^^^^^^^^^^^~08/01/1984~
-~11045~^~318~^31.^0^^~4~^^^^^^^^^^^~08/01/1984~
-~11045~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2002~
-~11045~^~320~^2.^0^^~4~^^^^^^^^^^^~06/01/2002~
-~11045~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~
-~11045~^~417~^70.^0^^~4~^^^^^^^^^^^~08/01/1984~
-~11045~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~
-~11045~^~432~^70.^0^^~4~^^^^^^^^^^^~12/01/1984~
-~11045~^~435~^70.^0^^~4~^~NC~^^^^^^^^^^~01/01/2001~
-~11045~^~601~^0.^0^^~7~^~Z~^^^^^^^^^^~08/01/1984~
-~11046~^~208~^67.^0^^~4~^~NC~^^^^^^^^^^~08/01/1984~
-~11046~^~268~^280.^0^^~4~^^^^^^^^^^^
-~11046~^~301~^15.^1^^~1~^^^^^^^^^^^~08/01/1984~
-~11046~^~304~^101.^2^^~1~^^^^^^^^^^^~08/01/1984~
-~11046~^~305~^100.^2^^~1~^^^^^^^^^^^~08/01/1984~
-~11046~^~306~^307.^2^^~1~^^^^^^^^^^^~08/01/1984~
-~11046~^~307~^13.^0^^~4~^^^^^^^^^^^~08/01/1984~
-~11046~^~318~^4.^2^^~1~^^^^^^^^^^^~08/01/1984~
-~11046~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2002~
-~11046~^~320~^0.^2^^~1~^^^^^^^^^^^~06/01/2002~
-~11046~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~
-~11046~^~417~^132.^0^^~4~^^^^^^^^^^^~08/01/1984~
-~11046~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~
-~11046~^~432~^132.^0^^~4~^^^^^^^^^^^~12/01/1984~
-~11046~^~435~^132.^0^^~4~^~NC~^^^^^^^^^^~01/01/2001~
-~11046~^~601~^0.^0^^~7~^~Z~^^^^^^^^^^~08/01/1984~
-~11047~^~208~^78.^0^^~4~^~NC~^^^^^^^^^^~06/01/2008~
-~11047~^~268~^325.^0^^~4~^~NC~^^^^^^^^^^~06/01/2008~
-~11047~^~301~^16.^0^^~1~^^^^^^^^^^^~08/01/1984~
-~11047~^~304~^111.^0^^~1~^^^^^^^^^^^~08/01/1984~
-~11047~^~305~^103.^0^^~1~^^^^^^^^^^^~08/01/1984~
-~11047~^~306~^317.^0^^~1~^^^^^^^^^^^~08/01/1984~
-~11047~^~307~^14.^0^^~4~^^^^^^^^^^^~08/01/1984~
-~11047~^~318~^4.^0^^~1~^^^^^^^^^^^~08/01/1984~
-~11047~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2002~
-~11047~^~320~^0.^0^^~1~^~AS~^^^^^^^^^^~06/01/2008~
-~11047~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~
-~11047~^~417~^106.^0^^~4~^^^^^^^^^^^~08/01/1984~
-~11047~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~
-~11047~^~432~^106.^0^^~4~^^^^^^^^^^^~12/01/1984~
-~11047~^~435~^106.^0^^~4~^~NC~^^^^^^^^^^~06/01/2008~
-~11047~^~601~^0.^0^^~7~^~Z~^^^^^^^^^^~08/01/1984~
-~11048~^~208~^170.^0^^~4~^~NC~^^^^^^^^^^~08/01/1984~
-~11048~^~268~^711.^0^^~4~^^^^^^^^^^^
-~11048~^~301~^58.^1^^~1~^^^^^^^^^^^~08/01/1984~
-~11048~^~304~^60.^0^^~4~^^^^^^^^^^^~08/01/1984~
-~11048~^~305~^117.^0^^~4~^^^^^^^^^^^~08/01/1984~
-~11048~^~306~^756.^0^^~4~^^^^^^^^^^^~08/01/1984~
-~11048~^~307~^92.^0^^~4~^^^^^^^^^^^~08/01/1984~
-~11048~^~318~^0.^1^^~1~^^^^^^^^^^^~08/01/1984~
-~11048~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2002~
-~11048~^~320~^0.^1^^~1~^^^^^^^^^^^~06/01/2002~
-~11048~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~
-~11048~^~417~^50.^0^^~4~^^^^^^^^^^^~08/01/1984~
-~11048~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~
-~11048~^~432~^50.^0^^~4~^^^^^^^^^^^~12/01/1984~
-~11048~^~435~^50.^0^^~4~^~NC~^^^^^^^^^^~01/01/2001~
-~11048~^~601~^0.^0^^~7~^~Z~^^^^^^^^^^~08/01/1984~
-~11049~^~208~^162.^0^^~4~^~NC~^^^^^^^^^^~08/01/1984~
-~11049~^~268~^678.^0^^~4~^~NC~^^^^^^^^^^~08/01/2015~
-~11049~^~301~^52.^0^^~1~^^^^^^^^^^^~08/01/1984~
-~11049~^~304~^54.^0^^~4~^^^^^^^^^^^~08/01/1984~
-~11049~^~305~^100.^0^^~4~^^^^^^^^^^^~08/01/1984~
-~11049~^~306~^646.^0^^~4~^^^^^^^^^^^~08/01/1984~
-~11049~^~307~^83.^0^^~4~^^^^^^^^^^^~08/01/1984~
-~11049~^~318~^0.^0^^~1~^^^^^^^^^^^~08/01/1984~
-~11049~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2002~
-~11049~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~
-~11049~^~417~^34.^0^^~4~^^^^^^^^^^^~08/01/1984~
-~11049~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~
-~11049~^~432~^34.^0^^~4~^^^^^^^^^^^~12/01/1984~
-~11049~^~435~^34.^0^^~4~^~NC~^^^^^^^^^^~01/01/2001~
-~11049~^~601~^0.^0^^~7~^~Z~^^^^^^^^^^~08/01/1984~
-~11050~^~208~^30.^0^^~4~^~NC~^^^^^^^^^^~03/01/2007~
-~11050~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~
-~11050~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~
-~11050~^~268~^126.^0^^~4~^^^^^^^^^^^~03/01/2007~
-~11050~^~301~^29.^12^1.^~1~^^^^^^^^^^^~08/01/1984~
-~11050~^~304~^15.^0^^~4~^^^^^^^^^^^~08/01/1984~
-~11050~^~305~^30.^0^^~4~^^^^^^^^^^^~08/01/1984~
-~11050~^~306~^109.^12^4.^~1~^^^^^^^^^^^~08/01/1984~
-~11050~^~307~^334.^12^16.^~1~^^^^^^^^^^^~08/01/1984~
-~11050~^~318~^228.^0^^~4~^~NC~^^^^^^^^^^~03/01/2007~
-~11050~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2002~
-~11050~^~320~^11.^0^^~4~^~NC~^^^^^^^^^^~03/01/2007~
-~11050~^~321~^137.^0^^~4~^~O~^^^^^^^^^^~02/01/2003~
-~11050~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~
-~11050~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~
-~11050~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~
-~11050~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~
-~11050~^~338~^331.^0^^~4~^~O~^^^^^^^^^^~02/01/2003~
-~11050~^~417~^18.^0^^~4~^^^^^^^^^^^~08/01/1984~
-~11050~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~
-~11050~^~432~^18.^0^^~4~^^^^^^^^^^^~03/01/2007~
-~11050~^~435~^18.^0^^~4~^~NC~^^^^^^^^^^~03/01/2007~
-~11050~^~601~^0.^0^^~7~^~Z~^^^^^^^^^^~08/01/1984~
-~11052~^~208~^31.^0^^~4~^~NC~^^^^^^^^^^~05/01/2009~
-~11052~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~08/01/2002~
-~11052~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~08/01/2002~
-~11052~^~268~^131.^0^^~4~^~NC~^^^^^^^^^^~05/01/2009~
-~11052~^~301~^37.^153^1.^~6~^~JA~^^^2^37.^49.^148^34.^39.^~2, 3~^~04/01/2009~
-~11052~^~304~^25.^151^0.^~6~^~JA~^^^2^18.^28.^148^23.^26.^~2, 3~^~04/01/2009~
-~11052~^~305~^38.^140^0.^~6~^~JA~^^^2^36.^45.^136^36.^39.^~2, 3~^~04/01/2009~
-~11052~^~306~^211.^154^4.^~6~^~JA~^^^2^209.^300.^150^201.^219.^~2, 3~^~04/01/2009~
-~11052~^~307~^6.^154^0.^~6~^~JA~^^^2^2.^8.^149^5.^6.^~1, 2, 3~^~04/01/2009~
-~11052~^~318~^690.^0^^~1~^~AS~^^^^^^^^^^~05/01/2009~
-~11052~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2002~
-~11052~^~320~^35.^0^^~1~^~AS~^^^^^^^^^^~05/01/2009~
-~11052~^~321~^379.^77^48.^~1~^~A~^^^1^252.^510.^4^243.^515.^~4~^~08/01/2002~
-~11052~^~322~^69.^70^10.^~1~^~A~^^^1^44.^90.^3^37.^101.^~4~^~08/01/2002~
-~11052~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~
-~11052~^~334~^0.^21^0.^~1~^~A~^^^1^0.^0.^2^0.^0.^~4~^~08/01/2002~
-~11052~^~337~^0.^6^0.^~1~^~A~^^^1^0.^0.^1^0.^0.^~4~^~08/01/2002~
-~11052~^~338~^640.^6^50.^~1~^~A~^^^1^590.^690.^1^4.^1275.^~4~^~08/01/2002~
-~11052~^~417~^33.^8^2.^~6~^~JA~^^^2^19.^37.^5^25.^39.^~2, 3~^~04/01/2009~
-~11052~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~
-~11052~^~432~^33.^8^2.^~6~^~JA~^^^2^19.^37.^5^25.^39.^^~05/01/2009~
-~11052~^~435~^33.^0^^~4~^~NC~^^^^^^^^^^~05/01/2009~
-~11052~^~601~^0.^0^^~7~^~Z~^^^^^^^^^^~08/01/1984~
-~11053~^~208~^35.^0^^~4~^~NC~^^^^^^^^^^~01/01/2007~
-~11053~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~08/01/2002~
-~11053~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~08/01/2002~
-~11053~^~268~^147.^0^^~4~^~NC~^^^^^^^^^^~01/01/2007~
-~11053~^~301~^44.^27^1.^~1~^^^^4^28.^72.^26^40.^48.^~4~^~08/01/2002~
-~11053~^~304~^18.^28^0.^~1~^^^^4^7.^25.^27^16.^20.^~4~^~08/01/2002~
-~11053~^~305~^29.^27^1.^~1~^^^^4^19.^42.^26^26.^31.^~4~^~08/01/2002~
-~11053~^~306~^146.^28^8.^~1~^^^^4^56.^250.^27^127.^163.^~4~^~08/01/2002~
-~11053~^~307~^1.^28^0.^~1~^^^^4^0.^3.^27^0.^0.^~4~^~08/01/2002~
-~11053~^~318~^633.^0^^~4~^~NC~^^^^^^^^^^~09/01/2015~
-~11053~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2002~
-~11053~^~320~^32.^0^^~4~^~NC~^^^^^^^^^^~09/01/2015~
-~11053~^~321~^380.^0^^~4~^~BFSY~^~11052~^^^^^^^^^~09/01/2015~
-~11053~^~322~^0.^0^^~4~^~NR~^^^^^^^^^^~08/01/2002~
-~11053~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~
-~11053~^~334~^0.^0^^~4~^~BFSY~^~11052~^^^^^^^^^~08/01/2002~
-~11053~^~337~^0.^0^^~4~^~BFSY~^~11052~^^^^^^^^^~08/01/2002~
-~11053~^~338~^641.^0^^~4~^~BFSY~^~11052~^^^^^^^^^~09/01/2015~
-~11053~^~417~^33.^0^^~1~^^^^^^^^^^^~08/01/1984~
-~11053~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~
-~11053~^~432~^33.^0^^~1~^^^^^^^^^^^~01/01/2007~
-~11053~^~435~^33.^0^^~4~^~NC~^^^^^^^^^^~01/01/2007~
-~11053~^~601~^0.^0^^~7~^~Z~^^^^^^^^^^~08/01/1984~
-~11054~^~208~^15.^0^^~4~^~NC~^^^^^^^^^^~04/01/1996~
-~11054~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2011~
-~11054~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2011~
-~11054~^~268~^62.^0^^~4~^~NC~^^^^^^^^^^~04/01/2011~
-~11054~^~301~^29.^53^0.^~6~^~JA~^^^4^15.^46.^36^27.^30.^~2, 3~^~04/01/2011~
-~11054~^~304~^13.^24^0.^~6~^~JA~^^^2^8.^16.^20^11.^13.^~2, 3~^~04/01/2011~
-~11054~^~305~^18.^24^0.^~6~^~JA~^^^2^13.^22.^22^17.^19.^~2, 3~^~04/01/2011~
-~11054~^~306~^92.^32^1.^~6~^~JA~^^^4^48.^119.^17^88.^95.^~2, 3~^~04/01/2011~
-~11054~^~307~^192.^52^13.^~6~^~JA~^^^4^2.^369.^34^165.^218.^~2, 3~^~04/01/2011~
-~11054~^~318~^263.^0^^~4~^~NC~^^^^^^^^^^~08/01/2015~
-~11054~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2002~
-~11054~^~320~^13.^0^^~4~^~NC~^^^^^^^^^^~08/01/2015~
-~11054~^~321~^91.^0^^~4~^~BFSN~^~11056~^^^^^^^^^~08/01/2015~
-~11054~^~322~^116.^0^^~4~^~BFSN~^~11056~^^^^^^^^^~08/01/2015~
-~11054~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~
-~11054~^~334~^18.^0^^~4~^~BFSN~^~11056~^^^^^^^^^~08/01/2015~
-~11054~^~337~^0.^0^^~4~^~BFSN~^~11056~^^^^^^^^^~04/01/2011~
-~11054~^~338~^338.^0^^~4~^~BFSN~^~11056~^^^^^^^^^~08/01/2015~
-~11054~^~417~^26.^3^^~1~^~A~^^^^^^^^^^~04/01/2011~
-~11054~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~
-~11054~^~432~^26.^3^^~1~^~A~^^^^^^^^^^~04/01/2011~
-~11054~^~435~^26.^0^^~4~^~NC~^^^^^^^^^^~04/01/2011~
-~11054~^~601~^0.^0^^~7~^~Z~^^^^^^^^^^~08/01/1984~
-~11056~^~208~^21.^0^^~4~^~NC~^^^^^^^^^^~03/01/2016~
-~11056~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2006~
-~11056~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2006~
-~11056~^~268~^88.^0^^~4~^~NC~^^^^^^^^^^~03/01/2016~
-~11056~^~301~^37.^16^1.^~1~^~A~^^^2^26.^44.^6^33.^39.^~2, 3~^~03/01/2016~
-~11056~^~304~^13.^16^0.^~1~^~A~^^^2^11.^14.^6^12.^13.^~2, 3~^~04/01/2011~
-~11056~^~305~^22.^16^0.^~1~^~A~^^^2^16.^27.^6^20.^22.^~2, 3~^~03/01/2016~
-~11056~^~306~^96.^12^3.^~1~^~A~^^^1^76.^114.^5^86.^104.^~2, 3~^~08/01/2014~
-~11056~^~307~^268.^12^11.^~1~^~A~^^^1^183.^328.^5^238.^297.^~2, 3~^~03/01/2016~
-~11056~^~318~^353.^0^^~1~^~AS~^^^^^^^^^^~04/01/2011~
-~11056~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2002~
-~11056~^~320~^18.^0^^~1~^~AS~^^^^^^^^^^~04/01/2011~
-~11056~^~321~^122.^2^^~1~^~A~^^^1^64.^179.^1^^^^~04/01/2011~
-~11056~^~322~^156.^2^^~1~^~A~^^^1^141.^171.^1^^^^~04/01/2011~
-~11056~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~
-~11056~^~334~^24.^2^^~1~^~A~^^^1^11.^38.^1^^^~1~^~04/01/2011~
-~11056~^~337~^0.^0^^~4~^~BFSN~^~11061~^^^^^^^^^~04/01/2011~
-~11056~^~338~^384.^0^^~4~^~BFSN~^~11061~^^^^^^^^^~03/01/2016~
-~11056~^~417~^24.^6^2.^~1~^~A~^^^2^17.^38.^1^3.^44.^~2, 3~^~03/01/2016~
-~11056~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~08/01/2007~
-~11056~^~432~^24.^6^2.^~1~^~A~^^^2^17.^38.^1^3.^44.^~2, 3~^~03/01/2016~
-~11056~^~435~^24.^0^^~4~^~NC~^^^^^^^^^^~03/01/2016~
-~11056~^~601~^0.^0^^~7~^~Z~^^^^^^^^^^~08/01/1984~
-~11058~^~208~^16.^0^^~4~^~NC~^^^^^^^^^^~08/01/1984~
-~11058~^~268~^67.^0^^~4~^^^^^^^^^^^
-~11058~^~301~^22.^22^1.^~1~^^^^^^^^^^^~08/01/1984~
-~11058~^~304~^13.^22^0.^~1~^^^^^^^^^^^~08/01/1984~
-~11058~^~305~^16.^22^0.^~1~^^^^^^^^^^^~08/01/1984~
-~11058~^~306~^93.^22^2.^~1~^^^^^^^^^^^~08/01/1984~
-~11058~^~307~^373.^22^6.^~1~^^^^^^^^^^^~08/01/1984~
-~11058~^~318~^525.^22^20.^~1~^^^^^^^^^^^~08/01/1984~
-~11058~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2002~
-~11058~^~320~^26.^22^1.^~1~^^^^^^^^^^^~06/01/2002~
-~11058~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~
-~11058~^~417~^18.^0^^~4~^^^^^^^^^^^~08/01/1984~
-~11058~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~
-~11058~^~432~^18.^0^^~4~^^^^^^^^^^^~12/01/1984~
-~11058~^~435~^18.^0^^~4~^~NC~^^^^^^^^^^~01/01/2001~
-~11058~^~601~^0.^0^^~7~^~Z~^^^^^^^^^^~08/01/1984~
-~11060~^~208~^33.^0^^~4~^~NC~^^^^^^^^^^~01/01/2017~
-~11060~^~268~^138.^0^^~4~^~NC~^^^^^^^^^^~01/01/2017~
-~11060~^~301~^42.^102^1.^~6~^~JA~^^^2^42.^51.^98^39.^45.^~2, 3~^~03/01/2008~
-~11060~^~304~^22.^31^0.^~6~^~JA~^^^2^21.^24.^26^21.^22.^~2, 3~^~03/01/2008~
-~11060~^~305~^32.^42^1.^~6~^~JA~^^^2^32.^35.^38^28.^35.^~2, 3~^~03/01/2008~
-~11060~^~306~^186.^30^11.^~6~^~JA~^^^2^169.^193.^26^162.^208.^~2, 3~^~03/01/2008~
-~11060~^~307~^3.^37^0.^~6~^~JA~^^^2^3.^9.^35^2.^4.^~2, 3~^~03/01/2008~
-~11060~^~318~^547.^0^^~4~^~NC~^^^^^^^^^^~03/01/2008~
-~11060~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2002~
-~11060~^~320~^27.^0^^~4~^~NC~^^^^^^^^^^~03/01/2008~
-~11060~^~321~^292.^5^^~1~^~A~^^^^^^^^^^~03/01/2008~
-~11060~^~322~^72.^0^^~4~^~BFSN~^~11052~^^^^^^^^^~03/01/2008~
-~11060~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~
-~11060~^~334~^0.^0^^~4~^~BFSN~^~11052~^^^^^^^^^~03/01/2008~
-~11060~^~337~^0.^0^^~4~^~BFSN~^~11052~^^^^^^^^^~03/01/2008~
-~11060~^~338~^663.^0^^~4~^~BFSN~^~11052~^^^^^^^^^~03/01/2008~
-~11060~^~417~^15.^3^2.^~1~^^^^^^^^^^^~08/01/1984~
-~11060~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~
-~11060~^~432~^15.^3^2.^~1~^^^^^^^^^^^~03/01/2008~
-~11060~^~435~^15.^0^^~4~^~NC~^^^^^^^^^^~03/01/2008~
-~11060~^~601~^0.^0^^~7~^~Z~^^^^^^^^^^~08/01/1984~
-~11061~^~208~^28.^0^^~4~^~NC~^^^^^^^^^^~08/01/1984~
-~11061~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2006~
-~11061~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2006~
-~11061~^~268~^117.^0^^~4~^^^^^^^^^^^~03/01/2006~
-~11061~^~301~^42.^40^2.^~1~^^^^1^18.^72.^20^36.^47.^~4~^~03/01/2006~
-~11061~^~304~^19.^40^0.^~1~^^^^1^12.^25.^20^17.^20.^~4~^~03/01/2006~
-~11061~^~305~^29.^40^0.^~1~^^^^1^22.^40.^20^27.^31.^~4~^~03/01/2006~
-~11061~^~306~^159.^40^10.^~1~^^^^1^21.^225.^20^137.^181.^~4~^~03/01/2006~
-~11061~^~307~^1.^40^0.^~1~^^^^1^0.^2.^20^0.^0.^~4~^~03/01/2006~
-~11061~^~318~^419.^0^^~4~^~NC~^^^^^^^^^^~09/01/2015~
-~11061~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2002~
-~11061~^~320~^21.^0^^~4~^~NC~^^^^^^^^^^~09/01/2015~
-~11061~^~321~^224.^0^^~4~^~BFSY~^~11060~^^^^^^^^^~09/01/2015~
-~11061~^~322~^55.^0^^~4~^~BFSY~^~11060~^^^^^^^^^~09/01/2015~
-~11061~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~
-~11061~^~334~^0.^0^^~4~^~BFSY~^~11060~^^^^^^^^^~08/01/2002~
-~11061~^~337~^0.^0^^~4~^~BFSY~^~11060~^^^^^^^^^~08/01/2002~
-~11061~^~338~^508.^0^^~4~^~BFSY~^~11060~^^^^^^^^^~09/01/2015~
-~11061~^~417~^23.^7^3.^~1~^^^^^^^^^^^~08/01/1984~
-~11061~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~
-~11061~^~432~^23.^7^3.^~1~^^^^^^^^^^^~03/01/2006~
-~11061~^~435~^23.^0^^~4~^~NC~^^^^^^^^^^~03/01/2006~
-~11061~^~601~^0.^0^^~7~^~Z~^^^^^^^^^^~08/01/1984~
-~11062~^~208~^33.^0^^~4~^~NC~^^^^^^^^^^~01/01/2017~
-~11062~^~268~^139.^0^^~4~^~NC~^^^^^^^^^^~01/01/2017~
-~11062~^~301~^61.^3^3.^~1~^~A~^^^1^57.^67.^2^48.^74.^~2, 3~^~03/01/2008~
-~11062~^~304~^29.^3^2.^~1~^~A~^^^1^24.^31.^2^18.^38.^~2, 3~^~03/01/2008~
-~11062~^~305~^42.^3^2.^~1~^~A~^^^1^37.^45.^2^31.^53.^~2, 3~^~03/01/2008~
-~11062~^~306~^237.^3^15.^~1~^~A~^^^1^206.^259.^2^168.^305.^~2, 3~^~03/01/2008~
-~11062~^~307~^3.^3^0.^~1~^~A~^^^1^2.^4.^2^0.^5.^~1, 2, 3~^~03/01/2008~
-~11062~^~321~^277.^0^^~4~^~BFSY~^~11060~^^^^^^^^^~03/01/2008~
-~11062~^~322~^68.^0^^~4~^~BFSY~^~11060~^^^^^^^^^~03/01/2008~
-~11062~^~334~^0.^0^^~4~^~BFSY~^~11060~^^^^^^^^^~03/01/2008~
-~11062~^~337~^0.^0^^~4~^~BFSY~^~11060~^^^^^^^^^~03/01/2008~
-~11062~^~338~^629.^0^^~4~^~BFSY~^~11060~^^^^^^^^^~03/01/2008~
-~11062~^~417~^12.^0^^~4~^~BFSY~^~11060~^^^^^^^^^~03/01/2008~
-~11062~^~432~^12.^0^^~4~^~BFSY~^^^^^^^^^^~03/01/2008~
-~11063~^~208~^33.^0^^~4~^~NC~^^^^^^^^^^~01/01/2017~
-~11063~^~268~^137.^0^^~4~^~NC~^^^^^^^^^^~01/01/2017~
-~11063~^~301~^55.^4^1.^~1~^~A~^^^1^53.^58.^3^51.^58.^~2, 3~^~04/01/2009~
-~11063~^~304~^28.^4^2.^~1~^~A~^^^1^21.^33.^3^19.^36.^~2, 3~^~04/01/2009~
-~11063~^~305~^49.^4^1.^~1~^~A~^^^1^44.^53.^3^42.^54.^~2, 3~^~04/01/2009~
-~11063~^~306~^323.^4^17.^~1~^~A~^^^1^284.^363.^3^266.^378.^~2, 3~^~04/01/2009~
-~11063~^~307~^3.^4^0.^~1~^~A~^^^1^3.^3.^3^2.^3.^~2, 3~^~04/01/2009~
-~11063~^~417~^47.^2^^~1~^~A~^^^1^46.^48.^1^^^^~04/01/2009~
-~11063~^~432~^47.^2^^~1~^~A~^^^1^46.^48.^1^^^^~04/01/2009~
-~11080~^~208~^43.^0^^~4~^~NC~^^^^^^^^^^~03/01/2006~
-~11080~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~09/01/2002~
-~11080~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~09/01/2002~
-~11080~^~268~^180.^0^^~4~^^^^^^^^^^^~03/01/2006~
-~11080~^~301~^16.^5^1.^~1~^^^^^^^^^^^~08/01/1984~
-~11080~^~304~^23.^5^1.^~1~^^^^^^^^^^^~08/01/1984~
-~11080~^~305~^40.^5^4.^~1~^^^^^^^^^^^~08/01/1984~
-~11080~^~306~^325.^11^14.^~1~^^^^^^^^^^^~08/01/1984~
-~11080~^~307~^78.^13^10.^~1~^^^^^^^^^^^~08/01/1984~
-~11080~^~318~^33.^0^^~4~^~NC~^^^^^^^^^^~03/01/2006~
-~11080~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2002~
-~11080~^~320~^2.^0^^~4~^~NC~^^^^^^^^^^~03/01/2006~
-~11080~^~321~^20.^0^^~4~^~BFSN~^~11082~^^^^^^^^^~09/01/2002~
-~11080~^~322~^0.^0^^~4~^~BFSN~^~11082~^^^^^^^^^~09/01/2002~
-~11080~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~
-~11080~^~334~^0.^0^^~4~^~BFSN~^~11082~^^^^^^^^^~09/01/2002~
-~11080~^~337~^0.^0^^~4~^~BFSN~^~11082~^^^^^^^^^~09/01/2002~
-~11080~^~338~^0.^0^^~4~^~BFSN~^~11082~^^^^^^^^^~09/01/2002~
-~11080~^~417~^109.^8^12.^~1~^^^^^^^^^^^~08/01/1984~
-~11080~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~
-~11080~^~432~^109.^8^12.^~1~^^^^^^^^^^^~03/01/2006~
-~11080~^~435~^109.^0^^~4~^~NC~^^^^^^^^^^~03/01/2006~
-~11080~^~601~^0.^0^^~7~^~Z~^^^^^^^^^^~08/01/1984~
-~11080~^~636~^25.^1^^~1~^^^^^^^^^^^~08/01/1984~
-~11081~^~208~^44.^0^^~4~^~NC~^^^^^^^^^^~08/01/1984~
-~11081~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~09/01/2002~
-~11081~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~09/01/2002~
-~11081~^~268~^184.^0^^~4~^^^^^^^^^^^~02/01/2007~
-~11081~^~301~^16.^0^^~1~^^^^^^^^^^^~08/01/1984~
-~11081~^~304~^23.^0^^~1~^^^^^^^^^^^~08/01/1984~
-~11081~^~305~^38.^0^^~1~^^^^^^^^^^^~08/01/1984~
-~11081~^~306~^305.^0^^~1~^^^^^^^^^^^~08/01/1984~
-~11081~^~307~^77.^0^^~1~^^^^^^^^^^^~08/01/1984~
-~11081~^~318~^35.^0^^~4~^~NC~^^^^^^^^^^~02/01/2007~
-~11081~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2002~
-~11081~^~320~^2.^0^^~4~^~NC~^^^^^^^^^^~02/01/2007~
-~11081~^~321~^21.^0^^~4~^~BFSN~^~11082~^^^^^^^^^~09/01/2002~
-~11081~^~322~^0.^0^^~4~^~BFSN~^~11082~^^^^^^^^^~09/01/2002~
-~11081~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~
-~11081~^~334~^0.^0^^~4~^~BFSN~^~11082~^^^^^^^^^~09/01/2002~
-~11081~^~337~^0.^0^^~4~^~BFSN~^~11082~^^^^^^^^^~09/01/2002~
-~11081~^~338~^0.^0^^~4~^~BFSN~^~11082~^^^^^^^^^~09/01/2002~
-~11081~^~417~^80.^0^^~1~^^^^^^^^^^^~08/01/1984~
-~11081~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~
-~11081~^~432~^80.^0^^~1~^^^^^^^^^^^~02/01/2007~
-~11081~^~435~^80.^0^^~4~^~NC~^^^^^^^^^^~02/01/2007~
-~11081~^~601~^0.^0^^~7~^~Z~^^^^^^^^^^~08/01/1984~
-~11082~^~208~^30.^0^^~4~^~NC~^^^^^^^^^^~01/01/2007~
-~11082~^~268~^126.^0^^~4~^~NC~^^^^^^^^^^~01/01/2007~
-~11082~^~301~^18.^67^0.^~1~^^^^8^8.^31.^66^16.^18.^~4~^~09/01/2002~
-~11082~^~304~^18.^48^0.^~1~^^^^5^9.^26.^47^16.^18.^~4~^~09/01/2002~
-~11082~^~305~^15.^47^0.^~1~^^^^5^9.^18.^46^14.^15.^~4~^~09/01/2002~
-~11082~^~306~^159.^67^4.^~1~^^^^7^67.^256.^66^150.^167.^~4~^~09/01/2002~
-~11082~^~307~^143.^68^9.^~1~^^^^8^5.^304.^67^125.^161.^~4~^~09/01/2002~
-~11082~^~318~^23.^0^^~4~^~NC~^^^^^^^^^^~01/01/2007~
-~11082~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2002~
-~11082~^~320~^1.^0^^~4~^~NC~^^^^^^^^^^~01/01/2007~
-~11082~^~321~^14.^0^^~4~^~T~^^^^^^^^^^~09/01/2002~
-~11082~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~09/01/2002~
-~11082~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~
-~11082~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~09/01/2002~
-~11082~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~09/01/2002~
-~11082~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~09/01/2002~
-~11082~^~417~^29.^3^4.^~1~^^^^^^^^^^^~08/01/1984~
-~11082~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~
-~11082~^~432~^29.^3^4.^~1~^^^^^^^^^^^~01/01/2007~
-~11082~^~435~^29.^0^^~4~^~NC~^^^^^^^^^^~01/01/2007~
-~11082~^~601~^0.^0^^~7~^~Z~^^^^^^^^^^~08/01/1984~
-~11084~^~208~^31.^0^^~4~^~NC~^^^^^^^^^^~07/01/2007~
-~11084~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~09/01/2002~
-~11084~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~09/01/2002~
-~11084~^~268~^131.^0^^~4~^~NC~^^^^^^^^^^~07/01/2007~
-~11084~^~301~^15.^0^^~4~^^^^^^^^^^^~08/01/1984~
-~11084~^~304~^17.^0^^~4~^^^^^^^^^^^~08/01/1984~
-~11084~^~305~^17.^0^^~4~^^^^^^^^^^^~08/01/1984~
-~11084~^~306~^148.^0^^~4~^^^^^^^^^^^~08/01/1984~
-~11084~^~307~^194.^0^^~4~^~BD~^^^^^^^^^^~01/01/1996~
-~11084~^~318~^24.^0^^~4~^~NC~^^^^^^^^^^~07/01/2007~
-~11084~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2002~
-~11084~^~320~^1.^0^^~4~^~NC~^^^^^^^^^^~07/01/2007~
-~11084~^~321~^15.^0^^~4~^~BFSN~^~11082~^^^^^^^^^~09/01/2002~
-~11084~^~322~^0.^0^^~4~^~BFSN~^~11082~^^^^^^^^^~09/01/2002~
-~11084~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~
-~11084~^~334~^0.^0^^~4~^~BFSN~^~11082~^^^^^^^^^~09/01/2002~
-~11084~^~337~^0.^0^^~4~^~BFSN~^~11082~^^^^^^^^^~09/01/2002~
-~11084~^~338~^0.^0^^~4~^~BFSN~^~11082~^^^^^^^^^~09/01/2002~
-~11084~^~417~^30.^0^^~4~^^^^^^^^^^^~08/01/1984~
-~11084~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~
-~11084~^~432~^30.^0^^~4~^^^^^^^^^^^~07/01/2007~
-~11084~^~435~^30.^0^^~4~^~NC~^^^^^^^^^^~07/01/2007~
-~11084~^~601~^0.^0^^~7~^~Z~^^^^^^^^^^~08/01/1984~
-~11086~^~208~^22.^0^^~4~^~NC~^^^^^^^^^^~02/01/2007~
-~11086~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~11/01/2002~
-~11086~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~11/01/2002~
-~11086~^~268~^92.^0^^~4~^~NC~^^^^^^^^^^~02/01/2007~
-~11086~^~301~^117.^2^^~1~^^^^1^114.^119.^1^^^^~12/01/2002~
-~11086~^~304~^70.^2^^~1~^^^^1^68.^72.^1^^^^~12/01/2002~
-~11086~^~305~^41.^1^^~1~^^^^^41.^41.^^^^^~12/01/2002~
-~11086~^~306~^762.^6^154.^~1~^^^^1^454.^923.^2^98.^1424.^~4~^~12/01/2002~
-~11086~^~307~^226.^6^18.^~1~^^^^1^189.^248.^2^145.^306.^~4~^~12/01/2002~
-~11086~^~318~^6326.^0^^~1~^~AS~^^^^^^^^^^~02/01/2007~
-~11086~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2002~
-~11086~^~320~^316.^0^^~1~^~AS~^^^^^^^^^^~02/01/2007~
-~11086~^~321~^3794.^3^1233.^~1~^~A~^^^1^2560.^5028.^1^-11883.^19471.^~4~^~11/01/2002~
-~11086~^~322~^3.^36^^~1~^~A~^^^^^^^^^^~11/01/2002~
-~11086~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~
-~11086~^~334~^0.^36^^~1~^~A~^^^^^^^^^^~11/01/2002~
-~11086~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~12/01/2002~
-~11086~^~338~^1503.^0^^~4~^~T~^^^^^^^^^^~12/01/2002~
-~11086~^~417~^15.^0^^~4~^^^^^^^^^^^~08/01/1984~
-~11086~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~
-~11086~^~432~^15.^0^^~4~^^^^^^^^^^^~02/01/2007~
-~11086~^~435~^15.^0^^~4~^~NC~^^^^^^^^^^~02/01/2007~
-~11086~^~601~^0.^0^^~7~^~Z~^^^^^^^^^^~08/01/1984~
-~11086~^~636~^21.^0^^~1~^^^^^^^^^^^~08/01/1984~
-~11087~^~208~^27.^0^^~4~^~NC~^^^^^^^^^^~02/01/2007~
-~11087~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~12/01/2002~
-~11087~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~12/01/2002~
-~11087~^~268~^115.^0^^~4~^~NC~^^^^^^^^^^~02/01/2007~
-~11087~^~301~^114.^1^^~1~^^^^^^^^^^^~08/01/1984~
-~11087~^~304~^68.^1^^~1~^^^^^^^^^^^~08/01/1984~
-~11087~^~305~^41.^1^^~1~^^^^^^^^^^^~08/01/1984~
-~11087~^~306~^909.^1^^~1~^^^^^^^^^^^~08/01/1984~
-~11087~^~307~^241.^1^^~1~^^^^^^^^^^^~08/01/1984~
-~11087~^~318~^7654.^0^^~4~^~NC~^^^^^^^^^^~02/01/2007~
-~11087~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2002~
-~11087~^~320~^383.^0^^~4~^~NC~^^^^^^^^^^~02/01/2007~
-~11087~^~321~^4590.^0^^~4~^~BFSN~^~11086~^^^^^^^^^~12/01/2002~
-~11087~^~322~^4.^0^^~4~^~BFSN~^~11086~^^^^^^^^^~12/01/2002~
-~11087~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~
-~11087~^~334~^0.^0^^~4~^~BFSN~^~11086~^^^^^^^^^~12/01/2002~
-~11087~^~337~^0.^0^^~4~^~BFSN~^~11086~^^^^^^^^^~12/01/2002~
-~11087~^~338~^1819.^0^^~4~^~BFSN~^~11086~^^^^^^^^^~12/01/2002~
-~11087~^~417~^14.^0^^~4~^^^^^^^^^^^~08/01/1984~
-~11087~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~
-~11087~^~432~^14.^0^^~4~^^^^^^^^^^^~02/01/2007~
-~11087~^~435~^14.^0^^~4~^~NC~^^^^^^^^^^~02/01/2007~
-~11087~^~601~^0.^0^^~7~^~Z~^^^^^^^^^^~08/01/1984~
-~11088~^~208~^72.^0^^~4~^~NC~^^^^^^^^^^~08/01/1984~
-~11088~^~268~^301.^0^^~4~^^^^^^^^^^^
-~11088~^~301~^22.^1^^~1~^^^^^^^^^^^~08/01/1984~
-~11088~^~304~^38.^1^^~1~^^^^^^^^^^^~08/01/1984~
-~11088~^~305~^95.^1^^~1~^^^^^^^^^^^~08/01/1984~
-~11088~^~306~^250.^1^^~1~^^^^^^^^^^^~08/01/1984~
-~11088~^~307~^50.^1^^~1~^^^^^^^^^^^~08/01/1984~
-~11088~^~318~^350.^1^^~1~^^^^^^^^^^^~08/01/1984~
-~11088~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2002~
-~11088~^~320~^18.^1^^~1~^^^^^^^^^^^~06/01/2002~
-~11088~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~
-~11088~^~417~^96.^0^^~4~^^^^^^^^^^^~08/01/1984~
-~11088~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~
-~11088~^~432~^96.^0^^~4~^^^^^^^^^^^~12/01/1984~
-~11088~^~435~^96.^0^^~4~^~NC~^^^^^^^^^^~01/01/2001~
-~11088~^~601~^0.^0^^~7~^~Z~^^^^^^^^^^~08/01/1984~
-~11089~^~208~^62.^0^^~4~^~NC~^^^^^^^^^^~03/01/1997~
-~11089~^~268~^259.^0^^~4~^^^^^^^^^^^
-~11089~^~301~^18.^0^^~1~^^^^^^^^^^^~08/01/1984~
-~11089~^~304~^31.^0^^~1~^^^^^^^^^^^~08/01/1984~
-~11089~^~305~^73.^0^^~1~^^^^^^^^^^^~08/01/1984~
-~11089~^~306~^193.^0^^~1~^^^^^^^^^^^~08/01/1984~
-~11089~^~307~^41.^0^^~1~^^^^^^^^^^^~08/01/1984~
-~11089~^~318~^270.^0^^~1~^^^^^^^^^^^~08/01/1984~
-~11089~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2002~
-~11089~^~320~^14.^0^^~1~^^^^^^^^^^^~06/01/2002~
-~11089~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~
-~11089~^~417~^58.^0^^~4~^^^^^^^^^^^~08/01/1984~
-~11089~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~
-~11089~^~432~^58.^0^^~4~^^^^^^^^^^^~12/01/1984~
-~11089~^~435~^58.^0^^~4~^~NC~^^^^^^^^^^~01/01/2001~
-~11089~^~601~^0.^0^^~7~^~Z~^^^^^^^^^^~08/01/1984~
-~11090~^~208~^34.^0^^~4~^~NC~^^^^^^^^^^~03/01/2006~
-~11090~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~10/01/2002~
-~11090~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~10/01/2002~
-~11090~^~268~^141.^0^^~4~^~NC~^^^^^^^^^^~03/01/2006~
-~11090~^~301~^47.^33^5.^~6~^~JA~^^^3^39.^53.^1^-18.^111.^~4~^~04/01/2003~
-~11090~^~304~^21.^33^2.^~6~^~JA~^^^3^18.^24.^1^-5.^47.^~4~^~04/01/2003~
-~11090~^~305~^66.^33^3.^~6~^~JA~^^^3^63.^71.^1^27.^103.^~4~^~04/01/2003~
-~11090~^~306~^316.^37^7.^~11~^~JO~^^^4^296.^322.^2^284.^346.^~4~^~04/01/2003~
-~11090~^~307~^33.^42^5.^~11~^~JO~^^^4^27.^48.^2^9.^55.^~4~^~04/01/2003~
-~11090~^~318~^623.^0^^~4~^~NC~^^^^^^^^^^~08/01/2006~
-~11090~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2002~
-~11090~^~320~^31.^0^^~4~^~NC~^^^^^^^^^^~08/01/2006~
-~11090~^~321~^361.^124^7.^~11~^~JO~^^^5^54.^1080.^3^339.^382.^~2, 3~^~12/01/2004~
-~11090~^~322~^25.^55^3.^~11~^~JO~^^^4^0.^179.^2^10.^38.^~1, 2, 3~^~04/01/2003~
-~11090~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~
-~11090~^~334~^1.^52^0.^~11~^~JO~^^^4^0.^8.^^^^~1, 2, 3~^~12/01/2004~
-~11090~^~337~^0.^10^0.^~11~^~JO~^^^4^0.^0.^^^^~1, 2, 3~^~12/01/2004~
-~11090~^~338~^1403.^7^40.^~1~^~A~^^^3^431.^2060.^4^1286.^1518.^~2, 3~^~12/01/2004~
-~11090~^~417~^63.^27^12.^~11~^~JO~^^^4^42.^88.^2^8.^117.^~4~^~05/01/2003~
-~11090~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~10/01/2002~
-~11090~^~432~^63.^27^12.^~11~^~JO~^^^4^42.^88.^2^8.^117.^^~03/01/2006~
-~11090~^~435~^63.^0^^~4~^~NC~^^^^^^^^^^~08/01/2006~
-~11090~^~601~^0.^0^^~7~^~Z~^^^^^^^^^^~08/01/1984~
-~11091~^~208~^35.^0^^~4~^~NC~^^^^^^^^^^~11/01/2006~
-~11091~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~10/01/2002~
-~11091~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~10/01/2002~
-~11091~^~268~^146.^0^^~4~^~NC~^^^^^^^^^^~11/01/2006~
-~11091~^~301~^40.^4^3.^~1~^~A~^^^2^^^^^^^~10/01/2002~
-~11091~^~304~^21.^4^1.^~1~^~A~^^^2^^^^^^^~10/01/2002~
-~11091~^~305~^67.^4^1.^~1~^~A~^^^2^^^^^^^~10/01/2002~
-~11091~^~306~^293.^4^11.^~1~^~A~^^^2^^^^^^^~10/01/2002~
-~11091~^~307~^41.^4^7.^~1~^~A~^^^2^^^^^^^~10/01/2002~
-~11091~^~318~^1548.^0^^~1~^~AS~^^^^^^^^^^~11/01/2006~
-~11091~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2002~
-~11091~^~320~^77.^0^^~1~^~AS~^^^^^^^^^^~11/01/2006~
-~11091~^~321~^929.^17^42.^~1~^~A~^^^3^407.^1681.^2^734.^1123.^~2, 3~^~12/01/2004~
-~11091~^~322~^0.^7^0.^~1~^~A~^^^3^0.^0.^^^^~1, 2, 3~^~10/01/2002~
-~11091~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~
-~11091~^~334~^0.^7^0.^~1~^~A~^^^3^0.^0.^^^^~1, 2, 3~^~10/01/2002~
-~11091~^~337~^0.^7^0.^~1~^~A~^^^3^0.^0.^^^^~1, 2, 3~^~10/01/2002~
-~11091~^~338~^1080.^12^98.^~1~^~A~^^^3^447.^1937.^1^-129.^2289.^~2, 3~^~12/01/2004~
-~11091~^~417~^108.^4^30.^~1~^~A~^^^2^^^^^^^~10/01/2002~
-~11091~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~
-~11091~^~432~^108.^4^30.^~1~^~A~^^^2^^^^^^^~11/01/2006~
-~11091~^~435~^108.^0^^~4~^~NC~^^^^^^^^^^~11/01/2006~
-~11091~^~601~^0.^0^^~7~^~Z~^^^^^^^^^^~08/01/1984~
-~11092~^~208~^26.^0^^~4~^~NC~^^^^^^^^^^~01/01/2007~
-~11092~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~10/01/2002~
-~11092~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~10/01/2002~
-~11092~^~268~^110.^0^^~4~^~NC~^^^^^^^^^^~01/01/2007~
-~11092~^~301~^56.^45^2.^~1~^^^^^^^^^^^~08/01/1984~
-~11092~^~304~^18.^13^1.^~1~^^^^^^^^^^^~08/01/1984~
-~11092~^~305~^50.^18^1.^~1~^^^^^^^^^^^~08/01/1984~
-~11092~^~306~^212.^11^14.^~1~^^^^^^^^^^^~08/01/1984~
-~11092~^~307~^24.^14^4.^~1~^^^^^^^^^^^~08/01/1984~
-~11092~^~318~^1034.^0^^~4~^~NC~^^^^^^^^^^~01/01/2007~
-~11092~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2002~
-~11092~^~320~^52.^0^^~4~^~NC~^^^^^^^^^^~01/01/2007~
-~11092~^~321~^610.^1^^~1~^~A~^^^1^270.^950.^1^^^^~10/01/2002~
-~11092~^~322~^20.^0^^~4~^~BFSN~^~11090~^^^^^^^^^~01/01/2007~
-~11092~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~
-~11092~^~334~^1.^0^^~4~^~BFSN~^~11090~^^^^^^^^^~01/01/2007~
-~11092~^~337~^0.^0^^~4~^~BFSN~^~11090~^^^^^^^^^~10/01/2002~
-~11092~^~338~^1120.^0^^~4~^~BFSN~^~11090~^^^^^^^^^~01/01/2007~
-~11092~^~417~^67.^3^1.^~1~^^^^^^^^^^^~08/01/1984~
-~11092~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~
-~11092~^~432~^67.^3^1.^~1~^^^^^^^^^^^~01/01/2007~
-~11092~^~435~^67.^0^^~4~^~NC~^^^^^^^^^^~01/01/2007~
-~11092~^~601~^0.^0^^~7~^~Z~^^^^^^^^^^~08/01/1984~
-~11093~^~208~^28.^0^^~4~^~NC~^^^^^^^^^^~08/01/1984~
-~11093~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~10/01/2002~
-~11093~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~10/01/2002~
-~11093~^~268~^117.^0^^~4~^^^^^^^^^^^~02/01/2007~
-~11093~^~301~^33.^20^1.^~1~^^^^1^16.^43.^19^30.^36.^~4~^~10/01/2002~
-~11093~^~304~^13.^20^0.^~1~^^^^1^9.^20.^19^11.^14.^~4~^~10/01/2002~
-~11093~^~305~^49.^20^1.^~1~^^^^1^36.^71.^19^45.^53.^~4~^~10/01/2002~
-~11093~^~306~^142.^20^11.^~1~^^^^1^73.^311.^19^118.^164.^~4~^~10/01/2002~
-~11093~^~307~^11.^20^0.^~1~^^^^1^4.^18.^19^9.^13.^~4~^~10/01/2002~
-~11093~^~318~^1011.^0^^~4~^~NC~^^^^^^^^^^~02/01/2007~
-~11093~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2002~
-~11093~^~320~^51.^0^^~4~^~NC~^^^^^^^^^^~02/01/2007~
-~11093~^~321~^597.^0^^~4~^~BFSY~^~11092~^^^^^^^^^~02/01/2007~
-~11093~^~322~^19.^0^^~4~^~BFSY~^~11092~^^^^^^^^^~02/01/2007~
-~11093~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~
-~11093~^~334~^1.^0^^~4~^~BFSY~^~11092~^^^^^^^^^~02/01/2007~
-~11093~^~337~^0.^0^^~4~^~BFSY~^~11092~^^^^^^^^^~02/01/2007~
-~11093~^~338~^1095.^0^^~4~^~BFSY~^~11092~^^^^^^^^^~02/01/2007~
-~11093~^~417~^56.^3^4.^~1~^^^^^^^^^^^~08/01/1984~
-~11093~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~
-~11093~^~432~^56.^3^4.^~1~^^^^^^^^^^^~02/01/2007~
-~11093~^~435~^56.^0^^~4~^~NC~^^^^^^^^^^~02/01/2007~
-~11093~^~601~^0.^0^^~7~^~Z~^^^^^^^^^^~08/01/1984~
-~11094~^~208~^29.^0^^~4~^~NC~^^^^^^^^^^~08/01/1984~
-~11094~^~268~^121.^0^^~4~^^^^^^^^^^^
-~11094~^~301~^41.^49^2.^~1~^^^^^^^^^^^~08/01/1984~
-~11094~^~304~^16.^17^0.^~1~^^^^^^^^^^^~08/01/1984~
-~11094~^~305~^59.^30^2.^~1~^^^^^^^^^^^~08/01/1984~
-~11094~^~306~^250.^21^13.^~1~^^^^^^^^^^^~08/01/1984~
-~11094~^~307~^17.^24^1.^~1~^^^^^^^^^^^~08/01/1984~
-~11094~^~318~^1138.^0^^~4~^~NC~^^^^^^^^^^~10/01/2002~
-~11094~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2002~
-~11094~^~320~^57.^0^^~4~^~NC~^^^^^^^^^^~10/01/2002~
-~11094~^~321~^675.^0^^~4~^~BFSN~^~11092~^^^^^^^^^~10/01/2002~
-~11094~^~322~^15.^0^^~4~^~BFSN~^~11092~^^^^^^^^^~10/01/2002~
-~11094~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~
-~11094~^~334~^1.^0^^~4~^~BFSN~^~11092~^^^^^^^^^~10/01/2002~
-~11094~^~337~^0.^0^^~4~^~BFSN~^~11092~^^^^^^^^^~10/01/2002~
-~11094~^~338~^1525.^0^^~4~^~BFSN~^~11092~^^^^^^^^^~10/01/2002~
-~11094~^~417~^94.^9^9.^~1~^^^^^^^^^^^~08/01/1984~
-~11094~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~
-~11094~^~432~^94.^9^9.^~1~^^^^^^^^^^^~10/01/2002~
-~11094~^~435~^94.^0^^~4~^~NC~^^^^^^^^^^~10/01/2002~
-~11094~^~601~^0.^0^^~7~^~Z~^^^^^^^^^^~08/01/1984~
-~11095~^~208~^28.^0^^~4~^~NC~^^^^^^^^^^~02/01/2007~
-~11095~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~10/01/2002~
-~11095~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~10/01/2002~
-~11095~^~268~^116.^0^^~4~^~NC~^^^^^^^^^^~02/01/2007~
-~11095~^~301~^51.^6^4.^~1~^^^^^^^^^^^~08/01/1984~
-~11095~^~304~^20.^6^0.^~1~^^^^^^^^^^^~08/01/1984~
-~11095~^~305~^55.^6^3.^~1~^^^^^^^^^^^~08/01/1984~
-~11095~^~306~^180.^6^18.^~1~^^^^^^^^^^^~08/01/1984~
-~11095~^~307~^24.^12^1.^~1~^^^^^^^^^^^~08/01/1984~
-~11095~^~318~^1011.^0^^~4~^~NC~^^^^^^^^^^~02/01/2007~
-~11095~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2002~
-~11095~^~320~^51.^0^^~4~^~NC~^^^^^^^^^^~02/01/2007~
-~11095~^~321~^597.^0^^~4~^~BFSN~^~11093~^^^^^^^^^~02/01/2007~
-~11095~^~322~^19.^0^^~4~^~BFSN~^~11093~^^^^^^^^^~02/01/2007~
-~11095~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~
-~11095~^~334~^1.^0^^~4~^~BFSN~^~11093~^^^^^^^^^~02/01/2007~
-~11095~^~337~^0.^0^^~4~^~BFSN~^~11093~^^^^^^^^^~10/01/2002~
-~11095~^~338~^1095.^0^^~4~^~BFSN~^~11093~^^^^^^^^^~02/01/2007~
-~11095~^~417~^30.^16^6.^~1~^^^^^^^^^^^~08/01/1984~
-~11095~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~
-~11095~^~432~^30.^16^6.^~1~^^^^^^^^^^^~02/01/2007~
-~11095~^~435~^30.^0^^~4~^~NC~^^^^^^^^^^~02/01/2007~
-~11095~^~601~^0.^0^^~7~^~Z~^^^^^^^^^^~08/01/1984~
-~11096~^~208~^22.^0^^~4~^~NC~^^^^^^^^^^~05/01/2006~
-~11096~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2012~
-~11096~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2012~
-~11096~^~268~^92.^0^^~4~^~NC~^^^^^^^^^^~05/01/2006~
-~11096~^~301~^108.^4^10.^~1~^~A~^^^2^86.^130.^2^61.^154.^~2, 3~^~12/01/2002~
-~11096~^~304~^22.^4^3.^~1~^~A~^^^2^15.^30.^2^7.^36.^~2, 3~^~12/01/2002~
-~11096~^~305~^73.^4^9.^~1~^~A~^^^2^51.^92.^2^33.^111.^~2, 3~^~12/01/2002~
-~11096~^~306~^196.^4^30.^~1~^~A~^^^2^108.^315.^2^63.^327.^~2, 3~^~12/01/2002~
-~11096~^~307~^33.^4^4.^~1~^~A~^^^2^19.^57.^2^13.^52.^~2, 3~^~12/01/2002~
-~11096~^~318~^2622.^0^^~1~^~AS~^^^^^^^^^^~05/01/2006~
-~11096~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2012~
-~11096~^~320~^131.^0^^~1~^~AS~^^^^^^^^^^~05/01/2006~
-~11096~^~321~^1573.^3^33.^~1~^~A~^^^2^696.^3227.^1^1149.^1996.^~2, 3~^~12/01/2002~
-~11096~^~322~^0.^3^0.^~1~^~A~^^^2^0.^0.^^^^~2, 3~^~12/01/2002~
-~11096~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~
-~11096~^~334~^0.^3^0.^~1~^~A~^^^2^0.^0.^^^^~2, 3~^~12/01/2002~
-~11096~^~337~^0.^3^0.^~1~^~A~^^^2^0.^0.^^^^~2, 3~^~12/01/2002~
-~11096~^~338~^1121.^3^9.^~1~^~A~^^^2^391.^2553.^1^1006.^1235.^~2, 3~^~12/01/2002~
-~11096~^~417~^83.^4^7.^~1~^~A~^^^2^68.^108.^2^51.^115.^~2, 3~^~12/01/2002~
-~11096~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2012~
-~11096~^~432~^83.^4^7.^~1~^~A~^^^2^68.^108.^2^51.^115.^^~03/01/2006~
-~11096~^~435~^83.^0^^~4~^~NC~^^^^^^^^^^~06/01/2012~
-~11096~^~601~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2012~
-~11097~^~208~^25.^0^^~4~^~NC~^^^^^^^^^^~01/01/2017~
-~11097~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2012~
-~11097~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2012~
-~11097~^~268~^104.^0^^~4~^~NC~^^^^^^^^^^~01/01/2017~
-~11097~^~301~^118.^2^^~1~^~A~^^^1^112.^123.^1^^^^~12/01/2002~
-~11097~^~304~^27.^2^^~1~^~A~^^^1^25.^29.^1^^^^~12/01/2002~
-~11097~^~305~^82.^2^^~1~^~A~^^^1^79.^84.^1^^^^~12/01/2002~
-~11097~^~306~^343.^2^^~1~^~A~^^^1^333.^353.^1^^^^~12/01/2002~
-~11097~^~307~^56.^2^^~1~^~A~^^^1^35.^78.^1^^^^~12/01/2002~
-~11097~^~318~^4533.^0^^~1~^~AS~^^^^^^^^^^~08/01/2006~
-~11097~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2012~
-~11097~^~320~^227.^0^^~1~^~AS~^^^^^^^^^^~08/01/2006~
-~11097~^~321~^2720.^2^^~1~^~A~^^^1^2509.^2931.^1^^^^~12/01/2002~
-~11097~^~322~^0.^2^^~1~^~A~^^^1^0.^0.^1^^^^~12/01/2002~
-~11097~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~
-~11097~^~334~^0.^2^^~1~^~A~^^^1^0.^0.^1^^^^~12/01/2002~
-~11097~^~337~^0.^2^^~1~^~A~^^^1^0.^0.^1^^^^~12/01/2002~
-~11097~^~338~^1683.^2^^~1~^~A~^^^1^1406.^1960.^1^^^^~12/01/2002~
-~11097~^~417~^71.^2^^~1~^~A~^^^1^51.^90.^1^^^^~12/01/2002~
-~11097~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2012~
-~11097~^~432~^71.^2^^~1~^~A~^^^^^^^^^^~03/01/2006~
-~11097~^~435~^71.^0^^~4~^~NC~^^^^^^^^^^~06/01/2012~
-~11097~^~601~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2012~
-~11098~^~208~^43.^0^^~4~^~NC~^^^^^^^^^^~02/01/2007~
-~11098~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~11/01/2002~
-~11098~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~11/01/2002~
-~11098~^~268~^179.^0^^~4~^~NC~^^^^^^^^^^~02/01/2007~
-~11098~^~301~^42.^2^^~1~^^^^^^^^^^^~08/01/1984~
-~11098~^~304~^23.^1^^~1~^^^^^^^^^^^~08/01/1984~
-~11098~^~305~^69.^1^^~1~^^^^^^^^^^^~08/01/1984~
-~11098~^~306~^389.^4^21.^~1~^^^^^^^^^^^~08/01/1984~
-~11098~^~307~^25.^4^2.^~1~^^^^^^^^^^^~08/01/1984~
-~11098~^~318~^754.^0^^~1~^~AS~^^^^^^^^^^~02/01/2007~
-~11098~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2002~
-~11098~^~320~^38.^0^^~1~^~AS~^^^^^^^^^^~02/01/2007~
-~11098~^~321~^450.^21^56.^~1~^~A~^^^1^340.^530.^2^204.^695.^~4~^~11/01/2002~
-~11098~^~322~^6.^19^5.^~1~^~A~^^^1^0.^11.^1^-66.^77.^~4~^~11/01/2002~
-~11098~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~
-~11098~^~334~^0.^1^^~1~^~A~^^^^^^^^^^~11/01/2002~
-~11098~^~337~^0.^1^^~1~^~A~^^^^^^^^^^~11/01/2002~
-~11098~^~338~^1590.^1^^~1~^~A~^^^^^^^^^^~11/01/2002~
-~11098~^~417~^61.^3^6.^~1~^^^^^^^^^^^~08/01/1984~
-~11098~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~
-~11098~^~432~^61.^3^6.^~1~^^^^^^^^^^^~02/01/2007~
-~11098~^~435~^61.^0^^~4~^~NC~^^^^^^^^^^~02/01/2007~
-~11098~^~601~^0.^0^^~7~^~Z~^^^^^^^^^^~08/01/1984~
-~11098~^~636~^24.^0^^~1~^^^^^^^^^^^~08/01/1984~
-~11099~^~208~^36.^0^^~4~^~NC~^^^^^^^^^^~11/01/2006~
-~11099~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~11/01/2002~
-~11099~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~11/01/2002~
-~11099~^~268~^150.^0^^~4~^~NC~^^^^^^^^^^~11/01/2006~
-~11099~^~301~^36.^0^^~1~^^^^^^^^^^^~08/01/1984~
-~11099~^~304~^20.^0^^~1~^^^^^^^^^^^~08/01/1984~
-~11099~^~305~^56.^0^^~1~^^^^^^^^^^^~08/01/1984~
-~11099~^~306~^317.^0^^~1~^^^^^^^^^^^~08/01/1984~
-~11099~^~307~^21.^0^^~1~^^^^^^^^^^^~08/01/1984~
-~11099~^~318~^775.^0^^~1~^~AS~^^^^^^^^^^~11/01/2006~
-~11099~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2002~
-~11099~^~320~^39.^0^^~1~^~AS~^^^^^^^^^^~11/01/2006~
-~11099~^~321~^465.^5^15.^~1~^~A~^^^1^450.^480.^1^274.^655.^~4~^~11/01/2002~
-~11099~^~322~^0.^1^^~1~^~A~^^^^^^^^^^~11/01/2002~
-~11099~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~
-~11099~^~334~^0.^1^^~1~^~A~^^^^^^^^^^~11/01/2002~
-~11099~^~337~^0.^1^^~1~^~A~^^^^^^^^^^~11/01/2002~
-~11099~^~338~^1290.^1^^~1~^~A~^^^^^^^^^^~11/01/2002~
-~11099~^~417~^60.^1^^~1~^^^^^^^^^^^~08/01/1984~
-~11099~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~
-~11099~^~432~^60.^1^^~1~^^^^^^^^^^^~11/01/2006~
-~11099~^~435~^60.^0^^~4~^~NC~^^^^^^^^^^~11/01/2006~
-~11099~^~601~^0.^0^^~7~^~Z~^^^^^^^^^^~08/01/1984~
-~11100~^~208~^41.^0^^~4~^~NC~^^^^^^^^^^~07/01/2003~
-~11100~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2016~
-~11100~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2016~
-~11100~^~268~^170.^0^^~4~^~NC~^^^^^^^^^^~07/01/2003~
-~11100~^~301~^26.^36^1.^~1~^^^^^^^^^^^~08/01/1984~
-~11100~^~304~^20.^14^0.^~1~^^^^^^^^^^^~08/01/1984~
-~11100~^~305~^62.^25^2.^~1~^^^^^^^^^^^~08/01/1984~
-~11100~^~306~^370.^19^12.^~1~^^^^^^^^^^^~08/01/1984~
-~11100~^~307~^10.^19^1.^~1~^^^^^^^^^^^~08/01/1984~
-~11100~^~318~^617.^0^^~4~^~NC~^^^^^^^^^^~04/01/2016~
-~11100~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2002~
-~11100~^~320~^31.^0^^~4~^~NC~^^^^^^^^^^~04/01/2016~
-~11100~^~321~^370.^6^^~1~^~A~^^^^^^^^^^~07/01/2003~
-~11100~^~322~^0.^0^^~4~^~BFSN~^~11101~^^^^^^^^^~04/01/2016~
-~11100~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~
-~11100~^~334~^0.^0^^~4~^~BFSN~^~11101~^^^^^^^^^~04/01/2016~
-~11100~^~417~^123.^9^25.^~1~^^^^^^^^^^^~08/01/1984~
-~11100~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~
-~11100~^~432~^123.^9^25.^~1~^^^^^^^^^^^~07/01/2003~
-~11100~^~435~^123.^0^^~4~^~NC~^^^^^^^^^^~07/01/2003~
-~11100~^~601~^0.^0^^~7~^~Z~^^^^^^^^^^~08/01/1984~
-~11101~^~208~^42.^0^^~4~^~NC~^^^^^^^^^^~02/01/2007~
-~11101~^~262~^0.^0^^~4~^~BFSN~^~11099~^^^^^^^^^~11/01/2002~
-~11101~^~263~^0.^0^^~4~^~BFSN~^~11099~^^^^^^^^^~11/01/2002~
-~11101~^~268~^175.^0^^~4~^~NC~^^^^^^^^^^~02/01/2007~
-~11101~^~301~^26.^18^0.^~1~^~A~^^^7^20.^32.^17^24.^27.^~4~^~11/01/2002~
-~11101~^~304~^18.^18^0.^~1~^~A~^^^7^11.^25.^17^16.^19.^~4~^~11/01/2002~
-~11101~^~305~^56.^18^2.^~1~^~A~^^^7^37.^84.^17^51.^61.^~4~^~11/01/2002~
-~11101~^~306~^290.^18^13.^~1~^~A~^^^7^176.^383.^17^261.^318.^~4~^~11/01/2002~
-~11101~^~307~^15.^18^2.^~1~^~A~^^^7^6.^42.^17^10.^19.^~4~^~11/01/2002~
-~11101~^~318~^926.^0^^~4~^~NC~^^^^^^^^^^~02/01/2007~
-~11101~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2002~
-~11101~^~320~^46.^0^^~4~^~NC~^^^^^^^^^^~02/01/2007~
-~11101~^~321~^555.^0^^~4~^~BFSN~^~11099~^^^^^^^^^~11/01/2002~
-~11101~^~322~^0.^0^^~4~^~BFSN~^~11099~^^^^^^^^^~11/01/2002~
-~11101~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~
-~11101~^~334~^0.^0^^~4~^~BFSN~^~11099~^^^^^^^^^~11/01/2002~
-~11101~^~337~^0.^0^^~4~^~BFSN~^~11099~^^^^^^^^^~11/01/2002~
-~11101~^~338~^1541.^0^^~4~^~BFSN~^~11099~^^^^^^^^^~11/01/2002~
-~11101~^~417~^101.^8^19.^~1~^^^^^^^^^^^~08/01/1984~
-~11101~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~
-~11101~^~432~^101.^8^19.^~1~^^^^^^^^^^^~02/01/2007~
-~11101~^~435~^101.^0^^~4~^~NC~^^^^^^^^^^~02/01/2007~
-~11101~^~601~^0.^0^^~7~^~Z~^^^^^^^^^^~08/01/1984~
-~11104~^~208~^72.^0^^~4~^~NC~^^^^^^^^^^~02/01/2007~
-~11104~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~12/01/2002~
-~11104~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~12/01/2002~
-~11104~^~268~^302.^0^^~4~^~NC~^^^^^^^^^^~02/01/2007~
-~11104~^~301~^41.^1^^~1~^^^^^^^^^^^~08/01/1984~
-~11104~^~304~^38.^1^^~1~^^^^^^^^^^^~08/01/1984~
-~11104~^~305~^51.^1^^~1~^^^^^^^^^^^~08/01/1984~
-~11104~^~306~^308.^1^^~1~^^^^^^^^^^^~08/01/1984~
-~11104~^~307~^5.^0^^~1~^^^^^^^^^^^~08/01/1984~
-~11104~^~318~^0.^0^^~1~^~AS~^^^^^^^^^^~02/01/2007~
-~11104~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2002~
-~11104~^~320~^0.^0^^~1~^~AS~^^^^^^^^^^~02/01/2007~
-~11104~^~321~^0.^0^^~7~^~Z~^^^^^^^^^^~12/01/2002~
-~11104~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~12/01/2002~
-~11104~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~
-~11104~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~12/01/2002~
-~11104~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~12/01/2002~
-~11104~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~12/01/2002~
-~11104~^~417~^23.^0^^~4~^^^^^^^^^^^~08/01/1984~
-~11104~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~
-~11104~^~432~^23.^0^^~4~^^^^^^^^^^^~02/01/2007~
-~11104~^~435~^23.^0^^~4~^~NC~^^^^^^^^^^~02/01/2007~
-~11104~^~601~^0.^0^^~7~^~Z~^^^^^^^^^^~08/01/1984~
-~11105~^~208~^88.^0^^~4~^~NC~^^^^^^^^^^~02/01/2007~
-~11105~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~12/01/2002~
-~11105~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~12/01/2002~
-~11105~^~268~^369.^0^^~4~^~NC~^^^^^^^^^^~02/01/2007~
-~11105~^~301~^49.^1^^~1~^^^^^^^^^^^~08/01/1984~
-~11105~^~304~^39.^1^^~1~^^^^^^^^^^^~08/01/1984~
-~11105~^~305~^93.^1^^~1~^^^^^^^^^^^~08/01/1984~
-~11105~^~306~^360.^1^^~1~^^^^^^^^^^^~08/01/1984~
-~11105~^~307~^4.^1^^~1~^^^^^^^^^^^~08/01/1984~
-~11105~^~318~^0.^0^^~4~^~NC~^^^^^^^^^^~02/01/2007~
-~11105~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2002~
-~11105~^~320~^0.^0^^~4~^~NC~^^^^^^^^^^~02/01/2007~
-~11105~^~321~^0.^0^^~4~^~BFSY~^~11104~^^^^^^^^^~02/01/2007~
-~11105~^~322~^0.^0^^~4~^~BFSY~^~11104~^^^^^^^^^~02/01/2007~
-~11105~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~
-~11105~^~334~^0.^0^^~4~^~BFSY~^~11104~^^^^^^^^^~02/01/2007~
-~11105~^~337~^0.^0^^~4~^~BFSY~^~11104~^^^^^^^^^~02/01/2007~
-~11105~^~338~^0.^0^^~4~^~BFSY~^~11104~^^^^^^^^^~02/01/2007~
-~11105~^~417~^20.^0^^~4~^^^^^^^^^^^~08/01/1984~
-~11105~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~
-~11105~^~432~^20.^0^^~4~^^^^^^^^^^^~02/01/2007~
-~11105~^~435~^20.^0^^~4~^~NC~^^^^^^^^^^~02/01/2007~
-~11105~^~601~^0.^0^^~7~^~Z~^^^^^^^^^^~08/01/1984~
-~11106~^~208~^14.^0^^~4~^~NC~^^^^^^^^^^~08/01/1984~
-~11106~^~268~^59.^0^^~4~^^^^^^^^^^^
-~11106~^~301~^103.^0^^~1~^^^^^^^^^^^~08/01/1984~
-~11106~^~304~^14.^0^^~1~^^^^^^^^^^^~08/01/1984~
-~11106~^~305~^12.^0^^~1~^^^^^^^^^^^~08/01/1984~
-~11106~^~306~^655.^0^^~1~^^^^^^^^^^^~08/01/1984~
-~11106~^~307~^7.^0^^~1~^^^^^^^^^^^~08/01/1984~
-~11106~^~318~^50.^0^^~1~^^^^^^^^^^^~08/01/1984~
-~11106~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2002~
-~11106~^~320~^3.^0^^~1~^^^^^^^^^^^~06/01/2002~
-~11106~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~
-~11106~^~417~^10.^0^^~4~^^^^^^^^^^^~08/01/1984~
-~11106~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~
-~11106~^~432~^10.^0^^~4~^^^^^^^^^^^~12/01/1984~
-~11106~^~435~^10.^0^^~4~^~NC~^^^^^^^^^^~01/01/2001~
-~11106~^~601~^0.^0^^~7~^~Z~^^^^^^^^^^~08/01/1984~
-~11107~^~208~^8.^0^^~4~^~NC~^^^^^^^^^^~08/01/1984~
-~11107~^~268~^33.^0^^~4~^^^^^^^^^^^
-~11107~^~301~^59.^0^^~1~^^^^^^^^^^^~08/01/1984~
-~11107~^~304~^8.^0^^~1~^^^^^^^^^^^~08/01/1984~
-~11107~^~305~^7.^0^^~1~^^^^^^^^^^^~08/01/1984~
-~11107~^~306~^354.^0^^~1~^^^^^^^^^^^~08/01/1984~
-~11107~^~307~^4.^0^^~1~^^^^^^^^^^^~08/01/1984~
-~11107~^~318~^27.^0^^~1~^^^^^^^^^^^~08/01/1984~
-~11107~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2002~
-~11107~^~320~^1.^0^^~1~^^^^^^^^^^^~06/01/2002~
-~11107~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~
-~11107~^~417~^4.^0^^~4~^^^^^^^^^^^~08/01/1984~
-~11107~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~
-~11107~^~432~^4.^0^^~4~^^^^^^^^^^^~12/01/1984~
-~11107~^~435~^4.^0^^~4~^~NC~^^^^^^^^^^~01/01/2001~
-~11107~^~601~^0.^0^^~7~^~Z~^^^^^^^^^^~08/01/1984~
-~11108~^~208~^3.^0^^~4~^~NC~^^^^^^^^^^~08/01/1984~
-~11108~^~268~^13.^0^^~4~^^^^^^^^^^^
-~11108~^~301~^34.^0^^~1~^^^^^^^^^^^~08/01/1984~
-~11108~^~304~^2.^0^^~1~^^^^^^^^^^^~08/01/1984~
-~11108~^~305~^4.^0^^~1~^^^^^^^^^^^~08/01/1984~
-~11108~^~306~^12.^0^^~1~^^^^^^^^^^^~08/01/1984~
-~11108~^~307~^4.^0^^~1~^^^^^^^^^^^~08/01/1984~
-~11108~^~318~^0.^0^^~1~^^^^^^^^^^^~08/01/1984~
-~11108~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2002~
-~11108~^~320~^0.^0^^~1~^^^^^^^^^^^~06/01/2002~
-~11108~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~
-~11108~^~417~^3.^0^^~4~^^^^^^^^^^^~08/01/1984~
-~11108~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~
-~11108~^~432~^3.^0^^~4~^^^^^^^^^^^~12/01/1984~
-~11108~^~435~^3.^0^^~4~^~NC~^^^^^^^^^^~01/01/2001~
-~11108~^~601~^0.^0^^~7~^~Z~^^^^^^^^^^~08/01/1984~
-~11109~^~208~^25.^0^^~4~^~NC~^^^^^^^^^^~03/01/2006~
-~11109~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~09/01/2002~
-~11109~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~09/01/2002~
-~11109~^~268~^103.^0^^~4~^~NC~^^^^^^^^^^~03/01/2006~
-~11109~^~301~^40.^30^1.^~6~^~JA~^^^5^28.^70.^11^36.^42.^~2, 3~^~03/01/2006~
-~11109~^~304~^12.^31^0.^~6~^~JA~^^^5^9.^19.^20^11.^13.^~2, 3~^~03/01/2006~
-~11109~^~305~^26.^30^0.^~6~^~JA~^^^5^18.^35.^19^24.^27.^~2, 3~^~03/01/2006~
-~11109~^~306~^170.^31^4.^~6~^~JA~^^^5^130.^257.^23^160.^179.^~2, 3~^~03/01/2006~
-~11109~^~307~^18.^46^1.^~1~^^^^^^^^^^^~03/01/2006~
-~11109~^~318~^98.^0^^~1~^~AS~^^^^^^^^^^~03/01/2006~
-~11109~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2002~
-~11109~^~320~^5.^0^^~1~^~AS~^^^^^^^^^^~03/01/2006~
-~11109~^~321~^42.^25^0.^~1~^~A~^^^2^21.^133.^2^38.^45.^~2, 3~^~03/01/2006~
-~11109~^~322~^33.^3^^~1~^~A~^^^2^0.^49.^^^^~2, 3~^~03/01/2006~
-~11109~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~
-~11109~^~334~^0.^3^^~1~^~A~^^^2^0.^0.^^^^~2, 3~^~03/01/2006~
-~11109~^~337~^0.^1^^~1~^~A~^^^^^^^^^^~09/01/2002~
-~11109~^~338~^30.^22^10.^~1~^~A~^^^1^10.^310.^1^-102.^163.^~2, 3~^~03/01/2006~
-~11109~^~417~^43.^19^7.^~1~^^^^^^^^^^^~03/01/2006~
-~11109~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~
-~11109~^~432~^43.^19^7.^~1~^^^^^^^^^^^~03/01/2006~
-~11109~^~435~^43.^0^^~4~^~NC~^^^^^^^^^^~03/01/2006~
-~11109~^~601~^0.^0^^~7~^~Z~^^^^^^^^^^~08/01/1984~
-~11109~^~636~^11.^1^^~1~^^^^^^^^^^^~03/01/2006~
-~11110~^~208~^23.^0^^~4~^~NC~^^^^^^^^^^~03/01/2006~
-~11110~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~12/01/2002~
-~11110~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~12/01/2002~
-~11110~^~268~^97.^0^^~4~^~NC~^^^^^^^^^^~03/01/2006~
-~11110~^~301~^48.^4^5.^~1~^~A~^^^1^38.^65.^3^30.^66.^~2, 3~^~03/01/2006~
-~11110~^~304~^15.^4^0.^~1~^~A~^^^1^13.^17.^3^12.^17.^~2, 3~^~03/01/2006~
-~11110~^~305~^33.^4^0.^~1~^~A~^^^1^32.^35.^3^30.^35.^~2, 3~^~03/01/2006~
-~11110~^~306~^196.^4^8.^~1~^~A~^^^1^186.^221.^3^169.^222.^~2, 3~^~03/01/2006~
-~11110~^~307~^8.^29^0.^~1~^^^^^^^^^^^~08/01/1984~
-~11110~^~318~^80.^0^^~1~^~AS~^^^^^^^^^^~03/01/2006~
-~11110~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2002~
-~11110~^~320~^4.^0^^~1~^~AS~^^^^^^^^^^~03/01/2006~
-~11110~^~321~^48.^4^19.^~1~^~A~^^^1^18.^104.^3^-15.^110.^~2, 3~^~03/01/2006~
-~11110~^~322~^0.^4^0.^~1~^~A~^^^1^0.^0.^^^^~1, 2, 3~^~03/01/2006~
-~11110~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~
-~11110~^~334~^0.^4^0.^~1~^~A~^^^1^0.^0.^^^^~1, 2, 3~^~03/01/2006~
-~11110~^~337~^0.^4^0.^~1~^~A~^^^1^0.^0.^^^^~1, 2, 3~^~03/01/2006~
-~11110~^~338~^27.^0^^~4~^~BFSY~^~11109~^^^^^^^^^~03/01/2006~
-~11110~^~417~^30.^4^3.^~1~^~A~^^^1^24.^39.^3^20.^40.^~2, 3~^~03/01/2006~
-~11110~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~
-~11110~^~432~^30.^4^3.^~1~^~A~^^^1^24.^39.^3^20.^40.^^~03/01/2006~
-~11110~^~435~^30.^0^^~4~^~NC~^^^^^^^^^^~03/01/2006~
-~11110~^~601~^0.^0^^~7~^~Z~^^^^^^^^^^~08/01/1984~
-~11110~^~636~^10.^0^^~4~^~BFSN~^~11109~^^^^^^^^^~03/01/2006~
-~11112~^~208~^31.^0^^~4~^~NC~^^^^^^^^^^~06/01/2006~
-~11112~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~12/01/2002~
-~11112~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~12/01/2002~
-~11112~^~268~^130.^0^^~4~^~NC~^^^^^^^^^^~06/01/2006~
-~11112~^~301~^45.^4^1.^~1~^~A~^^^1^43.^48.^3^41.^48.^~2, 3~^~12/01/2002~
-~11112~^~304~^16.^4^1.^~1~^~A~^^^1^14.^20.^3^11.^20.^~2, 3~^~12/01/2002~
-~11112~^~305~^30.^4^1.^~1~^~A~^^^1^27.^35.^3^24.^35.^~2, 3~^~12/01/2002~
-~11112~^~306~^243.^4^11.^~1~^~A~^^^1^221.^274.^3^206.^278.^~2, 3~^~12/01/2002~
-~11112~^~307~^27.^4^1.^~1~^~A~^^^1^26.^33.^3^21.^33.^~2, 3~^~12/01/2002~
-~11112~^~318~^1116.^0^^~1~^~AS~^^^^^^^^^^~06/01/2006~
-~11112~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2002~
-~11112~^~320~^56.^0^^~1~^~AS~^^^^^^^^^^~06/01/2006~
-~11112~^~321~^670.^4^410.^~1~^~A~^^^1^28.^1800.^3^-637.^1977.^~2, 3~^~11/01/2002~
-~11112~^~322~^0.^4^0.^~1~^~A~^^^1^0.^0.^^^^~1, 2, 3~^~11/01/2002~
-~11112~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~
-~11112~^~334~^0.^4^0.^~1~^~A~^^^1^0.^0.^^^^~1, 2, 3~^~11/01/2002~
-~11112~^~337~^20.^4^15.^~1~^~A~^^^1^0.^64.^3^-28.^68.^~1, 2, 3~^~11/01/2002~
-~11112~^~338~^329.^4^254.^~1~^~A~^^^1^31.^1090.^3^-482.^1140.^~2, 3~^~06/01/2006~
-~11112~^~417~^18.^4^0.^~1~^~A~^^^1^16.^19.^3^15.^19.^~2, 3~^~12/01/2002~
-~11112~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~
-~11112~^~432~^18.^4^0.^~1~^~A~^^^1^16.^19.^3^15.^19.^^~06/01/2006~
-~11112~^~435~^18.^0^^~4~^~NC~^^^^^^^^^^~06/01/2006~
-~11112~^~601~^0.^0^^~7~^~Z~^^^^^^^^^^~08/01/1984~
-~11113~^~208~^29.^0^^~4~^~NC~^^^^^^^^^^~03/01/2006~
-~11113~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~12/01/2002~
-~11113~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~12/01/2002~
-~11113~^~268~^122.^0^^~4~^~NC~^^^^^^^^^^~03/01/2006~
-~11113~^~301~^42.^3^2.^~1~^~A~^^^1^36.^46.^2^29.^54.^~2, 3~^~12/01/2002~
-~11113~^~304~^17.^3^1.^~1~^~A~^^^1^16.^20.^2^11.^23.^~2, 3~^~12/01/2002~
-~11113~^~305~^33.^3^2.^~1~^~A~^^^1^30.^39.^2^20.^45.^~2, 3~^~12/01/2002~
-~11113~^~306~^262.^3^28.^~1~^~A~^^^1^212.^309.^2^141.^382.^~2, 3~^~12/01/2002~
-~11113~^~307~^28.^3^1.^~1~^~A~^^^1^25.^31.^2^20.^34.^~2, 3~^~03/01/2006~
-~11113~^~318~^33.^0^^~1~^~AS~^^^^^^^^^^~03/01/2007~
-~11113~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2002~
-~11113~^~320~^2.^0^^~1~^~AS~^^^^^^^^^^~03/01/2007~
-~11113~^~321~^20.^4^12.^~1~^~A~^^^1^3.^54.^3^-18.^57.^~1, 2, 3~^~12/01/2002~
-~11113~^~322~^0.^4^0.^~1~^~A~^^^1^0.^0.^^^^~1, 2, 3~^~12/01/2002~
-~11113~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~
-~11113~^~334~^0.^4^0.^~1~^~A~^^^1^0.^0.^^^^~1, 2, 3~^~12/01/2002~
-~11113~^~337~^0.^4^0.^~1~^~A~^^^1^0.^0.^^^^~1, 2, 3~^~12/01/2002~
-~11113~^~338~^20.^0^^~4~^~NR~^^^^^^^^^^~12/01/2002~
-~11113~^~417~^24.^4^1.^~1~^~A~^^^1^22.^28.^3^20.^28.^~2, 3~^~12/01/2002~
-~11113~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~
-~11113~^~432~^24.^4^1.^~1~^~A~^^^1^22.^28.^3^20.^28.^^~03/01/2006~
-~11113~^~435~^24.^0^^~4~^~NC~^^^^^^^^^^~03/01/2007~
-~11113~^~601~^0.^0^^~7~^~Z~^^^^^^^^^^~08/01/1984~
-~11114~^~208~^27.^0^^~4~^~NC~^^^^^^^^^^~12/01/2006~
-~11114~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~12/01/2002~
-~11114~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~12/01/2002~
-~11114~^~268~^113.^0^^~4~^^^^^^^^^^^~12/01/2006~
-~11114~^~301~^35.^1^^~1~^^^^^^^^^^^~08/01/1984~
-~11114~^~304~^28.^1^^~1~^^^^^^^^^^^~08/01/1984~
-~11114~^~305~^42.^1^^~1~^^^^^^^^^^^~08/01/1984~
-~11114~^~306~^230.^1^^~1~^^^^^^^^^^^~08/01/1984~
-~11114~^~307~^28.^1^^~1~^^^^^^^^^^^~08/01/1984~
-~11114~^~318~^1000.^0^^~4~^~NC~^^^^^^^^^^~12/01/2006~
-~11114~^~319~^0.^0^^~4~^~BNA~^~11116~^^^^^^^^^~12/01/2002~
-~11114~^~320~^50.^0^^~4~^~NC~^^^^^^^^^^~12/01/2006~
-~11114~^~321~^600.^0^^~4~^~BNA~^~11116~^^^^^^^^^~12/01/2002~
-~11114~^~322~^0.^0^^~4~^~BNA~^~11116~^^^^^^^^^~12/01/2002~
-~11114~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~
-~11114~^~334~^0.^0^^~4~^~BNA~^~11116~^^^^^^^^^~12/01/2002~
-~11114~^~337~^0.^0^^~4~^~BFSN~^~11116~^^^^^^^^^~12/01/2002~
-~11114~^~338~^77.^0^^~4~^~BFSN~^~11116~^^^^^^^^^~12/01/2002~
-~11114~^~417~^80.^0^^~4~^^^^^^^^^^^~08/01/1984~
-~11114~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~
-~11114~^~432~^80.^0^^~4~^^^^^^^^^^^~12/01/2006~
-~11114~^~435~^80.^0^^~4~^~NC~^^^^^^^^^^~12/01/2006~
-~11114~^~601~^0.^0^^~7~^~Z~^^^^^^^^^^~08/01/1984~
-~11115~^~208~^24.^0^^~4~^~NC~^^^^^^^^^^~08/01/1984~
-~11115~^~268~^100.^0^^~4~^^^^^^^^^^^
-~11115~^~301~^30.^0^^~1~^^^^^^^^^^^~08/01/1984~
-~11115~^~304~^24.^0^^~1~^^^^^^^^^^^~08/01/1984~
-~11115~^~305~^33.^0^^~1~^^^^^^^^^^^~08/01/1984~
-~11115~^~306~^184.^0^^~1~^^^^^^^^^^^~08/01/1984~
-~11115~^~307~^24.^0^^~1~^^^^^^^^^^^~08/01/1984~
-~11115~^~318~^889.^0^^~1~^^^^^^^^^^^~08/01/1984~
-~11115~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2002~
-~11115~^~320~^44.^0^^~1~^^^^^^^^^^^~06/01/2002~
-~11115~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~
-~11115~^~417~^46.^0^^~4~^^^^^^^^^^^~08/01/1984~
-~11115~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~
-~11115~^~432~^46.^0^^~4~^^^^^^^^^^^~12/01/1984~
-~11115~^~435~^46.^0^^~4~^~NC~^^^^^^^^^^~01/01/2001~
-~11115~^~601~^0.^0^^~7~^~Z~^^^^^^^^^^~08/01/1984~
-~11116~^~208~^13.^0^^~4~^~NC~^^^^^^^^^^~12/01/2006~
-~11116~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~12/01/2002~
-~11116~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~12/01/2002~
-~11116~^~268~^55.^0^^~4~^~NC~^^^^^^^^^^~12/01/2006~
-~11116~^~301~^105.^1^^~1~^^^^^^^^^^^~08/01/1984~
-~11116~^~304~^19.^2^^~1~^^^^^^^^^^^~08/01/1984~
-~11116~^~305~^37.^1^^~1~^^^^^^^^^^^~08/01/1984~
-~11116~^~306~^252.^2^^~1~^^^^^^^^^^^~08/01/1984~
-~11116~^~307~^65.^2^^~1~^^^^^^^^^^^~08/01/1984~
-~11116~^~318~^4468.^0^^~4~^~NC~^^^^^^^^^^~12/01/2006~
-~11116~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2002~
-~11116~^~320~^223.^0^^~4~^~NC~^^^^^^^^^^~12/01/2006~
-~11116~^~321~^2681.^0^^~4~^~T~^^^^^^^^^^~12/01/2002~
-~11116~^~322~^1.^0^^~4~^~O~^^^^^^^^^^~12/01/2002~
-~11116~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~
-~11116~^~334~^0.^0^^~4~^~O~^^^^^^^^^^~12/01/2002~
-~11116~^~337~^0.^0^^~4~^~O~^^^^^^^^^^~12/01/2002~
-~11116~^~338~^40.^0^^~4~^~O~^^^^^^^^^^~12/01/2002~
-~11116~^~417~^66.^0^^~4~^^^^^^^^^^^~08/01/1984~
-~11116~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~
-~11116~^~432~^66.^0^^~4~^^^^^^^^^^^~12/01/2006~
-~11116~^~435~^66.^0^^~4~^~NC~^^^^^^^^^^~12/01/2006~
-~11116~^~601~^0.^0^^~7~^~Z~^^^^^^^^^^~08/01/1984~
-~11117~^~208~^12.^0^^~4~^~NC~^^^^^^^^^^~02/01/2007~
-~11117~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~12/01/2002~
-~11117~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~12/01/2002~
-~11117~^~268~^48.^0^^~4~^~NC~^^^^^^^^^^~02/01/2007~
-~11117~^~301~^93.^1^^~1~^^^^^^^^^^^~08/01/1984~
-~11117~^~304~^11.^1^^~1~^^^^^^^^^^^~08/01/1984~
-~11117~^~305~^29.^1^^~1~^^^^^^^^^^^~08/01/1984~
-~11117~^~306~^371.^1^^~1~^^^^^^^^^^^~08/01/1984~
-~11117~^~307~^34.^1^^~1~^^^^^^^^^^^~08/01/1984~
-~11117~^~318~^4249.^0^^~4~^~NC~^^^^^^^^^^~02/01/2007~
-~11117~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2002~
-~11117~^~320~^212.^0^^~4~^~NC~^^^^^^^^^^~02/01/2007~
-~11117~^~321~^2549.^0^^~4~^~BFSN~^~11116~^^^^^^^^^~12/01/2002~
-~11117~^~322~^1.^0^^~4~^~BFSN~^~11116~^^^^^^^^^~12/01/2002~
-~11117~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~
-~11117~^~334~^0.^0^^~4~^~BFSN~^~11116~^^^^^^^^^~12/01/2002~
-~11117~^~337~^0.^0^^~4~^~BFSN~^~11116~^^^^^^^^^~12/01/2002~
-~11117~^~338~^38.^0^^~4~^~BFSN~^~11116~^^^^^^^^^~12/01/2002~
-~11117~^~417~^41.^0^^~4~^^^^^^^^^^^~08/01/1984~
-~11117~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~
-~11117~^~432~^41.^0^^~4~^^^^^^^^^^^~02/01/2007~
-~11117~^~435~^41.^0^^~4~^~NC~^^^^^^^^^^~02/01/2007~
-~11117~^~601~^0.^0^^~7~^~Z~^^^^^^^^^^~08/01/1984~
-~11118~^~208~^15.^0^^~4~^~NC~^^^^^^^^^^~11/01/2014~
-~11118~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~11/01/2014~
-~11118~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~11/01/2014~
-~11118~^~268~^65.^0^^~4~^~NC~^^^^^^^^^^~11/01/2014~
-~11118~^~301~^33.^1^^~4~^~T~^^^^^^^^^^~11/01/2014~
-~11118~^~304~^14.^0^^~4~^~BFSN~^~11117~^^^^^^^^^~11/01/2014~
-~11118~^~305~^24.^1^^~4~^~T~^^^^^^^^^^~11/01/2014~
-~11118~^~306~^151.^1^^~4~^~T~^^^^^^^^^^~11/01/2014~
-~11118~^~307~^498.^1^^~4~^~T~^^^^^^^^^^~11/01/2014~
-~11118~^~318~^93.^0^^~4~^~NC~^^^^^^^^^^~11/01/2014~
-~11118~^~319~^0.^1^^~4~^~T~^^^^^^^^^^~11/01/2014~
-~11118~^~320~^5.^0^^~4~^~NC~^^^^^^^^^^~11/01/2014~
-~11118~^~321~^55.^1^^~4~^~T~^^^^^^^^^^~11/01/2014~
-~11118~^~322~^1.^0^^~4~^~BFSN~^~11117~^^^^^^^^^~11/01/2014~
-~11118~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~11/01/2014~
-~11118~^~334~^0.^0^^~4~^~BFSN~^~11117~^^^^^^^^^~11/01/2014~
-~11118~^~337~^0.^0^^~4~^~BFSN~^~11117~^^^^^^^^^~11/01/2014~
-~11118~^~338~^49.^0^^~4~^~BFSN~^~11117~^^^^^^^^^~11/01/2014~
-~11118~^~417~^52.^0^^~4~^~BFSN~^~11117~^^^^^^^^^~11/01/2014~
-~11118~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~11/01/2014~
-~11118~^~432~^52.^0^^~4~^~BFSN~^^^^^^^^^^~11/01/2014~
-~11118~^~435~^52.^0^^~4~^~NC~^^^^^^^^^^~11/01/2014~
-~11118~^~601~^0.^0^^~7~^~Z~^^^^^^^^^^~11/01/2014~
-~11119~^~208~^16.^0^^~4~^~NC~^^^^^^^^^^~12/01/2006~
-~11119~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~12/01/2002~
-~11119~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2003~
-~11119~^~268~^67.^0^^~4~^^^^^^^^^^^~12/01/2006~
-~11119~^~301~^77.^3^9.^~1~^^^^^^^^^^^~08/01/1984~
-~11119~^~304~^13.^4^1.^~1~^^^^^^^^^^^~08/01/1984~
-~11119~^~305~^29.^3^4.^~1~^^^^^^^^^^^~08/01/1984~
-~11119~^~306~^238.^9^22.^~1~^^^^^^^^^^^~08/01/1984~
-~11119~^~307~^9.^15^2.^~1~^^^^^^^^^^^~08/01/1984~
-~11119~^~318~^318.^0^^~4~^~NC~^^^^^^^^^^~12/01/2006~
-~11119~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2002~
-~11119~^~320~^16.^0^^~4~^~NC~^^^^^^^^^^~12/01/2006~
-~11119~^~321~^190.^0^^~4~^~T~^^^^^^^^^^~12/01/2002~
-~11119~^~322~^1.^0^^~4~^~BFSN~^~11116~^^^^^^^^^~12/01/2002~
-~11119~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~
-~11119~^~334~^0.^0^^~4~^~BFSN~^~11116~^^^^^^^^^~12/01/2002~
-~11119~^~337~^0.^0^^~4~^~BFSN~^~11116~^^^^^^^^^~12/01/2002~
-~11119~^~338~^48.^0^^~4~^~BFSN~^~11116~^^^^^^^^^~12/01/2002~
-~11119~^~417~^79.^3^6.^~1~^^^^^^^^^^^~08/01/1984~
-~11119~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~
-~11119~^~432~^79.^3^6.^~1~^^^^^^^^^^^~12/01/2006~
-~11119~^~435~^79.^0^^~4~^~NC~^^^^^^^^^^~12/01/2006~
-~11119~^~601~^0.^0^^~7~^~Z~^^^^^^^^^^~08/01/1984~
-~11120~^~208~^14.^0^^~4~^~NC~^^^^^^^^^^~08/01/1984~
-~11120~^~268~^59.^0^^~4~^^^^^^^^^^^
-~11120~^~301~^32.^0^^~1~^^^^^^^^^^^~08/01/1984~
-~11120~^~304~^10.^1^^~1~^^^^^^^^^^^~08/01/1984~
-~11120~^~305~^39.^0^^~1~^^^^^^^^^^^~08/01/1984~
-~11120~^~306~^225.^1^^~1~^^^^^^^^^^^~08/01/1984~
-~11120~^~307~^9.^1^^~1~^^^^^^^^^^^~08/01/1984~
-~11120~^~318~^967.^0^^~1~^^^^^^^^^^^~08/01/1984~
-~11120~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2002~
-~11120~^~320~^48.^0^^~1~^^^^^^^^^^^~06/01/2002~
-~11120~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~
-~11120~^~417~^53.^0^^~1~^^^^^^^^^^^~08/01/1984~
-~11120~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~
-~11120~^~432~^53.^0^^~1~^^^^^^^^^^^~08/01/2001~
-~11120~^~435~^53.^0^^~4~^~NC~^^^^^^^^^^~08/01/2001~
-~11120~^~601~^0.^0^^~7~^~Z~^^^^^^^^^^~08/01/1984~
-~11122~^~208~^17.^0^^~4~^~NC~^^^^^^^^^^~05/01/2006~
-~11122~^~268~^71.^0^^~4~^~NC~^^^^^^^^^^~05/01/2006~
-~11122~^~301~^70.^1^^~1~^^^^^^^^^^^~08/01/1984~
-~11122~^~304~^42.^1^^~1~^^^^^^^^^^^~08/01/1984~
-~11122~^~305~^23.^1^^~1~^^^^^^^^^^^~08/01/1984~
-~11122~^~306~^400.^1^^~1~^^^^^^^^^^^~08/01/1984~
-~11122~^~307~^170.^1^^~1~^^^^^^^^^^^~08/01/1984~
-~11122~^~318~^0.^0^^~1~^~AS~^^^^^^^^^^~05/01/2006~
-~11122~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2002~
-~11122~^~320~^0.^0^^~1~^~AS~^^^^^^^^^^~05/01/2006~
-~11122~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~
-~11122~^~417~^68.^0^^~4~^~BFZN~^~11007~^^^^^^^^^~05/01/2006~
-~11122~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~
-~11122~^~432~^68.^0^^~4~^~BFZN~^^^^^^^^^^~05/01/2006~
-~11122~^~435~^68.^0^^~4~^~NC~^^^^^^^^^^~05/01/2006~
-~11122~^~601~^0.^0^^~7~^~Z~^^^^^^^^^^~08/01/1984~
-~11123~^~208~^22.^0^^~4~^~NC~^^^^^^^^^^~08/01/1984~
-~11123~^~268~^92.^0^^~4~^^^^^^^^^^^
-~11123~^~301~^72.^0^^~1~^^^^^^^^^^^~08/01/1984~
-~11123~^~304~^43.^0^^~1~^^^^^^^^^^^~08/01/1984~
-~11123~^~305~^23.^0^^~1~^^^^^^^^^^^~08/01/1984~
-~11123~^~306~^392.^0^^~1~^^^^^^^^^^^~08/01/1984~
-~11123~^~307~^176.^0^^~1~^^^^^^^^^^^~08/01/1984~
-~11123~^~318~^118.^0^^~1~^^^^^^^^^^^~08/01/1984~
-~11123~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2002~
-~11123~^~320~^6.^0^^~1~^^^^^^^^^^^~06/01/2002~
-~11123~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~
-~11123~^~417~^22.^0^^~4~^^^^^^^^^^^~08/01/1984~
-~11123~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~
-~11123~^~432~^22.^0^^~4~^^^^^^^^^^^~12/01/1984~
-~11123~^~435~^22.^0^^~4~^~NC~^^^^^^^^^^~01/01/2001~
-~11123~^~601~^0.^0^^~7~^~Z~^^^^^^^^^^~08/01/1984~
-~11124~^~208~^41.^0^^~4~^~NC~^^^^^^^^^^~08/01/2007~
-~11124~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~08/01/2002~
-~11124~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~08/01/2002~
-~11124~^~268~^173.^0^^~4~^~NC~^^^^^^^^^^~08/01/2007~
-~11124~^~301~^33.^75^1.^~6~^~JA~^^^7^9.^42.^6^30.^35.^~2~^~03/01/2003~
-~11124~^~304~^12.^75^0.^~6~^~JA~^^^7^7.^19.^6^11.^13.^~2~^~03/01/2003~
-~11124~^~305~^35.^75^0.^~6~^~JA~^^^7^20.^44.^6^32.^36.^~2~^~03/01/2003~
-~11124~^~306~^320.^76^8.^~6~^~JA~^^^7^217.^430.^6^299.^340.^~2~^~03/01/2003~
-~11124~^~307~^69.^81^3.^~6~^~JA~^^^7^23.^104.^6^60.^76.^~2~^~03/01/2003~
-~11124~^~318~^16706.^0^^~4~^~NC~^^^^^^^^^^~08/01/2007~
-~11124~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2002~
-~11124~^~320~^835.^0^^~4~^~NC~^^^^^^^^^^~08/01/2007~
-~11124~^~321~^8285.^197^1082.^~11~^~JO~^^^14^1990.^21000.^20^6027.^10542.^~4~^~08/01/2004~
-~11124~^~322~^3477.^190^531.^~1~^~A~^^^12^910.^9710.^17^2354.^4599.^~4~^~08/01/2004~
-~11124~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~
-~11124~^~334~^0.^45^^~1~^~A~^^^^^^^^^^~08/01/2007~
-~11124~^~337~^1.^8^0.^~1~^~A~^^^2^0.^4.^4^-1.^3.^~1, 4~^~08/01/2004~
-~11124~^~338~^256.^10^62.^~11~^~JO~^^^1^70.^450.^5^95.^417.^~4~^~08/01/2007~
-~11124~^~417~^19.^19^5.^~6~^~JA~^^^2^0.^70.^1^-46.^84.^~2~^~03/01/2003~
-~11124~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~
-~11124~^~432~^19.^19^5.^~6~^~JA~^^^2^0.^70.^1^-46.^84.^^~08/01/2007~
-~11124~^~435~^19.^0^^~4~^~NC~^^^^^^^^^^~08/01/2007~
-~11124~^~601~^0.^0^^~7~^~Z~^^^^^^^^^^~08/01/1984~
-~11125~^~208~^35.^0^^~4~^~NC~^^^^^^^^^^~08/01/2007~
-~11125~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~10/01/2002~
-~11125~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~10/01/2002~
-~11125~^~268~^147.^0^^~4~^~NC~^^^^^^^^^^~08/01/2007~
-~11125~^~301~^30.^4^1.^~1~^~A~^^^1^27.^33.^3^26.^33.^~2, 3~^~04/01/2003~
-~11125~^~304~^10.^4^0.^~1~^~A~^^^1^9.^11.^3^8.^11.^~2, 3~^~04/01/2003~
-~11125~^~305~^30.^4^1.^~1~^~A~^^^1^27.^35.^3^24.^35.^~2, 3~^~04/01/2003~
-~11125~^~306~^235.^4^18.^~1~^~A~^^^1^201.^283.^3^177.^292.^~2, 3~^~04/01/2003~
-~11125~^~307~^58.^4^5.^~1~^~A~^^^1^46.^71.^3^41.^74.^~2, 3~^~04/01/2003~
-~11125~^~318~^17033.^0^^~4~^~NC~^^^^^^^^^^~08/01/2007~
-~11125~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2002~
-~11125~^~320~^852.^0^^~4~^~NC~^^^^^^^^^^~08/01/2007~
-~11125~^~321~^8332.^21^95.^~1~^~A~^^^2^4330.^10775.^3^8029.^8634.^~2, 3~^~04/01/2003~
-~11125~^~322~^3776.^21^47.^~1~^~A~^^^2^2200.^5200.^3^3623.^3928.^~2, 3~^~04/01/2003~
-~11125~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~
-~11125~^~334~^0.^0^^~4~^~BFSN~^~11124~^^^^^^^^^~08/01/2007~
-~11125~^~337~^0.^4^0.^~1~^~A~^^^1^0.^0.^^^^~1, 2, 3~^~04/01/2003~
-~11125~^~338~^687.^4^70.^~1~^~A~^^^1^545.^855.^3^462.^911.^~2, 3~^~08/01/2007~
-~11125~^~417~^14.^12^0.^~1~^^^^^^^^^^^~08/01/2007~
-~11125~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~
-~11125~^~432~^14.^12^0.^~1~^^^^^^^^^^^~08/01/2007~
-~11125~^~435~^14.^0^^~4~^~NC~^^^^^^^^^^~08/01/2007~
-~11125~^~601~^0.^0^^~7~^~Z~^^^^^^^^^^~08/01/1984~
-~11126~^~208~^23.^0^^~4~^~NC~^^^^^^^^^^~04/01/1996~
-~11126~^~268~^96.^0^^~4~^^^^^^^^^^^~03/01/2007~
-~11126~^~301~^31.^152^1.^~1~^~A~^^^^^^^^^^~04/01/1996~
-~11126~^~304~^9.^109^0.^~1~^^^^^^^^^^^~08/01/1984~
-~11126~^~305~^20.^152^0.^~1~^^^^^^^^^^^~08/01/1984~
-~11126~^~306~^173.^116^4.^~1~^^^^^^^^^^^~08/01/1984~
-~11126~^~307~^240.^51^10.^~1~^~A~^^^^^^^^^^~04/01/1996~
-~11126~^~318~^12264.^0^^~4~^~NC~^^^^^^^^^^~03/01/2007~
-~11126~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2002~
-~11126~^~320~^613.^0^^~4~^~NC~^^^^^^^^^^~03/01/2007~
-~11126~^~321~^5940.^0^^~4~^~BFSN~^~11125~^^^^^^^^^~03/01/2007~
-~11126~^~322~^2692.^0^^~4~^~BFSN~^~11125~^^^^^^^^^~03/01/2007~
-~11126~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~
-~11126~^~334~^144.^0^^~4~^~BFSN~^~11125~^^^^^^^^^~03/01/2007~
-~11126~^~337~^0.^0^^~4~^~BFSN~^~11125~^^^^^^^^^~03/01/2007~
-~11126~^~338~^490.^0^^~4~^~BFSN~^~11125~^^^^^^^^^~03/01/2007~
-~11126~^~417~^8.^9^0.^~1~^^^^^^^^^^^~08/01/1984~
-~11126~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~
-~11126~^~432~^8.^9^0.^~1~^^^^^^^^^^^~03/01/2007~
-~11126~^~435~^8.^0^^~4~^~NC~^^^^^^^^^^~03/01/2007~
-~11126~^~601~^0.^0^^~7~^~Z~^^^^^^^^^^~08/01/1984~
-~11128~^~208~^25.^0^^~4~^~NC~^^^^^^^^^^~02/01/2007~
-~11128~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~10/01/2002~
-~11128~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~10/01/2002~
-~11128~^~268~^105.^0^^~4~^^^^^^^^^^^~02/01/2007~
-~11128~^~301~^25.^6^0.^~1~^^^^^^^^^^^~08/01/1984~
-~11128~^~304~^8.^6^0.^~1~^^^^^^^^^^^~08/01/1984~
-~11128~^~305~^24.^6^0.^~1~^^^^^^^^^^^~08/01/1984~
-~11128~^~306~^179.^6^14.^~1~^^^^^^^^^^^~08/01/1984~
-~11128~^~307~^242.^0^^~4~^~BD~^^^^^^^^^^~01/01/1996~
-~11128~^~318~^11170.^0^^~1~^~AS~^^^^^^^^^^~02/01/2007~
-~11128~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2002~
-~11128~^~320~^558.^0^^~1~^~AS~^^^^^^^^^^~02/01/2007~
-~11128~^~321~^5331.^15^84.^~1~^~A~^^^1^3322.^7487.^1^4254.^6406.^~2, 3~^~10/01/2002~
-~11128~^~322~^2743.^14^^~1~^~A~^^^1^1909.^4280.^^^^~2, 3~^~10/01/2002~
-~11128~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~
-~11128~^~334~^0.^4^^~1~^~A~^^^1^0.^0.^^^^~2, 3~^~10/01/2002~
-~11128~^~337~^0.^4^^~1~^~A~^^^1^0.^0.^^^^~2, 3~^~10/01/2002~
-~11128~^~338~^0.^4^^~1~^~A~^^^1^0.^0.^^^^~2, 3~^~10/01/2002~
-~11128~^~417~^9.^6^0.^~1~^^^^^^^^^^^~08/01/1984~
-~11128~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~
-~11128~^~432~^9.^6^0.^~1~^^^^^^^^^^^~02/01/2007~
-~11128~^~435~^9.^0^^~4~^~NC~^^^^^^^^^^~02/01/2007~
-~11128~^~601~^0.^0^^~7~^~Z~^^^^^^^^^^~08/01/1984~
-~11130~^~208~^36.^0^^~4~^~NC~^^^^^^^^^^~08/01/2007~
-~11130~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2003~
-~11130~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2003~
-~11130~^~268~^152.^0^^~4~^~NC~^^^^^^^^^^~08/01/2007~
-~11130~^~301~^36.^5^0.^~1~^~A~^^^1^35.^39.^4^33.^38.^~2, 3~^~01/01/2003~
-~11130~^~304~^12.^5^0.^~1~^~A~^^^1^11.^13.^4^10.^12.^~2, 3~^~01/01/2003~
-~11130~^~305~^33.^5^1.^~1~^~A~^^^1^32.^38.^4^30.^36.^~2, 3~^~01/01/2003~
-~11130~^~306~^235.^5^14.^~1~^~A~^^^1^206.^290.^4^194.^275.^~2, 3~^~01/01/2003~
-~11130~^~307~^68.^5^2.^~1~^~A~^^^1^63.^75.^4^60.^75.^~2, 3~^~01/01/2003~
-~11130~^~318~^14210.^0^^~4~^~NC~^^^^^^^^^^~08/01/2007~
-~11130~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2002~
-~11130~^~320~^710.^0^^~4~^~NC~^^^^^^^^^^~08/01/2007~
-~11130~^~321~^7047.^0^^~4~^~BFSN~^~11124~^^^^^^^^^~02/01/2007~
-~11130~^~322~^2958.^0^^~4~^~BFSN~^~11124~^^^^^^^^^~02/01/2007~
-~11130~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~
-~11130~^~334~^0.^0^^~4~^~BFSN~^~11124~^^^^^^^^^~08/01/2007~
-~11130~^~337~^1.^0^^~4~^~BFSN~^~11124~^^^^^^^^^~02/01/2007~
-~11130~^~338~^218.^0^^~4~^~BFSN~^~11124~^^^^^^^^^~02/01/2007~
-~11130~^~417~^10.^6^0.^~1~^^^^^^^^^^^~08/01/1984~
-~11130~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~08/01/2007~
-~11130~^~432~^10.^6^0.^~1~^^^^^^^^^^^~08/01/2007~
-~11130~^~435~^10.^0^^~4~^~NC~^^^^^^^^^^~08/01/2007~
-~11130~^~601~^0.^0^^~7~^~Z~^^^^^^^^^^~08/01/1984~
-~11131~^~208~^37.^0^^~4~^~NC~^^^^^^^^^^~02/01/2007~
-~11131~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2003~
-~11131~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2003~
-~11131~^~268~^155.^0^^~4~^~NC~^^^^^^^^^^~02/01/2007~
-~11131~^~301~^35.^3^0.^~1~^~A~^^^1^35.^37.^2^32.^38.^~2, 3~^~01/01/2003~
-~11131~^~304~^11.^3^0.^~1~^~A~^^^1^11.^11.^2^10.^11.^~2, 3~^~01/01/2003~
-~11131~^~305~^31.^3^0.^~1~^~A~^^^1^30.^32.^2^28.^32.^~2, 3~^~01/01/2003~
-~11131~^~306~^192.^3^5.^~1~^~A~^^^1^181.^199.^2^168.^216.^~2, 3~^~01/01/2003~
-~11131~^~307~^59.^3^6.^~1~^~A~^^^1^47.^66.^2^32.^84.^~2, 3~^~01/01/2003~
-~11131~^~318~^16928.^0^^~4~^~NC~^^^^^^^^^^~02/01/2007~
-~11131~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2002~
-~11131~^~320~^846.^0^^~4~^~NC~^^^^^^^^^^~02/01/2007~
-~11131~^~321~^8199.^0^^~4~^~BFSN~^~11125~^^^^^^^^^~02/01/2007~
-~11131~^~322~^3716.^0^^~4~^~BFSN~^~11125~^^^^^^^^^~02/01/2007~
-~11131~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~
-~11131~^~334~^199.^0^^~4~^~BFSN~^~11125~^^^^^^^^^~02/01/2007~
-~11131~^~337~^0.^0^^~4~^~BFSN~^~11125~^^^^^^^^^~02/01/2007~
-~11131~^~338~^676.^0^^~4~^~BFSN~^~11125~^^^^^^^^^~02/01/2007~
-~11131~^~417~^11.^6^0.^~1~^^^^^^^^^^^~08/01/1984~
-~11131~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~
-~11131~^~432~^11.^6^0.^~1~^^^^^^^^^^^~02/01/2007~
-~11131~^~435~^11.^0^^~4~^~NC~^^^^^^^^^^~02/01/2007~
-~11131~^~601~^0.^0^^~7~^~Z~^^^^^^^^^^~08/01/1984~
-~11134~^~208~^160.^0^^~4~^~NC~^^^^^^^^^^~02/01/2007~
-~11134~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~12/01/2002~
-~11134~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~12/01/2002~
-~11134~^~268~^667.^0^^~4~^~NC~^^^^^^^^^^~02/01/2007~
-~11134~^~301~^16.^2^^~1~^~A~^^^^^^^^^^~12/01/1996~
-~11134~^~304~^21.^2^^~1~^~A~^^^^^^^^^^~12/01/1996~
-~11134~^~305~^27.^2^^~1~^~A~^^^^^^^^^^~12/01/1996~
-~11134~^~306~^271.^2^^~1~^~A~^^^^^^^^^^~12/01/1996~
-~11134~^~307~^14.^2^^~1~^~A~^^^^^^^^^^~12/01/1996~
-~11134~^~318~^13.^0^^~4~^~NC~^^^^^^^^^^~02/01/2007~
-~11134~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2002~
-~11134~^~320~^1.^0^^~4~^~NC~^^^^^^^^^^~02/01/2007~
-~11134~^~321~^8.^0^^~4~^~T~^^^^^^^^^^~12/01/2002~
-~11134~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~12/01/2002~
-~11134~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~
-~11134~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~12/01/2002~
-~11134~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~12/01/2002~
-~11134~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~12/01/2002~
-~11134~^~417~^27.^2^^~1~^~A~^^^^^^^^^^~12/01/1996~
-~11134~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~
-~11134~^~432~^27.^2^^~1~^~A~^^^^^^^^^^~02/01/2007~
-~11134~^~435~^27.^0^^~4~^~NC~^^^^^^^^^^~02/01/2007~
-~11134~^~601~^0.^0^^~7~^~Z~^^^^^^^^^^~08/01/1984~
-~11135~^~208~^25.^0^^~4~^~NC~^^^^^^^^^^~05/01/2009~
-~11135~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~11/01/2002~
-~11135~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~11/01/2002~
-~11135~^~268~^104.^0^^~4~^~NC~^^^^^^^^^^~05/01/2009~
-~11135~^~301~^22.^23^1.^~6~^~JA~^^^2^21.^24.^19^19.^24.^~2, 3~^~12/01/2008~
-~11135~^~304~^15.^22^0.^~6~^~JA~^^^2^13.^15.^17^13.^15.^~2, 3~^~12/01/2008~
-~11135~^~305~^44.^22^1.^~6~^~JA~^^^2^42.^49.^19^41.^46.^~2, 3~^~12/01/2008~
-~11135~^~306~^299.^24^10.^~6~^~JA~^^^2^271.^303.^19^276.^320.^~2, 3~^~12/01/2008~
-~11135~^~307~^30.^37^2.^~6~^~JA~^^^2^21.^30.^32^24.^34.^~2, 3~^~12/01/2008~
-~11135~^~318~^0.^0^^~1~^~AS~^^^^^^^^^^~12/01/2008~
-~11135~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2002~
-~11135~^~320~^0.^0^^~1~^~AS~^^^^^^^^^^~05/01/2009~
-~11135~^~321~^0.^4^0.^~1~^~A~^^^1^0.^0.^3^0.^0.^~1, 4~^~12/01/2008~
-~11135~^~322~^0.^4^0.^~1~^~A~^^^1^0.^0.^3^0.^0.^~1, 4~^~11/01/2008~
-~11135~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~
-~11135~^~334~^0.^4^0.^~1~^~A~^^^1^0.^0.^3^0.^0.^~1, 4~^~11/01/2008~
-~11135~^~337~^0.^4^0.^~1~^~A~^^^1^0.^0.^3^0.^0.^~1, 4~^~11/01/2008~
-~11135~^~338~^1.^4^0.^~1~^~A~^^^1^1.^1.^3^0.^1.^~4~^~11/01/2008~
-~11135~^~417~^57.^27^5.^~1~^^^^^^^^^^^~08/01/1984~
-~11135~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~
-~11135~^~432~^57.^27^5.^~1~^^^^^^^^^^^~05/01/2009~
-~11135~^~435~^57.^0^^~4~^~NC~^^^^^^^^^^~05/01/2009~
-~11135~^~601~^0.^0^^~7~^~Z~^^^^^^^^^^~08/01/1984~
-~11135~^~636~^18.^0^^~1~^^^^^^^^^^^~08/01/1984~
-~11136~^~208~^23.^0^^~4~^~NC~^^^^^^^^^^~03/01/2006~
-~11136~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~11/01/2002~
-~11136~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~11/01/2002~
-~11136~^~268~^96.^0^^~4~^~NC~^^^^^^^^^^~03/01/2006~
-~11136~^~301~^16.^27^0.^~1~^^^^4^12.^21.^15^15.^17.^~2, 3~^~03/01/2006~
-~11136~^~304~^9.^28^0.^~1~^^^^4^7.^15.^16^8.^10.^~2, 3~^~03/01/2006~
-~11136~^~305~^32.^27^1.^~1~^^^^4^23.^42.^22^29.^34.^~2, 3~^~03/01/2006~
-~11136~^~306~^142.^28^6.^~1~^^^^4^90.^224.^15^127.^155.^~2, 3~^~03/01/2006~
-~11136~^~307~^15.^28^1.^~1~^^^^4^4.^33.^19^11.^17.^~2, 3~^~03/01/2006~
-~11136~^~318~^12.^0^^~4~^~NC~^^^^^^^^^^~03/01/2006~
-~11136~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2002~
-~11136~^~320~^1.^0^^~4~^~NC~^^^^^^^^^^~03/01/2006~
-~11136~^~321~^7.^0^^~4~^~BFSN~^~11135~^^^^^^^^^~11/01/2002~
-~11136~^~322~^0.^0^^~4~^~BFSN~^~11135~^^^^^^^^^~11/01/2002~
-~11136~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~
-~11136~^~334~^0.^0^^~4~^~BFSN~^~11135~^^^^^^^^^~11/01/2002~
-~11136~^~337~^0.^0^^~4~^~BFSN~^~11135~^^^^^^^^^~11/01/2002~
-~11136~^~338~^29.^0^^~4~^~BFSN~^~11135~^^^^^^^^^~11/01/2002~
-~11136~^~417~^44.^8^2.^~1~^^^^^^^^^^^~08/01/1984~
-~11136~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~
-~11136~^~432~^44.^8^2.^~1~^^^^^^^^^^^~03/01/2006~
-~11136~^~435~^44.^0^^~4~^~NC~^^^^^^^^^^~03/01/2006~
-~11136~^~601~^0.^0^^~7~^~Z~^^^^^^^^^^~08/01/1984~
-~11137~^~208~^24.^0^^~4~^~NC~^^^^^^^^^^~08/01/1984~
-~11137~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~11/01/2002~
-~11137~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~11/01/2002~
-~11137~^~268~^100.^0^^~4~^^^^^^^^^^^~02/01/2007~
-~11137~^~301~^22.^40^0.^~1~^^^^^^^^^^^~08/01/1984~
-~11137~^~304~^12.^11^0.^~1~^^^^^^^^^^^~08/01/1984~
-~11137~^~305~^35.^19^1.^~1~^^^^^^^^^^^~08/01/1984~
-~11137~^~306~^193.^13^10.^~1~^^^^^^^^^^^~08/01/1984~
-~11137~^~307~^24.^23^3.^~1~^^^^^^^^^^^~08/01/1984~
-~11137~^~318~^12.^0^^~4~^~NC~^^^^^^^^^^~02/01/2007~
-~11137~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2002~
-~11137~^~320~^1.^0^^~4~^~NC~^^^^^^^^^^~02/01/2007~
-~11137~^~321~^7.^0^^~4~^~BFSN~^~11135~^^^^^^^^^~11/01/2002~
-~11137~^~322~^0.^0^^~4~^~BFSN~^~11135~^^^^^^^^^~11/01/2002~
-~11137~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~
-~11137~^~334~^0.^0^^~4~^~BFSN~^~11135~^^^^^^^^^~11/01/2002~
-~11137~^~337~^0.^0^^~4~^~BFSN~^~11135~^^^^^^^^^~11/01/2002~
-~11137~^~338~^31.^0^^~4~^~BFSN~^~11135~^^^^^^^^^~11/01/2002~
-~11137~^~417~^64.^0^^~1~^^^^^^^^^^^~08/01/1984~
-~11137~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~
-~11137~^~432~^64.^0^^~1~^^^^^^^^^^^~02/01/2007~
-~11137~^~435~^64.^0^^~4~^~NC~^^^^^^^^^^~02/01/2007~
-~11137~^~601~^0.^0^^~7~^~Z~^^^^^^^^^^~08/01/1984~
-~11138~^~208~^19.^0^^~4~^~NC~^^^^^^^^^^~01/01/2007~
-~11138~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~11/01/2002~
-~11138~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~11/01/2002~
-~11138~^~268~^80.^0^^~4~^~NC~^^^^^^^^^^~01/01/2007~
-~11138~^~301~^17.^0^^~1~^^^^^^^^^^^~08/01/1984~
-~11138~^~304~^9.^0^^~1~^^^^^^^^^^^~08/01/1984~
-~11138~^~305~^24.^0^^~1~^^^^^^^^^^^~08/01/1984~
-~11138~^~306~^139.^0^^~1~^^^^^^^^^^^~08/01/1984~
-~11138~^~307~^18.^0^^~1~^^^^^^^^^^^~08/01/1984~
-~11138~^~318~^10.^0^^~4~^~NC~^^^^^^^^^^~01/01/2007~
-~11138~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2002~
-~11138~^~320~^0.^0^^~4~^~NC~^^^^^^^^^^~01/01/2007~
-~11138~^~321~^6.^0^^~4~^~BFSN~^~11137~^^^^^^^^^~11/01/2002~
-~11138~^~322~^0.^0^^~4~^~BFSN~^~11137~^^^^^^^^^~11/01/2002~
-~11138~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~
-~11138~^~334~^0.^0^^~4~^~BFSN~^~11137~^^^^^^^^^~11/01/2002~
-~11138~^~337~^0.^0^^~4~^~BFSN~^~11137~^^^^^^^^^~11/01/2002~
-~11138~^~338~^24.^0^^~4~^~BFSN~^~11137~^^^^^^^^^~11/01/2002~
-~11138~^~417~^41.^0^^~1~^^^^^^^^^^^~08/01/1984~
-~11138~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~
-~11138~^~432~^41.^0^^~1~^^^^^^^^^^^~01/01/2007~
-~11138~^~435~^41.^0^^~4~^~NC~^^^^^^^^^^~01/01/2007~
-~11138~^~601~^0.^0^^~7~^~Z~^^^^^^^^^^~08/01/1984~
-~11141~^~208~^42.^0^^~4~^~NC~^^^^^^^^^^~03/01/1997~
-~11141~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~11/01/2002~
-~11141~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~11/01/2002~
-~11141~^~268~^176.^0^^~4~^^^^^^^^^^^~02/01/2007~
-~11141~^~301~^43.^1^^~1~^^^^^^^^^^^~08/01/1984~
-~11141~^~304~^20.^1^^~1~^^^^^^^^^^^~08/01/1984~
-~11141~^~305~^115.^1^^~1~^^^^^^^^^^^~08/01/1984~
-~11141~^~306~^300.^1^^~1~^^^^^^^^^^^~08/01/1984~
-~11141~^~307~^100.^1^^~1~^^^^^^^^^^^~08/01/1984~
-~11141~^~318~^0.^0^^~4~^~NC~^^^^^^^^^^~02/01/2007~
-~11141~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2002~
-~11141~^~320~^0.^0^^~4~^~NC~^^^^^^^^^^~02/01/2007~
-~11141~^~321~^0.^0^^~4~^~T~^^^^^^^^^^~11/01/2002~
-~11141~^~322~^0.^0^^~4~^~T~^^^^^^^^^^~11/01/2002~
-~11141~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~
-~11141~^~334~^0.^0^^~4~^~T~^^^^^^^^^^~11/01/2002~
-~11141~^~337~^0.^0^^~4~^~T~^^^^^^^^^^~11/01/2002~
-~11141~^~338~^1.^0^^~4~^~T~^^^^^^^^^^~11/01/2002~
-~11141~^~417~^8.^0^^~4~^^^^^^^^^^^~08/01/1984~
-~11141~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~
-~11141~^~432~^8.^0^^~4~^^^^^^^^^^^~02/01/2007~
-~11141~^~435~^8.^0^^~4~^~NC~^^^^^^^^^^~02/01/2007~
-~11141~^~601~^0.^0^^~7~^~Z~^^^^^^^^^^~08/01/1984~
-~11142~^~208~^27.^0^^~4~^~NC~^^^^^^^^^^~03/01/1997~
-~11142~^~268~^113.^0^^~4~^^^^^^^^^^^
-~11142~^~301~^26.^0^^~1~^^^^^^^^^^^~08/01/1984~
-~11142~^~304~^12.^0^^~1~^^^^^^^^^^^~08/01/1984~
-~11142~^~305~^66.^0^^~1~^^^^^^^^^^^~08/01/1984~
-~11142~^~306~^173.^0^^~1~^^^^^^^^^^^~08/01/1984~
-~11142~^~307~^61.^0^^~1~^^^^^^^^^^^~08/01/1984~
-~11142~^~318~^0.^0^^~1~^^^^^^^^^^^~08/01/1984~
-~11142~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2002~
-~11142~^~320~^0.^0^^~1~^^^^^^^^^^^~06/01/2002~
-~11142~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~
-~11142~^~417~^3.^0^^~4~^^^^^^^^^^^~08/01/1984~
-~11142~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~
-~11142~^~432~^3.^0^^~4~^^^^^^^^^^^~12/01/1984~
-~11142~^~435~^3.^0^^~4~^~NC~^^^^^^^^^^~01/01/2001~
-~11142~^~601~^0.^0^^~7~^~Z~^^^^^^^^^^~08/01/1984~
-~11143~^~208~^14.^0^^~4~^~NC~^^^^^^^^^^~01/01/2017~
-~11143~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~08/01/2002~
-~11143~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~08/01/2002~
-~11143~^~268~^57.^0^^~4~^~NC~^^^^^^^^^^~01/01/2017~
-~11143~^~301~^40.^55^1.^~6~^~JA~^^^7^11.^71.^54^37.^43.^~4~^~08/01/2002~
-~11143~^~304~^11.^56^0.^~6~^~JA~^^^7^5.^19.^55^9.^11.^~4~^~08/01/2002~
-~11143~^~305~^24.^55^0.^~6~^~JA~^^^7^11.^37.^54^22.^25.^~4~^~09/01/2002~
-~11143~^~306~^260.^56^7.^~6~^~JA~^^^7^131.^443.^55^244.^276.^~4~^~09/01/2002~
-~11143~^~307~^80.^56^3.^~6~^~JA~^^^7^30.^132.^55^72.^86.^~4~^~09/01/2002~
-~11143~^~318~^449.^0^^~1~^~AS~^^^^^^^^^^~08/01/2006~
-~11143~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2002~
-~11143~^~320~^22.^0^^~1~^~AS~^^^^^^^^^^~08/01/2006~
-~11143~^~321~^270.^6^35.^~1~^~A~^^^2^121.^495.^3^156.^382.^~2, 3~^~08/01/2002~
-~11143~^~322~^0.^6^0.^~1~^~A~^^^2^0.^0.^^^^~1, 2, 3~^~05/01/2003~
-~11143~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~
-~11143~^~334~^0.^6^0.^~1~^~A~^^^2^0.^0.^^^^~1, 2, 3~^~05/01/2003~
-~11143~^~337~^0.^6^0.^~1~^~A~^^^2^0.^0.^^^^~1, 2, 3~^~05/01/2003~
-~11143~^~338~^283.^6^37.^~1~^~A~^^^2^170.^467.^3^165.^401.^~2, 3~^~08/01/2002~
-~11143~^~417~^36.^8^10.^~1~^~A~^^^2^11.^114.^3^3.^68.^~2, 3~^~05/01/2003~
-~11143~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~
-~11143~^~432~^36.^8^10.^~1~^~A~^^^2^11.^114.^3^3.^68.^^~03/01/2006~
-~11143~^~435~^36.^0^^~4~^~NC~^^^^^^^^^^~08/01/2006~
-~11143~^~601~^0.^0^^~7~^~Z~^^^^^^^^^^~08/01/1984~
-~11143~^~636~^6.^1^^~1~^^^^^^^^^^^~03/01/2006~
-~11144~^~208~^18.^0^^~4~^~NC~^^^^^^^^^^~02/01/2007~
-~11144~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~09/01/2002~
-~11144~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~09/01/2002~
-~11144~^~268~^74.^0^^~4~^~NC~^^^^^^^^^^~02/01/2007~
-~11144~^~301~^42.^0^^~1~^^^^^^^^^^^~08/01/1984~
-~11144~^~304~^12.^0^^~1~^^^^^^^^^^^~08/01/1984~
-~11144~^~305~^25.^0^^~1~^^^^^^^^^^^~08/01/1984~
-~11144~^~306~^284.^0^^~1~^^^^^^^^^^^~08/01/1984~
-~11144~^~307~^91.^0^^~1~^^^^^^^^^^^~08/01/1984~
-~11144~^~318~^521.^0^^~4~^~NC~^^^^^^^^^^~02/01/2007~
-~11144~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2002~
-~11144~^~320~^26.^0^^~4~^~NC~^^^^^^^^^^~02/01/2007~
-~11144~^~321~^313.^0^^~4~^~BFSY~^~11143~^^^^^^^^^~02/01/2007~
-~11144~^~322~^0.^0^^~4~^~BFSY~^~11143~^^^^^^^^^~02/01/2007~
-~11144~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~
-~11144~^~334~^0.^0^^~4~^~BFSY~^~11143~^^^^^^^^^~02/01/2007~
-~11144~^~337~^0.^0^^~4~^~BFSY~^~11143~^^^^^^^^^~02/01/2007~
-~11144~^~338~^329.^0^^~4~^~BFSY~^~11143~^^^^^^^^^~02/01/2007~
-~11144~^~417~^33.^0^^~4~^~BFSY~^~11143~^^^^^^^^^~11/01/2011~
-~11144~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~
-~11144~^~432~^33.^0^^~4~^~BFSY~^^^^^^^^^^~11/01/2011~
-~11144~^~435~^33.^0^^~4~^~NC~^^^^^^^^^^~11/01/2011~
-~11144~^~601~^0.^0^^~7~^~Z~^^^^^^^^^^~08/01/1984~
-~11144~^~636~^7.^0^^~1~^^^^^^^^^^^~08/01/1984~
-~11145~^~208~^18.^0^^~4~^~NC~^^^^^^^^^^~03/01/1997~
-~11145~^~268~^75.^0^^~4~^^^^^^^^^^^
-~11145~^~301~^39.^2^^~1~^^^^^^^^^^^~08/01/1984~
-~11145~^~304~^28.^2^^~1~^^^^^^^^^^^~08/01/1984~
-~11145~^~305~^39.^2^^~1~^^^^^^^^^^^~08/01/1984~
-~11145~^~306~^330.^2^^~1~^^^^^^^^^^^~08/01/1984~
-~11145~^~307~^11.^2^^~1~^^^^^^^^^^^~08/01/1984~
-~11145~^~318~^3500.^1^^~1~^^^^^^^^^^^~08/01/1984~
-~11145~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2002~
-~11145~^~320~^175.^1^^~1~^^^^^^^^^^^~06/01/2002~
-~11145~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~
-~11145~^~417~^46.^0^^~4~^^^^^^^^^^^~08/01/1984~
-~11145~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~
-~11145~^~432~^46.^0^^~4~^^^^^^^^^^^~12/01/1984~
-~11145~^~435~^46.^0^^~4~^~NC~^^^^^^^^^^~01/01/2001~
-~11145~^~601~^0.^0^^~7~^~Z~^^^^^^^^^^~08/01/1984~
-~11145~^~636~^11.^0^^~1~^^^^^^^^^^^~08/01/1984~
-~11147~^~208~^19.^0^^~4~^~NC~^^^^^^^^^^~01/01/2007~
-~11147~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~12/01/2002~
-~11147~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~12/01/2002~
-~11147~^~268~^79.^0^^~4~^^^^^^^^^^^~01/01/2007~
-~11147~^~301~^51.^1^^~1~^^^^^^^^^^^~08/01/1984~
-~11147~^~304~^81.^2^^~1~^^^^^^^^^^^~08/01/1984~
-~11147~^~305~^46.^1^^~1~^^^^^^^^^^^~08/01/1984~
-~11147~^~306~^379.^2^^~1~^^^^^^^^^^^~08/01/1984~
-~11147~^~307~^213.^2^^~1~^^^^^^^^^^^~08/01/1984~
-~11147~^~318~^6116.^0^^~1~^~AS~^^^^^^^^^^~01/01/2007~
-~11147~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2002~
-~11147~^~320~^306.^0^^~1~^~AS~^^^^^^^^^^~01/01/2007~
-~11147~^~321~^3647.^69^921.^~1~^~A~^^^1^2725.^4568.^1^-8062.^15356.^~4~^~12/01/2002~
-~11147~^~322~^45.^69^12.^~1~^~A~^^^1^32.^58.^1^-116.^206.^~4~^~12/01/2002~
-~11147~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~
-~11147~^~334~^0.^17^^~1~^~A~^^^^^^^^^^~12/01/2002~
-~11147~^~337~^0.^0^^~4~^~T~^^^^^^^^^^~12/01/2002~
-~11147~^~338~^11000.^0^^~4~^~T~^^^^^^^^^^~12/01/2002~
-~11147~^~417~^14.^0^^~4~^^^^^^^^^^^~08/01/1984~
-~11147~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~
-~11147~^~432~^14.^0^^~4~^^^^^^^^^^^~01/01/2007~
-~11147~^~435~^14.^0^^~4~^~NC~^^^^^^^^^^~01/01/2007~
-~11147~^~601~^0.^0^^~7~^~Z~^^^^^^^^^^~08/01/1984~
-~11148~^~208~^20.^0^^~4~^~NC~^^^^^^^^^^~01/01/2007~
-~11148~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~12/01/2002~
-~11148~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~12/01/2002~
-~11148~^~268~^84.^0^^~4~^~NC~^^^^^^^^^^~01/01/2007~
-~11148~^~301~^58.^1^^~1~^^^^^^^^^^^~08/01/1984~
-~11148~^~304~^86.^1^^~1~^^^^^^^^^^^~08/01/1984~
-~11148~^~305~^33.^1^^~1~^^^^^^^^^^^~08/01/1984~
-~11148~^~306~^549.^1^^~1~^^^^^^^^^^^~08/01/1984~
-~11148~^~307~^179.^1^^~1~^^^^^^^^^^^~08/01/1984~
-~11148~^~318~^6124.^0^^~4~^~NC~^^^^^^^^^^~01/01/2007~
-~11148~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2002~
-~11148~^~320~^306.^0^^~4~^~NC~^^^^^^^^^^~01/01/2007~
-~11148~^~321~^3652.^0^^~4~^~BFSN~^~11147~^^^^^^^^^~12/01/2002~
-~11148~^~322~^45.^0^^~4~^~BFSN~^~11147~^^^^^^^^^~12/01/2002~
-~11148~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~
-~11148~^~334~^0.^0^^~4~^~BFSN~^~11147~^^^^^^^^^~12/01/2002~
-~11148~^~337~^0.^0^^~4~^~BFSN~^~11147~^^^^^^^^^~12/01/2002~
-~11148~^~338~^11015.^0^^~4~^~BFSN~^~11147~^^^^^^^^^~12/01/2002~
-~11148~^~417~^9.^0^^~4~^^^^^^^^^^^~08/01/1984~
-~11148~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~
-~11148~^~432~^9.^0^^~4~^^^^^^^^^^^~01/01/2007~
-~11148~^~435~^9.^0^^~4~^~NC~^^^^^^^^^^~01/01/2007~
-~11148~^~601~^0.^0^^~7~^~Z~^^^^^^^^^^~08/01/1984~
-~11149~^~208~^19.^0^^~4~^~NC~^^^^^^^^^^~03/01/2007~
-~11149~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~12/01/2002~
-~11149~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~12/01/2002~
-~11149~^~268~^80.^0^^~4~^~NC~^^^^^^^^^^~03/01/2007~
-~11149~^~301~^17.^3^0.^~1~^~A~^^^^^^^^^^~12/01/1996~
-~11149~^~304~^12.^3^1.^~1~^~A~^^^^^^^^^^~12/01/1996~
-~11149~^~305~^18.^3^3.^~1~^~A~^^^^^^^^^^~12/01/1996~
-~11149~^~306~^125.^3^10.^~1~^~A~^^^^^^^^^^~12/01/1996~
-~11149~^~307~^2.^2^^~1~^~A~^^^^^^^^^^~12/01/1996~
-~11149~^~318~^0.^0^^~1~^~AS~^^^^^^^^^^~03/01/2007~
-~11149~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2002~
-~11149~^~320~^0.^0^^~1~^~AS~^^^^^^^^^^~03/01/2007~
-~11149~^~321~^0.^2^^~1~^~A~^^^^^^^^^^~12/01/2002~
-~11149~^~322~^0.^2^^~1~^~A~^^^^^^^^^^~12/01/2002~
-~11149~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~
-~11149~^~334~^0.^2^^~1~^~A~^^^^^^^^^^~12/01/2002~
-~11149~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~12/01/2002~
-~11149~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~12/01/2002~
-~11149~^~417~^93.^3^28.^~1~^~A~^^^^^^^^^^~12/01/1996~
-~11149~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~
-~11149~^~432~^93.^3^28.^~1~^~A~^^^^^^^^^^~03/01/2007~
-~11149~^~435~^93.^0^^~4~^~NC~^^^^^^^^^^~03/01/2007~
-~11149~^~601~^0.^0^^~7~^~Z~^^^^^^^^^^~08/01/1984~
-~11150~^~208~^24.^0^^~4~^~NC~^^^^^^^^^^~08/01/1984~
-~11150~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~11/01/2014~
-~11150~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~11/01/2014~
-~11150~^~268~^100.^0^^~4~^^^^^^^^^^^
-~11150~^~301~^13.^1^^~1~^^^^^^^^^^^~08/01/1984~
-~11150~^~304~^12.^1^^~1~^^^^^^^^^^^~08/01/1984~
-~11150~^~305~^29.^1^^~1~^^^^^^^^^^^~08/01/1984~
-~11150~^~306~^173.^1^^~1~^^^^^^^^^^^~08/01/1984~
-~11150~^~307~^1.^1^^~1~^^^^^^^^^^^~08/01/1984~
-~11150~^~318~^0.^0^^~4~^~NC~^^^^^^^^^^~07/01/2015~
-~11150~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2002~
-~11150~^~320~^0.^0^^~4~^~NC~^^^^^^^^^^~11/01/2014~
-~11150~^~321~^0.^0^^~4~^~BFSY~^~11149~^^^^^^^^^~11/01/2014~
-~11150~^~322~^0.^0^^~4~^~BFSY~^~11149~^^^^^^^^^~11/01/2014~
-~11150~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~
-~11150~^~334~^0.^0^^~4~^~BFSY~^~11149~^^^^^^^^^~11/01/2014~
-~11150~^~337~^0.^0^^~4~^~BFSY~^~11149~^^^^^^^^^~11/01/2014~
-~11150~^~338~^0.^0^^~4~^~BFSY~^~11149~^^^^^^^^^~11/01/2014~
-~11150~^~417~^18.^0^^~4~^^^^^^^^^^^~08/01/1984~
-~11150~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~
-~11150~^~432~^18.^0^^~4~^^^^^^^^^^^~12/01/1984~
-~11150~^~435~^18.^0^^~4~^~NC~^^^^^^^^^^~01/01/2001~
-~11150~^~601~^0.^0^^~7~^~Z~^^^^^^^^^^~08/01/1984~
-~11151~^~208~^17.^0^^~4~^~NC~^^^^^^^^^^~08/01/1984~
-~11151~^~268~^71.^0^^~4~^^^^^^^^^^^
-~11151~^~301~^19.^4^1.^~1~^^^^^^^^^^^~08/01/1984~
-~11151~^~304~^10.^4^0.^~1~^^^^^^^^^^^~08/01/1984~
-~11151~^~305~^26.^4^1.^~1~^^^^^^^^^^^~08/01/1984~
-~11151~^~306~^211.^6^9.^~1~^^^^^^^^^^^~08/01/1984~
-~11151~^~307~^2.^4^0.^~1~^^^^^^^^^^^~08/01/1984~
-~11151~^~318~^29.^4^7.^~1~^^^^^^^^^^^~08/01/1984~
-~11151~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2002~
-~11151~^~320~^1.^4^0.^~1~^^^^^^^^^^^~06/01/2002~
-~11151~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~
-~11151~^~417~^37.^4^1.^~1~^^^^^^^^^^^~08/01/1984~
-~11151~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~
-~11151~^~432~^37.^4^1.^~1~^^^^^^^^^^^~12/01/1984~
-~11151~^~435~^37.^0^^~4~^~NC~^^^^^^^^^^~01/01/2001~
-~11151~^~601~^0.^0^^~7~^~Z~^^^^^^^^^^~08/01/1984~
-~11152~^~208~^23.^0^^~4~^~NC~^^^^^^^^^^~03/01/2007~
-~11152~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~12/01/2002~
-~11152~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~12/01/2002~
-~11152~^~268~^96.^0^^~4~^^^^^^^^^^^~03/01/2007~
-~11152~^~301~^100.^1^^~1~^^^^^^^^^^^~08/01/1984~
-~11152~^~304~^30.^1^^~1~^^^^^^^^^^^~08/01/1984~
-~11152~^~305~^47.^1^^~1~^^^^^^^^^^^~08/01/1984~
-~11152~^~306~^420.^1^^~1~^^^^^^^^^^^~08/01/1984~
-~11152~^~307~^45.^1^^~1~^^^^^^^^^^^~08/01/1984~
-~11152~^~318~^5717.^0^^~4~^~NC~^^^^^^^^^^~06/01/2007~
-~11152~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2002~
-~11152~^~320~^286.^0^^~4~^~NC~^^^^^^^^^^~06/01/2007~
-~11152~^~321~^3430.^0^^~4~^~T~^^^^^^^^^^~12/01/2002~
-~11152~^~322~^0.^0^^~4~^~T~^^^^^^^^^^~12/01/2002~
-~11152~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~
-~11152~^~334~^0.^0^^~4~^~T~^^^^^^^^^^~12/01/2002~
-~11152~^~337~^0.^0^^~4~^~T~^^^^^^^^^^~12/01/2002~
-~11152~^~338~^10300.^0^^~4~^~T~^^^^^^^^^^~12/01/2002~
-~11152~^~417~^110.^0^^~4~^^^^^^^^^^^~08/01/1984~
-~11152~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~
-~11152~^~432~^110.^0^^~4~^^^^^^^^^^^~03/01/2007~
-~11152~^~435~^110.^0^^~4~^~NC~^^^^^^^^^^~06/01/2007~
-~11152~^~601~^0.^0^^~7~^~Z~^^^^^^^^^^~08/01/1984~
-~11154~^~208~^72.^0^^~4~^~NC~^^^^^^^^^^~05/01/2009~
-~11154~^~268~^303.^0^^~4~^~NC~^^^^^^^^^^~05/01/2009~
-~11154~^~301~^41.^1^^~1~^^^^^^^^^^^~08/01/1984~
-~11154~^~304~^22.^1^^~1~^^^^^^^^^^^~08/01/1984~
-~11154~^~305~^61.^1^^~1~^^^^^^^^^^^~08/01/1984~
-~11154~^~306~^290.^1^^~1~^^^^^^^^^^^~08/01/1984~
-~11154~^~307~^50.^1^^~1~^^^^^^^^^^^~08/01/1984~
-~11154~^~318~^6.^1^^~1~^^^^^^^^^^^~08/01/1984~
-~11154~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2002~
-~11154~^~320~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2009~
-~11154~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~
-~11154~^~417~^23.^0^^~4~^^^^^^^^^^^~08/01/1984~
-~11154~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~
-~11154~^~432~^23.^0^^~4~^^^^^^^^^^^~05/01/2009~
-~11154~^~435~^23.^0^^~4~^~NC~^^^^^^^^^^~05/01/2009~
-~11154~^~601~^0.^0^^~7~^~Z~^^^^^^^^^^~08/01/1984~
-~11156~^~208~^30.^0^^~4~^~NC~^^^^^^^^^^~03/01/2007~
-~11156~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~12/01/2002~
-~11156~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~12/01/2002~
-~11156~^~268~^126.^0^^~4~^^^^^^^^^^^~03/01/2007~
-~11156~^~301~^92.^3^22.^~1~^^^^^^^^^^^~08/01/1984~
-~11156~^~304~^42.^3^6.^~1~^^^^^^^^^^^~08/01/1984~
-~11156~^~305~^58.^3^4.^~1~^^^^^^^^^^^~08/01/1984~
-~11156~^~306~^296.^3^32.^~1~^^^^^^^^^^^~08/01/1984~
-~11156~^~307~^3.^3^1.^~1~^^^^^^^^^^^~08/01/1984~
-~11156~^~318~^4353.^0^^~4~^~NC~^^^^^^^^^^~03/01/2007~
-~11156~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2002~
-~11156~^~320~^218.^0^^~4~^~NC~^^^^^^^^^^~03/01/2007~
-~11156~^~321~^2612.^0^^~4~^~O~^^^^^^^^^^~12/01/2002~
-~11156~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~12/01/2002~
-~11156~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~
-~11156~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~12/01/2002~
-~11156~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~12/01/2002~
-~11156~^~338~^323.^0^^~4~^~T~^^^^^^^^^^~12/01/2002~
-~11156~^~417~^105.^2^^~1~^^^^^^^^^^^~08/01/1984~
-~11156~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~
-~11156~^~432~^105.^2^^~1~^^^^^^^^^^^~03/01/2007~
-~11156~^~435~^105.^0^^~4~^~NC~^^^^^^^^^^~03/01/2007~
-~11156~^~601~^0.^0^^~7~^~Z~^^^^^^^^^^~08/01/1984~
-~11156~^~636~^9.^1^^~1~^^^^^^^^^^^~08/01/1984~
-~11157~^~208~^24.^0^^~4~^~NC~^^^^^^^^^^~07/01/2003~
-~11157~^~268~^99.^0^^~4~^~NC~^^^^^^^^^^~07/01/2003~
-~11157~^~301~^117.^2^^~1~^~A~^^^1^97.^137.^^^^^~07/01/2003~
-~11157~^~304~^32.^2^^~1~^~A~^^^1^27.^36.^^^^^~07/01/2003~
-~11157~^~305~^54.^2^^~1~^~A~^^^1^50.^58.^^^^^~07/01/2003~
-~11157~^~306~^567.^2^^~1~^~A~^^^1^484.^650.^^^^^~07/01/2003~
-~11157~^~307~^118.^2^^~1~^~A~^^^1^113.^123.^^^^^~07/01/2003~
-~11157~^~318~^2320.^0^^~1~^~AS~^^^^^^^^^^~07/01/2003~
-~11157~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2002~
-~11157~^~320~^116.^0^^~1~^~AS~^^^^^^^^^^~07/01/2003~
-~11157~^~321~^1380.^4^191.^~1~^~A~^^^3^696.^1750.^2^556.^2203.^~2~^~07/01/2003~
-~11157~^~322~^0.^1^^~1~^~A~^^^^^^^^^^~07/01/2003~
-~11157~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~
-~11157~^~334~^24.^2^^~1~^~A~^^^2^0.^48.^1^^^^~07/01/2003~
-~11157~^~338~^3834.^1^^~1~^~A~^^^^^^^^^^~07/01/2003~
-~11157~^~417~^177.^2^^~1~^~A~^^^1^101.^253.^^^^^~07/01/2003~
-~11157~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~
-~11157~^~432~^177.^2^^~1~^~A~^^^^^^^^^^~07/01/2003~
-~11157~^~435~^177.^0^^~4~^~NC~^^^^^^^^^^~07/01/2003~
-~11157~^~601~^0.^0^^~7~^~Z~^^^^^^^^^^~08/01/1984~
-~11158~^~208~^20.^0^^~4~^~NC~^^^^^^^^^^~03/01/2007~
-~11158~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~12/01/2002~
-~11158~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~12/01/2002~
-~11158~^~268~^84.^0^^~4~^^^^^^^^^^^~03/01/2007~
-~11158~^~301~^69.^1^^~1~^^^^^^^^^^^~08/01/1984~
-~11158~^~304~^18.^1^^~1~^^^^^^^^^^^~08/01/1984~
-~11158~^~305~^43.^1^^~1~^^^^^^^^^^^~08/01/1984~
-~11158~^~306~^569.^1^^~1~^^^^^^^^^^^~08/01/1984~
-~11158~^~307~^53.^1^^~1~^^^^^^^^^^^~08/01/1984~
-~11158~^~318~^2572.^0^^~1~^~AS~^^^^^^^^^^~03/01/2007~
-~11158~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2002~
-~11158~^~320~^129.^0^^~1~^~AS~^^^^^^^^^^~03/01/2007~
-~11158~^~321~^1543.^4^98.^~1~^~A~^^^1^1280.^1750.^3^1230.^1855.^~4~^~12/01/2002~
-~11158~^~322~^0.^1^^~1~^~A~^^^^^^^^^^~12/01/2002~
-~11158~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~
-~11158~^~334~^0.^1^^~1~^~A~^^^^^^^^^^~12/01/2002~
-~11158~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~12/01/2002~
-~11158~^~338~^3467.^3^238.^~1~^~A~^^^1^3019.^3834.^2^2440.^4494.^~4~^~12/01/2002~
-~11158~^~417~^50.^0^^~4~^^^^^^^^^^^~08/01/1984~
-~11158~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~
-~11158~^~432~^50.^0^^~4~^^^^^^^^^^^~03/01/2007~
-~11158~^~435~^50.^0^^~4~^~NC~^^^^^^^^^^~03/01/2007~
-~11158~^~601~^0.^0^^~7~^~Z~^^^^^^^^^^~08/01/1984~
-~11161~^~208~^32.^0^^~4~^~NC~^^^^^^^^^^~08/01/2012~
-~11161~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~12/01/2002~
-~11161~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~12/01/2002~
-~11161~^~268~^133.^0^^~4~^~NC~^^^^^^^^^^~08/01/2012~
-~11161~^~301~^232.^6^10.^~1~^~A~^^^2^145.^308.^3^199.^264.^~2, 3~^~08/01/2012~
-~11161~^~304~^27.^14^2.^~6~^~JA~^^^2^9.^89.^3^18.^36.^~2, 3~^~08/01/2012~
-~11161~^~305~^25.^14^1.^~6~^~JA~^^^2^10.^74.^3^21.^29.^~2, 3~^~08/01/2012~
-~11161~^~306~^213.^20^31.^~6~^~JA~^^^2^169.^439.^16^146.^279.^~2, 3~^~08/01/2012~
-~11161~^~307~^17.^20^5.^~6~^~JA~^^^2^4.^20.^15^5.^28.^~2, 3~^~08/01/2012~
-~11161~^~318~^5019.^0^^~1~^~AS~^^^^^^^^^^~08/01/2012~
-~11161~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2002~
-~11161~^~320~^251.^0^^~1~^~AS~^^^^^^^^^^~08/01/2012~
-~11161~^~321~^2991.^6^207.^~1~^~A~^^^2^998.^5400.^3^2328.^3652.^~2, 3~^~08/01/2012~
-~11161~^~322~^14.^4^8.^~1~^~A~^^^1^0.^31.^3^-11.^39.^~1, 2, 3~^~08/01/2012~
-~11161~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~
-~11161~^~334~^28.^4^6.^~1~^~A~^^^1^18.^45.^3^8.^47.^~2, 3~^~08/01/2012~
-~11161~^~337~^0.^4^0.^~1~^~A~^^^1^0.^0.^^^^~1, 2, 3~^~08/01/2012~
-~11161~^~338~^4323.^4^614.^~1~^~A~^^^1^3129.^5991.^3^2365.^6279.^~2, 3~^~08/01/2012~
-~11161~^~417~^129.^4^6.^~1~^~A~^^^2^81.^166.^1^52.^206.^~2, 3~^~08/01/2012~
-~11161~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~
-~11161~^~432~^129.^4^6.^~1~^~A~^^^2^81.^166.^1^52.^206.^^~08/01/2012~
-~11161~^~435~^129.^0^^~4~^~NC~^^^^^^^^^^~08/01/2012~
-~11161~^~601~^0.^0^^~7~^~Z~^^^^^^^^^^~08/01/1984~
-~11162~^~208~^33.^0^^~4~^~NC~^^^^^^^^^^~08/01/2012~
-~11162~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~11/01/2002~
-~11162~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~11/01/2002~
-~11162~^~268~^137.^0^^~4~^~NC~^^^^^^^^^^~08/01/2012~
-~11162~^~301~^141.^29^7.^~6~^~JA~^^^5^50.^229.^19^125.^156.^~2, 3~^~08/01/2012~
-~11162~^~304~^21.^30^0.^~6~^~JA~^^^5^8.^33.^17^19.^23.^~2, 3~^~08/01/2012~
-~11162~^~305~^32.^29^1.^~6~^~JA~^^^5^16.^51.^19^28.^35.^~2, 3~^~08/01/2012~
-~11162~^~306~^117.^30^8.^~6~^~JA~^^^5^29.^226.^23^100.^133.^~2, 3~^~08/01/2012~
-~11162~^~307~^15.^30^1.^~6~^~JA~^^^5^2.^39.^20^11.^17.^~2, 3~^~08/01/2012~
-~11162~^~318~^7600.^0^^~1~^~AS~^^^^^^^^^^~08/01/2012~
-~11162~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2002~
-~11162~^~320~^380.^0^^~1~^~AS~^^^^^^^^^^~08/01/2012~
-~11162~^~321~^4513.^11^^~1~^~A~^^^2^1510.^5427.^^^^~2, 3~^~08/01/2012~
-~11162~^~322~^68.^6^56.^~1~^~A~^^^2^0.^180.^2^-175.^310.^~4~^~08/01/2012~
-~11162~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~
-~11162~^~334~^26.^6^13.^~1~^~A~^^^2^0.^40.^2^-30.^83.^~4~^~08/01/2012~
-~11162~^~337~^0.^4^0.^~1~^~A~^^^2^0.^0.^1^0.^0.^~1, 4~^~11/01/2002~
-~11162~^~338~^6197.^5^1647.^~1~^~A~^^^2^3204.^8887.^2^-891.^13285.^~4~^~08/01/2012~
-~11162~^~417~^16.^1^^~1~^~A~^^^^^^^^^^~08/01/2012~
-~11162~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~
-~11162~^~432~^16.^1^^~1~^~A~^^^^^^^^^^~08/01/2012~
-~11162~^~435~^16.^0^^~4~^~NC~^^^^^^^^^^~08/01/2012~
-~11162~^~601~^0.^0^^~7~^~Z~^^^^^^^^^^~08/01/1984~
-~11163~^~208~^33.^0^^~4~^~NC~^^^^^^^^^^~07/01/2003~
-~11163~^~268~^137.^0^^~4~^~NC~^^^^^^^^^^~07/01/2003~
-~11163~^~301~^201.^13^10.^~1~^^^^^^^^^^^~08/01/1984~
-~11163~^~304~^29.^3^0.^~1~^^^^^^^^^^^~08/01/1984~
-~11163~^~305~^27.^3^2.^~1~^^^^^^^^^^^~08/01/1984~
-~11163~^~306~^253.^3^46.^~1~^^^^^^^^^^^~08/01/1984~
-~11163~^~307~^48.^3^25.^~1~^^^^^^^^^^^~08/01/1984~
-~11163~^~318~^9183.^0^^~1~^~AS~^^^^^^^^^^~07/01/2003~
-~11163~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2002~
-~11163~^~320~^459.^0^^~1~^~AS~^^^^^^^^^^~07/01/2003~
-~11163~^~321~^5510.^6^^~1~^~A~^^^^^^^^^^~07/01/2003~
-~11163~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~
-~11163~^~417~^73.^3^9.^~1~^^^^^^^^^^^~08/01/1984~
-~11163~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~
-~11163~^~432~^73.^3^9.^~1~^^^^^^^^^^^~07/01/2003~
-~11163~^~435~^73.^0^^~4~^~NC~^^^^^^^^^^~07/01/2003~
-~11163~^~601~^0.^0^^~7~^~Z~^^^^^^^^^^~08/01/1984~
-~11164~^~208~^36.^0^^~4~^~NC~^^^^^^^^^^~01/01/2007~
-~11164~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~12/01/2002~
-~11164~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~12/01/2002~
-~11164~^~268~^151.^0^^~4~^~NC~^^^^^^^^^^~01/01/2007~
-~11164~^~301~^210.^0^^~1~^^^^^^^^^^^~08/01/1984~
-~11164~^~304~^30.^0^^~1~^^^^^^^^^^^~08/01/1984~
-~11164~^~305~^27.^0^^~1~^^^^^^^^^^^~08/01/1984~
-~11164~^~306~^251.^0^^~1~^^^^^^^^^^^~08/01/1984~
-~11164~^~307~^50.^0^^~1~^^^^^^^^^^^~08/01/1984~
-~11164~^~318~^11493.^0^^~4~^~NC~^^^^^^^^^^~01/01/2007~
-~11164~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2002~
-~11164~^~320~^575.^0^^~4~^~NC~^^^^^^^^^^~01/01/2007~
-~11164~^~321~^6818.^0^^~4~^~BFSN~^~11162~^^^^^^^^^~12/01/2002~
-~11164~^~322~^127.^0^^~4~^~BFSN~^~11162~^^^^^^^^^~12/01/2002~
-~11164~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~
-~11164~^~334~^28.^0^^~4~^~BFSN~^~11162~^^^^^^^^^~12/01/2002~
-~11164~^~337~^0.^0^^~4~^~BFSN~^~11162~^^^^^^^^^~12/01/2002~
-~11164~^~338~^10898.^0^^~4~^~BFSN~^~11162~^^^^^^^^^~12/01/2002~
-~11164~^~417~^76.^6^12.^~1~^^^^^^^^^^^~08/01/1984~
-~11164~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~
-~11164~^~432~^76.^6^12.^~1~^^^^^^^^^^^~01/01/2007~
-~11164~^~435~^76.^0^^~4~^~NC~^^^^^^^^^^~01/01/2007~
-~11164~^~601~^0.^0^^~7~^~Z~^^^^^^^^^^~08/01/1984~
-~11165~^~208~^23.^0^^~4~^~NC~^^^^^^^^^^~03/01/2007~
-~11165~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2006~
-~11165~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2006~
-~11165~^~268~^95.^0^^~4~^~NC~^^^^^^^^^^~03/01/2007~
-~11165~^~301~^67.^2^^~1~^^^^1^50.^84.^1^^^^~03/01/2007~
-~11165~^~304~^26.^3^4.^~1~^^^^1^18.^35.^2^5.^46.^~2, 3~^~08/01/2002~
-~11165~^~305~^48.^3^7.^~1~^^^^1^36.^61.^2^17.^78.^~2, 3~^~08/01/2002~
-~11165~^~306~^521.^3^43.^~1~^^^^1^436.^584.^2^331.^710.^~2, 3~^~08/01/2002~
-~11165~^~307~^46.^3^10.^~1~^^^^1^28.^64.^2^0.^90.^~2, 3~^~08/01/2002~
-~11165~^~318~^6748.^0^^~4~^~NC~^^^^^^^^^^~03/01/2007~
-~11165~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2002~
-~11165~^~320~^337.^0^^~4~^~NC~^^^^^^^^^^~03/01/2007~
-~11165~^~321~^3930.^15^365.^~6~^~JA~^^^1^1990.^4800.^1^-398.^8258.^~2, 3~^~08/01/2002~
-~11165~^~322~^36.^3^27.^~6~^~JA~^^^1^0.^126.^1^-310.^382.^~2, 3~^~08/01/2002~
-~11165~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~
-~11165~^~334~^202.^3^44.^~6~^~JA~^^^1^0.^493.^1^-361.^765.^~2, 3~^~08/01/2002~
-~11165~^~337~^0.^1^^~1~^~A~^^^^^^^^^^~04/01/2001~
-~11165~^~338~^865.^6^^~1~^~A~^^^1^770.^1339.^^^^~2, 3~^~03/01/2001~
-~11165~^~417~^62.^2^^~1~^^^^1^58.^66.^1^^^^~03/01/2007~
-~11165~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~
-~11165~^~432~^62.^2^^~1~^^^^^^^^^^^~03/01/2007~
-~11165~^~435~^62.^0^^~4~^~NC~^^^^^^^^^^~03/01/2007~
-~11165~^~601~^0.^0^^~7~^~Z~^^^^^^^^^^~08/01/1984~
-~11165~^~636~^5.^1^^~1~^^^^^5.^5.^^^^^~03/01/2001~
-~11165~^~638~^3.^1^^~1~^^^^^3.^3.^^^^^~03/01/2001~
-~11165~^~639~^0.^1^^~1~^^^^^0.^0.^^^^^~03/01/2001~
-~11165~^~641~^2.^1^^~1~^^^^^2.^2.^^^^^~03/01/2001~
-~11167~^~208~^86.^0^^~4~^~NC~^^^^^^^^^^~05/01/2009~
-~11167~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~09/01/2002~
-~11167~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~09/01/2002~
-~11167~^~268~^360.^0^^~4~^~NC~^^^^^^^^^^~05/01/2009~
-~11167~^~301~^2.^53^0.^~6~^~JA~^^^2^2.^2.^50^0.^3.^~2, 3~^~04/01/2009~
-~11167~^~304~^37.^89^1.^~6~^~JA~^^^2^29.^37.^86^33.^40.^~2, 3~^~04/01/2009~
-~11167~^~305~^89.^79^3.^~6~^~JA~^^^2^89.^98.^76^81.^96.^~2, 3~^~04/01/2009~
-~11167~^~306~^270.^92^5.^~6~^~JA~^^^2^248.^278.^90^259.^279.^~2, 3~^~04/01/2009~
-~11167~^~307~^15.^92^2.^~6~^~JA~^^^2^4.^15.^89^8.^20.^~2, 3~^~04/01/2009~
-~11167~^~318~^187.^0^^~4~^~NC~^^^^^^^^^^~05/01/2009~
-~11167~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2002~
-~11167~^~320~^9.^0^^~4~^~NC~^^^^^^^^^^~05/01/2009~
-~11167~^~321~^47.^0^^~4~^~BFSN~^~11178~^^^^^^^^^~05/01/2009~
-~11167~^~322~^16.^0^^~4~^~BFSN~^~11178~^^^^^^^^^~05/01/2009~
-~11167~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~
-~11167~^~334~^115.^0^^~4~^~BFSN~^~11178~^^^^^^^^^~05/01/2009~
-~11167~^~337~^0.^0^^~4~^~BFSN~^~11178~^^^^^^^^^~05/01/2009~
-~11167~^~338~^644.^0^^~4~^~BFSN~^~11178~^^^^^^^^^~05/01/2009~
-~11167~^~417~^42.^7^3.^~6~^~JA~^^^2^22.^46.^5^33.^51.^~2, 3~^~04/01/2009~
-~11167~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2009~
-~11167~^~432~^42.^7^3.^~6~^~JA~^^^2^22.^46.^5^33.^51.^^~05/01/2009~
-~11167~^~435~^42.^0^^~4~^~NC~^^^^^^^^^^~05/01/2009~
-~11167~^~601~^0.^0^^~7~^~Z~^^^^^^^^^^~08/01/1984~
-~11168~^~208~^96.^0^^~4~^~NC~^^^^^^^^^^~04/01/2009~
-~11168~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~09/01/2002~
-~11168~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~09/01/2002~
-~11168~^~268~^401.^0^^~4~^~NC~^^^^^^^^^^~04/01/2009~
-~11168~^~301~^3.^30^0.^~6~^~JA~^^^5^1.^6.^11^2.^3.^~2, 3~^~04/01/2009~
-~11168~^~304~^26.^31^1.^~6~^~JA~^^^5^9.^41.^20^23.^29.^~2, 3~^~04/01/2009~
-~11168~^~305~^77.^30^2.^~6~^~JA~^^^5^45.^102.^16^72.^81.^~2, 3~^~04/01/2009~
-~11168~^~306~^218.^31^7.^~6~^~JA~^^^5^125.^302.^18^201.^235.^~2, 3~^~04/01/2009~
-~11168~^~307~^1.^31^0.^~6~^~JA~^^^5^0.^9.^3^0.^1.^~1, 2, 3~^~04/01/2009~
-~11168~^~318~^263.^0^^~4~^~NC~^^^^^^^^^^~04/01/2009~
-~11168~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2002~
-~11168~^~320~^13.^0^^~4~^~NC~^^^^^^^^^^~04/01/2009~
-~11168~^~321~^66.^0^^~4~^~BFSN~^~11179~^^^^^^^^^~06/01/2007~
-~11168~^~322~^23.^0^^~4~^~BFSN~^~11179~^^^^^^^^^~06/01/2007~
-~11168~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~
-~11168~^~334~^161.^0^^~4~^~BFSN~^~11179~^^^^^^^^^~06/01/2007~
-~11168~^~337~^0.^0^^~4~^~BFSN~^~11179~^^^^^^^^^~06/01/2007~
-~11168~^~338~^906.^0^^~4~^~BFSN~^~11179~^^^^^^^^^~06/01/2007~
-~11168~^~417~^23.^1^^~1~^~A~^^^^^^^^^^~04/01/2009~
-~11168~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~
-~11168~^~432~^23.^1^^~1~^~A~^^^^^^^^^^~04/01/2009~
-~11168~^~435~^23.^0^^~4~^~NC~^^^^^^^^^^~04/01/2009~
-~11168~^~601~^0.^0^^~7~^~Z~^^^^^^^^^^~08/01/1984~
-~11170~^~208~^61.^0^^~4~^~NC~^^^^^^^^^^~03/01/2011~
-~11170~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2011~
-~11170~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2011~
-~11170~^~268~^254.^0^^~4~^~NC~^^^^^^^^^^~03/01/2011~
-~11170~^~301~^4.^60^0.^~6~^~JA~^^^10^2.^10.^32^3.^4.^~2, 3~^~03/01/2011~
-~11170~^~304~^15.^39^0.^~6~^~JA~^^^7^9.^20.^28^14.^15.^~2, 3~^~03/01/2011~
-~11170~^~305~^46.^38^0.^~6~^~JA~^^^7^37.^54.^25^45.^47.^~2, 3~^~03/01/2011~
-~11170~^~306~^136.^50^2.^~6~^~JA~^^^9^108.^220.^21^131.^140.^~2, 3~^~03/01/2011~
-~11170~^~307~^195.^4^11.^~1~^~A~^^^1^166.^219.^3^158.^231.^~2, 3~^~03/01/2011~
-~11170~^~318~^34.^0^^~1~^~AS~^^^^^^^^^^~03/01/2011~
-~11170~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2002~
-~11170~^~320~^2.^0^^~1~^~AS~^^^^^^^^^^~03/01/2011~
-~11170~^~321~^9.^8^^~1~^~A~^^^1^8.^9.^^^^~2, 3~^~03/01/2011~
-~11170~^~322~^10.^8^^~1~^~A~^^^1^8.^12.^^^^~2, 3~^~03/01/2011~
-~11170~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~
-~11170~^~334~^14.^8^^~1~^~A~^^^1^10.^18.^^^^~2, 3~^~03/01/2011~
-~11170~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2011~
-~11170~^~338~^650.^6^^~1~^~A~^^^1^520.^780.^^^^~2, 3~^~03/01/2011~
-~11170~^~417~^38.^3^6.^~1~^^^^^^^^^^^~03/01/2011~
-~11170~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~
-~11170~^~432~^38.^3^6.^~1~^^^^^^^^^^^~03/01/2011~
-~11170~^~435~^38.^0^^~4~^~NC~^^^^^^^^^^~03/01/2011~
-~11170~^~601~^0.^0^^~7~^~Z~^^^^^^^^^^~08/01/1984~
-~11172~^~208~^67.^0^^~4~^~NC~^^^^^^^^^^~04/01/2015~
-~11172~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~09/01/2002~
-~11172~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~09/01/2002~
-~11172~^~268~^280.^0^^~4~^~NC~^^^^^^^^^^~04/01/2015~
-~11172~^~301~^3.^22^0.^~1~^~A~^^^2^1.^4.^8^2.^3.^~2, 3~^~08/01/2014~
-~11172~^~304~^13.^22^0.^~1~^~A~^^^2^11.^15.^10^12.^13.^~2, 3~^~08/01/2014~
-~11172~^~305~^46.^22^0.^~1~^~A~^^^2^39.^51.^10^44.^46.^~2, 3~^~08/01/2014~
-~11172~^~306~^132.^22^1.^~1~^~A~^^^2^103.^150.^10^128.^136.^~2, 3~^~04/01/2015~
-~11172~^~307~^205.^20^6.^~1~^~A~^^^2^126.^279.^6^189.^220.^~2, 3~^~04/01/2015~
-~11172~^~318~^46.^0^^~1~^~AS~^^^^^^^^^^~04/01/2015~
-~11172~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2002~
-~11172~^~320~^2.^0^^~1~^~AS~^^^^^^^^^^~08/01/2007~
-~11172~^~321~^14.^6^1.^~1~^~A~^^^1^10.^23.^2^7.^21.^~2, 3~^~04/01/2015~
-~11172~^~322~^6.^6^0.^~1~^~A~^^^1^4.^11.^1^-2.^14.^~2, 3~^~04/01/2015~
-~11172~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~
-~11172~^~334~^20.^6^1.^~1~^~A~^^^1^13.^44.^3^13.^25.^~2, 3~^~04/01/2015~
-~11172~^~337~^0.^6^0.^~1~^~A~^^^1^0.^0.^^^^~1, 2, 3~^~03/01/2006~
-~11172~^~338~^695.^0^^~4~^~BFSN~^~11170~^^^^^^^^^~04/01/2015~
-~11172~^~417~^39.^9^1.^~1~^~A~^^^1^27.^45.^5^35.^43.^~2, 3~^~04/01/2016~
-~11172~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2006~
-~11172~^~432~^39.^9^1.^~1~^~A~^^^1^27.^45.^5^35.^43.^^~04/01/2016~
-~11172~^~435~^39.^0^^~4~^~NC~^^^^^^^^^^~04/01/2016~
-~11172~^~601~^0.^0^^~7~^~Z~^^^^^^^^^^~08/01/1984~
-~11174~^~208~^72.^0^^~4~^~NC~^^^^^^^^^^~02/01/2007~
-~11174~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~09/01/2002~
-~11174~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~09/01/2002~
-~11174~^~268~^301.^0^^~4~^^^^^^^^^^^~02/01/2007~
-~11174~^~301~^3.^287^0.^~1~^^^^^^^^^^^~08/01/1984~
-~11174~^~304~^17.^226^0.^~1~^^^^^^^^^^^~08/01/1984~
-~11174~^~305~^51.^251^1.^~1~^^^^^^^^^^^~08/01/1984~
-~11174~^~306~^134.^250^2.^~1~^^^^^^^^^^^~08/01/1984~
-~11174~^~307~^261.^48^8.^~1~^^^^5^147.^457.^47^244.^277.^~4~^~05/01/2013~
-~11174~^~318~^74.^0^^~4~^~NC~^^^^^^^^^^~02/01/2007~
-~11174~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2002~
-~11174~^~320~^4.^0^^~4~^~NC~^^^^^^^^^^~02/01/2007~
-~11174~^~321~^30.^0^^~4~^~BFSN~^~11170~^^^^^^^^^~09/01/2002~
-~11174~^~322~^23.^0^^~4~^~BFSN~^~11170~^^^^^^^^^~09/01/2002~
-~11174~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~
-~11174~^~334~^6.^0^^~4~^~BFSN~^~11170~^^^^^^^^^~09/01/2002~
-~11174~^~337~^0.^0^^~4~^~BFSN~^~11170~^^^^^^^^^~09/01/2002~
-~11174~^~338~^949.^0^^~4~^~BFSN~^~11170~^^^^^^^^^~09/01/2002~
-~11174~^~417~^45.^0^^~1~^^^^^^^^^^^~08/01/1984~
-~11174~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~
-~11174~^~432~^45.^0^^~1~^^^^^^^^^^^~02/01/2007~
-~11174~^~435~^45.^0^^~4~^~NC~^^^^^^^^^^~02/01/2007~
-~11174~^~601~^0.^0^^~7~^~Z~^^^^^^^^^^~08/01/1984~
-~11176~^~208~^79.^0^^~4~^~NC~^^^^^^^^^^~08/01/1984~
-~11176~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~09/01/2002~
-~11176~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~09/01/2002~
-~11176~^~268~^331.^0^^~4~^^^^^^^^^^^~02/01/2007~
-~11176~^~301~^5.^69^0.^~1~^^^^^^^^^^^~08/01/1984~
-~11176~^~304~^23.^57^0.^~1~^^^^^^^^^^^~08/01/1984~
-~11176~^~305~^64.^63^1.^~1~^^^^^^^^^^^~08/01/1984~
-~11176~^~306~^186.^66^5.^~1~^^^^^^^^^^^~08/01/1984~
-~11176~^~307~^272.^66^7.^~1~^^^^^^^^^^^~08/01/1984~
-~11176~^~318~^81.^0^^~4~^~NC~^^^^^^^^^^~02/01/2007~
-~11176~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2002~
-~11176~^~320~^4.^0^^~4~^~NC~^^^^^^^^^^~02/01/2007~
-~11176~^~321~^33.^0^^~4~^~BFSN~^~11170~^^^^^^^^^~09/01/2002~
-~11176~^~322~^26.^0^^~4~^~BFSN~^~11170~^^^^^^^^^~09/01/2002~
-~11176~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~
-~11176~^~334~^6.^0^^~4~^~BFSN~^~11170~^^^^^^^^^~09/01/2002~
-~11176~^~337~^0.^0^^~4~^~BFSN~^~11170~^^^^^^^^^~09/01/2002~
-~11176~^~338~^1045.^0^^~4~^~BFSN~^~11170~^^^^^^^^^~09/01/2002~
-~11176~^~417~^49.^0^^~1~^^^^^^^^^^^~08/01/1984~
-~11176~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~
-~11176~^~432~^49.^0^^~1~^^^^^^^^^^^~02/01/2007~
-~11176~^~435~^49.^0^^~4~^~NC~^^^^^^^^^^~02/01/2007~
-~11176~^~601~^0.^0^^~7~^~Z~^^^^^^^^^^~08/01/1984~
-~11177~^~208~^64.^0^^~4~^~NC~^^^^^^^^^^~01/01/2017~
-~11177~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2011~
-~11177~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2011~
-~11177~^~268~^267.^0^^~4~^~NC~^^^^^^^^^^~01/01/2017~
-~11177~^~301~^2.^4^0.^~1~^~A~^^^1^2.^3.^3^1.^3.^~2, 3~^~04/01/2011~
-~11177~^~304~^11.^4^0.^~1~^~A~^^^1^9.^13.^3^8.^13.^~2, 3~^~04/01/2011~
-~11177~^~305~^41.^4^1.^~1~^~A~^^^1^38.^44.^3^36.^45.^~2, 3~^~04/01/2011~
-~11177~^~306~^116.^4^5.^~1~^~A~^^^1^102.^129.^3^97.^134.^~2, 3~^~04/01/2011~
-~11177~^~307~^163.^3^13.^~1~^~A~^^^1^137.^185.^2^102.^222.^~2, 3~^~04/01/2011~
-~11177~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2011~
-~11177~^~417~^29.^0^^~1~^~A~^^^^^^^^^^~04/01/2011~
-~11177~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2011~
-~11177~^~432~^29.^0^^~1~^~A~^^^^^^^^^^~04/01/2011~
-~11177~^~435~^29.^0^^~4~^~NC~^^^^^^^^^^~04/01/2011~
-~11177~^~601~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2011~
-~11178~^~208~^88.^0^^~4~^~NC~^^^^^^^^^^~03/01/2008~
-~11178~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~09/01/2002~
-~11178~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~09/01/2002~
-~11178~^~268~^368.^0^^~4~^~NC~^^^^^^^^^^~03/01/2008~
-~11178~^~301~^4.^57^0.^~6~^~JA~^^^2^4.^5.^53^2.^5.^~2, 3~^~03/01/2008~
-~11178~^~304~^18.^25^0.^~6~^~JA~^^^2^18.^22.^22^16.^20.^~2, 3~^~03/01/2008~
-~11178~^~305~^70.^38^2.^~6~^~JA~^^^2^69.^85.^34^65.^74.^~2, 3~^~03/01/2008~
-~11178~^~306~^213.^24^7.^~6~^~JA~^^^2^210.^235.^20^197.^227.^~2, 3~^~03/01/2008~
-~11178~^~307~^3.^38^0.^~6~^~JA~^^^2^2.^4.^35^2.^3.^~1, 2, 3~^~03/01/2008~
-~11178~^~318~^195.^0^^~4~^~NC~^^^^^^^^^^~03/01/2008~
-~11178~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2002~
-~11178~^~320~^10.^0^^~4~^~NC~^^^^^^^^^^~03/01/2008~
-~11178~^~321~^49.^0^^~4~^~BFSY~^~11179~^^^^^^^^^~03/01/2008~
-~11178~^~322~^17.^0^^~4~^~BFSY~^~11179~^^^^^^^^^~03/01/2008~
-~11178~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~
-~11178~^~334~^120.^0^^~4~^~BFSY~^~11179~^^^^^^^^^~03/01/2008~
-~11178~^~337~^0.^0^^~4~^~BFSY~^~11179~^^^^^^^^^~03/01/2008~
-~11178~^~338~^672.^0^^~4~^~BFSY~^~11179~^^^^^^^^^~03/01/2008~
-~11178~^~417~^36.^6^5.^~1~^^^^^^^^^^^~08/01/1984~
-~11178~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~
-~11178~^~432~^36.^6^5.^~1~^^^^^^^^^^^~03/01/2008~
-~11178~^~435~^36.^0^^~4~^~NC~^^^^^^^^^^~03/01/2008~
-~11178~^~601~^0.^0^^~7~^~Z~^^^^^^^^^^~08/01/1984~
-~11179~^~208~^81.^0^^~4~^~NC~^^^^^^^^^^~03/01/2006~
-~11179~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~09/01/2002~
-~11179~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~09/01/2002~
-~11179~^~268~^338.^0^^~4~^~NC~^^^^^^^^^^~03/01/2006~
-~11179~^~301~^3.^24^0.^~1~^^^^2^2.^7.^15^3.^3.^~2, 3~^~03/01/2006~
-~11179~^~304~^28.^24^1.^~1~^^^^2^19.^41.^20^25.^30.^~2, 3~^~03/01/2006~
-~11179~^~305~^79.^24^2.^~1~^^^^2^60.^102.^20^74.^84.^~2, 3~^~03/01/2006~
-~11179~^~306~^233.^24^8.^~1~^^^^2^130.^302.^21^214.^250.^~2, 3~^~03/01/2006~
-~11179~^~307~^1.^24^0.^~1~^^^^2^0.^5.^13^0.^1.^~2, 3~^~03/01/2006~
-~11179~^~318~^199.^0^^~4~^~NC~^^^^^^^^^^~03/01/2006~
-~11179~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2002~
-~11179~^~320~^10.^0^^~4~^~NC~^^^^^^^^^^~03/01/2006~
-~11179~^~321~^50.^4^1.^~6~^~JA~^^^2^45.^52.^2^41.^57.^~2, 3~^~03/01/2006~
-~11179~^~322~^17.^4^2.^~6~^~JA~^^^2^13.^24.^2^5.^28.^~2, 3~^~03/01/2006~
-~11179~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~
-~11179~^~334~^122.^4^5.^~6~^~JA~^^^2^108.^135.^2^96.^146.^~2, 3~^~03/01/2006~
-~11179~^~337~^0.^0^^~4~^~BFSN~^~11176~^^^^^^^^^~03/01/2006~
-~11179~^~338~^684.^5^^~1~^~A~^^^1^500.^960.^^^^~2, 3~^~03/01/2006~
-~11179~^~417~^35.^4^2.^~1~^^^^1^28.^42.^3^25.^43.^~2, 3~^~03/01/2006~
-~11179~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~
-~11179~^~432~^35.^4^2.^~1~^^^^1^28.^42.^3^25.^43.^^~03/01/2006~
-~11179~^~435~^35.^0^^~4~^~NC~^^^^^^^^^^~03/01/2006~
-~11179~^~601~^0.^0^^~7~^~Z~^^^^^^^^^^~08/01/1984~
-~11180~^~208~^98.^0^^~4~^~NC~^^^^^^^^^^~03/01/2010~
-~11180~^~268~^410.^0^^~4~^~NC~^^^^^^^^^^~03/01/2010~
-~11180~^~301~^4.^32^0.^~1~^^^^^^^^^^^~08/01/1984~
-~11180~^~304~^32.^9^0.^~1~^^^^^^^^^^^~08/01/1984~
-~11180~^~305~^87.^25^2.^~1~^^^^^^^^^^^~08/01/1984~
-~11180~^~306~^294.^13^7.^~1~^^^^^^^^^^^~08/01/1984~
-~11180~^~307~^5.^29^1.^~1~^^^^^^^^^^^~08/01/1984~
-~11180~^~318~^244.^0^^~4~^~NC~^^^^^^^^^^~03/01/2010~
-~11180~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2002~
-~11180~^~320~^12.^0^^~4~^~NC~^^^^^^^^^^~03/01/2010~
-~11180~^~321~^61.^0^^~4~^~BFSN~^~11178~^^^^^^^^^~09/01/2002~
-~11180~^~322~^21.^0^^~4~^~BFSN~^~11178~^^^^^^^^^~09/01/2002~
-~11180~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~
-~11180~^~334~^149.^0^^~4~^~BFSN~^~11178~^^^^^^^^^~09/01/2002~
-~11180~^~337~^0.^0^^~4~^~BFSN~^~11178~^^^^^^^^^~09/01/2002~
-~11180~^~338~^897.^0^^~4~^~BFSN~^~11178~^^^^^^^^^~09/01/2002~
-~11180~^~417~^40.^0^^~1~^^^^^^^^^^^~08/01/1984~
-~11180~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~
-~11180~^~432~^40.^0^^~1~^^^^^^^^^^^~03/01/2010~
-~11180~^~435~^40.^0^^~4~^~NC~^^^^^^^^^^~03/01/2010~
-~11180~^~601~^0.^0^^~7~^~Z~^^^^^^^^^^~08/01/1984~
-~11181~^~208~^94.^0^^~4~^~NC~^^^^^^^^^^~03/01/2010~
-~11181~^~268~^391.^0^^~4~^~NC~^^^^^^^^^^~03/01/2010~
-~11181~^~301~^3.^0^^~1~^^^^^^^^^^^~08/01/1984~
-~11181~^~304~^29.^0^^~1~^^^^^^^^^^^~08/01/1984~
-~11181~^~305~^75.^0^^~1~^^^^^^^^^^^~08/01/1984~
-~11181~^~306~^251.^0^^~1~^^^^^^^^^^^~08/01/1984~
-~11181~^~307~^4.^0^^~1~^^^^^^^^^^^~08/01/1984~
-~11181~^~318~^232.^0^^~4~^~NC~^^^^^^^^^^~03/01/2010~
-~11181~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2002~
-~11181~^~320~^12.^0^^~4~^~NC~^^^^^^^^^^~03/01/2010~
-~11181~^~321~^58.^0^^~4~^~BFSN~^~11179~^^^^^^^^^~09/01/2002~
-~11181~^~322~^20.^0^^~4~^~BFSN~^~11179~^^^^^^^^^~09/01/2002~
-~11181~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~
-~11181~^~334~^142.^0^^~4~^~BFSN~^~11179~^^^^^^^^^~09/01/2002~
-~11181~^~337~^0.^0^^~4~^~BFSN~^~11179~^^^^^^^^^~09/01/2002~
-~11181~^~338~^852.^0^^~4~^~BFSN~^~11179~^^^^^^^^^~09/01/2002~
-~11181~^~417~^31.^0^^~1~^^^^^^^^^^^~08/01/1984~
-~11181~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~
-~11181~^~432~^31.^0^^~1~^^^^^^^^^^^~09/01/2002~
-~11181~^~435~^31.^0^^~4~^~NC~^^^^^^^^^^~03/01/2010~
-~11181~^~601~^0.^0^^~7~^~Z~^^^^^^^^^^~08/01/1984~
-~11182~^~208~^113.^0^^~4~^~NC~^^^^^^^^^^~03/01/2017~
-~11182~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2008~
-~11182~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2008~
-~11182~^~268~^473.^0^^~4~^~NC~^^^^^^^^^^~03/01/2017~
-~11182~^~301~^5.^3^0.^~1~^~A~^^^1^^^^^^^~03/01/2008~
-~11182~^~304~^25.^3^1.^~1~^~A~^^^1^^^^^^^~03/01/2008~
-~11182~^~305~^95.^3^4.^~1~^~A~^^^1^^^^^^^~03/01/2008~
-~11182~^~306~^276.^3^11.^~1~^~A~^^^1^^^^^^^~03/01/2008~
-~11182~^~307~^4.^3^0.^~1~^~A~^^^1^^^^^^^~03/01/2008~
-~11182~^~318~^234.^0^^~4~^~NC~^^^^^^^^^^~03/01/2008~
-~11182~^~320~^12.^0^^~4~^~NC~^^^^^^^^^^~03/01/2008~
-~11182~^~321~^59.^0^^~4~^~BFSY~^~11178~^^^^^^^^^~03/01/2008~
-~11182~^~322~^20.^0^^~4~^~BFSY~^~11178~^^^^^^^^^~03/01/2008~
-~11182~^~334~^144.^0^^~4~^~BFSY~^~11178~^^^^^^^^^~03/01/2008~
-~11182~^~337~^0.^0^^~4~^~BFSY~^~11178~^^^^^^^^^~03/01/2008~
-~11182~^~338~^807.^0^^~4~^~BFSY~^~11178~^^^^^^^^^~03/01/2008~
-~11182~^~417~^38.^0^^~4~^~BFSY~^~11178~^^^^^^^^^~03/01/2008~
-~11182~^~432~^38.^0^^~4~^~BFSY~^^^^^^^^^^~03/01/2008~
-~11182~^~601~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2008~
-~11184~^~208~^75.^0^^~4~^~NC~^^^^^^^^^^~08/01/1984~
-~11184~^~268~^314.^0^^~4~^^^^^^^^^^^
-~11184~^~301~^5.^9^0.^~1~^^^^^^^^^^^~08/01/1984~
-~11184~^~304~^25.^4^0.^~1~^^^^^^^^^^^~08/01/1984~
-~11184~^~305~^62.^8^1.^~1~^^^^^^^^^^^~08/01/1984~
-~11184~^~306~^153.^8^13.^~1~^^^^^^^^^^^~08/01/1984~
-~11184~^~307~^347.^8^40.^~1~^^^^^^^^^^^~08/01/1984~
-~11184~^~318~^232.^6^17.^~1~^^^^^^^^^^^~08/01/1984~
-~11184~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2002~
-~11184~^~320~^12.^6^0.^~1~^^^^^^^^^^^~06/01/2002~
-~11184~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~
-~11184~^~417~^34.^0^^~4~^^^^^^^^^^^~08/01/1984~
-~11184~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~
-~11184~^~432~^34.^0^^~4~^^^^^^^^^^^~12/01/1984~
-~11184~^~435~^34.^0^^~4~^~NC~^^^^^^^^^^~01/01/2001~
-~11184~^~601~^0.^0^^~7~^~Z~^^^^^^^^^^~08/01/1984~
-~11190~^~208~^21.^0^^~4~^~NC~^^^^^^^^^^~08/01/1984~
-~11190~^~268~^88.^0^^~4~^^^^^^^^^^^
-~11190~^~301~^38.^0^^~4~^^^^^^^^^^^~08/01/1984~
-~11190~^~304~^13.^0^^~4~^^^^^^^^^^^~08/01/1984~
-~11190~^~305~^53.^0^^~4~^^^^^^^^^^^~08/01/1984~
-~11190~^~306~^459.^0^^~4~^^^^^^^^^^^~08/01/1984~
-~11190~^~307~^4.^0^^~4~^^^^^^^^^^^~08/01/1984~
-~11190~^~318~^7092.^0^^~4~^^^^^^^^^^^~08/01/1984~
-~11190~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2002~
-~11190~^~320~^355.^0^^~4~^^^^^^^^^^^~06/01/2002~
-~11190~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~
-~11190~^~417~^14.^0^^~4~^^^^^^^^^^^~08/01/1984~
-~11190~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~
-~11190~^~432~^14.^0^^~4~^^^^^^^^^^^~12/01/1984~
-~11190~^~435~^14.^0^^~4~^~NC~^^^^^^^^^^~01/01/2001~
-~11190~^~601~^0.^0^^~7~^~Z~^^^^^^^^^^~08/01/1984~
-~11191~^~208~^90.^0^^~4~^~NC~^^^^^^^^^^~04/01/2007~
-~11191~^~268~^376.^0^^~4~^~NC~^^^^^^^^^^~04/01/2007~
-~11191~^~301~^126.^2^^~1~^^^^^^^^^^^~08/01/1984~
-~11191~^~304~^51.^2^^~1~^^^^^^^^^^^~08/01/1984~
-~11191~^~305~^53.^2^^~1~^^^^^^^^^^^~08/01/1984~
-~11191~^~306~^431.^2^^~1~^^^^^^^^^^^~08/01/1984~
-~11191~^~307~^4.^2^^~1~^^^^^^^^^^^~08/01/1984~
-~11191~^~318~^817.^2^^~1~^^^^^^^^^^^~05/01/2007~
-~11191~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2002~
-~11191~^~320~^41.^2^^~1~^^^^^^^^^^^~05/01/2007~
-~11191~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~
-~11191~^~417~^168.^6^12.^~1~^^^^^^^^^^^~08/01/1984~
-~11191~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~
-~11191~^~432~^168.^6^12.^~1~^^^^^^^^^^^~04/01/2007~
-~11191~^~435~^168.^0^^~4~^~NC~^^^^^^^^^^~05/01/2007~
-~11191~^~601~^0.^0^^~7~^~Z~^^^^^^^^^^~08/01/1984~
-~11192~^~208~^97.^0^^~4~^~NC~^^^^^^^^^^~03/01/2007~
-~11192~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~12/01/2002~
-~11192~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~12/01/2002~
-~11192~^~268~^405.^0^^~4~^~NC~^^^^^^^^^^~03/01/2007~
-~11192~^~301~^128.^0^^~1~^^^^^^^^^^^~08/01/1984~
-~11192~^~304~^52.^0^^~1~^^^^^^^^^^^~08/01/1984~
-~11192~^~305~^51.^0^^~1~^^^^^^^^^^^~08/01/1984~
-~11192~^~306~^418.^0^^~1~^^^^^^^^^^^~08/01/1984~
-~11192~^~307~^4.^0^^~1~^^^^^^^^^^^~08/01/1984~
-~11192~^~318~^791.^0^^~4~^~NC~^^^^^^^^^^~03/01/2007~
-~11192~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2002~
-~11192~^~320~^40.^0^^~4~^~NC~^^^^^^^^^^~03/01/2007~
-~11192~^~321~^475.^0^^~4~^~O~^^^^^^^^^^~12/01/2002~
-~11192~^~322~^0.^0^^~4~^~T~^^^^^^^^^^~12/01/2002~
-~11192~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~
-~11192~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2003~
-~11192~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~12/01/2002~
-~11192~^~338~^0.^0^^~4~^~T~^^^^^^^^^^~12/01/2002~
-~11192~^~417~^127.^0^^~1~^^^^^^^^^^^~08/01/1984~
-~11192~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~
-~11192~^~432~^127.^0^^~1~^^^^^^^^^^^~03/01/2007~
-~11192~^~435~^127.^0^^~4~^~NC~^^^^^^^^^^~03/01/2007~
-~11192~^~601~^0.^0^^~7~^~Z~^^^^^^^^^^~08/01/1984~
-~11195~^~208~^139.^0^^~4~^~NC~^^^^^^^^^^~08/01/1984~
-~11195~^~268~^582.^0^^~4~^^^^^^^^^^^
-~11195~^~301~^26.^22^2.^~1~^^^^^^^^^^^~08/01/1984~
-~11195~^~304~^55.^5^3.^~1~^^^^^^^^^^^~08/01/1984~
-~11195~^~305~^122.^0^^~1~^^^^^^^^^^^~08/01/1984~
-~11195~^~306~^441.^5^11.^~1~^^^^^^^^^^^~08/01/1984~
-~11195~^~307~^6.^6^1.^~1~^^^^^^^^^^^~08/01/1984~
-~11195~^~318~^84.^20^8.^~1~^^^^^^^^^^^~08/01/1984~
-~11195~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2002~
-~11195~^~320~^4.^20^0.^~1~^^^^^^^^^^^~06/01/2002~
-~11195~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~
-~11195~^~417~^187.^3^20.^~1~^^^^^^^^^^^~08/01/1984~
-~11195~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~
-~11195~^~432~^187.^3^20.^~1~^^^^^^^^^^^~12/01/1984~
-~11195~^~435~^187.^0^^~4~^~NC~^^^^^^^^^^~01/01/2001~
-~11195~^~601~^0.^0^^~7~^~Z~^^^^^^^^^^~08/01/1984~
-~11196~^~208~^132.^0^^~4~^~NC~^^^^^^^^^^~03/01/2007~
-~11196~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~12/01/2002~
-~11196~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~12/01/2002~
-~11196~^~268~^552.^0^^~4~^^^^^^^^^^^~03/01/2007~
-~11196~^~301~^23.^0^^~1~^^^^^^^^^^^~08/01/1984~
-~11196~^~304~^50.^0^^~1~^^^^^^^^^^^~08/01/1984~
-~11196~^~305~^122.^0^^~1~^^^^^^^^^^^~08/01/1984~
-~11196~^~306~^375.^0^^~1~^^^^^^^^^^^~08/01/1984~
-~11196~^~307~^5.^0^^~1~^^^^^^^^^^^~08/01/1984~
-~11196~^~318~^75.^0^^~4~^~NC~^^^^^^^^^^~03/01/2007~
-~11196~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2002~
-~11196~^~320~^4.^0^^~4~^~NC~^^^^^^^^^^~03/01/2007~
-~11196~^~321~^45.^0^^~4~^~O~^^^^^^^^^^~12/01/2002~
-~11196~^~322~^0.^0^^~4~^~BFSN~^~11192~^^^^^^^^^~12/01/2002~
-~11196~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~
-~11196~^~334~^0.^0^^~4~^~BFSN~^~11192~^^^^^^^^^~12/01/2002~
-~11196~^~337~^0.^0^^~4~^~BFSN~^~11192~^^^^^^^^^~12/01/2002~
-~11196~^~338~^0.^0^^~4~^~BFSN~^~11192~^^^^^^^^^~12/01/2002~
-~11196~^~417~^141.^0^^~1~^^^^^^^^^^^~08/01/1984~
-~11196~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~
-~11196~^~432~^141.^0^^~1~^^^^^^^^^^^~03/01/2007~
-~11196~^~435~^141.^0^^~4~^~NC~^^^^^^^^^^~03/01/2007~
-~11196~^~601~^0.^0^^~7~^~Z~^^^^^^^^^^~08/01/1984~
-~11197~^~208~^44.^0^^~4~^~NC~^^^^^^^^^^~08/01/1984~
-~11197~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~08/01/2011~
-~11197~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~08/01/2011~
-~11197~^~268~^184.^0^^~4~^^^^^^^^^^^
-~11197~^~301~^65.^0^^~1~^^^^^^^^^^^~08/01/1984~
-~11197~^~304~^58.^0^^~4~^^^^^^^^^^^~08/01/1984~
-~11197~^~305~^65.^0^^~1~^^^^^^^^^^^~08/01/1984~
-~11197~^~306~^215.^0^^~1~^^^^^^^^^^^~08/01/1984~
-~11197~^~307~^4.^0^^~1~^^^^^^^^^^^~08/01/1984~
-~11197~^~318~^1369.^0^^~4~^~NC~^^^^^^^^^^~08/01/2011~
-~11197~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2002~
-~11197~^~320~^68.^0^^~4~^~NC~^^^^^^^^^^~08/01/2011~
-~11197~^~321~^794.^0^^~4~^~BFSN~^~11300~^^^^^^^^^~08/01/2011~
-~11197~^~322~^55.^0^^~4~^~BFSN~^~11300~^^^^^^^^^~08/01/2011~
-~11197~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~
-~11197~^~334~^0.^0^^~4~^~BFSN~^~11300~^^^^^^^^^~08/01/2011~
-~11197~^~337~^0.^0^^~4~^~BFSN~^~11300~^^^^^^^^^~08/01/2011~
-~11197~^~338~^932.^0^^~4~^~BFSN~^~11300~^^^^^^^^^~08/01/2011~
-~11197~^~417~^53.^0^^~4~^^^^^^^^^^^~08/01/1984~
-~11197~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~
-~11197~^~432~^53.^0^^~4~^^^^^^^^^^^~12/01/1984~
-~11197~^~435~^53.^0^^~4~^~NC~^^^^^^^^^^~01/01/2001~
-~11197~^~601~^0.^0^^~7~^~Z~^^^^^^^^^^~08/01/1984~
-~11198~^~208~^34.^0^^~4~^~NC~^^^^^^^^^^~08/01/1984~
-~11198~^~268~^142.^0^^~4~^^^^^^^^^^^
-~11198~^~301~^55.^0^^~1~^^^^^^^^^^^~08/01/1984~
-~11198~^~304~^41.^0^^~4~^^^^^^^^^^^~08/01/1984~
-~11198~^~305~^49.^0^^~1~^^^^^^^^^^^~08/01/1984~
-~11198~^~306~^196.^0^^~1~^^^^^^^^^^^~08/01/1984~
-~11198~^~307~^3.^0^^~1~^^^^^^^^^^^~08/01/1984~
-~11198~^~318~^1400.^0^^~1~^^^^^^^^^^^~08/01/1984~
-~11198~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2002~
-~11198~^~320~^70.^0^^~1~^^^^^^^^^^^~06/01/2002~
-~11198~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~
-~11198~^~417~^26.^0^^~4~^^^^^^^^^^^~08/01/1984~
-~11198~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~
-~11198~^~432~^26.^0^^~4~^^^^^^^^^^^~12/01/1984~
-~11198~^~435~^26.^0^^~4~^~NC~^^^^^^^^^^~01/01/2001~
-~11198~^~601~^0.^0^^~7~^~Z~^^^^^^^^^^~08/01/1984~
-~11199~^~208~^47.^0^^~4~^~NC~^^^^^^^^^^~08/01/1984~
-~11199~^~268~^197.^0^^~4~^^^^^^^^^^^
-~11199~^~301~^50.^1^^~1~^^^^^^^^^^^~08/01/1984~
-~11199~^~304~^44.^2^^~1~^^^^^^^^^^^~08/01/1984~
-~11199~^~305~^59.^1^^~1~^^^^^^^^^^^~08/01/1984~
-~11199~^~306~^240.^2^^~1~^^^^^^^^^^^~08/01/1984~
-~11199~^~307~^4.^2^^~1~^^^^^^^^^^^~08/01/1984~
-~11199~^~318~^865.^2^^~1~^^^^^^^^^^^~08/01/1984~
-~11199~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2002~
-~11199~^~320~^43.^2^^~1~^^^^^^^^^^^~06/01/2002~
-~11199~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~
-~11199~^~417~^62.^0^^~4~^^^^^^^^^^^~08/01/1984~
-~11199~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~
-~11199~^~432~^62.^0^^~4~^^^^^^^^^^^~12/01/1984~
-~11199~^~435~^62.^0^^~4~^~NC~^^^^^^^^^^~01/01/2001~
-~11199~^~601~^0.^0^^~7~^~Z~^^^^^^^^^^~08/01/1984~
-~11200~^~208~^47.^0^^~4~^~NC~^^^^^^^^^^~08/01/1984~
-~11200~^~268~^197.^0^^~4~^^^^^^^^^^^
-~11200~^~301~^44.^1^^~1~^^^^^^^^^^^~08/01/1984~
-~11200~^~304~^42.^1^^~1~^^^^^^^^^^^~08/01/1984~
-~11200~^~305~^57.^1^^~1~^^^^^^^^^^^~08/01/1984~
-~11200~^~306~^290.^1^^~1~^^^^^^^^^^^~08/01/1984~
-~11200~^~307~^4.^1^^~1~^^^^^^^^^^^~08/01/1984~
-~11200~^~318~^450.^1^^~1~^^^^^^^^^^^~08/01/1984~
-~11200~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2002~
-~11200~^~320~^23.^1^^~1~^^^^^^^^^^^~06/01/2002~
-~11200~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~
-~11200~^~417~^45.^0^^~4~^^^^^^^^^^^~08/01/1984~
-~11200~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~
-~11200~^~432~^45.^0^^~4~^^^^^^^^^^^~12/01/1984~
-~11200~^~435~^45.^0^^~4~^~NC~^^^^^^^^^^~01/01/2001~
-~11200~^~601~^0.^0^^~7~^~Z~^^^^^^^^^^~08/01/1984~
-~11201~^~208~^29.^0^^~4~^~NC~^^^^^^^^^^~08/01/1984~
-~11201~^~268~^121.^0^^~4~^^^^^^^^^^^
-~11201~^~301~^63.^0^^~1~^^^^^^^^^^^~08/01/1984~
-~11201~^~304~^43.^1^^~1~^^^^^^^^^^^~08/01/1984~
-~11201~^~305~^9.^0^^~1~^^^^^^^^^^^~08/01/1984~
-~11201~^~306~^455.^1^^~1~^^^^^^^^^^^~08/01/1984~
-~11201~^~307~^7.^1^^~1~^^^^^^^^^^^~08/01/1984~
-~11201~^~318~^712.^0^^~1~^^^^^^^^^^^~08/01/1984~
-~11201~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2002~
-~11201~^~320~^36.^0^^~1~^^^^^^^^^^^~06/01/2002~
-~11201~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~
-~11201~^~417~^101.^0^^~4~^^^^^^^^^^^~08/01/1984~
-~11201~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~
-~11201~^~432~^101.^0^^~4~^^^^^^^^^^^~12/01/1984~
-~11201~^~435~^101.^0^^~4~^~NC~^^^^^^^^^^~01/01/2001~
-~11201~^~601~^0.^0^^~7~^~Z~^^^^^^^^^^~08/01/1984~
-~11202~^~208~^22.^0^^~4~^~NC~^^^^^^^^^^~08/01/1984~
-~11202~^~268~^92.^0^^~4~^^^^^^^^^^^
-~11202~^~301~^69.^1^^~1~^^^^^^^^^^^~08/01/1984~
-~11202~^~304~^62.^1^^~1~^^^^^^^^^^^~08/01/1984~
-~11202~^~305~^42.^1^^~1~^^^^^^^^^^^~08/01/1984~
-~11202~^~306~^351.^1^^~1~^^^^^^^^^^^~08/01/1984~
-~11202~^~307~^6.^0^^~1~^^^^^^^^^^^~08/01/1984~
-~11202~^~318~^576.^0^^~1~^^^^^^^^^^^~08/01/1984~
-~11202~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2002~
-~11202~^~320~^29.^0^^~1~^^^^^^^^^^^~06/01/2002~
-~11202~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~
-~11202~^~417~^60.^0^^~4~^^^^^^^^^^^~08/01/1984~
-~11202~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~
-~11202~^~432~^60.^0^^~4~^^^^^^^^^^^~12/01/1984~
-~11202~^~435~^60.^0^^~4~^~NC~^^^^^^^^^^~01/01/2001~
-~11202~^~601~^0.^0^^~7~^~Z~^^^^^^^^^^~08/01/1984~
-~11203~^~208~^32.^0^^~4~^~NC~^^^^^^^^^^~02/01/2007~
-~11203~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2003~
-~11203~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2003~
-~11203~^~268~^134.^0^^~4~^^^^^^^^^^^~02/01/2007~
-~11203~^~301~^81.^0^^~1~^^^^^^^^^^^~08/01/1984~
-~11203~^~304~^38.^0^^~4~^^^^^^^^^^^~08/01/1984~
-~11203~^~305~^76.^0^^~1~^^^^^^^^^^^~08/01/1984~
-~11203~^~306~^606.^0^^~1~^^^^^^^^^^^~08/01/1984~
-~11203~^~307~^14.^0^^~1~^^^^^^^^^^^~08/01/1984~
-~11203~^~318~^6917.^0^^~4~^~NC~^^^^^^^^^^~02/01/2007~
-~11203~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2002~
-~11203~^~320~^346.^0^^~4~^~NC~^^^^^^^^^^~02/01/2007~
-~11203~^~321~^4150.^0^^~4~^~T~^^^^^^^^^^~01/01/2003~
-~11203~^~322~^0.^0^^~4~^~T~^^^^^^^^^^~01/01/2003~
-~11203~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~
-~11203~^~334~^0.^0^^~4~^~T~^^^^^^^^^^~01/01/2003~
-~11203~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2003~
-~11203~^~338~^12500.^0^^~4~^~T~^^^^^^^^^^~01/01/2003~
-~11203~^~417~^80.^0^^~4~^^^^^^^^^^^~08/01/1984~
-~11203~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~
-~11203~^~432~^80.^0^^~4~^^^^^^^^^^^~02/01/2007~
-~11203~^~435~^80.^0^^~4~^~NC~^^^^^^^^^^~02/01/2007~
-~11203~^~601~^0.^0^^~7~^~Z~^^^^^^^^^^~08/01/1984~
-~11204~^~208~^23.^0^^~4~^~NC~^^^^^^^^^^~03/01/2007~
-~11204~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2003~
-~11204~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2003~
-~11204~^~268~^96.^0^^~4~^^^^^^^^^^^~03/01/2007~
-~11204~^~301~^61.^0^^~1~^^^^^^^^^^^~08/01/1984~
-~11204~^~304~^26.^0^^~4~^^^^^^^^^^^~08/01/1984~
-~11204~^~305~^48.^0^^~1~^^^^^^^^^^^~08/01/1984~
-~11204~^~306~^353.^0^^~1~^^^^^^^^^^^~08/01/1984~
-~11204~^~307~^8.^0^^~1~^^^^^^^^^^^~08/01/1984~
-~11204~^~318~^4649.^0^^~4~^~NC~^^^^^^^^^^~03/01/2007~
-~11204~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2002~
-~11204~^~320~^232.^0^^~4~^~NC~^^^^^^^^^^~03/01/2007~
-~11204~^~321~^2790.^0^^~4~^~BFSY~^~11203~^^^^^^^^^~03/01/2007~
-~11204~^~322~^0.^0^^~4~^~BFSY~^~11203~^^^^^^^^^~03/01/2007~
-~11204~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~
-~11204~^~334~^0.^0^^~4~^~BFSY~^~11203~^^^^^^^^^~03/01/2007~
-~11204~^~337~^0.^0^^~4~^~BFSY~^~11203~^^^^^^^^^~03/01/2007~
-~11204~^~338~^8402.^0^^~4~^~BFSY~^~11203~^^^^^^^^^~03/01/2007~
-~11204~^~417~^37.^0^^~4~^^^^^^^^^^^~08/01/1984~
-~11204~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~
-~11204~^~432~^37.^0^^~4~^^^^^^^^^^^~03/01/2007~
-~11204~^~435~^37.^0^^~4~^~NC~^^^^^^^^^^~03/01/2007~
-~11204~^~601~^0.^0^^~7~^~Z~^^^^^^^^^^~08/01/1984~
-~11205~^~208~^15.^0^^~4~^~NC~^^^^^^^^^^~03/01/2006~
-~11205~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~11/01/2002~
-~11205~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~11/01/2002~
-~11205~^~268~^65.^0^^~4~^~NC~^^^^^^^^^^~03/01/2006~
-~11205~^~301~^16.^4^^~1~^~A~^^^1^16.^16.^0^^^~4~^~11/01/2002~
-~11205~^~304~^13.^4^^~1~^~A~^^^1^13.^13.^0^^^~4~^~11/01/2002~
-~11205~^~305~^24.^4^^~1~^~A~^^^1^24.^24.^0^^^~4~^~11/01/2002~
-~11205~^~306~^147.^4^^~1~^~A~^^^1^147.^147.^0^^^~4~^~11/01/2002~
-~11205~^~307~^2.^54^0.^~1~^^^^^^^^^^^~08/01/1984~
-~11205~^~318~^105.^0^^~4~^~NC~^^^^^^^^^^~03/01/2006~
-~11205~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2002~
-~11205~^~320~^5.^0^^~4~^~NC~^^^^^^^^^^~03/01/2006~
-~11205~^~321~^45.^0^^~4~^~BFSN~^~11206~^^^^^^^^^~11/01/2002~
-~11205~^~322~^11.^0^^~4~^~BFSN~^~11206~^^^^^^^^^~11/01/2002~
-~11205~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~
-~11205~^~334~^26.^0^^~4~^~BFSN~^~11206~^^^^^^^^^~11/01/2002~
-~11205~^~337~^0.^0^^~4~^~BFSN~^~11206~^^^^^^^^^~11/01/2002~
-~11205~^~338~^23.^0^^~4~^~BFSN~^~11206~^^^^^^^^^~11/01/2002~
-~11205~^~417~^7.^8^0.^~1~^~A~^^^1^7.^7.^1^7.^7.^~1, 4~^~11/01/2002~
-~11205~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~
-~11205~^~432~^7.^8^0.^~1~^~A~^^^1^7.^7.^1^7.^7.^^~03/01/2006~
-~11205~^~435~^7.^0^^~4~^~NC~^^^^^^^^^^~03/01/2006~
-~11205~^~601~^0.^0^^~7~^~Z~^^^^^^^^^^~08/01/1984~
-~11205~^~636~^14.^0^^~1~^^^^^^^^^^^~08/01/1984~
-~11206~^~208~^10.^0^^~4~^~NC~^^^^^^^^^^~01/01/2017~
-~11206~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~10/01/2002~
-~11206~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~10/01/2002~
-~11206~^~268~^44.^0^^~4~^~NC~^^^^^^^^^^~01/01/2017~
-~11206~^~301~^14.^51^1.^~6~^~JA~^^^6^7.^23.^4^11.^17.^~2, 3~^~10/01/2002~
-~11206~^~304~^12.^52^0.^~6~^~JA~^^^6^7.^16.^3^9.^13.^~2, 3~^~10/01/2002~
-~11206~^~305~^21.^51^0.^~6~^~JA~^^^6^16.^35.^5^19.^22.^~2, 3~^~10/01/2002~
-~11206~^~306~^136.^52^8.^~6~^~JA~^^^6^94.^241.^3^111.^160.^~2, 3~^~10/01/2002~
-~11206~^~307~^2.^48^0.^~1~^^^^5^1.^5.^35^1.^2.^~2, 3~^~05/01/2003~
-~11206~^~318~^72.^0^^~4~^~NC~^^^^^^^^^^~03/01/2006~
-~11206~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2002~
-~11206~^~320~^4.^0^^~4~^~NC~^^^^^^^^^^~03/01/2006~
-~11206~^~321~^31.^2^^~1~^~A~^^^^^^^^^^~10/01/2002~
-~11206~^~322~^8.^2^^~1~^~A~^^^^^^^^^^~10/01/2002~
-~11206~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~
-~11206~^~334~^18.^0^^~4~^~T~^^^^^^^^^^~10/01/2002~
-~11206~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~10/01/2002~
-~11206~^~338~^16.^0^^~4~^~T~^^^^^^^^^^~10/01/2002~
-~11206~^~417~^14.^3^3.^~1~^~A~^^^^^^^^^^~03/01/2006~
-~11206~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~
-~11206~^~432~^14.^3^3.^~1~^~A~^^^^^^^^^^~03/01/2006~
-~11206~^~435~^14.^0^^~4~^~NC~^^^^^^^^^^~03/01/2006~
-~11206~^~601~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/1995~
-~11207~^~208~^45.^0^^~4~^~NC~^^^^^^^^^^~03/01/2007~
-~11207~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2003~
-~11207~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2003~
-~11207~^~268~^188.^0^^~4~^^^^^^^^^^^~05/01/2007~
-~11207~^~301~^187.^0^^~1~^^^^^^^^^^^~08/01/1984~
-~11207~^~304~^36.^0^^~1~^^^^^^^^^^^~08/01/1984~
-~11207~^~305~^66.^0^^~1~^^^^^^^^^^^~08/01/1984~
-~11207~^~306~^397.^0^^~1~^^^^^^^^^^^~08/01/1984~
-~11207~^~307~^76.^0^^~1~^^^^^^^^^^^~08/01/1984~
-~11207~^~318~^10161.^0^^~4~^~NC~^^^^^^^^^^~05/01/2007~
-~11207~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2002~
-~11207~^~320~^508.^0^^~4~^~NC~^^^^^^^^^^~05/01/2007~
-~11207~^~321~^5854.^0^^~4~^~BFSN~^~11161~^^^^^^^^^~05/01/2007~
-~11207~^~322~^363.^0^^~4~^~BFSN~^~11161~^^^^^^^^^~05/01/2007~
-~11207~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~
-~11207~^~334~^121.^0^^~4~^~BFSN~^~11161~^^^^^^^^^~05/01/2007~
-~11207~^~337~^0.^0^^~4~^~BFSN~^~11161~^^^^^^^^^~01/01/2003~
-~11207~^~338~^13610.^0^^~4~^~BFSN~^~11161~^^^^^^^^^~05/01/2007~
-~11207~^~417~^27.^0^^~4~^^^^^^^^^^^~08/01/1984~
-~11207~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~
-~11207~^~432~^27.^0^^~4~^^^^^^^^^^^~05/01/2007~
-~11207~^~435~^27.^0^^~4~^~NC~^^^^^^^^^^~05/01/2007~
-~11207~^~601~^0.^0^^~7~^~Z~^^^^^^^^^^~08/01/1984~
-~11208~^~208~^33.^0^^~4~^~NC~^^^^^^^^^^~03/01/2007~
-~11208~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2003~
-~11208~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2003~
-~11208~^~268~^138.^0^^~4~^^^^^^^^^^^~05/01/2007~
-~11208~^~301~^140.^0^^~1~^^^^^^^^^^^~08/01/1984~
-~11208~^~304~^24.^0^^~4~^^^^^^^^^^^~08/01/1984~
-~11208~^~305~^42.^0^^~1~^^^^^^^^^^^~08/01/1984~
-~11208~^~306~^232.^0^^~1~^^^^^^^^^^^~08/01/1984~
-~11208~^~307~^44.^0^^~1~^^^^^^^^^^^~08/01/1984~
-~11208~^~318~^6837.^0^^~4~^~NC~^^^^^^^^^^~05/01/2007~
-~11208~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2002~
-~11208~^~320~^342.^0^^~4~^~NC~^^^^^^^^^^~05/01/2007~
-~11208~^~321~^3940.^0^^~4~^~BFSY~^~11207~^^^^^^^^^~05/01/2007~
-~11208~^~322~^244.^0^^~4~^~BFSY~^~11207~^^^^^^^^^~05/01/2007~
-~11208~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~
-~11208~^~334~^82.^0^^~4~^~BFSY~^~11207~^^^^^^^^^~05/01/2007~
-~11208~^~337~^0.^0^^~4~^~BFSY~^~11207~^^^^^^^^^~03/01/2007~
-~11208~^~338~^9158.^0^^~4~^~BFSY~^~11207~^^^^^^^^^~05/01/2007~
-~11208~^~417~^13.^0^^~4~^^^^^^^^^^^~08/01/1984~
-~11208~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~
-~11208~^~432~^13.^0^^~4~^^^^^^^^^^^~05/01/2007~
-~11208~^~435~^13.^0^^~4~^~NC~^^^^^^^^^^~05/01/2007~
-~11208~^~601~^0.^0^^~7~^~Z~^^^^^^^^^^~08/01/1984~
-~11209~^~208~^25.^0^^~4~^~NC~^^^^^^^^^^~08/01/2012~
-~11209~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~12/01/2002~
-~11209~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~12/01/2002~
-~11209~^~268~^104.^0^^~4~^~NC~^^^^^^^^^^~08/01/2012~
-~11209~^~301~^9.^7^0.^~6~^~JA~^^^3^7.^10.^6^7.^9.^~4~^~08/01/2012~
-~11209~^~304~^14.^1^^~6~^~JA~^^^3^12.^15.^9^^^^~08/01/2012~
-~11209~^~305~^24.^7^1.^~6~^~JA~^^^3^21.^28.^6^22.^26.^~4~^~08/01/2012~
-~11209~^~306~^229.^7^6.^~6~^~JA~^^^3^201.^259.^6^212.^245.^~4~^~08/01/2012~
-~11209~^~307~^2.^7^0.^~6~^~JA~^^^3^1.^3.^6^1.^2.^~1, 4~^~08/01/2012~
-~11209~^~318~^23.^0^^~4~^~NC~^^^^^^^^^^~08/01/2012~
-~11209~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2002~
-~11209~^~320~^1.^0^^~4~^~NC~^^^^^^^^^^~03/01/2007~
-~11209~^~321~^14.^5^7.^~6~^~JA~^^^3^0.^37.^4^-8.^35.^~4~^~08/01/2012~
-~11209~^~322~^0.^1^^~1~^~A~^^^^^^^^^~1~^~08/01/2012~
-~11209~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~
-~11209~^~334~^0.^1^^~1~^~A~^^^^^^^^^^~08/01/2012~
-~11209~^~337~^0.^1^^~1~^~A~^^^^^^^^^~1~^~08/01/2012~
-~11209~^~338~^36.^1^^~1~^~A~^^^^^^^^^^~08/01/2012~
-~11209~^~417~^22.^6^2.^~1~^^^^2^13.^27.^5^16.^26.^~4~^~01/01/2003~
-~11209~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~
-~11209~^~432~^22.^6^2.^~1~^^^^2^13.^27.^5^16.^26.^^~03/01/2007~
-~11209~^~435~^22.^0^^~4~^~NC~^^^^^^^^^^~03/01/2007~
-~11209~^~601~^0.^0^^~7~^~Z~^^^^^^^^^^~08/01/1984~
-~11209~^~636~^7.^1^^~1~^^^^^^^^^^^~08/01/1984~
-~11210~^~208~^35.^0^^~4~^~NC~^^^^^^^^^^~03/01/2007~
-~11210~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~12/01/2002~
-~11210~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~12/01/2002~
-~11210~^~268~^147.^0^^~4~^~NC~^^^^^^^^^^~03/01/2007~
-~11210~^~301~^6.^18^0.^~1~^~A~^^^7^5.^9.^6^5.^6.^~2~^~12/01/2002~
-~11210~^~304~^11.^21^1.^~6~^~JA~^^^8^8.^20.^7^8.^12.^~2~^~01/01/2003~
-~11210~^~305~^15.^18^0.^~1~^~A~^^^7^10.^21.^6^13.^16.^~2~^~01/01/2003~
-~11210~^~306~^123.^18^8.^~1~^~A~^^^7^93.^175.^6^102.^144.^~2~^~01/01/2003~
-~11210~^~307~^1.^18^0.^~1~^~A~^^^7^0.^2.^6^0.^1.^~2~^~01/01/2003~
-~11210~^~318~^37.^0^^~4~^~NC~^^^^^^^^^^~03/01/2007~
-~11210~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2002~
-~11210~^~320~^2.^0^^~4~^~NC~^^^^^^^^^^~03/01/2007~
-~11210~^~321~^22.^0^^~4~^~BFSN~^~11209~^^^^^^^^^~01/01/2003~
-~11210~^~322~^0.^0^^~4~^~BFSN~^~11209~^^^^^^^^^~01/01/2003~
-~11210~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~
-~11210~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2003~
-~11210~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2003~
-~11210~^~338~^0.^0^^~4~^~BFSN~^~11209~^^^^^^^^^~01/01/2003~
-~11210~^~417~^14.^0^^~1~^^^^^^^^^^^~08/01/1984~
-~11210~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~
-~11210~^~432~^14.^0^^~1~^^^^^^^^^^^~03/01/2007~
-~11210~^~435~^14.^0^^~4~^~NC~^^^^^^^^^^~03/01/2007~
-~11210~^~601~^0.^0^^~7~^~Z~^^^^^^^^^^~08/01/1984~
-~11211~^~208~^109.^0^^~4~^~NC~^^^^^^^^^^~07/01/2015~
-~11211~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2006~
-~11211~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2006~
-~11211~^~268~^458.^0^^~4~^~NC~^^^^^^^^^^~07/01/2015~
-~11211~^~301~^60.^2^^~1~^~A~^^^1^57.^63.^1^^^^~05/01/2006~
-~11211~^~304~^61.^2^^~1~^~A~^^^1^52.^70.^1^^^^~05/01/2006~
-~11211~^~305~^161.^2^^~1~^~A~^^^1^160.^162.^1^^^^~05/01/2006~
-~11211~^~306~^482.^2^^~1~^~A~^^^1^387.^576.^1^^^^~05/01/2006~
-~11211~^~307~^6.^2^^~1~^~A~^^^1^3.^8.^1^^^^~05/01/2006~
-~11211~^~417~^303.^2^^~1~^~A~^^^1^201.^404.^1^^^^~04/01/2006~
-~11211~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~11/01/2006~
-~11211~^~432~^303.^2^^~1~^~A~^^^1^201.^404.^1^^^^~04/01/2006~
-~11211~^~435~^303.^0^^~4~^~NC~^^^^^^^^^^~11/01/2006~
-~11212~^~208~^121.^0^^~4~^~NC~^^^^^^^^^^~07/01/2015~
-~11212~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2006~
-~11212~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2006~
-~11212~^~268~^507.^0^^~4~^~NC~^^^^^^^^^^~07/01/2015~
-~11212~^~301~^63.^2^^~1~^~A~^^^1^55.^70.^1^^^^~05/01/2006~
-~11212~^~304~^64.^2^^~1~^~A~^^^1^46.^81.^1^^^^~05/01/2006~
-~11212~^~305~^169.^2^^~1~^~A~^^^1^148.^190.^1^^^^~05/01/2006~
-~11212~^~306~^436.^2^^~1~^~A~^^^1^296.^575.^1^^^^~05/01/2006~
-~11212~^~307~^6.^2^^~1~^~A~^^^1^5.^8.^1^^^^~05/01/2006~
-~11212~^~318~^298.^0^^~4~^~NC~^^^^^^^^^^~11/01/2014~
-~11212~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~11/01/2014~
-~11212~^~320~^15.^0^^~4~^~NC~^^^^^^^^^^~11/01/2014~
-~11212~^~321~^175.^0^^~4~^~BFSY~^~11973~^^^^^^^^^~11/01/2014~
-~11212~^~322~^0.^0^^~4~^~BFSY~^~11973~^^^^^^^^^~11/01/2014~
-~11212~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~11/01/2014~
-~11212~^~334~^8.^0^^~4~^~BFSY~^~11973~^^^^^^^^^~11/01/2014~
-~11212~^~337~^0.^0^^~4~^~BFSY~^~11973~^^^^^^^^^~11/01/2014~
-~11212~^~338~^1619.^0^^~4~^~BFSY~^~11973~^^^^^^^^^~11/01/2014~
-~11212~^~417~^311.^2^^~1~^~A~^^^1^222.^400.^1^^^^~04/01/2006~
-~11212~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~11/01/2006~
-~11212~^~432~^311.^2^^~1~^~A~^^^1^222.^400.^1^^^^~04/01/2006~
-~11212~^~435~^311.^0^^~4~^~NC~^^^^^^^^^^~04/01/2007~
-~11212~^~601~^0.^0^^~7~^~Z~^^^^^^^^^^~11/01/2014~
-~11213~^~208~^17.^0^^~4~^~NC~^^^^^^^^^^~03/01/2007~
-~11213~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~12/01/2002~
-~11213~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~12/01/2002~
-~11213~^~268~^71.^0^^~4~^^^^^^^^^^^~03/01/2007~
-~11213~^~301~^52.^4^5.^~1~^^^^^^^^^^^~08/01/1984~
-~11213~^~304~^15.^4^5.^~1~^^^^^^^^^^^~08/01/1984~
-~11213~^~305~^28.^3^3.^~1~^^^^^^^^^^^~08/01/1984~
-~11213~^~306~^314.^18^22.^~1~^^^^^^^^^^^~08/01/1984~
-~11213~^~307~^22.^18^4.^~1~^^^^^^^^^^^~08/01/1984~
-~11213~^~318~^2167.^0^^~4~^~NC~^^^^^^^^^^~03/01/2007~
-~11213~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2002~
-~11213~^~320~^108.^0^^~4~^~NC~^^^^^^^^^^~03/01/2007~
-~11213~^~321~^1300.^0^^~4~^~T~^^^^^^^^^^~12/01/2002~
-~11213~^~322~^0.^0^^~4~^~T~^^^^^^^^^^~12/01/2002~
-~11213~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~
-~11213~^~334~^0.^0^^~4~^~T~^^^^^^^^^^~12/01/2002~
-~11213~^~337~^0.^0^^~4~^~T~^^^^^^^^^^~12/01/2002~
-~11213~^~338~^0.^0^^~4~^~T~^^^^^^^^^^~12/01/2002~
-~11213~^~417~^142.^6^13.^~1~^^^^^^^^^^^~08/01/1984~
-~11213~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~
-~11213~^~432~^142.^6^13.^~1~^^^^^^^^^^^~03/01/2007~
-~11213~^~435~^142.^0^^~4~^~NC~^^^^^^^^^^~03/01/2007~
-~11213~^~601~^0.^0^^~7~^~Z~^^^^^^^^^^~08/01/1984~
-~11214~^~208~^15.^0^^~4~^~NC~^^^^^^^^^^~01/01/2017~
-~11214~^~262~^0.^0^^~4~^~RA~^^^^^^^^^^~11/01/2014~
-~11214~^~263~^0.^0^^~4~^~RA~^^^^^^^^^^~11/01/2014~
-~11214~^~268~^64.^0^^~4~^~NC~^^^^^^^^^^~01/01/2017~
-~11214~^~301~^46.^0^^~4~^~RA~^^^^^^^^^^~11/01/2014~
-~11214~^~304~^13.^0^^~4~^~RA~^^^^^^^^^^~11/01/2014~
-~11214~^~305~^22.^0^^~4~^~RA~^^^^^^^^^^~11/01/2014~
-~11214~^~306~^245.^0^^~4~^~RA~^^^^^^^^^^~11/01/2014~
-~11214~^~307~^19.^0^^~4~^~RA~^^^^^^^^^^~11/01/2014~
-~11214~^~318~^1888.^0^^~4~^~NC~^^^^^^^^^^~11/01/2014~
-~11214~^~319~^0.^0^^~4~^~RA~^^^^^^^^^^~11/01/2014~
-~11214~^~320~^94.^0^^~4~^~NC~^^^^^^^^^^~11/01/2014~
-~11214~^~321~^1133.^0^^~4~^~RA~^^^^^^^^^^~11/01/2014~
-~11214~^~322~^0.^0^^~4~^~RA~^^^^^^^^^^~11/01/2014~
-~11214~^~324~^0.^0^^~4~^~RA~^^^^^^^^^^~11/01/2014~
-~11214~^~334~^0.^0^^~4~^~RA~^^^^^^^^^^~11/01/2014~
-~11214~^~337~^0.^0^^~4~^~RA~^^^^^^^^^^~11/01/2014~
-~11214~^~338~^0.^0^^~4~^~RA~^^^^^^^^^^~11/01/2014~
-~11214~^~417~^78.^0^^~4~^~RA~^^^^^^^^^^~11/01/2014~
-~11214~^~431~^0.^0^^~4~^~RA~^^^^^^^^^^~11/01/2014~
-~11214~^~432~^78.^0^^~4~^~RA~^^^^^^^^^^~11/01/2014~
-~11214~^~435~^78.^0^^~4~^~NC~^^^^^^^^^^~11/01/2014~
-~11214~^~601~^0.^0^^~4~^~RA~^^^^^^^^^^~11/01/2014~
-~11215~^~208~^149.^0^^~4~^~NC~^^^^^^^^^^~03/01/2007~
-~11215~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~10/01/2002~
-~11215~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~10/01/2002~
-~11215~^~268~^623.^0^^~4~^~NC~^^^^^^^^^^~03/01/2007~
-~11215~^~301~^181.^8^25.^~1~^^^^^^^^^^^~08/01/1984~
-~11215~^~304~^25.^8^1.^~1~^^^^^^^^^^^~08/01/1984~
-~11215~^~305~^153.^8^7.^~1~^^^^^^^^^^^~08/01/1984~
-~11215~^~306~^401.^8^25.^~1~^^^^^^^^^^^~08/01/1984~
-~11215~^~307~^17.^8^1.^~1~^^^^^^^^^^^~08/01/1984~
-~11215~^~318~^9.^0^^~4~^~NC~^^^^^^^^^^~03/01/2007~
-~11215~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2002~
-~11215~^~320~^0.^0^^~4~^~NC~^^^^^^^^^^~03/01/2007~
-~11215~^~321~^5.^0^^~4~^~BFSN~^~11282~^^^^^^^^^~03/01/2007~
-~11215~^~322~^0.^0^^~4~^~BFSN~^~11282~^^^^^^^^^~03/01/2007~
-~11215~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~
-~11215~^~334~^0.^0^^~4~^~BFSN~^~11282~^^^^^^^^^~03/01/2007~
-~11215~^~337~^0.^0^^~4~^~BFSN~^~11282~^^^^^^^^^~03/01/2007~
-~11215~^~338~^16.^0^^~4~^~BFSN~^~11282~^^^^^^^^^~03/01/2007~
-~11215~^~417~^3.^0^^~1~^^^^^^^^^^^~08/01/1984~
-~11215~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~
-~11215~^~432~^3.^0^^~1~^^^^^^^^^^^~03/01/2007~
-~11215~^~435~^3.^0^^~4~^~NC~^^^^^^^^^^~03/01/2007~
-~11215~^~601~^0.^0^^~7~^~Z~^^^^^^^^^^~08/01/1984~
-~11216~^~208~^80.^0^^~4~^~NC~^^^^^^^^^^~03/01/2007~
-~11216~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2003~
-~11216~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2003~
-~11216~^~268~^333.^0^^~4~^~NC~^^^^^^^^^^~03/01/2007~
-~11216~^~301~^16.^3^^~1~^^^^1^15.^18.^^^^~2~^~01/01/2003~
-~11216~^~304~^43.^2^^~1~^^^^1^43.^43.^^^^^~01/01/2003~
-~11216~^~305~^34.^3^^~1~^^^^1^27.^42.^^^^~2~^~01/01/2003~
-~11216~^~306~^415.^2^^~1~^^^^1^415.^415.^^^^^~01/01/2003~
-~11216~^~307~^13.^2^^~1~^^^^1^13.^13.^^^^^~01/01/2003~
-~11216~^~318~^0.^0^^~1~^~AS~^^^^^^^^^^~03/01/2007~
-~11216~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2002~
-~11216~^~320~^0.^0^^~1~^~AS~^^^^^^^^^^~03/01/2007~
-~11216~^~321~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2003~
-~11216~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2003~
-~11216~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~
-~11216~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2003~
-~11216~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2003~
-~11216~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2003~
-~11216~^~417~^11.^1^^~1~^^^^^11.^11.^^^^^~01/01/2003~
-~11216~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~
-~11216~^~432~^11.^1^^~1~^^^^^^^^^^^~03/01/2007~
-~11216~^~435~^11.^0^^~4~^~NC~^^^^^^^^^^~03/01/2007~
-~11216~^~601~^0.^1^^~1~^^^^^0.^0.^^^^^~01/01/2003~
-~11216~^~636~^15.^1^^~1~^^^^^15.^15.^^^^^~01/01/2003~
-~11218~^~208~^14.^0^^~4~^~NC~^^^^^^^^^^~08/01/1984~
-~11218~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~08/01/2011~
-~11218~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~08/01/2011~
-~11218~^~268~^59.^0^^~4~^^^^^^^^^^^
-~11218~^~301~^26.^1^^~1~^^^^^^^^^^^~08/01/1984~
-~11218~^~304~^11.^1^^~1~^^^^^^^^^^^~08/01/1984~
-~11218~^~305~^13.^1^^~1~^^^^^^^^^^^~08/01/1984~
-~11218~^~306~^150.^1^^~1~^^^^^^^^^^^~08/01/1984~
-~11218~^~307~^2.^1^^~1~^^^^^^^^^^^~08/01/1984~
-~11218~^~318~^16.^0^^~4~^^^^^^^^^^^~08/01/1984~
-~11218~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2002~
-~11218~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~
-~11218~^~417~^6.^0^^~1~^^^^^^^^^^^~08/01/1984~
-~11218~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~
-~11218~^~432~^6.^0^^~1~^^^^^^^^^^^~12/01/1984~
-~11218~^~435~^6.^0^^~4~^~NC~^^^^^^^^^^~01/01/2001~
-~11218~^~601~^0.^0^^~7~^~Z~^^^^^^^^^^~08/01/1984~
-~11219~^~208~^15.^0^^~4~^~NC~^^^^^^^^^^~08/01/1984~
-~11219~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~08/01/2011~
-~11219~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~08/01/2011~
-~11219~^~268~^63.^0^^~4~^^^^^^^^^^^
-~11219~^~301~^24.^1^^~1~^^^^^^^^^^^~08/01/1984~
-~11219~^~304~^11.^1^^~1~^^^^^^^^^^^~08/01/1984~
-~11219~^~305~^13.^1^^~1~^^^^^^^^^^^~08/01/1984~
-~11219~^~306~^170.^1^^~1~^^^^^^^^^^^~08/01/1984~
-~11219~^~307~^2.^1^^~1~^^^^^^^^^^^~08/01/1984~
-~11219~^~318~^0.^0^^~1~^^^^^^^^^^^~08/01/1984~
-~11219~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2002~
-~11219~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~
-~11219~^~417~^4.^0^^~4~^^^^^^^^^^^~08/01/1984~
-~11219~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~
-~11219~^~432~^4.^0^^~4~^^^^^^^^^^^~12/01/1984~
-~11219~^~435~^4.^0^^~4~^~NC~^^^^^^^^^^~01/01/2001~
-~11219~^~601~^0.^0^^~7~^~Z~^^^^^^^^^^~08/01/1984~
-~11220~^~208~^20.^0^^~4~^~NC~^^^^^^^^^^~08/01/1984~
-~11220~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~08/01/2011~
-~11220~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~08/01/2011~
-~11220~^~268~^84.^0^^~4~^~NC~^^^^^^^^^^~08/01/2011~
-~11220~^~301~^20.^1^^~1~^^^^^^^^^^^~08/01/1984~
-~11220~^~304~^14.^1^^~1~^^^^^^^^^^^~08/01/1984~
-~11220~^~305~^32.^1^^~1~^^^^^^^^^^^~08/01/1984~
-~11220~^~306~^139.^1^^~1~^^^^^^^^^^^~08/01/1984~
-~11220~^~307~^3.^1^^~1~^^^^^^^^^^^~08/01/1984~
-~11220~^~318~^410.^1^^~1~^^^^^^^^^^^~08/01/1984~
-~11220~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2002~
-~11220~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~
-~11220~^~417~^7.^0^^~4~^^^^^^^^^^^~08/01/1984~
-~11220~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~
-~11220~^~432~^7.^0^^~4~^^^^^^^^^^^~12/01/1984~
-~11220~^~435~^7.^0^^~4~^~NC~^^^^^^^^^^~01/01/2001~
-~11220~^~601~^0.^0^^~7~^~Z~^^^^^^^^^^~08/01/1984~
-~11221~^~208~^56.^0^^~4~^~NC~^^^^^^^^^^~08/01/1984~
-~11221~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~08/01/2011~
-~11221~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~08/01/2011~
-~11221~^~268~^234.^0^^~4~^^^^^^^^^^^
-~11221~^~301~^9.^0^^~1~^^^^^^^^^^^~08/01/1984~
-~11221~^~304~^20.^1^^~1~^^^^^^^^^^^~08/01/1984~
-~11221~^~305~^31.^0^^~1~^^^^^^^^^^^~08/01/1984~
-~11221~^~306~^453.^1^^~1~^^^^^^^^^^^~08/01/1984~
-~11221~^~307~^21.^1^^~1~^^^^^^^^^^^~08/01/1984~
-~11221~^~318~^260.^0^^~1~^^^^^^^^^^^~08/01/1984~
-~11221~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2002~
-~11221~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~
-~11221~^~417~^12.^0^^~4~^^^^^^^^^^^~08/01/1984~
-~11221~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~
-~11221~^~432~^12.^0^^~4~^^^^^^^^^^^~12/01/1984~
-~11221~^~435~^12.^0^^~4~^~NC~^^^^^^^^^^~01/01/2001~
-~11221~^~601~^0.^0^^~7~^~Z~^^^^^^^^^^~08/01/1984~
-~11222~^~208~^64.^0^^~4~^~NC~^^^^^^^^^^~08/01/1984~
-~11222~^~268~^268.^0^^~4~^^^^^^^^^^^
-~11222~^~301~^185.^0^^~4~^^^^^^^^^^^~08/01/1984~
-~11222~^~304~^42.^0^^~4~^~T~^^^^^^^^^^~08/01/2015~
-~11222~^~305~^112.^0^^~1~^^^^^^^^^^^~08/01/1984~
-~11222~^~306~^337.^1^^~1~^^^^^^^^^^^~08/01/1984~
-~11222~^~307~^9.^1^^~1~^^^^^^^^^^^~08/01/1984~
-~11222~^~318~^7564.^0^^~1~^^^^^^^^^^^~08/01/1984~
-~11222~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2002~
-~11222~^~320~^378.^0^^~1~^^^^^^^^^^^~06/01/2002~
-~11222~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~
-~11222~^~417~^40.^0^^~4~^^^^^^^^^^^~08/01/1984~
-~11222~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~
-~11222~^~432~^40.^0^^~4~^^^^^^^^^^^~12/01/1984~
-~11222~^~435~^40.^0^^~4~^~NC~^^^^^^^^^^~01/01/2001~
-~11222~^~601~^0.^0^^~7~^~Z~^^^^^^^^^^~08/01/1984~
-~11223~^~208~^60.^0^^~4~^~NC~^^^^^^^^^^~03/01/2007~
-~11223~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2003~
-~11223~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2003~
-~11223~^~268~^251.^0^^~4~^^^^^^^^^^^~03/01/2007~
-~11223~^~301~^151.^0^^~4~^^^^^^^^^^^~08/01/1984~
-~11223~^~304~^34.^0^^~4~^~BFSY~^~11222~^^^^^^^^^~08/01/2015~
-~11223~^~305~^67.^1^^~1~^^^^^^^^^^^~08/01/1984~
-~11223~^~306~^344.^1^^~1~^^^^^^^^^^^~08/01/1984~
-~11223~^~307~^9.^1^^~1~^^^^^^^^^^^~08/01/1984~
-~11223~^~318~^7013.^0^^~4~^~NC~^^^^^^^^^^~03/01/2007~
-~11223~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2002~
-~11223~^~320~^351.^0^^~4~^~NC~^^^^^^^^^^~03/01/2007~
-~11223~^~321~^4208.^0^^~4~^~O~^^^^^^^^^^~01/01/2003~
-~11223~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2003~
-~11223~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~
-~11223~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2003~
-~11223~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2003~
-~11223~^~338~^1747.^0^^~4~^~O~^^^^^^^^^^~01/01/2003~
-~11223~^~417~^23.^0^^~4~^^^^^^^^^^^~08/01/1984~
-~11223~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~
-~11223~^~432~^23.^0^^~4~^^^^^^^^^^^~03/01/2007~
-~11223~^~435~^23.^0^^~4~^~NC~^^^^^^^^^^~03/01/2007~
-~11223~^~601~^0.^0^^~7~^~Z~^^^^^^^^^^~08/01/1984~
-~11224~^~208~^46.^0^^~4~^~NC~^^^^^^^^^^~08/01/1984~
-~11224~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~08/01/2011~
-~11224~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~08/01/2011~
-~11224~^~268~^192.^0^^~4~^^^^^^^^^^^
-~11224~^~301~^50.^0^^~1~^^^^^^^^^^^~08/01/1984~
-~11224~^~304~^40.^1^^~1~^^^^^^^^^^^~08/01/1984~
-~11224~^~305~^49.^0^^~1~^^^^^^^^^^^~08/01/1984~
-~11224~^~306~^252.^1^^~1~^^^^^^^^^^^~08/01/1984~
-~11224~^~307~^2.^1^^~1~^^^^^^^^^^^~08/01/1984~
-~11224~^~318~^864.^0^^~4~^~NC~^^^^^^^^^^~08/01/2011~
-~11224~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2002~
-~11224~^~320~^43.^0^^~4~^~NC~^^^^^^^^^^~08/01/2011~
-~11224~^~321~^475.^0^^~4~^~BFSN~^~11052~^^^^^^^^^~08/01/2011~
-~11224~^~322~^87.^0^^~4~^~BFSN~^~11052~^^^^^^^^^~08/01/2011~
-~11224~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~
-~11224~^~334~^0.^0^^~4~^~BFSN~^~11052~^^^^^^^^^~08/01/2011~
-~11224~^~337~^0.^0^^~4~^~BFSN~^~11052~^^^^^^^^^~08/01/2011~
-~11224~^~338~^802.^0^^~4~^~BFSN~^~11052~^^^^^^^^^~08/01/2011~
-~11224~^~417~^62.^0^^~4~^^^^^^^^^^^~08/01/1984~
-~11224~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~
-~11224~^~432~^62.^0^^~4~^^^^^^^^^^^~12/01/1984~
-~11224~^~435~^62.^0^^~4~^~NC~^^^^^^^^^^~01/01/2001~
-~11224~^~601~^0.^0^^~7~^~Z~^^^^^^^^^^~08/01/1984~
-~11225~^~208~^50.^0^^~4~^~NC~^^^^^^^^^^~08/01/1984~
-~11225~^~268~^209.^0^^~4~^^^^^^^^^^^
-~11225~^~301~^41.^1^^~1~^^^^^^^^^^^~08/01/1984~
-~11225~^~304~^42.^1^^~1~^^^^^^^^^^^~08/01/1984~
-~11225~^~305~^49.^1^^~1~^^^^^^^^^^^~08/01/1984~
-~11225~^~306~^262.^1^^~1~^^^^^^^^^^^~08/01/1984~
-~11225~^~307~^2.^1^^~1~^^^^^^^^^^^~08/01/1984~
-~11225~^~318~^142.^0^^~1~^^^^^^^^^^^~08/01/1984~
-~11225~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2002~
-~11225~^~320~^7.^0^^~1~^^^^^^^^^^^~06/01/2002~
-~11225~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~
-~11225~^~417~^47.^0^^~4~^^^^^^^^^^^~08/01/1984~
-~11225~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~
-~11225~^~432~^47.^0^^~4~^^^^^^^^^^^~12/01/1984~
-~11225~^~435~^47.^0^^~4~^~NC~^^^^^^^^^^~01/01/2001~
-~11225~^~601~^0.^0^^~7~^~Z~^^^^^^^^^^~08/01/1984~
-~11226~^~208~^73.^0^^~4~^~NC~^^^^^^^^^^~03/01/2007~
-~11226~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~12/01/2002~
-~11226~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~12/01/2002~
-~11226~^~268~^304.^0^^~4~^~NC~^^^^^^^^^^~03/01/2007~
-~11226~^~301~^14.^0^^~1~^^^^^^^^^^^~08/01/1984~
-~11226~^~304~^17.^0^^~1~^^^^^^^^^^^~08/01/1984~
-~11226~^~305~^78.^0^^~1~^^^^^^^^^^^~08/01/1984~
-~11226~^~306~^429.^0^^~4~^^^^^^^^^^^~08/01/1984~
-~11226~^~307~^4.^0^^~4~^^^^^^^^^^^~08/01/1984~
-~11226~^~318~^20.^0^^~4~^~NC~^^^^^^^^^^~03/01/2007~
-~11226~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2002~
-~11226~^~320~^1.^0^^~4~^~NC~^^^^^^^^^^~03/01/2007~
-~11226~^~321~^12.^0^^~4~^~O~^^^^^^^^^^~12/01/2002~
-~11226~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~12/01/2002~
-~11226~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~
-~11226~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~12/01/2002~
-~11226~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~12/01/2002~
-~11226~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~12/01/2002~
-~11226~^~417~^13.^0^^~4~^^^^^^^^^^^~08/01/1984~
-~11226~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~
-~11226~^~432~^13.^0^^~4~^^^^^^^^^^^~03/01/2007~
-~11226~^~435~^13.^0^^~4~^~NC~^^^^^^^^^^~03/01/2007~
-~11226~^~601~^0.^0^^~7~^~Z~^^^^^^^^^^~08/01/1984~
-~11228~^~208~^25.^0^^~4~^~NC~^^^^^^^^^^~08/01/1984~
-~11228~^~268~^105.^0^^~4~^^^^^^^^^^^
-~11228~^~301~^16.^1^^~1~^^^^^^^^^^^~08/01/1984~
-~11228~^~304~^25.^1^^~1~^^^^^^^^^^^~08/01/1984~
-~11228~^~305~^14.^1^^~1~^^^^^^^^^^^~08/01/1984~
-~11228~^~306~^43.^1^^~1~^^^^^^^^^^^~08/01/1984~
-~11228~^~307~^9.^1^^~1~^^^^^^^^^^^~08/01/1984~
-~11228~^~318~^0.^1^^~1~^^^^^^^^^^^~08/01/1984~
-~11228~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2002~
-~11228~^~320~^0.^1^^~1~^^^^^^^^^^^~06/01/2002~
-~11228~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~
-~11228~^~417~^19.^0^^~4~^^^^^^^^^^^~08/01/1984~
-~11228~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~
-~11228~^~432~^19.^0^^~4~^^^^^^^^^^^~12/01/1984~
-~11228~^~435~^19.^0^^~4~^~NC~^^^^^^^^^^~01/01/2001~
-~11228~^~601~^0.^0^^~7~^~Z~^^^^^^^^^^~08/01/1984~
-~11230~^~208~^298.^0^^~4~^~NC~^^^^^^^^^^~07/01/2006~
-~11230~^~268~^1248.^0^^~4~^~NC~^^^^^^^^^^~07/01/2006~
-~11230~^~301~^113.^1^^~1~^^^^^^^^^^^~08/01/1984~
-~11230~^~304~^146.^1^^~1~^^^^^^^^^^^~08/01/1984~
-~11230~^~305~^116.^1^^~1~^^^^^^^^^^^~08/01/1984~
-~11230~^~306~^708.^1^^~1~^^^^^^^^^^^~08/01/1984~
-~11230~^~307~^70.^1^^~1~^^^^^^^^^^^~08/01/1984~
-~11230~^~318~^0.^0^^~1~^~AS~^^^^^^^^^^~07/01/2006~
-~11230~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2002~
-~11230~^~320~^0.^0^^~1~^~AS~^^^^^^^^^^~07/01/2006~
-~11230~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~
-~11230~^~417~^160.^0^^~4~^^^^^^^^^^^~08/01/1984~
-~11230~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~
-~11230~^~432~^160.^0^^~4~^^^^^^^^^^^~07/01/2006~
-~11230~^~435~^160.^0^^~4~^~NC~^^^^^^^^^^~07/01/2006~
-~11230~^~601~^0.^0^^~7~^~Z~^^^^^^^^^^~08/01/1984~
-~11231~^~208~^34.^0^^~4~^~NC~^^^^^^^^^^~08/01/1984~
-~11231~^~268~^142.^0^^~4~^^^^^^^^^^^
-~11231~^~301~^208.^0^^~1~^^^^^^^^^^^~08/01/1984~
-~11231~^~304~^64.^1^^~1~^^^^^^^^^^^~08/01/1984~
-~11231~^~305~^83.^0^^~1~^^^^^^^^^^^~08/01/1984~
-~11231~^~306~^559.^1^^~1~^^^^^^^^^^^~08/01/1984~
-~11231~^~307~^8.^1^^~1~^^^^^^^^^^^~08/01/1984~
-~11231~^~318~^5559.^0^^~1~^^^^^^^^^^^~08/01/1984~
-~11231~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2002~
-~11231~^~320~^278.^0^^~1~^^^^^^^^^^^~06/01/2002~
-~11231~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~
-~11231~^~417~^123.^0^^~1~^^^^^^^^^^^~08/01/1984~
-~11231~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~
-~11231~^~432~^123.^0^^~1~^^^^^^^^^^^~12/01/1984~
-~11231~^~435~^123.^0^^~4~^~NC~^^^^^^^^^^~01/01/2001~
-~11231~^~601~^0.^0^^~7~^~Z~^^^^^^^^^^~08/01/1984~
-~11232~^~208~^37.^0^^~4~^~NC~^^^^^^^^^^~03/01/2007~
-~11232~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2003~
-~11232~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2003~
-~11232~^~268~^153.^0^^~4~^~NC~^^^^^^^^^^~03/01/2007~
-~11232~^~301~^211.^1^^~1~^^^^^^^^^^^~08/01/1984~
-~11232~^~304~^62.^1^^~1~^^^^^^^^^^^~08/01/1984~
-~11232~^~305~^72.^1^^~1~^^^^^^^^^^^~08/01/1984~
-~11232~^~306~^550.^1^^~1~^^^^^^^^^^^~08/01/1984~
-~11232~^~307~^11.^1^^~1~^^^^^^^^^^^~08/01/1984~
-~11232~^~318~^5185.^0^^~4~^~NC~^^^^^^^^^^~03/01/2007~
-~11232~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2002~
-~11232~^~320~^259.^0^^~4~^~NC~^^^^^^^^^^~03/01/2007~
-~11232~^~321~^3111.^0^^~4~^~O~^^^^^^^^^^~01/01/2003~
-~11232~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2003~
-~11232~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~
-~11232~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2003~
-~11232~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2003~
-~11232~^~338~^1747.^0^^~4~^~O~^^^^^^^^^^~01/01/2003~
-~11232~^~417~^104.^0^^~4~^^^^^^^^^^^~08/01/1984~
-~11232~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~
-~11232~^~432~^104.^0^^~4~^^^^^^^^^^^~03/01/2007~
-~11232~^~435~^104.^0^^~4~^~NC~^^^^^^^^^^~03/01/2007~
-~11232~^~601~^0.^0^^~7~^~Z~^^^^^^^^^^~08/01/1984~
-~11233~^~208~^35.^0^^~4~^~NC~^^^^^^^^^^~10/01/2016~
-~11233~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2013~
-~11233~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2013~
-~11233~^~268~^148.^0^^~4~^~NC~^^^^^^^^^^~10/01/2016~
-~11233~^~301~^254.^5^14.^~1~^~A~^^^1^203.^281.^4^215.^293.^~2, 3~^~10/01/2016~
-~11233~^~304~^33.^5^3.^~1~^~A~^^^1^28.^46.^4^23.^41.^~2, 3~^~10/01/2016~
-~11233~^~305~^55.^5^2.^~1~^~A~^^^1^47.^62.^4^47.^62.^~2, 3~^~10/01/2016~
-~11233~^~306~^348.^5^14.^~1~^~A~^^^1^301.^389.^4^308.^387.^~2, 3~^~10/01/2016~
-~11233~^~307~^53.^5^21.^~1~^~A~^^^1^16.^107.^4^-7.^113.^~2, 3~^~10/01/2016~
-~11233~^~318~^4812.^0^^~1~^~AS~^^^^^^^^^^~10/01/2016~
-~11233~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2002~
-~11233~^~320~^241.^0^^~1~^~AS~^^^^^^^^^^~10/01/2016~
-~11233~^~321~^2873.^3^499.^~1~^~A~^^^1^2155.^3833.^2^726.^5020.^~4~^~10/01/2016~
-~11233~^~322~^0.^3^0.^~1~^~A~^^^1^0.^0.^^^^~1, 2, 3~^~10/01/2016~
-~11233~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~
-~11233~^~334~^27.^3^5.^~1~^~A~^^^1^19.^37.^2^3.^50.^~2, 3~^~10/01/2016~
-~11233~^~337~^0.^3^0.^~1~^~A~^^^1^0.^0.^^^^~1, 2, 3~^~06/01/2003~
-~11233~^~338~^6261.^3^1211.^~1~^~A~^^^1^4459.^8565.^2^1047.^11473.^~2, 3~^~10/01/2016~
-~11233~^~417~^62.^3^5.^~1~^~A~^^^1^53.^72.^2^38.^85.^~2, 3~^~10/01/2016~
-~11233~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~
-~11233~^~432~^62.^3^5.^~1~^~A~^^^1^53.^72.^2^38.^85.^^~10/01/2016~
-~11233~^~435~^62.^0^^~4~^~NC~^^^^^^^^^^~10/01/2016~
-~11233~^~601~^0.^0^^~7~^~Z~^^^^^^^^^^~08/01/1984~
-~11234~^~208~^36.^0^^~4~^~NC~^^^^^^^^^^~12/01/2016~
-~11234~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~12/01/2002~
-~11234~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~12/01/2002~
-~11234~^~268~^151.^0^^~4~^~NC~^^^^^^^^^^~12/01/2016~
-~11234~^~301~^150.^6^12.^~1~^~A~^^^1^122.^203.^5^117.^183.^~2, 3~^~12/01/2016~
-~11234~^~304~^25.^6^2.^~1~^~A~^^^1^17.^34.^5^18.^31.^~2, 3~^~12/01/2016~
-~11234~^~305~^42.^6^1.^~1~^~A~^^^1^35.^48.^5^36.^46.^~2, 3~^~12/01/2016~
-~11234~^~306~^144.^6^15.^~1~^~A~^^^1^77.^183.^5^103.^183.^~2, 3~^~12/01/2016~
-~11234~^~307~^16.^6^4.^~1~^~A~^^^1^2.^34.^5^3.^28.^~1, 2, 3~^~12/01/2016~
-~11234~^~318~^2915.^0^^~1~^~AS~^^^^^^^^^^~12/01/2016~
-~11234~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2002~
-~11234~^~320~^146.^0^^~1~^~AS~^^^^^^^^^^~12/01/2016~
-~11234~^~321~^1731.^3^369.^~1~^~A~^^^1^1293.^2466.^2^139.^3321.^~2, 3~^~12/01/2016~
-~11234~^~322~^10.^3^1.^~1~^~A~^^^1^7.^14.^2^1.^18.^~2, 3~^~12/01/2016~
-~11234~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~
-~11234~^~334~^26.^3^6.^~1~^~A~^^^1^17.^39.^2^-2.^55.^~2, 3~^~12/01/2016~
-~11234~^~337~^0.^3^0.^~1~^~A~^^^1^0.^0.^^^^~1, 2, 3~^~12/01/2002~
-~11234~^~338~^4983.^3^809.^~1~^~A~^^^1^4071.^6597.^2^1502.^8464.^~2, 3~^~12/01/2016~
-~11234~^~417~^65.^3^11.^~1~^~A~^^^1^50.^87.^2^17.^112.^~2, 3~^~12/01/2016~
-~11234~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~
-~11234~^~432~^65.^3^11.^~1~^~A~^^^1^50.^87.^2^17.^112.^^~12/01/2016~
-~11234~^~435~^65.^0^^~4~^~NC~^^^^^^^^^^~12/01/2016~
-~11234~^~601~^0.^0^^~7~^~Z~^^^^^^^^^^~08/01/1984~
-~11235~^~208~^28.^0^^~4~^~NC~^^^^^^^^^^~08/01/1984~
-~11235~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~10/01/2016~
-~11235~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~10/01/2016~
-~11235~^~268~^116.^0^^~4~^~NC~^^^^^^^^^^~10/01/2016~
-~11235~^~301~^136.^10^7.^~1~^^^^^^^^^^^~08/01/1984~
-~11235~^~304~^18.^3^0.^~1~^^^^^^^^^^^~08/01/1984~
-~11235~^~305~^29.^3^1.^~1~^^^^^^^^^^^~08/01/1984~
-~11235~^~306~^333.^3^12.^~1~^^^^^^^^^^^~08/01/1984~
-~11235~^~307~^15.^3^3.^~1~^^^^^^^^^^^~08/01/1984~
-~11235~^~318~^4120.^0^^~4~^~NC~^^^^^^^^^^~12/01/2016~
-~11235~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2002~
-~11235~^~320~^206.^0^^~4~^~NC~^^^^^^^^^^~12/01/2016~
-~11235~^~321~^2460.^0^^~4~^~BFSN~^~11233~^^^^^^^^^~12/01/2016~
-~11235~^~322~^0.^0^^~4~^~BFSN~^~11233~^^^^^^^^^~12/01/2016~
-~11235~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~
-~11235~^~334~^23.^0^^~4~^~BFSN~^~11233~^^^^^^^^^~12/01/2016~
-~11235~^~337~^0.^0^^~4~^~BFSN~^~11233~^^^^^^^^^~12/01/2016~
-~11235~^~338~^5360.^0^^~4~^~BFSN~^~11233~^^^^^^^^^~12/01/2016~
-~11235~^~417~^17.^0^^~1~^^^^^^^^^^^~08/01/1984~
-~11235~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~
-~11235~^~432~^17.^0^^~1~^^^^^^^^^^^~12/01/1984~
-~11235~^~435~^17.^0^^~4~^~NC~^^^^^^^^^^~04/01/2001~
-~11235~^~601~^0.^0^^~7~^~Z~^^^^^^^^^^~08/01/1984~
-~11236~^~208~^36.^0^^~4~^~NC~^^^^^^^^^^~10/01/2016~
-~11236~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~12/01/2002~
-~11236~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~12/01/2002~
-~11236~^~268~^151.^0^^~4~^~NC~^^^^^^^^^^~10/01/2016~
-~11236~^~301~^150.^6^12.^~1~^~A~^^^1^122.^203.^5^117.^183.^~2, 3~^~10/01/2016~
-~11236~^~304~^25.^6^2.^~1~^~A~^^^1^17.^34.^5^18.^31.^~2, 3~^~10/01/2016~
-~11236~^~305~^42.^6^1.^~1~^~A~^^^1^35.^48.^5^36.^46.^~2, 3~^~10/01/2016~
-~11236~^~306~^144.^6^15.^~1~^~A~^^^1^77.^183.^5^103.^183.^~2, 3~^~10/01/2016~
-~11236~^~307~^16.^6^4.^~1~^~A~^^^1^2.^34.^5^3.^28.^~1, 2, 3~^~10/01/2016~
-~11236~^~318~^2915.^0^^~1~^~AS~^^^^^^^^^^~10/01/2016~
-~11236~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2002~
-~11236~^~320~^146.^0^^~1~^~AS~^^^^^^^^^^~10/01/2016~
-~11236~^~321~^1731.^3^369.^~1~^~A~^^^1^1293.^2466.^2^139.^3321.^~2, 3~^~10/01/2016~
-~11236~^~322~^10.^3^1.^~1~^~A~^^^1^7.^14.^2^1.^18.^~2, 3~^~10/01/2016~
-~11236~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~
-~11236~^~334~^26.^3^6.^~1~^~A~^^^1^17.^39.^2^-2.^55.^~2, 3~^~10/01/2016~
-~11236~^~337~^0.^3^0.^~1~^~A~^^^1^0.^0.^^^^~1, 2, 3~^~10/01/2016~
-~11236~^~338~^4983.^3^809.^~1~^~A~^^^1^4071.^6597.^2^1502.^8464.^~2, 3~^~10/01/2016~
-~11236~^~417~^65.^3^11.^~1~^~A~^^^1^50.^87.^2^17.^112.^~2, 3~^~10/01/2016~
-~11236~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~
-~11236~^~432~^65.^3^11.^~1~^~A~^^^1^50.^87.^2^17.^112.^^~10/01/2016~
-~11236~^~435~^65.^0^^~4~^~NC~^^^^^^^^^^~10/01/2016~
-~11236~^~601~^0.^0^^~7~^~Z~^^^^^^^^^^~08/01/1984~
-~11237~^~208~^258.^0^^~4~^~NC~^^^^^^^^^^~08/01/1984~
-~11237~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~10/01/2011~
-~11237~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~10/01/2011~
-~11237~^~268~^1079.^0^^~4~^^^^^^^^^^^
-~11237~^~301~^280.^1^^~1~^^^^^^^^^^^~08/01/1984~
-~11237~^~304~^125.^1^^~1~^^^^^^^^^^^~08/01/1984~
-~11237~^~305~^188.^1^^~1~^^^^^^^^^^^~08/01/1984~
-~11237~^~306~^1582.^1^^~1~^^^^^^^^^^^~08/01/1984~
-~11237~^~307~^15.^1^^~1~^^^^^^^^^^^~08/01/1984~
-~11237~^~318~^0.^1^^~1~^^^^^^^^^^^~08/01/1984~
-~11237~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2002~
-~11237~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~
-~11237~^~417~^61.^0^^~4~^^^^^^^^^^^~08/01/1984~
-~11237~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~
-~11237~^~432~^61.^0^^~4~^^^^^^^^^^^~12/01/1984~
-~11237~^~435~^61.^0^^~4~^~NC~^^^^^^^^^^~01/01/2001~
-~11237~^~601~^0.^0^^~7~^~Z~^^^^^^^^^^~08/01/1984~
-~11238~^~208~^34.^0^^~4~^~NC~^^^^^^^^^^~08/01/2010~
-~11238~^~268~^141.^0^^~4~^~NC~^^^^^^^^^^~08/01/2010~
-~11238~^~301~^2.^4^0.^~1~^~A~^^^1^1.^3.^3^0.^2.^~1, 2, 3~^~07/01/2009~
-~11238~^~304~^20.^4^1.^~1~^~A~^^^1^18.^25.^3^15.^25.^~2, 3~^~07/01/2009~
-~11238~^~305~^112.^4^11.^~1~^~A~^^^1^96.^144.^3^76.^146.^~2, 3~^~07/01/2009~
-~11238~^~306~^304.^4^37.^~1~^~A~^^^1^253.^417.^3^184.^424.^~2, 3~^~07/01/2009~
-~11238~^~307~^9.^4^2.^~1~^~A~^^^1^3.^13.^3^1.^15.^~2, 3~^~07/01/2009~
-~11238~^~324~^18.^4^10.^~1~^~A~^^^1^1.^46.^3^-14.^49.^~1, 2, 3~^~08/01/2010~
-~11238~^~417~^13.^4^1.^~1~^~AS~^^^1^10.^17.^3^8.^17.^~2, 3~^~05/01/2010~
-~11238~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2012~
-~11238~^~432~^13.^4^1.^~1~^~AS~^^^1^10.^17.^3^8.^17.^^~05/01/2010~
-~11238~^~435~^13.^0^^~4~^~NC~^^^^^^^^^^~02/01/2012~
-~11238~^~638~^0.^4^0.^~1~^~A~^^^1^0.^0.^^^^~1, 2, 3~^~02/01/2010~
-~11238~^~639~^2.^4^0.^~1~^~A~^^^1^2.^3.^3^1.^2.^~2, 3~^~02/01/2010~
-~11238~^~641~^0.^4^0.^~1~^~A~^^^1^0.^0.^^^^~1, 2, 3~^~02/01/2010~
-~11239~^~208~^32.^0^^~4~^~NC~^^^^^^^^^^~01/01/2017~
-~11239~^~268~^135.^0^^~4~^~NC~^^^^^^^^^^~01/01/2017~
-~11239~^~301~^15.^2^^~1~^~A~^^^1^10.^20.^1^^^^~07/01/2009~
-~11239~^~304~^13.^2^^~1~^~A~^^^1^10.^17.^1^^^^~07/01/2009~
-~11239~^~305~^57.^2^^~1~^~A~^^^1^51.^64.^1^^^^~07/01/2009~
-~11239~^~306~^506.^2^^~1~^~A~^^^1^493.^519.^1^^^^~07/01/2009~
-~11239~^~307~^9.^2^^~1~^~A~^^^1^8.^10.^1^^^^~07/01/2009~
-~11239~^~324~^212.^2^^~1~^~A~^^^1^87.^336.^1^^^^~08/01/2010~
-~11239~^~417~^2.^0^^~1~^~AS~^^^^^^^^^^~05/01/2010~
-~11239~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2010~
-~11239~^~432~^2.^2^^~1~^~A~^^^1^2.^3.^1^^^^~05/01/2010~
-~11239~^~435~^2.^0^^~4~^~NC~^^^^^^^^^^~08/01/2010~
-~11239~^~638~^0.^2^^~1~^~A~^^^1^0.^0.^^^^~1~^~02/01/2010~
-~11239~^~639~^1.^2^^~1~^~A~^^^1^0.^2.^1^^^~1~^~02/01/2010~
-~11239~^~641~^0.^2^^~1~^~A~^^^1^0.^0.^^^^~1~^~02/01/2010~
-~11240~^~208~^31.^0^^~4~^~NC~^^^^^^^^^^~08/01/2010~
-~11240~^~268~^129.^0^^~4~^~NC~^^^^^^^^^^~08/01/2010~
-~11240~^~301~^43.^4^11.^~1~^~A~^^^1^20.^65.^3^6.^79.^~2, 3~^~07/01/2009~
-~11240~^~304~^19.^4^1.^~1~^~A~^^^1^17.^21.^3^15.^22.^~2, 3~^~07/01/2009~
-~11240~^~305~^194.^4^4.^~1~^~A~^^^1^180.^202.^3^178.^210.^~2, 3~^~07/01/2009~
-~11240~^~306~^411.^4^26.^~1~^~A~^^^1^354.^481.^3^325.^497.^~2, 3~^~07/01/2009~
-~11240~^~307~^21.^4^9.^~1~^~A~^^^1^3.^39.^3^-10.^52.^~2, 3~^~07/01/2009~
-~11240~^~318~^0.^0^^~1~^~AS~^^^^^^^^^^~07/01/2009~
-~11240~^~320~^0.^0^^~1~^~AS~^^^^^^^^^^~07/01/2009~
-~11240~^~321~^0.^1^^~1~^~A~^^^^^^^^^^~07/01/2009~
-~11240~^~322~^0.^1^^~1~^~A~^^^^^^^^^^~07/01/2009~
-~11240~^~324~^206.^4^17.^~1~^~A~^^^1^176.^250.^3^150.^261.^~2, 3~^~08/01/2010~
-~11240~^~334~^0.^1^^~1~^~A~^^^^^^^^^^~07/01/2009~
-~11240~^~337~^0.^1^^~1~^~A~^^^^^^^^^^~07/01/2009~
-~11240~^~338~^0.^1^^~1~^~A~^^^^^^^^^^~07/01/2009~
-~11240~^~417~^9.^4^2.^~1~^~AS~^^^1^5.^15.^3^1.^15.^~2, 3~^~05/01/2010~
-~11240~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2012~
-~11240~^~432~^9.^4^2.^~1~^~A~^^^1^5.^15.^3^1.^15.^~2, 3~^~05/01/2010~
-~11240~^~435~^9.^0^^~4~^~NC~^^^^^^^^^^~02/01/2012~
-~11240~^~638~^0.^4^0.^~1~^~A~^^^1^0.^0.^^^^~1, 2, 3~^~02/01/2010~
-~11240~^~639~^3.^4^1.^~1~^~A~^^^1^0.^6.^3^-2.^7.^~1, 2, 3~^~02/01/2010~
-~11240~^~641~^0.^4^0.^~1~^~A~^^^1^0.^0.^^^^~1, 2, 3~^~02/01/2010~
-~11241~^~208~^27.^0^^~4~^~NC~^^^^^^^^^^~03/01/2007~
-~11241~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~12/01/2002~
-~11241~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~12/01/2002~
-~11241~^~268~^113.^0^^~4~^^^^^^^^^^^~03/01/2007~
-~11241~^~301~^24.^1^^~1~^^^^^^^^^^^~08/01/1984~
-~11241~^~304~^19.^1^^~1~^^^^^^^^^^^~08/01/1984~
-~11241~^~305~^46.^1^^~1~^^^^^^^^^^^~08/01/1984~
-~11241~^~306~^350.^1^^~1~^^^^^^^^^^^~08/01/1984~
-~11241~^~307~^20.^1^^~1~^^^^^^^^^^^~08/01/1984~
-~11241~^~318~^36.^0^^~4~^~NC~^^^^^^^^^^~03/01/2007~
-~11241~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2002~
-~11241~^~320~^2.^0^^~4~^~NC~^^^^^^^^^^~03/01/2007~
-~11241~^~321~^22.^0^^~4~^~O~^^^^^^^^^^~12/01/2002~
-~11241~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~12/01/2002~
-~11241~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~
-~11241~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~12/01/2002~
-~11241~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~12/01/2002~
-~11241~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~12/01/2002~
-~11241~^~417~^16.^0^^~4~^^^^^^^^^^^~08/01/1984~
-~11241~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~
-~11241~^~432~^16.^0^^~4~^^^^^^^^^^^~03/01/2007~
-~11241~^~435~^16.^0^^~4~^~NC~^^^^^^^^^^~03/01/2007~
-~11241~^~601~^0.^0^^~7~^~Z~^^^^^^^^^^~08/01/1984~
-~11242~^~208~^29.^0^^~4~^~NC~^^^^^^^^^^~03/01/2007~
-~11242~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~12/01/2002~
-~11242~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~12/01/2002~
-~11242~^~268~^121.^0^^~4~^^^^^^^^^^^~03/01/2007~
-~11242~^~301~^25.^0^^~1~^^^^^^^^^^^~08/01/1984~
-~11242~^~304~^19.^0^^~1~^^^^^^^^^^^~08/01/1984~
-~11242~^~305~^45.^0^^~1~^^^^^^^^^^^~08/01/1984~
-~11242~^~306~^340.^0^^~1~^^^^^^^^^^^~08/01/1984~
-~11242~^~307~^21.^0^^~1~^^^^^^^^^^^~08/01/1984~
-~11242~^~318~^35.^0^^~4~^~NC~^^^^^^^^^^~03/01/2007~
-~11242~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2002~
-~11242~^~320~^2.^0^^~4~^~NC~^^^^^^^^^^~03/01/2007~
-~11242~^~321~^21.^0^^~4~^~BFSY~^~11241~^^^^^^^^^~12/01/2002~
-~11242~^~322~^0.^0^^~4~^~BFSY~^~11241~^^^^^^^^^~12/01/2002~
-~11242~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~
-~11242~^~334~^0.^0^^~4~^~BFSY~^~11241~^^^^^^^^^~12/01/2002~
-~11242~^~337~^0.^0^^~4~^~BFSY~^~11241~^^^^^^^^^~12/01/2002~
-~11242~^~338~^0.^0^^~4~^~BFSY~^~11241~^^^^^^^^^~12/01/2002~
-~11242~^~417~^12.^0^^~4~^^^^^^^^^^^~08/01/1984~
-~11242~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~
-~11242~^~432~^12.^0^^~4~^^^^^^^^^^^~03/01/2007~
-~11242~^~435~^12.^0^^~4~^~NC~^^^^^^^^^^~03/01/2007~
-~11242~^~601~^0.^0^^~7~^~Z~^^^^^^^^^^~08/01/1984~
-~11243~^~208~^29.^0^^~4~^~NC~^^^^^^^^^^~08/01/2009~
-~11243~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2005~
-~11243~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2005~
-~11243~^~268~^121.^0^^~4~^~NC~^^^^^^^^^^~08/01/2009~
-~11243~^~301~^3.^7^0.^~1~^~A~^^^2^^^^^^^~08/01/2009~
-~11243~^~304~^13.^7^0.^~1~^~A~^^^2^^^^^^^~08/01/2009~
-~11243~^~305~^135.^7^7.^~1~^~A~^^^2^^^^^^^~08/01/2009~
-~11243~^~306~^437.^7^35.^~1~^~A~^^^2^^^^^^^~08/01/2009~
-~11243~^~307~^11.^7^1.^~1~^~A~^^^2^^^^^^^~08/01/2009~
-~11243~^~318~^0.^0^^~1~^~AS~^^^^^^^^^^~08/01/2009~
-~11243~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2005~
-~11243~^~320~^0.^0^^~1~^~AS~^^^^^^^^^^~08/01/2009~
-~11243~^~321~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2005~
-~11243~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2005~
-~11243~^~324~^14.^0^^~4~^~BFSN~^~11265~^^^^^^^^^~08/01/2009~
-~11243~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2005~
-~11243~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2005~
-~11243~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2005~
-~11243~^~417~^19.^2^^~1~^~A~^^^1^^^^^^^~04/01/2005~
-~11243~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2005~
-~11243~^~432~^19.^2^^~1~^~A~^^^^^^^^^^~08/01/2009~
-~11243~^~435~^19.^0^^~4~^~NC~^^^^^^^^^^~08/01/2009~
-~11243~^~601~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2005~
-~11244~^~208~^43.^0^^~4~^~NC~^^^^^^^^^^~08/01/1984~
-~11244~^~268~^180.^0^^~4~^^^^^^^^^^^
-~11244~^~301~^309.^0^^~1~^^^^^^^^^^^~08/01/1984~
-~11244~^~304~^34.^0^^~4~^^^^^^^^^^^~08/01/1984~
-~11244~^~305~^72.^0^^~1~^^^^^^^^^^^~08/01/1984~
-~11244~^~306~^452.^0^^~4~^^^^^^^^^^^~08/01/1984~
-~11244~^~307~^43.^0^^~4~^^^^^^^^^^^~08/01/1984~
-~11244~^~318~^11600.^0^^~1~^^^^^^^^^^^~08/01/1984~
-~11244~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2002~
-~11244~^~320~^580.^0^^~1~^^^^^^^^^^^~06/01/2002~
-~11244~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~
-~11244~^~417~^30.^0^^~4~^^^^^^^^^^^~08/01/1984~
-~11244~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~
-~11244~^~432~^30.^0^^~4~^^^^^^^^^^^~12/01/1984~
-~11244~^~435~^30.^0^^~4~^~NC~^^^^^^^^^^~01/01/2001~
-~11244~^~601~^0.^0^^~7~^~Z~^^^^^^^^^^~08/01/1984~
-~11245~^~208~^32.^0^^~4~^~NC~^^^^^^^^^^~02/01/2007~
-~11245~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2003~
-~11245~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2003~
-~11245~^~268~^134.^0^^~4~^^^^^^^^^^^~02/01/2007~
-~11245~^~301~^258.^0^^~1~^^^^^^^^^^^~08/01/1984~
-~11245~^~304~^23.^0^^~4~^^^^^^^^^^^~08/01/1984~
-~11245~^~305~^45.^0^^~1~^^^^^^^^^^^~08/01/1984~
-~11245~^~306~^288.^0^^~4~^^^^^^^^^^^~08/01/1984~
-~11245~^~307~^29.^0^^~4~^^^^^^^^^^^~08/01/1984~
-~11245~^~318~^7816.^0^^~4~^~NC~^^^^^^^^^^~02/01/2007~
-~11245~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2002~
-~11245~^~320~^391.^0^^~4~^~NC~^^^^^^^^^^~02/01/2007~
-~11245~^~321~^4688.^0^^~4~^~BFSN~^~11087~^^^^^^^^^~02/01/2007~
-~11245~^~322~^4.^0^^~4~^~BFSN~^~11087~^^^^^^^^^~01/01/2003~
-~11245~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~
-~11245~^~334~^0.^0^^~4~^~BFSN~^~11087~^^^^^^^^^~01/01/2003~
-~11245~^~337~^0.^0^^~4~^~BFSN~^~11087~^^^^^^^^^~01/01/2003~
-~11245~^~338~^1857.^0^^~4~^~BFSN~^~11087~^^^^^^^^^~01/01/2003~
-~11245~^~417~^14.^0^^~4~^^^^^^^^^^^~08/01/1984~
-~11245~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~
-~11245~^~432~^14.^0^^~4~^^^^^^^^^^^~02/01/2007~
-~11245~^~435~^14.^0^^~4~^~NC~^^^^^^^^^^~02/01/2007~
-~11245~^~601~^0.^0^^~7~^~Z~^^^^^^^^^^~08/01/1984~
-~11246~^~208~^61.^0^^~4~^~NC~^^^^^^^^^^~03/01/2007~
-~11246~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~12/01/2002~
-~11246~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~12/01/2002~
-~11246~^~268~^255.^0^^~4~^^^^^^^^^^^~03/01/2007~
-~11246~^~301~^59.^1^^~1~^^^^^^^^^^^~08/01/1984~
-~11246~^~304~^28.^1^^~1~^^^^^^^^^^^~08/01/1984~
-~11246~^~305~^35.^1^^~1~^^^^^^^^^^^~08/01/1984~
-~11246~^~306~^180.^1^^~1~^^^^^^^^^^^~08/01/1984~
-~11246~^~307~^20.^1^^~1~^^^^^^^^^^^~08/01/1984~
-~11246~^~318~^1667.^0^^~4~^~NC~^^^^^^^^^^~03/01/2007~
-~11246~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2002~
-~11246~^~320~^83.^0^^~4~^~NC~^^^^^^^^^^~03/01/2007~
-~11246~^~321~^1000.^0^^~4~^~T~^^^^^^^^^^~12/01/2002~
-~11246~^~322~^0.^0^^~4~^~T~^^^^^^^^^^~12/01/2002~
-~11246~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~
-~11246~^~334~^0.^0^^~4~^~T~^^^^^^^^^^~12/01/2002~
-~11246~^~337~^0.^0^^~4~^~T~^^^^^^^^^^~12/01/2002~
-~11246~^~338~^1900.^0^^~4~^~T~^^^^^^^^^^~12/01/2002~
-~11246~^~417~^64.^0^^~1~^^^^^^^^^^^~08/01/1984~
-~11246~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~
-~11246~^~432~^64.^0^^~1~^^^^^^^^^^^~03/01/2007~
-~11246~^~435~^64.^0^^~4~^~NC~^^^^^^^^^^~03/01/2007~
-~11246~^~601~^0.^0^^~7~^~Z~^^^^^^^^^^~08/01/1984~
-~11247~^~208~^31.^0^^~4~^~NC~^^^^^^^^^^~08/01/1984~
-~11247~^~268~^130.^0^^~4~^^^^^^^^^^^~11/01/2007~
-~11247~^~301~^30.^0^^~1~^^^^^^^^^^^~08/01/1984~
-~11247~^~304~^14.^0^^~1~^^^^^^^^^^^~08/01/1984~
-~11247~^~305~^17.^0^^~1~^^^^^^^^^^^~08/01/1984~
-~11247~^~306~^87.^0^^~1~^^^^^^^^^^^~08/01/1984~
-~11247~^~307~^10.^0^^~1~^^^^^^^^^^^~08/01/1984~
-~11247~^~318~^812.^0^^~4~^~NC~^^^^^^^^^^~11/01/2007~
-~11247~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2002~
-~11247~^~320~^41.^0^^~4~^~NC~^^^^^^^^^^~11/01/2007~
-~11247~^~321~^487.^0^^~4~^~BFSY~^~11246~^^^^^^^^^~11/01/2007~
-~11247~^~322~^0.^0^^~4~^~BFSY~^~11246~^^^^^^^^^~11/01/2007~
-~11247~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~
-~11247~^~334~^0.^0^^~4~^~BFSY~^~11246~^^^^^^^^^~11/01/2007~
-~11247~^~337~^0.^0^^~4~^~BFSY~^~11246~^^^^^^^^^~11/01/2007~
-~11247~^~338~^925.^0^^~4~^~BFSY~^~11246~^^^^^^^^^~11/01/2007~
-~11247~^~417~^24.^0^^~1~^^^^^^^^^^^~08/01/1984~
-~11247~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~
-~11247~^~432~^24.^0^^~1~^^^^^^^^^^^~11/01/2007~
-~11247~^~435~^24.^0^^~4~^~NC~^^^^^^^^^^~11/01/2007~
-~11247~^~601~^0.^0^^~7~^~Z~^^^^^^^^^^~08/01/1984~
-~11248~^~208~^106.^0^^~4~^~NC~^^^^^^^^^^~08/01/1984~
-~11248~^~268~^444.^0^^~4~^^^^^^^^^^^
-~11248~^~301~^25.^9^0.^~1~^^^^^^^^^^^~08/01/1984~
-~11248~^~304~^37.^9^2.^~1~^^^^^^^^^^^~08/01/1984~
-~11248~^~305~^173.^9^11.^~1~^^^^^^^^^^^~08/01/1984~
-~11248~^~306~^322.^9^22.^~1~^^^^^^^^^^^~08/01/1984~
-~11248~^~307~^11.^9^5.^~1~^^^^^^^^^^^~08/01/1984~
-~11248~^~318~^45.^9^8.^~1~^^^^^^^^^^^~08/01/1984~
-~11248~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2002~
-~11248~^~320~^2.^9^0.^~1~^^^^^^^^^^^~06/01/2002~
-~11248~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~
-~11248~^~417~^100.^9^9.^~1~^^^^^^^^^^^~08/01/1984~
-~11248~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~
-~11248~^~432~^100.^9^9.^~1~^^^^^^^^^^^~12/01/1984~
-~11248~^~435~^100.^0^^~4~^~NC~^^^^^^^^^^~01/01/2001~
-~11248~^~601~^0.^0^^~7~^~Z~^^^^^^^^^^~08/01/1984~
-~11249~^~208~^101.^0^^~4~^~NC~^^^^^^^^^^~08/01/1984~
-~11249~^~268~^423.^0^^~4~^^^^^^^^^^^
-~11249~^~301~^14.^1^^~1~^^^^^^^^^^^~08/01/1984~
-~11249~^~304~^35.^0^^~1~^^^^^^^^^^^~08/01/1984~
-~11249~^~305~^153.^0^^~1~^^^^^^^^^^^~08/01/1984~
-~11249~^~306~^284.^0^^~1~^^^^^^^^^^^~08/01/1984~
-~11249~^~307~^10.^0^^~4~^^^^^^^^^^^~08/01/1984~
-~11249~^~318~^41.^0^^~1~^^^^^^^^^^^~08/01/1984~
-~11249~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2002~
-~11249~^~320~^2.^0^^~1~^^^^^^^^^^^~06/01/2002~
-~11249~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~
-~11249~^~417~^67.^0^^~4~^^^^^^^^^^^~08/01/1984~
-~11249~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~
-~11249~^~432~^67.^0^^~4~^^^^^^^^^^^~12/01/1984~
-~11249~^~435~^67.^0^^~4~^~NC~^^^^^^^^^^~01/01/2001~
-~11249~^~601~^0.^0^^~7~^~Z~^^^^^^^^^^~08/01/1984~
-~11250~^~208~^13.^0^^~4~^~NC~^^^^^^^^^^~07/01/2007~
-~11250~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~12/01/2002~
-~11250~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~12/01/2002~
-~11250~^~268~^55.^0^^~4~^~NC~^^^^^^^^^^~07/01/2007~
-~11250~^~301~^35.^8^4.^~1~^~A~^^^2^21.^50.^6^25.^45.^~2, 3~^~12/01/2002~
-~11250~^~304~^13.^8^1.^~1~^~A~^^^2^8.^18.^6^9.^15.^~2, 3~^~12/01/2002~
-~11250~^~305~^33.^8^1.^~1~^~A~^^^2^26.^41.^5^29.^36.^~2, 3~^~12/01/2002~
-~11250~^~306~^238.^8^20.^~1~^~A~^^^2^167.^323.^4^183.^292.^~2, 3~^~12/01/2002~
-~11250~^~307~^5.^4^2.^~1~^^^^^^^^^^^~07/01/2007~
-~11250~^~318~^3312.^0^^~1~^~AS~^^^^^^^^^^~07/01/2007~
-~11250~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2002~
-~11250~^~320~^166.^0^^~1~^~AS~^^^^^^^^^^~07/01/2007~
-~11250~^~321~^1987.^2^^~1~^~A~^^^1^1575.^2400.^1^^^^~12/01/2002~
-~11250~^~322~^0.^2^^~1~^~A~^^^1^0.^0.^^^^^~12/01/2002~
-~11250~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~
-~11250~^~334~^0.^2^^~1~^~A~^^^1^0.^0.^^^^^~12/01/2002~
-~11250~^~337~^0.^2^^~1~^~A~^^^1^0.^0.^^^^^~12/01/2002~
-~11250~^~338~^1223.^2^^~1~^~A~^^^1^993.^1454.^1^^^^~12/01/2002~
-~11250~^~417~^73.^3^25.^~1~^^^^^^^^^^^~07/01/2007~
-~11250~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~
-~11250~^~432~^73.^3^25.^~1~^^^^^^^^^^^~07/01/2007~
-~11250~^~435~^73.^0^^~4~^~NC~^^^^^^^^^^~07/01/2007~
-~11250~^~601~^0.^0^^~7~^~Z~^^^^^^^^^^~08/01/1984~
-~11251~^~208~^17.^0^^~4~^~NC~^^^^^^^^^^~06/01/2010~
-~11251~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~12/01/2002~
-~11251~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~12/01/2002~
-~11251~^~268~^72.^0^^~4~^~NC~^^^^^^^^^^~06/01/2010~
-~11251~^~301~^33.^11^0.^~6~^~JA~^^^3^25.^42.^8^30.^34.^~2, 3~^~12/01/2002~
-~11251~^~304~^14.^11^0.^~6~^~JA~^^^3^11.^15.^5^12.^14.^~2, 3~^~12/01/2002~
-~11251~^~305~^30.^11^0.^~6~^~JA~^^^3^27.^34.^6^28.^31.^~2, 3~^~12/01/2002~
-~11251~^~306~^247.^11^8.^~6~^~JA~^^^3^183.^291.^3^221.^272.^~2, 3~^~12/01/2002~
-~11251~^~307~^8.^4^0.^~1~^^^^^^^^^^^~06/01/2010~
-~11251~^~318~^8710.^0^^~1~^~AS~^^^^^^^^^^~06/01/2010~
-~11251~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2002~
-~11251~^~320~^436.^0^^~1~^~AS~^^^^^^^^^^~02/01/2008~
-~11251~^~321~^5226.^6^510.^~1~^~A~^^^2^1770.^8746.^4^3726.^6725.^~2, 3~^~02/01/2008~
-~11251~^~322~^0.^6^0.^~1~^~A~^^^2^0.^0.^^^^~2, 3~^~12/01/2002~
-~11251~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~
-~11251~^~334~^0.^6^0.^~1~^~A~^^^2^0.^0.^^^^~2, 3~^~12/01/2002~
-~11251~^~337~^0.^6^0.^~1~^~A~^^^2^0.^0.^^^^~2, 3~^~12/01/2002~
-~11251~^~338~^2312.^6^331.^~1~^~A~^^^2^931.^4045.^3^1298.^3326.^~2, 3~^~12/01/2002~
-~11251~^~417~^136.^7^32.^~1~^^^^^^^^^^^~06/01/2010~
-~11251~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~
-~11251~^~432~^136.^7^32.^~1~^^^^^^^^^^^~06/01/2010~
-~11251~^~435~^136.^0^^~4~^~NC~^^^^^^^^^^~06/01/2010~
-~11251~^~601~^0.^0^^~7~^~Z~^^^^^^^^^^~08/01/1984~
-~11252~^~208~^14.^0^^~4~^~NC~^^^^^^^^^^~06/01/2007~
-~11252~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~08/01/2002~
-~11252~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~08/01/2002~
-~11252~^~268~^58.^0^^~4~^~NC~^^^^^^^^^^~06/01/2007~
-~11252~^~301~^18.^98^0.^~6~^~JA~^^^14^8.^33.^40^16.^18.^~2, 3~^~11/01/2003~
-~11252~^~304~^7.^99^0.^~6~^~JA~^^^14^3.^14.^49^7.^7.^~2, 3~^~11/01/2003~
-~11252~^~305~^20.^98^0.^~6~^~JA~^^^14^5.^31.^29^18.^20.^~2, 3~^~11/01/2003~
-~11252~^~306~^141.^98^3.^~6~^~JA~^^^14^14.^250.^45^134.^146.^~2, 3~^~11/01/2003~
-~11252~^~307~^10.^91^0.^~6~^~JA~^^^14^1.^32.^37^9.^11.^~2, 3~^~11/01/2003~
-~11252~^~318~^502.^0^^~1~^~AS~^^^^^^^^^^~06/01/2007~
-~11252~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2002~
-~11252~^~320~^25.^0^^~1~^~AS~^^^^^^^^^^~06/01/2007~
-~11252~^~321~^299.^53^4.^~1~^~A~^^^5^57.^333.^3^286.^311.^~2, 3~^~11/01/2003~
-~11252~^~322~^4.^51^0.^~1~^~A~^^^4^0.^4.^^^^~1, 2, 3~^~11/01/2003~
-~11252~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~
-~11252~^~334~^0.^51^0.^~1~^~A~^^^4^0.^0.^^^^~1, 2, 3~^~11/01/2003~
-~11252~^~337~^0.^9^0.^~1~^~A~^^^3^0.^0.^^^^~1, 2, 3~^~11/01/2003~
-~11252~^~338~^277.^9^25.^~1~^~A~^^^3^87.^355.^3^198.^355.^~2, 3~^~11/01/2003~
-~11252~^~417~^29.^23^3.^~6~^~JA~^^^3^2.^63.^17^21.^37.^~2, 3~^~11/01/2003~
-~11252~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~
-~11252~^~432~^29.^23^3.^~6~^~JA~^^^3^2.^63.^17^21.^37.^^~06/01/2007~
-~11252~^~435~^29.^0^^~4~^~NC~^^^^^^^^^^~06/01/2007~
-~11252~^~601~^0.^0^^~7~^~Z~^^^^^^^^^^~08/01/1984~
-~11252~^~636~^10.^0^^~1~^^^^^^^^^^^~08/01/1984~
-~11253~^~208~^15.^0^^~4~^~NC~^^^^^^^^^^~09/01/2010~
-~11253~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~12/01/2002~
-~11253~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~12/01/2002~
-~11253~^~268~^62.^0^^~4~^~NC~^^^^^^^^^^~09/01/2010~
-~11253~^~301~^36.^8^2.^~1~^~A~^^^2^22.^45.^4^29.^41.^~2, 3~^~12/01/2002~
-~11253~^~304~^13.^8^1.^~1~^~A~^^^2^6.^17.^4^9.^16.^~2, 3~^~12/01/2002~
-~11253~^~305~^29.^8^2.^~1~^~A~^^^2^17.^36.^4^22.^35.^~2, 3~^~12/01/2002~
-~11253~^~306~^194.^8^10.^~1~^~A~^^^2^116.^263.^6^168.^220.^~2, 3~^~12/01/2002~
-~11253~^~307~^28.^8^4.^~1~^~A~^^^2^8.^48.^4^13.^41.^~2, 3~^~12/01/2002~
-~11253~^~318~^7405.^0^^~1~^~AS~^^^^^^^^^^~12/01/2006~
-~11253~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2002~
-~11253~^~320~^370.^0^^~1~^~AS~^^^^^^^^^^~12/01/2006~
-~11253~^~321~^4443.^6^418.^~1~^~A~^^^2^3317.^6255.^3^3112.^5773.^~2, 3~^~12/01/2002~
-~11253~^~322~^0.^6^0.^~1~^~A~^^^2^0.^0.^^^^~1, 2, 3~^~12/01/2002~
-~11253~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~
-~11253~^~334~^0.^6^0.^~1~^~A~^^^2^0.^0.^^^^~1, 2, 3~^~12/01/2002~
-~11253~^~337~^0.^6^0.^~1~^~A~^^^2^0.^0.^^^^~1, 2, 3~^~12/01/2002~
-~11253~^~338~^1730.^2^^~1~^~A~^^^1^1593.^1867.^1^^^^~12/01/2002~
-~11253~^~417~^38.^8^2.^~1~^~A~^^^2^29.^53.^3^31.^44.^~2, 3~^~12/01/2002~
-~11253~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~
-~11253~^~432~^38.^8^2.^~1~^~A~^^^2^29.^53.^3^31.^44.^^~06/01/2010~
-~11253~^~435~^38.^0^^~4~^~NC~^^^^^^^^^^~06/01/2010~
-~11253~^~601~^0.^0^^~7~^~Z~^^^^^^^^^^~08/01/1984~
-~11253~^~636~^38.^0^^~1~^^^^^^^^^^^~08/01/1984~
-~11254~^~208~^74.^0^^~4~^~NC~^^^^^^^^^^~12/01/2002~
-~11254~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~12/01/2002~
-~11254~^~263~^0.^0^^~4~^~NR~^^^^^^^^^^~12/01/2002~
-~11254~^~268~^311.^0^^~4~^~NC~^^^^^^^^^^~12/01/2002~
-~11254~^~301~^45.^1^^~1~^^^^^^^^^^^~08/01/1984~
-~11254~^~304~^23.^2^^~1~^^^^^^^^^^^~08/01/1984~
-~11254~^~305~^100.^1^^~1~^^^^^^^^^^^~08/01/1984~
-~11254~^~306~^556.^2^^~1~^^^^^^^^^^^~08/01/1984~
-~11254~^~307~^40.^2^^~1~^^^^^^^^^^^~08/01/1984~
-~11254~^~318~^0.^0^^~1~^~AS~^^^^^^^^^^~12/01/2002~
-~11254~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2002~
-~11254~^~320~^0.^0^^~1~^~AS~^^^^^^^^^^~12/01/2002~
-~11254~^~321~^0.^0^^~7~^~Z~^^^^^^^^^^~12/01/2002~
-~11254~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~12/01/2002~
-~11254~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~
-~11254~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~12/01/2002~
-~11254~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~12/01/2002~
-~11254~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~12/01/2002~
-~11254~^~417~^13.^0^^~4~^^^^^^^^^^^~08/01/1984~
-~11254~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~
-~11254~^~432~^13.^0^^~4~^^^^^^^^^^^~12/01/1984~
-~11254~^~435~^13.^0^^~4~^~NC~^^^^^^^^^^~12/01/2002~
-~11254~^~601~^0.^0^^~7~^~Z~^^^^^^^^^^~08/01/1984~
-~11255~^~208~^66.^0^^~4~^~NC~^^^^^^^^^^~03/01/2007~
-~11255~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~12/01/2002~
-~11255~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~12/01/2002~
-~11255~^~268~^278.^0^^~4~^~NC~^^^^^^^^^^~03/01/2007~
-~11255~^~301~^26.^1^^~1~^^^^^^^^^^^~08/01/1984~
-~11255~^~304~^22.^1^^~1~^^^^^^^^^^^~08/01/1984~
-~11255~^~305~^78.^1^^~1~^^^^^^^^^^^~08/01/1984~
-~11255~^~306~^363.^1^^~1~^^^^^^^^^^^~08/01/1984~
-~11255~^~307~^45.^1^^~1~^^^^^^^^^^^~08/01/1984~
-~11255~^~318~^0.^0^^~1~^~AS~^^^^^^^^^^~03/01/2007~
-~11255~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2002~
-~11255~^~320~^0.^0^^~1~^~AS~^^^^^^^^^^~03/01/2007~
-~11255~^~321~^0.^0^^~7~^~Z~^^^^^^^^^^~12/01/2002~
-~11255~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~12/01/2002~
-~11255~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~
-~11255~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~12/01/2002~
-~11255~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~12/01/2002~
-~11255~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~12/01/2002~
-~11255~^~417~^8.^0^^~4~^^^^^^^^^^^~08/01/1984~
-~11255~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~
-~11255~^~432~^8.^0^^~4~^^^^^^^^^^^~03/01/2007~
-~11255~^~435~^8.^0^^~4~^~NC~^^^^^^^^^^~03/01/2007~
-~11255~^~601~^0.^0^^~7~^~Z~^^^^^^^^^^~08/01/1984~
-~11257~^~208~^13.^0^^~4~^~NC~^^^^^^^^^^~01/01/2017~
-~11257~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2014~
-~11257~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2014~
-~11257~^~268~^55.^0^^~4~^~NC~^^^^^^^^^^~01/01/2017~
-~11257~^~301~^33.^8^2.^~1~^~A~^^^2^18.^47.^5^25.^39.^~2, 3~^~12/01/2002~
-~11257~^~304~^12.^8^1.^~1~^~A~^^^2^7.^16.^3^9.^15.^~2, 3~^~12/01/2002~
-~11257~^~305~^28.^8^2.^~1~^~A~^^^2^17.^37.^4^20.^35.^~2, 3~^~12/01/2002~
-~11257~^~306~^187.^8^15.^~1~^~A~^^^2^120.^255.^6^148.^225.^~2, 3~^~12/01/2002~
-~11257~^~307~^25.^8^3.^~1~^~A~^^^2^11.^47.^5^15.^33.^~2, 3~^~12/01/2002~
-~11257~^~318~^7492.^0^^~1~^~AS~^^^^^^^^^^~08/01/2006~
-~11257~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2014~
-~11257~^~320~^375.^0^^~1~^~AS~^^^^^^^^^^~08/01/2006~
-~11257~^~321~^4495.^6^536.^~1~^~A~^^^2^3378.^7189.^3^2817.^6173.^~2, 3~^~12/01/2002~
-~11257~^~322~^0.^6^0.^~1~^~A~^^^2^0.^0.^^^^~2, 3~^~12/01/2002~
-~11257~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~
-~11257~^~334~^0.^6^0.^~1~^~A~^^^2^0.^0.^^^^~2, 3~^~12/01/2002~
-~11257~^~337~^0.^6^0.^~1~^~A~^^^2^0.^0.^^^^~2, 3~^~12/01/2002~
-~11257~^~338~^1724.^2^^~1~^~A~^^^1^1704.^1743.^1^^^^~12/01/2002~
-~11257~^~417~^36.^8^2.^~1~^~A~^^^2^25.^49.^5^30.^41.^~2, 3~^~12/01/2002~
-~11257~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2014~
-~11257~^~432~^36.^8^2.^~1~^~A~^^^2^25.^49.^5^30.^41.^^~03/01/2006~
-~11257~^~435~^36.^0^^~4~^~NC~^^^^^^^^^^~06/01/2014~
-~11257~^~601~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2014~
-~11258~^~208~^67.^0^^~4~^~NC~^^^^^^^^^^~08/01/1984~
-~11258~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~10/01/2011~
-~11258~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~10/01/2011~
-~11258~^~268~^280.^0^^~4~^^^^^^^^^^^
-~11258~^~301~^26.^1^^~1~^^^^^^^^^^^~08/01/1984~
-~11258~^~304~^12.^2^^~1~^^^^^^^^^^^~08/01/1984~
-~11258~^~305~^34.^1^^~1~^^^^^^^^^^^~08/01/1984~
-~11258~^~306~^418.^2^^~1~^^^^^^^^^^^~08/01/1984~
-~11258~^~307~^13.^2^^~1~^^^^^^^^^^^~08/01/1984~
-~11258~^~318~^0.^2^^~1~^^^^^^^^^^^~08/01/1984~
-~11258~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2002~
-~11258~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~
-~11258~^~417~^14.^0^^~4~^^^^^^^^^^^~08/01/1984~
-~11258~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~
-~11258~^~432~^14.^0^^~4~^^^^^^^^^^^~12/01/1984~
-~11258~^~435~^14.^0^^~4~^~NC~^^^^^^^^^^~01/01/2001~
-~11258~^~601~^0.^0^^~7~^~Z~^^^^^^^^^^~08/01/1984~
-~11259~^~208~^82.^0^^~4~^~NC~^^^^^^^^^^~08/01/1984~
-~11259~^~268~^343.^0^^~4~^^^^^^^^^^^
-~11259~^~301~^8.^1^^~1~^^^^^^^^^^^~08/01/1984~
-~11259~^~304~^10.^1^^~1~^^^^^^^^^^^~08/01/1984~
-~11259~^~305~^40.^1^^~1~^^^^^^^^^^^~08/01/1984~
-~11259~^~306~^495.^1^^~1~^^^^^^^^^^^~08/01/1984~
-~11259~^~307~^12.^1^^~1~^^^^^^^^^^^~08/01/1984~
-~11259~^~318~^0.^1^^~1~^^^^^^^^^^^~08/01/1984~
-~11259~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2002~
-~11259~^~320~^0.^1^^~1~^^^^^^^^^^^~06/01/2002~
-~11259~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~
-~11259~^~417~^12.^0^^~4~^^^^^^^^^^^~08/01/1984~
-~11259~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~
-~11259~^~432~^12.^0^^~4~^^^^^^^^^^^~12/01/1984~
-~11259~^~435~^12.^0^^~4~^~NC~^^^^^^^^^^~01/01/2001~
-~11259~^~601~^0.^0^^~7~^~Z~^^^^^^^^^^~08/01/1984~
-~11260~^~208~^22.^0^^~4~^~NC~^^^^^^^^^^~05/01/2010~
-~11260~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/1999~
-~11260~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/1999~
-~11260~^~268~^93.^0^^~4~^~NC~^^^^^^^^^^~05/01/2010~
-~11260~^~301~^3.^52^0.^~11~^~JO~^^^11^1.^8.^35^2.^3.^~4~^~05/01/2005~
-~11260~^~304~^9.^42^0.^~6~^~JA~^^^10^5.^14.^33^8.^9.^~4~^~05/01/2005~
-~11260~^~305~^86.^43^3.^~11~^~JO~^^^11^29.^124.^34^77.^93.^~4~^~05/01/2005~
-~11260~^~306~^318.^48^11.^~6~^~JA~^^^11^118.^412.^35^295.^340.^~4~^~05/01/2005~
-~11260~^~307~^5.^38^0.^~11~^~JO~^^^11^2.^19.^33^3.^6.^~4~^~05/01/2005~
-~11260~^~318~^0.^1^^~1~^^^^^0.^0.^^^^^~02/01/2009~
-~11260~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2002~
-~11260~^~320~^0.^0^^~1~^~AS~^^^^^^^^^^~05/01/2010~
-~11260~^~321~^0.^0^^~7~^~Z~^^^^^^^^^^~10/01/2002~
-~11260~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~10/01/2002~
-~11260~^~324~^7.^5^2.^~11~^~JO~^^^2^2.^18.^4^-1.^15.^~4~^~08/01/2009~
-~11260~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~10/01/2002~
-~11260~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~10/01/2002~
-~11260~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~10/01/2002~
-~11260~^~417~^17.^36^1.^~11~^~JO~^^^5^10.^28.^22^14.^18.^~4~^~05/01/2010~
-~11260~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~
-~11260~^~432~^17.^36^1.^~11~^~JO~^^^1^10.^28.^22^14.^18.^~4~^~05/01/2010~
-~11260~^~435~^17.^0^^~4~^~NC~^^^^^^^^^^~05/01/2010~
-~11260~^~601~^0.^0^^~7~^~Z~^^^^^^^^^^~08/01/1984~
-~11260~^~638~^0.^8^0.^~1~^~A~^^^2^0.^0.^7^0.^0.^~1, 4~^~02/01/2010~
-~11260~^~639~^2.^8^0.^~1~^~A~^^^2^2.^2.^7^1.^1.^~4~^~02/01/2010~
-~11260~^~641~^0.^8^0.^~1~^~A~^^^2^0.^1.^7^0.^0.^~1, 4~^~02/01/2010~
-~11261~^~208~^28.^0^^~4~^~NC~^^^^^^^^^^~08/01/2009~
-~11261~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~08/01/2009~
-~11261~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~08/01/2009~
-~11261~^~268~^117.^0^^~4~^~NC~^^^^^^^^^^~08/01/2009~
-~11261~^~301~^6.^0^^~1~^^^^^^^^^^^~08/01/1984~
-~11261~^~304~^12.^0^^~1~^^^^^^^^^^^~08/01/1984~
-~11261~^~305~^87.^0^^~1~^^^^^^^^^^^~08/01/1984~
-~11261~^~306~^356.^0^^~1~^^^^^^^^^^^~08/01/1984~
-~11261~^~307~^2.^0^^~1~^^^^^^^^^^^~08/01/1984~
-~11261~^~318~^0.^0^^~1~^^^^^^^^^^^~02/01/2009~
-~11261~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2002~
-~11261~^~320~^0.^0^^~4~^~NC~^^^^^^^^^^~08/01/2009~
-~11261~^~321~^0.^0^^~4~^~BFSY~^~11260~^^^^^^^^^~08/01/2004~
-~11261~^~322~^0.^0^^~4~^~BFSY~^~11260~^^^^^^^^^~08/01/2004~
-~11261~^~324~^8.^0^^~4~^~BFSN~^~11260~^^^^^^^^^~08/01/2009~
-~11261~^~334~^0.^0^^~4~^~BFSY~^~11260~^^^^^^^^^~08/01/2004~
-~11261~^~337~^0.^0^^~4~^~BFSY~^~11260~^^^^^^^^^~08/01/2004~
-~11261~^~338~^0.^0^^~4~^~BFSY~^~11260~^^^^^^^^^~08/01/2004~
-~11261~^~417~^18.^0^^~1~^^^^^^^^^^^~08/01/1984~
-~11261~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~
-~11261~^~432~^18.^0^^~1~^^^^^^^^^^^~08/01/2009~
-~11261~^~435~^18.^0^^~4~^~NC~^^^^^^^^^^~08/01/2009~
-~11261~^~601~^0.^0^^~7~^~Z~^^^^^^^^^^~08/01/1984~
-~11263~^~208~^26.^0^^~4~^~NC~^^^^^^^^^^~08/01/2009~
-~11263~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2005~
-~11263~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2005~
-~11263~^~268~^110.^0^^~4~^~NC~^^^^^^^^^^~08/01/2009~
-~11263~^~301~^4.^3^0.^~1~^~A~^^^1^^^^^^^~04/01/2006~
-~11263~^~304~^11.^3^0.^~1~^~A~^^^1^^^^^^^~04/01/2006~
-~11263~^~305~^105.^3^5.^~1~^~A~^^^1^^^^^^^~04/01/2006~
-~11263~^~306~^396.^3^15.^~1~^~A~^^^1^^^^^^^~04/01/2006~
-~11263~^~307~^12.^3^3.^~1~^~A~^^^1^^^^^^^~04/01/2006~
-~11263~^~318~^0.^0^^~1~^~AS~^^^^^^^^^^~08/01/2009~
-~11263~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2005~
-~11263~^~320~^0.^0^^~1~^~AS~^^^^^^^^^^~08/01/2009~
-~11263~^~321~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2005~
-~11263~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2005~
-~11263~^~324~^8.^0^^~4~^~BFSN~^~11260~^^^^^^^^^~08/01/2009~
-~11263~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2005~
-~11263~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2005~
-~11263~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2005~
-~11263~^~417~^20.^2^^~1~^~A~^^^1^^^^^^^~04/01/2006~
-~11263~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2005~
-~11263~^~432~^20.^2^^~1~^~A~^^^^^^^^^^~08/01/2009~
-~11263~^~435~^20.^0^^~4~^~NC~^^^^^^^^^^~08/01/2009~
-~11263~^~601~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2005~
-~11264~^~208~^25.^0^^~4~^~NC~^^^^^^^^^^~08/01/2009~
-~11264~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~08/01/2004~
-~11264~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~08/01/2004~
-~11264~^~268~^105.^0^^~4~^~NC~^^^^^^^^^^~08/01/2009~
-~11264~^~301~^11.^0^^~4~^^^^^^^^^^^~08/01/1984~
-~11264~^~304~^15.^0^^~4~^^^^^^^^^^^~08/01/1984~
-~11264~^~305~^66.^0^^~4~^^^^^^^^^^^~08/01/1984~
-~11264~^~306~^129.^0^^~4~^^^^^^^^^^^~08/01/1984~
-~11264~^~307~^425.^0^^~4~^^^^^^^^^^^~05/01/2013~
-~11264~^~318~^0.^0^^~4~^^^^^^^^^^^~08/01/2009~
-~11264~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2002~
-~11264~^~320~^0.^0^^~4~^~NC~^^^^^^^^^^~08/01/2009~
-~11264~^~321~^0.^0^^~4~^~BFSY~^~11260~^^^^^^^^^~08/01/2004~
-~11264~^~322~^0.^0^^~4~^~BFSY~^~11260~^^^^^^^^^~08/01/2004~
-~11264~^~324~^8.^0^^~4~^~BFSN~^~11260~^^^^^^^^^~08/01/2009~
-~11264~^~334~^0.^0^^~4~^~BFSY~^~11260~^^^^^^^^^~08/01/2004~
-~11264~^~337~^0.^0^^~4~^~BFSY~^~11260~^^^^^^^^^~08/01/2004~
-~11264~^~338~^0.^0^^~4~^~BFSY~^~11260~^^^^^^^^^~08/01/2004~
-~11264~^~417~^12.^3^9.^~1~^^^^^^^^^^^~08/01/1984~
-~11264~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~
-~11264~^~432~^12.^3^9.^~1~^^^^^^^^^^^~08/01/2009~
-~11264~^~435~^12.^0^^~4~^~NC~^^^^^^^^^^~08/01/2009~
-~11264~^~601~^0.^0^^~7~^~Z~^^^^^^^^^^~08/01/1984~
-~11265~^~208~^22.^0^^~4~^~NC~^^^^^^^^^^~08/01/2010~
-~11265~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2005~
-~11265~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2005~
-~11265~^~268~^92.^0^^~4~^~NC~^^^^^^^^^^~08/01/2010~
-~11265~^~301~^3.^5^0.^~1~^~A~^^^2^1.^8.^3^1.^5.^~2, 3~^~08/01/2009~
-~11265~^~305~^108.^5^4.^~1~^~A~^^^2^88.^130.^3^94.^121.^~2, 3~^~08/01/2009~
-~11265~^~306~^364.^5^13.^~1~^~A~^^^2^284.^484.^3^319.^407.^~2, 3~^~08/01/2009~
-~11265~^~307~^9.^5^1.^~1~^~A~^^^2^6.^15.^3^4.^14.^~2, 3~^~08/01/2009~
-~11265~^~318~^0.^0^^~7~^~Z~^^^^^^^^^^~08/01/2009~
-~11265~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2002~
-~11265~^~320~^0.^0^^~1~^~AS~^^^^^^^^^^~08/01/2010~
-~11265~^~321~^0.^0^^~7~^~Z~^^^^^^^^^^~08/01/2010~
-~11265~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~08/01/2010~
-~11265~^~324~^10.^4^6.^~1~^~A~^^^1^2.^31.^3^-12.^32.^~2, 3~^~08/01/2010~
-~11265~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~08/01/2010~
-~11265~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~08/01/2010~
-~11265~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~08/01/2010~
-~11265~^~417~^28.^9^2.^~6~^~JA~^^^2^22.^41.^7^22.^32.^~2, 3~^~05/01/2010~
-~11265~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~
-~11265~^~432~^28.^8^2.^~1~^~A~^^^1^23.^41.^7^23.^33.^~2, 3~^~08/01/2010~
-~11265~^~435~^28.^0^^~4~^~NC~^^^^^^^^^^~08/01/2010~
-~11265~^~601~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/1999~
-~11265~^~638~^0.^10^0.^~1~^~A~^^^2^^^^^^^~01/01/2010~
-~11265~^~639~^2.^10^0.^~1~^~A~^^^2^^^^^^^~01/01/2010~
-~11265~^~641~^0.^10^0.^~1~^~A~^^^2^^^^^^^~01/01/2010~
-~11266~^~208~^22.^0^^~4~^~NC~^^^^^^^^^^~05/01/2010~
-~11266~^~268~^94.^0^^~4~^~NC~^^^^^^^^^^~05/01/2010~
-~11266~^~301~^18.^1^^~1~^~A~^^^^^^^^^^~06/01/1999~
-~11266~^~304~^9.^0^^~4~^~BFSN~^^^^^^^^^^~06/01/1999~
-~11266~^~305~^120.^1^^~1~^~A~^^^^^^^^^^~06/01/1999~
-~11266~^~306~^448.^1^^~1~^~A~^^^^^^^^^^~06/01/1999~
-~11266~^~307~^6.^1^^~1~^~A~^^^^^^^^^^~06/01/1999~
-~11266~^~318~^0.^0^^~7~^~Z~^^^^^^^^^^~07/01/2009~
-~11266~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2002~
-~11266~^~320~^0.^0^^~4~^~NC~^^^^^^^^^^~12/01/2010~
-~11266~^~321~^0.^0^^~4~^~BFZN~^~11260~^^^^^^^^^~12/01/2010~
-~11266~^~322~^0.^0^^~4~^~BFZN~^~11260~^^^^^^^^^~12/01/2010~
-~11266~^~324~^3.^4^1.^~1~^~A~^^^1^^^^^^^~05/01/2010~
-~11266~^~334~^0.^0^^~4~^~BFZN~^~11260~^^^^^^^^^~12/01/2010~
-~11266~^~337~^0.^0^^~4~^~BFZN~^~11260~^^^^^^^^^~12/01/2010~
-~11266~^~338~^0.^0^^~4~^~BFZN~^~11260~^^^^^^^^^~12/01/2010~
-~11266~^~417~^25.^5^5.^~6~^~JA~^^^2^^^^^^^~05/01/2010~
-~11266~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~
-~11266~^~432~^25.^5^5.^~6~^~JA~^^^2^^^^^^^~05/01/2010~
-~11266~^~435~^25.^0^^~4~^~NC~^^^^^^^^^^~05/01/2010~
-~11266~^~601~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/1999~
-~11266~^~638~^0.^6^0.^~1~^~A~^^^2^^^^^^^~02/01/2010~
-~11266~^~639~^2.^6^0.^~1~^~A~^^^2^^^^^^^~02/01/2010~
-~11266~^~641~^0.^6^0.^~1~^~A~^^^2^^^^^^^~02/01/2010~
-~11267~^~208~^39.^0^^~4~^~NC~^^^^^^^^^^~02/01/2010~
-~11267~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2005~
-~11267~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2005~
-~11267~^~268~^162.^0^^~4~^~NC~^^^^^^^^^^~02/01/2010~
-~11267~^~301~^2.^3^0.^~1~^~A~^^^1^^^^^^^~07/01/2005~
-~11267~^~304~^19.^3^0.^~1~^~A~^^^1^^^^^^^~07/01/2005~
-~11267~^~305~^111.^3^10.^~1~^~A~^^^1^^^^^^^~07/01/2005~
-~11267~^~306~^326.^3^30.^~1~^~A~^^^1^^^^^^^~07/01/2005~
-~11267~^~307~^5.^3^1.^~1~^~A~^^^1^^^^^^^~07/01/2005~
-~11267~^~318~^0.^0^^~1~^~AS~^^^^^^^^^^~02/01/2010~
-~11267~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2005~
-~11267~^~320~^0.^0^^~1~^~AS~^^^^^^^^^^~02/01/2010~
-~11267~^~321~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2005~
-~11267~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2005~
-~11267~^~324~^21.^0^^~4~^~BFSN~^~11238~^^^^^^^^^~02/01/2010~
-~11267~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2005~
-~11267~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2005~
-~11267~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2005~
-~11267~^~417~^14.^2^^~1~^~A~^^^1^^^^^^^~07/01/2005~
-~11267~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2005~
-~11267~^~432~^14.^2^^~1~^~A~^^^^^^^^^^~02/01/2010~
-~11267~^~435~^14.^0^^~4~^~NC~^^^^^^^^^^~02/01/2010~
-~11267~^~601~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2005~
-~11267~^~636~^3.^0^^~4~^~BFSN~^~11238~^^^^^^^^^~12/01/2010~
-~11267~^~638~^0.^0^^~4~^~BFSN~^~11238~^^^^^^^^^~02/01/2010~
-~11267~^~639~^3.^0^^~4~^~BFSN~^~11238~^^^^^^^^^~02/01/2010~
-~11267~^~641~^0.^0^^~4~^~BFSN~^~11238~^^^^^^^^^~02/01/2010~
-~11268~^~208~^296.^0^^~4~^~NC~^^^^^^^^^^~07/01/2006~
-~11268~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~
-~11268~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~
-~11268~^~268~^1238.^0^^~4~^^^^^^^^^^^~02/01/2010~
-~11268~^~301~^11.^1^^~1~^^^^^^^^^^^~08/01/1984~
-~11268~^~304~^132.^1^^~1~^^^^^^^^^^^~08/01/1984~
-~11268~^~305~^294.^1^^~1~^^^^^^^^^^^~08/01/1984~
-~11268~^~306~^1534.^1^^~1~^^^^^^^^^^^~08/01/1984~
-~11268~^~307~^13.^1^^~1~^^^^^^^^^^^~08/01/1984~
-~11268~^~318~^0.^1^^~1~^^^^^^^^^^^~08/01/2009~
-~11268~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2002~
-~11268~^~320~^0.^0^^~4~^~NC~^^^^^^^^^^~02/01/2010~
-~11268~^~321~^0.^0^^~4~^~BFSN~^~11267~^^^^^^^^^~07/01/2006~
-~11268~^~322~^0.^0^^~4~^~BFSN~^~11267~^^^^^^^^^~07/01/2006~
-~11268~^~324~^154.^0^^~4~^~NR~^^^^^^^^^^~02/01/2010~
-~11268~^~334~^0.^0^^~4~^~BFSN~^~11267~^^^^^^^^^~07/01/2006~
-~11268~^~337~^0.^0^^~4~^~BFSN~^~11267~^^^^^^^^^~07/01/2006~
-~11268~^~338~^0.^0^^~4~^~BFSN~^~11267~^^^^^^^^^~07/01/2006~
-~11268~^~417~^163.^0^^~4~^^^^^^^^^^^~08/01/1984~
-~11268~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~
-~11268~^~432~^163.^0^^~4~^^^^^^^^^^^~02/01/2010~
-~11268~^~435~^163.^0^^~4~^~NC~^^^^^^^^^^~02/01/2010~
-~11268~^~601~^0.^0^^~7~^~Z~^^^^^^^^^^~08/01/1984~
-~11268~^~638~^0.^0^^~4~^~BFSN~^~11267~^^^^^^^^^~02/01/2010~
-~11268~^~639~^20.^0^^~4~^~BFSN~^~11267~^^^^^^^^^~02/01/2010~
-~11268~^~641~^0.^0^^~4~^~BFSN~^~11267~^^^^^^^^^~02/01/2010~
-~11269~^~208~^56.^0^^~4~^~NC~^^^^^^^^^^~02/01/2010~
-~11269~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~11/01/2002~
-~11269~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~11/01/2002~
-~11269~^~268~^234.^0^^~4~^~NC~^^^^^^^^^^~02/01/2010~
-~11269~^~301~^3.^1^^~1~^^^^^^^^^^^~08/01/1984~
-~11269~^~304~^14.^1^^~1~^^^^^^^^^^^~08/01/1984~
-~11269~^~305~^29.^1^^~1~^^^^^^^^^^^~08/01/1984~
-~11269~^~306~^117.^1^^~1~^^^^^^^^^^^~08/01/1984~
-~11269~^~307~^4.^1^^~1~^^^^^^^^^^^~08/01/1984~
-~11269~^~318~^0.^1^^~1~^^^^^^^^^^^~03/01/2009~
-~11269~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2002~
-~11269~^~320~^0.^0^^~1~^~AS~^^^^^^^^^^~02/01/2010~
-~11269~^~321~^0.^0^^~7~^~Z~^^^^^^^^^^~08/01/2009~
-~11269~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~08/01/2009~
-~11269~^~324~^28.^0^^~4~^~BFSN~^~11238~^^^^^^^^^~02/01/2010~
-~11269~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~08/01/2009~
-~11269~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~08/01/2009~
-~11269~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~08/01/2009~
-~11269~^~417~^21.^0^^~4~^^^^^^^^^^^~08/01/1984~
-~11269~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~
-~11269~^~432~^21.^0^^~4~^^^^^^^^^^^~02/01/2010~
-~11269~^~435~^21.^0^^~4~^~NC~^^^^^^^^^^~02/01/2010~
-~11269~^~601~^0.^0^^~7~^~Z~^^^^^^^^^^~08/01/1984~
-~11269~^~636~^4.^0^^~4~^~BFSN~^~11267~^^^^^^^^^~12/01/2010~
-~11269~^~638~^0.^0^^~4~^~BFSN~^~11238~^^^^^^^^^~02/01/2010~
-~11269~^~639~^4.^0^^~4~^~BFSN~^~11238~^^^^^^^^^~02/01/2010~
-~11269~^~641~^0.^0^^~4~^~BFSN~^~11238~^^^^^^^^^~02/01/2010~
-~11270~^~208~^27.^0^^~4~^~NC~^^^^^^^^^^~08/01/2012~
-~11270~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2003~
-~11270~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2003~
-~11270~^~268~^114.^0^^~4~^~NC~^^^^^^^^^^~08/01/2012~
-~11270~^~301~^115.^5^7.^~6~^~JA~^^^2^103.^146.^2^83.^146.^~2, 3~^~08/01/2012~
-~11270~^~304~^32.^5^2.^~6~^~JA~^^^2^25.^36.^2^22.^41.^~2, 3~^~08/01/2012~
-~11270~^~305~^58.^5^2.^~6~^~JA~^^^2^43.^77.^2^47.^69.^~2, 3~^~08/01/2012~
-~11270~^~306~^384.^12^23.^~6~^~JA~^^^2^354.^560.^10^331.^435.^~2, 3~^~08/01/2012~
-~11270~^~307~^20.^12^5.^~6~^~JA~^^^2^2.^25.^8^6.^32.^~2, 3~^~08/01/2012~
-~11270~^~318~^3024.^0^^~1~^~AS~^^^^^^^^^^~08/01/2012~
-~11270~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2002~
-~11270~^~320~^151.^0^^~1~^~AS~^^^^^^^^^^~08/01/2012~
-~11270~^~321~^1790.^1^^~1~^~A~^^^^^^^^^^~08/01/2012~
-~11270~^~322~^10.^1^^~1~^~A~^^^^^^^^^^~08/01/2012~
-~11270~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~
-~11270~^~334~^40.^1^^~1~^~A~^^^^^^^^^^~08/01/2012~
-~11270~^~337~^0.^1^^~1~^~A~^^^^^^^^^~1~^~08/01/2012~
-~11270~^~338~^3730.^1^^~1~^~A~^^^^^^^^^^~08/01/2012~
-~11270~^~417~^12.^2^^~1~^~A~^^^1^3.^21.^1^^^^~08/01/2012~
-~11270~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~
-~11270~^~432~^12.^2^^~1~^~A~^^^1^3.^21.^1^^^^~08/01/2012~
-~11270~^~435~^12.^0^^~4~^~NC~^^^^^^^^^^~08/01/2012~
-~11270~^~601~^0.^0^^~7~^~Z~^^^^^^^^^^~08/01/1984~
-~11271~^~208~^26.^0^^~4~^~NC~^^^^^^^^^^~08/01/2012~
-~11271~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2003~
-~11271~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2003~
-~11271~^~268~^110.^0^^~4~^~NC~^^^^^^^^^^~08/01/2012~
-~11271~^~301~^118.^2^^~6~^~JA~^^^2^74.^161.^1^^^^~08/01/2012~
-~11271~^~304~^13.^2^^~6~^~JA~^^^2^11.^15.^1^^^^~08/01/2012~
-~11271~^~305~^42.^2^^~6~^~JA~^^^2^41.^43.^1^^^^~08/01/2012~
-~11271~^~306~^162.^1^^~6~^~JA~^^^2^122.^202.^1^^^^~08/01/2012~
-~11271~^~307~^9.^2^^~6~^~JA~^^^2^3.^16.^1^^^^~08/01/2012~
-~11271~^~318~^12370.^0^^~4~^~NC~^^^^^^^^^^~08/01/2012~
-~11271~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2002~
-~11271~^~320~^618.^0^^~4~^~NC~^^^^^^^^^^~08/01/2012~
-~11271~^~321~^7400.^3^^~1~^~A~^^^^^^^^^^~08/01/2012~
-~11271~^~322~^9.^0^^~4~^~BFSN~^~11270~^^^^^^^^^~08/01/2012~
-~11271~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~
-~11271~^~334~^35.^0^^~4~^~BFSN~^~11270~^^^^^^^^^~08/01/2012~
-~11271~^~337~^0.^0^^~4~^~BFSN~^~11270~^^^^^^^^^~01/01/2003~
-~11271~^~338~^10400.^3^^~1~^~A~^^^^^^^^^^~08/01/2012~
-~11271~^~417~^9.^1^^~1~^~A~^^^^^^^^^^~08/01/2012~
-~11271~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~
-~11271~^~432~^9.^1^^~1~^~A~^^^^^^^^^^~08/01/2012~
-~11271~^~435~^9.^0^^~4~^~NC~^^^^^^^^^^~08/01/2012~
-~11271~^~601~^0.^0^^~7~^~Z~^^^^^^^^^^~08/01/1984~
-~11272~^~208~^20.^0^^~4~^~NC~^^^^^^^^^^~08/01/1984~
-~11272~^~268~^84.^0^^~4~^^^^^^^^^^^
-~11272~^~301~^116.^12^5.^~1~^^^^^^^^^^^~08/01/1984~
-~11272~^~304~^15.^3^1.^~1~^^^^^^^^^^^~08/01/1984~
-~11272~^~305~^30.^3^0.^~1~^^^^^^^^^^^~08/01/1984~
-~11272~^~306~^170.^3^21.^~1~^^^^^^^^^^^~08/01/1984~
-~11272~^~307~^29.^3^1.^~1~^^^^^^^^^^^~08/01/1984~
-~11272~^~318~^5155.^12^228.^~1~^^^^^^^^^^^~08/01/1984~
-~11272~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2002~
-~11272~^~320~^258.^12^11.^~1~^^^^^^^^^^^~06/01/2002~
-~11272~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~
-~11272~^~417~^138.^0^^~4~^^^^^^^^^^^~08/01/1984~
-~11272~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~
-~11272~^~432~^138.^0^^~4~^^^^^^^^^^^~12/01/1984~
-~11272~^~435~^138.^0^^~4~^~NC~^^^^^^^^^^~01/01/2001~
-~11272~^~601~^0.^0^^~7~^~Z~^^^^^^^^^^~08/01/1984~
-~11273~^~208~^19.^0^^~4~^~NC~^^^^^^^^^^~02/01/2007~
-~11273~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2003~
-~11273~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2003~
-~11273~^~268~^78.^0^^~4~^~NC~^^^^^^^^^^~02/01/2007~
-~11273~^~301~^101.^0^^~1~^^^^^^^^^^^~08/01/1984~
-~11273~^~304~^13.^0^^~1~^^^^^^^^^^^~08/01/1984~
-~11273~^~305~^24.^0^^~1~^^^^^^^^^^^~08/01/1984~
-~11273~^~306~^139.^0^^~1~^^^^^^^^^^^~08/01/1984~
-~11273~^~307~^25.^0^^~1~^^^^^^^^^^^~08/01/1984~
-~11273~^~318~^7076.^0^^~4~^~NC~^^^^^^^^^^~02/01/2007~
-~11273~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2002~
-~11273~^~320~^354.^0^^~4~^~NC~^^^^^^^^^^~02/01/2007~
-~11273~^~321~^4246.^0^^~4~^~BFSN~^~11270~^^^^^^^^^~01/01/2003~
-~11273~^~322~^0.^0^^~4~^~BFSN~^~11270~^^^^^^^^^~01/01/2003~
-~11273~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~
-~11273~^~334~^0.^0^^~4~^~BFSN~^~11270~^^^^^^^^^~01/01/2003~
-~11273~^~337~^0.^0^^~4~^~BFSN~^~11270~^^^^^^^^^~01/01/2003~
-~11273~^~338~^6672.^0^^~4~^~BFSN~^~11270~^^^^^^^^^~01/01/2003~
-~11273~^~417~^70.^0^^~4~^^^^^^^^^^^~08/01/1984~
-~11273~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~
-~11273~^~432~^70.^0^^~4~^^^^^^^^^^^~02/01/2007~
-~11273~^~435~^70.^0^^~4~^~NC~^^^^^^^^^^~02/01/2007~
-~11273~^~601~^0.^0^^~7~^~Z~^^^^^^^^^^~08/01/1984~
-~11274~^~208~^22.^0^^~4~^~NC~^^^^^^^^^^~08/01/1984~
-~11274~^~268~^92.^0^^~4~^^^^^^^^^^^
-~11274~^~301~^210.^0^^~1~^^^^^^^^^^^~08/01/1984~
-~11274~^~304~^11.^0^^~4~^^^^^^^^^^^~08/01/1984~
-~11274~^~305~^28.^0^^~1~^^^^^^^^^^^~08/01/1984~
-~11274~^~306~^449.^0^^~4~^^^^^^^^^^^~08/01/1984~
-~11274~^~307~^21.^0^^~4~^^^^^^^^^^^~08/01/1984~
-~11274~^~318~^9900.^0^^~1~^^^^^^^^^^^~08/01/1984~
-~11274~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2002~
-~11274~^~320~^495.^0^^~1~^^^^^^^^^^^~06/01/2002~
-~11274~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~
-~11274~^~417~^159.^0^^~4~^^^^^^^^^^^~08/01/1984~
-~11274~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~
-~11274~^~432~^159.^0^^~4~^^^^^^^^^^^~12/01/1984~
-~11274~^~435~^159.^0^^~4~^~NC~^^^^^^^^^^~01/01/2001~
-~11274~^~601~^0.^0^^~7~^~Z~^^^^^^^^^^~08/01/1984~
-~11275~^~208~^16.^0^^~4~^~NC~^^^^^^^^^^~08/01/1984~
-~11275~^~268~^67.^0^^~4~^^^^^^^^^^^
-~11275~^~301~^158.^0^^~1~^^^^^^^^^^^~08/01/1984~
-~11275~^~304~^7.^0^^~4~^^^^^^^^^^^~08/01/1984~
-~11275~^~305~^18.^0^^~1~^^^^^^^^^^^~08/01/1984~
-~11275~^~306~^285.^0^^~4~^^^^^^^^^^^~08/01/1984~
-~11275~^~307~^14.^0^^~4~^^^^^^^^^^^~08/01/1984~
-~11275~^~318~^8200.^0^^~1~^^^^^^^^^^^~08/01/1984~
-~11275~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2002~
-~11275~^~320~^410.^0^^~1~^^^^^^^^^^^~06/01/2002~
-~11275~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~
-~11275~^~417~^73.^0^^~4~^^^^^^^^^^^~08/01/1984~
-~11275~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~
-~11275~^~432~^73.^0^^~4~^^^^^^^^^^^~12/01/1984~
-~11275~^~435~^73.^0^^~4~^~NC~^^^^^^^^^^~01/01/2001~
-~11275~^~601~^0.^0^^~7~^~Z~^^^^^^^^^^~08/01/1984~
-~11276~^~208~^14.^0^^~4~^~NC~^^^^^^^^^^~08/01/1984~
-~11276~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~08/01/2011~
-~11276~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~08/01/2011~
-~11276~^~268~^59.^0^^~4~^^^^^^^^^^^
-~11276~^~301~^58.^1^^~1~^^^^^^^^^^^~08/01/1984~
-~11276~^~304~^39.^1^^~1~^^^^^^^^^^^~08/01/1984~
-~11276~^~305~^28.^1^^~1~^^^^^^^^^^^~08/01/1984~
-~11276~^~306~^130.^1^^~1~^^^^^^^^^^^~08/01/1984~
-~11276~^~307~^130.^1^^~1~^^^^^^^^^^^~08/01/1984~
-~11276~^~318~^4400.^1^^~1~^^^^^^^^^^^~08/01/1984~
-~11276~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2002~
-~11276~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~
-~11276~^~417~^15.^0^^~4~^^^^^^^^^^^~08/01/1984~
-~11276~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~
-~11276~^~432~^15.^0^^~4~^^^^^^^^^^^~12/01/1984~
-~11276~^~435~^15.^0^^~4~^~NC~^^^^^^^^^^~01/01/2001~
-~11276~^~601~^0.^0^^~7~^~Z~^^^^^^^^^^~08/01/1984~
-~11277~^~208~^12.^0^^~4~^~NC~^^^^^^^^^^~08/01/1984~
-~11277~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~08/01/2011~
-~11277~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~08/01/2011~
-~11277~^~268~^51.^0^^~4~^~NC~^^^^^^^^^^~08/01/2011~
-~11277~^~301~^48.^0^^~1~^^^^^^^^^^^~08/01/1984~
-~11277~^~304~^32.^0^^~1~^^^^^^^^^^^~08/01/1984~
-~11277~^~305~^22.^0^^~1~^^^^^^^^^^^~08/01/1984~
-~11277~^~306~^102.^0^^~1~^^^^^^^^^^^~08/01/1984~
-~11277~^~307~^107.^0^^~1~^^^^^^^^^^^~08/01/1984~
-~11277~^~318~^3622.^0^^~1~^^^^^^^^^^^~08/01/1984~
-~11277~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2002~
-~11277~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~
-~11277~^~417~^8.^0^^~4~^^^^^^^^^^^~08/01/1984~
-~11277~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~
-~11277~^~432~^8.^0^^~4~^^^^^^^^^^^~12/01/1984~
-~11277~^~435~^8.^0^^~4~^~NC~^^^^^^^^^^~01/01/2001~
-~11277~^~601~^0.^0^^~7~^~Z~^^^^^^^^^^~08/01/1984~
-~11278~^~208~^33.^0^^~4~^~NC~^^^^^^^^^^~08/01/2012~
-~11278~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2003~
-~11278~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2003~
-~11278~^~268~^138.^0^^~4~^~NC~^^^^^^^^^^~08/01/2012~
-~11278~^~301~^82.^4^4.^~6~^~JA~^^^2^63.^102.^2^62.^101.^~2, 3~^~08/01/2012~
-~11278~^~304~^57.^6^0.^~6~^~JA~^^^2^54.^60.^2^54.^60.^~2, 3~^~08/01/2012~
-~11278~^~305~^61.^4^1.^~6~^~JA~^^^2^56.^64.^2^53.^69.^~2, 3~^~08/01/2012~
-~11278~^~306~^299.^6^7.^~6~^~JA~^^^2^263.^325.^2^268.^330.^~2, 3~^~08/01/2012~
-~11278~^~307~^7.^6^0.^~6~^~JA~^^^2^2.^10.^2^3.^9.^~2, 3~^~08/01/2012~
-~11278~^~318~^716.^0^^~1~^~AS~^^^^^^^^^^~08/01/2012~
-~11278~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2002~
-~11278~^~320~^36.^0^^~1~^~AS~^^^^^^^^^^~08/01/2012~
-~11278~^~321~^416.^22^^~1~^~A~^^^2^78.^432.^^^^~2, 3~^~08/01/2012~
-~11278~^~322~^27.^22^^~1~^~A~^^^2^2.^28.^^^^~2, 3~^~08/01/2012~
-~11278~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~
-~11278~^~334~^0.^22^^~1~^~A~^^^2^0.^4.^^^^~2, 3~^~08/01/2012~
-~11278~^~337~^0.^1^^~1~^~A~^^^^^^^^^~1~^~08/01/2012~
-~11278~^~338~^280.^1^^~1~^~A~^^^^^^^^^^~08/01/2012~
-~11278~^~417~^60.^13^27.^~6~^~JA~^^^2^32.^106.^1^-294.^414.^~2~^~08/01/2012~
-~11278~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~
-~11278~^~432~^60.^13^27.^~6~^~JA~^^^2^32.^106.^1^-294.^414.^^~08/01/2012~
-~11278~^~435~^60.^0^^~4~^~NC~^^^^^^^^^^~08/01/2012~
-~11278~^~601~^0.^0^^~7~^~Z~^^^^^^^^^^~08/01/1984~
-~11278~^~636~^24.^0^^~1~^^^^^^^^^^^~08/01/1984~
-~11279~^~208~^22.^0^^~4~^~NC~^^^^^^^^^^~03/01/2007~
-~11279~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2003~
-~11279~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2003~
-~11279~^~268~^94.^0^^~4~^~NC~^^^^^^^^^^~03/01/2007~
-~11279~^~301~^77.^18^5.^~1~^~A~^^^7^44.^112.^6^63.^90.^~2~^~01/01/2003~
-~11279~^~304~^36.^18^1.^~1~^~A~^^^7^18.^49.^6^32.^38.^~2~^~01/01/2003~
-~11279~^~305~^32.^18^1.^~1~^~A~^^^7^17.^45.^6^29.^35.^~2~^~01/01/2003~
-~11279~^~306~^135.^18^7.^~1~^~A~^^^7^61.^196.^6^116.^152.^~2~^~01/01/2003~
-~11279~^~307~^6.^18^1.^~1~^~A~^^^7^2.^15.^6^3.^8.^~2~^~01/01/2003~
-~11279~^~318~^283.^0^^~1~^~AS~^^^^^^^^^^~03/01/2007~
-~11279~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2002~
-~11279~^~320~^14.^0^^~1~^~AS~^^^^^^^^^^~03/01/2007~
-~11279~^~321~^170.^1^^~1~^~A~^^^^^^^^^^~01/01/2003~
-~11279~^~322~^0.^1^^~1~^~A~^^^^^^^^^^~01/01/2003~
-~11279~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~
-~11279~^~334~^0.^1^^~1~^~A~^^^^^^^^^^~01/01/2003~
-~11279~^~337~^0.^1^^~1~^~A~^^^^^^^^^^~01/01/2003~
-~11279~^~338~^390.^1^^~1~^~A~^^^^^^^^^^~01/01/2003~
-~11279~^~417~^46.^3^^~1~^^^^^39.^58.^^^^^~01/01/2003~
-~11279~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~
-~11279~^~432~^46.^3^^~1~^^^^^39.^58.^^^^^~03/01/2007~
-~11279~^~435~^46.^0^^~4~^~NC~^^^^^^^^^^~03/01/2007~
-~11279~^~601~^0.^0^^~7~^~Z~^^^^^^^^^^~08/01/1984~
-~11280~^~208~^30.^0^^~4~^~NC~^^^^^^^^^^~03/01/2007~
-~11280~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2003~
-~11280~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2003~
-~11280~^~268~^125.^0^^~4~^~NC~^^^^^^^^^^~03/01/2007~
-~11280~^~301~^81.^41^4.^~1~^^^^^^^^^^^~08/01/1984~
-~11280~^~304~^43.^12^2.^~1~^^^^^^^^^^^~08/01/1984~
-~11280~^~305~^42.^24^6.^~1~^^^^^^^^^^^~08/01/1984~
-~11280~^~306~^211.^10^5.^~1~^^^^^^^^^^^~08/01/1984~
-~11280~^~307~^3.^9^0.^~1~^^^^^^^^^^^~08/01/1984~
-~11280~^~318~^350.^0^^~4~^~NC~^^^^^^^^^^~03/01/2007~
-~11280~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2002~
-~11280~^~320~^18.^0^^~4~^~NC~^^^^^^^^^^~03/01/2007~
-~11280~^~321~^210.^0^^~4~^~BFSN~^~11279~^^^^^^^^^~01/01/2003~
-~11280~^~322~^0.^0^^~4~^~BFSN~^~11279~^^^^^^^^^~01/01/2003~
-~11280~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~
-~11280~^~334~^0.^0^^~4~^~BFSN~^~11279~^^^^^^^^^~01/01/2003~
-~11280~^~337~^0.^0^^~4~^~BFSN~^~11279~^^^^^^^^^~01/01/2003~
-~11280~^~338~^482.^0^^~4~^~BFSN~^~11279~^^^^^^^^^~01/01/2003~
-~11280~^~417~^148.^3^25.^~1~^^^^^^^^^^^~08/01/1984~
-~11280~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~
-~11280~^~432~^148.^3^25.^~1~^^^^^^^^^^^~03/01/2007~
-~11280~^~435~^148.^0^^~4~^~NC~^^^^^^^^^^~03/01/2007~
-~11280~^~601~^0.^0^^~7~^~Z~^^^^^^^^^^~08/01/1984~
-~11281~^~208~^29.^0^^~4~^~NC~^^^^^^^^^^~05/01/2010~
-~11281~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2003~
-~11281~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2003~
-~11281~^~268~^121.^0^^~4~^~NC~^^^^^^^^^^~05/01/2010~
-~11281~^~301~^74.^0^^~4~^~BFSY~^~11280~^^^^^^^^^~05/01/2010~
-~11281~^~304~^40.^0^^~4~^~BFSY~^~11280~^^^^^^^^^~05/01/2010~
-~11281~^~305~^37.^0^^~4~^~BFSY~^~11280~^^^^^^^^^~05/01/2010~
-~11281~^~306~^184.^0^^~4~^~BFSY~^~11280~^^^^^^^^^~05/01/2010~
-~11281~^~307~^3.^0^^~4~^~BFSY~^~11280~^^^^^^^^^~05/01/2010~
-~11281~^~318~^305.^0^^~4~^~NC~^^^^^^^^^^~05/01/2010~
-~11281~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2002~
-~11281~^~320~^15.^0^^~4~^~NC~^^^^^^^^^^~05/01/2010~
-~11281~^~321~^183.^0^^~4~^~BFSY~^~11280~^^^^^^^^^~05/01/2010~
-~11281~^~322~^0.^0^^~4~^~BFSY~^~11280~^^^^^^^^^~05/01/2010~
-~11281~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~
-~11281~^~334~^0.^0^^~4~^~BFSY~^~11280~^^^^^^^^^~05/01/2010~
-~11281~^~337~^0.^0^^~4~^~BFSY~^~11280~^^^^^^^^^~05/01/2010~
-~11281~^~338~^420.^0^^~4~^~BFSY~^~11280~^^^^^^^^^~05/01/2010~
-~11281~^~417~^100.^0^^~4~^~BFSY~^~11280~^^^^^^^^^~05/01/2010~
-~11281~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~
-~11281~^~432~^100.^0^^~4~^~BFSY~^~11280~^^^^^^^^^~05/01/2010~
-~11281~^~435~^100.^0^^~4~^~NC~^~11280~^^^^^^^^^~05/01/2010~
-~11281~^~601~^0.^0^^~7~^~Z~^^^^^^^^^^~08/01/1984~
-~11282~^~208~^40.^0^^~4~^~NC~^^^^^^^^^^~03/01/2006~
-~11282~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~07/01/2002~
-~11282~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~07/01/2002~
-~11282~^~268~^166.^0^^~4~^~NC~^^^^^^^^^^~03/01/2006~
-~11282~^~301~^23.^89^0.^~6~^~JA~^^^13^10.^36.^49^21.^23.^~2, 3~^~03/01/2006~
-~11282~^~304~^10.^90^0.^~6~^~JA~^^^13^5.^13.^14^9.^10.^~2, 3~^~03/01/2006~
-~11282~^~305~^29.^89^0.^~6~^~JA~^^^13^14.^41.^44^28.^30.^~2, 3~^~03/01/2006~
-~11282~^~306~^146.^89^2.^~6~^~JA~^^^13^84.^228.^42^140.^152.^~2, 3~^~03/01/2006~
-~11282~^~307~^4.^81^0.^~6~^~JA~^^^12^1.^8.^21^3.^3.^~2, 3~^~03/01/2006~
-~11282~^~318~^2.^0^^~4~^~NC~^^^^^^^^^^~06/01/2006~
-~11282~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2002~
-~11282~^~320~^0.^0^^~4~^~NC~^^^^^^^^^^~06/01/2006~
-~11282~^~321~^1.^0^^~4~^~BFSN~^~11289~^^^^^^^^^~03/01/2006~
-~11282~^~322~^0.^0^^~4~^~BFSN~^~11289~^^^^^^^^^~03/01/2006~
-~11282~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~
-~11282~^~334~^0.^0^^~4~^~BFSN~^~11289~^^^^^^^^^~03/01/2006~
-~11282~^~337~^0.^0^^~4~^~BFSN~^~11289~^^^^^^^^^~03/01/2006~
-~11282~^~338~^4.^0^^~4~^~BFSN~^~11289~^^^^^^^^^~03/01/2006~
-~11282~^~417~^19.^17^0.^~1~^^^^1^18.^25.^1^17.^19.^~2, 3~^~03/01/2006~
-~11282~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~
-~11282~^~432~^19.^17^0.^~1~^^^^1^18.^25.^1^17.^19.^^~03/01/2006~
-~11282~^~435~^19.^0^^~4~^~NC~^^^^^^^^^^~06/01/2006~
-~11282~^~601~^0.^0^^~7~^~Z~^^^^^^^^^^~08/01/1984~
-~11282~^~636~^15.^1^^~1~^^^^^^^^^^^~03/01/2006~
-~11283~^~208~^44.^0^^~4~^~NC~^^^^^^^^^^~03/01/2007~
-~11283~^~262~^0.^0^^~7~^~Z~^~11282~^^^^^^^^^~03/01/2007~
-~11283~^~263~^0.^0^^~7~^~Z~^~11282~^^^^^^^^^~03/01/2007~
-~11283~^~268~^184.^0^^~4~^^^^^^^^^^^~03/01/2007~
-~11283~^~301~^22.^0^^~1~^^^^^^^^^^^~08/01/1984~
-~11283~^~304~^11.^0^^~1~^^^^^^^^^^^~08/01/1984~
-~11283~^~305~^35.^0^^~1~^^^^^^^^^^^~08/01/1984~
-~11283~^~306~^166.^0^^~1~^^^^^^^^^^^~08/01/1984~
-~11283~^~307~^3.^0^^~1~^^^^^^^^^^^~08/01/1984~
-~11283~^~318~^2.^0^^~4~^~NC~^^^^^^^^^^~03/01/2007~
-~11283~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2002~
-~11283~^~320~^0.^0^^~4~^~NC~^^^^^^^^^^~03/01/2007~
-~11283~^~321~^1.^0^^~4~^~BFSY~^~11282~^^^^^^^^^~01/01/2003~
-~11283~^~322~^0.^0^^~4~^~BFSY~^~11282~^^^^^^^^^~03/01/2007~
-~11283~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~
-~11283~^~334~^0.^0^^~4~^~BFSY~^~11282~^^^^^^^^^~03/01/2007~
-~11283~^~337~^0.^0^^~4~^~BFSY~^~11282~^^^^^^^^^~03/01/2007~
-~11283~^~338~^4.^0^^~4~^~BFSY~^~11282~^^^^^^^^^~01/01/2003~
-~11283~^~417~^15.^0^^~1~^^^^^^^^^^^~08/01/1984~
-~11283~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~
-~11283~^~432~^15.^0^^~1~^^^^^^^^^^^~03/01/2007~
-~11283~^~435~^15.^0^^~4~^~NC~^^^^^^^^^^~03/01/2007~
-~11283~^~601~^0.^0^^~7~^~Z~^^^^^^^^^^~08/01/1984~
-~11283~^~636~^18.^0^^~1~^^^^^^^^^^^~08/01/1984~
-~11284~^~208~^349.^0^^~4~^~NC~^^^^^^^^^^~03/01/1997~
-~11284~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~10/01/2002~
-~11284~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~10/01/2002~
-~11284~^~268~^1460.^0^^~4~^^^^^^^^^^^~03/01/2007~
-~11284~^~301~^257.^0^^~1~^^^^^^^^^^^~08/01/1984~
-~11284~^~304~^92.^2^^~1~^^^^^^^^^^^~08/01/1984~
-~11284~^~305~^303.^0^^~1~^^^^^^^^^^^~08/01/1984~
-~11284~^~306~^1622.^0^^~1~^^^^^^^^^^^~08/01/1984~
-~11284~^~307~^21.^0^^~1~^^^^^^^^^^^~08/01/1984~
-~11284~^~318~^18.^0^^~4~^~NC~^^^^^^^^^^~03/01/2007~
-~11284~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2002~
-~11284~^~320~^1.^0^^~4~^~NC~^^^^^^^^^^~03/01/2007~
-~11284~^~321~^11.^0^^~4~^~BFSY~^~11283~^^^^^^^^^~03/01/2007~
-~11284~^~322~^0.^0^^~4~^~BFSY~^~11283~^^^^^^^^^~03/01/2007~
-~11284~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~
-~11284~^~334~^0.^0^^~4~^~BFSY~^~11283~^^^^^^^^^~03/01/2007~
-~11284~^~337~^0.^0^^~4~^~BFSY~^~11283~^^^^^^^^^~03/01/2007~
-~11284~^~338~^32.^0^^~4~^~BFSY~^~11283~^^^^^^^^^~03/01/2007~
-~11284~^~417~^166.^0^^~1~^^^^^^^^^^^~08/01/1984~
-~11284~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~
-~11284~^~432~^166.^0^^~1~^^^^^^^^^^^~03/01/2007~
-~11284~^~435~^166.^0^^~4~^~NC~^^^^^^^^^^~03/01/2007~
-~11284~^~601~^0.^0^^~7~^~Z~^^^^^^^^^^~08/01/1984~
-~11285~^~208~^19.^0^^~4~^~NC~^^^^^^^^^^~02/01/2003~
-~11285~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~
-~11285~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~
-~11285~^~268~^78.^0^^~4~^~NC~^^^^^^^^^^~02/01/2003~
-~11285~^~301~^45.^16^10.^~1~^^^^^^^^^^^~08/01/1984~
-~11285~^~304~^6.^16^0.^~1~^^^^^^^^^^^~08/01/1984~
-~11285~^~305~^28.^16^1.^~1~^^^^^^^^^^^~08/01/1984~
-~11285~^~306~^111.^16^1.^~1~^^^^^^^^^^^~08/01/1984~
-~11285~^~307~^371.^16^11.^~1~^^^^^^^^^^^~08/01/1984~
-~11285~^~318~^1.^0^^~4~^~NC~^^^^^^^^^^~02/01/2003~
-~11285~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2002~
-~11285~^~320~^0.^0^^~4~^~NC~^^^^^^^^^^~02/01/2003~
-~11285~^~321~^1.^0^^~4~^~BFSN~^~11283~^^^^^^^^^~02/01/2003~
-~11285~^~322~^0.^0^^~4~^~BFSN~^~11283~^^^^^^^^^~02/01/2003~
-~11285~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~
-~11285~^~334~^0.^0^^~4~^~BFSN~^~11283~^^^^^^^^^~02/01/2003~
-~11285~^~337~^0.^0^^~4~^~BFSN~^~11283~^^^^^^^^^~02/01/2003~
-~11285~^~338~^2.^0^^~4~^~BFSN~^~11283~^^^^^^^^^~02/01/2003~
-~11285~^~417~^10.^0^^~4~^^^^^^^^^^^~08/01/1984~
-~11285~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~
-~11285~^~432~^10.^0^^~4~^^^^^^^^^^^~02/01/2003~
-~11285~^~435~^10.^0^^~4~^~NC~^^^^^^^^^^~02/01/2003~
-~11285~^~601~^0.^0^^~7~^~Z~^^^^^^^^^^~08/01/1984~
-~11286~^~208~^123.^0^^~4~^~NC~^^^^^^^^^^~01/01/2017~
-~11286~^~268~^516.^0^^~4~^~NC~^^^^^^^^^^~01/01/2017~
-~11286~^~301~^20.^4^2.^~1~^~A~^^^1^15.^26.^3^12.^27.^~2, 3~^~08/01/2004~
-~11286~^~304~^9.^4^1.^~1~^~A~^^^1^6.^11.^3^5.^12.^~2, 3~^~08/01/2004~
-~11286~^~305~^33.^4^3.^~1~^~A~^^^1^26.^40.^3^23.^42.^~2, 3~^~08/01/2004~
-~11286~^~306~^133.^4^6.^~1~^~A~^^^1^115.^146.^3^112.^153.^~2, 3~^~08/01/2004~
-~11286~^~307~^12.^4^1.^~1~^~A~^^^1^9.^16.^3^7.^17.^~2, 3~^~08/01/2004~
-~11286~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~
-~11286~^~417~^2.^4^0.^~1~^~A~^^^1^2.^2.^^^^~1, 2, 3~^~08/01/2004~
-~11286~^~432~^2.^4^0.^~1~^~A~^^^1^2.^2.^^^^^~03/01/2006~
-~11287~^~208~^29.^0^^~4~^~NC~^^^^^^^^^^~08/01/1984~
-~11287~^~268~^122.^0^^~4~^~NC~^^^^^^^^^^~06/01/2013~
-~11287~^~301~^17.^16^0.^~1~^^^^^^^^^^^~08/01/1984~
-~11287~^~304~^7.^3^1.^~1~^^^^^^^^^^^~08/01/1984~
-~11287~^~305~^22.^5^0.^~1~^^^^^^^^^^^~08/01/1984~
-~11287~^~306~^124.^3^6.^~1~^^^^^^^^^^^~08/01/1984~
-~11287~^~307~^12.^12^3.^~1~^^^^^^^^^^^~08/01/1984~
-~11287~^~318~^35.^1^^~1~^^^^^^^^^^^~08/01/1984~
-~11287~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2002~
-~11287~^~320~^2.^1^^~1~^^^^^^^^^^^~06/01/2002~
-~11287~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~
-~11287~^~417~^17.^0^^~1~^^^^^^^^^^^~08/01/1984~
-~11287~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~
-~11287~^~432~^17.^0^^~1~^^^^^^^^^^^~12/01/1984~
-~11287~^~435~^17.^0^^~4~^~NC~^^^^^^^^^^~01/01/2001~
-~11287~^~601~^0.^0^^~7~^~Z~^^^^^^^^^^~08/01/1984~
-~11288~^~208~^28.^0^^~4~^~NC~^^^^^^^^^^~03/01/2007~
-~11288~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~11/01/2002~
-~11288~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~11/01/2002~
-~11288~^~268~^118.^0^^~4~^~NC~^^^^^^^^^^~03/01/2007~
-~11288~^~301~^16.^0^^~1~^^^^^^^^^^^~08/01/1984~
-~11288~^~304~^6.^0^^~1~^^^^^^^^^^^~08/01/1984~
-~11288~^~305~^19.^0^^~1~^^^^^^^^^^^~08/01/1984~
-~11288~^~306~^108.^0^^~1~^^^^^^^^^^^~08/01/1984~
-~11288~^~307~^12.^0^^~1~^^^^^^^^^^^~08/01/1984~
-~11288~^~318~^2.^0^^~4~^~NC~^^^^^^^^^^~03/01/2007~
-~11288~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2002~
-~11288~^~320~^0.^0^^~4~^~NC~^^^^^^^^^^~03/01/2007~
-~11288~^~321~^1.^0^^~4~^~BFSN~^~11283~^^^^^^^^^~11/01/2002~
-~11288~^~322~^0.^0^^~4~^~BFSN~^~11283~^^^^^^^^^~11/01/2002~
-~11288~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~
-~11288~^~334~^0.^0^^~4~^~BFSN~^~11283~^^^^^^^^^~11/01/2002~
-~11288~^~337~^0.^0^^~4~^~BFSN~^~11283~^^^^^^^^^~11/01/2002~
-~11288~^~338~^3.^0^^~4~^~BFSN~^~11283~^^^^^^^^^~11/01/2002~
-~11288~^~417~^13.^0^^~1~^^^^^^^^^^^~08/01/1984~
-~11288~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~
-~11288~^~432~^13.^0^^~1~^^^^^^^^^^^~03/01/2007~
-~11288~^~435~^13.^0^^~4~^~NC~^^^^^^^^^^~03/01/2007~
-~11288~^~601~^0.^0^^~7~^~Z~^^^^^^^^^^~08/01/1984~
-~11289~^~208~^35.^0^^~4~^~NC~^^^^^^^^^^~03/01/2007~
-~11289~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~11/01/2002~
-~11289~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~11/01/2002~
-~11289~^~268~^148.^0^^~4~^~NC~^^^^^^^^^^~03/01/2007~
-~11289~^~301~^36.^6^2.^~1~^^^^^^^^^^^~08/01/1984~
-~11289~^~304~^10.^3^0.^~1~^^^^^^^^^^^~08/01/1984~
-~11289~^~305~^23.^5^0.^~1~^^^^^^^^^^^~08/01/1984~
-~11289~^~306~^142.^3^8.^~1~^^^^^^^^^^^~08/01/1984~
-~11289~^~307~^10.^3^0.^~1~^^^^^^^^^^^~08/01/1984~
-~11289~^~318~^2.^0^^~4~^~NC~^^^^^^^^^^~03/01/2007~
-~11289~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2002~
-~11289~^~320~^0.^0^^~4~^~NC~^^^^^^^^^^~03/01/2007~
-~11289~^~321~^1.^0^^~4~^~BFSN~^~11282~^^^^^^^^^~11/01/2002~
-~11289~^~322~^0.^0^^~4~^~BFSN~^~11282~^^^^^^^^^~03/01/2007~
-~11289~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~
-~11289~^~334~^0.^0^^~4~^~BFSN~^~11282~^^^^^^^^^~03/01/2007~
-~11289~^~337~^0.^0^^~4~^~BFSN~^~11282~^^^^^^^^^~03/01/2007~
-~11289~^~338~^4.^0^^~4~^~BFSN~^~11282~^^^^^^^^^~11/01/2002~
-~11289~^~417~^21.^0^^~1~^^^^^^^^^^^~08/01/1984~
-~11289~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~
-~11289~^~432~^21.^0^^~1~^^^^^^^^^^^~03/01/2007~
-~11289~^~435~^21.^0^^~4~^~NC~^^^^^^^^^^~03/01/2007~
-~11289~^~601~^0.^0^^~7~^~Z~^^^^^^^^^^~08/01/1984~
-~11290~^~208~^28.^0^^~4~^~NC~^^^^^^^^^^~03/01/2007~
-~11290~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~11/01/2002~
-~11290~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~11/01/2002~
-~11290~^~268~^118.^0^^~4~^~NC~^^^^^^^^^^~03/01/2007~
-~11290~^~301~^27.^0^^~1~^^^^^^^^^^^~08/01/1984~
-~11290~^~304~^8.^0^^~1~^^^^^^^^^^^~08/01/1984~
-~11290~^~305~^2.^0^^~1~^^^^^^^^^^^~08/01/1984~
-~11290~^~306~^101.^0^^~1~^^^^^^^^^^^~08/01/1984~
-~11290~^~307~^8.^0^^~1~^^^^^^^^^^^~08/01/1984~
-~11290~^~318~^2.^0^^~4~^~NC~^^^^^^^^^^~03/01/2007~
-~11290~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2002~
-~11290~^~320~^0.^0^^~4~^~NC~^^^^^^^^^^~03/01/2007~
-~11290~^~321~^1.^0^^~4~^~BFSN~^~11283~^^^^^^^^^~11/01/2002~
-~11290~^~322~^0.^0^^~4~^~BFSN~^~11283~^^^^^^^^^~11/01/2002~
-~11290~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~
-~11290~^~334~^0.^0^^~4~^~BFSN~^~11283~^^^^^^^^^~11/01/2002~
-~11290~^~337~^0.^0^^~4~^~BFSN~^~11283~^^^^^^^^^~11/01/2002~
-~11290~^~338~^3.^0^^~4~^~BFSN~^~11283~^^^^^^^^^~11/01/2002~
-~11290~^~417~^13.^0^^~1~^^^^^^^^^^^~08/01/1984~
-~11290~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~
-~11290~^~432~^13.^0^^~1~^^^^^^^^^^^~03/01/2007~
-~11290~^~435~^13.^0^^~4~^~NC~^^^^^^^^^^~03/01/2007~
-~11290~^~601~^0.^0^^~7~^~Z~^^^^^^^^^^~08/01/1984~
-~11291~^~208~^32.^0^^~4~^~NC~^^^^^^^^^^~03/01/2007~
-~11291~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2003~
-~11291~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2003~
-~11291~^~268~^135.^0^^~4~^~NC~^^^^^^^^^^~03/01/2007~
-~11291~^~301~^72.^3^15.^~1~^^^^^^^^^^^~08/01/1984~
-~11291~^~304~^20.^4^1.^~1~^^^^^^^^^^^~08/01/1984~
-~11291~^~305~^37.^3^0.^~1~^^^^^^^^^^^~08/01/1984~
-~11291~^~306~^276.^4^1.^~1~^^^^^^^^^^^~08/01/1984~
-~11291~^~307~^16.^12^5.^~1~^^^^^^^^^^^~08/01/1984~
-~11291~^~318~^997.^0^^~4~^~NC~^^^^^^^^^^~03/01/2007~
-~11291~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2002~
-~11291~^~320~^50.^0^^~4~^~NC~^^^^^^^^^^~03/01/2007~
-~11291~^~321~^598.^0^^~4~^~BFSN~^~11246~^^^^^^^^^~01/01/2003~
-~11291~^~322~^0.^0^^~4~^~BFSN~^~11246~^^^^^^^^^~01/01/2003~
-~11291~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~
-~11291~^~334~^0.^0^^~4~^~BFSN~^~11246~^^^^^^^^^~01/01/2003~
-~11291~^~337~^0.^0^^~4~^~BFSN~^~11246~^^^^^^^^^~01/01/2003~
-~11291~^~338~^1137.^0^^~4~^~BFSN~^~11246~^^^^^^^^^~01/01/2003~
-~11291~^~417~^64.^11^11.^~1~^^^^^^^^^^^~08/01/1984~
-~11291~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~
-~11291~^~432~^64.^11^11.^~1~^^^^^^^^^^^~03/01/2007~
-~11291~^~435~^64.^0^^~4~^~NC~^^^^^^^^^^~03/01/2007~
-~11291~^~601~^0.^0^^~7~^~Z~^^^^^^^^^^~08/01/1984~
-~11292~^~208~^27.^0^^~4~^~NC~^^^^^^^^^^~04/01/2009~
-~11292~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~
-~11292~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~
-~11292~^~268~^112.^0^^~4~^~NC~^^^^^^^^^^~04/01/2009~
-~11292~^~301~^52.^4^6.^~1~^~A~^^^1^^^^^^^~04/01/2009~
-~11292~^~304~^16.^4^0.^~1~^~A~^^^1^^^^^^^~04/01/2009~
-~11292~^~305~^25.^4^0.^~1~^~A~^^^1^^^^^^^~04/01/2009~
-~11292~^~306~^159.^4^14.^~1~^~A~^^^1^^^^^^^~04/01/2009~
-~11292~^~307~^15.^4^4.^~1~^~A~^^^1^^^^^^^~04/01/2009~
-~11292~^~318~^4000.^0^^~4~^~NC~^^^^^^^^^^~04/01/2009~
-~11292~^~319~^0.^0^^~4~^~BNA~^~11291~^^^^^^^^^~02/01/2003~
-~11292~^~320~^200.^0^^~4~^~NC~^^^^^^^^^^~04/01/2009~
-~11292~^~321~^2400.^0^^~4~^~BNA~^~11291~^^^^^^^^^~02/01/2003~
-~11292~^~322~^0.^0^^~4~^~BNA~^~11291~^^^^^^^^^~02/01/2003~
-~11292~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~
-~11292~^~334~^0.^0^^~4~^~BNA~^~11291~^^^^^^^^^~02/01/2003~
-~11292~^~337~^0.^0^^~4~^~BFSN~^~11291~^^^^^^^^^~02/01/2003~
-~11292~^~338~^858.^0^^~4~^~BFSN~^~11291~^^^^^^^^^~04/01/2009~
-~11292~^~417~^30.^2^^~1~^~A~^^^1^^^^^^^~04/01/2009~
-~11292~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~
-~11292~^~432~^30.^2^^~1~^~A~^^^1^^^^^^^~04/01/2009~
-~11292~^~435~^30.^0^^~4~^~NC~^^^^^^^^^^~04/01/2009~
-~11292~^~601~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2009~
-~11293~^~208~^34.^0^^~4~^~NC~^^^^^^^^^^~08/01/1984~
-~11293~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~08/01/2011~
-~11293~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~08/01/2011~
-~11293~^~268~^142.^0^^~4~^^^^^^^^^^^
-~11293~^~301~^18.^0^^~1~^^^^^^^^^^^~08/01/1984~
-~11293~^~304~^23.^0^^~4~^^^^^^^^^^^~08/01/1984~
-~11293~^~305~^49.^0^^~1~^^^^^^^^^^^~08/01/1984~
-~11293~^~306~^212.^0^^~4~^^^^^^^^^^^~08/01/1984~
-~11293~^~307~^17.^0^^~4~^^^^^^^^^^^~08/01/1984~
-~11293~^~318~^1160.^0^^~4~^^^^^^^^^^^~08/01/1984~
-~11293~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2002~
-~11293~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~
-~11293~^~417~^16.^0^^~4~^^^^^^^^^^^~08/01/1984~
-~11293~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~
-~11293~^~432~^16.^0^^~4~^^^^^^^^^^^~12/01/1984~
-~11293~^~435~^16.^0^^~4~^~NC~^^^^^^^^^^~01/01/2001~
-~11293~^~601~^0.^0^^~7~^~Z~^^^^^^^^^^~08/01/1984~
-~11294~^~208~^32.^0^^~4~^~NC~^^^^^^^^^^~03/01/2006~
-~11294~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2003~
-~11294~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2003~
-~11294~^~268~^133.^0^^~4~^~NC~^^^^^^^^^^~03/01/2006~
-~11294~^~301~^20.^8^2.^~1~^~A~^^^2^12.^28.^4^13.^26.^~2, 3~^~04/01/2003~
-~11294~^~304~^9.^8^0.^~1~^~A~^^^2^6.^10.^5^7.^9.^~2, 3~^~04/01/2003~
-~11294~^~305~^27.^8^1.^~1~^~A~^^^2^22.^34.^5^23.^29.^~2, 3~^~04/01/2003~
-~11294~^~306~^119.^8^3.^~1~^~A~^^^2^95.^148.^6^109.^128.^~2, 3~^~04/01/2003~
-~11294~^~307~^8.^8^1.^~1~^~A~^^^2^3.^19.^4^2.^13.^~2, 3~^~04/01/2003~
-~11294~^~318~^1.^4^^~1~^~AS~^^^^^^^^^^~08/01/2006~
-~11294~^~320~^0.^4^^~1~^~AS~^^^^^^^^^^~08/01/2006~
-~11294~^~321~^1.^4^0.^~1~^~A~^^^2^0.^1.^^^^~1, 2, 3~^~04/01/2003~
-~11294~^~322~^0.^4^0.^~1~^~A~^^^2^0.^0.^^^^~1, 2, 3~^~04/01/2003~
-~11294~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~
-~11294~^~334~^0.^4^0.^~1~^~A~^^^2^0.^0.^^^^~1, 2, 3~^~04/01/2003~
-~11294~^~337~^0.^4^0.^~1~^~A~^^^2^0.^0.^^^^~1, 2, 3~^~04/01/2003~
-~11294~^~338~^6.^4^1.^~1~^~A~^^^2^2.^7.^1^-8.^19.^~2, 3~^~04/01/2003~
-~11294~^~417~^23.^5^1.^~1~^~A~^^^2^14.^41.^3^17.^29.^~2, 3~^~04/01/2003~
-~11294~^~432~^23.^5^1.^~1~^~A~^^^2^14.^41.^3^17.^29.^^~03/01/2006~
-~11294~^~601~^0.^0^^~7~^~Z~^^^^^^^^^^~10/01/2003~
-~11295~^~208~^258.^0^^~4~^~NC~^^^^^^^^^^~08/01/1984~
-~11295~^~268~^1079.^0^^~4~^^^^^^^^^^^~02/01/2006~
-~11295~^~301~^46.^9^10.^~1~^^^^^^^^^^^~08/01/1984~
-~11295~^~304~^14.^0^^~4~^^^^^^^^^^^~08/01/1984~
-~11295~^~305~^49.^0^^~4~^^^^^^^^^^^~08/01/1984~
-~11295~^~306~^190.^2^^~1~^^^^^^^^^^^~08/01/1984~
-~11295~^~307~^246.^13^15.^~1~^^^^^^^^^^^~08/01/1984~
-~11295~^~318~^0.^0^^~1~^~AS~^^^^^^^^^^~02/01/2006~
-~11295~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2002~
-~11295~^~320~^0.^0^^~1~^~AS~^^^^^^^^^^~02/01/2006~
-~11295~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~
-~11295~^~417~^48.^0^^~4~^~RA~^^^^^^^^^^~12/01/1997~
-~11295~^~431~^29.^0^^~4~^~NC~^^^^^^^^^^~05/01/2000~
-~11295~^~432~^19.^0^^~4~^^^^^^^^^^^~08/01/1984~
-~11295~^~435~^68.^0^^~4~^~NC~^^^^^^^^^^~02/01/2006~
-~11295~^~601~^0.^0^^~7~^~Z~^^^^^^^^^^~08/01/1984~
-~11296~^~208~^276.^0^^~4~^~NC~^^^^^^^^^^~04/01/2013~
-~11296~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2012~
-~11296~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2012~
-~11296~^~268~^1156.^0^^~4~^~NC~^^^^^^^^^^~04/01/2013~
-~11296~^~301~^31.^11^2.^~1~^~A~^^^1^20.^53.^4^23.^39.^~2, 3~^~08/01/1984~
-~11296~^~304~^17.^11^0.^~1~^~A~^^^1^14.^29.^2^14.^18.^~2, 3~^~04/01/2013~
-~11296~^~305~^71.^11^3.^~1~^~A~^^^1^56.^98.^1^35.^105.^~2, 3~^~04/01/2013~
-~11296~^~306~^123.^11^2.^~1~^~A~^^^1^110.^172.^3^115.^129.^~2, 3~^~04/01/2013~
-~11296~^~307~^370.^11^36.^~1~^~A~^^^1^259.^552.^1^101.^638.^~2, 3~^~04/01/2013~
-~11296~^~318~^0.^0^^~1~^~AS~^^^^^^^^^^~05/01/2013~
-~11296~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2002~
-~11296~^~320~^0.^0^^~1~^~AS~^^^^^^^^^^~05/01/2013~
-~11296~^~321~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2013~
-~11296~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2013~
-~11296~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~
-~11296~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2013~
-~11296~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2012~
-~11296~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2012~
-~11296~^~417~^33.^7^2.^~1~^~A~^^^1^20.^41.^2^24.^41.^~2, 3~^~04/01/2013~
-~11296~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2013~
-~11296~^~432~^33.^7^2.^~1~^~A~^^^1^20.^41.^2^24.^41.^^~04/01/2013~
-~11296~^~435~^33.^0^^~4~^~NC~^^^^^^^^^^~04/01/2013~
-~11296~^~601~^0.^0^^~7~^~Z~^^^^^^^^^^~08/01/1984~
-~11297~^~208~^36.^0^^~4~^~NC~^^^^^^^^^^~03/01/2007~
-~11297~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~10/01/2002~
-~11297~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~10/01/2002~
-~11297~^~268~^151.^0^^~4~^^^^^^^^^^^~03/01/2007~
-~11297~^~301~^138.^4^6.^~1~^^^^^^^^^^^~08/01/1984~
-~11297~^~304~^50.^4^10.^~1~^^^^^^^^^^^~08/01/1984~
-~11297~^~305~^58.^4^8.^~1~^^^^^^^^^^^~08/01/1984~
-~11297~^~306~^554.^7^77.^~1~^^^^^^^^^^^~08/01/1984~
-~11297~^~307~^56.^7^19.^~1~^^^^^^^^^^^~08/01/1984~
-~11297~^~318~^8424.^0^^~1~^~AS~^^^^^^^^^^~03/01/2007~
-~11297~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2002~
-~11297~^~320~^421.^0^^~1~^~AS~^^^^^^^^^^~03/01/2007~
-~11297~^~321~^5054.^7^310.^~1~^~A~^^^1^4523.^5600.^2^3716.^6392.^~4~^~10/01/2002~
-~11297~^~322~^0.^1^^~1~^~A~^^^^^^^^^^~10/01/2002~
-~11297~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~
-~11297~^~334~^0.^1^^~1~^~A~^^^^^^^^^^~10/01/2002~
-~11297~^~337~^0.^1^^~1~^~A~^^^^^^^^^^~10/01/2002~
-~11297~^~338~^5561.^7^2753.^~1~^~A~^^^1^670.^10200.^2^-6288.^17409.^~4~^~10/01/2002~
-~11297~^~417~^152.^5^21.^~1~^^^^^^^^^^^~08/01/1984~
-~11297~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~
-~11297~^~432~^152.^5^21.^~1~^^^^^^^^^^^~03/01/2007~
-~11297~^~435~^152.^0^^~4~^~NC~^^^^^^^^^^~03/01/2007~
-~11297~^~601~^0.^0^^~7~^~Z~^^^^^^^^^^~08/01/1984~
-~11297~^~636~^5.^1^^~1~^^^^^^^^^^^~08/01/1984~
-~11298~^~208~^75.^0^^~4~^~NC~^^^^^^^^^^~02/01/2003~
-~11298~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~
-~11298~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~
-~11298~^~268~^314.^0^^~4~^~NC~^^^^^^^^^^~02/01/2003~
-~11298~^~301~^36.^2^^~1~^^^^^^^^^^^~08/01/1984~
-~11298~^~304~^29.^2^^~1~^^^^^^^^^^^~08/01/1984~
-~11298~^~305~^71.^2^^~1~^^^^^^^^^^^~08/01/1984~
-~11298~^~306~^375.^2^^~1~^^^^^^^^^^^~08/01/1984~
-~11298~^~307~^10.^1^^~1~^^^^^^^^^^^~08/01/1984~
-~11298~^~318~^0.^0^^~1~^~AS~^^^^^^^^^^~02/01/2003~
-~11298~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2002~
-~11298~^~320~^0.^0^^~1~^~AS~^^^^^^^^^^~02/01/2003~
-~11298~^~321~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~
-~11298~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~
-~11298~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~
-~11298~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~
-~11298~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~
-~11298~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~
-~11298~^~417~^67.^4^6.^~1~^^^^^^^^^^^~08/01/1984~
-~11298~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~
-~11298~^~432~^67.^4^6.^~1~^^^^^^^^^^^~02/01/2003~
-~11298~^~435~^67.^0^^~4~^~NC~^^^^^^^^^^~02/01/2003~
-~11298~^~601~^0.^0^^~7~^~Z~^^^^^^^^^^~08/01/1984~
-~11299~^~208~^71.^0^^~4~^~NC~^^^^^^^^^^~03/01/2007~
-~11299~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2003~
-~11299~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2003~
-~11299~^~268~^299.^0^^~4~^~NC~^^^^^^^^^^~03/01/2007~
-~11299~^~301~^37.^0^^~1~^^^^^^^^^^^~08/01/1984~
-~11299~^~304~^29.^0^^~1~^^^^^^^^^^^~08/01/1984~
-~11299~^~305~^69.^0^^~1~^^^^^^^^^^^~08/01/1984~
-~11299~^~306~^367.^0^^~1~^^^^^^^^^^^~08/01/1984~
-~11299~^~307~^10.^0^^~1~^^^^^^^^^^^~08/01/1984~
-~11299~^~318~^0.^0^^~1~^~AS~^^^^^^^^^^~03/01/2007~
-~11299~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2002~
-~11299~^~320~^0.^0^^~1~^~AS~^^^^^^^^^^~03/01/2007~
-~11299~^~321~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2003~
-~11299~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2003~
-~11299~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~
-~11299~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2003~
-~11299~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2003~
-~11299~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2003~
-~11299~^~417~^58.^0^^~1~^^^^^^^^^^^~08/01/1984~
-~11299~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~
-~11299~^~432~^58.^0^^~1~^^^^^^^^^^^~03/01/2007~
-~11299~^~435~^58.^0^^~4~^~NC~^^^^^^^^^^~03/01/2007~
-~11299~^~601~^0.^0^^~7~^~Z~^^^^^^^^^^~08/01/1984~
-~11300~^~208~^42.^0^^~4~^~NC~^^^^^^^^^^~03/01/2007~
-~11300~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~08/01/2004~
-~11300~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2003~
-~11300~^~268~^176.^0^^~4~^~NC~^^^^^^^^^^~03/01/2007~
-~11300~^~301~^43.^1^^~1~^^^^^^^^^^^~08/01/1984~
-~11300~^~304~^24.^2^^~1~^^^^^^^^^^^~08/01/1984~
-~11300~^~305~^53.^1^^~1~^^^^^^^^^^^~08/01/1984~
-~11300~^~306~^200.^2^^~1~^^^^^^^^^^^~08/01/1984~
-~11300~^~307~^4.^2^^~1~^^^^^^^^^^^~08/01/1984~
-~11300~^~318~^1087.^0^^~4~^~NC~^^^^^^^^^^~03/01/2007~
-~11300~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2002~
-~11300~^~320~^54.^0^^~4~^~NC~^^^^^^^^^^~03/01/2007~
-~11300~^~321~^630.^0^^~4~^~T~^^^^^^^^^^~01/01/2003~
-~11300~^~322~^44.^0^^~4~^~T~^^^^^^^^^^~01/01/2003~
-~11300~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~
-~11300~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2003~
-~11300~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2003~
-~11300~^~338~^740.^0^^~4~^~T~^^^^^^^^^^~01/01/2003~
-~11300~^~417~^42.^0^^~4~^^^^^^^^^^^~08/01/1984~
-~11300~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~
-~11300~^~432~^42.^0^^~4~^^^^^^^^^^^~03/01/2007~
-~11300~^~435~^42.^0^^~4~^~NC~^^^^^^^^^^~03/01/2007~
-~11300~^~601~^0.^0^^~7~^~Z~^^^^^^^^^^~08/01/1984~
-~11301~^~208~^42.^0^^~4~^~NC~^^^^^^^^^^~03/01/2007~
-~11301~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~08/01/2004~
-~11301~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2003~
-~11301~^~268~^176.^0^^~4~^^^^^^^^^^^~03/01/2007~
-~11301~^~301~^42.^1^^~1~^^^^^^^^^^^~08/01/1984~
-~11301~^~304~^26.^1^^~1~^^^^^^^^^^^~08/01/1984~
-~11301~^~305~^55.^1^^~1~^^^^^^^^^^^~08/01/1984~
-~11301~^~306~^240.^1^^~1~^^^^^^^^^^^~08/01/1984~
-~11301~^~307~^4.^1^^~1~^^^^^^^^^^^~08/01/1984~
-~11301~^~318~^1030.^0^^~4~^~NC~^^^^^^^^^^~03/01/2007~
-~11301~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2002~
-~11301~^~320~^52.^0^^~4~^~NC~^^^^^^^^^^~03/01/2007~
-~11301~^~321~^597.^0^^~4~^~BFSY~^~11300~^^^^^^^^^~01/01/2004~
-~11301~^~322~^42.^0^^~4~^~BFSY~^~11300~^^^^^^^^^~01/01/2004~
-~11301~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~
-~11301~^~334~^0.^0^^~4~^~BFSY~^~11300~^^^^^^^^^~01/01/2004~
-~11301~^~337~^0.^0^^~4~^~BFSY~^~11300~^^^^^^^^^~01/01/2004~
-~11301~^~338~^702.^0^^~4~^~BFSY~^~11300~^^^^^^^^^~01/01/2004~
-~11301~^~417~^29.^0^^~4~^^^^^^^^^^^~08/01/1984~
-~11301~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~
-~11301~^~432~^29.^0^^~4~^^^^^^^^^^^~03/01/2007~
-~11301~^~435~^29.^0^^~4~^~NC~^^^^^^^^^^~03/01/2007~
-~11301~^~601~^0.^0^^~7~^~Z~^^^^^^^^^^~08/01/1984~
-~11302~^~208~^42.^0^^~4~^~NC~^^^^^^^^^^~08/01/1984~
-~11302~^~268~^176.^0^^~4~^^^^^^^^^^^~03/01/2010~
-~11302~^~301~^50.^1^^~1~^^^^^^^^^^^~08/01/1984~
-~11302~^~304~^23.^0^^~1~^^^^^^^^^^^~08/01/1984~
-~11302~^~305~^51.^0^^~1~^^^^^^^^^^^~08/01/1984~
-~11302~^~306~^192.^0^^~1~^^^^^^^^^^^~08/01/1984~
-~11302~^~307~^4.^0^^~1~^^^^^^^^^^^~08/01/1984~
-~11302~^~318~^140.^1^^~1~^^^^^^^^^^^~08/01/1984~
-~11302~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2002~
-~11302~^~320~^7.^1^^~1~^^^^^^^^^^^~06/01/2002~
-~11302~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~
-~11302~^~417~^40.^0^^~4~^^^^^^^^^^^~08/01/1984~
-~11302~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~
-~11302~^~432~^40.^0^^~4~^^^^^^^^^^^~12/01/1984~
-~11302~^~435~^40.^0^^~4~^~NC~^^^^^^^^^^~03/01/2010~
-~11302~^~601~^0.^0^^~7~^~Z~^^^^^^^^^^~08/01/1984~
-~11303~^~208~^52.^0^^~4~^~NC~^^^^^^^^^^~03/01/2007~
-~11303~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2003~
-~11303~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2003~
-~11303~^~268~^218.^0^^~4~^^^^^^^^^^^~03/01/2007~
-~11303~^~301~^59.^0^^~1~^^^^^^^^^^^~08/01/1984~
-~11303~^~304~^28.^0^^~1~^^^^^^^^^^^~08/01/1984~
-~11303~^~305~^58.^0^^~1~^^^^^^^^^^^~08/01/1984~
-~11303~^~306~^217.^0^^~1~^^^^^^^^^^^~08/01/1984~
-~11303~^~307~^5.^0^^~1~^^^^^^^^^^^~08/01/1984~
-~11303~^~318~^1311.^0^^~4~^~NC~^^^^^^^^^^~03/01/2007~
-~11303~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2002~
-~11303~^~320~^66.^0^^~4~^~NC~^^^^^^^^^^~03/01/2007~
-~11303~^~321~^760.^0^^~4~^~BFSN~^~11300~^^^^^^^^^~01/01/2003~
-~11303~^~322~^53.^0^^~4~^~BFSN~^~11300~^^^^^^^^^~01/01/2003~
-~11303~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~
-~11303~^~334~^0.^0^^~4~^~BFSN~^~11300~^^^^^^^^^~01/01/2003~
-~11303~^~337~^0.^0^^~4~^~BFSN~^~11300~^^^^^^^^^~01/01/2003~
-~11303~^~338~^893.^0^^~4~^~BFSN~^~11300~^^^^^^^^^~01/01/2003~
-~11303~^~417~^35.^0^^~4~^^^^^^^^^^^~08/01/1984~
-~11303~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~
-~11303~^~432~^35.^0^^~4~^^^^^^^^^^^~03/01/2007~
-~11303~^~435~^35.^0^^~4~^~NC~^^^^^^^^^^~03/01/2007~
-~11303~^~601~^0.^0^^~7~^~Z~^^^^^^^^^^~08/01/1984~
-~11304~^~208~^81.^0^^~4~^~NC~^^^^^^^^^^~03/01/2007~
-~11304~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~09/01/2002~
-~11304~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~09/01/2002~
-~11304~^~268~^339.^0^^~4~^~NC~^^^^^^^^^^~03/01/2007~
-~11304~^~301~^25.^8^2.^~1~^^^^^^^^^^^~08/01/1984~
-~11304~^~304~^33.^8^1.^~1~^^^^^^^^^^^~08/01/1984~
-~11304~^~305~^108.^8^4.^~1~^^^^^^^^^^^~08/01/1984~
-~11304~^~306~^244.^10^16.^~1~^^^^^^^^^^^~08/01/1984~
-~11304~^~307~^5.^7^1.^~1~^^^^^^^^^^^~08/01/1984~
-~11304~^~318~^765.^0^^~1~^~AS~^^^^^^^^^^~03/01/2007~
-~11304~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2002~
-~11304~^~320~^38.^0^^~1~^~AS~^^^^^^^^^^~03/01/2007~
-~11304~^~321~^449.^40^108.^~1~^~A~^^^1^340.^557.^1^-930.^1827.^~4~^~09/01/2002~
-~11304~^~322~^21.^40^5.^~1~^~A~^^^1^16.^26.^1^-44.^86.^~4~^~09/01/2002~
-~11304~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~
-~11304~^~334~^0.^15^^~1~^~A~^^^^^^^^^^~09/01/2002~
-~11304~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~09/01/2002~
-~11304~^~338~^2477.^0^^~4~^~BFSN~^~11313~^^^^^^^^^~09/01/2002~
-~11304~^~417~^65.^1^^~1~^^^^^^^^^^^~08/01/1984~
-~11304~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~
-~11304~^~432~^65.^1^^~1~^^^^^^^^^^^~03/01/2007~
-~11304~^~435~^65.^0^^~4~^~NC~^^^^^^^^^^~03/01/2007~
-~11304~^~601~^0.^0^^~7~^~Z~^^^^^^^^^^~08/01/1984~
-~11305~^~208~^84.^0^^~4~^~NC~^^^^^^^^^^~02/01/2007~
-~11305~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~09/01/2002~
-~11305~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~09/01/2002~
-~11305~^~268~^352.^0^^~4~^~NC~^^^^^^^^^^~02/01/2007~
-~11305~^~301~^27.^12^0.^~1~^^^^^^^^^^^~08/01/1984~
-~11305~^~304~^39.^13^2.^~1~^^^^^^^^^^^~08/01/1984~
-~11305~^~305~^117.^12^2.^~1~^^^^^^^^^^^~08/01/1984~
-~11305~^~306~^271.^12^12.^~1~^^^^^^^^^^^~08/01/1984~
-~11305~^~307~^3.^8^1.^~1~^^^^^^^^^^^~08/01/1984~
-~11305~^~318~^801.^0^^~4~^~NC~^^^^^^^^^^~02/01/2007~
-~11305~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2002~
-~11305~^~320~^40.^0^^~4~^~NC~^^^^^^^^^^~02/01/2007~
-~11305~^~321~^470.^0^^~4~^~BFSN~^~11304~^^^^^^^^^~09/01/2002~
-~11305~^~322~^22.^0^^~4~^~BFSN~^~11304~^^^^^^^^^~09/01/2002~
-~11305~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~
-~11305~^~334~^0.^0^^~4~^~BFSN~^~11304~^^^^^^^^^~09/01/2002~
-~11305~^~337~^0.^0^^~4~^~BFSN~^~11304~^^^^^^^^^~09/01/2002~
-~11305~^~338~^2593.^0^^~4~^~BFSN~^~11304~^^^^^^^^^~09/01/2002~
-~11305~^~417~^63.^0^^~1~^^^^^^^^^^^~08/01/1984~
-~11305~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~
-~11305~^~432~^63.^0^^~1~^^^^^^^^^^^~02/01/2007~
-~11305~^~435~^63.^0^^~4~^~NC~^^^^^^^^^^~02/01/2007~
-~11305~^~601~^0.^0^^~7~^~Z~^^^^^^^^^^~08/01/1984~
-~11306~^~208~^58.^0^^~4~^~NC~^^^^^^^^^^~04/01/2011~
-~11306~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2011~
-~11306~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2011~
-~11306~^~268~^241.^0^^~4~^~NC~^^^^^^^^^^~04/01/2011~
-~11306~^~301~^20.^86^0.^~6~^~JA~^^^10^11.^28.^85^19.^20.^~4~^~04/01/2011~
-~11306~^~304~^19.^50^0.^~6~^~JA~^^^6^15.^25.^49^18.^19.^~4~^~04/01/2011~
-~11306~^~305~^63.^49^1.^~6~^~JA~^^^6^47.^77.^48^60.^64.^~4~^~04/01/2011~
-~11306~^~306~^106.^66^2.^~6~^~JA~^^^8^59.^155.^65^101.^110.^~4~^~04/01/2011~
-~11306~^~307~^185.^87^10.^~6~^~JA~^^^10^1.^334.^86^164.^205.^~4~^~04/01/2011~
-~11306~^~318~^1529.^0^^~4~^~NC~^^^^^^^^^^~04/01/2011~
-~11306~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2002~
-~11306~^~320~^76.^0^^~4~^~NC~^^^^^^^^^^~04/01/2011~
-~11306~^~321~^910.^0^^~4~^~BFSN~^~11312~^^^^^^^^^~04/01/2011~
-~11306~^~322~^15.^0^^~4~^~BFSN~^~11312~^^^^^^^^^~04/01/2011~
-~11306~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~
-~11306~^~334~^0.^0^^~4~^~BFSN~^~11312~^^^^^^^^^~09/01/2002~
-~11306~^~337~^0.^0^^~4~^~BFSN~^~11312~^^^^^^^^^~09/01/2002~
-~11306~^~338~^1747.^0^^~4~^~BFSN~^~11312~^^^^^^^^^~04/01/2011~
-~11306~^~417~^24.^0^^~1~^~A~^^^^^^^^^^~04/01/2011~
-~11306~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~
-~11306~^~432~^24.^0^^~1~^~A~^^^^^^^^^^~04/01/2011~
-~11306~^~435~^24.^0^^~4~^~NC~^^^^^^^^^^~04/01/2011~
-~11306~^~601~^0.^0^^~7~^~Z~^^^^^^^^^^~08/01/1984~
-~11308~^~208~^68.^0^^~4~^~NC~^^^^^^^^^^~04/01/2011~
-~11308~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~09/01/2002~
-~11308~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~09/01/2002~
-~11308~^~268~^286.^0^^~4~^~NC~^^^^^^^^^^~04/01/2011~
-~11308~^~301~^23.^9^1.^~1~^~A~^^^2^19.^30.^5^20.^26.^~2, 3~^~12/01/2007~
-~11308~^~304~^18.^9^0.^~1~^~A~^^^2^16.^20.^6^17.^19.^~2, 3~^~12/01/2007~
-~11308~^~305~^67.^9^1.^~1~^~A~^^^2^58.^76.^4^61.^72.^~2, 3~^~04/01/2011~
-~11308~^~306~^106.^9^6.^~1~^~A~^^^2^85.^141.^6^90.^121.^~2, 3~^~04/01/2011~
-~11308~^~307~^273.^9^12.^~1~^~A~^^^2^211.^321.^5^241.^303.^~2, 3~^~04/01/2011~
-~11308~^~318~^865.^0^^~1~^~AS~^^^^^^^^^^~06/01/2009~
-~11308~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2002~
-~11308~^~320~^43.^0^^~1~^~AS~^^^^^^^^^^~06/01/2009~
-~11308~^~321~^514.^6^39.^~1~^~A~^^^2^320.^632.^4^405.^622.^~2, 3~^~12/01/2007~
-~11308~^~322~^9.^6^0.^~1~^~A~^^^2^0.^11.^^^^~1, 2, 3~^~12/01/2007~
-~11308~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~
-~11308~^~334~^0.^6^0.^~1~^~A~^^^2^0.^0.^^^^~1, 2, 3~^~12/01/2007~
-~11308~^~337~^0.^1^^~1~^~A~^^^^^^^^^^~09/01/2002~
-~11308~^~338~^1350.^1^^~1~^~A~^^^^^^^^^^~09/01/2002~
-~11308~^~417~^31.^0^^~1~^~A~^^^^^^^^^^~04/01/2011~
-~11308~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~
-~11308~^~432~^31.^0^^~1~^~A~^^^^^^^^^^~04/01/2011~
-~11308~^~435~^31.^0^^~4~^~NC~^^^^^^^^^^~04/01/2011~
-~11308~^~601~^0.^0^^~7~^~Z~^^^^^^^^^^~08/01/1984~
-~11310~^~208~^50.^0^^~4~^~NC~^^^^^^^^^^~08/01/1984~
-~11310~^~268~^209.^0^^~4~^^^^^^^^^^^
-~11310~^~301~^15.^36^0.^~1~^^^^^^^^^^^~08/01/1984~
-~11310~^~304~^15.^36^0.^~1~^^^^^^^^^^^~08/01/1984~
-~11310~^~305~^54.^36^0.^~1~^^^^^^^^^^^~08/01/1984~
-~11310~^~306~^122.^36^2.^~1~^^^^^^^^^^^~08/01/1984~
-~11310~^~307~^254.^36^4.^~1~^^^^^^^^^^^~08/01/1984~
-~11310~^~318~^433.^36^12.^~1~^^^^^^^^^^^~08/01/1984~
-~11310~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2002~
-~11310~^~320~^22.^36^0.^~1~^^^^^^^^^^^~06/01/2002~
-~11310~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~
-~11310~^~417~^29.^0^^~4~^^^^^^^^^^^~08/01/1984~
-~11310~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~
-~11310~^~432~^29.^0^^~4~^^^^^^^^^^^~12/01/1984~
-~11310~^~435~^29.^0^^~4~^~NC~^^^^^^^^^^~01/01/2001~
-~11310~^~601~^0.^0^^~7~^~Z~^^^^^^^^^^~08/01/1984~
-~11311~^~208~^71.^0^^~4~^~NC~^^^^^^^^^^~04/01/2011~
-~11311~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2011~
-~11311~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2011~
-~11311~^~268~^298.^0^^~4~^~NC~^^^^^^^^^^~04/01/2011~
-~11311~^~301~^24.^4^1.^~1~^~A~^^^1^20.^28.^3^18.^29.^~2, 3~^~04/01/2011~
-~11311~^~304~^18.^4^0.^~1~^~A~^^^1^17.^19.^3^16.^19.^~2, 3~^~04/01/2011~
-~11311~^~305~^65.^4^4.^~1~^~A~^^^1^56.^74.^3^51.^78.^~2, 3~^~04/01/2011~
-~11311~^~306~^105.^4^9.^~1~^~A~^^^1^89.^126.^3^75.^134.^~2, 3~^~04/01/2011~
-~11311~^~307~^231.^4^15.^~1~^~A~^^^1^207.^275.^3^182.^280.^~2, 3~^~04/01/2011~
-~11311~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2011~
-~11311~^~417~^30.^0^^~1~^~A~^^^^^^^^^^~04/01/2011~
-~11311~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2011~
-~11311~^~432~^30.^0^^~1~^~A~^^^^^^^^^^~04/01/2011~
-~11311~^~435~^30.^0^^~4~^~NC~^^^^^^^^^^~04/01/2011~
-~11311~^~601~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2011~
-~11312~^~208~^77.^0^^~4~^~NC~^^^^^^^^^^~03/01/2008~
-~11312~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~09/01/2002~
-~11312~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~09/01/2002~
-~11312~^~268~^322.^0^^~4~^~NC~^^^^^^^^^^~03/01/2008~
-~11312~^~301~^22.^90^1.^~6~^~JA~^^^2^22.^35.^87^19.^24.^~2, 3~^~03/01/2008~
-~11312~^~304~^26.^31^0.^~6~^~JA~^^^2^25.^33.^28^23.^27.^~2, 3~^~03/01/2008~
-~11312~^~305~^82.^45^2.^~6~^~JA~^^^2^80.^111.^41^77.^86.^~2, 3~^~03/01/2008~
-~11312~^~306~^153.^38^5.^~6~^~JA~^^^2^149.^206.^34^141.^163.^~2, 3~^~03/01/2008~
-~11312~^~307~^108.^56^22.^~6~^~JA~^^^2^6.^112.^52^62.^153.^~2, 3~^~03/01/2008~
-~11312~^~318~^2058.^0^^~4~^~NC~^^^^^^^^^^~03/01/2008~
-~11312~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2002~
-~11312~^~320~^103.^0^^~4~^~NC~^^^^^^^^^^~03/01/2008~
-~11312~^~321~^1225.^0^^~4~^~BFSN~^~11313~^^^^^^^^^~03/01/2008~
-~11312~^~322~^20.^0^^~4~^~BFSN~^~11313~^^^^^^^^^~03/01/2008~
-~11312~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~
-~11312~^~334~^0.^0^^~4~^~BFSN~^~11313~^^^^^^^^^~03/01/2008~
-~11312~^~337~^0.^0^^~4~^~BFSN~^~11313~^^^^^^^^^~03/01/2008~
-~11312~^~338~^2352.^0^^~4~^~BFSN~^~11313~^^^^^^^^^~03/01/2008~
-~11312~^~417~^53.^0^^~1~^^^^^^^^^^^~08/01/1984~
-~11312~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~
-~11312~^~432~^53.^0^^~1~^^^^^^^^^^^~03/01/2008~
-~11312~^~435~^53.^0^^~4~^~NC~^^^^^^^^^^~03/01/2008~
-~11312~^~601~^0.^0^^~7~^~Z~^^^^^^^^^^~08/01/1984~
-~11313~^~208~^78.^0^^~4~^~NC~^^^^^^^^^^~11/01/2006~
-~11313~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~09/01/2002~
-~11313~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~09/01/2002~
-~11313~^~268~^326.^0^^~4~^^^^^^^^^^^~11/01/2006~
-~11313~^~301~^24.^47^0.^~1~^^^^5^10.^36.^46^22.^25.^~4~^~09/01/2002~
-~11313~^~304~^22.^48^0.^~1~^^^^5^13.^29.^47^20.^22.^~4~^~09/01/2002~
-~11313~^~305~^77.^47^1.^~1~^^^^5^59.^99.^46^74.^80.^~4~^~09/01/2002~
-~11313~^~306~^110.^48^3.^~1~^^^^5^49.^165.^47^103.^116.^~4~^~09/01/2002~
-~11313~^~307~^72.^47^4.^~1~^^^^5^15.^147.^46^63.^80.^~4~^~09/01/2002~
-~11313~^~318~^2100.^0^^~4~^~NC~^^^^^^^^^^~11/01/2006~
-~11313~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2002~
-~11313~^~320~^105.^0^^~4~^~NC~^^^^^^^^^^~11/01/2006~
-~11313~^~321~^1250.^7^50.^~1~^~A~^^^1^1200.^1300.^1^614.^1885.^~4~^~09/01/2002~
-~11313~^~322~^20.^0^^~4~^~BFSN~^~11304~^^^^^^^^^~09/01/2002~
-~11313~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~
-~11313~^~334~^0.^0^^~4~^~BFSN~^~11304~^^^^^^^^^~09/01/2002~
-~11313~^~337~^0.^0^^~4~^~BFSN~^~11304~^^^^^^^^^~09/01/2002~
-~11313~^~338~^2400.^8^0.^~1~^~A~^^^1^2400.^2400.^1^2400.^2400.^~4~^~09/01/2002~
-~11313~^~417~^59.^18^3.^~1~^^^^^^^^^^^~08/01/1984~
-~11313~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~
-~11313~^~432~^59.^18^3.^~1~^^^^^^^^^^^~11/01/2006~
-~11313~^~435~^59.^0^^~4~^~NC~^^^^^^^^^^~11/01/2006~
-~11313~^~601~^0.^0^^~7~^~Z~^^^^^^^^^^~08/01/1984~
-~11316~^~208~^124.^0^^~4~^~NC~^^^^^^^^^^~06/01/2008~
-~11316~^~268~^519.^0^^~4~^~NC~^^^^^^^^^^~06/01/2008~
-~11316~^~301~^36.^4^2.^~1~^^^^^^^^^^^~08/01/1984~
-~11316~^~304~^56.^4^1.^~1~^^^^^^^^^^^~08/01/1984~
-~11316~^~305~^165.^4^7.^~1~^^^^^^^^^^^~08/01/1984~
-~11316~^~306~^381.^4^8.^~1~^^^^^^^^^^^~08/01/1984~
-~11316~^~307~^20.^4^2.^~1~^^^^^^^^^^^~08/01/1984~
-~11316~^~318~^166.^3^14.^~1~^^^^^^^^^^^~08/01/1984~
-~11316~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~
-~11316~^~417~^144.^8^20.^~1~^^^^^^^^^^^~08/01/1984~
-~11316~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~
-~11316~^~432~^144.^8^20.^~1~^^^^^^^^^^^~12/01/1984~
-~11316~^~435~^144.^0^^~4~^~NC~^^^^^^^^^^~08/01/2008~
-~11316~^~601~^0.^0^^~7~^~Z~^^^^^^^^^^~08/01/1984~
-~11317~^~208~^98.^0^^~4~^~NC~^^^^^^^^^^~07/01/2004~
-~11317~^~268~^411.^0^^~4~^~NC~^^^^^^^^^^~07/01/2004~
-~11317~^~301~^26.^0^^~1~^^^^^^^^^^^~08/01/1984~
-~11317~^~304~^41.^0^^~1~^^^^^^^^^^^~08/01/1984~
-~11317~^~305~^24.^0^^~1~^^^^^^^^^^^~08/01/1984~
-~11317~^~306~^268.^0^^~1~^^^^^^^^^^^~08/01/1984~
-~11317~^~307~^3.^0^^~1~^^^^^^^^^^^~08/01/1984~
-~11317~^~318~^107.^0^^~4~^~NR~^^^^^^^^^^~06/01/2005~
-~11317~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2002~
-~11317~^~320~^5.^0^^~4~^~NR~^^^^^^^^^^~06/01/2005~
-~11317~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~
-~11317~^~417~^36.^0^^~1~^^^^^^^^^^^~08/01/1984~
-~11317~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~
-~11317~^~432~^36.^0^^~1~^^^^^^^^^^^~12/01/1984~
-~11317~^~435~^36.^0^^~4~^~NC~^^^^^^^^^^~06/01/2005~
-~11317~^~601~^0.^0^^~7~^~Z~^^^^^^^^^^~08/01/1984~
-~11318~^~208~^38.^0^^~4~^~NC~^^^^^^^^^^~08/01/1984~
-~11318~^~268~^159.^0^^~4~^^^^^^^^^^^
-~11318~^~301~^23.^164^0.^~1~^^^^^^^^^^^~08/01/1984~
-~11318~^~304~^14.^89^0.^~1~^^^^^^^^^^^~08/01/1984~
-~11318~^~305~^46.^151^0.^~1~^^^^^^^^^^^~08/01/1984~
-~11318~^~306~^100.^88^4.^~1~^^^^^^^^^^^~08/01/1984~
-~11318~^~307~^260.^161^6.^~1~^^^^^^^^^^^~08/01/1984~
-~11318~^~318~^5770.^165^205.^~1~^^^^^^^^^^^~08/01/1984~
-~11318~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2002~
-~11318~^~320~^289.^165^10.^~1~^^^^^^^^^^^~06/01/2002~
-~11318~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~
-~11318~^~417~^18.^0^^~1~^^^^^^^^^^^~08/01/1984~
-~11318~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~
-~11318~^~432~^18.^0^^~1~^^^^^^^^^^^~12/01/1984~
-~11318~^~435~^18.^0^^~4~^~NC~^^^^^^^^^^~01/01/2001~
-~11318~^~601~^0.^0^^~7~^~Z~^^^^^^^^^^~08/01/1984~
-~11322~^~208~^53.^0^^~4~^~NC~^^^^^^^^^^~08/01/1984~
-~11322~^~268~^222.^0^^~4~^^^^^^^^^^^
-~11322~^~301~^27.^34^0.^~1~^^^^^^^^^^^~08/01/1984~
-~11322~^~304~^18.^11^0.^~1~^^^^^^^^^^^~08/01/1984~
-~11322~^~305~^60.^19^1.^~1~^^^^^^^^^^^~08/01/1984~
-~11322~^~306~^194.^10^11.^~1~^^^^^^^^^^^~08/01/1984~
-~11322~^~307~^79.^13^7.^~1~^^^^^^^^^^^~08/01/1984~
-~11322~^~318~^9497.^34^517.^~1~^^^^^^^^^^^~08/01/1984~
-~11322~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2002~
-~11322~^~320~^475.^34^25.^~1~^^^^^^^^^^^~06/01/2002~
-~11322~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~
-~11322~^~417~^36.^0^^~1~^^^^^^^^^^^~08/01/1984~
-~11322~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~
-~11322~^~432~^36.^0^^~1~^^^^^^^^^^^~12/01/1984~
-~11322~^~435~^36.^0^^~4~^~NC~^^^^^^^^^^~01/01/2001~
-~11322~^~601~^0.^0^^~7~^~Z~^^^^^^^^^^~08/01/1984~
-~11323~^~208~^48.^0^^~4~^~NC~^^^^^^^^^^~03/01/2007~
-~11323~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2003~
-~11323~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2003~
-~11323~^~268~^201.^0^^~4~^^^^^^^^^^^~03/01/2007~
-~11323~^~301~^23.^0^^~1~^^^^^^^^^^^~08/01/1984~
-~11323~^~304~^16.^0^^~1~^^^^^^^^^^^~08/01/1984~
-~11323~^~305~^49.^0^^~1~^^^^^^^^^^^~08/01/1984~
-~11323~^~306~^158.^0^^~1~^^^^^^^^^^^~08/01/1984~
-~11323~^~307~^68.^0^^~1~^^^^^^^^^^^~08/01/1984~
-~11323~^~318~^9514.^0^^~4~^~NC~^^^^^^^^^^~03/01/2007~
-~11323~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2002~
-~11323~^~320~^476.^0^^~4~^~NC~^^^^^^^^^^~03/01/2007~
-~11323~^~321~^4725.^0^^~4~^~RA~^^^^^^^^^^~03/01/2007~
-~11323~^~322~^1868.^0^^~4~^~RA~^^^^^^^^^^~03/01/2007~
-~11323~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~
-~11323~^~334~^99.^0^^~4~^~RA~^^^^^^^^^^~03/01/2007~
-~11323~^~337~^0.^0^^~4~^~RA~^^^^^^^^^^~03/01/2007~
-~11323~^~338~^1538.^0^^~4~^~RA~^^^^^^^^^^~03/01/2007~
-~11323~^~417~^26.^0^^~1~^^^^^^^^^^^~08/01/1984~
-~11323~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~
-~11323~^~432~^26.^0^^~1~^^^^^^^^^^^~03/01/2007~
-~11323~^~435~^26.^0^^~4~^~NC~^^^^^^^^^^~03/01/2007~
-~11323~^~601~^0.^0^^~7~^~Z~^^^^^^^^^^~08/01/1984~
-~11324~^~208~^51.^0^^~4~^~NC~^^^^^^^^^^~08/01/1984~
-~11324~^~268~^213.^0^^~4~^^^^^^^^^^^
-~11324~^~301~^17.^4^0.^~1~^^^^^^^^^^^~08/01/1984~
-~11324~^~304~^16.^4^0.^~1~^^^^^^^^^^^~08/01/1984~
-~11324~^~305~^51.^4^1.^~1~^^^^^^^^^^^~08/01/1984~
-~11324~^~306~^96.^4^5.^~1~^^^^^^^^^^^~08/01/1984~
-~11324~^~307~^442.^4^28.^~1~^^^^^^^^^^^~08/01/1984~
-~11324~^~318~^161.^4^7.^~1~^^^^^^^^^^^~08/01/1984~
-~11324~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2002~
-~11324~^~320~^8.^4^0.^~1~^^^^^^^^^^^~06/01/2002~
-~11324~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~
-~11324~^~417~^27.^0^^~4~^^^^^^^^^^^~08/01/1984~
-~11324~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~
-~11324~^~432~^27.^0^^~4~^^^^^^^^^^^~12/01/1984~
-~11324~^~435~^27.^0^^~4~^~NC~^^^^^^^^^^~01/01/2001~
-~11324~^~601~^0.^0^^~7~^~Z~^^^^^^^^^^~08/01/1984~
-~11326~^~208~^70.^0^^~4~^~NC~^^^^^^^^^^~08/01/1984~
-~11326~^~268~^293.^0^^~4~^^^^^^^^^^^
-~11326~^~301~^23.^2^^~1~^^^^^^^^^^^~08/01/1984~
-~11326~^~304~^21.^0^^~4~^^^^^^^^^^^~08/01/1984~
-~11326~^~305~^59.^0^^~4~^^^^^^^^^^^~08/01/1984~
-~11326~^~306~^203.^0^^~4~^^^^^^^^^^^~08/01/1984~
-~11326~^~307~^61.^0^^~4~^^^^^^^^^^^~08/01/1984~
-~11326~^~318~^544.^2^^~1~^^^^^^^^^^^~08/01/1984~
-~11326~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2002~
-~11326~^~320~^27.^2^^~1~^^^^^^^^^^^~06/01/2002~
-~11326~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~
-~11326~^~417~^45.^0^^~4~^^^^^^^^^^^~08/01/1984~
-~11326~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~
-~11326~^~432~^45.^0^^~4~^^^^^^^^^^^~12/01/1984~
-~11326~^~435~^45.^0^^~4~^~NC~^^^^^^^^^^~01/01/2001~
-~11326~^~601~^0.^0^^~7~^~Z~^^^^^^^^^^~08/01/1984~
-~11327~^~208~^45.^0^^~4~^~NC~^^^^^^^^^^~03/01/2007~
-~11327~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2003~
-~11327~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2003~
-~11327~^~268~^188.^0^^~4~^^^^^^^^^^^~03/01/2007~
-~11327~^~301~^14.^0^^~1~^^^^^^^^^^^~08/01/1984~
-~11327~^~304~^13.^0^^~4~^^^^^^^^^^^~08/01/1984~
-~11327~^~305~^34.^0^^~4~^^^^^^^^^^^~08/01/1984~
-~11327~^~306~^117.^0^^~4~^^^^^^^^^^^~08/01/1984~
-~11327~^~307~^37.^0^^~4~^^^^^^^^^^^~08/01/1984~
-~11327~^~318~^1051.^0^^~4~^~NC~^^^^^^^^^^~03/01/2007~
-~11327~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2002~
-~11327~^~320~^53.^0^^~4~^~NC~^^^^^^^^^^~03/01/2007~
-~11327~^~321~^626.^0^^~4~^~RA~^^^^^^^^^^~01/01/2003~
-~11327~^~322~^10.^0^^~4~^~RA~^^^^^^^^^^~01/01/2003~
-~11327~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~
-~11327~^~334~^0.^0^^~4~^~RA~^^^^^^^^^^~01/01/2003~
-~11327~^~337~^0.^0^^~4~^~RA~^^^^^^^^^^~01/01/2003~
-~11327~^~338~^1202.^0^^~4~^~RA~^^^^^^^^^^~01/01/2003~
-~11327~^~417~^20.^0^^~4~^^^^^^^^^^^~08/01/1984~
-~11327~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~
-~11327~^~432~^20.^0^^~4~^^^^^^^^^^^~03/01/2007~
-~11327~^~435~^20.^0^^~4~^~NC~^^^^^^^^^^~03/01/2007~
-~11327~^~601~^0.^0^^~7~^~Z~^^^^^^^^^^~08/01/1984~
-~11329~^~208~^21.^0^^~4~^^^^^^^^^^^~02/01/1995~
-~11329~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~11/01/2002~
-~11329~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~11/01/2002~
-~11329~^~268~^88.^0^^~4~^^^^^^^^^^^~03/01/2007~
-~11329~^~301~^7.^0^^~1~^^^^^^^^^^^~08/01/1984~
-~11329~^~304~^14.^0^^~4~^^^^^^^^^^^~08/01/1984~
-~11329~^~305~^17.^0^^~1~^^^^^^^^^^^~08/01/1984~
-~11329~^~306~^187.^0^^~4~^^^^^^^^^^^~08/01/1984~
-~11329~^~307~^1173.^0^^~4~^^^^^^^^^^^~08/01/1984~
-~11329~^~318~^721.^0^^~4~^~NC~^^^^^^^^^^~03/01/2007~
-~11329~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2002~
-~11329~^~320~^36.^0^^~4~^~NC~^^^^^^^^^^~03/01/2007~
-~11329~^~321~^410.^0^^~4~^~BFSN~^~11977~^^^^^^^^^~11/01/2002~
-~11329~^~322~^14.^0^^~4~^~BFSN~^~11977~^^^^^^^^^~11/01/2002~
-~11329~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~
-~11329~^~334~^30.^0^^~4~^~BFSN~^~11977~^^^^^^^^^~11/01/2002~
-~11329~^~337~^0.^0^^~4~^~BFSN~^~11977~^^^^^^^^^~11/01/2002~
-~11329~^~338~^444.^0^^~4~^~BFSN~^~11977~^^^^^^^^^~11/01/2002~
-~11329~^~417~^10.^0^^~4~^^^^^^^^^^^~08/01/1984~
-~11329~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~
-~11329~^~432~^10.^0^^~4~^^^^^^^^^^^~03/01/2007~
-~11329~^~435~^10.^0^^~4~^~NC~^^^^^^^^^^~03/01/2007~
-~11329~^~601~^0.^0^^~7~^~Z~^^^^^^^^^^~08/01/1984~
-~11333~^~208~^20.^0^^~4~^~NC~^^^^^^^^^^~03/01/2006~
-~11333~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~10/01/2002~
-~11333~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~10/01/2002~
-~11333~^~268~^84.^0^^~4~^~NC~^^^^^^^^^^~03/01/2006~
-~11333~^~301~^10.^64^0.^~6~^~JA~^^^7^6.^15.^34^9.^10.^~2, 3~^~03/01/2003~
-~11333~^~304~^10.^65^0.^~6~^~JA~^^^7^3.^14.^35^9.^10.^~2, 3~^~03/01/2003~
-~11333~^~305~^20.^64^0.^~6~^~JA~^^^7^7.^25.^25^18.^20.^~2, 3~^~03/01/2003~
-~11333~^~306~^175.^64^4.^~6~^~JA~^^^7^63.^262.^35^166.^183.^~2, 3~^~03/01/2003~
-~11333~^~307~^3.^62^0.^~6~^~JA~^^^7^0.^27.^8^2.^3.^~2, 3~^~03/01/2003~
-~11333~^~318~^370.^0^^~4~^~NC~^^^^^^^^^^~03/01/2006~
-~11333~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2002~
-~11333~^~320~^18.^0^^~4~^~NC~^^^^^^^^^^~03/01/2006~
-~11333~^~321~^208.^73^0.^~6~^~JA~^^^3^0.^276.^3^205.^210.^~2, 3~^~03/01/2003~
-~11333~^~322~^21.^61^0.^~1~^~A~^^^2^0.^34.^3^19.^21.^~1, 2, 3~^~03/01/2003~
-~11333~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~
-~11333~^~334~^7.^7^6.^~1~^~A~^^^2^0.^46.^3^-14.^27.^~1, 2, 3~^~03/01/2003~
-~11333~^~337~^0.^4^0.^~1~^~A~^^^1^0.^0.^^^^~1, 2, 3~^~03/01/2003~
-~11333~^~338~^341.^0^^~4~^~T~^^^^^^^^^^~10/01/2002~
-~11333~^~417~^10.^1^^~1~^~A~^^^^^^^^^^~03/01/2006~
-~11333~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~
-~11333~^~432~^10.^1^^~1~^~A~^^^^^^^^^^~03/01/2006~
-~11333~^~435~^10.^0^^~4~^~NC~^^^^^^^^^^~03/01/2006~
-~11333~^~601~^0.^0^^~7~^~Z~^^^^^^^^^^~08/01/1984~
-~11333~^~636~^9.^1^^~1~^^^^^^^^^^^~03/01/2006~
-~11334~^~208~^28.^0^^~4~^~NC~^^^^^^^^^^~03/01/2007~
-~11334~^~262~^0.^0^^~4~^~BFSN~^~11333~^^^^^^^^^~10/01/2002~
-~11334~^~263~^0.^0^^~4~^~BFSN~^~11333~^^^^^^^^^~10/01/2002~
-~11334~^~268~^117.^0^^~4~^^^^^^^^^^^~03/01/2007~
-~11334~^~301~^9.^0^^~1~^^^^^^^^^^^~08/01/1984~
-~11334~^~304~^10.^0^^~1~^^^^^^^^^^^~08/01/1984~
-~11334~^~305~^18.^0^^~1~^^^^^^^^^^^~08/01/1984~
-~11334~^~306~^166.^0^^~1~^^^^^^^^^^^~08/01/1984~
-~11334~^~307~^2.^0^^~1~^^^^^^^^^^^~08/01/1984~
-~11334~^~318~^468.^0^^~4~^~NC~^^^^^^^^^^~07/01/2008~
-~11334~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2002~
-~11334~^~320~^23.^0^^~4~^~NC~^^^^^^^^^^~07/01/2008~
-~11334~^~321~^264.^0^^~4~^~BFSY~^~11333~^^^^^^^^^~03/01/2007~
-~11334~^~322~^26.^0^^~4~^~BFSY~^~11333~^^^^^^^^^~03/01/2007~
-~11334~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~
-~11334~^~334~^8.^0^^~4~^~BFSY~^~11333~^^^^^^^^^~03/01/2007~
-~11334~^~337~^0.^0^^~4~^~BFSY~^~11333~^^^^^^^^^~03/01/2007~
-~11334~^~338~^431.^0^^~4~^~BFSY~^~11333~^^^^^^^^^~03/01/2007~
-~11334~^~417~^16.^0^^~1~^^^^^^^^^^^~08/01/1984~
-~11334~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~
-~11334~^~432~^16.^0^^~1~^^^^^^^^^^^~03/01/2007~
-~11334~^~435~^16.^0^^~4~^~NC~^^^^^^^^^^~07/01/2008~
-~11334~^~601~^0.^0^^~7~^~Z~^^^^^^^^^^~08/01/1984~
-~11334~^~636~^9.^0^^~1~^^^^^^^^^^^~08/01/1984~
-~11335~^~208~^18.^0^^~4~^~NC~^^^^^^^^^^~08/01/1984~
-~11335~^~268~^75.^0^^~4~^^^^^^^^^^^
-~11335~^~301~^41.^2^^~1~^^^^^^^^^^^~08/01/1984~
-~11335~^~304~^11.^2^^~1~^^^^^^^^^^^~08/01/1984~
-~11335~^~305~^20.^2^^~1~^^^^^^^^^^^~08/01/1984~
-~11335~^~306~^146.^2^^~1~^^^^^^^^^^^~08/01/1984~
-~11335~^~307~^1369.^2^^~1~^^^^^^^^^^^~08/01/1984~
-~11335~^~318~^155.^2^^~1~^^^^^^^^^^^~08/01/1984~
-~11335~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2002~
-~11335~^~320~^8.^2^^~1~^^^^^^^^^^^~06/01/2002~
-~11335~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~
-~11335~^~417~^16.^0^^~4~^^^^^^^^^^^~08/01/1984~
-~11335~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~
-~11335~^~432~^16.^0^^~4~^^^^^^^^^^^~12/01/1984~
-~11335~^~435~^16.^0^^~4~^~NC~^^^^^^^^^^~01/01/2001~
-~11335~^~601~^0.^0^^~7~^~Z~^^^^^^^^^^~08/01/1984~
-~11337~^~208~^20.^0^^~4~^~NC~^^^^^^^^^^~08/01/1984~
-~11337~^~268~^84.^0^^~4~^^^^^^^^^^^
-~11337~^~301~^9.^7^0.^~1~^^^^^^^^^^^~08/01/1984~
-~11337~^~304~^8.^1^^~1~^^^^^^^^^^^~08/01/1984~
-~11337~^~305~^17.^1^^~1~^^^^^^^^^^^~08/01/1984~
-~11337~^~306~^91.^1^^~1~^^^^^^^^^^^~08/01/1984~
-~11337~^~307~^5.^1^^~1~^^^^^^^^^^^~08/01/1984~
-~11337~^~318~^367.^7^175.^~1~^^^^^^^^^^^~08/01/1984~
-~11337~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2002~
-~11337~^~320~^18.^7^8.^~1~^^^^^^^^^^^~06/01/2002~
-~11337~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~
-~11337~^~417~^14.^0^^~1~^^^^^^^^^^^~08/01/1984~
-~11337~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~
-~11337~^~432~^14.^0^^~1~^^^^^^^^^^^~12/01/1984~
-~11337~^~435~^14.^0^^~4~^~NC~^^^^^^^^^^~01/01/2001~
-~11337~^~601~^0.^0^^~7~^~Z~^^^^^^^^^^~08/01/1984~
-~11338~^~208~^18.^0^^~4~^~NC~^^^^^^^^^^~08/01/1984~
-~11338~^~268~^75.^0^^~4~^^^^^^^^^^^
-~11338~^~301~^8.^0^^~1~^^^^^^^^^^^~08/01/1984~
-~11338~^~304~^7.^0^^~1~^^^^^^^^^^^~08/01/1984~
-~11338~^~305~^13.^0^^~1~^^^^^^^^^^^~08/01/1984~
-~11338~^~306~^72.^0^^~1~^^^^^^^^^^^~08/01/1984~
-~11338~^~307~^4.^0^^~1~^^^^^^^^^^^~08/01/1984~
-~11338~^~318~^290.^0^^~1~^^^^^^^^^^^~08/01/1984~
-~11338~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2002~
-~11338~^~320~^15.^0^^~1~^^^^^^^^^^^~06/01/2002~
-~11338~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~
-~11338~^~417~^10.^0^^~1~^^^^^^^^^^^~08/01/1984~
-~11338~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~
-~11338~^~432~^10.^0^^~1~^^^^^^^^^^^~12/01/1984~
-~11338~^~435~^10.^0^^~4~^~NC~^^^^^^^^^^~01/01/2001~
-~11338~^~601~^0.^0^^~7~^~Z~^^^^^^^^^^~08/01/1984~
-~11339~^~208~^116.^0^^~4~^~NC~^^^^^^^^^^~01/01/2017~
-~11339~^~268~^486.^0^^~4~^~NC~^^^^^^^^^^~01/01/2017~
-~11339~^~301~^8.^4^1.^~1~^~A~^^^1^4.^11.^3^3.^12.^~2, 3~^~10/01/2002~
-~11339~^~304~^8.^4^1.^~1~^~A~^^^1^5.^12.^3^4.^12.^~2, 3~^~10/01/2002~
-~11339~^~305~^15.^4^2.^~1~^~A~^^^1^10.^20.^3^8.^21.^~2, 3~^~10/01/2002~
-~11339~^~306~^134.^4^9.^~1~^~A~^^^1^111.^157.^3^103.^164.^~2, 3~^~10/01/2002~
-~11339~^~307~^17.^4^1.^~1~^~A~^^^1^12.^21.^3^10.^22.^~2, 3~^~10/01/2002~
-~11339~^~318~^273.^0^^~1~^~AS~^^^^^^^^^^~03/01/2006~
-~11339~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~10/01/2002~
-~11339~^~320~^14.^0^^~1~^~AS~^^^^^^^^^^~03/01/2006~
-~11339~^~321~^135.^4^12.^~1~^~A~^^^1^113.^166.^3^95.^173.^~2, 3~^~04/01/2003~
-~11339~^~322~^42.^4^4.^~1~^~A~^^^1^30.^51.^3^27.^56.^~2, 3~^~04/01/2003~
-~11339~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~
-~11339~^~334~^17.^4^16.^~1~^~A~^^^1^0.^66.^3^-36.^69.^~1, 2, 3~^~04/01/2003~
-~11339~^~337~^0.^4^0.^~1~^~A~^^^1^0.^0.^^^^~1, 2, 3~^~04/01/2003~
-~11339~^~417~^2.^4^0.^~1~^~A~^^^1^2.^2.^^^^~1, 2, 3~^~10/01/2002~
-~11339~^~432~^2.^4^0.^~1~^~A~^^^1^2.^2.^^^^^~03/01/2006~
-~11339~^~601~^0.^0^^~7~^~Z~^^^^^^^^^^~11/01/2002~
-~11344~^~208~^136.^0^^~4~^~NC~^^^^^^^^^^~03/01/2007~
-~11344~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2003~
-~11344~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2003~
-~11344~^~268~^569.^0^^~4~^^^^^^^^^^^~03/01/2007~
-~11344~^~301~^42.^0^^~1~^^^^^^^^^^^~08/01/1984~
-~11344~^~304~^68.^0^^~4~^^^^^^^^^^^~08/01/1984~
-~11344~^~305~^127.^0^^~1~^^^^^^^^^^^~08/01/1984~
-~11344~^~306~^552.^0^^~1~^^^^^^^^^^^~08/01/1984~
-~11344~^~307~^5.^0^^~1~^^^^^^^^^^^~08/01/1984~
-~11344~^~318~^67.^0^^~4~^~NC~^^^^^^^^^^~03/01/2007~
-~11344~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2002~
-~11344~^~320~^3.^0^^~4~^~NC~^^^^^^^^^^~03/01/2007~
-~11344~^~321~^40.^0^^~4~^~T~^^^^^^^^^^~01/01/2003~
-~11344~^~322~^0.^0^^~4~^~T~^^^^^^^^^^~01/01/2003~
-~11344~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~
-~11344~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2003~
-~11344~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2003~
-~11344~^~338~^190.^0^^~4~^~T~^^^^^^^^^^~01/01/2003~
-~11344~^~417~^173.^0^^~4~^^^^^^^^^^^~08/01/1984~
-~11344~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~
-~11344~^~432~^173.^0^^~4~^^^^^^^^^^^~03/01/2007~
-~11344~^~435~^173.^0^^~4~^~NC~^^^^^^^^^^~03/01/2007~
-~11344~^~601~^0.^0^^~7~^~Z~^^^^^^^^^^~08/01/1984~
-~11345~^~208~^111.^0^^~4~^~NC~^^^^^^^^^^~03/01/2007~
-~11345~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2003~
-~11345~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2003~
-~11345~^~268~^464.^0^^~4~^^^^^^^^^^^~03/01/2007~
-~11345~^~301~^41.^0^^~1~^^^^^^^^^^^~08/01/1984~
-~11345~^~304~^40.^0^^~1~^^^^^^^^^^^~09/01/1986~
-~11345~^~305~^118.^0^^~1~^^^^^^^^^^^~08/01/1984~
-~11345~^~306~^456.^0^^~1~^^^^^^^^^^^~09/01/1986~
-~11345~^~307~^5.^0^^~1~^^^^^^^^^^^~08/01/1984~
-~11345~^~318~^50.^0^^~4~^~NC~^^^^^^^^^^~03/01/2007~
-~11345~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2002~
-~11345~^~320~^2.^0^^~4~^~NC~^^^^^^^^^^~03/01/2007~
-~11345~^~321~^30.^0^^~4~^~BFSY~^~11344~^^^^^^^^^~03/01/2007~
-~11345~^~322~^0.^0^^~4~^~BFSY~^~11344~^^^^^^^^^~03/01/2007~
-~11345~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~
-~11345~^~334~^0.^0^^~4~^~BFSY~^~11344~^^^^^^^^^~03/01/2007~
-~11345~^~337~^0.^0^^~4~^~BFSY~^~11344~^^^^^^^^^~03/01/2007~
-~11345~^~338~^141.^0^^~4~^~BFSY~^~11344~^^^^^^^^^~03/01/2007~
-~11345~^~417~^100.^0^^~4~^^^^^^^^^^^~08/01/1984~
-~11345~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~
-~11345~^~432~^100.^0^^~4~^^^^^^^^^^^~03/01/2007~
-~11345~^~435~^100.^0^^~4~^~NC~^^^^^^^^^^~03/01/2007~
-~11345~^~601~^0.^0^^~7~^~Z~^^^^^^^^^^~08/01/1984~
-~11349~^~208~^112.^0^^~4~^~NC~^^^^^^^^^^~03/01/2007~
-~11349~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2003~
-~11349~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2003~
-~11349~^~268~^469.^0^^~4~^^^^^^^^^^^~03/01/2007~
-~11349~^~301~^16.^1^^~1~^^^^^^^^^^^~08/01/1984~
-~11349~^~304~^24.^1^^~1~^^^^^^^^^^^~08/01/1984~
-~11349~^~305~^39.^1^^~1~^^^^^^^^^^^~08/01/1984~
-~11349~^~306~^183.^2^^~1~^^^^^^^^^^^~08/01/1984~
-~11349~^~307~^12.^2^^~1~^^^^^^^^^^^~08/01/1984~
-~11349~^~318~^66.^0^^~4~^~NC~^^^^^^^^^^~03/01/2007~
-~11349~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2002~
-~11349~^~320~^3.^0^^~4~^~NC~^^^^^^^^^^~03/01/2007~
-~11349~^~321~^31.^0^^~4~^~BFSN~^~11519~^^^^^^^^^~01/01/2003~
-~11349~^~322~^0.^0^^~4~^~BFSN~^~11519~^^^^^^^^^~01/01/2003~
-~11349~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~
-~11349~^~334~^17.^0^^~4~^~BFSN~^~11519~^^^^^^^^^~01/01/2003~
-~11349~^~337~^0.^0^^~4~^~BFSN~^~11519~^^^^^^^^^~01/01/2003~
-~11349~^~338~^0.^0^^~4~^~BFSN~^~11519~^^^^^^^^^~01/01/2003~
-~11349~^~417~^21.^0^^~4~^^^^^^^^^^^~08/01/1984~
-~11349~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~
-~11349~^~432~^21.^0^^~4~^^^^^^^^^^^~03/01/2007~
-~11349~^~435~^21.^0^^~4~^~NC~^^^^^^^^^^~03/01/2007~
-~11349~^~601~^0.^0^^~7~^~Z~^^^^^^^^^^~08/01/1984~
-~11350~^~208~^23.^0^^~4~^~NC~^^^^^^^^^^~08/01/1984~
-~11350~^~268~^96.^0^^~4~^^^^^^^^^^^
-~11350~^~301~^53.^0^^~1~^^^^^^^^^^^~08/01/1984~
-~11350~^~304~^18.^0^^~4~^^^^^^^^^^^~08/01/1984~
-~11350~^~305~^44.^0^^~1~^^^^^^^^^^^~08/01/1984~
-~11350~^~306~^242.^0^^~4~^^^^^^^^^^^~08/01/1984~
-~11350~^~307~^23.^0^^~4~^^^^^^^^^^^~08/01/1984~
-~11350~^~318~^8700.^0^^~1~^^^^^^^^^^^~08/01/1984~
-~11350~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2002~
-~11350~^~320~^435.^0^^~1~^^^^^^^^^^^~06/01/2002~
-~11350~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~
-~11350~^~417~^16.^0^^~4~^^^^^^^^^^^~08/01/1984~
-~11350~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~
-~11350~^~432~^16.^0^^~4~^^^^^^^^^^^~12/01/1984~
-~11350~^~435~^16.^0^^~4~^~NC~^^^^^^^^^^~01/01/2001~
-~11350~^~601~^0.^0^^~7~^~Z~^^^^^^^^^^~08/01/1984~
-~11351~^~208~^20.^0^^~4~^~NC~^^^^^^^^^^~02/01/2007~
-~11351~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2003~
-~11351~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2003~
-~11351~^~268~^84.^0^^~4~^^^^^^^^^^^~02/01/2007~
-~11351~^~301~^53.^0^^~1~^^^^^^^^^^^~08/01/1984~
-~11351~^~304~^14.^0^^~4~^^^^^^^^^^^~08/01/1984~
-~11351~^~305~^33.^0^^~1~^^^^^^^^^^^~08/01/1984~
-~11351~^~306~^184.^0^^~4~^^^^^^^^^^^~08/01/1984~
-~11351~^~307~^18.^0^^~4~^^^^^^^^^^^~08/01/1984~
-~11351~^~318~^8700.^0^^~1~^^^^^^^^^^^~02/01/2007~
-~11351~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2002~
-~11351~^~320~^435.^0^^~4~^~NC~^^^^^^^^^^~02/01/2007~
-~11351~^~321~^5220.^0^^~4~^~O~^^^^^^^^^^~01/01/2003~
-~11351~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2003~
-~11351~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~
-~11351~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2003~
-~11351~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2003~
-~11351~^~338~^1747.^0^^~4~^~O~^^^^^^^^^^~01/01/2003~
-~11351~^~417~^9.^0^^~4~^^^^^^^^^^^~08/01/1984~
-~11351~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~
-~11351~^~432~^9.^0^^~4~^^^^^^^^^^^~02/01/2007~
-~11351~^~435~^9.^0^^~4~^~NC~^^^^^^^^^^~02/01/2007~
-~11351~^~601~^0.^0^^~7~^~Z~^^^^^^^^^^~08/01/1984~
-~11352~^~208~^77.^0^^~4~^~NC~^^^^^^^^^^~08/01/2010~
-~11352~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2007~
-~11352~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2007~
-~11352~^~268~^322.^0^^~4~^~NC~^^^^^^^^^^~09/01/2015~
-~11352~^~301~^12.^11^1.^~1~^~A~^^^2^6.^16.^2^5.^19.^~2~^~05/01/2002~
-~11352~^~304~^23.^11^0.^~1~^~A~^^^2^19.^25.^2^20.^25.^~2~^~05/01/2002~
-~11352~^~305~^57.^11^1.^~1~^~A~^^^2^48.^75.^1^46.^66.^~2~^~05/01/2002~
-~11352~^~306~^425.^11^14.^~1~^~A~^^^2^368.^506.^2^364.^485.^~2~^~09/01/2015~
-~11352~^~307~^6.^73^0.^~1~^^^^^^^^^^^~08/01/2010~
-~11352~^~318~^2.^0^^~4~^~NC~^^^^^^^^^^~08/01/2010~
-~11352~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2002~
-~11352~^~320~^0.^0^^~4~^~NC~^^^^^^^^^^~08/01/2010~
-~11352~^~321~^1.^11^0.^~11~^~JO~^^^2^0.^6.^2^-1.^3.^~1, 2~^~05/01/2002~
-~11352~^~322~^0.^11^0.^~11~^~JO~^^^2^0.^0.^^^^~2~^~05/01/2002~
-~11352~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~
-~11352~^~334~^0.^11^0.^~11~^~JO~^^^2^0.^0.^^^^~2~^~05/01/2002~
-~11352~^~337~^0.^11^0.^~11~^~JO~^^^2^0.^0.^^^^~2~^~05/01/2002~
-~11352~^~338~^9.^10^2.^~1~^~A~^^^2^1.^29.^2^0.^17.^~1, 2~^~09/01/2015~
-~11352~^~417~^15.^11^3.^~1~^~A~^^^2^9.^34.^2^0.^29.^~1, 2~^~09/01/2015~
-~11352~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2007~
-~11352~^~432~^15.^11^3.^~1~^~A~^^^2^9.^34.^2^0.^29.^^~09/01/2015~
-~11352~^~435~^15.^0^^~4~^~NC~^^^^^^^^^^~09/01/2015~
-~11352~^~601~^0.^0^^~7~^~Z~^^^^^^^^^^~07/01/2001~
-~11353~^~208~^79.^0^^~4~^~NC~^^^^^^^^^^~08/01/2010~
-~11353~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2006~
-~11353~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2006~
-~11353~^~268~^332.^0^^~4~^~NC~^^^^^^^^^^~08/01/2010~
-~11353~^~301~^13.^4^0.^~1~^~A~^^^2^11.^15.^2^9.^16.^~2, 3~^~04/01/2002~
-~11353~^~304~^23.^4^1.^~1~^~A~^^^2^21.^25.^2^18.^28.^~2, 3~^~04/01/2002~
-~11353~^~305~^55.^4^3.^~1~^~A~^^^2^48.^60.^1^32.^76.^~2, 3~^~04/01/2002~
-~11353~^~306~^417.^4^21.^~1~^~A~^^^2^368.^458.^2^315.^518.^~2, 3~^~04/01/2002~
-~11353~^~307~^5.^2^^~1~^~A~^^^1^4.^5.^1^^^^~04/01/2002~
-~11353~^~318~^1.^0^^~4~^~NC~^^^^^^^^^^~08/01/2010~
-~11353~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2002~
-~11353~^~320~^0.^0^^~4~^~NC~^^^^^^^^^^~08/01/2010~
-~11353~^~321~^0.^4^0.^~11~^~JO~^^^2^0.^1.^1^-4.^5.^~1, 2, 3~^~05/01/2002~
-~11353~^~322~^0.^4^0.^~11~^~JO~^^^2^0.^0.^^^^~2, 3~^~05/01/2002~
-~11353~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~
-~11353~^~334~^0.^4^0.^~11~^~JO~^^^2^0.^0.^^^^~2, 3~^~05/01/2002~
-~11353~^~337~^0.^4^0.^~11~^~JO~^^^2^0.^0.^^^^~2, 3~^~05/01/2002~
-~11353~^~338~^5.^4^2.^~11~^~JO~^^^2^1.^12.^1^-20.^30.^~1, 2, 3~^~08/01/2010~
-~11353~^~417~^14.^4^0.^~1~^~A~^^^2^9.^18.^1^7.^19.^~1, 2, 3~^~04/01/2002~
-~11353~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2006~
-~11353~^~432~^14.^4^0.^~1~^~A~^^^2^9.^18.^1^7.^19.^^~08/01/2010~
-~11353~^~435~^14.^0^^~4~^~NC~^^^^^^^^^^~08/01/2010~
-~11353~^~601~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2002~
-~11353~^~636~^5.^0^^~1~^^^^^^^^^^^~04/01/2002~
-~11354~^~208~^69.^0^^~4~^~NC~^^^^^^^^^^~08/01/2010~
-~11354~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2006~
-~11354~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2006~
-~11354~^~268~^288.^0^^~4~^~NC~^^^^^^^^^^~08/01/2010~
-~11354~^~301~^9.^3^0.^~1~^~A~^^^2^6.^11.^1^7.^10.^~2, 3~^~05/01/2002~
-~11354~^~304~^21.^3^0.^~1~^~A~^^^2^20.^22.^1^12.^29.^~2, 3~^~05/01/2002~
-~11354~^~305~^62.^3^0.^~1~^~A~^^^2^60.^65.^1^55.^68.^~2, 3~^~05/01/2002~
-~11354~^~306~^407.^3^9.^~1~^~A~^^^2^379.^433.^1^283.^529.^~2, 3~^~05/01/2002~
-~11354~^~307~^16.^3^1.^~1~^~A~^^^2^5.^23.^1^2.^30.^~2, 3~^~08/01/2010~
-~11354~^~318~^8.^0^^~4~^~NC~^^^^^^^^^^~08/01/2010~
-~11354~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2002~
-~11354~^~320~^0.^0^^~4~^~NC~^^^^^^^^^^~08/01/2010~
-~11354~^~321~^5.^3^0.^~11~^~JO~^^^2^1.^6.^^^^~1, 2, 3~^~05/01/2002~
-~11354~^~322~^0.^3^0.^~11~^~JO~^^^2^0.^0.^^^^~2, 3~^~05/01/2002~
-~11354~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~
-~11354~^~334~^0.^3^0.^~11~^~JO~^^^2^0.^0.^^^^~2, 3~^~05/01/2002~
-~11354~^~337~^0.^3^0.^~11~^~JO~^^^2^0.^0.^^^^~2, 3~^~05/01/2002~
-~11354~^~338~^13.^2^^~11~^~JO~^^^2^4.^22.^^^^^~08/01/2010~
-~11354~^~417~^18.^3^1.^~1~^~A~^^^2^9.^34.^1^1.^34.^~1, 2, 3~^~05/01/2002~
-~11354~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2006~
-~11354~^~432~^18.^3^1.^~1~^~A~^^^2^9.^34.^1^1.^34.^^~08/01/2010~
-~11354~^~435~^18.^0^^~4~^~NC~^^^^^^^^^^~08/01/2010~
-~11354~^~601~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2002~
-~11355~^~208~^70.^0^^~4~^~NC~^^^^^^^^^^~08/01/2010~
-~11355~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2006~
-~11355~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2006~
-~11355~^~268~^295.^0^^~4~^~NC~^^^^^^^^^^~08/01/2010~
-~11355~^~301~^10.^4^1.^~1~^~A~^^^2^6.^16.^1^-4.^23.^~2, 3~^~05/01/2002~
-~11355~^~304~^22.^4^0.^~1~^~A~^^^2^19.^25.^1^15.^28.^~2, 3~^~05/01/2002~
-~11355~^~305~^61.^4^4.^~1~^~A~^^^2^54.^75.^1^20.^101.^~2, 3~^~05/01/2002~
-~11355~^~306~^455.^4^18.^~1~^~A~^^^2^373.^506.^1^243.^666.^~2, 3~^~05/01/2002~
-~11355~^~307~^18.^4^6.^~1~^~A~^^^2^4.^45.^1^-60.^97.^~1, 2, 3~^~08/01/2010~
-~11355~^~318~^7.^0^^~4~^~NC~^^^^^^^^^^~08/01/2010~
-~11355~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2002~
-~11355~^~320~^0.^0^^~4~^~NC~^^^^^^^^^^~08/01/2010~
-~11355~^~321~^4.^4^0.^~11~^~JO~^^^2^1.^6.^1^2.^5.^~1, 2, 3~^~05/01/2002~
-~11355~^~322~^0.^4^0.^~11~^~JO~^^^2^0.^0.^^^^~2, 3~^~05/01/2002~
-~11355~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~
-~11355~^~334~^0.^4^0.^~11~^~JO~^^^2^0.^0.^^^^~2, 3~^~05/01/2002~
-~11355~^~337~^0.^4^0.^~11~^~JO~^^^2^0.^0.^^^^~2, 3~^~05/01/2002~
-~11355~^~338~^21.^4^1.^~1~^~A~^^^2^12.^29.^2^15.^25.^~2, 3~^~08/01/2010~
-~11355~^~417~^18.^4^1.^~1~^~A~^^^2^9.^27.^2^8.^27.^~1, 2, 3~^~05/01/2002~
-~11355~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2006~
-~11355~^~432~^18.^4^1.^~1~^~A~^^^2^9.^27.^2^8.^27.^^~08/01/2010~
-~11355~^~435~^18.^0^^~4~^~NC~^^^^^^^^^^~08/01/2010~
-~11355~^~601~^0.^0^^~7~^~Z~^^^^^^^^^^~08/01/2010~
-~11355~^~636~^5.^0^^~1~^^^^^^^^^^^~08/01/2010~
-~11356~^~208~^95.^0^^~4~^~NC~^^^^^^^^^^~01/01/2017~
-~11356~^~262~^0.^0^^~4~^~BFFN~^~11674~^^^^^^^^^~08/01/2010~
-~11356~^~263~^0.^0^^~4~^~BFFN~^~11674~^^^^^^^^^~08/01/2010~
-~11356~^~268~^397.^0^^~4~^~NC~^^^^^^^^^^~01/01/2017~
-~11356~^~301~^18.^8^1.^~1~^~A~^^^2^14.^30.^3^12.^22.^~2, 3~^~04/01/2002~
-~11356~^~304~^30.^8^0.^~1~^~A~^^^2^28.^33.^6^28.^31.^~2, 3~^~04/01/2002~
-~11356~^~305~^71.^8^1.^~1~^~A~^^^2^63.^77.^4^65.^75.^~2, 3~^~04/01/2002~
-~11356~^~306~^550.^8^21.^~1~^~A~^^^2^422.^616.^4^490.^608.^~2, 3~^~04/01/2002~
-~11356~^~307~^14.^8^4.^~1~^~A~^^^2^4.^46.^3^0.^26.^~1, 2, 3~^~03/01/2006~
-~11356~^~318~^10.^1^^~1~^~A~^^^^^^^^^^~09/01/2015~
-~11356~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~07/01/2002~
-~11356~^~320~^1.^0^^~4~^~NC~^^^^^^^^^^~08/01/2010~
-~11356~^~321~^6.^9^0.^~11~^~JO~^^^2^6.^6.^3^6.^6.^~1, 2, 3~^~08/01/2010~
-~11356~^~322~^0.^9^0.^~11~^~JO~^^^2^0.^0.^^^^~1, 2, 3~^~04/01/2002~
-~11356~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~
-~11356~^~334~^0.^9^0.^~11~^~JO~^^^2^0.^0.^^^^~1, 2, 3~^~04/01/2002~
-~11356~^~337~^0.^9^0.^~11~^~JO~^^^2^0.^0.^^^^~1, 2, 3~^~04/01/2002~
-~11356~^~338~^19.^6^2.^~11~^~JO~^^^2^13.^26.^4^12.^24.^~2, 3~^~08/01/2010~
-~11356~^~417~^26.^8^3.^~1~^~A~^^^2^9.^58.^3^13.^38.^~1, 2, 3~^~03/01/2006~
-~11356~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~07/01/2002~
-~11356~^~432~^26.^8^3.^~1~^~A~^^^2^9.^58.^3^13.^38.^^~08/01/2010~
-~11356~^~435~^26.^0^^~4~^~NC~^^^^^^^^^^~08/01/2010~
-~11356~^~601~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2002~
-~11357~^~208~^92.^0^^~4~^~NC~^^^^^^^^^^~01/01/2017~
-~11357~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2006~
-~11357~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2006~
-~11357~^~268~^385.^0^^~4~^~NC~^^^^^^^^^^~01/01/2017~
-~11357~^~301~^10.^5^1.^~1~^~A~^^^2^5.^19.^1^-4.^24.^~2, 3~^~05/01/2002~
-~11357~^~304~^27.^5^1.^~1~^~A~^^^2^25.^32.^2^22.^31.^~2, 3~^~05/01/2002~
-~11357~^~305~^75.^5^4.^~1~^~A~^^^2^67.^89.^2^58.^90.^~2, 3~^~05/01/2002~
-~11357~^~306~^544.^5^34.^~1~^~A~^^^2^453.^678.^3^428.^659.^~2, 3~^~05/01/2002~
-~11357~^~307~^7.^5^0.^~1~^~A~^^^2^4.^13.^2^4.^10.^~1, 2, 3~^~05/01/2002~
-~11357~^~318~^10.^0^^~4~^~NC~^^^^^^^^^^~08/01/2010~
-~11357~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~07/01/2002~
-~11357~^~320~^1.^0^^~4~^~NC~^^^^^^^^^^~08/01/2010~
-~11357~^~321~^6.^5^0.^~11~^~JO~^^^2^6.^6.^^^^~1, 2, 3~^~05/01/2002~
-~11357~^~322~^0.^5^0.^~11~^~JO~^^^2^0.^0.^^^^~2, 3~^~05/01/2002~
-~11357~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~
-~11357~^~334~^0.^5^0.^~11~^~JO~^^^2^0.^0.^^^^~2, 3~^~05/01/2002~
-~11357~^~337~^0.^5^0.^~11~^~JO~^^^2^0.^0.^^^^~2, 3~^~05/01/2002~
-~11357~^~338~^30.^5^5.^~11~^~JO~^^^2^12.^58.^3^11.^48.^~2, 3~^~08/01/2010~
-~11357~^~417~^38.^5^4.^~1~^~A~^^^2^9.^72.^2^16.^58.^~1, 2, 3~^~05/01/2002~
-~11357~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2002~
-~11357~^~432~^38.^5^4.^~1~^~A~^^^2^9.^72.^2^16.^58.^^~08/01/2010~
-~11357~^~435~^38.^0^^~4~^~NC~^^^^^^^^^^~08/01/2010~
-~11357~^~601~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2002~
-~11358~^~208~^87.^0^^~4~^~NC~^^^^^^^^^^~01/01/2017~
-~11358~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2006~
-~11358~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2006~
-~11358~^~268~^362.^0^^~4~^~NC~^^^^^^^^^^~01/01/2017~
-~11358~^~301~^9.^8^0.^~1~^~A~^^^2^5.^14.^6^8.^10.^~2, 3~^~04/01/2002~
-~11358~^~304~^28.^8^0.^~1~^~A~^^^2^25.^32.^4^26.^29.^~2, 3~^~04/01/2002~
-~11358~^~305~^72.^8^4.^~1~^~A~^^^2^57.^99.^4^59.^84.^~2, 3~^~04/01/2002~
-~11358~^~306~^545.^8^12.^~1~^~A~^^^2^481.^590.^6^513.^576.^~2, 3~^~04/01/2002~
-~11358~^~307~^12.^8^4.^~1~^~A~^^^2^4.^44.^3^-1.^24.^~1, 2, 3~^~03/01/2006~
-~11358~^~318~^10.^0^^~4~^~NC~^^^^^^^^^^~08/01/2010~
-~11358~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~07/01/2002~
-~11358~^~320~^1.^0^^~4~^~NC~^^^^^^^^^^~08/01/2010~
-~11358~^~321~^6.^7^0.^~11~^~JO~^^^2^6.^6.^2^6.^6.^~1, 2, 3~^~08/01/2010~
-~11358~^~322~^0.^7^0.^~11~^~JO~^^^2^0.^0.^^^^~1, 2, 3~^~04/01/2002~
-~11358~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~
-~11358~^~334~^0.^7^0.^~11~^~JO~^^^2^0.^0.^^^^~1, 2, 3~^~04/01/2002~
-~11358~^~337~^0.^7^0.^~11~^~JO~^^^2^0.^0.^^^^~1, 2, 3~^~04/01/2002~
-~11358~^~338~^27.^5^4.^~11~^~JO~^^^2^8.^42.^3^13.^40.^~2, 3~^~08/01/2010~
-~11358~^~417~^27.^8^3.^~1~^~A~^^^2^9.^59.^3^15.^38.^~1, 2, 3~^~04/01/2002~
-~11358~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2002~
-~11358~^~432~^27.^8^3.^~1~^~A~^^^2^9.^59.^3^15.^38.^^~08/01/2010~
-~11358~^~435~^27.^0^^~4~^~NC~^^^^^^^^^^~08/01/2010~
-~11358~^~601~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2002~
-~11359~^~208~^146.^0^^~4~^~NC~^^^^^^^^^^~02/01/2017~
-~11359~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2005~
-~11359~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2005~
-~11359~^~268~^612.^0^^~4~^~NC~^^^^^^^^^^~02/01/2017~
-~11359~^~301~^13.^10^1.^~1~^~A~^^^2^8.^18.^7^10.^15.^~2, 3~^~04/01/2013~
-~11359~^~304~^21.^2^^~1~^~A~^^^1^21.^22.^1^^^^~03/01/2005~
-~11359~^~305~^81.^2^^~1~^~A~^^^1^72.^91.^1^^^^~03/01/2005~
-~11359~^~306~^380.^10^23.^~1~^~A~^^^2^281.^476.^7^324.^434.^~2, 3~^~07/01/2013~
-~11359~^~307~^349.^10^15.^~1~^~A~^^^2^280.^416.^3^298.^398.^~2, 3~^~07/01/2013~
-~11359~^~318~^4.^0^^~4~^~NC~^^^^^^^^^^~04/01/2013~
-~11359~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2013~
-~11359~^~320~^0.^0^^~4~^~NC~^^^^^^^^^^~03/01/2005~
-~11359~^~321~^2.^0^^~4~^~BFSN~^^^^^^^^^^~04/01/2013~
-~11359~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2013~
-~11359~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~
-~11359~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2013~
-~11359~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2013~
-~11359~^~338~^13.^0^^~4~^~BFSN~^^^^^^^^^^~07/01/2013~
-~11359~^~417~^31.^2^^~1~^~A~^^^1^21.^42.^1^^^^~03/01/2005~
-~11359~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2013~
-~11359~^~432~^31.^2^^~1~^~A~^^^^^^^^^^~03/01/2005~
-~11359~^~435~^31.^0^^~4~^~NC~^^^^^^^^^^~04/01/2013~
-~11359~^~601~^0.^8^0.^~1~^~A~^^^1^0.^0.^^^^~2, 3~^~04/01/2013~
-~11360~^~208~^161.^0^^~4~^~NC~^^^^^^^^^^~01/01/2017~
-~11360~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2005~
-~11360~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2005~
-~11360~^~268~^672.^0^^~4~^~NC~^^^^^^^^^^~01/01/2017~
-~11360~^~301~^13.^49^1.^~6~^~JA~^^^6^6.^22.^5^10.^15.^~2~^~03/01/2005~
-~11360~^~304~^28.^50^1.^~6~^~JA~^^^6^20.^38.^5^22.^32.^~2~^~03/01/2005~
-~11360~^~305~^97.^49^3.^~6~^~JA~^^^6^66.^153.^5^87.^106.^~2~^~03/01/2005~
-~11360~^~306~^471.^50^25.^~6~^~JA~^^^6^117.^650.^5^406.^535.^~2~^~03/01/2005~
-~11360~^~307~^391.^2^^~1~^~A~^^^1^333.^449.^^^^^~03/01/2005~
-~11360~^~318~^4.^0^^~4~^~NC~^^^^^^^^^^~03/01/2005~
-~11360~^~320~^0.^0^^~4~^~NC~^^^^^^^^^^~03/01/2005~
-~11360~^~321~^3.^0^^~4~^~BFSN~^^^^^^^^^^~03/01/2005~
-~11360~^~322~^0.^0^^~4~^~BFSN~^^^^^^^^^^~03/01/2005~
-~11360~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~
-~11360~^~334~^0.^0^^~4~^~BFSN~^^^^^^^^^^~03/01/2005~
-~11360~^~337~^0.^0^^~4~^~BFSN~^^^^^^^^^^~03/01/2005~
-~11360~^~338~^15.^0^^~4~^~BFSN~^^^^^^^^^^~03/01/2005~
-~11360~^~417~^22.^2^^~1~^~A~^^^1^17.^26.^^^^^~03/01/2005~
-~11360~^~432~^22.^2^^~1~^~A~^^^^^^^^^^~03/01/2005~
-~11360~^~601~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2005~
-~11361~^~208~^127.^0^^~4~^~NC~^^^^^^^^^^~01/01/2017~
-~11361~^~268~^530.^0^^~4~^~NC~^^^^^^^^^^~01/01/2017~
-~11361~^~301~^15.^3^2.^~1~^~A~^^^1^12.^19.^2^6.^23.^~2, 3~^~04/01/2013~
-~11361~^~306~^450.^3^43.^~1~^~A~^^^1^401.^536.^2^263.^635.^~2, 3~^~04/01/2013~
-~11361~^~307~^298.^3^12.^~1~^~A~^^^1^273.^312.^2^243.^352.^~2, 3~^~04/01/2013~
-~11361~^~318~^0.^3^0.^~12~^~MA~^^^1^0.^0.^^^^~2, 3~^~04/01/2013~
-~11361~^~601~^0.^3^0.^~1~^~A~^^^1^0.^0.^^^^~2, 3~^~04/01/2013~
-~11362~^~208~^58.^0^^~4~^~NC~^^^^^^^^^^~08/01/1984~
-~11362~^~268~^243.^0^^~4~^^^^^^^^^^^
-~11362~^~301~^30.^6^8.^~1~^^^^^^^^^^^~08/01/1984~
-~11362~^~304~^23.^6^0.^~1~^^^^^^^^^^^~08/01/1984~
-~11362~^~305~^38.^6^2.^~1~^^^^^^^^^^^~08/01/1984~
-~11362~^~306~^413.^6^23.^~1~^^^^^^^^^^^~08/01/1984~
-~11362~^~307~^10.^6^1.^~1~^^^^^^^^^^^~08/01/1984~
-~11362~^~318~^0.^0^^~4~^^^^^^^^^^^~08/01/1984~
-~11362~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2002~
-~11362~^~320~^0.^0^^~4~^^^^^^^^^^^~06/01/2002~
-~11362~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~
-~11362~^~417~^17.^3^0.^~1~^^^^^^^^^^^~08/01/1984~
-~11362~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~
-~11362~^~432~^17.^3^0.^~1~^^^^^^^^^^^~12/01/1984~
-~11362~^~435~^17.^0^^~4~^~NC~^^^^^^^^^^~01/01/2001~
-~11362~^~601~^0.^0^^~7~^~Z~^^^^^^^^^^~08/01/1984~
-~11363~^~208~^93.^0^^~4~^~NC~^^^^^^^^^^~02/01/2007~
-~11363~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2003~
-~11363~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2003~
-~11363~^~268~^390.^0^^~4~^~NC~^^^^^^^^^^~02/01/2007~
-~11363~^~301~^5.^6^1.^~1~^^^^^^^^^^^~08/01/1984~
-~11363~^~304~^25.^6^1.^~1~^^^^^^^^^^^~08/01/1984~
-~11363~^~305~^50.^6^3.^~1~^^^^^^^^^^^~08/01/1984~
-~11363~^~306~^391.^6^18.^~1~^^^^^^^^^^^~08/01/1984~
-~11363~^~307~^5.^6^0.^~1~^^^^^^^^^^^~08/01/1984~
-~11363~^~318~^0.^0^^~1~^~AS~^^^^^^^^^^~02/01/2007~
-~11363~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2002~
-~11363~^~320~^0.^0^^~1~^~AS~^^^^^^^^^^~02/01/2007~
-~11363~^~321~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2003~
-~11363~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2003~
-~11363~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~
-~11363~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2003~
-~11363~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2003~
-~11363~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2003~
-~11363~^~417~^9.^6^0.^~1~^^^^^^^^^^^~08/01/1984~
-~11363~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~
-~11363~^~432~^9.^6^0.^~1~^^^^^^^^^^^~02/01/2007~
-~11363~^~435~^9.^0^^~4~^~NC~^^^^^^^^^^~02/01/2007~
-~11363~^~601~^0.^0^^~7~^~Z~^^^^^^^^^^~08/01/1984~
-~11364~^~208~^198.^0^^~4~^~NC~^^^^^^^^^^~02/01/2007~
-~11364~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2003~
-~11364~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2003~
-~11364~^~268~^830.^0^^~4~^~NC~^^^^^^^^^^~02/01/2007~
-~11364~^~301~^34.^6^9.^~1~^^^^^^^^^^^~08/01/1984~
-~11364~^~304~^43.^6^1.^~1~^^^^^^^^^^^~08/01/1984~
-~11364~^~305~^101.^6^5.^~1~^^^^^^^^^^^~08/01/1984~
-~11364~^~306~^573.^6^25.^~1~^^^^^^^^^^^~08/01/1984~
-~11364~^~307~^21.^6^4.^~1~^^^^^^^^^^^~08/01/1984~
-~11364~^~318~^10.^0^^~4~^~NC~^^^^^^^^^^~02/01/2007~
-~11364~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2002~
-~11364~^~320~^1.^0^^~4~^~NC~^^^^^^^^^^~02/01/2007~
-~11364~^~321~^6.^0^^~4~^~O~^^^^^^^^^^~01/01/2003~
-~11364~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2003~
-~11364~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~
-~11364~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2003~
-~11364~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2003~
-~11364~^~338~^30.^0^^~4~^~O~^^^^^^^^^^~01/01/2003~
-~11364~^~417~^22.^6^1.^~1~^^^^^^^^^^^~08/01/1984~
-~11364~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~
-~11364~^~432~^22.^6^1.^~1~^^^^^^^^^^^~02/01/2007~
-~11364~^~435~^22.^0^^~4~^~NC~^^^^^^^^^^~02/01/2007~
-~11364~^~601~^0.^0^^~7~^~Z~^^^^^^^^^^~08/01/1984~
-~11365~^~208~^87.^0^^~4~^~NC~^^^^^^^^^^~02/01/2007~
-~11365~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~10/01/2002~
-~11365~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~10/01/2002~
-~11365~^~268~^364.^0^^~4~^^^^^^^^^^^~09/01/2015~
-~11365~^~301~^5.^6^1.^~1~^^^^^^^^^^^~08/01/1984~
-~11365~^~304~^22.^6^1.^~1~^^^^^^^^^^^~08/01/1984~
-~11365~^~305~^44.^6^2.^~1~^^^^^^^^^^^~08/01/1984~
-~11365~^~306~^379.^6^10.^~1~^^^^^^^^^^^~08/01/1984~
-~11365~^~307~^4.^6^0.^~1~^^^^^^^^^^^~08/01/1984~
-~11365~^~318~^3.^0^^~4~^~NC~^^^^^^^^^^~02/01/2007~
-~11365~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2002~
-~11365~^~320~^0.^0^^~4~^~NC~^^^^^^^^^^~02/01/2007~
-~11365~^~321~^2.^0^^~4~^~BFSY~^~11352~^^^^^^^^^~02/01/2005~
-~11365~^~322~^0.^0^^~4~^~BFSY~^~11352~^^^^^^^^^~02/01/2005~
-~11365~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~
-~11365~^~334~^0.^0^^~4~^~BFSY~^~11352~^^^^^^^^^~02/01/2005~
-~11365~^~337~^0.^0^^~4~^~BFSY~^~11352~^^^^^^^^^~02/01/2005~
-~11365~^~338~^10.^0^^~4~^~BFSY~^~11352~^^^^^^^^^~09/01/2015~
-~11365~^~417~^10.^6^0.^~1~^^^^^^^^^^^~08/01/1984~
-~11365~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~
-~11365~^~432~^10.^6^0.^~1~^^^^^^^^^^^~02/01/2007~
-~11365~^~435~^10.^0^^~4~^~NC~^^^^^^^^^^~02/01/2007~
-~11365~^~601~^0.^0^^~7~^~Z~^^^^^^^^^^~08/01/1984~
-~11366~^~208~^78.^0^^~4~^~NC~^^^^^^^^^^~08/01/1984~
-~11366~^~268~^326.^0^^~4~^^^^^^^^^^^
-~11366~^~301~^45.^5^14.^~1~^^^^^^^^^^^~08/01/1984~
-~11366~^~304~^30.^5^0.^~1~^^^^^^^^^^^~08/01/1984~
-~11366~^~305~^54.^5^6.^~1~^^^^^^^^^^^~08/01/1984~
-~11366~^~306~^407.^5^19.^~1~^^^^^^^^^^^~08/01/1984~
-~11366~^~307~^14.^5^1.^~1~^^^^^^^^^^^~08/01/1984~
-~11366~^~318~^0.^0^^~4~^^^^^^^^^^^~08/01/1984~
-~11366~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2002~
-~11366~^~320~^0.^0^^~4~^^^^^^^^^^^~06/01/2002~
-~11366~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~
-~11366~^~417~^10.^5^0.^~1~^^^^^^^^^^^~08/01/1984~
-~11366~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~
-~11366~^~432~^10.^5^0.^~1~^^^^^^^^^^^~12/01/1984~
-~11366~^~435~^10.^0^^~4~^~NC~^^^^^^^^^^~01/01/2001~
-~11366~^~601~^0.^0^^~7~^~Z~^^^^^^^^^^~08/01/1984~
-~11367~^~208~^86.^0^^~4~^~NC~^^^^^^^^^^~02/01/2007~
-~11367~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2005~
-~11367~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2005~
-~11367~^~268~^360.^0^^~4~^^^^^^^^^^^~02/01/2007~
-~11367~^~301~^8.^6^3.^~1~^^^^^^^^^^^~08/01/1984~
-~11367~^~304~^20.^6^1.^~1~^^^^^^^^^^^~08/01/1984~
-~11367~^~305~^40.^6^2.^~1~^^^^^^^^^^^~08/01/1984~
-~11367~^~306~^328.^0^^~1~^^^^^^^^^^^~08/01/1984~
-~11367~^~307~^5.^6^0.^~1~^^^^^^^^^^^~08/01/1984~
-~11367~^~318~^2.^0^^~4~^~NC~^^^^^^^^^^~09/01/2015~
-~11367~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2002~
-~11367~^~320~^0.^0^^~4~^~NC~^^^^^^^^^^~02/01/2007~
-~11367~^~321~^1.^0^^~4~^~BFSY~^~11352~^^^^^^^^^~09/01/2015~
-~11367~^~322~^0.^0^^~4~^~BFSY~^~11352~^^^^^^^^^~02/01/2005~
-~11367~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~
-~11367~^~334~^0.^0^^~4~^~BFSY~^~11352~^^^^^^^^^~02/01/2005~
-~11367~^~337~^0.^0^^~4~^~BFSY~^~11352~^^^^^^^^^~02/01/2005~
-~11367~^~338~^9.^0^^~4~^~BFSY~^~11352~^^^^^^^^^~02/01/2005~
-~11367~^~417~^9.^6^0.^~1~^^^^^^^^^^^~08/01/1984~
-~11367~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2005~
-~11367~^~432~^9.^6^0.^~1~^^^^^^^^^^^~02/01/2007~
-~11367~^~435~^9.^0^^~4~^~NC~^^^^^^^^^^~02/01/2007~
-~11367~^~601~^0.^0^^~7~^~Z~^^^^^^^^^^~07/01/2001~
-~11368~^~208~^100.^0^^~4~^~NC~^^^^^^^^^^~08/01/1984~
-~11368~^~268~^418.^0^^~4~^^^^^^^^^^^
-~11368~^~301~^5.^5^1.^~1~^^^^^^^^^^^~08/01/1984~
-~11368~^~304~^25.^5^2.^~1~^^^^^^^^^^^~08/01/1984~
-~11368~^~305~^109.^5^52.^~1~^^^^^^^^^^^~08/01/1984~
-~11368~^~306~^411.^5^22.^~1~^^^^^^^^^^^~08/01/1984~
-~11368~^~307~^7.^5^1.^~1~^^^^^^^^^^^~08/01/1984~
-~11368~^~318~^0.^0^^~4~^^^^^^^^^^^~08/01/1984~
-~11368~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2002~
-~11368~^~320~^0.^0^^~4~^^^^^^^^^^^~06/01/2002~
-~11368~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~
-~11368~^~417~^12.^5^0.^~1~^^^^^^^^^^^~08/01/1984~
-~11368~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~
-~11368~^~432~^12.^5^0.^~1~^^^^^^^^^^^~12/01/1984~
-~11368~^~435~^12.^0^^~4~^~NC~^^^^^^^^^^~01/01/2001~
-~11368~^~601~^0.^0^^~7~^~Z~^^^^^^^^^^~08/01/1984~
-~11369~^~208~^132.^0^^~4~^~NC~^^^^^^^^^^~08/01/1984~
-~11369~^~268~^552.^0^^~4~^^^^^^^^^^^
-~11369~^~301~^46.^5^17.^~1~^^^^^^^^^^^~08/01/1984~
-~11369~^~304~^37.^5^2.^~1~^^^^^^^^^^^~08/01/1984~
-~11369~^~305~^82.^5^4.^~1~^^^^^^^^^^^~08/01/1984~
-~11369~^~306~^650.^5^17.^~1~^^^^^^^^^^^~08/01/1984~
-~11369~^~307~^16.^5^4.^~1~^^^^^^^^^^^~08/01/1984~
-~11369~^~318~^0.^0^^~4~^^^^^^^^^^^~08/01/1984~
-~11369~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2002~
-~11369~^~320~^0.^0^^~4~^^^^^^^^^^^~06/01/2002~
-~11369~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~
-~11369~^~417~^17.^5^0.^~1~^^^^^^^^^^^~08/01/1984~
-~11369~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~
-~11369~^~432~^17.^5^0.^~1~^^^^^^^^^^^~12/01/1984~
-~11369~^~435~^17.^0^^~4~^~NC~^^^^^^^^^^~01/01/2001~
-~11369~^~601~^0.^0^^~7~^~Z~^^^^^^^^^^~08/01/1984~
-~11370~^~208~^265.^0^^~4~^~RC~^^^^^^^^^^~06/01/2010~
-~11370~^~262~^0.^0^^~4~^~RC~^^^^^^^^^^~05/01/2003~
-~11370~^~263~^0.^0^^~4~^~RC~^^^^^^^^^^~05/01/2003~
-~11370~^~268~^1109.^0^^~4~^~RC~^^^^^^^^^^~06/01/2010~
-~11370~^~301~^14.^0^^~4~^~RC~^^^^^^^^^^~05/01/2003~
-~11370~^~304~^35.^0^^~4~^~RC~^^^^^^^^^^~05/01/2003~
-~11370~^~305~^70.^0^^~4~^~RC~^^^^^^^^^^~05/01/2003~
-~11370~^~306~^576.^0^^~4~^~RC~^^^^^^^^^^~05/01/2003~
-~11370~^~307~^342.^0^^~4~^~RC~^^^^^^^^^^~05/01/2003~
-~11370~^~318~^5.^0^^~4~^~NC~^^^^^^^^^^~06/01/2010~
-~11370~^~319~^0.^0^^~4~^~RC~^^^^^^^^^^~05/01/2003~
-~11370~^~320~^0.^0^^~4~^~NC~^^^^^^^^^^~06/01/2010~
-~11370~^~321~^3.^0^^~4~^~RC~^^^^^^^^^^~05/01/2003~
-~11370~^~322~^0.^0^^~4~^~RC~^^^^^^^^^^~05/01/2003~
-~11370~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~
-~11370~^~334~^0.^0^^~4~^~RC~^^^^^^^^^^~05/01/2003~
-~11370~^~337~^0.^0^^~4~^~RC~^^^^^^^^^^~05/01/2003~
-~11370~^~338~^16.^0^^~4~^~RC~^^^^^^^^^^~05/01/2003~
-~11370~^~417~^16.^0^^~4~^~RC~^^^^^^^^^^~05/01/2003~
-~11370~^~431~^0.^0^^~4~^~RC~^^^^^^^^^^~05/01/2003~
-~11370~^~432~^16.^0^^~4~^~RC~^^^^^^^^^^~05/01/2003~
-~11370~^~435~^16.^0^^~4~^~NC~^^^^^^^^^^~06/01/2010~
-~11370~^~601~^0.^0^^~4~^~RC~^^^^^^^^^^~05/01/2003~
-~11370~^~636~^0.^0^^~4~^~RC~^^^^^^^^^^~05/01/2003~
-~11371~^~208~^113.^0^^~4~^~NC~^^^^^^^^^^~08/01/2011~
-~11371~^~262~^0.^0^^~4~^~RA~^^^^^^^^^^~02/01/2003~
-~11371~^~263~^0.^0^^~4~^~RA~^^^^^^^^^^~02/01/2003~
-~11371~^~268~^474.^0^^~4~^~NC~^^^^^^^^^^~08/01/2011~
-~11371~^~301~^21.^0^^~4~^~RA~^^^^^^^^^^~12/01/2008~
-~11371~^~304~^19.^0^^~4~^~RA~^^^^^^^^^^~12/01/2008~
-~11371~^~305~^48.^0^^~4~^~RA~^^^^^^^^^^~12/01/2008~
-~11371~^~306~^326.^0^^~4~^~RA~^^^^^^^^^^~12/01/2008~
-~11371~^~307~^333.^0^^~4~^~RA~^^^^^^^^^^~12/01/2008~
-~11371~^~318~^187.^0^^~4~^~NC~^^^^^^^^^^~08/01/2010~
-~11371~^~319~^41.^0^^~4~^~RA~^^^^^^^^^^~12/01/2008~
-~11371~^~320~^44.^0^^~4~^~NC~^^^^^^^^^^~08/01/2010~
-~11371~^~321~^30.^0^^~4~^~RA~^^^^^^^^^^~12/01/2008~
-~11371~^~322~^0.^0^^~4~^~RA~^^^^^^^^^^~02/01/2003~
-~11371~^~324~^7.^0^^~4~^~RA~^^^^^^^^^^~12/01/2008~
-~11371~^~334~^0.^0^^~4~^~RA~^^^^^^^^^^~02/01/2003~
-~11371~^~337~^0.^0^^~4~^~RA~^^^^^^^^^^~02/01/2003~
-~11371~^~338~^7.^0^^~4~^~RA~^^^^^^^^^^~02/01/2003~
-~11371~^~417~^9.^0^^~4~^~RA~^^^^^^^^^^~02/01/2003~
-~11371~^~431~^0.^0^^~4~^~RA~^^^^^^^^^^~02/01/2003~
-~11371~^~432~^9.^0^^~4~^~RA~^^^^^^^^^^~02/01/2003~
-~11371~^~435~^9.^0^^~4~^~NC~^^^^^^^^^^~08/01/2010~
-~11371~^~601~^1.^0^^~4~^~RA~^^^^^^^^^^~02/01/2003~
-~11371~^~636~^19.^0^^~4~^~RA~^^^^^^^^^^~03/01/2007~
-~11371~^~638~^2.^0^^~4~^~RA~^^^^^^^^^^~03/01/2007~
-~11371~^~639~^3.^0^^~4~^~RA~^^^^^^^^^^~03/01/2007~
-~11371~^~641~^12.^0^^~4~^~RA~^^^^^^^^^^~03/01/2007~
-~11372~^~208~^88.^0^^~4~^~NC~^^^^^^^^^^~02/01/2006~
-~11372~^~268~^367.^0^^~4~^~NC~^^^^^^^^^^~02/01/2006~
-~11372~^~301~^57.^0^^~1~^^^^^^^^^^^~08/01/1984~
-~11372~^~304~^19.^0^^~1~^^^^^^^^^^^~08/01/1984~
-~11372~^~305~^63.^0^^~1~^^^^^^^^^^^~08/01/1984~
-~11372~^~306~^378.^0^^~1~^^^^^^^^^^^~08/01/1984~
-~11372~^~307~^335.^0^^~1~^^^^^^^^^^^~08/01/1984~
-~11372~^~318~^135.^0^^~1~^^^^^^^^^^^~08/01/1984~
-~11372~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~
-~11372~^~417~^11.^0^^~4~^~RA~^^^^^^^^^^~10/01/1997~
-~11372~^~431~^2.^0^^~4~^~NC~^^^^^^^^^^~05/01/2000~
-~11372~^~432~^9.^0^^~1~^^^^^^^^^^^~08/01/1984~
-~11372~^~435~^13.^0^^~4~^~NC~^^^^^^^^^^~02/01/2006~
-~11372~^~601~^12.^0^^~1~^^^^^^^^^^^~08/01/1984~
-~11373~^~208~^134.^0^^~4~^~NC~^^^^^^^^^^~01/01/2017~
-~11373~^~268~^559.^0^^~4~^~NC~^^^^^^^^^^~01/01/2017~
-~11373~^~301~^119.^0^^~1~^^^^^^^^^^^~08/01/1984~
-~11373~^~304~^20.^0^^~1~^^^^^^^^^^^~08/01/1984~
-~11373~^~305~^113.^0^^~1~^^^^^^^^^^^~08/01/1984~
-~11373~^~306~^396.^0^^~1~^^^^^^^^^^^~08/01/1984~
-~11373~^~307~^433.^0^^~1~^^^^^^^^^^^~08/01/1984~
-~11373~^~318~^264.^0^^~1~^^^^^^^^^^^~08/01/1984~
-~11373~^~319~^61.^0^^~4~^~NC~^^^^^^^^^^~06/01/2002~
-~11373~^~320~^64.^0^^~4~^~NC~^^^^^^^^^^~06/01/2002~
-~11373~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~
-~11373~^~417~^11.^0^^~4~^~RA~^^^^^^^^^^~10/01/1997~
-~11373~^~431~^3.^0^^~4~^~NC~^^^^^^^^^^~05/01/2000~
-~11373~^~432~^8.^0^^~1~^^^^^^^^^^^~08/01/1984~
-~11373~^~435~^13.^0^^~4~^~NC~^^^^^^^^^^~01/01/2001~
-~11373~^~601~^23.^0^^~1~^^^^^^^^^^^~08/01/1984~
-~11374~^~208~^44.^0^^~4~^~NC~^^^^^^^^^^~04/01/1996~
-~11374~^~268~^184.^0^^~4~^^^^^^^^^^^
-~11374~^~301~^39.^65^2.^~1~^~A~^^^^^^^^^^~04/01/1996~
-~11374~^~304~^14.^22^0.^~1~^^^^^^^^^^^~08/01/1984~
-~11374~^~305~^22.^23^1.^~1~^^^^^^^^^^^~08/01/1984~
-~11374~^~306~^205.^37^6.^~1~^~A~^^^^^^^^^^~04/01/1996~
-~11374~^~307~^217.^45^8.^~1~^~A~^^^^^^^^^^~04/01/1996~
-~11374~^~318~^0.^0^^~4~^^^^^^^^^^^~08/01/1984~
-~11374~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2002~
-~11374~^~320~^0.^0^^~4~^^^^^^^^^^^~06/01/2002~
-~11374~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~
-~11374~^~417~^5.^0^^~1~^^^^^^^^^^^~08/01/1984~
-~11374~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~
-~11374~^~432~^5.^0^^~1~^^^^^^^^^^^~12/01/1984~
-~11374~^~435~^5.^0^^~4~^~NC~^^^^^^^^^^~01/01/2001~
-~11374~^~601~^0.^0^^~7~^~Z~^^^^^^^^^^~08/01/1984~
-~11376~^~208~^60.^0^^~4~^~NC~^^^^^^^^^^~08/01/1984~
-~11376~^~268~^251.^0^^~4~^^^^^^^^^^^
-~11376~^~301~^5.^0^^~1~^^^^^^^^^^^~08/01/1984~
-~11376~^~304~^14.^0^^~1~^^^^^^^^^^^~08/01/1984~
-~11376~^~305~^28.^0^^~1~^^^^^^^^^^^~08/01/1984~
-~11376~^~306~^229.^0^^~1~^^^^^^^^^^^~08/01/1984~
-~11376~^~307~^219.^0^^~4~^~BD~^^^^^^^^^^~01/01/1996~
-~11376~^~318~^0.^0^^~4~^^^^^^^^^^^~08/01/1984~
-~11376~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2002~
-~11376~^~320~^0.^0^^~4~^^^^^^^^^^^~06/01/2002~
-~11376~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~
-~11376~^~417~^6.^0^^~1~^^^^^^^^^^^~08/01/1984~
-~11376~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~
-~11376~^~432~^6.^0^^~1~^^^^^^^^^^^~12/01/1984~
-~11376~^~435~^6.^0^^~4~^~NC~^^^^^^^^^^~01/01/2001~
-~11376~^~601~^0.^0^^~7~^~Z~^^^^^^^^^^~08/01/1984~
-~11378~^~208~^354.^0^^~4~^~NC~^^^^^^^^^^~03/01/2007~
-~11378~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~10/01/2002~
-~11378~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~10/01/2002~
-~11378~^~268~^1480.^0^^~4~^~NC~^^^^^^^^^^~03/01/2007~
-~11378~^~301~^27.^16^3.^~6~^~JA~^^^2^25.^51.^14^18.^35.^~2, 3~^~03/01/2006~
-~11378~^~304~^66.^24^6.^~6~^~JA~^^^2^65.^78.^22^52.^78.^~2, 3~^~03/01/2006~
-~11378~^~305~^156.^26^14.^~6~^~JA~^^^2^154.^210.^24^126.^185.^~2, 3~^~03/01/2006~
-~11378~^~306~^1098.^17^145.^~6~^~JA~^^^2^1084.^1320.^15^788.^1407.^~2, 3~^~03/01/2006~
-~11378~^~307~^77.^0^^~8~^~LC~^^^^^^^^^^~03/01/2015~
-~11378~^~318~^11.^0^^~4~^~NC~^^^^^^^^^^~03/01/2007~
-~11378~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2002~
-~11378~^~320~^1.^0^^~4~^~NC~^^^^^^^^^^~03/01/2007~
-~11378~^~321~^6.^0^^~4~^~BFSN~^~11367~^^^^^^^^^~03/01/2007~
-~11378~^~322~^0.^0^^~4~^~BFSN~^~11367~^^^^^^^^^~03/01/2007~
-~11378~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~
-~11378~^~334~^0.^0^^~4~^~BFSN~^~11367~^^^^^^^^^~03/01/2007~
-~11378~^~337~^0.^0^^~4~^~BFSN~^~11367~^^^^^^^^^~03/01/2007~
-~11378~^~338~^37.^0^^~4~^~BFSN~^~11367~^^^^^^^^^~03/01/2007~
-~11378~^~417~^46.^4^4.^~6~^~JA~^^^2^40.^62.^2^28.^62.^~2, 3~^~03/01/2006~
-~11378~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2006~
-~11378~^~432~^46.^4^4.^~6~^~JA~^^^2^40.^62.^2^28.^62.^^~03/01/2007~
-~11378~^~435~^46.^0^^~4~^~NC~^^^^^^^^^^~03/01/2007~
-~11378~^~601~^0.^0^^~7~^~Z~^^^^^^^^^^~08/01/1984~
-~11379~^~208~^97.^0^^~4~^~NC~^^^^^^^^^^~12/01/2008~
-~11379~^~262~^0.^0^^~6~^~RPI~^^^^^^^^^^~03/01/2007~
-~11379~^~263~^0.^0^^~6~^~RPI~^^^^^^^^^^~03/01/2007~
-~11379~^~268~^405.^0^^~4~^~NC~^^^^^^^^^^~12/01/2008~
-~11379~^~301~^32.^0^^~1~^~RPA~^^^^^^^^^^~12/01/2008~
-~11379~^~304~^11.^0^^~1~^~RPA~^^^^^^^^^^~12/01/2008~
-~11379~^~305~^39.^0^^~1~^~RPA~^^^^^^^^^^~12/01/2008~
-~11379~^~306~^164.^0^^~1~^~RPA~^^^^^^^^^^~12/01/2008~
-~11379~^~307~^164.^0^^~1~^~RPA~^^^^^^^^^^~12/01/2008~
-~11379~^~318~^172.^0^^~4~^~NC~^^^^^^^^^^~12/01/2008~
-~11379~^~319~^46.^0^^~6~^~RPI~^^^^^^^^^^~12/01/2008~
-~11379~^~320~^47.^0^^~4~^~NC~^^^^^^^^^^~12/01/2008~
-~11379~^~321~^11.^0^^~6~^~RPI~^^^^^^^^^^~12/01/2008~
-~11379~^~322~^0.^0^^~6~^~RPI~^^^^^^^^^^~03/01/2007~
-~11379~^~324~^12.^0^^~4~^~NR~^^^^^^^^^^~12/01/2008~
-~11379~^~334~^0.^0^^~6~^~RPI~^^^^^^^^^^~03/01/2007~
-~11379~^~337~^0.^0^^~6~^~RPI~^^^^^^^^^^~03/01/2007~
-~11379~^~338~^4.^0^^~6~^~RPI~^^^^^^^^^^~03/01/2007~
-~11379~^~417~^7.^0^^~6~^~RPI~^^^^^^^^^^~03/01/2007~
-~11379~^~431~^0.^0^^~6~^~RPI~^^^^^^^^^^~03/01/2007~
-~11379~^~432~^7.^0^^~6~^~RPI~^^^^^^^^^^~03/01/2007~
-~11379~^~435~^7.^0^^~4~^~NC~^^^^^^^^^^~12/01/2008~
-~11379~^~601~^14.^0^^~6~^~RPI~^^^^^^^^^^~03/01/2007~
-~11379~^~636~^0.^0^^~1~^~RPA~^^^^^^^^^^~03/01/2007~
-~11379~^~638~^0.^0^^~1~^~RPA~^^^^^^^^^^~03/01/2007~
-~11379~^~639~^0.^0^^~1~^~RPA~^^^^^^^^^^~03/01/2007~
-~11379~^~641~^0.^0^^~1~^~RPA~^^^^^^^^^^~03/01/2007~
-~11380~^~208~^372.^0^^~4~^~NC~^^^^^^^^^^~12/01/2008~
-~11380~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~
-~11380~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~
-~11380~^~268~^1556.^0^^~4~^~NC~^^^^^^^^^^~12/01/2008~
-~11380~^~301~^41.^17^7.^~1~^^^^^^^^^^^~08/01/1984~
-~11380~^~304~^98.^4^3.^~1~^^^^^^^^^^^~08/01/1984~
-~11380~^~305~^245.^5^16.^~1~^^^^^^^^^^^~08/01/1984~
-~11380~^~306~^703.^16^152.^~1~^^^^^^^^^^^~08/01/1984~
-~11380~^~307~^67.^23^11.^~1~^^^^^^^^^^^~08/01/1984~
-~11380~^~318~^11.^0^^~4~^~NC~^^^^^^^^^^~12/01/2008~
-~11380~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2002~
-~11380~^~320~^1.^0^^~4~^~NC~^^^^^^^^^^~12/01/2008~
-~11380~^~321~^7.^0^^~4~^~BFSN~^~11378~^^^^^^^^^~12/01/2008~
-~11380~^~322~^0.^0^^~4~^~BFSN~^~11378~^^^^^^^^^~12/01/2008~
-~11380~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~
-~11380~^~334~^0.^0^^~4~^~BFSN~^~11378~^^^^^^^^^~12/01/2008~
-~11380~^~337~^0.^0^^~4~^~BFSN~^~11378~^^^^^^^^^~12/01/2008~
-~11380~^~338~^38.^0^^~4~^~BFSN~^~11378~^^^^^^^^^~12/01/2008~
-~11380~^~417~^40.^3^9.^~1~^^^^^^^^^^^~08/01/1984~
-~11380~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~
-~11380~^~432~^40.^3^9.^~1~^^^^^^^^^^^~12/01/2008~
-~11380~^~435~^40.^0^^~4~^~NC~^^^^^^^^^^~12/01/2008~
-~11380~^~601~^0.^0^^~7~^~Z~^^^^^^^^^^~08/01/1984~
-~11381~^~208~^108.^0^^~4~^~NC~^^^^^^^^^^~08/01/1984~
-~11381~^~268~^452.^0^^~4~^^^^^^^^^^^
-~11381~^~301~^35.^0^^~1~^^^^^^^^^^^~08/01/1984~
-~11381~^~304~^19.^0^^~1~^^^^^^^^^^^~08/01/1984~
-~11381~^~305~^60.^0^^~1~^^^^^^^^^^^~08/01/1984~
-~11381~^~306~^144.^0^^~1~^^^^^^^^^^^~08/01/1984~
-~11381~^~307~^257.^0^^~1~^^^^^^^^^^^~08/01/1984~
-~11381~^~318~^183.^0^^~4~^~NC~^^^^^^^^^^~04/01/2002~
-~11381~^~319~^40.^0^^~4~^~NR~^^^^^^^^^^~04/01/2002~
-~11381~^~320~^43.^0^^~4~^~NC~^^^^^^^^^^~04/01/2002~
-~11381~^~321~^30.^0^^~4~^~NR~^^^^^^^^^^~04/01/2002~
-~11381~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~
-~11381~^~417~^8.^0^^~1~^^^^^^^^^^^~08/01/1984~
-~11381~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~
-~11381~^~432~^8.^0^^~1~^^^^^^^^^^^~12/01/1984~
-~11381~^~435~^8.^0^^~4~^~NC~^^^^^^^^^^~04/01/2002~
-~11381~^~601~^14.^0^^~1~^^^^^^^^^^^~08/01/1984~
-~11381~^~636~^0.^0^^~1~^^^^^^^^^^^~08/01/1984~
-~11382~^~208~^357.^0^^~4~^~NC~^^^^^^^^^^~03/01/2007~
-~11382~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~11/01/2002~
-~11382~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~11/01/2002~
-~11382~^~268~^1494.^0^^~4~^~NC~^^^^^^^^^^~03/01/2007~
-~11382~^~301~^142.^0^^~1~^^^^^^^^^^^~08/01/1984~
-~11382~^~304~^74.^0^^~4~^^^^^^^^^^^~08/01/1984~
-~11382~^~305~^237.^0^^~1~^^^^^^^^^^^~08/01/1984~
-~11382~^~306~^1848.^0^^~1~^^^^^^^^^^^~08/01/1984~
-~11382~^~307~^82.^0^^~1~^^^^^^^^^^^~08/01/1984~
-~11382~^~318~^75.^0^^~4~^~NC~^^^^^^^^^^~03/01/2007~
-~11382~^~319~^17.^0^^~4~^~NR~^^^^^^^^^^~04/01/2002~
-~11382~^~320~^18.^0^^~4~^~NC~^^^^^^^^^^~03/01/2007~
-~11382~^~321~^10.^0^^~4~^~NR~^^^^^^^^^^~04/01/2002~
-~11382~^~322~^0.^0^^~4~^~BFSN~^~11378~^^^^^^^^^~11/01/2002~
-~11382~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~
-~11382~^~334~^0.^0^^~4~^~BFSN~^~11378~^^^^^^^^^~11/01/2002~
-~11382~^~337~^0.^0^^~4~^~BFSN~^~11378~^^^^^^^^^~11/01/2002~
-~11382~^~338~^37.^0^^~4~^~BFSN~^~11378~^^^^^^^^^~11/01/2002~
-~11382~^~417~^30.^0^^~4~^^^^^^^^^^^~08/01/1984~
-~11382~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~
-~11382~^~432~^30.^0^^~4~^^^^^^^^^^^~03/01/2007~
-~11382~^~435~^30.^0^^~4~^~NC~^^^^^^^^^^~03/01/2007~
-~11382~^~601~^2.^0^^~1~^^^^^^^^^^^~08/01/1984~
-~11383~^~208~^116.^0^^~4~^~NC~^^^^^^^^^^~05/01/2009~
-~11383~^~262~^0.^0^^~6~^~RPI~^^^^^^^^^^~05/01/2009~
-~11383~^~263~^0.^0^^~6~^~RPI~^^^^^^^^^^~05/01/2009~
-~11383~^~268~^486.^0^^~4~^~NC~^^^^^^^^^^~05/01/2009~
-~11383~^~301~^35.^0^^~1~^~RPA~^^^^^^^^^^~12/01/2008~
-~11383~^~304~^20.^0^^~1~^~RPA~^^^^^^^^^^~12/01/2008~
-~11383~^~305~^62.^0^^~1~^~RPA~^^^^^^^^^^~12/01/2008~
-~11383~^~306~^155.^0^^~1~^~RPA~^^^^^^^^^^~12/01/2008~
-~11383~^~307~^172.^0^^~1~^~RPA~^^^^^^^^^^~12/01/2008~
-~11383~^~318~^214.^0^^~4~^~NC~^^^^^^^^^^~05/01/2009~
-~11383~^~319~^48.^0^^~6~^~RPI~^^^^^^^^^^~12/01/2008~
-~11383~^~320~^51.^0^^~4~^~NC~^^^^^^^^^^~05/01/2009~
-~11383~^~321~^33.^0^^~6~^~RPI~^^^^^^^^^^~12/01/2008~
-~11383~^~322~^0.^0^^~6~^~RPI~^^^^^^^^^^~05/01/2009~
-~11383~^~324~^11.^0^^~6~^~RPI~^^^^^^^^^^~12/01/2008~
-~11383~^~334~^0.^0^^~6~^~RPI~^^^^^^^^^^~05/01/2009~
-~11383~^~337~^0.^0^^~6~^~RPI~^^^^^^^^^^~05/01/2009~
-~11383~^~338~^7.^0^^~6~^~RPI~^^^^^^^^^^~12/01/2008~
-~11383~^~417~^8.^0^^~6~^~RPI~^^^^^^^^^^~12/01/2008~
-~11383~^~431~^0.^0^^~6~^~RPI~^^^^^^^^^^~05/01/2009~
-~11383~^~432~^8.^0^^~6~^~RPI~^^^^^^^^^^~12/01/2008~
-~11383~^~435~^8.^0^^~4~^~NC~^^^^^^^^^^~05/01/2009~
-~11383~^~601~^2.^0^^~6~^~RPI~^^^^^^^^^^~12/01/2008~
-~11383~^~636~^20.^0^^~1~^~RPA~^^^^^^^^^^~12/01/2008~
-~11384~^~208~^314.^0^^~4~^~NC~^^^^^^^^^^~08/01/1984~
-~11384~^~268~^1314.^0^^~4~^^^^^^^^^^^
-~11384~^~301~^311.^3^71.^~1~^^^^^^^^^^^~08/01/1984~
-~11384~^~304~^64.^1^^~1~^^^^^^^^^^^~08/01/1984~
-~11384~^~305~^404.^3^25.^~1~^^^^^^^^^^^~08/01/1984~
-~11384~^~306~^990.^3^35.^~1~^^^^^^^^^^^~08/01/1984~
-~11384~^~307~^2095.^3^100.^~1~^^^^^^^^^^^~08/01/1984~
-~11384~^~318~^263.^0^^~4~^~NC~^^^^^^^^^^~04/01/2002~
-~11384~^~319~^49.^0^^~4~^~NR~^^^^^^^^^^~04/01/2002~
-~11384~^~320~^54.^0^^~4~^~NC~^^^^^^^^^^~04/01/2002~
-~11384~^~321~^60.^0^^~4~^~NR~^^^^^^^^^^~04/01/2002~
-~11384~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~
-~11384~^~417~^40.^0^^~4~^^^^^^^^^^^~08/01/1984~
-~11384~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~
-~11384~^~432~^40.^0^^~4~^^^^^^^^^^^~12/01/1984~
-~11384~^~435~^40.^0^^~4~^~NC~^^^^^^^^^^~04/01/2002~
-~11385~^~208~^93.^0^^~4~^~NC~^^^^^^^^^^~08/01/1984~
-~11385~^~268~^389.^0^^~4~^^^^^^^^^^^
-~11385~^~301~^83.^0^^~1~^^^^^^^^^^^~08/01/1984~
-~11385~^~304~^15.^0^^~1~^^^^^^^^^^^~08/01/1984~
-~11385~^~305~^95.^0^^~1~^^^^^^^^^^^~08/01/1984~
-~11385~^~306~^219.^0^^~1~^^^^^^^^^^^~08/01/1984~
-~11385~^~307~^439.^0^^~1~^^^^^^^^^^^~08/01/1984~
-~11385~^~318~^213.^0^^~4~^^^^^^^^^^^~08/01/1984~
-~11385~^~319~^49.^0^^~4~^~NC~^^^^^^^^^^~06/01/2002~
-~11385~^~320~^52.^0^^~4~^~NC~^^^^^^^^^^~06/01/2002~
-~11385~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~
-~11385~^~417~^7.^0^^~4~^^^^^^^^^^^~08/01/1984~
-~11385~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~
-~11385~^~432~^7.^0^^~4~^^^^^^^^^^^~12/01/1984~
-~11385~^~435~^7.^0^^~4~^~NC~^^^^^^^^^^~01/01/2001~
-~11385~^~601~^15.^0^^~4~^^^^^^^^^^^~01/01/1994~
-~11386~^~208~^358.^0^^~4~^~NC~^^^^^^^^^^~08/01/1984~
-~11386~^~268~^1498.^0^^~4~^^^^^^^^^^^
-~11386~^~301~^62.^3^6.^~1~^^^^^^^^^^^~08/01/1984~
-~11386~^~304~^59.^1^^~1~^^^^^^^^^^^~08/01/1984~
-~11386~^~305~^197.^3^5.^~1~^^^^^^^^^^^~08/01/1984~
-~11386~^~306~^905.^3^45.^~1~^^^^^^^^^^^~08/01/1984~
-~11386~^~307~^1578.^3^303.^~1~^^^^^^^^^^^~08/01/1984~
-~11386~^~318~^0.^0^^~4~^^^^^^^^^^^~08/01/1984~
-~11386~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2002~
-~11386~^~320~^0.^0^^~4~^^^^^^^^^^^~06/01/2002~
-~11386~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~
-~11386~^~417~^32.^0^^~4~^^^^^^^^^^^~08/01/1984~
-~11386~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~
-~11386~^~432~^32.^0^^~4~^^^^^^^^^^^~12/01/1984~
-~11386~^~435~^32.^0^^~4~^~NC~^^^^^^^^^^~01/01/2001~
-~11386~^~601~^5.^0^^~4~^~RC~^^^^^^^^^^~10/01/1995~
-~11387~^~208~^93.^0^^~4~^~NC~^^^^^^^^^^~08/01/1984~
-~11387~^~268~^389.^0^^~4~^^^^^^^^^^^
-~11387~^~301~^36.^0^^~1~^^^^^^^^^^^~08/01/1984~
-~11387~^~304~^14.^0^^~1~^^^^^^^^^^^~08/01/1984~
-~11387~^~305~^56.^0^^~1~^^^^^^^^^^^~08/01/1984~
-~11387~^~306~^203.^0^^~1~^^^^^^^^^^^~08/01/1984~
-~11387~^~307~^341.^0^^~1~^^^^^^^^^^^~08/01/1984~
-~11387~^~318~^148.^0^^~4~^^^^^^^^^^^~08/01/1984~
-~11387~^~319~^33.^0^^~4~^~NC~^^^^^^^^^^~06/01/2002~
-~11387~^~320~^35.^0^^~4~^~NC~^^^^^^^^^^~06/01/2002~
-~11387~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~
-~11387~^~417~^10.^0^^~4~^^^^^^^^^^^~08/01/1984~
-~11387~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~
-~11387~^~432~^10.^0^^~4~^^^^^^^^^^^~12/01/1984~
-~11387~^~435~^10.^0^^~4~^~NC~^^^^^^^^^^~01/01/2001~
-~11387~^~601~^11.^0^^~4~^^^^^^^^^^^~04/01/1985~
-~11390~^~208~^82.^0^^~4~^~NC~^^^^^^^^^^~08/01/1984~
-~11390~^~268~^343.^0^^~4~^^^^^^^^^^^~02/01/2006~
-~11390~^~301~^10.^0^^~1~^^^^^^^^^^^~08/01/1984~
-~11390~^~304~^11.^4^0.^~1~^^^^^^^^^^^~08/01/1984~
-~11390~^~305~^47.^4^7.^~1~^^^^^^^^^^^~08/01/1984~
-~11390~^~306~^285.^20^17.^~1~^^^^^^^^^^^~08/01/1984~
-~11390~^~307~^22.^117^1.^~1~^^^^^^^^^^^~08/01/1984~
-~11390~^~318~^0.^0^^~1~^~AS~^^^^^^^^^^~02/01/2006~
-~11390~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2002~
-~11390~^~320~^0.^0^^~1~^~AS~^^^^^^^^^^~02/01/2006~
-~11390~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~
-~11390~^~417~^4.^0^^~4~^^^^^^^^^^^~08/01/1984~
-~11390~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~
-~11390~^~432~^4.^0^^~4~^^^^^^^^^^^~02/01/2006~
-~11390~^~435~^4.^0^^~4~^~NC~^^^^^^^^^^~02/01/2006~
-~11391~^~208~^219.^0^^~4~^~NC~^^^^^^^^^^~02/01/2013~
-~11391~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~
-~11391~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~
-~11391~^~268~^917.^0^^~4~^~NC~^^^^^^^^^^~02/01/2013~
-~11391~^~301~^17.^9^0.^~1~^~A~^^^1^15.^17.^1^5.^27.^~4~^~02/01/2013~
-~11391~^~304~^28.^9^2.^~1~^~A~^^^1^25.^28.^1^0.^56.^~4~^~02/01/2013~
-~11391~^~305~^79.^9^11.^~1~^~A~^^^1^63.^82.^1^-63.^220.^~4~^~02/01/2013~
-~11391~^~306~^496.^9^60.^~1~^~A~^^^1^411.^512.^1^-277.^1268.^~4~^~02/01/2013~
-~11391~^~307~^15.^9^2.^~1~^~A~^^^1^15.^19.^1^-15.^45.^~4~^~02/01/2013~
-~11391~^~318~^0.^0^^~1~^~AS~^^^^^^^^^^~03/01/2007~
-~11391~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2002~
-~11391~^~320~^0.^0^^~1~^~AS~^^^^^^^^^^~03/01/2007~
-~11391~^~321~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~
-~11391~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~
-~11391~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~
-~11391~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~
-~11391~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~
-~11391~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~
-~11391~^~417~^16.^0^^~4~^~BFZN~^~11370~^^^^^^^^^~02/01/2013~
-~11391~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~
-~11391~^~432~^16.^0^^~4~^~BFZN~^~11370~^^^^^^^^^~02/01/2013~
-~11391~^~435~^16.^0^^~4~^~NC~^^^^^^^^^^~02/01/2013~
-~11391~^~601~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/1987~
-~11392~^~208~^135.^0^^~4~^~NC~^^^^^^^^^^~08/01/1984~
-~11392~^~268~^565.^0^^~4~^^^^^^^^^^^
-~11392~^~301~^25.^1^^~1~^^^^^^^^^^^~08/01/1984~
-~11392~^~304~^11.^0^^~4~^^^^^^^^^^^~08/01/1984~
-~11392~^~305~^29.^0^^~4~^^^^^^^^^^^~08/01/1984~
-~11392~^~306~^248.^2^^~1~^^^^^^^^^^^~08/01/1984~
-~11392~^~307~^77.^11^10.^~1~^^^^^^^^^^^~08/01/1984~
-~11392~^~318~^84.^7^18.^~1~^^^^^^^^^^^~08/01/1984~
-~11392~^~319~^18.^0^^~4~^~NC~^^^^^^^^^^~06/01/2002~
-~11392~^~320~^19.^0^^~4~^~NC~^^^^^^^^^^~06/01/2002~
-~11392~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~
-~11392~^~417~^12.^0^^~4~^^^^^^^^^^^~08/01/1984~
-~11392~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~
-~11392~^~432~^12.^0^^~4~^^^^^^^^^^^~12/01/1984~
-~11392~^~435~^12.^0^^~4~^~NC~^^^^^^^^^^~01/01/2001~
-~11393~^~208~^178.^0^^~4~^~NC~^^^^^^^^^^~08/01/1984~
-~11393~^~268~^745.^0^^~4~^^^^^^^^^^^
-~11393~^~301~^33.^0^^~1~^^^^^^^^^^^~08/01/1984~
-~11393~^~304~^15.^0^^~4~^^^^^^^^^^^~08/01/1984~
-~11393~^~305~^38.^0^^~4~^^^^^^^^^^^~08/01/1984~
-~11393~^~306~^327.^0^^~1~^^^^^^^^^^^~08/01/1984~
-~11393~^~307~^101.^0^^~1~^^^^^^^^^^^~08/01/1984~
-~11393~^~318~^111.^0^^~1~^^^^^^^^^^^~08/01/1984~
-~11393~^~319~^24.^0^^~4~^~NC~^^^^^^^^^^~06/01/2002~
-~11393~^~320~^26.^0^^~4~^~NC~^^^^^^^^^^~06/01/2002~
-~11393~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~
-~11393~^~417~^13.^0^^~4~^^^^^^^^^^^~08/01/1984~
-~11393~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~
-~11393~^~432~^13.^0^^~4~^^^^^^^^^^^~12/01/1984~
-~11393~^~435~^13.^0^^~4~^~NC~^^^^^^^^^^~01/01/2001~
-~11393~^~601~^23.^0^^~1~^^^^^^^^^^^~08/01/1984~
-~11394~^~208~^163.^0^^~4~^~NC~^^^^^^^^^^~02/01/2017~
-~11394~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2005~
-~11394~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2005~
-~11394~^~268~^683.^0^^~4~^~NC~^^^^^^^^^^~02/01/2017~
-~11394~^~301~^11.^3^0.^~1~^~A~^^^2^10.^12.^1^0.^23.^~2~^~05/01/2013~
-~11394~^~304~^21.^2^^~1~^~A~^^^1^20.^23.^^^^^~03/01/2005~
-~11394~^~305~^90.^2^^~1~^~A~^^^1^76.^103.^^^^^~03/01/2005~
-~11394~^~306~^379.^3^30.^~1~^~A~^^^2^348.^433.^1^-9.^766.^~2~^~05/01/2013~
-~11394~^~307~^323.^3^1.^~1~^~A~^^^2^245.^398.^1^301.^345.^~2~^~05/01/2013~
-~11394~^~318~^4.^0^^~4~^~NC~^^^^^^^^^^~05/01/2006~
-~11394~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2013~
-~11394~^~320~^0.^0^^~4~^~NC~^^^^^^^^^^~05/01/2006~
-~11394~^~321~^2.^0^^~4~^~BFSN~^^^^^^^^^^~05/01/2013~
-~11394~^~322~^0.^0^^~4~^~BFSN~^^^^^^^^^^~03/01/2005~
-~11394~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~
-~11394~^~334~^0.^0^^~4~^~BFSN~^^^^^^^^^^~03/01/2005~
-~11394~^~337~^0.^0^^~4~^~BFSN~^^^^^^^^^^~03/01/2005~
-~11394~^~338~^14.^0^^~4~^~BFSN~^^^^^^^^^^~03/01/2005~
-~11394~^~417~^36.^2^^~1~^~A~^^^1^32.^40.^^^^^~03/01/2005~
-~11394~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2013~
-~11394~^~432~^36.^2^^~1~^~A~^^^^^^^^^^~03/01/2005~
-~11394~^~435~^36.^0^^~4~^~NC~^^^^^^^^^^~05/01/2013~
-~11394~^~601~^0.^1^^~1~^~A~^^^^^^^^^^~05/01/2013~
-~11395~^~208~^194.^0^^~4~^~NC~^^^^^^^^^^~02/01/2017~
-~11395~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2005~
-~11395~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2005~
-~11395~^~268~^813.^0^^~4~^~NC~^^^^^^^^^^~02/01/2017~
-~11395~^~301~^12.^2^^~1~^~A~^^^1^^^^^^^~03/01/2005~
-~11395~^~304~^25.^2^^~1~^~A~^^^1^^^^^^^~03/01/2005~
-~11395~^~305~^112.^2^^~1~^~A~^^^1^^^^^^^~03/01/2005~
-~11395~^~306~^505.^2^^~1~^~A~^^^1^^^^^^^~03/01/2005~
-~11395~^~307~^400.^2^^~1~^~A~^^^1^^^^^^^~03/01/2005~
-~11395~^~318~^5.^0^^~4~^~NC~^^^^^^^^^^~03/01/2005~
-~11395~^~320~^0.^0^^~4~^~NC~^^^^^^^^^^~03/01/2005~
-~11395~^~321~^3.^0^^~4~^~BFSN~^^^^^^^^^^~03/01/2005~
-~11395~^~322~^0.^0^^~4~^~BFSN~^^^^^^^^^^~03/01/2005~
-~11395~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~
-~11395~^~334~^0.^0^^~4~^~BFSN~^^^^^^^^^^~03/01/2005~
-~11395~^~337~^0.^0^^~4~^~BFSN~^^^^^^^^^^~03/01/2005~
-~11395~^~338~^17.^0^^~4~^~BFSN~^^^^^^^^^^~03/01/2005~
-~11395~^~417~^33.^2^^~1~^~A~^^^1^^^^^^^~03/01/2005~
-~11395~^~432~^33.^2^^~1~^~A~^^^^^^^^^^~03/01/2005~
-~11395~^~601~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2005~
-~11396~^~208~^76.^0^^~4~^~NC~^^^^^^^^^^~08/01/1984~
-~11396~^~268~^318.^0^^~4~^^^^^^^^^^^
-~11396~^~301~^13.^6^0.^~1~^^^^^^^^^^^~08/01/1984~
-~11396~^~304~^18.^0^^~4~^^^^^^^^^^^~08/01/1984~
-~11396~^~305~^49.^0^^~4~^^^^^^^^^^^~08/01/1984~
-~11396~^~306~^249.^2^^~1~^^^^^^^^^^^~08/01/1984~
-~11396~^~307~^33.^15^1.^~1~^^^^^^^^^^^~08/01/1984~
-~11396~^~318~^148.^12^35.^~1~^^^^^^^^^^^~08/01/1984~
-~11396~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2002~
-~11396~^~320~^7.^12^1.^~1~^^^^^^^^^^^~06/01/2002~
-~11396~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~
-~11396~^~417~^8.^0^^~4~^^^^^^^^^^^~08/01/1984~
-~11396~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~
-~11396~^~432~^8.^0^^~4~^^^^^^^^^^^~12/01/1984~
-~11396~^~435~^8.^0^^~4~^~NC~^^^^^^^^^^~01/01/2001~
-~11397~^~208~^204.^0^^~4~^~NC~^^^^^^^^^^~08/01/1984~
-~11397~^~268~^854.^0^^~4~^^^^^^^^^^^
-~11397~^~301~^20.^4^5.^~1~^^^^^^^^^^^~08/01/1984~
-~11397~^~304~^34.^0^^~4~^^^^^^^^^^^~08/01/1984~
-~11397~^~305~^93.^0^^~4~^^^^^^^^^^^~08/01/1984~
-~11397~^~306~^473.^0^^~4~^^^^^^^^^^^~08/01/1984~
-~11397~^~307~^43.^9^3.^~1~^^^^^^^^^^^~08/01/1984~
-~11397~^~318~^188.^9^29.^~1~^^^^^^^^^^^~08/01/1984~
-~11397~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2002~
-~11397~^~320~^9.^9^1.^~1~^^^^^^^^^^^~06/01/2002~
-~11397~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~
-~11397~^~417~^12.^0^^~4~^^^^^^^^^^^~08/01/1984~
-~11397~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~
-~11397~^~432~^12.^0^^~4~^^^^^^^^^^^~12/01/1984~
-~11397~^~435~^12.^0^^~4~^~NC~^^^^^^^^^^~01/01/2001~
-~11397~^~601~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/1994~
-~11398~^~208~^178.^0^^~4~^~NC~^^^^^^^^^^~09/01/2015~
-~11398~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~08/01/2014~
-~11398~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~08/01/2014~
-~11398~^~268~^746.^0^^~4~^~NC~^^^^^^^^^^~09/01/2015~
-~11398~^~301~^13.^12^0.^~1~^~A~^^^1^9.^15.^7^11.^13.^~2, 3~^~03/01/2005~
-~11398~^~304~^16.^12^0.^~1~^~A~^^^1^13.^20.^8^14.^16.^~2, 3~^~03/01/2005~
-~11398~^~305~^64.^12^2.^~1~^~A~^^^1^49.^88.^8^58.^68.^~2, 3~^~08/01/2014~
-~11398~^~306~^247.^12^11.^~1~^~A~^^^1^190.^354.^7^219.^274.^~2, 3~^~08/01/2014~
-~11398~^~307~^428.^12^12.^~1~^~A~^^^1^257.^483.^9^400.^455.^~2, 3~^~07/01/2012~
-~11398~^~318~^4.^0^^~4~^~NC~^^^^^^^^^^~06/01/2005~
-~11398~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2002~
-~11398~^~320~^0.^0^^~4~^~NC~^^^^^^^^^^~06/01/2005~
-~11398~^~321~^3.^0^^~4~^~BFSN~^~11402~^^^^^^^^^~06/01/2005~
-~11398~^~322~^0.^0^^~4~^~BFSN~^~11402~^^^^^^^^^~06/01/2005~
-~11398~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~
-~11398~^~334~^0.^0^^~4~^~BFSN~^~11402~^^^^^^^^^~06/01/2005~
-~11398~^~337~^0.^0^^~4~^~BFSN~^~11402~^^^^^^^^^~06/01/2005~
-~11398~^~338~^15.^0^^~4~^~BFSN~^~11402~^^^^^^^^^~06/01/2005~
-~11398~^~417~^17.^0^^~1~^^^^^^^^^^^~08/01/2014~
-~11398~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~
-~11398~^~432~^17.^0^^~1~^^^^^^^^^^^~08/01/2014~
-~11398~^~435~^17.^0^^~4~^~NC~^^^^^^^^^^~08/01/2014~
-~11398~^~601~^0.^0^^~7~^~Z~^^^^^^^^^^~08/01/1984~
-~11399~^~208~^192.^0^^~4~^~NC~^^^^^^^^^^~06/01/2013~
-~11399~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~
-~11399~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~
-~11399~^~268~^802.^0^^~4~^~NC~^^^^^^^^^^~06/01/2013~
-~11399~^~301~^14.^0^^~4~^~RA~^^^^^^^^^^~06/01/2013~
-~11399~^~304~^17.^0^^~4~^~RA~^^^^^^^^^^~06/01/2013~
-~11399~^~305~^84.^0^^~4~^~RA~^^^^^^^^^^~06/01/2013~
-~11399~^~306~^287.^0^^~4~^~RA~^^^^^^^^^^~08/01/2014~
-~11399~^~307~^463.^0^^~4~^~RA~^^^^^^^^^^~06/01/2013~
-~11399~^~318~^5.^0^^~4~^~NC~^^^^^^^^^^~05/01/2009~
-~11399~^~319~^0.^0^^~4~^~RA~^^^^^^^^^^~06/01/2013~
-~11399~^~320~^0.^0^^~4~^~NC~^^^^^^^^^^~05/01/2009~
-~11399~^~321~^3.^0^^~4~^~RA~^^^^^^^^^^~03/01/2005~
-~11399~^~322~^0.^0^^~4~^~RA~^^^^^^^^^^~02/01/2006~
-~11399~^~324~^0.^0^^~4~^~RA~^^^^^^^^^^~06/01/2013~
-~11399~^~334~^0.^0^^~4~^~RA~^^^^^^^^^^~02/01/2006~
-~11399~^~337~^0.^0^^~4~^~RA~^^^^^^^^^^~02/01/2006~
-~11399~^~338~^16.^0^^~4~^~RA~^^^^^^^^^^~03/01/2005~
-~11399~^~417~^23.^0^^~4~^~RA~^^^^^^^^^^~06/01/2013~
-~11399~^~431~^0.^0^^~4~^~RA~^^^^^^^^^^~06/01/2013~
-~11399~^~432~^23.^0^^~4~^~RA~^^^^^^^^^^~06/01/2013~
-~11399~^~435~^23.^0^^~4~^~NC~^^^^^^^^^^~06/01/2013~
-~11399~^~601~^0.^0^^~7~^~Z~^^^^^^^^^^~08/01/1984~
-~11401~^~208~^65.^0^^~4~^~NC~^^^^^^^^^^~08/01/1984~
-~11401~^~268~^272.^0^^~4~^^^^^^^^^^^
-~11401~^~301~^7.^0^^~1~^^^^^^^^^^^~08/01/1984~
-~11401~^~304~^11.^0^^~1~^^^^^^^^^^^~08/01/1984~
-~11401~^~305~^26.^0^^~1~^^^^^^^^^^^~08/01/1984~
-~11401~^~306~^287.^0^^~1~^^^^^^^^^^^~08/01/1984~
-~11401~^~307~^20.^0^^~1~^^^^^^^^^^^~08/01/1984~
-~11401~^~318~^0.^0^^~4~^^^^^^^^^^^~08/01/1984~
-~11401~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2002~
-~11401~^~320~^0.^0^^~4~^^^^^^^^^^^~06/01/2002~
-~11401~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~
-~11401~^~417~^8.^0^^~1~^^^^^^^^^^^~08/01/1984~
-~11401~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~
-~11401~^~432~^8.^0^^~1~^^^^^^^^^^^~12/01/1984~
-~11401~^~435~^8.^0^^~4~^~NC~^^^^^^^^^^~01/01/2001~
-~11401~^~601~^0.^0^^~7~^~Z~^^^^^^^^^^~08/01/1984~
-~11402~^~208~^147.^0^^~4~^~NC~^^^^^^^^^^~03/01/2006~
-~11402~^~268~^613.^0^^~4~^~NC~^^^^^^^^^^~03/01/2006~
-~11402~^~301~^9.^6^0.^~1~^~A~^^^1^8.^11.^5^8.^10.^~2, 3~^~03/01/2005~
-~11402~^~304~^21.^6^0.^~1~^~A~^^^1^20.^23.^5^19.^22.^~2, 3~^~03/01/2005~
-~11402~^~305~^83.^6^5.^~1~^~A~^^^1^70.^103.^5^69.^96.^~2, 3~^~03/01/2005~
-~11402~^~306~^408.^6^8.^~1~^~A~^^^1^385.^433.^5^386.^429.^~2, 3~^~03/01/2005~
-~11402~^~307~^332.^6^36.^~1~^~A~^^^1^220.^416.^5^238.^425.^~2, 3~^~03/01/2005~
-~11402~^~318~^4.^0^^~4~^~NC~^^^^^^^^^^~03/01/2006~
-~11402~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2002~
-~11402~^~320~^0.^0^^~4~^~NC~^^^^^^^^^^~03/01/2006~
-~11402~^~321~^2.^0^^~4~^~BFSN~^^^^^^^^^^~03/01/2005~
-~11402~^~322~^0.^0^^~4~^~BFSN~^^^^^^^^^^~03/01/2006~
-~11402~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~
-~11402~^~334~^0.^0^^~4~^~BFSN~^^^^^^^^^^~03/01/2006~
-~11402~^~337~^0.^0^^~4~^~BFSN~^^^^^^^^^^~03/01/2006~
-~11402~^~338~^13.^0^^~4~^~BFSN~^^^^^^^^^^~03/01/2005~
-~11402~^~417~^35.^6^3.^~1~^~A~^^^1^21.^42.^5^27.^42.^~2, 3~^~03/01/2005~
-~11402~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~
-~11402~^~432~^35.^6^3.^~1~^~A~^^^1^21.^42.^5^27.^42.^^~03/01/2006~
-~11402~^~435~^35.^0^^~4~^~NC~^^^^^^^^^^~03/01/2006~
-~11402~^~601~^0.^0^^~7~^~Z~^^^^^^^^^^~08/01/1992~
-~11403~^~208~^158.^0^^~4~^~NC~^^^^^^^^^^~08/01/2014~
-~11403~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~
-~11403~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~
-~11403~^~268~^662.^0^^~4~^~NC~^^^^^^^^^^~08/01/2014~
-~11403~^~301~^12.^13^0.^~1~^~A~^^^1^8.^15.^9^11.^13.^~2, 3~^~08/01/2014~
-~11403~^~304~^24.^13^0.^~1~^~A~^^^1^17.^27.^9^22.^24.^~2, 3~^~08/01/2014~
-~11403~^~305~^87.^13^1.^~1~^~A~^^^1^63.^104.^10^83.^90.^~2, 3~^~08/01/2014~
-~11403~^~306~^478.^13^4.^~1~^~A~^^^1^340.^533.^9^468.^486.^~2, 3~^~08/01/2014~
-~11403~^~307~^324.^11^9.^~1~^~A~^^^1^185.^480.^7^300.^347.^~2, 3~^~04/01/2014~
-~11403~^~318~^5.^0^^~4~^~NC~^^^^^^^^^^~02/01/2010~
-~11403~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2002~
-~11403~^~320~^0.^0^^~4~^~NC~^^^^^^^^^^~02/01/2010~
-~11403~^~321~^3.^0^^~4~^~BFSN~^^^^^^^^^^~03/01/2005~
-~11403~^~322~^0.^0^^~4~^~BFSN~^^^^^^^^^^~02/01/2006~
-~11403~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~
-~11403~^~334~^0.^0^^~4~^~BFSN~^^^^^^^^^^~02/01/2006~
-~11403~^~337~^0.^0^^~4~^~BFSN~^^^^^^^^^^~02/01/2006~
-~11403~^~338~^16.^0^^~4~^~BFSN~^^^^^^^^^^~03/01/2005~
-~11403~^~417~^23.^6^1.^~1~^~A~^^^1^18.^28.^4^18.^27.^~2, 3~^~08/01/2014~
-~11403~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~
-~11403~^~432~^23.^6^1.^~1~^~A~^^^1^18.^28.^4^18.^27.^^~08/01/2014~
-~11403~^~435~^23.^0^^~4~^~NC~^^^^^^^^^^~08/01/2014~
-~11403~^~601~^0.^0^^~7~^~Z~^^^^^^^^^^~08/01/1984~
-~11406~^~208~^153.^0^^~4~^~NC~^^^^^^^^^^~08/01/1984~
-~11406~^~268~^640.^0^^~4~^^^^^^^^^^^
-~11406~^~301~^7.^1^^~1~^^^^^^^^^^^~08/01/1984~
-~11406~^~304~^16.^1^^~1~^^^^^^^^^^^~08/01/1984~
-~11406~^~305~^46.^1^^~1~^^^^^^^^^^^~08/01/1984~
-~11406~^~306~^338.^3^35.^~1~^^^^^^^^^^^~08/01/1984~
-~11406~^~307~^32.^12^6.^~1~^^^^^^^^^^^~08/01/1984~
-~11406~^~318~^0.^0^^~4~^^^^^^^^^^^~08/01/1984~
-~11406~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2002~
-~11406~^~320~^0.^0^^~4~^^^^^^^^^^^~06/01/2002~
-~11406~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~
-~11406~^~417~^15.^0^^~1~^^^^^^^^^^^~08/01/1984~
-~11406~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~
-~11406~^~432~^15.^0^^~1~^^^^^^^^^^^~12/01/1984~
-~11406~^~435~^15.^0^^~4~^~NC~^^^^^^^^^^~01/01/2001~
-~11406~^~601~^0.^0^^~7~^~Z~^^^^^^^^^^~08/01/1984~
-~11407~^~208~^218.^0^^~4~^~NC~^^^^^^^^^^~02/01/2006~
-~11407~^~268~^912.^0^^~4~^~NC~^^^^^^^^^^~02/01/2006~
-~11407~^~301~^10.^0^^~1~^^^^^^^^^^^~08/01/1984~
-~11407~^~304~^22.^0^^~1~^^^^^^^^^^^~08/01/1984~
-~11407~^~305~^65.^0^^~1~^^^^^^^^^^^~08/01/1984~
-~11407~^~306~^480.^0^^~1~^^^^^^^^^^^~08/01/1984~
-~11407~^~307~^45.^0^^~1~^^^^^^^^^^^~08/01/1984~
-~11407~^~318~^0.^0^^~1~^~AS~^^^^^^^^^^~02/01/2006~
-~11407~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2002~
-~11407~^~320~^0.^0^^~1~^~AS~^^^^^^^^^^~02/01/2006~
-~11407~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~
-~11407~^~417~^17.^0^^~1~^^^^^^^^^^^~08/01/1984~
-~11407~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~
-~11407~^~432~^17.^0^^~1~^^^^^^^^^^^~02/01/2006~
-~11407~^~435~^17.^0^^~4~^~NC~^^^^^^^^^^~02/01/2006~
-~11407~^~601~^0.^0^^~7~^~Z~^^^^^^^^^^~08/01/1984~
-~11408~^~208~^260.^0^^~4~^~NC~^^^^^^^^^^~08/01/1984~
-~11408~^~268~^1088.^0^^~4~^^^^^^^^^^^
-~11408~^~301~^9.^0^^~1~^^^^^^^^^^^~08/01/1984~
-~11408~^~304~^18.^2^^~1~^^^^^^^^^^^~08/01/1984~
-~11408~^~305~^77.^2^^~1~^^^^^^^^^^^~08/01/1984~
-~11408~^~306~^430.^4^36.^~1~^^^^^^^^^^^~08/01/1984~
-~11408~^~307~^490.^16^23.^~1~^^^^^^^^^^^~08/01/1984~
-~11408~^~318~^0.^0^^~4~^^^^^^^^^^^~08/01/1984~
-~11408~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2002~
-~11408~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~
-~11408~^~417~^22.^0^^~1~^^^^^^^^^^^~08/01/1984~
-~11408~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~
-~11408~^~432~^22.^0^^~1~^^^^^^^^^^^~12/01/1984~
-~11408~^~435~^22.^0^^~4~^~NC~^^^^^^^^^^~01/01/2001~
-~11408~^~601~^0.^0^^~7~^~Z~^^^^^^^^^^~08/01/1984~
-~11409~^~208~^333.^0^^~4~^~NC~^^^^^^^^^^~02/01/1995~
-~11409~^~268~^1393.^0^^~4~^^^^^^^^^^^
-~11409~^~301~^12.^0^^~1~^^^^^^^^^^^~08/01/1984~
-~11409~^~304~^23.^0^^~1~^^^^^^^^^^^~08/01/1984~
-~11409~^~305~^96.^0^^~1~^^^^^^^^^^^~08/01/1984~
-~11409~^~306~^539.^0^^~1~^^^^^^^^^^^~08/01/1984~
-~11409~^~307~^613.^0^^~1~^^^^^^^^^^^~08/01/1984~
-~11409~^~318~^0.^0^^~4~^^^^^^^^^^^~08/01/1984~
-~11409~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2002~
-~11409~^~320~^0.^0^^~4~^^^^^^^^^^^~06/01/2002~
-~11409~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~
-~11409~^~417~^22.^0^^~1~^^^^^^^^^^^~08/01/1984~
-~11409~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~
-~11409~^~432~^22.^0^^~1~^^^^^^^^^^^~12/01/1984~
-~11409~^~435~^22.^0^^~4~^~NC~^^^^^^^^^^~01/01/2001~
-~11409~^~601~^0.^0^^~7~^~Z~^^^^^^^^^^~08/01/1984~
-~11410~^~208~^129.^0^^~4~^~NC~^^^^^^^^^^~02/01/2017~
-~11410~^~268~^539.^0^^~4~^~NC~^^^^^^^^^^~02/01/2017~
-~11410~^~301~^15.^1^^~1~^~A~^^^^^^^^^^~02/01/1998~
-~11410~^~304~^19.^1^^~1~^~A~^^^^^^^^^^~02/01/1998~
-~11410~^~305~^87.^1^^~1~^~A~^^^^^^^^^^~02/01/1998~
-~11410~^~306~^394.^1^^~1~^~A~^^^^^^^^^^~02/01/1998~
-~11410~^~307~^49.^1^^~1~^~A~^^^^^^^^^^~02/01/1998~
-~11410~^~318~^0.^1^^~1~^~A~^^^^^^^^^^~02/01/1998~
-~11410~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2002~
-~11410~^~320~^0.^1^^~1~^~A~^^^^^^^^^^~06/01/2002~
-~11410~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~
-~11410~^~601~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/1999~
-~11411~^~208~^130.^0^^~4~^~NC~^^^^^^^^^^~02/01/2017~
-~11411~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2005~
-~11411~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2005~
-~11411~^~268~^544.^0^^~4~^~NC~^^^^^^^^^^~02/01/2017~
-~11411~^~301~^9.^2^^~1~^~A~^^^1^8.^10.^^^^^~03/01/2005~
-~11411~^~304~^21.^2^^~1~^~A~^^^1^21.^21.^^^^^~03/01/2005~
-~11411~^~305~^78.^2^^~1~^~A~^^^1^70.^86.^^^^^~03/01/2005~
-~11411~^~306~^400.^2^^~1~^~A~^^^1^390.^409.^^^^^~03/01/2005~
-~11411~^~307~^317.^2^^~1~^~A~^^^1^220.^414.^^^^^~03/01/2005~
-~11411~^~318~^4.^0^^~4~^~NC~^^^^^^^^^^~03/01/2005~
-~11411~^~320~^0.^0^^~4~^~NC~^^^^^^^^^^~03/01/2005~
-~11411~^~321~^2.^0^^~4~^~BFSN~^^^^^^^^^^~03/01/2005~
-~11411~^~322~^0.^0^^~4~^~BFSN~^^^^^^^^^^~03/01/2005~
-~11411~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~
-~11411~^~334~^0.^0^^~4~^~BFSN~^^^^^^^^^^~03/01/2005~
-~11411~^~337~^0.^0^^~4~^~BFSN~^^^^^^^^^^~03/01/2005~
-~11411~^~338~^12.^0^^~4~^~BFSN~^^^^^^^^^^~03/01/2005~
-~11411~^~417~^38.^2^^~1~^~A~^^^1^37.^39.^^^^^~03/01/2005~
-~11411~^~432~^38.^2^^~1~^~A~^^^^^^^^^^~03/01/2005~
-~11411~^~601~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2005~
-~11412~^~208~^148.^0^^~4~^~NC~^^^^^^^^^^~02/01/2017~
-~11412~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2005~
-~11412~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2005~
-~11412~^~268~^620.^0^^~4~^~NC~^^^^^^^^^^~02/01/2017~
-~11412~^~301~^10.^2^^~1~^~A~^^^1^10.^10.^^^^^~03/01/2005~
-~11412~^~304~^23.^2^^~1~^~A~^^^1^23.^24.^^^^^~03/01/2005~
-~11412~^~305~^90.^2^^~1~^~A~^^^1^85.^95.^^^^^~03/01/2005~
-~11412~^~306~^459.^2^^~1~^~A~^^^1^454.^464.^^^^^~03/01/2005~
-~11412~^~307~^373.^2^^~1~^~A~^^^1^251.^494.^^^^^~03/01/2005~
-~11412~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~
-~11412~^~417~^31.^2^^~1~^~A~^^^1^30.^31.^^^^^~03/01/2005~
-~11412~^~432~^31.^2^^~1~^~A~^^^^^^^^^^~03/01/2005~
-~11412~^~601~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2005~
-~11413~^~208~^357.^0^^~4~^~NC~^^^^^^^^^^~02/01/2007~
-~11413~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~10/01/2002~
-~11413~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~10/01/2002~
-~11413~^~268~^1493.^0^^~4~^~NC~^^^^^^^^^^~02/01/2007~
-~11413~^~301~^65.^2^^~1~^~A~^^^^^^^^^^~11/01/1996~
-~11413~^~304~^65.^2^^~1~^~A~^^^^^^^^^^~11/01/1996~
-~11413~^~305~^168.^2^^~1~^~A~^^^^^^^^^^~11/01/1996~
-~11413~^~306~^1001.^2^^~1~^~A~^^^^^^^^^^~11/01/1996~
-~11413~^~307~^55.^2^^~1~^~A~^^^^^^^^^^~11/01/1996~
-~11413~^~318~^0.^0^^~1~^~AS~^^^^^^^^^^~02/01/2007~
-~11413~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2002~
-~11413~^~320~^0.^0^^~1~^~AS~^^^^^^^^^^~02/01/2007~
-~11413~^~321~^0.^0^^~7~^~Z~^^^^^^^^^^~10/01/2002~
-~11413~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~10/01/2002~
-~11413~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~
-~11413~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~10/01/2002~
-~11413~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~10/01/2002~
-~11413~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~10/01/2002~
-~11413~^~417~^25.^2^^~1~^~A~^^^^^^^^^^~11/01/1996~
-~11413~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~
-~11413~^~432~^25.^2^^~1~^~A~^^^^^^^^^^~02/01/2007~
-~11413~^~435~^25.^0^^~4~^~NC~^^^^^^^^^^~02/01/2007~
-~11413~^~601~^0.^0^^~7~^~Z~^^^^^^^^^^~08/01/1984~
-~11414~^~208~^143.^0^^~4~^~NC~^^^^^^^^^^~08/01/1984~
-~11414~^~268~^598.^0^^~4~^^^^^^^^^^^
-~11414~^~301~^19.^0^^~1~^^^^^^^^^^^~08/01/1984~
-~11414~^~304~^15.^0^^~1~^^^^^^^^^^^~08/01/1984~
-~11414~^~305~^52.^0^^~1~^^^^^^^^^^^~08/01/1984~
-~11414~^~306~^254.^0^^~1~^^^^^^^^^^^~08/01/1984~
-~11414~^~307~^529.^0^^~1~^^^^^^^^^^^~08/01/1984~
-~11414~^~318~^157.^0^^~4~^~NC~^^^^^^^^^^~04/01/2002~
-~11414~^~319~^29.^0^^~4~^~NR~^^^^^^^^^^~04/01/2002~
-~11414~^~320~^32.^0^^~4~^~NC~^^^^^^^^^^~04/01/2002~
-~11414~^~321~^36.^0^^~4~^~NR~^^^^^^^^^^~04/01/2002~
-~11414~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~
-~11414~^~417~^7.^0^^~1~^^^^^^^^^^^~08/01/1984~
-~11414~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~
-~11414~^~432~^7.^0^^~1~^^^^^^^^^^^~12/01/1984~
-~11414~^~435~^7.^0^^~4~^~NC~^^^^^^^^^^~04/01/2002~
-~11414~^~601~^68.^0^^~1~^^^^^^^^^^^~08/01/1984~
-~11416~^~208~^15.^0^^~4~^~NC~^^^^^^^^^^~08/01/1984~
-~11416~^~268~^63.^0^^~4~^^^^^^^^^^^
-~11416~^~301~^39.^0^^~1~^^^^^^^^^^^~08/01/1984~
-~11416~^~304~^24.^1^^~1~^^^^^^^^^^^~08/01/1984~
-~11416~^~305~^49.^0^^~1~^^^^^^^^^^^~08/01/1984~
-~11416~^~306~^173.^1^^~1~^^^^^^^^^^^~08/01/1984~
-~11416~^~307~^5.^1^^~1~^^^^^^^^^^^~08/01/1984~
-~11416~^~318~^1947.^0^^~1~^^^^^^^^^^^~08/01/1984~
-~11416~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2002~
-~11416~^~320~^97.^0^^~1~^^^^^^^^^^^~06/01/2002~
-~11416~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~
-~11416~^~417~^59.^0^^~4~^^^^^^^^^^^~08/01/1984~
-~11416~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~
-~11416~^~432~^59.^0^^~4~^^^^^^^^^^^~12/01/1984~
-~11416~^~435~^59.^0^^~4~^~NC~^^^^^^^^^^~01/01/2001~
-~11416~^~601~^0.^0^^~7~^~Z~^^^^^^^^^^~08/01/1984~
-~11417~^~208~^15.^0^^~4~^~NC~^^^^^^^^^^~03/01/2007~
-~11417~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~
-~11417~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~
-~11417~^~268~^63.^0^^~4~^^^^^^^^^^^~03/01/2007~
-~11417~^~301~^37.^0^^~1~^^^^^^^^^^^~08/01/1984~
-~11417~^~304~^25.^1^^~1~^^^^^^^^^^^~08/01/1984~
-~11417~^~305~^34.^1^^~1~^^^^^^^^^^^~08/01/1984~
-~11417~^~306~^106.^1^^~1~^^^^^^^^^^^~08/01/1984~
-~11417~^~307~^6.^1^^~1~^^^^^^^^^^^~08/01/1984~
-~11417~^~318~^1734.^0^^~4~^~NC~^^^^^^^^^^~03/01/2007~
-~11417~^~319~^0.^0^^~4~^~BNA~^~11419~^^^^^^^^^~02/01/2003~
-~11417~^~320~^87.^0^^~4~^~NC~^^^^^^^^^^~03/01/2007~
-~11417~^~321~^1040.^0^^~4~^~BNA~^~11419~^^^^^^^^^~02/01/2003~
-~11417~^~322~^0.^0^^~4~^~BNA~^~11419~^^^^^^^^^~02/01/2003~
-~11417~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~
-~11417~^~334~^0.^0^^~4~^~BNA~^~11419~^^^^^^^^^~02/01/2003~
-~11417~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~
-~11417~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~
-~11417~^~417~^41.^0^^~4~^^^^^^^^^^^~08/01/1984~
-~11417~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~
-~11417~^~432~^41.^0^^~4~^^^^^^^^^^^~03/01/2007~
-~11417~^~435~^41.^0^^~4~^~NC~^^^^^^^^^^~03/01/2007~
-~11417~^~601~^0.^0^^~7~^~Z~^^^^^^^^^^~08/01/1984~
-~11418~^~208~^19.^0^^~4~^~NC~^^^^^^^^^^~08/01/1984~
-~11418~^~268~^79.^0^^~4~^^^^^^^^^^^
-~11418~^~301~^39.^0^^~1~^^^^^^^^^^^~08/01/1984~
-~11418~^~304~^38.^1^^~1~^^^^^^^^^^^~08/01/1984~
-~11418~^~305~^104.^0^^~1~^^^^^^^^^^^~08/01/1984~
-~11418~^~306~^436.^1^^~1~^^^^^^^^^^^~08/01/1984~
-~11418~^~307~^11.^1^^~1~^^^^^^^^^^^~08/01/1984~
-~11418~^~318~^1942.^0^^~1~^^^^^^^^^^^~08/01/1984~
-~11418~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2002~
-~11418~^~320~^97.^0^^~1~^^^^^^^^^^^~06/01/2002~
-~11418~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~
-~11418~^~417~^36.^0^^~4~^^^^^^^^^^^~08/01/1984~
-~11418~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~
-~11418~^~432~^36.^0^^~4~^^^^^^^^^^^~12/01/1984~
-~11418~^~435~^36.^0^^~4~^~NC~^^^^^^^^^^~01/01/2001~
-~11418~^~601~^0.^0^^~7~^~Z~^^^^^^^^^^~08/01/1984~
-~11419~^~208~^21.^0^^~4~^~NC~^^^^^^^^^^~03/01/2007~
-~11419~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2003~
-~11419~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2003~
-~11419~^~268~^88.^0^^~4~^^^^^^^^^^^~03/01/2007~
-~11419~^~301~^43.^1^^~1~^^^^^^^^^^^~08/01/1984~
-~11419~^~304~^38.^1^^~1~^^^^^^^^^^^~08/01/1984~
-~11419~^~305~^79.^1^^~1~^^^^^^^^^^^~08/01/1984~
-~11419~^~306~^438.^1^^~1~^^^^^^^^^^^~08/01/1984~
-~11419~^~307~^8.^1^^~1~^^^^^^^^^^^~08/01/1984~
-~11419~^~318~^1600.^0^^~4~^~NC~^^^^^^^^^^~03/01/2007~
-~11419~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2002~
-~11419~^~320~^80.^0^^~4~^~NC~^^^^^^^^^^~03/01/2007~
-~11419~^~321~^960.^0^^~4~^~T~^^^^^^^^^^~01/01/2003~
-~11419~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2003~
-~11419~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~
-~11419~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2003~
-~11419~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2003~
-~11419~^~338~^1747.^0^^~4~^~O~^^^^^^^^^^~01/01/2003~
-~11419~^~417~^25.^0^^~4~^^^^^^^^^^^~08/01/1984~
-~11419~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~
-~11419~^~432~^25.^0^^~4~^^^^^^^^^^^~03/01/2007~
-~11419~^~435~^25.^0^^~4~^~NC~^^^^^^^^^^~03/01/2007~
-~11419~^~601~^0.^0^^~7~^~Z~^^^^^^^^^^~08/01/1984~
-~11422~^~208~^26.^0^^~4~^~NC~^^^^^^^^^^~03/01/2007~
-~11422~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2003~
-~11422~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2003~
-~11422~^~268~^109.^0^^~4~^^^^^^^^^^^~03/01/2007~
-~11422~^~301~^21.^0^^~1~^^^^^^^^^^^~08/01/1984~
-~11422~^~304~^12.^0^^~1~^^^^^^^^^^^~08/01/1984~
-~11422~^~305~^44.^0^^~1~^^^^^^^^^^^~08/01/1984~
-~11422~^~306~^340.^0^^~1~^^^^^^^^^^^~08/01/1984~
-~11422~^~307~^1.^0^^~1~^^^^^^^^^^^~08/01/1984~
-~11422~^~318~^8513.^0^^~4~^~NC~^^^^^^^^^^~07/01/2012~
-~11422~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2002~
-~11422~^~320~^426.^0^^~4~^~NC~^^^^^^^^^^~07/01/2012~
-~11422~^~321~^3100.^0^^~4~^~T~^^^^^^^^^^~01/01/2003~
-~11422~^~322~^4016.^0^^~4~^~BFSN~^~11424~^^^^^^^^^~07/01/2012~
-~11422~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~
-~11422~^~334~^0.^0^^~4~^~BFSN~^~11424~^^^^^^^^^~07/01/2012~
-~11422~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2003~
-~11422~^~338~^1500.^0^^~4~^~T~^^^^^^^^^^~01/01/2003~
-~11422~^~417~^16.^0^^~4~^^^^^^^^^^^~08/01/1984~
-~11422~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~
-~11422~^~432~^16.^0^^~4~^^^^^^^^^^^~03/01/2007~
-~11422~^~435~^16.^0^^~4~^~NC~^^^^^^^^^^~03/01/2007~
-~11422~^~601~^0.^0^^~7~^~Z~^^^^^^^^^^~08/01/1984~
-~11422~^~636~^12.^0^^~1~^^^^^^^^^^^~08/01/1984~
-~11423~^~208~^20.^0^^~4~^~NC~^^^^^^^^^^~03/01/2007~
-~11423~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2003~
-~11423~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2003~
-~11423~^~268~^83.^0^^~4~^~NC~^^^^^^^^^^~03/01/2007~
-~11423~^~301~^15.^0^^~1~^^^^^^^^^^^~08/01/1984~
-~11423~^~304~^9.^0^^~1~^^^^^^^^^^^~08/01/1984~
-~11423~^~305~^30.^0^^~1~^^^^^^^^^^^~08/01/1984~
-~11423~^~306~^230.^0^^~1~^^^^^^^^^^^~08/01/1984~
-~11423~^~307~^1.^0^^~1~^^^^^^^^^^^~08/01/1984~
-~11423~^~318~^5755.^0^^~4~^~NC~^^^^^^^^^^~07/01/2012~
-~11423~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2002~
-~11423~^~320~^288.^0^^~4~^~NC~^^^^^^^^^^~07/01/2012~
-~11423~^~321~^2096.^0^^~4~^~BFSY~^~11422~^^^^^^^^^~01/01/2003~
-~11423~^~322~^2715.^0^^~4~^~BFSY~^~11422~^^^^^^^^^~07/01/2012~
-~11423~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~
-~11423~^~334~^0.^0^^~4~^~BFSY~^~11422~^^^^^^^^^~07/01/2012~
-~11423~^~337~^0.^0^^~4~^~BFSY~^~11422~^^^^^^^^^~01/01/2003~
-~11423~^~338~^1014.^0^^~4~^~BFSY~^~11422~^^^^^^^^^~01/01/2003~
-~11423~^~417~^9.^0^^~4~^^^^^^^^^^^~08/01/1984~
-~11423~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~
-~11423~^~432~^9.^0^^~4~^^^^^^^^^^^~03/01/2007~
-~11423~^~435~^9.^0^^~4~^~NC~^^^^^^^^^^~03/01/2007~
-~11423~^~601~^0.^0^^~7~^~Z~^^^^^^^^^^~08/01/1984~
-~11424~^~208~^34.^0^^~4~^~NC~^^^^^^^^^^~03/01/2007~
-~11424~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~10/01/2002~
-~11424~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~10/01/2002~
-~11424~^~268~^142.^0^^~4~^~NC~^^^^^^^^^^~03/01/2007~
-~11424~^~301~^26.^111^2.^~1~^^^^^^^^^^^~08/01/1984~
-~11424~^~304~^23.^62^0.^~1~^^^^^^^^^^^~08/01/1984~
-~11424~^~305~^35.^82^0.^~1~^^^^^^^^^^^~08/01/1984~
-~11424~^~306~^206.^67^7.^~1~^^^^^^^^^^^~08/01/1984~
-~11424~^~307~^5.^88^0.^~1~^^^^^^^^^^^~08/01/1984~
-~11424~^~318~^15563.^0^^~1~^~AS~^^^^^^^^^^~03/01/2007~
-~11424~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2002~
-~11424~^~320~^778.^0^^~1~^~AS~^^^^^^^^^^~03/01/2007~
-~11424~^~321~^6940.^5^3880.^~1~^~A~^^^1^3060.^10820.^1^-42360.^56240.^~4~^~10/01/2002~
-~11424~^~322~^4795.^5^2625.^~1~^~A~^^^1^2170.^7420.^1^-28558.^38148.^~4~^~10/01/2002~
-~11424~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~
-~11424~^~334~^0.^1^^~1~^~A~^^^^^^^^^^~10/01/2002~
-~11424~^~337~^0.^1^^~1~^~A~^^^^^^^^^^~10/01/2002~
-~11424~^~338~^0.^1^^~1~^~A~^^^^^^^^^^~10/01/2002~
-~11424~^~417~^12.^5^3.^~1~^^^^^^^^^^^~08/01/1984~
-~11424~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~
-~11424~^~432~^12.^5^3.^~1~^^^^^^^^^^^~03/01/2007~
-~11424~^~435~^12.^0^^~4~^~NC~^^^^^^^^^^~03/01/2007~
-~11424~^~601~^0.^0^^~7~^~Z~^^^^^^^^^^~08/01/1984~
-~11426~^~208~^104.^0^^~4~^~NC~^^^^^^^^^^~08/01/1984~
-~11426~^~268~^435.^0^^~4~^^^^^^^^^^^
-~11426~^~301~^37.^15^1.^~1~^^^^^^^^^^^~08/01/1984~
-~11426~^~304~^16.^12^0.^~1~^^^^^^^^^^^~08/01/1984~
-~11426~^~305~^45.^12^1.^~1~^^^^^^^^^^^~08/01/1984~
-~11426~^~306~^138.^15^9.^~1~^^^^^^^^^^^~08/01/1984~
-~11426~^~307~^208.^15^22.^~1~^^^^^^^^^^^~08/01/1984~
-~11426~^~318~^8298.^16^309.^~1~^^^^^^^^^^^~08/01/1984~
-~11426~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2002~
-~11426~^~320~^415.^16^15.^~1~^^^^^^^^^^^~06/01/2002~
-~11426~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~
-~11426~^~417~^35.^0^^~4~^^^^^^^^^^^~08/01/1984~
-~11426~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~
-~11426~^~432~^35.^0^^~4~^^^^^^^^^^^~12/01/1984~
-~11426~^~435~^35.^0^^~4~^~NC~^^^^^^^^^^~01/01/2001~
-~11426~^~601~^0.^0^^~7~^~Z~^^^^^^^^^^~08/01/1984~
-~11427~^~208~^20.^0^^~4~^~NC~^^^^^^^^^^~08/01/2012~
-~11427~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~08/01/2012~
-~11427~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~08/01/2012~
-~11427~^~268~^84.^0^^~4~^~NC~^^^^^^^^^^~08/01/2012~
-~11427~^~301~^65.^0^^~1~^^^^^^^^^^^~08/01/1984~
-~11427~^~304~^68.^1^^~1~^^^^^^^^^^^~08/01/1984~
-~11427~^~305~^44.^0^^~1~^^^^^^^^^^^~08/01/1984~
-~11427~^~306~^494.^1^^~1~^^^^^^^^^^^~08/01/1984~
-~11427~^~307~^45.^1^^~1~^^^^^^^^^^^~08/01/1984~
-~11427~^~318~^1320.^0^^~1~^^^^^^^^^^^~05/01/2007~
-~11427~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2002~
-~11427~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~
-~11427~^~417~^12.^0^^~4~^^^^^^^^^^^~08/01/1984~
-~11427~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~
-~11427~^~432~^12.^0^^~4~^^^^^^^^^^^~05/01/2007~
-~11427~^~435~^12.^0^^~4~^~NC~^^^^^^^^^^~05/01/2007~
-~11427~^~601~^0.^0^^~7~^~Z~^^^^^^^^^^~08/01/1984~
-~11428~^~208~^18.^0^^~4~^~NC~^^^^^^^^^^~08/01/1984~
-~11428~^~268~^75.^0^^~4~^^^^^^^^^^^
-~11428~^~301~^78.^1^^~1~^^^^^^^^^^^~08/01/1984~
-~11428~^~304~^67.^1^^~1~^^^^^^^^^^^~08/01/1984~
-~11428~^~305~^37.^1^^~1~^^^^^^^^^^^~08/01/1984~
-~11428~^~306~^488.^1^^~1~^^^^^^^^^^^~08/01/1984~
-~11428~^~307~^44.^1^^~1~^^^^^^^^^^^~08/01/1984~
-~11428~^~318~^1852.^0^^~1~^^^^^^^^^^^~08/01/1984~
-~11428~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2002~
-~11428~^~320~^93.^0^^~1~^^^^^^^^^^^~06/01/2002~
-~11428~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~
-~11428~^~417~^9.^0^^~4~^^^^^^^^^^^~08/01/1984~
-~11428~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~
-~11428~^~432~^9.^0^^~4~^^^^^^^^^^^~12/01/1984~
-~11428~^~435~^9.^0^^~4~^~NC~^^^^^^^^^^~01/01/2001~
-~11428~^~601~^0.^0^^~7~^~Z~^^^^^^^^^^~08/01/1984~
-~11429~^~208~^16.^0^^~4~^~NC~^^^^^^^^^^~03/01/2006~
-~11429~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~12/01/2002~
-~11429~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~12/01/2002~
-~11429~^~268~^66.^0^^~4~^~NC~^^^^^^^^^^~03/01/2006~
-~11429~^~301~^25.^26^1.^~6~^~JA~^^^3^15.^35.^18^21.^28.^~4~^~12/01/2002~
-~11429~^~304~^10.^25^0.^~6~^~JA~^^^3^7.^14.^18^9.^11.^~4~^~12/01/2002~
-~11429~^~305~^20.^25^1.^~6~^~JA~^^^3^12.^34.^18^16.^23.^~4~^~12/01/2002~
-~11429~^~306~^233.^25^10.^~6~^~JA~^^^3^177.^308.^18^210.^256.^~4~^~12/01/2002~
-~11429~^~307~^39.^30^3.^~6~^~JA~^^^3^20.^66.^18^32.^46.^~4~^~12/01/2002~
-~11429~^~318~^7.^0^^~1~^~AS~^^^^^^^^^^~05/01/2006~
-~11429~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2002~
-~11429~^~320~^0.^0^^~1~^~AS~^^^^^^^^^^~05/01/2006~
-~11429~^~321~^4.^4^1.^~1~^~A~^^^2^1.^10.^1^-11.^20.^~2, 3~^~12/01/2002~
-~11429~^~322~^0.^4^0.^~1~^~A~^^^2^0.^0.^^^^~2, 3~^~12/01/2002~
-~11429~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~
-~11429~^~334~^0.^4^0.^~1~^~A~^^^2^0.^0.^^^^~2, 3~^~12/01/2002~
-~11429~^~337~^0.^4^0.^~1~^~A~^^^2^0.^0.^^^^~2, 3~^~12/01/2002~
-~11429~^~338~^10.^4^0.^~1~^~A~^^^2^6.^14.^1^2.^16.^~2, 3~^~12/01/2002~
-~11429~^~417~^25.^19^3.^~6~^~JA~^^^3^7.^64.^18^16.^32.^~4~^~12/01/2002~
-~11429~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~
-~11429~^~432~^25.^19^3.^~6~^~JA~^^^3^7.^64.^18^16.^32.^^~03/01/2006~
-~11429~^~435~^25.^0^^~4~^~NC~^^^^^^^^^^~05/01/2006~
-~11429~^~601~^0.^0^^~7~^~Z~^^^^^^^^^^~08/01/1984~
-~11429~^~636~^7.^0^^~1~^^^^^^^^^^^~03/01/2006~
-~11430~^~208~^18.^0^^~4~^~NC~^^^^^^^^^^~02/01/2007~
-~11430~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2003~
-~11430~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2003~
-~11430~^~268~^76.^0^^~4~^~NC~^^^^^^^^^^~02/01/2007~
-~11430~^~301~^27.^1^^~1~^^^^^^^^^^^~08/01/1984~
-~11430~^~304~^16.^2^^~1~^^^^^^^^^^^~08/01/1984~
-~11430~^~305~^23.^2^^~1~^^^^^^^^^^^~08/01/1984~
-~11430~^~306~^227.^2^^~1~^^^^^^^^^^^~08/01/1984~
-~11430~^~307~^21.^2^^~1~^^^^^^^^^^^~08/01/1984~
-~11430~^~318~^0.^0^^~1~^~AS~^^^^^^^^^^~02/01/2007~
-~11430~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2002~
-~11430~^~320~^0.^0^^~1~^~AS~^^^^^^^^^^~02/01/2007~
-~11430~^~321~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2003~
-~11430~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2003~
-~11430~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~
-~11430~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2003~
-~11430~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2003~
-~11430~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2003~
-~11430~^~417~^28.^0^^~4~^^^^^^^^^^^~08/01/1984~
-~11430~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~
-~11430~^~432~^28.^0^^~4~^^^^^^^^^^^~02/01/2007~
-~11430~^~435~^28.^0^^~4~^~NC~^^^^^^^^^^~02/01/2007~
-~11430~^~601~^0.^0^^~7~^~Z~^^^^^^^^^^~08/01/1984~
-~11431~^~208~^17.^0^^~4~^~NC~^^^^^^^^^^~02/01/2007~
-~11431~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2003~
-~11431~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2003~
-~11431~^~268~^71.^0^^~4~^~NC~^^^^^^^^^^~02/01/2007~
-~11431~^~301~^17.^1^^~1~^^^^^^^^^^^~08/01/1984~
-~11431~^~304~^9.^1^^~1~^^^^^^^^^^^~08/01/1984~
-~11431~^~305~^24.^1^^~1~^^^^^^^^^^^~08/01/1984~
-~11431~^~306~^285.^1^^~1~^^^^^^^^^^^~08/01/1984~
-~11431~^~307~^13.^1^^~1~^^^^^^^^^^^~08/01/1984~
-~11431~^~318~^0.^0^^~4~^~NC~^^^^^^^^^^~02/01/2007~
-~11431~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2002~
-~11431~^~320~^0.^0^^~4~^~NC~^^^^^^^^^^~02/01/2007~
-~11431~^~321~^0.^0^^~4~^~BFSY~^~11430~^^^^^^^^^~01/01/2003~
-~11431~^~322~^0.^0^^~4~^~BFSY~^~11430~^^^^^^^^^~01/01/2003~
-~11431~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~
-~11431~^~334~^0.^0^^~4~^~BFSY~^~11430~^^^^^^^^^~01/01/2003~
-~11431~^~337~^0.^0^^~4~^~BFSY~^~11430~^^^^^^^^^~01/01/2003~
-~11431~^~338~^0.^0^^~4~^~BFSY~^~11430~^^^^^^^^^~01/01/2003~
-~11431~^~417~^17.^0^^~4~^^^^^^^^^^^~08/01/1984~
-~11431~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~
-~11431~^~432~^17.^0^^~4~^^^^^^^^^^^~02/01/2007~
-~11431~^~435~^17.^0^^~4~^~NC~^^^^^^^^^^~02/01/2007~
-~11431~^~601~^0.^0^^~7~^~Z~^^^^^^^^^^~08/01/1984~
-~11432~^~208~^271.^0^^~4~^~NC~^^^^^^^^^^~08/01/1984~
-~11432~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~08/01/2011~
-~11432~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~08/01/2011~
-~11432~^~268~^1134.^0^^~4~^^^^^^^^^^^
-~11432~^~301~^629.^1^^~1~^^^^^^^^^^^~08/01/1984~
-~11432~^~304~^170.^1^^~1~^^^^^^^^^^^~08/01/1984~
-~11432~^~305~^204.^1^^~1~^^^^^^^^^^^~08/01/1984~
-~11432~^~306~^3494.^1^^~1~^^^^^^^^^^^~08/01/1984~
-~11432~^~307~^278.^1^^~1~^^^^^^^^^^^~08/01/1984~
-~11432~^~318~^0.^1^^~1~^^^^^^^^^^^~08/01/1984~
-~11432~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2002~
-~11432~^~320~^0.^0^^~4~^~NC~^^^^^^^^^^~08/01/2011~
-~11432~^~321~^0.^0^^~4~^~BFSN~^~11430~^^^^^^^^^~08/01/2011~
-~11432~^~322~^0.^0^^~4~^~BFSN~^~11430~^^^^^^^^^~08/01/2011~
-~11432~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~
-~11432~^~334~^0.^0^^~4~^~BFSN~^~11430~^^^^^^^^^~08/01/2011~
-~11432~^~337~^0.^0^^~4~^~BFSN~^~11430~^^^^^^^^^~08/01/2011~
-~11432~^~338~^0.^0^^~4~^~BFSN~^~11430~^^^^^^^^^~08/01/2011~
-~11432~^~417~^295.^0^^~4~^^^^^^^^^^^~08/01/1984~
-~11432~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~
-~11432~^~432~^295.^0^^~4~^^^^^^^^^^^~12/01/1984~
-~11432~^~435~^295.^0^^~4~^~NC~^^^^^^^^^^~01/01/2001~
-~11432~^~601~^0.^0^^~7~^~Z~^^^^^^^^^^~08/01/1984~
-~11435~^~208~^37.^0^^~4~^~NC~^^^^^^^^^^~08/01/2012~
-~11435~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2003~
-~11435~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2003~
-~11435~^~268~^157.^0^^~4~^~NC~^^^^^^^^^^~08/01/2012~
-~11435~^~301~^43.^3^^~6~^~JA~^^^2^35.^47.^^^^~2, 3~^~08/01/2012~
-~11435~^~304~^20.^3^^~6~^~JA~^^^2^13.^23.^^^^~2, 3~^~08/01/2012~
-~11435~^~305~^53.^3^^~6~^~JA~^^^2^42.^58.^^^^~2, 3~^~08/01/2012~
-~11435~^~306~^305.^3^^~6~^~JA~^^^2^241.^337.^^^^~2, 3~^~08/01/2012~
-~11435~^~307~^12.^2^^~6~^~JA~^^^2^4.^20.^^^^^~08/01/2012~
-~11435~^~318~^2.^0^^~1~^~AS~^^^^^^^^^^~08/01/2012~
-~11435~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2002~
-~11435~^~320~^0.^0^^~1~^~AS~^^^^^^^^^^~08/01/2012~
-~11435~^~321~^1.^1^^~1~^~A~^^^^^^^^^^~08/01/2012~
-~11435~^~322~^0.^1^^~1~^~A~^^^^^^^^^~1~^~08/01/2012~
-~11435~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~
-~11435~^~334~^1.^1^^~1~^~A~^^^^^^^^^^~08/01/2012~
-~11435~^~337~^14.^1^^~1~^~A~^^^^^^^^^^~08/01/2012~
-~11435~^~338~^19.^1^^~1~^~A~^^^^^^^^^^~08/01/2012~
-~11435~^~417~^21.^4^2.^~1~^^^^^^^^^^^~08/01/1984~
-~11435~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~
-~11435~^~432~^21.^4^2.^~1~^^^^^^^^^^^~03/01/2007~
-~11435~^~435~^21.^0^^~4~^~NC~^^^^^^^^^^~03/01/2007~
-~11435~^~601~^0.^0^^~7~^~Z~^^^^^^^^^^~08/01/1984~
-~11436~^~208~^30.^0^^~4~^~NC~^^^^^^^^^^~08/01/2012~
-~11436~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2003~
-~11436~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2003~
-~11436~^~268~^127.^0^^~4~^~NC~^^^^^^^^^^~08/01/2012~
-~11436~^~301~^18.^1^^~6~^~JA~^^^2^18.^48.^^^^^~08/01/2012~
-~11436~^~304~^10.^1^^~6~^~JA~^^^2^10.^23.^^^^^~08/01/2012~
-~11436~^~305~^41.^1^^~6~^~JA~^^^2^41.^56.^^^^^~08/01/2012~
-~11436~^~306~^216.^1^^~6~^~JA~^^^2^216.^326.^^^^^~08/01/2012~
-~11436~^~307~^5.^1^^~6~^~JA~^^^2^5.^20.^^^^^~08/01/2012~
-~11436~^~318~^2.^0^^~4~^~NC~^^^^^^^^^^~03/01/2007~
-~11436~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2002~
-~11436~^~320~^0.^0^^~4~^~NC~^^^^^^^^^^~03/01/2007~
-~11436~^~321~^1.^0^^~4~^~BFSY~^~11435~^^^^^^^^^~01/01/2003~
-~11436~^~322~^0.^0^^~4~^~BFSY~^~11435~^^^^^^^^^~01/01/2003~
-~11436~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~
-~11436~^~334~^0.^0^^~4~^~BFSY~^~11435~^^^^^^^^^~01/01/2003~
-~11436~^~337~^10.^0^^~4~^~BFSY~^~11435~^^^^^^^^^~08/01/2012~
-~11436~^~338~^13.^0^^~4~^~BFSY~^~11435~^^^^^^^^^~08/01/2012~
-~11436~^~417~^15.^0^^~1~^^^^^^^^^^^~08/01/1984~
-~11436~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~
-~11436~^~432~^15.^0^^~1~^^^^^^^^^^^~03/01/2007~
-~11436~^~435~^15.^0^^~4~^~NC~^^^^^^^^^^~03/01/2007~
-~11436~^~601~^0.^0^^~7~^~Z~^^^^^^^^^^~08/01/1984~
-~11437~^~208~^82.^0^^~4~^~NC~^^^^^^^^^^~08/01/1984~
-~11437~^~268~^343.^0^^~4~^^^^^^^^^^^
-~11437~^~301~^60.^1^^~1~^^^^^^^^^^^~08/01/1984~
-~11437~^~304~^23.^1^^~1~^^^^^^^^^^^~08/01/1984~
-~11437~^~305~^75.^1^^~1~^^^^^^^^^^^~08/01/1984~
-~11437~^~306~^380.^1^^~1~^^^^^^^^^^^~08/01/1984~
-~11437~^~307~^20.^1^^~1~^^^^^^^^^^^~08/01/1984~
-~11437~^~318~^0.^1^^~1~^^^^^^^^^^^~08/01/1984~
-~11437~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2002~
-~11437~^~320~^0.^1^^~1~^^^^^^^^^^^~06/01/2002~
-~11437~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~
-~11437~^~417~^26.^0^^~4~^^^^^^^^^^^~08/01/1984~
-~11437~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~
-~11437~^~432~^26.^0^^~4~^^^^^^^^^^^~12/01/1984~
-~11437~^~435~^26.^0^^~4~^~NC~^^^^^^^^^^~01/01/2001~
-~11437~^~601~^0.^0^^~7~^~Z~^^^^^^^^^^~08/01/1984~
-~11438~^~208~^68.^0^^~4~^~NC~^^^^^^^^^^~03/01/2007~
-~11438~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2003~
-~11438~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2003~
-~11438~^~268~^284.^0^^~4~^~NC~^^^^^^^^^^~03/01/2007~
-~11438~^~301~^47.^0^^~1~^^^^^^^^^^^~08/01/1984~
-~11438~^~304~^18.^0^^~1~^^^^^^^^^^^~08/01/1984~
-~11438~^~305~^56.^0^^~1~^^^^^^^^^^^~08/01/1984~
-~11438~^~306~^283.^0^^~1~^^^^^^^^^^^~08/01/1984~
-~11438~^~307~^16.^0^^~1~^^^^^^^^^^^~08/01/1984~
-~11438~^~318~^0.^0^^~1~^~AS~^^^^^^^^^^~03/01/2007~
-~11438~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2002~
-~11438~^~320~^0.^0^^~1~^~AS~^^^^^^^^^^~03/01/2007~
-~11438~^~321~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2003~
-~11438~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2003~
-~11438~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~
-~11438~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2003~
-~11438~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2003~
-~11438~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2003~
-~11438~^~417~^15.^0^^~4~^^^^^^^^^^^~08/01/1984~
-~11438~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~
-~11438~^~432~^15.^0^^~4~^^^^^^^^^^^~03/01/2007~
-~11438~^~435~^15.^0^^~4~^~NC~^^^^^^^^^^~03/01/2007~
-~11438~^~601~^0.^0^^~7~^~Z~^^^^^^^^^^~08/01/1984~
-~11439~^~208~^19.^0^^~4~^~NC~^^^^^^^^^^~03/01/2006~
-~11439~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~
-~11439~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~
-~11439~^~268~^78.^0^^~4~^~NC~^^^^^^^^^^~03/01/2006~
-~11439~^~301~^30.^180^0.^~1~^^^^^^^^^^^~08/01/1984~
-~11439~^~304~^13.^138^0.^~1~^^^^^^^^^^^~08/01/1984~
-~11439~^~305~^20.^142^0.^~1~^^^^^^^^^^^~08/01/1984~
-~11439~^~306~^170.^136^3.^~1~^^^^^^^^^^^~08/01/1984~
-~11439~^~307~^661.^167^8.^~1~^^^^^^^^^^^~08/01/1984~
-~11439~^~318~^18.^0^^~4~^~NC~^^^^^^^^^^~03/01/2006~
-~11439~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2002~
-~11439~^~320~^1.^0^^~4~^~NC~^^^^^^^^^^~03/01/2006~
-~11439~^~321~^8.^0^^~4~^~O~^^^^^^^^^^~02/01/2003~
-~11439~^~322~^5.^0^^~4~^~O~^^^^^^^^^^~02/01/2003~
-~11439~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~
-~11439~^~334~^0.^0^^~4~^~BFSN~^~11110~^^^^^^^^^~02/01/2003~
-~11439~^~337~^0.^0^^~4~^~BFSN~^~11110~^^^^^^^^^~02/01/2003~
-~11439~^~338~^295.^0^^~4~^~BFSN~^~11110~^^^^^^^^^~02/01/2003~
-~11439~^~417~^24.^0^^~4~^^^^^^^^^^^~08/01/1984~
-~11439~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~
-~11439~^~432~^24.^0^^~4~^^^^^^^^^^^~03/01/2006~
-~11439~^~435~^24.^0^^~4~^~NC~^^^^^^^^^^~03/01/2006~
-~11439~^~601~^0.^0^^~7~^~Z~^^^^^^^^^^~08/01/1984~
-~11442~^~208~^26.^0^^~4~^~NC~^^^^^^^^^^~03/01/2007~
-~11442~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~
-~11442~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~
-~11442~^~268~^109.^0^^~4~^^^^^^^^^^^~03/01/2007~
-~11442~^~301~^54.^2^^~1~^^^^^^^^^^^~08/01/1984~
-~11442~^~304~^67.^0^^~1~^^^^^^^^^^^~08/01/1984~
-~11442~^~305~^5.^2^^~1~^^^^^^^^^^^~08/01/1984~
-~11442~^~306~^226.^2^^~1~^^^^^^^^^^^~08/01/1984~
-~11442~^~307~^9.^3^6.^~1~^^^^^^^^^^^~08/01/1984~
-~11442~^~318~^0.^0^^~1~^~AS~^^^^^^^^^^~03/01/2007~
-~11442~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2002~
-~11442~^~320~^0.^0^^~1~^~AS~^^^^^^^^^^~03/01/2007~
-~11442~^~321~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~
-~11442~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~
-~11442~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~
-~11442~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~
-~11442~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~
-~11442~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~
-~11442~^~417~^85.^0^^~4~^^^^^^^^^^^~08/01/1984~
-~11442~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~
-~11442~^~432~^85.^0^^~4~^^^^^^^^^^^~03/01/2007~
-~11442~^~435~^85.^0^^~4~^~NC~^^^^^^^^^^~03/01/2007~
-~11442~^~601~^0.^0^^~7~^~Z~^^^^^^^^^^~08/01/1984~
-~11444~^~208~^49.^0^^~4~^~NC~^^^^^^^^^^~03/01/2007~
-~11444~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~
-~11444~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~
-~11444~^~268~^205.^0^^~4~^^^^^^^^^^^~03/01/2007~
-~11444~^~301~^72.^2^^~1~^^^^^^^^^^^~08/01/1984~
-~11444~^~304~^144.^0^^~4~^^^^^^^^^^^~08/01/1984~
-~11444~^~305~^157.^0^^~1~^^^^^^^^^^^~08/01/1984~
-~11444~^~306~^63.^0^^~1~^^^^^^^^^^^~08/01/1984~
-~11444~^~307~^67.^0^^~1~^^^^^^^^^^^~08/01/1984~
-~11444~^~318~^118.^0^^~4~^~NC~^^^^^^^^^^~03/01/2007~
-~11444~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2002~
-~11444~^~320~^6.^0^^~4~^~NC~^^^^^^^^^^~03/01/2007~
-~11444~^~321~^71.^0^^~4~^~O~^^^^^^^^^^~02/01/2003~
-~11444~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~
-~11444~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~
-~11444~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~
-~11444~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~
-~11444~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~
-~11444~^~417~^182.^0^^~4~^^^^^^^^^^^~08/01/1984~
-~11444~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~
-~11444~^~432~^182.^0^^~4~^^^^^^^^^^^~03/01/2007~
-~11444~^~435~^182.^0^^~4~^~NC~^^^^^^^^^^~03/01/2007~
-~11444~^~601~^0.^0^^~7~^~Z~^^^^^^^^^^~08/01/1984~
-~11445~^~208~^43.^0^^~4~^~NC~^^^^^^^^^^~03/01/2007~
-~11445~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~
-~11445~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~
-~11445~^~268~^180.^0^^~4~^^^^^^^^^^^~03/01/2007~
-~11445~^~301~^168.^6^20.^~1~^^^^^^^^^^^~08/01/1984~
-~11445~^~304~^121.^3^6.^~1~^^^^^^^^^^^~08/01/1984~
-~11445~^~305~^42.^0^^~1~^^^^^^^^^^^~08/01/1984~
-~11445~^~306~^89.^0^^~1~^^^^^^^^^^^~08/01/1984~
-~11445~^~307~^233.^3^149.^~1~^^^^^^^^^^^~08/01/1984~
-~11445~^~318~^116.^0^^~4~^~NC~^^^^^^^^^^~03/01/2007~
-~11445~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2002~
-~11445~^~320~^6.^0^^~4~^~NC~^^^^^^^^^^~03/01/2007~
-~11445~^~321~^70.^0^^~4~^~O~^^^^^^^^^^~02/01/2003~
-~11445~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~
-~11445~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~
-~11445~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~
-~11445~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~
-~11445~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~
-~11445~^~417~^180.^0^^~1~^^^^^^^^^^^~08/01/1984~
-~11445~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~
-~11445~^~432~^180.^0^^~1~^^^^^^^^^^^~03/01/2007~
-~11445~^~435~^180.^0^^~4~^~NC~^^^^^^^^^^~03/01/2007~
-~11445~^~601~^0.^0^^~7~^~Z~^^^^^^^^^^~08/01/1984~
-~11446~^~208~^35.^0^^~4~^~NC~^^^^^^^^^^~03/01/2007~
-~11446~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~
-~11446~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~
-~11446~^~268~^146.^0^^~4~^^^^^^^^^^^~03/01/2007~
-~11446~^~301~^70.^3^13.^~1~^^^^^^^^^^^~08/01/1984~
-~11446~^~304~^2.^0^^~1~^^^^^^^^^^^~08/01/1984~
-~11446~^~305~^58.^2^^~1~^^^^^^^^^^^~08/01/1984~
-~11446~^~306~^356.^2^^~1~^^^^^^^^^^^~08/01/1984~
-~11446~^~307~^48.^3^18.^~1~^^^^^^^^^^^~08/01/1984~
-~11446~^~318~^5202.^0^^~4~^~NC~^^^^^^^^^^~03/01/2007~
-~11446~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2002~
-~11446~^~320~^260.^0^^~4~^~NC~^^^^^^^^^^~03/01/2007~
-~11446~^~321~^3121.^0^^~4~^~O~^^^^^^^^^^~02/01/2003~
-~11446~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~
-~11446~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~
-~11446~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~
-~11446~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~
-~11446~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~
-~11446~^~417~^146.^0^^~4~^^^^^^^^^^^~08/01/1984~
-~11446~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~
-~11446~^~432~^146.^0^^~4~^^^^^^^^^^^~03/01/2007~
-~11446~^~435~^146.^0^^~4~^~NC~^^^^^^^^^^~03/01/2007~
-~11446~^~601~^0.^0^^~7~^~Z~^^^^^^^^^^~08/01/1984~
-~11447~^~208~^27.^0^^~4~^~NC~^^^^^^^^^^~08/01/1984~
-~11447~^~268~^113.^0^^~4~^^^^^^^^^^^
-~11447~^~301~^19.^1^^~1~^^^^^^^^^^^~08/01/1984~
-~11447~^~304~^12.^1^^~1~^^^^^^^^^^^~08/01/1984~
-~11447~^~305~^30.^1^^~1~^^^^^^^^^^^~08/01/1984~
-~11447~^~306~^184.^1^^~1~^^^^^^^^^^^~08/01/1984~
-~11447~^~307~^15.^1^^~1~^^^^^^^^^^^~08/01/1984~
-~11447~^~318~^0.^0^^~1~^^^^^^^^^^^~08/01/1984~
-~11447~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2002~
-~11447~^~320~^0.^0^^~1~^^^^^^^^^^^~06/01/2002~
-~11447~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~
-~11447~^~417~^102.^0^^~4~^^^^^^^^^^^~08/01/1984~
-~11447~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~
-~11447~^~432~^102.^0^^~4~^^^^^^^^^^^~12/01/1984~
-~11447~^~435~^102.^0^^~4~^~NC~^^^^^^^^^^~01/01/2001~
-~11447~^~601~^0.^0^^~7~^~Z~^^^^^^^^^^~08/01/1984~
-~11448~^~208~^22.^0^^~4~^~NC~^^^^^^^^^^~08/01/1984~
-~11448~^~268~^92.^0^^~4~^^^^^^^^^^^
-~11448~^~301~^22.^1^^~1~^^^^^^^^^^^~08/01/1984~
-~11448~^~304~^12.^1^^~1~^^^^^^^^^^^~08/01/1984~
-~11448~^~305~^21.^1^^~1~^^^^^^^^^^^~08/01/1984~
-~11448~^~306~^107.^1^^~1~^^^^^^^^^^^~08/01/1984~
-~11448~^~307~^11.^1^^~1~^^^^^^^^^^^~08/01/1984~
-~11448~^~318~^0.^0^^~1~^^^^^^^^^^^~08/01/1984~
-~11448~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2002~
-~11448~^~320~^0.^0^^~1~^^^^^^^^^^^~06/01/2002~
-~11448~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~
-~11448~^~417~^57.^0^^~4~^^^^^^^^^^^~08/01/1984~
-~11448~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~
-~11448~^~432~^57.^0^^~4~^^^^^^^^^^^~12/01/1984~
-~11448~^~435~^57.^0^^~4~^~NC~^^^^^^^^^^~01/01/2001~
-~11448~^~601~^0.^0^^~7~^~Z~^^^^^^^^^^~08/01/1984~
-~11450~^~208~^147.^0^^~4~^~NC~^^^^^^^^^^~02/01/2003~
-~11450~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~
-~11450~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~
-~11450~^~268~^614.^0^^~4~^~NC~^^^^^^^^^^~02/01/2003~
-~11450~^~301~^197.^2^^~1~^^^^^^^^^^^~08/01/1984~
-~11450~^~304~^65.^1^^~1~^^^^^^^^^^^~08/01/1984~
-~11450~^~305~^194.^2^^~1~^^^^^^^^^^^~08/01/1984~
-~11450~^~306~^620.^1^^~1~^^^^^^^^^^^~08/01/1984~
-~11450~^~307~^15.^1^^~1~^^^^^^^^^^^~08/01/1984~
-~11450~^~318~^180.^2^^~1~^^^^^^^^^^^~06/01/2005~
-~11450~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2002~
-~11450~^~320~^9.^2^^~1~^^^^^^^^^^^~06/01/2005~
-~11450~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~
-~11450~^~417~^165.^1^^~1~^^^^^^^^^^^~08/01/1984~
-~11450~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~
-~11450~^~432~^165.^1^^~1~^^^^^^^^^^^~12/01/1984~
-~11450~^~435~^165.^0^^~4~^~NC~^^^^^^^^^^~06/01/2005~
-~11450~^~601~^0.^0^^~7~^~Z~^^^^^^^^^^~08/01/1984~
-~11450~^~636~^50.^1^^~1~^^^^^^^^^^^~08/01/1984~
-~11451~^~208~^141.^0^^~4~^~NC~^^^^^^^^^^~08/01/1984~
-~11451~^~268~^590.^0^^~4~^^^^^^^^^^^
-~11451~^~301~^145.^2^^~1~^^^^^^^^^^^~08/01/1984~
-~11451~^~304~^60.^1^^~1~^^^^^^^^^^^~08/01/1984~
-~11451~^~305~^158.^2^^~1~^^^^^^^^^^^~08/01/1984~
-~11451~^~306~^539.^1^^~1~^^^^^^^^^^^~08/01/1984~
-~11451~^~307~^14.^1^^~1~^^^^^^^^^^^~08/01/1984~
-~11451~^~318~^156.^1^^~1~^^^^^^^^^^^~08/01/1984~
-~11451~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2002~
-~11451~^~320~^8.^1^^~1~^^^^^^^^^^^~06/01/2002~
-~11451~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~
-~11451~^~417~^111.^1^^~1~^^^^^^^^^^^~08/01/1984~
-~11451~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~
-~11451~^~432~^111.^1^^~1~^^^^^^^^^^^~12/01/1984~
-~11451~^~435~^111.^0^^~4~^~NC~^^^^^^^^^^~01/01/2001~
-~11451~^~601~^0.^0^^~7~^~Z~^^^^^^^^^^~08/01/1984~
-~11451~^~636~^50.^1^^~1~^^^^^^^^^^^~08/01/1984~
-~11452~^~208~^122.^0^^~4~^~NC~^^^^^^^^^^~08/01/1984~
-~11452~^~268~^510.^0^^~4~^^^^^^^^^^^
-~11452~^~301~^67.^8^5.^~1~^^^^^^^^^^^~08/01/1984~
-~11452~^~304~^72.^8^8.^~1~^^^^^^^^^^^~08/01/1984~
-~11452~^~305~^164.^8^18.^~1~^^^^^^^^^^^~08/01/1984~
-~11452~^~306~^484.^8^62.^~1~^^^^^^^^^^^~08/01/1984~
-~11452~^~307~^14.^8^1.^~1~^^^^^^^^^^^~08/01/1984~
-~11452~^~318~^11.^2^^~1~^^^^^^^^^^^~08/01/1984~
-~11452~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2002~
-~11452~^~320~^1.^2^^~1~^^^^^^^^^^^~06/01/2002~
-~11452~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~
-~11452~^~417~^172.^8^24.^~1~^^^^^^^^^^^~08/01/1984~
-~11452~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~
-~11452~^~432~^172.^8^24.^~1~^^^^^^^^^^^~12/01/1984~
-~11452~^~435~^172.^0^^~4~^~NC~^^^^^^^^^^~01/01/2001~
-~11452~^~601~^0.^0^^~7~^~Z~^^^^^^^^^^~08/01/1984~
-~11453~^~208~^81.^0^^~4~^~NC~^^^^^^^^^^~03/01/2007~
-~11453~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~
-~11453~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~
-~11453~^~268~^339.^0^^~4~^^^^^^^^^^^~03/01/2007~
-~11453~^~301~^59.^3^9.^~1~^^^^^^^^^^^~08/01/1984~
-~11453~^~304~^60.^3^5.^~1~^^^^^^^^^^^~08/01/1984~
-~11453~^~305~^135.^3^28.^~1~^^^^^^^^^^^~08/01/1984~
-~11453~^~306~^355.^3^41.^~1~^^^^^^^^^^^~08/01/1984~
-~11453~^~307~^10.^1^^~1~^^^^^^^^^^^~08/01/1984~
-~11453~^~318~^40.^0^^~4~^~NC~^^^^^^^^^^~03/01/2007~
-~11453~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2002~
-~11453~^~320~^2.^0^^~4~^~NC~^^^^^^^^^^~03/01/2007~
-~11453~^~321~^12.^0^^~4~^~BFSN~^~11044~^^^^^^^^^~04/01/2003~
-~11453~^~322~^12.^0^^~4~^~BFSN~^~11044~^^^^^^^^^~04/01/2003~
-~11453~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~
-~11453~^~334~^12.^0^^~4~^~BFSN~^~11044~^^^^^^^^^~04/01/2003~
-~11453~^~337~^0.^0^^~4~^~BFSN~^~11044~^^^^^^^^^~04/01/2003~
-~11453~^~338~^0.^0^^~4~^~BFSN~^~11044~^^^^^^^^^~04/01/2003~
-~11453~^~417~^80.^1^^~1~^^^^^^^^^^^~08/01/1984~
-~11453~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~
-~11453~^~432~^80.^1^^~1~^^^^^^^^^^^~03/01/2007~
-~11453~^~435~^80.^0^^~4~^~NC~^^^^^^^^^^~03/01/2007~
-~11453~^~601~^0.^0^^~7~^~Z~^^^^^^^^^^~08/01/1984~
-~11454~^~208~^125.^0^^~4~^~NC~^^^^^^^^^^~08/01/1984~
-~11454~^~268~^523.^0^^~4~^^^^^^^^^^^
-~11454~^~301~^82.^1^^~1~^^^^^^^^^^^~08/01/1984~
-~11454~^~304~^96.^1^^~1~^^^^^^^^^^^~08/01/1984~
-~11454~^~305~^216.^1^^~1~^^^^^^^^^^^~08/01/1984~
-~11454~^~306~^567.^1^^~1~^^^^^^^^^^^~08/01/1984~
-~11454~^~307~^14.^1^^~1~^^^^^^^^^^^~08/01/1984~
-~11454~^~318~^17.^1^^~1~^^^^^^^^^^^~08/01/1984~
-~11454~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2002~
-~11454~^~320~^1.^1^^~1~^^^^^^^^^^^~06/01/2002~
-~11454~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~
-~11454~^~417~^127.^1^^~1~^^^^^^^^^^^~08/01/1984~
-~11454~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~
-~11454~^~432~^127.^1^^~1~^^^^^^^^^^^~12/01/1984~
-~11454~^~435~^127.^0^^~4~^~NC~^^^^^^^^^^~01/01/2001~
-~11454~^~601~^0.^0^^~7~^~Z~^^^^^^^^^^~08/01/1984~
-~11457~^~208~^23.^0^^~4~^~NC~^^^^^^^^^^~10/01/2008~
-~11457~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~09/01/2002~
-~11457~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~09/01/2002~
-~11457~^~268~^97.^0^^~4~^~NC~^^^^^^^^^^~10/01/2008~
-~11457~^~301~^99.^9^4.^~1~^^^^^^^^^^^~08/01/1984~
-~11457~^~304~^79.^7^4.^~1~^^^^^^^^^^^~08/01/1984~
-~11457~^~305~^49.^7^3.^~1~^^^^^^^^^^^~08/01/1984~
-~11457~^~306~^558.^10^28.^~1~^^^^^^^^^^^~08/01/1984~
-~11457~^~307~^79.^10^10.^~1~^^^^^^^^^^^~08/01/1984~
-~11457~^~318~^9377.^0^^~1~^~AS~^^^^^^^^^^~10/01/2008~
-~11457~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2002~
-~11457~^~320~^469.^0^^~1~^~AS~^^^^^^^^^^~10/01/2008~
-~11457~^~321~^5626.^5^766.^~1~^~A~^^^1^3970.^8900.^5^3655.^7597.^~4~^~09/01/2002~
-~11457~^~322~^0.^4^0.^~1~^~A~^^^1^0.^0.^4^0.^0.^~4~^~09/01/2002~
-~11457~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~
-~11457~^~334~^0.^4^0.^~1~^~A~^^^1^0.^0.^3^0.^0.^~4~^~09/01/2002~
-~11457~^~337~^0.^7^0.^~1~^~A~^^^1^0.^0.^2^0.^0.^~4~^~09/01/2002~
-~11457~^~338~^12198.^7^1930.^~1~^~A~^^^1^9500.^15940.^2^3890.^20506.^~4~^~09/01/2002~
-~11457~^~417~^194.^6^35.^~1~^^^^^^^^^^^~08/01/1984~
-~11457~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~
-~11457~^~432~^194.^6^35.^~1~^^^^^^^^^^^~10/01/2008~
-~11457~^~435~^194.^0^^~4~^~NC~^^^^^^^^^^~10/01/2008~
-~11457~^~601~^0.^0^^~7~^~Z~^^^^^^^^^^~08/01/1984~
-~11457~^~636~^9.^0^^~1~^^^^^^^^^^^~08/01/1984~
-~11458~^~208~^23.^0^^~4~^~NC~^^^^^^^^^^~12/01/2006~
-~11458~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~10/01/2002~
-~11458~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~10/01/2002~
-~11458~^~268~^96.^0^^~4~^^^^^^^^^^^~10/01/2008~
-~11458~^~301~^136.^12^3.^~1~^^^^^^^^^^^~12/01/2002~
-~11458~^~304~^87.^12^4.^~1~^^^^^^^^^^^~12/01/2002~
-~11458~^~305~^56.^12^2.^~1~^^^^^^^^^^^~12/01/2002~
-~11458~^~306~^466.^12^18.^~1~^^^^^^^^^^^~12/01/2002~
-~11458~^~307~^70.^8^4.^~1~^^^^^^^^^^^~12/01/2002~
-~11458~^~318~^10481.^0^^~1~^~AS~^^^^^^^^^^~10/01/2008~
-~11458~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2002~
-~11458~^~320~^524.^0^^~1~^~AS~^^^^^^^^^^~10/01/2008~
-~11458~^~321~^6288.^28^1002.^~1~^~A~^^^1^4130.^9480.^5^3711.^8865.^~4~^~09/01/2002~
-~11458~^~322~^0.^4^0.^~1~^~A~^^^1^0.^0.^1^0.^0.^~4~^~09/01/2002~
-~11458~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~
-~11458~^~334~^0.^4^0.^~1~^~A~^^^1^0.^0.^1^0.^0.^~4~^~09/01/2002~
-~11458~^~337~^0.^4^0.^~1~^~A~^^^1^0.^0.^1^0.^0.^~4~^~09/01/2002~
-~11458~^~338~^11308.^24^2650.^~1~^~A~^^^1^5300.^20300.^4^3947.^18668.^~4~^~09/01/2002~
-~11458~^~417~^146.^3^13.^~1~^^^^^^^^^^^~12/01/2002~
-~11458~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~
-~11458~^~432~^146.^3^13.^~1~^^^^^^^^^^^~10/01/2008~
-~11458~^~435~^146.^0^^~4~^~NC~^^^^^^^^^^~10/01/2008~
-~11458~^~601~^0.^0^^~7~^~Z~^^^^^^^^^^~08/01/1984~
-~11459~^~208~^19.^0^^~4~^~NC~^^^^^^^^^^~08/01/1984~
-~11459~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2015~
-~11459~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2015~
-~11459~^~268~^79.^0^^~4~^^^^^^^^^^^
-~11459~^~301~^83.^272^1.^~1~^^^^^^^^^^^~08/01/1984~
-~11459~^~304~^56.^193^0.^~1~^^^^^^^^^^^~08/01/1984~
-~11459~^~305~^32.^162^0.^~1~^^^^^^^^^^^~08/01/1984~
-~11459~^~306~^230.^105^7.^~1~^^^^^^^^^^^~08/01/1984~
-~11459~^~307~^319.^130^5.^~1~^^^^^^^^^^^~08/01/1984~
-~11459~^~318~^8084.^0^^~4~^~NC~^^^^^^^^^^~01/01/2015~
-~11459~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2002~
-~11459~^~320~^404.^0^^~4~^~NC~^^^^^^^^^^~01/01/2015~
-~11459~^~321~^4850.^0^^~4~^~BFSN~^~11461~^^^^^^^^^~01/01/2015~
-~11459~^~322~^0.^0^^~4~^~BFSN~^~11461~^^^^^^^^^~01/01/2015~
-~11459~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~
-~11459~^~334~^0.^0^^~4~^~BFSN~^~11461~^^^^^^^^^~01/01/2015~
-~11459~^~337~^0.^0^^~4~^~BFSN~^~11461~^^^^^^^^^~01/01/2015~
-~11459~^~338~^8722.^0^^~4~^~BFSN~^~11461~^^^^^^^^^~01/01/2015~
-~11459~^~417~^58.^3^4.^~1~^^^^^^^^^^^~08/01/1984~
-~11459~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~
-~11459~^~432~^58.^3^4.^~1~^^^^^^^^^^^~12/01/1984~
-~11459~^~435~^58.^0^^~4~^~NC~^^^^^^^^^^~01/01/2001~
-~11459~^~601~^0.^0^^~7~^~Z~^^^^^^^^^^~08/01/1984~
-~11461~^~208~^23.^0^^~4~^~NC~^^^^^^^^^^~12/01/2006~
-~11461~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~12/01/2002~
-~11461~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~12/01/2002~
-~11461~^~268~^96.^0^^~4~^^^^^^^^^^^~01/01/2009~
-~11461~^~301~^127.^6^4.^~1~^^^^^^^^^^^~08/01/1984~
-~11461~^~304~^76.^6^3.^~1~^^^^^^^^^^^~08/01/1984~
-~11461~^~305~^44.^6^1.^~1~^^^^^^^^^^^~08/01/1984~
-~11461~^~306~^346.^6^13.^~1~^^^^^^^^^^^~08/01/1984~
-~11461~^~307~^322.^0^^~4~^~BD~^~11459~^^^^^^^^^~01/01/2009~
-~11461~^~318~^9801.^0^^~4~^~NC~^^^^^^^^^^~01/01/2009~
-~11461~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2002~
-~11461~^~320~^490.^0^^~4~^~NC~^^^^^^^^^^~01/01/2009~
-~11461~^~321~^5881.^0^^~4~^~BFSN~^~11854~^^^^^^^^^~12/01/2002~
-~11461~^~322~^0.^0^^~4~^~BFSN~^~11854~^^^^^^^^^~12/01/2002~
-~11461~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~
-~11461~^~334~^0.^0^^~4~^~BFSN~^~11854~^^^^^^^^^~12/01/2002~
-~11461~^~337~^0.^0^^~4~^~BFSN~^~11854~^^^^^^^^^~12/01/2002~
-~11461~^~338~^10575.^0^^~4~^~BFSN~^~11854~^^^^^^^^^~12/01/2002~
-~11461~^~417~^98.^0^^~1~^^^^^^^^^^^~08/01/1984~
-~11461~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~
-~11461~^~432~^98.^0^^~1~^^^^^^^^^^^~01/01/2009~
-~11461~^~435~^98.^0^^~4~^~NC~^^^^^^^^^^~01/01/2009~
-~11461~^~601~^0.^0^^~7~^~Z~^^^^^^^^^^~08/01/1984~
-~11463~^~208~^29.^0^^~4~^~NC~^^^^^^^^^^~07/01/2007~
-~11463~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~09/01/2002~
-~11463~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~09/01/2002~
-~11463~^~268~^120.^0^^~4~^~NC~^^^^^^^^^^~07/01/2007~
-~11463~^~301~^129.^11^4.^~1~^~A~^^^1^94.^155.^6^119.^139.^~2, 3~^~07/01/2007~
-~11463~^~304~^75.^11^2.^~1~^~A~^^^1^66.^85.^9^70.^80.^~2, 3~^~07/01/2007~
-~11463~^~305~^49.^11^0.^~1~^~A~^^^1^45.^52.^6^47.^50.^~2, 3~^~07/01/2007~
-~11463~^~306~^346.^11^7.^~1~^~A~^^^1^292.^372.^8^327.^364.^~2, 3~^~07/01/2007~
-~11463~^~307~^74.^25^8.^~1~^^^^^^^^^^^~03/01/2006~
-~11463~^~318~^11726.^0^^~4~^~NC~^^^^^^^^^^~07/01/2007~
-~11463~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2002~
-~11463~^~320~^586.^0^^~4~^~NC~^^^^^^^^^^~07/01/2007~
-~11463~^~321~^7035.^0^^~4~^~BFSN~^~11458~^^^^^^^^^~07/01/2007~
-~11463~^~322~^0.^0^^~4~^~BFSN~^~11458~^^^^^^^^^~07/01/2007~
-~11463~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~
-~11463~^~334~^0.^0^^~4~^~BFSN~^~11458~^^^^^^^^^~07/01/2007~
-~11463~^~337~^0.^0^^~4~^~BFSN~^~11458~^^^^^^^^^~07/01/2007~
-~11463~^~338~^12651.^0^^~4~^~BFSN~^~11458~^^^^^^^^^~03/01/2006~
-~11463~^~417~^145.^11^8.^~1~^~A~^^^1^130.^218.^7^125.^164.^~2, 3~^~07/01/2007~
-~11463~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~10/01/2002~
-~11463~^~432~^145.^11^8.^~1~^~A~^^^1^130.^218.^7^125.^164.^^~07/01/2007~
-~11463~^~435~^145.^0^^~4~^~NC~^^^^^^^^^^~07/01/2007~
-~11463~^~601~^0.^0^^~7~^~Z~^^^^^^^^^^~08/01/1984~
-~11464~^~208~^34.^0^^~4~^~NC~^^^^^^^^^^~07/01/2007~
-~11464~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~12/01/2002~
-~11464~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~12/01/2002~
-~11464~^~268~^143.^0^^~4~^~NC~^^^^^^^^^^~07/01/2007~
-~11464~^~301~^153.^6^6.^~1~^~A~^^^1^^^^^^^~12/01/2002~
-~11464~^~304~^82.^6^6.^~1~^~A~^^^1^^^^^^^~12/01/2002~
-~11464~^~305~^50.^6^2.^~1~^~A~^^^1^^^^^^^~12/01/2002~
-~11464~^~306~^302.^6^20.^~1~^~A~^^^1^^^^^^^~12/01/2002~
-~11464~^~307~^97.^6^7.^~1~^~A~^^^1^^^^^^^~12/01/2002~
-~11464~^~318~^12061.^0^^~4~^~NC~^^^^^^^^^^~07/01/2007~
-~11464~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2002~
-~11464~^~320~^603.^0^^~4~^~NC~^^^^^^^^^^~07/01/2007~
-~11464~^~321~^7237.^0^^~4~^~BFSN~^~11457~^^^^^^^^^~07/01/2007~
-~11464~^~322~^0.^0^^~4~^~BFSN~^~11457~^^^^^^^^^~07/01/2007~
-~11464~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~
-~11464~^~334~^0.^0^^~4~^~BFSN~^~11457~^^^^^^^^^~07/01/2007~
-~11464~^~337~^0.^0^^~4~^~BFSN~^~11457~^^^^^^^^^~07/01/2007~
-~11464~^~338~^15690.^0^^~4~^~BFSN~^~11457~^^^^^^^^^~12/01/2002~
-~11464~^~417~^121.^6^3.^~1~^~A~^^^1^^^^^^^~12/01/2002~
-~11464~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~
-~11464~^~432~^121.^6^3.^~1~^~A~^^^1^^^^^^^~07/01/2007~
-~11464~^~435~^121.^0^^~4~^~NC~^^^^^^^^^^~07/01/2007~
-~11464~^~601~^0.^0^^~7~^~Z~^^^^^^^^^^~08/01/1984~
-~11467~^~208~^19.^0^^~4~^~NC~^^^^^^^^^^~04/01/2009~
-~11467~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~
-~11467~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~
-~11467~^~268~^78.^0^^~4~^~NC~^^^^^^^^^^~04/01/2009~
-~11467~^~301~^21.^11^1.^~6~^~JA~^^^2^19.^23.^8^18.^23.^~2, 3~^~04/01/2009~
-~11467~^~304~^20.^11^1.^~6~^~JA~^^^2^12.^21.^6^17.^22.^~2, 3~^~04/01/2009~
-~11467~^~305~^32.^11^1.^~6~^~JA~^^^2^28.^38.^8^29.^35.^~2, 3~^~04/01/2009~
-~11467~^~306~^222.^11^7.^~6~^~JA~^^^2^212.^269.^8^204.^240.^~2, 3~^~04/01/2009~
-~11467~^~307~^2.^11^0.^~6~^~JA~^^^2^2.^4.^8^1.^2.^~1, 2, 3~^~04/01/2009~
-~11467~^~318~^150.^0^^~4~^~NC~^^^^^^^^^^~05/01/2009~
-~11467~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2002~
-~11467~^~320~^8.^0^^~4~^~NC~^^^^^^^^^^~05/01/2009~
-~11467~^~321~^90.^0^^~4~^~T~^^^^^^^^^^~02/01/2003~
-~11467~^~322~^0.^0^^~4~^~BFSN~^~11641~^^^^^^^^^~04/01/2009~
-~11467~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~
-~11467~^~334~^0.^0^^~4~^~BFSN~^~11641~^^^^^^^^^~04/01/2009~
-~11467~^~337~^0.^0^^~4~^~BFSN~^~11641~^^^^^^^^^~04/01/2009~
-~11467~^~338~^290.^0^^~4~^~T~^^^^^^^^^^~02/01/2003~
-~11467~^~417~^19.^8^1.^~6~^~JA~^^^2^5.^23.^6^15.^21.^~2, 3~^~04/01/2009~
-~11467~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~
-~11467~^~432~^19.^8^1.^~6~^~JA~^^^2^5.^23.^6^15.^21.^^~04/01/2009~
-~11467~^~435~^19.^0^^~4~^~NC~^^^^^^^^^^~05/01/2009~
-~11467~^~601~^0.^0^^~7~^~Z~^^^^^^^^^^~08/01/1984~
-~11468~^~208~^19.^0^^~4~^~NC~^^^^^^^^^^~02/01/2017~
-~11468~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~
-~11468~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~
-~11468~^~268~^81.^0^^~4~^~NC~^^^^^^^^^^~02/01/2017~
-~11468~^~301~^22.^30^0.^~6~^~JA~^^^6^14.^40.^8^20.^24.^~2, 3~^~04/01/2009~
-~11468~^~304~^16.^31^0.^~6~^~JA~^^^6^8.^21.^23^14.^16.^~2, 3~^~04/01/2009~
-~11468~^~305~^29.^30^1.^~6~^~JA~^^^6^18.^38.^21^27.^31.^~2, 3~^~04/01/2009~
-~11468~^~306~^177.^31^8.^~6~^~JA~^^^6^92.^294.^21^159.^195.^~2, 3~^~04/01/2009~
-~11468~^~307~^1.^31^0.^~6~^~JA~^^^6^0.^10.^3^0.^1.^~2, 3~^~04/01/2009~
-~11468~^~318~^1117.^0^^~4~^~NC~^^^^^^^^^^~04/01/2009~
-~11468~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2002~
-~11468~^~320~^56.^0^^~4~^~NC~^^^^^^^^^^~04/01/2009~
-~11468~^~321~^670.^3^^~1~^~A~^^^1^670.^670.^0^^^~4~^~04/01/2009~
-~11468~^~322~^0.^0^^~4~^~BFSN~^~11467~^^^^^^^^^~04/01/2009~
-~11468~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~
-~11468~^~334~^0.^0^^~4~^~BFSN~^~11467~^^^^^^^^^~04/01/2009~
-~11468~^~337~^0.^0^^~4~^~BFSN~^~11467~^^^^^^^^^~04/01/2009~
-~11468~^~338~^315.^0^^~4~^~BFSN~^~11467~^^^^^^^^^~04/01/2009~
-~11468~^~417~^23.^2^^~1~^~A~^^^1^16.^31.^1^^^^~04/01/2009~
-~11468~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~
-~11468~^~432~^23.^2^^~1~^~A~^^^1^16.^31.^1^^^^~04/01/2009~
-~11468~^~435~^23.^0^^~4~^~NC~^^^^^^^^^^~04/01/2009~
-~11468~^~601~^0.^0^^~7~^~Z~^^^^^^^^^^~08/01/1984~
-~11471~^~208~^13.^0^^~4~^~NC~^^^^^^^^^^~03/01/2007~
-~11471~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~
-~11471~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~
-~11471~^~268~^54.^0^^~4~^^^^^^^^^^^~03/01/2007~
-~11471~^~301~^12.^6^0.^~1~^^^^^^^^^^^~08/01/1984~
-~11471~^~304~^13.^6^0.^~1~^^^^^^^^^^^~08/01/1984~
-~11471~^~305~^21.^6^0.^~1~^^^^^^^^^^^~08/01/1984~
-~11471~^~306~^96.^6^5.^~1~^^^^^^^^^^^~08/01/1984~
-~11471~^~307~^5.^6^0.^~1~^^^^^^^^^^^~08/01/1984~
-~11471~^~318~^102.^0^^~4~^~NC~^^^^^^^^^^~03/01/2007~
-~11471~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2002~
-~11471~^~320~^5.^0^^~4~^~NC~^^^^^^^^^^~03/01/2007~
-~11471~^~321~^61.^0^^~4~^~BFSN~^~11468~^^^^^^^^^~02/01/2003~
-~11471~^~322~^0.^0^^~4~^~BFSN~^~11468~^^^^^^^^^~02/01/2003~
-~11471~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~
-~11471~^~334~^0.^0^^~4~^~BFSN~^~11468~^^^^^^^^^~02/01/2003~
-~11471~^~337~^0.^0^^~4~^~BFSN~^~11468~^^^^^^^^^~02/01/2003~
-~11471~^~338~^198.^0^^~4~^~BFSN~^~11468~^^^^^^^^^~02/01/2003~
-~11471~^~417~^10.^6^0.^~1~^^^^^^^^^^^~08/01/1984~
-~11471~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~
-~11471~^~432~^10.^6^0.^~1~^^^^^^^^^^^~03/01/2007~
-~11471~^~435~^10.^0^^~4~^~NC~^^^^^^^^^^~03/01/2007~
-~11471~^~601~^0.^0^^~7~^~Z~^^^^^^^^^^~08/01/1984~
-~11473~^~208~^20.^0^^~4~^~NC~^^^^^^^^^^~08/01/1984~
-~11473~^~268~^84.^0^^~4~^^^^^^^^^^^
-~11473~^~301~^18.^6^0.^~1~^^^^^^^^^^^~08/01/1984~
-~11473~^~304~^23.^6^0.^~1~^^^^^^^^^^^~08/01/1984~
-~11473~^~305~^35.^6^0.^~1~^^^^^^^^^^^~08/01/1984~
-~11473~^~306~^209.^6^11.^~1~^^^^^^^^^^^~08/01/1984~
-~11473~^~307~^5.^6^0.^~1~^^^^^^^^^^^~08/01/1984~
-~11473~^~318~^279.^6^11.^~1~^^^^^^^^^^^~08/01/1984~
-~11473~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2002~
-~11473~^~320~^14.^6^0.^~1~^^^^^^^^^^^~06/01/2002~
-~11473~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~
-~11473~^~417~^12.^6^1.^~1~^^^^^^^^^^^~08/01/1984~
-~11473~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~
-~11473~^~432~^12.^6^1.^~1~^^^^^^^^^^^~12/01/1984~
-~11473~^~435~^12.^0^^~4~^~NC~^^^^^^^^^^~01/01/2001~
-~11473~^~601~^0.^0^^~7~^~Z~^^^^^^^^^^~08/01/1984~
-~11474~^~208~^25.^0^^~4~^~NC~^^^^^^^^^^~03/01/2007~
-~11474~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~
-~11474~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~
-~11474~^~268~^105.^0^^~4~^^^^^^^^^^^~03/01/2007~
-~11474~^~301~^20.^6^1.^~1~^^^^^^^^^^^~08/01/1984~
-~11474~^~304~^27.^6^0.^~1~^^^^^^^^^^^~08/01/1984~
-~11474~^~305~^41.^6^1.^~1~^^^^^^^^^^^~08/01/1984~
-~11474~^~306~^253.^6^6.^~1~^^^^^^^^^^^~08/01/1984~
-~11474~^~307~^6.^6^0.^~1~^^^^^^^^^^^~08/01/1984~
-~11474~^~318~^201.^0^^~4~^~NC~^^^^^^^^^^~03/01/2007~
-~11474~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2002~
-~11474~^~320~^10.^0^^~4~^~NC~^^^^^^^^^^~03/01/2007~
-~11474~^~321~^120.^0^^~4~^~BFSN~^~11468~^^^^^^^^^~02/01/2003~
-~11474~^~322~^0.^0^^~4~^~BFSN~^~11468~^^^^^^^^^~02/01/2003~
-~11474~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~
-~11474~^~334~^0.^0^^~4~^~BFSN~^~11468~^^^^^^^^^~02/01/2003~
-~11474~^~337~^0.^0^^~4~^~BFSN~^~11468~^^^^^^^^^~02/01/2003~
-~11474~^~338~^388.^0^^~4~^~BFSN~^~11468~^^^^^^^^^~02/01/2003~
-~11474~^~417~^13.^6^1.^~1~^^^^^^^^^^^~08/01/1984~
-~11474~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~
-~11474~^~432~^13.^6^1.^~1~^^^^^^^^^^^~03/01/2007~
-~11474~^~435~^13.^0^^~4~^~NC~^^^^^^^^^^~03/01/2007~
-~11474~^~601~^0.^0^^~7~^~Z~^^^^^^^^^^~08/01/1984~
-~11475~^~208~^18.^0^^~4~^~NC~^^^^^^^^^^~08/01/1984~
-~11475~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~08/01/2011~
-~11475~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~08/01/2011~
-~11475~^~268~^75.^0^^~4~^^^^^^^^^^^
-~11475~^~301~^19.^1^^~1~^^^^^^^^^^^~08/01/1984~
-~11475~^~304~^23.^1^^~1~^^^^^^^^^^^~08/01/1984~
-~11475~^~305~^36.^1^^~1~^^^^^^^^^^^~08/01/1984~
-~11475~^~306~^182.^7^14.^~1~^^^^^^^^^^^~08/01/1984~
-~11475~^~307~^1.^7^0.^~1~^^^^^^^^^^^~08/01/1984~
-~11475~^~318~^217.^0^^~4~^~NC~^^^^^^^^^^~08/01/2011~
-~11475~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2002~
-~11475~^~320~^11.^0^^~4~^~NC~^^^^^^^^^^~08/01/2011~
-~11475~^~321~^130.^0^^~4~^~BFSN~^~11641~^^^^^^^^^~08/01/2011~
-~11475~^~322~^0.^0^^~4~^~BFSN~^~11641~^^^^^^^^^~08/01/2011~
-~11475~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~
-~11475~^~334~^0.^0^^~4~^~BFSN~^~11641~^^^^^^^^^~08/01/2011~
-~11475~^~337~^0.^0^^~4~^~BFSN~^~11641~^^^^^^^^^~08/01/2011~
-~11475~^~338~^2308.^0^^~4~^~BFSN~^~11641~^^^^^^^^^~08/01/2011~
-~11475~^~417~^30.^3^10.^~1~^^^^^^^^^^^~08/01/1984~
-~11475~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~
-~11475~^~432~^30.^3^10.^~1~^^^^^^^^^^^~12/01/1984~
-~11475~^~435~^30.^0^^~4~^~NC~^^^^^^^^^^~01/01/2001~
-~11475~^~601~^0.^0^^~7~^~Z~^^^^^^^^^^~08/01/1984~
-~11476~^~208~^16.^0^^~4~^~NC~^^^^^^^^^^~03/01/2007~
-~11476~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~
-~11476~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~
-~11476~^~268~^67.^0^^~4~^^^^^^^^^^^~03/01/2007~
-~11476~^~301~^15.^0^^~1~^^^^^^^^^^^~08/01/1984~
-~11476~^~304~^19.^0^^~1~^^^^^^^^^^^~08/01/1984~
-~11476~^~305~^28.^0^^~1~^^^^^^^^^^^~08/01/1984~
-~11476~^~306~^140.^0^^~1~^^^^^^^^^^^~08/01/1984~
-~11476~^~307~^1.^0^^~1~^^^^^^^^^^^~08/01/1984~
-~11476~^~318~^85.^0^^~4~^~NC~^^^^^^^^^^~03/01/2007~
-~11476~^~319~^0.^0^^~4~^~BNA~^~11468~^^^^^^^^^~02/01/2003~
-~11476~^~320~^4.^0^^~4~^~NC~^^^^^^^^^^~03/01/2007~
-~11476~^~321~^51.^0^^~4~^~BNA~^~11468~^^^^^^^^^~02/01/2003~
-~11476~^~322~^0.^0^^~4~^~BNA~^~11468~^^^^^^^^^~02/01/2003~
-~11476~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~
-~11476~^~334~^0.^0^^~4~^~BNA~^~11468~^^^^^^^^^~02/01/2003~
-~11476~^~337~^0.^0^^~4~^~BFSN~^~11468~^^^^^^^^^~02/01/2003~
-~11476~^~338~^250.^0^^~4~^~BFSN~^~11468~^^^^^^^^^~02/01/2003~
-~11476~^~417~^21.^0^^~1~^^^^^^^^^^^~08/01/1984~
-~11476~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~
-~11476~^~432~^21.^0^^~1~^^^^^^^^^^^~03/01/2007~
-~11476~^~435~^21.^0^^~4~^~NC~^^^^^^^^^^~03/01/2007~
-~11476~^~601~^0.^0^^~7~^~Z~^^^^^^^^^^~08/01/1984~
-~11477~^~208~^17.^0^^~4~^~NC~^^^^^^^^^^~04/01/2009~
-~11477~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~10/01/2002~
-~11477~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~10/01/2002~
-~11477~^~268~^70.^0^^~4~^~NC~^^^^^^^^^^~04/01/2009~
-~11477~^~301~^16.^10^0.^~6~^~JA~^^^3^10.^22.^5^14.^18.^~2, 3~^~04/01/2009~
-~11477~^~304~^18.^10^0.^~6~^~JA~^^^3^15.^23.^4^15.^19.^~2, 3~^~04/01/2009~
-~11477~^~305~^38.^10^0.^~6~^~JA~^^^3^32.^42.^5^35.^40.^~2, 3~^~04/01/2009~
-~11477~^~306~^261.^10^6.^~6~^~JA~^^^3^227.^290.^1^215.^305.^~2, 3~^~04/01/2009~
-~11477~^~307~^8.^10^5.^~6~^~JA~^^^3^0.^53.^3^-9.^24.^~2, 3~^~04/01/2009~
-~11477~^~318~^200.^0^^~4~^~NC~^^^^^^^^^^~04/01/2009~
-~11477~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2002~
-~11477~^~320~^10.^0^^~4~^~NC~^^^^^^^^^^~04/01/2009~
-~11477~^~321~^120.^7^1.^~6~^~JA~^^^3^0.^410.^1^104.^135.^~2, 3~^~10/01/2002~
-~11477~^~322~^0.^1^^~1~^~A~^^^^^^^^^^~10/01/2002~
-~11477~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~
-~11477~^~334~^0.^1^^~1~^~A~^^^^^^^^^^~10/01/2002~
-~11477~^~337~^0.^1^^~1~^~A~^^^^^^^^^^~10/01/2002~
-~11477~^~338~^2125.^1^^~1~^~A~^^^^^^^^^^~10/01/2002~
-~11477~^~417~^24.^8^1.^~6~^~JA~^^^3^7.^40.^4^19.^28.^~2, 3~^~04/01/2009~
-~11477~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2009~
-~11477~^~432~^24.^8^1.^~6~^~JA~^^^3^7.^40.^4^19.^28.^^~04/01/2009~
-~11477~^~435~^24.^0^^~4~^~NC~^^^^^^^^^^~04/01/2009~
-~11477~^~601~^0.^0^^~7~^~Z~^^^^^^^^^^~08/01/1984~
-~11478~^~208~^15.^0^^~4~^~NC~^^^^^^^^^^~06/01/2009~
-~11478~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~10/01/2002~
-~11478~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~10/01/2002~
-~11478~^~268~^64.^0^^~4~^~NC~^^^^^^^^^^~06/01/2009~
-~11478~^~301~^18.^4^0.^~1~^~A~^^^1^16.^20.^3^15.^20.^~2, 3~^~04/01/2009~
-~11478~^~304~^19.^4^1.^~1~^~A~^^^1^14.^22.^3^13.^24.^~2, 3~^~04/01/2009~
-~11478~^~305~^37.^4^2.^~1~^~A~^^^1^31.^41.^3^29.^44.^~2, 3~^~04/01/2009~
-~11478~^~306~^264.^4^16.^~1~^~A~^^^1^228.^303.^3^210.^316.^~2, 3~^~04/01/2009~
-~11478~^~307~^3.^4^1.^~1~^~A~^^^1^2.^7.^3^-1.^7.^~1, 2, 3~^~04/01/2009~
-~11478~^~318~^1117.^0^^~4~^~NC~^^^^^^^^^^~06/01/2009~
-~11478~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2002~
-~11478~^~320~^56.^0^^~4~^~NC~^^^^^^^^^^~06/01/2009~
-~11478~^~321~^670.^3^^~1~^~A~^^^^^^^^^^~04/01/2009~
-~11478~^~322~^0.^0^^~4~^~BFSY~^~11477~^^^^^^^^^~04/01/2009~
-~11478~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~
-~11478~^~334~^0.^0^^~4~^~BFSY~^~11477~^^^^^^^^^~04/01/2009~
-~11478~^~337~^0.^0^^~4~^~BFSY~^~11477~^^^^^^^^^~04/01/2009~
-~11478~^~338~^1150.^6^650.^~1~^~A~^^^1^500.^1800.^1^-7109.^9409.^~4~^~04/01/2009~
-~11478~^~417~^28.^2^^~1~^~A~^^^1^27.^29.^1^^^^~04/01/2009~
-~11478~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~
-~11478~^~432~^28.^2^^~1~^~A~^^^1^27.^29.^1^^^^~04/01/2009~
-~11478~^~435~^28.^0^^~4~^~NC~^^^^^^^^^^~06/01/2009~
-~11478~^~601~^0.^0^^~7~^~Z~^^^^^^^^^^~08/01/1984~
-~11479~^~208~^17.^0^^~4~^~NC~^^^^^^^^^^~08/01/1984~
-~11479~^~268~^70.^0^^~4~^~NC~^^^^^^^^^^~06/01/2013~
-~11479~^~301~^18.^12^1.^~1~^^^^^^^^^^^~08/01/1984~
-~11479~^~304~^13.^6^1.^~1~^^^^^^^^^^^~08/01/1984~
-~11479~^~305~^28.^6^2.^~1~^^^^^^^^^^^~08/01/1984~
-~11479~^~306~^218.^3^1.^~1~^^^^^^^^^^^~08/01/1984~
-~11479~^~307~^2.^6^0.^~1~^^^^^^^^^^^~08/01/1984~
-~11479~^~318~^198.^0^^~4~^~NC~^^^^^^^^^^~10/01/2002~
-~11479~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2002~
-~11479~^~320~^10.^0^^~4~^~NC~^^^^^^^^^^~10/01/2002~
-~11479~^~321~^119.^0^^~4~^~BFSN~^~11477~^^^^^^^^^~10/01/2002~
-~11479~^~322~^0.^0^^~4~^~BFSN~^~11477~^^^^^^^^^~10/01/2002~
-~11479~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~
-~11479~^~334~^0.^0^^~4~^~BFSN~^~11477~^^^^^^^^^~10/01/2002~
-~11479~^~337~^0.^0^^~4~^~BFSN~^~11477~^^^^^^^^^~10/01/2002~
-~11479~^~338~^2102.^0^^~4~^~BFSN~^~11477~^^^^^^^^^~10/01/2002~
-~11479~^~417~^10.^0^^~1~^^^^^^^^^^^~08/01/1984~
-~11479~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~
-~11479~^~432~^10.^0^^~1~^^^^^^^^^^^~10/01/2002~
-~11479~^~435~^10.^0^^~4~^~NC~^^^^^^^^^^~10/01/2002~
-~11479~^~601~^0.^0^^~7~^~Z~^^^^^^^^^^~08/01/1984~
-~11480~^~208~^17.^0^^~4~^~NC~^^^^^^^^^^~08/01/1984~
-~11480~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~10/01/2002~
-~11480~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~10/01/2002~
-~11480~^~268~^71.^0^^~4~^^^^^^^^^^^~03/01/2007~
-~11480~^~301~^17.^0^^~1~^^^^^^^^^^^~08/01/1984~
-~11480~^~304~^13.^0^^~1~^^^^^^^^^^^~08/01/1984~
-~11480~^~305~^25.^0^^~1~^^^^^^^^^^^~08/01/1984~
-~11480~^~306~^194.^0^^~1~^^^^^^^^^^^~08/01/1984~
-~11480~^~307~^2.^0^^~1~^^^^^^^^^^^~08/01/1984~
-~11480~^~318~^177.^0^^~4~^~NC~^^^^^^^^^^~03/01/2007~
-~11480~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2002~
-~11480~^~320~^9.^0^^~4~^~NC~^^^^^^^^^^~03/01/2007~
-~11480~^~321~^106.^0^^~4~^~BFSY~^~11477~^^^^^^^^^~03/01/2007~
-~11480~^~322~^0.^0^^~4~^~BFSY~^~11477~^^^^^^^^^~03/01/2007~
-~11480~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~
-~11480~^~334~^0.^0^^~4~^~BFSY~^~11477~^^^^^^^^^~03/01/2007~
-~11480~^~337~^0.^0^^~4~^~BFSY~^~11477~^^^^^^^^^~03/01/2007~
-~11480~^~338~^1877.^0^^~4~^~BFSY~^~11477~^^^^^^^^^~03/01/2007~
-~11480~^~417~^8.^0^^~1~^^^^^^^^^^^~08/01/1984~
-~11480~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~
-~11480~^~432~^8.^0^^~1~^^^^^^^^^^^~03/01/2007~
-~11480~^~435~^8.^0^^~4~^~NC~^^^^^^^^^^~03/01/2007~
-~11480~^~601~^0.^0^^~7~^~Z~^^^^^^^^^^~08/01/1984~
-~11481~^~208~^29.^0^^~4~^~NC~^^^^^^^^^^~08/01/1984~
-~11481~^~268~^121.^0^^~4~^^^^^^^^^^^
-~11481~^~301~^17.^18^0.^~1~^^^^^^^^^^^~08/01/1984~
-~11481~^~304~^14.^18^0.^~1~^^^^^^^^^^^~08/01/1984~
-~11481~^~305~^29.^18^0.^~1~^^^^^^^^^^^~08/01/1984~
-~11481~^~306~^274.^18^5.^~1~^^^^^^^^^^^~08/01/1984~
-~11481~^~307~^374.^18^5.^~1~^^^^^^^^^^^~08/01/1984~
-~11481~^~318~^539.^19^40.^~1~^^^^^^^^^^^~08/01/1984~
-~11481~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2002~
-~11481~^~320~^27.^19^2.^~1~^^^^^^^^^^^~06/01/2002~
-~11481~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~
-~11481~^~417~^30.^0^^~4~^^^^^^^^^^^~08/01/1984~
-~11481~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~
-~11481~^~432~^30.^0^^~4~^^^^^^^^^^^~12/01/1984~
-~11481~^~435~^30.^0^^~4~^~NC~^^^^^^^^^^~01/01/2001~
-~11481~^~601~^0.^0^^~7~^~Z~^^^^^^^^^^~08/01/1984~
-~11482~^~208~^40.^0^^~4~^~NC~^^^^^^^^^^~06/01/2003~
-~11482~^~268~^167.^0^^~4~^~NC~^^^^^^^^^^~06/01/2003~
-~11482~^~301~^33.^1^^~1~^^^^^^^^^^^~08/01/1984~
-~11482~^~304~^32.^1^^~1~^^^^^^^^^^^~08/01/1984~
-~11482~^~305~^36.^1^^~1~^^^^^^^^^^^~08/01/1984~
-~11482~^~306~^347.^5^47.^~1~^^^^^^^^^^^~08/01/1984~
-~11482~^~307~^3.^5^1.^~1~^^^^^^^^^^^~08/01/1984~
-~11482~^~318~^367.^0^^~1~^~AS~^^^^^^^^^^~06/01/2003~
-~11482~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2002~
-~11482~^~320~^18.^0^^~1~^~AS~^^^^^^^^^^~06/01/2003~
-~11482~^~321~^220.^3^^~1~^~A~^^^^^^^^^^~06/01/2003~
-~11482~^~322~^0.^3^^~1~^~A~^^^^^^^^^^~06/01/2003~
-~11482~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~
-~11482~^~334~^0.^3^^~1~^~A~^^^^^^^^^^~06/01/2003~
-~11482~^~337~^0.^3^^~1~^~A~^^^^^^^^^^~06/01/2003~
-~11482~^~338~^38.^3^^~1~^~A~^^^^^^^^^^~06/01/2003~
-~11482~^~417~^17.^3^2.^~1~^^^^^^^^^^^~08/01/1984~
-~11482~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~
-~11482~^~432~^17.^3^2.^~1~^^^^^^^^^^^~06/01/2003~
-~11482~^~435~^17.^0^^~4~^~NC~^^^^^^^^^^~06/01/2003~
-~11482~^~601~^0.^0^^~7~^~Z~^^^^^^^^^^~08/01/1984~
-~11483~^~208~^56.^0^^~4~^~NC~^^^^^^^^^^~08/01/1984~
-~11483~^~268~^234.^0^^~4~^^^^^^^^^^^
-~11483~^~301~^44.^0^^~1~^^^^^^^^^^^~08/01/1984~
-~11483~^~304~^43.^0^^~1~^^^^^^^^^^^~08/01/1984~
-~11483~^~305~^45.^0^^~1~^^^^^^^^^^^~08/01/1984~
-~11483~^~306~^437.^0^^~1~^^^^^^^^^^^~08/01/1984~
-~11483~^~307~^4.^0^^~1~^^^^^^^^^^^~08/01/1984~
-~11483~^~318~^428.^0^^~1~^^^^^^^^^^^~08/01/1984~
-~11483~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2002~
-~11483~^~320~^21.^0^^~1~^^^^^^^^^^^~06/01/2002~
-~11483~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~
-~11483~^~417~^19.^0^^~1~^^^^^^^^^^^~08/01/1984~
-~11483~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~
-~11483~^~432~^19.^0^^~1~^^^^^^^^^^^~12/01/1984~
-~11483~^~435~^19.^0^^~4~^~NC~^^^^^^^^^^~01/01/2001~
-~11483~^~601~^0.^0^^~7~^~Z~^^^^^^^^^^~08/01/1984~
-~11484~^~208~^34.^0^^~4~^~NC~^^^^^^^^^^~06/01/2003~
-~11484~^~268~^141.^0^^~4~^~NC~^^^^^^^^^^~06/01/2003~
-~11484~^~301~^26.^0^^~1~^^^^^^^^^^^~08/01/1984~
-~11484~^~304~^26.^0^^~1~^^^^^^^^^^^~08/01/1984~
-~11484~^~305~^27.^0^^~1~^^^^^^^^^^^~08/01/1984~
-~11484~^~306~^263.^0^^~1~^^^^^^^^^^^~08/01/1984~
-~11484~^~307~^3.^0^^~1~^^^^^^^^^^^~08/01/1984~
-~11484~^~318~^817.^0^^~1~^~AS~^^^^^^^^^^~06/01/2003~
-~11484~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2002~
-~11484~^~320~^41.^0^^~1~^~AS~^^^^^^^^^^~06/01/2003~
-~11484~^~321~^490.^3^^~1~^~A~^^^^^^^^^^~06/01/2003~
-~11484~^~322~^0.^3^^~1~^~A~^^^^^^^^^^~06/01/2003~
-~11484~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~
-~11484~^~334~^0.^3^^~1~^~A~^^^^^^^^^^~06/01/2003~
-~11484~^~337~^0.^3^^~1~^~A~^^^^^^^^^^~06/01/2003~
-~11484~^~338~^66.^3^^~1~^~A~^^^^^^^^^^~06/01/2003~
-~11484~^~417~^11.^0^^~1~^^^^^^^^^^^~08/01/1984~
-~11484~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~
-~11484~^~432~^11.^0^^~1~^^^^^^^^^^^~06/01/2003~
-~11484~^~435~^11.^0^^~4~^~NC~^^^^^^^^^^~06/01/2003~
-~11484~^~601~^0.^0^^~7~^~Z~^^^^^^^^^^~08/01/1984~
-~11485~^~208~^45.^0^^~4~^~NC~^^^^^^^^^^~02/01/2003~
-~11485~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~11/01/2002~
-~11485~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~11/01/2002~
-~11485~^~268~^188.^0^^~4~^~NC~^^^^^^^^^^~02/01/2003~
-~11485~^~301~^48.^1^^~1~^^^^^^^^^^^~08/01/1984~
-~11485~^~304~^34.^1^^~1~^^^^^^^^^^^~08/01/1984~
-~11485~^~305~^33.^1^^~1~^^^^^^^^^^^~08/01/1984~
-~11485~^~306~^352.^2^^~1~^^^^^^^^^^^~08/01/1984~
-~11485~^~307~^4.^1^^~1~^^^^^^^^^^^~08/01/1984~
-~11485~^~318~^10630.^0^^~4~^~NC~^^^^^^^^^^~03/01/2003~
-~11485~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2002~
-~11485~^~320~^532.^0^^~4~^~NC~^^^^^^^^^^~03/01/2003~
-~11485~^~321~^4226.^9^2125.^~1~^~A~^^^1^1360.^8378.^2^-4919.^13371.^~4~^~11/01/2002~
-~11485~^~322~^834.^8^101.^~1~^~A~^^^1^732.^935.^1^-456.^2123.^~4~^~11/01/2002~
-~11485~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~
-~11485~^~334~^3471.^0^^~4~^~T~^^^^^^^^^^~11/01/2002~
-~11485~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~
-~11485~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~
-~11485~^~417~^27.^3^5.^~1~^^^^^^^^^^^~08/01/1984~
-~11485~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~
-~11485~^~432~^27.^3^5.^~1~^^^^^^^^^^^~02/01/2003~
-~11485~^~435~^27.^0^^~4~^~NC~^^^^^^^^^^~03/01/2003~
-~11485~^~601~^0.^0^^~7~^~Z~^^^^^^^^^^~08/01/1984~
-~11486~^~208~^40.^0^^~4~^~NC~^^^^^^^^^^~10/01/2009~
-~11486~^~268~^167.^0^^~4~^^^^^^^^^^^~10/01/2009~
-~11486~^~301~^41.^0^^~1~^^^^^^^^^^^~08/01/1984~
-~11486~^~304~^29.^0^^~1~^^^^^^^^^^^~08/01/1984~
-~11486~^~305~^27.^0^^~1~^^^^^^^^^^^~08/01/1984~
-~11486~^~306~^284.^0^^~1~^^^^^^^^^^^~08/01/1984~
-~11486~^~307~^4.^0^^~1~^^^^^^^^^^^~08/01/1984~
-~11486~^~318~^11155.^0^^~4~^~NC~^^^^^^^^^^~10/01/2009~
-~11486~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2002~
-~11486~^~320~^558.^0^^~4~^~NC~^^^^^^^^^^~10/01/2009~
-~11486~^~321~^4570.^0^^~4~^~T~^^^^^^^^^^~02/01/2003~
-~11486~^~322~^1130.^0^^~4~^~T~^^^^^^^^^^~02/01/2003~
-~11486~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~
-~11486~^~334~^3116.^0^^~4~^~BFSN~^~11485~^^^^^^^^^~04/01/2003~
-~11486~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~
-~11486~^~338~^0.^0^^~4~^~BFSN~^~11485~^^^^^^^^^~02/01/2003~
-~11486~^~417~^19.^0^^~1~^^^^^^^^^^^~08/01/1984~
-~11486~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~
-~11486~^~432~^19.^0^^~1~^^^^^^^^^^^~10/01/2009~
-~11486~^~435~^19.^0^^~4~^~NC~^^^^^^^^^^~10/01/2009~
-~11486~^~601~^0.^0^^~7~^~Z~^^^^^^^^^^~08/01/1984~
-~11487~^~208~^57.^0^^~4~^~NC~^^^^^^^^^^~04/01/2003~
-~11487~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~
-~11487~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~
-~11487~^~268~^237.^0^^~4~^~NC~^^^^^^^^^^~04/01/2003~
-~11487~^~301~^29.^0^^~1~^^^^^^^^^^^~08/01/1984~
-~11487~^~304~^14.^0^^~1~^^^^^^^^^^^~08/01/1984~
-~11487~^~305~^22.^0^^~1~^^^^^^^^^^^~08/01/1984~
-~11487~^~306~^212.^0^^~1~^^^^^^^^^^^~08/01/1984~
-~11487~^~307~^2.^0^^~1~^^^^^^^^^^^~08/01/1984~
-~11487~^~318~^4790.^0^^~4~^~NC~^^^^^^^^^^~04/01/2003~
-~11487~^~319~^0.^0^^~4~^~BNA~^~11485~^^^^^^^^^~02/01/2003~
-~11487~^~320~^240.^0^^~4~^~NC~^^^^^^^^^^~04/01/2003~
-~11487~^~321~^1904.^0^^~4~^~BNA~^~11485~^^^^^^^^^~02/01/2003~
-~11487~^~322~^376.^0^^~4~^~BNA~^~11485~^^^^^^^^^~02/01/2003~
-~11487~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~
-~11487~^~334~^1564.^0^^~4~^~BNA~^~11485~^^^^^^^^^~02/01/2003~
-~11487~^~337~^0.^0^^~4~^~BFSN~^~11485~^^^^^^^^^~02/01/2003~
-~11487~^~338~^0.^0^^~4~^~BFSN~^~11485~^^^^^^^^^~02/01/2003~
-~11487~^~417~^24.^0^^~4~^^^^^^^^^^^~08/01/1984~
-~11487~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~
-~11487~^~432~^24.^0^^~4~^^^^^^^^^^^~04/01/2003~
-~11487~^~435~^24.^0^^~4~^~NC~^^^^^^^^^^~04/01/2003~
-~11487~^~601~^0.^0^^~7~^~Z~^^^^^^^^^^~08/01/1984~
-~11488~^~208~^39.^0^^~4~^~NC~^^^^^^^^^^~08/01/1984~
-~11488~^~268~^163.^0^^~4~^^^^^^^^^^^
-~11488~^~301~^19.^0^^~1~^^^^^^^^^^^~08/01/1984~
-~11488~^~304~^9.^0^^~1~^^^^^^^^^^^~08/01/1984~
-~11488~^~305~^14.^0^^~1~^^^^^^^^^^^~08/01/1984~
-~11488~^~306~^133.^0^^~1~^^^^^^^^^^^~08/01/1984~
-~11488~^~307~^2.^0^^~1~^^^^^^^^^^^~08/01/1984~
-~11488~^~318~^3339.^0^^~1~^^^^^^^^^^^~08/01/1984~
-~11488~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2002~
-~11488~^~320~^167.^0^^~1~^^^^^^^^^^^~06/01/2002~
-~11488~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~
-~11488~^~417~^16.^0^^~4~^^^^^^^^^^^~08/01/1984~
-~11488~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~
-~11488~^~432~^16.^0^^~4~^^^^^^^^^^^~12/01/1984~
-~11488~^~435~^16.^0^^~4~^~NC~^^^^^^^^^^~01/01/2001~
-~11488~^~601~^0.^0^^~7~^~Z~^^^^^^^^^^~08/01/1984~
-~11489~^~208~^40.^0^^~4~^~NC~^^^^^^^^^^~06/01/2003~
-~11489~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~08/01/2011~
-~11489~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~08/01/2011~
-~11489~^~268~^167.^0^^~4~^^^^^^^^^^^~08/01/2011~
-~11489~^~301~^14.^1^^~1~^^^^^^^^^^^~08/01/1984~
-~11489~^~304~^19.^1^^~1~^^^^^^^^^^^~08/01/1984~
-~11489~^~305~^21.^1^^~1~^^^^^^^^^^^~08/01/1984~
-~11489~^~306~^320.^1^^~1~^^^^^^^^^^^~08/01/1984~
-~11489~^~307~^7.^1^^~1~^^^^^^^^^^^~08/01/1984~
-~11489~^~318~^1367.^0^^~4~^~NC~^^^^^^^^^^~08/01/2011~
-~11489~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2002~
-~11489~^~320~^68.^0^^~4~^~NC~^^^^^^^^^^~08/01/2011~
-~11489~^~321~^820.^6^^~1~^~A~^^^1^820.^820.^^^^~2~^~06/01/2003~
-~11489~^~322~^0.^2^^~1~^~A~^^^^^^^^^^~06/01/2003~
-~11489~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~
-~11489~^~334~^0.^0^^~4~^~BFSN~^~11491~^^^^^^^^^~08/01/2011~
-~11489~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2003~
-~11489~^~338~^0.^0^^~4~^~BFSN~^~11491~^^^^^^^^^~08/01/2011~
-~11489~^~417~^16.^0^^~1~^^^^^^^^^^^~08/01/1984~
-~11489~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~
-~11489~^~432~^16.^0^^~1~^^^^^^^^^^^~06/01/2003~
-~11489~^~435~^16.^0^^~4~^~NC~^^^^^^^^^^~07/01/2003~
-~11489~^~601~^0.^0^^~7~^~Z~^^^^^^^^^^~08/01/1984~
-~11490~^~208~^50.^0^^~4~^~NC~^^^^^^^^^^~08/01/1984~
-~11490~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~08/01/2011~
-~11490~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~08/01/2011~
-~11490~^~268~^209.^0^^~4~^^^^^^^^^^^
-~11490~^~301~^17.^0^^~1~^^^^^^^^^^^~08/01/1984~
-~11490~^~304~^22.^0^^~1~^^^^^^^^^^^~08/01/1984~
-~11490~^~305~^23.^0^^~1~^^^^^^^^^^^~08/01/1984~
-~11490~^~306~^358.^0^^~1~^^^^^^^^^^^~08/01/1984~
-~11490~^~307~^8.^0^^~1~^^^^^^^^^^^~08/01/1984~
-~11490~^~318~^6705.^0^^~4~^~NC~^^^^^^^^^^~08/01/2011~
-~11490~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2002~
-~11490~^~320~^335.^0^^~4~^~NC~^^^^^^^^^^~08/01/2011~
-~11490~^~321~^3580.^0^^~4~^~BFSN~^~11491~^^^^^^^^^~08/01/2011~
-~11490~^~322~^885.^0^^~4~^~BFSN~^~11491~^^^^^^^^^~08/01/2011~
-~11490~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~
-~11490~^~334~^0.^0^^~4~^~BFSN~^~11491~^^^^^^^^^~08/01/2011~
-~11490~^~337~^0.^0^^~4~^~BFSN~^~11491~^^^^^^^^^~08/01/2011~
-~11490~^~338~^0.^0^^~4~^~BFSN~^~11491~^^^^^^^^^~08/01/2011~
-~11490~^~417~^16.^0^^~1~^^^^^^^^^^^~08/01/1984~
-~11490~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~
-~11490~^~432~^16.^0^^~1~^^^^^^^^^^^~12/01/1984~
-~11490~^~435~^16.^0^^~4~^~NC~^^^^^^^^^^~01/01/2001~
-~11490~^~601~^0.^0^^~7~^~Z~^^^^^^^^^^~08/01/1984~
-~11491~^~208~^30.^0^^~4~^~NC~^^^^^^^^^^~03/01/2007~
-~11491~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~
-~11491~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~
-~11491~^~268~^125.^0^^~4~^~NC~^^^^^^^^^^~03/01/2007~
-~11491~^~301~^10.^0^^~1~^^^^^^^^^^^~08/01/1984~
-~11491~^~304~^13.^0^^~1~^^^^^^^^^^^~08/01/1984~
-~11491~^~305~^14.^0^^~1~^^^^^^^^^^^~08/01/1984~
-~11491~^~306~^214.^0^^~1~^^^^^^^^^^^~08/01/1984~
-~11491~^~307~^5.^0^^~1~^^^^^^^^^^^~08/01/1984~
-~11491~^~318~^4005.^0^^~4~^~NC~^^^^^^^^^^~03/01/2007~
-~11491~^~319~^0.^0^^~4~^~BNA~^~11486~^^^^^^^^^~02/01/2003~
-~11491~^~320~^200.^0^^~4~^~NC~^^^^^^^^^^~03/01/2007~
-~11491~^~321~^1641.^0^^~4~^~BNA~^~11486~^^^^^^^^^~07/01/2012~
-~11491~^~322~^406.^0^^~4~^~BNA~^~11486~^^^^^^^^^~07/01/2012~
-~11491~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~
-~11491~^~334~^1119.^0^^~4~^~BNA~^~11486~^^^^^^^^^~07/01/2012~
-~11491~^~337~^0.^0^^~4~^~BFSN~^~11486~^^^^^^^^^~02/01/2003~
-~11491~^~338~^0.^0^^~4~^~BFSN~^~11486~^^^^^^^^^~02/01/2003~
-~11491~^~417~^10.^0^^~1~^^^^^^^^^^^~08/01/1984~
-~11491~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~
-~11491~^~432~^10.^0^^~1~^^^^^^^^^^^~03/01/2007~
-~11491~^~435~^10.^0^^~4~^~NC~^^^^^^^^^^~03/01/2007~
-~11491~^~601~^0.^0^^~7~^~Z~^^^^^^^^^^~08/01/1984~
-~11492~^~208~^31.^0^^~4~^~NC~^^^^^^^^^^~03/01/1997~
-~11492~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~08/01/2011~
-~11492~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~08/01/2011~
-~11492~^~268~^130.^0^^~4~^^^^^^^^^^^
-~11492~^~301~^23.^3^2.^~1~^^^^^^^^^^^~08/01/1984~
-~11492~^~304~^12.^3^0.^~1~^^^^^^^^^^^~08/01/1984~
-~11492~^~305~^12.^3^1.^~1~^^^^^^^^^^^~08/01/1984~
-~11492~^~306~^108.^3^6.^~1~^^^^^^^^^^^~08/01/1984~
-~11492~^~307~^17.^3^0.^~1~^^^^^^^^^^^~08/01/1984~
-~11492~^~318~^120.^0^^~4~^~NC~^^^^^^^^^^~08/01/2011~
-~11492~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2002~
-~11492~^~320~^6.^0^^~4~^~NC~^^^^^^^^^^~08/01/2011~
-~11492~^~321~^64.^0^^~4~^~BFSN~^~11870~^^^^^^^^^~08/01/2011~
-~11492~^~322~^16.^0^^~4~^~BFSN~^~11870~^^^^^^^^^~08/01/2011~
-~11492~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~
-~11492~^~334~^0.^0^^~4~^~BFSN~^~11870~^^^^^^^^^~08/01/2011~
-~11492~^~337~^0.^0^^~4~^~BFSN~^~11870~^^^^^^^^^~08/01/2011~
-~11492~^~338~^0.^0^^~4~^~BFSN~^~11870~^^^^^^^^^~08/01/2011~
-~11492~^~417~^12.^3^2.^~1~^^^^^^^^^^^~08/01/1984~
-~11492~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~
-~11492~^~432~^12.^3^2.^~1~^^^^^^^^^^^~12/01/1984~
-~11492~^~435~^12.^0^^~4~^~NC~^^^^^^^^^^~01/01/2001~
-~11492~^~601~^0.^0^^~7~^~Z~^^^^^^^^^^~08/01/1984~
-~11493~^~208~^27.^0^^~4~^~NC~^^^^^^^^^^~03/01/2007~
-~11493~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~
-~11493~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~
-~11493~^~268~^113.^0^^~4~^^^^^^^^^^^~03/01/2007~
-~11493~^~301~^21.^3^2.^~1~^^^^^^^^^^^~08/01/1984~
-~11493~^~304~^11.^3^1.^~1~^^^^^^^^^^^~08/01/1984~
-~11493~^~305~^14.^3^1.^~1~^^^^^^^^^^^~08/01/1984~
-~11493~^~306~^117.^3^11.^~1~^^^^^^^^^^^~08/01/1984~
-~11493~^~307~^18.^3^1.^~1~^^^^^^^^^^^~08/01/1984~
-~11493~^~318~^110.^0^^~4~^~NC~^^^^^^^^^^~03/01/2007~
-~11493~^~319~^0.^0^^~4~^~BNA~^~11486~^^^^^^^^^~02/01/2003~
-~11493~^~320~^6.^0^^~4~^~NC~^^^^^^^^^^~03/01/2007~
-~11493~^~321~^59.^0^^~4~^~BNA~^~11486~^^^^^^^^^~02/01/2003~
-~11493~^~322~^15.^0^^~4~^~BNA~^~11486~^^^^^^^^^~02/01/2003~
-~11493~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~
-~11493~^~334~^0.^0^^~4~^~BNA~^~11486~^^^^^^^^^~02/01/2003~
-~11493~^~337~^0.^0^^~4~^~BFSN~^~11486~^^^^^^^^^~02/01/2003~
-~11493~^~338~^0.^0^^~4~^~BFSN~^~11486~^^^^^^^^^~02/01/2003~
-~11493~^~417~^8.^3^2.^~1~^^^^^^^^^^^~08/01/1984~
-~11493~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~
-~11493~^~432~^8.^3^2.^~1~^^^^^^^^^^^~03/01/2007~
-~11493~^~435~^8.^0^^~4~^~NC~^^^^^^^^^^~03/01/2007~
-~11493~^~601~^0.^0^^~7~^~Z~^^^^^^^^^^~08/01/1984~
-~11495~^~208~^99.^0^^~4~^~NC~^^^^^^^^^^~08/01/1984~
-~11495~^~268~^414.^0^^~4~^^^^^^^^^^^
-~11495~^~301~^18.^0^^~1~^^^^^^^^^^^~08/01/1984~
-~11495~^~304~^48.^0^^~1~^^^^^^^^^^^~08/01/1984~
-~11495~^~305~^113.^0^^~1~^^^^^^^^^^^~08/01/1984~
-~11495~^~306~^369.^0^^~1~^^^^^^^^^^^~08/01/1984~
-~11495~^~307~^4.^0^^~1~^^^^^^^^^^^~08/01/1984~
-~11495~^~318~^292.^0^^~1~^^^^^^^^^^^~08/01/1984~
-~11495~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2002~
-~11495~^~320~^15.^0^^~1~^^^^^^^^^^^~06/01/2002~
-~11495~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~
-~11495~^~417~^40.^0^^~4~^^^^^^^^^^^~08/01/1984~
-~11495~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~
-~11495~^~432~^40.^0^^~4~^^^^^^^^^^^~12/01/1984~
-~11495~^~435~^40.^0^^~4~^~NC~^^^^^^^^^^~01/01/2001~
-~11495~^~601~^0.^0^^~7~^~Z~^^^^^^^^^^~08/01/1984~
-~11496~^~208~^115.^0^^~4~^~NC~^^^^^^^^^^~08/01/1984~
-~11496~^~268~^481.^0^^~4~^^^^^^^^^^^
-~11496~^~301~^17.^0^^~1~^^^^^^^^^^^~08/01/1984~
-~11496~^~304~^53.^0^^~1~^^^^^^^^^^^~08/01/1984~
-~11496~^~305~^117.^0^^~1~^^^^^^^^^^^~08/01/1984~
-~11496~^~306~^410.^0^^~1~^^^^^^^^^^^~08/01/1984~
-~11496~^~307~^17.^0^^~1~^^^^^^^^^^^~08/01/1984~
-~11496~^~318~^294.^0^^~1~^^^^^^^^^^^~08/01/1984~
-~11496~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2002~
-~11496~^~320~^15.^0^^~1~^^^^^^^^^^^~06/01/2002~
-~11496~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~
-~11496~^~417~^33.^0^^~4~^^^^^^^^^^^~08/01/1984~
-~11496~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~
-~11496~^~432~^33.^0^^~4~^^^^^^^^^^^~12/01/1984~
-~11496~^~435~^33.^0^^~4~^~NC~^^^^^^^^^^~01/01/2001~
-~11496~^~601~^0.^0^^~7~^~Z~^^^^^^^^^^~08/01/1984~
-~11497~^~208~^77.^0^^~4~^~NC~^^^^^^^^^^~08/01/1984~
-~11497~^~268~^322.^0^^~4~^^^^^^^^^^^
-~11497~^~301~^11.^29^0.^~1~^^^^^^^^^^^~08/01/1984~
-~11497~^~304~^1.^0^^~1~^^^^^^^^^^^~08/01/1984~
-~11497~^~305~^59.^22^0.^~1~^^^^^^^^^^^~08/01/1984~
-~11497~^~306~^183.^29^3.^~1~^^^^^^^^^^^~08/01/1984~
-~11497~^~307~^245.^29^10.^~1~^^^^^^^^^^^~08/01/1984~
-~11497~^~318~^141.^23^4.^~1~^^^^^^^^^^^~08/01/1984~
-~11497~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2002~
-~11497~^~320~^7.^23^0.^~1~^^^^^^^^^^^~06/01/2002~
-~11497~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~
-~11497~^~417~^44.^0^^~1~^^^^^^^^^^^~08/01/1984~
-~11497~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~
-~11497~^~432~^44.^0^^~1~^^^^^^^^^^^~12/01/1984~
-~11497~^~435~^44.^0^^~4~^~NC~^^^^^^^^^^~01/01/2001~
-~11497~^~601~^0.^0^^~7~^~Z~^^^^^^^^^^~08/01/1984~
-~11499~^~208~^63.^0^^~4~^~NC~^^^^^^^^^^~08/01/1984~
-~11499~^~268~^264.^0^^~4~^^^^^^^^^^^
-~11499~^~301~^11.^24^0.^~1~^^^^^^^^^^^~08/01/1984~
-~11499~^~304~^19.^21^0.^~1~^^^^^^^^^^^~08/01/1984~
-~11499~^~305~^55.^15^0.^~1~^^^^^^^^^^^~08/01/1984~
-~11499~^~306~^163.^24^8.^~1~^^^^^^^^^^^~08/01/1984~
-~11499~^~307~^221.^24^15.^~1~^^^^^^^^^^^~08/01/1984~
-~11499~^~318~^146.^18^30.^~1~^^^^^^^^^^^~08/01/1984~
-~11499~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2002~
-~11499~^~320~^7.^18^1.^~1~^^^^^^^^^^^~06/01/2002~
-~11499~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~
-~11499~^~417~^32.^0^^~1~^^^^^^^^^^^~08/01/1984~
-~11499~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~
-~11499~^~432~^32.^0^^~1~^^^^^^^^^^^~12/01/1984~
-~11499~^~435~^32.^0^^~4~^~NC~^^^^^^^^^^~01/01/2001~
-~11499~^~601~^0.^0^^~7~^~Z~^^^^^^^^^^~08/01/1984~
-~11501~^~208~^93.^0^^~4~^~NC~^^^^^^^^^^~08/01/1984~
-~11501~^~268~^389.^0^^~4~^^^^^^^^^^^
-~11501~^~301~^16.^27^0.^~1~^^^^^^^^^^^~08/01/1984~
-~11501~^~304~^24.^4^2.^~1~^^^^^^^^^^^~08/01/1984~
-~11501~^~305~^78.^16^1.^~1~^^^^^^^^^^^~08/01/1984~
-~11501~^~306~^295.^5^10.^~1~^^^^^^^^^^^~08/01/1984~
-~11501~^~307~^45.^4^19.^~1~^^^^^^^^^^^~08/01/1984~
-~11501~^~318~^257.^27^20.^~1~^^^^^^^^^^^~08/01/1984~
-~11501~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2002~
-~11501~^~320~^13.^27^1.^~1~^^^^^^^^^^^~06/01/2002~
-~11501~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~
-~11501~^~417~^42.^0^^~1~^^^^^^^^^^^~08/01/1984~
-~11501~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~
-~11501~^~432~^42.^0^^~1~^^^^^^^^^^^~12/01/1984~
-~11501~^~435~^42.^0^^~4~^~NC~^^^^^^^^^^~01/01/2001~
-~11501~^~601~^0.^0^^~7~^~Z~^^^^^^^^^^~08/01/1984~
-~11502~^~208~^93.^0^^~4~^~NC~^^^^^^^^^^~03/01/2007~
-~11502~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~
-~11502~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~
-~11502~^~268~^389.^0^^~4~^^^^^^^^^^^~03/01/2007~
-~11502~^~301~^15.^0^^~1~^^^^^^^^^^^~08/01/1984~
-~11502~^~304~^23.^0^^~1~^^^^^^^^^^^~08/01/1984~
-~11502~^~305~^70.^0^^~1~^^^^^^^^^^^~08/01/1984~
-~11502~^~306~^265.^0^^~1~^^^^^^^^^^^~08/01/1984~
-~11502~^~307~^45.^0^^~1~^^^^^^^^^^^~08/01/1984~
-~11502~^~318~^194.^0^^~4~^~NC~^^^^^^^^^^~03/01/2007~
-~11502~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2002~
-~11502~^~320~^10.^0^^~4~^~NC~^^^^^^^^^^~03/01/2007~
-~11502~^~321~^82.^0^^~4~^~RA~^^^^^^^^^^~03/01/2007~
-~11502~^~322~^9.^0^^~4~^~RA~^^^^^^^^^^~03/01/2007~
-~11502~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~
-~11502~^~334~^61.^0^^~4~^~RA~^^^^^^^^^^~03/01/2007~
-~11502~^~337~^0.^0^^~4~^~RA~^^^^^^^^^^~03/01/2007~
-~11502~^~338~^342.^0^^~4~^~RA~^^^^^^^^^^~03/01/2007~
-~11502~^~417~^33.^0^^~1~^^^^^^^^^^^~08/01/1984~
-~11502~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~
-~11502~^~432~^33.^0^^~1~^^^^^^^^^^^~03/01/2007~
-~11502~^~435~^33.^0^^~4~^~NC~^^^^^^^^^^~03/01/2007~
-~11502~^~601~^0.^0^^~7~^~Z~^^^^^^^^^^~08/01/1984~
-~11503~^~208~^19.^0^^~4~^~NC~^^^^^^^^^^~08/01/1984~
-~11503~^~268~^80.^0^^~4~^~NC~^^^^^^^^^^~07/01/2016~
-~11503~^~301~^77.^2^^~1~^^^^^^^^^^^~08/01/1984~
-~11503~^~304~^71.^2^^~1~^^^^^^^^^^^~08/01/1984~
-~11503~^~305~^39.^2^^~1~^^^^^^^^^^^~08/01/1984~
-~11503~^~306~^312.^2^^~1~^^^^^^^^^^^~08/01/1984~
-~11503~^~307~^113.^0^^~1~^^^^^^^^^^^~08/01/1984~
-~11503~^~318~^6300.^1^^~1~^^^^^^^^^^^~08/01/1984~
-~11503~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2002~
-~11503~^~320~^315.^1^^~1~^^^^^^^^^^^~06/01/2002~
-~11503~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~
-~11503~^~417~^57.^0^^~4~^^^^^^^^^^^~08/01/1984~
-~11503~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~
-~11503~^~432~^57.^0^^~4~^^^^^^^^^^^~12/01/1984~
-~11503~^~435~^57.^0^^~4~^~NC~^^^^^^^^^^~01/01/2001~
-~11503~^~601~^0.^0^^~7~^~Z~^^^^^^^^^^~08/01/1984~
-~11504~^~208~^20.^0^^~4~^~NC~^^^^^^^^^^~08/01/1984~
-~11504~^~268~^85.^0^^~4~^~NC~^^^^^^^^^^~09/01/2015~
-~11504~^~301~^54.^1^^~1~^^^^^^^^^^^~08/01/1984~
-~11504~^~304~^30.^1^^~1~^^^^^^^^^^^~08/01/1984~
-~11504~^~305~^42.^1^^~1~^^^^^^^^^^^~08/01/1984~
-~11504~^~306~^284.^1^^~1~^^^^^^^^^^^~08/01/1984~
-~11504~^~307~^122.^1^^~1~^^^^^^^^^^^~08/01/1984~
-~11504~^~318~^5200.^0^^~1~^^^^^^^^^^^~08/01/1984~
-~11504~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2002~
-~11504~^~320~^260.^0^^~1~^^^^^^^^^^^~06/01/2002~
-~11504~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~
-~11504~^~417~^35.^0^^~4~^^^^^^^^^^^~08/01/1984~
-~11504~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~
-~11504~^~432~^35.^0^^~4~^^^^^^^^^^^~12/01/1984~
-~11504~^~435~^35.^0^^~4~^~NC~^^^^^^^^^^~01/01/2001~
-~11504~^~601~^0.^0^^~7~^~Z~^^^^^^^^^^~08/01/1984~
-~11505~^~208~^42.^0^^~4~^~NC~^^^^^^^^^^~07/01/2012~
-~11505~^~268~^175.^0^^~4~^~NC~^^^^^^^^^^~07/01/2012~
-~11505~^~301~^78.^1^^~1~^~A~^^^2^37.^120.^1^^^^~07/01/2012~
-~11505~^~304~^70.^2^^~1~^~A~^^^2^61.^80.^1^^^^~07/01/2012~
-~11505~^~305~^81.^1^^~1~^~A~^^^2^68.^94.^1^^^^~07/01/2012~
-~11505~^~306~^508.^2^^~1~^~A~^^^2^498.^518.^1^^^^~07/01/2012~
-~11505~^~307~^6.^2^^~1~^~A~^^^2^3.^9.^1^^^^~07/01/2012~
-~11505~^~318~^3778.^0^^~1~^~AS~^^^^^^^^^^~07/01/2012~
-~11505~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2002~
-~11505~^~320~^189.^0^^~1~^~AS~^^^^^^^^^^~07/01/2012~
-~11505~^~321~^2217.^1^^~1~^~A~^^^^^^^^^^~07/01/2012~
-~11505~^~322~^42.^1^^~1~^~A~^^^^^^^^^^~07/01/2012~
-~11505~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~
-~11505~^~334~^58.^1^^~1~^~A~^^^^^^^^^^~07/01/2012~
-~11505~^~337~^0.^1^^~1~^~A~^^^^^^^^^~1~^~07/01/2012~
-~11505~^~338~^14720.^2^^~1~^~A~^^^2^4790.^24651.^1^^^^~07/01/2012~
-~11505~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~
-~11505~^~432~^1.^1^^~1~^~A~^^^^^^^^^^~07/01/2012~
-~11505~^~435~^1.^0^^~4~^~NC~^^^^^^^^^^~07/01/2012~
-~11505~^~601~^0.^0^^~7~^~Z~^^^^^^^^^^~08/01/1984~
-~11506~^~208~^35.^0^^~4~^~NC~^^^^^^^^^^~02/01/2017~
-~11506~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~
-~11506~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~
-~11506~^~268~^144.^0^^~4~^~NC~^^^^^^^^^^~02/01/2017~
-~11506~^~301~^33.^1^^~6~^~JA~^^^2^24.^42.^1^^^^~07/01/2012~
-~11506~^~304~^48.^2^^~6~^~JA~^^^2^34.^61.^1^^^^~07/01/2012~
-~11506~^~305~^40.^1^^~6~^~JA~^^^2^20.^60.^1^^^^~07/01/2012~
-~11506~^~306~^312.^2^^~6~^~JA~^^^2^148.^477.^1^^^^~07/01/2012~
-~11506~^~307~^7.^2^^~6~^~JA~^^^2^2.^13.^1^^^^~07/01/2012~
-~11506~^~318~^2939.^0^^~4~^~NC~^^^^^^^^^^~07/01/2012~
-~11506~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~07/01/2012~
-~11506~^~320~^147.^0^^~4~^~NC~^^^^^^^^^^~07/01/2012~
-~11506~^~321~^1725.^0^^~4~^~BFSY~^~11505~^^^^^^^^^~07/01/2012~
-~11506~^~322~^33.^0^^~4~^~BFSY~^~11505~^^^^^^^^^~07/01/2012~
-~11506~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~
-~11506~^~334~^45.^0^^~4~^~BFSY~^~11505~^^^^^^^^^~07/01/2012~
-~11506~^~337~^0.^0^^~4~^~BFSY~^~11505~^^^^^^^^^~07/01/2012~
-~11506~^~338~^11449.^0^^~4~^~BFSY~^~11505~^^^^^^^^^~07/01/2012~
-~11506~^~417~^49.^0^^~4~^^^^^^^^^^^~08/01/1984~
-~11506~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~
-~11506~^~432~^49.^0^^~4~^^^^^^^^^^^~03/01/2007~
-~11506~^~435~^49.^0^^~4~^~NC~^^^^^^^^^^~03/01/2007~
-~11506~^~601~^0.^0^^~7~^~Z~^^^^^^^^^^~08/01/1984~
-~11507~^~208~^86.^0^^~4~^~NC~^^^^^^^^^^~02/01/2007~
-~11507~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~10/01/2002~
-~11507~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~10/01/2002~
-~11507~^~268~^359.^0^^~4~^~NC~^^^^^^^^^^~02/01/2007~
-~11507~^~301~^30.^3^4.^~1~^~A~^^^1^24.^40.^2^10.^50.^~2, 3~^~10/01/2002~
-~11507~^~304~^25.^3^3.^~1~^~A~^^^1^19.^30.^2^11.^38.^~2, 3~^~10/01/2002~
-~11507~^~305~^47.^3^7.^~1~^~A~^^^1^38.^62.^2^15.^78.^~2, 3~^~10/01/2002~
-~11507~^~306~^337.^3^27.^~1~^~A~^^^1^282.^370.^2^218.^455.^~2, 3~^~10/01/2002~
-~11507~^~307~^55.^3^26.^~1~^~A~^^^1^21.^107.^2^-58.^168.^~2, 3~^~05/01/2004~
-~11507~^~318~^14187.^0^^~1~^~AS~^^^^^^^^^^~02/01/2007~
-~11507~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2002~
-~11507~^~320~^709.^0^^~1~^~AS~^^^^^^^^^^~02/01/2007~
-~11507~^~321~^8509.^43^224.^~1~^~A~^^^2^4030.^16000.^2^7544.^9473.^~2, 3~^~05/01/2004~
-~11507~^~322~^7.^41^3.^~1~^~A~^^^2^0.^133.^3^-2.^17.^~1, 2, 3~^~05/01/2004~
-~11507~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~
-~11507~^~334~^0.^38^0.^~1~^~A~^^^2^0.^0.^^^^~1, 2, 3~^~05/01/2004~
-~11507~^~337~^0.^5^0.^~1~^~A~^^^2^0.^0.^^^^~1, 2, 3~^~05/01/2004~
-~11507~^~338~^0.^1^^~1~^~A~^^^^^^^^^^~05/01/2004~
-~11507~^~417~^11.^4^1.^~1~^~A~^^^1^8.^15.^3^5.^16.^~1, 2, 3~^~05/01/2004~
-~11507~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~
-~11507~^~432~^11.^4^1.^~1~^~A~^^^1^8.^15.^3^5.^16.^^~02/01/2007~
-~11507~^~435~^11.^0^^~4~^~NC~^^^^^^^^^^~02/01/2007~
-~11507~^~601~^0.^0^^~7~^~Z~^^^^^^^^^^~08/01/1984~
-~11507~^~636~^12.^0^^~1~^^^^^^^^^^^~05/01/2004~
-~11508~^~208~^90.^0^^~4~^~NC~^^^^^^^^^^~03/01/2006~
-~11508~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~12/01/2002~
-~11508~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~12/01/2002~
-~11508~^~268~^378.^0^^~4~^~NC~^^^^^^^^^^~03/01/2006~
-~11508~^~301~^38.^67^2.^~6~^~JA~^^^12^14.^94.^66^33.^42.^~4~^~04/01/2003~
-~11508~^~304~^27.^68^0.^~6~^~JA~^^^12^15.^45.^67^25.^28.^~4~^~04/01/2003~
-~11508~^~305~^54.^67^1.^~6~^~JA~^^^12^26.^82.^66^50.^57.^~4~^~04/01/2003~
-~11508~^~306~^475.^68^9.^~6~^~JA~^^^12^306.^817.^67^456.^493.^~4~^~04/01/2003~
-~11508~^~307~^36.^68^3.^~6~^~JA~^^^12^4.^122.^67^28.^43.^~4~^~04/01/2003~
-~11508~^~318~^19218.^0^^~4~^~NC~^^^^^^^^^^~03/01/2006~
-~11508~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2002~
-~11508~^~320~^961.^0^^~4~^~NC~^^^^^^^^^^~03/01/2006~
-~11508~^~321~^11509.^0^^~4~^~BFSN~^~11510~^^^^^^^^^~03/01/2006~
-~11508~^~322~^43.^0^^~4~^~BFSN~^~11510~^^^^^^^^^~03/01/2006~
-~11508~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~
-~11508~^~334~^0.^0^^~4~^~BFSN~^~11510~^^^^^^^^^~03/01/2006~
-~11508~^~337~^0.^0^^~4~^~BFSN~^~11510~^^^^^^^^^~03/01/2006~
-~11508~^~338~^0.^0^^~4~^~BFSN~^~11510~^^^^^^^^^~03/01/2006~
-~11508~^~417~^6.^4^2.^~1~^~A~^^^1^2.^11.^3^-1.^13.^~1, 2, 3~^~12/01/2002~
-~11508~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~
-~11508~^~432~^6.^4^2.^~1~^~A~^^^1^2.^11.^3^-1.^13.^^~03/01/2006~
-~11508~^~435~^6.^0^^~4~^~NC~^^^^^^^^^^~03/01/2006~
-~11508~^~601~^0.^0^^~7~^~Z~^^^^^^^^^^~08/01/1984~
-~11510~^~208~^76.^0^^~4~^~NC~^^^^^^^^^^~02/01/2007~
-~11510~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~10/01/2002~
-~11510~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~10/01/2002~
-~11510~^~268~^320.^0^^~4~^~NC~^^^^^^^^^^~02/01/2007~
-~11510~^~301~^27.^4^6.^~1~^~A~^^^1^17.^46.^3^5.^48.^~2, 3~^~04/01/2003~
-~11510~^~304~^18.^4^2.^~1~^~A~^^^1^15.^24.^3^10.^24.^~2, 3~^~04/01/2003~
-~11510~^~305~^32.^4^5.^~1~^~A~^^^1^22.^47.^3^15.^49.^~2, 3~^~04/01/2003~
-~11510~^~306~^230.^4^25.^~1~^~A~^^^1^186.^288.^3^149.^311.^~2, 3~^~04/01/2003~
-~11510~^~307~^27.^4^5.^~1~^~A~^^^1^21.^43.^3^9.^43.^~2, 3~^~04/01/2003~
-~11510~^~318~^15740.^0^^~1~^~AS~^^^^^^^^^^~02/01/2007~
-~11510~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2002~
-~11510~^~320~^787.^0^^~1~^~AS~^^^^^^^^^^~02/01/2007~
-~11510~^~321~^9444.^10^804.^~1~^~A~^^^1^7119.^15160.^1^-773.^19660.^~2, 3~^~03/01/2006~
-~11510~^~322~^0.^1^^~1~^~A~^^^^^^^^^^~05/01/2004~
-~11510~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~
-~11510~^~334~^0.^1^^~1~^~A~^^^^^^^^^^~05/01/2004~
-~11510~^~337~^0.^1^^~1~^~A~^^^^^^^^^^~05/01/2004~
-~11510~^~338~^0.^1^^~1~^~A~^^^^^^^^^^~05/01/2004~
-~11510~^~417~^6.^4^2.^~1~^~A~^^^1^2.^12.^3^-2.^14.^~1, 2, 3~^~04/01/2003~
-~11510~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~
-~11510~^~432~^6.^4^2.^~1~^~A~^^^1^2.^12.^3^-2.^14.^^~02/01/2007~
-~11510~^~435~^6.^0^^~4~^~NC~^^^^^^^^^^~02/01/2007~
-~11510~^~601~^0.^0^^~7~^~Z~^^^^^^^^^^~08/01/1984~
-~11512~^~208~^91.^0^^~4~^~NC~^^^^^^^^^^~02/01/2007~
-~11512~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2003~
-~11512~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2003~
-~11512~^~268~^382.^0^^~4~^~NC~^^^^^^^^^^~02/01/2007~
-~11512~^~301~^22.^8^0.^~1~^^^^^^^^^^^~08/01/1984~
-~11512~^~304~^22.^8^0.^~1~^^^^^^^^^^^~08/01/1984~
-~11512~^~305~^49.^8^0.^~1~^^^^^^^^^^^~08/01/1984~
-~11512~^~306~^312.^8^10.^~1~^^^^^^^^^^^~08/01/1984~
-~11512~^~307~^53.^8^7.^~1~^^^^^^^^^^^~08/01/1984~
-~11512~^~318~^7983.^0^^~4~^~NC~^^^^^^^^^^~02/01/2007~
-~11512~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2002~
-~11512~^~320~^399.^0^^~4~^~NC~^^^^^^^^^^~02/01/2007~
-~11512~^~321~^4790.^0^^~4~^~O~^~11510~^^^^^^^^^~02/01/2007~
-~11512~^~322~^0.^0^^~4~^~BFSN~^~11510~^^^^^^^^^~01/01/2003~
-~11512~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~
-~11512~^~334~^0.^0^^~4~^~BFSN~^~11510~^^^^^^^^^~01/01/2003~
-~11512~^~337~^0.^0^^~4~^~BFSN~^~11510~^^^^^^^^^~01/01/2003~
-~11512~^~338~^0.^0^^~4~^~BFSN~^~11510~^^^^^^^^^~01/01/2003~
-~11512~^~417~^17.^0^^~1~^^^^^^^^^^^~08/01/1984~
-~11512~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~
-~11512~^~432~^17.^0^^~1~^^^^^^^^^^^~02/01/2007~
-~11512~^~435~^17.^0^^~4~^~NC~^^^^^^^^^^~02/01/2007~
-~11512~^~601~^0.^0^^~7~^~Z~^^^^^^^^^^~08/01/1984~
-~11514~^~208~^101.^0^^~4~^~NC~^^^^^^^^^^~06/01/2005~
-~11514~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2005~
-~11514~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2005~
-~11514~^~268~^421.^0^^~4~^~NC~^^^^^^^^^^~06/01/2005~
-~11514~^~301~^30.^4^0.^~1~^^^^^^^^^^^~08/01/1984~
-~11514~^~304~^24.^4^0.^~1~^^^^^^^^^^^~08/01/1984~
-~11514~^~305~^52.^4^1.^~1~^^^^^^^^^^^~08/01/1984~
-~11514~^~306~^210.^4^11.^~1~^^^^^^^^^^^~08/01/1984~
-~11514~^~307~^75.^4^2.^~1~^^^^^^^^^^^~08/01/1984~
-~11514~^~318~^8699.^0^^~4~^~NC~^^^^^^^^^^~06/01/2005~
-~11514~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2002~
-~11514~^~320~^435.^0^^~4~^~NC~^^^^^^^^^^~06/01/2005~
-~11514~^~321~^5219.^0^^~4~^~BFSN~^~11512~^^^^^^^^^~06/01/2005~
-~11514~^~322~^0.^0^^~4~^~BFSN~^~11512~^^^^^^^^^~06/01/2005~
-~11514~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~
-~11514~^~334~^0.^0^^~4~^~BFSN~^~11512~^^^^^^^^^~06/01/2005~
-~11514~^~337~^0.^0^^~4~^~BFSN~^~11512~^^^^^^^^^~06/01/2005~
-~11514~^~338~^0.^0^^~4~^~BFSN~^~11512~^^^^^^^^^~06/01/2005~
-~11514~^~417~^11.^0^^~4~^^^^^^^^^^^~08/01/1984~
-~11514~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~
-~11514~^~432~^11.^0^^~4~^^^^^^^^^^^~06/01/2005~
-~11514~^~435~^11.^0^^~4~^~NC~^^^^^^^^^^~06/01/2005~
-~11514~^~601~^0.^0^^~7~^~Z~^^^^^^^^^^~08/01/1984~
-~11516~^~208~^96.^0^^~4~^~NC~^^^^^^^^^^~07/01/2003~
-~11516~^~268~^401.^0^^~4~^~NC~^^^^^^^^^^~07/01/2003~
-~11516~^~301~^37.^6^2.^~1~^^^^^^^^^^^~08/01/1984~
-~11516~^~304~^22.^6^2.^~1~^^^^^^^^^^^~08/01/1984~
-~11516~^~305~^45.^6^3.^~1~^^^^^^^^^^^~08/01/1984~
-~11516~^~306~^365.^6^23.^~1~^^^^^^^^^^^~08/01/1984~
-~11516~^~307~^6.^6^1.^~1~^^^^^^^^^^^~08/01/1984~
-~11516~^~318~^10367.^0^^~1~^~AS~^^^^^^^^^^~07/01/2004~
-~11516~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2002~
-~11516~^~320~^518.^0^^~1~^~AS~^^^^^^^^^^~07/01/2004~
-~11516~^~321~^6220.^6^^~1~^~A~^^^^^^^^^^~07/01/2003~
-~11516~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~
-~11516~^~417~^21.^6^3.^~1~^^^^^^^^^^^~08/01/1984~
-~11516~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~
-~11516~^~432~^21.^6^3.^~1~^^^^^^^^^^^~07/01/2003~
-~11516~^~435~^21.^0^^~4~^~NC~^^^^^^^^^^~07/01/2004~
-~11516~^~601~^0.^0^^~7~^~Z~^^^^^^^^^^~08/01/1984~
-~11517~^~208~^100.^0^^~4~^~NC~^^^^^^^^^^~06/01/2005~
-~11517~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2005~
-~11517~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2005~
-~11517~^~268~^419.^0^^~4~^~NC~^^^^^^^^^^~06/01/2005~
-~11517~^~301~^35.^6^3.^~1~^^^^^^^^^^^~08/01/1984~
-~11517~^~304~^21.^6^0.^~1~^^^^^^^^^^^~08/01/1984~
-~11517~^~305~^44.^6^1.^~1~^^^^^^^^^^^~08/01/1984~
-~11517~^~306~^377.^6^18.^~1~^^^^^^^^^^^~08/01/1984~
-~11517~^~307~^8.^6^2.^~1~^^^^^^^^^^^~08/01/1984~
-~11517~^~318~^20870.^0^^~4~^~NC~^^^^^^^^^^~06/01/2005~
-~11517~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2002~
-~11517~^~320~^1043.^0^^~4~^~NC~^^^^^^^^^^~06/01/2005~
-~11517~^~321~^12498.^0^^~4~^~BFSN~^~11508~^^^^^^^^^~06/01/2005~
-~11517~^~322~^47.^0^^~4~^~BFSN~^~11508~^^^^^^^^^~06/01/2005~
-~11517~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~
-~11517~^~334~^0.^0^^~4~^~BFSN~^~11508~^^^^^^^^^~06/01/2005~
-~11517~^~337~^0.^0^^~4~^~BFSN~^~11508~^^^^^^^^^~06/01/2005~
-~11517~^~338~^0.^0^^~4~^~BFSN~^~11508~^^^^^^^^^~06/01/2005~
-~11517~^~417~^22.^6^3.^~1~^^^^^^^^^^^~08/01/1984~
-~11517~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~
-~11517~^~432~^22.^6^3.^~1~^^^^^^^^^^^~06/01/2005~
-~11517~^~435~^22.^0^^~4~^~NC~^^^^^^^^^^~06/01/2005~
-~11517~^~601~^0.^0^^~7~^~Z~^^^^^^^^^^~08/01/1984~
-~11518~^~208~^112.^0^^~4~^~NC~^^^^^^^^^^~04/01/1997~
-~11518~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~10/01/2002~
-~11518~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~10/01/2002~
-~11518~^~268~^469.^0^^~4~^^^^^^^^^^^~03/01/2007~
-~11518~^~301~^43.^2^^~1~^^^^^^^^^^^~08/01/1984~
-~11518~^~304~^33.^3^6.^~1~^^^^^^^^^^^~08/01/1984~
-~11518~^~305~^84.^2^^~1~^^^^^^^^^^^~08/01/1984~
-~11518~^~306~^591.^5^47.^~1~^^^^^^^^^^^~08/01/1984~
-~11518~^~307~^11.^8^3.^~1~^^^^^^^^^^^~08/01/1984~
-~11518~^~318~^76.^0^^~4~^~NC~^^^^^^^^^^~03/01/2007~
-~11518~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2002~
-~11518~^~320~^4.^0^^~4~^~NC~^^^^^^^^^^~03/01/2007~
-~11518~^~321~^35.^0^^~4~^~T~^^^^^^^^^^~10/01/2002~
-~11518~^~322~^0.^0^^~4~^~T~^^^^^^^^^^~10/01/2002~
-~11518~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~
-~11518~^~334~^20.^0^^~4~^~T~^^^^^^^^^^~10/01/2002~
-~11518~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~10/01/2002~
-~11518~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~10/01/2002~
-~11518~^~417~^22.^0^^~4~^^^^^^^^^^^~08/01/1984~
-~11518~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~
-~11518~^~432~^22.^0^^~4~^^^^^^^^^^^~03/01/2007~
-~11518~^~435~^22.^0^^~4~^~NC~^^^^^^^^^^~03/01/2007~
-~11518~^~601~^0.^0^^~7~^~Z~^^^^^^^^^^~08/01/1984~
-~11518~^~636~^19.^0^^~1~^^^^^^^^^^^~08/01/1984~
-~11519~^~208~^142.^0^^~4~^~NC~^^^^^^^^^^~03/01/2007~
-~11519~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~12/01/2002~
-~11519~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~12/01/2002~
-~11519~^~268~^594.^0^^~4~^^^^^^^^^^^~03/01/2007~
-~11519~^~301~^18.^1^^~1~^^^^^^^^^^^~08/01/1984~
-~11519~^~304~^30.^1^^~1~^^^^^^^^^^^~08/01/1984~
-~11519~^~305~^76.^1^^~1~^^^^^^^^^^^~08/01/1984~
-~11519~^~306~^484.^1^^~1~^^^^^^^^^^^~08/01/1984~
-~11519~^~307~^15.^1^^~1~^^^^^^^^^^^~08/01/1984~
-~11519~^~318~^84.^0^^~4~^~NC~^^^^^^^^^^~03/01/2007~
-~11519~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2002~
-~11519~^~320~^4.^0^^~4~^~NC~^^^^^^^^^^~03/01/2007~
-~11519~^~321~^39.^0^^~4~^~BFSY~^~11518~^^^^^^^^^~12/01/2002~
-~11519~^~322~^0.^0^^~4~^~BFSY~^~11518~^^^^^^^^^~12/01/2002~
-~11519~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~
-~11519~^~334~^22.^0^^~4~^~BFSY~^~11518~^^^^^^^^^~12/01/2002~
-~11519~^~337~^0.^0^^~4~^~BFSY~^~11518~^^^^^^^^^~12/01/2002~
-~11519~^~338~^0.^0^^~4~^~BFSY~^~11518~^^^^^^^^^~12/01/2002~
-~11519~^~417~^19.^0^^~4~^^^^^^^^^^^~08/01/1984~
-~11519~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~
-~11519~^~432~^19.^0^^~4~^^^^^^^^^^^~03/01/2007~
-~11519~^~435~^19.^0^^~4~^~NC~^^^^^^^^^^~03/01/2007~
-~11519~^~601~^0.^0^^~7~^~Z~^^^^^^^^^^~08/01/1984~
-~11520~^~208~^42.^0^^~4~^~NC~^^^^^^^^^^~03/01/2007~
-~11520~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~
-~11520~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~
-~11520~^~268~^177.^0^^~4~^~NC~^^^^^^^^^^~03/01/2007~
-~11520~^~301~^107.^1^^~1~^^^^^^^^^^^~08/01/1984~
-~11520~^~304~^45.^1^^~1~^^^^^^^^^^^~08/01/1984~
-~11520~^~305~^60.^1^^~1~^^^^^^^^^^^~08/01/1984~
-~11520~^~306~^648.^0^^~1~^^^^^^^^^^^~08/01/1984~
-~11520~^~307~^3.^0^^~1~^^^^^^^^^^^~08/01/1984~
-~11520~^~318~^4825.^0^^~4~^~NC~^^^^^^^^^^~03/01/2007~
-~11520~^~319~^0.^0^^~4~^~BNA~^~11419~^^^^^^^^^~02/01/2003~
-~11520~^~320~^241.^0^^~4~^~NC~^^^^^^^^^^~03/01/2007~
-~11520~^~321~^2895.^0^^~4~^~BNA~^~11419~^^^^^^^^^~02/01/2003~
-~11520~^~322~^0.^0^^~4~^~BNA~^~11419~^^^^^^^^^~02/01/2003~
-~11520~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~
-~11520~^~334~^0.^0^^~4~^~BNA~^~11419~^^^^^^^^^~02/01/2003~
-~11520~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~
-~11520~^~338~^1932.^0^^~4~^~O~^^^^^^^^^^~02/01/2003~
-~11520~^~417~^126.^0^^~4~^^^^^^^^^^^~08/01/1984~
-~11520~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~
-~11520~^~432~^126.^0^^~4~^^^^^^^^^^^~03/01/2007~
-~11520~^~435~^126.^0^^~4~^~NC~^^^^^^^^^^~03/01/2007~
-~11520~^~601~^0.^0^^~7~^~Z~^^^^^^^^^^~08/01/1984~
-~11521~^~208~^24.^0^^~4~^~NC~^^^^^^^^^^~08/01/1984~
-~11521~^~268~^100.^0^^~4~^^^^^^^^^^^~05/01/2007~
-~11521~^~301~^86.^2^^~1~^^^^^^^^^^^~08/01/1984~
-~11521~^~304~^20.^3^12.^~1~^^^^^^^^^^^~08/01/1984~
-~11521~^~305~^27.^2^^~1~^^^^^^^^^^^~08/01/1984~
-~11521~^~306~^460.^3^122.^~1~^^^^^^^^^^^~08/01/1984~
-~11521~^~307~^2.^3^0.^~1~^^^^^^^^^^^~08/01/1984~
-~11521~^~318~^4238.^0^^~1~^^^^^^^^^^^~05/01/2007~
-~11521~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2002~
-~11521~^~320~^212.^0^^~1~^^^^^^^^^^^~05/01/2007~
-~11521~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~
-~11521~^~417~^48.^0^^~4~^^^^^^^^^^^~08/01/1984~
-~11521~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~
-~11521~^~432~^48.^0^^~4~^^^^^^^^^^^~05/01/2007~
-~11521~^~435~^48.^0^^~4~^~NC~^^^^^^^^^^~05/01/2007~
-~11521~^~601~^0.^0^^~7~^~Z~^^^^^^^^^^~08/01/1984~
-~11522~^~208~^11.^0^^~4~^~NC~^^^^^^^^^^~08/01/1984~
-~11522~^~268~^46.^0^^~4~^^^^^^^^^^^
-~11522~^~301~^12.^1^^~1~^^^^^^^^^^^~08/01/1984~
-~11522~^~304~^8.^1^^~1~^^^^^^^^^^^~08/01/1984~
-~11522~^~305~^28.^1^^~1~^^^^^^^^^^^~08/01/1984~
-~11522~^~306~^332.^1^^~1~^^^^^^^^^^^~08/01/1984~
-~11522~^~307~^1.^1^^~1~^^^^^^^^^^^~08/01/1984~
-~11522~^~318~^50.^0^^~1~^^^^^^^^^^^~08/01/1984~
-~11522~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2002~
-~11522~^~320~^3.^0^^~1~^^^^^^^^^^^~06/01/2002~
-~11522~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~
-~11522~^~417~^3.^0^^~4~^^^^^^^^^^^~08/01/1984~
-~11522~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~
-~11522~^~432~^3.^0^^~4~^^^^^^^^^^^~12/01/1984~
-~11522~^~435~^3.^0^^~4~^~NC~^^^^^^^^^^~01/01/2001~
-~11522~^~601~^0.^0^^~7~^~Z~^^^^^^^^^^~08/01/1984~
-~11523~^~208~^14.^0^^~4~^~NC~^^^^^^^^^^~08/01/1984~
-~11523~^~268~^59.^0^^~4~^^^^^^^^^^^
-~11523~^~301~^14.^1^^~1~^^^^^^^^^^^~08/01/1984~
-~11523~^~304~^8.^1^^~1~^^^^^^^^^^^~08/01/1984~
-~11523~^~305~^26.^1^^~1~^^^^^^^^^^^~08/01/1984~
-~11523~^~306~^344.^1^^~1~^^^^^^^^^^^~08/01/1984~
-~11523~^~307~^2.^1^^~1~^^^^^^^^^^^~08/01/1984~
-~11523~^~318~^51.^0^^~4~^^^^^^^^^^^~08/01/1984~
-~11523~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2002~
-~11523~^~320~^3.^0^^~4~^^^^^^^^^^^~06/01/2002~
-~11523~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~
-~11523~^~417~^3.^0^^~4~^^^^^^^^^^^~08/01/1984~
-~11523~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~
-~11523~^~432~^3.^0^^~4~^^^^^^^^^^^~12/01/1984~
-~11523~^~435~^3.^0^^~4~^~NC~^^^^^^^^^^~01/01/2001~
-~11523~^~601~^0.^0^^~7~^~Z~^^^^^^^^^^~08/01/1984~
-~11525~^~208~^44.^0^^~4~^~NC~^^^^^^^^^^~04/01/1997~
-~11525~^~268~^184.^0^^~4~^^^^^^^^^^^
-~11525~^~301~^129.^0^^~1~^^^^^^^^^^^~08/01/1984~
-~11525~^~304~^47.^1^^~1~^^^^^^^^^^^~08/01/1984~
-~11525~^~305~^45.^0^^~1~^^^^^^^^^^^~08/01/1984~
-~11525~^~306~^606.^1^^~1~^^^^^^^^^^^~08/01/1984~
-~11525~^~307~^50.^1^^~1~^^^^^^^^^^^~08/01/1984~
-~11525~^~318~^2045.^0^^~1~^^^^^^^^^^^~08/01/1984~
-~11525~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2002~
-~11525~^~320~^102.^0^^~1~^^^^^^^^^^^~06/01/2002~
-~11525~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~
-~11525~^~417~^9.^0^^~4~^^^^^^^^^^^~08/01/1984~
-~11525~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~
-~11525~^~432~^9.^0^^~4~^^^^^^^^^^^~12/01/1984~
-~11525~^~435~^9.^0^^~4~^~NC~^^^^^^^^^^~01/01/2001~
-~11525~^~601~^0.^0^^~7~^~Z~^^^^^^^^^^~08/01/1984~
-~11526~^~208~^44.^0^^~4~^~NC~^^^^^^^^^^~08/01/1984~
-~11526~^~268~^184.^0^^~4~^^^^^^^^^^^
-~11526~^~301~^149.^1^^~1~^^^^^^^^^^^~08/01/1984~
-~11526~^~304~^51.^1^^~1~^^^^^^^^^^^~08/01/1984~
-~11526~^~305~^67.^1^^~1~^^^^^^^^^^^~08/01/1984~
-~11526~^~306~^623.^1^^~1~^^^^^^^^^^^~08/01/1984~
-~11526~^~307~^54.^1^^~1~^^^^^^^^^^^~08/01/1984~
-~11526~^~318~^1764.^0^^~1~^^^^^^^^^^^~08/01/1984~
-~11526~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2002~
-~11526~^~320~^88.^0^^~1~^^^^^^^^^^^~06/01/2002~
-~11526~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~
-~11526~^~417~^7.^0^^~4~^^^^^^^^^^^~08/01/1984~
-~11526~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~
-~11526~^~432~^7.^0^^~4~^^^^^^^^^^^~12/01/1984~
-~11526~^~435~^7.^0^^~4~^~NC~^^^^^^^^^^~01/01/2001~
-~11526~^~601~^0.^0^^~7~^~Z~^^^^^^^^^^~08/01/1984~
-~11527~^~208~^23.^0^^~4~^~NC~^^^^^^^^^^~03/01/2007~
-~11527~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~
-~11527~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~
-~11527~^~268~^95.^0^^~4~^~NC~^^^^^^^^^^~03/01/2007~
-~11527~^~301~^13.^0^^~1~^^^^^^^^^^^~08/01/1984~
-~11527~^~304~^10.^9^0.^~1~^^^^^^^^^^^~08/01/1984~
-~11527~^~305~^28.^9^1.^~1~^^^^^^^^^^^~08/01/1984~
-~11527~^~306~^204.^9^7.^~1~^^^^^^^^^^^~08/01/1984~
-~11527~^~307~^13.^9^1.^~1~^^^^^^^^^^^~08/01/1984~
-~11527~^~318~^642.^0^^~4~^~NC~^^^^^^^^^^~03/01/2007~
-~11527~^~319~^0.^0^^~4~^~BNA~^~11529~^^^^^^^^^~02/01/2003~
-~11527~^~320~^32.^0^^~4~^~NC~^^^^^^^^^^~03/01/2007~
-~11527~^~321~^346.^0^^~4~^~BNA~^~11529~^^^^^^^^^~02/01/2003~
-~11527~^~322~^78.^0^^~4~^~BNA~^~11529~^^^^^^^^^~02/01/2003~
-~11527~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~
-~11527~^~334~^0.^0^^~4~^~BNA~^~11529~^^^^^^^^^~02/01/2003~
-~11527~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~
-~11527~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~
-~11527~^~417~^9.^0^^~4~^^^^^^^^^^^~08/01/1984~
-~11527~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~
-~11527~^~432~^9.^0^^~4~^^^^^^^^^^^~03/01/2007~
-~11527~^~435~^9.^0^^~4~^~NC~^^^^^^^^^^~03/01/2007~
-~11527~^~601~^0.^0^^~7~^~Z~^^^^^^^^^^~08/01/1984~
-~11529~^~208~^18.^0^^~4~^~NC~^^^^^^^^^^~08/01/2010~
-~11529~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~09/01/2002~
-~11529~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~09/01/2002~
-~11529~^~268~^74.^0^^~4~^~NC~^^^^^^^^^^~08/01/2010~
-~11529~^~301~^10.^69^0.^~6~^~JA~^^^8^7.^18.^62^9.^10.^~4~^~09/01/2002~
-~11529~^~304~^11.^70^0.^~6~^~JA~^^^8^7.^15.^63^10.^11.^~4~^~09/01/2002~
-~11529~^~305~^24.^69^0.^~6~^~JA~^^^8^15.^37.^62^22.^25.^~4~^~09/01/2002~
-~11529~^~306~^237.^67^5.^~6~^~JA~^^^8^144.^385.^60^226.^247.^~4~^~09/01/2002~
-~11529~^~307~^5.^66^0.^~6~^~JA~^^^8^1.^24.^59^3.^5.^~4~^~09/01/2002~
-~11529~^~318~^833.^0^^~1~^~AS~^^^^^^^^^^~08/01/2010~
-~11529~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2002~
-~11529~^~320~^42.^0^^~1~^~AS~^^^^^^^^^^~08/01/2010~
-~11529~^~321~^449.^70^2.^~1~^~A~^^^3^184.^572.^3^441.^457.^~2, 3~^~09/01/2002~
-~11529~^~322~^101.^66^101.^~1~^~A~^^^3^0.^112.^59^-101.^304.^~2, 3~^~09/01/2002~
-~11529~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~
-~11529~^~334~^0.^10^0.^~1~^~A~^^^3^0.^0.^^^^~2, 3~^~09/01/2002~
-~11529~^~337~^2573.^13^54.^~1~^~A~^^^3^1136.^3419.^2^2361.^2784.^~2, 3~^~06/01/2003~
-~11529~^~338~^123.^10^4.^~1~^~A~^^^3^98.^138.^2^105.^140.^~2, 3~^~09/01/2002~
-~11529~^~417~^15.^19^2.^~6~^~JA~^^^3^1.^36.^12^10.^19.^~4~^~09/01/2002~
-~11529~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~
-~11529~^~432~^15.^19^2.^~6~^~JA~^^^3^1.^36.^12^10.^19.^^~08/01/2010~
-~11529~^~435~^15.^0^^~4~^~NC~^^^^^^^^^^~08/01/2010~
-~11529~^~601~^0.^0^^~7~^~Z~^^^^^^^^^^~08/01/1984~
-~11529~^~636~^7.^1^^~1~^^^^^^^^^^^~08/01/1984~
-~11530~^~208~^18.^0^^~4~^~NC~^^^^^^^^^^~03/01/2007~
-~11530~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~10/01/2002~
-~11530~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~10/01/2002~
-~11530~^~268~^73.^0^^~4~^~NC~^^^^^^^^^^~03/01/2007~
-~11530~^~301~^11.^4^1.^~1~^~A~^^^1^8.^15.^3^5.^15.^~4~^~10/01/2002~
-~11530~^~304~^9.^4^0.^~1~^~A~^^^1^9.^10.^3^8.^9.^~4~^~10/01/2002~
-~11530~^~305~^28.^4^1.^~1~^~A~^^^1^26.^32.^3^24.^32.^~4~^~10/01/2002~
-~11530~^~306~^218.^4^12.^~1~^~A~^^^1^194.^250.^3^179.^256.^~4~^~10/01/2002~
-~11530~^~307~^11.^0^^~1~^^^^^^^^^^^~06/01/2003~
-~11530~^~318~^489.^0^^~1~^~AS~^^^^^^^^^^~03/01/2007~
-~11530~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2002~
-~11530~^~320~^24.^0^^~1~^~AS~^^^^^^^^^^~03/01/2007~
-~11530~^~321~^293.^8^34.^~1~^~A~^^^2^199.^408.^4^198.^388.^~4~^~06/01/2003~
-~11530~^~322~^0.^8^0.^~1~^~A~^^^2^0.^0.^4^0.^0.^~4~^~06/01/2003~
-~11530~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~
-~11530~^~334~^0.^8^0.^~1~^~A~^^^2^0.^0.^4^0.^0.^~4~^~06/01/2003~
-~11530~^~337~^3041.^8^379.^~1~^~A~^^^2^2342.^4400.^4^1987.^4093.^~4~^~06/01/2003~
-~11530~^~338~^94.^8^14.^~1~^~A~^^^2^70.^150.^4^54.^133.^~4~^~06/01/2003~
-~11530~^~417~^13.^0^^~1~^^^^^^^^^^^~06/01/2003~
-~11530~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~
-~11530~^~432~^13.^0^^~1~^^^^^^^^^^^~03/01/2007~
-~11530~^~435~^13.^0^^~4~^~NC~^^^^^^^^^^~03/01/2007~
-~11530~^~601~^0.^0^^~7~^~Z~^^^^^^^^^^~08/01/1984~
-~11530~^~636~^9.^0^^~1~^^^^^^^^^^^~05/01/2003~
-~11531~^~208~^16.^0^^~4~^~NC~^^^^^^^^^^~08/01/2014~
-~11531~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~09/01/2002~
-~11531~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~09/01/2002~
-~11531~^~268~^69.^0^^~4~^~NC~^^^^^^^^^^~08/01/2014~
-~11531~^~301~^33.^18^2.^~1~^~A~^^^1^17.^53.^11^27.^37.^~2, 3~^~08/01/2014~
-~11531~^~304~^10.^18^0.^~1~^~A~^^^1^9.^11.^13^9.^9.^~2, 3~^~08/01/2014~
-~11531~^~305~^17.^18^0.^~1~^~A~^^^1^14.^19.^13^15.^17.^~2, 3~^~08/01/2014~
-~11531~^~306~^191.^18^2.^~1~^~A~^^^1^165.^206.^11^185.^195.^~2, 3~^~08/01/2014~
-~11531~^~307~^115.^18^6.^~1~^~A~^^^1^43.^189.^12^100.^129.^~2, 3~^~04/01/2014~
-~11531~^~318~^408.^0^^~4~^~NC~^^^^^^^^^^~08/01/2014~
-~11531~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2002~
-~11531~^~320~^20.^0^^~4~^~NC~^^^^^^^^^^~08/01/2014~
-~11531~^~321~^245.^0^^~4~^~BFSY~^~11530~^^^^^^^^^~08/01/2014~
-~11531~^~322~^0.^0^^~4~^~BFSY~^~11530~^^^^^^^^^~03/01/2007~
-~11531~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~
-~11531~^~334~^0.^0^^~4~^~BFSY~^~11530~^^^^^^^^^~03/01/2007~
-~11531~^~337~^2537.^0^^~4~^~BFSY~^~11530~^^^^^^^^^~08/01/2014~
-~11531~^~338~^78.^0^^~4~^~BFSY~^~11530~^^^^^^^^^~08/01/2014~
-~11531~^~417~^8.^0^^~4~^^^^^^^^^^^~03/01/2007~
-~11531~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2006~
-~11531~^~432~^8.^0^^~4~^^^^^^^^^^^~03/01/2007~
-~11531~^~435~^8.^0^^~4~^~NC~^^^^^^^^^^~03/01/2007~
-~11531~^~601~^0.^0^^~7~^~Z~^^^^^^^^^^~08/01/1984~
-~11533~^~208~^26.^0^^~4~^~NC~^^^^^^^^^^~03/01/2007~
-~11533~^~262~^0.^0^^~4~^~BFSN~^~11531~^^^^^^^^^~11/01/2002~
-~11533~^~263~^0.^0^^~4~^~BFSN~^~11531~^^^^^^^^^~11/01/2002~
-~11533~^~268~^108.^0^^~4~^~NC~^^^^^^^^^^~03/01/2007~
-~11533~^~301~^34.^40^2.^~1~^^^^4^10.^70.^39^29.^38.^~4~^~11/01/2002~
-~11533~^~304~^12.^90^0.^~1~^^^^^^^^^^^~08/01/1984~
-~11533~^~305~^20.^88^0.^~1~^^^^^^^^^^^~08/01/1984~
-~11533~^~306~^207.^10^13.^~1~^^^^2^161.^288.^9^177.^237.^~4~^~11/01/2002~
-~11533~^~307~^221.^38^10.^~1~^^^^4^87.^354.^37^199.^243.^~4~^~06/01/2013~
-~11533~^~318~^172.^0^^~4~^~NC~^^^^^^^^^^~03/01/2007~
-~11533~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2002~
-~11533~^~320~^9.^0^^~4~^~NC~^^^^^^^^^^~03/01/2007~
-~11533~^~321~^103.^0^^~4~^~BFSN~^~11531~^^^^^^^^^~03/01/2007~
-~11533~^~322~^0.^0^^~4~^~BFSN~^~11531~^^^^^^^^^~11/01/2002~
-~11533~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~
-~11533~^~334~^0.^0^^~4~^~BFSN~^~11531~^^^^^^^^^~11/01/2002~
-~11533~^~337~^4088.^0^^~4~^~BFSN~^~11531~^^^^^^^^^~03/01/2007~
-~11533~^~338~^126.^0^^~4~^~BFSN~^~11531~^^^^^^^^^~03/01/2007~
-~11533~^~417~^5.^0^^~4~^^^^^^^^^^^~08/01/1984~
-~11533~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~
-~11533~^~432~^5.^0^^~4~^^^^^^^^^^^~03/01/2007~
-~11533~^~435~^5.^0^^~4~^~NC~^^^^^^^^^^~03/01/2007~
-~11533~^~601~^0.^0^^~7~^~Z~^^^^^^^^^^~08/01/1984~
-~11537~^~208~^15.^0^^~4~^~NC~^^^^^^^^^^~08/01/1984~
-~11537~^~268~^63.^0^^~4~^^^^^^^^^^^
-~11537~^~301~^20.^1^^~1~^^^^^^^^^^^~08/01/1984~
-~11537~^~304~^11.^1^^~1~^^^^^^^^^^^~08/01/1984~
-~11537~^~305~^14.^1^^~1~^^^^^^^^^^^~08/01/1984~
-~11537~^~306~^107.^1^^~1~^^^^^^^^^^^~08/01/1984~
-~11537~^~307~^401.^1^^~1~^^^^^^^^^^^~08/01/1984~
-~11537~^~318~^390.^1^^~1~^^^^^^^^^^^~08/01/1984~
-~11537~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2002~
-~11537~^~320~^20.^1^^~1~^^^^^^^^^^^~06/01/2002~
-~11537~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~
-~11537~^~417~^9.^0^^~4~^^^^^^^^^^^~08/01/1984~
-~11537~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~
-~11537~^~432~^9.^0^^~4~^^^^^^^^^^^~12/01/1984~
-~11537~^~435~^9.^0^^~4~^~NC~^^^^^^^^^^~01/01/2001~
-~11537~^~601~^0.^0^^~7~^~Z~^^^^^^^^^^~08/01/1984~
-~11540~^~208~^17.^0^^~4~^~NC~^^^^^^^^^^~03/01/2007~
-~11540~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~12/01/2002~
-~11540~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~12/01/2002~
-~11540~^~268~^72.^0^^~4~^~NC~^^^^^^^^^^~08/01/2014~
-~11540~^~301~^10.^12^0.^~1~^~A~^^^1^7.^14.^6^8.^11.^~2, 3~^~08/01/2014~
-~11540~^~304~^11.^12^0.^~1~^~A~^^^1^9.^14.^7^9.^11.^~2, 3~^~08/01/2014~
-~11540~^~305~^19.^12^0.^~1~^~A~^^^1^15.^23.^10^17.^19.^~2, 3~^~08/01/2014~
-~11540~^~306~^217.^12^8.^~1~^~A~^^^1^169.^282.^9^198.^235.^~2, 3~^~08/01/2014~
-~11540~^~307~^253.^12^4.^~1~^~A~^^^1^218.^294.^10^243.^262.^~2, 3~^~10/01/2014~
-~11540~^~318~^450.^0^^~1~^~AS~^^^^^^^^^^~03/01/2007~
-~11540~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2002~
-~11540~^~320~^23.^0^^~1~^~AS~^^^^^^^^^^~03/01/2007~
-~11540~^~321~^270.^6^^~1~^~A~^^^^^^^^^^~12/01/2002~
-~11540~^~322~^0.^6^^~1~^~A~^^^^^^^^^^~12/01/2002~
-~11540~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~
-~11540~^~334~^0.^6^^~1~^~A~^^^^^^^^^^~12/01/2002~
-~11540~^~337~^9037.^18^^~1~^~A~^^^3^5000.^11600.^^^^~2, 3~^~12/01/2002~
-~11540~^~338~^60.^6^^~1~^~A~^^^^^^^^^^~12/01/2002~
-~11540~^~417~^20.^3^0.^~1~^^^^^^^^^^^~08/01/1984~
-~11540~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~
-~11540~^~432~^20.^3^0.^~1~^^^^^^^^^^^~03/01/2007~
-~11540~^~435~^20.^0^^~4~^~NC~^^^^^^^^^^~03/01/2007~
-~11540~^~601~^0.^0^^~7~^~Z~^^^^^^^^^^~08/01/1984~
-~11546~^~208~^82.^0^^~4~^~NC~^^^^^^^^^^~08/01/2010~
-~11546~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~09/01/2002~
-~11546~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~09/01/2002~
-~11546~^~268~^343.^0^^~4~^~NC~^^^^^^^^^^~08/01/2010~
-~11546~^~301~^36.^30^1.^~6~^~JA~^^^4^22.^59.^19^32.^39.^~2, 3~^~09/01/2002~
-~11546~^~304~^42.^6^2.^~1~^~A~^^^1^34.^47.^5^36.^47.^~2, 3~^~09/01/2002~
-~11546~^~305~^83.^6^2.^~1~^~A~^^^1^72.^93.^5^75.^90.^~2, 3~^~09/01/2002~
-~11546~^~306~^1014.^16^15.^~6~^~JA~^^^3^890.^1107.^12^980.^1046.^~2, 3~^~09/01/2002~
-~11546~^~307~^59.^0^^~8~^~LC~^^^^^^^^^^~08/01/2011~
-~11546~^~318~^1525.^0^^~4~^~NC~^^^^^^^^^^~08/01/2010~
-~11546~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2002~
-~11546~^~320~^76.^0^^~4~^~NC~^^^^^^^^^^~03/01/2006~
-~11546~^~321~^901.^9^45.^~11~^~JO~^^^3^1.^1700.^4^773.^1027.^~2, 3~^~09/01/2002~
-~11546~^~322~^29.^7^28.^~11~^~JO~^^^2^0.^200.^1^-334.^391.^~2, 3~^~09/01/2002~
-~11546~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~
-~11546~^~334~^0.^6^0.^~11~^~JO~^^^2^0.^0.^^^^~2, 3~^~09/01/2002~
-~11546~^~337~^28764.^13^556.^~11~^~JO~^^^2^5400.^55661.^4^27219.^30308.^~2, 3~^~09/01/2002~
-~11546~^~338~^0.^6^0.^~11~^~JO~^^^2^0.^0.^^^^~2, 3~^~09/01/2002~
-~11546~^~417~^12.^6^0.^~1~^~A~^^^1^11.^13.^5^11.^12.^~2, 3~^~09/01/2002~
-~11546~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~
-~11546~^~432~^12.^6^0.^~1~^~A~^^^1^11.^13.^5^11.^12.^^~08/01/2010~
-~11546~^~435~^12.^0^^~4~^~NC~^^^^^^^^^^~08/01/2010~
-~11546~^~601~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2006~
-~11547~^~208~^38.^0^^~4~^~NC~^^^^^^^^^^~02/01/2007~
-~11547~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~09/01/2002~
-~11547~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~09/01/2002~
-~11547~^~268~^158.^0^^~4~^~NC~^^^^^^^^^^~02/01/2007~
-~11547~^~301~^18.^36^0.^~6~^~JA~^^^4^11.^33.^24^16.^19.^~2, 3~^~09/01/2002~
-~11547~^~304~^23.^6^0.^~1~^~A~^^^1^21.^25.^5^21.^24.^~2, 3~^~09/01/2002~
-~11547~^~305~^40.^6^0.^~1~^~A~^^^1^38.^43.^5^38.^42.^~2, 3~^~09/01/2002~
-~11547~^~306~^439.^27^15.^~6~^~JA~^^^4^259.^618.^19^405.^472.^~2, 3~^~09/01/2002~
-~11547~^~307~^28.^32^2.^~6~^~JA~^^^4^2.^89.^25^24.^32.^~2, 3~^~09/01/2002~
-~11547~^~318~^510.^0^^~1~^~AS~^^^^^^^^^^~02/01/2007~
-~11547~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2002~
-~11547~^~320~^26.^0^^~1~^~AS~^^^^^^^^^^~02/01/2007~
-~11547~^~321~^306.^6^10.^~1~^~A~^^^1^280.^353.^5^280.^332.^~2, 3~^~02/01/2007~
-~11547~^~322~^0.^6^0.^~1~^~A~^^^1^0.^0.^^^^~2, 3~^~02/01/2007~
-~11547~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~
-~11547~^~334~^0.^6^0.^~1~^~A~^^^1^0.^0.^^^^~2, 3~^~02/01/2007~
-~11547~^~337~^21754.^6^604.^~1~^~A~^^^1^19729.^23533.^5^20198.^23308.^~2, 3~^~02/01/2007~
-~11547~^~338~^0.^6^0.^~1~^~A~^^^1^0.^0.^^^^~2, 3~^~02/01/2007~
-~11547~^~417~^11.^0^^~4~^^^^^^^^^^^~09/01/2002~
-~11547~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~
-~11547~^~432~^11.^0^^~4~^^^^^^^^^^^~02/01/2007~
-~11547~^~435~^11.^0^^~4~^~NC~^^^^^^^^^^~02/01/2007~
-~11547~^~601~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2007~
-~11548~^~208~^302.^0^^~4~^~NC~^^^^^^^^^^~02/01/2003~
-~11548~^~268~^1263.^0^^~4~^~NC~^^^^^^^^^^~02/01/2003~
-~11548~^~301~^166.^1^^~1~^^^^^^^^^^^~08/01/1984~
-~11548~^~304~^178.^0^^~1~^^^^^^^^^^^~08/01/1984~
-~11548~^~305~^295.^1^^~1~^^^^^^^^^^^~08/01/1984~
-~11548~^~306~^1927.^1^^~1~^^^^^^^^^^^~08/01/1984~
-~11548~^~307~^134.^0^^~1~^^^^^^^^^^^~08/01/1984~
-~11548~^~318~^17247.^0^^~4~^~NC~^^^^^^^^^^~02/01/2003~
-~11548~^~319~^0.^0^^~4~^~BNA~^~11531~^^^^^^^^^~02/01/2003~
-~11548~^~320~^862.^0^^~4~^~NC~^^^^^^^^^^~02/01/2003~
-~11548~^~321~^10348.^0^^~4~^~BNA~^~11531~^^^^^^^^^~02/01/2003~
-~11548~^~322~^0.^0^^~4~^~BNA~^~11531~^^^^^^^^^~02/01/2003~
-~11548~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~
-~11548~^~334~^0.^0^^~4~^~BNA~^~11531~^^^^^^^^^~02/01/2003~
-~11548~^~337~^46260.^0^^~4~^~BFSN~^~11531~^^^^^^^^^~02/01/2003~
-~11548~^~338~^1370.^0^^~4~^~BFSN~^~11531~^^^^^^^^^~02/01/2003~
-~11548~^~417~^120.^0^^~1~^^^^^^^^^^^~08/01/1984~
-~11548~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~
-~11548~^~432~^120.^0^^~1~^^^^^^^^^^^~02/01/2003~
-~11548~^~435~^120.^0^^~4~^~NC~^^^^^^^^^^~02/01/2003~
-~11548~^~601~^0.^0^^~7~^~Z~^^^^^^^^^^~08/01/1984~
-~11549~^~208~^24.^0^^~4~^~NC~^^^^^^^^^^~08/01/2010~
-~11549~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~12/01/2002~
-~11549~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~12/01/2002~
-~11549~^~268~^102.^0^^~4~^~NC~^^^^^^^^^^~08/01/2014~
-~11549~^~301~^14.^18^0.^~1~^~A~^^^2^11.^19.^6^12.^14.^~2, 3~^~08/01/2014~
-~11549~^~304~^15.^18^0.^~1~^~A~^^^2^13.^17.^10^14.^15.^~2, 3~^~08/01/2014~
-~11549~^~305~^27.^18^0.^~1~^~A~^^^2^21.^32.^8^25.^28.^~2, 3~^~08/01/2014~
-~11549~^~306~^297.^12^8.^~1~^~A~^^^1^249.^332.^6^274.^318.^~2, 3~^~08/01/2014~
-~11549~^~307~^474.^12^4.^~1~^~A~^^^1^394.^648.^9^463.^485.^~2, 3~^~08/01/2014~
-~11549~^~318~^435.^0^^~4~^~NC~^^^^^^^^^^~04/01/2014~
-~11549~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2002~
-~11549~^~320~^22.^0^^~4~^~NC~^^^^^^^^^^~08/01/2010~
-~11549~^~321~^259.^8^9.^~11~^~JO~^^^2^139.^418.^4^232.^286.^~2, 3~^~08/01/2010~
-~11549~^~322~^0.^8^0.^~11~^~JO~^^^2^0.^0.^^^^~1, 2, 3~^~08/01/2010~
-~11549~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~
-~11549~^~334~^3.^8^0.^~11~^~JO~^^^2^0.^13.^^^^~2, 3~^~08/01/2010~
-~11549~^~337~^13895.^8^316.^~11~^~JO~^^^2^10080.^16820.^4^13016.^14773.^~2, 3~^~04/01/2014~
-~11549~^~338~^24.^8^0.^~11~^~JO~^^^2^0.^111.^^^^~2, 3~^~04/01/2014~
-~11549~^~417~^9.^0^^~4~^^^^^^^^^^^~04/01/2014~
-~11549~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~
-~11549~^~432~^9.^0^^~4~^^^^^^^^^^^~04/01/2014~
-~11549~^~435~^9.^0^^~4~^~NC~^^^^^^^^^^~04/01/2014~
-~11549~^~601~^0.^0^^~7~^~Z~^^^^^^^^^^~08/01/1984~
-~11551~^~208~^35.^0^^~4~^~NC~^^^^^^^^^^~06/01/2008~
-~11551~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~
-~11551~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~
-~11551~^~268~^146.^0^^~4~^^^^^^^^^^^~06/01/2008~
-~11551~^~301~^13.^66^0.^~1~^^^^^^^^^^^~08/01/1984~
-~11551~^~304~^19.^32^0.^~1~^^^^^^^^^^^~08/01/1984~
-~11551~^~305~^32.^32^0.^~1~^^^^^^^^^^^~08/01/1984~
-~11551~^~306~^380.^32^7.^~1~^^^^^^^^^^^~08/01/1984~
-~11551~^~307~^452.^32^8.^~1~^^^^^^^^^^^~08/01/1984~
-~11551~^~318~^955.^0^^~4~^~NC~^^^^^^^^^^~06/01/2008~
-~11551~^~319~^0.^0^^~4~^~BNA~^~11549~^^^^^^^^^~02/01/2003~
-~11551~^~320~^48.^0^^~4~^~NC~^^^^^^^^^^~06/01/2008~
-~11551~^~321~^570.^0^^~4~^~BNA~^~11549~^^^^^^^^^~06/01/2008~
-~11551~^~322~^0.^0^^~4~^~BNA~^~11549~^^^^^^^^^~02/01/2003~
-~11551~^~334~^6.^0^^~4~^~BNA~^~11549~^^^^^^^^^~06/01/2008~
-~11551~^~337~^18942.^0^^~4~^~BFSN~^~11549~^^^^^^^^^~06/01/2008~
-~11551~^~338~^31.^0^^~4~^~BFSN~^~11549~^^^^^^^^^~06/01/2008~
-~11551~^~417~^9.^0^^~4~^^^^^^^^^^^~08/01/1984~
-~11551~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~
-~11551~^~432~^9.^0^^~4~^^^^^^^^^^^~06/01/2008~
-~11551~^~435~^9.^0^^~4~^~NC~^^^^^^^^^^~06/01/2008~
-~11551~^~601~^0.^0^^~7~^~Z~^^^^^^^^^^~08/01/1984~
-~11553~^~208~^42.^0^^~4~^~NC~^^^^^^^^^^~08/01/1984~
-~11553~^~268~^176.^0^^~4~^^^^^^^^^^^
-~11553~^~301~^17.^54^0.^~1~^^^^^^^^^^^~08/01/1984~
-~11553~^~304~^19.^16^0.^~1~^^^^^^^^^^^~08/01/1984~
-~11553~^~305~^39.^16^0.^~1~^^^^^^^^^^^~08/01/1984~
-~11553~^~306~^413.^16^6.^~1~^^^^^^^^^^^~08/01/1984~
-~11553~^~307~^551.^16^12.^~1~^^^^^^^^^^^~08/01/1984~
-~11553~^~318~^850.^54^12.^~1~^^^^^^^^^^^~08/01/1984~
-~11553~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2002~
-~11553~^~320~^43.^54^0.^~1~^^^^^^^^^^^~06/01/2002~
-~11553~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~
-~11553~^~417~^22.^0^^~4~^^^^^^^^^^^~08/01/1984~
-~11553~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~
-~11553~^~432~^22.^0^^~4~^^^^^^^^^^^~12/01/1984~
-~11553~^~435~^22.^0^^~4~^~NC~^^^^^^^^^^~01/01/2001~
-~11553~^~601~^0.^0^^~7~^~Z~^^^^^^^^^^~08/01/1984~
-~11555~^~208~^59.^0^^~4~^~NC~^^^^^^^^^^~08/01/1984~
-~11555~^~268~^247.^0^^~4~^^^^^^^^^^^
-~11555~^~301~^37.^56^1.^~1~^^^^^^^^^^^~08/01/1984~
-~11555~^~304~^19.^0^^~4~^^^^^^^^^^^~08/01/1984~
-~11555~^~305~^54.^0^^~4~^^^^^^^^^^^~08/01/1984~
-~11555~^~306~^356.^0^^~4~^^^^^^^^^^^~08/01/1984~
-~11555~^~307~^543.^0^^~4~^^^^^^^^^^^~08/01/1984~
-~11555~^~318~^987.^61^18.^~1~^^^^^^^^^^^~08/01/1984~
-~11555~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2002~
-~11555~^~320~^49.^61^0.^~1~^^^^^^^^^^^~06/01/2002~
-~11555~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~
-~11555~^~417~^8.^0^^~4~^^^^^^^^^^^~08/01/1984~
-~11555~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~
-~11555~^~432~^8.^0^^~4~^^^^^^^^^^^~12/01/1984~
-~11555~^~435~^8.^0^^~4~^~NC~^^^^^^^^^^~01/01/2001~
-~11555~^~601~^3.^0^^~4~^^^^^^^^^^^~01/01/1994~
-~11557~^~208~^41.^0^^~4~^~NC~^^^^^^^^^^~06/01/2008~
-~11557~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~
-~11557~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~
-~11557~^~268~^171.^0^^~4~^~NC~^^^^^^^^^^~06/01/2008~
-~11557~^~301~^13.^28^0.^~1~^^^^^^^^^^^~08/01/1984~
-~11557~^~304~^21.^0^^~4~^^^^^^^^^^^~08/01/1984~
-~11557~^~305~^38.^0^^~4~^^^^^^^^^^^~08/01/1984~
-~11557~^~306~^398.^0^^~4~^^^^^^^^^^^~08/01/1984~
-~11557~^~307~^368.^0^^~8~^~LC~^^^^^^^^^^~05/01/2015~
-~11557~^~318~^810.^0^^~4~^~NC~^^^^^^^^^^~06/01/2008~
-~11557~^~319~^0.^0^^~4~^~BNA~^~11549~^^^^^^^^^~02/01/2003~
-~11557~^~320~^41.^0^^~4~^~NC~^^^^^^^^^^~06/01/2008~
-~11557~^~321~^483.^0^^~4~^~BNA~^~11549~^^^^^^^^^~06/01/2008~
-~11557~^~322~^0.^0^^~4~^~BNA~^~11549~^^^^^^^^^~02/01/2003~
-~11557~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~
-~11557~^~334~^6.^0^^~4~^~BNA~^~11549~^^^^^^^^^~06/01/2008~
-~11557~^~337~^18454.^0^^~4~^~BFSN~^~11549~^^^^^^^^^~06/01/2008~
-~11557~^~338~^30.^0^^~4~^~BFSN~^~11549~^^^^^^^^^~06/01/2008~
-~11557~^~417~^14.^0^^~4~^^^^^^^^^^^~08/01/1984~
-~11557~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~
-~11557~^~432~^14.^0^^~4~^^^^^^^^^^^~06/01/2008~
-~11557~^~435~^14.^0^^~4~^~NC~^^^^^^^^^^~06/01/2008~
-~11557~^~601~^0.^0^^~7~^~Z~^^^^^^^^^^~08/01/1984~
-~11559~^~208~^32.^0^^~4~^~NC~^^^^^^^^^^~08/01/1984~
-~11559~^~268~^134.^0^^~4~^^^^^^^^^^^
-~11559~^~301~^10.^27^0.^~1~^^^^^^^^^^^~08/01/1984~
-~11559~^~304~^20.^0^^~1~^^^^^^^^^^^~08/01/1984~
-~11559~^~305~^42.^0^^~1~^^^^^^^^^^^~08/01/1984~
-~11559~^~306~^373.^0^^~1~^^^^^^^^^^^~08/01/1984~
-~11559~^~307~^15.^0^^~1~^^^^^^^^^^^~08/01/1984~
-~11559~^~318~^801.^27^18.^~1~^^^^^^^^^^^~08/01/1984~
-~11559~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2002~
-~11559~^~320~^40.^27^0.^~1~^^^^^^^^^^^~06/01/2002~
-~11559~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~
-~11559~^~417~^9.^0^^~4~^^^^^^^^^^^~08/01/1984~
-~11559~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~
-~11559~^~432~^9.^0^^~4~^^^^^^^^^^^~12/01/1984~
-~11559~^~435~^9.^0^^~4~^~NC~^^^^^^^^^^~01/01/2001~
-~11559~^~601~^0.^0^^~7~^~Z~^^^^^^^^^^~08/01/1984~
-~11563~^~208~^40.^0^^~4~^~NC~^^^^^^^^^^~08/01/1984~
-~11563~^~268~^167.^0^^~4~^^^^^^^^^^^
-~11563~^~301~^8.^0^^~1~^^^^^^^^^^^~08/01/1984~
-~11563~^~304~^5.^0^^~1~^^^^^^^^^^^~08/01/1984~
-~11563~^~305~^4.^0^^~1~^^^^^^^^^^^~08/01/1984~
-~11563~^~306~^5.^0^^~1~^^^^^^^^^^^~08/01/1984~
-~11563~^~307~^5.^0^^~1~^^^^^^^^^^^~08/01/1984~
-~11563~^~318~^200.^0^^~1~^^^^^^^^^^^~08/01/1984~
-~11563~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2002~
-~11563~^~320~^10.^0^^~1~^^^^^^^^^^^~06/01/2002~
-~11563~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~
-~11563~^~417~^15.^0^^~4~^^^^^^^^^^^~08/01/1984~
-~11563~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~
-~11563~^~432~^15.^0^^~4~^^^^^^^^^^^~12/01/1984~
-~11563~^~435~^15.^0^^~4~^~NC~^^^^^^^^^^~01/01/2001~
-~11563~^~601~^0.^0^^~7~^~Z~^^^^^^^^^^~08/01/1984~
-~11564~^~208~^28.^0^^~4~^~NC~^^^^^^^^^^~03/01/2007~
-~11564~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~10/01/2002~
-~11564~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~10/01/2002~
-~11564~^~268~^117.^0^^~4~^~NC~^^^^^^^^^^~03/01/2007~
-~11564~^~301~^30.^1^^~1~^^^^^^^^^^^~08/01/1984~
-~11564~^~304~^11.^1^^~1~^^^^^^^^^^^~08/01/1984~
-~11564~^~305~^27.^1^^~1~^^^^^^^^^^^~08/01/1984~
-~11564~^~306~^191.^2^^~1~^^^^^^^^^^^~08/01/1984~
-~11564~^~307~^67.^2^^~1~^^^^^^^^^^^~08/01/1984~
-~11564~^~318~^0.^0^^~1~^~AS~^^^^^^^^^^~03/01/2007~
-~11564~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2002~
-~11564~^~320~^0.^0^^~1~^~AS~^^^^^^^^^^~03/01/2007~
-~11564~^~321~^0.^0^^~7~^~Z~^^^^^^^^^^~10/01/2002~
-~11564~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~10/01/2002~
-~11564~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~
-~11564~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~10/01/2002~
-~11564~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~10/01/2002~
-~11564~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~10/01/2002~
-~11564~^~417~^15.^3^0.^~1~^^^^^^^^^^^~08/01/1984~
-~11564~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~
-~11564~^~432~^15.^3^0.^~1~^^^^^^^^^^^~03/01/2007~
-~11564~^~435~^15.^0^^~4~^~NC~^^^^^^^^^^~03/01/2007~
-~11564~^~601~^0.^0^^~7~^~Z~^^^^^^^^^^~08/01/1984~
-~11564~^~636~^7.^0^^~1~^^^^^^^^^^^~08/01/1984~
-~11565~^~208~^22.^0^^~4~^~NC~^^^^^^^^^^~03/01/2007~
-~11565~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~12/01/2002~
-~11565~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~12/01/2002~
-~11565~^~268~^92.^0^^~4~^~NC~^^^^^^^^^^~03/01/2007~
-~11565~^~301~^33.^18^1.^~1~^~A~^^^7^27.^45.^17^30.^35.^~4~^~12/01/2002~
-~11565~^~304~^9.^18^0.^~1~^~A~^^^7^5.^12.^17^7.^9.^~4~^~12/01/2002~
-~11565~^~305~^26.^18^1.^~1~^~A~^^^7^11.^36.^17^22.^29.^~4~^~12/01/2002~
-~11565~^~306~^177.^18^6.^~1~^~A~^^^7^110.^221.^17^162.^190.^~4~^~12/01/2002~
-~11565~^~307~^16.^18^3.^~1~^~A~^^^7^3.^56.^17^8.^23.^~4~^~12/01/2002~
-~11565~^~318~^0.^0^^~4~^~NC~^^^^^^^^^^~03/01/2007~
-~11565~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2002~
-~11565~^~320~^0.^0^^~4~^~NC~^~11564~^^^^^^^^^~03/01/2007~
-~11565~^~321~^0.^0^^~4~^~BFSN~^~11564~^^^^^^^^^~12/01/2002~
-~11565~^~322~^0.^0^^~4~^~BFSN~^~11564~^^^^^^^^^~12/01/2002~
-~11565~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~
-~11565~^~334~^0.^0^^~4~^~BFSN~^~11564~^^^^^^^^^~12/01/2002~
-~11565~^~337~^0.^0^^~4~^~BFSN~^~11564~^^^^^^^^^~12/01/2002~
-~11565~^~338~^0.^0^^~4~^~BFSN~^~11564~^^^^^^^^^~12/01/2002~
-~11565~^~417~^9.^0^^~1~^^^^^^^^^^^~08/01/1984~
-~11565~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~
-~11565~^~432~^9.^0^^~1~^^~11564~^^^^^^^^^~03/01/2007~
-~11565~^~435~^9.^0^^~4~^~NC~^~11564~^^^^^^^^^~03/01/2007~
-~11565~^~601~^0.^0^^~7~^~Z~^^^^^^^^^^~08/01/1984~
-~11566~^~208~^16.^0^^~4~^~NC~^^^^^^^^^^~08/01/1984~
-~11566~^~268~^67.^0^^~4~^^^^^^^^^^^
-~11566~^~301~^23.^1^^~1~^^^^^^^^^^^~08/01/1984~
-~11566~^~304~^10.^0^^~1~^^^^^^^^^^^~08/01/1984~
-~11566~^~305~^20.^0^^~1~^^^^^^^^^^^~08/01/1984~
-~11566~^~306~^137.^0^^~1~^^^^^^^^^^^~08/01/1984~
-~11566~^~307~^25.^0^^~1~^^^^^^^^^^^~08/01/1984~
-~11566~^~318~^26.^1^^~1~^^^^^^^^^^^~08/01/1984~
-~11566~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2002~
-~11566~^~320~^1.^1^^~1~^^^^^^^^^^^~06/01/2002~
-~11566~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~
-~11566~^~417~^8.^0^^~4~^^^^^^^^^^^~08/01/1984~
-~11566~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~
-~11566~^~432~^8.^0^^~4~^^^^^^^^^^^~12/01/1984~
-~11566~^~435~^8.^0^^~4~^~NC~^^^^^^^^^^~01/01/2001~
-~11566~^~601~^0.^0^^~7~^~Z~^^^^^^^^^^~08/01/1984~
-~11567~^~208~^23.^0^^~4~^~NC~^^^^^^^^^^~03/01/2007~
-~11567~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~12/01/2002~
-~11567~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~12/01/2002~
-~11567~^~268~^96.^0^^~4~^~NC~^^^^^^^^^^~03/01/2007~
-~11567~^~301~^32.^0^^~1~^^^^^^^^^^^~08/01/1984~
-~11567~^~304~^14.^0^^~1~^^^^^^^^^^^~08/01/1984~
-~11567~^~305~^26.^0^^~1~^^^^^^^^^^^~08/01/1984~
-~11567~^~306~^182.^0^^~1~^^^^^^^^^^^~08/01/1984~
-~11567~^~307~^36.^0^^~1~^^^^^^^^^^^~08/01/1984~
-~11567~^~318~^0.^0^^~4~^~NC~^^^^^^^^^^~03/01/2007~
-~11567~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2002~
-~11567~^~320~^0.^0^^~4~^~NC~^^^^^^^^^^~03/01/2007~
-~11567~^~321~^0.^0^^~4~^~BFSN~^~11565~^^^^^^^^^~12/01/2002~
-~11567~^~322~^0.^0^^~4~^~BFSN~^~11565~^^^^^^^^^~12/01/2002~
-~11567~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~
-~11567~^~334~^0.^0^^~4~^~BFSN~^~11565~^^^^^^^^^~12/01/2002~
-~11567~^~337~^0.^0^^~4~^~BFSN~^~11565~^^^^^^^^^~12/01/2002~
-~11567~^~338~^0.^0^^~4~^~BFSN~^~11565~^^^^^^^^^~12/01/2002~
-~11567~^~417~^8.^0^^~4~^^^^^^^^^^^~08/01/1984~
-~11567~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~
-~11567~^~432~^8.^0^^~4~^^^^^^^^^^^~03/01/2007~
-~11567~^~435~^8.^0^^~4~^~NC~^^^^^^^^^^~03/01/2007~
-~11567~^~601~^0.^0^^~7~^~Z~^^^^^^^^^^~08/01/1984~
-~11568~^~208~^32.^0^^~4~^~NC~^^^^^^^^^^~06/01/2005~
-~11568~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2005~
-~11568~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2005~
-~11568~^~268~^132.^0^^~4~^~NC~^^^^^^^^^^~06/01/2005~
-~11568~^~301~^190.^1^^~1~^^^^^^^^^^^~08/01/1984~
-~11568~^~304~^31.^1^^~1~^^^^^^^^^^^~08/01/1984~
-~11568~^~305~^42.^1^^~1~^^^^^^^^^^^~08/01/1984~
-~11568~^~306~^296.^5^20.^~1~^^^^^^^^^^^~08/01/1984~
-~11568~^~307~^40.^5^8.^~1~^^^^^^^^^^^~08/01/1984~
-~11568~^~318~^11587.^0^^~4~^~NC~^^^^^^^^^^~06/01/2005~
-~11568~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2002~
-~11568~^~320~^579.^0^^~4~^~NC~^^^^^^^^^^~06/01/2005~
-~11568~^~321~^6952.^0^^~4~^~BFSN~^~11569~^^^^^^^^^~06/01/2005~
-~11568~^~322~^0.^0^^~4~^~BFSN~^~11569~^^^^^^^^^~06/01/2005~
-~11568~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~
-~11568~^~334~^0.^0^^~4~^~BFSN~^~11569~^^^^^^^^^~06/01/2005~
-~11568~^~337~^0.^0^^~4~^~BFSN~^~11569~^^^^^^^^^~06/01/2005~
-~11568~^~338~^12825.^0^^~4~^~BFSN~^~11569~^^^^^^^^^~06/01/2005~
-~11568~^~417~^194.^3^4.^~1~^^^^^^^^^^^~08/01/1984~
-~11568~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~
-~11568~^~432~^194.^3^4.^~1~^^^^^^^^^^^~06/01/2005~
-~11568~^~435~^194.^0^^~4~^~NC~^^^^^^^^^^~06/01/2005~
-~11568~^~601~^0.^0^^~7~^~Z~^^^^^^^^^^~08/01/1984~
-~11568~^~636~^12.^0^^~1~^^^^^^^^^^^~08/01/1984~
-~11569~^~208~^20.^0^^~4~^~NC~^^^^^^^^^^~03/01/2007~
-~11569~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~12/01/2002~
-~11569~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~12/01/2002~
-~11569~^~268~^84.^0^^~4~^^^^^^^^^^^~03/01/2007~
-~11569~^~301~^137.^0^^~1~^^^^^^^^^^^~08/01/1984~
-~11569~^~304~^22.^0^^~1~^^^^^^^^^^^~08/01/1984~
-~11569~^~305~^29.^0^^~1~^^^^^^^^^^^~08/01/1984~
-~11569~^~306~^203.^0^^~1~^^^^^^^^^^^~08/01/1984~
-~11569~^~307~^29.^0^^~1~^^^^^^^^^^^~08/01/1984~
-~11569~^~318~^7625.^0^^~1~^~AS~^^^^^^^^^^~03/01/2007~
-~11569~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2002~
-~11569~^~320~^381.^0^^~1~^~AS~^^^^^^^^^^~03/01/2007~
-~11569~^~321~^4575.^2^^~1~^~A~^^^^^^^^^^~12/01/2002~
-~11569~^~322~^0.^2^^~1~^~A~^^^^^^^^^^~12/01/2002~
-~11569~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~
-~11569~^~334~^0.^2^^~1~^~A~^^^^^^^^^^~12/01/2002~
-~11569~^~337~^0.^2^^~1~^~A~^^^^^^^^^^~12/01/2002~
-~11569~^~338~^8440.^2^^~1~^~A~^^^^^^^^^^~12/01/2002~
-~11569~^~417~^118.^0^^~1~^^^^^^^^^^^~08/01/1984~
-~11569~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~
-~11569~^~432~^118.^0^^~1~^^^^^^^^^^^~03/01/2007~
-~11569~^~435~^118.^0^^~4~^~NC~^^^^^^^^^^~03/01/2007~
-~11569~^~601~^0.^0^^~7~^~Z~^^^^^^^^^^~08/01/1984~
-~11570~^~208~^14.^0^^~4~^~NC~^^^^^^^^^^~08/01/1984~
-~11570~^~268~^59.^0^^~4~^^^^^^^^^^^
-~11570~^~301~^118.^4^10.^~1~^^^^^^^^^^^~08/01/1984~
-~11570~^~304~^20.^0^^~1~^^^^^^^^^^^~08/01/1984~
-~11570~^~305~^21.^0^^~1~^^^^^^^^^^^~08/01/1984~
-~11570~^~306~^141.^5^15.^~1~^^^^^^^^^^^~08/01/1984~
-~11570~^~307~^277.^5^3.^~1~^^^^^^^^^^^~08/01/1984~
-~11570~^~318~^3586.^5^324.^~1~^^^^^^^^^^^~08/01/1984~
-~11570~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2002~
-~11570~^~320~^179.^5^16.^~1~^^^^^^^^^^^~06/01/2002~
-~11570~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~
-~11570~^~417~^41.^3^5.^~1~^^^^^^^^^^^~08/01/1984~
-~11570~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~
-~11570~^~432~^41.^3^5.^~1~^^^^^^^^^^^~12/01/1984~
-~11570~^~435~^41.^0^^~4~^~NC~^^^^^^^^^^~01/01/2001~
-~11570~^~601~^0.^0^^~7~^~Z~^^^^^^^^^^~08/01/1984~
-~11574~^~208~^22.^0^^~4~^~NC~^^^^^^^^^^~08/01/1984~
-~11574~^~268~^92.^0^^~4~^^^^^^^^^^^
-~11574~^~301~^118.^13^12.^~1~^^^^^^^^^^^~08/01/1984~
-~11574~^~304~^27.^3^6.^~1~^^^^^^^^^^^~08/01/1984~
-~11574~^~305~^27.^3^2.^~1~^^^^^^^^^^^~08/01/1984~
-~11574~^~306~^184.^3^9.^~1~^^^^^^^^^^^~08/01/1984~
-~11574~^~307~^12.^3^1.^~1~^^^^^^^^^^^~08/01/1984~
-~11574~^~318~^6184.^13^484.^~1~^^^^^^^^^^^~08/01/1984~
-~11574~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2002~
-~11574~^~320~^309.^13^24.^~1~^^^^^^^^^^^~06/01/2002~
-~11574~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~
-~11574~^~417~^74.^6^7.^~1~^^^^^^^^^^^~08/01/1984~
-~11574~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~
-~11574~^~432~^74.^6^7.^~1~^^^^^^^^^^^~12/01/1984~
-~11574~^~435~^74.^0^^~4~^~NC~^^^^^^^^^^~01/01/2001~
-~11574~^~601~^0.^0^^~7~^~Z~^^^^^^^^^^~08/01/1984~
-~11575~^~208~^29.^0^^~4~^~NC~^^^^^^^^^^~03/01/2007~
-~11575~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~12/01/2002~
-~11575~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~12/01/2002~
-~11575~^~268~^123.^0^^~4~^~NC~^^^^^^^^^^~03/01/2007~
-~11575~^~301~^152.^0^^~1~^^^^^^^^^^^~08/01/1984~
-~11575~^~304~^26.^0^^~1~^^^^^^^^^^^~08/01/1984~
-~11575~^~305~^34.^0^^~1~^^^^^^^^^^^~08/01/1984~
-~11575~^~306~^224.^0^^~1~^^^^^^^^^^^~08/01/1984~
-~11575~^~307~^15.^0^^~1~^^^^^^^^^^^~08/01/1984~
-~11575~^~318~^10765.^0^^~4~^~NC~^^^^^^^^^^~03/01/2007~
-~11575~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2002~
-~11575~^~320~^538.^0^^~4~^~NC~^^^^^^^^^^~03/01/2007~
-~11575~^~321~^6459.^0^^~4~^~BFSN~^~11569~^^^^^^^^^~12/01/2002~
-~11575~^~322~^0.^0^^~4~^~BFSN~^~11569~^^^^^^^^^~12/01/2002~
-~11575~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~
-~11575~^~334~^0.^0^^~4~^~BFSN~^~11569~^^^^^^^^^~12/01/2002~
-~11575~^~337~^0.^0^^~4~^~BFSN~^~11569~^^^^^^^^^~12/01/2002~
-~11575~^~338~^11915.^0^^~4~^~BFSN~^~11569~^^^^^^^^^~12/01/2002~
-~11575~^~417~^39.^3^6.^~1~^^^^^^^^^^^~08/01/1984~
-~11575~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~
-~11575~^~432~^39.^3^6.^~1~^^^^^^^^^^^~03/01/2007~
-~11575~^~435~^39.^0^^~4~^~NC~^^^^^^^^^^~03/01/2007~
-~11575~^~601~^0.^0^^~7~^~Z~^^^^^^^^^^~08/01/1984~
-~11576~^~208~^21.^0^^~4~^~NC~^^^^^^^^^^~08/01/1984~
-~11576~^~268~^90.^0^^~4~^~NC~^^^^^^^^^^~06/01/2013~
-~11576~^~301~^114.^2^^~1~^^^^^^^^^^^~08/01/1984~
-~11576~^~304~^18.^0^^~1~^^^^^^^^^^^~08/01/1984~
-~11576~^~305~^24.^0^^~1~^^^^^^^^^^^~08/01/1984~
-~11576~^~306~^82.^0^^~1~^^^^^^^^^^^~08/01/1984~
-~11576~^~307~^18.^0^^~1~^^^^^^^^^^^~08/01/1984~
-~11576~^~318~^6108.^2^^~1~^^^^^^^^^^^~08/01/1984~
-~11576~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2002~
-~11576~^~320~^305.^2^^~1~^^^^^^^^^^^~06/01/2002~
-~11576~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~
-~11576~^~417~^41.^0^^~4~^^^^^^^^^^^~08/01/1984~
-~11576~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~
-~11576~^~432~^41.^0^^~4~^^^^^^^^^^^~12/01/1984~
-~11576~^~435~^41.^0^^~4~^~NC~^^^^^^^^^^~01/01/2001~
-~11576~^~601~^0.^0^^~7~^~Z~^^^^^^^^^^~08/01/1984~
-~11577~^~208~^35.^0^^~4~^~NC~^^^^^^^^^^~03/01/2007~
-~11577~^~262~^0.^0^^~4~^~RA~^^^^^^^^^^~03/01/2007~
-~11577~^~263~^0.^0^^~4~^~RA~^^^^^^^^^^~03/01/2007~
-~11577~^~268~^146.^0^^~4~^~NC~^^^^^^^^^^~03/01/2007~
-~11577~^~301~^128.^0^^~4~^~RA~^^^^^^^^^^~03/01/2007~
-~11577~^~304~^24.^0^^~4~^~RA~^^^^^^^^^^~03/01/2007~
-~11577~^~305~^32.^0^^~4~^~RA~^^^^^^^^^^~03/01/2007~
-~11577~^~306~^216.^0^^~4~^~RA~^^^^^^^^^^~03/01/2007~
-~11577~^~307~^19.^0^^~4~^~RA~^^^^^^^^^^~03/01/2007~
-~11577~^~318~^8612.^0^^~4~^~NC~^^^^^^^^^^~03/01/2007~
-~11577~^~319~^0.^0^^~4~^~RA~^^^^^^^^^^~03/01/2007~
-~11577~^~320~^431.^0^^~4~^~NC~^^^^^^^^^^~03/01/2007~
-~11577~^~321~^5167.^0^^~4~^~RA~^^^^^^^^^^~03/01/2007~
-~11577~^~322~^0.^0^^~4~^~RA~^^^^^^^^^^~03/01/2007~
-~11577~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~
-~11577~^~334~^0.^0^^~4~^~RA~^^^^^^^^^^~03/01/2007~
-~11577~^~337~^0.^0^^~4~^~RA~^^^^^^^^^^~03/01/2007~
-~11577~^~338~^9532.^0^^~4~^~RA~^^^^^^^^^^~02/01/2003~
-~11577~^~417~^33.^0^^~4~^~RA~^^^^^^^^^^~03/01/2007~
-~11577~^~431~^0.^0^^~4~^~RA~^^^^^^^^^^~03/01/2007~
-~11577~^~432~^33.^0^^~4~^~RA~^^^^^^^^^^~03/01/2007~
-~11577~^~435~^33.^0^^~4~^~NC~^^^^^^^^^^~03/01/2007~
-~11577~^~601~^0.^0^^~4~^~RA~^^^^^^^^^^~03/01/2007~
-~11578~^~208~^22.^0^^~4~^~NC~^^^^^^^^^^~03/01/2015~
-~11578~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~
-~11578~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~
-~11578~^~268~^92.^0^^~4~^~NC~^^^^^^^^^^~03/01/2015~
-~11578~^~301~^14.^11^0.^~1~^~A~^^^1^7.^18.^4^13.^15.^~2, 3~^~04/01/2013~
-~11578~^~304~^11.^11^0.^~1~^~A~^^^1^9.^12.^4^9.^11.^~2, 3~^~08/01/1984~
-~11578~^~305~^19.^11^0.^~1~^~A~^^^1^18.^22.^7^18.^19.^~2, 3~^~04/01/2013~
-~11578~^~306~^185.^11^1.^~1~^~A~^^^1^176.^224.^9^180.^188.^~2, 3~^~04/01/2013~
-~11578~^~307~^169.^11^3.^~1~^~A~^^^1^156.^233.^9^159.^177.^~2, 3~^~04/01/2013~
-~11578~^~318~^706.^0^^~1~^~AS~^^^^^^^^^^~04/01/2013~
-~11578~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2002~
-~11578~^~320~^35.^0^^~1~^~AS~^^^^^^^^^^~04/01/2013~
-~11578~^~321~^377.^6^21.^~1~^~A~^^^1^289.^465.^4^318.^436.^~2, 3~^~04/01/2013~
-~11578~^~322~^93.^6^7.^~1~^~A~^^^1^80.^111.^2^65.^119.^~2, 3~^~04/01/2013~
-~11578~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~
-~11578~^~334~^0.^6^0.^~1~^~A~^^^1^0.^0.^^^^~1, 2, 3~^~02/01/2003~
-~11578~^~337~^7119.^6^143.^~1~^~A~^^^1^6742.^7778.^3^6636.^7601.^~2, 3~^~04/01/2013~
-~11578~^~338~^278.^6^72.^~1~^~A~^^^1^106.^521.^2^-36.^591.^~2, 3~^~04/01/2013~
-~11578~^~417~^21.^0^^~4~^^^^^^^^^^^~08/01/1984~
-~11578~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~
-~11578~^~432~^21.^0^^~4~^^^^^^^^^^^~03/01/2007~
-~11578~^~435~^21.^0^^~4~^~NC~^^^^^^^^^^~03/01/2007~
-~11578~^~601~^0.^0^^~7~^~Z~^^^^^^^^^^~08/01/1984~
-~11579~^~208~^36.^0^^~4~^~NC~^^^^^^^^^^~01/01/2006~
-~11579~^~268~^151.^0^^~4~^~NC~^^^^^^^^^^~01/01/2006~
-~11579~^~301~^21.^56^1.^~1~^^^^^^^^^^^~08/01/1984~
-~11579~^~304~^15.^54^0.^~1~^^^^^^^^^^^~08/01/1984~
-~11579~^~305~^37.^54^1.^~1~^^^^^^^^^^^~08/01/1984~
-~11579~^~306~^138.^53^6.^~1~^^^^^^^^^^^~08/01/1984~
-~11579~^~307~^224.^53^25.^~1~^^^^^^^^^^^~05/01/2013~
-~11579~^~318~^5081.^56^171.^~1~^^^^^^^^^^^~04/01/2013~
-~11579~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2002~
-~11579~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~
-~11579~^~417~^18.^0^^~1~^^^^^^^^^^^~08/01/1984~
-~11579~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~
-~11579~^~432~^18.^0^^~1~^^^^^^^^^^^~01/01/2006~
-~11579~^~435~^18.^0^^~4~^~NC~^^^^^^^^^^~01/01/2006~
-~11579~^~601~^0.^0^^~7~^~Z~^^^^^^^^^^~08/01/1984~
-~11581~^~208~^49.^0^^~4~^~NC~^^^^^^^^^^~03/01/2007~
-~11581~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~
-~11581~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~
-~11581~^~268~^204.^0^^~4~^~NC~^^^^^^^^^^~03/01/2007~
-~11581~^~301~^27.^0^^~1~^^^^^^^^^^^~08/01/1984~
-~11581~^~304~^16.^0^^~1~^^^^^^^^^^^~08/01/1984~
-~11581~^~305~^42.^0^^~1~^^^^^^^^^^^~08/01/1984~
-~11581~^~306~^291.^0^^~1~^^^^^^^^^^^~08/01/1984~
-~11581~^~307~^214.^0^^~4~^~RA~^^^^^^^^^^~05/01/2013~
-~11581~^~318~^11651.^0^^~4~^~NC~^^^^^^^^^^~03/01/2007~
-~11581~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2002~
-~11581~^~320~^583.^0^^~4~^~NC~^^^^^^^^^^~03/01/2007~
-~11581~^~321~^5670.^0^^~4~^~BNA~^^^^^^^^^^~03/01/2007~
-~11581~^~322~^2636.^0^^~4~^~BNA~^^^^^^^^^^~03/01/2007~
-~11581~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~
-~11581~^~334~^5.^0^^~4~^~RA~^^^^^^^^^^~03/01/2007~
-~11581~^~337~^0.^0^^~4~^~RA~^^^^^^^^^^~02/01/2003~
-~11581~^~338~^493.^0^^~4~^~RA~^^^^^^^^^^~03/01/2007~
-~11581~^~417~^24.^0^^~1~^^^^^^^^^^^~08/01/1984~
-~11581~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~
-~11581~^~432~^24.^0^^~1~^^^^^^^^^^^~03/01/2007~
-~11581~^~435~^24.^0^^~4~^~NC~^^^^^^^^^^~03/01/2007~
-~11581~^~601~^0.^0^^~7~^~Z~^^^^^^^^^^~08/01/1984~
-~11583~^~208~^72.^0^^~4~^~NC~^^^^^^^^^^~06/01/2013~
-~11583~^~268~^301.^0^^~4~^~NC~^^^^^^^^^^~06/01/2013~
-~11583~^~301~^25.^36^0.^~1~^^^^^^^^^^^~08/01/1984~
-~11583~^~304~^24.^13^1.^~1~^^^^^^^^^^^~08/01/1984~
-~11583~^~305~^59.^25^1.^~1~^^^^^^^^^^^~08/01/1984~
-~11583~^~306~^212.^10^6.^~1~^^^^^^^^^^^~08/01/1984~
-~11583~^~307~^47.^13^2.^~1~^^^^^^^^^^^~08/01/1984~
-~11583~^~318~^5078.^36^248.^~1~^^^^^^^^^^^~08/01/1984~
-~11583~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2002~
-~11583~^~320~^254.^36^12.^~1~^^^^^^^^^^^~06/01/2002~
-~11583~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~
-~11583~^~417~^29.^1^^~1~^^^^^^^^^^^~08/01/1984~
-~11583~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~
-~11583~^~432~^29.^1^^~1~^^^^^^^^^^^~12/01/1984~
-~11583~^~435~^29.^0^^~4~^~NC~^^^^^^^^^^~01/01/2001~
-~11583~^~601~^0.^0^^~7~^~Z~^^^^^^^^^^~08/01/1984~
-~11584~^~208~^65.^0^^~4~^~NC~^^^^^^^^^^~03/01/2007~
-~11584~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~
-~11584~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~
-~11584~^~268~^273.^0^^~4~^~NC~^^^^^^^^^^~03/01/2007~
-~11584~^~301~^25.^0^^~1~^^^^^^^^^^^~08/01/1984~
-~11584~^~304~^22.^0^^~1~^^^^^^^^^^^~08/01/1984~
-~11584~^~305~^51.^0^^~1~^^^^^^^^^^^~08/01/1984~
-~11584~^~306~^169.^0^^~1~^^^^^^^^^^^~08/01/1984~
-~11584~^~307~^35.^0^^~1~^^^^^^^^^^^~08/01/1984~
-~11584~^~318~^4277.^0^^~4~^~NC~^^^^^^^^^^~03/01/2007~
-~11584~^~319~^0.^0^^~4~^~BNA~^~11581~^^^^^^^^^~03/01/2007~
-~11584~^~320~^214.^0^^~4~^~NC~^^^^^^^^^^~03/01/2007~
-~11584~^~321~^2082.^0^^~4~^~BNA~^~11581~^^^^^^^^^~02/01/2003~
-~11584~^~322~^968.^0^^~4~^~BNA~^~11581~^^^^^^^^^~02/01/2003~
-~11584~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~
-~11584~^~334~^0.^0^^~4~^~BNA~^~11581~^^^^^^^^^~02/01/2003~
-~11584~^~337~^0.^0^^~4~^~BFSN~^~11581~^^^^^^^^^~02/01/2003~
-~11584~^~338~^637.^0^^~4~^~BFSN~^~11581~^^^^^^^^^~03/01/2007~
-~11584~^~417~^19.^0^^~1~^^^^^^^^^^^~08/01/1984~
-~11584~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~
-~11584~^~432~^19.^0^^~1~^^^^^^^^^^^~03/01/2007~
-~11584~^~435~^19.^0^^~4~^~NC~^^^^^^^^^^~03/01/2007~
-~11584~^~601~^0.^0^^~7~^~Z~^^^^^^^^^^~08/01/1984~
-~11585~^~208~^19.^0^^~4~^~NC~^^^^^^^^^^~04/01/2013~
-~11585~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2013~
-~11585~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2013~
-~11585~^~268~^78.^0^^~4~^~NC~^^^^^^^^^^~04/01/2013~
-~11585~^~301~^15.^13^4.^~1~^~A~^^^1^9.^17.^1^-40.^70.^~4~^~04/01/2013~
-~11585~^~304~^12.^13^1.^~1~^~A~^^^1^9.^13.^1^-11.^35.^~4~^~04/01/2013~
-~11585~^~305~^19.^13^0.^~1~^~A~^^^1^19.^19.^1^19.^19.^~4~^~04/01/2013~
-~11585~^~306~^204.^13^5.^~1~^~A~^^^1^197.^207.^1^135.^273.^~4~^~04/01/2013~
-~11585~^~307~^55.^1^^~1~^~A~^^^^^^^^^^~04/01/2013~
-~11585~^~318~^706.^0^^~1~^~AS~^^^^^^^^^^~04/01/2013~
-~11585~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2013~
-~11585~^~320~^35.^0^^~1~^~AS~^^^^^^^^^^~04/01/2013~
-~11585~^~321~^377.^6^17.^~1~^~A~^^^1^354.^385.^1^155.^599.^~4~^~04/01/2013~
-~11585~^~322~^93.^6^2.^~1~^~A~^^^1^90.^94.^1^63.^121.^~4~^~04/01/2013~
-~11585~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2013~
-~11585~^~334~^0.^6^0.^~1~^~A~^^^1^0.^0.^1^0.^0.^~1, 4~^~04/01/2013~
-~11585~^~337~^7119.^6^200.^~1~^~A~^^^1^7030.^7389.^1^4569.^9669.^~4~^~04/01/2013~
-~11585~^~338~^278.^6^123.^~1~^~A~^^^1^112.^333.^1^-1292.^1847.^~4~^~04/01/2013~
-~11585~^~417~^21.^0^^~4~^^^^^^^^^^^~04/01/2013~
-~11585~^~432~^21.^0^^~4~^^^^^^^^^^^~04/01/2013~
-~11585~^~601~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2013~
-~11587~^~208~^19.^0^^~4~^~NC~^^^^^^^^^^~08/01/1984~
-~11587~^~268~^79.^0^^~4~^^^^^^^^^^^
-~11587~^~301~^109.^0^^~1~^^^^^^^^^^^~08/01/1984~
-~11587~^~304~^65.^0^^~4~^^^^^^^^^^^~08/01/1984~
-~11587~^~305~^52.^0^^~1~^^^^^^^^^^^~08/01/1984~
-~11587~^~306~^510.^0^^~4~^^^^^^^^^^^~08/01/1984~
-~11587~^~307~^24.^0^^~4~^^^^^^^^^^^~08/01/1984~
-~11587~^~318~^8000.^0^^~1~^^^^^^^^^^^~08/01/1984~
-~11587~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2002~
-~11587~^~320~^400.^0^^~1~^^^^^^^^^^^~06/01/2002~
-~11587~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~
-~11587~^~417~^140.^0^^~4~^^^^^^^^^^^~08/01/1984~
-~11587~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~
-~11587~^~432~^140.^0^^~4~^^^^^^^^^^^~12/01/1984~
-~11587~^~435~^140.^0^^~4~^~NC~^^^^^^^^^^~01/01/2001~
-~11587~^~601~^0.^0^^~7~^~Z~^^^^^^^^^^~08/01/1984~
-~11588~^~208~^97.^0^^~4~^~NC~^^^^^^^^^^~03/01/2007~
-~11588~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~
-~11588~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~
-~11588~^~268~^406.^0^^~4~^^^^^^^^^^^~03/01/2007~
-~11588~^~301~^11.^1^^~1~^^^^^^^^^^^~08/01/1984~
-~11588~^~304~^22.^2^^~1~^^^^^^^^^^^~08/01/1984~
-~11588~^~305~^63.^1^^~1~^^^^^^^^^^^~08/01/1984~
-~11588~^~306~^584.^2^^~1~^^^^^^^^^^^~08/01/1984~
-~11588~^~307~^14.^2^^~1~^^^^^^^^^^^~08/01/1984~
-~11588~^~318~^0.^0^^~4~^~NC~^^^^^^^^^^~03/01/2007~
-~11588~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2002~
-~11588~^~320~^0.^0^^~4~^~NC~^^^^^^^^^^~03/01/2007~
-~11588~^~321~^0.^0^^~4~^~O~^^^^^^^^^^~02/01/2003~
-~11588~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~
-~11588~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~
-~11588~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~
-~11588~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~
-~11588~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~
-~11588~^~417~^16.^0^^~4~^^^^^^^^^^^~08/01/1984~
-~11588~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~
-~11588~^~432~^16.^0^^~4~^^^^^^^^^^^~03/01/2007~
-~11588~^~435~^16.^0^^~4~^~NC~^^^^^^^^^^~03/01/2007~
-~11588~^~601~^0.^0^^~7~^~Z~^^^^^^^^^^~08/01/1984~
-~11590~^~208~^50.^0^^~4~^~NC~^^^^^^^^^^~03/01/2007~
-~11590~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~
-~11590~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~
-~11590~^~268~^210.^0^^~4~^~NC~^^^^^^^^^^~03/01/2007~
-~11590~^~301~^4.^6^0.^~1~^^^^^^^^^^^~08/01/1984~
-~11590~^~304~^5.^1^^~1~^^^^^^^^^^^~08/01/1984~
-~11590~^~305~^19.^1^^~1~^^^^^^^^^^^~08/01/1984~
-~11590~^~306~^118.^6^0.^~1~^^^^^^^^^^^~08/01/1984~
-~11590~^~307~^8.^4^1.^~1~^^^^^^^^^^^~08/01/1984~
-~11590~^~318~^0.^0^^~4~^~NC~^^^^^^^^^^~03/01/2007~
-~11590~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2002~
-~11590~^~320~^0.^0^^~4~^~NC~^^^^^^^^^^~03/01/2007~
-~11590~^~321~^0.^0^^~4~^~BFSN~^~11588~^^^^^^^^^~02/01/2003~
-~11590~^~322~^0.^0^^~4~^~BFSN~^~11588~^^^^^^^^^~02/01/2003~
-~11590~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~
-~11590~^~334~^0.^0^^~4~^~BFSN~^~11588~^^^^^^^^^~02/01/2003~
-~11590~^~337~^0.^0^^~4~^~BFSN~^~11588~^^^^^^^^^~02/01/2003~
-~11590~^~338~^0.^0^^~4~^~BFSN~^~11588~^^^^^^^^^~03/01/2007~
-~11590~^~417~^6.^0^^~4~^^^^^^^^^^^~08/01/1984~
-~11590~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~
-~11590~^~432~^6.^0^^~4~^^^^^^^^^^^~03/01/2007~
-~11590~^~435~^6.^0^^~4~^~NC~^^^^^^^^^^~03/01/2007~
-~11590~^~601~^0.^0^^~7~^~Z~^^^^^^^^^^~08/01/1984~
-~11591~^~208~^11.^0^^~4~^~NC~^^^^^^^^^^~03/01/2007~
-~11591~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~08/01/2001~
-~11591~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~08/01/2001~
-~11591~^~268~^46.^0^^~4~^^^^^^^^^^^~03/01/2007~
-~11591~^~301~^120.^1^^~1~^^^^^^^^^^^~08/01/1984~
-~11591~^~304~^21.^2^^~1~^^^^^^^^^^^~08/01/2001~
-~11591~^~305~^60.^1^^~1~^^^^^^^^^^^~08/01/1984~
-~11591~^~306~^330.^2^^~1~^^^^^^^^^^^~08/01/2001~
-~11591~^~307~^41.^2^^~1~^^^^^^^^^^^~08/01/2001~
-~11591~^~318~^3191.^0^^~4~^~NC~^^^^^^^^^^~03/01/2007~
-~11591~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2002~
-~11591~^~320~^160.^0^^~4~^~NC~^^^^^^^^^^~03/01/2007~
-~11591~^~321~^1914.^0^^~4~^~BFSN~^~11203~^^^^^^^^^~03/01/2007~
-~11591~^~322~^0.^0^^~4~^~BFSN~^~11203~^^^^^^^^^~01/01/2003~
-~11591~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~
-~11591~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2003~
-~11591~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2003~
-~11591~^~338~^5767.^0^^~4~^~BFSN~^~11203~^^^^^^^^^~01/01/2003~
-~11591~^~417~^9.^0^^~4~^^^^^^^^^^^~08/01/1984~
-~11591~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~
-~11591~^~432~^9.^0^^~4~^^^^^^^^^^^~03/01/2007~
-~11591~^~435~^9.^0^^~4~^~NC~^^^^^^^^^^~03/01/2007~
-~11591~^~601~^0.^0^^~7~^~Z~^^^^^^^^^^~08/01/1984~
-~11593~^~208~^13.^0^^~4~^~NC~^^^^^^^^^^~08/01/1984~
-~11593~^~268~^54.^0^^~4~^^^^^^^^^^^
-~11593~^~301~^19.^0^^~1~^^^^^^^^^^^~08/01/1984~
-~11593~^~304~^10.^0^^~4~^^^^^^^^^^^~08/01/1984~
-~11593~^~305~^19.^0^^~1~^^^^^^^^^^^~08/01/1984~
-~11593~^~306~^6.^0^^~1~^^^^^^^^^^^~08/01/1984~
-~11593~^~307~^111.^0^^~1~^^^^^^^^^^^~08/01/1984~
-~11593~^~318~^0.^0^^~1~^^^^^^^^^^^~08/01/1984~
-~11593~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2002~
-~11593~^~320~^0.^0^^~1~^^^^^^^^^^^~06/01/2002~
-~11593~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~
-~11593~^~417~^5.^0^^~4~^^^^^^^^^^^~08/01/1984~
-~11593~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~
-~11593~^~432~^5.^0^^~4~^^^^^^^^^^^~12/01/1984~
-~11593~^~435~^5.^0^^~4~^~NC~^^^^^^^^^^~01/01/2001~
-~11593~^~601~^0.^0^^~7~^~Z~^^^^^^^^^^~08/01/1984~
-~11594~^~208~^14.^0^^~4~^~NC~^^^^^^^^^^~06/01/2007~
-~11594~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~
-~11594~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~
-~11594~^~268~^56.^0^^~4~^~NC~^^^^^^^^^^~06/01/2007~
-~11594~^~301~^18.^0^^~1~^^^^^^^^^^^~08/01/1984~
-~11594~^~304~^10.^0^^~4~^^^^^^^^^^^~08/01/1984~
-~11594~^~305~^17.^0^^~1~^^^^^^^^^^^~08/01/1984~
-~11594~^~306~^5.^0^^~1~^^^^^^^^^^^~08/01/1984~
-~11594~^~307~^107.^0^^~1~^^^^^^^^^^^~08/01/1984~
-~11594~^~318~^0.^0^^~1~^^^^^^^^^^^~07/01/2012~
-~11594~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2002~
-~11594~^~320~^0.^0^^~4~^~NC~^^^^^^^^^^~06/01/2007~
-~11594~^~321~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~
-~11594~^~322~^0.^0^^~4~^~BFSN~^~11468~^^^^^^^^^~02/01/2003~
-~11594~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~
-~11594~^~334~^0.^0^^~4~^~BFSN~^~11468~^^^^^^^^^~02/01/2003~
-~11594~^~337~^0.^0^^~4~^~BFSN~^~11468~^^^^^^^^^~02/01/2003~
-~11594~^~338~^197.^0^^~4~^~BFSN~^~11468~^^^^^^^^^~02/01/2003~
-~11594~^~417~^4.^0^^~4~^^^^^^^^^^^~08/01/1984~
-~11594~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~
-~11594~^~432~^4.^0^^~4~^^^^^^^^^^^~03/01/2007~
-~11594~^~435~^4.^0^^~4~^~NC~^^^^^^^^^^~06/01/2007~
-~11594~^~601~^0.^0^^~7~^~Z~^^^^^^^^^^~08/01/1984~
-~11595~^~208~^49.^0^^~4~^~NC~^^^^^^^^^^~08/01/1984~
-~11595~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~10/01/2011~
-~11595~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~10/01/2011~
-~11595~^~268~^205.^0^^~4~^^^^^^^^^^^
-~11595~^~301~^84.^7^27.^~1~^^^^^^^^^^^~08/01/1984~
-~11595~^~304~^34.^0^^~1~^^^^^^^^^^^~08/01/1984~
-~11595~^~305~^37.^7^3.^~1~^^^^^^^^^^^~08/01/1984~
-~11595~^~306~^223.^3^21.^~1~^^^^^^^^^^^~08/01/1984~
-~11595~^~307~^4.^3^0.^~1~^^^^^^^^^^^~08/01/1984~
-~11595~^~318~^128.^1^^~1~^^^^^^^^^^^~08/01/1984~
-~11595~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2002~
-~11595~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~
-~11595~^~417~^66.^0^^~4~^^^^^^^^^^^~08/01/1984~
-~11595~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~
-~11595~^~432~^66.^0^^~4~^^^^^^^^^^^~12/01/1984~
-~11595~^~435~^66.^0^^~4~^~NC~^^^^^^^^^^~01/01/2001~
-~11595~^~601~^0.^0^^~7~^~Z~^^^^^^^^^^~08/01/1984~
-~11596~^~208~^38.^0^^~4~^~NC~^^^^^^^^^^~08/01/1984~
-~11596~^~268~^159.^0^^~4~^^^^^^^^^^^
-~11596~^~301~^61.^0^^~1~^^^^^^^^^^^~08/01/1984~
-~11596~^~304~^30.^1^^~1~^^^^^^^^^^^~08/01/1984~
-~11596~^~305~^25.^0^^~1~^^^^^^^^^^^~08/01/1984~
-~11596~^~306~^274.^1^^~1~^^^^^^^^^^^~08/01/1984~
-~11596~^~307~^4.^1^^~1~^^^^^^^^^^^~08/01/1984~
-~11596~^~318~^88.^0^^~1~^^^^^^^^^^^~08/01/1984~
-~11596~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2002~
-~11596~^~320~^4.^0^^~1~^^^^^^^^^^^~06/01/2002~
-~11596~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~
-~11596~^~417~^35.^0^^~4~^^^^^^^^^^^~08/01/1984~
-~11596~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~
-~11596~^~432~^35.^0^^~4~^^^^^^^^^^^~12/01/1984~
-~11596~^~435~^35.^0^^~4~^~NC~^^^^^^^^^^~01/01/2001~
-~11596~^~601~^0.^0^^~7~^~Z~^^^^^^^^^^~08/01/1984~
-~11597~^~208~^74.^0^^~4~^~NC~^^^^^^^^^^~08/01/1984~
-~11597~^~268~^310.^0^^~4~^^^^^^^^^^^
-~11597~^~301~^224.^2^^~1~^^^^^^^^^^^~08/01/1984~
-~11597~^~304~^8.^0^^~1~^^^^^^^^^^^~08/01/1984~
-~11597~^~305~^63.^2^^~1~^^^^^^^^^^^~08/01/1984~
-~11597~^~306~^176.^0^^~1~^^^^^^^^^^^~08/01/1984~
-~11597~^~307~^9.^0^^~4~^^^^^^^^^^^~08/01/1984~
-~11597~^~318~^8090.^0^^~4~^^^^^^^^^^^~08/01/1984~
-~11597~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2002~
-~11597~^~320~^405.^0^^~4~^^^^^^^^^^^~06/01/2002~
-~11597~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~
-~11597~^~417~^16.^0^^~4~^^^^^^^^^^^~08/01/1984~
-~11597~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~
-~11597~^~432~^16.^0^^~4~^^^^^^^^^^^~12/01/1984~
-~11597~^~435~^16.^0^^~4~^~NC~^^^^^^^^^^~01/01/2001~
-~11597~^~601~^0.^0^^~7~^~Z~^^^^^^^^^^~08/01/1984~
-~11599~^~208~^148.^0^^~4~^~NC~^^^^^^^^^^~04/01/1997~
-~11599~^~268~^619.^0^^~4~^^^^^^^^^^^
-~11599~^~301~^30.^1^^~1~^^^^^^^^^^^~08/01/1984~
-~11599~^~304~^24.^0^^~4~^^^^^^^^^^^~08/01/1984~
-~11599~^~305~^45.^1^^~1~^^^^^^^^^^^~08/01/1984~
-~11599~^~306~^586.^0^^~4~^^^^^^^^^^^~08/01/1984~
-~11599~^~307~^35.^0^^~4~^^^^^^^^^^^~08/01/1984~
-~11599~^~318~^0.^0^^~4~^^^^^^^^^^^~08/01/1984~
-~11599~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2002~
-~11599~^~320~^0.^0^^~4~^^^^^^^^^^^~06/01/2002~
-~11599~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~
-~11599~^~417~^19.^0^^~4~^^^^^^^^^^^~08/01/1984~
-~11599~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~
-~11599~^~432~^19.^0^^~4~^^^^^^^^^^^~12/01/1984~
-~11599~^~435~^19.^0^^~4~^~NC~^^^^^^^^^^~01/01/2001~
-~11599~^~601~^0.^0^^~7~^~Z~^^^^^^^^^^~08/01/1984~
-~11601~^~208~^118.^0^^~4~^~NC~^^^^^^^^^^~03/01/2007~
-~11601~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2003~
-~11601~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2003~
-~11601~^~268~^494.^0^^~4~^~NC~^^^^^^^^^^~03/01/2007~
-~11601~^~301~^17.^6^4.^~1~^^^^^^^^^^^~08/01/1984~
-~11601~^~304~^21.^6^2.^~1~^^^^^^^^^^^~08/01/1984~
-~11601~^~305~^55.^6^3.^~1~^^^^^^^^^^^~08/01/1984~
-~11601~^~306~^816.^6^72.^~1~^^^^^^^^^^^~08/01/1984~
-~11601~^~307~^9.^6^1.^~1~^^^^^^^^^^^~08/01/1984~
-~11601~^~318~^138.^0^^~4~^~NC~^^^^^^^^^^~03/01/2007~
-~11601~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2002~
-~11601~^~320~^7.^0^^~4~^~NC~^^^^^^^^^^~03/01/2007~
-~11601~^~321~^83.^0^^~4~^~T~^^^^^^^^^^~04/01/2003~
-~11601~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2003~
-~11601~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~
-~11601~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2003~
-~11601~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2003~
-~11601~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2003~
-~11601~^~417~^23.^12^4.^~1~^^^^^^^^^^^~08/01/1984~
-~11601~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~
-~11601~^~432~^23.^12^4.^~1~^^^^^^^^^^^~03/01/2007~
-~11601~^~435~^23.^0^^~4~^~NC~^^^^^^^^^^~03/01/2007~
-~11601~^~601~^0.^0^^~7~^~Z~^^^^^^^^^^~08/01/1984~
-~11601~^~636~^10.^0^^~1~^^^^^^^^^^^~08/01/1984~
-~11602~^~208~^116.^0^^~4~^~NC~^^^^^^^^^^~03/01/2007~
-~11602~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2003~
-~11602~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2003~
-~11602~^~268~^486.^0^^~4~^~NC~^^^^^^^^^^~03/01/2007~
-~11602~^~301~^14.^6^4.^~1~^^^^^^^^^^^~08/01/1984~
-~11602~^~304~^18.^6^2.^~1~^^^^^^^^^^^~08/01/1984~
-~11602~^~305~^49.^6^4.^~1~^^^^^^^^^^^~08/01/1984~
-~11602~^~306~^670.^6^36.^~1~^^^^^^^^^^^~08/01/1984~
-~11602~^~307~^8.^6^1.^~1~^^^^^^^^^^^~08/01/1984~
-~11602~^~318~^122.^0^^~4~^~NC~^^^^^^^^^^~03/01/2007~
-~11602~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2002~
-~11602~^~320~^6.^0^^~4~^~NC~^^^^^^^^^^~03/01/2007~
-~11602~^~321~^73.^0^^~4~^~BFSY~^~11601~^^^^^^^^^~01/01/2003~
-~11602~^~322~^0.^0^^~4~^~BFSY~^~11601~^^^^^^^^^~01/01/2003~
-~11602~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~
-~11602~^~334~^0.^0^^~4~^~BFSY~^~11601~^^^^^^^^^~01/01/2003~
-~11602~^~337~^0.^0^^~4~^~BFSY~^~11601~^^^^^^^^^~01/01/2003~
-~11602~^~338~^0.^0^^~4~^~BFSY~^~11601~^^^^^^^^^~01/01/2003~
-~11602~^~417~^16.^12^4.^~1~^^^^^^^^^^^~08/01/1984~
-~11602~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~
-~11602~^~432~^16.^12^4.^~1~^^^^^^^^^^^~03/01/2007~
-~11602~^~435~^16.^0^^~4~^~NC~^^^^^^^^^^~03/01/2007~
-~11602~^~601~^0.^0^^~7~^~Z~^^^^^^^^^^~08/01/1984~
-~11603~^~208~^38.^0^^~4~^~NC~^^^^^^^^^^~03/01/2007~
-~11603~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~
-~11603~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~
-~11603~^~268~^159.^0^^~4~^^^^^^^^^^^~03/01/2007~
-~11603~^~301~^12.^2^^~1~^^^^^^^^^^^~08/01/1984~
-~11603~^~304~^12.^3^2.^~1~^^^^^^^^^^^~08/01/1984~
-~11603~^~305~^18.^2^^~1~^^^^^^^^^^^~08/01/1984~
-~11603~^~306~^150.^3^13.^~1~^^^^^^^^^^^~08/01/1984~
-~11603~^~307~^4.^3^1.^~1~^^^^^^^^^^^~08/01/1984~
-~11603~^~318~^21.^0^^~4~^~NC~^^^^^^^^^^~03/01/2007~
-~11603~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2002~
-~11603~^~320~^1.^0^^~4~^~NC~^^^^^^^^^^~03/01/2007~
-~11603~^~321~^13.^0^^~4~^~O~^^^^^^^^^^~02/01/2003~
-~11603~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~
-~11603~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~
-~11603~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~
-~11603~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~
-~11603~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~
-~11603~^~417~^12.^2^^~1~^^^^^^^^^^^~08/01/1984~
-~11603~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~
-~11603~^~432~^12.^2^^~1~^^^^^^^^^^^~03/01/2007~
-~11603~^~435~^12.^0^^~4~^~NC~^^^^^^^^^^~03/01/2007~
-~11603~^~601~^0.^0^^~7~^~Z~^^^^^^^^^^~08/01/1984~
-~11604~^~208~^38.^0^^~4~^~NC~^^^^^^^^^^~08/01/1984~
-~11604~^~268~^159.^0^^~4~^^^^^^^^^^^
-~11604~^~301~^11.^0^^~1~^^^^^^^^^^^~08/01/1984~
-~11604~^~304~^11.^0^^~1~^^^^^^^^^^^~08/01/1984~
-~11604~^~305~^16.^0^^~1~^^^^^^^^^^^~08/01/1984~
-~11604~^~306~^135.^0^^~1~^^^^^^^^^^^~08/01/1984~
-~11604~^~307~^4.^0^^~1~^^^^^^^^^^^~08/01/1984~
-~11604~^~318~^19.^0^^~1~^^^^^^^^^^^~08/01/1984~
-~11604~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2002~
-~11604~^~320~^1.^0^^~1~^^^^^^^^^^^~06/01/2002~
-~11604~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~
-~11604~^~417~^8.^0^^~1~^^^^^^^^^^^~08/01/1984~
-~11604~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~
-~11604~^~432~^8.^0^^~1~^^^^^^^^^^^~12/01/1984~
-~11604~^~435~^8.^0^^~4~^~NC~^^^^^^^^^^~01/01/2001~
-~11604~^~601~^0.^0^^~7~^~Z~^^^^^^^^^^~08/01/1984~
-~11605~^~208~^73.^0^^~4~^~NC~^^^^^^^^^^~08/01/1984~
-~11605~^~268~^305.^0^^~4~^^^^^^^^^^^
-~11605~^~301~^11.^29^0.^~1~^^^^^^^^^^^~08/01/1984~
-~11605~^~304~^19.^21^0.^~1~^^^^^^^^^^^~08/01/1984~
-~11605~^~305~^17.^29^0.^~1~^^^^^^^^^^^~08/01/1984~
-~11605~^~306~^164.^21^4.^~1~^^^^^^^^^^^~08/01/1984~
-~11605~^~307~^162.^27^2.^~1~^^^^^^^^^^^~08/01/1984~
-~11605~^~318~^11.^0^^~4~^^^^^^^^^^^~08/01/1984~
-~11605~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2002~
-~11605~^~320~^1.^0^^~4~^^^^^^^^^^^~06/01/2002~
-~11605~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~
-~11605~^~417~^29.^0^^~4~^^^^^^^^^^^~08/01/1984~
-~11605~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~
-~11605~^~432~^29.^0^^~4~^^^^^^^^^^^~12/01/1984~
-~11605~^~435~^29.^0^^~4~^~NC~^^^^^^^^^^~01/01/2001~
-~11605~^~601~^0.^0^^~7~^~Z~^^^^^^^^^^~08/01/1984~
-~11609~^~208~^65.^0^^~4~^~NC~^^^^^^^^^^~08/01/1984~
-~11609~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2009~
-~11609~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2009~
-~11609~^~268~^272.^0^^~4~^^^^^^^^^^^~05/01/2009~
-~11609~^~301~^11.^59^0.^~1~^^^^^^^^^^^~08/01/1984~
-~11609~^~304~^15.^60^0.^~1~^^^^^^^^^^^~08/01/1984~
-~11609~^~305~^17.^60^0.^~1~^^^^^^^^^^^~08/01/1984~
-~11609~^~306~^115.^0^^~8~^~LC~^^^^^^^^^^~05/01/2015~
-~11609~^~307~^149.^0^^~8~^~LC~^^^^^^^^^^~05/01/2015~
-~11609~^~318~^49.^0^^~4~^~NC~^^^^^^^^^^~05/01/2009~
-~11609~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2002~
-~11609~^~320~^2.^0^^~4~^~NC~^^^^^^^^^^~05/01/2009~
-~11609~^~321~^29.^0^^~4~^~BFSN~^~11082~^^^^^^^^^~05/01/2009~
-~11609~^~322~^0.^0^^~4~^~BFSN~^~11082~^^^^^^^^^~05/01/2009~
-~11609~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~
-~11609~^~334~^0.^0^^~4~^~BFSN~^~11082~^^^^^^^^^~05/01/2009~
-~11609~^~337~^0.^0^^~4~^~BFSN~^~11082~^^^^^^^^^~05/01/2009~
-~11609~^~338~^0.^0^^~4~^~BFSN~^~11082~^^^^^^^^^~05/01/2009~
-~11609~^~417~^27.^0^^~4~^^^^^^^^^^^~08/01/1984~
-~11609~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~
-~11609~^~432~^27.^0^^~4~^^^^^^^^^^^~05/01/2009~
-~11609~^~435~^27.^0^^~4~^~NC~^^^^^^^^^^~05/01/2009~
-~11609~^~601~^0.^0^^~7~^~Z~^^^^^^^^^^~08/01/1984~
-~11613~^~208~^21.^0^^~4~^~NC~^^^^^^^^^^~08/01/1984~
-~11613~^~268~^88.^0^^~4~^^^^^^^^^^^
-~11613~^~301~^93.^1^^~1~^^^^^^^^^^^~08/01/1984~
-~11613~^~304~^52.^1^^~1~^^^^^^^^^^^~08/01/1984~
-~11613~^~305~^53.^1^^~1~^^^^^^^^^^^~08/01/1984~
-~11613~^~306~^470.^1^^~1~^^^^^^^^^^^~08/01/1984~
-~11613~^~307~^80.^1^^~1~^^^^^^^^^^^~08/01/1984~
-~11613~^~318~^4200.^1^^~1~^^^^^^^^^^^~08/01/1984~
-~11613~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2002~
-~11613~^~320~^210.^1^^~1~^^^^^^^^^^^~06/01/2002~
-~11613~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~
-~11613~^~417~^13.^0^^~4~^^^^^^^^^^^~08/01/1984~
-~11613~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~
-~11613~^~432~^13.^0^^~4~^^^^^^^^^^^~12/01/1984~
-~11613~^~435~^13.^0^^~4~^~NC~^^^^^^^^^^~01/01/2001~
-~11613~^~601~^0.^0^^~7~^~Z~^^^^^^^^^^~08/01/1984~
-~11614~^~208~^25.^0^^~4~^~NC~^^^^^^^^^^~08/01/1984~
-~11614~^~268~^105.^0^^~4~^^^^^^^^^^^
-~11614~^~301~^102.^0^^~1~^^^^^^^^^^^~08/01/1984~
-~11614~^~304~^57.^0^^~1~^^^^^^^^^^^~08/01/1984~
-~11614~^~305~^55.^0^^~1~^^^^^^^^^^^~08/01/1984~
-~11614~^~306~^491.^0^^~1~^^^^^^^^^^^~08/01/1984~
-~11614~^~307~^88.^0^^~1~^^^^^^^^^^^~08/01/1984~
-~11614~^~318~^4385.^0^^~1~^^^^^^^^^^^~08/01/1984~
-~11614~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2002~
-~11614~^~320~^219.^0^^~1~^^^^^^^^^^^~06/01/2002~
-~11614~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~
-~11614~^~417~^10.^0^^~4~^^^^^^^^^^^~08/01/1984~
-~11614~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~
-~11614~^~432~^10.^0^^~4~^^^^^^^^^^^~12/01/1984~
-~11614~^~435~^10.^0^^~4~^~NC~^^^^^^^^^^~01/01/2001~
-~11614~^~601~^0.^0^^~7~^~Z~^^^^^^^^^^~08/01/1984~
-~11615~^~208~^311.^0^^~4~^~NC~^^^^^^^^^^~08/01/1984~
-~11615~^~268~^1301.^0^^~4~^^^^^^^^^^^
-~11615~^~301~^813.^1^^~1~^^^^^^^^^^^~08/01/1984~
-~11615~^~304~^640.^0^^~4~^^^^^^^^^^^~08/01/1984~
-~11615~^~305~^518.^1^^~1~^^^^^^^^^^^~08/01/1984~
-~11615~^~306~^2960.^1^^~1~^^^^^^^^^^^~08/01/1984~
-~11615~^~307~^70.^0^^~4~^^^^^^^^^^^~08/01/1984~
-~11615~^~318~^68300.^1^^~1~^^^^^^^^^^^~08/01/1984~
-~11615~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2002~
-~11615~^~320~^3415.^1^^~1~^^^^^^^^^^^~06/01/2002~
-~11615~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~
-~11615~^~417~^108.^0^^~4~^^^^^^^^^^^~08/01/1984~
-~11615~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~
-~11615~^~432~^108.^0^^~4~^^^^^^^^^^^~12/01/1984~
-~11615~^~435~^108.^0^^~4~^~NC~^^^^^^^^^^~01/01/2001~
-~11615~^~601~^0.^0^^~7~^~Z~^^^^^^^^^^~08/01/1984~
-~11616~^~208~^22.^0^^~4~^~NC~^^^^^^^^^^~08/01/1984~
-~11616~^~268~^92.^0^^~4~^^^^^^^^^^^
-~11616~^~301~^44.^1^^~1~^^^^^^^^^^^~08/01/1984~
-~11616~^~304~^103.^1^^~1~^^^^^^^^^^^~08/01/1984~
-~11616~^~305~^63.^1^^~1~^^^^^^^^^^^~08/01/1984~
-~11616~^~306~^390.^1^^~1~^^^^^^^^^^^~08/01/1984~
-~11616~^~307~^4.^1^^~1~^^^^^^^^^^^~08/01/1984~
-~11616~^~318~^4000.^1^^~1~^^^^^^^^^^^~08/01/1984~
-~11616~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2002~
-~11616~^~320~^200.^1^^~1~^^^^^^^^^^^~06/01/2002~
-~11616~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~
-~11616~^~417~^13.^0^^~4~^^^^^^^^^^^~08/01/1984~
-~11616~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~
-~11616~^~432~^13.^0^^~4~^^^^^^^^^^^~12/01/1984~
-~11616~^~435~^13.^0^^~4~^~NC~^^^^^^^^^^~01/01/2001~
-~11616~^~601~^0.^0^^~7~^~Z~^^^^^^^^^^~08/01/1984~
-~11617~^~208~^20.^0^^~4~^~NC~^^^^^^^^^^~08/01/1984~
-~11617~^~268~^84.^0^^~4~^^^^^^^^^^^
-~11617~^~301~^38.^0^^~1~^^^^^^^^^^^~08/01/1984~
-~11617~^~304~^89.^0^^~1~^^^^^^^^^^^~08/01/1984~
-~11617~^~305~^52.^0^^~1~^^^^^^^^^^^~08/01/1984~
-~11617~^~306~^321.^0^^~1~^^^^^^^^^^^~08/01/1984~
-~11617~^~307~^3.^0^^~1~^^^^^^^^^^^~08/01/1984~
-~11617~^~318~^3474.^0^^~1~^^^^^^^^^^^~08/01/1984~
-~11617~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2002~
-~11617~^~320~^174.^0^^~1~^^^^^^^^^^^~06/01/2002~
-~11617~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~
-~11617~^~417~^8.^0^^~4~^^^^^^^^^^^~08/01/1984~
-~11617~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~
-~11617~^~432~^8.^0^^~4~^^^^^^^^^^^~12/01/1984~
-~11617~^~435~^8.^0^^~4~^~NC~^^^^^^^^^^~01/01/2001~
-~11617~^~601~^0.^0^^~7~^~Z~^^^^^^^^^^~08/01/1984~
-~11618~^~208~^150.^0^^~4~^~NC~^^^^^^^^^^~08/01/1984~
-~11618~^~268~^628.^0^^~4~^^^^^^^^^^^
-~11618~^~301~^110.^1^^~1~^^^^^^^^^^^~08/01/1984~
-~11618~^~304~^32.^1^^~1~^^^^^^^^^^^~08/01/1984~
-~11618~^~305~^165.^1^^~1~^^^^^^^^^^^~08/01/1984~
-~11618~^~306~^340.^1^^~1~^^^^^^^^^^^~08/01/1984~
-~11618~^~307~^12.^1^^~1~^^^^^^^^^^^~08/01/1984~
-~11618~^~318~^0.^1^^~1~^^^^^^^^^^^~08/01/1984~
-~11618~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2002~
-~11618~^~320~^0.^1^^~1~^^^^^^^^^^^~06/01/2002~
-~11618~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~
-~11618~^~417~^24.^0^^~4~^^^^^^^^^^^~08/01/1984~
-~11618~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~
-~11618~^~432~^24.^0^^~4~^^^^^^^^^^^~12/01/1984~
-~11618~^~435~^24.^0^^~4~^~NC~^^^^^^^^^^~01/01/2001~
-~11618~^~601~^0.^0^^~7~^~Z~^^^^^^^^^^~08/01/1984~
-~11620~^~208~^37.^0^^~4~^~NC~^^^^^^^^^^~08/01/1984~
-~11620~^~268~^155.^0^^~4~^^^^^^^^^^^
-~11620~^~301~^30.^0^^~1~^^^^^^^^^^^~08/01/1984~
-~11620~^~304~^45.^1^^~1~^^^^^^^^^^^~08/01/1984~
-~11620~^~305~^50.^0^^~1~^^^^^^^^^^^~08/01/1984~
-~11620~^~306~^461.^1^^~1~^^^^^^^^^^^~08/01/1984~
-~11620~^~307~^42.^1^^~1~^^^^^^^^^^^~08/01/1984~
-~11620~^~318~^74.^0^^~1~^^^^^^^^^^^~08/01/1984~
-~11620~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2002~
-~11620~^~320~^4.^0^^~1~^^^^^^^^^^^~06/01/2002~
-~11620~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~
-~11620~^~417~^44.^0^^~4~^^^^^^^^^^^~08/01/1984~
-~11620~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~
-~11620~^~432~^44.^0^^~4~^^^^^^^^^^^~12/01/1984~
-~11620~^~435~^44.^0^^~4~^~NC~^^^^^^^^^^~01/01/2001~
-~11620~^~601~^0.^0^^~7~^~Z~^^^^^^^^^^~08/01/1984~
-~11621~^~208~^36.^0^^~4~^~NC~^^^^^^^^^^~08/01/1984~
-~11621~^~268~^151.^0^^~4~^^^^^^^^^^^~03/01/2010~
-~11621~^~301~^20.^1^^~1~^^^^^^^^^^^~08/01/1984~
-~11621~^~304~^42.^1^^~1~^^^^^^^^^^^~08/01/1984~
-~11621~^~305~^49.^1^^~1~^^^^^^^^^^^~08/01/1984~
-~11621~^~306~^457.^1^^~1~^^^^^^^^^^^~08/01/1984~
-~11621~^~307~^43.^1^^~1~^^^^^^^^^^^~08/01/1984~
-~11621~^~318~^70.^0^^~1~^^^^^^^^^^^~08/01/1984~
-~11621~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2002~
-~11621~^~320~^4.^0^^~1~^^^^^^^^^^^~06/01/2002~
-~11621~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~
-~11621~^~417~^30.^0^^~4~^^^^^^^^^^^~08/01/1984~
-~11621~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~
-~11621~^~432~^30.^0^^~4~^^^^^^^^^^^~12/01/1984~
-~11621~^~435~^30.^0^^~4~^~NC~^^^^^^^^^^~03/01/2010~
-~11621~^~601~^0.^0^^~7~^~Z~^^^^^^^^^^~08/01/1984~
-~11624~^~208~^321.^0^^~4~^~NC~^^^^^^^^^^~05/01/2005~
-~11624~^~268~^1344.^0^^~4~^~NC~^^^^^^^^^^~05/01/2005~
-~11624~^~301~^360.^1^^~1~^^^^^^^^^^^~08/01/1984~
-~11624~^~304~^161.^0^^~1~^^^^^^^^^^^~08/01/1984~
-~11624~^~305~^346.^1^^~1~^^^^^^^^^^^~08/01/1984~
-~11624~^~306~^2400.^1^^~1~^^^^^^^^^^^~08/01/1984~
-~11624~^~307~^35.^1^^~1~^^^^^^^^^^^~08/01/1984~
-~11624~^~318~^277.^1^^~1~^^^^^^^^^^^~06/01/2005~
-~11624~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2002~
-~11624~^~320~^14.^1^^~1~^^^^^^^^^^^~06/01/2005~
-~11624~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~
-~11624~^~417~^366.^0^^~1~^^^^^^^^^^^~08/01/1984~
-~11624~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~
-~11624~^~432~^366.^0^^~1~^^^^^^^^^^^~12/01/1984~
-~11624~^~435~^366.^0^^~4~^~NC~^^^^^^^^^^~06/01/2005~
-~11624~^~601~^0.^0^^~7~^~Z~^^^^^^^^^^~08/01/1984~
-~11625~^~208~^271.^0^^~4~^~NC~^^^^^^^^^^~08/01/1984~
-~11625~^~268~^1134.^0^^~4~^^^^^^^^^^^~08/01/2008~
-~11625~^~301~^176.^1^^~1~^^^^^^^^^^^~08/01/1984~
-~11625~^~304~^372.^0^^~1~^^^^^^^^^^^~08/01/1984~
-~11625~^~305~^548.^1^^~1~^^^^^^^^^^^~08/01/1984~
-~11625~^~306~^6300.^1^^~1~^^^^^^^^^^^~08/01/1984~
-~11625~^~307~^391.^1^^~1~^^^^^^^^^^^~08/01/1984~
-~11625~^~318~^63240.^1^^~1~^^^^^^^^^^^~08/01/1984~
-~11625~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~
-~11625~^~417~^194.^0^^~4~^~BFSN~^~11297~^^^^^^^^^~07/01/2002~
-~11625~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~07/01/2002~
-~11625~^~432~^194.^0^^~4~^~BFSN~^^^^^^^^^^~07/01/2002~
-~11625~^~435~^194.^0^^~4~^~NC~^^^^^^^^^^~08/01/2008~
-~11625~^~601~^0.^0^^~7~^~Z~^^^^^^^^^^~08/01/1984~
-~11626~^~208~^12.^0^^~4~^~NC~^^^^^^^^^^~03/01/2007~
-~11626~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2003~
-~11626~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2003~
-~11626~^~268~^48.^0^^~4~^~NC~^^^^^^^^^^~03/01/2007~
-~11626~^~301~^14.^5^0.^~1~^^^^^^^^^^^~08/01/1984~
-~11626~^~304~^9.^0^^~1~^^^^^^^^^^^~08/01/1984~
-~11626~^~305~^32.^5^6.^~1~^^^^^^^^^^^~08/01/1984~
-~11626~^~306~^27.^5^2.^~1~^^^^^^^^^^^~08/01/1984~
-~11626~^~307~^42.^0^^~8~^~LC~^^^^^^^^^^~05/01/2015~
-~11626~^~318~^8.^0^^~4~^~NC~^^^^^^^^^^~03/01/2007~
-~11626~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2002~
-~11626~^~320~^0.^0^^~4~^~NC~^^^^^^^^^^~03/01/2007~
-~11626~^~321~^2.^0^^~4~^~BFSN~^~11044~^^^^^^^^^~01/01/2003~
-~11626~^~322~^2.^0^^~4~^~BFSN~^~11044~^^^^^^^^^~01/01/2003~
-~11626~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~
-~11626~^~334~^2.^0^^~4~^~BFSN~^~11044~^^^^^^^^^~01/01/2003~
-~11626~^~337~^0.^0^^~4~^~BFSN~^~11044~^^^^^^^^^~01/01/2003~
-~11626~^~338~^0.^0^^~4~^~BFSN~^~11044~^^^^^^^^^~01/01/2003~
-~11626~^~417~^10.^3^1.^~1~^^^^^^^^^^^~08/01/1984~
-~11626~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~
-~11626~^~432~^10.^3^1.^~1~^^^^^^^^^^^~03/01/2007~
-~11626~^~435~^10.^0^^~4~^~NC~^^^^^^^^^^~03/01/2007~
-~11626~^~601~^0.^0^^~7~^~Z~^^^^^^^^^^~08/01/1984~
-~11632~^~208~^27.^0^^~4~^~NC~^^^^^^^^^^~02/01/2003~
-~11632~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~
-~11632~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~
-~11632~^~268~^113.^0^^~4~^~NC~^^^^^^^^^^~02/01/2003~
-~11632~^~301~^23.^3^1.^~1~^~A~^^^^^^^^^^~11/01/1996~
-~11632~^~304~^15.^3^3.^~1~^~A~^^^^^^^^^^~11/01/1996~
-~11632~^~305~^18.^3^0.^~1~^~A~^^^^^^^^^^~11/01/1996~
-~11632~^~306~^193.^3^26.^~1~^~A~^^^^^^^^^^~11/01/1996~
-~11632~^~307~^1671.^3^91.^~1~^~A~^^^^^^^^^^~11/01/1996~
-~11632~^~318~^1700.^0^^~4~^~NC~^^^^^^^^^^~02/01/2003~
-~11632~^~319~^0.^0^^~4~^~BNA~^~11979~^^^^^^^^^~02/01/2003~
-~11632~^~320~^85.^0^^~4~^~NC~^^^^^^^^^^~02/01/2003~
-~11632~^~321~^968.^0^^~4~^~BNA~^~11979~^^^^^^^^^~02/01/2003~
-~11632~^~322~^32.^0^^~4~^~BNA~^~11979~^^^^^^^^^~02/01/2003~
-~11632~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~
-~11632~^~334~^72.^0^^~4~^~BNA~^~11979~^^^^^^^^^~02/01/2003~
-~11632~^~337~^0.^0^^~4~^~BFSN~^~11979~^^^^^^^^^~02/01/2003~
-~11632~^~338~^657.^0^^~4~^~BFSN~^~11979~^^^^^^^^^~02/01/2003~
-~11632~^~417~^14.^3^0.^~1~^~A~^^^^^^^^^^~11/01/1996~
-~11632~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~
-~11632~^~432~^14.^3^0.^~1~^~A~^^^^^^^^^^~02/01/2003~
-~11632~^~435~^14.^0^^~4~^~NC~^^^^^^^^^^~02/01/2003~
-~11632~^~601~^0.^0^^~7~^~Z~^^^^^^^^^^~08/01/1984~
-~11637~^~208~^14.^0^^~4~^~NC~^^^^^^^^^^~08/01/1984~
-~11637~^~268~^59.^0^^~4~^^^^^^^^^^^
-~11637~^~301~^27.^1^^~1~^^^^^^^^^^^~08/01/1984~
-~11637~^~304~^9.^1^^~1~^^^^^^^^^^^~08/01/1984~
-~11637~^~305~^28.^1^^~1~^^^^^^^^^^^~08/01/1984~
-~11637~^~306~^280.^1^^~1~^^^^^^^^^^^~08/01/1984~
-~11637~^~307~^16.^1^^~1~^^^^^^^^^^^~08/01/1984~
-~11637~^~318~^0.^1^^~1~^^^^^^^^^^^~08/01/1984~
-~11637~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2002~
-~11637~^~320~^0.^1^^~1~^^^^^^^^^^^~06/01/2002~
-~11637~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~
-~11637~^~417~^14.^3^2.^~1~^^^^^^^^^^^~08/01/1984~
-~11637~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~
-~11637~^~432~^14.^3^2.^~1~^^^^^^^^^^^~12/01/1984~
-~11637~^~435~^14.^0^^~4~^~NC~^^^^^^^^^^~01/01/2001~
-~11637~^~601~^0.^0^^~7~^~Z~^^^^^^^^^^~08/01/1984~
-~11640~^~208~^348.^0^^~4~^~NC~^^^^^^^^^^~08/01/1984~
-~11640~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~08/01/2011~
-~11640~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~08/01/2011~
-~11640~^~268~^1457.^0^^~4~^~NC~^^^^^^^^^^~08/01/2011~
-~11640~^~301~^183.^1^^~1~^^^^^^^^^^^~08/01/1984~
-~11640~^~304~^104.^0^^~1~^^^^^^^^^^^~08/01/1984~
-~11640~^~305~^296.^1^^~1~^^^^^^^^^^^~08/01/1984~
-~11640~^~306~^1650.^1^^~1~^^^^^^^^^^^~08/01/1984~
-~11640~^~307~^59.^1^^~1~^^^^^^^^^^^~08/01/1984~
-~11640~^~318~^21.^0^^~4~^~NC~^^^^^^^^^^~08/01/2011~
-~11640~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2002~
-~11640~^~320~^1.^0^^~4~^~NC~^^^^^^^^^^~08/01/2011~
-~11640~^~321~^13.^0^^~4~^~BFSN~^~11282~^^^^^^^^^~08/01/2011~
-~11640~^~322~^0.^0^^~4~^~BFSN~^~11282~^^^^^^^^^~08/01/2011~
-~11640~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~
-~11640~^~334~^0.^0^^~4~^~BFSN~^~11282~^^^^^^^^^~08/01/2011~
-~11640~^~337~^0.^0^^~4~^~BFSN~^~11282~^^^^^^^^^~08/01/2011~
-~11640~^~338~^38.^0^^~4~^~BFSN~^~11282~^^^^^^^^^~08/01/2011~
-~11640~^~417~^116.^0^^~1~^^^^^^^^^^^~08/01/1984~
-~11640~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~
-~11640~^~432~^116.^0^^~1~^^^^^^^^^^^~12/01/1984~
-~11640~^~435~^116.^0^^~4~^~NC~^^^^^^^^^^~01/01/2001~
-~11640~^~601~^0.^0^^~7~^~Z~^^^^^^^^^^~08/01/1984~
-~11641~^~208~^16.^0^^~4~^~NC~^^^^^^^^^^~03/01/2007~
-~11641~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2003~
-~11641~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2003~
-~11641~^~268~^69.^0^^~4~^~NC~^^^^^^^^^^~03/01/2007~
-~11641~^~301~^15.^6^0.^~1~^^^^2^10.^18.^2^12.^18.^~2, 3~^~01/01/2003~
-~11641~^~304~^17.^6^0.^~1~^^^^2^15.^19.^4^15.^18.^~2, 3~^~01/01/2003~
-~11641~^~305~^38.^6^0.^~1~^^^^2^35.^40.^3^35.^40.^~2, 3~^~01/01/2003~
-~11641~^~306~^262.^6^10.^~1~^^^^2^227.^290.^1^157.^366.^~2, 3~^~01/01/2003~
-~11641~^~307~^2.^16^^~1~^^^^^^^^^^^~01/01/2003~
-~11641~^~318~^200.^0^^~4~^~NC~^^^^^^^^^^~03/01/2007~
-~11641~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2002~
-~11641~^~320~^10.^0^^~4~^~NC~^^^^^^^^^^~03/01/2007~
-~11641~^~321~^120.^7^1.^~6~^~JA~^^^3^0.^410.^1^104.^135.^~2, 3~^~01/01/2003~
-~11641~^~322~^0.^1^^~1~^~A~^^^^^^^^^^~01/01/2003~
-~11641~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~
-~11641~^~334~^0.^1^^~1~^~A~^^^^^^^^^^~01/01/2003~
-~11641~^~337~^0.^1^^~1~^~A~^^^^^^^^^^~01/01/2003~
-~11641~^~338~^2125.^1^^~1~^~A~^^^^^^^^^^~01/01/2003~
-~11641~^~417~^29.^6^2.^~1~^^^^2^20.^40.^4^23.^34.^~2, 3~^~01/01/2003~
-~11641~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~
-~11641~^~432~^29.^6^2.^~1~^^^^2^20.^40.^4^23.^34.^^~03/01/2007~
-~11641~^~435~^29.^0^^~4~^~NC~^^^^^^^^^^~03/01/2007~
-~11641~^~601~^0.^0^^~7~^~Z~^^^^^^^^^^~08/01/1984~
-~11642~^~208~^20.^0^^~4~^~NC~^^^^^^^^^^~03/01/2007~
-~11642~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2003~
-~11642~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2003~
-~11642~^~268~^84.^0^^~4~^^^^^^^^^^^~03/01/2007~
-~11642~^~301~^27.^6^1.^~1~^^^^^^^^^^^~08/01/1984~
-~11642~^~304~^24.^6^0.^~1~^^^^^^^^^^^~08/01/1984~
-~11642~^~305~^39.^6^1.^~1~^^^^^^^^^^^~08/01/1984~
-~11642~^~306~^192.^6^5.^~1~^^^^^^^^^^^~08/01/1984~
-~11642~^~307~^1.^6^0.^~1~^^^^^^^^^^^~08/01/1984~
-~11642~^~318~^212.^0^^~4~^~NC~^^^^^^^^^^~03/01/2007~
-~11642~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2002~
-~11642~^~320~^11.^0^^~4~^~NC~^^^^^^^^^^~03/01/2007~
-~11642~^~321~^127.^0^^~4~^~BFSY~^~11641~^^^^^^^^^~01/01/2003~
-~11642~^~322~^0.^0^^~4~^~BFSY~^~11641~^^^^^^^^^~01/01/2003~
-~11642~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~
-~11642~^~334~^0.^0^^~4~^~BFSY~^~11641~^^^^^^^^^~01/01/2003~
-~11642~^~337~^0.^0^^~4~^~BFSY~^~11641~^^^^^^^^^~01/01/2003~
-~11642~^~338~^2249.^0^^~4~^~BFSY~^~11641~^^^^^^^^^~01/01/2003~
-~11642~^~417~^20.^3^3.^~1~^^^^^^^^^^^~08/01/1984~
-~11642~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~
-~11642~^~432~^20.^3^3.^~1~^^^^^^^^^^^~03/01/2007~
-~11642~^~435~^20.^0^^~4~^~NC~^^^^^^^^^^~03/01/2007~
-~11642~^~601~^0.^0^^~7~^~Z~^^^^^^^^^^~08/01/1984~
-~11643~^~208~^34.^0^^~4~^~NC~^^^^^^^^^^~03/01/2007~
-~11643~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2003~
-~11643~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2003~
-~11643~^~268~^143.^0^^~4~^~NC~^^^^^^^^^^~03/01/2007~
-~11643~^~301~^28.^5^2.^~1~^^^^1^22.^35.^4^21.^34.^~4~^~01/01/2003~
-~11643~^~304~^14.^5^2.^~1~^^^^1^6.^18.^4^8.^20.^~4~^~01/01/2003~
-~11643~^~305~^23.^4^2.^~1~^^^^1^16.^29.^3^13.^31.^~4~^~01/01/2003~
-~11643~^~306~^350.^10^^~1~^^^^^^^^^^^~08/01/1984~
-~11643~^~307~^4.^9^^~1~^^^^^^^^^^^~08/01/1984~
-~11643~^~318~^1367.^0^^~1~^~AS~^^^^^^^^^^~03/01/2007~
-~11643~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2002~
-~11643~^~320~^68.^0^^~1~^~AS~^^^^^^^^^^~03/01/2007~
-~11643~^~321~^820.^6^0.^~1~^~A~^^^1^820.^820.^1^820.^820.^~4~^~01/01/2003~
-~11643~^~322~^0.^2^^~1~^~A~^^^^^^^^^^~01/01/2003~
-~11643~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~
-~11643~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2003~
-~11643~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2003~
-~11643~^~338~^38.^0^^~4~^~T~^^^^^^^^^^~01/01/2003~
-~11643~^~417~^24.^9^1.^~1~^^^^1^20.^28.^4^19.^28.^~4~^~01/01/2003~
-~11643~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~
-~11643~^~432~^24.^9^1.^~1~^^^^1^20.^28.^4^19.^28.^^~03/01/2007~
-~11643~^~435~^24.^0^^~4~^~NC~^^^^^^^^^^~03/01/2007~
-~11643~^~601~^0.^0^^~7~^~Z~^^^^^^^^^^~08/01/1984~
-~11644~^~208~^37.^0^^~4~^~NC~^^^^^^^^^^~03/01/2006~
-~11644~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2003~
-~11644~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2003~
-~11644~^~268~^154.^0^^~4~^~NC~^^^^^^^^^^~03/01/2006~
-~11644~^~301~^22.^3^4.^~1~^^^^1^14.^29.^2^2.^41.^~4~^~01/01/2003~
-~11644~^~304~^13.^3^2.^~1~^^^^1^8.^17.^2^0.^24.^~4~^~01/01/2003~
-~11644~^~305~^19.^3^0.^~1~^^^^1^19.^20.^2^17.^21.^~4~^~01/01/2003~
-~11644~^~306~^241.^3^98.^~1~^^^^1^126.^437.^2^-183.^664.^~4~^~03/01/2006~
-~11644~^~307~^1.^2^^~1~^^^^1^1.^1.^1^^^^~01/01/2003~
-~11644~^~318~^5223.^0^^~1~^~AS~^^^^^^^^^^~03/01/2006~
-~11644~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2002~
-~11644~^~320~^261.^0^^~1~^~AS~^^^^^^^^^^~03/01/2006~
-~11644~^~321~^2793.^12^661.^~1~^~A~^^^1^1400.^4570.^3^686.^4898.^~4~^~01/01/2003~
-~11644~^~322~^682.^8^298.^~1~^~A~^^^1^117.^1130.^2^-601.^1965.^~4~^~01/01/2003~
-~11644~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~
-~11644~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2003~
-~11644~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2003~
-~11644~^~338~^1415.^7^785.^~1~^~A~^^^1^630.^2200.^1^-8559.^11389.^~4~^~01/01/2003~
-~11644~^~417~^20.^2^^~1~^^^^1^18.^23.^1^^^^~01/01/2003~
-~11644~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~
-~11644~^~432~^20.^2^^~1~^^^^^^^^^^^~03/01/2006~
-~11644~^~435~^20.^0^^~4~^~NC~^^^^^^^^^^~03/01/2006~
-~11644~^~601~^0.^0^^~7~^~Z~^^^^^^^^^^~08/01/1984~
-~11645~^~208~^89.^0^^~4~^~NC~^^^^^^^^^^~02/01/2007~
-~11645~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2003~
-~11645~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2003~
-~11645~^~268~^372.^0^^~4~^^^^^^^^^^^~02/01/2007~
-~11645~^~301~^15.^36^0.^~1~^^^^^^^^^^^~08/01/1984~
-~11645~^~304~^13.^36^0.^~1~^^^^^^^^^^^~08/01/1984~
-~11645~^~305~^27.^36^1.^~1~^^^^^^^^^^^~08/01/1984~
-~11645~^~306~^185.^27^4.^~1~^^^^^^^^^^^~08/01/1984~
-~11645~^~307~^29.^6^6.^~8~^~LC~^^^^^^^^^^~04/01/2013~
-~11645~^~318~^7530.^0^^~4~^~NC~^^^^^^^^^^~02/01/2007~
-~11645~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2002~
-~11645~^~320~^377.^0^^~4~^~NC~^^^^^^^^^^~02/01/2007~
-~11645~^~321~^4518.^0^^~4~^~BFSN~^~11512~^^^^^^^^^~01/01/2003~
-~11645~^~322~^0.^0^^~4~^~BFSN~^~11512~^^^^^^^^^~01/01/2003~
-~11645~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~
-~11645~^~334~^0.^0^^~4~^~BFSN~^~11512~^^^^^^^^^~01/01/2003~
-~11645~^~337~^0.^0^^~4~^~BFSN~^~11512~^^^^^^^^^~01/01/2003~
-~11645~^~338~^0.^0^^~4~^~BFSN~^~11512~^^^^^^^^^~01/01/2003~
-~11645~^~417~^7.^0^^~4~^^^^^^^^^^^~08/01/1984~
-~11645~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~
-~11645~^~432~^7.^0^^~4~^^^^^^^^^^^~02/01/2007~
-~11645~^~435~^7.^0^^~4~^~NC~^^^^^^^^^^~02/01/2007~
-~11645~^~601~^0.^0^^~7~^~Z~^^^^^^^^^^~08/01/1984~
-~11647~^~208~^108.^0^^~4~^~NC~^^^^^^^^^^~06/01/2005~
-~11647~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2005~
-~11647~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2005~
-~11647~^~268~^454.^0^^~4~^~NC~^^^^^^^^^^~06/01/2005~
-~11647~^~301~^17.^29^1.^~1~^^^^^^^^^^^~08/01/1984~
-~11647~^~304~^12.^10^0.^~1~^^^^^^^^^^^~08/01/1984~
-~11647~^~305~^25.^10^2.^~1~^^^^^^^^^^^~08/01/1984~
-~11647~^~306~^193.^10^5.^~1~^^^^^^^^^^^~08/01/1984~
-~11647~^~307~^39.^10^4.^~1~^^^^^^^^^^^~08/01/1984~
-~11647~^~318~^9169.^0^^~4~^~NC~^^^^^^^^^^~06/01/2005~
-~11647~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2002~
-~11647~^~320~^458.^0^^~4~^~NC~^^^^^^^^^^~06/01/2005~
-~11647~^~321~^5501.^0^^~4~^~BFSN~^~11512~^^^^^^^^^~06/01/2005~
-~11647~^~322~^0.^0^^~4~^~BFSN~^~11512~^^^^^^^^^~06/01/2005~
-~11647~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~
-~11647~^~334~^0.^0^^~4~^~BFSN~^~11512~^^^^^^^^^~06/01/2005~
-~11647~^~337~^0.^0^^~4~^~BFSN~^~11512~^^^^^^^^^~06/01/2005~
-~11647~^~338~^0.^0^^~4~^~BFSN~^~11512~^^^^^^^^^~06/01/2005~
-~11647~^~417~^8.^0^^~4~^^^^^^^^^^^~08/01/1984~
-~11647~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~
-~11647~^~432~^8.^0^^~4~^^^^^^^^^^^~06/01/2005~
-~11647~^~435~^8.^0^^~4~^~NC~^^^^^^^^^^~06/01/2005~
-~11647~^~601~^0.^0^^~7~^~Z~^^^^^^^^^^~08/01/1984~
-~11649~^~208~^33.^0^^~4~^~NC~^^^^^^^^^^~08/01/1984~
-~11649~^~268~^138.^0^^~4~^^^^^^^^^^^
-~11649~^~301~^17.^5^1.^~1~^^^^^^^^^^^~08/01/1984~
-~11649~^~304~^19.^0^^~4~^^^^^^^^^^^~08/01/1984~
-~11649~^~305~^48.^0^^~4~^^^^^^^^^^^~08/01/1984~
-~11649~^~306~^369.^0^^~4~^^^^^^^^^^^~08/01/1984~
-~11649~^~307~^472.^5^25.^~1~^^^^^^^^^^^~08/01/1984~
-~11649~^~318~^985.^5^66.^~1~^^^^^^^^^^^~08/01/1984~
-~11649~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2002~
-~11649~^~320~^49.^5^3.^~1~^^^^^^^^^^^~06/01/2002~
-~11649~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~
-~11649~^~417~^14.^0^^~4~^^^^^^^^^^^~08/01/1984~
-~11649~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~
-~11649~^~432~^14.^0^^~4~^^^^^^^^^^^~12/01/1984~
-~11649~^~435~^14.^0^^~4~^~NC~^^^^^^^^^^~01/01/2001~
-~11649~^~601~^0.^0^^~7~^~Z~^^^^^^^^^^~08/01/1984~
-~11653~^~208~^62.^0^^~4~^~NC~^^^^^^^^^^~08/01/1984~
-~11653~^~268~^259.^0^^~4~^^^^^^^^^^^
-~11653~^~301~^43.^2^^~1~^^^^^^^^^^^~08/01/1984~
-~11653~^~304~^53.^2^^~1~^^^^^^^^^^^~08/01/1984~
-~11653~^~305~^94.^2^^~1~^^^^^^^^^^^~08/01/1984~
-~11653~^~306~^307.^2^^~1~^^^^^^^^^^^~08/01/1984~
-~11653~^~307~^153.^1^^~1~^^^^^^^^^^^~08/01/1984~
-~11653~^~318~^2.^2^^~1~^^^^^^^^^^^~08/01/1984~
-~11653~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2002~
-~11653~^~320~^0.^2^^~1~^^^^^^^^^^^~06/01/2002~
-~11653~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~
-~11653~^~417~^118.^0^^~4~^^^^^^^^^^^~08/01/1984~
-~11653~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~
-~11653~^~432~^118.^0^^~4~^^^^^^^^^^^~12/01/1984~
-~11653~^~435~^118.^0^^~4~^~NC~^^^^^^^^^^~01/01/2001~
-~11653~^~601~^0.^0^^~7~^~Z~^^^^^^^^^^~08/01/1984~
-~11654~^~208~^22.^0^^~4~^~NC~^^^^^^^^^^~08/01/1984~
-~11654~^~268~^92.^0^^~4~^^^^^^^^^^^
-~11654~^~301~^15.^0^^~1~^^^^^^^^^^^~08/01/1984~
-~11654~^~304~^18.^0^^~1~^^^^^^^^^^^~08/01/1984~
-~11654~^~305~^30.^0^^~1~^^^^^^^^^^^~08/01/1984~
-~11654~^~306~^98.^0^^~1~^^^^^^^^^^^~08/01/1984~
-~11654~^~307~^51.^0^^~1~^^^^^^^^^^^~08/01/1984~
-~11654~^~318~^1.^0^^~1~^^^^^^^^^^^~08/01/1984~
-~11654~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2002~
-~11654~^~320~^0.^0^^~1~^^^^^^^^^^^~06/01/2002~
-~11654~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~
-~11654~^~417~^29.^0^^~4~^^^^^^^^^^^~08/01/1984~
-~11654~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~
-~11654~^~432~^29.^0^^~4~^^^^^^^^^^^~12/01/1984~
-~11654~^~435~^29.^0^^~4~^~NC~^^^^^^^^^^~01/01/2001~
-~11654~^~601~^0.^0^^~7~^~Z~^^^^^^^^^^~08/01/1984~
-~11655~^~208~^40.^0^^~4~^~NC~^^^^^^^^^^~02/01/2007~
-~11655~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~11/01/2002~
-~11655~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~11/01/2002~
-~11655~^~268~^165.^0^^~4~^~NC~^^^^^^^^^^~02/01/2007~
-~11655~^~301~^24.^0^^~1~^^^^^^^^^^^~08/01/1984~
-~11655~^~304~^14.^0^^~1~^^^^^^^^^^^~08/01/1984~
-~11655~^~305~^42.^0^^~1~^^^^^^^^^^^~08/01/1984~
-~11655~^~306~^292.^0^^~1~^^^^^^^^^^^~08/01/1984~
-~11655~^~307~^66.^0^^~8~^~LC~^^^^^^^^^^~08/01/2011~
-~11655~^~318~^19124.^0^^~4~^~NC~^^^^^^^^^^~02/01/2007~
-~11655~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2002~
-~11655~^~320~^956.^0^^~4~^~NC~^^^^^^^^^^~02/01/2007~
-~11655~^~321~^9303.^0^^~4~^~BFSN~^~11126~^^^^^^^^^~11/01/2002~
-~11655~^~322~^4342.^0^^~4~^~BFSN~^~11126~^^^^^^^^^~11/01/2002~
-~11655~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~
-~11655~^~334~^0.^0^^~4~^~BFSN~^~11126~^^^^^^^^^~11/01/2002~
-~11655~^~337~^2.^0^^~4~^~BFSN~^~11126~^^^^^^^^^~11/01/2002~
-~11655~^~338~^333.^0^^~4~^~BFSN~^~11126~^^^^^^^^^~11/01/2002~
-~11655~^~417~^4.^3^0.^~1~^^^^^^^^^^^~08/01/1984~
-~11655~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~
-~11655~^~432~^4.^3^0.^~1~^^^^^^^^^^^~02/01/2007~
-~11655~^~435~^4.^0^^~4~^~NC~^^^^^^^^^^~02/01/2007~
-~11655~^~601~^0.^0^^~7~^~Z~^^^^^^^^^^~08/01/1984~
-~11656~^~208~^131.^0^^~4~^~RC~^^^^^^^^^^~01/01/2009~
-~11656~^~262~^0.^0^^~4~^~RC~^^^^^^^^^^~01/01/2009~
-~11656~^~263~^0.^0^^~4~^~RC~^^^^^^^^^^~01/01/2009~
-~11656~^~268~^548.^0^^~4~^~RC~^^^^^^^^^^~01/01/2009~
-~11656~^~301~^39.^0^^~4~^~RC~^^^^^^^^^^~01/01/2009~
-~11656~^~304~^15.^0^^~4~^~RC~^^^^^^^^^^~01/01/2009~
-~11656~^~305~^90.^0^^~4~^~RC~^^^^^^^^^^~01/01/2009~
-~11656~^~306~^176.^0^^~4~^~RC~^^^^^^^^^^~01/01/2009~
-~11656~^~307~^282.^0^^~4~^~RC~^^^^^^^^^^~01/01/2009~
-~11656~^~318~^296.^0^^~4~^~RC~^^^^^^^^^^~01/01/2009~
-~11656~^~319~^51.^0^^~4~^~RC~^^^^^^^^^^~01/01/2009~
-~11656~^~320~^57.^0^^~4~^~RC~^^^^^^^^^^~01/01/2009~
-~11656~^~321~^36.^0^^~4~^~RC~^^^^^^^^^^~01/01/2009~
-~11656~^~322~^10.^0^^~4~^~RC~^^^^^^^^^^~01/01/2009~
-~11656~^~324~^22.^0^^~4~^~RC~^^^^^^^^^^~01/01/2009~
-~11656~^~334~^70.^0^^~4~^~RC~^^^^^^^^^^~01/01/2009~
-~11656~^~337~^0.^0^^~4~^~RC~^^^^^^^^^^~01/01/2009~
-~11656~^~338~^436.^0^^~4~^~RC~^^^^^^^^^^~01/01/2009~
-~11656~^~417~^29.^0^^~4~^~RC~^^^^^^^^^^~01/01/2009~
-~11656~^~431~^0.^0^^~4~^~RC~^^^^^^^^^^~01/01/2009~
-~11656~^~432~^29.^0^^~4~^~RC~^^^^^^^^^^~01/01/2009~
-~11656~^~435~^29.^0^^~4~^~NC~^^^^^^^^^^~01/01/2009~
-~11656~^~601~^72.^0^^~4~^~RC~^^^^^^^^^^~01/01/2009~
-~11657~^~208~^83.^0^^~4~^~NC~^^^^^^^^^^~12/01/2008~
-~11657~^~262~^0.^0^^~4~^~RA~^^^^^^^^^^~09/01/2004~
-~11657~^~263~^0.^0^^~4~^~RA~^^^^^^^^^^~09/01/2004~
-~11657~^~268~^348.^0^^~4~^~NC~^^^^^^^^^^~12/01/2008~
-~11657~^~301~^24.^0^^~4~^~RA~^^^^^^^^^^~12/01/2008~
-~11657~^~304~^18.^0^^~4~^~RA~^^^^^^^^^^~12/01/2008~
-~11657~^~305~^46.^0^^~4~^~RA~^^^^^^^^^^~12/01/2008~
-~11657~^~306~^296.^0^^~4~^~RA~^^^^^^^^^^~12/01/2008~
-~11657~^~307~^302.^0^^~4~^~RA~^^^^^^^^^^~12/01/2008~
-~11657~^~318~^27.^0^^~4~^~NC~^^^^^^^^^^~12/01/2008~
-~11657~^~319~^7.^0^^~4~^~RA~^^^^^^^^^^~12/01/2008~
-~11657~^~320~^7.^0^^~4~^~NC~^^^^^^^^^^~12/01/2008~
-~11657~^~321~^2.^0^^~4~^~RA~^^^^^^^^^^~12/01/2008~
-~11657~^~322~^0.^0^^~4~^~RA~^^^^^^^^^^~09/01/2004~
-~11657~^~324~^8.^0^^~4~^~RA~^^^^^^^^^^~12/01/2008~
-~11657~^~334~^0.^0^^~4~^~RA~^^^^^^^^^^~09/01/2004~
-~11657~^~337~^0.^0^^~4~^~RA~^^^^^^^^^^~09/01/2004~
-~11657~^~338~^8.^0^^~4~^~RA~^^^^^^^^^^~09/01/2004~
-~11657~^~417~^8.^0^^~4~^~RA~^^^^^^^^^^~09/01/2004~
-~11657~^~431~^0.^0^^~4~^~RA~^^^^^^^^^^~09/01/2004~
-~11657~^~432~^8.^0^^~4~^~RA~^^^^^^^^^^~09/01/2004~
-~11657~^~435~^8.^0^^~4~^~NC~^^^^^^^^^^~12/01/2008~
-~11657~^~601~^2.^0^^~4~^~RA~^^^^^^^^^^~09/01/2004~
-~11657~^~636~^0.^0^^~4~^~RA~^^^^^^^^^^~09/01/2004~
-~11658~^~208~^172.^0^^~4~^~NC~^^^^^^^^^^~06/01/2014~
-~11658~^~262~^0.^0^^~4~^~RA~^^^^^^^^^^~09/01/2004~
-~11658~^~263~^0.^0^^~4~^~RA~^^^^^^^^^^~09/01/2004~
-~11658~^~268~^719.^0^^~4~^~NC~^^^^^^^^^^~06/01/2014~
-~11658~^~301~^165.^0^^~4~^~RA~^^^^^^^^^^~01/01/2009~
-~11658~^~304~^30.^0^^~4~^~RA~^^^^^^^^^^~01/01/2009~
-~11658~^~305~^139.^0^^~4~^~RA~^^^^^^^^^^~01/01/2009~
-~11658~^~306~^231.^0^^~4~^~RA~^^^^^^^^^^~01/01/2009~
-~11658~^~307~^566.^0^^~4~^~RA~^^^^^^^^^^~01/01/2009~
-~11658~^~318~^2891.^0^^~4~^~NC~^^^^^^^^^^~05/01/2009~
-~11658~^~319~^120.^0^^~4~^~RA~^^^^^^^^^^~01/01/2009~
-~11658~^~320~^244.^0^^~4~^~NC~^^^^^^^^^^~05/01/2009~
-~11658~^~321~^1493.^0^^~4~^~RA~^^^^^^^^^^~01/01/2009~
-~11658~^~322~^3.^0^^~4~^~RA~^^^^^^^^^^~09/01/2004~
-~11658~^~324~^31.^0^^~4~^~RA~^^^^^^^^^^~02/01/2009~
-~11658~^~334~^2.^0^^~4~^~RA~^^^^^^^^^^~09/01/2004~
-~11658~^~337~^0.^0^^~4~^~RA~^^^^^^^^^^~09/01/2004~
-~11658~^~338~^3249.^0^^~4~^~RA~^^^^^^^^^^~09/01/2004~
-~11658~^~417~^73.^0^^~4~^~RA~^^^^^^^^^^~09/01/2004~
-~11658~^~431~^6.^0^^~4~^~RA~^^^^^^^^^^~09/01/2004~
-~11658~^~432~^67.^0^^~4~^~RA~^^^^^^^^^^~09/01/2004~
-~11658~^~435~^77.^0^^~4~^~NC~^^^^^^^^^^~05/01/2009~
-~11658~^~601~^118.^0^^~4~^~RA~^^^^^^^^^^~09/01/2004~
-~11659~^~208~^164.^0^^~4~^~RC~^^^^^^^^^^~06/01/2012~
-~11659~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2012~
-~11659~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2012~
-~11659~^~268~^686.^0^^~4~^~RC~^^^^^^^^^^~06/01/2012~
-~11659~^~301~^26.^0^^~4~^~RC~^^^^^^^^^^~06/01/2012~
-~11659~^~304~^13.^0^^~4~^~RC~^^^^^^^^^^~06/01/2012~
-~11659~^~305~^25.^0^^~4~^~RC~^^^^^^^^^^~06/01/2012~
-~11659~^~306~^178.^0^^~4~^~RC~^^^^^^^^^^~06/01/2012~
-~11659~^~307~^119.^0^^~4~^~RC~^^^^^^^^^^~06/01/2012~
-~11659~^~318~^6524.^0^^~4~^~NC~^^^^^^^^^^~06/01/2012~
-~11659~^~319~^28.^0^^~4~^~RC~^^^^^^^^^^~06/01/2012~
-~11659~^~320~^349.^0^^~4~^~NC~^^^^^^^^^^~06/01/2012~
-~11659~^~321~^3858.^0^^~4~^~RC~^^^^^^^^^^~06/01/2012~
-~11659~^~322~^0.^0^^~4~^~RC~^^^^^^^^^^~06/01/2012~
-~11659~^~324~^2.^0^^~4~^~RC~^^^^^^^^^^~06/01/2012~
-~11659~^~334~^0.^0^^~4~^~RC~^^^^^^^^^^~06/01/2012~
-~11659~^~337~^0.^0^^~4~^~RC~^^^^^^^^^^~06/01/2012~
-~11659~^~338~^0.^0^^~4~^~RC~^^^^^^^^^^~06/01/2012~
-~11659~^~417~^6.^0^^~4~^~RC~^^^^^^^^^^~06/01/2012~
-~11659~^~431~^0.^0^^~4~^~RC~^^^^^^^^^^~06/01/2012~
-~11659~^~432~^6.^0^^~4~^~RC~^^^^^^^^^^~06/01/2012~
-~11659~^~435~^6.^0^^~4~^~NC~^^^^^^^^^^~06/01/2012~
-~11659~^~601~^9.^0^^~4~^~RC~^^^^^^^^^^~06/01/2012~
-~11659~^~636~^0.^0^^~4~^~RC~^^^^^^^^^^~06/01/2012~
-~11659~^~638~^0.^0^^~4~^~RC~^^^^^^^^^^~06/01/2012~
-~11659~^~639~^0.^0^^~4~^~RC~^^^^^^^^^^~06/01/2012~
-~11659~^~641~^0.^0^^~4~^~RC~^^^^^^^^^^~06/01/2012~
-~11660~^~208~^79.^0^^~4~^~NC~^^^^^^^^^^~08/01/1984~
-~11660~^~268~^331.^0^^~4~^^^^^^^^^^^
-~11660~^~301~^26.^0^^~1~^^^^^^^^^^^~08/01/1984~
-~11660~^~304~^15.^0^^~1~^^^^^^^^^^^~08/01/1984~
-~11660~^~305~^38.^0^^~1~^^^^^^^^^^^~08/01/1984~
-~11660~^~306~^247.^0^^~1~^^^^^^^^^^^~08/01/1984~
-~11660~^~307~^455.^0^^~1~^^^^^^^^^^^~08/01/1984~
-~11660~^~318~^666.^0^^~1~^^^^^^^^^^^~08/01/1984~
-~11660~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2002~
-~11660~^~320~^33.^0^^~1~^^^^^^^^^^^~06/01/2002~
-~11660~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~
-~11660~^~417~^11.^0^^~1~^^^^^^^^^^^~08/01/1984~
-~11660~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~
-~11660~^~432~^11.^0^^~1~^^^^^^^^^^^~12/01/1984~
-~11660~^~435~^11.^0^^~4~^~NC~^^^^^^^^^^~01/01/2001~
-~11660~^~601~^0.^0^^~7~^~Z~^^^^^^^^^^~08/01/1984~
-~11660~^~636~^14.^0^^~1~^^^^^^^^^^^~08/01/1984~
-~11663~^~208~^306.^0^^~4~^~NC~^^^^^^^^^^~03/01/2007~
-~11663~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~
-~11663~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~
-~11663~^~268~^1282.^0^^~4~^~NC~^^^^^^^^^^~03/01/2007~
-~11663~^~301~^625.^2^^~1~^^^^^^^^^^^~08/01/1984~
-~11663~^~304~^770.^0^^~1~^^^^^^^^^^^~08/01/1984~
-~11663~^~305~^52.^2^^~1~^^^^^^^^^^^~08/01/1984~
-~11663~^~306~^1125.^0^^~1~^^^^^^^^^^^~08/01/1984~
-~11663~^~307~^102.^3^71.^~1~^^^^^^^^^^^~08/01/1984~
-~11663~^~318~^0.^0^^~1~^~AS~^^^^^^^^^^~03/01/2007~
-~11663~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2002~
-~11663~^~320~^0.^0^^~1~^~AS~^^^^^^^^^^~03/01/2007~
-~11663~^~321~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~
-~11663~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~
-~11663~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~
-~11663~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~
-~11663~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~
-~11663~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~
-~11663~^~417~^580.^0^^~4~^^^^^^^^^^^~08/01/1984~
-~11663~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~
-~11663~^~432~^580.^0^^~4~^^^^^^^^^^^~03/01/2007~
-~11663~^~435~^580.^0^^~4~^~NC~^^^^^^^^^^~03/01/2007~
-~11663~^~601~^0.^0^^~7~^~Z~^^^^^^^^^^~08/01/1984~
-~11666~^~208~^26.^0^^~4~^~NC~^^^^^^^^^^~08/01/1984~
-~11666~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~11/01/2011~
-~11666~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~11/01/2011~
-~11666~^~268~^109.^0^^~4~^^^^^^^^^^^
-~11666~^~301~^12.^0^^~4~^^^^^^^^^^^~08/01/1984~
-~11666~^~304~^19.^0^^~4~^^^^^^^^^^^~08/01/1984~
-~11666~^~305~^11.^0^^~1~^^^^^^^^^^^~08/01/1984~
-~11666~^~306~^127.^2^^~1~^^^^^^^^^^^~08/01/1984~
-~11666~^~307~^98.^2^^~1~^^^^^^^^^^^~08/01/1984~
-~11666~^~318~^56.^0^^~4~^~NC~^^^^^^^^^^~08/01/1984~
-~11666~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2002~
-~11666~^~320~^3.^0^^~4~^~NC~^^^^^^^^^^~06/01/2002~
-~11666~^~321~^33.^0^^~4~^~BFSN~^~11667~^^^^^^^^^~11/01/2011~
-~11666~^~322~^0.^0^^~4~^~BFSN~^~11667~^^^^^^^^^~11/01/2011~
-~11666~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~
-~11666~^~334~^0.^0^^~4~^~BFSN~^~11667~^^^^^^^^^~11/01/2011~
-~11666~^~337~^0.^0^^~4~^~BFSN~^~11667~^^^^^^^^^~11/01/2011~
-~11666~^~338~^0.^0^^~4~^~BFSN~^~11667~^^^^^^^^^~11/01/2011~
-~11666~^~417~^9.^0^^~4~^^^^^^^^^^^~08/01/1984~
-~11666~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~
-~11666~^~432~^9.^0^^~4~^^^^^^^^^^^~12/01/1984~
-~11666~^~435~^9.^0^^~4~^~NC~^^^^^^^^^^~01/01/2001~
-~11666~^~601~^0.^0^^~7~^~Z~^^^^^^^^^^~08/01/1984~
-~11667~^~208~^290.^0^^~4~^~NC~^^^^^^^^^^~03/01/2007~
-~11667~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~
-~11667~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~
-~11667~^~268~^1213.^0^^~4~^^^^^^^^^^^~03/01/2007~
-~11667~^~301~^120.^0^^~4~^^^^^^^^^^^~08/01/1984~
-~11667~^~304~^195.^2^^~1~^^^^^^^^^^^~08/01/1984~
-~11667~^~305~^118.^0^^~1~^^^^^^^^^^^~08/01/1984~
-~11667~^~306~^1363.^0^^~1~^^^^^^^^^^^~08/01/1984~
-~11667~^~307~^1048.^0^^~1~^^^^^^^^^^^~08/01/1984~
-~11667~^~318~^570.^0^^~4~^~NC~^^^^^^^^^^~08/01/2007~
-~11667~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2002~
-~11667~^~320~^29.^0^^~4~^~NC~^^^^^^^^^^~08/01/2007~
-~11667~^~321~^342.^0^^~4~^~O~^^^^^^^^^^~02/01/2003~
-~11667~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~
-~11667~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~
-~11667~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~
-~11667~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~
-~11667~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~
-~11667~^~417~^94.^0^^~4~^^^^^^^^^^^~08/01/1984~
-~11667~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~
-~11667~^~432~^94.^0^^~4~^^^^^^^^^^^~03/01/2007~
-~11667~^~435~^94.^0^^~4~^~NC~^^^^^^^^^^~08/01/2007~
-~11667~^~601~^0.^0^^~7~^~Z~^^^^^^^^^^~08/01/1984~
-~11669~^~208~^45.^0^^~4~^~NC~^^^^^^^^^^~03/01/2007~
-~11669~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~
-~11669~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~
-~11669~^~268~^188.^0^^~4~^^^^^^^^^^^~03/01/2007~
-~11669~^~301~^150.^2^^~1~^^^^^^^^^^^~08/01/1984~
-~11669~^~304~^107.^0^^~1~^^^^^^^^^^^~08/01/1984~
-~11669~^~305~^80.^0^^~1~^^^^^^^^^^^~08/01/1984~
-~11669~^~306~^50.^0^^~1~^^^^^^^^^^^~08/01/1984~
-~11669~^~307~^872.^2^^~1~^^^^^^^^^^^~08/01/1984~
-~11669~^~318~^360.^0^^~4~^~NC~^^^^^^^^^^~03/01/2007~
-~11669~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2002~
-~11669~^~320~^18.^0^^~4~^~NC~^^^^^^^^^^~03/01/2007~
-~11669~^~321~^216.^0^^~4~^~O~^^^^^^^^^^~02/01/2003~
-~11669~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~
-~11669~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~
-~11669~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~
-~11669~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~
-~11669~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~
-~11669~^~417~^196.^0^^~4~^^^^^^^^^^^~08/01/1984~
-~11669~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~
-~11669~^~432~^196.^0^^~4~^^^^^^^^^^^~03/01/2007~
-~11669~^~435~^196.^0^^~4~^~NC~^^^^^^^^^^~03/01/2007~
-~11669~^~601~^0.^0^^~7~^~Z~^^^^^^^^^^~08/01/1984~
-~11670~^~208~^40.^0^^~4~^~NC~^^^^^^^^^^~08/01/1984~
-~11670~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~11/01/2002~
-~11670~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~11/01/2002~
-~11670~^~268~^167.^0^^~4~^^^^^^^^^^^~03/01/2007~
-~11670~^~301~^18.^2^^~1~^^^^^^^^^^^~08/01/1984~
-~11670~^~304~^25.^2^^~1~^^^^^^^^^^^~08/01/1984~
-~11670~^~305~^46.^2^^~1~^^^^^^^^^^^~08/01/1984~
-~11670~^~306~^340.^2^^~1~^^^^^^^^^^^~08/01/1984~
-~11670~^~307~^7.^2^^~1~^^^^^^^^^^^~08/01/1984~
-~11670~^~318~^1179.^0^^~4~^~NC~^^^^^^^^^^~03/01/2007~
-~11670~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2002~
-~11670~^~320~^59.^0^^~4~^~NC~^^^^^^^^^^~03/01/2007~
-~11670~^~321~^671.^0^^~4~^~BFSN~^~11977~^^^^^^^^^~11/01/2002~
-~11670~^~322~^23.^0^^~4~^~BFSN~^~11977~^^^^^^^^^~11/01/2002~
-~11670~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~
-~11670~^~334~^50.^0^^~4~^~BFSN~^~11977~^^^^^^^^^~11/01/2002~
-~11670~^~337~^0.^0^^~4~^~BFSN~^~11977~^^^^^^^^^~11/01/2002~
-~11670~^~338~^725.^0^^~4~^~BFSN~^~11977~^^^^^^^^^~11/01/2002~
-~11670~^~417~^23.^3^2.^~1~^^^^^^^^^^^~08/01/1984~
-~11670~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~
-~11670~^~432~^23.^3^2.^~1~^^^^^^^^^^^~03/01/2007~
-~11670~^~435~^23.^0^^~4~^~NC~^^^^^^^^^^~03/01/2007~
-~11670~^~601~^0.^0^^~7~^~Z~^^^^^^^^^^~08/01/1984~
-~11671~^~208~^81.^0^^~4~^~NC~^^^^^^^^^^~08/01/1984~
-~11671~^~268~^339.^0^^~4~^^^^^^^^^^^
-~11671~^~301~^36.^0^^~1~^^^^^^^^^^^~08/01/1984~
-~11671~^~304~^18.^0^^~1~^^^^^^^^^^^~08/01/1984~
-~11671~^~305~^50.^0^^~1~^^^^^^^^^^^~08/01/1984~
-~11671~^~306~^266.^0^^~1~^^^^^^^^^^^~08/01/1984~
-~11671~^~307~^217.^0^^~1~^^^^^^^^^^^~08/01/1984~
-~11671~^~318~^481.^0^^~1~^^^^^^^^^^^~08/01/1984~
-~11671~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~
-~11671~^~417~^8.^0^^~1~^^^^^^^^^^^~08/01/1984~
-~11671~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~
-~11671~^~432~^8.^0^^~1~^^^^^^^^^^^~12/01/1984~
-~11671~^~435~^8.^0^^~4~^~NC~^^^^^^^^^^~01/01/2001~
-~11671~^~601~^4.^0^^~1~^^^^^^^^^^^~08/01/1984~
-~11672~^~208~^268.^0^^~4~^~RA~^^^^^^^^^^~01/01/2009~
-~11672~^~262~^0.^0^^~4~^~RA~^^^^^^^^^^~01/01/2009~
-~11672~^~263~^0.^0^^~4~^~RA~^^^^^^^^^^~01/01/2009~
-~11672~^~268~^1123.^0^^~4~^~RA~^^^^^^^^^^~01/01/2009~
-~11672~^~301~^32.^0^^~4~^~RA~^^^^^^^^^^~01/01/2009~
-~11672~^~304~^36.^0^^~4~^~RA~^^^^^^^^^^~01/01/2009~
-~11672~^~305~^128.^0^^~4~^~RA~^^^^^^^^^^~01/01/2009~
-~11672~^~306~^622.^0^^~4~^~RA~^^^^^^^^^^~01/01/2009~
-~11672~^~307~^764.^0^^~4~^~RA~^^^^^^^^^^~01/01/2009~
-~11672~^~318~^113.^0^^~4~^~NC~^^^^^^^^^^~01/01/2009~
-~11672~^~319~^31.^0^^~4~^~RA~^^^^^^^^^^~02/01/2005~
-~11672~^~320~^32.^0^^~4~^~NC~^^^^^^^^^^~01/01/2009~
-~11672~^~321~^4.^0^^~4~^~RA~^^^^^^^^^^~01/01/2009~
-~11672~^~322~^0.^0^^~4~^~RA~^^^^^^^^^^~02/01/2005~
-~11672~^~324~^11.^0^^~4~^~RA~^^^^^^^^^^~01/01/2009~
-~11672~^~334~^2.^0^^~4~^~RA~^^^^^^^^^^~02/01/2005~
-~11672~^~337~^0.^0^^~4~^~RA~^^^^^^^^^^~01/01/2009~
-~11672~^~338~^87.^0^^~4~^~RA~^^^^^^^^^^~01/01/2009~
-~11672~^~417~^41.^0^^~4~^~RA~^^^^^^^^^^~01/01/2009~
-~11672~^~431~^6.^0^^~4~^~RA~^^^^^^^^^^~01/01/2009~
-~11672~^~432~^35.^0^^~4~^~RA~^^^^^^^^^^~01/01/2009~
-~11672~^~435~^45.^0^^~4~^~NC~^^^^^^^^^^~01/01/2009~
-~11672~^~601~^95.^0^^~4~^~RA~^^^^^^^^^^~02/01/2005~
-~11672~^~636~^9.^0^^~4~^~RA~^^^^^^^^^^~02/01/2005~
-~11674~^~208~^93.^0^^~4~^~NC~^^^^^^^^^^~08/01/2010~
-~11674~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2004~
-~11674~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2004~
-~11674~^~268~^390.^0^^~4~^~NC~^^^^^^^^^^~08/01/2010~
-~11674~^~301~^15.^46^0.^~6~^~JA~^^^4^6.^20.^3^14.^15.^~2~^~06/01/2002~
-~11674~^~304~^28.^47^0.^~6~^~JA~^^^4^19.^31.^3^27.^29.^~2~^~06/01/2002~
-~11674~^~305~^70.^46^0.^~6~^~JA~^^^4^38.^80.^3^68.^71.^~2~^~06/01/2002~
-~11674~^~306~^535.^47^3.^~6~^~JA~^^^4^391.^640.^3^524.^545.^~2~^~06/01/2002~
-~11674~^~307~^10.^47^0.^~6~^~JA~^^^4^0.^14.^3^10.^10.^~2~^~06/01/2002~
-~11674~^~318~^10.^0^^~4~^~NC~^^^^^^^^^^~03/01/2007~
-~11674~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2002~
-~11674~^~320~^1.^0^^~4~^~NC~^^^^^^^^^^~03/01/2007~
-~11674~^~321~^6.^21^^~11~^~JO~^^^0^6.^6.^^^^~2~^~05/01/2002~
-~11674~^~322~^0.^21^^~11~^~JO~^^^0^0.^0.^^^^~2~^~05/01/2002~
-~11674~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~
-~11674~^~334~^0.^21^^~11~^~JO~^^^0^0.^0.^^^^~2~^~05/01/2002~
-~11674~^~337~^0.^21^^~11~^~JO~^^^0^0.^0.^^^^~2~^~05/01/2002~
-~11674~^~338~^30.^12^^~11~^~JO~^^^0^30.^31.^^^^~2~^~08/01/2010~
-~11674~^~417~^28.^21^^~1~^~A~^^^0^26.^38.^^^^~2~^~06/01/2002~
-~11674~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2004~
-~11674~^~432~^28.^21^^~1~^~A~^^^0^26.^38.^^^^^~08/01/2010~
-~11674~^~435~^28.^0^^~4~^~NC~^^^^^^^^^^~08/01/2010~
-~11674~^~601~^0.^0^^~7~^~Z~^^^^^^^^^^~07/01/2001~
-~11675~^~208~^105.^0^^~4~^~NC~^^^^^^^^^^~08/01/2004~
-~11675~^~268~^441.^0^^~4~^~NC~^^^^^^^^^^~08/01/2004~
-~11675~^~301~^11.^10^3.^~1~^^^^^^^^^^^~08/01/1984~
-~11675~^~304~^27.^10^1.^~1~^^^^^^^^^^^~08/01/1984~
-~11675~^~305~^105.^10^44.^~1~^^^^^^^^^^^~08/01/1984~
-~11675~^~306~^447.^10^19.^~1~^^^^^^^^^^^~08/01/1984~
-~11675~^~307~^8.^10^1.^~1~^^^^^^^^^^^~08/01/1984~
-~11675~^~318~^0.^0^^~1~^~AS~^^^^^^^^^^~08/01/2004~
-~11675~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2002~
-~11675~^~320~^0.^0^^~1~^~AS~^^^^^^^^^^~08/01/2004~
-~11675~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~
-~11675~^~417~^12.^10^0.^~1~^^^^^^^^^^^~08/01/1984~
-~11675~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~
-~11675~^~432~^12.^10^0.^~1~^^^^^^^^^^^~12/01/1984~
-~11675~^~435~^12.^0^^~4~^~NC~^^^^^^^^^^~08/01/2004~
-~11675~^~601~^0.^0^^~7~^~Z~^^^^^^^^^^~08/01/1984~
-~11676~^~208~^43.^0^^~4~^~NC~^^^^^^^^^^~08/01/1984~
-~11676~^~268~^180.^0^^~4~^^^^^^^^^^^
-~11676~^~301~^51.^3^9.^~1~^^^^^^^^^^^~08/01/1984~
-~11676~^~304~^44.^3^6.^~1~^^^^^^^^^^^~08/01/1984~
-~11676~^~305~^113.^3^10.^~1~^^^^^^^^^^^~08/01/1984~
-~11676~^~306~^86.^3^16.^~1~^^^^^^^^^^^~08/01/1984~
-~11676~^~307~^6.^3^1.^~1~^^^^^^^^^^^~08/01/1984~
-~11676~^~318~^391.^3^73.^~1~^^^^^^^^^^^~08/01/1984~
-~11676~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2002~
-~11676~^~320~^20.^3^3.^~1~^^^^^^^^^^^~06/01/2002~
-~11676~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~
-~11676~^~417~^95.^3^11.^~1~^^^^^^^^^^^~08/01/1984~
-~11676~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~
-~11676~^~432~^95.^3^11.^~1~^^^^^^^^^^^~12/01/1984~
-~11676~^~435~^95.^0^^~4~^~NC~^^^^^^^^^^~01/01/2001~
-~11676~^~601~^0.^0^^~7~^~Z~^^^^^^^^^^~08/01/1984~
-~11677~^~208~^72.^0^^~4~^~NC~^^^^^^^^^^~05/01/2005~
-~11677~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~08/01/2011~
-~11677~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~08/01/2011~
-~11677~^~268~^301.^0^^~4~^^^^^^^^^^^~08/01/2011~
-~11677~^~301~^37.^0^^~1~^^^^^^^^^^^~08/01/1984~
-~11677~^~304~^21.^0^^~4~^^^^^^^^^^^~08/01/1984~
-~11677~^~305~^60.^0^^~1~^^^^^^^^^^^~08/01/1984~
-~11677~^~306~^334.^0^^~1~^^^^^^^^^^^~08/01/1984~
-~11677~^~307~^12.^0^^~1~^^^^^^^^^^^~08/01/1984~
-~11677~^~318~^4.^0^^~4~^~NC~^^^^^^^^^^~08/01/2011~
-~11677~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2002~
-~11677~^~320~^0.^0^^~4~^~NC~^^^^^^^^^^~08/01/2011~
-~11677~^~321~^3.^0^^~4~^~BFSN~^~11282~^^^^^^^^^~08/01/2011~
-~11677~^~322~^0.^0^^~4~^~BFSN~^~11282~^^^^^^^^^~08/01/2011~
-~11677~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~
-~11677~^~334~^0.^0^^~4~^~BFSN~^~11282~^^^^^^^^^~08/01/2011~
-~11677~^~337~^0.^0^^~4~^~BFSN~^~11282~^^^^^^^^^~08/01/2011~
-~11677~^~338~^8.^0^^~4~^~BFSN~^~11282~^^^^^^^^^~08/01/2011~
-~11677~^~417~^34.^0^^~4~^^^^^^^^^^^~08/01/1984~
-~11677~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~
-~11677~^~432~^34.^0^^~4~^^^^^^^^^^^~12/01/1984~
-~11677~^~435~^34.^0^^~4~^~NC~^^^^^^^^^^~06/01/2005~
-~11677~^~601~^0.^0^^~7~^~Z~^^^^^^^^^^~08/01/1984~
-~11677~^~636~^5.^0^^~1~^^^^^^^^^^^~08/01/1984~
-~11683~^~208~^341.^0^^~4~^~NC~^^^^^^^^^^~08/01/2007~
-~11683~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~11/01/2002~
-~11683~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~11/01/2002~
-~11683~^~268~^1427.^0^^~4~^^^^^^^^^^^~08/01/2007~
-~11683~^~301~^212.^1^^~1~^^^^^^^^^^^~08/01/2007~
-~11683~^~304~^118.^1^^~1~^^^^^^^^^^^~08/01/2007~
-~11683~^~305~^346.^1^^~1~^^^^^^^^^^^~08/01/2007~
-~11683~^~306~^2540.^1^^~1~^^^^^^^^^^^~08/01/2007~
-~11683~^~307~^275.^1^^~1~^^^^^^^^^^^~08/01/2007~
-~11683~^~318~^68466.^0^^~4~^~NC~^^^^^^^^^^~08/01/2007~
-~11683~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~11/01/2002~
-~11683~^~320~^3423.^0^^~4~^~NC~^^^^^^^^^^~08/01/2007~
-~11683~^~321~^33954.^0^^~4~^~BFSY~^~11124~^^^^^^^^^~02/01/2007~
-~11683~^~322~^14251.^0^^~4~^~BFSY~^~11124~^^^^^^^^^~02/01/2007~
-~11683~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~
-~11683~^~334~^0.^0^^~4~^~BFSY~^~11124~^^^^^^^^^~08/01/2007~
-~11683~^~337~^3.^0^^~4~^~BFSY~^~11124~^^^^^^^^^~02/01/2007~
-~11683~^~338~^1051.^0^^~4~^~BFSY~^~11124~^^^^^^^^^~02/01/2007~
-~11683~^~417~^55.^1^^~1~^^^^^^^^^^^~08/01/2007~
-~11683~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~11/01/2002~
-~11683~^~432~^55.^1^^~1~^^^^^^^^^^^~08/01/2007~
-~11683~^~435~^55.^0^^~4~^~NC~^^^^^^^^^^~08/01/2007~
-~11683~^~601~^0.^0^^~7~^~Z~^^^^^^^^^^~08/01/2007~
-~11683~^~636~^94.^0^^~1~^^^^^^^^^^^~08/01/2007~
-~11693~^~208~^32.^0^^~4~^~NC~^^^^^^^^^^~05/01/1996~
-~11693~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2011~
-~11693~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2011~
-~11693~^~268~^134.^0^^~4~^^^^^^^^^^^~04/01/2013~
-~11693~^~301~^34.^31^3.^~1~^~A~^^^^^^^^^^~05/01/1996~
-~11693~^~304~^20.^0^^~4~^~BFSN~^^^^^^^^^^~05/01/1996~
-~11693~^~305~^32.^0^^~4~^~BFSN~^^^^^^^^^^~05/01/1996~
-~11693~^~306~^293.^12^21.^~1~^~A~^^^^^^^^^^~05/01/1996~
-~11693~^~307~^186.^6^24.^~8~^~LC~^^^^^^^^^^~04/01/2013~
-~11693~^~318~^215.^0^^~4~^~NC~^^^^^^^^^^~06/01/2011~
-~11693~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2002~
-~11693~^~320~^11.^0^^~4~^~NC~^^^^^^^^^^~06/01/2011~
-~11693~^~321~^129.^0^^~4~^~BFSN~^~11531~^^^^^^^^^~06/01/2011~
-~11693~^~322~^0.^0^^~4~^~BFSN~^~11531~^^^^^^^^^~06/01/2011~
-~11693~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~
-~11693~^~334~^0.^0^^~4~^~BFSN~^~11531~^^^^^^^^^~06/01/2011~
-~11693~^~337~^5106.^0^^~4~^~BFSN~^~11531~^^^^^^^^^~06/01/2011~
-~11693~^~338~^158.^0^^~4~^~BFSN~^~11531~^^^^^^^^^~06/01/2011~
-~11693~^~417~^13.^0^^~4~^~BFSN~^^^^^^^^^^~05/01/1996~
-~11693~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~
-~11693~^~432~^13.^0^^~4~^~BFSN~^^^^^^^^^^~05/01/1996~
-~11693~^~435~^13.^0^^~4~^~NC~^^^^^^^^^^~01/01/2001~
-~11693~^~601~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/1996~
-~11695~^~208~^16.^0^^~4~^~NC~^^^^^^^^^^~11/01/1996~
-~11695~^~268~^67.^0^^~4~^^^^^^^^^^^
-~11695~^~301~^5.^2^^~1~^~A~^^^^^^^^^^~11/01/1996~
-~11695~^~304~^8.^2^^~1~^~A~^^^^^^^^^^~11/01/1996~
-~11695~^~305~^29.^2^^~1~^~A~^^^^^^^^^^~11/01/1996~
-~11695~^~306~^212.^2^^~1~^~A~^^^^^^^^^^~11/01/1996~
-~11695~^~307~^42.^2^^~1~^~A~^^^^^^^^^^~11/01/1996~
-~11695~^~318~^1496.^2^^~1~^~A~^^^^^^^^^^~11/01/1996~
-~11695~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2002~
-~11695~^~320~^75.^2^^~1~^~A~^^^^^^^^^^~06/01/2002~
-~11695~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~
-~11695~^~417~^29.^2^^~1~^~A~^^^^^^^^^^~11/01/1996~
-~11695~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~
-~11695~^~432~^29.^2^^~1~^~A~^^^^^^^^^^~11/01/1996~
-~11695~^~435~^29.^0^^~4~^~NC~^^^^^^^^^^~01/01/2001~
-~11695~^~601~^0.^0^^~7~^~Z~^^^^^^^^^^~11/01/1996~
-~11695~^~636~^4.^0^^~4~^~BFFN~^^^^^^^^^^~11/01/1996~
-~11696~^~208~^15.^0^^~4~^~NC~^^^^^^^^^^~12/01/1996~
-~11696~^~268~^63.^0^^~4~^^^^^^^^^^^
-~11696~^~301~^11.^2^^~1~^~A~^^^^^^^^^^~12/01/1996~
-~11696~^~304~^12.^2^^~1~^~A~^^^^^^^^^^~12/01/1996~
-~11696~^~305~^36.^2^^~1~^~A~^^^^^^^^^^~12/01/1996~
-~11696~^~306~^258.^2^^~1~^~A~^^^^^^^^^^~12/01/1996~
-~11696~^~307~^23.^2^^~1~^~A~^^^^^^^^^^~12/01/1996~
-~11696~^~318~^0.^2^^~1~^~A~^^^^^^^^^^~12/01/1996~
-~11696~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2002~
-~11696~^~320~^0.^2^^~1~^~A~^^^^^^^^^^~06/01/2002~
-~11696~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~
-~11696~^~417~^30.^2^^~1~^~A~^^^^^^^^^^~12/01/1996~
-~11696~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~
-~11696~^~432~^30.^2^^~1~^~A~^^^^^^^^^^~12/01/1996~
-~11696~^~435~^30.^0^^~4~^~NC~^^^^^^^^^^~01/01/2001~
-~11696~^~601~^0.^0^^~7~^~Z~^^^^^^^^^^~12/01/1996~
-~11696~^~636~^6.^0^^~4~^~BFFN~^^^^^^^^^^~12/01/1996~
-~11697~^~208~^65.^0^^~4~^~NC~^^^^^^^^^^~06/01/2003~
-~11697~^~268~^271.^0^^~4~^~NC~^^^^^^^^^^~06/01/2003~
-~11697~^~301~^6.^2^^~1~^~A~^^^^^^^^^^~12/01/1996~
-~11697~^~304~^25.^2^^~1~^~A~^^^^^^^^^^~12/01/1996~
-~11697~^~305~^98.^2^^~1~^~A~^^^^^^^^^^~12/01/1996~
-~11697~^~306~^454.^2^^~1~^~A~^^^^^^^^^^~12/01/1996~
-~11697~^~307~^26.^2^^~1~^~A~^^^^^^^^^^~12/01/1996~
-~11697~^~318~^19.^0^^~1~^~AS~^^^^^^^^^^~06/01/2003~
-~11697~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2002~
-~11697~^~320~^1.^0^^~1~^~AS~^^^^^^^^^^~06/01/2003~
-~11697~^~321~^11.^2^^~1~^~A~^^^^^^^^^^~06/01/2003~
-~11697~^~322~^0.^2^^~1~^~A~^^^^^^^^^^~06/01/2003~
-~11697~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~
-~11697~^~334~^0.^2^^~1~^~A~^^^^^^^^^^~06/01/2003~
-~11697~^~417~^338.^2^^~1~^~A~^^^^^^^^^^~12/01/1996~
-~11697~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~
-~11697~^~432~^338.^2^^~1~^~A~^^^^^^^^^^~06/01/2003~
-~11697~^~435~^338.^0^^~4~^~NC~^^^^^^^^^^~06/01/2003~
-~11697~^~601~^0.^0^^~7~^~Z~^^^^^^^^^^~12/01/1996~
-~11698~^~208~^24.^0^^~4~^~NC~^^^^^^^^^^~12/01/1996~
-~11698~^~268~^100.^0^^~4~^^^^^^^^^^^
-~11698~^~301~^117.^2^^~1~^~A~^^^^^^^^^^~12/01/1996~
-~11698~^~304~^32.^2^^~1~^~A~^^^^^^^^^^~12/01/1996~
-~11698~^~305~^54.^2^^~1~^~A~^^^^^^^^^^~12/01/1996~
-~11698~^~306~^567.^2^^~1~^~A~^^^^^^^^^^~12/01/1996~
-~11698~^~307~^118.^2^^~1~^~A~^^^^^^^^^^~12/01/1996~
-~11698~^~318~^1870.^2^^~1~^~A~^^^^^^^^^^~12/01/1996~
-~11698~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2002~
-~11698~^~320~^94.^2^^~1~^~A~^^^^^^^^^^~06/01/2002~
-~11698~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~
-~11698~^~417~^177.^2^^~1~^~A~^^^^^^^^^^~12/01/1996~
-~11698~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~
-~11698~^~432~^177.^2^^~1~^~A~^^^^^^^^^^~12/01/1996~
-~11698~^~435~^177.^0^^~4~^~NC~^^^^^^^^^^~01/01/2001~
-~11698~^~601~^0.^0^^~7~^~Z~^^^^^^^^^^~12/01/1996~
-~11700~^~208~^21.^0^^~4~^~NC~^^^^^^^^^^~08/01/1984~
-~11700~^~268~^88.^0^^~4~^^^^^^^^^^^
-~11700~^~301~^209.^0^^~1~^^^^^^^^^^^~08/01/1984~
-~11700~^~304~^55.^1^^~1~^^^^^^^^^^^~08/01/1984~
-~11700~^~305~^72.^1^^~1~^^^^^^^^^^^~08/01/1984~
-~11700~^~306~^641.^1^^~1~^^^^^^^^^^^~08/01/1984~
-~11700~^~307~^257.^0^^~4~^^^^^^^^^^^~08/01/1984~
-~11700~^~318~^2770.^5^1140.^~1~^^^^^^^^^^^~08/01/1984~
-~11700~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2002~
-~11700~^~320~^139.^5^57.^~1~^^^^^^^^^^^~06/01/2002~
-~11700~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~
-~11700~^~417~^57.^0^^~4~^^^^^^^^^^^~08/01/1984~
-~11700~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~
-~11700~^~432~^57.^0^^~4~^^^^^^^^^^^~12/01/1984~
-~11700~^~435~^57.^0^^~4~^~NC~^^^^^^^^^^~01/01/2001~
-~11700~^~601~^0.^0^^~7~^~Z~^^^^^^^^^^~08/01/1984~
-~11701~^~208~^78.^0^^~4~^~NC~^^^^^^^^^^~08/01/1984~
-~11701~^~268~^326.^0^^~4~^^^^^^^^^^^
-~11701~^~301~^7.^1^^~1~^^^^^^^^^^^~08/01/1984~
-~11701~^~304~^49.^1^^~1~^^^^^^^^^^^~08/01/1984~
-~11701~^~305~^197.^1^^~1~^^^^^^^^^^^~08/01/1984~
-~11701~^~306~^881.^1^^~1~^^^^^^^^^^^~08/01/1984~
-~11701~^~307~^254.^0^^~4~^^^^^^^^^^^~08/01/1984~
-~11701~^~318~^0.^0^^~1~^^^^^^^^^^^~08/01/1984~
-~11701~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2002~
-~11701~^~320~^0.^0^^~1~^^^^^^^^^^^~06/01/2002~
-~11701~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~
-~11701~^~417~^9.^0^^~4~^^^^^^^^^^^~08/01/1984~
-~11701~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~
-~11701~^~432~^9.^0^^~4~^^^^^^^^^^^~12/01/1984~
-~11701~^~435~^9.^0^^~4~^~NC~^^^^^^^^^^~01/01/2001~
-~11701~^~601~^0.^0^^~7~^~Z~^^^^^^^^^^~08/01/1984~
-~11702~^~208~^51.^0^^~4~^~NC~^^^^^^^^^^~08/01/2011~
-~11702~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2003~
-~11702~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2003~
-~11702~^~268~^211.^0^^~4~^~NC~^^^^^^^^^^~08/01/2011~
-~11702~^~301~^21.^1^^~1~^~A~^^^^^^^^^^~01/01/2007~
-~11702~^~304~^42.^1^^~1~^~A~^^^^^^^^^^~01/01/2007~
-~11702~^~305~^73.^1^^~1~^~A~^^^^^^^^^^~01/01/2007~
-~11702~^~306~^286.^1^^~1~^~A~^^^^^^^^^^~01/01/2007~
-~11702~^~307~^296.^0^^~4~^~O~^^^^^^^^^^~08/01/2011~
-~11702~^~318~^13.^0^^~1~^~AS~^^^^^^^^^^~01/01/2007~
-~11702~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2002~
-~11702~^~320~^1.^0^^~1~^~AS~^^^^^^^^^^~01/01/2007~
-~11702~^~321~^8.^1^^~1~^~A~^^^^^^^^^^~01/01/2007~
-~11702~^~322~^0.^1^^~1~^~A~^^^^^^^^^~1~^~01/01/2003~
-~11702~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~
-~11702~^~334~^0.^1^^~1~^~A~^^^^^^^^^~1~^~01/01/2003~
-~11702~^~337~^0.^1^^~1~^~A~^^^^^^^^^~1~^~01/01/2003~
-~11702~^~338~^464.^1^^~1~^~A~^^^^^^^^^^~01/01/2003~
-~11702~^~417~^89.^1^^~1~^~A~^^^^^^^^^^~01/01/2007~
-~11702~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~
-~11702~^~432~^89.^1^^~1~^~A~^^^^^^^^^^~01/01/2007~
-~11702~^~435~^89.^0^^~4~^~NC~^^^^^^^^^^~01/01/2007~
-~11702~^~601~^0.^0^^~7~^~Z~^^^^^^^^^^~08/01/1984~
-~11703~^~208~^45.^0^^~4~^~NC~^^^^^^^^^^~01/01/2007~
-~11703~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~
-~11703~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~
-~11703~^~268~^188.^0^^~4~^^^^^^^^^^^~01/01/2007~
-~11703~^~301~^21.^0^^~1~^^^^^^^^^^^~08/01/1984~
-~11703~^~304~^31.^0^^~1~^^^^^^^^^^^~08/01/1984~
-~11703~^~305~^61.^0^^~1~^^^^^^^^^^^~08/01/1984~
-~11703~^~306~^264.^0^^~1~^^^^^^^^^^^~08/01/1984~
-~11703~^~307~^289.^0^^~4~^^^^^^^^^^^~08/01/1984~
-~11703~^~318~^11.^0^^~4~^~NC~^^^^^^^^^^~01/01/2007~
-~11703~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2002~
-~11703~^~320~^1.^0^^~4~^~NC~^^^^^^^^^^~01/01/2007~
-~11703~^~321~^7.^0^^~4~^~BFSN~^~11008~^^^^^^^^^~01/01/2007~
-~11703~^~322~^0.^0^^~4~^~BFSN~^~11008~^^^^^^^^^~02/01/2003~
-~11703~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~
-~11703~^~334~^0.^0^^~4~^~BFSN~^~11008~^^^^^^^^^~02/01/2003~
-~11703~^~337~^0.^0^^~4~^~BFSN~^~11008~^^^^^^^^^~02/01/2003~
-~11703~^~338~^394.^0^^~4~^~BFSN~^~11008~^^^^^^^^^~01/01/2007~
-~11703~^~417~^119.^0^^~1~^^^^^^^^^^^~08/01/1984~
-~11703~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~
-~11703~^~432~^119.^0^^~1~^^^^^^^^^^^~01/01/2007~
-~11703~^~435~^119.^0^^~4~^~NC~^^^^^^^^^^~01/01/2007~
-~11703~^~601~^0.^0^^~7~^~Z~^^^^^^^^^^~08/01/1984~
-~11705~^~208~^22.^0^^~4~^~NC~^^^^^^^^^^~03/01/2006~
-~11705~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2006~
-~11705~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2006~
-~11705~^~268~^94.^0^^~4~^~NC~^^^^^^^^^^~03/01/2006~
-~11705~^~301~^23.^4^0.^~1~^~A~^^^1^21.^25.^3^20.^25.^~2, 3~^~12/01/2002~
-~11705~^~304~^14.^4^0.^~1~^~A~^^^1^13.^15.^3^12.^15.^~2, 3~^~12/01/2002~
-~11705~^~305~^54.^4^2.^~1~^~A~^^^1^49.^62.^3^45.^62.^~2, 3~^~12/01/2002~
-~11705~^~306~^224.^4^7.^~1~^~A~^^^1^203.^237.^3^199.^247.^~2, 3~^~12/01/2002~
-~11705~^~307~^240.^0^^~4~^^^^^^^^^^^~08/01/1984~
-~11705~^~318~^1006.^0^^~1~^~AS~^^^^^^^^^^~03/01/2006~
-~11705~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2002~
-~11705~^~320~^50.^0^^~1~^~AS~^^^^^^^^^^~03/01/2006~
-~11705~^~321~^604.^4^60.^~1~^~A~^^^1^500.^771.^3^410.^796.^~2, 3~^~12/01/2002~
-~11705~^~322~^0.^4^0.^~1~^~A~^^^1^0.^0.^^^^~1, 2, 3~^~12/01/2002~
-~11705~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~
-~11705~^~334~^0.^4^0.^~1~^~A~^^^1^0.^0.^^^^~1, 2, 3~^~12/01/2002~
-~11705~^~337~^30.^4^2.^~1~^~A~^^^1^26.^36.^3^22.^36.^~2, 3~^~12/01/2002~
-~11705~^~338~^771.^4^78.^~1~^~A~^^^1^603.^977.^3^521.^1020.^~2, 3~^~03/01/2006~
-~11705~^~417~^149.^4^8.^~1~^~A~^^^1^136.^171.^3^123.^175.^~2, 3~^~12/01/2002~
-~11705~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~
-~11705~^~432~^149.^4^8.^~1~^~A~^^^1^136.^171.^3^123.^175.^^~03/01/2006~
-~11705~^~435~^149.^0^^~4~^~NC~^^^^^^^^^^~03/01/2006~
-~11705~^~601~^0.^0^^~7~^~Z~^^^^^^^^^^~08/01/1984~
-~11707~^~208~^15.^0^^~4~^~NC~^^^^^^^^^^~06/01/2005~
-~11707~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2005~
-~11707~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2005~
-~11707~^~268~^62.^0^^~4~^~NC~^^^^^^^^^^~06/01/2005~
-~11707~^~301~^15.^166^0.^~1~^~A~^^^^^^^^^^~04/01/1996~
-~11707~^~304~^9.^143^0.^~1~^^^^^^^^^^^~08/01/1984~
-~11707~^~305~^38.^153^0.^~1~^^^^^^^^^^^~08/01/1984~
-~11707~^~306~^172.^112^3.^~1~^~A~^^^^^^^^^^~04/01/1996~
-~11707~^~307~^26.^6^6.^~1~^~A~^^^^^^^^^^~04/01/1996~
-~11707~^~318~^776.^0^^~4~^~NC~^^^^^^^^^^~06/01/2005~
-~11707~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2002~
-~11707~^~320~^39.^0^^~4~^~NC~^^^^^^^^^^~06/01/2005~
-~11707~^~321~^465.^0^^~4~^~BFSN~^~11015~^^^^^^^^^~06/01/2005~
-~11707~^~322~^0.^0^^~4~^~BFSN~^~11015~^^^^^^^^^~06/01/2005~
-~11707~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~
-~11707~^~334~^0.^0^^~4~^~BFSN~^~11015~^^^^^^^^^~06/01/2005~
-~11707~^~337~^23.^0^^~4~^~BFSN~^~11015~^^^^^^^^^~06/01/2005~
-~11707~^~338~^595.^0^^~4~^~BFSN~^~11015~^^^^^^^^^~06/01/2005~
-~11707~^~417~^85.^3^10.^~1~^^^^^^^^^^^~08/01/1984~
-~11707~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~
-~11707~^~432~^85.^3^10.^~1~^^^^^^^^^^^~06/01/2005~
-~11707~^~435~^85.^0^^~4~^~NC~^^^^^^^^^^~06/01/2005~
-~11707~^~601~^0.^0^^~7~^~Z~^^^^^^^^^^~08/01/1984~
-~11709~^~208~^18.^0^^~4~^~NC~^^^^^^^^^^~12/01/2006~
-~11709~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~12/01/2002~
-~11709~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~12/01/2002~
-~11709~^~268~^74.^0^^~4~^~NC~^^^^^^^^^^~12/01/2006~
-~11709~^~301~^18.^38^0.^~6~^~JA~^^^7^9.^26.^37^16.^19.^~4~^~12/01/2002~
-~11709~^~304~^10.^38^0.^~6~^~JA~^^^7^3.^16.^37^9.^11.^~4~^~12/01/2002~
-~11709~^~305~^49.^38^1.^~6~^~JA~^^^7^24.^73.^37^45.^52.^~4~^~12/01/2002~
-~11709~^~306~^172.^38^7.^~6~^~JA~^^^7^69.^292.^37^156.^186.^~4~^~12/01/2002~
-~11709~^~307~^240.^0^^~4~^^^^^^^^^^^~08/01/1984~
-~11709~^~318~^806.^0^^~4~^~NC~^^^^^^^^^^~12/01/2006~
-~11709~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2002~
-~11709~^~320~^40.^0^^~4~^~NC~^^^^^^^^^^~12/01/2006~
-~11709~^~321~^483.^0^^~4~^~BFSN~^~11012~^^^^^^^^^~12/01/2002~
-~11709~^~322~^0.^0^^~4~^~BFSN~^~11012~^^^^^^^^^~12/01/2002~
-~11709~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~
-~11709~^~334~^0.^0^^~4~^~BFSN~^~11012~^^^^^^^^^~12/01/2002~
-~11709~^~337~^24.^0^^~4~^~BFSN~^~11012~^^^^^^^^^~12/01/2002~
-~11709~^~338~^618.^0^^~4~^~BFSN~^~11012~^^^^^^^^^~12/01/2002~
-~11709~^~417~^135.^6^25.^~1~^^^^^^^^^^^~08/01/1984~
-~11709~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~
-~11709~^~432~^135.^6^25.^~1~^^^^^^^^^^^~12/01/2006~
-~11709~^~435~^135.^0^^~4~^~NC~^^^^^^^^^^~12/01/2006~
-~11709~^~601~^0.^0^^~7~^~Z~^^^^^^^^^^~08/01/1984~
-~11710~^~208~^32.^0^^~4~^~NC~^^^^^^^^^^~03/01/2007~
-~11710~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2003~
-~11710~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2003~
-~11710~^~268~^136.^0^^~4~^~NC~^^^^^^^^^^~03/01/2007~
-~11710~^~301~^42.^0^^~1~^^^^^^^^^^^~08/01/1984~
-~11710~^~304~^94.^1^^~1~^^^^^^^^^^^~08/01/1984~
-~11710~^~305~^77.^1^^~1~^^^^^^^^^^^~08/01/1984~
-~11710~^~306~^602.^1^^~1~^^^^^^^^^^^~08/01/1984~
-~11710~^~307~^249.^0^^~4~^^^^^^^^^^^~08/01/1984~
-~11710~^~318~^2416.^0^^~4~^~NC~^^^^^^^^^^~03/01/2007~
-~11710~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2002~
-~11710~^~320~^121.^0^^~4~^~NC~^^^^^^^^^^~03/01/2007~
-~11710~^~321~^1450.^0^^~4~^~BFSN~^~11419~^^^^^^^^^~01/01/2003~
-~11710~^~322~^0.^0^^~4~^~BFSN~^~11419~^^^^^^^^^~01/01/2003~
-~11710~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~
-~11710~^~334~^0.^0^^~4~^~BFSN~^~11419~^^^^^^^^^~01/01/2003~
-~11710~^~337~^0.^0^^~4~^~BFSN~^~11419~^^^^^^^^^~01/01/2003~
-~11710~^~338~^2638.^0^^~4~^~BFSN~^~11419~^^^^^^^^^~01/01/2003~
-~11710~^~417~^88.^0^^~1~^^^^^^^^^^^~08/01/1984~
-~11710~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~
-~11710~^~432~^88.^0^^~1~^^^^^^^^^^^~03/01/2007~
-~11710~^~435~^88.^0^^~4~^~NC~^^^^^^^^^^~03/01/2007~
-~11710~^~601~^0.^0^^~7~^~Z~^^^^^^^^^^~08/01/1984~
-~11711~^~208~^19.^0^^~4~^~NC~^^^^^^^^^^~03/01/2007~
-~11711~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2003~
-~11711~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2003~
-~11711~^~268~^79.^0^^~4~^^^^^^^^^^^~03/01/2007~
-~11711~^~301~^9.^1^^~1~^^^^^^^^^^^~08/01/1984~
-~11711~^~304~^16.^1^^~1~^^^^^^^^^^^~08/01/1984~
-~11711~^~305~^36.^1^^~1~^^^^^^^^^^^~08/01/1984~
-~11711~^~306~^319.^1^^~1~^^^^^^^^^^^~08/01/1984~
-~11711~^~307~^242.^0^^~4~^^^^^^^^^^^~08/01/1984~
-~11711~^~318~^113.^0^^~4~^~NC~^^^^^^^^^^~05/01/2007~
-~11711~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2002~
-~11711~^~320~^6.^0^^~4~^~NC~^^^^^^^^^^~05/01/2007~
-~11711~^~321~^68.^0^^~4~^~O~^~11478~^^^^^^^^^~05/01/2007~
-~11711~^~322~^0.^0^^~4~^~BFSN~^~11478~^^^^^^^^^~03/01/2007~
-~11711~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~
-~11711~^~334~^0.^0^^~4~^~BFSN~^~11478~^^^^^^^^^~03/01/2007~
-~11711~^~337~^0.^0^^~4~^~BFSN~^~11478~^^^^^^^^^~03/01/2007~
-~11711~^~338~^1323.^0^^~4~^~BFSN~^~11478~^^^^^^^^^~01/01/2003~
-~11711~^~417~^51.^0^^~4~^^^^^^^^^^^~08/01/1984~
-~11711~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~
-~11711~^~432~^51.^0^^~4~^^^^^^^^^^^~03/01/2007~
-~11711~^~435~^51.^0^^~4~^~NC~^^^^^^^^^^~05/01/2007~
-~11711~^~601~^0.^0^^~7~^~Z~^^^^^^^^^^~08/01/1984~
-~11712~^~208~^11.^0^^~4~^~NC~^^^^^^^^^^~05/01/2005~
-~11712~^~268~^46.^0^^~4~^~NC~^^^^^^^^^^~05/01/2005~
-~11712~^~301~^12.^0^^~1~^^^^^^^^^^^~08/01/1984~
-~11712~^~304~^3.^0^^~1~^^^^^^^^^^^~08/01/1984~
-~11712~^~305~^20.^0^^~1~^^^^^^^^^^^~08/01/1984~
-~11712~^~306~^533.^7^45.^~1~^^^^^^^^^^^~08/01/1984~
-~11712~^~307~^240.^0^^~4~^^^^^^^^^^^~08/01/1984~
-~11712~^~318~^0.^0^^~1~^~AS~^^^^^^^^^^~05/01/2005~
-~11712~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2002~
-~11712~^~320~^0.^0^^~1~^~AS~^^^^^^^^^^~05/01/2005~
-~11712~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~
-~11712~^~417~^2.^0^^~4~^^^^^^^^^^^~08/01/1984~
-~11712~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~
-~11712~^~432~^2.^0^^~4~^^^^^^^^^^^~12/01/1984~
-~11712~^~435~^2.^0^^~4~^~NC~^^^^^^^^^^~05/01/2005~
-~11712~^~601~^0.^0^^~7~^~Z~^^^^^^^^^^~08/01/1984~
-~11713~^~208~^33.^0^^~4~^~NC~^^^^^^^^^^~08/01/1984~
-~11713~^~268~^138.^0^^~4~^^^^^^^^^^^
-~11713~^~301~^19.^0^^~1~^^^^^^^^^^^~08/01/1984~
-~11713~^~304~^23.^0^^~1~^^^^^^^^^^^~08/01/1984~
-~11713~^~305~^38.^0^^~1~^^^^^^^^^^^~08/01/1984~
-~11713~^~306~^194.^0^^~1~^^^^^^^^^^^~08/01/1984~
-~11713~^~307~^243.^0^^~4~^^^^^^^^^^^~08/01/1984~
-~11713~^~318~^2.^0^^~1~^^^^^^^^^^^~08/01/1984~
-~11713~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2002~
-~11713~^~320~^0.^0^^~1~^^^^^^^^^^^~06/01/2002~
-~11713~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~
-~11713~^~417~^47.^0^^~4~^^^^^^^^^^^~08/01/1984~
-~11713~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~
-~11713~^~432~^47.^0^^~4~^^^^^^^^^^^~12/01/1984~
-~11713~^~435~^47.^0^^~4~^~NC~^^^^^^^^^^~01/01/2001~
-~11713~^~601~^0.^0^^~7~^~Z~^^^^^^^^^^~08/01/1984~
-~11714~^~208~^123.^0^^~4~^~NC~^^^^^^^^^^~03/01/2007~
-~11714~^~262~^0.^0^^~4~^~NR~^^^^^^^^^^~12/01/2002~
-~11714~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~12/01/2002~
-~11714~^~268~^515.^0^^~4~^^^^^^^^^^^~03/01/2007~
-~11714~^~301~^32.^12^1.^~1~^^^^^^^^^^^~08/01/1984~
-~11714~^~304~^74.^12^1.^~1~^^^^^^^^^^^~08/01/1984~
-~11714~^~305~^130.^12^5.^~1~^^^^^^^^^^^~08/01/1984~
-~11714~^~306~^570.^12^11.^~1~^^^^^^^^^^^~08/01/1984~
-~11714~^~307~^253.^0^^~4~^^^^^^^^^^^~08/01/1984~
-~11714~^~318~^370.^0^^~4~^~NC~^^^^^^^^^^~03/01/2007~
-~11714~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2002~
-~11714~^~320~^19.^0^^~4~^~NC~^^^^^^^^^^~03/01/2007~
-~11714~^~321~^222.^0^^~4~^~O~^^^^^^^^^^~12/01/2002~
-~11714~^~322~^0.^0^^~4~^~BFSY~^~11031~^^^^^^^^^~12/01/2002~
-~11714~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~
-~11714~^~334~^0.^0^^~4~^~BFSY~^~11031~^^^^^^^^^~12/01/2002~
-~11714~^~337~^0.^0^^~4~^~BFSY~^~11031~^^^^^^^^^~12/01/2002~
-~11714~^~338~^0.^0^^~4~^~BFSY~^~11031~^^^^^^^^^~12/01/2002~
-~11714~^~417~^26.^0^^~4~^^^^^^^^^^^~08/01/1984~
-~11714~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~
-~11714~^~432~^26.^0^^~4~^^^^^^^^^^^~03/01/2007~
-~11714~^~435~^26.^0^^~4~^~NC~^^^^^^^^^^~03/01/2007~
-~11714~^~601~^0.^0^^~7~^~Z~^^^^^^^^^^~08/01/1984~
-~11715~^~208~^71.^0^^~4~^~NC~^^^^^^^^^^~04/01/1996~
-~11715~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~12/01/2002~
-~11715~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~12/01/2002~
-~11715~^~268~^297.^0^^~4~^^^^^^^^^^^~03/01/2007~
-~11715~^~301~^28.^115^0.^~1~^~A~^^^^^^^^^^~04/01/1996~
-~11715~^~304~^34.^82^0.^~1~^^^^^^^^^^^~08/01/1984~
-~11715~^~305~^71.^120^1.^~1~^^^^^^^^^^^~08/01/1984~
-~11715~^~306~^285.^106^7.^~1~^~A~^^^^^^^^^^~04/01/1996~
-~11715~^~307~^4.^4^1.^~1~^~A~^^^^^^^^^^~04/01/1996~
-~11715~^~318~^150.^0^^~4~^~NC~^^^^^^^^^^~03/01/2007~
-~11715~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2002~
-~11715~^~320~^8.^0^^~4~^~NC~^^^^^^^^^^~03/01/2007~
-~11715~^~321~^90.^0^^~4~^~O~^^^^^^^^^^~12/01/2002~
-~11715~^~322~^0.^0^^~4~^~BFSN~^~11038~^^^^^^^^^~12/01/2002~
-~11715~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~
-~11715~^~334~^0.^0^^~4~^~BFSN~^~11038~^^^^^^^^^~12/01/2002~
-~11715~^~337~^0.^0^^~4~^~BFSN~^~11038~^^^^^^^^^~12/01/2002~
-~11715~^~338~^0.^0^^~4~^~BFSN~^~11038~^^^^^^^^^~12/01/2002~
-~11715~^~417~^16.^0^^~4~^^^^^^^^^^^~08/01/1984~
-~11715~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~
-~11715~^~432~^16.^0^^~4~^^^^^^^^^^^~03/01/2007~
-~11715~^~435~^16.^0^^~4~^~NC~^^^^^^^^^^~03/01/2007~
-~11715~^~601~^0.^0^^~7~^~Z~^^^^^^^^^^~08/01/1984~
-~11716~^~208~^105.^0^^~4~^~NC~^^^^^^^^^^~08/01/1984~
-~11716~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~12/01/2002~
-~11716~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~12/01/2002~
-~11716~^~268~^439.^0^^~4~^^^^^^^^^^^~03/01/2007~
-~11716~^~301~^28.^6^1.^~1~^^^^^^^^^^^~08/01/1984~
-~11716~^~304~^56.^6^0.^~1~^^^^^^^^^^^~08/01/1984~
-~11716~^~305~^112.^6^2.^~1~^^^^^^^^^^^~08/01/1984~
-~11716~^~306~^411.^6^24.^~1~^^^^^^^^^^^~08/01/1984~
-~11716~^~307~^265.^0^^~4~^^^^^^^^^^^~08/01/1984~
-~11716~^~318~^167.^0^^~4~^~NC~^^^^^^^^^^~03/01/2007~
-~11716~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2002~
-~11716~^~320~^8.^0^^~4~^~NC~^^^^^^^^^^~03/01/2007~
-~11716~^~321~^100.^0^^~4~^~O~^^^^^^^^^^~12/01/2002~
-~11716~^~322~^0.^0^^~4~^~BFSN~^~11038~^^^^^^^^^~12/01/2002~
-~11716~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~
-~11716~^~334~^0.^0^^~4~^~BFSN~^~11038~^^^^^^^^^~12/01/2002~
-~11716~^~337~^0.^0^^~4~^~BFSN~^~11038~^^^^^^^^^~12/01/2002~
-~11716~^~338~^0.^0^^~4~^~BFSN~^~11038~^^^^^^^^^~12/01/2002~
-~11716~^~417~^16.^0^^~4~^^^^^^^^^^^~08/01/1984~
-~11716~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~
-~11716~^~432~^16.^0^^~4~^^^^^^^^^^^~03/01/2007~
-~11716~^~435~^16.^0^^~4~^~NC~^^^^^^^^^^~03/01/2010~
-~11716~^~601~^0.^0^^~7~^~Z~^^^^^^^^^^~08/01/1984~
-~11717~^~208~^103.^0^^~4~^~NC~^^^^^^^^^^~03/01/2007~
-~11717~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~12/01/2002~
-~11717~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~12/01/2002~
-~11717~^~268~^429.^0^^~4~^~NC~^^^^^^^^^^~03/01/2007~
-~11717~^~301~^30.^47^0.^~1~^^^^5^20.^39.^35^28.^31.^~2, 3~^~12/01/2002~
-~11717~^~304~^42.^48^1.^~1~^^^^5^26.^57.^31^40.^44.^~2, 3~^~12/01/2002~
-~11717~^~305~^97.^47^2.^~1~^^^^5^69.^128.^27^92.^100.^~2, 3~^~12/01/2002~
-~11717~^~306~^304.^48^11.^~1~^^^^5^74.^440.^39^279.^327.^~2, 3~^~12/01/2002~
-~11717~^~307~^289.^0^^~4~^^^^^^^^^^^~08/01/1984~
-~11717~^~318~^190.^0^^~4~^~NC~^^^^^^^^^^~03/01/2007~
-~11717~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2002~
-~11717~^~320~^10.^0^^~4~^~NC~^^^^^^^^^^~03/01/2007~
-~11717~^~321~^114.^0^^~4~^~O~^^^^^^^^^^~12/01/2002~
-~11717~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~12/01/2002~
-~11717~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~
-~11717~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~12/01/2002~
-~11717~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~12/01/2002~
-~11717~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~12/01/2002~
-~11717~^~417~^21.^0^^~4~^^^^^^^^^^^~08/01/1984~
-~11717~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~
-~11717~^~432~^21.^0^^~4~^^^^^^^^^^^~03/01/2007~
-~11717~^~435~^21.^0^^~4~^~NC~^^^^^^^^^^~03/01/2007~
-~11717~^~601~^0.^0^^~7~^~Z~^^^^^^^^^^~08/01/1984~
-~11718~^~208~^19.^0^^~4~^~NC~^^^^^^^^^^~03/01/2007~
-~11718~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2003~
-~11718~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2003~
-~11718~^~268~^78.^0^^~4~^~NC~^^^^^^^^^^~03/01/2007~
-~11718~^~301~^12.^0^^~1~^^^^^^^^^^^~08/01/1984~
-~11718~^~304~^14.^1^^~1~^^^^^^^^^^^~08/01/1984~
-~11718~^~305~^28.^0^^~1~^^^^^^^^^^^~08/01/1984~
-~11718~^~306~^101.^1^^~1~^^^^^^^^^^^~08/01/1984~
-~11718~^~307~^246.^0^^~4~^^^^^^^^^^^~08/01/1984~
-~11718~^~318~^13.^0^^~4~^~NC~^^^^^^^^^^~03/01/2007~
-~11718~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2002~
-~11718~^~320~^1.^0^^~4~^~NC~^^^^^^^^^^~03/01/2007~
-~11718~^~321~^4.^0^^~4~^~BFSY~^~11043~^^^^^^^^^~01/01/2003~
-~11718~^~322~^4.^0^^~4~^~BFSY~^~11043~^^^^^^^^^~01/01/2003~
-~11718~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~
-~11718~^~334~^4.^0^^~4~^~BFSY~^~11043~^^^^^^^^^~01/01/2003~
-~11718~^~337~^0.^0^^~4~^~BFSY~^~11043~^^^^^^^^^~01/01/2003~
-~11718~^~338~^0.^0^^~4~^~BFSY~^~11043~^^^^^^^^^~01/01/2003~
-~11718~^~417~^29.^0^^~4~^^^^^^^^^^^~08/01/1984~
-~11718~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~
-~11718~^~432~^29.^0^^~4~^^^^^^^^^^^~03/01/2007~
-~11718~^~435~^29.^0^^~4~^~NC~^^^^^^^^^^~03/01/2007~
-~11718~^~601~^0.^0^^~7~^~Z~^^^^^^^^^^~08/01/1984~
-~11719~^~208~^78.^0^^~4~^~NC~^^^^^^^^^^~06/01/2008~
-~11719~^~268~^325.^0^^~4~^~NC~^^^^^^^^^^~06/01/2008~
-~11719~^~301~^16.^0^^~1~^^^^^^^^^^^~08/01/1984~
-~11719~^~304~^111.^0^^~1~^^^^^^^^^^^~08/01/1984~
-~11719~^~305~^103.^0^^~1~^^^^^^^^^^^~08/01/1984~
-~11719~^~306~^317.^0^^~1~^^^^^^^^^^^~08/01/1984~
-~11719~^~307~^250.^0^^~4~^^^^^^^^^^^~08/01/1984~
-~11719~^~318~^4.^0^^~1~^^^^^^^^^^^~08/01/1984~
-~11719~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2002~
-~11719~^~320~^0.^0^^~1~^~AS~^^^^^^^^^^~06/01/2008~
-~11719~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~
-~11719~^~417~^106.^0^^~4~^^^^^^^^^^^~08/01/1984~
-~11719~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~
-~11719~^~432~^106.^0^^~4~^^^^^^^^^^^~12/01/1984~
-~11719~^~435~^106.^0^^~4~^~NC~^^^^^^^^^^~06/01/2008~
-~11719~^~601~^0.^0^^~7~^~Z~^^^^^^^^^^~08/01/1984~
-~11720~^~208~^162.^0^^~4~^~NC~^^^^^^^^^^~08/01/1984~
-~11720~^~268~^678.^0^^~4~^~NC~^^^^^^^^^^~08/01/2015~
-~11720~^~301~^52.^0^^~1~^^^^^^^^^^^~08/01/1984~
-~11720~^~304~^54.^0^^~4~^^^^^^^^^^^~08/01/1984~
-~11720~^~305~^100.^0^^~4~^^^^^^^^^^^~08/01/1984~
-~11720~^~306~^646.^0^^~4~^^^^^^^^^^^~08/01/1984~
-~11720~^~307~^319.^0^^~4~^^^^^^^^^^^~08/01/1984~
-~11720~^~318~^0.^0^^~1~^^^^^^^^^^^~08/01/1984~
-~11720~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2002~
-~11720~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~
-~11720~^~417~^34.^0^^~4~^^^^^^^^^^^~08/01/1984~
-~11720~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~
-~11720~^~432~^34.^0^^~4~^^^^^^^^^^^~12/01/1984~
-~11720~^~435~^34.^0^^~4~^~NC~^^^^^^^^^^~01/01/2001~
-~11720~^~601~^0.^0^^~7~^~Z~^^^^^^^^^^~08/01/1984~
-~11721~^~208~^20.^0^^~4~^~NC~^^^^^^^^^^~05/01/2006~
-~11721~^~268~^82.^0^^~4~^~NC~^^^^^^^^^^~05/01/2006~
-~11721~^~301~^15.^0^^~1~^^^^^^^^^^^~08/01/1984~
-~11721~^~304~^18.^0^^~1~^^^^^^^^^^^~08/01/1984~
-~11721~^~305~^30.^0^^~1~^^^^^^^^^^^~08/01/1984~
-~11721~^~306~^98.^0^^~1~^^^^^^^^^^^~08/01/1984~
-~11721~^~307~^287.^0^^~4~^^^^^^^^^^^~08/01/1984~
-~11721~^~318~^0.^0^^~1~^~AS~^^^^^^^^^^~05/01/2006~
-~11721~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2002~
-~11721~^~320~^0.^0^^~1~^~AS~^^^^^^^^^^~05/01/2006~
-~11721~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~
-~11721~^~417~^29.^0^^~4~^^^^^^^^^^^~08/01/1984~
-~11721~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~
-~11721~^~432~^29.^0^^~4~^^^^^^^^^^^~12/01/1984~
-~11721~^~435~^29.^0^^~4~^~NC~^^^^^^^^^^~05/01/2006~
-~11721~^~601~^0.^0^^~7~^~Z~^^^^^^^^^^~08/01/1984~
-~11722~^~208~^31.^0^^~4~^~NC~^^^^^^^^^^~05/01/2009~
-~11722~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~08/01/2015~
-~11722~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~08/01/2015~
-~11722~^~268~^129.^0^^~4~^~NC~^^^^^^^^^^~05/01/2009~
-~11722~^~301~^37.^149^1.^~1~^^^^^^^^^^^~08/01/1984~
-~11722~^~304~^25.^147^0.^~1~^^^^^^^^^^^~08/01/1984~
-~11722~^~305~^38.^136^0.^~1~^^^^^^^^^^^~08/01/1984~
-~11722~^~306~^209.^150^4.^~1~^^^^^^^^^^^~08/01/1984~
-~11722~^~307~^6.^150^0.^~1~^^^^^^^^^^^~08/01/1984~
-~11722~^~318~^108.^0^^~1~^^^^^^^^^^^~08/01/1984~
-~11722~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2002~
-~11722~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~
-~11722~^~417~^37.^6^3.^~1~^^^^^^^^^^^~08/01/1984~
-~11722~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~
-~11722~^~432~^37.^6^3.^~1~^^^^^^^^^^^~12/01/1984~
-~11722~^~435~^37.^0^^~4~^~NC~^^^^^^^^^^~05/01/2009~
-~11722~^~601~^0.^0^^~7~^~Z~^^^^^^^^^^~08/01/1984~
-~11723~^~208~^35.^0^^~4~^~NC~^^^^^^^^^^~01/01/2007~
-~11723~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~08/01/2015~
-~11723~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~08/01/2015~
-~11723~^~268~^147.^0^^~4~^~NC~^^^^^^^^^^~01/01/2007~
-~11723~^~301~^44.^27^1.^~1~^^^^4^28.^72.^26^40.^48.^~4~^~06/01/2005~
-~11723~^~304~^18.^28^0.^~1~^^^^4^7.^25.^27^16.^20.^~4~^~06/01/2005~
-~11723~^~305~^29.^27^1.^~1~^^^^4^19.^42.^26^26.^31.^~4~^~06/01/2005~
-~11723~^~306~^146.^28^8.^~1~^^^^4^56.^250.^27^127.^163.^~4~^~06/01/2005~
-~11723~^~307~^239.^0^^~4~^^^^^^^^^^^~08/01/1984~
-~11723~^~318~^691.^0^^~4~^~NC~^^^^^^^^^^~09/01/2015~
-~11723~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2002~
-~11723~^~320~^35.^0^^~4~^~NC~^^^^^^^^^^~09/01/2015~
-~11723~^~321~^380.^0^^~4~^~BFSY~^~11052~^^^^^^^^^~09/01/2015~
-~11723~^~322~^70.^0^^~4~^~BFSY~^~11052~^^^^^^^^^~09/01/2015~
-~11723~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~
-~11723~^~334~^0.^0^^~4~^~BFSY~^~11052~^^^^^^^^^~08/01/2002~
-~11723~^~337~^0.^0^^~4~^~BFSY~^~11052~^^^^^^^^^~08/01/2002~
-~11723~^~338~^641.^0^^~4~^~BFSY~^~11052~^^^^^^^^^~09/01/2015~
-~11723~^~417~^33.^0^^~1~^^^^^^^^^^^~08/01/1984~
-~11723~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~
-~11723~^~432~^33.^0^^~1~^^^^^^^^^^^~01/01/2007~
-~11723~^~435~^33.^0^^~4~^~NC~^^^^^^^^^^~01/01/2007~
-~11723~^~601~^0.^0^^~7~^~Z~^^^^^^^^^^~08/01/1984~
-~11724~^~208~^35.^0^^~4~^~NC~^^^^^^^^^^~01/01/2007~
-~11724~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~
-~11724~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~
-~11724~^~268~^147.^0^^~4~^~NC~^^^^^^^^^^~01/01/2007~
-~11724~^~301~^46.^0^^~1~^^^^^^^^^^^~08/01/1984~
-~11724~^~304~^25.^1^^~1~^^^^^^^^^^^~08/01/1984~
-~11724~^~305~^39.^0^^~1~^^^^^^^^^^^~08/01/1984~
-~11724~^~306~^299.^1^^~1~^^^^^^^^^^^~08/01/1984~
-~11724~^~307~^3.^1^^~1~^^^^^^^^^^^~08/01/1984~
-~11724~^~318~^81.^0^^~4~^~NC~^^^^^^^^^^~01/01/2007~
-~11724~^~319~^0.^0^^~4~^~BNA~^~11053~^^^^^^^^^~02/01/2003~
-~11724~^~320~^4.^0^^~4~^~NC~^^^^^^^^^^~01/01/2007~
-~11724~^~321~^49.^0^^~4~^~BNA~^~11053~^^^^^^^^^~02/01/2003~
-~11724~^~322~^0.^0^^~4~^~BNA~^~11053~^^^^^^^^^~02/01/2003~
-~11724~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~
-~11724~^~334~^0.^0^^~4~^~BNA~^~11053~^^^^^^^^^~02/01/2003~
-~11724~^~337~^0.^0^^~4~^~BFSN~^~11053~^^^^^^^^^~02/01/2003~
-~11724~^~338~^712.^0^^~4~^~BFSN~^~11053~^^^^^^^^^~08/01/2015~
-~11724~^~417~^33.^0^^~1~^^^^^^^^^^^~08/01/1984~
-~11724~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~
-~11724~^~432~^33.^0^^~1~^^^^^^^^^^^~01/01/2007~
-~11724~^~435~^33.^0^^~4~^~NC~^^^^^^^^^^~01/01/2007~
-~11724~^~601~^0.^0^^~7~^~Z~^^^^^^^^^^~08/01/1984~
-~11725~^~208~^35.^0^^~4~^~NC~^^^^^^^^^^~01/01/2007~
-~11725~^~268~^147.^0^^~4~^~NC~^^^^^^^^^^~01/01/2007~
-~11725~^~301~^46.^0^^~1~^^^^^^^^^^^~08/01/1984~
-~11725~^~304~^25.^1^^~1~^^^^^^^^^^^~08/01/1984~
-~11725~^~305~^39.^0^^~1~^^^^^^^^^^^~08/01/1984~
-~11725~^~306~^299.^1^^~1~^^^^^^^^^^^~08/01/1984~
-~11725~^~307~^239.^0^^~4~^^^^^^^^^^^~08/01/1984~
-~11725~^~318~^81.^0^^~4~^~NC~^^^^^^^^^^~01/01/2007~
-~11725~^~319~^0.^0^^~4~^~BNA~^~11053~^^^^^^^^^~02/01/2003~
-~11725~^~320~^4.^0^^~4~^~NC~^^^^^^^^^^~01/01/2007~
-~11725~^~321~^49.^0^^~4~^~BNA~^~11053~^^^^^^^^^~02/01/2003~
-~11725~^~322~^0.^0^^~4~^~BNA~^~11053~^^^^^^^^^~02/01/2003~
-~11725~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~
-~11725~^~334~^0.^0^^~4~^~BNA~^~11053~^^^^^^^^^~02/01/2003~
-~11725~^~337~^0.^0^^~4~^~BFSN~^~11053~^^^^^^^^^~02/01/2003~
-~11725~^~338~^712.^0^^~4~^~BFSN~^~11053~^^^^^^^^^~08/01/2015~
-~11725~^~417~^33.^0^^~1~^^^^^^^^^^^~08/01/1984~
-~11725~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~
-~11725~^~432~^33.^0^^~1~^^^^^^^^^^^~01/01/2007~
-~11725~^~435~^33.^0^^~4~^~NC~^^^^^^^^^^~01/01/2007~
-~11725~^~601~^0.^0^^~7~^~Z~^^^^^^^^^^~08/01/1984~
-~11726~^~208~^15.^0^^~4~^~NC~^^^^^^^^^^~05/01/2005~
-~11726~^~268~^64.^0^^~4~^~NC~^^^^^^^^^^~05/01/2005~
-~11726~^~301~^24.^1032^0.^~1~^~A~^^^^^^^^^^~04/01/1996~
-~11726~^~304~^13.^996^0.^~1~^^^^^^^^^^^~08/01/1984~
-~11726~^~305~^19.^1082^0.^~1~^^^^^^^^^^^~08/01/1984~
-~11726~^~306~^92.^701^1.^~1~^~A~^^^^^^^^^^~04/01/1996~
-~11726~^~307~^14.^26^2.^~1~^~A~^^^^^^^^^^~04/01/1996~
-~11726~^~318~^321.^1113^4.^~1~^~A~^^^^^^^^^^~06/01/2005~
-~11726~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2002~
-~11726~^~320~^16.^1113^0.^~1~^~A~^^^^^^^^^^~06/01/2005~
-~11726~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~
-~11726~^~417~^18.^3^1.^~1~^^^^^^^^^^^~08/01/1984~
-~11726~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~
-~11726~^~432~^18.^3^1.^~1~^^^^^^^^^^^~12/01/1984~
-~11726~^~435~^18.^0^^~4~^~NC~^^^^^^^^^^~06/01/2005~
-~11726~^~601~^0.^0^^~7~^~Z~^^^^^^^^^^~08/01/1984~
-~11727~^~208~^15.^0^^~4~^~NC~^^^^^^^^^^~04/01/1996~
-~11727~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~08/01/2015~
-~11727~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~08/01/2015~
-~11727~^~268~^63.^0^^~4~^^^^^^^^^^^
-~11727~^~301~^24.^1032^0.^~1~^~A~^^^^^^^^^^~04/01/1996~
-~11727~^~304~^13.^996^0.^~1~^^^^^^^^^^^~08/01/1984~
-~11727~^~305~^19.^1082^0.^~1~^^^^^^^^^^^~08/01/1984~
-~11727~^~306~^98.^1079^2.^~1~^^^^^^^^^^^~08/01/1984~
-~11727~^~307~^259.^58^8.^~1~^~A~^^^^^^^^^^~05/01/2013~
-~11727~^~318~^83.^0^^~4~^~NC~^^^^^^^^^^~08/01/2015~
-~11727~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2002~
-~11727~^~320~^4.^0^^~4~^~NC~^^^^^^^^^^~08/01/2015~
-~11727~^~321~^50.^0^^~4~^~BFSN~^~11932~^^^^^^^^^~08/01/2015~
-~11727~^~322~^0.^0^^~4~^~BFSN~^~11932~^^^^^^^^^~08/01/2015~
-~11727~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~
-~11727~^~334~^0.^0^^~4~^~BFSN~^~11932~^^^^^^^^^~08/01/2015~
-~11727~^~337~^0.^0^^~4~^~BFSN~^~11932~^^^^^^^^^~08/01/2015~
-~11727~^~338~^363.^0^^~4~^~BFSN~^~11932~^^^^^^^^^~08/01/2015~
-~11727~^~417~^18.^3^1.^~1~^^^^^^^^^^^~08/01/1984~
-~11727~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~
-~11727~^~432~^18.^3^1.^~1~^^^^^^^^^^^~12/01/1984~
-~11727~^~435~^18.^0^^~4~^~NC~^^^^^^^^^^~01/01/2001~
-~11727~^~601~^0.^0^^~7~^~Z~^^^^^^^^^^~08/01/1984~
-~11728~^~208~^15.^0^^~4~^~NC~^^^^^^^^^^~05/01/2005~
-~11728~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~08/01/2015~
-~11728~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~08/01/2015~
-~11728~^~268~^63.^0^^~4~^^^^^^^^^^^~08/01/2015~
-~11728~^~301~^24.^1032^0.^~1~^~A~^^^^^^^^^^~04/01/1996~
-~11728~^~304~^13.^996^0.^~1~^^^^^^^^^^^~08/01/1984~
-~11728~^~305~^19.^1082^0.^~1~^^^^^^^^^^^~08/01/1984~
-~11728~^~306~^98.^1079^2.^~1~^^^^^^^^^^^~08/01/1984~
-~11728~^~307~^14.^26^2.^~1~^~A~^^^^^^^^^^~04/01/1996~
-~11728~^~318~^83.^0^^~4~^~NC~^^^^^^^^^^~08/01/2015~
-~11728~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2002~
-~11728~^~320~^4.^0^^~4~^~NC~^^^^^^^^^^~08/01/2015~
-~11728~^~321~^50.^0^^~4~^~BFSN~^~11932~^^^^^^^^^~08/01/2015~
-~11728~^~322~^0.^0^^~4~^~BFSN~^~11932~^^^^^^^^^~08/01/2015~
-~11728~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~
-~11728~^~334~^0.^0^^~4~^~BFSN~^~11932~^^^^^^^^^~08/01/2015~
-~11728~^~337~^0.^0^^~4~^~BFSN~^~11932~^^^^^^^^^~08/01/2015~
-~11728~^~338~^363.^0^^~4~^~BFSN~^~11932~^^^^^^^^^~08/01/2015~
-~11728~^~417~^18.^3^1.^~1~^^^^^^^^^^^~08/01/1984~
-~11728~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~
-~11728~^~432~^18.^3^1.^~1~^^^^^^^^^^^~12/01/1984~
-~11728~^~435~^18.^0^^~4~^~NC~^^^^^^^^^^~06/01/2005~
-~11728~^~601~^0.^0^^~7~^~Z~^^^^^^^^^^~08/01/1984~
-~11729~^~208~^22.^0^^~4~^~NC~^^^^^^^^^^~08/01/2014~
-~11729~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2011~
-~11729~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2011~
-~11729~^~268~^92.^0^^~4~^~NC~^^^^^^^^^^~08/01/2014~
-~11729~^~301~^38.^4^1.^~1~^~A~^^^1^35.^44.^1^24.^50.^~2, 3~^~04/01/2011~
-~11729~^~304~^13.^4^0.^~1~^~A~^^^1^13.^14.^1^8.^18.^~2, 3~^~08/01/1984~
-~11729~^~305~^20.^4^1.^~1~^~A~^^^1^16.^24.^1^5.^33.^~2, 3~^~08/01/2014~
-~11729~^~306~^96.^4^3.^~1~^~A~^^^1^83.^113.^1^54.^136.^~2, 3~^~08/01/2014~
-~11729~^~307~^2.^0^^~1~^~A~^^^^^^^^^^~07/01/2014~
-~11729~^~318~^353.^0^^~1~^~AS~^^^^^^^^^^~04/01/2011~
-~11729~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2002~
-~11729~^~320~^18.^0^^~1~^~AS~^^^^^^^^^^~04/01/2011~
-~11729~^~321~^122.^2^^~1~^~A~^^^1^64.^179.^1^^^^~04/01/2011~
-~11729~^~322~^156.^2^^~1~^~A~^^^1^141.^171.^1^^^^~04/01/2011~
-~11729~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~
-~11729~^~334~^24.^2^^~1~^~A~^^^1^11.^38.^1^^^~1~^~04/01/2011~
-~11729~^~337~^0.^0^^~4~^~BFSN~^~11061~^^^^^^^^^~01/01/2007~
-~11729~^~338~^452.^0^^~4~^~BFSN~^~11061~^^^^^^^^^~04/01/2011~
-~11729~^~417~^28.^0^^~1~^~A~^^^^^^^^^^~04/01/2011~
-~11729~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~
-~11729~^~432~^28.^0^^~1~^~A~^^^^^^^^^^~04/01/2011~
-~11729~^~435~^28.^0^^~4~^~NC~^^^^^^^^^^~04/01/2011~
-~11729~^~601~^0.^0^^~7~^~Z~^^^^^^^^^^~08/01/1984~
-~11730~^~208~^33.^0^^~4~^~NC~^^^^^^^^^^~05/01/2009~
-~11730~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~08/01/2015~
-~11730~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~08/01/2015~
-~11730~^~268~^139.^0^^~4~^~NC~^^^^^^^^^^~05/01/2009~
-~11730~^~301~^42.^99^1.^~1~^^^^^^^^^^^~08/01/1984~
-~11730~^~304~^22.^28^0.^~1~^^^^^^^^^^^~08/01/1984~
-~11730~^~305~^32.^39^1.^~1~^^^^^^^^^^^~08/01/1984~
-~11730~^~306~^186.^27^12.^~1~^^^^^^^^^^^~08/01/1984~
-~11730~^~307~^3.^34^0.^~1~^^^^^^^^^^^~08/01/1984~
-~11730~^~318~^132.^0^^~4~^~NC~^^^^^^^^^^~08/01/2015~
-~11730~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2002~
-~11730~^~320~^7.^0^^~4~^~NC~^^^^^^^^^^~08/01/2015~
-~11730~^~321~^71.^0^^~4~^~BFSN~^~11732~^^^^^^^^^~08/01/2015~
-~11730~^~322~^17.^0^^~4~^~BFSN~^~11732~^^^^^^^^^~08/01/2015~
-~11730~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~
-~11730~^~334~^0.^0^^~4~^~BFSN~^~11732~^^^^^^^^^~08/01/2015~
-~11730~^~337~^0.^0^^~4~^~BFSN~^~11732~^^^^^^^^^~08/01/2015~
-~11730~^~338~^666.^0^^~4~^~BFSN~^~11732~^^^^^^^^^~08/01/2015~
-~11730~^~417~^15.^3^2.^~1~^^^^^^^^^^^~08/01/1984~
-~11730~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~
-~11730~^~432~^15.^3^2.^~1~^^^^^^^^^^^~12/01/1984~
-~11730~^~435~^15.^0^^~4~^~NC~^^^^^^^^^^~05/01/2009~
-~11730~^~601~^0.^0^^~7~^~Z~^^^^^^^^^^~08/01/1984~
-~11731~^~208~^28.^0^^~4~^~NC~^^^^^^^^^^~08/01/2015~
-~11731~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2006~
-~11731~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2006~
-~11731~^~268~^117.^0^^~4~^^^^^^^^^^^~08/01/2015~
-~11731~^~301~^42.^40^2.^~1~^^^^1^18.^72.^20^36.^47.^~4~^~03/01/2006~
-~11731~^~304~^19.^40^0.^~1~^^^^1^12.^25.^20^17.^20.^~4~^~03/01/2006~
-~11731~^~305~^29.^40^0.^~1~^^^^1^22.^40.^20^27.^31.^~4~^~03/01/2006~
-~11731~^~306~^159.^40^10.^~1~^^^^1^21.^225.^20^137.^181.^~4~^~03/01/2006~
-~11731~^~307~^245.^0^^~4~^^^^^^^^^^^~02/01/1995~
-~11731~^~318~^466.^0^^~4~^~NC~^^^^^^^^^^~08/01/2015~
-~11731~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2002~
-~11731~^~320~^23.^0^^~4~^~NC~^^^^^^^^^^~08/01/2015~
-~11731~^~321~^249.^0^^~4~^~BFSN~^~11061~^^^^^^^^^~08/01/2015~
-~11731~^~322~^61.^0^^~4~^~BFSN~^~11061~^^^^^^^^^~08/01/2015~
-~11731~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~
-~11731~^~334~^0.^0^^~4~^~BFSN~^~11061~^^^^^^^^^~08/01/2002~
-~11731~^~337~^0.^0^^~4~^~BFSN~^~11061~^^^^^^^^^~08/01/2002~
-~11731~^~338~^564.^0^^~4~^~BFSN~^~11061~^^^^^^^^^~08/01/2002~
-~11731~^~417~^23.^7^3.^~1~^^^^^^^^^^^~08/01/1984~
-~11731~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~
-~11731~^~432~^23.^7^3.^~1~^^^^^^^^^^^~03/01/2006~
-~11731~^~435~^23.^0^^~4~^~NC~^^^^^^^^^^~05/01/2006~
-~11731~^~601~^0.^0^^~7~^~Z~^^^^^^^^^^~08/01/1984~
-~11732~^~208~^28.^0^^~4~^~NC~^^^^^^^^^^~01/01/2007~
-~11732~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~
-~11732~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~
-~11732~^~268~^117.^0^^~4~^^^^^^^^^^^~08/01/2015~
-~11732~^~301~^49.^7^2.^~1~^^^^^^^^^^^~02/01/1995~
-~11732~^~304~^24.^7^1.^~1~^^^^^^^^^^^~02/01/1995~
-~11732~^~305~^31.^7^2.^~1~^^^^^^^^^^^~02/01/1995~
-~11732~^~306~^126.^7^9.^~1~^^^^^^^^^^^~02/01/1995~
-~11732~^~307~^9.^11^2.^~1~^^^^^^^^^^^~02/01/1995~
-~11732~^~318~^112.^0^^~4~^~NC~^^^^^^^^^^~01/01/2007~
-~11732~^~319~^0.^0^^~4~^~BNA~^~11061~^^^^^^^^^~02/01/2003~
-~11732~^~320~^6.^0^^~4~^~NC~^^^^^^^^^^~01/01/2007~
-~11732~^~321~^60.^0^^~4~^~BNA~^~11061~^^^^^^^^^~08/01/2015~
-~11732~^~322~^15.^0^^~4~^~BNA~^~11061~^^^^^^^^^~08/01/2015~
-~11732~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~
-~11732~^~334~^0.^0^^~4~^~BNA~^~11061~^^^^^^^^^~02/01/2003~
-~11732~^~337~^0.^0^^~4~^~BFSN~^~11061~^^^^^^^^^~02/01/2003~
-~11732~^~338~^564.^0^^~4~^~BFSN~^~11061~^^^^^^^^^~02/01/2003~
-~11732~^~417~^23.^7^3.^~1~^^^^^^^^^^^~02/01/1995~
-~11732~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~
-~11732~^~432~^23.^7^3.^~1~^^^^^^^^^^^~01/01/2007~
-~11732~^~435~^23.^0^^~4~^~NC~^^^^^^^^^^~01/01/2007~
-~11732~^~601~^0.^0^^~7~^~Z~^^^^^^^^^^~08/01/1984~
-~11733~^~208~^28.^0^^~4~^~NC~^^^^^^^^^^~08/01/2015~
-~11733~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~
-~11733~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~
-~11733~^~268~^117.^0^^~4~^^^^^^^^^^^~08/01/2015~
-~11733~^~301~^49.^7^2.^~1~^^^^^^^^^^^~08/01/1984~
-~11733~^~304~^24.^7^1.^~1~^^^^^^^^^^^~08/01/1984~
-~11733~^~305~^31.^7^2.^~1~^^^^^^^^^^^~08/01/1984~
-~11733~^~306~^126.^7^9.^~1~^^^^^^^^^^^~08/01/1984~
-~11733~^~307~^245.^0^^~4~^^^^^^^^^^^~08/01/1984~
-~11733~^~318~^112.^0^^~4~^~NC~^^^^^^^^^^~01/01/2007~
-~11733~^~319~^0.^0^^~4~^~BNA~^~11061~^^^^^^^^^~02/01/2003~
-~11733~^~320~^6.^0^^~4~^~NC~^^^^^^^^^^~01/01/2007~
-~11733~^~321~^60.^0^^~4~^~BNA~^~11061~^^^^^^^^^~08/01/2015~
-~11733~^~322~^15.^0^^~4~^~BNA~^~11061~^^^^^^^^^~08/01/2015~
-~11733~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~
-~11733~^~334~^0.^0^^~4~^~BNA~^~11061~^^^^^^^^^~02/01/2003~
-~11733~^~337~^0.^0^^~4~^~BFSN~^~11061~^^^^^^^^^~02/01/2003~
-~11733~^~338~^564.^0^^~4~^~BFSN~^~11061~^^^^^^^^^~02/01/2003~
-~11733~^~417~^23.^7^3.^~1~^^^^^^^^^^^~08/01/1984~
-~11733~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~
-~11733~^~432~^23.^7^3.^~1~^^^^^^^^^^^~01/01/2007~
-~11733~^~435~^23.^0^^~4~^~NC~^^^^^^^^^^~01/01/2007~
-~11733~^~601~^0.^0^^~7~^~Z~^^^^^^^^^^~08/01/1984~
-~11734~^~208~^44.^0^^~4~^~NC~^^^^^^^^^^~02/01/2007~
-~11734~^~268~^186.^0^^~4~^~NC~^^^^^^^^^^~02/01/2007~
-~11734~^~301~^16.^0^^~1~^^^^^^^^^^^~08/01/1984~
-~11734~^~304~^23.^0^^~1~^^^^^^^^^^^~08/01/1984~
-~11734~^~305~^38.^0^^~1~^^^^^^^^^^^~08/01/1984~
-~11734~^~306~^305.^0^^~1~^^^^^^^^^^^~08/01/1984~
-~11734~^~307~^285.^0^^~4~^^^^^^^^^^^~08/01/1984~
-~11734~^~318~^35.^0^^~4~^~NC~^^^^^^^^^^~02/01/2007~
-~11734~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2002~
-~11734~^~320~^2.^0^^~4~^~NC~^^^^^^^^^^~02/01/2007~
-~11734~^~321~^21.^0^^~4~^~BFSN~^~11081~^^^^^^^^^~01/01/2004~
-~11734~^~322~^0.^0^^~4~^~BFSN~^~11081~^^^^^^^^^~01/01/2004~
-~11734~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~
-~11734~^~334~^0.^0^^~4~^~BFSN~^~11081~^^^^^^^^^~12/01/2002~
-~11734~^~337~^0.^0^^~4~^~BFSN~^~11081~^^^^^^^^^~12/01/2002~
-~11734~^~338~^0.^0^^~4~^~BFSN~^~11081~^^^^^^^^^~01/01/2004~
-~11734~^~417~^80.^0^^~1~^^^^^^^^^^^~08/01/1984~
-~11734~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~
-~11734~^~432~^80.^0^^~1~^^^^^^^^^^^~02/01/2007~
-~11734~^~435~^80.^0^^~4~^~NC~^^^^^^^^^^~02/01/2007~
-~11734~^~601~^0.^0^^~7~^~Z~^^^^^^^^^^~08/01/1984~
-~11735~^~208~^28.^0^^~4~^~NC~^^^^^^^^^^~01/01/2007~
-~11735~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~09/01/2002~
-~11735~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~09/01/2002~
-~11735~^~268~^117.^0^^~4~^~NC~^^^^^^^^^^~01/01/2007~
-~11735~^~301~^13.^200^0.^~1~^~A~^^^^^^^^^^~04/01/1996~
-~11735~^~304~^16.^134^0.^~1~^^^^^^^^^^^~08/01/1984~
-~11735~^~305~^16.^198^0.^~1~^^^^^^^^^^^~08/01/1984~
-~11735~^~306~^142.^138^2.^~1~^^^^^^^^^^^~08/01/1984~
-~11735~^~307~^21.^9^7.^~1~^~A~^^^^^^^^^^~04/01/1996~
-~11735~^~318~^22.^0^^~4~^~NC~^^^^^^^^^^~01/01/2007~
-~11735~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2002~
-~11735~^~320~^1.^0^^~4~^~NC~^^^^^^^^^^~01/01/2007~
-~11735~^~321~^13.^0^^~4~^~BFSN~^~11082~^^^^^^^^^~09/01/2002~
-~11735~^~322~^0.^0^^~4~^~BFSN~^~11082~^^^^^^^^^~09/01/2002~
-~11735~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~
-~11735~^~334~^0.^0^^~4~^~BFSN~^~11082~^^^^^^^^^~09/01/2002~
-~11735~^~337~^0.^0^^~4~^~BFSN~^~11082~^^^^^^^^^~09/01/2002~
-~11735~^~338~^0.^0^^~4~^~BFSN~^~11082~^^^^^^^^^~09/01/2002~
-~11735~^~417~^29.^3^4.^~1~^^^^^^^^^^^~08/01/1984~
-~11735~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~
-~11735~^~432~^29.^3^4.^~1~^^^^^^^^^^^~01/01/2007~
-~11735~^~435~^29.^0^^~4~^~NC~^^^^^^^^^^~01/01/2007~
-~11735~^~601~^0.^0^^~7~^~Z~^^^^^^^^^^~08/01/1984~
-~11736~^~208~^27.^0^^~4~^~NC~^^^^^^^^^^~02/01/2007~
-~11736~^~268~^113.^0^^~4~^^^^^^^^^^^~02/01/2007~
-~11736~^~301~^114.^1^^~1~^^^^^^^^^^^~08/01/1984~
-~11736~^~304~^68.^1^^~1~^^^^^^^^^^^~08/01/1984~
-~11736~^~305~^41.^1^^~1~^^^^^^^^^^^~08/01/1984~
-~11736~^~306~^909.^1^^~1~^^^^^^^^^^^~08/01/1984~
-~11736~^~307~^477.^0^^~4~^^^^^^^^^^^~08/01/1984~
-~11736~^~318~^7654.^0^^~4~^~NC~^^^^^^^^^^~02/01/2007~
-~11736~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2002~
-~11736~^~320~^383.^0^^~4~^~NC~^^^^^^^^^^~02/01/2007~
-~11736~^~321~^4590.^0^^~4~^~BFZN~^~11087~^^^^^^^^^~06/01/2005~
-~11736~^~322~^4.^0^^~4~^~BFZN~^~11087~^^^^^^^^^~06/01/2005~
-~11736~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~
-~11736~^~334~^0.^0^^~4~^~BFZN~^~11087~^^^^^^^^^~02/01/2007~
-~11736~^~337~^0.^0^^~4~^~BFZN~^~11087~^^^^^^^^^~02/01/2007~
-~11736~^~338~^1819.^0^^~4~^~BFZN~^~11087~^^^^^^^^^~06/01/2005~
-~11736~^~417~^14.^0^^~4~^^^^^^^^^^^~08/01/1984~
-~11736~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~
-~11736~^~432~^14.^0^^~4~^^^^^^^^^^^~02/01/2007~
-~11736~^~435~^14.^0^^~4~^~NC~^^^^^^^^^^~02/01/2007~
-~11736~^~601~^0.^0^^~7~^~Z~^^^^^^^^^^~08/01/1984~
-~11737~^~208~^25.^0^^~4~^~NC~^^^^^^^^^^~08/01/1984~
-~11737~^~268~^105.^0^^~4~^^^^^^^^^^^
-~11737~^~301~^102.^0^^~1~^^^^^^^^^^^~08/01/1984~
-~11737~^~304~^57.^0^^~1~^^^^^^^^^^^~08/01/1984~
-~11737~^~305~^55.^0^^~1~^^^^^^^^^^^~08/01/1984~
-~11737~^~306~^491.^0^^~1~^^^^^^^^^^^~08/01/1984~
-~11737~^~307~^324.^0^^~4~^^^^^^^^^^^~08/01/1984~
-~11737~^~318~^4385.^0^^~1~^^^^^^^^^^^~08/01/1984~
-~11737~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2002~
-~11737~^~320~^219.^0^^~1~^^^^^^^^^^^~06/01/2002~
-~11737~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~
-~11737~^~417~^10.^0^^~4~^^^^^^^^^^^~08/01/1984~
-~11737~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~
-~11737~^~432~^10.^0^^~4~^^^^^^^^^^^~12/01/1984~
-~11737~^~435~^10.^0^^~4~^~NC~^^^^^^^^^^~01/01/2001~
-~11737~^~601~^0.^0^^~7~^~Z~^^^^^^^^^^~08/01/1984~
-~11738~^~208~^62.^0^^~4~^~NC~^^^^^^^^^^~04/01/1997~
-~11738~^~268~^259.^0^^~4~^^^^^^^^^^^
-~11738~^~301~^18.^0^^~1~^^^^^^^^^^^~08/01/1984~
-~11738~^~304~^31.^0^^~1~^^^^^^^^^^^~08/01/1984~
-~11738~^~305~^73.^0^^~1~^^^^^^^^^^^~08/01/1984~
-~11738~^~306~^193.^0^^~1~^^^^^^^^^^^~08/01/1984~
-~11738~^~307~^277.^0^^~4~^^^^^^^^^^^~08/01/1984~
-~11738~^~318~^270.^0^^~1~^^^^^^^^^^^~08/01/1984~
-~11738~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2002~
-~11738~^~320~^14.^0^^~1~^^^^^^^^^^^~06/01/2002~
-~11738~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~
-~11738~^~417~^58.^0^^~4~^^^^^^^^^^^~08/01/1984~
-~11738~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~
-~11738~^~432~^58.^0^^~4~^^^^^^^^^^^~12/01/1984~
-~11738~^~435~^58.^0^^~4~^~NC~^^^^^^^^^^~01/01/2001~
-~11738~^~601~^0.^0^^~7~^~Z~^^^^^^^^^^~08/01/1984~
-~11739~^~208~^28.^0^^~4~^~NC~^^^^^^^^^^~08/01/1984~
-~11739~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2015~
-~11739~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2015~
-~11739~^~268~^118.^0^^~4~^~NC~^^^^^^^^^^~04/01/2015~
-~11739~^~301~^48.^28^2.^~1~^^^^^^^^^^^~08/01/1984~
-~11739~^~304~^25.^27^3.^~1~^^^^^^^^^^^~08/01/1984~
-~11739~^~305~^66.^27^1.^~1~^^^^^^^^^^^~08/01/1984~
-~11739~^~306~^325.^25^7.^~1~^^^^^^^^^^^~08/01/1984~
-~11739~^~307~^27.^30^1.^~1~^^^^^^^^^^^~08/01/1984~
-~11739~^~318~^16000.^0^^~1~^^^^^^^^^^^~08/01/1984~
-~11739~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2002~
-~11739~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~
-~11739~^~417~^71.^26^7.^~1~^^^^^^^^^^^~08/01/1984~
-~11739~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~
-~11739~^~432~^71.^26^7.^~1~^^^^^^^^^^^~12/01/1984~
-~11739~^~435~^71.^0^^~4~^~NC~^^^^^^^^^^~01/01/2001~
-~11739~^~601~^0.^0^^~7~^~Z~^^^^^^^^^^~08/01/1984~
-~11740~^~208~^28.^0^^~4~^~NC~^^^^^^^^^^~08/01/1984~
-~11740~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2015~
-~11740~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2015~
-~11740~^~268~^118.^0^^~4~^~NC~^^^^^^^^^^~04/01/2015~
-~11740~^~301~^48.^28^2.^~1~^^^^^^^^^^^~08/01/1984~
-~11740~^~304~^25.^27^3.^~1~^^^^^^^^^^^~08/01/1984~
-~11740~^~305~^66.^27^1.^~1~^^^^^^^^^^^~08/01/1984~
-~11740~^~306~^325.^25^7.^~1~^^^^^^^^^^^~08/01/1984~
-~11740~^~307~^27.^30^1.^~1~^^^^^^^^^^^~08/01/1984~
-~11740~^~318~^3000.^0^^~1~^^^^^^^^^^^~08/01/1984~
-~11740~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2002~
-~11740~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~
-~11740~^~417~^71.^26^7.^~1~^^^^^^^^^^^~08/01/1984~
-~11740~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~
-~11740~^~432~^71.^26^7.^~1~^^^^^^^^^^^~12/01/1984~
-~11740~^~435~^71.^0^^~4~^~NC~^^^^^^^^^^~01/01/2001~
-~11740~^~601~^0.^0^^~7~^~Z~^^^^^^^^^^~08/01/1984~
-~11741~^~208~^28.^0^^~4~^~NC~^^^^^^^^^^~08/01/1984~
-~11741~^~268~^117.^0^^~4~^^^^^^^^^^^
-~11741~^~301~^48.^28^2.^~1~^^^^^^^^^^^~08/01/1984~
-~11741~^~304~^25.^27^3.^~1~^^^^^^^^^^^~08/01/1984~
-~11741~^~305~^66.^27^1.^~1~^^^^^^^^^^^~08/01/1984~
-~11741~^~306~^325.^25^7.^~1~^^^^^^^^^^^~08/01/1984~
-~11741~^~307~^27.^30^1.^~1~^^^^^^^^^^^~08/01/1984~
-~11741~^~318~^400.^0^^~1~^^^^^^^^^^^~08/01/1984~
-~11741~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2002~
-~11741~^~320~^20.^0^^~1~^^^^^^^^^^^~06/01/2002~
-~11741~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~
-~11741~^~417~^71.^26^7.^~1~^^^^^^^^^^^~08/01/1984~
-~11741~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~
-~11741~^~432~^71.^26^7.^~1~^^^^^^^^^^^~12/01/1984~
-~11741~^~435~^71.^0^^~4~^~NC~^^^^^^^^^^~01/01/2001~
-~11741~^~601~^0.^0^^~7~^~Z~^^^^^^^^^^~08/01/1984~
-~11742~^~208~^35.^0^^~4~^~NC~^^^^^^^^^^~11/01/2006~
-~11742~^~268~^146.^0^^~4~^~NC~^^^^^^^^^^~11/01/2006~
-~11742~^~301~^40.^4^3.^~1~^~A~^^^2^^^^^^^~11/01/2006~
-~11742~^~304~^21.^4^1.^~1~^~A~^^^2^^^^^^^~11/01/2006~
-~11742~^~305~^67.^4^1.^~1~^~A~^^^2^^^^^^^~11/01/2006~
-~11742~^~306~^293.^4^11.^~1~^~A~^^^2^^^^^^^~11/01/2006~
-~11742~^~307~^262.^0^^~1~^^^^^^^^^^^~11/01/2006~
-~11742~^~318~^1548.^0^^~1~^~AS~^^^^^^^^^^~11/01/2006~
-~11742~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2002~
-~11742~^~320~^77.^0^^~1~^~AS~^^^^^^^^^^~11/01/2006~
-~11742~^~321~^929.^17^42.^~1~^~A~^^^3^407.^1681.^2^734.^1123.^~2, 3~^~11/01/2006~
-~11742~^~322~^0.^7^0.^~1~^~A~^^^3^0.^0.^^^^~1, 2, 3~^~11/01/2006~
-~11742~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~
-~11742~^~334~^0.^7^0.^~1~^~A~^^^3^0.^0.^^^^~1, 2, 3~^~11/01/2006~
-~11742~^~337~^0.^7^0.^~1~^~A~^^^3^0.^0.^^^^~1, 2, 3~^~11/01/2006~
-~11742~^~338~^1080.^12^98.^~1~^~A~^^^3^447.^1937.^1^-129.^2289.^~2, 3~^~11/01/2006~
-~11742~^~417~^108.^4^30.^~1~^~A~^^^2^^^^^^^~11/01/2006~
-~11742~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~
-~11742~^~432~^108.^4^30.^~1~^~A~^^^2^^^^^^^~11/01/2006~
-~11742~^~435~^108.^0^^~4~^~NC~^^^^^^^^^^~11/01/2006~
-~11742~^~601~^0.^0^^~7~^~Z~^^^^^^^^^^~08/01/1984~
-~11743~^~208~^28.^0^^~4~^~NC~^^^^^^^^^^~05/01/2007~
-~11743~^~268~^117.^0^^~4~^^^^^^^^^^^~05/01/2007~
-~11743~^~301~^33.^20^1.^~1~^^^^1^16.^43.^19^30.^36.^~4~^~10/01/2002~
-~11743~^~304~^13.^20^0.^~1~^^^^1^9.^20.^19^11.^14.^~4~^~10/01/2002~
-~11743~^~305~^49.^20^1.^~1~^^^^1^36.^71.^19^45.^53.^~4~^~10/01/2002~
-~11743~^~306~^142.^20^11.^~1~^^^^1^73.^311.^19^118.^164.^~4~^~10/01/2002~
-~11743~^~307~^260.^0^^~4~^^^^^^^^^^^~08/01/1984~
-~11743~^~318~^1011.^0^^~4~^~NC~^^^^^^^^^^~05/01/2007~
-~11743~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2002~
-~11743~^~320~^51.^0^^~4~^~NC~^^^^^^^^^^~05/01/2007~
-~11743~^~321~^597.^0^^~4~^~BFSY~^~11092~^^^^^^^^^~05/01/2007~
-~11743~^~322~^19.^0^^~4~^~BFSY~^~11092~^^^^^^^^^~05/01/2007~
-~11743~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~
-~11743~^~334~^1.^0^^~4~^~BFSY~^~11092~^^^^^^^^^~05/01/2007~
-~11743~^~337~^0.^0^^~4~^~BFSY~^~11092~^^^^^^^^^~05/01/2007~
-~11743~^~338~^1095.^0^^~4~^~BFSY~^~11092~^^^^^^^^^~05/01/2007~
-~11743~^~417~^56.^3^4.^~1~^^^^^^^^^^^~08/01/1984~
-~11743~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~
-~11743~^~432~^56.^3^4.^~1~^^^^^^^^^^^~05/01/2007~
-~11743~^~435~^56.^0^^~4~^~NC~^^^^^^^^^^~05/01/2007~
-~11743~^~601~^0.^0^^~7~^~Z~^^^^^^^^^^~08/01/1984~
-~11744~^~208~^28.^0^^~4~^~NC~^^^^^^^^^^~08/01/1984~
-~11744~^~268~^117.^0^^~4~^^^^^^^^^^^
-~11744~^~301~^51.^6^4.^~1~^^^^^^^^^^^~08/01/1984~
-~11744~^~304~^20.^6^0.^~1~^^^^^^^^^^^~08/01/1984~
-~11744~^~305~^55.^6^3.^~1~^^^^^^^^^^^~08/01/1984~
-~11744~^~306~^180.^6^18.^~1~^^^^^^^^^^^~08/01/1984~
-~11744~^~307~^260.^0^^~1~^^^^^^^^^^^~08/01/1984~
-~11744~^~318~^1118.^0^^~4~^~NC~^^^^^^^^^^~10/01/2002~
-~11744~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2002~
-~11744~^~320~^56.^0^^~4~^~NC~^^^^^^^^^^~10/01/2002~
-~11744~^~321~^663.^0^^~4~^~BFSN~^~11093~^^^^^^^^^~10/01/2002~
-~11744~^~322~^15.^0^^~4~^~BFSN~^~11093~^^^^^^^^^~10/01/2002~
-~11744~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~
-~11744~^~334~^1.^0^^~4~^~BFSN~^~11093~^^^^^^^^^~10/01/2002~
-~11744~^~337~^0.^0^^~4~^~BFSN~^~11093~^^^^^^^^^~10/01/2002~
-~11744~^~338~^1498.^0^^~4~^~BFSN~^~11093~^^^^^^^^^~10/01/2002~
-~11744~^~417~^30.^16^6.^~1~^^^^^^^^^^^~08/01/1984~
-~11744~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~
-~11744~^~432~^30.^16^6.^~1~^^^^^^^^^^^~10/01/2002~
-~11744~^~435~^30.^0^^~4~^~NC~^^^^^^^^^^~10/01/2002~
-~11744~^~601~^0.^0^^~7~^~Z~^^^^^^^^^^~08/01/1984~
-~11745~^~208~^36.^0^^~4~^~NC~^^^^^^^^^^~11/01/2006~
-~11745~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2005~
-~11745~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2005~
-~11745~^~268~^150.^0^^~4~^~NC~^^^^^^^^^^~11/01/2006~
-~11745~^~301~^36.^0^^~1~^^^^^^^^^^^~08/01/1984~
-~11745~^~304~^20.^0^^~1~^^^^^^^^^^^~08/01/1984~
-~11745~^~305~^56.^0^^~1~^^^^^^^^^^^~08/01/1984~
-~11745~^~306~^317.^0^^~1~^^^^^^^^^^^~08/01/1984~
-~11745~^~307~^257.^0^^~4~^^^^^^^^^^^~08/01/1984~
-~11745~^~318~^775.^0^^~1~^~AS~^^^^^^^^^^~11/01/2006~
-~11745~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2002~
-~11745~^~320~^39.^0^^~1~^~AS~^^^^^^^^^^~11/01/2006~
-~11745~^~321~^465.^5^15.^~1~^~A~^^^1^450.^480.^1^274.^655.^~4~^~06/01/2005~
-~11745~^~322~^0.^1^^~1~^~A~^^^^^^^^^^~06/01/2005~
-~11745~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~
-~11745~^~334~^0.^1^^~1~^~A~^^^^^^^^^^~06/01/2005~
-~11745~^~337~^0.^1^^~1~^~A~^^^^^^^^^^~06/01/2005~
-~11745~^~338~^1290.^1^^~1~^~A~^^^^^^^^^^~06/01/2005~
-~11745~^~417~^60.^1^^~1~^^^^^^^^^^^~08/01/1984~
-~11745~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~
-~11745~^~432~^60.^1^^~1~^^^^^^^^^^^~11/01/2006~
-~11745~^~435~^60.^0^^~4~^~NC~^^^^^^^^^^~11/01/2006~
-~11745~^~601~^0.^0^^~7~^~Z~^^^^^^^^^^~08/01/1984~
-~11746~^~208~^42.^0^^~4~^~NC~^^^^^^^^^^~04/01/2009~
-~11746~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2005~
-~11746~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2005~
-~11746~^~268~^176.^0^^~4~^^^^^^^^^^^~04/01/2009~
-~11746~^~301~^26.^18^0.^~1~^~A~^^^7^20.^32.^17^24.^27.^~4~^~06/01/2005~
-~11746~^~304~^18.^18^0.^~1~^~A~^^^7^11.^25.^17^16.^19.^~4~^~06/01/2005~
-~11746~^~305~^56.^18^2.^~1~^~A~^^^7^37.^84.^17^51.^61.^~4~^~06/01/2005~
-~11746~^~306~^290.^18^13.^~1~^~A~^^^7^176.^383.^17^261.^318.^~4~^~06/01/2005~
-~11746~^~307~^259.^0^^~4~^^^^^^^^^^^~04/01/2009~
-~11746~^~318~^926.^0^^~4~^~NC~^^^^^^^^^^~04/01/2009~
-~11746~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2002~
-~11746~^~320~^46.^0^^~4~^~NC~^^^^^^^^^^~04/01/2009~
-~11746~^~321~^555.^0^^~4~^~BFSN~^~11099~^^^^^^^^^~06/01/2005~
-~11746~^~322~^0.^0^^~4~^~BFSN~^~11099~^^^^^^^^^~02/01/2007~
-~11746~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~
-~11746~^~334~^0.^0^^~4~^~BFSN~^~11099~^^^^^^^^^~02/01/2007~
-~11746~^~337~^0.^0^^~4~^~BFSN~^~11099~^^^^^^^^^~02/01/2007~
-~11746~^~338~^1541.^0^^~4~^~BFSN~^~11099~^^^^^^^^^~06/01/2005~
-~11746~^~417~^101.^8^19.^~1~^^^^^^^^^^^~08/01/1984~
-~11746~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~
-~11746~^~432~^101.^8^19.^~1~^^^^^^^^^^^~04/01/2009~
-~11746~^~435~^101.^0^^~4~^~NC~^^^^^^^^^^~04/01/2009~
-~11746~^~601~^0.^0^^~7~^~Z~^^^^^^^^^^~08/01/1984~
-~11747~^~208~^88.^0^^~4~^~NC~^^^^^^^^^^~02/01/2007~
-~11747~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~12/01/2002~
-~11747~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~12/01/2002~
-~11747~^~268~^369.^0^^~4~^~NC~^^^^^^^^^^~02/01/2007~
-~11747~^~301~^49.^1^^~1~^^^^^^^^^^^~08/01/1984~
-~11747~^~304~^39.^1^^~1~^^^^^^^^^^^~08/01/1984~
-~11747~^~305~^93.^1^^~1~^^^^^^^^^^^~08/01/1984~
-~11747~^~306~^360.^1^^~1~^^^^^^^^^^^~08/01/1984~
-~11747~^~307~^240.^0^^~4~^^^^^^^^^^^~08/01/1984~
-~11747~^~318~^0.^0^^~4~^~NC~^^^^^^^^^^~02/01/2007~
-~11747~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2002~
-~11747~^~320~^0.^0^^~4~^~NC~^^^^^^^^^^~02/01/2007~
-~11747~^~321~^0.^0^^~4~^~BFSY~^~11104~^^^^^^^^^~02/01/2007~
-~11747~^~322~^0.^0^^~4~^~BFSY~^~11104~^^^^^^^^^~02/01/2007~
-~11747~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~
-~11747~^~334~^0.^0^^~4~^~BFSY~^~11104~^^^^^^^^^~02/01/2007~
-~11747~^~337~^0.^0^^~4~^~BFSY~^~11104~^^^^^^^^^~02/01/2007~
-~11747~^~338~^0.^0^^~4~^~BFSY~^~11104~^^^^^^^^^~02/01/2007~
-~11747~^~417~^20.^0^^~4~^^^^^^^^^^^~08/01/1984~
-~11747~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~
-~11747~^~432~^20.^0^^~4~^^^^^^^^^^^~02/01/2007~
-~11747~^~435~^20.^0^^~4~^~NC~^^^^^^^^^^~02/01/2007~
-~11747~^~601~^0.^0^^~7~^~Z~^^^^^^^^^^~08/01/1984~
-~11748~^~208~^8.^0^^~4~^~NC~^^^^^^^^^^~08/01/1984~
-~11748~^~268~^33.^0^^~4~^^^^^^^^^^^
-~11748~^~301~^59.^0^^~1~^^^^^^^^^^^~08/01/1984~
-~11748~^~304~^8.^0^^~1~^^^^^^^^^^^~08/01/1984~
-~11748~^~305~^7.^0^^~1~^^^^^^^^^^^~08/01/1984~
-~11748~^~306~^354.^0^^~1~^^^^^^^^^^^~08/01/1984~
-~11748~^~307~^240.^0^^~4~^^^^^^^^^^^~08/01/1984~
-~11748~^~318~^27.^0^^~1~^^^^^^^^^^^~08/01/1984~
-~11748~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2002~
-~11748~^~320~^1.^0^^~1~^^^^^^^^^^^~06/01/2002~
-~11748~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~
-~11748~^~417~^4.^0^^~4~^^^^^^^^^^^~08/01/1984~
-~11748~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~
-~11748~^~432~^4.^0^^~4~^^^^^^^^^^^~12/01/1984~
-~11748~^~435~^4.^0^^~4~^~NC~^^^^^^^^^^~01/01/2001~
-~11748~^~601~^0.^0^^~7~^~Z~^^^^^^^^^^~08/01/1984~
-~11749~^~208~^24.^0^^~4~^~NC~^^^^^^^^^^~08/01/1984~
-~11749~^~268~^100.^0^^~4~^^^^^^^^^^^
-~11749~^~301~^47.^36^2.^~1~^^^^^^^^^^^~08/01/1984~
-~11749~^~304~^15.^37^1.^~1~^^^^^^^^^^^~08/01/1984~
-~11749~^~305~^23.^34^1.^~1~^^^^^^^^^^^~08/01/1984~
-~11749~^~306~^246.^30^9.^~1~^^^^^^^^^^^~08/01/1984~
-~11749~^~307~^18.^46^1.^~1~^^^^^^^^^^^~08/01/1984~
-~11749~^~318~^126.^7^23.^~1~^^^^^^^^^^^~08/01/1984~
-~11749~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2002~
-~11749~^~320~^6.^7^1.^~1~^^^^^^^^^^^~06/01/2002~
-~11749~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~
-~11749~^~417~^57.^10^12.^~1~^^^^^^^^^^^~08/01/1984~
-~11749~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~
-~11749~^~432~^57.^10^12.^~1~^^^^^^^^^^^~12/01/1984~
-~11749~^~435~^57.^0^^~4~^~NC~^^^^^^^^^^~01/01/2001~
-~11749~^~601~^0.^0^^~7~^~Z~^^^^^^^^^^~08/01/1984~
-~11749~^~636~^11.^0^^~1~^^^^^^^^^^^~08/01/1984~
-~11750~^~208~^24.^0^^~4~^~NC~^^^^^^^^^^~08/01/1984~
-~11750~^~268~^100.^0^^~4~^^^^^^^^^^^
-~11750~^~301~^47.^36^2.^~1~^^^^^^^^^^^~08/01/1984~
-~11750~^~304~^15.^37^1.^~1~^^^^^^^^^^^~08/01/1984~
-~11750~^~305~^23.^34^1.^~1~^^^^^^^^^^^~08/01/1984~
-~11750~^~306~^246.^30^9.^~1~^^^^^^^^^^^~08/01/1984~
-~11750~^~307~^18.^46^1.^~1~^^^^^^^^^^^~08/01/1984~
-~11750~^~318~^126.^7^23.^~1~^^^^^^^^^^^~08/01/1984~
-~11750~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2002~
-~11750~^~320~^6.^7^1.^~1~^^^^^^^^^^^~06/01/2002~
-~11750~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~
-~11750~^~417~^57.^10^12.^~1~^^^^^^^^^^^~08/01/1984~
-~11750~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~
-~11750~^~432~^57.^10^12.^~1~^^^^^^^^^^^~12/01/1984~
-~11750~^~435~^57.^0^^~4~^~NC~^^^^^^^^^^~01/01/2001~
-~11750~^~601~^0.^0^^~7~^~Z~^^^^^^^^^^~08/01/1984~
-~11750~^~636~^11.^0^^~1~^^^^^^^^^^^~08/01/1984~
-~11751~^~208~^23.^0^^~4~^~NC~^^^^^^^^^^~03/01/2006~
-~11751~^~268~^97.^0^^~4~^~NC~^^^^^^^^^^~03/01/2006~
-~11751~^~301~^48.^4^5.^~1~^~A~^^^1^38.^65.^3^30.^66.^~2, 3~^~03/01/2006~
-~11751~^~304~^15.^4^0.^~1~^~A~^^^1^13.^17.^3^12.^17.^~2, 3~^~03/01/2006~
-~11751~^~305~^33.^4^0.^~1~^~A~^^^1^32.^35.^3^30.^35.^~2, 3~^~03/01/2006~
-~11751~^~306~^196.^4^8.^~1~^~A~^^^1^186.^221.^3^169.^222.^~2, 3~^~03/01/2006~
-~11751~^~307~^255.^0^^~4~^^^^^^^^^^^~03/01/2006~
-~11751~^~318~^80.^0^^~1~^~AS~^^^^^^^^^^~03/01/2006~
-~11751~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2002~
-~11751~^~320~^4.^0^^~1~^~AS~^^^^^^^^^^~03/01/2006~
-~11751~^~321~^48.^4^19.^~1~^~A~^^^1^18.^104.^3^-15.^110.^~2, 3~^~03/01/2006~
-~11751~^~322~^0.^4^0.^~1~^~A~^^^1^0.^0.^^^^~1, 2, 3~^~03/01/2006~
-~11751~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~
-~11751~^~334~^0.^4^0.^~1~^~A~^^^1^0.^0.^^^^~1, 2, 3~^~03/01/2006~
-~11751~^~337~^0.^4^0.^~1~^~A~^^^1^0.^0.^^^^~1, 2, 3~^~03/01/2006~
-~11751~^~338~^27.^0^^~4~^~BFSY~^~11109~^^^^^^^^^~03/01/2006~
-~11751~^~417~^30.^4^3.^~1~^~A~^^^1^24.^39.^3^20.^40.^~2, 3~^~03/01/2006~
-~11751~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~
-~11751~^~432~^30.^4^3.^~1~^~A~^^^1^24.^39.^3^20.^40.^^~03/01/2006~
-~11751~^~435~^30.^0^^~4~^~NC~^^^^^^^^^^~03/01/2006~
-~11751~^~601~^0.^0^^~7~^~Z~^^^^^^^^^^~08/01/1984~
-~11751~^~636~^10.^0^^~4~^~BFSN~^~11109~^^^^^^^^^~03/01/2006~
-~11752~^~208~^29.^0^^~4~^~NC~^^^^^^^^^^~06/01/2006~
-~11752~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2005~
-~11752~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2005~
-~11752~^~268~^122.^0^^~4~^~NC~^^^^^^^^^^~06/01/2006~
-~11752~^~301~^42.^3^2.^~1~^~A~^^^1^36.^46.^2^29.^54.^~2, 3~^~06/01/2005~
-~11752~^~304~^17.^3^1.^~1~^~A~^^^1^16.^20.^2^11.^23.^~2, 3~^~06/01/2005~
-~11752~^~305~^33.^3^2.^~1~^~A~^^^1^30.^39.^2^20.^45.^~2, 3~^~06/01/2005~
-~11752~^~306~^262.^3^28.^~1~^~A~^^^1^212.^309.^2^141.^382.^~2, 3~^~06/01/2005~
-~11752~^~307~^244.^0^^~4~^^^^^^^^^^^~06/01/2006~
-~11752~^~318~^33.^0^^~1~^~AS~^^^^^^^^^^~06/01/2006~
-~11752~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2002~
-~11752~^~320~^2.^0^^~1~^~AS~^^^^^^^^^^~06/01/2006~
-~11752~^~321~^20.^4^12.^~1~^~A~^^^1^3.^54.^3^-18.^57.^~1, 2, 3~^~06/01/2005~
-~11752~^~322~^0.^4^0.^~1~^~A~^^^1^0.^0.^^^^~1, 2, 3~^~06/01/2006~
-~11752~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~
-~11752~^~334~^0.^4^0.^~1~^~A~^^^1^0.^0.^^^^~1, 2, 3~^~06/01/2006~
-~11752~^~337~^0.^4^0.^~1~^~A~^^^1^0.^0.^^^^~1, 2, 3~^~06/01/2006~
-~11752~^~338~^20.^4^8.^~1~^~A~^^^1^0.^40.^3^-6.^46.^~1, 2, 3~^~06/01/2006~
-~11752~^~417~^24.^4^1.^~1~^~A~^^^1^22.^28.^3^20.^28.^~2, 3~^~06/01/2005~
-~11752~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~
-~11752~^~432~^24.^4^1.^~1~^~A~^^^1^22.^28.^3^20.^28.^^~06/01/2006~
-~11752~^~435~^24.^0^^~4~^~NC~^^^^^^^^^^~06/01/2006~
-~11752~^~601~^0.^0^^~7~^~Z~^^^^^^^^^^~08/01/1984~
-~11753~^~208~^24.^0^^~4~^~NC~^^^^^^^^^^~08/01/1984~
-~11753~^~268~^100.^0^^~4~^^^^^^^^^^^
-~11753~^~301~^30.^0^^~1~^^^^^^^^^^^~08/01/1984~
-~11753~^~304~^24.^0^^~1~^^^^^^^^^^^~08/01/1984~
-~11753~^~305~^33.^0^^~1~^^^^^^^^^^^~08/01/1984~
-~11753~^~306~^184.^0^^~1~^^^^^^^^^^^~08/01/1984~
-~11753~^~307~^260.^0^^~4~^^^^^^^^^^^~08/01/1984~
-~11753~^~318~^889.^0^^~1~^^^^^^^^^^^~08/01/1984~
-~11753~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2002~
-~11753~^~320~^44.^0^^~1~^^^^^^^^^^^~06/01/2002~
-~11753~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~
-~11753~^~417~^46.^0^^~4~^^^^^^^^^^^~08/01/1984~
-~11753~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~
-~11753~^~432~^46.^0^^~4~^^^^^^^^^^^~12/01/1984~
-~11753~^~435~^46.^0^^~4~^~NC~^^^^^^^^^^~01/01/2001~
-~11753~^~601~^0.^0^^~7~^~Z~^^^^^^^^^^~08/01/1984~
-~11754~^~208~^12.^0^^~4~^~NC~^^^^^^^^^^~02/01/2007~
-~11754~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~12/01/2002~
-~11754~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~12/01/2002~
-~11754~^~268~^48.^0^^~4~^~NC~^^^^^^^^^^~02/01/2007~
-~11754~^~301~^93.^1^^~1~^^^^^^^^^^^~08/01/1984~
-~11754~^~304~^11.^1^^~1~^^^^^^^^^^^~08/01/1984~
-~11754~^~305~^29.^1^^~1~^^^^^^^^^^^~08/01/1984~
-~11754~^~306~^371.^1^^~1~^^^^^^^^^^^~08/01/1984~
-~11754~^~307~^270.^0^^~4~^^^^^^^^^^^~08/01/1984~
-~11754~^~318~^4249.^0^^~4~^~NC~^^^^^^^^^^~02/01/2007~
-~11754~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2002~
-~11754~^~320~^212.^0^^~4~^~NC~^^^^^^^^^^~02/01/2007~
-~11754~^~321~^2549.^0^^~4~^~BFSN~^~11116~^^^^^^^^^~12/01/2002~
-~11754~^~322~^1.^0^^~4~^~BFSN~^~11116~^^^^^^^^^~12/01/2002~
-~11754~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~
-~11754~^~334~^0.^0^^~4~^~BFSN~^~11116~^^^^^^^^^~12/01/2002~
-~11754~^~337~^0.^0^^~4~^~BFSN~^~11116~^^^^^^^^^~12/01/2002~
-~11754~^~338~^38.^0^^~4~^~BFSN~^~11116~^^^^^^^^^~12/01/2002~
-~11754~^~417~^41.^0^^~4~^^^^^^^^^^^~08/01/1984~
-~11754~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~
-~11754~^~432~^41.^0^^~4~^^^^^^^^^^^~02/01/2007~
-~11754~^~435~^41.^0^^~4~^~NC~^^^^^^^^^^~02/01/2007~
-~11754~^~601~^0.^0^^~7~^~Z~^^^^^^^^^^~08/01/1984~
-~11755~^~208~^14.^0^^~4~^~NC~^^^^^^^^^^~08/01/1984~
-~11755~^~268~^59.^0^^~4~^^^^^^^^^^^
-~11755~^~301~^32.^0^^~1~^^^^^^^^^^^~08/01/1984~
-~11755~^~304~^10.^1^^~1~^^^^^^^^^^^~08/01/1984~
-~11755~^~305~^39.^0^^~1~^^^^^^^^^^^~08/01/1984~
-~11755~^~306~^225.^1^^~1~^^^^^^^^^^^~08/01/1984~
-~11755~^~307~^245.^0^^~4~^^^^^^^^^^^~08/01/1984~
-~11755~^~318~^967.^0^^~1~^^^^^^^^^^^~08/01/1984~
-~11755~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2002~
-~11755~^~320~^48.^0^^~1~^^^^^^^^^^^~06/01/2002~
-~11755~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~
-~11755~^~417~^53.^0^^~1~^^^^^^^^^^^~08/01/1984~
-~11755~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~
-~11755~^~432~^53.^0^^~1~^^^^^^^^^^^~08/01/2001~
-~11755~^~435~^53.^0^^~4~^~NC~^^^^^^^^^^~08/01/2001~
-~11755~^~601~^0.^0^^~7~^~Z~^^^^^^^^^^~08/01/1984~
-~11756~^~208~^20.^0^^~4~^~NC~^^^^^^^^^^~05/01/2006~
-~11756~^~268~^82.^0^^~4~^~NC~^^^^^^^^^^~05/01/2006~
-~11756~^~301~^72.^0^^~1~^^^^^^^^^^^~08/01/1984~
-~11756~^~304~^43.^0^^~1~^^^^^^^^^^^~08/01/1984~
-~11756~^~305~^23.^0^^~1~^^^^^^^^^^^~08/01/1984~
-~11756~^~306~^392.^0^^~1~^^^^^^^^^^^~08/01/1984~
-~11756~^~307~^412.^0^^~4~^^^^^^^^^^^~08/01/1984~
-~11756~^~318~^0.^0^^~1~^~AS~^^^^^^^^^^~05/01/2006~
-~11756~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2002~
-~11756~^~320~^0.^0^^~1~^~AS~^^^^^^^^^^~05/01/2006~
-~11756~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~
-~11756~^~417~^22.^0^^~4~^^^^^^^^^^^~08/01/1984~
-~11756~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~
-~11756~^~432~^22.^0^^~4~^^^^^^^^^^^~12/01/1984~
-~11756~^~435~^22.^0^^~4~^~NC~^^^^^^^^^^~05/01/2006~
-~11756~^~601~^0.^0^^~7~^~Z~^^^^^^^^^^~08/01/1984~
-~11757~^~208~^35.^0^^~4~^~NC~^^^^^^^^^^~08/01/2007~
-~11757~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2006~
-~11757~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2006~
-~11757~^~268~^147.^0^^~4~^~NC~^^^^^^^^^^~08/01/2007~
-~11757~^~301~^30.^4^1.^~1~^~A~^^^1^27.^33.^3^26.^33.^~2, 3~^~03/01/2006~
-~11757~^~304~^10.^4^0.^~1~^~A~^^^1^9.^11.^3^8.^11.^~2, 3~^~03/01/2006~
-~11757~^~305~^30.^4^1.^~1~^~A~^^^1^27.^35.^3^24.^35.^~2, 3~^~03/01/2006~
-~11757~^~306~^235.^4^18.^~1~^~A~^^^1^201.^283.^3^177.^292.^~2, 3~^~03/01/2006~
-~11757~^~307~^302.^0^^~4~^^^^^^^^^^^~08/01/1984~
-~11757~^~318~^17033.^0^^~4~^~NC~^^^^^^^^^^~08/01/2007~
-~11757~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2002~
-~11757~^~320~^852.^0^^~4~^~NC~^^^^^^^^^^~08/01/2007~
-~11757~^~321~^8332.^21^95.^~1~^~A~^^^2^4330.^10775.^3^8029.^8634.^~2, 3~^~03/01/2006~
-~11757~^~322~^3776.^21^47.^~1~^~A~^^^2^2200.^5200.^3^3623.^3928.^~2, 3~^~03/01/2006~
-~11757~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~
-~11757~^~334~^0.^0^^~4~^~BFSY~^~11124~^^^^^^^^^~08/01/2007~
-~11757~^~337~^0.^4^0.^~1~^~A~^^^1^0.^0.^^^^~1, 2, 3~^~03/01/2006~
-~11757~^~338~^194.^0^^~4~^~BFSY~^~11124~^^^^^^^^^~08/01/2007~
-~11757~^~417~^2.^4^0.^~1~^~A~^^^1^2.^2.^^^^~1, 2, 3~^~03/01/2006~
-~11757~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~
-~11757~^~432~^2.^4^0.^~1~^~A~^^^1^2.^2.^^^^^~08/01/2007~
-~11757~^~435~^2.^0^^~4~^~NC~^^^^^^^^^^~08/01/2007~
-~11757~^~601~^0.^0^^~7~^~Z~^^^^^^^^^^~08/01/1984~
-~11758~^~208~^23.^0^^~4~^~NC~^^^^^^^^^^~02/01/2007~
-~11758~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2007~
-~11758~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2007~
-~11758~^~268~^98.^0^^~4~^~NC~^^^^^^^^^^~02/01/2007~
-~11758~^~301~^31.^152^1.^~1~^~A~^^^^^^^^^^~04/01/1996~
-~11758~^~304~^9.^109^0.^~1~^^^^^^^^^^^~08/01/1984~
-~11758~^~305~^20.^152^0.^~1~^^^^^^^^^^^~08/01/1984~
-~11758~^~306~^158.^75^5.^~1~^~A~^^^^^^^^^^~04/01/1996~
-~11758~^~307~^34.^10^5.^~1~^~A~^^^^^^^^^^~04/01/1996~
-~11758~^~318~^11170.^0^^~1~^~AS~^^^^^^^^^^~02/01/2007~
-~11758~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2002~
-~11758~^~320~^558.^0^^~1~^~AS~^^^^^^^^^^~02/01/2007~
-~11758~^~321~^5331.^15^84.^~1~^~A~^^^1^3322.^7487.^1^4254.^6406.^~2, 3~^~02/01/2007~
-~11758~^~322~^2743.^14^^~1~^~A~^^^1^1909.^4280.^^^^~2, 3~^~02/01/2007~
-~11758~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~
-~11758~^~334~^0.^4^^~1~^~A~^^^1^0.^0.^^^^~2, 3~^~02/01/2007~
-~11758~^~337~^0.^4^^~1~^~A~^^^1^0.^0.^^^^~2, 3~^~02/01/2007~
-~11758~^~338~^0.^4^^~1~^~A~^^^1^0.^0.^^^^~2, 3~^~10/01/2002~
-~11758~^~417~^8.^9^0.^~1~^^^^^^^^^^^~08/01/1984~
-~11758~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~
-~11758~^~432~^8.^9^0.^~1~^^^^^^^^^^^~02/01/2007~
-~11758~^~435~^8.^0^^~4~^~NC~^^^^^^^^^^~02/01/2007~
-~11758~^~601~^0.^0^^~7~^~Z~^^^^^^^^^^~08/01/1984~
-~11759~^~208~^25.^0^^~4~^~NC~^^^^^^^^^^~04/01/1997~
-~11759~^~268~^105.^0^^~4~^^^^^^^^^^^
-~11759~^~301~^25.^6^0.^~1~^^^^^^^^^^^~08/01/1984~
-~11759~^~304~^8.^6^0.^~1~^^^^^^^^^^^~08/01/1984~
-~11759~^~305~^24.^6^0.^~1~^^^^^^^^^^^~08/01/1984~
-~11759~^~306~^179.^6^14.^~1~^^^^^^^^^^^~08/01/1984~
-~11759~^~307~^42.^0^^~1~^^^^^^^^^^^~08/01/1984~
-~11759~^~318~^11170.^0^^~1~^~AS~^^^^^^^^^^~10/01/2002~
-~11759~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2002~
-~11759~^~320~^558.^0^^~1~^~AS~^^^^^^^^^^~10/01/2002~
-~11759~^~321~^5331.^15^84.^~1~^~A~^^^1^3322.^7487.^1^4254.^6406.^~2, 3~^~10/01/2002~
-~11759~^~322~^2743.^14^^~1~^~A~^^^1^1909.^4280.^^^^~2, 3~^~10/01/2002~
-~11759~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~
-~11759~^~334~^0.^4^^~1~^~A~^^^1^0.^0.^^^^~2, 3~^~10/01/2002~
-~11759~^~337~^0.^4^^~1~^~A~^^^1^0.^0.^^^^~2, 3~^~10/01/2002~
-~11759~^~338~^0.^4^^~1~^~A~^^^1^0.^0.^^^^~2, 3~^~10/01/2002~
-~11759~^~417~^9.^6^0.^~1~^^^^^^^^^^^~08/01/1984~
-~11759~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~
-~11759~^~432~^9.^6^0.^~1~^^^^^^^^^^^~10/01/2002~
-~11759~^~435~^9.^0^^~4~^~NC~^^^^^^^^^^~10/01/2002~
-~11759~^~601~^0.^0^^~7~^~Z~^^^^^^^^^^~08/01/1984~
-~11760~^~208~^37.^0^^~4~^~NC~^^^^^^^^^^~02/01/2007~
-~11760~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2003~
-~11760~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2003~
-~11760~^~268~^155.^0^^~4~^~NC~^^^^^^^^^^~02/01/2007~
-~11760~^~301~^35.^3^0.^~1~^~A~^^^1^35.^37.^2^32.^38.^~2, 3~^~01/01/2003~
-~11760~^~304~^11.^3^0.^~1~^~A~^^^1^11.^11.^2^10.^11.^~2, 3~^~01/01/2003~
-~11760~^~305~^31.^3^0.^~1~^~A~^^^1^30.^32.^2^28.^32.^~2, 3~^~01/01/2003~
-~11760~^~306~^192.^3^5.^~1~^~A~^^^1^181.^199.^2^168.^216.^~2, 3~^~01/01/2003~
-~11760~^~307~^295.^0^^~4~^^^^^^^^^^^~08/01/1984~
-~11760~^~318~^16928.^0^^~4~^~NC~^^^^^^^^^^~02/01/2007~
-~11760~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2002~
-~11760~^~320~^846.^0^^~4~^~NC~^^^^^^^^^^~02/01/2007~
-~11760~^~321~^8199.^0^^~4~^~BFSN~^~11125~^^^^^^^^^~02/01/2007~
-~11760~^~322~^3716.^0^^~4~^~BFSN~^~11125~^^^^^^^^^~02/01/2007~
-~11760~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~
-~11760~^~334~^199.^0^^~4~^~BFSN~^~11125~^^^^^^^^^~02/01/2007~
-~11760~^~337~^0.^0^^~4~^~BFSN~^~11125~^^^^^^^^^~02/01/2007~
-~11760~^~338~^676.^0^^~4~^~BFSN~^~11125~^^^^^^^^^~02/01/2007~
-~11760~^~417~^11.^6^0.^~1~^^^^^^^^^^^~08/01/1984~
-~11760~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~
-~11760~^~432~^11.^6^0.^~1~^^^^^^^^^^^~02/01/2007~
-~11760~^~435~^11.^0^^~4~^~NC~^^^^^^^^^^~02/01/2007~
-~11760~^~601~^0.^0^^~7~^~Z~^^^^^^^^^^~08/01/1984~
-~11761~^~208~^23.^0^^~4~^~NC~^^^^^^^^^^~05/01/2007~
-~11761~^~268~^96.^0^^~4~^~NC~^^^^^^^^^^~05/01/2007~
-~11761~^~301~^16.^27^0.^~1~^^^^4^12.^21.^15^15.^17.^~2, 3~^~02/01/2007~
-~11761~^~304~^9.^28^0.^~1~^^^^4^7.^15.^16^8.^10.^~2, 3~^~02/01/2007~
-~11761~^~305~^32.^27^1.^~1~^^^^4^23.^42.^22^29.^34.^~2, 3~^~02/01/2007~
-~11761~^~306~^142.^28^6.^~1~^^^^4^90.^224.^15^127.^155.^~2, 3~^~02/01/2007~
-~11761~^~307~^242.^0^^~4~^^^^^^^^^^^~05/01/2007~
-~11761~^~318~^12.^0^^~4~^~NC~^^^^^^^^^^~05/01/2007~
-~11761~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2002~
-~11761~^~320~^1.^0^^~4~^~NC~^^^^^^^^^^~05/01/2007~
-~11761~^~321~^7.^0^^~4~^~BFSN~^~11135~^^^^^^^^^~11/01/2002~
-~11761~^~322~^0.^0^^~4~^~BFSN~^~11135~^^^^^^^^^~11/01/2002~
-~11761~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~
-~11761~^~334~^0.^0^^~4~^~BFSN~^~11135~^^^^^^^^^~11/01/2002~
-~11761~^~337~^0.^0^^~4~^~BFSN~^~11135~^^^^^^^^^~11/01/2002~
-~11761~^~338~^29.^0^^~4~^~BFSN~^~11135~^^^^^^^^^~11/01/2002~
-~11761~^~417~^44.^8^2.^~1~^^^^^^^^^^^~08/01/1984~
-~11761~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~
-~11761~^~432~^44.^8^2.^~1~^^^^^^^^^^^~05/01/2007~
-~11761~^~435~^44.^0^^~4~^~NC~^^^^^^^^^^~05/01/2007~
-~11761~^~601~^0.^0^^~7~^~Z~^^^^^^^^^^~08/01/1984~
-~11762~^~208~^17.^0^^~4~^~NC~^^^^^^^^^^~01/01/2007~
-~11762~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~11/01/2002~
-~11762~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~11/01/2002~
-~11762~^~268~^71.^0^^~4~^~NC~^^^^^^^^^^~01/01/2007~
-~11762~^~301~^17.^0^^~1~^^^^^^^^^^^~08/01/1984~
-~11762~^~304~^9.^0^^~1~^^^^^^^^^^^~08/01/1984~
-~11762~^~305~^24.^0^^~1~^^^^^^^^^^^~08/01/1984~
-~11762~^~306~^139.^0^^~1~^^^^^^^^^^^~08/01/1984~
-~11762~^~307~^254.^0^^~4~^^^^^^^^^^^~08/01/1984~
-~11762~^~318~^10.^0^^~4~^~NC~^^^^^^^^^^~01/01/2007~
-~11762~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2002~
-~11762~^~320~^0.^0^^~4~^~NC~^^^^^^^^^^~01/01/2007~
-~11762~^~321~^6.^0^^~4~^~BFSN~^~11137~^^^^^^^^^~11/01/2002~
-~11762~^~322~^0.^0^^~4~^~BFSN~^~11137~^^^^^^^^^~11/01/2002~
-~11762~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~
-~11762~^~334~^0.^0^^~4~^~BFSN~^~11137~^^^^^^^^^~11/01/2002~
-~11762~^~337~^0.^0^^~4~^~BFSN~^~11137~^^^^^^^^^~11/01/2002~
-~11762~^~338~^24.^0^^~4~^~BFSN~^~11137~^^^^^^^^^~11/01/2002~
-~11762~^~417~^41.^0^^~1~^^^^^^^^^^^~08/01/1984~
-~11762~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~
-~11762~^~432~^41.^0^^~1~^^^^^^^^^^^~01/01/2007~
-~11762~^~435~^41.^0^^~4~^~NC~^^^^^^^^^^~01/01/2007~
-~11762~^~601~^0.^0^^~7~^~Z~^^^^^^^^^^~08/01/1984~
-~11763~^~208~^27.^0^^~4~^~NC~^^^^^^^^^^~04/01/1997~
-~11763~^~268~^113.^0^^~4~^^^^^^^^^^^
-~11763~^~301~^26.^0^^~1~^^^^^^^^^^^~08/01/1984~
-~11763~^~304~^12.^0^^~1~^^^^^^^^^^^~08/01/1984~
-~11763~^~305~^66.^0^^~1~^^^^^^^^^^^~08/01/1984~
-~11763~^~306~^173.^0^^~1~^^^^^^^^^^^~08/01/1984~
-~11763~^~307~^297.^0^^~4~^^^^^^^^^^^~08/01/1984~
-~11763~^~318~^0.^0^^~1~^^^^^^^^^^^~08/01/1984~
-~11763~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2002~
-~11763~^~320~^0.^0^^~1~^^^^^^^^^^^~06/01/2002~
-~11763~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~
-~11763~^~417~^3.^0^^~4~^^^^^^^^^^^~08/01/1984~
-~11763~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~
-~11763~^~432~^3.^0^^~4~^^^^^^^^^^^~12/01/1984~
-~11763~^~435~^3.^0^^~4~^~NC~^^^^^^^^^^~01/01/2001~
-~11763~^~601~^0.^0^^~7~^~Z~^^^^^^^^^^~08/01/1984~
-~11764~^~208~^18.^0^^~4~^~NC~^^^^^^^^^^~02/01/2007~
-~11764~^~268~^74.^0^^~4~^~NC~^^^^^^^^^^~02/01/2007~
-~11764~^~301~^42.^0^^~1~^^^^^^^^^^^~08/01/1984~
-~11764~^~304~^12.^0^^~1~^^^^^^^^^^^~08/01/1984~
-~11764~^~305~^25.^0^^~1~^^^^^^^^^^^~08/01/1984~
-~11764~^~306~^284.^0^^~1~^^^^^^^^^^^~08/01/1984~
-~11764~^~307~^327.^0^^~1~^^^^^^^^^^^~08/01/1984~
-~11764~^~318~^521.^0^^~4~^~NC~^^^^^^^^^^~03/01/2010~
-~11764~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2002~
-~11764~^~320~^26.^0^^~4~^~NC~^^^^^^^^^^~03/01/2010~
-~11764~^~321~^313.^0^^~4~^~BFSY~^~11143~^^^^^^^^^~02/01/2007~
-~11764~^~322~^0.^0^^~4~^~BFSY~^~11143~^^^^^^^^^~02/01/2007~
-~11764~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~
-~11764~^~334~^0.^0^^~4~^~BFSY~^~11143~^^^^^^^^^~02/01/2007~
-~11764~^~337~^0.^0^^~4~^~BFSY~^~11143~^^^^^^^^^~02/01/2007~
-~11764~^~338~^329.^0^^~4~^~BFSY~^~11143~^^^^^^^^^~02/01/2007~
-~11764~^~417~^22.^0^^~1~^^^^^^^^^^^~08/01/1984~
-~11764~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~
-~11764~^~432~^22.^0^^~1~^^^^^^^^^^^~02/01/2007~
-~11764~^~435~^22.^0^^~4~^~NC~^^^^^^^^^^~03/01/2010~
-~11764~^~601~^0.^0^^~7~^~Z~^^^^^^^^^^~08/01/1984~
-~11764~^~636~^7.^0^^~1~^^^^^^^^^^^~08/01/1984~
-~11765~^~208~^20.^0^^~4~^~NC~^^^^^^^^^^~01/01/2007~
-~11765~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~12/01/2002~
-~11765~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~12/01/2002~
-~11765~^~268~^84.^0^^~4~^~NC~^^^^^^^^^^~01/01/2007~
-~11765~^~301~^58.^1^^~1~^^^^^^^^^^^~08/01/1984~
-~11765~^~304~^86.^1^^~1~^^^^^^^^^^^~08/01/1984~
-~11765~^~305~^33.^1^^~1~^^^^^^^^^^^~08/01/1984~
-~11765~^~306~^549.^1^^~1~^^^^^^^^^^^~08/01/1984~
-~11765~^~307~^415.^0^^~4~^^^^^^^^^^^~08/01/1984~
-~11765~^~318~^6124.^0^^~4~^~NC~^^^^^^^^^^~01/01/2007~
-~11765~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2002~
-~11765~^~320~^306.^0^^~4~^~NC~^^^^^^^^^^~01/01/2007~
-~11765~^~321~^3652.^0^^~4~^~BFSN~^~11147~^^^^^^^^^~12/01/2002~
-~11765~^~322~^45.^0^^~4~^~BFSN~^~11147~^^^^^^^^^~12/01/2002~
-~11765~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~
-~11765~^~334~^0.^0^^~4~^~BFSN~^~11147~^^^^^^^^^~12/01/2002~
-~11765~^~337~^0.^0^^~4~^~BFSN~^~11147~^^^^^^^^^~12/01/2002~
-~11765~^~338~^11015.^0^^~4~^~BFSN~^~11147~^^^^^^^^^~12/01/2002~
-~11765~^~417~^9.^0^^~4~^^^^^^^^^^^~08/01/1984~
-~11765~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~
-~11765~^~432~^9.^0^^~4~^^^^^^^^^^^~01/01/2007~
-~11765~^~435~^9.^0^^~4~^~NC~^^^^^^^^^^~01/01/2007~
-~11765~^~601~^0.^0^^~7~^~Z~^^^^^^^^^^~08/01/1984~
-~11766~^~208~^22.^0^^~4~^~NC~^^^^^^^^^^~11/01/2014~
-~11766~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~11/01/2014~
-~11766~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~11/01/2014~
-~11766~^~268~^90.^0^^~4~^~NC~^^^^^^^^^^~11/01/2014~
-~11766~^~301~^13.^1^^~1~^^^^^^^^^^^~08/01/1984~
-~11766~^~304~^12.^1^^~1~^^^^^^^^^^^~08/01/1984~
-~11766~^~305~^29.^1^^~1~^^^^^^^^^^^~08/01/1984~
-~11766~^~306~^173.^1^^~1~^^^^^^^^^^^~08/01/1984~
-~11766~^~307~^237.^0^^~4~^^^^^^^^^^^~08/01/1984~
-~11766~^~318~^0.^0^^~4~^~NC~^^^^^^^^^^~07/01/2015~
-~11766~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2002~
-~11766~^~320~^0.^0^^~4~^~NC~^^^^^^^^^^~11/01/2014~
-~11766~^~321~^0.^0^^~4~^~BFSY~^~11149~^^^^^^^^^~11/01/2014~
-~11766~^~322~^0.^0^^~4~^~BFSY~^~11149~^^^^^^^^^~11/01/2014~
-~11766~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~
-~11766~^~334~^0.^0^^~4~^~BFSY~^~11149~^^^^^^^^^~11/01/2014~
-~11766~^~337~^0.^0^^~4~^~BFSY~^~11149~^^^^^^^^^~11/01/2014~
-~11766~^~338~^0.^0^^~4~^~BFSY~^~11149~^^^^^^^^^~11/01/2014~
-~11766~^~417~^18.^0^^~4~^^^^^^^^^^^~08/01/1984~
-~11766~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~
-~11766~^~432~^18.^0^^~4~^^^^^^^^^^^~12/01/1984~
-~11766~^~435~^18.^0^^~4~^~NC~^^^^^^^^^^~05/01/2006~
-~11766~^~601~^0.^0^^~7~^~Z~^^^^^^^^^^~08/01/1984~
-~11767~^~208~^20.^0^^~4~^~NC~^^^^^^^^^^~03/01/2007~
-~11767~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~12/01/2002~
-~11767~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~12/01/2002~
-~11767~^~268~^84.^0^^~4~^^^^^^^^^^^~03/01/2007~
-~11767~^~301~^69.^1^^~1~^^^^^^^^^^^~08/01/1984~
-~11767~^~304~^18.^1^^~1~^^^^^^^^^^^~08/01/1984~
-~11767~^~305~^43.^1^^~1~^^^^^^^^^^^~08/01/1984~
-~11767~^~306~^569.^1^^~1~^^^^^^^^^^^~08/01/1984~
-~11767~^~307~^289.^0^^~4~^^^^^^^^^^^~08/01/1984~
-~11767~^~318~^2572.^0^^~1~^~AS~^^^^^^^^^^~03/01/2007~
-~11767~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2002~
-~11767~^~320~^129.^0^^~1~^~AS~^^^^^^^^^^~03/01/2007~
-~11767~^~321~^1543.^4^98.^~1~^~A~^^^1^1280.^1750.^3^1230.^1855.^~4~^~12/01/2002~
-~11767~^~322~^0.^1^^~1~^~A~^^^^^^^^^^~12/01/2002~
-~11767~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~
-~11767~^~334~^0.^1^^~1~^~A~^^^^^^^^^^~12/01/2002~
-~11767~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~12/01/2002~
-~11767~^~338~^3467.^3^238.^~1~^~A~^^^1^3019.^3834.^2^2440.^4494.^~4~^~12/01/2002~
-~11767~^~417~^50.^0^^~4~^^^^^^^^^^^~08/01/1984~
-~11767~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~
-~11767~^~432~^50.^0^^~4~^^^^^^^^^^^~03/01/2007~
-~11767~^~435~^50.^0^^~4~^~NC~^^^^^^^^^^~03/01/2007~
-~11767~^~601~^0.^0^^~7~^~Z~^^^^^^^^^^~08/01/1984~
-~11768~^~208~^33.^0^^~4~^~NC~^^^^^^^^^^~08/01/2012~
-~11768~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2005~
-~11768~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2005~
-~11768~^~268~^137.^0^^~4~^~NC~^^^^^^^^^^~08/01/2012~
-~11768~^~301~^141.^29^7.^~6~^~JA~^^^5^50.^229.^19^125.^156.^~2, 3~^~08/01/2012~
-~11768~^~304~^21.^30^0.^~6~^~JA~^^^5^8.^33.^17^19.^23.^~2, 3~^~08/01/2012~
-~11768~^~305~^32.^29^1.^~6~^~JA~^^^5^16.^51.^19^28.^35.^~2, 3~^~08/01/2012~
-~11768~^~306~^117.^30^8.^~6~^~JA~^^^5^29.^226.^23^100.^133.^~2, 3~^~08/01/2012~
-~11768~^~307~^252.^0^^~4~^~BFSY~^^^^^^^^^^~11/01/1996~
-~11768~^~318~^7600.^0^^~1~^~AS~^^^^^^^^^^~08/01/2012~
-~11768~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2002~
-~11768~^~320~^380.^0^^~1~^~AS~^^^^^^^^^^~08/01/2012~
-~11768~^~321~^4513.^11^^~1~^~A~^^^2^1510.^5427.^^^^~2, 3~^~08/01/2012~
-~11768~^~322~^68.^6^56.^~1~^~A~^^^2^0.^180.^2^-175.^310.^~4~^~08/01/2012~
-~11768~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~
-~11768~^~334~^26.^6^13.^~1~^~A~^^^2^0.^40.^2^-30.^83.^~4~^~08/01/2012~
-~11768~^~337~^0.^4^0.^~1~^~A~^^^2^0.^0.^1^0.^0.^~1, 4~^~12/01/2002~
-~11768~^~338~^6197.^5^1647.^~1~^~A~^^^2^3204.^8887.^2^-891.^13285.^~4~^~08/01/2012~
-~11768~^~417~^16.^1^^~1~^~A~^^^^^^^^^^~08/01/2012~
-~11768~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~
-~11768~^~432~^16.^1^^~1~^~A~^^^^^^^^^^~08/01/2012~
-~11768~^~435~^16.^0^^~4~^~NC~^^^^^^^^^^~08/01/2012~
-~11768~^~601~^0.^0^^~7~^~Z~^^^^^^^^^^~08/01/1984~
-~11769~^~208~^36.^0^^~4~^~NC~^^^^^^^^^^~01/01/2007~
-~11769~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~12/01/2002~
-~11769~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2007~
-~11769~^~268~^151.^0^^~4~^~NC~^^^^^^^^^^~01/01/2007~
-~11769~^~301~^210.^0^^~1~^^^^^^^^^^^~08/01/1984~
-~11769~^~304~^30.^0^^~1~^^^^^^^^^^^~08/01/1984~
-~11769~^~305~^27.^0^^~1~^^^^^^^^^^^~08/01/1984~
-~11769~^~306~^251.^0^^~1~^^^^^^^^^^^~08/01/1984~
-~11769~^~307~^286.^0^^~4~^^^^^^^^^^^~08/01/1984~
-~11769~^~318~^11493.^0^^~4~^~NC~^^^^^^^^^^~01/01/2007~
-~11769~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2002~
-~11769~^~320~^575.^0^^~4~^~NC~^^^^^^^^^^~01/01/2007~
-~11769~^~321~^6818.^0^^~4~^~BFSN~^~11162~^^^^^^^^^~12/01/2002~
-~11769~^~322~^127.^0^^~4~^~BFSN~^~11162~^^^^^^^^^~12/01/2002~
-~11769~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~
-~11769~^~334~^28.^0^^~4~^~BFSN~^~11162~^^^^^^^^^~12/01/2002~
-~11769~^~337~^0.^0^^~4~^~BFSN~^~11162~^^^^^^^^^~12/01/2002~
-~11769~^~338~^10898.^0^^~4~^~BFSN~^~11162~^^^^^^^^^~12/01/2002~
-~11769~^~417~^76.^6^12.^~1~^^^^^^^^^^^~08/01/1984~
-~11769~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~
-~11769~^~432~^76.^6^12.^~1~^^^^^^^^^^^~01/01/2007~
-~11769~^~435~^76.^0^^~4~^~NC~^^^^^^^^^^~01/01/2007~
-~11769~^~601~^0.^0^^~7~^~Z~^^^^^^^^^^~08/01/1984~
-~11770~^~208~^96.^0^^~4~^~NC~^^^^^^^^^^~04/01/2009~
-~11770~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2007~
-~11770~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2007~
-~11770~^~268~^401.^0^^~4~^~NC~^^^^^^^^^^~04/01/2009~
-~11770~^~301~^3.^30^0.^~6~^~JA~^^^5^1.^6.^11^2.^3.^~2, 3~^~04/01/2009~
-~11770~^~304~^26.^31^1.^~6~^~JA~^^^5^9.^41.^20^23.^29.^~2, 3~^~04/01/2009~
-~11770~^~305~^77.^30^2.^~6~^~JA~^^^5^45.^102.^16^72.^81.^~2, 3~^~04/01/2009~
-~11770~^~306~^218.^31^7.^~6~^~JA~^^^5^125.^302.^18^201.^235.^~2, 3~^~04/01/2009~
-~11770~^~307~^253.^0^^~4~^^^^^^^^^^^~08/01/1984~
-~11770~^~318~^263.^0^^~4~^~NC~^^^^^^^^^^~04/01/2009~
-~11770~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2002~
-~11770~^~320~^13.^0^^~4~^~NC~^^^^^^^^^^~04/01/2009~
-~11770~^~321~^66.^0^^~4~^~BFSN~^~11179~^^^^^^^^^~09/01/2002~
-~11770~^~322~^23.^0^^~4~^~BFSN~^~11179~^^^^^^^^^~09/01/2002~
-~11770~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~
-~11770~^~334~^161.^0^^~4~^~BFSN~^~11179~^^^^^^^^^~09/01/2002~
-~11770~^~337~^0.^0^^~4~^~BFSN~^~11179~^^^^^^^^^~02/01/2007~
-~11770~^~338~^906.^0^^~4~^~BFSN~^~11179~^^^^^^^^^~02/01/2007~
-~11770~^~417~^23.^1^^~1~^~A~^^^^^^^^^^~04/01/2009~
-~11770~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~
-~11770~^~432~^23.^1^^~1~^~A~^^^^^^^^^^~04/01/2009~
-~11770~^~435~^23.^0^^~4~^~NC~^^^^^^^^^^~04/01/2009~
-~11770~^~601~^0.^0^^~7~^~Z~^^^^^^^^^^~08/01/1984~
-~11771~^~208~^61.^0^^~4~^~NC~^^^^^^^^^^~04/01/2011~
-~11771~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2011~
-~11771~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2011~
-~11771~^~268~^254.^0^^~4~^~NC~^^^^^^^^^^~04/01/2011~
-~11771~^~301~^4.^60^0.^~6~^~JA~^^^10^2.^10.^32^3.^4.^~2, 3~^~04/01/2011~
-~11771~^~304~^15.^39^0.^~6~^~JA~^^^7^9.^20.^28^14.^15.^~2, 3~^~04/01/2011~
-~11771~^~305~^46.^38^0.^~6~^~JA~^^^7^37.^54.^25^45.^47.^~2, 3~^~04/01/2011~
-~11771~^~306~^136.^50^2.^~6~^~JA~^^^9^108.^220.^21^131.^140.^~2, 3~^~04/01/2011~
-~11771~^~307~^12.^33^2.^~1~^~A~^^^^^^^^^^~04/01/1996~
-~11771~^~318~^34.^0^^~1~^~AS~^^^^^^^^^^~04/01/2011~
-~11771~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2002~
-~11771~^~320~^2.^0^^~1~^~AS~^^^^^^^^^^~04/01/2011~
-~11771~^~321~^9.^8^^~1~^~A~^^^1^8.^9.^^^^~2, 3~^~04/01/2011~
-~11771~^~322~^10.^8^^~1~^~A~^^^1^8.^12.^^^^~2, 3~^~04/01/2011~
-~11771~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~
-~11771~^~334~^14.^8^^~1~^~A~^^^1^10.^18.^^^^~2, 3~^~04/01/2011~
-~11771~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2011~
-~11771~^~338~^650.^6^^~1~^~A~^^^1^520.^780.^^^^~2, 3~^~04/01/2011~
-~11771~^~417~^38.^3^6.^~1~^^^^^^^^^^^~08/01/1984~
-~11771~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~
-~11771~^~432~^38.^3^6.^~1~^^^^^^^^^^^~09/01/2002~
-~11771~^~435~^38.^0^^~4~^~NC~^^^^^^^^^^~03/01/2003~
-~11771~^~601~^0.^0^^~7~^~Z~^^^^^^^^^^~08/01/1984~
-~11772~^~208~^72.^0^^~4~^~NC~^^^^^^^^^^~02/01/2007~
-~11772~^~268~^301.^0^^~4~^^^^^^^^^^^~02/01/2007~
-~11772~^~301~^3.^287^0.^~1~^^^^^^^^^^^~08/01/1984~
-~11772~^~304~^17.^226^0.^~1~^^^^^^^^^^^~08/01/1984~
-~11772~^~305~^51.^251^1.^~1~^^^^^^^^^^^~08/01/1984~
-~11772~^~306~^134.^250^2.^~1~^^^^^^^^^^^~08/01/1984~
-~11772~^~307~^3.^0^^~1~^^^^^^^^^^^~08/01/1984~
-~11772~^~318~^74.^0^^~4~^~NC~^^^^^^^^^^~02/01/2007~
-~11772~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2002~
-~11772~^~320~^4.^0^^~4~^~NC~^^^^^^^^^^~02/01/2007~
-~11772~^~321~^30.^0^^~4~^~BFSN~^~11170~^^^^^^^^^~09/01/2002~
-~11772~^~322~^23.^0^^~4~^~BFSN~^~11170~^^^^^^^^^~09/01/2002~
-~11772~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~
-~11772~^~334~^6.^0^^~4~^~BFSN~^~11170~^^^^^^^^^~09/01/2002~
-~11772~^~337~^0.^0^^~4~^~BFSN~^~11170~^^^^^^^^^~09/01/2002~
-~11772~^~338~^949.^0^^~4~^~BFSN~^~11170~^^^^^^^^^~09/01/2002~
-~11772~^~417~^45.^0^^~1~^^^^^^^^^^^~08/01/1984~
-~11772~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~
-~11772~^~432~^45.^0^^~1~^^^^^^^^^^^~02/01/2007~
-~11772~^~435~^45.^0^^~4~^~NC~^^^^^^^^^^~02/01/2007~
-~11772~^~601~^0.^0^^~7~^~Z~^^^^^^^^^^~08/01/1984~
-~11773~^~208~^79.^0^^~4~^~NC~^^^^^^^^^^~08/01/1984~
-~11773~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2015~
-~11773~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2015~
-~11773~^~268~^331.^0^^~4~^^^^^^^^^^^~02/01/2007~
-~11773~^~301~^5.^69^0.^~1~^^^^^^^^^^^~08/01/1984~
-~11773~^~304~^23.^57^0.^~1~^^^^^^^^^^^~08/01/1984~
-~11773~^~305~^64.^63^1.^~1~^^^^^^^^^^^~08/01/1984~
-~11773~^~306~^186.^66^5.^~1~^^^^^^^^^^^~08/01/1984~
-~11773~^~307~^3.^0^^~1~^^^^^^^^^^^~08/01/1984~
-~11773~^~318~^81.^0^^~4~^~NC~^^^^^^^^^^~02/01/2007~
-~11773~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2002~
-~11773~^~320~^4.^0^^~4~^~NC~^^^^^^^^^^~02/01/2007~
-~11773~^~321~^33.^0^^~4~^~BFSN~^~11170~^^^^^^^^^~09/01/2002~
-~11773~^~322~^26.^0^^~4~^~BFSN~^~11170~^^^^^^^^^~09/01/2002~
-~11773~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~
-~11773~^~334~^6.^0^^~4~^~BFSN~^~11170~^^^^^^^^^~09/01/2002~
-~11773~^~337~^0.^0^^~4~^~BFSN~^~11170~^^^^^^^^^~09/01/2002~
-~11773~^~338~^1045.^0^^~4~^~BFSN~^~11170~^^^^^^^^^~09/01/2002~
-~11773~^~417~^49.^0^^~1~^^^^^^^^^^^~08/01/1984~
-~11773~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~
-~11773~^~432~^49.^0^^~1~^^^^^^^^^^^~02/01/2007~
-~11773~^~435~^49.^0^^~4~^~NC~^^^^^^^^^^~02/01/2007~
-~11773~^~601~^0.^0^^~7~^~Z~^^^^^^^^^^~08/01/1984~
-~11774~^~208~^79.^0^^~4~^~NC~^^^^^^^^^^~05/01/2006~
-~11774~^~268~^329.^0^^~4~^~NC~^^^^^^^^^^~05/01/2006~
-~11774~^~301~^3.^2^^~1~^^^^2^2.^7.^23^^^^~09/01/2002~
-~11774~^~304~^28.^2^^~1~^^^^2^19.^41.^23^^^^~09/01/2002~
-~11774~^~305~^79.^2^^~1~^^^^2^60.^102.^23^^^^~09/01/2002~
-~11774~^~306~^233.^2^^~1~^^^^2^130.^302.^23^^^^~09/01/2002~
-~11774~^~307~^245.^0^^~4~^^^^^^^^^^^~02/01/1995~
-~11774~^~318~^199.^0^^~4~^~NC~^^^^^^^^^^~05/01/2006~
-~11774~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2002~
-~11774~^~320~^10.^0^^~4~^~NC~^^^^^^^^^^~05/01/2006~
-~11774~^~321~^50.^4^1.^~6~^~JA~^^^2^45.^52.^3^44.^55.^~4~^~09/01/2002~
-~11774~^~322~^17.^4^2.^~6~^~JA~^^^2^13.^24.^3^9.^25.^~4~^~09/01/2002~
-~11774~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~
-~11774~^~334~^122.^4^5.^~6~^~JA~^^^2^108.^135.^3^103.^139.^~4~^~09/01/2002~
-~11774~^~337~^0.^0^^~4~^~BFSN~^~11176~^^^^^^^^^~09/01/2002~
-~11774~^~338~^730.^5^230.^~1~^~A~^^^1^500.^960.^1^-2192.^3652.^~4~^~09/01/2002~
-~11774~^~417~^35.^4^2.^~1~^^^^1^28.^42.^3^25.^43.^~4~^~09/01/2002~
-~11774~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~
-~11774~^~432~^35.^4^2.^~1~^^^^1^28.^42.^3^25.^43.^^~09/01/2002~
-~11774~^~435~^35.^0^^~4~^~NC~^^^^^^^^^^~05/01/2006~
-~11774~^~601~^0.^0^^~7~^~Z~^^^^^^^^^^~08/01/1984~
-~11775~^~208~^94.^0^^~4~^~NC~^^^^^^^^^^~03/01/2010~
-~11775~^~268~^391.^0^^~4~^~NC~^^^^^^^^^^~03/01/2010~
-~11775~^~301~^3.^0^^~1~^^^^^^^^^^^~08/01/1984~
-~11775~^~304~^29.^0^^~1~^^^^^^^^^^^~08/01/1984~
-~11775~^~305~^75.^0^^~1~^^^^^^^^^^^~08/01/1984~
-~11775~^~306~^251.^0^^~1~^^^^^^^^^^^~08/01/1984~
-~11775~^~307~^240.^0^^~4~^^^^^^^^^^^~08/01/1984~
-~11775~^~318~^232.^0^^~4~^~NC~^^^^^^^^^^~03/01/2010~
-~11775~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2002~
-~11775~^~320~^12.^0^^~4~^~NC~^^^^^^^^^^~03/01/2010~
-~11775~^~321~^58.^0^^~4~^~BFSN~^~11179~^^^^^^^^^~09/01/2002~
-~11775~^~322~^20.^0^^~4~^~BFSN~^~11179~^^^^^^^^^~09/01/2002~
-~11775~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~
-~11775~^~334~^142.^0^^~4~^~BFSN~^~11179~^^^^^^^^^~09/01/2002~
-~11775~^~337~^0.^0^^~4~^~BFSN~^~11179~^^^^^^^^^~09/01/2002~
-~11775~^~338~^852.^0^^~4~^~BFSN~^~11179~^^^^^^^^^~09/01/2002~
-~11775~^~417~^31.^0^^~1~^^^^^^^^^^^~08/01/1984~
-~11775~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~
-~11775~^~432~^31.^0^^~1~^^^^^^^^^^^~09/01/2002~
-~11775~^~435~^31.^0^^~4~^~NC~^^^^^^^^^^~03/01/2010~
-~11775~^~601~^0.^0^^~7~^~Z~^^^^^^^^^^~08/01/1984~
-~11777~^~208~^94.^0^^~4~^~NC~^^^^^^^^^^~03/01/2007~
-~11777~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~12/01/2002~
-~11777~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~12/01/2002~
-~11777~^~268~^395.^0^^~4~^~NC~^^^^^^^^^^~03/01/2007~
-~11777~^~301~^128.^0^^~1~^^^^^^^^^^^~08/01/1984~
-~11777~^~304~^52.^0^^~1~^^^^^^^^^^^~08/01/1984~
-~11777~^~305~^51.^0^^~1~^^^^^^^^^^^~08/01/1984~
-~11777~^~306~^418.^0^^~1~^^^^^^^^^^^~08/01/1984~
-~11777~^~307~^240.^0^^~1~^^^^^^^^^^^~08/01/1984~
-~11777~^~318~^791.^0^^~4~^~NC~^^^^^^^^^^~03/01/2007~
-~11777~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2002~
-~11777~^~320~^40.^0^^~4~^~NC~^^^^^^^^^^~03/01/2007~
-~11777~^~321~^475.^0^^~4~^~O~^^^^^^^^^^~12/01/2002~
-~11777~^~322~^0.^0^^~4~^~T~^^^^^^^^^^~12/01/2002~
-~11777~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~
-~11777~^~334~^0.^0^^~4~^~T~^^^^^^^^^^~12/01/2002~
-~11777~^~337~^0.^0^^~4~^~T~^^^^^^^^^^~04/01/2003~
-~11777~^~338~^0.^0^^~4~^~T~^^^^^^^^^^~12/01/2002~
-~11777~^~417~^127.^0^^~1~^^^^^^^^^^^~08/01/1984~
-~11777~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~
-~11777~^~432~^127.^0^^~1~^^^^^^^^^^^~03/01/2007~
-~11777~^~435~^127.^0^^~4~^~NC~^^^^^^^^^^~03/01/2007~
-~11777~^~601~^0.^0^^~7~^~Z~^^^^^^^^^^~08/01/1984~
-~11778~^~208~^131.^0^^~4~^~NC~^^^^^^^^^^~05/01/2007~
-~11778~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~12/01/2002~
-~11778~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~12/01/2002~
-~11778~^~268~^547.^0^^~4~^~NC~^^^^^^^^^^~05/01/2007~
-~11778~^~301~^23.^0^^~1~^^^^^^^^^^^~08/01/1984~
-~11778~^~304~^50.^0^^~1~^^^^^^^^^^^~08/01/1984~
-~11778~^~305~^122.^0^^~1~^^^^^^^^^^^~08/01/1984~
-~11778~^~306~^375.^0^^~1~^^^^^^^^^^^~08/01/1984~
-~11778~^~307~^241.^0^^~4~^^^^^^^^^^^~08/01/1984~
-~11778~^~318~^75.^0^^~4~^~NC~^^^^^^^^^^~05/01/2007~
-~11778~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2002~
-~11778~^~320~^4.^0^^~4~^~NC~^^^^^^^^^^~05/01/2007~
-~11778~^~321~^45.^0^^~4~^~O~^^^^^^^^^^~12/01/2002~
-~11778~^~322~^0.^0^^~4~^~BFSN~^~11192~^^^^^^^^^~12/01/2002~
-~11778~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~
-~11778~^~334~^0.^0^^~4~^~BFSN~^~11192~^^^^^^^^^~12/01/2002~
-~11778~^~337~^0.^0^^~4~^~BFSN~^~11192~^^^^^^^^^~12/01/2002~
-~11778~^~338~^0.^0^^~4~^~BFSN~^~11192~^^^^^^^^^~12/01/2002~
-~11778~^~417~^141.^0^^~1~^^^^^^^^^^^~08/01/1984~
-~11778~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~
-~11778~^~432~^141.^0^^~1~^^^^^^^^^^^~05/01/2007~
-~11778~^~435~^141.^0^^~4~^~NC~^^^^^^^^^^~05/01/2007~
-~11778~^~601~^0.^0^^~7~^~Z~^^^^^^^^^^~08/01/1984~
-~11779~^~208~^34.^0^^~4~^~NC~^^^^^^^^^^~08/01/1984~
-~11779~^~268~^142.^0^^~4~^^^^^^^^^^^
-~11779~^~301~^55.^0^^~1~^^^^^^^^^^^~08/01/1984~
-~11779~^~304~^41.^0^^~4~^^^^^^^^^^^~08/01/1984~
-~11779~^~305~^49.^0^^~1~^^^^^^^^^^^~08/01/1984~
-~11779~^~306~^196.^0^^~1~^^^^^^^^^^^~08/01/1984~
-~11779~^~307~^239.^0^^~4~^^^^^^^^^^^~08/01/1984~
-~11779~^~318~^1400.^0^^~1~^^^^^^^^^^^~08/01/1984~
-~11779~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2002~
-~11779~^~320~^70.^0^^~1~^^^^^^^^^^^~06/01/2002~
-~11779~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~
-~11779~^~417~^26.^0^^~4~^^^^^^^^^^^~08/01/1984~
-~11779~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~
-~11779~^~432~^26.^0^^~4~^^^^^^^^^^^~12/01/1984~
-~11779~^~435~^26.^0^^~4~^~NC~^^^^^^^^^^~01/01/2001~
-~11779~^~601~^0.^0^^~7~^~Z~^^^^^^^^^^~08/01/1984~
-~11780~^~208~^22.^0^^~4~^~NC~^^^^^^^^^^~08/01/1984~
-~11780~^~268~^92.^0^^~4~^^^^^^^^^^^
-~11780~^~301~^69.^1^^~1~^^^^^^^^^^^~08/01/1984~
-~11780~^~304~^62.^1^^~1~^^^^^^^^^^^~08/01/1984~
-~11780~^~305~^42.^1^^~1~^^^^^^^^^^^~08/01/1984~
-~11780~^~306~^351.^1^^~1~^^^^^^^^^^^~08/01/1984~
-~11780~^~307~^242.^0^^~4~^^^^^^^^^^^~08/01/1984~
-~11780~^~318~^576.^0^^~1~^^^^^^^^^^^~08/01/1984~
-~11780~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2002~
-~11780~^~320~^29.^0^^~1~^^^^^^^^^^^~06/01/2002~
-~11780~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~
-~11780~^~417~^60.^0^^~4~^^^^^^^^^^^~08/01/1984~
-~11780~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~
-~11780~^~432~^60.^0^^~4~^^^^^^^^^^^~12/01/1984~
-~11780~^~435~^60.^0^^~4~^~NC~^^^^^^^^^^~01/01/2001~
-~11780~^~601~^0.^0^^~7~^~Z~^^^^^^^^^^~08/01/1984~
-~11781~^~208~^23.^0^^~4~^~NC~^^^^^^^^^^~03/01/2007~
-~11781~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2003~
-~11781~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2003~
-~11781~^~268~^96.^0^^~4~^^^^^^^^^^^~03/01/2007~
-~11781~^~301~^61.^0^^~1~^^^^^^^^^^^~08/01/1984~
-~11781~^~304~^26.^0^^~4~^^^^^^^^^^^~08/01/1984~
-~11781~^~305~^48.^0^^~1~^^^^^^^^^^^~08/01/1984~
-~11781~^~306~^353.^0^^~1~^^^^^^^^^^^~08/01/1984~
-~11781~^~307~^244.^0^^~4~^^^^^^^^^^^~08/01/1984~
-~11781~^~318~^4649.^0^^~4~^~NC~^^^^^^^^^^~03/01/2007~
-~11781~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2002~
-~11781~^~320~^232.^0^^~4~^~NC~^^^^^^^^^^~03/01/2007~
-~11781~^~321~^2790.^0^^~4~^~BFSY~^~11203~^^^^^^^^^~03/01/2007~
-~11781~^~322~^0.^0^^~4~^~BFSY~^~11203~^^^^^^^^^~03/01/2007~
-~11781~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~
-~11781~^~334~^0.^0^^~4~^~BFSY~^~11203~^^^^^^^^^~03/01/2007~
-~11781~^~337~^0.^0^^~4~^~BFSY~^~11203~^^^^^^^^^~03/01/2007~
-~11781~^~338~^8402.^0^^~4~^~BFSY~^~11203~^^^^^^^^^~03/01/2007~
-~11781~^~417~^37.^0^^~4~^^^^^^^^^^^~08/01/1984~
-~11781~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~
-~11781~^~432~^37.^0^^~4~^^^^^^^^^^^~03/01/2007~
-~11781~^~435~^37.^0^^~4~^~NC~^^^^^^^^^^~03/01/2007~
-~11781~^~601~^0.^0^^~7~^~Z~^^^^^^^^^^~08/01/1984~
-~11782~^~208~^33.^0^^~4~^~NC~^^^^^^^^^^~03/01/2007~
-~11782~^~268~^138.^0^^~4~^^^^^^^^^^^~03/01/2007~
-~11782~^~301~^140.^0^^~1~^^^^^^^^^^^~08/01/1984~
-~11782~^~304~^24.^0^^~4~^^^^^^^^^^^~08/01/1984~
-~11782~^~305~^42.^0^^~1~^^^^^^^^^^^~08/01/1984~
-~11782~^~306~^232.^0^^~1~^^^^^^^^^^^~08/01/1984~
-~11782~^~307~^280.^0^^~4~^^^^^^^^^^^~08/01/1984~
-~11782~^~318~^14544.^0^^~4~^~NC~^^^^^^^^^^~03/01/2007~
-~11782~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2002~
-~11782~^~320~^727.^0^^~4~^~NC~^^^^^^^^^^~03/01/2007~
-~11782~^~321~^8727.^0^^~4~^~BFSY~^~11207~^^^^^^^^^~03/01/2007~
-~11782~^~322~^0.^0^^~4~^~BFSY~^~11207~^^^^^^^^^~03/01/2007~
-~11782~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~
-~11782~^~334~^0.^0^^~4~^~BFSY~^~11207~^^^^^^^^^~03/01/2007~
-~11782~^~337~^0.^0^^~4~^~BFSY~^~11207~^^^^^^^^^~03/01/2007~
-~11782~^~338~^3398.^0^^~4~^~BFSY~^~11207~^^^^^^^^^~03/01/2007~
-~11782~^~417~^13.^0^^~4~^^^^^^^^^^^~08/01/1984~
-~11782~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~
-~11782~^~432~^13.^0^^~4~^^^^^^^^^^^~03/01/2007~
-~11782~^~435~^13.^0^^~4~^~NC~^^^^^^^^^^~03/01/2007~
-~11782~^~601~^0.^0^^~7~^~Z~^^^^^^^^^^~08/01/1984~
-~11783~^~208~^33.^0^^~4~^~NC~^^^^^^^^^^~03/01/2007~
-~11783~^~268~^138.^0^^~4~^~NC~^^^^^^^^^^~03/01/2007~
-~11783~^~301~^6.^18^0.^~1~^~A~^^^7^5.^9.^6^5.^6.^~2~^~01/01/2003~
-~11783~^~304~^11.^21^1.^~6~^~JA~^^^8^8.^20.^7^8.^12.^~2~^~01/01/2003~
-~11783~^~305~^15.^18^0.^~1~^~A~^^^7^10.^21.^6^13.^16.^~2~^~01/01/2003~
-~11783~^~306~^123.^18^8.^~1~^~A~^^^7^93.^175.^6^102.^144.^~2~^~01/01/2003~
-~11783~^~307~^239.^0^^~4~^^^^^^^^^^^~08/01/1984~
-~11783~^~318~^37.^0^^~4~^~NC~^^^^^^^^^^~03/01/2007~
-~11783~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2002~
-~11783~^~320~^2.^0^^~4~^~NC~^^^^^^^^^^~03/01/2007~
-~11783~^~321~^22.^0^^~4~^~BFSN~^~11209~^^^^^^^^^~01/01/2003~
-~11783~^~322~^0.^0^^~4~^~BFSN~^~11209~^^^^^^^^^~01/01/2003~
-~11783~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~
-~11783~^~334~^0.^0^^~4~^~BFSN~^~11209~^^^^^^^^^~01/01/2003~
-~11783~^~337~^0.^0^^~4~^~BFSN~^~11209~^^^^^^^^^~01/01/2003~
-~11783~^~338~^0.^0^^~4~^~BFSN~^~11209~^^^^^^^^^~01/01/2003~
-~11783~^~417~^14.^0^^~1~^^^^^^^^^^^~08/01/1984~
-~11783~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~
-~11783~^~432~^14.^0^^~1~^^^^^^^^^^^~03/01/2007~
-~11783~^~435~^14.^0^^~4~^~NC~^^^^^^^^^^~03/01/2007~
-~11783~^~601~^0.^0^^~7~^~Z~^^^^^^^^^^~08/01/1984~
-~11784~^~208~^13.^0^^~4~^~NC~^^^^^^^^^^~05/01/2006~
-~11784~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~08/01/2011~
-~11784~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~08/01/2011~
-~11784~^~268~^53.^0^^~4~^~NC~^^^^^^^^^^~05/01/2006~
-~11784~^~301~^24.^1^^~1~^^^^^^^^^^^~08/01/1984~
-~11784~^~304~^11.^1^^~1~^^^^^^^^^^^~08/01/1984~
-~11784~^~305~^13.^1^^~1~^^^^^^^^^^^~08/01/1984~
-~11784~^~306~^170.^1^^~1~^^^^^^^^^^^~08/01/1984~
-~11784~^~307~^238.^0^^~4~^^^^^^^^^^^~08/01/1984~
-~11784~^~318~^0.^0^^~1~^^^^^^^^^^^~05/01/2006~
-~11784~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2002~
-~11784~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~
-~11784~^~417~^4.^0^^~4~^^^^^^^^^^^~08/01/1984~
-~11784~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~
-~11784~^~432~^4.^0^^~4~^^^^^^^^^^^~12/01/1984~
-~11784~^~435~^4.^0^^~4~^~NC~^^^^^^^^^^~05/01/2006~
-~11784~^~601~^0.^0^^~7~^~Z~^^^^^^^^^^~08/01/1984~
-~11785~^~208~^54.^0^^~4~^~NC~^^^^^^^^^^~08/01/2011~
-~11785~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~08/01/2011~
-~11785~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~08/01/2011~
-~11785~^~268~^224.^0^^~4~^~NC~^^^^^^^^^^~08/01/2011~
-~11785~^~301~^9.^0^^~1~^^^^^^^^^^^~08/01/1984~
-~11785~^~304~^20.^1^^~1~^^^^^^^^^^^~08/01/1984~
-~11785~^~305~^31.^0^^~1~^^^^^^^^^^^~08/01/1984~
-~11785~^~306~^453.^1^^~1~^^^^^^^^^^^~08/01/1984~
-~11785~^~307~^257.^0^^~4~^^^^^^^^^^^~08/01/1984~
-~11785~^~318~^260.^0^^~1~^^^^^^^^^^^~08/01/2011~
-~11785~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2002~
-~11785~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~
-~11785~^~417~^12.^0^^~4~^^^^^^^^^^^~08/01/1984~
-~11785~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~
-~11785~^~432~^12.^0^^~4~^^^^^^^^^^^~12/01/1984~
-~11785~^~435~^12.^0^^~4~^~NC~^^^^^^^^^^~05/01/2006~
-~11785~^~601~^0.^0^^~7~^~Z~^^^^^^^^^^~08/01/1984~
-~11786~^~208~^60.^0^^~4~^~NC~^^^^^^^^^^~03/01/2007~
-~11786~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2003~
-~11786~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2003~
-~11786~^~268~^251.^0^^~4~^^^^^^^^^^^~03/01/2007~
-~11786~^~301~^151.^0^^~4~^^^^^^^^^^^~08/01/1984~
-~11786~^~304~^34.^0^^~4~^~BFSY~^~11222~^^^^^^^^^~08/01/2015~
-~11786~^~305~^67.^1^^~1~^^^^^^^^^^^~08/01/1984~
-~11786~^~306~^344.^1^^~1~^^^^^^^^^^^~08/01/1984~
-~11786~^~307~^245.^0^^~4~^^^^^^^^^^^~08/01/1984~
-~11786~^~318~^7013.^0^^~4~^~NC~^^^^^^^^^^~03/01/2007~
-~11786~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2002~
-~11786~^~320~^351.^0^^~4~^~NC~^^^^^^^^^^~03/01/2007~
-~11786~^~321~^4208.^0^^~4~^~O~^^^^^^^^^^~01/01/2003~
-~11786~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2003~
-~11786~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~
-~11786~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2003~
-~11786~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2003~
-~11786~^~338~^1747.^0^^~4~^~O~^^^^^^^^^^~01/01/2003~
-~11786~^~417~^23.^0^^~4~^^^^^^^^^^^~08/01/1984~
-~11786~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~
-~11786~^~432~^23.^0^^~4~^^^^^^^^^^^~03/01/2007~
-~11786~^~435~^23.^0^^~4~^~NC~^^^^^^^^^^~03/01/2007~
-~11786~^~601~^0.^0^^~7~^~Z~^^^^^^^^^^~08/01/1984~
-~11787~^~208~^36.^0^^~4~^~NC~^^^^^^^^^^~08/01/1984~
-~11787~^~268~^151.^0^^~4~^^^^^^^^^^^
-~11787~^~301~^20.^1^^~1~^^^^^^^^^^^~08/01/1984~
-~11787~^~304~^42.^1^^~1~^^^^^^^^^^^~08/01/1984~
-~11787~^~305~^49.^1^^~1~^^^^^^^^^^^~08/01/1984~
-~11787~^~306~^457.^1^^~1~^^^^^^^^^^^~08/01/1984~
-~11787~^~307~^279.^0^^~4~^^^^^^^^^^^~08/01/1984~
-~11787~^~318~^70.^0^^~1~^^^^^^^^^^^~08/01/1984~
-~11787~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2002~
-~11787~^~320~^4.^0^^~1~^^^^^^^^^^^~06/01/2002~
-~11787~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~
-~11787~^~417~^30.^0^^~4~^^^^^^^^^^^~08/01/1984~
-~11787~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~
-~11787~^~432~^30.^0^^~4~^^^^^^^^^^^~12/01/1984~
-~11787~^~435~^30.^0^^~4~^~NC~^^^^^^^^^^~01/01/2001~
-~11787~^~601~^0.^0^^~7~^~Z~^^^^^^^^^^~08/01/1984~
-~11788~^~208~^50.^0^^~4~^~NC~^^^^^^^^^^~05/01/2005~
-~11788~^~268~^209.^0^^~4~^~NC~^^^^^^^^^^~05/01/2005~
-~11788~^~301~^41.^1^^~1~^^^^^^^^^^^~08/01/1984~
-~11788~^~304~^42.^1^^~1~^^^^^^^^^^^~08/01/1984~
-~11788~^~305~^49.^1^^~1~^^^^^^^^^^^~08/01/1984~
-~11788~^~306~^262.^1^^~1~^^^^^^^^^^^~08/01/1984~
-~11788~^~307~^238.^0^^~4~^^^^^^^^^^^~08/01/1984~
-~11788~^~318~^142.^0^^~4~^^^^^^^^^^^~06/01/2005~
-~11788~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2002~
-~11788~^~320~^7.^0^^~4~^^^^^^^^^^^~06/01/2005~
-~11788~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~
-~11788~^~417~^47.^0^^~4~^^^^^^^^^^^~08/01/1984~
-~11788~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~
-~11788~^~432~^47.^0^^~4~^^^^^^^^^^^~12/01/1984~
-~11788~^~435~^47.^0^^~4~^~NC~^^^^^^^^^^~06/01/2005~
-~11788~^~601~^0.^0^^~7~^~Z~^^^^^^^^^^~08/01/1984~
-~11789~^~208~^37.^0^^~4~^~NC~^^^^^^^^^^~03/01/2007~
-~11789~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2003~
-~11789~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2003~
-~11789~^~268~^153.^0^^~4~^~NC~^^^^^^^^^^~03/01/2007~
-~11789~^~301~^211.^1^^~1~^^^^^^^^^^^~08/01/1984~
-~11789~^~304~^62.^1^^~1~^^^^^^^^^^^~08/01/1984~
-~11789~^~305~^72.^1^^~1~^^^^^^^^^^^~08/01/1984~
-~11789~^~306~^550.^1^^~1~^^^^^^^^^^^~08/01/1984~
-~11789~^~307~^247.^0^^~4~^^^^^^^^^^^~08/01/1984~
-~11789~^~318~^5185.^0^^~4~^~NC~^^^^^^^^^^~03/01/2007~
-~11789~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2002~
-~11789~^~320~^259.^0^^~4~^~NC~^^^^^^^^^^~03/01/2007~
-~11789~^~321~^3111.^0^^~4~^~O~^^^^^^^^^^~01/01/2003~
-~11789~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2003~
-~11789~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~
-~11789~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2003~
-~11789~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2003~
-~11789~^~338~^1747.^0^^~4~^~O~^^^^^^^^^^~01/01/2003~
-~11789~^~417~^104.^0^^~4~^^^^^^^^^^^~08/01/1984~
-~11789~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~
-~11789~^~432~^104.^0^^~4~^^^^^^^^^^^~03/01/2007~
-~11789~^~435~^104.^0^^~4~^~NC~^^^^^^^^^^~03/01/2007~
-~11789~^~601~^0.^0^^~7~^~Z~^^^^^^^^^^~08/01/1984~
-~11790~^~208~^44.^0^^~4~^~NC~^^^^^^^^^^~10/01/2016~
-~11790~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~12/01/2002~
-~11790~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~12/01/2002~
-~11790~^~268~^183.^0^^~4~^~NC~^^^^^^^^^^~10/01/2016~
-~11790~^~301~^150.^6^12.^~1~^~A~^^^1^122.^203.^5^117.^183.^~2, 3~^~10/01/2016~
-~11790~^~304~^25.^6^2.^~1~^~A~^^^1^17.^34.^5^18.^31.^~2, 3~^~10/01/2016~
-~11790~^~305~^42.^6^1.^~1~^~A~^^^1^35.^48.^5^36.^46.^~2, 3~^~10/01/2016~
-~11790~^~306~^144.^6^15.^~1~^~A~^^^1^77.^183.^5^103.^183.^~2, 3~^~10/01/2016~
-~11790~^~307~^252.^0^^~4~^~O~^^^^^^^^^^~10/01/2016~
-~11790~^~318~^2915.^0^^~1~^~AS~^^^^^^^^^^~10/01/2016~
-~11790~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2002~
-~11790~^~320~^146.^0^^~1~^~AS~^^^^^^^^^^~10/01/2016~
-~11790~^~321~^1731.^3^369.^~1~^~A~^^^1^1293.^2466.^2^139.^3321.^~2, 3~^~10/01/2016~
-~11790~^~322~^10.^3^1.^~1~^~A~^^^1^7.^14.^2^1.^18.^~2, 3~^~10/01/2016~
-~11790~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~
-~11790~^~334~^26.^3^6.^~1~^~A~^^^1^17.^39.^2^-2.^55.^~2, 3~^~10/01/2016~
-~11790~^~337~^0.^3^0.^~1~^~A~^^^1^0.^0.^^^^~1, 2, 3~^~12/01/2002~
-~11790~^~338~^4983.^3^809.^~1~^~A~^^^1^4071.^6597.^2^1502.^8464.^~2, 3~^~10/01/2016~
-~11790~^~417~^65.^3^11.^~1~^~A~^^^1^50.^87.^2^17.^112.^~2, 3~^~10/01/2016~
-~11790~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~
-~11790~^~432~^65.^3^11.^~1~^~A~^^^1^50.^87.^2^17.^112.^^~10/01/2016~
-~11790~^~435~^65.^0^^~4~^~NC~^^^^^^^^^^~10/01/2016~
-~11790~^~601~^0.^0^^~7~^~Z~^^^^^^^^^^~08/01/1984~
-~11791~^~208~^36.^0^^~4~^~NC~^^^^^^^^^^~10/01/2016~
-~11791~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~12/01/2002~
-~11791~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~12/01/2002~
-~11791~^~268~^151.^0^^~4~^~NC~^^^^^^^^^^~10/01/2016~
-~11791~^~301~^150.^6^12.^~1~^~A~^^^1^122.^203.^5^117.^183.^~2, 3~^~10/01/2016~
-~11791~^~304~^25.^6^2.^~1~^~A~^^^1^17.^34.^5^18.^31.^~2, 3~^~10/01/2016~
-~11791~^~305~^42.^6^1.^~1~^~A~^^^1^35.^48.^5^36.^46.^~2, 3~^~10/01/2016~
-~11791~^~306~^144.^6^15.^~1~^~A~^^^1^77.^183.^5^103.^183.^~2, 3~^~10/01/2016~
-~11791~^~307~^252.^0^^~4~^~O~^^^^^^^^^^~10/01/2016~
-~11791~^~318~^2915.^0^^~1~^~AS~^^^^^^^^^^~10/01/2016~
-~11791~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2002~
-~11791~^~320~^146.^0^^~1~^~AS~^^^^^^^^^^~10/01/2016~
-~11791~^~321~^1731.^3^369.^~1~^~A~^^^1^1293.^2466.^2^139.^3321.^~2, 3~^~10/01/2016~
-~11791~^~322~^10.^3^1.^~1~^~A~^^^1^7.^14.^2^1.^18.^~2, 3~^~10/01/2016~
-~11791~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~
-~11791~^~334~^26.^3^6.^~1~^~A~^^^1^17.^39.^2^-2.^55.^~2, 3~^~10/01/2016~
-~11791~^~337~^0.^3^0.^~1~^~A~^^^1^0.^0.^^^^~1, 2, 3~^~10/01/2016~
-~11791~^~338~^4983.^3^809.^~1~^~A~^^^1^4071.^6597.^2^1502.^8464.^~2, 3~^~10/01/2016~
-~11791~^~417~^65.^3^11.^~1~^~A~^^^1^50.^87.^2^17.^112.^~2, 3~^~10/01/2016~
-~11791~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~
-~11791~^~432~^65.^3^11.^~1~^~A~^^^1^50.^87.^2^17.^112.^^~10/01/2016~
-~11791~^~435~^65.^0^^~4~^~NC~^^^^^^^^^^~10/01/2016~
-~11791~^~601~^0.^0^^~7~^~Z~^^^^^^^^^^~08/01/1984~
-~11793~^~208~^29.^0^^~4~^~NC~^^^^^^^^^^~03/01/2007~
-~11793~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~12/01/2002~
-~11793~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~12/01/2002~
-~11793~^~268~^121.^0^^~4~^^^^^^^^^^^~03/01/2007~
-~11793~^~301~^25.^0^^~1~^^^^^^^^^^^~08/01/1984~
-~11793~^~304~^19.^0^^~1~^^^^^^^^^^^~08/01/1984~
-~11793~^~305~^45.^0^^~1~^^^^^^^^^^^~08/01/1984~
-~11793~^~306~^340.^0^^~1~^^^^^^^^^^^~08/01/1984~
-~11793~^~307~^257.^0^^~4~^^^^^^^^^^^~08/01/1984~
-~11793~^~318~^35.^0^^~4~^~NC~^^^^^^^^^^~03/01/2007~
-~11793~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2002~
-~11793~^~320~^2.^0^^~4~^~NC~^^^^^^^^^^~03/01/2007~
-~11793~^~321~^21.^0^^~4~^~BFSY~^~11241~^^^^^^^^^~12/01/2002~
-~11793~^~322~^0.^0^^~4~^~BFSY~^~11241~^^^^^^^^^~12/01/2002~
-~11793~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~
-~11793~^~334~^0.^0^^~4~^~BFSY~^~11241~^^^^^^^^^~12/01/2002~
-~11793~^~337~^0.^0^^~4~^~BFSY~^~11241~^^^^^^^^^~12/01/2002~
-~11793~^~338~^0.^0^^~4~^~BFSY~^~11241~^^^^^^^^^~12/01/2002~
-~11793~^~417~^12.^0^^~4~^^^^^^^^^^^~08/01/1984~
-~11793~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~
-~11793~^~432~^12.^0^^~4~^^^^^^^^^^^~03/01/2007~
-~11793~^~435~^12.^0^^~4~^~NC~^^^^^^^^^^~03/01/2007~
-~11793~^~601~^0.^0^^~7~^~Z~^^^^^^^^^^~08/01/1984~
-~11794~^~208~^32.^0^^~4~^~NC~^^^^^^^^^^~02/01/2007~
-~11794~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2007~
-~11794~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2007~
-~11794~^~268~^134.^0^^~4~^^^^^^^^^^^~02/01/2007~
-~11794~^~301~^258.^0^^~1~^^^^^^^^^^^~08/01/1984~
-~11794~^~304~^23.^0^^~4~^^^^^^^^^^^~08/01/1984~
-~11794~^~305~^45.^0^^~1~^^^^^^^^^^^~08/01/1984~
-~11794~^~306~^288.^0^^~4~^^^^^^^^^^^~08/01/1984~
-~11794~^~307~^265.^0^^~4~^^^^^^^^^^^~08/01/1984~
-~11794~^~318~^7816.^0^^~4~^~NC~^^^^^^^^^^~02/01/2007~
-~11794~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2002~
-~11794~^~320~^391.^0^^~4~^~NC~^^^^^^^^^^~02/01/2007~
-~11794~^~321~^4688.^0^^~4~^~BFZN~^~11245~^^^^^^^^^~02/01/2007~
-~11794~^~322~^4.^0^^~4~^~BFZN~^~11245~^^^^^^^^^~02/01/2007~
-~11794~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~
-~11794~^~334~^0.^0^^~4~^~BFZN~^~11245~^^^^^^^^^~02/01/2007~
-~11794~^~337~^0.^0^^~4~^~BFZN~^~11245~^^^^^^^^^~02/01/2007~
-~11794~^~338~^1857.^0^^~4~^~BFZN~^~11245~^^^^^^^^^~02/01/2007~
-~11794~^~417~^14.^0^^~4~^^^^^^^^^^^~08/01/1984~
-~11794~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~
-~11794~^~432~^14.^0^^~4~^^^^^^^^^^^~02/01/2007~
-~11794~^~435~^14.^0^^~4~^~NC~^^^^^^^^^^~02/01/2007~
-~11794~^~601~^0.^0^^~7~^~Z~^^^^^^^^^^~08/01/1984~
-~11795~^~208~^31.^0^^~4~^~NC~^^^^^^^^^^~11/01/2007~
-~11795~^~268~^130.^0^^~4~^^^^^^^^^^^~11/01/2007~
-~11795~^~301~^30.^0^^~1~^^^^^^^^^^^~08/01/1984~
-~11795~^~304~^14.^0^^~1~^^^^^^^^^^^~08/01/1984~
-~11795~^~305~^17.^0^^~1~^^^^^^^^^^^~08/01/1984~
-~11795~^~306~^87.^0^^~1~^^^^^^^^^^^~08/01/1984~
-~11795~^~307~^246.^0^^~4~^^^^^^^^^^^~08/01/1984~
-~11795~^~318~^812.^0^^~4~^~NC~^^^^^^^^^^~11/01/2007~
-~11795~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2002~
-~11795~^~320~^41.^0^^~4~^~NC~^^^^^^^^^^~11/01/2007~
-~11795~^~321~^487.^0^^~4~^~BFSY~^~11246~^^^^^^^^^~11/01/2007~
-~11795~^~322~^0.^0^^~4~^~BFSY~^~11246~^^^^^^^^^~11/01/2007~
-~11795~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~
-~11795~^~334~^0.^0^^~4~^~BFSY~^~11246~^^^^^^^^^~11/01/2007~
-~11795~^~337~^0.^0^^~4~^~BFSY~^~11246~^^^^^^^^^~11/01/2007~
-~11795~^~338~^925.^0^^~4~^~BFSY~^~11246~^^^^^^^^^~11/01/2007~
-~11795~^~417~^24.^0^^~1~^^^^^^^^^^^~08/01/1984~
-~11795~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~
-~11795~^~432~^24.^0^^~1~^^^^^^^^^^^~11/01/2007~
-~11795~^~435~^24.^0^^~4~^~NC~^^^^^^^^^^~11/01/2007~
-~11795~^~601~^0.^0^^~7~^~Z~^^^^^^^^^^~08/01/1984~
-~11796~^~208~^66.^0^^~4~^~NC~^^^^^^^^^^~03/01/2007~
-~11796~^~268~^278.^0^^~4~^~NC~^^^^^^^^^^~03/01/2007~
-~11796~^~301~^26.^1^^~1~^^^^^^^^^^^~08/01/1984~
-~11796~^~304~^22.^1^^~1~^^^^^^^^^^^~08/01/1984~
-~11796~^~305~^78.^1^^~1~^^^^^^^^^^^~08/01/1984~
-~11796~^~306~^363.^1^^~1~^^^^^^^^^^^~08/01/1984~
-~11796~^~307~^281.^0^^~4~^^^^^^^^^^^~08/01/1984~
-~11796~^~318~^0.^0^^~1~^~AS~^^^^^^^^^^~03/01/2007~
-~11796~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2002~
-~11796~^~320~^0.^0^^~1~^~AS~^^^^^^^^^^~03/01/2007~
-~11796~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~
-~11796~^~417~^8.^0^^~4~^^^^^^^^^^^~08/01/1984~
-~11796~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~
-~11796~^~432~^8.^0^^~4~^^^^^^^^^^^~03/01/2007~
-~11796~^~435~^8.^0^^~4~^~NC~^^^^^^^^^^~03/01/2007~
-~11796~^~601~^0.^0^^~7~^~Z~^^^^^^^^^^~08/01/1984~
-~11797~^~208~^28.^0^^~4~^~NC~^^^^^^^^^^~08/01/2009~
-~11797~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~08/01/2004~
-~11797~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~08/01/2004~
-~11797~^~268~^117.^0^^~4~^~NC~^^^^^^^^^^~08/01/2009~
-~11797~^~301~^6.^0^^~1~^^^^^^^^^^^~08/01/1984~
-~11797~^~304~^12.^0^^~1~^^^^^^^^^^^~08/01/1984~
-~11797~^~305~^87.^0^^~1~^^^^^^^^^^^~08/01/1984~
-~11797~^~306~^356.^0^^~1~^^^^^^^^^^^~08/01/1984~
-~11797~^~307~^238.^0^^~4~^^^^^^^^^^^~08/01/1984~
-~11797~^~318~^0.^0^^~1~^^^^^^^^^^^~08/01/2009~
-~11797~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2002~
-~11797~^~320~^0.^0^^~4~^~NC~^^^^^^^^^^~08/01/2009~
-~11797~^~321~^0.^0^^~4~^~BFSY~^~11260~^^^^^^^^^~08/01/2004~
-~11797~^~322~^0.^0^^~4~^~BFSY~^~11260~^^^^^^^^^~08/01/2004~
-~11797~^~324~^8.^0^^~4~^~BFSN~^~11260~^^^^^^^^^~08/01/2009~
-~11797~^~334~^0.^0^^~4~^~BFSY~^~11260~^^^^^^^^^~08/01/2004~
-~11797~^~337~^0.^0^^~4~^~BFSY~^~11260~^^^^^^^^^~08/01/2004~
-~11797~^~338~^0.^0^^~4~^~BFSY~^~11260~^^^^^^^^^~08/01/2004~
-~11797~^~417~^18.^0^^~1~^^^^^^^^^^^~08/01/1984~
-~11797~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~
-~11797~^~432~^18.^0^^~1~^^^^^^^^^^^~08/01/2009~
-~11797~^~435~^18.^0^^~4~^~NC~^^^^^^^^^^~08/01/2009~
-~11797~^~601~^0.^0^^~7~^~Z~^^^^^^^^^^~08/01/1984~
-~11798~^~208~^56.^0^^~4~^~NC~^^^^^^^^^^~02/01/2010~
-~11798~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~08/01/2004~
-~11798~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~08/01/2004~
-~11798~^~268~^234.^0^^~4~^~NC~^^^^^^^^^^~02/01/2010~
-~11798~^~301~^3.^1^^~1~^^^^^^^^^^^~08/01/1984~
-~11798~^~304~^14.^1^^~1~^^^^^^^^^^^~08/01/1984~
-~11798~^~305~^29.^1^^~1~^^^^^^^^^^^~08/01/1984~
-~11798~^~306~^117.^1^^~1~^^^^^^^^^^^~08/01/1984~
-~11798~^~307~^240.^0^^~4~^^^^^^^^^^^~08/01/1984~
-~11798~^~318~^0.^1^^~1~^^^^^^^^^^^~03/01/2009~
-~11798~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2002~
-~11798~^~320~^0.^0^^~1~^~AS~^^^^^^^^^^~02/01/2010~
-~11798~^~321~^0.^0^^~7~^~Z~^^^^^^^^^^~08/01/2009~
-~11798~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~08/01/2009~
-~11798~^~324~^28.^0^^~4~^~BFSN~^~11238~^^^^^^^^^~02/01/2010~
-~11798~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~08/01/2009~
-~11798~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~08/01/2009~
-~11798~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~08/01/2009~
-~11798~^~417~^21.^0^^~4~^^^^^^^^^^^~08/01/1984~
-~11798~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~
-~11798~^~432~^21.^0^^~4~^^^^^^^^^^^~02/01/2010~
-~11798~^~435~^21.^0^^~4~^~NC~^^^^^^^^^^~02/01/2010~
-~11798~^~601~^0.^0^^~7~^~Z~^^^^^^^^^^~08/01/1984~
-~11798~^~638~^0.^0^^~4~^~BFSN~^~11238~^^^^^^^^^~02/01/2010~
-~11798~^~639~^4.^0^^~4~^~BFSN~^~11238~^^^^^^^^^~02/01/2010~
-~11798~^~641~^0.^0^^~4~^~BFSN~^~11238~^^^^^^^^^~02/01/2010~
-~11799~^~208~^26.^0^^~4~^~NC~^^^^^^^^^^~08/01/2012~
-~11799~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2003~
-~11799~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2003~
-~11799~^~268~^110.^0^^~4~^~NC~^^^^^^^^^^~08/01/2012~
-~11799~^~301~^118.^2^^~6~^~JA~^^^2^74.^161.^1^^^^~08/01/2012~
-~11799~^~304~^13.^2^^~6~^~JA~^^^2^11.^15.^1^^^^~08/01/2012~
-~11799~^~305~^42.^2^^~6~^~JA~^^^2^41.^43.^1^^^^~08/01/2012~
-~11799~^~306~^162.^1^^~6~^~JA~^^^2^122.^202.^1^^^^~08/01/2012~
-~11799~^~307~^252.^0^^~4~^~NR~^^^^^^^^^^~08/01/1984~
-~11799~^~318~^10537.^0^^~4~^~NC~^^^^^^^^^^~08/01/2012~
-~11799~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2002~
-~11799~^~320~^527.^0^^~4~^~NC~^^^^^^^^^^~08/01/2012~
-~11799~^~321~^6300.^5^1100.^~1~^~A~^^^1^5200.^7400.^1^-7676.^20276.^~4~^~08/01/2012~
-~11799~^~322~^9.^0^^~4~^~BFSN~^~11270~^^^^^^^^^~08/01/2012~
-~11799~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~
-~11799~^~334~^35.^0^^~4~^~BFSN~^~11270~^^^^^^^^^~08/01/2012~
-~11799~^~337~^0.^0^^~4~^~BFSN~^~11270~^^^^^^^^^~01/01/2003~
-~11799~^~338~^9900.^5^500.^~1~^~A~^^^1^9400.^10400.^1^3546.^16253.^~4~^~08/01/2012~
-~11799~^~417~^9.^1^^~1~^~A~^^^^^^^^^^~08/01/2012~
-~11799~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~
-~11799~^~432~^9.^1^^~1~^~A~^^^^^^^^^^~08/01/2012~
-~11799~^~435~^9.^0^^~4~^~NC~^^^^^^^^^^~08/01/2012~
-~11799~^~601~^0.^0^^~7~^~Z~^^^^^^^^^^~08/01/1984~
-~11800~^~208~^19.^0^^~4~^~NC~^^^^^^^^^^~02/01/2007~
-~11800~^~268~^78.^0^^~4~^~NC~^^^^^^^^^^~02/01/2007~
-~11800~^~301~^101.^0^^~1~^^^^^^^^^^^~08/01/1984~
-~11800~^~304~^13.^0^^~1~^^^^^^^^^^^~08/01/1984~
-~11800~^~305~^24.^0^^~1~^^^^^^^^^^^~08/01/1984~
-~11800~^~306~^139.^0^^~1~^^^^^^^^^^^~08/01/1984~
-~11800~^~307~^261.^0^^~4~^^^^^^^^^^^~08/01/1984~
-~11800~^~318~^7076.^0^^~4~^~NC~^^^^^^^^^^~02/01/2007~
-~11800~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2002~
-~11800~^~320~^354.^0^^~4~^~NC~^^^^^^^^^^~02/01/2007~
-~11800~^~321~^4246.^0^^~4~^~BFSN~^~11270~^^^^^^^^^~01/01/2003~
-~11800~^~322~^0.^0^^~4~^~BFSN~^~11270~^^^^^^^^^~01/01/2003~
-~11800~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~
-~11800~^~334~^0.^0^^~4~^~BFSN~^~11270~^^^^^^^^^~01/01/2003~
-~11800~^~337~^0.^0^^~4~^~BFSN~^~11270~^^^^^^^^^~01/01/2003~
-~11800~^~338~^6672.^0^^~4~^~BFSN~^~11270~^^^^^^^^^~01/01/2003~
-~11800~^~417~^70.^0^^~4~^^^^^^^^^^^~08/01/1984~
-~11800~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~
-~11800~^~432~^70.^0^^~4~^^^^^^^^^^^~02/01/2007~
-~11800~^~435~^70.^0^^~4~^~NC~^^^^^^^^^^~02/01/2007~
-~11800~^~601~^0.^0^^~7~^~Z~^^^^^^^^^^~08/01/1984~
-~11801~^~208~^16.^0^^~4~^~NC~^^^^^^^^^^~05/01/2005~
-~11801~^~268~^66.^0^^~4~^~NC~^^^^^^^^^^~05/01/2005~
-~11801~^~301~^158.^0^^~1~^^^^^^^^^^^~08/01/1984~
-~11801~^~304~^7.^0^^~4~^^^^^^^^^^^~08/01/1984~
-~11801~^~305~^18.^0^^~1~^^^^^^^^^^^~08/01/1984~
-~11801~^~306~^285.^0^^~4~^^^^^^^^^^^~08/01/1984~
-~11801~^~307~^250.^0^^~4~^^^^^^^^^^^~08/01/1984~
-~11801~^~318~^8200.^0^^~1~^^^^^^^^^^^~06/01/2005~
-~11801~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2002~
-~11801~^~320~^410.^0^^~1~^^^^^^^^^^^~06/01/2005~
-~11801~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~
-~11801~^~417~^73.^0^^~4~^^^^^^^^^^^~08/01/1984~
-~11801~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~
-~11801~^~432~^73.^0^^~4~^^^^^^^^^^^~12/01/1984~
-~11801~^~435~^73.^0^^~4~^~NC~^^^^^^^^^^~06/01/2005~
-~11801~^~601~^0.^0^^~7~^~Z~^^^^^^^^^^~08/01/1984~
-~11802~^~208~^12.^0^^~4~^~NC~^^^^^^^^^^~05/01/2005~
-~11802~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~08/01/2011~
-~11802~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~08/01/2011~
-~11802~^~268~^51.^0^^~4~^~NC~^^^^^^^^^^~05/01/2005~
-~11802~^~301~^48.^0^^~1~^^^^^^^^^^^~08/01/1984~
-~11802~^~304~^32.^0^^~1~^^^^^^^^^^^~08/01/1984~
-~11802~^~305~^22.^0^^~1~^^^^^^^^^^^~08/01/1984~
-~11802~^~306~^102.^0^^~1~^^^^^^^^^^^~08/01/1984~
-~11802~^~307~^343.^0^^~4~^^^^^^^^^^^~08/01/1984~
-~11802~^~318~^3622.^0^^~1~^^^^^^^^^^^~06/01/2005~
-~11802~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2002~
-~11802~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~
-~11802~^~417~^8.^0^^~4~^^^^^^^^^^^~08/01/1984~
-~11802~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~
-~11802~^~432~^8.^0^^~4~^^^^^^^^^^^~12/01/1984~
-~11802~^~435~^8.^0^^~4~^~NC~^^^^^^^^^^~06/01/2005~
-~11802~^~601~^0.^0^^~7~^~Z~^^^^^^^^^^~08/01/1984~
-~11803~^~208~^22.^0^^~4~^~NC~^^^^^^^^^^~03/01/2007~
-~11803~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2005~
-~11803~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2005~
-~11803~^~268~^94.^0^^~4~^~NC~^^^^^^^^^^~03/01/2007~
-~11803~^~301~^77.^18^5.^~1~^~A~^^^7^44.^112.^6^63.^90.^~2~^~01/01/2003~
-~11803~^~304~^36.^18^1.^~1~^~A~^^^7^18.^49.^6^32.^38.^~2~^~01/01/2003~
-~11803~^~305~^32.^18^1.^~1~^~A~^^^7^17.^45.^6^29.^35.^~2~^~01/01/2003~
-~11803~^~306~^135.^18^7.^~1~^~A~^^^7^61.^196.^6^116.^152.^~2~^~01/01/2003~
-~11803~^~307~^241.^0^^~4~^^^^^^^^^^^~02/01/2004~
-~11803~^~318~^283.^0^^~1~^~AS~^^^^^^^^^^~03/01/2007~
-~11803~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2002~
-~11803~^~320~^14.^0^^~1~^~AS~^^^^^^^^^^~03/01/2007~
-~11803~^~321~^170.^1^^~1~^~A~^^^^^^^^^^~01/01/2003~
-~11803~^~322~^0.^1^^~1~^~A~^^^^^^^^^^~01/01/2003~
-~11803~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~
-~11803~^~334~^0.^1^^~1~^~A~^^^^^^^^^^~01/01/2003~
-~11803~^~337~^0.^1^^~1~^~A~^^^^^^^^^^~01/01/2003~
-~11803~^~338~^390.^1^^~1~^~A~^^^^^^^^^^~01/01/2003~
-~11803~^~417~^46.^3^6.^~1~^^^^^^^^^^^~08/01/1984~
-~11803~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~
-~11803~^~432~^46.^3^6.^~1~^^^^^^^^^^^~03/01/2007~
-~11803~^~435~^46.^0^^~4~^~NC~^^^^^^^^^^~03/01/2007~
-~11803~^~601~^0.^0^^~7~^~Z~^^^^^^^^^^~08/01/1984~
-~11804~^~208~^29.^0^^~4~^~NC~^~11280~^^^^^^^^^~02/01/2017~
-~11804~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2010~
-~11804~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2010~
-~11804~^~268~^121.^0^^~4~^~NC~^^^^^^^^^^~02/01/2017~
-~11804~^~301~^74.^0^^~4~^~BFSY~^~11280~^^^^^^^^^~05/01/2010~
-~11804~^~304~^40.^0^^~4~^~BFSY~^~11280~^^^^^^^^^~05/01/2010~
-~11804~^~305~^37.^0^^~4~^~BFSY~^~11280~^^^^^^^^^~05/01/2010~
-~11804~^~306~^184.^0^^~4~^~BFSY~^~11280~^^^^^^^^^~05/01/2010~
-~11804~^~307~^239.^0^^~4~^~O~^~11280~^^^^^^^^^~05/01/2010~
-~11804~^~318~^305.^0^^~4~^~NC~^^^^^^^^^^~05/01/2010~
-~11804~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2002~
-~11804~^~320~^15.^0^^~4~^~NC~^~11280~^^^^^^^^^~05/01/2010~
-~11804~^~321~^183.^0^^~4~^~BFSY~^~11280~^^^^^^^^^~05/01/2010~
-~11804~^~322~^0.^0^^~4~^~BFSY~^~11280~^^^^^^^^^~05/01/2010~
-~11804~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~
-~11804~^~334~^0.^0^^~4~^~BFSY~^~11280~^^^^^^^^^~05/01/2010~
-~11804~^~337~^0.^0^^~4~^~BFSY~^~11280~^^^^^^^^^~05/01/2010~
-~11804~^~338~^420.^0^^~4~^~BFSY~^~11280~^^^^^^^^^~05/01/2010~
-~11804~^~417~^100.^0^^~4~^~BFSY~^~11280~^^^^^^^^^~05/01/2010~
-~11804~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~
-~11804~^~432~^100.^0^^~4~^~BFSY~^~11280~^^^^^^^^^~05/01/2010~
-~11804~^~435~^100.^0^^~4~^~NC~^~11280~^^^^^^^^^~05/01/2010~
-~11804~^~601~^0.^0^^~7~^~Z~^^^^^^^^^^~08/01/1984~
-~11805~^~208~^42.^0^^~4~^~NC~^^^^^^^^^^~06/01/2007~
-~11805~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2003~
-~11805~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2003~
-~11805~^~268~^176.^0^^~4~^~NC~^^^^^^^^^^~06/01/2007~
-~11805~^~301~^22.^0^^~1~^^^^^^^^^^^~08/01/1984~
-~11805~^~304~^11.^0^^~1~^^^^^^^^^^^~08/01/1984~
-~11805~^~305~^35.^0^^~1~^^^^^^^^^^^~08/01/1984~
-~11805~^~306~^166.^0^^~1~^^^^^^^^^^^~08/01/1984~
-~11805~^~307~^239.^0^^~1~^^^^^^^^^^^~08/01/1984~
-~11805~^~318~^2.^0^^~4~^~NC~^^^^^^^^^^~06/01/2007~
-~11805~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2002~
-~11805~^~320~^0.^0^^~4~^~NC~^^^^^^^^^^~06/01/2007~
-~11805~^~321~^1.^0^^~4~^~BFSY~^~11282~^^^^^^^^^~01/01/2003~
-~11805~^~322~^0.^0^^~4~^~BFSY~^~11282~^^^^^^^^^~03/01/2007~
-~11805~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~
-~11805~^~334~^0.^0^^~4~^~BFSY~^~11282~^^^^^^^^^~03/01/2007~
-~11805~^~337~^0.^0^^~4~^~BFSY~^~11282~^^^^^^^^^~03/01/2007~
-~11805~^~338~^4.^0^^~4~^~BFSY~^~11282~^^^^^^^^^~01/01/2003~
-~11805~^~417~^15.^0^^~1~^^^^^^^^^^^~08/01/1984~
-~11805~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~
-~11805~^~432~^15.^0^^~1~^^^^^^^^^^^~06/01/2007~
-~11805~^~435~^15.^0^^~4~^~NC~^^^^^^^^^^~06/01/2007~
-~11805~^~601~^0.^0^^~7~^~Z~^^^^^^^^^^~08/01/1984~
-~11805~^~636~^18.^0^^~1~^^^^^^^^^^^~08/01/1984~
-~11806~^~208~^26.^0^^~4~^~NC~^^^^^^^^^^~03/01/2007~
-~11806~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2005~
-~11806~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2005~
-~11806~^~268~^109.^0^^~4~^~NC~^^^^^^^^^^~03/01/2007~
-~11806~^~301~^16.^0^^~1~^^^^^^^^^^^~08/01/1984~
-~11806~^~304~^6.^0^^~1~^^^^^^^^^^^~08/01/1984~
-~11806~^~305~^19.^0^^~1~^^^^^^^^^^^~08/01/1984~
-~11806~^~306~^108.^0^^~1~^^^^^^^^^^^~08/01/1984~
-~11806~^~307~^248.^0^^~4~^^^^^^^^^^^~08/01/1984~
-~11806~^~318~^2.^0^^~4~^~NC~^^^^^^^^^^~03/01/2007~
-~11806~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2002~
-~11806~^~320~^0.^0^^~4~^~NC~^^^^^^^^^^~03/01/2007~
-~11806~^~321~^1.^0^^~4~^~BFZN~^~11288~^^^^^^^^^~05/01/2005~
-~11806~^~322~^0.^0^^~4~^~BFZN~^~11288~^^^^^^^^^~05/01/2005~
-~11806~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~
-~11806~^~334~^0.^0^^~4~^~BFZN~^~11288~^^^^^^^^^~05/01/2005~
-~11806~^~337~^0.^0^^~4~^~BFZN~^~11288~^^^^^^^^^~05/01/2005~
-~11806~^~338~^3.^0^^~4~^~BFZN~^~11288~^^^^^^^^^~05/01/2005~
-~11806~^~417~^13.^1^^~1~^~A~^^^^^^^^^^~04/01/1996~
-~11806~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~
-~11806~^~432~^13.^1^^~1~^~A~^^^^^^^^^^~03/01/2007~
-~11806~^~435~^13.^0^^~4~^~NC~^^^^^^^^^^~03/01/2007~
-~11806~^~601~^0.^0^^~7~^~Z~^^^^^^^^^^~08/01/1984~
-~11807~^~208~^26.^0^^~4~^~NC~^^^^^^^^^^~03/01/2007~
-~11807~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2005~
-~11807~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2005~
-~11807~^~268~^108.^0^^~4~^~NC~^^^^^^^^^^~03/01/2007~
-~11807~^~301~^27.^0^^~1~^^^^^^^^^^^~08/01/1984~
-~11807~^~304~^8.^0^^~1~^^^^^^^^^^^~08/01/1984~
-~11807~^~305~^2.^0^^~1~^^^^^^^^^^^~08/01/1984~
-~11807~^~306~^101.^0^^~1~^^^^^^^^^^^~08/01/1984~
-~11807~^~307~^244.^0^^~4~^^^^^^^^^^^~08/01/1984~
-~11807~^~318~^2.^0^^~4~^~NC~^^^^^^^^^^~03/01/2007~
-~11807~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2002~
-~11807~^~320~^0.^0^^~4~^~NC~^^^^^^^^^^~03/01/2007~
-~11807~^~321~^1.^0^^~4~^~BFZN~^~11290~^^^^^^^^^~05/01/2005~
-~11807~^~322~^0.^0^^~4~^~BFZN~^~11290~^^^^^^^^^~03/01/2007~
-~11807~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~
-~11807~^~334~^0.^0^^~4~^~BFZN~^~11290~^^^^^^^^^~03/01/2007~
-~11807~^~337~^0.^0^^~4~^~BFZN~^~11290~^^^^^^^^^~03/01/2007~
-~11807~^~338~^3.^0^^~4~^~BFZN~^~11290~^^^^^^^^^~05/01/2005~
-~11807~^~417~^13.^0^^~1~^^^^^^^^^^^~08/01/1984~
-~11807~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~
-~11807~^~432~^13.^0^^~1~^^^^^^^^^^^~03/01/2007~
-~11807~^~435~^13.^0^^~4~^~NC~^^^^^^^^^^~03/01/2007~
-~11807~^~601~^0.^0^^~7~^~Z~^^^^^^^^^^~08/01/1984~
-~11808~^~208~^71.^0^^~4~^~NC~^^^^^^^^^^~03/01/2007~
-~11808~^~268~^299.^0^^~4~^~NC~^^^^^^^^^^~03/01/2007~
-~11808~^~301~^37.^0^^~1~^^^^^^^^^^^~08/01/1984~
-~11808~^~304~^29.^0^^~1~^^^^^^^^^^^~08/01/1984~
-~11808~^~305~^69.^0^^~1~^^^^^^^^^^^~08/01/1984~
-~11808~^~306~^367.^0^^~1~^^^^^^^^^^^~08/01/1984~
-~11808~^~307~^246.^0^^~4~^^^^^^^^^^^~08/01/1984~
-~11808~^~318~^0.^0^^~4~^~NC~^^^^^^^^^^~03/01/2007~
-~11808~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2002~
-~11808~^~320~^0.^0^^~4~^~NC~^^^^^^^^^^~03/01/2007~
-~11808~^~321~^0.^0^^~4~^~BFZN~^~11299~^^^^^^^^^~12/01/2005~
-~11808~^~322~^0.^0^^~4~^~BFZN~^~11299~^^^^^^^^^~12/01/2005~
-~11808~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~
-~11808~^~334~^0.^0^^~4~^~BFZN~^~11299~^^^^^^^^^~12/01/2005~
-~11808~^~337~^0.^0^^~4~^~BFZN~^~11299~^^^^^^^^^~12/01/2005~
-~11808~^~338~^0.^0^^~4~^~BFZN~^~11299~^^^^^^^^^~12/01/2005~
-~11808~^~417~^58.^0^^~1~^^^^^^^^^^^~08/01/1984~
-~11808~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~
-~11808~^~432~^58.^0^^~1~^^^^^^^^^^^~03/01/2007~
-~11808~^~435~^58.^0^^~4~^~NC~^^^^^^^^^^~03/01/2007~
-~11808~^~601~^0.^0^^~7~^~Z~^^^^^^^^^^~08/01/1984~
-~11809~^~208~^40.^0^^~4~^~NC~^^^^^^^^^^~05/01/2007~
-~11809~^~268~^166.^0^^~4~^~NC~^^^^^^^^^^~05/01/2007~
-~11809~^~301~^42.^1^^~1~^^^^^^^^^^^~08/01/1984~
-~11809~^~304~^26.^1^^~1~^^^^^^^^^^^~08/01/1984~
-~11809~^~305~^55.^1^^~1~^^^^^^^^^^^~08/01/1984~
-~11809~^~306~^240.^1^^~1~^^^^^^^^^^^~08/01/1984~
-~11809~^~307~^240.^0^^~4~^^^^^^^^^^^~08/01/1984~
-~11809~^~318~^1030.^0^^~4~^~NC~^^^^^^^^^^~05/01/2007~
-~11809~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2002~
-~11809~^~320~^52.^0^^~4~^~NC~^^^^^^^^^^~05/01/2007~
-~11809~^~321~^597.^0^^~4~^~BFSY~^~11300~^^^^^^^^^~01/01/2004~
-~11809~^~322~^42.^0^^~4~^~BFSY~^~11300~^^^^^^^^^~01/01/2004~
-~11809~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~
-~11809~^~334~^0.^0^^~4~^~BFSY~^~11300~^^^^^^^^^~01/01/2004~
-~11809~^~337~^0.^0^^~4~^~BFSY~^~11300~^^^^^^^^^~01/01/2004~
-~11809~^~338~^702.^0^^~4~^~BFSY~^~11300~^^^^^^^^^~01/01/2004~
-~11809~^~417~^29.^0^^~4~^^^^^^^^^^^~08/01/1984~
-~11809~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~
-~11809~^~432~^29.^0^^~4~^^^^^^^^^^^~05/01/2007~
-~11809~^~435~^29.^0^^~4~^~NC~^^^^^^^^^^~05/01/2007~
-~11809~^~601~^0.^0^^~7~^~Z~^^^^^^^^^^~08/01/1984~
-~11810~^~208~^50.^0^^~4~^~NC~^^^^^^^^^^~03/01/2007~
-~11810~^~268~^208.^0^^~4~^~NC~^^^^^^^^^^~03/01/2007~
-~11810~^~301~^59.^0^^~1~^^^^^^^^^^^~08/01/1984~
-~11810~^~304~^28.^0^^~1~^^^^^^^^^^^~08/01/1984~
-~11810~^~305~^58.^0^^~1~^^^^^^^^^^^~08/01/1984~
-~11810~^~306~^217.^0^^~1~^^^^^^^^^^^~08/01/1984~
-~11810~^~307~^241.^0^^~4~^^^^^^^^^^^~08/01/1984~
-~11810~^~318~^1311.^0^^~4~^~NC~^^^^^^^^^^~03/01/2007~
-~11810~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2002~
-~11810~^~320~^66.^0^^~4~^~NC~^^^^^^^^^^~03/01/2007~
-~11810~^~321~^760.^0^^~4~^~BFSN~^~11300~^^^^^^^^^~01/01/2003~
-~11810~^~322~^53.^0^^~4~^~BFSN~^~11300~^^^^^^^^^~01/01/2003~
-~11810~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~
-~11810~^~334~^0.^0^^~4~^~BFSN~^~11300~^^^^^^^^^~01/01/2003~
-~11810~^~337~^0.^0^^~4~^~BFSN~^~11300~^^^^^^^^^~01/01/2003~
-~11810~^~338~^893.^0^^~4~^~BFSN~^~11300~^^^^^^^^^~01/01/2003~
-~11810~^~417~^35.^0^^~4~^^^^^^^^^^^~08/01/1984~
-~11810~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~
-~11810~^~432~^35.^0^^~4~^^^^^^^^^^^~03/01/2007~
-~11810~^~435~^35.^0^^~4~^~NC~^^^^^^^^^^~03/01/2007~
-~11810~^~601~^0.^0^^~7~^~Z~^^^^^^^^^^~08/01/1984~
-~11811~^~208~^84.^0^^~4~^~NC~^^^^^^^^^^~02/01/2007~
-~11811~^~268~^352.^0^^~4~^~NC~^^^^^^^^^^~02/01/2007~
-~11811~^~301~^27.^12^0.^~1~^^^^^^^^^^^~08/01/1984~
-~11811~^~304~^39.^13^2.^~1~^^^^^^^^^^^~08/01/1984~
-~11811~^~305~^117.^12^2.^~1~^^^^^^^^^^^~08/01/1984~
-~11811~^~306~^271.^12^12.^~1~^^^^^^^^^^^~08/01/1984~
-~11811~^~307~^239.^0^^~4~^^^^^^^^^^^~08/01/1984~
-~11811~^~318~^801.^0^^~4~^~NC~^^^^^^^^^^~02/01/2007~
-~11811~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2002~
-~11811~^~320~^40.^0^^~4~^~NC~^^^^^^^^^^~02/01/2007~
-~11811~^~321~^470.^0^^~4~^~BFSN~^~11305~^^^^^^^^^~09/01/2002~
-~11811~^~322~^22.^0^^~4~^~BFSN~^~11305~^^^^^^^^^~09/01/2002~
-~11811~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~
-~11811~^~334~^0.^0^^~4~^~BFSN~^~11305~^^^^^^^^^~09/01/2002~
-~11811~^~337~^0.^0^^~4~^~BFSN~^~11305~^^^^^^^^^~09/01/2002~
-~11811~^~338~^2593.^0^^~4~^~BFSN~^~11305~^^^^^^^^^~09/01/2002~
-~11811~^~417~^63.^0^^~1~^^^^^^^^^^^~08/01/1984~
-~11811~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~
-~11811~^~432~^63.^0^^~1~^^^^^^^^^^^~02/01/2007~
-~11811~^~435~^63.^0^^~4~^~NC~^^^^^^^^^^~02/01/2007~
-~11811~^~601~^0.^0^^~7~^~Z~^^^^^^^^^^~08/01/1984~
-~11812~^~208~^53.^0^^~4~^~NC~^^^^^^^^^^~02/01/2007~
-~11812~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~09/01/2002~
-~11812~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~09/01/2002~
-~11812~^~268~^222.^0^^~4~^^^^^^^^^^^~02/01/2007~
-~11812~^~301~^18.^592^0.^~1~^~A~^^^^^^^^^^~04/01/1996~
-~11812~^~304~^17.^259^0.^~1~^^^^^^^^^^^~08/01/1984~
-~11812~^~305~^53.^365^0.^~1~^^^^^^^^^^^~08/01/1984~
-~11812~^~306~^100.^391^1.^~1~^~A~^^^^^^^^^^~04/01/1996~
-~11812~^~307~^9.^35^1.^~1~^~A~^^^^^^^^^^~04/01/1996~
-~11812~^~318~^1444.^0^^~4~^~NC~^^^^^^^^^^~02/01/2007~
-~11812~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2002~
-~11812~^~320~^72.^0^^~4~^~NC~^^^^^^^^^^~02/01/2007~
-~11812~^~321~^859.^0^^~4~^~BFSN~^~11306~^^^^^^^^^~09/01/2002~
-~11812~^~322~^14.^0^^~4~^~BFSN~^~11306~^^^^^^^^^~09/01/2002~
-~11812~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~
-~11812~^~334~^0.^0^^~4~^~BFSN~^~11306~^^^^^^^^^~09/01/2002~
-~11812~^~337~^0.^0^^~4~^~BFSN~^~11306~^^^^^^^^^~09/01/2002~
-~11812~^~338~^1650.^0^^~4~^~BFSN~^~11306~^^^^^^^^^~09/01/2002~
-~11812~^~417~^29.^3^7.^~1~^^^^^^^^^^^~08/01/1984~
-~11812~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~
-~11812~^~432~^29.^3^7.^~1~^^^^^^^^^^^~02/01/2007~
-~11812~^~435~^29.^0^^~4~^~NC~^^^^^^^^^^~02/01/2007~
-~11812~^~601~^0.^0^^~7~^~Z~^^^^^^^^^^~08/01/1984~
-~11813~^~208~^69.^0^^~4~^~NC~^^^^^^^^^^~08/01/1984~
-~11813~^~268~^289.^0^^~4~^^^^^^^^^^^
-~11813~^~301~^20.^6^1.^~1~^^^^^^^^^^^~08/01/1984~
-~11813~^~304~^17.^6^0.^~1~^^^^^^^^^^^~08/01/1984~
-~11813~^~305~^67.^6^1.^~1~^^^^^^^^^^^~08/01/1984~
-~11813~^~306~^173.^6^16.^~1~^^^^^^^^^^^~08/01/1984~
-~11813~^~307~^2.^0^^~1~^^^^^^^^^^^~08/01/1984~
-~11813~^~318~^533.^0^^~1~^~AS~^^^^^^^^^^~09/01/2002~
-~11813~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2002~
-~11813~^~320~^27.^0^^~1~^~AS~^^^^^^^^^^~09/01/2002~
-~11813~^~321~^320.^1^^~1~^~A~^^^^^^^^^^~09/01/2002~
-~11813~^~322~^0.^1^^~1~^~A~^^^^^^^^^^~09/01/2002~
-~11813~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~
-~11813~^~334~^0.^1^^~1~^~A~^^^^^^^^^^~09/01/2002~
-~11813~^~337~^0.^1^^~1~^~A~^^^^^^^^^^~09/01/2002~
-~11813~^~338~^1350.^1^^~1~^~A~^^^^^^^^^^~09/01/2002~
-~11813~^~417~^44.^4^6.^~1~^^^^^^^^^^^~08/01/1984~
-~11813~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~
-~11813~^~432~^44.^4^6.^~1~^^^^^^^^^^^~09/01/2002~
-~11813~^~435~^44.^0^^~4~^~NC~^^^^^^^^^^~09/01/2002~
-~11813~^~601~^0.^0^^~7~^~Z~^^^^^^^^^^~08/01/1984~
-~11814~^~208~^78.^0^^~4~^~NC~^^^^^^^^^^~11/01/2006~
-~11814~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2005~
-~11814~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2005~
-~11814~^~268~^326.^0^^~4~^^^^^^^^^^^~11/01/2006~
-~11814~^~301~^24.^47^0.^~1~^^^^5^10.^36.^46^22.^25.^~4~^~11/01/2006~
-~11814~^~304~^22.^48^0.^~1~^^^^5^13.^29.^47^20.^22.^~4~^~11/01/2006~
-~11814~^~305~^77.^47^1.^~1~^^^^5^59.^99.^46^74.^80.^~4~^~11/01/2006~
-~11814~^~306~^110.^48^3.^~1~^^^^5^49.^165.^47^103.^116.^~4~^~11/01/2006~
-~11814~^~307~^323.^0^^~4~^^^^^^^^^^^~08/01/1984~
-~11814~^~318~^2100.^0^^~4~^~NC~^^^^^^^^^^~11/01/2006~
-~11814~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2002~
-~11814~^~320~^105.^0^^~4~^~NC~^^^^^^^^^^~11/01/2006~
-~11814~^~321~^1250.^7^50.^~1~^~A~^^^1^1200.^1300.^1^614.^1885.^~4~^~11/01/2006~
-~11814~^~322~^20.^0^^~4~^~BFZN~^~11313~^^^^^^^^^~05/01/2005~
-~11814~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~
-~11814~^~334~^0.^0^^~4~^~BFZN~^~11313~^^^^^^^^^~11/01/2006~
-~11814~^~338~^2400.^8^0.^~1~^~A~^^^1^2400.^2400.^1^2400.^2400.^~4~^~11/01/2006~
-~11814~^~417~^59.^18^3.^~1~^^^^^^^^^^^~08/01/1984~
-~11814~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~
-~11814~^~432~^59.^18^3.^~1~^^^^^^^^^^^~11/01/2006~
-~11814~^~435~^59.^0^^~4~^~NC~^^^^^^^^^^~11/01/2006~
-~11814~^~601~^0.^0^^~7~^~Z~^^^^^^^^^^~08/01/1984~
-~11815~^~208~^98.^0^^~4~^~NC~^^^^^^^^^^~07/01/2004~
-~11815~^~268~^411.^0^^~4~^~NC~^^^^^^^^^^~07/01/2004~
-~11815~^~301~^26.^0^^~1~^^^^^^^^^^^~08/01/1984~
-~11815~^~304~^41.^0^^~1~^^^^^^^^^^^~08/01/1984~
-~11815~^~305~^24.^0^^~1~^^^^^^^^^^^~08/01/1984~
-~11815~^~306~^268.^0^^~1~^^^^^^^^^^^~08/01/1984~
-~11815~^~307~^239.^0^^~4~^^^^^^^^^^^~08/01/1984~
-~11815~^~318~^107.^0^^~1~^^^^^^^^^^^~06/01/2005~
-~11815~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2002~
-~11815~^~320~^5.^0^^~1~^^^^^^^^^^^~06/01/2005~
-~11815~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~
-~11815~^~417~^36.^0^^~1~^^^^^^^^^^^~08/01/1984~
-~11815~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~
-~11815~^~432~^36.^0^^~1~^^^^^^^^^^^~12/01/1984~
-~11815~^~435~^36.^0^^~4~^~NC~^^^^^^^^^^~06/01/2005~
-~11815~^~601~^0.^0^^~7~^~Z~^^^^^^^^^^~08/01/1984~
-~11816~^~208~^38.^0^^~4~^~NC~^^^^^^^^^^~03/01/2007~
-~11816~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2003~
-~11816~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2003~
-~11816~^~268~^159.^0^^~4~^^^^^^^^^^^~03/01/2007~
-~11816~^~301~^23.^164^0.^~1~^^^^^^^^^^^~08/01/1984~
-~11816~^~304~^14.^89^0.^~1~^^^^^^^^^^^~08/01/1984~
-~11816~^~305~^46.^151^0.^~1~^^^^^^^^^^^~08/01/1984~
-~11816~^~306~^100.^88^4.^~1~^^^^^^^^^^^~08/01/1984~
-~11816~^~307~^4.^0^^~1~^^^^^^^^^^^~08/01/1984~
-~11816~^~318~^6854.^0^^~4~^~NC~^^^^^^^^^^~03/01/2007~
-~11816~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2002~
-~11816~^~320~^343.^0^^~4~^~NC~^^^^^^^^^^~03/01/2007~
-~11816~^~321~^3400.^0^^~4~^~RA~^^^^^^^^^^~03/01/2007~
-~11816~^~322~^1353.^0^^~4~^~RA~^^^^^^^^^^~03/01/2007~
-~11816~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~
-~11816~^~334~^72.^0^^~4~^~RA~^^^^^^^^^^~03/01/2007~
-~11816~^~337~^0.^0^^~4~^~RA~^^^^^^^^^^~03/01/2007~
-~11816~^~338~^1070.^0^^~4~^~RA~^^^^^^^^^^~03/01/2007~
-~11816~^~417~^18.^0^^~1~^^^^^^^^^^^~08/01/1984~
-~11816~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~
-~11816~^~432~^18.^0^^~1~^^^^^^^^^^^~03/01/2007~
-~11816~^~435~^18.^0^^~4~^~NC~^^^^^^^^^^~03/01/2007~
-~11816~^~601~^0.^0^^~7~^~Z~^^^^^^^^^^~08/01/1984~
-~11817~^~208~^48.^0^^~4~^~NC~^^^^^^^^^^~03/01/2007~
-~11817~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2005~
-~11817~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2005~
-~11817~^~268~^201.^0^^~4~^^^^^^^^^^^~03/01/2007~
-~11817~^~301~^23.^0^^~1~^^^^^^^^^^^~08/01/1984~
-~11817~^~304~^16.^0^^~1~^^^^^^^^^^^~08/01/1984~
-~11817~^~305~^49.^0^^~1~^^^^^^^^^^^~08/01/1984~
-~11817~^~306~^158.^0^^~1~^^^^^^^^^^^~08/01/1984~
-~11817~^~307~^304.^0^^~4~^^^^^^^^^^^~08/01/1984~
-~11817~^~318~^9514.^0^^~4~^~NC~^^^^^^^^^^~03/01/2007~
-~11817~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2002~
-~11817~^~320~^476.^0^^~4~^~NC~^^^^^^^^^^~03/01/2007~
-~11817~^~321~^4725.^0^^~4~^~BFZN~^~11323~^^^^^^^^^~03/01/2007~
-~11817~^~322~^1868.^0^^~4~^~BFZN~^~11323~^^^^^^^^^~03/01/2007~
-~11817~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~
-~11817~^~334~^99.^0^^~4~^~BFZN~^~11323~^^^^^^^^^~03/01/2007~
-~11817~^~337~^0.^0^^~4~^~BFZN~^~11323~^^^^^^^^^~03/01/2007~
-~11817~^~338~^1538.^0^^~4~^~BFZN~^~11323~^^^^^^^^^~03/01/2007~
-~11817~^~417~^26.^0^^~1~^^^^^^^^^^^~08/01/1984~
-~11817~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~
-~11817~^~432~^26.^0^^~1~^^^^^^^^^^^~03/01/2007~
-~11817~^~435~^26.^0^^~4~^~NC~^^^^^^^^^^~03/01/2007~
-~11817~^~601~^0.^0^^~7~^~Z~^^^^^^^^^^~08/01/1984~
-~11818~^~208~^45.^0^^~4~^~NC~^^^^^^^^^^~03/01/2007~
-~11818~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2003~
-~11818~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2003~
-~11818~^~268~^188.^0^^~4~^^^^^^^^^^^~03/01/2007~
-~11818~^~301~^14.^0^^~1~^^^^^^^^^^^~08/01/1984~
-~11818~^~304~^13.^0^^~4~^^^^^^^^^^^~08/01/1984~
-~11818~^~305~^34.^0^^~4~^^^^^^^^^^^~08/01/1984~
-~11818~^~306~^117.^0^^~4~^^^^^^^^^^^~08/01/1984~
-~11818~^~307~^273.^0^^~4~^^^^^^^^^^^~08/01/1984~
-~11818~^~318~^1051.^0^^~4~^~NC~^^^^^^^^^^~03/01/2007~
-~11818~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2002~
-~11818~^~320~^53.^0^^~4~^~NC~^^^^^^^^^^~03/01/2007~
-~11818~^~321~^626.^0^^~4~^~RA~^^^^^^^^^^~01/01/2003~
-~11818~^~322~^10.^0^^~4~^~RA~^^^^^^^^^^~01/01/2003~
-~11818~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~
-~11818~^~334~^0.^0^^~4~^~RA~^^^^^^^^^^~01/01/2003~
-~11818~^~337~^0.^0^^~4~^~RA~^^^^^^^^^^~01/01/2003~
-~11818~^~338~^1202.^0^^~4~^~RA~^^^^^^^^^^~01/01/2003~
-~11818~^~417~^20.^0^^~4~^^^^^^^^^^^~08/01/1984~
-~11818~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~
-~11818~^~432~^20.^0^^~4~^^^^^^^^^^^~03/01/2007~
-~11818~^~435~^20.^0^^~4~^~NC~^^^^^^^^^^~03/01/2007~
-~11818~^~601~^0.^0^^~7~^~Z~^^^^^^^^^^~08/01/1984~
-~11819~^~208~^40.^0^^~4~^~NC~^^^^^^^^^^~03/01/2007~
-~11819~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2003~
-~11819~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2003~
-~11819~^~268~^166.^0^^~4~^~NC~^^^^^^^^^^~03/01/2007~
-~11819~^~301~^14.^4^1.^~1~^^^^2^10.^18.^3^8.^20.^~4~^~01/01/2004~
-~11819~^~304~^23.^4^1.^~1~^^^^2^19.^27.^3^17.^29.^~4~^~01/01/2004~
-~11819~^~305~^43.^4^2.^~1~^^^^2^37.^46.^3^36.^49.^~4~^~01/01/2004~
-~11819~^~306~^322.^4^34.^~1~^^^^2^260.^420.^3^213.^431.^~4~^~01/01/2004~
-~11819~^~307~^9.^4^1.^~1~^^^^2^5.^12.^3^3.^13.^~4~^~01/01/2004~
-~11819~^~318~^952.^0^^~1~^~AS~^^^^^^^^^^~03/01/2007~
-~11819~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2002~
-~11819~^~320~^48.^0^^~1~^~AS~^^^^^^^^^^~03/01/2007~
-~11819~^~321~^534.^2^^~1~^^^^1^401.^667.^1^^^^~01/01/2003~
-~11819~^~322~^36.^1^^~1~^^^^^36.^36.^^^^^~01/01/2003~
-~11819~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~
-~11819~^~334~^40.^2^^~1~^^^^1^17.^63.^1^^^^~01/01/2003~
-~11819~^~337~^0.^0^^~4~^~BFSN~^~11329~^^^^^^^^^~01/01/2003~
-~11819~^~338~^709.^0^^~4~^~BFSN~^~11329~^^^^^^^^^~01/01/2003~
-~11819~^~417~^23.^5^0.^~1~^^^^2^23.^24.^2^21.^25.^~4~^~01/01/2004~
-~11819~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~
-~11819~^~432~^23.^5^0.^~1~^^^^2^23.^24.^2^21.^25.^^~03/01/2007~
-~11819~^~435~^23.^0^^~4~^~NC~^^^^^^^^^^~03/01/2007~
-~11819~^~601~^0.^0^^~7~^~Z~^^^^^^^^^^~08/01/1984~
-~11820~^~208~^21.^0^^~4~^^^^^^^^^^^~03/01/2007~
-~11820~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~
-~11820~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~
-~11820~^~268~^88.^0^^~4~^^^^^^^^^^^~03/01/2007~
-~11820~^~301~^7.^0^^~1~^^^^^^^^^^^~08/01/1984~
-~11820~^~304~^14.^0^^~4~^^^^^^^^^^^~08/01/1984~
-~11820~^~305~^17.^0^^~1~^^^^^^^^^^^~08/01/1984~
-~11820~^~306~^187.^0^^~4~^^^^^^^^^^^~08/01/1984~
-~11820~^~307~^1173.^0^^~4~^^^^^^^^^^^~08/01/1984~
-~11820~^~318~^11892.^0^^~4~^~NC~^^^^^^^^^^~03/01/2007~
-~11820~^~319~^0.^0^^~4~^~BNA~^~11819~^^^^^^^^^~02/01/2003~
-~11820~^~320~^595.^0^^~4~^~NC~^^^^^^^^^^~03/01/2007~
-~11820~^~321~^6664.^0^^~4~^~BNA~^~11819~^^^^^^^^^~02/01/2003~
-~11820~^~322~^446.^0^^~4~^~BNA~^~11819~^^^^^^^^^~02/01/2003~
-~11820~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~
-~11820~^~334~^495.^0^^~4~^~BNA~^~11819~^^^^^^^^^~02/01/2003~
-~11820~^~337~^0.^0^^~4~^~BFSN~^~11819~^^^^^^^^^~02/01/2003~
-~11820~^~338~^444.^0^^~4~^~BFSN~^~11819~^^^^^^^^^~02/01/2003~
-~11820~^~417~^10.^0^^~4~^^^^^^^^^^^~08/01/1984~
-~11820~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~
-~11820~^~432~^10.^0^^~4~^^^^^^^^^^^~03/01/2007~
-~11820~^~435~^10.^0^^~4~^~NC~^^^^^^^^^^~03/01/2007~
-~11820~^~601~^0.^0^^~7~^~Z~^^^^^^^^^^~08/01/1984~
-~11821~^~208~^26.^0^^~4~^~NC~^^^^^^^^^^~02/01/2017~
-~11821~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~11/01/2002~
-~11821~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~11/01/2002~
-~11821~^~268~^111.^0^^~4~^~NC~^^^^^^^^^^~02/01/2017~
-~11821~^~301~^7.^4^0.^~1~^~A~^^^1^6.^8.^3^5.^8.^~2, 3~^~11/01/2002~
-~11821~^~304~^12.^4^0.^~1~^~A~^^^1^12.^13.^3^11.^13.^~2, 3~^~11/01/2002~
-~11821~^~305~^26.^4^0.^~1~^~A~^^^1^24.^28.^3^23.^27.^~2, 3~^~11/01/2002~
-~11821~^~306~^211.^4^7.^~1~^~A~^^^1^190.^227.^3^186.^235.^~2, 3~^~11/01/2002~
-~11821~^~307~^4.^0^^~4~^~BFSN~^~11333~^^^^^^^^^~06/01/2006~
-~11821~^~318~^3131.^0^^~1~^~AS~^^^^^^^^^^~08/01/2007~
-~11821~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2002~
-~11821~^~320~^157.^0^^~1~^~AS~^^^^^^^^^^~08/01/2007~
-~11821~^~321~^1624.^8^158.^~1~^~A~^^^2^407.^2978.^2^962.^2284.^~2, 3~^~03/01/2003~
-~11821~^~322~^20.^6^0.^~1~^~A~^^^2^0.^59.^^^^~1, 2, 3~^~03/01/2003~
-~11821~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~
-~11821~^~334~^490.^5^5.^~1~^~A~^^^2^43.^2205.^3^473.^506.^~2, 3~^~03/01/2003~
-~11821~^~337~^0.^1^^~1~^~A~^^^^^^^^^~1~^~08/01/2007~
-~11821~^~338~^51.^4^8.^~1~^~A~^^^1^29.^67.^3^24.^76.^~2, 3~^~08/01/2007~
-~11821~^~417~^46.^2^^~1~^~A~^^^1^42.^51.^1^^^^~01/01/2006~
-~11821~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~
-~11821~^~432~^46.^2^^~1~^~A~^^^^^^^^^^~08/01/2007~
-~11821~^~435~^46.^0^^~4~^~NC~^^^^^^^^^^~08/01/2007~
-~11821~^~601~^0.^0^^~7~^~Z~^^^^^^^^^^~08/01/1984~
-~11822~^~208~^26.^0^^~4~^~NC~^^^^^^^^^^~03/01/2007~
-~11822~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2005~
-~11822~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2005~
-~11822~^~268~^108.^0^^~4~^~NC~^^^^^^^^^^~03/01/2007~
-~11822~^~301~^9.^0^^~1~^^^^^^^^^^^~08/01/1984~
-~11822~^~304~^10.^0^^~1~^^^^^^^^^^^~08/01/1984~
-~11822~^~305~^18.^0^^~1~^^^^^^^^^^^~08/01/1984~
-~11822~^~306~^166.^0^^~1~^^^^^^^^^^^~08/01/1984~
-~11822~^~307~^238.^1^^~1~^^^^^^^^^^^~08/01/1984~
-~11822~^~318~^468.^0^^~4~^~NC~^^^^^^^^^^~03/01/2007~
-~11822~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2002~
-~11822~^~320~^23.^0^^~4~^~NC~^^^^^^^^^^~03/01/2007~
-~11822~^~321~^264.^0^^~4~^~BFZN~^~11334~^^^^^^^^^~03/01/2007~
-~11822~^~322~^26.^0^^~4~^~BFZN~^~11334~^^^^^^^^^~03/01/2007~
-~11822~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~
-~11822~^~334~^8.^0^^~4~^~BFZN~^~11334~^^^^^^^^^~03/01/2007~
-~11822~^~337~^0.^0^^~4~^~BFZN~^~11334~^^^^^^^^^~03/01/2007~
-~11822~^~338~^431.^0^^~4~^~BFZN~^~11334~^^^^^^^^^~03/01/2007~
-~11822~^~417~^16.^0^^~1~^^^^^^^^^^^~08/01/1984~
-~11822~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~
-~11822~^~432~^16.^0^^~1~^^^^^^^^^^^~03/01/2007~
-~11822~^~435~^16.^0^^~4~^~NC~^^^^^^^^^^~03/01/2007~
-~11822~^~601~^0.^0^^~7~^~Z~^^^^^^^^^^~08/01/1984~
-~11822~^~636~^9.^0^^~1~^^^^^^^^^^^~08/01/1984~
-~11823~^~208~^28.^0^^~4~^~NC~^^^^^^^^^^~03/01/2007~
-~11823~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2003~
-~11823~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2003~
-~11823~^~268~^117.^0^^~4~^^^^^^^^^^^~08/01/2007~
-~11823~^~301~^9.^0^^~1~^^^^^^^^^^^~08/01/1984~
-~11823~^~304~^10.^0^^~1~^^^^^^^^^^^~08/01/1984~
-~11823~^~305~^18.^0^^~1~^^^^^^^^^^^~08/01/1984~
-~11823~^~306~^166.^0^^~1~^^^^^^^^^^^~08/01/1984~
-~11823~^~307~^2.^0^^~1~^^^^^^^^^^^~08/01/1984~
-~11823~^~318~^2941.^0^^~4~^~NC~^^^^^^^^^^~08/01/2007~
-~11823~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2002~
-~11823~^~320~^147.^0^^~4~^~NC~^^^^^^^^^^~08/01/2007~
-~11823~^~321~^1525.^0^^~4~^~BFSY~^~11821~^^^^^^^^^~03/01/2007~
-~11823~^~322~^18.^0^^~4~^~BFSY~^~11821~^^^^^^^^^~03/01/2007~
-~11823~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~
-~11823~^~334~^460.^0^^~4~^~BFSY~^~11821~^^^^^^^^^~03/01/2007~
-~11823~^~337~^0.^0^^~4~^~BFSY~^~11821~^^^^^^^^^~08/01/2007~
-~11823~^~338~^47.^0^^~4~^~BFSY~^~11821~^^^^^^^^^~03/01/2007~
-~11823~^~417~^16.^0^^~1~^^^^^^^^^^^~08/01/1984~
-~11823~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~
-~11823~^~432~^16.^0^^~1~^^^^^^^^^^^~08/01/2007~
-~11823~^~435~^16.^0^^~4~^~NC~^^^^^^^^^^~08/01/2007~
-~11823~^~601~^0.^0^^~7~^~Z~^^^^^^^^^^~08/01/1984~
-~11823~^~636~^9.^0^^~1~^^^^^^^^^^^~08/01/1984~
-~11824~^~208~^26.^0^^~4~^~NC~^^^^^^^^^^~08/01/2007~
-~11824~^~268~^108.^0^^~4~^~NC~^^^^^^^^^^~08/01/2007~
-~11824~^~301~^9.^0^^~1~^^^^^^^^^^^~08/01/1984~
-~11824~^~304~^10.^0^^~1~^^^^^^^^^^^~08/01/1984~
-~11824~^~305~^18.^0^^~1~^^^^^^^^^^^~08/01/1984~
-~11824~^~306~^166.^0^^~1~^^^^^^^^^^^~08/01/1984~
-~11824~^~307~^238.^1^^~1~^^^^^^^^^^^~08/01/1984~
-~11824~^~318~^2941.^0^^~4~^~NC~^^^^^^^^^^~08/01/2007~
-~11824~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2002~
-~11824~^~320~^147.^0^^~4~^~NC~^^^^^^^^^^~08/01/2007~
-~11824~^~321~^1525.^0^^~4~^~BFZN~^~11823~^^^^^^^^^~03/01/2007~
-~11824~^~322~^18.^0^^~4~^~BFZN~^~11823~^^^^^^^^^~03/01/2007~
-~11824~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~
-~11824~^~334~^460.^0^^~4~^~BFZN~^~11823~^^^^^^^^^~03/01/2007~
-~11824~^~337~^0.^0^^~4~^~BFZN~^~11823~^^^^^^^^^~08/01/2007~
-~11824~^~338~^47.^0^^~4~^~BFZN~^~11823~^^^^^^^^^~03/01/2007~
-~11824~^~417~^16.^0^^~1~^^^^^^^^^^^~08/01/1984~
-~11824~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~
-~11824~^~432~^16.^0^^~1~^^^^^^^^^^^~08/01/2007~
-~11824~^~435~^16.^0^^~4~^~NC~^^^^^^^^^^~08/01/2007~
-~11824~^~601~^0.^0^^~7~^~Z~^^^^^^^^^^~08/01/1984~
-~11824~^~636~^9.^0^^~1~^^^^^^^^^^^~08/01/1984~
-~11825~^~208~^16.^0^^~4~^~NC~^^^^^^^^^^~08/01/2011~
-~11825~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2011~
-~11825~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2011~
-~11825~^~268~^65.^0^^~4~^~NC~^^^^^^^^^^~08/01/2011~
-~11825~^~301~^8.^0^^~1~^^^^^^^^^^^~08/01/1984~
-~11825~^~304~^7.^0^^~1~^^^^^^^^^^^~08/01/1984~
-~11825~^~305~^13.^0^^~1~^^^^^^^^^^^~08/01/1984~
-~11825~^~306~^72.^0^^~1~^^^^^^^^^^^~08/01/1984~
-~11825~^~307~^240.^0^^~4~^^^^^^^^^^^~08/01/1984~
-~11825~^~318~^290.^0^^~1~^^^^^^^^^^^~05/01/2011~
-~11825~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2002~
-~11825~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~
-~11825~^~417~^10.^0^^~1~^^^^^^^^^^^~08/01/1984~
-~11825~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~
-~11825~^~432~^10.^0^^~1~^^^^^^^^^^^~12/01/1984~
-~11825~^~435~^10.^0^^~4~^~NC~^^^^^^^^^^~07/01/2008~
-~11825~^~601~^0.^0^^~7~^~Z~^^^^^^^^^^~08/01/1984~
-~11826~^~208~^111.^0^^~4~^~NC~^^^^^^^^^^~03/01/2007~
-~11826~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2003~
-~11826~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2003~
-~11826~^~268~^464.^0^^~4~^^^^^^^^^^^~03/01/2007~
-~11826~^~301~^41.^0^^~1~^^^^^^^^^^^~08/01/1984~
-~11826~^~304~^40.^1^^~1~^~A~^^^^^^^^^^~04/01/1996~
-~11826~^~305~^118.^0^^~1~^^^^^^^^^^^~08/01/1984~
-~11826~^~306~^456.^1^^~1~^~A~^^^^^^^^^^~04/01/1996~
-~11826~^~307~^240.^0^^~4~^^^^^^^^^^^~08/01/1984~
-~11826~^~318~^50.^0^^~4~^~NC~^^^^^^^^^^~03/01/2007~
-~11826~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2002~
-~11826~^~320~^2.^0^^~4~^~NC~^^^^^^^^^^~03/01/2007~
-~11826~^~321~^30.^0^^~4~^~BFSY~^~11344~^^^^^^^^^~03/01/2007~
-~11826~^~322~^0.^0^^~4~^~BFSY~^~11344~^^^^^^^^^~03/01/2007~
-~11826~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~
-~11826~^~334~^0.^0^^~4~^~BFSY~^~11344~^^^^^^^^^~03/01/2007~
-~11826~^~337~^0.^0^^~4~^~BFSY~^~11344~^^^^^^^^^~03/01/2007~
-~11826~^~338~^141.^0^^~4~^~BFSY~^~11344~^^^^^^^^^~03/01/2007~
-~11826~^~417~^100.^0^^~4~^~BFZN~^^^^^^^^^^~04/01/1996~
-~11826~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~
-~11826~^~432~^100.^0^^~4~^~BFZN~^^^^^^^^^^~03/01/2007~
-~11826~^~435~^100.^0^^~4~^~NC~^^^^^^^^^^~03/01/2007~
-~11826~^~601~^0.^0^^~7~^~Z~^^^^^^^^^^~08/01/1984~
-~11827~^~208~^20.^0^^~4~^~NC~^^^^^^^^^^~02/01/2007~
-~11827~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2003~
-~11827~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2003~
-~11827~^~268~^84.^0^^~4~^^^^^^^^^^^~02/01/2007~
-~11827~^~301~^53.^0^^~1~^^^^^^^^^^^~08/01/1984~
-~11827~^~304~^14.^0^^~4~^^^^^^^^^^^~08/01/1984~
-~11827~^~305~^33.^0^^~1~^^^^^^^^^^^~08/01/1984~
-~11827~^~306~^184.^0^^~4~^^^^^^^^^^^~08/01/1984~
-~11827~^~307~^254.^0^^~4~^^^^^^^^^^^~08/01/1984~
-~11827~^~318~^8700.^0^^~4~^~NC~^^^^^^^^^^~02/01/2007~
-~11827~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2002~
-~11827~^~320~^435.^0^^~4~^~NC~^^^^^^^^^^~02/01/2007~
-~11827~^~321~^5220.^0^^~4~^~O~^^^^^^^^^^~01/01/2003~
-~11827~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2003~
-~11827~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~
-~11827~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2003~
-~11827~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2003~
-~11827~^~338~^1747.^0^^~4~^~O~^^^^^^^^^^~01/01/2003~
-~11827~^~417~^9.^0^^~4~^^^^^^^^^^^~08/01/1984~
-~11827~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~
-~11827~^~432~^9.^0^^~4~^^^^^^^^^^^~02/01/2007~
-~11827~^~435~^9.^0^^~4~^~NC~^^^^^^^^^^~02/01/2007~
-~11827~^~601~^0.^0^^~7~^~Z~^^^^^^^^^^~08/01/1984~
-~11828~^~208~^93.^0^^~4~^~NC~^^^^^^^^^^~08/01/2010~
-~11828~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~08/01/2010~
-~11828~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~08/01/2010~
-~11828~^~268~^390.^0^^~4~^~NC~^^^^^^^^^^~08/01/2010~
-~11828~^~301~^15.^46^0.^~6~^~JA~^^^4^6.^20.^3^14.^15.^~2~^~05/01/2002~
-~11828~^~304~^28.^47^0.^~6~^~JA~^^^4^19.^31.^3^27.^29.^~2~^~05/01/2002~
-~11828~^~305~^70.^46^0.^~6~^~JA~^^^4^38.^80.^3^68.^71.^~2~^~05/01/2002~
-~11828~^~306~^535.^47^3.^~6~^~JA~^^^4^391.^640.^3^524.^545.^~2~^~05/01/2002~
-~11828~^~307~^10.^47^0.^~6~^~JA~^^^4^0.^14.^3^10.^10.^~2~^~08/01/2010~
-~11828~^~318~^10.^0^^~4~^~NC~^^^^^^^^^^~05/01/2004~
-~11828~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2002~
-~11828~^~320~^1.^0^^~4~^~NC~^^^^^^^^^^~05/01/2004~
-~11828~^~321~^6.^21^^~11~^~JO~^^^0^6.^6.^^^^~2~^~05/01/2002~
-~11828~^~322~^0.^21^^~11~^~JO~^^^0^0.^0.^^^^~2~^~05/01/2002~
-~11828~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~
-~11828~^~334~^0.^21^^~11~^~JO~^^^0^0.^0.^^^^~2~^~05/01/2002~
-~11828~^~337~^0.^21^^~11~^~JO~^^^0^0.^0.^^^^~2~^~05/01/2002~
-~11828~^~338~^30.^12^^~11~^~JO~^^^0^30.^31.^^^^~2~^~08/01/2010~
-~11828~^~417~^28.^21^^~1~^~A~^^^0^26.^38.^^^^~2~^~05/01/2002~
-~11828~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~
-~11828~^~432~^28.^21^^~1~^~A~^^^0^26.^38.^^^^^~08/01/2010~
-~11828~^~435~^28.^0^^~4~^~NC~^^^^^^^^^^~08/01/2010~
-~11828~^~601~^0.^0^^~7~^~Z~^^^^^^^^^^~08/01/1984~
-~11829~^~208~^93.^0^^~4~^~NC~^^^^^^^^^^~02/01/2007~
-~11829~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2003~
-~11829~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2003~
-~11829~^~268~^390.^0^^~4~^~NC~^^^^^^^^^^~02/01/2007~
-~11829~^~301~^5.^6^1.^~1~^^^^^^^^^^^~08/01/1984~
-~11829~^~304~^25.^6^1.^~1~^^^^^^^^^^^~08/01/1984~
-~11829~^~305~^50.^6^3.^~1~^^^^^^^^^^^~08/01/1984~
-~11829~^~306~^391.^6^18.^~1~^^^^^^^^^^^~08/01/1984~
-~11829~^~307~^241.^0^^~4~^^^^^^^^^^^~08/01/1984~
-~11829~^~318~^0.^0^^~1~^~AS~^^^^^^^^^^~02/01/2007~
-~11829~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2002~
-~11829~^~320~^0.^0^^~1~^~AS~^^^^^^^^^^~02/01/2007~
-~11829~^~321~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2003~
-~11829~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2003~
-~11829~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~
-~11829~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2003~
-~11829~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2003~
-~11829~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2003~
-~11829~^~417~^9.^6^0.^~1~^^^^^^^^^^^~08/01/1984~
-~11829~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~
-~11829~^~432~^9.^6^0.^~1~^^^^^^^^^^^~02/01/2007~
-~11829~^~435~^9.^0^^~4~^~NC~^^^^^^^^^^~02/01/2007~
-~11829~^~601~^0.^0^^~7~^~Z~^^^^^^^^^^~08/01/1984~
-~11830~^~208~^198.^0^^~4~^~NC~^^^^^^^^^^~02/01/2007~
-~11830~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2003~
-~11830~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2003~
-~11830~^~268~^830.^0^^~4~^~NC~^^^^^^^^^^~02/01/2007~
-~11830~^~301~^34.^6^9.^~1~^^^^^^^^^^^~08/01/1984~
-~11830~^~304~^43.^6^1.^~1~^^^^^^^^^^^~08/01/1984~
-~11830~^~305~^101.^6^5.^~1~^^^^^^^^^^^~08/01/1984~
-~11830~^~306~^573.^6^25.^~1~^^^^^^^^^^^~08/01/1984~
-~11830~^~307~^257.^0^^~4~^^^^^^^^^^^~08/01/1984~
-~11830~^~318~^10.^0^^~4~^~NC~^^^^^^^^^^~02/01/2007~
-~11830~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2002~
-~11830~^~320~^1.^0^^~4~^~NC~^^^^^^^^^^~02/01/2007~
-~11830~^~321~^6.^0^^~4~^~O~^^^^^^^^^^~01/01/2003~
-~11830~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2003~
-~11830~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~
-~11830~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2003~
-~11830~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2003~
-~11830~^~338~^30.^0^^~4~^~O~^^^^^^^^^^~01/01/2003~
-~11830~^~417~^22.^6^1.^~1~^^^^^^^^^^^~08/01/1984~
-~11830~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~
-~11830~^~432~^22.^6^1.^~1~^^^^^^^^^^^~02/01/2007~
-~11830~^~435~^22.^0^^~4~^~NC~^^^^^^^^^^~02/01/2007~
-~11830~^~601~^0.^0^^~7~^~Z~^^^^^^^^^^~08/01/1984~
-~11831~^~208~^87.^0^^~4~^~NC~^^^^^^^^^^~02/01/2007~
-~11831~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2003~
-~11831~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2003~
-~11831~^~268~^364.^0^^~4~^^^^^^^^^^^~02/01/2007~
-~11831~^~301~^5.^6^1.^~1~^^^^^^^^^^^~08/01/1984~
-~11831~^~304~^22.^6^1.^~1~^^^^^^^^^^^~08/01/1984~
-~11831~^~305~^44.^6^2.^~1~^^^^^^^^^^^~08/01/1984~
-~11831~^~306~^379.^6^10.^~1~^^^^^^^^^^^~08/01/1984~
-~11831~^~307~^240.^0^^~4~^^^^^^^^^^^~08/01/1984~
-~11831~^~318~^3.^0^^~4~^~NC~^^^^^^^^^^~02/01/2007~
-~11831~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2002~
-~11831~^~320~^0.^0^^~4~^~NC~^^^^^^^^^^~02/01/2007~
-~11831~^~321~^2.^0^^~4~^~BFSY~^~11352~^^^^^^^^^~04/01/2003~
-~11831~^~322~^0.^0^^~4~^~BFSY~^~11352~^^^^^^^^^~04/01/2003~
-~11831~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~
-~11831~^~334~^0.^0^^~4~^~BFSY~^~11352~^^^^^^^^^~04/01/2003~
-~11831~^~337~^0.^0^^~4~^~BFSY~^~11352~^^^^^^^^^~04/01/2003~
-~11831~^~338~^10.^0^^~4~^~BFSY~^~11352~^^^^^^^^^~09/01/2015~
-~11831~^~417~^10.^6^0.^~1~^^^^^^^^^^^~08/01/1984~
-~11831~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~
-~11831~^~432~^10.^6^0.^~1~^^^^^^^^^^^~02/01/2007~
-~11831~^~435~^10.^0^^~4~^~NC~^^^^^^^^^^~02/01/2007~
-~11831~^~601~^0.^0^^~7~^~Z~^^^^^^^^^^~08/01/1984~
-~11832~^~208~^78.^0^^~4~^~NC~^^^^^^^^^^~05/01/2005~
-~11832~^~268~^327.^0^^~4~^~NC~^^^^^^^^^^~05/01/2005~
-~11832~^~301~^45.^5^14.^~1~^^^^^^^^^^^~08/01/1984~
-~11832~^~304~^30.^5^0.^~1~^^^^^^^^^^^~08/01/1984~
-~11832~^~305~^54.^5^6.^~1~^^^^^^^^^^^~08/01/1984~
-~11832~^~306~^407.^5^19.^~1~^^^^^^^^^^^~08/01/1984~
-~11832~^~307~^250.^0^^~4~^^^^^^^^^^^~08/01/1984~
-~11832~^~318~^0.^0^^~1~^~AS~^^^^^^^^^^~05/01/2005~
-~11832~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2002~
-~11832~^~320~^0.^0^^~1~^~AS~^^^^^^^^^^~05/01/2005~
-~11832~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~
-~11832~^~417~^10.^5^0.^~1~^^^^^^^^^^^~08/01/1984~
-~11832~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~
-~11832~^~432~^10.^5^0.^~1~^^^^^^^^^^^~12/01/1984~
-~11832~^~435~^10.^0^^~4~^~NC~^^^^^^^^^^~05/01/2005~
-~11832~^~601~^0.^0^^~7~^~Z~^^^^^^^^^^~08/01/1984~
-~11833~^~208~^86.^0^^~4~^~NC~^^^^^^^^^^~08/01/1984~
-~11833~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2007~
-~11833~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2007~
-~11833~^~268~^360.^0^^~4~^^^^^^^^^^^~02/01/2007~
-~11833~^~301~^8.^6^3.^~1~^^^^^^^^^^^~08/01/1984~
-~11833~^~304~^20.^6^1.^~1~^^^^^^^^^^^~08/01/1984~
-~11833~^~305~^40.^6^2.^~1~^^^^^^^^^^^~08/01/1984~
-~11833~^~306~^328.^0^^~1~^^^^^^^^^^^~08/01/1984~
-~11833~^~307~^241.^0^^~4~^^^^^^^^^^^~08/01/1984~
-~11833~^~318~^2.^0^^~4~^~NC~^^^^^^^^^^~09/01/2015~
-~11833~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2002~
-~11833~^~320~^0.^0^^~4~^~NC~^^^^^^^^^^~02/01/2007~
-~11833~^~321~^1.^0^^~4~^~BFSY~^~11352~^^^^^^^^^~09/01/2015~
-~11833~^~322~^0.^0^^~4~^~BFSY~^~11352~^^^^^^^^^~10/01/2002~
-~11833~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~
-~11833~^~334~^0.^0^^~4~^~BFSY~^~11352~^^^^^^^^^~10/01/2002~
-~11833~^~337~^0.^0^^~4~^~BFSY~^~11352~^^^^^^^^^~10/01/2002~
-~11833~^~338~^9.^0^^~4~^~BFSY~^~11352~^^^^^^^^^~10/01/2002~
-~11833~^~417~^9.^6^0.^~1~^^^^^^^^^^^~08/01/1984~
-~11833~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2007~
-~11833~^~432~^9.^6^0.^~1~^^^^^^^^^^^~02/01/2007~
-~11833~^~435~^9.^0^^~4~^~NC~^^^^^^^^^^~02/01/2007~
-~11833~^~601~^0.^0^^~7~^~Z~^^^^^^^^^^~07/01/2001~
-~11834~^~208~^105.^0^^~4~^~NC~^^^^^^^^^^~05/01/2005~
-~11834~^~268~^441.^0^^~4~^~NC~^^^^^^^^^^~05/01/2005~
-~11834~^~301~^11.^10^3.^~1~^^^^^^^^^^^~08/01/1984~
-~11834~^~304~^27.^10^1.^~1~^^^^^^^^^^^~08/01/1984~
-~11834~^~305~^105.^10^44.^~1~^^^^^^^^^^^~08/01/1984~
-~11834~^~306~^447.^10^19.^~1~^^^^^^^^^^^~08/01/1984~
-~11834~^~307~^244.^0^^~4~^^^^^^^^^^^~08/01/1984~
-~11834~^~318~^0.^0^^~1~^~AS~^^^^^^^^^^~05/01/2005~
-~11834~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2002~
-~11834~^~320~^0.^0^^~1~^~AS~^^^^^^^^^^~05/01/2005~
-~11834~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~
-~11834~^~417~^12.^10^0.^~1~^^^^^^^^^^^~08/01/1984~
-~11834~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~
-~11834~^~432~^12.^10^0.^~1~^^^^^^^^^^^~12/01/1984~
-~11834~^~435~^12.^0^^~4~^~NC~^^^^^^^^^^~05/01/2005~
-~11834~^~601~^0.^0^^~7~^~Z~^^^^^^^^^^~08/01/1984~
-~11835~^~208~^100.^0^^~4~^~NC~^^^^^^^^^^~05/01/2005~
-~11835~^~268~^420.^0^^~4~^~NC~^^^^^^^^^^~05/01/2005~
-~11835~^~301~^5.^5^1.^~1~^^^^^^^^^^^~08/01/1984~
-~11835~^~304~^25.^5^2.^~1~^^^^^^^^^^^~08/01/1984~
-~11835~^~305~^109.^5^52.^~1~^^^^^^^^^^^~08/01/1984~
-~11835~^~306~^411.^5^22.^~1~^^^^^^^^^^^~08/01/1984~
-~11835~^~307~^243.^0^^~4~^^^^^^^^^^^~08/01/1984~
-~11835~^~318~^0.^0^^~1~^~AS~^^^^^^^^^^~05/01/2005~
-~11835~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2002~
-~11835~^~320~^0.^0^^~1~^~AS~^^^^^^^^^^~05/01/2005~
-~11835~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~
-~11835~^~417~^12.^5^0.^~1~^^^^^^^^^^^~08/01/1984~
-~11835~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~
-~11835~^~432~^12.^5^0.^~1~^^^^^^^^^^^~12/01/1984~
-~11835~^~435~^12.^0^^~4~^~NC~^^^^^^^^^^~05/01/2005~
-~11835~^~601~^0.^0^^~7~^~Z~^^^^^^^^^^~08/01/1984~
-~11836~^~208~^132.^0^^~4~^~NC~^^^^^^^^^^~05/01/2005~
-~11836~^~268~^554.^0^^~4~^~NC~^^^^^^^^^^~05/01/2005~
-~11836~^~301~^46.^5^17.^~1~^^^^^^^^^^^~08/01/1984~
-~11836~^~304~^37.^5^2.^~1~^^^^^^^^^^^~08/01/1984~
-~11836~^~305~^82.^5^4.^~1~^^^^^^^^^^^~08/01/1984~
-~11836~^~306~^650.^5^17.^~1~^^^^^^^^^^^~08/01/1984~
-~11836~^~307~^252.^0^^~4~^^^^^^^^^^^~08/01/1984~
-~11836~^~318~^0.^0^^~1~^~AS~^^^^^^^^^^~05/01/2005~
-~11836~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2002~
-~11836~^~320~^0.^0^^~1~^~AS~^^^^^^^^^^~05/01/2005~
-~11836~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~
-~11836~^~417~^17.^5^0.^~1~^^^^^^^^^^^~08/01/1984~
-~11836~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~
-~11836~^~432~^17.^5^0.^~1~^^^^^^^^^^^~12/01/1984~
-~11836~^~435~^17.^0^^~4~^~NC~^^^^^^^^^^~05/01/2005~
-~11836~^~601~^0.^0^^~7~^~Z~^^^^^^^^^^~08/01/1984~
-~11837~^~208~^63.^0^^~4~^~NC~^^^^^^^^^^~05/01/2006~
-~11837~^~268~^262.^0^^~4~^~NC~^^^^^^^^^^~05/01/2006~
-~11837~^~301~^7.^0^^~1~^^^^^^^^^^^~08/01/1984~
-~11837~^~304~^11.^0^^~1~^^^^^^^^^^^~08/01/1984~
-~11837~^~305~^26.^0^^~1~^^^^^^^^^^^~08/01/1984~
-~11837~^~306~^287.^0^^~1~^^^^^^^^^^^~08/01/1984~
-~11837~^~307~^256.^0^^~4~^^^^^^^^^^^~08/01/1984~
-~11837~^~318~^0.^0^^~1~^~AS~^^^^^^^^^^~05/01/2006~
-~11837~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2002~
-~11837~^~320~^0.^0^^~1~^~AS~^^^^^^^^^^~05/01/2006~
-~11837~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~
-~11837~^~417~^8.^0^^~1~^^^^^^^^^^^~08/01/1984~
-~11837~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~
-~11837~^~432~^8.^0^^~1~^^^^^^^^^^^~12/01/1984~
-~11837~^~435~^8.^0^^~4~^~NC~^^^^^^^^^^~05/01/2006~
-~11837~^~601~^0.^0^^~7~^~Z~^^^^^^^^^^~08/01/1984~
-~11840~^~208~^218.^0^^~4~^~NC~^^^^^^^^^^~02/01/2006~
-~11840~^~268~^912.^0^^~4~^~NC~^^^^^^^^^^~02/01/2006~
-~11840~^~301~^10.^0^^~1~^^^^^^^^^^^~08/01/1984~
-~11840~^~304~^22.^0^^~1~^^^^^^^^^^^~08/01/1984~
-~11840~^~305~^65.^0^^~1~^^^^^^^^^^^~08/01/1984~
-~11840~^~306~^480.^0^^~1~^^^^^^^^^^^~08/01/1984~
-~11840~^~307~^281.^0^^~4~^^^^^^^^^^^~08/01/1984~
-~11840~^~318~^0.^0^^~1~^~AS~^^^^^^^^^^~02/01/2006~
-~11840~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2002~
-~11840~^~320~^0.^0^^~1~^~AS~^^^^^^^^^^~02/01/2006~
-~11840~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~
-~11840~^~417~^17.^0^^~1~^^^^^^^^^^^~08/01/1984~
-~11840~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~
-~11840~^~432~^17.^0^^~1~^^^^^^^^^^^~02/01/2006~
-~11840~^~435~^17.^0^^~4~^~NC~^^^^^^^^^^~02/01/2006~
-~11840~^~601~^0.^0^^~7~^~Z~^^^^^^^^^^~08/01/1984~
-~11841~^~208~^168.^0^^~4~^~NC~^^^^^^^^^^~02/01/2017~
-~11841~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2005~
-~11841~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2005~
-~11841~^~268~^704.^0^^~4~^~NC~^^^^^^^^^^~02/01/2017~
-~11841~^~301~^12.^53^0.^~6~^~JA~^^^6^6.^22.^23^11.^13.^~2, 3~^~03/01/2005~
-~11841~^~304~^26.^54^0.^~6~^~JA~^^^6^20.^38.^40^25.^26.^~2, 3~^~03/01/2005~
-~11841~^~305~^97.^53^2.^~6~^~JA~^^^6^66.^153.^43^91.^102.^~2, 3~^~03/01/2005~
-~11841~^~306~^451.^54^10.^~6~^~JA~^^^6^117.^650.^36^430.^471.^~2, 3~^~03/01/2005~
-~11841~^~307~^32.^48^2.^~1~^^^^5^8.^73.^34^26.^37.^~2, 3~^~03/01/2005~
-~11841~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~
-~11841~^~417~^28.^6^2.^~1~^~A~^^^1^17.^37.^5^21.^35.^~2, 3~^~03/01/2005~
-~11841~^~432~^28.^6^2.^~1~^~A~^^^1^17.^37.^5^21.^35.^^~03/01/2005~
-~11841~^~601~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2005~
-~11842~^~208~^147.^0^^~4~^~NC~^^^^^^^^^^~02/01/2017~
-~11842~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2005~
-~11842~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2005~
-~11842~^~268~^613.^0^^~4~^~NC~^^^^^^^^^^~02/01/2017~
-~11842~^~301~^9.^6^0.^~1~^~A~^^^1^8.^11.^5^8.^10.^~2, 3~^~03/01/2005~
-~11842~^~304~^21.^6^0.^~1~^~A~^^^1^20.^23.^5^19.^22.^~2, 3~^~03/01/2005~
-~11842~^~305~^83.^6^5.^~1~^~A~^^^1^70.^103.^5^69.^96.^~2, 3~^~03/01/2005~
-~11842~^~306~^408.^6^8.^~1~^~A~^^^1^385.^433.^5^386.^429.^~2, 3~^~03/01/2005~
-~11842~^~307~^23.^211^0.^~1~^~A~^^^^^^^^^^~10/01/2005~
-~11842~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~
-~11842~^~417~^35.^6^3.^~1~^~A~^^^1^21.^42.^5^27.^42.^~2, 3~^~03/01/2005~
-~11842~^~432~^35.^6^3.^~1~^~A~^^^1^21.^42.^5^27.^42.^^~10/01/2005~
-~11842~^~601~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2005~
-~11843~^~208~^132.^0^^~4~^~NC~^^^^^^^^^^~08/01/1984~
-~11843~^~268~^552.^0^^~4~^^^^^^^^^^^
-~11843~^~301~^119.^0^^~1~^^^^^^^^^^^~08/01/1984~
-~11843~^~304~^20.^0^^~1~^^^^^^^^^^^~08/01/1984~
-~11843~^~305~^113.^0^^~1~^^^^^^^^^^^~08/01/1984~
-~11843~^~306~^396.^0^^~1~^^^^^^^^^^^~08/01/1984~
-~11843~^~307~^433.^0^^~1~^^^^^^^^^^^~08/01/1984~
-~11843~^~318~^280.^0^^~4~^~NC~^^^^^^^^^^~04/01/2002~
-~11843~^~319~^60.^0^^~4~^~NR~^^^^^^^^^^~04/01/2002~
-~11843~^~320~^64.^0^^~4~^~NC~^^^^^^^^^^~04/01/2002~
-~11843~^~321~^48.^0^^~4~^~NR~^^^^^^^^^^~04/01/2002~
-~11843~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~
-~11843~^~417~^11.^0^^~4~^~RA~^^^^^^^^^^~10/01/1997~
-~11843~^~431~^3.^0^^~4~^~NC~^^^^^^^^^^~05/01/2000~
-~11843~^~432~^8.^0^^~1~^^^^^^^^^^^~08/01/1984~
-~11843~^~435~^13.^0^^~4~^~NC~^^^^^^^^^^~04/01/2002~
-~11843~^~601~^15.^0^^~1~^^^^^^^^^^^~08/01/1984~
-~11844~^~208~^88.^0^^~4~^~NC~^^^^^^^^^^~02/01/2006~
-~11844~^~268~^367.^0^^~4~^~NC~^^^^^^^^^^~02/01/2006~
-~11844~^~301~^57.^0^^~1~^^^^^^^^^^^~08/01/1984~
-~11844~^~304~^19.^0^^~1~^^^^^^^^^^^~08/01/1984~
-~11844~^~305~^63.^0^^~1~^^^^^^^^^^^~08/01/1984~
-~11844~^~306~^378.^0^^~1~^^^^^^^^^^^~08/01/1984~
-~11844~^~307~^335.^0^^~1~^^^^^^^^^^^~08/01/1984~
-~11844~^~318~^150.^0^^~4~^~NC~^^^^^^^^^^~02/01/2006~
-~11844~^~319~^30.^0^^~4~^~NR~^^^^^^^^^^~04/01/2002~
-~11844~^~320~^33.^0^^~4~^~NC~^^^^^^^^^^~02/01/2006~
-~11844~^~321~^30.^0^^~4~^~NR~^^^^^^^^^^~04/01/2002~
-~11844~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~
-~11844~^~417~^11.^0^^~4~^~RA~^^^^^^^^^^~10/01/1997~
-~11844~^~431~^2.^0^^~4~^~NC~^^^^^^^^^^~05/01/2000~
-~11844~^~432~^9.^0^^~1~^^^^^^^^^^^~08/01/1984~
-~11844~^~435~^13.^0^^~4~^~NC~^^^^^^^^^^~02/01/2006~
-~11844~^~601~^6.^0^^~1~^^^^^^^^^^^~08/01/1984~
-~11845~^~208~^18.^0^^~4~^~NC~^^^^^^^^^^~07/01/2012~
-~11845~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2003~
-~11845~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2003~
-~11845~^~268~^74.^0^^~4~^~NC~^^^^^^^^^^~07/01/2012~
-~11845~^~301~^15.^0^^~1~^^^^^^^^^^^~08/01/1984~
-~11845~^~304~^9.^0^^~1~^^^^^^^^^^^~08/01/1984~
-~11845~^~305~^30.^0^^~1~^^^^^^^^^^^~08/01/1984~
-~11845~^~306~^230.^0^^~1~^^^^^^^^^^^~08/01/1984~
-~11845~^~307~^237.^0^^~4~^^^^^^^^^^^~08/01/1984~
-~11845~^~318~^5755.^0^^~4~^~NC~^^^^^^^^^^~07/01/2012~
-~11845~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2002~
-~11845~^~320~^288.^0^^~4~^~NC~^^^^^^^^^^~07/01/2012~
-~11845~^~321~^2096.^0^^~4~^~BFSY~^~11422~^^^^^^^^^~01/01/2003~
-~11845~^~322~^2715.^0^^~4~^~BFSY~^~11422~^^^^^^^^^~07/01/2012~
-~11845~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~
-~11845~^~334~^0.^0^^~4~^~BFSY~^~11422~^^^^^^^^^~07/01/2012~
-~11845~^~337~^0.^0^^~4~^~BFSY~^~11422~^^^^^^^^^~01/01/2003~
-~11845~^~338~^1014.^0^^~4~^~BFSY~^~11422~^^^^^^^^^~01/01/2003~
-~11845~^~417~^9.^0^^~4~^^^^^^^^^^^~08/01/1984~
-~11845~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~
-~11845~^~432~^9.^0^^~4~^^^^^^^^^^^~03/01/2007~
-~11845~^~435~^9.^0^^~4~^~NC~^^^^^^^^^^~03/01/2007~
-~11845~^~601~^0.^0^^~7~^~Z~^^^^^^^^^^~08/01/1984~
-~11846~^~208~^34.^0^^~4~^~NC~^^^^^^^^^^~03/01/2007~
-~11846~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2005~
-~11846~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2005~
-~11846~^~268~^142.^0^^~4~^~NC~^^^^^^^^^^~03/01/2007~
-~11846~^~301~^26.^111^2.^~1~^^^^^^^^^^^~08/01/1984~
-~11846~^~304~^23.^62^0.^~1~^^^^^^^^^^^~08/01/1984~
-~11846~^~305~^35.^82^0.^~1~^^^^^^^^^^^~08/01/1984~
-~11846~^~306~^206.^67^7.^~1~^^^^^^^^^^^~08/01/1984~
-~11846~^~307~^241.^0^^~4~^^^^^^^^^^^~08/01/1984~
-~11846~^~318~^15563.^0^^~4~^~NC~^^^^^^^^^^~03/01/2007~
-~11846~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2002~
-~11846~^~320~^778.^0^^~4~^~NC~^^^^^^^^^^~03/01/2007~
-~11846~^~321~^6940.^0^^~4~^~BFZN~^~11424~^^^^^^^^^~05/01/2005~
-~11846~^~322~^4795.^0^^~4~^~BFZN~^~11424~^^^^^^^^^~05/01/2005~
-~11846~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~
-~11846~^~334~^0.^0^^~4~^~BFZN~^~11424~^^^^^^^^^~03/01/2007~
-~11846~^~337~^0.^0^^~4~^~BFZN~^~11424~^^^^^^^^^~03/01/2007~
-~11846~^~338~^0.^0^^~4~^~BFZN~^~11424~^^^^^^^^^~03/01/2007~
-~11846~^~417~^12.^1^^~1~^~A~^^^^^^^^^^~04/01/1996~
-~11846~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~
-~11846~^~432~^12.^1^^~1~^~A~^^^^^^^^^^~03/01/2007~
-~11846~^~435~^12.^0^^~4~^~NC~^^^^^^^^^^~03/01/2007~
-~11846~^~601~^0.^0^^~7~^~Z~^^^^^^^^^^~08/01/1984~
-~11847~^~208~^15.^0^^~4~^~NC~^^^^^^^^^^~03/01/2007~
-~11847~^~262~^0.^0^^~4~^~NR~^^^^^^^^^^~05/01/2005~
-~11847~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2005~
-~11847~^~268~^61.^0^^~4~^~NC~^^^^^^^^^^~03/01/2007~
-~11847~^~301~^37.^0^^~1~^^^^^^^^^^^~08/01/1984~
-~11847~^~304~^25.^1^^~1~^^^^^^^^^^^~08/01/1984~
-~11847~^~305~^34.^1^^~1~^^^^^^^^^^^~08/01/1984~
-~11847~^~306~^106.^1^^~1~^^^^^^^^^^^~08/01/1984~
-~11847~^~307~^242.^0^^~4~^^^^^^^^^^^~08/01/1984~
-~11847~^~318~^1734.^0^^~4~^~NC~^^^^^^^^^^~03/01/2007~
-~11847~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2002~
-~11847~^~320~^87.^0^^~4~^~NC~^^^^^^^^^^~03/01/2007~
-~11847~^~321~^1040.^0^^~4~^~BFZN~^~11417~^^^^^^^^^~05/01/2005~
-~11847~^~322~^0.^0^^~4~^~BFZN~^~11417~^^^^^^^^^~03/01/2007~
-~11847~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~
-~11847~^~334~^0.^0^^~4~^~BFZN~^~11417~^^^^^^^^^~03/01/2007~
-~11847~^~337~^0.^0^^~4~^~BFZN~^~11417~^^^^^^^^^~03/01/2007~
-~11847~^~338~^0.^0^^~4~^~BFZN~^~11417~^^^^^^^^^~03/01/2007~
-~11847~^~417~^41.^0^^~4~^^^^^^^^^^^~08/01/1984~
-~11847~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~
-~11847~^~432~^41.^0^^~4~^^^^^^^^^^^~03/01/2007~
-~11847~^~435~^41.^0^^~4~^~NC~^^^^^^^^^^~03/01/2007~
-~11847~^~601~^0.^0^^~7~^~Z~^^^^^^^^^^~08/01/1984~
-~11848~^~208~^21.^0^^~4~^~NC~^^^^^^^^^^~03/01/2007~
-~11848~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2003~
-~11848~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2003~
-~11848~^~268~^88.^0^^~4~^^^^^^^^^^^~03/01/2007~
-~11848~^~301~^43.^1^^~1~^^^^^^^^^^^~08/01/1984~
-~11848~^~304~^38.^1^^~1~^^^^^^^^^^^~08/01/1984~
-~11848~^~305~^79.^1^^~1~^^^^^^^^^^^~08/01/1984~
-~11848~^~306~^438.^1^^~1~^^^^^^^^^^^~08/01/1984~
-~11848~^~307~^244.^0^^~4~^^^^^^^^^^^~08/01/1984~
-~11848~^~318~^1600.^0^^~4~^~NC~^^^^^^^^^^~03/01/2007~
-~11848~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2002~
-~11848~^~320~^80.^0^^~4~^~NC~^^^^^^^^^^~03/01/2007~
-~11848~^~321~^960.^0^^~4~^~T~^^^^^^^^^^~01/01/2003~
-~11848~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2003~
-~11848~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~
-~11848~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2003~
-~11848~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2003~
-~11848~^~338~^1747.^0^^~4~^~O~^^^^^^^^^^~01/01/2003~
-~11848~^~417~^25.^0^^~4~^^^^^^^^^^^~08/01/1984~
-~11848~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~
-~11848~^~432~^25.^0^^~4~^^^^^^^^^^^~03/01/2007~
-~11848~^~435~^25.^0^^~4~^~NC~^^^^^^^^^^~03/01/2007~
-~11848~^~601~^0.^0^^~7~^~Z~^^^^^^^^^^~08/01/1984~
-~11849~^~208~^18.^0^^~4~^~NC~^^^^^^^^^^~05/01/2005~
-~11849~^~268~^75.^0^^~4~^~NC~^^^^^^^^^^~05/01/2005~
-~11849~^~301~^78.^1^^~1~^^^^^^^^^^^~08/01/1984~
-~11849~^~304~^67.^1^^~1~^^^^^^^^^^^~08/01/1984~
-~11849~^~305~^37.^1^^~1~^^^^^^^^^^^~08/01/1984~
-~11849~^~306~^488.^1^^~1~^^^^^^^^^^^~08/01/1984~
-~11849~^~307~^280.^0^^~4~^^^^^^^^^^^~08/01/1984~
-~11849~^~318~^1852.^0^^~1~^^^^^^^^^^^~06/01/2005~
-~11849~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2002~
-~11849~^~320~^93.^0^^~1~^^^^^^^^^^^~06/01/2005~
-~11849~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~
-~11849~^~417~^9.^0^^~4~^^^^^^^^^^^~08/01/1984~
-~11849~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~
-~11849~^~432~^9.^0^^~4~^^^^^^^^^^^~12/01/1984~
-~11849~^~435~^9.^0^^~4~^~NC~^^^^^^^^^^~06/01/2005~
-~11849~^~601~^0.^0^^~7~^~Z~^^^^^^^^^^~08/01/1984~
-~11850~^~208~^17.^0^^~4~^~NC~^^^^^^^^^^~02/01/2007~
-~11850~^~268~^71.^0^^~4~^^^^^^^^^^^~02/01/2007~
-~11850~^~301~^17.^1^^~1~^^^^^^^^^^^~08/01/1984~
-~11850~^~304~^9.^1^^~1~^^^^^^^^^^^~08/01/1984~
-~11850~^~305~^24.^1^^~1~^^^^^^^^^^^~08/01/1984~
-~11850~^~306~^285.^1^^~1~^^^^^^^^^^^~08/01/1984~
-~11850~^~307~^249.^0^^~4~^^^^^^^^^^^~08/01/1984~
-~11850~^~318~^0.^0^^~4~^~NC~^^^^^^^^^^~02/01/2007~
-~11850~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2002~
-~11850~^~320~^0.^0^^~4~^~NC~^^^^^^^^^^~02/01/2007~
-~11850~^~321~^0.^0^^~4~^~BFSY~^~11430~^^^^^^^^^~01/01/2003~
-~11850~^~322~^0.^0^^~4~^~BFSY~^~11430~^^^^^^^^^~01/01/2003~
-~11850~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~
-~11850~^~334~^0.^0^^~4~^~BFSY~^~11430~^^^^^^^^^~01/01/2003~
-~11850~^~337~^0.^0^^~4~^~BFSY~^~11430~^^^^^^^^^~01/01/2003~
-~11850~^~338~^0.^0^^~4~^~BFSY~^~11430~^^^^^^^^^~01/01/2003~
-~11850~^~417~^17.^0^^~4~^^^^^^^^^^^~08/01/1984~
-~11850~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~
-~11850~^~432~^17.^0^^~4~^^^^^^^^^^^~02/01/2007~
-~11850~^~435~^17.^0^^~4~^~NC~^^^^^^^^^^~02/01/2007~
-~11850~^~601~^0.^0^^~7~^~Z~^^^^^^^^^^~08/01/1984~
-~11851~^~208~^30.^0^^~4~^~NC~^^^^^^^^^^~08/01/2012~
-~11851~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2003~
-~11851~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2003~
-~11851~^~268~^127.^0^^~4~^~NC~^^^^^^^^^^~08/01/2012~
-~11851~^~301~^18.^1^^~6~^~JA~^^^2^18.^48.^^^^^~08/01/2012~
-~11851~^~304~^10.^1^^~6~^~JA~^^^2^10.^23.^^^^^~08/01/2012~
-~11851~^~305~^41.^1^^~6~^~JA~^^^2^41.^56.^^^^^~08/01/2012~
-~11851~^~306~^216.^1^^~6~^~JA~^^^2^216.^326.^^^^^~08/01/2012~
-~11851~^~307~^254.^0^^~4~^~O~^^^^^^^^^^~05/01/2014~
-~11851~^~318~^2.^0^^~4~^~NC~^^^^^^^^^^~03/01/2007~
-~11851~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2002~
-~11851~^~320~^0.^0^^~4~^~NC~^^^^^^^^^^~03/01/2007~
-~11851~^~321~^1.^0^^~4~^~BFSY~^~11435~^^^^^^^^^~01/01/2003~
-~11851~^~322~^0.^0^^~4~^~BFSY~^~11435~^^^^^^^^^~01/01/2003~
-~11851~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~
-~11851~^~334~^0.^0^^~4~^~BFSY~^~11435~^^^^^^^^^~01/01/2003~
-~11851~^~337~^10.^0^^~4~^~BFSY~^~11435~^^^^^^^^^~08/01/2012~
-~11851~^~338~^13.^0^^~4~^~BFSY~^~11435~^^^^^^^^^~08/01/2012~
-~11851~^~417~^15.^0^^~1~^^^^^^^^^^^~08/01/1984~
-~11851~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~
-~11851~^~432~^15.^0^^~1~^^^^^^^^^^^~03/01/2007~
-~11851~^~435~^15.^0^^~4~^~NC~^^^^^^^^^^~03/01/2007~
-~11851~^~601~^0.^0^^~7~^~Z~^^^^^^^^^^~08/01/1984~
-~11852~^~208~^68.^0^^~4~^~NC~^^^^^^^^^^~03/01/2007~
-~11852~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2003~
-~11852~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2003~
-~11852~^~268~^284.^0^^~4~^~NC~^^^^^^^^^^~03/01/2007~
-~11852~^~301~^47.^0^^~1~^^^^^^^^^^^~08/01/1984~
-~11852~^~304~^18.^0^^~1~^^^^^^^^^^^~08/01/1984~
-~11852~^~305~^56.^0^^~1~^^^^^^^^^^^~08/01/1984~
-~11852~^~306~^283.^0^^~1~^^^^^^^^^^^~08/01/1984~
-~11852~^~307~^252.^0^^~4~^^^^^^^^^^^~08/01/1984~
-~11852~^~318~^0.^0^^~1~^~AS~^^^^^^^^^^~03/01/2007~
-~11852~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2002~
-~11852~^~320~^0.^0^^~1~^~AS~^^^^^^^^^^~03/01/2007~
-~11852~^~321~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2003~
-~11852~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2003~
-~11852~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~
-~11852~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2003~
-~11852~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2003~
-~11852~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2003~
-~11852~^~417~^15.^0^^~4~^^^^^^^^^^^~08/01/1984~
-~11852~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~
-~11852~^~432~^15.^0^^~4~^^^^^^^^^^^~03/01/2007~
-~11852~^~435~^15.^0^^~4~^~NC~^^^^^^^^^^~03/01/2007~
-~11852~^~601~^0.^0^^~7~^~Z~^^^^^^^^^^~08/01/1984~
-~11853~^~208~^141.^0^^~4~^~NC~^^^^^^^^^^~05/01/2005~
-~11853~^~268~^592.^0^^~4~^~NC~^^^^^^^^^^~05/01/2005~
-~11853~^~301~^145.^2^^~1~^^^^^^^^^^^~08/01/1984~
-~11853~^~304~^60.^0^^~4~^^^^^^^^^^^~08/01/1984~
-~11853~^~305~^158.^2^^~1~^^^^^^^^^^^~08/01/1984~
-~11853~^~306~^539.^0^^~4~^^^^^^^^^^^~08/01/1984~
-~11853~^~307~^250.^0^^~4~^^^^^^^^^^^~08/01/1984~
-~11853~^~318~^156.^0^^~1~^^^^^^^^^^^~06/01/2005~
-~11853~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2002~
-~11853~^~320~^8.^0^^~1~^^^^^^^^^^^~06/01/2005~
-~11853~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~
-~11853~^~417~^111.^1^^~1~^^^^^^^^^^^~08/01/1984~
-~11853~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~
-~11853~^~432~^111.^1^^~1~^^^^^^^^^^^~12/01/1984~
-~11853~^~435~^111.^0^^~4~^~NC~^^^^^^^^^^~06/01/2005~
-~11853~^~601~^0.^0^^~7~^~Z~^^^^^^^^^^~08/01/1984~
-~11853~^~636~^50.^1^^~1~^^^^^^^^^^^~08/01/1984~
-~11854~^~208~^23.^0^^~4~^~NC~^^^^^^^^^^~12/01/2006~
-~11854~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~12/01/2002~
-~11854~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~12/01/2002~
-~11854~^~268~^96.^0^^~4~^^^^^^^^^^^~10/01/2008~
-~11854~^~301~^136.^12^3.^~1~^^^^^^^^^^^~08/01/1984~
-~11854~^~304~^87.^12^4.^~1~^^^^^^^^^^^~08/01/1984~
-~11854~^~305~^56.^12^2.^~1~^^^^^^^^^^^~08/01/1984~
-~11854~^~306~^466.^12^18.^~1~^^^^^^^^^^^~08/01/1984~
-~11854~^~307~^306.^0^^~4~^^^^^^^^^^^~08/01/1984~
-~11854~^~318~^10481.^0^^~1~^~AS~^^^^^^^^^^~10/01/2008~
-~11854~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2002~
-~11854~^~320~^524.^0^^~1~^~AS~^^^^^^^^^^~10/01/2008~
-~11854~^~321~^6288.^28^1002.^~1~^~A~^^^1^4130.^9480.^5^3711.^8865.^~4~^~12/01/2002~
-~11854~^~322~^0.^4^0.^~1~^~A~^^^1^0.^0.^1^0.^0.^~4~^~12/01/2002~
-~11854~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~
-~11854~^~334~^0.^4^0.^~1~^~A~^^^1^0.^0.^1^0.^0.^~4~^~12/01/2002~
-~11854~^~337~^0.^4^0.^~1~^~A~^^^1^0.^0.^1^0.^0.^~4~^~12/01/2002~
-~11854~^~338~^11308.^24^2650.^~1~^~A~^^^1^5300.^20300.^4^3947.^18668.^~4~^~12/01/2002~
-~11854~^~417~^146.^3^13.^~1~^^^^^^^^^^^~08/01/1984~
-~11854~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~
-~11854~^~432~^146.^3^13.^~1~^^^^^^^^^^^~10/01/2008~
-~11854~^~435~^146.^0^^~4~^~NC~^^^^^^^^^^~10/01/2008~
-~11854~^~601~^0.^0^^~7~^~Z~^^^^^^^^^^~08/01/1984~
-~11855~^~208~^19.^0^^~4~^~NC~^^^^^^^^^^~05/01/2005~
-~11855~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2015~
-~11855~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2015~
-~11855~^~268~^79.^0^^~4~^^^^^^^^^^^~01/01/2015~
-~11855~^~301~^83.^272^1.^~1~^^^^^^^^^^^~08/01/1984~
-~11855~^~304~^56.^193^0.^~1~^^^^^^^^^^^~08/01/1984~
-~11855~^~305~^32.^162^0.^~1~^^^^^^^^^^^~08/01/1984~
-~11855~^~306~^230.^105^7.^~1~^^^^^^^^^^^~08/01/1984~
-~11855~^~307~^75.^0^^~1~^^^^^^^^^^^~08/01/1984~
-~11855~^~318~^8084.^0^^~4~^~NC~^^^^^^^^^^~01/01/2015~
-~11855~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2002~
-~11855~^~320~^404.^0^^~4~^~NC~^^^^^^^^^^~01/01/2015~
-~11855~^~321~^4850.^0^^~4~^~BFSN~^~11461~^^^^^^^^^~01/01/2015~
-~11855~^~322~^0.^0^^~4~^~BFSN~^~11461~^^^^^^^^^~01/01/2015~
-~11855~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~
-~11855~^~334~^0.^0^^~4~^~BFSN~^~11461~^^^^^^^^^~01/01/2015~
-~11855~^~337~^0.^0^^~4~^~BFSN~^~11461~^^^^^^^^^~01/01/2015~
-~11855~^~338~^8722.^0^^~4~^~BFSN~^~11461~^^^^^^^^^~01/01/2015~
-~11855~^~417~^58.^3^4.^~1~^^^^^^^^^^^~08/01/1984~
-~11855~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~
-~11855~^~432~^58.^3^4.^~1~^^^^^^^^^^^~12/01/1984~
-~11855~^~435~^58.^0^^~4~^~NC~^^^^^^^^^^~06/01/2005~
-~11855~^~601~^0.^0^^~7~^~Z~^^^^^^^^^^~08/01/1984~
-~11856~^~208~^34.^0^^~4~^~NC~^^^^^^^^^^~07/01/2007~
-~11856~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~12/01/2002~
-~11856~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~12/01/2002~
-~11856~^~268~^143.^0^^~4~^~NC~^^^^^^^^^^~07/01/2007~
-~11856~^~301~^153.^6^6.^~1~^~A~^^^1^^^^^^^~12/01/2002~
-~11856~^~304~^82.^6^6.^~1~^~A~^^^1^^^^^^^~12/01/2002~
-~11856~^~305~^50.^6^2.^~1~^~A~^^^1^^^^^^^~12/01/2002~
-~11856~^~306~^302.^6^20.^~1~^~A~^^^1^^^^^^^~12/01/2002~
-~11856~^~307~^322.^0^^~4~^^^^^^^^^^^~07/01/2007~
-~11856~^~318~^12061.^0^^~4~^~NC~^^^^^^^^^^~07/01/2007~
-~11856~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2002~
-~11856~^~320~^603.^0^^~4~^~NC~^^^^^^^^^^~07/01/2007~
-~11856~^~321~^7237.^0^^~4~^~BFSN~^~11457~^^^^^^^^^~12/01/2002~
-~11856~^~322~^0.^0^^~4~^~BFSN~^~11457~^^^^^^^^^~12/01/2002~
-~11856~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~
-~11856~^~334~^0.^0^^~4~^~BFSN~^~11457~^^^^^^^^^~12/01/2002~
-~11856~^~337~^0.^0^^~4~^~BFSN~^~11457~^^^^^^^^^~12/01/2002~
-~11856~^~338~^15690.^0^^~4~^~BFSN~^~11457~^^^^^^^^^~12/01/2002~
-~11856~^~417~^121.^6^3.^~1~^~A~^^^1^^^^^^^~12/01/2002~
-~11856~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~
-~11856~^~432~^121.^6^3.^~1~^~A~^^^1^^^^^^^~07/01/2007~
-~11856~^~435~^121.^0^^~4~^~NC~^^^^^^^^^^~07/01/2007~
-~11856~^~601~^0.^0^^~7~^~Z~^^^^^^^^^^~08/01/1984~
-~11857~^~208~^20.^0^^~4~^~NC~^^^^^^^^^^~03/01/2007~
-~11857~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2003~
-~11857~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2003~
-~11857~^~268~^84.^0^^~4~^^^^^^^^^^^~03/01/2007~
-~11857~^~301~^27.^6^1.^~1~^^^^^^^^^^^~08/01/1984~
-~11857~^~304~^24.^6^0.^~1~^^^^^^^^^^^~08/01/1984~
-~11857~^~305~^39.^6^1.^~1~^^^^^^^^^^^~08/01/1984~
-~11857~^~306~^192.^6^5.^~1~^^^^^^^^^^^~08/01/1984~
-~11857~^~307~^237.^0^^~4~^^^^^^^^^^^~08/01/1984~
-~11857~^~318~^212.^0^^~4~^~NC~^^^^^^^^^^~03/01/2007~
-~11857~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2002~
-~11857~^~320~^11.^0^^~4~^~NC~^^^^^^^^^^~03/01/2007~
-~11857~^~321~^127.^0^^~4~^~BFSY~^~11641~^^^^^^^^^~03/01/2007~
-~11857~^~322~^0.^0^^~4~^~BFSY~^~11641~^^^^^^^^^~03/01/2007~
-~11857~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~
-~11857~^~334~^0.^0^^~4~^~BFSY~^~11641~^^^^^^^^^~03/01/2007~
-~11857~^~337~^0.^0^^~4~^~BFSY~^~11641~^^^^^^^^^~03/01/2007~
-~11857~^~338~^2249.^0^^~4~^~BFSY~^~11641~^^^^^^^^^~03/01/2007~
-~11857~^~417~^20.^3^3.^~1~^^^^^^^^^^^~08/01/1984~
-~11857~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~
-~11857~^~432~^20.^3^3.^~1~^^^^^^^^^^^~03/01/2007~
-~11857~^~435~^20.^0^^~4~^~NC~^^^^^^^^^^~03/01/2007~
-~11857~^~601~^0.^0^^~7~^~Z~^^^^^^^^^^~08/01/1984~
-~11858~^~208~^19.^0^^~4~^~NC~^^^^^^^^^^~04/01/2009~
-~11858~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2009~
-~11858~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2009~
-~11858~^~268~^81.^0^^~4~^~NC~^^^^^^^^^^~04/01/2009~
-~11858~^~301~^22.^30^0.^~6~^~JA~^^^6^14.^40.^8^20.^24.^~2, 3~^~04/01/2009~
-~11858~^~304~^16.^31^0.^~6~^~JA~^^^6^8.^21.^23^14.^16.^~2, 3~^~04/01/2009~
-~11858~^~305~^29.^30^1.^~6~^~JA~^^^6^18.^38.^21^27.^31.^~2, 3~^~04/01/2009~
-~11858~^~306~^177.^31^8.^~6~^~JA~^^^6^92.^294.^21^159.^195.^~2, 3~^~04/01/2009~
-~11858~^~307~^237.^0^^~4~^^^^^^^^^^^~04/01/2009~
-~11858~^~318~^1117.^0^^~4~^~NC~^^^^^^^^^^~04/01/2009~
-~11858~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2002~
-~11858~^~320~^56.^0^^~4~^~NC~^^^^^^^^^^~04/01/2009~
-~11858~^~321~^670.^3^^~1~^~A~^^^1^670.^670.^0^^^~4~^~04/01/2009~
-~11858~^~322~^0.^0^^~4~^~BFSN~^~11467~^^^^^^^^^~02/01/2003~
-~11858~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~
-~11858~^~334~^0.^0^^~4~^~BFSN~^~11467~^^^^^^^^^~02/01/2003~
-~11858~^~337~^0.^0^^~4~^~BFSN~^~11467~^^^^^^^^^~04/01/2009~
-~11858~^~338~^315.^0^^~4~^~BFSN~^~11467~^^^^^^^^^~02/01/2003~
-~11858~^~417~^23.^2^^~1~^~A~^^^1^16.^31.^1^^^^~04/01/2009~
-~11858~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~
-~11858~^~432~^23.^2^^~1~^~A~^^^1^16.^31.^1^^^^~04/01/2009~
-~11858~^~435~^23.^0^^~4~^~NC~^^^^^^^^^^~04/01/2009~
-~11858~^~601~^0.^0^^~7~^~Z~^^^^^^^^^^~08/01/1984~
-~11859~^~208~^25.^0^^~4~^~NC~^^^^^^^^^^~03/01/2007~
-~11859~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~
-~11859~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~
-~11859~^~268~^105.^0^^~4~^^^^^^^^^^^~03/01/2007~
-~11859~^~301~^20.^6^1.^~1~^^^^^^^^^^^~08/01/1984~
-~11859~^~304~^27.^6^0.^~1~^^^^^^^^^^^~08/01/1984~
-~11859~^~305~^41.^6^1.^~1~^^^^^^^^^^^~08/01/1984~
-~11859~^~306~^253.^6^6.^~1~^^^^^^^^^^^~08/01/1984~
-~11859~^~307~^242.^0^^~4~^^^^^^^^^^^~08/01/1984~
-~11859~^~318~^201.^0^^~4~^~NC~^^^^^^^^^^~03/01/2007~
-~11859~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2002~
-~11859~^~320~^10.^0^^~4~^~NC~^^^^^^^^^^~03/01/2007~
-~11859~^~321~^120.^0^^~4~^~BFSN~^~11468~^^^^^^^^^~02/01/2003~
-~11859~^~322~^0.^0^^~4~^~BFSN~^~11468~^^^^^^^^^~02/01/2003~
-~11859~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~
-~11859~^~334~^0.^0^^~4~^~BFSN~^~11468~^^^^^^^^^~02/01/2003~
-~11859~^~337~^0.^0^^~4~^~BFSN~^~11468~^^^^^^^^^~02/01/2003~
-~11859~^~338~^388.^0^^~4~^~BFSN~^~11468~^^^^^^^^^~02/01/2003~
-~11859~^~417~^13.^6^1.^~1~^^^^^^^^^^^~08/01/1984~
-~11859~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~
-~11859~^~432~^13.^6^1.^~1~^^^^^^^^^^^~03/01/2007~
-~11859~^~435~^13.^0^^~4~^~NC~^^^^^^^^^^~03/01/2007~
-~11859~^~601~^0.^0^^~7~^~Z~^^^^^^^^^^~08/01/1984~
-~11860~^~208~^16.^0^^~4~^~NC~^^^^^^^^^^~03/01/2007~
-~11860~^~268~^67.^0^^~4~^^^^^^^^^^^~03/01/2007~
-~11860~^~301~^15.^0^^~1~^^^^^^^^^^^~08/01/1984~
-~11860~^~304~^19.^0^^~1~^^^^^^^^^^^~08/01/1984~
-~11860~^~305~^28.^0^^~1~^^^^^^^^^^^~08/01/1984~
-~11860~^~306~^140.^0^^~1~^^^^^^^^^^^~08/01/1984~
-~11860~^~307~^237.^0^^~4~^^^^^^^^^^^~08/01/1984~
-~11860~^~318~^85.^0^^~4~^~NC~^^^^^^^^^^~03/01/2007~
-~11860~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2002~
-~11860~^~320~^4.^0^^~4~^~NC~^^^^^^^^^^~03/01/2007~
-~11860~^~321~^51.^0^^~4~^~BFZN~^~11476~^^^^^^^^^~02/01/2003~
-~11860~^~322~^0.^0^^~4~^~BFZN~^~11476~^^^^^^^^^~02/01/2003~
-~11860~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~
-~11860~^~334~^0.^0^^~4~^~BFZN~^~11476~^^^^^^^^^~02/01/2003~
-~11860~^~337~^0.^0^^~4~^~BFZN~^~11476~^^^^^^^^^~02/01/2003~
-~11860~^~338~^250.^0^^~4~^~BFZN~^~11476~^^^^^^^^^~02/01/2003~
-~11860~^~417~^21.^0^^~1~^^^^^^^^^^^~08/01/1984~
-~11860~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~
-~11860~^~432~^21.^0^^~1~^^^^^^^^^^^~03/01/2007~
-~11860~^~435~^21.^0^^~4~^~NC~^^^^^^^^^^~03/01/2007~
-~11860~^~601~^0.^0^^~7~^~Z~^^^^^^^^^^~08/01/1984~
-~11861~^~208~^15.^0^^~4~^~NC~^^^^^^^^^^~04/01/2009~
-~11861~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2009~
-~11861~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2009~
-~11861~^~268~^64.^0^^~4~^~NC~^^^^^^^^^^~04/01/2009~
-~11861~^~301~^18.^4^0.^~1~^~A~^^^1^16.^20.^3^15.^20.^~2, 3~^~04/01/2009~
-~11861~^~304~^19.^4^1.^~1~^~A~^^^1^14.^22.^3^13.^24.^~2, 3~^~04/01/2009~
-~11861~^~305~^37.^4^2.^~1~^~A~^^^1^31.^41.^3^29.^44.^~2, 3~^~04/01/2009~
-~11861~^~306~^264.^4^16.^~1~^~A~^^^1^228.^303.^3^210.^316.^~2, 3~^~04/01/2009~
-~11861~^~307~^239.^0^^~4~^^^^^^^^^^^~08/01/1984~
-~11861~^~318~^1117.^0^^~4~^~NC~^^^^^^^^^^~04/01/2009~
-~11861~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2002~
-~11861~^~320~^56.^0^^~4~^~NC~^^^^^^^^^^~04/01/2009~
-~11861~^~321~^670.^3^^~1~^~A~^^^^^^^^^^~10/01/2002~
-~11861~^~322~^0.^0^^~4~^~BFSN~^~11477~^^^^^^^^^~04/01/2009~
-~11861~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~
-~11861~^~334~^0.^0^^~4~^~BFSN~^~11477~^^^^^^^^^~04/01/2009~
-~11861~^~337~^0.^0^^~4~^~BFSN~^~11477~^^^^^^^^^~04/01/2009~
-~11861~^~338~^1150.^6^650.^~1~^~A~^^^1^500.^1800.^1^-7109.^9409.^~4~^~10/01/2002~
-~11861~^~417~^28.^2^^~1~^~A~^^^1^27.^29.^1^^^^~04/01/2009~
-~11861~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~
-~11861~^~432~^28.^2^^~1~^~A~^^^1^27.^29.^1^^^^~04/01/2009~
-~11861~^~435~^28.^0^^~4~^~NC~^^^^^^^^^^~04/01/2009~
-~11861~^~601~^0.^0^^~7~^~Z~^^^^^^^^^^~08/01/1984~
-~11862~^~208~^14.^0^^~4~^~NC~^^^^^^^^^^~03/01/2007~
-~11862~^~268~^61.^0^^~4~^~NC~^^^^^^^^^^~03/01/2007~
-~11862~^~301~^17.^0^^~1~^^^^^^^^^^^~08/01/1984~
-~11862~^~304~^13.^0^^~1~^^^^^^^^^^^~08/01/1984~
-~11862~^~305~^25.^0^^~1~^^^^^^^^^^^~08/01/1984~
-~11862~^~306~^194.^0^^~1~^^^^^^^^^^^~08/01/1984~
-~11862~^~307~^238.^0^^~4~^^^^^^^^^^^~08/01/1984~
-~11862~^~318~^177.^0^^~4~^~NC~^^^^^^^^^^~03/01/2007~
-~11862~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2002~
-~11862~^~320~^9.^0^^~4~^~NC~^^^^^^^^^^~03/01/2007~
-~11862~^~321~^106.^0^^~4~^~BFSY~^~11477~^^^^^^^^^~03/01/2007~
-~11862~^~322~^0.^0^^~4~^~BFSY~^~11477~^^^^^^^^^~03/01/2007~
-~11862~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~
-~11862~^~334~^0.^0^^~4~^~BFSY~^~11477~^^^^^^^^^~03/01/2007~
-~11862~^~337~^0.^0^^~4~^~BFSY~^~11477~^^^^^^^^^~03/01/2007~
-~11862~^~338~^1877.^0^^~4~^~BFSY~^~11477~^^^^^^^^^~03/01/2007~
-~11862~^~417~^8.^0^^~1~^^^^^^^^^^^~08/01/1984~
-~11862~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~
-~11862~^~432~^8.^0^^~1~^^^^^^^^^^^~03/01/2007~
-~11862~^~435~^8.^0^^~4~^~NC~^^^^^^^^^^~03/01/2007~
-~11862~^~601~^0.^0^^~7~^~Z~^^^^^^^^^^~08/01/1984~
-~11863~^~208~^37.^0^^~4~^~NC~^^^^^^^^^^~08/01/2011~
-~11863~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2005~
-~11863~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2005~
-~11863~^~268~^154.^0^^~4~^~NC~^^^^^^^^^^~08/01/2011~
-~11863~^~301~^22.^3^4.^~1~^^^^1^14.^29.^2^2.^41.^~4~^~08/01/2011~
-~11863~^~304~^13.^3^2.^~1~^^^^1^8.^17.^2^0.^24.^~4~^~08/01/2011~
-~11863~^~305~^19.^3^0.^~1~^^^^1^19.^20.^2^17.^21.^~4~^~08/01/2011~
-~11863~^~306~^241.^3^98.^~1~^^^^1^126.^437.^2^-183.^664.^~4~^~08/01/2011~
-~11863~^~307~^237.^0^^~4~^^^^^^^^^^^~08/01/1984~
-~11863~^~318~^5223.^0^^~4~^~NC~^^^^^^^^^^~03/01/2007~
-~11863~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2002~
-~11863~^~320~^261.^0^^~4~^~NC~^^^^^^^^^^~03/01/2007~
-~11863~^~321~^2793.^12^661.^~1~^~A~^^^1^1400.^4570.^3^686.^4898.^~4~^~08/01/2011~
-~11863~^~322~^682.^8^298.^~1~^~A~^^^1^117.^1130.^2^-601.^1965.^~4~^~08/01/2011~
-~11863~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~
-~11863~^~334~^0.^0^^~4~^~BFSN~^~11644~^^^^^^^^^~03/01/2007~
-~11863~^~337~^0.^0^^~4~^~BFSN~^~11644~^^^^^^^^^~03/01/2007~
-~11863~^~338~^1415.^7^785.^~1~^~A~^^^1^630.^2200.^1^-8559.^11389.^~4~^~08/01/2011~
-~11863~^~417~^20.^2^^~1~^^^^1^18.^23.^1^^^^~08/01/2011~
-~11863~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~
-~11863~^~432~^20.^2^^~1~^^^^^^^^^^^~08/01/2011~
-~11863~^~435~^20.^0^^~4~^~NC~^^^^^^^^^^~08/01/2011~
-~11863~^~601~^0.^0^^~7~^~Z~^^^^^^^^^^~08/01/1984~
-~11864~^~208~^56.^0^^~4~^~NC~^^^^^^^^^^~05/01/2005~
-~11864~^~268~^234.^0^^~4~^~NC~^^^^^^^^^^~05/01/2005~
-~11864~^~301~^44.^0^^~1~^^^^^^^^^^^~08/01/1984~
-~11864~^~304~^43.^0^^~1~^^^^^^^^^^^~08/01/1984~
-~11864~^~305~^45.^0^^~1~^^^^^^^^^^^~08/01/1984~
-~11864~^~306~^437.^0^^~1~^^^^^^^^^^^~08/01/1984~
-~11864~^~307~^240.^0^^~4~^^^^^^^^^^^~08/01/1984~
-~11864~^~318~^428.^0^^~1~^^^^^^^^^^^~06/01/2005~
-~11864~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2002~
-~11864~^~320~^21.^0^^~1~^^^^^^^^^^^~06/01/2005~
-~11864~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~
-~11864~^~417~^19.^0^^~1~^^^^^^^^^^^~08/01/1984~
-~11864~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~
-~11864~^~432~^19.^0^^~1~^^^^^^^^^^^~12/01/1984~
-~11864~^~435~^19.^0^^~4~^~NC~^^^^^^^^^^~06/01/2005~
-~11864~^~601~^0.^0^^~7~^~Z~^^^^^^^^^^~08/01/1984~
-~11865~^~208~^34.^0^^~4~^~NC~^^^^^^^^^^~05/01/2005~
-~11865~^~268~^141.^0^^~4~^~NC~^^^^^^^^^^~05/01/2005~
-~11865~^~301~^26.^0^^~1~^^^^^^^^^^^~08/01/1984~
-~11865~^~304~^26.^0^^~1~^^^^^^^^^^^~08/01/1984~
-~11865~^~305~^27.^0^^~1~^^^^^^^^^^^~08/01/1984~
-~11865~^~306~^263.^0^^~1~^^^^^^^^^^^~08/01/1984~
-~11865~^~307~^239.^0^^~4~^^^^^^^^^^^~08/01/1984~
-~11865~^~318~^258.^0^^~1~^^^^^^^^^^^~06/01/2005~
-~11865~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2002~
-~11865~^~320~^13.^0^^~1~^^^^^^^^^^^~06/01/2005~
-~11865~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~
-~11865~^~417~^11.^0^^~1~^^^^^^^^^^^~08/01/1984~
-~11865~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~
-~11865~^~432~^11.^0^^~1~^^^^^^^^^^^~12/01/1984~
-~11865~^~435~^11.^0^^~4~^~NC~^^^^^^^^^^~06/01/2005~
-~11865~^~601~^0.^0^^~7~^~Z~^^^^^^^^^^~08/01/1984~
-~11866~^~208~^40.^0^^~4~^~NC~^^^^^^^^^^~10/01/2009~
-~11866~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2005~
-~11866~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2005~
-~11866~^~268~^167.^0^^~4~^^^^^^^^^^^~10/01/2009~
-~11866~^~301~^41.^0^^~1~^^^^^^^^^^^~08/01/1984~
-~11866~^~304~^29.^0^^~1~^^^^^^^^^^^~08/01/1984~
-~11866~^~305~^27.^0^^~1~^^^^^^^^^^^~08/01/1984~
-~11866~^~306~^284.^0^^~1~^^^^^^^^^^^~08/01/1984~
-~11866~^~307~^240.^0^^~4~^^^^^^^^^^^~08/01/1984~
-~11866~^~318~^11155.^0^^~4~^~NC~^^^^^^^^^^~10/01/2009~
-~11866~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2002~
-~11866~^~320~^558.^0^^~4~^~NC~^^^^^^^^^^~10/01/2009~
-~11866~^~321~^4570.^0^^~4~^~BFZN~^~11486~^^^^^^^^^~05/01/2005~
-~11866~^~322~^1130.^0^^~4~^~BFZN~^~11486~^^^^^^^^^~05/01/2005~
-~11866~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~
-~11866~^~334~^3116.^0^^~4~^~BFZN~^~11486~^^^^^^^^^~05/01/2005~
-~11866~^~337~^0.^0^^~4~^~BFZN~^~11486~^^^^^^^^^~10/01/2009~
-~11866~^~338~^0.^0^^~4~^~BFZN~^~11486~^^^^^^^^^~10/01/2009~
-~11866~^~417~^19.^1^^~1~^~A~^^^^^^^^^^~04/01/1996~
-~11866~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~
-~11866~^~432~^19.^1^^~1~^~A~^^^^^^^^^^~10/01/2009~
-~11866~^~435~^19.^0^^~4~^~NC~^^^^^^^^^^~10/01/2009~
-~11866~^~601~^0.^0^^~7~^~Z~^^^^^^^^^^~08/01/1984~
-~11867~^~208~^39.^0^^~4~^~NC~^^^^^^^^^^~05/01/2005~
-~11867~^~268~^165.^0^^~4~^~NC~^^^^^^^^^^~05/01/2005~
-~11867~^~301~^19.^0^^~1~^^^^^^^^^^^~08/01/1984~
-~11867~^~304~^9.^0^^~1~^^^^^^^^^^^~08/01/1984~
-~11867~^~305~^14.^0^^~1~^^^^^^^^^^^~08/01/1984~
-~11867~^~306~^133.^0^^~1~^^^^^^^^^^^~08/01/1984~
-~11867~^~307~^238.^0^^~4~^^^^^^^^^^^~08/01/1984~
-~11867~^~318~^3339.^0^^~1~^^^^^^^^^^^~06/01/2005~
-~11867~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2002~
-~11867~^~320~^167.^0^^~1~^^^^^^^^^^^~06/01/2005~
-~11867~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~
-~11867~^~417~^16.^0^^~4~^^^^^^^^^^^~08/01/1984~
-~11867~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~
-~11867~^~432~^16.^0^^~4~^^^^^^^^^^^~12/01/1984~
-~11867~^~435~^16.^0^^~4~^~NC~^^^^^^^^^^~06/01/2005~
-~11867~^~601~^0.^0^^~7~^~Z~^^^^^^^^^^~08/01/1984~
-~11868~^~208~^50.^0^^~4~^~NC~^^^^^^^^^^~05/01/2005~
-~11868~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~08/01/2011~
-~11868~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~08/01/2011~
-~11868~^~268~^209.^0^^~4~^^^^^^^^^^^~08/01/2011~
-~11868~^~301~^17.^0^^~1~^^^^^^^^^^^~08/01/1984~
-~11868~^~304~^22.^0^^~1~^^^^^^^^^^^~08/01/1984~
-~11868~^~305~^23.^0^^~1~^^^^^^^^^^^~08/01/1984~
-~11868~^~306~^358.^0^^~1~^^^^^^^^^^^~08/01/1984~
-~11868~^~307~^244.^0^^~4~^^^^^^^^^^^~08/01/1984~
-~11868~^~318~^6705.^0^^~4~^~NC~^^^^^^^^^^~08/01/2011~
-~11868~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2002~
-~11868~^~320~^335.^0^^~4~^~NC~^^^^^^^^^^~08/01/2011~
-~11868~^~321~^3580.^0^^~4~^~BFSN~^~11491~^^^^^^^^^~08/01/2011~
-~11868~^~322~^885.^0^^~4~^~BFSN~^~11491~^^^^^^^^^~08/01/2011~
-~11868~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~
-~11868~^~334~^0.^0^^~4~^~BFSN~^~11491~^^^^^^^^^~08/01/2011~
-~11868~^~337~^0.^0^^~4~^~BFSN~^~11491~^^^^^^^^^~08/01/2011~
-~11868~^~338~^0.^0^^~4~^~BFSN~^~11491~^^^^^^^^^~08/01/2011~
-~11868~^~417~^16.^0^^~1~^^^^^^^^^^^~08/01/1984~
-~11868~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~
-~11868~^~432~^16.^0^^~1~^^^^^^^^^^^~12/01/1984~
-~11868~^~435~^16.^0^^~4~^~NC~^^^^^^^^^^~06/01/2005~
-~11868~^~601~^0.^0^^~7~^~Z~^^^^^^^^^^~08/01/1984~
-~11869~^~208~^30.^0^^~4~^~NC~^^^^^^^^^^~03/01/2007~
-~11869~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2005~
-~11869~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2005~
-~11869~^~268~^125.^0^^~4~^~NC~^^^^^^^^^^~03/01/2007~
-~11869~^~301~^10.^0^^~1~^^^^^^^^^^^~08/01/1984~
-~11869~^~304~^13.^0^^~1~^^^^^^^^^^^~08/01/1984~
-~11869~^~305~^14.^0^^~1~^^^^^^^^^^^~08/01/1984~
-~11869~^~306~^214.^0^^~1~^^^^^^^^^^^~08/01/1984~
-~11869~^~307~^241.^0^^~4~^^^^^^^^^^^~08/01/1984~
-~11869~^~318~^4005.^0^^~4~^~NC~^^^^^^^^^^~03/01/2007~
-~11869~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2002~
-~11869~^~320~^200.^0^^~4~^~NC~^^^^^^^^^^~03/01/2007~
-~11869~^~321~^2139.^0^^~4~^~BFZN~^~11491~^^^^^^^^^~05/01/2005~
-~11869~^~322~^529.^0^^~4~^~BFZN~^~11491~^^^^^^^^^~05/01/2005~
-~11869~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~
-~11869~^~334~^0.^0^^~4~^~BFZN~^~11491~^^^^^^^^^~03/01/2007~
-~11869~^~337~^0.^0^^~4~^~BFZN~^~11491~^^^^^^^^^~03/01/2007~
-~11869~^~338~^0.^0^^~4~^~BFZN~^~11491~^^^^^^^^^~03/01/2007~
-~11869~^~417~^10.^0^^~1~^^^^^^^^^^^~08/01/1984~
-~11869~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~
-~11869~^~432~^10.^0^^~1~^^^^^^^^^^^~03/01/2007~
-~11869~^~435~^10.^0^^~4~^~NC~^^^^^^^^^^~03/01/2007~
-~11869~^~601~^0.^0^^~7~^~Z~^^^^^^^^^^~08/01/1984~
-~11870~^~208~^27.^0^^~4~^~NC~^^^^^^^^^^~03/01/2007~
-~11870~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2005~
-~11870~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2005~
-~11870~^~268~^113.^0^^~4~^^^^^^^^^^^~03/01/2007~
-~11870~^~301~^21.^3^2.^~1~^^^^^^^^^^^~08/01/1984~
-~11870~^~304~^11.^3^1.^~1~^^^^^^^^^^^~08/01/1984~
-~11870~^~306~^117.^3^11.^~1~^^^^^^^^^^^~08/01/1984~
-~11870~^~307~^254.^0^^~4~^^^^^^^^^^^~08/01/1984~
-~11870~^~318~^110.^0^^~4~^~NC~^^^^^^^^^^~03/01/2007~
-~11870~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2002~
-~11870~^~320~^6.^0^^~4~^~NC~^^^^^^^^^^~03/01/2007~
-~11870~^~321~^59.^0^^~4~^~BFZN~^~11493~^^^^^^^^^~05/01/2005~
-~11870~^~322~^15.^0^^~4~^~BFZN~^~11493~^^^^^^^^^~05/01/2005~
-~11870~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~
-~11870~^~334~^0.^0^^~4~^~BFZN~^~11493~^^^^^^^^^~03/01/2007~
-~11870~^~337~^0.^0^^~4~^~BFZN~^~11493~^^^^^^^^^~03/01/2007~
-~11870~^~338~^0.^0^^~4~^~BFZN~^~11493~^^^^^^^^^~03/01/2007~
-~11870~^~417~^8.^3^2.^~1~^^^^^^^^^^^~08/01/1984~
-~11870~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~
-~11870~^~432~^8.^3^2.^~1~^^^^^^^^^^^~03/01/2007~
-~11870~^~435~^8.^0^^~4~^~NC~^^^^^^^^^^~03/01/2007~
-~11870~^~601~^0.^0^^~7~^~Z~^^^^^^^^^^~08/01/1984~
-~11871~^~208~^111.^0^^~4~^~NC~^^^^^^^^^^~05/01/2005~
-~11871~^~268~^464.^0^^~4~^~NC~^^^^^^^^^^~05/01/2005~
-~11871~^~301~^17.^0^^~1~^^^^^^^^^^^~08/01/1984~
-~11871~^~304~^53.^0^^~1~^^^^^^^^^^^~08/01/1984~
-~11871~^~305~^117.^0^^~1~^^^^^^^^^^^~08/01/1984~
-~11871~^~306~^410.^0^^~1~^^^^^^^^^^^~08/01/1984~
-~11871~^~307~^253.^0^^~4~^^^^^^^^^^^~08/01/1984~
-~11871~^~318~^294.^0^^~1~^^^^^^^^^^^~06/01/2005~
-~11871~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2002~
-~11871~^~320~^15.^0^^~1~^^^^^^^^^^^~06/01/2005~
-~11871~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~
-~11871~^~417~^33.^0^^~4~^^^^^^^^^^^~08/01/1984~
-~11871~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~
-~11871~^~432~^33.^0^^~4~^^^^^^^^^^^~12/01/1984~
-~11871~^~435~^33.^0^^~4~^~NC~^^^^^^^^^^~06/01/2005~
-~11871~^~601~^0.^0^^~7~^~Z~^^^^^^^^^^~08/01/1984~
-~11872~^~208~^93.^0^^~4~^~NC~^^^^^^^^^^~03/01/2007~
-~11872~^~268~^389.^0^^~4~^^^^^^^^^^^~03/01/2007~
-~11872~^~301~^15.^0^^~1~^^^^^^^^^^^~08/01/1984~
-~11872~^~304~^23.^0^^~1~^^^^^^^^^^^~08/01/1984~
-~11872~^~305~^70.^0^^~1~^^^^^^^^^^^~08/01/1984~
-~11872~^~306~^265.^0^^~1~^^^^^^^^^^^~08/01/1984~
-~11872~^~307~^281.^0^^~4~^^^^^^^^^^^~08/01/1984~
-~11872~^~318~^194.^0^^~4~^~NC~^^^^^^^^^^~03/01/2007~
-~11872~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2002~
-~11872~^~320~^10.^0^^~4~^~NC~^^^^^^^^^^~03/01/2007~
-~11872~^~321~^82.^0^^~4~^~BFZN~^~11502~^^^^^^^^^~02/01/2003~
-~11872~^~322~^9.^0^^~4~^~BFZN~^~11502~^^^^^^^^^~02/01/2003~
-~11872~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~
-~11872~^~334~^61.^0^^~4~^~BFZN~^~11502~^^^^^^^^^~02/01/2003~
-~11872~^~337~^0.^0^^~4~^~BFZN~^~11502~^^^^^^^^^~03/01/2007~
-~11872~^~338~^342.^0^^~4~^~BFZN~^~11502~^^^^^^^^^~03/01/2007~
-~11872~^~417~^33.^0^^~1~^^^^^^^^^^^~08/01/1984~
-~11872~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~
-~11872~^~432~^33.^0^^~1~^^^^^^^^^^^~03/01/2007~
-~11872~^~435~^33.^0^^~4~^~NC~^^^^^^^^^^~03/01/2007~
-~11872~^~601~^0.^0^^~7~^~Z~^^^^^^^^^^~08/01/1984~
-~11873~^~208~^20.^0^^~4~^~NC~^^^^^^^^^^~08/01/1984~
-~11873~^~268~^85.^0^^~4~^~NC~^^^^^^^^^^~09/01/2015~
-~11873~^~301~^54.^1^^~1~^^^^^^^^^^^~08/01/1984~
-~11873~^~304~^30.^1^^~1~^^^^^^^^^^^~08/01/1984~
-~11873~^~305~^42.^1^^~1~^^^^^^^^^^^~08/01/1984~
-~11873~^~306~^284.^1^^~1~^^^^^^^^^^^~08/01/1984~
-~11873~^~307~^358.^0^^~4~^^^^^^^^^^^~08/01/1984~
-~11873~^~318~^5200.^0^^~1~^^^^^^^^^^^~08/01/1984~
-~11873~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2002~
-~11873~^~320~^260.^0^^~1~^^^^^^^^^^^~06/01/2002~
-~11873~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~
-~11873~^~417~^35.^0^^~4~^^^^^^^^^^^~08/01/1984~
-~11873~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~
-~11873~^~432~^35.^0^^~4~^^^^^^^^^^^~12/01/1984~
-~11873~^~435~^35.^0^^~4~^~NC~^^^^^^^^^^~01/01/2001~
-~11873~^~601~^0.^0^^~7~^~Z~^^^^^^^^^^~08/01/1984~
-~11874~^~208~^35.^0^^~4~^~NC~^^^^^^^^^^~07/01/2012~
-~11874~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2005~
-~11874~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2005~
-~11874~^~268~^144.^0^^~4~^~NC~^^^^^^^^^^~07/01/2012~
-~11874~^~301~^33.^1^^~6~^~JA~^^^2^24.^42.^1^^^^~07/01/2012~
-~11874~^~304~^48.^2^^~6~^~JA~^^^2^34.^61.^1^^^^~07/01/2012~
-~11874~^~305~^40.^1^^~6~^~JA~^^^2^20.^60.^1^^^^~07/01/2012~
-~11874~^~306~^312.^2^^~6~^~JA~^^^2^148.^477.^1^^^^~07/01/2012~
-~11874~^~307~^249.^0^^~4~^^^^^^^^^^^~08/01/1984~
-~11874~^~318~^2939.^0^^~4~^~NC~^^^^^^^^^^~07/01/2012~
-~11874~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2002~
-~11874~^~320~^147.^0^^~4~^~NC~^^^^^^^^^^~07/01/2012~
-~11874~^~321~^1725.^0^^~4~^~BFZN~^~11506~^^^^^^^^^~07/01/2012~
-~11874~^~322~^33.^0^^~4~^~BFZN~^~11506~^^^^^^^^^~07/01/2012~
-~11874~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~
-~11874~^~334~^45.^0^^~4~^~BFZN~^~11506~^^^^^^^^^~07/01/2012~
-~11874~^~337~^0.^0^^~4~^~BFZN~^~11506~^^^^^^^^^~03/01/2007~
-~11874~^~338~^11449.^0^^~4~^~BFZN~^~11506~^^^^^^^^^~07/01/2012~
-~11874~^~417~^49.^0^^~4~^^^^^^^^^^^~08/01/1984~
-~11874~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~
-~11874~^~432~^49.^0^^~4~^^^^^^^^^^^~03/01/2007~
-~11874~^~435~^49.^0^^~4~^~NC~^^^^^^^^^^~03/01/2007~
-~11874~^~601~^0.^0^^~7~^~Z~^^^^^^^^^^~08/01/1984~
-~11875~^~208~^90.^0^^~4~^~NC~^^^^^^^^^^~02/01/2017~
-~11875~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~12/01/2003~
-~11875~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~12/01/2003~
-~11875~^~268~^378.^0^^~4~^~NC~^^^^^^^^^^~02/01/2017~
-~11875~^~301~^38.^67^2.^~6~^~JA~^^^12^14.^94.^66^33.^42.^~4~^~04/01/2003~
-~11875~^~304~^27.^68^0.^~6~^~JA~^^^12^15.^45.^67^25.^28.^~4~^~04/01/2003~
-~11875~^~305~^54.^67^1.^~6~^~JA~^^^12^26.^82.^66^50.^57.^~4~^~04/01/2003~
-~11875~^~306~^475.^68^9.^~6~^~JA~^^^12^306.^817.^67^456.^493.^~4~^~04/01/2003~
-~11875~^~307~^246.^0^^~4~^^^^^^^^^^^~05/01/2004~
-~11875~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2002~
-~11875~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~
-~11875~^~417~^6.^4^2.^~1~^~A~^^^1^2.^11.^3^-1.^13.^~1, 2, 3~^~04/01/2003~
-~11875~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~
-~11875~^~432~^6.^4^2.^~1~^~A~^^^1^2.^11.^3^-1.^13.^^~02/01/2007~
-~11875~^~435~^6.^0^^~4~^~NC~^^^^^^^^^^~02/01/2007~
-~11875~^~601~^0.^0^^~7~^~Z~^^^^^^^^^^~08/01/1984~
-~11876~^~208~^76.^0^^~4~^~NC~^^^^^^^^^^~08/01/2009~
-~11876~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~11/01/2003~
-~11876~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~11/01/2003~
-~11876~^~268~^320.^0^^~4~^~NC~^^^^^^^^^^~08/01/2009~
-~11876~^~301~^27.^4^6.^~1~^~A~^^^1^17.^46.^3^5.^48.^~2, 3~^~04/01/2003~
-~11876~^~304~^18.^4^2.^~1~^~A~^^^1^15.^24.^3^10.^24.^~2, 3~^~04/01/2003~
-~11876~^~305~^32.^4^5.^~1~^~A~^^^1^22.^47.^3^15.^49.^~2, 3~^~04/01/2003~
-~11876~^~306~^230.^4^25.^~1~^~A~^^^1^186.^288.^3^149.^311.^~2, 3~^~04/01/2003~
-~11876~^~307~^263.^0^^~4~^~O~^^^^^^^^^^~08/01/2009~
-~11876~^~318~^15740.^0^^~1~^~AS~^^^^^^^^^^~08/01/2009~
-~11876~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2002~
-~11876~^~320~^787.^0^^~1~^~AS~^^^^^^^^^^~08/01/2009~
-~11876~^~321~^9444.^10^804.^~1~^~A~^^^1^7119.^15160.^1^-773.^19660.^~2, 3~^~05/01/2004~
-~11876~^~322~^0.^1^^~1~^~A~^^^^^^^^^^~05/01/2004~
-~11876~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~
-~11876~^~334~^0.^1^^~1~^~A~^^^^^^^^^^~05/01/2004~
-~11876~^~337~^0.^1^^~1~^~A~^^^^^^^^^^~05/01/2004~
-~11876~^~338~^0.^1^^~1~^~A~^^^^^^^^^^~05/01/2004~
-~11876~^~417~^6.^4^2.^~1~^~A~^^^1^2.^12.^3^-2.^14.^~1, 2, 3~^~04/01/2003~
-~11876~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~
-~11876~^~432~^6.^4^2.^~1~^~A~^^^1^2.^12.^3^-2.^14.^^~08/01/2009~
-~11876~^~435~^6.^0^^~4~^~NC~^^^^^^^^^^~08/01/2009~
-~11876~^~601~^0.^0^^~7~^~Z~^^^^^^^^^^~08/01/1984~
-~11877~^~208~^100.^0^^~4~^~NC~^^^^^^^^^^~05/01/2005~
-~11877~^~268~^419.^0^^~4~^~NC~^^^^^^^^^^~05/01/2005~
-~11877~^~301~^35.^6^3.^~1~^^^^^^^^^^^~08/01/1984~
-~11877~^~304~^21.^6^0.^~1~^^^^^^^^^^^~08/01/1984~
-~11877~^~305~^44.^6^1.^~1~^^^^^^^^^^^~08/01/1984~
-~11877~^~306~^377.^6^18.^~1~^^^^^^^^^^^~08/01/1984~
-~11877~^~307~^244.^0^^~4~^^^^^^^^^^^~08/01/1984~
-~11877~^~318~^16410.^6^881.^~1~^^^^^^^^^^^~06/01/2005~
-~11877~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2002~
-~11877~^~320~^821.^6^44.^~1~^^^^^^^^^^^~06/01/2005~
-~11877~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~
-~11877~^~417~^22.^6^3.^~1~^^^^^^^^^^^~08/01/1984~
-~11877~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~
-~11877~^~432~^22.^6^3.^~1~^^^^^^^^^^^~12/01/1984~
-~11877~^~435~^22.^0^^~4~^~NC~^^^^^^^^^^~06/01/2005~
-~11877~^~601~^0.^0^^~7~^~Z~^^^^^^^^^^~08/01/1984~
-~11878~^~208~^142.^0^^~4~^~NC~^^^^^^^^^^~03/01/2007~
-~11878~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2005~
-~11878~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2005~
-~11878~^~268~^594.^0^^~4~^^^^^^^^^^^~03/01/2007~
-~11878~^~301~^18.^1^^~1~^^^^^^^^^^^~08/01/1984~
-~11878~^~304~^30.^1^^~1~^^^^^^^^^^^~08/01/1984~
-~11878~^~305~^76.^1^^~1~^^^^^^^^^^^~08/01/1984~
-~11878~^~306~^484.^1^^~1~^^^^^^^^^^^~08/01/1984~
-~11878~^~307~^251.^0^^~4~^^^^^^^^^^^~08/01/1984~
-~11878~^~318~^84.^0^^~4~^~NC~^^^^^^^^^^~03/01/2007~
-~11878~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2002~
-~11878~^~320~^4.^0^^~4~^~NC~^^^^^^^^^^~03/01/2007~
-~11878~^~321~^39.^0^^~4~^~BFZN~^~11519~^^^^^^^^^~05/01/2005~
-~11878~^~322~^0.^0^^~4~^~BFZN~^~11519~^^^^^^^^^~03/01/2007~
-~11878~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~
-~11878~^~334~^22.^0^^~4~^~BFZN~^~11519~^^^^^^^^^~05/01/2005~
-~11878~^~337~^0.^0^^~4~^~BFZN~^~11519~^^^^^^^^^~03/01/2007~
-~11878~^~338~^0.^0^^~4~^~BFZN~^~11519~^^^^^^^^^~03/01/2007~
-~11878~^~417~^19.^0^^~4~^^^^^^^^^^^~08/01/1984~
-~11878~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~
-~11878~^~432~^19.^0^^~4~^^^^^^^^^^^~03/01/2007~
-~11878~^~435~^19.^0^^~4~^~NC~^^^^^^^^^^~03/01/2007~
-~11878~^~601~^0.^0^^~7~^~Z~^^^^^^^^^^~08/01/1984~
-~11879~^~208~^24.^0^^~4~^~NC~^^^^^^^^^^~05/01/2005~
-~11879~^~268~^100.^0^^~4~^~NC~^^^^^^^^^^~05/01/2005~
-~11879~^~301~^86.^2^^~1~^^^^^^^^^^^~08/01/1984~
-~11879~^~304~^20.^3^12.^~1~^^^^^^^^^^^~08/01/1984~
-~11879~^~305~^27.^2^^~1~^^^^^^^^^^^~08/01/1984~
-~11879~^~306~^460.^3^122.^~1~^^^^^^^^^^^~08/01/1984~
-~11879~^~307~^238.^0^^~4~^^^^^^^^^^^~08/01/1984~
-~11879~^~318~^4238.^0^^~1~^^^^^^^^^^^~06/01/2005~
-~11879~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2002~
-~11879~^~320~^212.^0^^~1~^^^^^^^^^^^~06/01/2005~
-~11879~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~
-~11879~^~417~^48.^0^^~4~^^^^^^^^^^^~08/01/1984~
-~11879~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~
-~11879~^~432~^48.^0^^~4~^^^^^^^^^^^~12/01/1984~
-~11879~^~435~^48.^0^^~4~^~NC~^^^^^^^^^^~06/01/2005~
-~11879~^~601~^0.^0^^~7~^~Z~^^^^^^^^^^~08/01/1984~
-~11880~^~208~^14.^0^^~4~^~NC~^^^^^^^^^^~05/01/2005~
-~11880~^~268~^58.^0^^~4~^~NC~^^^^^^^^^^~05/01/2005~
-~11880~^~301~^14.^1^^~1~^^^^^^^^^^^~08/01/1984~
-~11880~^~304~^8.^1^^~1~^^^^^^^^^^^~08/01/1984~
-~11880~^~305~^26.^1^^~1~^^^^^^^^^^^~08/01/1984~
-~11880~^~306~^344.^1^^~1~^^^^^^^^^^^~08/01/1984~
-~11880~^~307~^238.^0^^~4~^^^^^^^^^^^~08/01/1984~
-~11880~^~318~^51.^0^^~4~^^^^^^^^^^^~06/01/2005~
-~11880~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2002~
-~11880~^~320~^3.^0^^~4~^^^^^^^^^^^~06/01/2005~
-~11880~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~
-~11880~^~417~^3.^0^^~4~^^^^^^^^^^^~08/01/1984~
-~11880~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~
-~11880~^~432~^3.^0^^~4~^^^^^^^^^^^~12/01/1984~
-~11880~^~435~^3.^0^^~4~^~NC~^^^^^^^^^^~06/01/2005~
-~11880~^~601~^0.^0^^~7~^~Z~^^^^^^^^^^~08/01/1984~
-~11881~^~208~^44.^0^^~4~^~NC~^^^^^^^^^^~05/01/2005~
-~11881~^~268~^182.^0^^~4~^~NC~^^^^^^^^^^~05/01/2005~
-~11881~^~301~^149.^1^^~1~^^^^^^^^^^^~08/01/1984~
-~11881~^~304~^51.^1^^~1~^^^^^^^^^^^~08/01/1984~
-~11881~^~305~^67.^1^^~1~^^^^^^^^^^^~08/01/1984~
-~11881~^~306~^623.^1^^~1~^^^^^^^^^^^~08/01/1984~
-~11881~^~307~^290.^0^^~4~^^^^^^^^^^^~08/01/1984~
-~11881~^~318~^1764.^0^^~1~^^^^^^^^^^^~06/01/2005~
-~11881~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2002~
-~11881~^~320~^88.^0^^~1~^^^^^^^^^^^~06/01/2005~
-~11881~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~
-~11881~^~417~^7.^0^^~4~^^^^^^^^^^^~08/01/1984~
-~11881~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~
-~11881~^~432~^7.^0^^~4~^^^^^^^^^^^~12/01/1984~
-~11881~^~435~^7.^0^^~4~^~NC~^^^^^^^^^^~06/01/2005~
-~11881~^~601~^0.^0^^~7~^~Z~^^^^^^^^^^~08/01/1984~
-~11884~^~208~^18.^0^^~4~^~NC~^^^^^^^^^^~05/01/2004~
-~11884~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2004~
-~11884~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2004~
-~11884~^~268~^73.^0^^~4~^~NC~^^^^^^^^^^~05/01/2004~
-~11884~^~301~^11.^4^1.^~1~^~A~^^^1^8.^15.^3^5.^15.^~4~^~05/01/2004~
-~11884~^~304~^9.^4^0.^~1~^~A~^^^1^9.^10.^3^8.^9.^~4~^~05/01/2004~
-~11884~^~305~^28.^4^1.^~1~^~A~^^^1^26.^32.^3^24.^32.^~4~^~05/01/2004~
-~11884~^~306~^218.^4^12.^~1~^~A~^^^1^194.^250.^3^179.^256.^~4~^~05/01/2004~
-~11884~^~307~^247.^0^^~1~^^^^^^^^^^^~08/01/1984~
-~11884~^~318~^489.^0^^~1~^~AS~^^^^^^^^^^~05/01/2004~
-~11884~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2002~
-~11884~^~320~^24.^0^^~1~^~AS~^^^^^^^^^^~05/01/2004~
-~11884~^~321~^293.^8^34.^~1~^~A~^^^2^199.^408.^4^198.^388.^~4~^~05/01/2004~
-~11884~^~322~^0.^8^0.^~1~^~A~^^^2^0.^0.^4^0.^0.^~4~^~05/01/2004~
-~11884~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~
-~11884~^~334~^0.^8^0.^~1~^~A~^^^2^0.^0.^4^0.^0.^~4~^~05/01/2004~
-~11884~^~337~^3041.^8^379.^~1~^~A~^^^2^2342.^4400.^4^1987.^4093.^~4~^~05/01/2004~
-~11884~^~338~^94.^8^14.^~1~^~A~^^^2^70.^150.^4^54.^133.^~4~^~05/01/2004~
-~11884~^~417~^13.^0^^~1~^^^^^^^^^^^~05/01/2004~
-~11884~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~
-~11884~^~432~^13.^0^^~1~^^^^^^^^^^^~05/01/2004~
-~11884~^~435~^13.^0^^~4~^~NC~^^^^^^^^^^~05/01/2004~
-~11884~^~601~^0.^0^^~7~^~Z~^^^^^^^^^^~08/01/1984~
-~11884~^~636~^9.^0^^~1~^^^^^^^^^^^~08/01/1984~
-~11885~^~208~^16.^0^^~4~^~NC~^^^^^^^^^^~08/01/2014~
-~11885~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~12/01/2002~
-~11885~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~12/01/2002~
-~11885~^~268~^69.^0^^~4~^~NC~^^^^^^^^^^~08/01/2014~
-~11885~^~301~^33.^18^2.^~1~^~A~^^^1^17.^53.^11^27.^37.^~2, 3~^~08/01/2014~
-~11885~^~304~^10.^18^0.^~1~^~A~^^^1^9.^11.^13^9.^9.^~2, 3~^~08/01/2014~
-~11885~^~305~^17.^18^0.^~1~^~A~^^^1^14.^19.^13^15.^17.^~2, 3~^~08/01/2014~
-~11885~^~306~^191.^18^2.^~1~^~A~^^^1^165.^206.^11^185.^195.^~2, 3~^~08/01/2014~
-~11885~^~307~^10.^9^1.^~1~^~A~^^^^^^^^^^~03/01/2007~
-~11885~^~318~^441.^0^^~4~^~NC~^^^^^^^^^^~08/01/2014~
-~11885~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2002~
-~11885~^~320~^22.^0^^~4~^~NC~^^^^^^^^^^~08/01/2014~
-~11885~^~321~^265.^0^^~4~^~BFSN~^~11531~^^^^^^^^^~08/01/2014~
-~11885~^~322~^0.^0^^~4~^~BFSN~^~11531~^^^^^^^^^~12/01/2002~
-~11885~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~
-~11885~^~334~^0.^0^^~4~^~BFSN~^~11531~^^^^^^^^^~12/01/2002~
-~11885~^~337~^2745.^0^^~4~^~BFSN~^~11531~^^^^^^^^^~08/01/2014~
-~11885~^~338~^85.^0^^~4~^~BFSN~^~11531~^^^^^^^^^~08/01/2014~
-~11885~^~417~^8.^0^^~4~^^^^^^^^^^^~06/01/2006~
-~11885~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~
-~11885~^~432~^8.^0^^~4~^^^^^^^^^^^~03/01/2007~
-~11885~^~435~^8.^0^^~4~^~NC~^^^^^^^^^^~03/01/2007~
-~11885~^~601~^0.^0^^~7~^~Z~^^^^^^^^^^~08/01/1984~
-~11886~^~208~^17.^0^^~4~^~NC~^^^^^^^^^^~03/01/2007~
-~11886~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~12/01/2002~
-~11886~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~12/01/2002~
-~11886~^~268~^72.^0^^~4~^~NC~^^^^^^^^^^~08/01/2014~
-~11886~^~301~^10.^12^0.^~1~^~A~^^^1^7.^14.^6^8.^11.^~2, 3~^~08/01/2014~
-~11886~^~304~^11.^12^0.^~1~^~A~^^^1^9.^14.^7^9.^11.^~2, 3~^~08/01/2014~
-~11886~^~305~^19.^12^0.^~1~^~A~^^^1^15.^23.^10^17.^19.^~2, 3~^~08/01/2014~
-~11886~^~306~^217.^12^8.^~1~^~A~^^^1^169.^282.^9^198.^235.^~2, 3~^~08/01/2014~
-~11886~^~307~^10.^0^^~1~^^^^^^^^^^^~08/01/1984~
-~11886~^~318~^450.^0^^~1~^~AS~^^^^^^^^^^~03/01/2007~
-~11886~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2002~
-~11886~^~320~^23.^0^^~1~^~AS~^^^^^^^^^^~03/01/2007~
-~11886~^~321~^270.^6^^~1~^~A~^^^^^^^^^^~12/01/2002~
-~11886~^~322~^0.^6^^~1~^~A~^^^^^^^^^^~12/01/2002~
-~11886~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~
-~11886~^~334~^0.^6^^~1~^~A~^^^^^^^^^^~12/01/2002~
-~11886~^~337~^9037.^18^^~1~^~A~^^^3^5000.^11600.^^^^~2, 3~^~12/01/2002~
-~11886~^~338~^60.^6^^~1~^~A~^^^^^^^^^^~12/01/2002~
-~11886~^~417~^20.^3^0.^~1~^^^^^^^^^^^~08/01/1984~
-~11886~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~
-~11886~^~432~^20.^3^0.^~1~^^^^^^^^^^^~03/01/2007~
-~11886~^~435~^20.^0^^~4~^~NC~^^^^^^^^^^~03/01/2007~
-~11886~^~601~^0.^0^^~7~^~Z~^^^^^^^^^^~08/01/1984~
-~11888~^~208~^38.^0^^~4~^~NC~^^^^^^^^^^~02/01/2007~
-~11888~^~262~^0.^0^^~4~^~BFSN~^~11547~^^^^^^^^^~04/01/2013~
-~11888~^~263~^0.^0^^~4~^~BFSN~^~11547~^^^^^^^^^~04/01/2013~
-~11888~^~268~^158.^0^^~4~^~NC~^^^^^^^^^^~02/01/2007~
-~11888~^~301~^18.^36^0.^~6~^~JA~^^^4^11.^33.^24^16.^19.^~2, 3~^~11/01/2002~
-~11888~^~304~^23.^6^0.^~1~^~A~^^^1^21.^25.^5^21.^24.^~2, 3~^~11/01/2002~
-~11888~^~305~^40.^6^0.^~1~^~A~^^^1^38.^43.^5^38.^42.^~2, 3~^~11/01/2002~
-~11888~^~306~^439.^27^15.^~6~^~JA~^^^4^259.^618.^19^405.^472.^~2, 3~^~11/01/2002~
-~11888~^~307~^202.^1^^~8~^~LC~^^^^^^^^^^~04/01/2013~
-~11888~^~318~^510.^0^^~1~^~AS~^^^^^^^^^^~02/01/2007~
-~11888~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2002~
-~11888~^~320~^26.^0^^~1~^~AS~^^^^^^^^^^~02/01/2007~
-~11888~^~321~^306.^6^10.^~1~^~A~^^^1^280.^353.^5^280.^332.^~2, 3~^~02/01/2007~
-~11888~^~322~^0.^6^0.^~1~^~A~^^^1^0.^0.^^^^~2, 3~^~02/01/2007~
-~11888~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~
-~11888~^~334~^0.^6^0.^~1~^~A~^^^1^0.^0.^^^^~2, 3~^~02/01/2007~
-~11888~^~337~^21754.^6^604.^~1~^~A~^^^1^19729.^23533.^5^20198.^23308.^~2, 3~^~02/01/2007~
-~11888~^~338~^0.^6^0.^~1~^~A~^^^1^0.^0.^^^^~2, 3~^~02/01/2007~
-~11888~^~417~^11.^0^^~4~^^^^^^^^^^^~08/01/1984~
-~11888~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~
-~11888~^~432~^11.^0^^~4~^^^^^^^^^^^~02/01/2007~
-~11888~^~435~^11.^0^^~4~^~NC~^^^^^^^^^^~02/01/2007~
-~11888~^~601~^0.^0^^~7~^~Z~^^^^^^^^^^~08/01/1984~
-~11889~^~208~^22.^0^^~4~^~NC~^^^^^^^^^^~03/01/2007~
-~11889~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2005~
-~11889~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2005~
-~11889~^~268~^92.^0^^~4~^~NC~^^^^^^^^^^~03/01/2007~
-~11889~^~301~^22.^0^^~1~^^^^^^^^^^^~08/01/1984~
-~11889~^~304~^8.^0^^~1~^^^^^^^^^^^~08/01/1984~
-~11889~^~305~^19.^0^^~1~^^^^^^^^^^^~08/01/1984~
-~11889~^~306~^135.^0^^~1~^^^^^^^^^^^~08/01/1984~
-~11889~^~307~^286.^0^^~4~^^^^^^^^^^^~08/01/1984~
-~11889~^~318~^0.^0^^~1~^^^^^^^^^^^~11/01/2014~
-~11889~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2002~
-~11889~^~320~^0.^0^^~4~^~NC~^^^^^^^^^^~03/01/2007~
-~11889~^~321~^0.^0^^~4~^~BFZN~^~11565~^^^^^^^^^~03/01/2007~
-~11889~^~322~^0.^0^^~4~^~BFZN~^~11565~^^^^^^^^^~03/01/2007~
-~11889~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~
-~11889~^~334~^0.^0^^~4~^~BFZN~^~11565~^^^^^^^^^~03/01/2007~
-~11889~^~337~^0.^0^^~4~^~BFZN~^~11565~^^^^^^^^^~03/01/2007~
-~11889~^~338~^0.^0^^~4~^~BFZN~^~11565~^^^^^^^^^~03/01/2007~
-~11889~^~417~^9.^0^^~1~^^^^^^^^^^^~08/01/1984~
-~11889~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~
-~11889~^~432~^9.^0^^~1~^^^^^^^^^^^~03/01/2007~
-~11889~^~435~^9.^0^^~4~^~NC~^^^^^^^^^^~03/01/2007~
-~11889~^~601~^0.^0^^~7~^~Z~^^^^^^^^^^~08/01/1984~
-~11890~^~208~^21.^0^^~4~^~NC~^^^^^^^^^^~03/01/2007~
-~11890~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~12/01/2002~
-~11890~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~12/01/2002~
-~11890~^~268~^86.^0^^~4~^~NC~^^^^^^^^^^~11/01/2014~
-~11890~^~301~^32.^0^^~1~^^^^^^^^^^^~08/01/1984~
-~11890~^~304~^14.^0^^~1~^^^^^^^^^^^~08/01/1984~
-~11890~^~305~^26.^0^^~1~^^^^^^^^^^^~08/01/1984~
-~11890~^~306~^182.^0^^~1~^^^^^^^^^^^~08/01/1984~
-~11890~^~307~^272.^0^^~4~^^^^^^^^^^^~08/01/1984~
-~11890~^~318~^0.^0^^~4~^~NC~^^^^^^^^^^~07/01/2015~
-~11890~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2002~
-~11890~^~320~^0.^0^^~4~^~NC~^^^^^^^^^^~03/01/2007~
-~11890~^~321~^0.^0^^~4~^~BFSN~^~11565~^^^^^^^^^~12/01/2002~
-~11890~^~322~^0.^0^^~4~^~BFSN~^~11565~^^^^^^^^^~12/01/2002~
-~11890~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~
-~11890~^~334~^0.^0^^~4~^~BFSN~^~11565~^^^^^^^^^~12/01/2002~
-~11890~^~337~^0.^0^^~4~^~BFSN~^~11565~^^^^^^^^^~12/01/2002~
-~11890~^~338~^0.^0^^~4~^~BFSN~^~11565~^^^^^^^^^~12/01/2002~
-~11890~^~417~^8.^0^^~4~^^^^^^^^^^^~08/01/1984~
-~11890~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~
-~11890~^~432~^8.^0^^~4~^^^^^^^^^^^~03/01/2007~
-~11890~^~435~^8.^0^^~4~^~NC~^^^^^^^^^^~03/01/2007~
-~11890~^~601~^0.^0^^~7~^~Z~^^^^^^^^^^~08/01/1984~
-~11891~^~208~^20.^0^^~4~^~NC~^^^^^^^^^^~12/01/2002~
-~11891~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~12/01/2002~
-~11891~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~12/01/2002~
-~11891~^~268~^85.^0^^~4~^~NC~^^^^^^^^^^~12/01/2002~
-~11891~^~301~^137.^0^^~1~^^^^^^^^^^^~08/01/1984~
-~11891~^~304~^22.^0^^~1~^^^^^^^^^^^~08/01/1984~
-~11891~^~305~^29.^0^^~1~^^^^^^^^^^^~08/01/1984~
-~11891~^~306~^203.^0^^~1~^^^^^^^^^^^~08/01/1984~
-~11891~^~307~^265.^0^^~4~^^^^^^^^^^^~08/01/1984~
-~11891~^~318~^7625.^0^^~1~^~AS~^^^^^^^^^^~12/01/2002~
-~11891~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2002~
-~11891~^~320~^381.^0^^~1~^~AS~^^^^^^^^^^~12/01/2002~
-~11891~^~321~^4575.^2^^~1~^~A~^^^^^^^^^^~12/01/2002~
-~11891~^~322~^0.^2^^~1~^~A~^^^^^^^^^^~12/01/2002~
-~11891~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~
-~11891~^~334~^0.^2^^~1~^~A~^^^^^^^^^^~12/01/2002~
-~11891~^~337~^0.^2^^~1~^~A~^^^^^^^^^^~12/01/2002~
-~11891~^~338~^8440.^2^^~1~^~A~^^^^^^^^^^~12/01/2002~
-~11891~^~417~^118.^0^^~1~^^^^^^^^^^^~08/01/1984~
-~11891~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~
-~11891~^~432~^118.^0^^~1~^^^^^^^^^^^~12/01/2002~
-~11891~^~435~^118.^0^^~4~^~NC~^^^^^^^^^^~12/01/2002~
-~11891~^~601~^0.^0^^~7~^~Z~^^^^^^^^^^~08/01/1984~
-~11892~^~208~^29.^0^^~4~^~NC~^^^^^^^^^^~03/01/2007~
-~11892~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~12/01/2002~
-~11892~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~12/01/2002~
-~11892~^~268~^123.^0^^~4~^~NC~^^^^^^^^^^~03/01/2007~
-~11892~^~301~^152.^0^^~1~^^^^^^^^^^^~08/01/1984~
-~11892~^~304~^26.^0^^~1~^^^^^^^^^^^~08/01/1984~
-~11892~^~305~^34.^0^^~1~^^^^^^^^^^^~08/01/1984~
-~11892~^~306~^224.^0^^~1~^^^^^^^^^^^~08/01/1984~
-~11892~^~307~^251.^0^^~4~^^^^^^^^^^^~08/01/1984~
-~11892~^~318~^10765.^0^^~4~^~NC~^^^^^^^^^^~03/01/2007~
-~11892~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2002~
-~11892~^~320~^538.^0^^~4~^~NC~^^^^^^^^^^~03/01/2007~
-~11892~^~321~^6459.^0^^~4~^~BFSN~^~11891~^^^^^^^^^~12/01/2002~
-~11892~^~322~^0.^0^^~4~^~BFSN~^~11891~^^^^^^^^^~12/01/2002~
-~11892~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~
-~11892~^~334~^0.^0^^~4~^~BFSN~^~11891~^^^^^^^^^~12/01/2002~
-~11892~^~337~^0.^0^^~4~^~BFSN~^~11891~^^^^^^^^^~12/01/2002~
-~11892~^~338~^11915.^0^^~4~^~BFSN~^~11891~^^^^^^^^^~12/01/2002~
-~11892~^~417~^39.^3^6.^~1~^^^^^^^^^^^~08/01/1984~
-~11892~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~
-~11892~^~432~^39.^3^6.^~1~^^^^^^^^^^^~03/01/2007~
-~11892~^~435~^39.^0^^~4~^~NC~^^^^^^^^^^~03/01/2007~
-~11892~^~601~^0.^0^^~7~^~Z~^^^^^^^^^^~08/01/1984~
-~11893~^~208~^34.^0^^~4~^~NC~^^^^^^^^^^~03/01/2007~
-~11893~^~262~^0.^0^^~4~^~RA~^^^^^^^^^^~03/01/2007~
-~11893~^~263~^0.^0^^~4~^~RA~^^^^^^^^^^~03/01/2007~
-~11893~^~268~^144.^0^^~4~^~NC~^^^^^^^^^^~03/01/2007~
-~11893~^~301~^128.^0^^~4~^~RA~^^^^^^^^^^~03/01/2007~
-~11893~^~304~^24.^0^^~4~^~RA~^^^^^^^^^^~03/01/2007~
-~11893~^~305~^32.^0^^~4~^~RA~^^^^^^^^^^~03/01/2007~
-~11893~^~306~^216.^0^^~4~^~RA~^^^^^^^^^^~03/01/2007~
-~11893~^~307~^255.^0^^~4~^~RA~^^^^^^^^^^~03/01/2007~
-~11893~^~318~^8612.^0^^~4~^~NC~^^^^^^^^^^~03/01/2007~
-~11893~^~319~^0.^0^^~4~^~RA~^^^^^^^^^^~03/01/2007~
-~11893~^~320~^431.^0^^~4~^~NC~^^^^^^^^^^~03/01/2007~
-~11893~^~321~^5167.^0^^~4~^~RA~^^^^^^^^^^~03/01/2007~
-~11893~^~322~^0.^0^^~4~^~RA~^^^^^^^^^^~03/01/2007~
-~11893~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~
-~11893~^~334~^0.^0^^~4~^~RA~^^^^^^^^^^~03/01/2007~
-~11893~^~337~^0.^0^^~4~^~RA~^^^^^^^^^^~03/01/2007~
-~11893~^~338~^9532.^0^^~4~^~RA~^^^^^^^^^^~03/01/2007~
-~11893~^~417~^33.^0^^~4~^~RA~^^^^^^^^^^~03/01/2007~
-~11893~^~431~^0.^0^^~4~^~RA~^^^^^^^^^^~03/01/2007~
-~11893~^~432~^33.^0^^~4~^~RA~^^^^^^^^^^~03/01/2007~
-~11893~^~435~^33.^0^^~4~^~NC~^^^^^^^^^^~03/01/2007~
-~11893~^~601~^0.^0^^~4~^~RA~^^^^^^^^^^~03/01/2007~
-~11894~^~208~^60.^0^^~4~^~NC~^^^^^^^^^^~03/01/2007~
-~11894~^~268~^252.^0^^~4~^~NC~^^^^^^^^^^~03/01/2007~
-~11894~^~301~^25.^0^^~1~^^^^^^^^^^^~08/01/1984~
-~11894~^~304~^22.^0^^~1~^^^^^^^^^^^~08/01/1984~
-~11894~^~305~^51.^0^^~1~^^^^^^^^^^^~08/01/1984~
-~11894~^~306~^169.^0^^~1~^^^^^^^^^^^~08/01/1984~
-~11894~^~307~^271.^0^^~4~^^^^^^^^^^^~08/01/1984~
-~11894~^~318~^4277.^0^^~4~^~NC~^^^^^^^^^^~03/01/2007~
-~11894~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2002~
-~11894~^~320~^214.^0^^~4~^~NC~^^^^^^^^^^~03/01/2007~
-~11894~^~321~^2082.^0^^~4~^~BFZN~^~11584~^^^^^^^^^~05/01/2005~
-~11894~^~322~^968.^0^^~4~^~BFZN~^~11584~^^^^^^^^^~05/01/2005~
-~11894~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~
-~11894~^~334~^0.^0^^~4~^~BFZN~^~11584~^^^^^^^^^~03/01/2007~
-~11894~^~337~^0.^0^^~4~^~BFZN~^~11584~^^^^^^^^^~03/01/2007~
-~11894~^~338~^637.^0^^~4~^~BFZN~^~11584~^^^^^^^^^~03/01/2007~
-~11894~^~417~^19.^0^^~1~^^^^^^^^^^^~08/01/1984~
-~11894~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~
-~11894~^~432~^19.^0^^~1~^^^^^^^^^^^~03/01/2007~
-~11894~^~435~^19.^0^^~4~^~NC~^^^^^^^^^^~03/01/2007~
-~11894~^~601~^0.^0^^~7~^~Z~^^^^^^^^^^~08/01/1984~
-~11895~^~208~^11.^0^^~4~^~NC~^^^^^^^^^^~03/01/2007~
-~11895~^~268~^48.^0^^~4~^~NC~^^^^^^^^^^~03/01/2007~
-~11895~^~301~^18.^0^^~1~^^^^^^^^^^^~08/01/1984~
-~11895~^~304~^10.^0^^~4~^^^^^^^^^^^~08/01/1984~
-~11895~^~305~^17.^0^^~1~^^^^^^^^^^^~08/01/1984~
-~11895~^~306~^5.^0^^~1~^^^^^^^^^^^~08/01/1984~
-~11895~^~307~^343.^0^^~4~^^^^^^^^^^^~08/01/1984~
-~11895~^~318~^0.^0^^~4~^~NC~^^^^^^^^^^~05/01/2007~
-~11895~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2002~
-~11895~^~320~^0.^0^^~4~^~NC~^^^^^^^^^^~05/01/2007~
-~11895~^~321~^0.^0^^~4~^~O~^~11468~^^^^^^^^^~05/01/2007~
-~11895~^~322~^0.^0^^~4~^~BFSN~^~11468~^^^^^^^^^~02/01/2003~
-~11895~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~
-~11895~^~334~^0.^0^^~4~^~BFSN~^~11468~^^^^^^^^^~02/01/2003~
-~11895~^~337~^0.^0^^~4~^~BFSN~^~11468~^^^^^^^^^~02/01/2003~
-~11895~^~338~^197.^0^^~4~^~BFSN~^~11468~^^^^^^^^^~02/01/2003~
-~11895~^~417~^4.^0^^~4~^^^^^^^^^^^~08/01/1984~
-~11895~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~
-~11895~^~432~^4.^0^^~4~^^^^^^^^^^^~03/01/2007~
-~11895~^~435~^4.^0^^~4~^~NC~^^^^^^^^^^~05/01/2007~
-~11895~^~601~^0.^0^^~7~^~Z~^^^^^^^^^^~08/01/1984~
-~11896~^~208~^37.^0^^~4~^~NC~^^^^^^^^^^~05/01/2005~
-~11896~^~268~^155.^0^^~4~^~NC~^^^^^^^^^^~05/01/2005~
-~11896~^~301~^61.^0^^~1~^^^^^^^^^^^~08/01/1984~
-~11896~^~304~^30.^1^^~1~^^^^^^^^^^^~08/01/1984~
-~11896~^~305~^25.^0^^~1~^^^^^^^^^^^~08/01/1984~
-~11896~^~306~^274.^1^^~1~^^^^^^^^^^^~08/01/1984~
-~11896~^~307~^240.^0^^~4~^^^^^^^^^^^~08/01/1984~
-~11896~^~318~^88.^0^^~1~^^^^^^^^^^^~06/01/2005~
-~11896~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2002~
-~11896~^~320~^4.^0^^~1~^^^^^^^^^^^~06/01/2005~
-~11896~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~
-~11896~^~417~^35.^0^^~4~^~BFZN~^^^^^^^^^^~04/01/1996~
-~11896~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~
-~11896~^~432~^35.^0^^~4~^~BFZN~^^^^^^^^^^~04/01/1996~
-~11896~^~435~^35.^0^^~4~^~NC~^^^^^^^^^^~06/01/2005~
-~11896~^~601~^0.^0^^~7~^~Z~^^^^^^^^^^~08/01/1984~
-~11897~^~208~^114.^0^^~4~^~NC~^^^^^^^^^^~03/01/2007~
-~11897~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2003~
-~11897~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2003~
-~11897~^~268~^477.^0^^~4~^~NC~^^^^^^^^^^~03/01/2007~
-~11897~^~301~^14.^6^4.^~1~^^^^^^^^^^^~08/01/1984~
-~11897~^~304~^18.^6^2.^~1~^^^^^^^^^^^~08/01/1984~
-~11897~^~305~^49.^6^4.^~1~^^^^^^^^^^^~08/01/1984~
-~11897~^~306~^670.^6^36.^~1~^^^^^^^^^^^~08/01/1984~
-~11897~^~307~^244.^0^^~4~^^^^^^^^^^^~08/01/1984~
-~11897~^~318~^122.^0^^~4~^~NC~^^^^^^^^^^~03/01/2007~
-~11897~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2002~
-~11897~^~320~^6.^0^^~4~^~NC~^^^^^^^^^^~03/01/2007~
-~11897~^~321~^73.^0^^~4~^~BFSY~^~11601~^^^^^^^^^~01/01/2003~
-~11897~^~322~^0.^0^^~4~^~BFSY~^~11601~^^^^^^^^^~01/01/2003~
-~11897~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~
-~11897~^~334~^0.^0^^~4~^~BFSY~^~11601~^^^^^^^^^~01/01/2003~
-~11897~^~337~^0.^0^^~4~^~BFSY~^~11601~^^^^^^^^^~01/01/2003~
-~11897~^~338~^0.^0^^~4~^~BFSY~^~11601~^^^^^^^^^~01/01/2003~
-~11897~^~417~^16.^12^4.^~1~^^^^^^^^^^^~08/01/1984~
-~11897~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~
-~11897~^~432~^16.^12^4.^~1~^^^^^^^^^^^~03/01/2007~
-~11897~^~435~^16.^0^^~4~^~NC~^^^^^^^^^^~03/01/2007~
-~11897~^~601~^0.^0^^~7~^~Z~^^^^^^^^^^~08/01/1984~
-~11898~^~208~^36.^0^^~4~^~NC~^^^^^^^^^^~05/01/2006~
-~11898~^~268~^150.^0^^~4~^~NC~^^^^^^^^^^~05/01/2006~
-~11898~^~301~^11.^0^^~1~^^^^^^^^^^^~08/01/1984~
-~11898~^~304~^11.^0^^~1~^^^^^^^^^^^~08/01/1984~
-~11898~^~305~^16.^0^^~1~^^^^^^^^^^^~08/01/1984~
-~11898~^~306~^135.^0^^~1~^^^^^^^^^^^~08/01/1984~
-~11898~^~307~^242.^0^^~4~^^^^^^^^^^^~08/01/1984~
-~11898~^~318~^19.^0^^~4~^~NR~^^^^^^^^^^~05/01/2006~
-~11898~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~
-~11898~^~417~^8.^0^^~1~^^^^^^^^^^^~08/01/1984~
-~11898~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~
-~11898~^~432~^8.^0^^~1~^^^^^^^^^^^~12/01/1984~
-~11898~^~435~^8.^0^^~4~^~NC~^^^^^^^^^^~08/01/2008~
-~11898~^~601~^0.^0^^~7~^~Z~^^^^^^^^^^~08/01/1984~
-~11899~^~208~^47.^0^^~4~^~NC~^^^^^^^^^^~05/01/2005~
-~11899~^~268~^196.^0^^~4~^~NC~^^^^^^^^^^~05/01/2005~
-~11899~^~301~^44.^1^^~1~^^^^^^^^^^^~08/01/1984~
-~11899~^~304~^42.^1^^~1~^^^^^^^^^^^~08/01/1984~
-~11899~^~305~^57.^1^^~1~^^^^^^^^^^^~08/01/1984~
-~11899~^~306~^290.^1^^~1~^^^^^^^^^^^~08/01/1984~
-~11899~^~307~^240.^0^^~4~^^^^^^^^^^^~08/01/1984~
-~11899~^~318~^450.^0^^~1~^^^^^^^^^^^~06/01/2005~
-~11899~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2002~
-~11899~^~320~^23.^0^^~1~^^^^^^^^^^^~06/01/2005~
-~11899~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~
-~11899~^~417~^45.^0^^~4~^^^^^^^^^^^~08/01/1984~
-~11899~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~
-~11899~^~432~^45.^0^^~4~^^^^^^^^^^^~12/01/1984~
-~11899~^~435~^45.^0^^~4~^~NC~^^^^^^^^^^~06/01/2005~
-~11899~^~601~^0.^0^^~7~^~Z~^^^^^^^^^^~08/01/1984~
-~11900~^~208~^86.^0^^~4~^~NC~^^^^^^^^^^~02/01/2003~
-~11900~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~
-~11900~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~
-~11900~^~268~^358.^0^^~4~^~NC~^^^^^^^^^^~02/01/2003~
-~11900~^~301~^2.^51^1.^~1~^^^^^^^^^^^~08/01/1984~
-~11900~^~304~^37.^87^1.^~1~^^^^^^^^^^^~08/01/1984~
-~11900~^~305~^89.^77^3.^~1~^^^^^^^^^^^~08/01/1984~
-~11900~^~306~^270.^90^5.^~1~^^^^^^^^^^^~08/01/1984~
-~11900~^~307~^15.^90^3.^~1~^^^^^^^^^^^~08/01/1984~
-~11900~^~318~^1.^0^^~1~^~AS~^^^^^^^^^^~07/01/2004~
-~11900~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2002~
-~11900~^~320~^0.^0^^~1~^~AS~^^^^^^^^^^~07/01/2004~
-~11900~^~321~^1.^5^0.^~1~^~A~^^^^^^^^^^~02/01/2003~
-~11900~^~322~^0.^5^0.^~1~^~A~^^^^^^^^^^~02/01/2003~
-~11900~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~
-~11900~^~334~^0.^5^0.^~1~^~A~^^^^^^^^^^~02/01/2003~
-~11900~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~
-~11900~^~338~^34.^5^^~1~^~A~^^^^^^^^^^~02/01/2003~
-~11900~^~417~^46.^6^3.^~1~^^^^^^^^^^^~08/01/1984~
-~11900~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~
-~11900~^~432~^46.^6^3.^~1~^^^^^^^^^^^~02/01/2003~
-~11900~^~435~^46.^0^^~4~^~NC~^^^^^^^^^^~07/01/2004~
-~11900~^~601~^0.^0^^~7~^~Z~^^^^^^^^^^~08/01/1984~
-~11901~^~208~^97.^0^^~4~^~NC~^^^^^^^^^^~04/01/2009~
-~11901~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~
-~11901~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~
-~11901~^~268~^408.^0^^~4~^~NC~^^^^^^^^^^~04/01/2009~
-~11901~^~301~^2.^10^0.^~6~^~JA~^^^2^2.^2.^7^1.^2.^~2, 3~^~04/01/2009~
-~11901~^~304~^31.^10^3.^~6~^~JA~^^^2^26.^32.^6^22.^39.^~2, 3~^~04/01/2009~
-~11901~^~305~^92.^4^2.^~6~^~JA~^^^2^83.^103.^2^82.^100.^~2, 3~^~04/01/2009~
-~11901~^~306~^252.^10^20.^~6~^~JA~^^^2^241.^282.^6^202.^302.^~2, 3~^~04/01/2009~
-~11901~^~307~^3.^3^0.^~1~^~A~^^^1^2.^4.^2^0.^5.^~1, 2, 3~^~04/01/2009~
-~11901~^~318~^2.^0^^~4~^~NC~^^^^^^^^^^~04/01/2009~
-~11901~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2002~
-~11901~^~320~^0.^0^^~4~^~NC~^^^^^^^^^^~04/01/2009~
-~11901~^~321~^1.^0^^~4~^~BFSN~^~11900~^^^^^^^^^~02/01/2003~
-~11901~^~322~^0.^0^^~4~^~BFSN~^~11900~^^^^^^^^^~02/01/2003~
-~11901~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~
-~11901~^~334~^0.^0^^~4~^~BFSN~^~11900~^^^^^^^^^~02/01/2003~
-~11901~^~337~^0.^0^^~4~^~BFSN~^~11900~^^^^^^^^^~02/01/2003~
-~11901~^~338~^43.^0^^~4~^~BFSN~^~11900~^^^^^^^^^~02/01/2003~
-~11901~^~417~^20.^1^^~1~^~A~^^^^^^^^^^~04/01/2009~
-~11901~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~
-~11901~^~432~^20.^1^^~1~^~A~^^^^^^^^^^~04/01/2009~
-~11901~^~435~^20.^0^^~4~^~NC~^^^^^^^^^^~04/01/2009~
-~11901~^~601~^0.^0^^~7~^~Z~^^^^^^^^^^~08/01/1984~
-~11902~^~208~^97.^0^^~4~^~NC~^^^^^^^^^^~04/01/2009~
-~11902~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~
-~11902~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~
-~11902~^~268~^408.^0^^~4~^~NC~^^^^^^^^^^~04/01/2009~
-~11902~^~301~^2.^10^0.^~6~^~JA~^^^2^2.^2.^7^1.^2.^~2, 3~^~04/01/2009~
-~11902~^~304~^31.^10^3.^~6~^~JA~^^^2^26.^32.^6^22.^39.^~2, 3~^~04/01/2009~
-~11902~^~305~^92.^4^2.^~6~^~JA~^^^2^83.^103.^2^82.^100.^~2, 3~^~04/01/2009~
-~11902~^~306~^252.^10^20.^~6~^~JA~^^^2^241.^282.^6^202.^302.^~2, 3~^~04/01/2009~
-~11902~^~307~^253.^0^^~4~^^^^^^^^^^^~08/01/1984~
-~11902~^~318~^2.^0^^~4~^~NC~^^^^^^^^^^~04/01/2009~
-~11902~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2002~
-~11902~^~320~^0.^0^^~4~^~NC~^^^^^^^^^^~04/01/2009~
-~11902~^~321~^1.^0^^~4~^~BFSN~^~11900~^^^^^^^^^~02/01/2003~
-~11902~^~322~^0.^0^^~4~^~BFSN~^~11900~^^^^^^^^^~02/01/2003~
-~11902~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~
-~11902~^~334~^0.^0^^~4~^~BFSN~^~11900~^^^^^^^^^~02/01/2003~
-~11902~^~337~^0.^0^^~4~^~BFSN~^~11900~^^^^^^^^^~02/01/2003~
-~11902~^~338~^43.^0^^~4~^~BFSN~^~11900~^^^^^^^^^~02/01/2003~
-~11902~^~417~^20.^1^^~1~^~A~^^^^^^^^^^~04/01/2009~
-~11902~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~
-~11902~^~432~^20.^1^^~1~^~A~^^^^^^^^^^~04/01/2009~
-~11902~^~435~^20.^0^^~4~^~NC~^^^^^^^^^^~04/01/2009~
-~11902~^~601~^0.^0^^~7~^~Z~^^^^^^^^^^~08/01/1984~
-~11903~^~208~^64.^0^^~4~^~NC~^^^^^^^^^^~01/01/2006~
-~11903~^~268~^268.^0^^~4~^~NC~^^^^^^^^^^~01/01/2006~
-~11903~^~301~^4.^329^0.^~1~^~A~^^^^^^^^^^~04/01/1996~
-~11903~^~304~^16.^151^0.^~1~^^^^^^^^^^^~08/01/1984~
-~11903~^~305~^51.^174^0.^~1~^^^^^^^^^^^~08/01/1984~
-~11903~^~306~^164.^272^2.^~1~^~A~^^^^^^^^^^~04/01/1996~
-~11903~^~307~^213.^50^15.^~1~^~A~^^^^^^^^^^~04/01/1996~
-~11903~^~318~^0.^0^^~1~^~AS~^^^^^^^^^^~01/01/2006~
-~11903~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2002~
-~11903~^~320~^0.^0^^~1~^~AS~^^^^^^^^^^~01/01/2006~
-~11903~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~
-~11903~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~
-~11903~^~417~^38.^3^6.^~1~^^^^^^^^^^^~08/01/1984~
-~11903~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~
-~11903~^~432~^38.^3^6.^~1~^^^^^^^^^^^~01/01/2006~
-~11903~^~435~^38.^0^^~4~^~NC~^^^^^^^^^^~01/01/2006~
-~11903~^~601~^0.^0^^~7~^~Z~^^^^^^^^^^~08/01/1984~
-~11904~^~208~^64.^0^^~4~^~NC~^^^^^^^^^^~05/01/2005~
-~11904~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~
-~11904~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~
-~11904~^~268~^268.^0^^~4~^~NC~^^^^^^^^^^~05/01/2005~
-~11904~^~301~^4.^329^0.^~1~^~A~^^^^^^^^^^~04/01/1996~
-~11904~^~304~^16.^151^0.^~1~^^^^^^^^^^^~08/01/1984~
-~11904~^~305~^51.^174^0.^~1~^^^^^^^^^^^~08/01/1984~
-~11904~^~306~^164.^272^2.^~1~^~A~^^^^^^^^^^~04/01/1996~
-~11904~^~307~^12.^33^2.^~1~^~A~^^^^^^^^^^~04/01/1996~
-~11904~^~318~^1.^0^^~4~^~NC~^^^^^^^^^^~05/01/2005~
-~11904~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2002~
-~11904~^~320~^0.^0^^~4~^~NC~^^^^^^^^^^~05/01/2005~
-~11904~^~321~^0.^0^^~4~^~BFSN~^~11903~^^^^^^^^^~02/01/2003~
-~11904~^~322~^0.^0^^~4~^~BFSN~^~11903~^^^^^^^^^~02/01/2003~
-~11904~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~
-~11904~^~334~^0.^0^^~4~^~BFSN~^~11903~^^^^^^^^^~02/01/2003~
-~11904~^~337~^0.^0^^~4~^~BFSN~^~11903~^^^^^^^^^~02/01/2003~
-~11904~^~338~^32.^0^^~4~^~BFSN~^~11903~^^^^^^^^^~02/01/2003~
-~11904~^~417~^38.^3^6.^~1~^^^^^^^^^^^~08/01/1984~
-~11904~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~
-~11904~^~432~^38.^3^6.^~1~^^^^^^^^^^^~02/01/2003~
-~11904~^~435~^38.^0^^~4~^~NC~^^^^^^^^^^~05/01/2005~
-~11904~^~601~^0.^0^^~7~^~Z~^^^^^^^^^^~08/01/1984~
-~11905~^~208~^67.^0^^~4~^~NC~^^^^^^^^^^~04/01/2016~
-~11905~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~
-~11905~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~
-~11905~^~268~^280.^0^^~4~^~NC~^^^^^^^^^^~04/01/2016~
-~11905~^~301~^3.^22^0.^~1~^~A~^^^2^1.^4.^8^2.^3.^~2, 3~^~08/01/2014~
-~11905~^~304~^13.^22^0.^~1~^~A~^^^2^11.^15.^10^12.^13.^~2, 3~^~08/01/2014~
-~11905~^~305~^46.^22^0.^~1~^~A~^^^2^39.^51.^10^44.^46.^~2, 3~^~08/01/2014~
-~11905~^~306~^132.^22^1.^~1~^~A~^^^2^103.^150.^10^128.^136.^~2, 3~^~04/01/2016~
-~11905~^~307~^205.^20^6.^~1~^~A~^^^2^126.^279.^6^189.^220.^~2, 3~^~04/01/2016~
-~11905~^~318~^1.^0^^~4~^~NC~^^^^^^^^^^~03/01/2007~
-~11905~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2002~
-~11905~^~320~^0.^0^^~4~^~NC~^^^^^^^^^^~03/01/2007~
-~11905~^~321~^1.^0^^~4~^~BFSN~^~11903~^^^^^^^^^~02/01/2003~
-~11905~^~322~^0.^0^^~4~^~BFSN~^~11903~^^^^^^^^^~02/01/2003~
-~11905~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~
-~11905~^~334~^1.^0^^~4~^~BFSN~^~11903~^^^^^^^^^~02/01/2003~
-~11905~^~337~^0.^0^^~4~^~BFSN~^~11903~^^^^^^^^^~08/01/2014~
-~11905~^~338~^40.^0^^~4~^~BFSN~^~11903~^^^^^^^^^~02/01/2003~
-~11905~^~417~^39.^9^1.^~1~^~A~^^^1^27.^45.^5^35.^43.^~2, 3~^~04/01/2016~
-~11905~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~
-~11905~^~432~^39.^9^1.^~1~^~A~^^^1^27.^45.^5^35.^43.^^~04/01/2016~
-~11905~^~435~^39.^0^^~4~^~NC~^^^^^^^^^^~04/01/2016~
-~11905~^~601~^0.^0^^~7~^~Z~^^^^^^^^^^~08/01/1984~
-~11906~^~208~^74.^0^^~4~^~NC~^^^^^^^^^^~05/01/2013~
-~11906~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~
-~11906~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~
-~11906~^~268~^311.^0^^~4~^~NC~^^^^^^^^^^~05/01/2013~
-~11906~^~301~^4.^47^0.^~1~^^^^5^2.^6.^46^3.^4.^~4~^~05/01/2013~
-~11906~^~304~^15.^48^0.^~1~^^^^5^11.^21.^47^14.^15.^~4~^~05/01/2013~
-~11906~^~305~^40.^47^1.^~1~^^^^5^29.^58.^46^37.^41.^~4~^~05/01/2013~
-~11906~^~306~^119.^48^3.^~1~^^^^5^83.^168.^47^112.^125.^~4~^~05/01/2013~
-~11906~^~307~^261.^48^8.^~1~^^^^5^147.^457.^47^244.^277.^~4~^~05/01/2013~
-~11906~^~318~^2.^0^^~4~^~NC~^^^^^^^^^^~05/01/2015~
-~11906~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2002~
-~11906~^~320~^0.^0^^~4~^~NC~^^^^^^^^^^~03/01/2007~
-~11906~^~321~^1.^0^^~4~^~BFSN~^~11905~^^^^^^^^^~05/01/2015~
-~11906~^~322~^0.^0^^~4~^~BFSN~^~11905~^^^^^^^^^~02/01/2003~
-~11906~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~
-~11906~^~334~^1.^0^^~4~^~BFSN~^~11905~^^^^^^^^^~02/01/2003~
-~11906~^~337~^0.^0^^~4~^~BFSN~^~11905~^^^^^^^^^~02/01/2003~
-~11906~^~338~^44.^0^^~4~^~BFSN~^~11905~^^^^^^^^^~05/01/2015~
-~11906~^~417~^45.^0^^~1~^^^^^^^^^^^~08/01/1984~
-~11906~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~
-~11906~^~432~^45.^0^^~1~^^^^^^^^^^^~03/01/2007~
-~11906~^~435~^45.^0^^~4~^~NC~^^^^^^^^^^~03/01/2007~
-~11906~^~601~^0.^0^^~7~^~Z~^^^^^^^^^^~08/01/1984~
-~11907~^~208~^72.^0^^~4~^~NC~^^^^^^^^^^~03/01/2007~
-~11907~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~
-~11907~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~
-~11907~^~268~^301.^0^^~4~^^^^^^^^^^^~03/01/2007~
-~11907~^~301~^3.^287^0.^~1~^^^^^^^^^^^~08/01/1984~
-~11907~^~304~^17.^226^0.^~1~^^^^^^^^^^^~08/01/1984~
-~11907~^~305~^51.^251^1.^~1~^^^^^^^^^^^~08/01/1984~
-~11907~^~306~^134.^250^2.^~1~^^^^^^^^^^^~08/01/1984~
-~11907~^~307~^3.^0^^~1~^^^^^^^^^^^~08/01/1984~
-~11907~^~318~^1.^0^^~4~^~NC~^^^^^^^^^^~03/01/2010~
-~11907~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2002~
-~11907~^~320~^0.^0^^~4~^~NC~^^^^^^^^^^~03/01/2010~
-~11907~^~321~^0.^0^^~4~^~BFZN~^~11906~^^^^^^^^^~02/01/2003~
-~11907~^~322~^0.^0^^~4~^~BFZN~^~11906~^^^^^^^^^~02/01/2003~
-~11907~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~
-~11907~^~334~^1.^0^^~4~^~BFZN~^~11906~^^^^^^^^^~02/01/2003~
-~11907~^~337~^0.^0^^~4~^~BFZN~^~11906~^^^^^^^^^~02/01/2003~
-~11907~^~338~^37.^0^^~4~^~BFZN~^~11906~^^^^^^^^^~02/01/2003~
-~11907~^~417~^45.^0^^~1~^^^^^^^^^^^~08/01/1984~
-~11907~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~
-~11907~^~432~^45.^0^^~1~^^^^^^^^^^^~03/01/2007~
-~11907~^~435~^45.^0^^~4~^~NC~^^^^^^^^^^~03/01/2010~
-~11907~^~601~^0.^0^^~7~^~Z~^^^^^^^^^^~08/01/1984~
-~11908~^~208~^79.^0^^~4~^~NC~^^^^^^^^^^~02/01/2003~
-~11908~^~268~^332.^0^^~4~^~NC~^^^^^^^^^^~02/01/2003~
-~11908~^~301~^5.^69^0.^~1~^^^^^^^^^^^~08/01/1984~
-~11908~^~304~^23.^57^0.^~1~^^^^^^^^^^^~08/01/1984~
-~11908~^~305~^64.^63^1.^~1~^^^^^^^^^^^~08/01/1984~
-~11908~^~306~^186.^66^5.^~1~^^^^^^^^^^^~08/01/1984~
-~11908~^~307~^272.^66^7.^~1~^^^^^^^^^^^~08/01/1984~
-~11908~^~318~^1.^0^^~4~^~NC~^^^^^^^^^^~02/01/2003~
-~11908~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2002~
-~11908~^~320~^0.^0^^~4~^~NC~^^^^^^^^^^~02/01/2003~
-~11908~^~321~^1.^0^^~4~^~BFSN~^~11903~^^^^^^^^^~02/01/2003~
-~11908~^~322~^0.^0^^~4~^~BFSN~^~11903~^^^^^^^^^~02/01/2003~
-~11908~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~
-~11908~^~334~^1.^0^^~4~^~BFSN~^~11903~^^^^^^^^^~02/01/2003~
-~11908~^~337~^0.^0^^~4~^~BFSN~^~11903~^^^^^^^^^~02/01/2003~
-~11908~^~338~^41.^0^^~4~^~BFSN~^~11903~^^^^^^^^^~02/01/2003~
-~11908~^~417~^49.^0^^~1~^^^^^^^^^^^~08/01/1984~
-~11908~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~
-~11908~^~432~^49.^0^^~1~^^^^^^^^^^^~02/01/2003~
-~11908~^~435~^49.^0^^~4~^~NC~^^^^^^^^^^~02/01/2003~
-~11908~^~601~^0.^0^^~7~^~Z~^^^^^^^^^^~08/01/1984~
-~11909~^~208~^79.^0^^~4~^~NC~^^^^^^^^^^~05/01/2005~
-~11909~^~268~^332.^0^^~4~^~NC~^^^^^^^^^^~05/01/2005~
-~11909~^~301~^5.^69^0.^~1~^^^^^^^^^^^~08/01/1984~
-~11909~^~304~^23.^57^0.^~1~^^^^^^^^^^^~08/01/1984~
-~11909~^~305~^64.^63^1.^~1~^^^^^^^^^^^~08/01/1984~
-~11909~^~306~^186.^66^5.^~1~^^^^^^^^^^^~08/01/1984~
-~11909~^~307~^3.^0^^~1~^^^^^^^^^^^~08/01/1984~
-~11909~^~318~^1.^0^^~4~^~NC~^^^^^^^^^^~05/01/2005~
-~11909~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2002~
-~11909~^~320~^0.^0^^~4~^~NC~^^^^^^^^^^~05/01/2005~
-~11909~^~321~^1.^0^^~4~^~BFPN~^~11903~^^^^^^^^^~02/01/2003~
-~11909~^~322~^0.^0^^~4~^~BFPN~^~11903~^^^^^^^^^~02/01/2003~
-~11909~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~
-~11909~^~334~^1.^0^^~4~^~BFPN~^~11903~^^^^^^^^^~02/01/2003~
-~11909~^~337~^0.^0^^~4~^~BFPN~^~11903~^^^^^^^^^~02/01/2003~
-~11909~^~338~^40.^0^^~4~^~BFPN~^~11903~^^^^^^^^^~02/01/2003~
-~11909~^~417~^49.^0^^~1~^^^^^^^^^^^~08/01/1984~
-~11909~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~
-~11909~^~432~^49.^0^^~1~^^^^^^^^^^^~02/01/2003~
-~11909~^~435~^49.^0^^~4~^~NC~^^^^^^^^^^~05/01/2005~
-~11909~^~601~^0.^0^^~7~^~Z~^^^^^^^^^^~08/01/1984~
-~11910~^~208~^88.^0^^~4~^~NC~^^^^^^^^^^~01/01/2006~
-~11910~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2013~
-~11910~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2013~
-~11910~^~268~^367.^0^^~4~^~NC~^^^^^^^^^^~02/01/2013~
-~11910~^~301~^4.^57^0.^~6~^~JA~^^^2^4.^4.^53^2.^5.^~2, 3~^~02/01/2013~
-~11910~^~304~^18.^22^0.^~1~^^^^^^^^^^^~08/01/1984~
-~11910~^~305~^70.^38^2.^~6~^~JA~^^^2^69.^87.^34^65.^74.^~2, 3~^~02/01/2013~
-~11910~^~306~^213.^24^7.^~6~^~JA~^^^2^210.^264.^22^198.^228.^~2, 3~^~02/01/2013~
-~11910~^~307~^3.^38^0.^~6~^~JA~^^^2^1.^3.^34^2.^3.^~1, 2, 3~^~02/01/2013~
-~11910~^~318~^3.^0^^~4~^~NC~^^^^^^^^^^~02/01/2013~
-~11910~^~319~^0.^3^0.^~12~^~MA~^^^1^0.^0.^^^^~2, 3~^~02/01/2013~
-~11910~^~320~^0.^0^^~4~^~NC~^^^^^^^^^^~02/01/2013~
-~11910~^~321~^1.^3^0.^~12~^~MA~^^^1^1.^2.^2^0.^2.^~2, 3~^~02/01/2013~
-~11910~^~322~^0.^0^^~4~^~BFSN~^~11900~^^^^^^^^^~02/01/2013~
-~11910~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~
-~11910~^~334~^0.^0^^~4~^~BFSN~^~11900~^^^^^^^^^~02/01/2013~
-~11910~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~
-~11910~^~338~^35.^0^^~4~^~BFSN~^~11900~^^^^^^^^^~02/01/2013~
-~11910~^~417~^36.^6^5.^~1~^^^^^^^^^^^~08/01/1984~
-~11910~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~
-~11910~^~432~^36.^6^5.^~1~^^^^^^^^^^^~01/01/2006~
-~11910~^~435~^36.^0^^~4~^~NC~^^^^^^^^^^~01/01/2006~
-~11910~^~601~^0.^3^0.^~12~^~MA~^^^1^0.^0.^^^^~1, 2, 3~^~02/01/2013~
-~11911~^~208~^80.^0^^~4~^~NC~^^^^^^^^^^~02/01/2007~
-~11911~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~
-~11911~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~
-~11911~^~268~^335.^0^^~4~^^^^^^^^^^^~02/01/2007~
-~11911~^~301~^4.^7^0.^~1~^^^^^^^^^^^~08/01/1984~
-~11911~^~304~^19.^7^0.^~1~^^^^^^^^^^^~08/01/1984~
-~11911~^~305~^57.^7^4.^~1~^^^^^^^^^^^~08/01/1984~
-~11911~^~306~^147.^7^9.^~1~^^^^^^^^^^^~08/01/1984~
-~11911~^~307~^5.^11^0.^~1~^^^^^^^^^^^~08/01/1984~
-~11911~^~318~^3.^0^^~4~^~NC~^^^^^^^^^^~02/01/2007~
-~11911~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2002~
-~11911~^~320~^0.^0^^~4~^~NC~^^^^^^^^^^~02/01/2007~
-~11911~^~321~^1.^0^^~4~^~BFSN~^~11910~^^^^^^^^^~02/01/2003~
-~11911~^~322~^0.^0^^~4~^~BFSN~^~11910~^^^^^^^^^~02/01/2003~
-~11911~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~
-~11911~^~334~^1.^0^^~4~^~BFSN~^~11910~^^^^^^^^^~02/01/2003~
-~11911~^~337~^0.^0^^~4~^~BFSN~^~11910~^^^^^^^^^~02/01/2003~
-~11911~^~338~^50.^0^^~4~^~BFSN~^~11910~^^^^^^^^^~02/01/2003~
-~11911~^~417~^31.^10^2.^~1~^^^^^^^^^^^~08/01/1984~
-~11911~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~
-~11911~^~432~^31.^10^2.^~1~^^^^^^^^^^^~02/01/2007~
-~11911~^~435~^31.^0^^~4~^~NC~^^^^^^^^^^~02/01/2007~
-~11911~^~601~^0.^0^^~7~^~Z~^^^^^^^^^^~08/01/1984~
-~11912~^~208~^80.^0^^~4~^~NC~^^^^^^^^^^~02/01/2007~
-~11912~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2005~
-~11912~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2005~
-~11912~^~268~^335.^0^^~4~^^^^^^^^^^^~02/01/2007~
-~11912~^~301~^4.^7^0.^~1~^^^^^^^^^^^~02/01/1995~
-~11912~^~304~^19.^7^0.^~1~^^^^^^^^^^^~08/01/1984~
-~11912~^~305~^57.^7^4.^~1~^^^^^^^^^^^~08/01/1984~
-~11912~^~306~^147.^7^9.^~1~^^^^^^^^^^^~08/01/1984~
-~11912~^~307~^245.^0^^~4~^^^^^^^^^^^~02/01/1995~
-~11912~^~318~^3.^0^^~4~^~NC~^^^^^^^^^^~02/01/2007~
-~11912~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2002~
-~11912~^~320~^0.^0^^~4~^~NC~^^^^^^^^^^~02/01/2007~
-~11912~^~321~^1.^0^^~4~^~BFSN~^~11910~^^^^^^^^^~02/01/2003~
-~11912~^~322~^0.^0^^~4~^~BFSN~^~11910~^^^^^^^^^~02/01/2003~
-~11912~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~
-~11912~^~334~^1.^0^^~4~^~BFSN~^~11910~^^^^^^^^^~02/01/2003~
-~11912~^~337~^0.^0^^~4~^~BFSN~^~11910~^^^^^^^^^~02/01/2003~
-~11912~^~338~^50.^0^^~4~^~BFSN~^~11910~^^^^^^^^^~02/01/2003~
-~11912~^~417~^31.^10^2.^~1~^^^^^^^^^^^~08/01/1984~
-~11912~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~
-~11912~^~432~^31.^10^2.^~1~^^^^^^^^^^^~02/01/2007~
-~11912~^~435~^31.^0^^~4~^~NC~^^^^^^^^^^~02/01/2007~
-~11912~^~601~^0.^0^^~7~^~Z~^^^^^^^^^^~08/01/1984~
-~11913~^~208~^98.^0^^~4~^~NC~^^^^^^^^^^~02/01/2003~
-~11913~^~268~^412.^0^^~4~^~NC~^^^^^^^^^^~02/01/2003~
-~11913~^~301~^4.^32^0.^~1~^^^^^^^^^^^~08/01/1984~
-~11913~^~304~^32.^9^0.^~1~^^^^^^^^^^^~08/01/1984~
-~11913~^~305~^87.^25^2.^~1~^^^^^^^^^^^~08/01/1984~
-~11913~^~306~^294.^13^7.^~1~^^^^^^^^^^^~08/01/1984~
-~11913~^~307~^5.^29^1.^~1~^^^^^^^^^^^~08/01/1984~
-~11913~^~318~^4.^0^^~4~^~NC~^^^^^^^^^^~02/01/2003~
-~11913~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2002~
-~11913~^~320~^0.^0^^~4~^~NC~^^^^^^^^^^~02/01/2003~
-~11913~^~321~^2.^0^^~4~^~BFSN~^~11910~^^^^^^^^^~02/01/2003~
-~11913~^~322~^0.^0^^~4~^~BFSN~^~11910~^^^^^^^^^~02/01/2003~
-~11913~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~
-~11913~^~334~^1.^0^^~4~^~BFSN~^~11910~^^^^^^^^^~02/01/2003~
-~11913~^~337~^0.^0^^~4~^~BFSN~^~11910~^^^^^^^^^~02/01/2003~
-~11913~^~338~^61.^0^^~4~^~BFSN~^~11910~^^^^^^^^^~02/01/2003~
-~11913~^~417~^40.^0^^~1~^^^^^^^^^^^~08/01/1984~
-~11913~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~
-~11913~^~432~^40.^0^^~1~^^^^^^^^^^^~02/01/2003~
-~11913~^~435~^40.^0^^~4~^~NC~^^^^^^^^^^~02/01/2003~
-~11913~^~601~^0.^0^^~7~^~Z~^^^^^^^^^^~08/01/1984~
-~11914~^~208~^94.^0^^~4~^~NC~^^^^^^^^^^~02/01/2003~
-~11914~^~268~^391.^0^^~4~^~NC~^^^^^^^^^^~02/01/2003~
-~11914~^~301~^3.^0^^~1~^^^^^^^^^^^~08/01/1984~
-~11914~^~304~^29.^0^^~1~^^^^^^^^^^^~08/01/1984~
-~11914~^~305~^75.^0^^~1~^^^^^^^^^^^~08/01/1984~
-~11914~^~306~^251.^0^^~1~^^^^^^^^^^^~08/01/1984~
-~11914~^~307~^4.^0^^~1~^^^^^^^^^^^~08/01/1984~
-~11914~^~318~^4.^0^^~4~^~NC~^^^^^^^^^^~02/01/2003~
-~11914~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2002~
-~11914~^~320~^0.^0^^~4~^~NC~^^^^^^^^^^~02/01/2003~
-~11914~^~321~^2.^0^^~4~^~BFSN~^~11910~^^^^^^^^^~02/01/2003~
-~11914~^~322~^0.^0^^~4~^~BFSN~^~11910~^^^^^^^^^~02/01/2003~
-~11914~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~
-~11914~^~334~^1.^0^^~4~^~BFSN~^~11910~^^^^^^^^^~02/01/2003~
-~11914~^~337~^0.^0^^~4~^~BFSN~^~11910~^^^^^^^^^~02/01/2003~
-~11914~^~338~^58.^0^^~4~^~BFSN~^~11910~^^^^^^^^^~02/01/2003~
-~11914~^~417~^31.^0^^~1~^^^^^^^^^^^~08/01/1984~
-~11914~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~
-~11914~^~432~^31.^0^^~1~^^^^^^^^^^^~02/01/2003~
-~11914~^~435~^31.^0^^~4~^~NC~^^^^^^^^^^~02/01/2003~
-~11914~^~601~^0.^0^^~7~^~Z~^^^^^^^^^^~08/01/1984~
-~11915~^~208~^94.^0^^~4~^~NC~^^^^^^^^^^~05/01/2005~
-~11915~^~268~^391.^0^^~4~^~NC~^^^^^^^^^^~05/01/2005~
-~11915~^~301~^3.^0^^~1~^^^^^^^^^^^~08/01/1984~
-~11915~^~304~^29.^0^^~1~^^^^^^^^^^^~08/01/1984~
-~11915~^~305~^75.^0^^~1~^^^^^^^^^^^~08/01/1984~
-~11915~^~306~^251.^0^^~1~^^^^^^^^^^^~08/01/1984~
-~11915~^~307~^240.^0^^~4~^^^^^^^^^^^~08/01/1984~
-~11915~^~318~^4.^0^^~4~^~NC~^^^^^^^^^^~05/01/2005~
-~11915~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2002~
-~11915~^~320~^0.^0^^~4~^~NC~^^^^^^^^^^~05/01/2005~
-~11915~^~321~^2.^0^^~4~^~BFSN~^~11910~^^^^^^^^^~02/01/2003~
-~11915~^~322~^0.^0^^~4~^~BFSN~^~11910~^^^^^^^^^~02/01/2003~
-~11915~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~
-~11915~^~334~^1.^0^^~4~^~BFSN~^~11910~^^^^^^^^^~02/01/2003~
-~11915~^~337~^0.^0^^~4~^~BFSN~^~11910~^^^^^^^^^~02/01/2003~
-~11915~^~338~^58.^0^^~4~^~BFSN~^~11910~^^^^^^^^^~02/01/2003~
-~11915~^~417~^31.^0^^~1~^^^^^^^^^^^~08/01/1984~
-~11915~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~
-~11915~^~432~^31.^0^^~1~^^^^^^^^^^^~02/01/2003~
-~11915~^~435~^31.^0^^~4~^~NC~^^^^^^^^^^~05/01/2005~
-~11915~^~601~^0.^0^^~7~^~Z~^^^^^^^^^^~08/01/1984~
-~11916~^~208~^18.^0^^~4~^~NC~^^^^^^^^^^~08/01/1984~
-~11916~^~268~^75.^0^^~4~^^^^^^^^^^^
-~11916~^~301~^41.^2^^~1~^^^^^^^^^^^~08/01/1984~
-~11916~^~304~^11.^2^^~1~^^^^^^^^^^^~08/01/1984~
-~11916~^~305~^20.^2^^~1~^^^^^^^^^^^~08/01/1984~
-~11916~^~306~^146.^2^^~1~^^^^^^^^^^^~08/01/1984~
-~11916~^~307~^1369.^2^^~1~^^^^^^^^^^^~08/01/1984~
-~11916~^~318~^520.^0^^~1~^^^^^^^^^^^~08/01/1984~
-~11916~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2002~
-~11916~^~320~^26.^0^^~1~^^^^^^^^^^^~06/01/2002~
-~11916~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~
-~11916~^~417~^16.^0^^~4~^~BFZN~^^^^^^^^^^~04/01/1996~
-~11916~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~
-~11916~^~432~^16.^0^^~4~^~BFZN~^^^^^^^^^^~04/01/1996~
-~11916~^~435~^16.^0^^~4~^~NC~^^^^^^^^^^~01/01/2001~
-~11916~^~601~^0.^0^^~7~^~Z~^^^^^^^^^^~08/01/1984~
-~11917~^~208~^20.^0^^~4~^~NC~^^^^^^^^^^~08/01/2007~
-~11917~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~11/01/2002~
-~11917~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~11/01/2002~
-~11917~^~268~^84.^0^^~4~^^^^^^^^^^^~08/01/2007~
-~11917~^~301~^9.^7^0.^~1~^^^^^^^^^^^~08/01/1984~
-~11917~^~304~^8.^1^^~1~^^^^^^^^^^^~08/01/1984~
-~11917~^~305~^17.^1^^~1~^^^^^^^^^^^~08/01/1984~
-~11917~^~306~^91.^1^^~1~^^^^^^^^^^^~08/01/1984~
-~11917~^~307~^5.^1^^~1~^^^^^^^^^^^~08/01/1984~
-~11917~^~318~^2428.^0^^~4~^~NC~^^^^^^^^^^~08/01/2007~
-~11917~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2002~
-~11917~^~320~^121.^0^^~4~^~NC~^^^^^^^^^^~08/01/2007~
-~11917~^~321~^1259.^0^^~4~^~BFSN~^~11821~^^^^^^^^^~03/01/2007~
-~11917~^~322~^15.^0^^~4~^~BFSN~^~11821~^^^^^^^^^~03/01/2007~
-~11917~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~
-~11917~^~334~^380.^0^^~4~^~BFSN~^~11821~^^^^^^^^^~03/01/2007~
-~11917~^~337~^0.^0^^~4~^~BFSN~^~11821~^^^^^^^^^~08/01/2007~
-~11917~^~338~^39.^0^^~4~^~BFSN~^~11821~^^^^^^^^^~03/01/2007~
-~11917~^~417~^14.^0^^~1~^^^^^^^^^^^~08/01/1984~
-~11917~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~
-~11917~^~432~^14.^0^^~1~^^^^^^^^^^^~08/01/2007~
-~11917~^~435~^14.^0^^~4~^~NC~^^^^^^^^^^~08/01/2007~
-~11917~^~601~^0.^0^^~7~^~Z~^^^^^^^^^^~08/01/1984~
-~11918~^~208~^16.^0^^~4~^~NC~^^^^^^^^^^~08/01/2011~
-~11918~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2006~
-~11918~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2006~
-~11918~^~268~^65.^0^^~4~^~NC~^^^^^^^^^^~08/01/2011~
-~11918~^~301~^8.^0^^~1~^^^^^^^^^^^~08/01/1984~
-~11918~^~304~^7.^0^^~1~^^^^^^^^^^^~08/01/1984~
-~11918~^~305~^13.^0^^~1~^^^^^^^^^^^~08/01/1984~
-~11918~^~306~^72.^0^^~1~^^^^^^^^^^^~08/01/1984~
-~11918~^~307~^4.^0^^~1~^^^^^^^^^^^~08/01/1984~
-~11918~^~318~^1917.^0^^~4~^~NC~^^^^^^^^^^~08/01/2011~
-~11918~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2002~
-~11918~^~320~^96.^0^^~4~^~NC~^^^^^^^^^^~08/01/2011~
-~11918~^~321~^994.^0^^~4~^~BFSN~^~11823~^^^^^^^^^~08/01/2011~
-~11918~^~322~^12.^0^^~4~^~BFSN~^~11823~^^^^^^^^^~08/01/2011~
-~11918~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~
-~11918~^~334~^300.^0^^~4~^~BFSN~^~11823~^^^^^^^^^~08/01/2011~
-~11918~^~337~^0.^0^^~4~^~BFSN~^~11823~^^^^^^^^^~05/01/2006~
-~11918~^~338~^31.^0^^~4~^~BFSN~^~11823~^^^^^^^^^~08/01/2011~
-~11918~^~417~^10.^0^^~1~^^^^^^^^^^^~08/01/1984~
-~11918~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~
-~11918~^~432~^10.^0^^~1~^^^^^^^^^^^~05/01/2006~
-~11918~^~435~^10.^0^^~4~^~NC~^^^^^^^^^^~07/01/2008~
-~11918~^~601~^0.^0^^~7~^~Z~^^^^^^^^^^~08/01/1984~
-~11919~^~208~^16.^0^^~4~^~NC~^^^^^^^^^^~05/01/2006~
-~11919~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2006~
-~11919~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2006~
-~11919~^~268~^65.^0^^~4~^~NC~^^^^^^^^^^~05/01/2006~
-~11919~^~301~^8.^0^^~1~^^^^^^^^^^^~08/01/1984~
-~11919~^~304~^7.^0^^~1~^^^^^^^^^^^~08/01/1984~
-~11919~^~305~^13.^0^^~1~^^^^^^^^^^^~08/01/1984~
-~11919~^~306~^72.^0^^~1~^^^^^^^^^^^~08/01/1984~
-~11919~^~307~^240.^0^^~4~^^^^^^^^^^^~08/01/1984~
-~11919~^~318~^1917.^0^^~4~^~NC~^^^^^^^^^^~08/01/2011~
-~11919~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2002~
-~11919~^~320~^96.^0^^~4~^~NC~^^^^^^^^^^~08/01/2011~
-~11919~^~321~^994.^0^^~4~^~BFSN~^~11823~^^^^^^^^^~08/01/2011~
-~11919~^~322~^12.^0^^~4~^~BFSN~^~11823~^^^^^^^^^~08/01/2011~
-~11919~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~
-~11919~^~334~^300.^0^^~4~^~BFSN~^~11823~^^^^^^^^^~08/01/2011~
-~11919~^~337~^0.^0^^~4~^~BFSN~^~11823~^^^^^^^^^~05/01/2006~
-~11919~^~338~^31.^0^^~4~^~BFSN~^~11823~^^^^^^^^^~08/01/2011~
-~11919~^~417~^10.^0^^~1~^^^^^^^^^^^~08/01/1984~
-~11919~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~
-~11919~^~432~^10.^0^^~1~^^^^^^^^^^^~05/01/2006~
-~11919~^~435~^10.^0^^~4~^~NC~^^^^^^^^^^~05/01/2006~
-~11919~^~601~^0.^0^^~7~^~Z~^^^^^^^^^^~08/01/1984~
-~11921~^~208~^133.^0^^~4~^~NC~^^^^^^^^^^~03/01/2006~
-~11921~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2003~
-~11921~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2003~
-~11921~^~268~^555.^0^^~4~^~NC~^^^^^^^^^^~03/01/2006~
-~11921~^~301~^7.^4^1.^~1~^~A~^^^1^4.^9.^3^3.^10.^~2, 3~^~04/01/2003~
-~11921~^~304~^12.^4^1.^~1~^~A~^^^1^8.^16.^3^6.^16.^~2, 3~^~04/01/2003~
-~11921~^~305~^23.^4^3.^~1~^~A~^^^1^15.^30.^3^13.^33.^~2, 3~^~04/01/2003~
-~11921~^~306~^193.^4^11.^~1~^~A~^^^1^171.^223.^3^156.^229.^~2, 3~^~04/01/2003~
-~11921~^~307~^21.^4^4.^~1~^~A~^^^1^12.^33.^3^6.^35.^~2, 3~^~04/01/2003~
-~11921~^~318~^2760.^0^^~4~^~NC~^^^^^^^^^^~03/01/2006~
-~11921~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2003~
-~11921~^~320~^138.^0^^~4~^~NC~^^^^^^^^^^~03/01/2006~
-~11921~^~321~^1570.^4^201.^~6~^~JA~^^^1^1050.^2000.^3^929.^2210.^~2, 3~^~04/01/2003~
-~11921~^~322~^96.^4^55.^~6~^~JA~^^^1^0.^207.^3^-81.^272.^~1, 2, 3~^~04/01/2003~
-~11921~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~
-~11921~^~334~^77.^4^4.^~6~^~JA~^^^1^65.^86.^3^62.^91.^~2, 3~^~04/01/2003~
-~11921~^~337~^484.^4^92.^~6~^~JA~^^^1^235.^648.^3^188.^778.^~2, 3~^~04/01/2003~
-~11921~^~338~^106.^4^19.^~6~^~JA~^^^1^69.^158.^3^44.^166.^~2, 3~^~03/01/2006~
-~11921~^~417~^2.^4^0.^~1~^~A~^^^1^2.^2.^^^^~1, 2, 3~^~04/01/2003~
-~11921~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2003~
-~11921~^~432~^2.^4^0.^~1~^~A~^^^1^2.^2.^^^^^~03/01/2006~
-~11921~^~435~^2.^0^^~4~^~NC~^^^^^^^^^^~03/01/2006~
-~11921~^~601~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2006~
-~11922~^~208~^21.^0^^~4~^~NC~^^^^^^^^^^~05/01/2005~
-~11922~^~268~^90.^0^^~4~^~NC~^^^^^^^^^^~05/01/2005~
-~11922~^~301~^22.^1^^~1~^^^^^^^^^^^~08/01/1984~
-~11922~^~304~^12.^1^^~1~^^^^^^^^^^^~08/01/1984~
-~11922~^~305~^21.^1^^~1~^^^^^^^^^^^~08/01/1984~
-~11922~^~306~^107.^1^^~1~^^^^^^^^^^^~08/01/1984~
-~11922~^~307~^247.^0^^~4~^^^^^^^^^^^~08/01/1984~
-~11922~^~318~^0.^0^^~1~^~AS~^^^^^^^^^^~05/01/2005~
-~11922~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2002~
-~11922~^~320~^0.^0^^~1~^~AS~^^^^^^^^^^~05/01/2005~
-~11922~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~
-~11922~^~417~^57.^0^^~4~^^^^^^^^^^^~08/01/1984~
-~11922~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~
-~11922~^~432~^57.^0^^~4~^^^^^^^^^^^~12/01/1984~
-~11922~^~435~^57.^0^^~4~^~NC~^^^^^^^^^^~05/01/2005~
-~11922~^~601~^0.^0^^~7~^~Z~^^^^^^^^^^~08/01/1984~
-~11923~^~208~^81.^0^^~4~^~NC~^^^^^^^^^^~05/01/2005~
-~11923~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2005~
-~11923~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2005~
-~11923~^~268~^340.^0^^~4~^~NC~^^^^^^^^^^~05/01/2005~
-~11923~^~301~^59.^3^9.^~1~^^^^^^^^^^^~08/01/1984~
-~11923~^~304~^60.^3^5.^~1~^^^^^^^^^^^~08/01/1984~
-~11923~^~305~^135.^3^28.^~1~^^^^^^^^^^^~08/01/1984~
-~11923~^~306~^355.^3^41.^~1~^^^^^^^^^^^~08/01/1984~
-~11923~^~307~^246.^0^^~4~^^^^^^^^^^^~08/01/1984~
-~11923~^~318~^40.^0^^~4~^~NC~^^^^^^^^^^~05/01/2005~
-~11923~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2002~
-~11923~^~320~^2.^0^^~4~^~NC~^^^^^^^^^^~05/01/2005~
-~11923~^~321~^12.^0^^~4~^~BFZN~^~11453~^^^^^^^^^~05/01/2005~
-~11923~^~322~^12.^0^^~4~^~BFZN~^~11453~^^^^^^^^^~05/01/2005~
-~11923~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~
-~11923~^~334~^12.^0^^~4~^~BFZN~^~11453~^^^^^^^^^~05/01/2005~
-~11923~^~337~^0.^0^^~4~^~BFZN~^~11453~^^^^^^^^^~05/01/2005~
-~11923~^~338~^0.^0^^~4~^~BFZN~^~11453~^^^^^^^^^~05/01/2005~
-~11923~^~417~^80.^1^^~1~^^^^^^^^^^^~08/01/1984~
-~11923~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~
-~11923~^~432~^80.^1^^~1~^^^^^^^^^^^~05/01/2005~
-~11923~^~435~^80.^0^^~4~^~NC~^^^^^^^^^^~05/01/2005~
-~11923~^~601~^0.^0^^~7~^~Z~^^^^^^^^^^~08/01/1984~
-~11924~^~208~^125.^0^^~4~^~NC~^^^^^^^^^^~05/01/2005~
-~11924~^~268~^523.^0^^~4~^~NC~^^^^^^^^^^~05/01/2005~
-~11924~^~301~^82.^1^^~1~^^^^^^^^^^^~08/01/1984~
-~11924~^~304~^96.^0^^~1~^^^^^^^^^^^~08/01/1984~
-~11924~^~305~^216.^0^^~1~^^^^^^^^^^^~08/01/1984~
-~11924~^~306~^567.^0^^~1~^^^^^^^^^^^~08/01/1984~
-~11924~^~307~^250.^0^^~4~^^^^^^^^^^^~08/01/1984~
-~11924~^~318~^17.^0^^~1~^^^^^^^^^^^~06/01/2005~
-~11924~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2002~
-~11924~^~320~^1.^0^^~1~^^^^^^^^^^^~06/01/2005~
-~11924~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~
-~11924~^~417~^127.^0^^~4~^^^^^^^^^^^~08/01/1984~
-~11924~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~
-~11924~^~432~^127.^0^^~4~^^^^^^^^^^^~12/01/1984~
-~11924~^~435~^127.^0^^~4~^~NC~^^^^^^^^^^~06/01/2005~
-~11924~^~601~^0.^0^^~7~^~Z~^^^^^^^^^^~08/01/1984~
-~11925~^~208~^20.^0^^~4~^~NC~^^^^^^^^^^~08/01/1984~
-~11925~^~268~^84.^0^^~4~^^^^^^^^^^^
-~11925~^~301~^38.^0^^~1~^^^^^^^^^^^~08/01/1984~
-~11925~^~304~^89.^0^^~1~^^^^^^^^^^^~08/01/1984~
-~11925~^~305~^52.^0^^~1~^^^^^^^^^^^~08/01/1984~
-~11925~^~306~^321.^0^^~1~^^^^^^^^^^^~08/01/1984~
-~11925~^~307~^239.^0^^~4~^^^^^^^^^^^~08/01/1984~
-~11925~^~318~^3474.^0^^~1~^^^^^^^^^^^~08/01/1984~
-~11925~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2002~
-~11925~^~320~^174.^0^^~1~^^^^^^^^^^^~06/01/2002~
-~11925~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~
-~11925~^~417~^8.^0^^~4~^^^^^^^^^^^~08/01/1984~
-~11925~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~
-~11925~^~432~^8.^0^^~4~^^^^^^^^^^^~12/01/1984~
-~11925~^~435~^8.^0^^~4~^~NC~^^^^^^^^^^~01/01/2001~
-~11925~^~601~^0.^0^^~7~^~Z~^^^^^^^^^^~08/01/1984~
-~11926~^~208~^101.^0^^~4~^~NC~^^^^^^^^^^~05/01/2005~
-~11926~^~268~^423.^0^^~4~^~NC~^^^^^^^^^^~05/01/2005~
-~11926~^~301~^14.^1^^~1~^^^^^^^^^^^~08/01/1984~
-~11926~^~304~^35.^0^^~1~^^^^^^^^^^^~08/01/1984~
-~11926~^~305~^153.^0^^~1~^^^^^^^^^^^~08/01/1984~
-~11926~^~306~^284.^0^^~1~^^^^^^^^^^^~08/01/1984~
-~11926~^~307~^246.^0^^~4~^^^^^^^^^^^~08/01/1984~
-~11926~^~318~^41.^0^^~1~^^^^^^^^^^^~06/01/2005~
-~11926~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2002~
-~11926~^~320~^2.^0^^~1~^^^^^^^^^^^~06/01/2005~
-~11926~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~
-~11926~^~417~^67.^0^^~4~^~BFZN~^^^^^^^^^^~04/01/1996~
-~11926~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~
-~11926~^~432~^67.^0^^~4~^~BFZN~^^^^^^^^^^~04/01/1996~
-~11926~^~435~^67.^0^^~4~^~NC~^^^^^^^^^^~06/01/2005~
-~11926~^~601~^0.^0^^~7~^~Z~^^^^^^^^^^~08/01/1984~
-~11927~^~208~^82.^0^^~4~^~NC~^^^^^^^^^^~05/01/2005~
-~11927~^~268~^344.^0^^~4~^~NC~^^^^^^^^^^~05/01/2005~
-~11927~^~301~^8.^1^^~1~^^^^^^^^^^^~08/01/1984~
-~11927~^~304~^10.^1^^~1~^^^^^^^^^^^~08/01/1984~
-~11927~^~305~^40.^1^^~1~^^^^^^^^^^^~08/01/1984~
-~11927~^~306~^495.^1^^~1~^^^^^^^^^^^~08/01/1984~
-~11927~^~307~^248.^0^^~4~^^^^^^^^^^^~08/01/1984~
-~11927~^~318~^0.^0^^~1~^~AS~^^^^^^^^^^~05/01/2005~
-~11927~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2002~
-~11927~^~320~^0.^0^^~1~^~AS~^^^^^^^^^^~05/01/2005~
-~11927~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~
-~11927~^~417~^12.^0^^~4~^^^^^^^^^^^~08/01/1984~
-~11927~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~
-~11927~^~432~^12.^0^^~4~^^^^^^^^^^^~05/01/2005~
-~11927~^~435~^12.^0^^~4~^~NC~^^^^^^^^^^~05/01/2005~
-~11927~^~601~^0.^0^^~7~^~Z~^^^^^^^^^^~08/01/1984~
-~11928~^~208~^40.^0^^~4~^~NC~^^^^^^^^^^~05/01/2005~
-~11928~^~268~^166.^0^^~4~^~NC~^^^^^^^^^^~05/01/2005~
-~11928~^~301~^8.^0^^~1~^^^^^^^^^^^~08/01/1984~
-~11928~^~304~^5.^0^^~1~^^^^^^^^^^^~08/01/1984~
-~11928~^~305~^4.^0^^~1~^^^^^^^^^^^~08/01/1984~
-~11928~^~306~^5.^0^^~1~^^^^^^^^^^^~08/01/1984~
-~11928~^~307~^241.^0^^~4~^^^^^^^^^^^~08/01/1984~
-~11928~^~318~^200.^0^^~1~^^^^^^^^^^^~06/01/2005~
-~11928~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2002~
-~11928~^~320~^10.^0^^~1~^^^^^^^^^^^~06/01/2005~
-~11928~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~
-~11928~^~417~^15.^0^^~4~^^^^^^^^^^^~08/01/1984~
-~11928~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~
-~11928~^~432~^15.^0^^~4~^^^^^^^^^^^~12/01/1984~
-~11928~^~435~^15.^0^^~4~^~NC~^^^^^^^^^^~06/01/2005~
-~11928~^~601~^0.^0^^~7~^~Z~^^^^^^^^^^~08/01/1984~
-~11929~^~208~^108.^0^^~4~^~NC~^^^^^^^^^^~08/01/1984~
-~11929~^~268~^452.^0^^~4~^^^^^^^^^^^
-~11929~^~301~^35.^0^^~1~^^^^^^^^^^^~08/01/1984~
-~11929~^~304~^19.^0^^~1~^^^^^^^^^^^~08/01/1984~
-~11929~^~305~^60.^0^^~1~^^^^^^^^^^^~08/01/1984~
-~11929~^~306~^145.^0^^~1~^^^^^^^^^^^~08/01/1984~
-~11929~^~307~^263.^0^^~1~^^^^^^^^^^^~08/01/1984~
-~11929~^~318~^213.^0^^~4~^~NC~^^^^^^^^^^~04/01/2002~
-~11929~^~319~^40.^0^^~4~^~NR~^^^^^^^^^^~04/01/2002~
-~11929~^~320~^44.^0^^~4~^~NC~^^^^^^^^^^~04/01/2002~
-~11929~^~321~^48.^0^^~4~^~NR~^^^^^^^^^^~04/01/2002~
-~11929~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~
-~11929~^~417~^7.^0^^~1~^^^^^^^^^^^~08/01/1984~
-~11929~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~
-~11929~^~432~^7.^0^^~1~^^^^^^^^^^^~12/01/1984~
-~11929~^~435~^7.^0^^~4~^~NC~^^^^^^^^^^~04/01/2002~
-~11929~^~601~^3.^0^^~1~^^^^^^^^^^^~08/01/1984~
-~11929~^~636~^14.^0^^~1~^^^^^^^^^^^~08/01/1984~
-~11930~^~208~^113.^0^^~4~^~NC~^^^^^^^^^^~08/01/1984~
-~11930~^~268~^473.^0^^~4~^^^^^^^^^^^
-~11930~^~301~^49.^6^2.^~1~^^^^^^^^^^^~08/01/1984~
-~11930~^~304~^18.^0^^~1~^^^^^^^^^^^~08/01/1984~
-~11930~^~305~^56.^0^^~1~^^^^^^^^^^^~08/01/1984~
-~11930~^~306~^233.^12^6.^~1~^^^^^^^^^^^~08/01/1984~
-~11930~^~307~^332.^17^2.^~1~^^^^^^^^^^^~08/01/1984~
-~11930~^~318~^220.^0^^~4~^~NC~^^^^^^^^^^~04/01/2002~
-~11930~^~319~^42.^0^^~4~^~NR~^^^^^^^^^^~04/01/2002~
-~11930~^~320~^46.^0^^~4~^~NC~^^^^^^^^^^~04/01/2002~
-~11930~^~321~^48.^0^^~4~^~NR~^^^^^^^^^^~04/01/2002~
-~11930~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~
-~11930~^~417~^7.^0^^~1~^^^^^^^^^^^~08/01/1984~
-~11930~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~
-~11930~^~432~^7.^0^^~1~^^^^^^^^^^^~12/01/1984~
-~11930~^~435~^7.^0^^~4~^~NC~^^^^^^^^^^~04/01/2002~
-~11930~^~601~^4.^0^^~1~^^^^^^^^^^^~08/01/1984~
-~11931~^~208~^314.^0^^~4~^~NC~^^^^^^^^^^~02/01/2003~
-~11931~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~
-~11931~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~
-~11931~^~268~^1314.^0^^~4~^~NC~^^^^^^^^^^~02/01/2003~
-~11931~^~301~^134.^1^^~1~^^^^^^^^^^^~08/01/1984~
-~11931~^~304~^188.^0^^~1~^^^^^^^^^^^~08/01/1984~
-~11931~^~305~^327.^1^^~1~^^^^^^^^^^^~08/01/1984~
-~11931~^~306~^3170.^1^^~1~^^^^^^^^^^^~08/01/1984~
-~11931~^~307~^193.^1^^~1~^^^^^^^^^^^~08/01/1984~
-~11931~^~318~^77261.^0^^~4~^~NC~^^^^^^^^^^~02/01/2003~
-~11931~^~319~^0.^0^^~4~^~BNA~^^^^^^^^^^~02/01/2003~
-~11931~^~320~^3863.^0^^~4~^~NC~^^^^^^^^^^~02/01/2003~
-~11931~^~321~^42891.^0^^~4~^~BNA~^^^^^^^^^^~02/01/2003~
-~11931~^~322~^6931.^0^^~4~^~BNA~^^^^^^^^^^~02/01/2003~
-~11931~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~
-~11931~^~334~^0.^0^^~4~^~BNA~^^^^^^^^^^~02/01/2003~
-~11931~^~337~^0.^0^^~4~^~BFSN~^^^^^^^^^^~02/01/2003~
-~11931~^~338~^5799.^0^^~4~^~BFSN~^^^^^^^^^^~02/01/2003~
-~11931~^~417~^229.^0^^~1~^^^^^^^^^^^~08/01/1984~
-~11931~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~
-~11931~^~432~^229.^0^^~1~^^^^^^^^^^^~02/01/2003~
-~11931~^~435~^229.^0^^~4~^~NC~^^^^^^^^^^~02/01/2003~
-~11931~^~601~^0.^0^^~7~^~Z~^^^^^^^^^^~08/01/1984~
-~11932~^~208~^20.^0^^~4~^~NC~^^^^^^^^^^~02/01/2007~
-~11932~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~
-~11932~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~
-~11932~^~268~^84.^0^^~4~^^^^^^^^^^^~08/01/2015~
-~11932~^~301~^26.^12^1.^~1~^^^^^^^^^^^~08/01/1984~
-~11932~^~304~^13.^12^0.^~1~^^^^^^^^^^^~08/01/1984~
-~11932~^~305~^19.^12^0.^~1~^^^^^^^^^^^~08/01/1984~
-~11932~^~306~^109.^12^1.^~1~^^^^^^^^^^^~08/01/1984~
-~11932~^~307~^251.^12^17.^~1~^^^^^^^^^^^~08/01/1984~
-~11932~^~318~^105.^0^^~4~^~NC~^^^^^^^^^^~05/01/2009~
-~11932~^~319~^0.^0^^~4~^~BNA~^~11724~^^^^^^^^^~02/01/2003~
-~11932~^~320~^5.^0^^~4~^~NC~^^^^^^^^^^~05/01/2009~
-~11932~^~321~^63.^0^^~4~^~BNA~^~11724~^^^^^^^^^~02/01/2003~
-~11932~^~322~^0.^0^^~4~^~BNA~^~11724~^^^^^^^^^~02/01/2003~
-~11932~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~
-~11932~^~334~^0.^0^^~4~^~BNA~^~11724~^^^^^^^^^~02/01/2003~
-~11932~^~337~^0.^0^^~4~^~BFSN~^~11729~^^^^^^^^^~02/01/2003~
-~11932~^~338~^458.^0^^~4~^~BFSN~^~11729~^^^^^^^^^~08/01/2015~
-~11932~^~417~^32.^6^7.^~1~^^^^^^^^^^^~08/01/1984~
-~11932~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~
-~11932~^~432~^32.^6^7.^~1~^^^^^^^^^^^~02/01/2007~
-~11932~^~435~^32.^0^^~4~^~NC~^^^^^^^^^^~05/01/2009~
-~11932~^~601~^0.^0^^~7~^~Z~^^^^^^^^^^~08/01/1984~
-~11933~^~208~^20.^0^^~4~^~NC~^^^^^^^^^^~05/01/2005~
-~11933~^~268~^84.^0^^~4~^^^^^^^^^^^~08/01/2015~
-~11933~^~301~^26.^12^1.^~1~^^^^^^^^^^^~08/01/1984~
-~11933~^~304~^13.^12^0.^~1~^^^^^^^^^^^~08/01/1984~
-~11933~^~305~^19.^12^0.^~1~^^^^^^^^^^^~08/01/1984~
-~11933~^~306~^109.^12^1.^~1~^^^^^^^^^^^~08/01/1984~
-~11933~^~307~^2.^0^^~1~^^^^^^^^^^^~08/01/1984~
-~11933~^~318~^353.^0^^~4~^~NC~^^^^^^^^^^~08/01/2015~
-~11933~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2002~
-~11933~^~320~^18.^0^^~4~^~NC~^^^^^^^^^^~08/01/2015~
-~11933~^~321~^122.^0^^~4~^~BFZN~^~11729~^^^^^^^^^~08/01/2015~
-~11933~^~322~^156.^0^^~4~^~BFZN~^~11729~^^^^^^^^^~08/01/2015~
-~11933~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~
-~11933~^~334~^24.^0^^~4~^~BFZN~^~11729~^^^^^^^^^~08/01/2015~
-~11933~^~337~^0.^0^^~4~^~BFZN~^~11729~^^^^^^^^^~05/01/2005~
-~11933~^~338~^452.^0^^~4~^~BFZN~^~11729~^^^^^^^^^~08/01/2015~
-~11933~^~417~^32.^6^7.^~1~^^^^^^^^^^^~08/01/1984~
-~11933~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~
-~11933~^~432~^32.^6^7.^~1~^^^^^^^^^^^~05/01/2005~
-~11933~^~435~^32.^0^^~4~^~NC~^^^^^^^^^^~05/01/2005~
-~11933~^~601~^0.^0^^~7~^~Z~^^^^^^^^^^~08/01/1984~
-~11934~^~208~^113.^0^^~4~^~NC~^^^^^^^^^^~05/01/2009~
-~11934~^~262~^0.^0^^~4~^~RC~^^^^^^^^^^~05/01/2009~
-~11934~^~263~^0.^0^^~4~^~RC~^^^^^^^^^^~02/01/2003~
-~11934~^~268~^471.^0^^~4~^~NC~^^^^^^^^^^~05/01/2009~
-~11934~^~301~^24.^0^^~4~^~RC~^^^^^^^^^^~05/01/2009~
-~11934~^~304~^18.^0^^~4~^~RC~^^^^^^^^^^~05/01/2009~
-~11934~^~305~^45.^0^^~4~^~RC~^^^^^^^^^^~05/01/2009~
-~11934~^~306~^284.^0^^~4~^~RC~^^^^^^^^^^~05/01/2009~
-~11934~^~307~^317.^0^^~4~^~RC~^^^^^^^^^^~05/01/2009~
-~11934~^~318~^138.^0^^~4~^~NC~^^^^^^^^^^~05/01/2009~
-~11934~^~319~^37.^0^^~4~^~RC~^^^^^^^^^^~05/01/2009~
-~11934~^~320~^38.^0^^~4~^~NC~^^^^^^^^^^~05/01/2009~
-~11934~^~321~^9.^0^^~4~^~RC~^^^^^^^^^^~05/01/2009~
-~11934~^~322~^0.^0^^~4~^~RC~^^^^^^^^^^~05/01/2009~
-~11934~^~324~^10.^0^^~4~^~RC~^^^^^^^^^^~05/01/2009~
-~11934~^~334~^0.^0^^~4~^~RC~^^^^^^^^^^~05/01/2009~
-~11934~^~337~^0.^0^^~4~^~RC~^^^^^^^^^^~05/01/2009~
-~11934~^~338~^7.^0^^~4~^~RC~^^^^^^^^^^~05/01/2009~
-~11934~^~417~^8.^0^^~4~^~RC~^^^^^^^^^^~05/01/2009~
-~11934~^~431~^0.^0^^~4~^~RC~^^^^^^^^^^~05/01/2009~
-~11934~^~432~^8.^0^^~4~^~RC~^^^^^^^^^^~05/01/2009~
-~11934~^~435~^8.^0^^~4~^~NC~^^^^^^^^^^~05/01/2009~
-~11934~^~601~^11.^0^^~4~^~RC~^^^^^^^^^^~05/01/2009~
-~11935~^~208~^101.^0^^~4~^~NC~^^^^^^^^^^~08/01/2014~
-~11935~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2004~
-~11935~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2004~
-~11935~^~268~^423.^0^^~4~^~NC~^^^^^^^^^^~08/01/2014~
-~11935~^~301~^15.^18^0.^~1~^~A~^^^1^14.^18.^9^14.^15.^~2, 3~^~08/01/2014~
-~11935~^~304~^13.^18^0.^~1~^~A~^^^1^12.^15.^12^12.^13.^~2, 3~^~08/01/2014~
-~11935~^~305~^26.^18^0.^~1~^~A~^^^1^23.^30.^12^25.^26.^~2, 3~^~08/01/2014~
-~11935~^~306~^281.^18^5.^~1~^~A~^^^1^243.^334.^11^268.^293.^~2, 3~^~08/01/2014~
-~11935~^~307~^907.^18^6.^~1~^~A~^^^1^836.^967.^14^892.^921.^~2, 3~^~07/01/2012~
-~11935~^~318~^527.^0^^~1~^~AS~^^^^^^^^^^~08/01/2014~
-~11935~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2002~
-~11935~^~320~^26.^0^^~1~^~AS~^^^^^^^^^^~08/01/2014~
-~11935~^~321~^316.^6^29.^~1~^~A~^^^1^220.^585.^2^181.^451.^~2, 3~^~08/01/2014~
-~11935~^~322~^0.^6^0.^~1~^~A~^^^1^0.^0.^^^^~1, 2, 3~^~08/01/2014~
-~11935~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~
-~11935~^~334~^0.^6^0.^~1~^~A~^^^1^0.^0.^^^^~1, 2, 3~^~08/01/2014~
-~11935~^~337~^12062.^6^445.^~1~^~A~^^^1^10928.^13805.^2^10140.^13982.^~2, 3~^~08/01/2014~
-~11935~^~338~^161.^6^2.^~1~^~A~^^^1^151.^175.^2^144.^177.^~2, 3~^~08/01/2014~
-~11935~^~417~^9.^6^0.^~1~^~A~^^^1^8.^13.^3^7.^11.^~2, 3~^~08/01/2014~
-~11935~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~
-~11935~^~432~^9.^6^0.^~1~^~A~^^^1^8.^13.^3^7.^11.^^~08/01/2014~
-~11935~^~435~^9.^0^^~4~^~NC~^^^^^^^^^^~08/01/2014~
-~11935~^~601~^0.^0^^~7~^~Z~^^^^^^^^^^~08/01/1984~
-~11936~^~208~^22.^0^^~4~^~NC~^^^^^^^^^^~04/01/2015~
-~11936~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2015~
-~11936~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2015~
-~11936~^~268~^94.^0^^~4~^~NC~^^^^^^^^^^~04/01/2015~
-~11936~^~301~^18.^1^^~1~^~A~^^^^^^^^^^~04/01/2015~
-~11936~^~304~^9.^0^^~4~^~BFSN~^^^^^^^^^^~04/01/2015~
-~11936~^~305~^120.^1^^~1~^~A~^^^^^^^^^^~04/01/2015~
-~11936~^~306~^448.^1^^~1~^~A~^^^^^^^^^^~04/01/2015~
-~11936~^~307~^6.^1^^~1~^~A~^^^^^^^^^^~04/01/2015~
-~11936~^~318~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2015~
-~11936~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2015~
-~11936~^~320~^0.^0^^~4~^~NC~^^^^^^^^^^~04/01/2015~
-~11936~^~321~^0.^0^^~4~^~BFSN~^~11260~^^^^^^^^^~04/01/2015~
-~11936~^~322~^0.^0^^~4~^~BFSN~^~11260~^^^^^^^^^~04/01/2015~
-~11936~^~324~^1276.^6^245.^~1~^~A~^^^4^744.^2360.^5^645.^1906.^~4~^~04/01/2015~
-~11936~^~334~^0.^0^^~4~^~BFSN~^~11260~^^^^^^^^^~04/01/2015~
-~11936~^~337~^0.^0^^~4~^~BFSN~^~11260~^^^^^^^^^~04/01/2015~
-~11936~^~338~^0.^0^^~4~^~BFSN~^~11260~^^^^^^^^^~04/01/2015~
-~11936~^~417~^28.^4^6.^~1~^~AS~^^^1^19.^46.^3^7.^47.^~2, 3~^~04/01/2015~
-~11936~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2015~
-~11936~^~432~^28.^4^6.^~1~^~A~^^^1^19.^46.^3^7.^47.^~2, 3~^~04/01/2015~
-~11936~^~435~^28.^0^^~4~^~NC~^^^^^^^^^^~04/01/2015~
-~11936~^~601~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2015~
-~11936~^~638~^0.^6^0.^~1~^~A~^^^2^0.^0.^^^^~1, 2, 3~^~04/01/2015~
-~11936~^~639~^2.^6^0.^~1~^~A~^^^2^2.^3.^4^1.^2.^~1, 2, 3~^~04/01/2015~
-~11936~^~641~^0.^6^0.^~1~^~A~^^^2^0.^0.^1^0.^0.^~1, 2, 3~^~04/01/2015~
-~11937~^~208~^12.^0^^~4~^~NC~^^^^^^^^^^~12/01/2006~
-~11937~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~11/01/2002~
-~11937~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~11/01/2002~
-~11937~^~268~^52.^0^^~4~^~NC~^^^^^^^^^^~04/01/2014~
-~11937~^~301~^57.^18^1.^~1~^~A~^^^1^50.^76.^10^54.^60.^~2, 3~^~08/01/2014~
-~11937~^~304~^7.^18^0.^~1~^~A~^^^1^5.^11.^8^6.^7.^~2, 3~^~08/01/2014~
-~11937~^~305~^16.^18^0.^~1~^~A~^^^1^12.^19.^12^15.^16.^~2, 3~^~08/01/2014~
-~11937~^~306~^117.^18^3.^~1~^~A~^^^1^93.^145.^9^108.^124.^~2, 3~^~08/01/2014~
-~11937~^~307~^809.^18^19.^~1~^~A~^^^1^502.^1170.^11^766.^852.^~2, 3~^~04/01/2014~
-~11937~^~318~^125.^0^^~4~^~NC~^^^^^^^^^^~04/01/2014~
-~11937~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2002~
-~11937~^~320~^6.^0^^~4~^~NC~^^^^^^^^^^~04/01/2014~
-~11937~^~321~^53.^0^^~4~^~BFSN~^~11205~^^^^^^^^^~04/01/2014~
-~11937~^~322~^13.^0^^~4~^~BFSN~^~11205~^^^^^^^^^~04/01/2014~
-~11937~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~
-~11937~^~334~^30.^0^^~4~^~BFSN~^~11205~^^^^^^^^^~04/01/2014~
-~11937~^~337~^0.^0^^~4~^~BFSN~^~11205~^^^^^^^^^~12/01/2006~
-~11937~^~338~^28.^0^^~4~^~BFSN~^~11205~^^^^^^^^^~04/01/2014~
-~11937~^~417~^8.^1^^~1~^~A~^^^^^^^^^^~04/01/2014~
-~11937~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~
-~11937~^~432~^8.^1^^~1~^~A~^^^^^^^^^^~04/01/2014~
-~11937~^~435~^8.^0^^~4~^~NC~^^^^^^^^^^~04/01/2014~
-~11937~^~601~^0.^0^^~7~^~Z~^^^^^^^^^^~08/01/1984~
-~11937~^~636~^14.^3^0.^~1~^^^^^^^^^^^~12/01/2006~
-~11938~^~208~^22.^0^^~4~^~NC~^^^^^^^^^^~04/01/2015~
-~11938~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2015~
-~11938~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2015~
-~11938~^~268~^93.^0^^~4~^~NC~^^^^^^^^^^~04/01/2015~
-~11938~^~301~^3.^52^0.^~11~^~JO~^^^11^1.^8.^35^2.^3.^~4~^~04/01/2015~
-~11938~^~304~^9.^42^0.^~6~^~JA~^^^10^5.^14.^33^8.^9.^~4~^~04/01/2015~
-~11938~^~305~^86.^43^3.^~11~^~JO~^^^11^29.^124.^34^77.^93.^~4~^~04/01/2015~
-~11938~^~306~^318.^48^11.^~6~^~JA~^^^11^118.^412.^35^295.^340.^~4~^~04/01/2015~
-~11938~^~307~^5.^38^0.^~11~^~JO~^^^11^2.^19.^33^3.^6.^~4~^~04/01/2015~
-~11938~^~318~^0.^1^^~1~^^^^^0.^0.^^^^^~04/01/2015~
-~11938~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2015~
-~11938~^~324~^1046.^8^285.^~1~^~A~^^^3^607.^3008.^7^370.^1722.^~4~^~04/01/2015~
-~11938~^~417~^17.^36^1.^~11~^~JO~^^^5^10.^28.^22^14.^18.^~4~^~04/01/2015~
-~11938~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2015~
-~11938~^~432~^17.^36^1.^~11~^~JO~^^^5^10.^28.^22^14.^18.^^~04/01/2015~
-~11938~^~435~^17.^0^^~4~^~NC~^^^^^^^^^^~04/01/2015~
-~11938~^~601~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2015~
-~11938~^~638~^0.^8^0.^~1~^~A~^^^2^0.^0.^^^^~1, 2, 3~^~04/01/2015~
-~11938~^~639~^2.^8^0.^~1~^~A~^^^2^2.^2.^6^1.^1.^~2, 3~^~04/01/2015~
-~11938~^~641~^0.^8^0.^~1~^~A~^^^2^0.^1.^3^0.^0.^~1, 2, 3~^~04/01/2015~
-~11939~^~208~^29.^0^^~4~^~NC~^^^^^^^^^^~02/01/2010~
-~11939~^~268~^121.^0^^~4~^~NC~^^^^^^^^^^~02/01/2010~
-~11939~^~301~^3.^7^0.^~1~^~A~^^^2^1.^5.^5^1.^3.^~2, 3~^~08/01/2009~
-~11939~^~304~^13.^7^0.^~1~^~A~^^^2^9.^16.^4^11.^14.^~2, 3~^~08/01/2009~
-~11939~^~305~^135.^7^5.^~1~^~A~^^^2^98.^160.^4^119.^150.^~2, 3~^~08/01/2009~
-~11939~^~306~^437.^7^21.^~1~^~A~^^^2^306.^580.^4^377.^496.^~2, 3~^~08/01/2009~
-~11939~^~307~^11.^7^1.^~1~^~A~^^^2^6.^18.^3^5.^15.^~2, 3~^~08/01/2009~
-~11939~^~324~^524.^4^231.^~1~^~A~^^^1^124.^1022.^3^-211.^1259.^~2, 3~^~02/01/2010~
-~11939~^~417~^19.^2^^~1~^~A~^^^1^12.^26.^1^^^^~08/01/2009~
-~11939~^~432~^19.^2^^~1~^~A~^^^^^^^^^^~02/01/2010~
-~11939~^~638~^0.^4^0.^~1~^~A~^^^1^0.^0.^^^^~1, 2, 3~^~01/01/2010~
-~11939~^~639~^2.^4^0.^~1~^~A~^^^1^1.^3.^3^0.^3.^~2, 3~^~01/01/2010~
-~11939~^~641~^0.^4^0.^~1~^~A~^^^1^0.^0.^^^^~1, 2, 3~^~02/01/2010~
-~11940~^~208~^91.^0^^~4~^~NC~^^^^^^^^^^~12/01/2006~
-~11940~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~11/01/2002~
-~11940~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~11/01/2002~
-~11940~^~268~^379.^0^^~4~^~NC~^^^^^^^^^^~12/01/2006~
-~11940~^~301~^61.^3^8.^~1~^~A~^^^1^52.^78.^2^24.^97.^~2, 3~^~04/01/2006~
-~11940~^~304~^7.^3^0.^~1~^~A~^^^1^6.^8.^2^5.^9.^~2, 3~^~04/01/2006~
-~11940~^~305~^18.^3^0.^~1~^~A~^^^1^16.^19.^2^14.^21.^~2, 3~^~04/01/2006~
-~11940~^~306~^100.^3^1.^~1~^~A~^^^1^98.^102.^2^95.^104.^~2, 3~^~04/01/2006~
-~11940~^~307~^457.^4^29.^~6~^~JA~^^^2^332.^611.^2^329.^585.^~2, 3~^~04/01/2006~
-~11940~^~318~^764.^0^^~4~^~NC~^^^^^^^^^^~12/01/2006~
-~11940~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2002~
-~11940~^~320~^38.^0^^~4~^~NC~^^^^^^^^^^~12/01/2006~
-~11940~^~321~^325.^0^^~4~^~BFSN~^~11937~^^^^^^^^^~04/01/2005~
-~11940~^~322~^81.^0^^~4~^~BFSN~^~11937~^^^^^^^^^~04/01/2005~
-~11940~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~
-~11940~^~334~^186.^0^^~4~^~BFSN~^~11937~^^^^^^^^^~04/01/2005~
-~11940~^~337~^0.^0^^~4~^~BFSN~^~11937~^^^^^^^^^~04/01/2005~
-~11940~^~338~^170.^0^^~4~^~BFSN~^~11937~^^^^^^^^^~04/01/2005~
-~11940~^~417~^1.^2^^~1~^^^^^^^^^^^~12/01/2006~
-~11940~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~
-~11940~^~432~^1.^2^^~1~^^^^^^^^^^^~12/01/2006~
-~11940~^~435~^1.^0^^~4~^~NC~^^^^^^^^^^~12/01/2006~
-~11940~^~601~^0.^0^^~7~^~Z~^^^^^^^^^^~08/01/1984~
-~11940~^~636~^14.^1^^~1~^^^^^^^^^^^~08/01/1984~
-~11941~^~208~^11.^0^^~4~^~NC~^^^^^^^^^^~12/01/2006~
-~11941~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~11/01/2002~
-~11941~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~11/01/2002~
-~11941~^~268~^44.^0^^~4~^~NC~^^^^^^^^^^~12/01/2006~
-~11941~^~301~^0.^6^0.^~1~^^^^^^^^^^^~08/01/1984~
-~11941~^~304~^4.^6^0.^~1~^^^^^^^^^^^~08/01/1984~
-~11941~^~305~^14.^6^0.^~1~^^^^^^^^^^^~08/01/1984~
-~11941~^~306~^23.^6^0.^~1~^^^^^^^^^^^~08/01/1984~
-~11941~^~307~^1208.^6^10.^~1~^^^^^^^^^^^~08/01/1984~
-~11941~^~318~^191.^0^^~4~^~NC~^^^^^^^^^^~12/01/2006~
-~11941~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2002~
-~11941~^~320~^10.^0^^~4~^~NC~^^^^^^^^^^~12/01/2006~
-~11941~^~321~^81.^0^^~4~^~BFSN~^~11937~^^^^^^^^^~12/01/2006~
-~11941~^~322~^20.^0^^~4~^~BFSN~^~11937~^^^^^^^^^~12/01/2006~
-~11941~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~
-~11941~^~334~^47.^0^^~4~^~BFSN~^~11937~^^^^^^^^^~12/01/2006~
-~11941~^~337~^0.^0^^~4~^~BFSN~^~11937~^^^^^^^^^~12/01/2006~
-~11941~^~338~^43.^0^^~4~^~BFSN~^~11937~^^^^^^^^^~12/01/2006~
-~11941~^~417~^1.^0^^~4~^^^^^^^^^^^~08/01/1984~
-~11941~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~
-~11941~^~432~^1.^0^^~4~^^^^^^^^^^^~12/01/2006~
-~11941~^~435~^1.^0^^~4~^~NC~^^^^^^^^^^~12/01/2006~
-~11941~^~601~^0.^0^^~7~^~Z~^^^^^^^^^^~08/01/1984~
-~11941~^~636~^14.^1^^~1~^^^^^^^^^^^~08/01/1984~
-~11943~^~208~^23.^0^^~4~^~NC~^^^^^^^^^^~03/01/2007~
-~11943~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~
-~11943~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~
-~11943~^~268~^96.^0^^~4~^^^^^^^^^^^~03/01/2007~
-~11943~^~301~^6.^4^0.^~1~^^^^^^^^^^^~08/01/1984~
-~11943~^~304~^6.^4^0.^~1~^^^^^^^^^^^~08/01/1984~
-~11943~^~305~^17.^4^0.^~1~^^^^^^^^^^^~08/01/1984~
-~11943~^~306~^158.^4^9.^~1~^^^^^^^^^^^~08/01/1984~
-~11943~^~307~^14.^6^0.^~1~^^^^^^^^^^^~08/01/1984~
-~11943~^~318~^2655.^0^^~4~^~NC~^^^^^^^^^^~03/01/2007~
-~11943~^~319~^0.^0^^~4~^~BNA~^~11334~^^^^^^^^^~02/01/2003~
-~11943~^~320~^133.^0^^~4~^~NC~^^^^^^^^^^~03/01/2007~
-~11943~^~321~^1474.^0^^~4~^~BNA~^~11334~^^^^^^^^^~02/01/2003~
-~11943~^~322~^238.^0^^~4~^~BNA~^~11334~^^^^^^^^^~02/01/2003~
-~11943~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~
-~11943~^~334~^0.^0^^~4~^~BNA~^~11334~^^^^^^^^^~02/01/2003~
-~11943~^~337~^0.^0^^~4~^~BFSN~^~11334~^^^^^^^^^~02/01/2003~
-~11943~^~338~^366.^0^^~4~^~BFSN~^~11334~^^^^^^^^^~03/01/2007~
-~11943~^~417~^6.^5^0.^~1~^^^^^^^^^^^~08/01/1984~
-~11943~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~
-~11943~^~432~^6.^5^0.^~1~^^^^^^^^^^^~03/01/2007~
-~11943~^~435~^6.^0^^~4~^~NC~^^^^^^^^^^~03/01/2007~
-~11943~^~601~^0.^0^^~7~^~Z~^^^^^^^^^^~08/01/1984~
-~11943~^~636~^9.^1^^~1~^^^^^^^^^^^~08/01/1984~
-~11944~^~208~^91.^0^^~4~^~NC~^^^^^^^^^^~08/01/1984~
-~11944~^~268~^381.^0^^~4~^^^^^^^^^^^
-~11944~^~301~^5.^7^3.^~1~^^^^^^^^^^^~08/01/1984~
-~11944~^~304~^19.^6^0.^~1~^^^^^^^^^^^~08/01/1984~
-~11944~^~305~^40.^6^0.^~1~^^^^^^^^^^^~08/01/1984~
-~11944~^~306~^78.^6^1.^~1~^^^^^^^^^^^~08/01/1984~
-~11944~^~307~^1091.^7^68.^~1~^^^^^^^^^^^~08/01/1984~
-~11944~^~318~^167.^6^39.^~1~^^^^^^^^^^^~08/01/1984~
-~11944~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2002~
-~11944~^~320~^8.^6^1.^~1~^^^^^^^^^^^~06/01/2002~
-~11944~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~
-~11944~^~417~^1.^4^0.^~1~^^^^^^^^^^^~08/01/1984~
-~11944~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~
-~11944~^~432~^1.^4^0.^~1~^^^^^^^^^^^~12/01/1984~
-~11944~^~435~^1.^0^^~4~^~NC~^^^^^^^^^^~01/01/2001~
-~11944~^~601~^0.^0^^~7~^~Z~^^^^^^^^^^~08/01/1984~
-~11945~^~208~^130.^0^^~4~^~NC~^^^^^^^^^^~12/01/2006~
-~11945~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~11/01/2002~
-~11945~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~11/01/2002~
-~11945~^~268~^544.^0^^~4~^~NC~^^^^^^^^^^~12/01/2006~
-~11945~^~301~^3.^7^2.^~1~^^^^^^^^^^^~08/01/1984~
-~11945~^~304~^5.^6^0.^~1~^^^^^^^^^^^~08/01/1984~
-~11945~^~305~^14.^6^0.^~1~^^^^^^^^^^^~08/01/1984~
-~11945~^~306~^25.^6^0.^~1~^^^^^^^^^^^~08/01/1984~
-~11945~^~307~^811.^7^18.^~1~^^^^^^^^^^^~08/01/1984~
-~11945~^~318~^1218.^0^^~4~^~NC~^^^^^^^^^^~12/01/2006~
-~11945~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2002~
-~11945~^~320~^61.^0^^~4~^~NC~^^^^^^^^^^~12/01/2006~
-~11945~^~321~^519.^0^^~4~^~BFSN~^~11940~^^^^^^^^^~12/01/2006~
-~11945~^~322~^129.^0^^~4~^~BFSN~^~11940~^^^^^^^^^~12/01/2006~
-~11945~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~
-~11945~^~334~^296.^0^^~4~^~BFSN~^~11940~^^^^^^^^^~12/01/2006~
-~11945~^~337~^0.^0^^~4~^~BFSN~^~11940~^^^^^^^^^~04/01/2005~
-~11945~^~338~^271.^0^^~4~^~BFSN~^~11940~^^^^^^^^^~12/01/2006~
-~11945~^~417~^1.^4^0.^~1~^^^^^^^^^^^~08/01/1984~
-~11945~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~
-~11945~^~432~^1.^4^0.^~1~^^^^^^^^^^^~12/01/2006~
-~11945~^~435~^1.^0^^~4~^~NC~^^^^^^^^^^~12/01/2006~
-~11945~^~601~^0.^0^^~7~^~Z~^^^^^^^^^^~08/01/1984~
-~11946~^~208~^11.^0^^~4~^~NC~^^^^^^^^^^~12/01/2006~
-~11946~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~11/01/2002~
-~11946~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~11/01/2002~
-~11946~^~268~^44.^0^^~4~^~NC~^^^^^^^^^^~12/01/2006~
-~11946~^~301~^0.^6^0.^~1~^^^^^^^^^^^~08/01/1984~
-~11946~^~304~^4.^6^0.^~1~^^^^^^^^^^^~08/01/1984~
-~11946~^~305~^14.^6^0.^~1~^^^^^^^^^^^~08/01/1984~
-~11946~^~306~^23.^6^0.^~1~^^^^^^^^^^^~08/01/1984~
-~11946~^~307~^18.^1^^~1~^^^^^^^^^^^~08/01/1984~
-~11946~^~318~^191.^0^^~4~^~NC~^^^^^^^^^^~12/01/2006~
-~11946~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2002~
-~11946~^~320~^10.^0^^~4~^~NC~^^^^^^^^^^~12/01/2006~
-~11946~^~321~^81.^0^^~4~^~BFZN~^~11941~^^^^^^^^^~12/01/2006~
-~11946~^~322~^20.^0^^~4~^~BFZN~^~11941~^^^^^^^^^~12/01/2006~
-~11946~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~
-~11946~^~334~^47.^0^^~4~^~BFZN~^~11941~^^^^^^^^^~12/01/2006~
-~11946~^~337~^0.^0^^~4~^~BFZN~^~11941~^^^^^^^^^~12/01/2006~
-~11946~^~338~^43.^0^^~4~^~BFZN~^~11941~^^^^^^^^^~12/01/2006~
-~11946~^~417~^1.^0^^~4~^^^^^^^^^^^~04/01/1989~
-~11946~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~
-~11946~^~432~^1.^0^^~4~^^^^^^^^^^^~12/01/2006~
-~11946~^~435~^1.^0^^~4~^~NC~^^^^^^^^^^~12/01/2006~
-~11946~^~601~^0.^0^^~7~^~Z~^^^^^^^^^^~08/01/1984~
-~11946~^~636~^14.^1^^~1~^^^^^^^^^^^~08/01/1984~
-~11947~^~208~^12.^0^^~4~^~NC~^^^^^^^^^^~04/01/2014~
-~11947~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2014~
-~11947~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2014~
-~11947~^~268~^52.^0^^~4~^~NC~^^^^^^^^^^~04/01/2014~
-~11947~^~301~^57.^18^1.^~1~^~A~^^^1^50.^76.^10^54.^60.^~2, 3~^~08/01/2014~
-~11947~^~304~^7.^18^0.^~1~^~A~^^^1^5.^11.^8^6.^7.^~2, 3~^~08/01/2014~
-~11947~^~305~^16.^18^0.^~1~^~A~^^^1^12.^19.^12^15.^16.^~2, 3~^~08/01/2014~
-~11947~^~306~^117.^18^3.^~1~^~A~^^^1^93.^145.^9^108.^124.^~2, 3~^~08/01/2014~
-~11947~^~307~^18.^1^^~1~^^^^^^^^^^^~08/01/2014~
-~11947~^~318~^125.^0^^~4~^~NC~^^^^^^^^^^~04/01/2014~
-~11947~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2002~
-~11947~^~320~^6.^0^^~4~^~NC~^^^^^^^^^^~04/01/2014~
-~11947~^~321~^53.^0^^~4~^~BFSN~^~11937~^^^^^^^^^~04/01/2014~
-~11947~^~322~^13.^0^^~4~^~BFSN~^~11937~^^^^^^^^^~04/01/2014~
-~11947~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~
-~11947~^~334~^30.^0^^~4~^~BFSN~^~11937~^^^^^^^^^~04/01/2014~
-~11947~^~337~^0.^0^^~4~^~BFSN~^~11937~^^^^^^^^^~12/01/2006~
-~11947~^~338~^28.^0^^~4~^~BFSN~^~11937~^^^^^^^^^~04/01/2014~
-~11947~^~417~^8.^1^^~1~^~A~^^^^^^^^^^~04/01/2014~
-~11947~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~
-~11947~^~432~^8.^1^^~1~^~A~^^^^^^^^^^~04/01/2014~
-~11947~^~435~^8.^0^^~4~^~NC~^^^^^^^^^^~04/01/2014~
-~11947~^~601~^0.^0^^~7~^~Z~^^^^^^^^^^~08/01/1984~
-~11947~^~636~^14.^3^0.^~1~^^^^^^^^^^^~08/01/1984~
-~11948~^~208~^122.^0^^~4~^~NC~^^^^^^^^^^~12/01/2006~
-~11948~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~11/01/2002~
-~11948~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~11/01/2002~
-~11948~^~268~^511.^0^^~4~^~NC~^^^^^^^^^^~12/01/2006~
-~11948~^~301~^4.^48^1.^~1~^^^^^^^^^^^~08/01/1984~
-~11948~^~304~^4.^44^0.^~1~^^^^^^^^^^^~08/01/1984~
-~11948~^~305~^12.^44^0.^~1~^^^^^^^^^^^~08/01/1984~
-~11948~^~306~^32.^44^6.^~1~^^^^^^^^^^^~08/01/1984~
-~11948~^~307~^18.^1^^~1~^^^^^^^^^^^~08/01/1984~
-~11948~^~318~^1116.^0^^~4~^~NC~^^^^^^^^^^~12/01/2006~
-~11948~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2002~
-~11948~^~320~^56.^0^^~4~^~NC~^^^^^^^^^^~12/01/2006~
-~11948~^~321~^475.^0^^~4~^~BFSN~^~11940~^^^^^^^^^~12/01/2006~
-~11948~^~322~^118.^0^^~4~^~BFSN~^~11940~^^^^^^^^^~12/01/2006~
-~11948~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~
-~11948~^~334~^271.^0^^~4~^~BFSN~^~11940~^^^^^^^^^~12/01/2006~
-~11948~^~337~^0.^0^^~4~^~BFSN~^~11940~^^^^^^^^^~12/01/2006~
-~11948~^~338~^248.^0^^~4~^~BFSN~^~11940~^^^^^^^^^~12/01/2006~
-~11948~^~417~^1.^2^^~1~^^^^^^^^^^^~08/01/1984~
-~11948~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~
-~11948~^~432~^1.^2^^~1~^^^^^^^^^^^~12/01/2006~
-~11948~^~435~^1.^0^^~4~^~NC~^^^^^^^^^^~12/01/2006~
-~11948~^~601~^0.^0^^~7~^~Z~^^^^^^^^^^~08/01/1984~
-~11948~^~636~^14.^1^^~1~^^^^^^^^^^^~08/01/1984~
-~11949~^~208~^101.^0^^~4~^~NC~^^^^^^^^^^~08/01/2014~
-~11949~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~11/01/2004~
-~11949~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~11/01/2004~
-~11949~^~268~^423.^0^^~4~^~NC~^^^^^^^^^^~08/01/2014~
-~11949~^~301~^15.^18^0.^~1~^~A~^^^1^14.^18.^9^14.^15.^~2, 3~^~08/01/2014~
-~11949~^~304~^13.^18^0.^~1~^~A~^^^1^12.^15.^12^12.^13.^~2, 3~^~08/01/2014~
-~11949~^~305~^26.^18^0.^~1~^~A~^^^1^23.^30.^12^25.^26.^~2, 3~^~08/01/2014~
-~11949~^~306~^281.^18^5.^~1~^~A~^^^1^243.^334.^11^268.^293.^~2, 3~^~08/01/2014~
-~11949~^~307~^20.^1^^~1~^^^^^^^^^^^~08/01/1984~
-~11949~^~318~^527.^0^^~1~^~AS~^^^^^^^^^^~08/01/2014~
-~11949~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2002~
-~11949~^~320~^26.^0^^~1~^~AS~^^^^^^^^^^~08/01/2014~
-~11949~^~321~^316.^6^29.^~1~^~A~^^^1^220.^585.^2^181.^451.^~2, 3~^~08/01/2014~
-~11949~^~322~^0.^6^0.^~1~^~A~^^^1^0.^0.^^^^~1, 2, 3~^~08/01/2014~
-~11949~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~
-~11949~^~334~^0.^6^0.^~1~^~A~^^^1^0.^0.^^^^~1, 2, 3~^~08/01/2014~
-~11949~^~337~^12062.^6^445.^~1~^~A~^^^1^10928.^13805.^2^10140.^13982.^~2, 3~^~08/01/2014~
-~11949~^~338~^161.^6^2.^~1~^~A~^^^1^151.^175.^2^144.^177.^~2, 3~^~08/01/2014~
-~11949~^~417~^9.^6^0.^~1~^~A~^^^1^8.^13.^3^7.^11.^~2, 3~^~08/01/2014~
-~11949~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~
-~11949~^~432~^9.^6^0.^~1~^~A~^^^1^8.^13.^3^7.^11.^^~08/01/2014~
-~11949~^~435~^9.^0^^~4~^~NC~^^^^^^^^^^~08/01/2014~
-~11949~^~601~^0.^0^^~7~^~Z~^^^^^^^^^^~08/01/1984~
-~11950~^~208~^37.^0^^~4~^~NC~^^^^^^^^^^~05/01/2010~
-~11950~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2006~
-~11950~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2006~
-~11950~^~268~^153.^0^^~4~^~NC~^^^^^^^^^^~05/01/2010~
-~11950~^~301~^0.^3^0.^~1~^~A~^^^1^0.^1.^2^0.^0.^~1, 2, 3~^~07/01/2009~
-~11950~^~304~^16.^2^^~1~^~A~^^^1^16.^16.^^^^^~07/01/2009~
-~11950~^~305~^105.^2^^~1~^~A~^^^1^100.^110.^1^^^^~07/01/2009~
-~11950~^~306~^359.^3^19.^~1~^~A~^^^1^339.^399.^2^273.^444.^~2, 3~^~07/01/2009~
-~11950~^~307~^3.^3^0.^~1~^~A~^^^1^2.^4.^2^1.^4.^~2, 3~^~07/01/2009~
-~11950~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2002~
-~11950~^~324~^5.^4^3.^~1~^~A~^^^1^2.^16.^3^-5.^16.^~1, 2, 3~^~02/01/2010~
-~11950~^~417~^48.^6^5.^~6~^~JA~^^^2^32.^64.^2^28.^68.^~2, 3~^~05/01/2010~
-~11950~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~
-~11950~^~432~^48.^6^5.^~6~^~JA~^^^2^32.^64.^2^28.^68.^^~05/01/2010~
-~11950~^~435~^48.^0^^~4~^~NC~^^^^^^^^^^~05/01/2010~
-~11950~^~601~^0.^0^^~7~^~Z~^^^^^^^^^^~08/01/1984~
-~11950~^~638~^0.^7^0.^~1~^~A~^^^2^0.^0.^^^^~1, 2, 3~^~02/01/2010~
-~11950~^~639~^1.^7^0.^~1~^~A~^^^2^1.^2.^4^0.^1.^~1, 2, 3~^~02/01/2010~
-~11950~^~641~^0.^7^0.^~1~^~A~^^^2^0.^1.^2^0.^0.^~1, 2, 3~^~02/01/2010~
-~11951~^~208~^27.^0^^~4~^~NC~^^^^^^^^^^~07/01/2003~
-~11951~^~268~^112.^0^^~4~^~NC~^^^^^^^^^^~07/01/2003~
-~11951~^~301~^11.^2^^~1~^^^^^^^^^^^~08/01/1984~
-~11951~^~304~^12.^2^^~1~^^^^^^^^^^^~08/01/1984~
-~11951~^~305~^24.^2^^~1~^^^^^^^^^^^~08/01/1984~
-~11951~^~306~^212.^2^^~1~^^^^^^^^^^^~08/01/1984~
-~11951~^~307~^2.^2^^~1~^^^^^^^^^^^~08/01/1984~
-~11951~^~318~^200.^0^^~1~^~AS~^^^^^^^^^^~07/01/2003~
-~11951~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2002~
-~11951~^~320~^10.^0^^~1~^~AS~^^^^^^^^^^~07/01/2003~
-~11951~^~321~^120.^1^^~1~^~A~^^^^^^^^^^~07/01/2003~
-~11951~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~
-~11951~^~417~^26.^2^^~1~^^^^^^^^^^^~08/01/1984~
-~11951~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~
-~11951~^~432~^26.^2^^~1~^^^^^^^^^^^~07/01/2003~
-~11951~^~435~^26.^0^^~4~^~NC~^^^^^^^^^^~07/01/2003~
-~11951~^~601~^0.^0^^~7~^~Z~^^^^^^^^^^~08/01/1984~
-~11952~^~208~^23.^0^^~4~^~NC~^^^^^^^^^^~03/01/2007~
-~11952~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~
-~11952~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~
-~11952~^~268~^96.^0^^~4~^^^^^^^^^^^~03/01/2007~
-~11952~^~301~^19.^2^^~1~^^^^^^^^^^^~08/01/1984~
-~11952~^~304~^13.^2^^~1~^^^^^^^^^^^~08/01/1984~
-~11952~^~305~^40.^2^^~1~^^^^^^^^^^^~08/01/1984~
-~11952~^~306~^302.^2^^~1~^^^^^^^^^^^~08/01/1984~
-~11952~^~307~^22.^2^^~1~^^^^^^^^^^^~08/01/1984~
-~11952~^~318~^27.^0^^~4~^~NC~^^^^^^^^^^~05/01/2007~
-~11952~^~319~^0.^0^^~4~^~BNA~^~11152~^^^^^^^^^~02/01/2003~
-~11952~^~320~^1.^0^^~4~^~NC~^^^^^^^^^^~05/01/2007~
-~11952~^~321~^16.^0^^~4~^~BNA~^~11152~^^^^^^^^^~02/01/2003~
-~11952~^~322~^0.^0^^~4~^~BNA~^~11152~^^^^^^^^^~02/01/2003~
-~11952~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~
-~11952~^~334~^0.^0^^~4~^~BNA~^~11152~^^^^^^^^^~02/01/2003~
-~11952~^~337~^0.^0^^~4~^~BFSN~^~11152~^^^^^^^^^~02/01/2003~
-~11952~^~338~^8832.^0^^~4~^~BFSN~^~11152~^^^^^^^^^~02/01/2003~
-~11952~^~417~^60.^2^^~1~^^^^^^^^^^^~08/01/1984~
-~11952~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~
-~11952~^~432~^60.^2^^~1~^^^^^^^^^^^~05/01/2007~
-~11952~^~435~^60.^0^^~4~^~NC~^^^^^^^^^^~05/01/2007~
-~11952~^~601~^0.^0^^~7~^~Z~^^^^^^^^^^~08/01/1984~
-~11953~^~208~^21.^0^^~4~^~NC~^^^^^^^^^^~04/01/2003~
-~11953~^~268~^88.^0^^~4~^~NC~^^^^^^^^^^~04/01/2003~
-~11953~^~301~^21.^2^^~1~^^^^^^^^^^^~08/01/1984~
-~11953~^~304~^33.^2^^~1~^^^^^^^^^^^~08/01/1984~
-~11953~^~305~^93.^2^^~1~^^^^^^^^^^^~08/01/1984~
-~11953~^~306~^459.^2^^~1~^^^^^^^^^^^~08/01/1984~
-~11953~^~307~^3.^2^^~1~^^^^^^^^^^^~08/01/1984~
-~11953~^~318~^490.^0^^~1~^^^^^^^^^^^~06/01/2005~
-~11953~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2002~
-~11953~^~320~^25.^0^^~1~^^^^^^^^^^^~06/01/2005~
-~11953~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~
-~11953~^~417~^20.^2^^~1~^^^^^^^^^^^~08/01/1984~
-~11953~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~
-~11953~^~432~^20.^2^^~1~^^^^^^^^^^^~12/01/1984~
-~11953~^~435~^20.^0^^~4~^~NC~^^^^^^^^^^~06/01/2005~
-~11953~^~601~^0.^0^^~7~^~Z~^^^^^^^^^^~08/01/1984~
-~11954~^~208~^32.^0^^~4~^~NC~^^^^^^^^^^~03/01/2007~
-~11954~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~
-~11954~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~
-~11954~^~268~^133.^0^^~4~^~NC~^^^^^^^^^^~03/01/2007~
-~11954~^~301~^7.^2^^~1~^^^^^^^^^^^~08/01/1984~
-~11954~^~304~^20.^2^^~1~^^^^^^^^^^^~08/01/1984~
-~11954~^~305~^39.^2^^~1~^^^^^^^^^^^~08/01/1984~
-~11954~^~306~^268.^2^^~1~^^^^^^^^^^^~08/01/1984~
-~11954~^~307~^1.^2^^~1~^^^^^^^^^^^~08/01/1984~
-~11954~^~318~^114.^0^^~4~^~NC~^^^^^^^^^^~03/01/2007~
-~11954~^~319~^0.^0^^~4~^~BNA~^~11333~^^^^^^^^^~03/01/2007~
-~11954~^~320~^6.^0^^~4~^~NC~^^^^^^^^^^~03/01/2007~
-~11954~^~321~^63.^0^^~4~^~BNA~^~11333~^^^^^^^^^~02/01/2003~
-~11954~^~322~^10.^0^^~4~^~BNA~^~11333~^^^^^^^^^~02/01/2003~
-~11954~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~
-~11954~^~334~^0.^0^^~4~^~BNA~^~11333~^^^^^^^^^~02/01/2003~
-~11954~^~337~^0.^0^^~4~^~BFSN~^~11333~^^^^^^^^^~02/01/2003~
-~11954~^~338~^467.^0^^~4~^~BFSN~^~11333~^^^^^^^^^~03/01/2007~
-~11954~^~417~^7.^2^^~1~^^^^^^^^^^^~08/01/1984~
-~11954~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~
-~11954~^~432~^7.^2^^~1~^^^^^^^^^^^~03/01/2007~
-~11954~^~435~^7.^0^^~4~^~NC~^^^^^^^^^^~03/01/2007~
-~11954~^~601~^0.^0^^~7~^~Z~^^^^^^^^^^~08/01/1984~
-~11955~^~208~^258.^0^^~4~^~NC~^^^^^^^^^^~03/01/2007~
-~11955~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~
-~11955~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~
-~11955~^~268~^1079.^0^^~4~^^^^^^^^^^^~03/01/2007~
-~11955~^~301~^110.^1^^~1~^^^^^^^^^^^~08/01/1984~
-~11955~^~304~^194.^1^^~1~^^^^^^^^^^^~08/01/1984~
-~11955~^~305~^356.^1^^~1~^^^^^^^^^^^~08/01/1984~
-~11955~^~306~^3427.^1^^~1~^^^^^^^^^^^~08/01/1984~
-~11955~^~307~^107.^0^^~8~^~LC~^^^^^^^^^^~05/01/2015~
-~11955~^~318~^874.^0^^~4~^~NC~^^^^^^^^^^~03/01/2007~
-~11955~^~319~^0.^0^^~4~^~BNA~^~11530~^^^^^^^^^~02/01/2003~
-~11955~^~320~^44.^0^^~4~^~NC~^^^^^^^^^^~03/01/2007~
-~11955~^~321~^524.^0^^~4~^~BNA~^~11530~^^^^^^^^^~02/01/2003~
-~11955~^~322~^0.^0^^~4~^~BNA~^~11530~^^^^^^^^^~02/01/2003~
-~11955~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~
-~11955~^~334~^0.^0^^~4~^~BNA~^~11530~^^^^^^^^^~02/01/2003~
-~11955~^~337~^45902.^0^^~4~^~BFSN~^~11530~^^^^^^^^^~03/01/2007~
-~11955~^~338~^1419.^0^^~4~^~BFSN~^~11530~^^^^^^^^^~03/01/2007~
-~11955~^~417~^68.^1^^~1~^^^^^^^^^^^~08/01/1984~
-~11955~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~
-~11955~^~432~^68.^1^^~1~^^^^^^^^^^^~03/01/2007~
-~11955~^~435~^68.^0^^~4~^~NC~^^^^^^^^^^~03/01/2007~
-~11955~^~601~^0.^0^^~7~^~Z~^^^^^^^^^^~08/01/1984~
-~11956~^~208~^213.^0^^~4~^~NC~^^^^^^^^^^~08/01/1984~
-~11956~^~268~^891.^0^^~4~^^^^^^^^^^^
-~11956~^~301~^47.^1^^~1~^^^^^^^^^^^~08/01/1984~
-~11956~^~304~^81.^1^^~1~^^^^^^^^^^^~08/01/1984~
-~11956~^~305~^139.^1^^~1~^^^^^^^^^^^~08/01/1984~
-~11956~^~306~^1565.^1^^~1~^^^^^^^^^^^~08/01/1984~
-~11956~^~307~^266.^1^^~1~^^^^^^^^^^^~08/01/1984~
-~11956~^~318~^1286.^1^^~1~^^^^^^^^^^^~08/01/1984~
-~11956~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2002~
-~11956~^~320~^64.^1^^~1~^^^^^^^^^^^~06/01/2002~
-~11956~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~
-~11956~^~417~^23.^1^^~1~^^^^^^^^^^^~08/01/1984~
-~11956~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~
-~11956~^~432~^23.^1^^~1~^^^^^^^^^^^~12/01/1984~
-~11956~^~435~^23.^0^^~4~^~NC~^^^^^^^^^^~01/01/2001~
-~11956~^~601~^0.^0^^~7~^~Z~^^^^^^^^^^~08/01/1984~
-~11957~^~208~^31.^0^^~4~^~NC~^^^^^^^^^^~08/01/1984~
-~11957~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2012~
-~11957~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2012~
-~11957~^~268~^129.^0^^~4~^~NC~^^^^^^^^^^~11/01/2012~
-~11957~^~301~^49.^2^^~1~^^^^^^^^^^^~08/01/1984~
-~11957~^~304~^17.^2^^~1~^^^^^^^^^^^~08/01/1984~
-~11957~^~305~^50.^2^^~1~^^^^^^^^^^^~08/01/1984~
-~11957~^~306~^414.^2^^~1~^^^^^^^^^^^~08/01/1984~
-~11957~^~307~^52.^2^^~1~^^^^^^^^^^^~08/01/1984~
-~11957~^~318~^963.^0^^~4~^~NC~^^^^^^^^^^~11/01/2012~
-~11957~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2002~
-~11957~^~320~^48.^0^^~4~^~NC~^^^^^^^^^^~11/01/2012~
-~11957~^~321~^578.^0^^~4~^~BFSN~^~11143~^^^^^^^^^~11/01/2012~
-~11957~^~322~^0.^0^^~4~^~BFSN~^~11143~^^^^^^^^^~11/01/2012~
-~11957~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~
-~11957~^~334~^0.^0^^~4~^~BFSN~^~11143~^^^^^^^^^~11/01/2012~
-~11957~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2012~
-~11957~^~338~^607.^0^^~4~^~BFSN~^~11143~^^^^^^^^^~11/01/2012~
-~11957~^~417~^27.^2^^~1~^^^^^^^^^^^~08/01/1984~
-~11957~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~
-~11957~^~432~^27.^2^^~1~^^^^^^^^^^^~12/01/1984~
-~11957~^~435~^27.^0^^~4~^~NC~^^^^^^^^^^~01/01/2001~
-~11957~^~601~^0.^0^^~7~^~Z~^^^^^^^^^^~08/01/1984~
-~11958~^~208~^129.^0^^~4~^~NC~^^^^^^^^^^~08/01/1984~
-~11958~^~268~^540.^0^^~4~^^^^^^^^^^^
-~11958~^~301~^4.^7^3.^~1~^^^^^^^^^^^~08/01/1984~
-~11958~^~304~^7.^6^0.^~1~^^^^^^^^^^^~08/01/1984~
-~11958~^~305~^17.^6^0.^~1~^^^^^^^^^^^~08/01/1984~
-~11958~^~306~^76.^6^2.^~1~^^^^^^^^^^^~08/01/1984~
-~11958~^~307~^1096.^7^32.^~1~^^^^^^^^^^^~08/01/1984~
-~11958~^~318~^267.^6^7.^~1~^^^^^^^^^^^~08/01/1984~
-~11958~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2002~
-~11958~^~320~^13.^6^0.^~1~^^^^^^^^^^^~06/01/2002~
-~11958~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~
-~11958~^~417~^1.^4^0.^~1~^^^^^^^^^^^~08/01/1984~
-~11958~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~
-~11958~^~432~^1.^4^0.^~1~^^^^^^^^^^^~12/01/1984~
-~11958~^~435~^1.^0^^~4~^~NC~^^^^^^^^^^~01/01/2001~
-~11958~^~601~^0.^0^^~7~^~Z~^^^^^^^^^^~08/01/1984~
-~11959~^~208~^25.^0^^~4~^~NC~^^^^^^^^^^~12/01/2006~
-~11959~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~
-~11959~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~
-~11959~^~268~^105.^0^^~4~^^^^^^^^^^^~12/01/2006~
-~11959~^~301~^160.^2^^~1~^^^^^^^^^^^~08/01/1984~
-~11959~^~304~^47.^2^^~1~^^^^^^^^^^^~08/01/1984~
-~11959~^~305~^52.^2^^~1~^^^^^^^^^^^~08/01/1984~
-~11959~^~306~^369.^2^^~1~^^^^^^^^^^^~08/01/1984~
-~11959~^~307~^27.^2^^~1~^^^^^^^^^^^~08/01/1984~
-~11959~^~318~^2373.^0^^~4~^~NC~^^^^^^^^^^~12/01/2006~
-~11959~^~319~^0.^0^^~4~^~BNA~^~11251~^^^^^^^^^~02/01/2003~
-~11959~^~320~^119.^0^^~4~^~NC~^^^^^^^^^^~12/01/2006~
-~11959~^~321~^1424.^0^^~4~^~BNA~^~11251~^^^^^^^^^~02/01/2003~
-~11959~^~322~^0.^0^^~4~^~BNA~^~11251~^^^^^^^^^~02/01/2003~
-~11959~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~
-~11959~^~334~^0.^0^^~4~^~BNA~^~11251~^^^^^^^^^~02/01/2003~
-~11959~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~
-~11959~^~338~^3555.^0^^~4~^~BFSN~^~11251~^^^^^^^^^~02/01/2003~
-~11959~^~417~^97.^2^^~1~^^^^^^^^^^^~08/01/1984~
-~11959~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~
-~11959~^~432~^97.^2^^~1~^^^^^^^^^^^~12/01/2006~
-~11959~^~435~^97.^0^^~4~^~NC~^^^^^^^^^^~12/01/2006~
-~11959~^~601~^0.^0^^~7~^~Z~^^^^^^^^^^~08/01/1984~
-~11960~^~208~^35.^0^^~4~^~NC~^^^^^^^^^^~03/01/2006~
-~11960~^~268~^145.^0^^~4~^~NC~^^^^^^^^^^~03/01/2006~
-~11960~^~301~^32.^8^1.^~1~^~A~^^^2^28.^36.^6^28.^34.^~2, 3~^~10/01/2002~
-~11960~^~304~^10.^8^0.^~1~^~A~^^^2^9.^13.^3^9.^11.^~2, 3~^~10/01/2002~
-~11960~^~305~^28.^8^0.^~1~^~A~^^^2^24.^31.^4^26.^30.^~2, 3~^~10/01/2002~
-~11960~^~306~^237.^8^8.^~1~^~A~^^^2^201.^312.^4^212.^260.^~2, 3~^~10/01/2002~
-~11960~^~307~^78.^8^4.^~1~^~A~^^^2^36.^112.^5^64.^90.^~2, 3~^~05/01/2003~
-~11960~^~318~^13790.^0^^~1~^~AS~^^^^^^^^^^~03/01/2006~
-~11960~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2002~
-~11960~^~320~^690.^0^^~1~^~AS~^^^^^^^^^^~03/01/2006~
-~11960~^~321~^6391.^7^1661.^~1~^~A~^^^1^4730.^8052.^1^-14714.^27496.^~4~^~10/01/2002~
-~11960~^~322~^3767.^7^1026.^~1~^~A~^^^1^2740.^4793.^1^-9276.^16809.^~4~^~10/01/2002~
-~11960~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~
-~11960~^~334~^0.^3^^~1~^~A~^^^^^^^^^^~10/01/2002~
-~11960~^~337~^0.^3^^~1~^~A~^^^^^^^^^^~10/01/2002~
-~11960~^~338~^358.^3^^~1~^~A~^^^^^^^^^^~10/01/2002~
-~11960~^~417~^27.^8^2.^~1~^~A~^^^2^12.^50.^4^18.^34.^~2, 3~^~03/01/2006~
-~11960~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~
-~11960~^~432~^27.^8^2.^~1~^~A~^^^2^12.^50.^4^18.^34.^^~03/01/2006~
-~11960~^~435~^27.^0^^~4~^~NC~^^^^^^^^^^~03/01/2006~
-~11960~^~601~^0.^0^^~7~^~Z~^^^^^^^^^^~08/01/1984~
-~11961~^~208~^28.^0^^~4~^~NC~^^^^^^^^^^~08/01/1984~
-~11961~^~268~^117.^0^^~4~^^^^^^^^^^^
-~11961~^~301~^58.^3^12.^~1~^^^^^^^^^^^~08/01/1984~
-~11961~^~304~^38.^3^5.^~1~^^^^^^^^^^^~08/01/1984~
-~11961~^~305~^65.^3^13.^~1~^^^^^^^^^^^~08/01/1984~
-~11961~^~306~^177.^3^8.^~1~^^^^^^^^^^^~08/01/1984~
-~11961~^~307~^426.^3^41.^~1~^^^^^^^^^^^~08/01/1984~
-~11961~^~318~^0.^1^^~1~^^^^^^^^^^^~08/01/1984~
-~11961~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2002~
-~11961~^~320~^0.^1^^~1~^^^^^^^^^^^~06/01/2002~
-~11961~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~
-~11961~^~417~^39.^2^^~1~^^^^^^^^^^^~08/01/1984~
-~11961~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~
-~11961~^~432~^39.^2^^~1~^^^^^^^^^^^~12/01/1984~
-~11961~^~435~^39.^0^^~4~^~NC~^^^^^^^^^^~01/01/2001~
-~11961~^~601~^0.^0^^~7~^~Z~^^^^^^^^^^~08/01/1984~
-~11962~^~208~^324.^0^^~4~^~NC~^^^^^^^^^^~03/01/2007~
-~11962~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~
-~11962~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~
-~11962~^~268~^1356.^0^^~4~^^^^^^^^^^^~03/01/2007~
-~11962~^~301~^45.^2^^~1~^^^^^^^^^^^~08/01/1984~
-~11962~^~304~^88.^2^^~1~^^^^^^^^^^^~08/01/1984~
-~11962~^~305~^159.^2^^~1~^^^^^^^^^^^~08/01/1984~
-~11962~^~306~^1870.^2^^~1~^^^^^^^^^^^~08/01/1984~
-~11962~^~307~^91.^2^^~1~^^^^^^^^^^^~08/01/1984~
-~11962~^~318~^26488.^0^^~4~^~NC~^^^^^^^^^^~03/01/2007~
-~11962~^~319~^0.^0^^~4~^~BNA~^~11819~^^^^^^^^^~02/01/2003~
-~11962~^~320~^1324.^0^^~4~^~NC~^^^^^^^^^^~03/01/2007~
-~11962~^~321~^14844.^0^^~4~^~BNA~^~11819~^^^^^^^^^~02/01/2003~
-~11962~^~322~^994.^0^^~4~^~BNA~^~11819~^^^^^^^^^~02/01/2003~
-~11962~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~
-~11962~^~334~^1103.^0^^~4~^~BNA~^~11819~^^^^^^^^^~02/01/2003~
-~11962~^~337~^0.^0^^~4~^~BFSN~^~11819~^^^^^^^^^~02/01/2003~
-~11962~^~338~^5494.^0^^~4~^~BFSN~^~11819~^^^^^^^^^~02/01/2003~
-~11962~^~417~^51.^2^^~1~^^^^^^^^^^^~08/01/1984~
-~11962~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~
-~11962~^~432~^51.^2^^~1~^^^^^^^^^^^~03/01/2007~
-~11962~^~435~^51.^0^^~4~^~NC~^^^^^^^^^^~03/01/2007~
-~11962~^~601~^0.^0^^~7~^~Z~^^^^^^^^^^~08/01/1984~
-~11963~^~208~^16.^0^^~4~^~NC~^^^^^^^^^^~03/01/2007~
-~11963~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2003~
-~11963~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2003~
-~11963~^~268~^66.^0^^~4~^~NC~^^^^^^^^^^~03/01/2007~
-~11963~^~301~^164.^4^26.^~1~^^^^1^118.^211.^3^80.^246.^~4~^~01/01/2003~
-~11963~^~304~^52.^4^3.^~1~^^^^1^45.^61.^3^41.^63.^~4~^~01/01/2003~
-~11963~^~305~^16.^4^1.^~1~^^^^1^14.^19.^3^12.^20.^~4~^~01/01/2003~
-~11963~^~306~^257.^4^37.^~1~^^^^1^170.^330.^3^137.^376.^~4~^~01/01/2003~
-~11963~^~307~^21.^8^1.^~1~^^^^1^18.^25.^3^15.^26.^~4~^~01/01/2003~
-~11963~^~318~^457.^0^^~1~^~AS~^^^^^^^^^^~03/01/2007~
-~11963~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2002~
-~11963~^~320~^23.^0^^~1~^~AS~^^^^^^^^^^~03/01/2007~
-~11963~^~321~^250.^4^114.^~1~^^^^1^51.^477.^3^-112.^613.^~4~^~01/01/2003~
-~11963~^~322~^48.^2^^~1~^^^^1^47.^50.^1^^^^~01/01/2003~
-~11963~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~
-~11963~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2003~
-~11963~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2003~
-~11963~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2003~
-~11963~^~417~^3.^4^0.^~1~^^^^1^1.^5.^3^0.^5.^~4~^~01/01/2003~
-~11963~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~
-~11963~^~432~^3.^4^0.^~1~^^^^1^1.^5.^3^0.^5.^^~03/01/2007~
-~11963~^~435~^3.^0^^~4~^~NC~^^^^^^^^^^~03/01/2007~
-~11963~^~601~^0.^0^^~7~^~Z~^^^^^^^^^^~08/01/1984~
-~11964~^~208~^15.^0^^~4~^~NC~^^^^^^^^^^~03/01/2007~
-~11964~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2003~
-~11964~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2003~
-~11964~^~268~^65.^0^^~4~^~NC~^^^^^^^^^^~03/01/2007~
-~11964~^~301~^164.^2^^~1~^^^^^^^^^^^~08/01/1984~
-~11964~^~304~^47.^2^^~1~^^^^^^^^^^^~08/01/1984~
-~11964~^~305~^16.^2^^~1~^^^^^^^^^^^~08/01/1984~
-~11964~^~306~^195.^2^^~1~^^^^^^^^^^^~08/01/1984~
-~11964~^~307~^20.^4^10.^~1~^^^^^^^^^^^~08/01/1984~
-~11964~^~318~^443.^0^^~4~^~NC~^^^^^^^^^^~03/01/2007~
-~11964~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2002~
-~11964~^~320~^22.^0^^~4~^~NC~^^^^^^^^^^~03/01/2007~
-~11964~^~321~^242.^0^^~4~^~BFSN~^~11963~^^^^^^^^^~01/01/2003~
-~11964~^~322~^47.^0^^~4~^~BFSN~^~11963~^^^^^^^^^~01/01/2003~
-~11964~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~
-~11964~^~334~^0.^0^^~4~^~BFSN~^~11963~^^^^^^^^^~01/01/2003~
-~11964~^~337~^0.^0^^~4~^~BFSN~^~11963~^^^^^^^^^~01/01/2003~
-~11964~^~338~^0.^0^^~4~^~BFSN~^~11963~^^^^^^^^^~01/01/2003~
-~11964~^~417~^3.^2^^~1~^^^^^^^^^^^~08/01/1984~
-~11964~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~
-~11964~^~432~^3.^2^^~1~^^^^^^^^^^^~03/01/2007~
-~11964~^~435~^3.^0^^~4~^~NC~^^^^^^^^^^~03/01/2007~
-~11964~^~601~^0.^0^^~7~^~Z~^^^^^^^^^^~08/01/1984~
-~11965~^~208~^31.^0^^~4~^~NC~^^^^^^^^^^~02/01/2007~
-~11965~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2003~
-~11965~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2003~
-~11965~^~268~^130.^0^^~4~^^^^^^^^^^^~02/01/2007~
-~11965~^~301~^33.^6^1.^~1~^^^^2^28.^37.^5^28.^36.^~4~^~01/01/2003~
-~11965~^~304~^20.^6^0.^~1~^^^^2^18.^22.^5^18.^21.^~4~^~01/01/2003~
-~11965~^~305~^62.^6^1.^~1~^^^^2^54.^66.^5^57.^65.^~4~^~01/01/2003~
-~11965~^~306~^300.^6^14.^~1~^^^^2^244.^335.^5^262.^337.^~4~^~01/01/2003~
-~11965~^~307~^23.^4^3.^~1~^^^^1^13.^27.^3^12.^34.^~4~^~01/01/2003~
-~11965~^~318~^155.^0^^~4~^~NC~^^^^^^^^^^~02/01/2007~
-~11965~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2002~
-~11965~^~320~^8.^0^^~4~^~NC~^^^^^^^^^^~02/01/2007~
-~11965~^~321~^93.^7^25.^~1~^^^^2^20.^166.^4^22.^164.^~4~^~01/01/2003~
-~11965~^~322~^0.^0^^~4~^~BFSN~^~11135~^^^^^^^^^~01/01/2003~
-~11965~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~
-~11965~^~334~^0.^0^^~4~^~BFSN~^~11135~^^^^^^^^^~01/01/2003~
-~11965~^~337~^0.^0^^~4~^~BFSN~^~11135~^^^^^^^^^~01/01/2003~
-~11965~^~338~^42.^0^^~4~^~BFSN~^~11135~^^^^^^^^^~01/01/2003~
-~11965~^~417~^57.^4^4.^~1~^^^^1^51.^69.^3^44.^70.^~4~^~01/01/2003~
-~11965~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~
-~11965~^~432~^57.^4^4.^~1~^^^^1^51.^69.^3^44.^70.^^~02/01/2007~
-~11965~^~435~^57.^0^^~4~^~NC~^^^^^^^^^^~02/01/2007~
-~11965~^~601~^0.^0^^~7~^~Z~^^^^^^^^^^~08/01/1984~
-~11967~^~208~^32.^0^^~4~^~NC~^^^^^^^^^^~05/01/2005~
-~11967~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~11/01/2014~
-~11967~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~11/01/2014~
-~11967~^~268~^134.^0^^~4~^^^^^^^^^^^~11/01/2014~
-~11967~^~301~^32.^0^^~1~^^^^^^^^^^^~08/01/1984~
-~11967~^~304~^19.^0^^~1~^^^^^^^^^^^~08/01/1984~
-~11967~^~305~^57.^0^^~1~^^^^^^^^^^^~08/01/1984~
-~11967~^~306~^278.^0^^~1~^^^^^^^^^^^~08/01/1984~
-~11967~^~307~^23.^0^^~1~^^^^^^^^^^^~08/01/1984~
-~11967~^~318~^144.^0^^~4~^~NC~^^^^^^^^^^~11/01/2014~
-~11967~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2002~
-~11967~^~320~^7.^0^^~4~^~NC~^^^^^^^^^^~11/01/2014~
-~11967~^~321~^86.^0^^~4~^~BFSY~^~11965~^^^^^^^^^~11/01/2014~
-~11967~^~322~^0.^0^^~4~^~BFSY~^~11965~^^^^^^^^^~11/01/2014~
-~11967~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~
-~11967~^~334~^0.^0^^~4~^~BFSY~^~11965~^^^^^^^^^~11/01/2014~
-~11967~^~337~^0.^0^^~4~^~BFSY~^~11965~^^^^^^^^^~11/01/2014~
-~11967~^~338~^39.^0^^~4~^~BFSY~^~11965~^^^^^^^^^~11/01/2014~
-~11967~^~417~^41.^0^^~1~^^^^^^^^^^^~08/01/1984~
-~11967~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~
-~11967~^~432~^41.^0^^~1~^^^^^^^^^^^~12/01/1984~
-~11967~^~435~^41.^0^^~4~^~NC~^^^^^^^^^^~06/01/2005~
-~11967~^~601~^0.^0^^~7~^~Z~^^^^^^^^^^~08/01/1984~
-~11968~^~208~^32.^0^^~4~^~NC~^^^^^^^^^^~05/01/2005~
-~11968~^~268~^136.^0^^~4~^~NC~^^^^^^^^^^~05/01/2005~
-~11968~^~301~^32.^0^^~1~^^^^^^^^^^^~08/01/1984~
-~11968~^~304~^19.^0^^~1~^^^^^^^^^^^~08/01/1984~
-~11968~^~305~^57.^0^^~1~^^^^^^^^^^^~08/01/1984~
-~11968~^~306~^278.^0^^~1~^^^^^^^^^^^~08/01/1984~
-~11968~^~307~^259.^0^^~4~^^^^^^^^^^^~08/01/1984~
-~11968~^~318~^141.^0^^~1~^^^^^^^^^^^~06/01/2005~
-~11968~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2002~
-~11968~^~320~^7.^0^^~1~^^^^^^^^^^^~06/01/2005~
-~11968~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~
-~11968~^~417~^41.^0^^~1~^^^^^^^^^^^~08/01/1984~
-~11968~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~
-~11968~^~432~^41.^0^^~1~^^^^^^^^^^^~12/01/1984~
-~11968~^~435~^41.^0^^~4~^~NC~^^^^^^^^^^~06/01/2005~
-~11968~^~601~^0.^0^^~7~^~Z~^^^^^^^^^^~08/01/1984~
-~11969~^~208~^22.^0^^~4~^~NC~^^^^^^^^^^~01/01/2007~
-~11969~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~
-~11969~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~
-~11969~^~268~^94.^0^^~4~^~NC~^^^^^^^^^^~01/01/2007~
-~11969~^~301~^100.^2^^~1~^~A~^^^^^^^^^^~01/01/1994~
-~11969~^~304~^18.^2^^~1~^~A~^^^^^^^^^^~01/01/1994~
-~11969~^~305~^41.^2^^~1~^~A~^^^^^^^^^^~01/01/1994~
-~11969~^~306~^261.^2^^~1~^~A~^^^^^^^^^^~01/01/1994~
-~11969~^~307~^7.^2^^~1~^~A~^^^^^^^^^^~01/01/1994~
-~11969~^~318~^1638.^0^^~4~^~NC~^^^^^^^^^^~01/01/2007~
-~11969~^~319~^0.^0^^~4~^~BNA~^~11091~^^^^^^^^^~02/01/2003~
-~11969~^~320~^82.^0^^~4~^~NC~^^^^^^^^^^~01/01/2007~
-~11969~^~321~^983.^0^^~4~^~BNA~^~11091~^^^^^^^^^~02/01/2003~
-~11969~^~322~^0.^0^^~4~^~BNA~^~11091~^^^^^^^^^~02/01/2003~
-~11969~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~
-~11969~^~334~^0.^0^^~4~^~BNA~^~11091~^^^^^^^^^~02/01/2003~
-~11969~^~337~^0.^0^^~4~^~BFSN~^~11091~^^^^^^^^^~02/01/2003~
-~11969~^~338~^912.^0^^~4~^~BFSN~^~11091~^^^^^^^^^~02/01/2003~
-~11969~^~417~^99.^2^^~1~^~A~^^^^^^^^^^~10/01/1996~
-~11969~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~
-~11969~^~432~^99.^2^^~1~^~A~^^^^^^^^^^~01/01/2007~
-~11969~^~435~^99.^0^^~4~^~NC~^^^^^^^^^^~01/01/2007~
-~11969~^~601~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/1994~
-~11970~^~208~^12.^0^^~4~^~NC~^^^^^^^^^^~12/01/2007~
-~11970~^~268~^50.^0^^~4~^^^^^^^^^^^~12/01/2007~
-~11970~^~301~^29.^2^^~1~^~A~^^^^^^^^^^~10/01/1996~
-~11970~^~304~^8.^2^^~1~^~A~^^^^^^^^^^~10/01/1996~
-~11970~^~305~^19.^2^^~1~^~A~^^^^^^^^^^~10/01/1996~
-~11970~^~306~^87.^2^^~1~^~A~^^^^^^^^^^~10/01/1996~
-~11970~^~307~^11.^2^^~1~^~A~^^^^^^^^^^~10/01/1996~
-~11970~^~318~^263.^0^^~1~^~AS~^^^^^^^^^^~12/01/2007~
-~11970~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2002~
-~11970~^~320~^13.^0^^~1~^~AS~^^^^^^^^^^~12/01/2007~
-~11970~^~321~^133.^2^^~1~^~A~^^^^^^^^^^~06/01/2003~
-~11970~^~322~^49.^2^^~1~^~A~^^^^^^^^^^~06/01/2003~
-~11970~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~
-~11970~^~334~^0.^2^^~1~^~A~^^^^^^^^^^~06/01/2003~
-~11970~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2003~
-~11970~^~417~^43.^2^^~1~^~A~^^^^^^^^^^~10/01/1996~
-~11970~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~
-~11970~^~432~^43.^2^^~1~^~A~^^^^^^^^^^~12/01/2007~
-~11970~^~435~^43.^0^^~4~^~NC~^^^^^^^^^^~12/01/2007~
-~11970~^~601~^0.^0^^~7~^~Z~^^^^^^^^^^~10/01/1996~
-~11972~^~208~^99.^0^^~4~^~NC~^^^^^^^^^^~02/01/2004~
-~11972~^~268~^414.^0^^~4~^~NC~^^^^^^^^^^~02/01/2004~
-~11972~^~301~^65.^2^^~1~^~A~^^^^^^^^^^~10/01/1996~
-~11972~^~304~^60.^2^^~1~^~A~^^^^^^^^^^~10/01/1996~
-~11972~^~305~^101.^2^^~1~^~A~^^^^^^^^^^~10/01/1996~
-~11972~^~306~^723.^2^^~1~^~A~^^^^^^^^^^~10/01/1996~
-~11972~^~307~^6.^2^^~1~^~A~^^^^^^^^^^~10/01/1996~
-~11972~^~318~^6.^0^^~1~^~AS~^^^^^^^^^^~02/01/2004~
-~11972~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2002~
-~11972~^~320~^0.^0^^~1~^~AS~^^^^^^^^^^~02/01/2004~
-~11972~^~321~^3.^2^^~1~^~A~^^^^^^^^^^~02/01/2004~
-~11972~^~322~^0.^2^^~1~^~A~^^^^^^^^^^~02/01/2004~
-~11972~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~
-~11972~^~334~^0.^2^^~1~^~A~^^^^^^^^^^~02/01/2004~
-~11972~^~417~^75.^2^^~1~^~A~^^^^^^^^^^~10/01/1996~
-~11972~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~
-~11972~^~432~^75.^2^^~1~^~A~^^^^^^^^^^~02/01/2004~
-~11972~^~435~^75.^0^^~4~^~NC~^^^^^^^^^^~02/01/2004~
-~11972~^~601~^0.^1^^~7~^~Z~^^^^^^^^^^~02/01/2004~
-~11972~^~636~^6.^1^^~1~^~A~^^^^^^^^^^~10/01/1996~
-~11972~^~638~^1.^1^^~1~^~A~^^^^^^^^^^~10/01/1996~
-~11972~^~639~^1.^1^^~1~^~A~^^^^^^^^^^~10/01/1996~
-~11972~^~641~^4.^1^^~1~^~A~^^^^^^^^^^~10/01/1996~
-~11973~^~208~^88.^0^^~4~^~NC~^^^^^^^^^^~06/01/2003~
-~11973~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~10/01/2011~
-~11973~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~10/01/2011~
-~11973~^~268~^368.^0^^~4~^^^^^^^^^^^~10/01/2011~
-~11973~^~301~^37.^2^^~1~^~A~^^^^^^^^^^~10/01/1996~
-~11973~^~304~^33.^2^^~1~^~A~^^^^^^^^^^~10/01/1996~
-~11973~^~305~^129.^2^^~1~^~A~^^^^^^^^^^~10/01/1996~
-~11973~^~306~^332.^2^^~1~^~A~^^^^^^^^^^~10/01/1996~
-~11973~^~307~^25.^2^^~1~^~A~^^^^^^^^^^~10/01/1996~
-~11973~^~318~^333.^0^^~1~^~AS~^^^^^^^^^^~06/01/2003~
-~11973~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2002~
-~11973~^~320~^17.^0^^~1~^~AS~^^^^^^^^^^~06/01/2003~
-~11973~^~321~^196.^2^^~1~^~A~^^^^^^^^^^~06/01/2003~
-~11973~^~322~^0.^2^^~1~^~A~^^^^^^^^^^~06/01/2003~
-~11973~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~
-~11973~^~334~^9.^2^^~1~^~A~^^^^^^^^^^~06/01/2003~
-~11973~^~337~^0.^0^^~4~^~BFSN~^~11052~^^^^^^^^^~10/01/2011~
-~11973~^~338~^1811.^0^^~4~^~BFSN~^~11052~^^^^^^^^^~10/01/2011~
-~11973~^~417~^148.^2^^~1~^~A~^^^^^^^^^^~10/01/1996~
-~11973~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~
-~11973~^~432~^148.^2^^~1~^~A~^^^^^^^^^^~06/01/2003~
-~11973~^~435~^148.^0^^~4~^~NC~^^^^^^^^^^~06/01/2003~
-~11973~^~601~^0.^0^^~7~^~Z~^^^^^^^^^^~10/01/1996~
-~11973~^~636~^22.^1^^~1~^~A~^^^^^^^^^^~10/01/1996~
-~11973~^~638~^1.^1^^~1~^~A~^^^^^^^^^^~10/01/1996~
-~11973~^~639~^3.^1^^~1~^~A~^^^^^^^^^^~10/01/1996~
-~11973~^~641~^18.^1^^~1~^~A~^^^^^^^^^^~10/01/1996~
-~11974~^~208~^93.^0^^~4~^~NC~^^^^^^^^^^~03/01/2007~
-~11974~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~
-~11974~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~
-~11974~^~268~^390.^0^^~4~^~NC~^^^^^^^^^^~03/01/2007~
-~11974~^~301~^363.^2^^~1~^~A~^^^^^^^^^^~01/01/1994~
-~11974~^~304~^95.^2^^~1~^~A~^^^^^^^^^^~01/01/1994~
-~11974~^~305~^91.^2^^~1~^~A~^^^^^^^^^^~01/01/1994~
-~11974~^~306~^272.^2^^~1~^~A~^^^^^^^^^^~01/01/1994~
-~11974~^~307~^9.^2^^~1~^~A~^^^^^^^^^^~01/01/1994~
-~11974~^~318~^27521.^0^^~4~^~NC~^^^^^^^^^^~03/01/2007~
-~11974~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2002~
-~11974~^~320~^1376.^0^^~4~^~NC~^^^^^^^^^^~03/01/2007~
-~11974~^~321~^16194.^2^^~1~^~A~^^^^^^^^^^~10/01/1996~
-~11974~^~322~^629.^0^^~4~^~T~^^^^^^^^^^~02/01/2003~
-~11974~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~
-~11974~^~334~^9.^2^^~1~^~A~^^^^^^^^^^~10/01/1996~
-~11974~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~
-~11974~^~338~^1747.^0^^~4~^~O~^^^^^^^^^^~02/01/2003~
-~11974~^~417~^83.^2^^~1~^~A~^^^^^^^^^^~01/01/1994~
-~11974~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~
-~11974~^~432~^83.^2^^~1~^~A~^^^^^^^^^^~03/01/2007~
-~11974~^~435~^83.^0^^~4~^~NC~^^^^^^^^^^~03/01/2007~
-~11974~^~601~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/1994~
-~11974~^~636~^21.^1^^~1~^~A~^^^^^^^^^^~10/01/1996~
-~11974~^~638~^2.^1^^~1~^~A~^^^^^^^^^^~10/01/1996~
-~11974~^~641~^20.^1^^~1~^~A~^^^^^^^^^^~10/01/1996~
-~11975~^~208~^69.^0^^~4~^~NC~^^^^^^^^^^~07/01/2003~
-~11975~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~10/01/1996~
-~11975~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~11/01/2011~
-~11975~^~268~^287.^0^^~4~^~NC~^^^^^^^^^^~07/01/2003~
-~11975~^~301~^289.^2^^~1~^~A~^^^^^^^^^^~10/01/1996~
-~11975~^~304~^14.^2^^~1~^~A~^^^^^^^^^^~10/01/1996~
-~11975~^~305~^34.^2^^~1~^~A~^^^^^^^^^^~10/01/1996~
-~11975~^~306~^29.^2^^~1~^~A~^^^^^^^^^^~10/01/1996~
-~11975~^~307~^2853.^2^^~1~^~A~^^^^^^^^^^~10/01/1996~
-~11975~^~318~^5253.^0^^~1~^~AS~^^^^^^^^^^~07/01/2003~
-~11975~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2002~
-~11975~^~320~^263.^0^^~1~^~AS~^^^^^^^^^^~07/01/2003~
-~11975~^~321~^2838.^2^^~1~^~A~^^^^^^^^^^~07/01/2003~
-~11975~^~322~^629.^2^^~1~^~A~^^^^^^^^^^~07/01/2003~
-~11975~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~
-~11975~^~334~^0.^2^^~1~^~A~^^^^^^^^^^~07/01/2003~
-~11975~^~337~^0.^0^^~4~^~BFSY~^~11974~^^^^^^^^^~11/01/2011~
-~11975~^~338~^1487.^0^^~4~^~BFSY~^~11974~^^^^^^^^^~11/01/2011~
-~11975~^~417~^78.^2^^~1~^~A~^^^^^^^^^^~10/01/1996~
-~11975~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~
-~11975~^~432~^78.^2^^~1~^~A~^^^^^^^^^^~07/01/2003~
-~11975~^~435~^78.^0^^~4~^~NC~^^^^^^^^^^~07/01/2003~
-~11975~^~601~^0.^0^^~7~^~Z~^^^^^^^^^^~10/01/1996~
-~11976~^~208~^27.^0^^~4~^~NC~^^^^^^^^^^~03/01/2007~
-~11976~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~
-~11976~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~
-~11976~^~268~^113.^0^^~4~^^^^^^^^^^^~03/01/2007~
-~11976~^~301~^14.^2^^~1~^~A~^^^^^^^^^^~01/01/1995~
-~11976~^~304~^17.^2^^~1~^~A~^^^^^^^^^^~01/01/1995~
-~11976~^~305~^32.^2^^~1~^~A~^^^^^^^^^^~01/01/1995~
-~11976~^~306~^256.^2^^~1~^~A~^^^^^^^^^^~01/01/1995~
-~11976~^~307~^13.^1^^~1~^~A~^^^^^^^^^^~01/01/1995~
-~11976~^~318~^340.^0^^~1~^~AS~^^^^^^^^^^~03/01/2007~
-~11976~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2002~
-~11976~^~320~^17.^0^^~1~^~AS~^^^^^^^^^^~03/01/2007~
-~11976~^~321~^184.^2^^~1~^~A~^^^^^^^^^^~11/01/1996~
-~11976~^~322~^39.^2^^~1~^~A~^^^^^^^^^^~02/01/2003~
-~11976~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~
-~11976~^~334~^0.^2^^~1~^~A~^^^^^^^^^^~02/01/2003~
-~11976~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~
-~11976~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~
-~11976~^~417~^29.^2^^~1~^~A~^^^^^^^^^^~01/01/1995~
-~11976~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~
-~11976~^~432~^29.^2^^~1~^~A~^^^^^^^^^^~03/01/2007~
-~11976~^~435~^29.^0^^~4~^~NC~^^^^^^^^^^~03/01/2007~
-~11976~^~601~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/1995~
-~11976~^~636~^3.^1^^~1~^~A~^^^^^^^^^^~11/01/1996~
-~11976~^~638~^0.^1^^~1~^~A~^^^^^^^^^^~11/01/1996~
-~11976~^~639~^1.^1^^~1~^~A~^^^^^^^^^^~11/01/1996~
-~11976~^~641~^2.^1^^~1~^~A~^^^^^^^^^^~11/01/1996~
-~11977~^~208~^32.^0^^~4~^~NC~^^^^^^^^^^~01/01/1995~
-~11977~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~11/01/2002~
-~11977~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~11/01/2002~
-~11977~^~268~^134.^0^^~4~^^^^^^^^^^^~03/01/2007~
-~11977~^~301~^11.^2^^~1~^~A~^^^^^^^^^^~01/01/1995~
-~11977~^~304~^22.^2^^~1~^~A~^^^^^^^^^^~01/01/1995~
-~11977~^~305~^40.^2^^~1~^~A~^^^^^^^^^^~01/01/1995~
-~11977~^~306~^305.^2^^~1~^~A~^^^^^^^^^^~01/01/1995~
-~11977~^~307~^10.^2^^~1~^~A~^^^^^^^^^^~01/01/1995~
-~11977~^~318~^937.^0^^~1~^~AS~^^^^^^^^^^~03/01/2007~
-~11977~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2002~
-~11977~^~320~^47.^0^^~1~^~AS~^^^^^^^^^^~03/01/2007~
-~11977~^~321~^534.^2^^~1~^~A~^^^^^^^^^^~10/01/2002~
-~11977~^~322~^18.^2^^~1~^~A~^^^^^^^^^^~10/01/2002~
-~11977~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~
-~11977~^~334~^40.^2^^~1~^~A~^^^^^^^^^^~10/01/2002~
-~11977~^~337~^0.^0^^~4~^~BFSN~^~11333~^^^^^^^^^~11/01/2002~
-~11977~^~338~^544.^0^^~4~^~BFSN~^~11333~^^^^^^^^^~03/01/2007~
-~11977~^~417~^23.^2^^~1~^~A~^^^^^^^^^^~01/01/1995~
-~11977~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~
-~11977~^~432~^23.^2^^~1~^~A~^^^^^^^^^^~03/01/2007~
-~11977~^~435~^23.^0^^~4~^~NC~^^^^^^^^^^~03/01/2007~
-~11977~^~601~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/1995~
-~11977~^~636~^6.^1^^~1~^~A~^^^^^^^^^^~11/01/1996~
-~11977~^~638~^0.^1^^~1~^~A~^^^^^^^^^^~11/01/1996~
-~11977~^~639~^2.^1^^~1~^~A~^^^^^^^^^^~11/01/1996~
-~11977~^~641~^3.^1^^~1~^~A~^^^^^^^^^^~11/01/1996~
-~11978~^~208~^281.^0^^~4~^~NC~^^^^^^^^^^~01/01/1995~
-~11978~^~268~^1176.^0^^~4~^~NC~^^^^^^^^^^~05/01/2011~
-~11978~^~301~^61.^2^^~1~^~A~^^^^^^^^^^~11/01/1996~
-~11978~^~304~^113.^2^^~1~^~A~^^^^^^^^^^~11/01/1996~
-~11978~^~305~^201.^2^^~1~^~A~^^^^^^^^^^~11/01/1996~
-~11978~^~306~^2411.^2^^~1~^~A~^^^^^^^^^^~11/01/1996~
-~11978~^~307~^43.^2^^~1~^~A~^^^^^^^^^^~01/01/1995~
-~11978~^~318~^20438.^2^^~1~^~A~^^^^^^^^^^~11/01/1996~
-~11978~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2002~
-~11978~^~320~^1022.^2^^~1~^~A~^^^^^^^^^^~06/01/2002~
-~11978~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~
-~11978~^~417~^69.^2^^~1~^~A~^^^^^^^^^^~11/01/1996~
-~11978~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~
-~11978~^~432~^69.^2^^~1~^~A~^^^^^^^^^^~11/01/1996~
-~11978~^~435~^69.^0^^~4~^~NC~^^^^^^^^^^~01/01/2001~
-~11978~^~601~^0.^0^^~7~^~Z~^^^^^^^^^^~11/01/1996~
-~11979~^~208~^29.^0^^~4~^~NC~^^^^^^^^^^~05/01/2010~
-~11979~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~11/01/2002~
-~11979~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~11/01/2002~
-~11979~^~268~^119.^0^^~4~^~NC~^^^^^^^^^^~05/01/2010~
-~11979~^~301~^12.^2^^~1~^~A~^^^1^11.^13.^1^^^^~05/01/2010~
-~11979~^~304~^15.^2^^~1~^~A~^^^1^14.^16.^1^^^^~05/01/2010~
-~11979~^~305~^26.^2^^~1~^~A~^^^1^24.^29.^1^^^^~05/01/2010~
-~11979~^~306~^248.^2^^~1~^~A~^^^1^228.^268.^1^^^^~05/01/2010~
-~11979~^~307~^3.^2^^~1~^~A~^^^1^2.^4.^1^^^~1~^~05/01/2010~
-~11979~^~318~^1078.^0^^~1~^~AS~^^^^^^^^^^~05/01/2010~
-~11979~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2002~
-~11979~^~320~^54.^0^^~1~^~AS~^^^^^^^^^^~05/01/2010~
-~11979~^~321~^561.^2^^~1~^~A~^^^1^266.^855.^1^^^^~05/01/2010~
-~11979~^~322~^67.^2^^~1~^~A~^^^1^15.^119.^1^^^^~05/01/2010~
-~11979~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~
-~11979~^~334~^105.^2^^~1~^~A~^^^1^0.^210.^1^^^~1~^~05/01/2010~
-~11979~^~337~^0.^2^^~1~^~A~^^^1^0.^0.^^^^~1~^~05/01/2010~
-~11979~^~338~^861.^2^^~1~^~A~^^^1^788.^934.^1^^^^~05/01/2010~
-~11979~^~417~^27.^0^^~1~^~AS~^^^^^^^^^^~05/01/2010~
-~11979~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~
-~11979~^~432~^27.^0^^~1~^~AS~^^^^^^^^^^~05/01/2010~
-~11979~^~435~^27.^0^^~4~^~NC~^^^^^^^^^^~05/01/2010~
-~11979~^~601~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/1995~
-~11980~^~208~^21.^0^^~4~^~NC~^^^^^^^^^^~11/01/1996~
-~11980~^~268~^88.^0^^~4~^^^^^^^^^^^
-~11980~^~301~^36.^2^^~1~^~A~^^^^^^^^^^~11/01/1996~
-~11980~^~304~^4.^2^^~1~^~A~^^^^^^^^^^~11/01/1996~
-~11980~^~305~^11.^2^^~1~^~A~^^^^^^^^^^~11/01/1996~
-~11980~^~306~^113.^2^^~1~^~A~^^^^^^^^^^~11/01/1996~
-~11980~^~307~^397.^2^^~1~^~A~^^^^^^^^^^~11/01/1996~
-~11980~^~318~^126.^2^^~1~^~A~^^^^^^^^^^~11/01/1996~
-~11980~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2002~
-~11980~^~320~^6.^2^^~1~^~A~^^^^^^^^^^~06/01/2002~
-~11980~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~
-~11980~^~417~^54.^2^^~1~^~A~^^^^^^^^^^~11/01/1996~
-~11980~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~
-~11980~^~432~^54.^2^^~1~^~A~^^^^^^^^^^~11/01/1996~
-~11980~^~435~^54.^0^^~4~^~NC~^^^^^^^^^^~01/01/2001~
-~11980~^~601~^0.^0^^~7~^~Z~^^^^^^^^^^~11/01/1996~
-~11981~^~208~^29.^0^^~4~^~NC~^^^^^^^^^^~11/01/1996~
-~11981~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~08/01/2011~
-~11981~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~08/01/2011~
-~11981~^~268~^123.^0^^~4~^~NC~^^^^^^^^^^~08/01/2011~
-~11981~^~301~^12.^2^^~1~^~A~^^^^^^^^^^~11/01/1996~
-~11981~^~304~^16.^2^^~1~^~A~^^^^^^^^^^~11/01/1996~
-~11981~^~305~^29.^2^^~1~^~A~^^^^^^^^^^~11/01/1996~
-~11981~^~306~^202.^2^^~1~^~A~^^^^^^^^^^~11/01/1996~
-~11981~^~307~^1.^2^^~1~^~A~^^^^^^^^^^~11/01/1996~
-~11981~^~318~^816.^0^^~4~^~NC~^^^^^^^^^^~08/01/2011~
-~11981~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2002~
-~11981~^~320~^41.^0^^~4~^~NC~^^^^^^^^^^~08/01/2011~
-~11981~^~321~^465.^0^^~4~^~BFSN~^~11670~^^^^^^^^^~08/01/2011~
-~11981~^~322~^16.^0^^~4~^~BFSN~^~11670~^^^^^^^^^~08/01/2011~
-~11981~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~
-~11981~^~334~^34.^0^^~4~^~BFSN~^~11670~^^^^^^^^^~08/01/2011~
-~11981~^~337~^0.^0^^~4~^~BFSN~^~11670~^^^^^^^^^~08/01/2011~
-~11981~^~338~^502.^0^^~4~^~BFSN~^~11670~^^^^^^^^^~08/01/2011~
-~11981~^~417~^53.^2^^~1~^~A~^^^^^^^^^^~11/01/1996~
-~11981~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~
-~11981~^~432~^53.^2^^~1~^~A~^^^^^^^^^^~11/01/1996~
-~11981~^~435~^53.^0^^~4~^~NC~^^^^^^^^^^~01/01/2001~
-~11981~^~601~^0.^0^^~7~^~Z~^^^^^^^^^^~11/01/1996~
-~11982~^~208~^345.^0^^~4~^~NC~^^^^^^^^^^~11/01/1996~
-~11982~^~268~^1443.^0^^~4~^^^^^^^^^^^
-~11982~^~301~^97.^2^^~1~^~A~^^^^^^^^^^~11/01/1996~
-~11982~^~304~^130.^2^^~1~^~A~^^^^^^^^^^~11/01/1996~
-~11982~^~305~^267.^2^^~1~^~A~^^^^^^^^^^~11/01/1996~
-~11982~^~306~^2222.^2^^~1~^~A~^^^^^^^^^^~11/01/1996~
-~11982~^~307~^89.^2^^~1~^~A~^^^^^^^^^^~11/01/1996~
-~11982~^~318~^35760.^2^^~1~^~A~^^^^^^^^^^~11/01/1996~
-~11982~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2002~
-~11982~^~320~^1788.^2^^~1~^~A~^^^^^^^^^^~06/01/2002~
-~11982~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~
-~11982~^~417~^170.^2^^~1~^~A~^^^^^^^^^^~11/01/1996~
-~11982~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~
-~11982~^~432~^170.^2^^~1~^~A~^^^^^^^^^^~11/01/1996~
-~11982~^~435~^170.^0^^~4~^~NC~^^^^^^^^^^~01/01/2001~
-~11982~^~601~^0.^0^^~7~^~Z~^^^^^^^^^^~11/01/1996~
-~11983~^~208~^121.^0^^~4~^~NC~^^^^^^^^^^~03/01/2007~
-~11983~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~
-~11983~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~
-~11983~^~268~^505.^0^^~4~^~NC~^^^^^^^^^^~03/01/2007~
-~11983~^~301~^23.^1^^~1~^^^^^^^^^^^~03/01/2007~
-~11983~^~304~^21.^0^^~4~^^^^^^^^^^^~03/01/2007~
-~11983~^~305~^22.^1^^~1~^^^^^^^^^^^~03/01/2007~
-~11983~^~306~^200.^1^^~1~^^^^^^^^^^^~03/01/2007~
-~11983~^~307~^527.^1^^~1~^^^^^^^^^^^~03/01/2007~
-~11983~^~318~^90.^0^^~4~^~NC~^^^^^^^^^^~03/01/2007~
-~11983~^~319~^0.^0^^~4~^~BNA~^~11940~^^^^^^^^^~02/01/2003~
-~11983~^~320~^5.^0^^~4~^~NC~^^^^^^^^^^~03/01/2007~
-~11983~^~321~^38.^0^^~4~^~BNA~^~11940~^^^^^^^^^~02/01/2003~
-~11983~^~322~^10.^0^^~4~^~BNA~^~11940~^^^^^^^^^~02/01/2003~
-~11983~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~
-~11983~^~334~^22.^0^^~4~^~BNA~^~11940~^^^^^^^^^~02/01/2003~
-~11983~^~337~^0.^0^^~4~^~BFSN~^~11940~^^^^^^^^^~04/01/2003~
-~11983~^~338~^222.^0^^~4~^~BFSN~^~11940~^^^^^^^^^~03/01/2007~
-~11983~^~417~^5.^0^^~4~^^^^^^^^^^^~03/01/2007~
-~11983~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~
-~11983~^~432~^5.^0^^~4~^^^^^^^^^^^~03/01/2007~
-~11983~^~435~^5.^0^^~4~^~NC~^^^^^^^^^^~03/01/2007~
-~11983~^~601~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2007~
-~11984~^~208~^32.^0^^~4~^~NC~^^^^^^^^^^~11/01/1996~
-~11984~^~268~^134.^0^^~4~^^^^^^^^^^^
-~11984~^~301~^275.^2^^~1~^~A~^^^^^^^^^^~11/01/1996~
-~11984~^~304~^121.^2^^~1~^~A~^^^^^^^^^^~11/01/1996~
-~11984~^~305~^86.^2^^~1~^~A~^^^^^^^^^^~11/01/1996~
-~11984~^~306~^633.^2^^~1~^~A~^^^^^^^^^^~11/01/1996~
-~11984~^~307~^43.^2^^~1~^~A~^^^^^^^^^^~03/01/1997~
-~11984~^~318~^57.^1^^~1~^~A~^^^^^^^^^^~11/01/1996~
-~11984~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2002~
-~11984~^~320~^3.^1^^~1~^~A~^^^^^^^^^^~06/01/2002~
-~11984~^~321~^38.^2^^~1~^~A~^^^^^^^^^^~11/01/1996~
-~11984~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~
-~11984~^~417~^215.^2^^~1~^~A~^^^^^^^^^^~07/01/1997~
-~11984~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~
-~11984~^~432~^215.^2^^~1~^~A~^^^^^^^^^^~07/01/1997~
-~11984~^~435~^215.^0^^~4~^~NC~^^^^^^^^^^~01/01/2001~
-~11984~^~601~^0.^0^^~7~^~Z~^^^^^^^^^^~11/01/1996~
-~11985~^~208~^103.^0^^~4~^~NC~^^^^^^^^^^~11/01/1996~
-~11985~^~268~^431.^0^^~4~^^^^^^^^^^^
-~11985~^~301~^429.^2^^~1~^~A~^^^^^^^^^^~11/01/1996~
-~11985~^~304~^156.^2^^~1~^~A~^^^^^^^^^^~11/01/1996~
-~11985~^~305~^108.^2^^~1~^~A~^^^^^^^^^^~11/01/1996~
-~11985~^~306~^494.^2^^~1~^~A~^^^^^^^^^^~11/01/1996~
-~11985~^~307~^34.^2^^~1~^~A~^^^^^^^^^^~11/01/1996~
-~11985~^~318~^3598.^1^^~1~^~A~^^^^^^^^^^~11/01/1996~
-~11985~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2002~
-~11985~^~320~^180.^1^^~1~^~A~^^^^^^^^^^~06/01/2002~
-~11985~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~
-~11985~^~417~^112.^2^^~1~^~A~^^^^^^^^^^~11/01/1996~
-~11985~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~
-~11985~^~432~^112.^2^^~1~^~A~^^^^^^^^^^~11/01/1996~
-~11985~^~435~^112.^0^^~4~^~NC~^^^^^^^^^^~01/01/2001~
-~11985~^~601~^0.^0^^~7~^~Z~^^^^^^^^^^~11/01/1996~
-~11986~^~208~^23.^0^^~4~^~NC~^^^^^^^^^^~11/01/1996~
-~11986~^~268~^96.^0^^~4~^^^^^^^^^^^
-~11986~^~301~^124.^2^^~1~^~A~^^^^^^^^^^~11/01/1996~
-~11986~^~304~^48.^2^^~1~^~A~^^^^^^^^^^~11/01/1996~
-~11986~^~305~^36.^2^^~1~^~A~^^^^^^^^^^~11/01/1996~
-~11986~^~306~^256.^2^^~1~^~A~^^^^^^^^^^~11/01/1996~
-~11986~^~307~^55.^2^^~1~^~A~^^^^^^^^^^~11/01/1996~
-~11986~^~318~^1158.^1^^~1~^~A~^^^^^^^^^^~11/01/1996~
-~11986~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2002~
-~11986~^~320~^58.^1^^~1~^~A~^^^^^^^^^^~06/01/2002~
-~11986~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~
-~11986~^~417~^114.^2^^~1~^~A~^^^^^^^^^^~11/01/1996~
-~11986~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~
-~11986~^~432~^114.^2^^~1~^~A~^^^^^^^^^^~11/01/1996~
-~11986~^~435~^114.^0^^~4~^~NC~^^^^^^^^^^~01/01/2001~
-~11986~^~601~^0.^0^^~7~^~Z~^^^^^^^^^^~11/01/1996~
-~11987~^~208~^33.^0^^~4~^~NC~^^^^^^^^^^~08/01/2010~
-~11987~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2005~
-~11987~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2005~
-~11987~^~268~^139.^0^^~4~^~NC~^^^^^^^^^^~08/01/2010~
-~11987~^~301~^3.^4^1.^~1~^~A~^^^2^1.^8.^1^-10.^17.^~2, 3~^~04/01/2005~
-~11987~^~304~^18.^4^4.^~1~^~A~^^^2^12.^29.^1^-30.^66.^~2, 3~^~04/01/2005~
-~11987~^~305~^120.^4^10.^~1~^~A~^^^2^97.^162.^1^-15.^254.^~2, 3~^~04/01/2005~
-~11987~^~306~^420.^4^63.^~1~^~A~^^^2^310.^642.^1^-350.^1190.^~2, 3~^~04/01/2005~
-~11987~^~307~^18.^4^3.^~1~^~A~^^^2^1.^37.^2^1.^34.^~2, 3~^~04/01/2005~
-~11987~^~318~^48.^0^^~1~^~AS~^^^^^^^^^^~02/01/2010~
-~11987~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2002~
-~11987~^~320~^2.^0^^~1~^~AS~^^^^^^^^^^~02/01/2010~
-~11987~^~321~^29.^1^^~1~^~A~^^^^^^^^^^~03/01/2006~
-~11987~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2005~
-~11987~^~324~^29.^4^24.^~1~^~A~^^^1^3.^103.^3^-50.^107.^~2, 3~^~08/01/2010~
-~11987~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2005~
-~11987~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2005~
-~11987~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2005~
-~11987~^~417~^38.^7^6.^~6~^~JA~^^^3^4.^71.^2^12.^63.^~2, 3~^~05/01/2010~
-~11987~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~
-~11987~^~432~^38.^7^6.^~6~^~JA~^^^3^4.^71.^2^12.^63.^^~08/01/2010~
-~11987~^~435~^38.^0^^~4~^~NC~^^^^^^^^^^~08/01/2010~
-~11987~^~601~^0.^0^^~7~^~Z~^^^^^^^^^^~11/01/1996~
-~11987~^~638~^0.^7^0.^~1~^~A~^^^2^0.^0.^^^^~1, 2, 3~^~02/01/2010~
-~11987~^~639~^1.^7^0.^~1~^~A~^^^2^1.^2.^2^1.^1.^~1, 2, 3~^~02/01/2010~
-~11987~^~641~^0.^7^0.^~1~^~A~^^^2^0.^1.^2^0.^0.^~1, 2, 3~^~02/01/2010~
-~11988~^~208~^284.^0^^~4~^~NC~^^^^^^^^^^~07/01/2006~
-~11988~^~268~^1190.^0^^~4~^~NC~^^^^^^^^^^~07/01/2006~
-~11988~^~301~^159.^2^^~1~^~A~^^^^^^^^^^~12/01/1996~
-~11988~^~304~^83.^2^^~1~^~A~^^^^^^^^^^~12/01/1996~
-~11988~^~305~^184.^2^^~1~^~A~^^^^^^^^^^~12/01/1996~
-~11988~^~306~^754.^2^^~1~^~A~^^^^^^^^^^~12/01/1996~
-~11988~^~307~^35.^2^^~1~^~A~^^^^^^^^^^~12/01/1996~
-~11988~^~318~^0.^0^^~1~^~AS~^^^^^^^^^^~07/01/2006~
-~11988~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2002~
-~11988~^~320~^0.^0^^~1~^~AS~^^^^^^^^^^~07/01/2006~
-~11988~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~
-~11988~^~417~^38.^2^^~1~^~A~^^^^^^^^^^~12/01/1996~
-~11988~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~
-~11988~^~432~^38.^2^^~1~^~A~^^^^^^^^^^~07/01/2006~
-~11988~^~435~^38.^0^^~4~^~NC~^^^^^^^^^^~07/01/2006~
-~11988~^~601~^0.^0^^~7~^~Z~^^^^^^^^^^~12/01/1996~
-~11989~^~208~^32.^0^^~4~^~NC~^^^^^^^^^^~07/01/2003~
-~11989~^~268~^133.^0^^~4~^~NC~^^^^^^^^^^~07/01/2003~
-~11989~^~301~^10.^2^^~1~^~A~^^^^^^^^^^~12/01/1996~
-~11989~^~304~^7.^2^^~1~^~A~^^^^^^^^^^~12/01/1996~
-~11989~^~305~^61.^2^^~1~^~A~^^^^^^^^^^~12/01/1996~
-~11989~^~306~^78.^2^^~1~^~A~^^^^^^^^^^~12/01/1996~
-~11989~^~307~^384.^2^^~1~^~A~^^^^^^^^^^~12/01/1996~
-~11989~^~318~^0.^0^^~1~^~AS~^^^^^^^^^^~07/01/2003~
-~11989~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2002~
-~11989~^~320~^0.^0^^~1~^~AS~^^^^^^^^^^~07/01/2003~
-~11989~^~321~^0.^2^^~1~^~A~^^^^^^^^^^~07/01/2003~
-~11989~^~322~^0.^2^^~1~^~A~^^^^^^^^^^~07/01/2003~
-~11989~^~334~^0.^2^^~1~^~A~^^^^^^^^^^~07/01/2003~
-~11989~^~417~^38.^2^^~1~^~A~^^^^^^^^^^~12/01/1996~
-~11989~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~
-~11989~^~432~^38.^2^^~1~^~A~^^^^^^^^^^~07/01/2003~
-~11989~^~435~^38.^0^^~4~^~NC~^^^^^^^^^^~07/01/2003~
-~11989~^~601~^0.^0^^~7~^~Z~^^^^^^^^^^~12/01/1996~
-~11990~^~208~^109.^0^^~4~^~NC~^^^^^^^^^^~07/01/2003~
-~11990~^~268~^456.^0^^~4~^~NC~^^^^^^^^^^~07/01/2003~
-~11990~^~301~^128.^2^^~1~^~A~^^^1^119.^137.^^^^^~07/01/2003~
-~11990~^~304~^69.^2^^~1~^~A~^^^1^50.^88.^^^^^~07/01/2003~
-~11990~^~305~^80.^2^^~1~^~A~^^^1^80.^81.^^^^^~07/01/2003~
-~11990~^~306~^568.^2^^~1~^~A~^^^1^492.^644.^^^^^~07/01/2003~
-~11990~^~307~^17.^2^^~1~^~A~^^^1^9.^25.^^^^^~07/01/2003~
-~11990~^~318~^35.^0^^~1~^~AS~^^^^^^^^^^~07/01/2003~
-~11990~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2002~
-~11990~^~320~^2.^0^^~1~^~AS~^^^^^^^^^^~07/01/2003~
-~11990~^~321~^21.^3^^~1~^~A~^^^1^14.^28.^^^^~2~^~07/01/2003~
-~11990~^~322~^0.^2^^~1~^~A~^^^^^^^^^^~07/01/2003~
-~11990~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~
-~11990~^~334~^0.^2^^~1~^~A~^^^^^^^^^^~07/01/2003~
-~11990~^~417~^18.^2^^~1~^~A~^^^1^11.^26.^^^^^~07/01/2003~
-~11990~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~
-~11990~^~432~^18.^2^^~1~^~A~^^^^^^^^^^~07/01/2003~
-~11990~^~435~^18.^0^^~4~^~NC~^^^^^^^^^^~07/01/2003~
-~11990~^~601~^0.^0^^~7~^~Z~^^^^^^^^^^~12/01/1996~
-~11991~^~208~^98.^0^^~4~^~NC~^^^^^^^^^^~07/01/2003~
-~11991~^~268~^411.^0^^~4~^~NC~^^^^^^^^^^~07/01/2003~
-~11991~^~301~^9.^2^^~1~^~A~^^^2^9.^10.^1^^^^~07/01/2003~
-~11991~^~304~^24.^2^^~1~^~A~^^^2^21.^26.^1^^^^~07/01/2003~
-~11991~^~305~^51.^2^^~1~^~A~^^^2^50.^52.^1^^^^~07/01/2003~
-~11991~^~306~^598.^2^^~1~^~A~^^^2^596.^600.^1^^^^~07/01/2003~
-~11991~^~307~^21.^2^^~1~^~A~^^^2^17.^25.^1^^^^~07/01/2003~
-~11991~^~318~^8.^0^^~1~^~AS~^^^^^^^^^^~07/01/2003~
-~11991~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2002~
-~11991~^~320~^0.^0^^~1~^~AS~^^^^^^^^^^~07/01/2003~
-~11991~^~321~^5.^3^1.^~1~^~A~^^^2^3.^6.^1^-15.^24.^~4~^~07/01/2003~
-~11991~^~322~^0.^2^^~1~^~A~^^^^^^^^^^~07/01/2003~
-~11991~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~
-~11991~^~334~^0.^2^^~1~^~A~^^^^^^^^^^~07/01/2003~
-~11991~^~417~^17.^2^^~1~^~A~^^^2^9.^25.^1^^^^~07/01/2003~
-~11991~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~
-~11991~^~432~^17.^2^^~1~^~A~^^^^^^^^^^~07/01/2003~
-~11991~^~435~^17.^0^^~4~^~NC~^^^^^^^^^^~07/01/2003~
-~11991~^~601~^0.^0^^~7~^~Z~^^^^^^^^^^~12/01/1996~
-~11992~^~208~^35.^0^^~4~^~NC~^^^^^^^^^^~08/01/2009~
-~11992~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2005~
-~11992~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2005~
-~11992~^~268~^147.^0^^~4~^~NC~^^^^^^^^^^~08/01/2009~
-~11992~^~301~^6.^3^2.^~1~^~A~^^^1^^^^^^^~04/01/2005~
-~11992~^~304~^14.^3^1.^~1~^~A~^^^1^^^^^^^~04/01/2005~
-~11992~^~305~^127.^3^12.^~1~^~A~^^^1^^^^^^^~04/01/2005~
-~11992~^~306~^488.^3^55.^~1~^~A~^^^1^^^^^^^~04/01/2005~
-~11992~^~307~^17.^3^6.^~1~^~A~^^^1^^^^^^^~04/01/2005~
-~11992~^~318~^0.^0^^~1~^~AS~^^^^^^^^^^~08/01/2009~
-~11992~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2005~
-~11992~^~320~^0.^0^^~1~^~AS~^^^^^^^^^^~08/01/2009~
-~11992~^~321~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2005~
-~11992~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2005~
-~11992~^~324~^11.^0^^~4~^~BFSN~^~11260~^^^^^^^^^~08/01/2009~
-~11992~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2005~
-~11992~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2005~
-~11992~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2005~
-~11992~^~417~^16.^2^^~1~^~A~^^^1^^^^^^^~04/01/2005~
-~11992~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2005~
-~11992~^~432~^16.^2^^~1~^~A~^^^^^^^^^^~08/01/2009~
-~11992~^~435~^16.^0^^~4~^~NC~^^^^^^^^^^~08/01/2009~
-~11992~^~601~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2005~
-~11993~^~208~^31.^0^^~4~^~NC~^^^^^^^^^^~08/01/2010~
-~11993~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2006~
-~11993~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2006~
-~11993~^~268~^130.^0^^~4~^~NC~^^^^^^^^^^~08/01/2010~
-~11993~^~301~^1.^2^^~1~^~A~^^^1^0.^2.^1^^^^~08/01/2009~
-~11993~^~304~^10.^1^^~1~^~A~^^^^^^^^^^~02/01/2006~
-~11993~^~305~^74.^1^^~1~^~A~^^^^^^^^^^~02/01/2006~
-~11993~^~306~^204.^2^^~1~^~A~^^^1^194.^214.^1^^^^~08/01/2009~
-~11993~^~307~^1.^2^^~1~^~A~^^^1^1.^2.^1^^^^~08/01/2009~
-~11993~^~318~^0.^0^^~4~^~NC~^^^^^^^^^^~08/01/2010~
-~11993~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2006~
-~11993~^~320~^0.^0^^~4~^~NC~^^^^^^^^^^~08/01/2010~
-~11993~^~321~^0.^0^^~4~^~BFSN~^~11260~^^^^^^^^^~07/01/2009~
-~11993~^~322~^0.^0^^~4~^~BFSN~^~11260~^^^^^^^^^~07/01/2009~
-~11993~^~324~^1123.^4^656.^~1~^~A~^^^1^3.^2529.^3^-966.^3213.^~2, 3~^~08/01/2010~
-~11993~^~334~^0.^0^^~4~^~BFSN~^~11260~^^^^^^^^^~07/01/2009~
-~11993~^~337~^0.^0^^~4~^~BFSN~^~11260~^^^^^^^^^~07/01/2009~
-~11993~^~338~^0.^0^^~4~^~BFSN~^~11260~^^^^^^^^^~07/01/2009~
-~11993~^~417~^21.^5^0.^~6~^~JA~^^^2^15.^30.^3^18.^23.^~2, 3~^~05/01/2010~
-~11993~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2006~
-~11993~^~432~^21.^5^0.^~6~^~JA~^^^2^15.^30.^3^18.^23.^^~08/01/2010~
-~11993~^~435~^21.^0^^~4~^~NC~^^^^^^^^^^~08/01/2010~
-~11993~^~601~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2006~
-~11993~^~638~^0.^6^0.^~1~^~A~^^^2^0.^0.^^^^~1, 2, 3~^~02/01/2010~
-~11993~^~639~^2.^6^0.^~1~^~A~^^^2^1.^2.^3^1.^1.^~1, 2, 3~^~02/01/2010~
-~11993~^~641~^0.^6^0.^~1~^~A~^^^2^0.^1.^1^0.^0.^~1, 2, 3~^~02/01/2010~
-~11994~^~208~^26.^0^^~4~^~NC~^~11969~^^^^^^^^^~01/01/2017~
-~11994~^~262~^0.^0^^~4~^~BFYN~^~11969~^^^^^^^^^~01/01/2015~
-~11994~^~263~^0.^0^^~4~^~BFYN~^~11969~^^^^^^^^^~01/01/2015~
-~11994~^~268~^108.^0^^~4~^~NC~^^^^^^^^^^~01/01/2017~
-~11994~^~301~^105.^0^^~4~^~BFYN~^~11969~^^^^^^^^^~01/01/2015~
-~11994~^~304~^19.^0^^~4~^~BFYN~^~11969~^^^^^^^^^~01/01/2015~
-~11994~^~305~^43.^0^^~4~^~BFYN~^~11969~^^^^^^^^^~01/01/2015~
-~11994~^~306~^274.^0^^~4~^~BFYN~^~11969~^^^^^^^^^~01/01/2015~
-~11994~^~307~^7.^0^^~4~^~BFYN~^~11969~^^^^^^^^^~01/01/2015~
-~11994~^~318~^1720.^0^^~4~^~NC~^^^^^^^^^^~01/01/2015~
-~11994~^~319~^0.^0^^~4~^~BFYN~^~11969~^^^^^^^^^~01/01/2015~
-~11994~^~320~^86.^0^^~4~^~NC~^~11969~^^^^^^^^^~01/01/2015~
-~11994~^~321~^1032.^0^^~4~^~BFYN~^~11969~^^^^^^^^^~01/01/2015~
-~11994~^~322~^0.^0^^~4~^~BFYN~^~11969~^^^^^^^^^~01/01/2015~
-~11994~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2015~
-~11994~^~334~^0.^0^^~4~^~BFYN~^~11969~^^^^^^^^^~01/01/2015~
-~11994~^~337~^0.^0^^~4~^~BFYN~^~11969~^^^^^^^^^~01/01/2015~
-~11994~^~338~^957.^0^^~4~^~BFYN~^~11969~^^^^^^^^^~01/01/2015~
-~11994~^~417~^104.^0^^~4~^~BFYN~^~11969~^^^^^^^^^~01/01/2015~
-~11994~^~431~^0.^0^^~4~^~BFYN~^~11969~^^^^^^^^^~01/01/2015~
-~11994~^~432~^104.^0^^~4~^~BFYN~^~11969~^^^^^^^^^~01/01/2015~
-~11994~^~435~^104.^0^^~4~^~NC~^~11969~^^^^^^^^^~01/01/2015~
-~11994~^~601~^0.^0^^~4~^~BFYN~^~11969~^^^^^^^^^~01/01/2015~
-~11995~^~208~^34.^0^^~4~^~NC~^^^^^^^^^^~07/01/2003~
-~11995~^~268~^143.^0^^~4~^~NC~^^^^^^^^^^~07/01/2003~
-~11995~^~301~^32.^2^^~1~^~A~^^^^^^^^^^~09/01/1997~
-~11995~^~304~^34.^2^^~1~^~A~^^^^^^^^^^~09/01/1997~
-~11995~^~305~^101.^2^^~1~^~A~^^^^^^^^^^~09/01/1997~
-~11995~^~306~^370.^2^^~1~^~A~^^^^^^^^^^~09/01/1997~
-~11995~^~307~^1.^2^^~1~^~A~^^^^^^^^^^~09/01/1997~
-~11995~^~318~^3617.^0^^~1~^~AS~^^^^^^^^^^~07/01/2003~
-~11995~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2002~
-~11995~^~320~^181.^0^^~1~^~AS~^^^^^^^^^^~07/01/2003~
-~11995~^~321~^2040.^8^10.^~1~^~A~^^^2^2030.^2050.^1^1912.^2167.^~4~^~07/01/2003~
-~11995~^~322~^261.^8^70.^~1~^~A~^^^2^190.^331.^1^-635.^1156.^~4~^~07/01/2003~
-~11995~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~
-~11995~^~601~^0.^0^^~7~^~Z~^^^^^^^^^^~09/01/1997~
-~11996~^~208~^34.^0^^~4~^~NC~^^^^^^^^^^~07/01/2003~
-~11996~^~268~^142.^0^^~4~^~NC~^^^^^^^^^^~07/01/2003~
-~11996~^~301~^24.^2^^~1~^~A~^^^^^^^^^^~09/01/1997~
-~11996~^~304~^19.^2^^~1~^~A~^^^^^^^^^^~09/01/1997~
-~11996~^~305~^58.^2^^~1~^~A~^^^^^^^^^^~09/01/1997~
-~11996~^~306~^129.^2^^~1~^~A~^^^^^^^^^^~09/01/1997~
-~11996~^~307~^0.^2^^~1~^~A~^^^^^^^^^^~09/01/1997~
-~11996~^~318~^3350.^0^^~1~^~AS~^^^^^^^^^^~07/01/2003~
-~11996~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2002~
-~11996~^~320~^168.^0^^~1~^~AS~^^^^^^^^^^~07/01/2003~
-~11996~^~321~^1870.^5^^~1~^~A~^^^^^^^^^^~07/01/2003~
-~11996~^~322~^280.^5^^~1~^~A~^^^^^^^^^^~07/01/2003~
-~11996~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~
-~11996~^~601~^0.^0^^~7~^~Z~^^^^^^^^^^~09/01/1997~
-~11998~^~208~^22.^0^^~4~^~NC~^^^^^^^^^^~08/01/2010~
-~11998~^~268~^92.^0^^~4~^~NC~^^^^^^^^^^~08/01/2010~
-~11998~^~301~^3.^5^1.^~1~^~A~^^^2^1.^8.^4^0.^7.^~4~^~08/01/2009~
-~11998~^~304~^10.^4^0.^~11~^~JO~^^^2^9.^11.^4^9.^11.^~4~^~08/01/2009~
-~11998~^~305~^108.^5^6.^~1~^~A~^^^2^88.^130.^4^89.^127.^~4~^~08/01/2009~
-~11998~^~306~^364.^5^32.^~1~^~A~^^^2^284.^484.^4^271.^455.^~4~^~08/01/2009~
-~11998~^~307~^9.^5^1.^~1~^~A~^^^2^6.^15.^4^4.^14.^~4~^~08/01/2009~
-~11998~^~318~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2010~
-~11998~^~320~^0.^0^^~7~^~Z~^^^^^^^^^^~08/01/2010~
-~11998~^~321~^0.^0^^~7~^~Z~^^^^^^^^^^~08/01/2010~
-~11998~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~08/01/2010~
-~11998~^~324~^1135.^13^284.^~1~^~A~^^^5^134.^2566.^4^345.^1925.^~2~^~04/01/2015~
-~11998~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~08/01/2010~
-~11998~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~08/01/2010~
-~11998~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~08/01/2010~
-~11998~^~417~^28.^9^2.^~6~^~JA~^^^2^22.^41.^7^22.^32.^~2, 3~^~01/01/2017~
-~11998~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~08/01/2010~
-~11998~^~432~^28.^8^2.^~1~^~A~^^^1^23.^41.^7^23.^33.^~2, 3~^~12/01/2010~
-~11998~^~435~^28.^0^^~4~^~NC~^^^^^^^^^^~08/01/2010~
-~11998~^~601~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2010~
-~11998~^~638~^0.^1^^~1~^~A~^^^2^0.^0.^9^^^~1~^~01/01/2010~
-~11998~^~639~^2.^1^^~1~^~A~^^^2^1.^3.^9^^^~1~^~01/01/2010~
-~11998~^~641~^0.^1^^~1~^~A~^^^2^0.^1.^9^^^~1~^~01/01/2010~
-~12001~^~208~^191.^0^^~4~^~NC~^^^^^^^^^^~09/01/1984~
-~12001~^~268~^799.^0^^~4~^^^^^^^^^^^
-~12001~^~301~^36.^0^^~1~^^^^^^^^^^^~09/01/1984~
-~12001~^~304~^54.^0^^~4~^^^^^^^^^^^~09/01/1984~
-~12001~^~305~^175.^0^^~1~^^^^^^^^^^^~09/01/1984~
-~12001~^~306~^941.^0^^~4~^^^^^^^^^^^~09/01/1984~
-~12001~^~307~^25.^0^^~4~^^^^^^^^^^^~09/01/1984~
-~12001~^~318~^256.^0^^~1~^^^^^^^^^^^~09/01/1984~
-~12001~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2002~
-~12001~^~320~^13.^0^^~1~^^^^^^^^^^^~06/01/2002~
-~12001~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2009~
-~12001~^~417~^53.^0^^~4~^^^^^^^^^^^~09/01/1984~
-~12001~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~
-~12001~^~432~^53.^0^^~4~^^^^^^^^^^^~09/01/1984~
-~12001~^~435~^53.^0^^~4~^~NC~^^^^^^^^^^~01/01/2001~
-~12001~^~601~^0.^0^^~7~^~Z~^^^^^^^^^^~09/01/1984~
-~12003~^~208~^168.^0^^~4~^~NC~^^^^^^^^^^~09/01/1984~
-~12003~^~268~^703.^0^^~4~^^^^^^^^^^^
-~12003~^~301~^61.^0^^~1~^^^^^^^^^^^~09/01/1984~
-~12003~^~304~^50.^0^^~4~^^^^^^^^^^^~09/01/1984~
-~12003~^~305~^124.^0^^~1~^^^^^^^^^^^~09/01/1984~
-~12003~^~306~^875.^0^^~4~^^^^^^^^^^^~09/01/1984~
-~12003~^~307~^23.^0^^~4~^^^^^^^^^^^~09/01/1984~
-~12003~^~318~^238.^0^^~4~^^^^^^^^^^^~09/01/1984~
-~12003~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2002~
-~12003~^~320~^12.^0^^~4~^^^^^^^^^^^~06/01/2002~
-~12003~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2009~
-~12003~^~417~^49.^0^^~4~^^^^^^^^^^^~09/01/1984~
-~12003~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~
-~12003~^~432~^49.^0^^~4~^^^^^^^^^^^~09/01/1984~
-~12003~^~435~^49.^0^^~4~^~NC~^^^^^^^^^^~01/01/2001~
-~12003~^~601~^0.^0^^~7~^~Z~^^^^^^^^^^~09/01/1984~
-~12004~^~208~^217.^0^^~4~^~NC~^^^^^^^^^^~09/01/1984~
-~12004~^~268~^908.^0^^~4~^^^^^^^^^^^~08/01/2009~
-~12004~^~301~^98.^1^^~1~^^^^^^^^^^^~09/01/1984~
-~12004~^~304~^68.^0^^~4~^^^^^^^^^^^~09/01/1984~
-~12004~^~305~^67.^1^^~1~^^^^^^^^^^^~09/01/1984~
-~12004~^~306~^1183.^0^^~4~^^^^^^^^^^^~09/01/1984~
-~12004~^~307~^31.^0^^~4~^^^^^^^^^^^~09/01/1984~
-~12004~^~318~^248.^1^^~1~^^^^^^^^^^^~09/01/1984~
-~12004~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2002~
-~12004~^~320~^12.^1^^~1~^^^^^^^^^^^~06/01/2002~
-~12004~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2009~
-~12004~^~417~^66.^0^^~4~^^^^^^^^^^^~09/01/1984~
-~12004~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~
-~12004~^~432~^66.^0^^~4~^^^^^^^^^^^~09/01/1984~
-~12004~^~435~^66.^0^^~4~^~NC~^^^^^^^^^^~08/01/2009~
-~12004~^~601~^0.^0^^~7~^~Z~^^^^^^^^^^~09/01/1984~
-~12005~^~208~^367.^0^^~4~^~NC~^^^^^^^^^^~09/01/1984~
-~12005~^~268~^1536.^0^^~4~^^^^^^^^^^^~08/01/2009~
-~12005~^~301~^94.^0^^~1~^^^^^^^^^^^~09/01/1984~
-~12005~^~304~^115.^0^^~4~^^^^^^^^^^^~09/01/1984~
-~12005~^~305~^178.^0^^~1~^^^^^^^^^^^~09/01/1984~
-~12005~^~306~^2011.^0^^~4~^^^^^^^^^^^~09/01/1984~
-~12005~^~307~^53.^0^^~4~^^^^^^^^^^^~09/01/1984~
-~12005~^~318~^216.^0^^~1~^^^^^^^^^^^~09/01/1984~
-~12005~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2002~
-~12005~^~320~^11.^0^^~1~^^^^^^^^^^^~06/01/2002~
-~12005~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2009~
-~12005~^~417~^113.^0^^~4~^^^^^^^^^^^~09/01/1984~
-~12005~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~
-~12005~^~432~^113.^0^^~4~^^^^^^^^^^^~09/01/1984~
-~12005~^~435~^113.^0^^~4~^~NC~^^^^^^^^^^~08/01/2009~
-~12005~^~601~^0.^0^^~7~^~Z~^^^^^^^^^^~09/01/1984~
-~12006~^~208~^486.^0^^~4~^~NC~^^^^^^^^^^~04/01/2011~
-~12006~^~268~^2034.^0^^~4~^~NC~^^^^^^^^^^~04/01/2011~
-~12006~^~301~^631.^2^^~1~^~A~^^^2^590.^673.^1^^^^~06/01/2003~
-~12006~^~304~^335.^2^^~13~^~AI~^^^^^^^^^^~04/01/2011~
-~12006~^~305~^860.^4^93.^~6~^~JA~^^^3^686.^1005.^2^458.^1261.^~2~^~04/01/2011~
-~12006~^~306~^407.^3^246.^~6~^~JA~^^^2^160.^653.^1^-2724.^3537.^~2~^~04/01/2011~
-~12006~^~307~^16.^3^3.^~6~^~JA~^^^2^13.^19.^1^-22.^54.^~2~^~04/01/2011~
-~12006~^~318~^54.^2^^~13~^~AI~^^^^^^^^^^~04/01/2011~
-~12006~^~417~^49.^2^^~13~^~AI~^^^^^^^^^^~04/01/2011~
-~12006~^~432~^49.^2^^~13~^~AI~^^^^^^^^^^~04/01/2011~
-~12006~^~601~^0.^0^^~7~^~Z~^^^^^^^^^^~09/01/1984~
-~12007~^~208~^359.^0^^~4~^~NC~^^^^^^^^^^~09/01/1984~
-~12007~^~268~^1502.^0^^~4~^^^^^^^^^^^
-~12007~^~301~^478.^0^^~1~^^^^^^^^^^^~09/01/1984~
-~12007~^~304~^721.^0^^~1~^^^^^^^^^^^~09/01/1984~
-~12007~^~305~^1597.^0^^~1~^^^^^^^^^^^~09/01/1984~
-~12007~^~306~^1772.^0^^~1~^^^^^^^^^^^~09/01/1984~
-~12007~^~307~^35.^0^^~1~^^^^^^^^^^^~09/01/1984~
-~12007~^~318~^434.^0^^~4~^^^^^^^^^^^~09/01/1984~
-~12007~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2002~
-~12007~^~320~^22.^0^^~4~^^^^^^^^^^^~06/01/2002~
-~12007~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2009~
-~12007~^~417~^229.^0^^~4~^^^^^^^^^^^~09/01/1984~
-~12007~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~
-~12007~^~432~^229.^0^^~4~^^^^^^^^^^^~09/01/1984~
-~12007~^~435~^229.^0^^~4~^~NC~^^^^^^^^^^~01/01/2001~
-~12007~^~601~^0.^0^^~7~^~Z~^^^^^^^^^^~09/01/1984~
-~12008~^~208~^332.^0^^~4~^~NC~^^^^^^^^^^~09/01/1984~
-~12008~^~268~^1389.^0^^~4~^^^^^^^^^^^
-~12008~^~301~^474.^2^^~1~^^^^^^^^^^^~09/01/1984~
-~12008~^~304~^716.^2^^~1~^^^^^^^^^^^~09/01/1984~
-~12008~^~305~^1587.^2^^~1~^^^^^^^^^^^~09/01/1984~
-~12008~^~306~^1761.^2^^~1~^^^^^^^^^^^~09/01/1984~
-~12008~^~307~^35.^2^^~1~^^^^^^^^^^^~09/01/1984~
-~12008~^~318~^432.^2^^~1~^^^^^^^^^^^~09/01/1984~
-~12008~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2002~
-~12008~^~320~^22.^2^^~1~^^^^^^^^^^^~06/01/2002~
-~12008~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2009~
-~12008~^~417~^228.^0^^~4~^^^^^^^^^^^~09/01/1984~
-~12008~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~
-~12008~^~432~^228.^0^^~4~^^^^^^^^^^^~09/01/1984~
-~12008~^~435~^228.^0^^~4~^~NC~^^^^^^^^^^~01/01/2001~
-~12008~^~601~^0.^0^^~7~^~Z~^^^^^^^^^^~09/01/1984~
-~12011~^~208~^367.^0^^~4~^~NC~^^^^^^^^^^~09/01/1984~
-~12011~^~268~^1536.^0^^~4~^^^^^^^^^^^
-~12011~^~301~^504.^0^^~1~^^^^^^^^^^^~09/01/1984~
-~12011~^~304~^760.^0^^~1~^^^^^^^^^^^~09/01/1984~
-~12011~^~305~^1684.^0^^~1~^^^^^^^^^^^~09/01/1984~
-~12011~^~306~^1869.^0^^~1~^^^^^^^^^^^~09/01/1984~
-~12011~^~307~^37.^0^^~1~^^^^^^^^^^^~09/01/1984~
-~12011~^~318~^458.^0^^~4~^^^^^^^^^^^~09/01/1984~
-~12011~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2002~
-~12011~^~320~^23.^0^^~4~^^^^^^^^^^^~06/01/2002~
-~12011~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2009~
-~12011~^~417~^242.^0^^~4~^^^^^^^^^^^~09/01/1984~
-~12011~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~
-~12011~^~432~^242.^0^^~4~^^^^^^^^^^^~09/01/1984~
-~12011~^~435~^242.^0^^~4~^~NC~^^^^^^^^^^~01/01/2001~
-~12011~^~601~^0.^0^^~7~^~Z~^^^^^^^^^^~09/01/1984~
-~12012~^~208~^553.^0^^~4~^~NC~^^^^^^^^^^~01/01/2015~
-~12012~^~268~^2313.^0^^~4~^~NC~^^^^^^^^^^~01/01/2015~
-~12012~^~301~^70.^2^^~12~^~MA~^^^2^66.^74.^1^^^^~01/01/2015~
-~12012~^~304~^700.^1^^~12~^~MA~^^^^^^^^^^~01/01/2015~
-~12012~^~305~^1650.^1^^~12~^~MA~^^^^^^^^^^~01/01/2015~
-~12012~^~306~^1200.^1^^~12~^~MA~^^^^^^^^^^~01/01/2015~
-~12012~^~307~^5.^2^^~12~^~MA~^^^2^0.^9.^1^^^^~01/01/2015~
-~12012~^~318~^11.^1^^~12~^~MA~^^^^^^^^^^~01/01/2015~
-~12012~^~320~^1.^0^^~4~^~NC~^^^^^^^^^^~01/01/2015~
-~12012~^~321~^7.^1^^~12~^~MA~^^^^^^^^^^~01/01/2015~
-~12012~^~417~^110.^1^^~12~^~MA~^^^^^^^^^^~01/01/2015~
-~12012~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2015~
-~12012~^~432~^110.^1^^~12~^~MA~^^^^^^^^^^~01/01/2015~
-~12012~^~435~^110.^0^^~4~^~NC~^^^^^^^^^^~01/01/2015~
-~12012~^~601~^0.^2^^~12~^~MA~^^^2^0.^0.^^^^^~01/01/2015~
-~12013~^~208~^332.^0^^~4~^~NC~^^^^^^^^^^~09/01/1984~
-~12013~^~268~^1389.^0^^~4~^^^^^^^^^^^
-~12013~^~301~^163.^2^^~1~^^^^^^^^^^^~09/01/1984~
-~12013~^~304~^210.^1^^~1~^^^^^^^^^^^~09/01/1984~
-~12013~^~305~^626.^2^^~1~^^^^^^^^^^^~09/01/1984~
-~12013~^~306~^1368.^1^^~1~^^^^^^^^^^^~09/01/1984~
-~12013~^~307~^5.^1^^~1~^^^^^^^^^^^~09/01/1984~
-~12013~^~318~^50.^1^^~1~^^^^^^^^^^^~09/01/1984~
-~12013~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2002~
-~12013~^~320~^3.^1^^~1~^^^^^^^^^^^~06/01/2002~
-~12013~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2009~
-~12013~^~417~^104.^0^^~4~^^^^^^^^^^^~09/01/1984~
-~12013~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~
-~12013~^~432~^104.^0^^~4~^^^^^^^^^^^~09/01/1984~
-~12013~^~435~^104.^0^^~4~^~NC~^^^^^^^^^^~01/01/2001~
-~12013~^~601~^0.^0^^~7~^~Z~^^^^^^^^^^~09/01/1984~
-~12014~^~208~^559.^0^^~4~^~NC~^^^^^^^^^^~04/01/2009~
-~12014~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~11/01/2002~
-~12014~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~11/01/2002~
-~12014~^~268~^2339.^0^^~4~^~NC~^^^^^^^^^^~04/01/2009~
-~12014~^~301~^46.^3^0.^~1~^~A~^^^1^45.^47.^2^42.^48.^~2, 3~^~12/01/2008~
-~12014~^~304~^592.^3^7.^~1~^~A~^^^1^579.^603.^2^561.^622.^~2, 3~^~12/01/2008~
-~12014~^~305~^1233.^3^21.^~1~^~A~^^^1^1190.^1260.^2^1139.^1327.^~2, 3~^~12/01/2008~
-~12014~^~306~^809.^3^15.^~1~^~A~^^^1^784.^837.^2^743.^875.^~2, 3~^~12/01/2008~
-~12014~^~307~^7.^3^0.^~1~^~A~^^^1^7.^7.^^^^~1, 2, 3~^~12/01/2008~
-~12014~^~318~^16.^1^^~1~^~A~^^^^^^^^^^~12/01/2008~
-~12014~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2002~
-~12014~^~320~^1.^1^^~1~^~A~^^^^^^^^^^~12/01/2008~
-~12014~^~321~^9.^1^^~1~^~A~^^^^^^^^^^~12/01/2008~
-~12014~^~322~^1.^1^^~1~^~A~^^^^^^^^^^~12/01/2008~
-~12014~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2009~
-~12014~^~334~^1.^1^^~1~^~A~^^^^^^^^^^~12/01/2008~
-~12014~^~337~^0.^1^^~1~^~A~^^^^^^^^^^~12/01/2008~
-~12014~^~338~^74.^1^^~1~^~A~^^^^^^^^^^~12/01/2008~
-~12014~^~417~^58.^0^^~4~^^^^^^^^^^^~09/01/1984~
-~12014~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~
-~12014~^~432~^58.^0^^~4~^^^^^^^^^^^~04/01/2009~
-~12014~^~435~^58.^0^^~4~^~NC~^^^^^^^^^^~04/01/2009~
-~12014~^~601~^0.^0^^~7~^~Z~^^^^^^^^^^~09/01/1984~
-~12016~^~208~^574.^0^^~4~^~NC~^^^^^^^^^^~04/01/2009~
-~12016~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~
-~12016~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~
-~12016~^~268~^2401.^0^^~4~^~NC~^^^^^^^^^^~04/01/2009~
-~12016~^~301~^52.^2^^~1~^~A~^^^2^45.^59.^^^^^~04/01/2009~
-~12016~^~304~^550.^2^^~1~^~A~^^^2^544.^557.^^^^^~04/01/2009~
-~12016~^~305~^1174.^2^^~1~^~A~^^^2^1170.^1179.^^^^^~04/01/2009~
-~12016~^~306~^788.^2^^~1~^~A~^^^2^786.^789.^^^^^~04/01/2009~
-~12016~^~307~^18.^0^^~1~^^^^^^^^^^^~04/01/2009~
-~12016~^~318~^8.^1^^~1~^~A~^^^^^^^^^^~04/01/2009~
-~12016~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2002~
-~12016~^~320~^0.^1^^~1~^~A~^^^^^^^^^^~04/01/2009~
-~12016~^~321~^5.^1^^~1~^~A~^^^^^^^^^^~04/01/2009~
-~12016~^~322~^1.^1^^~1~^~A~^^^^^^^^^^~04/01/2009~
-~12016~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2009~
-~12016~^~334~^0.^1^^~1~^~A~^^^^^^^^^^~04/01/2009~
-~12016~^~337~^0.^1^^~1~^~A~^^^^^^^^^^~04/01/2009~
-~12016~^~338~^30.^1^^~1~^~A~^^^^^^^^^^~04/01/2009~
-~12016~^~417~^57.^0^^~4~^^^^^^^^^^^~09/01/1984~
-~12016~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~
-~12016~^~432~^57.^0^^~4~^^^^^^^^^^^~04/01/2009~
-~12016~^~435~^57.^0^^~4~^~NC~^^^^^^^^^^~04/01/2009~
-~12016~^~601~^0.^0^^~7~^~Z~^^^^^^^^^^~09/01/1984~
-~12016~^~638~^0.^1^^~1~^~A~^^^^^^^^^~1~^~04/01/2009~
-~12016~^~639~^3.^1^^~1~^~A~^^^^^^^^^^~04/01/2009~
-~12016~^~641~^13.^1^^~1~^~A~^^^^^^^^^^~04/01/2009~
-~12021~^~208~^517.^0^^~4~^~NC~^^^^^^^^^^~09/01/1984~
-~12021~^~268~^2163.^0^^~4~^^^^^^^^^^^
-~12021~^~301~^78.^0^^~1~^^^^^^^^^^^~09/01/1984~
-~12021~^~304~^353.^0^^~4~^^^^^^^^^^^~09/01/1984~
-~12021~^~305~^644.^0^^~1~^^^^^^^^^^^~09/01/1984~
-~12021~^~306~^687.^0^^~4~^^^^^^^^^^^~09/01/1984~
-~12021~^~307~^3.^0^^~4~^^^^^^^^^^^~09/01/1984~
-~12021~^~318~^50.^0^^~4~^^^^^^^^^^^~09/01/1984~
-~12021~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2002~
-~12021~^~320~^3.^0^^~4~^^^^^^^^^^^~06/01/2002~
-~12021~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2009~
-~12021~^~417~^160.^0^^~4~^^^^^^^^^^^~09/01/1984~
-~12021~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~
-~12021~^~432~^160.^0^^~4~^^^^^^^^^^^~09/01/1984~
-~12021~^~435~^160.^0^^~4~^~NC~^^^^^^^^^^~01/01/2001~
-~12021~^~601~^0.^0^^~7~^~Z~^^^^^^^^^^~09/01/1984~
-~12022~^~208~^342.^0^^~4~^~NC~^^^^^^^^^^~09/01/1984~
-~12022~^~268~^1431.^0^^~4~^^^^^^^^^^^
-~12022~^~301~^77.^0^^~1~^^^^^^^^^^^~09/01/1984~
-~12022~^~304~^350.^0^^~4~^^^^^^^^^^^~09/01/1984~
-~12022~^~305~^638.^0^^~1~^^^^^^^^^^^~09/01/1984~
-~12022~^~306~^68.^0^^~4~^^^^^^^^^^^~09/01/1984~
-~12022~^~307~^3.^0^^~4~^^^^^^^^^^^~09/01/1984~
-~12022~^~318~^49.^0^^~4~^^^^^^^^^^^~09/01/1984~
-~12022~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2002~
-~12022~^~320~^2.^0^^~4~^^^^^^^^^^^~06/01/2002~
-~12022~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2009~
-~12022~^~417~^159.^0^^~4~^^^^^^^^^^^~09/01/1984~
-~12022~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~
-~12022~^~432~^159.^0^^~4~^^^^^^^^^^^~09/01/1984~
-~12022~^~435~^159.^0^^~4~^~NC~^^^^^^^^^^~01/01/2001~
-~12022~^~601~^0.^0^^~7~^~Z~^^^^^^^^^^~09/01/1984~
-~12023~^~208~^573.^0^^~4~^~NC~^^^^^^^^^^~09/01/1984~
-~12023~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~
-~12023~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~
-~12023~^~268~^2397.^0^^~4~^^^^^^^^^^^~03/01/2009~
-~12023~^~301~^975.^21^102.^~1~^^^^^^^^^^^~09/01/1984~
-~12023~^~304~^351.^3^23.^~1~^^^^^^^^^^^~09/01/1984~
-~12023~^~305~^629.^20^23.^~1~^^^^^^^^^^^~09/01/1984~
-~12023~^~306~^468.^4^34.^~1~^^^^^^^^^^^~09/01/1984~
-~12023~^~307~^11.^3^6.^~1~^^^^^^^^^^^~09/01/1984~
-~12023~^~318~^9.^8^6.^~1~^^^^^^^^^^^~09/01/1984~
-~12023~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2002~
-~12023~^~320~^0.^0^^~4~^~NC~^^^^^^^^^^~03/01/2009~
-~12023~^~321~^5.^0^^~4~^~O~^^^^^^^^^^~02/01/2003~
-~12023~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~
-~12023~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2009~
-~12023~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~
-~12023~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~
-~12023~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~
-~12023~^~417~^97.^0^^~1~^^^^^^^^^^^~09/01/1984~
-~12023~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~
-~12023~^~432~^97.^0^^~1~^^^^^^^^^^^~03/01/2009~
-~12023~^~435~^97.^0^^~4~^~NC~^^^^^^^^^^~03/01/2009~
-~12023~^~601~^0.^0^^~7~^~Z~^^^^^^^^^^~09/01/1984~
-~12023~^~636~^714.^0^^~1~^^^^^^^^^^^~09/01/1984~
-~12024~^~208~^565.^0^^~4~^~NC~^^^^^^^^^^~09/01/1984~
-~12024~^~268~^2364.^0^^~4~^^^^^^^^^^^~03/01/2009~
-~12024~^~301~^989.^0^^~1~^^^^^^^^^^^~09/01/1984~
-~12024~^~304~^356.^0^^~1~^^^^^^^^^^^~09/01/1984~
-~12024~^~305~^638.^0^^~1~^^^^^^^^^^^~09/01/1984~
-~12024~^~306~^475.^0^^~1~^^^^^^^^^^^~09/01/1984~
-~12024~^~307~^11.^0^^~1~^^^^^^^^^^^~09/01/1984~
-~12024~^~318~^9.^0^^~4~^^^^^^^^^^^~09/01/1984~
-~12024~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2002~
-~12024~^~320~^0.^0^^~4~^~NC~^^^^^^^^^^~05/01/2009~
-~12024~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2009~
-~12024~^~417~^98.^0^^~4~^^^^^^^^^^^~09/01/1984~
-~12024~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~
-~12024~^~432~^98.^0^^~4~^^^^^^^^^^^~03/01/2009~
-~12024~^~435~^98.^0^^~4~^~NC~^^^^^^^^^^~05/01/2009~
-~12024~^~601~^0.^0^^~7~^~Z~^^^^^^^^^^~09/01/1984~
-~12029~^~208~^567.^0^^~4~^~NC~^^^^^^^^^^~09/01/1984~
-~12029~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~
-~12029~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~
-~12029~^~268~^2372.^0^^~4~^^^^^^^^^^^~03/01/2009~
-~12029~^~301~^131.^0^^~1~^^^^^^^^^^^~09/01/1984~
-~12029~^~304~^346.^0^^~1~^^^^^^^^^^^~09/01/1984~
-~12029~^~305~^774.^0^^~1~^^^^^^^^^^^~09/01/1984~
-~12029~^~306~^406.^0^^~1~^^^^^^^^^^^~09/01/1984~
-~12029~^~307~^39.^0^^~1~^^^^^^^^^^^~09/01/1984~
-~12029~^~318~^66.^0^^~4~^^^^^^^^^^^~09/01/1984~
-~12029~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2002~
-~12029~^~320~^3.^0^^~4~^~NC~^^^^^^^^^^~03/01/2009~
-~12029~^~321~^40.^0^^~4~^~BFZN~^~12201~^^^^^^^^^~02/01/2003~
-~12029~^~322~^0.^0^^~4~^~BFZN~^~12201~^^^^^^^^^~02/01/2003~
-~12029~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2009~
-~12029~^~334~^0.^0^^~4~^~BFZN~^~12201~^^^^^^^^^~02/01/2003~
-~12029~^~337~^0.^0^^~4~^~BFZN~^~12201~^^^^^^^^^~02/01/2003~
-~12029~^~338~^0.^0^^~4~^~BFZN~^~12201~^^^^^^^^^~02/01/2003~
-~12029~^~417~^96.^0^^~4~^^^^^^^^^^^~09/01/1984~
-~12029~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~
-~12029~^~432~^96.^0^^~4~^^^^^^^^^^^~03/01/2009~
-~12029~^~435~^96.^0^^~4~^~NC~^^^^^^^^^^~03/01/2009~
-~12029~^~601~^0.^0^^~7~^~Z~^^^^^^^^^^~09/01/1984~
-~12032~^~208~^382.^0^^~4~^~NC~^^^^^^^^^^~09/01/1984~
-~12032~^~268~^1598.^0^^~4~^^^^^^^^^^^
-~12032~^~301~^150.^6^6.^~1~^^^^^^^^^^^~09/01/1984~
-~12032~^~304~^362.^0^^~1~^^^^^^^^^^^~09/01/1984~
-~12032~^~305~^810.^0^^~1~^^^^^^^^^^^~09/01/1984~
-~12032~^~306~^425.^0^^~1~^^^^^^^^^^^~09/01/1984~
-~12032~^~307~^41.^0^^~1~^^^^^^^^^^^~09/01/1984~
-~12032~^~318~^69.^0^^~1~^^^^^^^^^^^~09/01/1984~
-~12032~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2002~
-~12032~^~320~^3.^0^^~1~^^^^^^^^^^^~06/01/2002~
-~12032~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2009~
-~12032~^~417~^29.^6^0.^~1~^^^^^^^^^^^~09/01/1984~
-~12032~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~
-~12032~^~432~^29.^6^0.^~1~^^^^^^^^^^^~09/01/1984~
-~12032~^~435~^29.^0^^~4~^~NC~^^^^^^^^^^~01/01/2001~
-~12032~^~601~^0.^0^^~7~^~Z~^^^^^^^^^^~09/01/1984~
-~12033~^~208~^333.^0^^~4~^~NC~^^^^^^^^^^~09/01/1984~
-~12033~^~268~^1393.^0^^~4~^^^^^^^^^^^
-~12033~^~301~^149.^0^^~1~^^^^^^^^^^^~09/01/1984~
-~12033~^~304~^338.^0^^~1~^^^^^^^^^^^~09/01/1984~
-~12033~^~305~^757.^0^^~1~^^^^^^^^^^^~09/01/1984~
-~12033~^~306~^397.^0^^~1~^^^^^^^^^^^~09/01/1984~
-~12033~^~307~^39.^0^^~1~^^^^^^^^^^^~09/01/1984~
-~12033~^~318~^64.^0^^~1~^^^^^^^^^^^~09/01/1984~
-~12033~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2002~
-~12033~^~320~^3.^0^^~1~^^^^^^^^^^^~06/01/2002~
-~12033~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2009~
-~12033~^~417~^29.^0^^~1~^^^^^^^^^^^~09/01/1984~
-~12033~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~
-~12033~^~432~^29.^0^^~1~^^^^^^^^^^^~09/01/1984~
-~12033~^~435~^29.^0^^~4~^~NC~^^^^^^^^^^~01/01/2001~
-~12033~^~601~^0.^0^^~7~^~Z~^^^^^^^^^^~09/01/1984~
-~12034~^~208~^567.^0^^~4~^~NC~^^^^^^^^^^~09/01/1984~
-~12034~^~268~^2372.^0^^~4~^^^^^^^^^^^
-~12034~^~301~^153.^0^^~1~^^^^^^^^^^^~09/01/1984~
-~12034~^~304~^346.^0^^~1~^^^^^^^^^^^~09/01/1984~
-~12034~^~305~^774.^0^^~1~^^^^^^^^^^^~09/01/1984~
-~12034~^~306~^406.^0^^~1~^^^^^^^^^^^~09/01/1984~
-~12034~^~307~^39.^0^^~1~^^^^^^^^^^^~09/01/1984~
-~12034~^~318~^66.^0^^~1~^^^^^^^^^^^~09/01/1984~
-~12034~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2002~
-~12034~^~320~^3.^0^^~1~^^^^^^^^^^^~06/01/2002~
-~12034~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2009~
-~12034~^~417~^30.^0^^~1~^^^^^^^^^^^~09/01/1984~
-~12034~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~
-~12034~^~432~^30.^0^^~1~^^^^^^^^^^^~09/01/1984~
-~12034~^~435~^30.^0^^~4~^~NC~^^^^^^^^^^~01/01/2001~
-~12034~^~601~^0.^0^^~7~^~Z~^^^^^^^^^^~09/01/1984~
-~12036~^~208~^584.^0^^~4~^~NC~^^^^^^^^^^~11/01/2008~
-~12036~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~
-~12036~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~
-~12036~^~268~^2445.^0^^~4~^~NC~^^^^^^^^^^~11/01/2008~
-~12036~^~301~^78.^2^^~1~^~A~^^^1^69.^87.^1^^^^~05/01/2007~
-~12036~^~304~^325.^2^^~1~^~A~^^^1^320.^330.^1^^^^~05/01/2007~
-~12036~^~305~^660.^2^^~1~^~A~^^^1^660.^660.^^^^^~05/01/2007~
-~12036~^~306~^645.^2^^~1~^~A~^^^1^640.^650.^1^^^^~05/01/2007~
-~12036~^~307~^9.^2^^~1~^~A~^^^1^6.^12.^1^^^^~05/01/2007~
-~12036~^~318~^50.^0^^~1~^^^^^^^^^^^~09/01/1984~
-~12036~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2002~
-~12036~^~320~^3.^0^^~4~^~NC~^^^^^^^^^^~11/01/2008~
-~12036~^~321~^30.^0^^~4~^~BNA~^~12538~^^^^^^^^^~02/01/2003~
-~12036~^~322~^0.^0^^~4~^~BNA~^~12538~^^^^^^^^^~02/01/2003~
-~12036~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2009~
-~12036~^~334~^0.^0^^~4~^~BNA~^~12538~^^^^^^^^^~02/01/2003~
-~12036~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~
-~12036~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~
-~12036~^~417~^227.^0^^~4~^^^^^^^^^^^~09/01/1984~
-~12036~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~
-~12036~^~432~^227.^0^^~4~^^^^^^^^^^^~11/01/2008~
-~12036~^~435~^227.^0^^~4~^~NC~^^^^^^^^^^~11/01/2008~
-~12036~^~601~^0.^0^^~7~^~Z~^^^^^^^^^^~09/01/1984~
-~12036~^~636~^534.^0^^~1~^^^^^^^^^^^~09/01/1984~
-~12037~^~208~^582.^0^^~4~^~NC~^^^^^^^^^^~09/01/1984~
-~12037~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~
-~12037~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~
-~12037~^~268~^2435.^0^^~4~^^^^^^^^^^^~12/01/2006~
-~12037~^~301~^70.^1^^~1~^^^^^^^^^^^~09/01/1984~
-~12037~^~304~^129.^0^^~1~^^^^^^^^^^^~09/01/1984~
-~12037~^~305~^1155.^0^^~1~^^^^^^^^^^^~09/01/1984~
-~12037~^~306~^850.^1^^~1~^^^^^^^^^^^~09/01/1984~
-~12037~^~307~^3.^0^^~1~^^^^^^^^^^^~09/01/1984~
-~12037~^~318~^9.^0^^~4~^~BFZN~^~12537~^^^^^^^^^~05/01/2004~
-~12037~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2002~
-~12037~^~320~^0.^0^^~4~^~BFZN~^~12537~^^^^^^^^^~05/01/2004~
-~12037~^~321~^5.^0^^~4~^~BFZN~^~12537~^^^^^^^^^~05/01/2004~
-~12037~^~322~^0.^0^^~4~^~BFZN~^~12537~^^^^^^^^^~02/01/2003~
-~12037~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2009~
-~12037~^~334~^0.^0^^~4~^~BFZN~^~12537~^^^^^^^^^~02/01/2003~
-~12037~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~
-~12037~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~
-~12037~^~417~^237.^0^^~4~^^^^^^^^^^^~09/01/1984~
-~12037~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~
-~12037~^~432~^237.^0^^~4~^^^^^^^^^^^~12/01/2006~
-~12037~^~435~^237.^0^^~4~^~NC~^^^^^^^^^^~02/01/2010~
-~12037~^~601~^0.^0^^~7~^~Z~^^^^^^^^^^~09/01/1984~
-~12038~^~208~^592.^0^^~4~^~NC~^^^^^^^^^^~12/01/2006~
-~12038~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~
-~12038~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~
-~12038~^~268~^2477.^0^^~4~^~NC~^^^^^^^^^^~12/01/2006~
-~12038~^~301~^87.^2^^~1~^~A~^^^2^85.^88.^^^^^~05/01/2004~
-~12038~^~304~^127.^1^^~1~^^^^^^^^^^^~09/01/1984~
-~12038~^~305~^1139.^1^^~1~^^^^^^^^^^^~09/01/1984~
-~12038~^~306~^483.^1^^~1~^^^^^^^^^^^~09/01/1984~
-~12038~^~307~^3.^0^^~1~^^^^^^^^^^^~09/01/1984~
-~12038~^~318~^9.^3^^~1~^~A~^^^2^0.^45.^^^^~2~^~05/01/2004~
-~12038~^~319~^0.^1^^~1~^~A~^^^^^^^^^~1~^~05/01/2004~
-~12038~^~320~^0.^3^^~1~^~A~^^^2^0.^2.^^^^~2~^~05/01/2004~
-~12038~^~321~^5.^3^^~1~^~A~^^^2^0.^27.^^^^~2~^~05/01/2004~
-~12038~^~322~^0.^2^^~1~^~A~^^^^^^^^^^~05/01/2004~
-~12038~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2009~
-~12038~^~334~^0.^2^^~1~^~A~^^^^^^^^^^~05/01/2004~
-~12038~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~
-~12038~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~
-~12038~^~417~^234.^1^^~1~^^^^^^^^^^^~09/01/1984~
-~12038~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~
-~12038~^~432~^234.^1^^~1~^^^^^^^^^^^~12/01/2006~
-~12038~^~435~^234.^0^^~4~^~NC~^^^^^^^^^^~12/01/2006~
-~12038~^~601~^0.^2^^~1~^~A~^^^2^0.^0.^^^^~1~^~05/01/2004~
-~12039~^~208~^619.^0^^~4~^~NC~^^^^^^^^^^~09/01/1984~
-~12039~^~268~^2590.^0^^~4~^^^^^^^^^^^
-~12039~^~301~^57.^0^^~1~^^^^^^^^^^^~09/01/1984~
-~12039~^~304~^129.^0^^~1~^^^^^^^^^^^~09/01/1984~
-~12039~^~305~^1158.^0^^~1~^^^^^^^^^^^~09/01/1984~
-~12039~^~306~^491.^0^^~1~^^^^^^^^^^^~09/01/1984~
-~12039~^~307~^3.^0^^~1~^^^^^^^^^^^~09/01/1984~
-~12039~^~318~^0.^0^^~4~^^^^^^^^^^^~09/01/1984~
-~12039~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2002~
-~12039~^~320~^0.^0^^~4~^^^^^^^^^^^~06/01/2002~
-~12039~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2009~
-~12039~^~417~^238.^0^^~4~^^^^^^^^^^^~09/01/1984~
-~12039~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~
-~12039~^~432~^238.^0^^~4~^^^^^^^^^^^~09/01/1984~
-~12039~^~435~^238.^0^^~4~^~NC~^^^^^^^^^^~01/01/2001~
-~12039~^~601~^0.^0^^~7~^~Z~^^^^^^^^^^~09/01/1984~
-~12040~^~208~^617.^0^^~4~^~NC~^^^^^^^^^^~08/01/2010~
-~12040~^~268~^2581.^0^^~4~^~NC~^^^^^^^^^^~08/01/2010~
-~12040~^~301~^64.^3^2.^~1~^~A~^^^1^61.^70.^2^52.^75.^~2, 3~^~08/01/2010~
-~12040~^~304~^311.^3^3.^~1~^~A~^^^1^307.^318.^2^296.^325.^~2, 3~^~08/01/2010~
-~12040~^~305~^666.^3^5.^~1~^~A~^^^1^658.^677.^2^641.^690.^~2, 3~^~08/01/2010~
-~12040~^~306~^576.^3^0.^~1~^~A~^^^1^576.^576.^2^574.^576.^~2, 3~^~08/01/2010~
-~12040~^~307~^3.^0^^~1~^^^^^^^^^^^~08/01/2010~
-~12040~^~318~^52.^0^^~4~^^^^^^^^^^^~09/01/1984~
-~12040~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2002~
-~12040~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2009~
-~12040~^~417~^237.^0^^~4~^^^^^^^^^^^~09/01/1984~
-~12040~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~
-~12040~^~432~^237.^0^^~4~^^^^^^^^^^^~08/01/2010~
-~12040~^~435~^237.^0^^~4~^~NC~^^^^^^^^^^~08/01/2010~
-~12040~^~601~^0.^3^0.^~1~^~A~^^^1^0.^0.^^^^~1, 2, 3~^~08/01/2010~
-~12040~^~638~^18.^3^0.^~1~^~A~^^^1^18.^19.^2^16.^20.^~2, 3~^~08/01/2010~
-~12040~^~639~^21.^3^0.^~1~^~A~^^^1^19.^22.^2^17.^23.^~2, 3~^~08/01/2010~
-~12040~^~641~^170.^3^3.^~1~^~A~^^^1^163.^175.^2^154.^184.^~2, 3~^~08/01/2010~
-~12041~^~208~^326.^0^^~4~^~NC~^^^^^^^^^^~09/01/1984~
-~12041~^~268~^1364.^0^^~4~^^^^^^^^^^^
-~12041~^~301~^114.^0^^~1~^^^^^^^^^^^~09/01/1984~
-~12041~^~304~^346.^0^^~1~^^^^^^^^^^^~09/01/1984~
-~12041~^~305~^689.^0^^~1~^^^^^^^^^^^~09/01/1984~
-~12041~^~306~^67.^0^^~1~^^^^^^^^^^^~09/01/1984~
-~12041~^~307~^3.^0^^~1~^^^^^^^^^^^~09/01/1984~
-~12041~^~318~^49.^0^^~4~^^^^^^^^^^^~09/01/1984~
-~12041~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2002~
-~12041~^~320~^2.^0^^~4~^^^^^^^^^^^~06/01/2002~
-~12041~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2009~
-~12041~^~417~^222.^0^^~4~^^^^^^^^^^^~09/01/1984~
-~12041~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~
-~12041~^~432~^222.^0^^~4~^^^^^^^^^^^~09/01/1984~
-~12041~^~435~^222.^0^^~4~^~NC~^^^^^^^^^^~01/01/2001~
-~12041~^~601~^0.^0^^~7~^~Z~^^^^^^^^^^~09/01/1984~
-~12058~^~208~^387.^0^^~4~^~NC~^^^^^^^^^^~07/01/1995~
-~12058~^~268~^1619.^0^^~4~^^^^^^^^^^^
-~12058~^~301~^41.^0^^~1~^^^^^^^^^^^~09/01/1984~
-~12058~^~304~^62.^0^^~1~^^^^^^^^^^^~09/01/1984~
-~12058~^~305~^79.^0^^~1~^^^^^^^^^^^~09/01/1984~
-~12058~^~306~^539.^0^^~1~^^^^^^^^^^^~09/01/1984~
-~12058~^~307~^0.^0^^~1~^^^^^^^^^^^~09/01/1984~
-~12058~^~318~^39.^0^^~4~^^^^^^^^^^^~09/01/1984~
-~12058~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2002~
-~12058~^~320~^2.^0^^~4~^^^^^^^^^^^~06/01/2002~
-~12058~^~417~^87.^0^^~4~^^^^^^^^^^^~09/01/1984~
-~12058~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~
-~12058~^~432~^87.^0^^~4~^^^^^^^^^^^~09/01/1984~
-~12058~^~435~^87.^0^^~4~^~NC~^^^^^^^^^^~01/01/2001~
-~12058~^~601~^0.^0^^~7~^~Z~^^^^^^^^^^~09/01/1984~
-~12059~^~208~^509.^0^^~4~^~NC~^^^^^^^^^^~09/01/1984~
-~12059~^~268~^2130.^0^^~4~^^^^^^^^^^^
-~12059~^~301~^54.^1^^~1~^^^^^^^^^^^~09/01/1984~
-~12059~^~304~^82.^1^^~1~^^^^^^^^^^^~09/01/1984~
-~12059~^~305~^103.^0^^~1~^^^^^^^^^^^~09/01/1984~
-~12059~^~306~^709.^1^^~1~^^^^^^^^^^^~09/01/1984~
-~12059~^~307~^0.^1^^~1~^^^^^^^^^^^~09/01/1984~
-~12059~^~318~^0.^0^^~4~^^^^^^^^^^^~09/01/1984~
-~12059~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2002~
-~12059~^~320~^0.^0^^~4~^^^^^^^^^^^~06/01/2002~
-~12059~^~417~^115.^0^^~4~^^^^^^^^^^^~09/01/1984~
-~12059~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~
-~12059~^~432~^115.^0^^~4~^^^^^^^^^^^~09/01/1984~
-~12059~^~435~^115.^0^^~4~^~NC~^^^^^^^^^^~01/01/2001~
-~12059~^~601~^0.^0^^~7~^~Z~^^^^^^^^^^~09/01/1984~
-~12060~^~208~^501.^0^^~4~^~NC~^^^^^^^^^^~09/01/1984~
-~12060~^~268~^2096.^0^^~4~^^^^^^^^^^^
-~12060~^~301~^43.^1^^~1~^^^^^^^^^^^~09/01/1984~
-~12060~^~304~^110.^1^^~1~^^^^^^^^^^^~09/01/1984~
-~12060~^~305~^103.^1^^~1~^^^^^^^^^^^~09/01/1984~
-~12060~^~306~^712.^1^^~1~^^^^^^^^^^^~09/01/1984~
-~12060~^~307~^0.^0^^~4~^^^^^^^^^^^~09/01/1984~
-~12060~^~318~^51.^0^^~4~^^^^^^^^^^^~09/01/1984~
-~12060~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2002~
-~12060~^~320~^3.^0^^~4~^^^^^^^^^^^~06/01/2002~
-~12060~^~417~^114.^0^^~4~^^^^^^^^^^^~09/01/1984~
-~12060~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~
-~12060~^~432~^114.^0^^~4~^^^^^^^^^^^~09/01/1984~
-~12060~^~435~^114.^0^^~4~^~NC~^^^^^^^^^^~01/01/2001~
-~12060~^~601~^0.^0^^~7~^~Z~^^^^^^^^^^~09/01/1984~
-~12061~^~208~^579.^0^^~4~^~NC~^^^^^^^^^^~04/01/2013~
-~12061~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~08/01/1999~
-~12061~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~08/01/1999~
-~12061~^~268~^2423.^0^^~4~^~NC~^^^^^^^^^^~04/01/2013~
-~12061~^~301~^269.^89^7.^~1~^~A~^^^3^198.^373.^2^237.^299.^~2~^~04/01/2013~
-~12061~^~304~^270.^88^1.^~1~^~A~^^^3^224.^303.^6^267.^273.^~2~^~04/01/2013~
-~12061~^~305~^481.^88^6.^~1~^~A~^^^3^364.^569.^4^462.^499.^~2~^~04/01/2013~
-~12061~^~306~^733.^88^16.^~1~^~A~^^^3^543.^902.^2^647.^819.^~2~^~04/01/2013~
-~12061~^~307~^1.^85^0.^~1~^~A~^^^3^0.^11.^3^0.^2.^~1, 2~^~05/01/2007~
-~12061~^~318~^2.^0^^~1~^~AS~^^^^^^^^^^~04/01/2013~
-~12061~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2002~
-~12061~^~320~^0.^0^^~1~^~AS~^^^^^^^^^^~05/01/2007~
-~12061~^~321~^1.^26^0.^~1~^~A~^^^4^0.^6.^1^-6.^9.^~1, 2~^~05/01/2007~
-~12061~^~322~^0.^9^0.^~1~^~A~^^^3^0.^0.^^^^~1, 2~^~05/01/2007~
-~12061~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2009~
-~12061~^~334~^0.^8^0.^~1~^~A~^^^2^0.^0.^^^^~1, 2, 3~^~09/01/2002~
-~12061~^~337~^0.^8^0.^~1~^~A~^^^2^0.^0.^^^^~1, 2, 3~^~09/01/2002~
-~12061~^~338~^1.^8^0.^~1~^~A~^^^2^1.^1.^^^^~1, 2, 3~^~09/01/2002~
-~12061~^~417~^44.^41^6.^~1~^~A~^^^2^10.^107.^1^-23.^110.^~2~^~04/01/2013~
-~12061~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2001~
-~12061~^~432~^44.^41^6.^~1~^~A~^^^2^10.^107.^1^-23.^110.^^~04/01/2013~
-~12061~^~435~^44.^0^^~4~^~NC~^^^^^^^^^^~04/01/2013~
-~12061~^~601~^0.^2^^~1~^~A~^^^1^0.^1.^8^^^~1~^~04/01/2013~
-~12061~^~638~^4.^82^0.^~1~^~A~^^^6^0.^12.^4^2.^6.^~1, 2~^~05/01/2007~
-~12061~^~639~^5.^82^0.^~1~^~A~^^^6^3.^12.^4^3.^6.^~2~^~05/01/2007~
-~12061~^~641~^130.^68^6.^~1~^~A~^^^6^101.^168.^3^109.^150.^~2~^~04/01/2013~
-~12062~^~208~^590.^0^^~4~^~NC~^^^^^^^^^^~03/01/2010~
-~12062~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~08/01/1999~
-~12062~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~08/01/1999~
-~12062~^~268~^2468.^0^^~4~^~NC~^^^^^^^^^^~03/01/2010~
-~12062~^~301~^236.^8^17.^~1~^~A~^^^2^214.^267.^1^13.^457.^~2~^~03/01/2010~
-~12062~^~304~^268.^8^3.^~1~^~A~^^^2^244.^288.^1^220.^315.^~2~^~03/01/2010~
-~12062~^~305~^481.^8^1.^~1~^~A~^^^2^416.^511.^1^464.^497.^~2~^~03/01/2010~
-~12062~^~306~^659.^8^17.^~1~^~A~^^^2^600.^691.^1^432.^884.^~2~^~03/01/2010~
-~12062~^~307~^19.^8^6.^~1~^~A~^^^2^7.^31.^1^-63.^101.^~1, 2~^~03/01/2010~
-~12062~^~318~^7.^0^^~1~^~AS~^^^^^^^^^^~03/01/2010~
-~12062~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2002~
-~12062~^~320~^0.^0^^~1~^~AS~^^^^^^^^^^~03/01/2010~
-~12062~^~321~^4.^1^^~1~^~A~^^^^^^^^^^~01/01/2001~
-~12062~^~322~^0.^1^^~1~^~A~^^^^^^^^^^~01/01/2001~
-~12062~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2009~
-~12062~^~334~^0.^0^^~4~^~BFZN~^~12061~^^^^^^^^^~09/01/2002~
-~12062~^~337~^0.^0^^~4~^~BFZN~^~12061~^^^^^^^^^~09/01/2002~
-~12062~^~338~^1.^0^^~4~^~BFZN~^~12061~^^^^^^^^^~09/01/2002~
-~12062~^~417~^49.^7^20.^~1~^~A~^^^2^27.^112.^1^-211.^309.^~2~^~03/01/2010~
-~12062~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2001~
-~12062~^~432~^49.^7^20.^~1~^~A~^^^2^27.^112.^1^-211.^309.^^~03/01/2010~
-~12062~^~435~^49.^0^^~4~^~NC~^^^^^^^^^^~03/01/2010~
-~12062~^~601~^0.^0^^~7~^~Z~^^^^^^^^^^~09/01/1984~
-~12062~^~636~^114.^0^^~1~^~AS~^^^^^^^^^^~05/01/2010~
-~12062~^~638~^1.^5^0.^~1~^~A~^^^2^0.^1.^1^-1.^2.^~1, 2~^~03/01/2010~
-~12062~^~639~^4.^5^1.^~1~^~A~^^^2^2.^6.^1^-15.^24.^~1, 2~^~03/01/2010~
-~12062~^~641~^109.^5^0.^~1~^~A~^^^2^105.^113.^1^105.^111.^~2~^~03/01/2010~
-~12063~^~208~^598.^0^^~4~^~NC~^^^^^^^^^^~04/01/2013~
-~12063~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/1999~
-~12063~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/1999~
-~12063~^~268~^2502.^0^^~4~^~NC~^^^^^^^^^^~04/01/2013~
-~12063~^~301~^268.^22^4.^~1~^~A~^^^3^215.^343.^2^246.^289.^~2~^~04/01/2013~
-~12063~^~304~^279.^21^3.^~1~^~A~^^^3^250.^297.^2^264.^292.^~2~^~04/01/2013~
-~12063~^~305~^471.^21^9.^~1~^~A~^^^3^371.^564.^2^430.^511.^~2~^~04/01/2013~
-~12063~^~306~^713.^21^11.^~1~^~A~^^^3^558.^854.^2^663.^762.^~2~^~04/01/2013~
-~12063~^~307~^3.^20^1.^~1~^~A~^^^3^0.^17.^2^-1.^7.^~1, 2~^~03/01/2010~
-~12063~^~318~^1.^0^^~1~^~AS~^^^^^^^^^^~03/01/2010~
-~12063~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2002~
-~12063~^~320~^0.^0^^~1~^~AS~^^^^^^^^^^~03/01/2010~
-~12063~^~321~^1.^1^^~1~^~A~^^^^^^^^^^~01/01/2001~
-~12063~^~322~^0.^1^^~1~^~A~^^^^^^^^^^~01/01/2001~
-~12063~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2009~
-~12063~^~334~^0.^0^^~4~^~BFZN~^~12061~^^^^^^^^^~09/01/2002~
-~12063~^~337~^0.^0^^~4~^~BFZN~^~12061~^^^^^^^^^~09/01/2002~
-~12063~^~338~^1.^0^^~4~^~BFZN~^~12061~^^^^^^^^^~09/01/2002~
-~12063~^~417~^55.^12^12.^~1~^~A~^^^3^27.^127.^2^0.^109.^~2~^~04/01/2013~
-~12063~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2001~
-~12063~^~432~^55.^12^12.^~1~^~A~^^^3^27.^127.^2^0.^109.^^~04/01/2013~
-~12063~^~435~^55.^0^^~4~^~NC~^^^^^^^^^^~04/01/2013~
-~12063~^~601~^0.^1^^~1~^~A~^^^1^0.^1.^11^^^~1~^~04/01/2013~
-~12063~^~638~^4.^16^0.^~1~^~A~^^^3^2.^6.^2^3.^4.^~2~^~03/01/2010~
-~12063~^~639~^4.^16^0.^~1~^~A~^^^3^3.^7.^2^1.^7.^~2~^~03/01/2010~
-~12063~^~641~^122.^16^6.^~1~^~A~^^^3^94.^190.^2^96.^148.^~2~^~04/01/2013~
-~12065~^~208~^607.^0^^~4~^~NC~^^^^^^^^^^~11/01/2006~
-~12065~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~08/01/1999~
-~12065~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~08/01/1999~
-~12065~^~268~^2541.^0^^~4~^~NC~^^^^^^^^^^~11/01/2006~
-~12065~^~301~^291.^3^21.^~1~^~A~^^^1^247.^302.^2^199.^382.^~4~^~01/01/2001~
-~12065~^~304~^274.^3^7.^~1~^~A~^^^1^270.^288.^2^240.^307.^~4~^~01/01/2001~
-~12065~^~305~^466.^3^11.^~1~^~A~^^^1^460.^490.^2^414.^516.^~4~^~01/01/2001~
-~12065~^~306~^699.^3^14.^~1~^~A~^^^1^694.^730.^2^636.^761.^~4~^~01/01/2001~
-~12065~^~307~^1.^3^0.^~1~^~A~^^^1^1.^1.^2^0.^1.^~4~^~01/01/2001~
-~12065~^~318~^1.^1^^~1~^~AS~^^^^^^^^^^~05/01/2001~
-~12065~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2002~
-~12065~^~320~^0.^0^^~4~^~NC~^^^^^^^^^^~11/01/2006~
-~12065~^~321~^1.^1^^~1~^~A~^^^^^^^^^^~01/01/2001~
-~12065~^~322~^0.^1^^~1~^~A~^^^^^^^^^^~01/01/2001~
-~12065~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2009~
-~12065~^~334~^0.^0^^~4~^~BFZN~^~12061~^^^^^^^^^~11/01/2002~
-~12065~^~337~^0.^0^^~4~^~BFZN~^~12061~^^^^^^^^^~11/01/2002~
-~12065~^~338~^1.^0^^~4~^~BFZN~^~12061~^^^^^^^^^~11/01/2002~
-~12065~^~417~^27.^3^2.^~1~^~A~^^^1^26.^32.^2^16.^38.^~4~^~01/01/2001~
-~12065~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2001~
-~12065~^~432~^27.^3^2.^~1~^~A~^^^1^26.^32.^2^16.^38.^^~11/01/2006~
-~12065~^~435~^27.^0^^~4~^~NC~^^^^^^^^^^~11/01/2006~
-~12065~^~601~^0.^0^^~7~^~Z~^^^^^^^^^^~09/01/1984~
-~12065~^~636~^130.^1^^~1~^~A~^^^^^^^^^^~05/01/1999~
-~12065~^~638~^3.^1^^~1~^~A~^^^^^^^^^^~01/01/2001~
-~12065~^~639~^9.^1^^~1~^~A~^^^^^^^^^^~01/01/2001~
-~12065~^~641~^118.^1^^~1~^~A~^^^^^^^^^^~01/01/2001~
-~12071~^~208~^458.^0^^~4~^~NC~^^^^^^^^^^~12/01/1997~
-~12071~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2001~
-~12071~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2001~
-~12071~^~268~^1916.^0^^~4~^^^^^^^^^^^~12/01/2006~
-~12071~^~301~^172.^2^^~1~^~A~^^^^^^^^^^~02/01/1995~
-~12071~^~304~^130.^2^^~1~^~A~^^^^^^^^^^~02/01/1995~
-~12071~^~305~^258.^2^^~1~^~A~^^^^^^^^^^~02/01/1995~
-~12071~^~306~^314.^2^^~1~^~A~^^^^^^^^^^~02/01/1995~
-~12071~^~307~^9.^2^^~1~^~A~^^^^^^^^^^~09/01/1984~
-~12071~^~318~^0.^2^^~1~^~A~^^^^^^^^^^~11/01/2002~
-~12071~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2002~
-~12071~^~320~^0.^2^^~1~^~A~^^^^^^^^^^~11/01/2002~
-~12071~^~321~^0.^2^^~1~^~A~^^^^^^^^^^~11/01/2002~
-~12071~^~322~^0.^2^^~1~^~A~^^^^^^^^^^~11/01/2002~
-~12071~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2009~
-~12071~^~334~^0.^2^^~1~^~A~^^^^^^^^^^~11/01/2002~
-~12071~^~337~^0.^0^^~4~^~FLA~^^^^^^^^^^~11/01/2002~
-~12071~^~338~^1.^0^^~4~^~FLA~^^^^^^^^^^~11/01/2002~
-~12071~^~417~^73.^2^^~1~^~A~^^^^^^^^^^~02/01/1995~
-~12071~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~
-~12071~^~432~^73.^2^^~1~^~A~^^^^^^^^^^~12/01/2006~
-~12071~^~435~^73.^0^^~4~^~NC~^^^^^^^^^^~12/01/2006~
-~12071~^~601~^0.^0^^~7~^~Z~^^^^^^^^^^~09/01/1984~
-~12077~^~208~^576.^0^^~4~^~NC~^^^^^^^^^^~09/01/1984~
-~12077~^~268~^2410.^0^^~4~^^^^^^^^^^^
-~12077~^~301~^1.^1^^~1~^^^^^^^^^^^~09/01/1984~
-~12077~^~304~^0.^1^^~1~^^^^^^^^^^^~09/01/1984~
-~12077~^~305~^0.^1^^~1~^^^^^^^^^^^~09/01/1984~
-~12077~^~306~^1017.^0^^~4~^^^^^^^^^^^~09/01/1984~
-~12077~^~307~^38.^0^^~4~^^^^^^^^^^^~09/01/1984~
-~12077~^~318~^0.^0^^~4~^^^^^^^^^^^~09/01/1984~
-~12077~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2002~
-~12077~^~320~^0.^0^^~4~^^^^^^^^^^^~06/01/2002~
-~12077~^~417~^113.^0^^~4~^^^^^^^^^^^~09/01/1984~
-~12077~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~
-~12077~^~432~^113.^0^^~4~^^^^^^^^^^^~09/01/1984~
-~12077~^~435~^113.^0^^~4~^~NC~^^^^^^^^^^~01/01/2001~
-~12077~^~601~^0.^0^^~7~^~Z~^^^^^^^^^^~09/01/1984~
-~12078~^~208~^659.^0^^~4~^~NC~^^^^^^^^^^~04/01/2014~
-~12078~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~
-~12078~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~
-~12078~^~268~^2757.^0^^~4~^~NC~^^^^^^^^^^~04/01/2014~
-~12078~^~301~^160.^7^5.^~1~^~A~^^^2^137.^181.^4^143.^175.^~2, 3~^~02/01/2003~
-~12078~^~304~^376.^7^3.^~1~^~A~^^^2^361.^389.^3^363.^389.^~2, 3~^~02/01/2003~
-~12078~^~305~^725.^7^5.^~1~^~A~^^^2^696.^738.^3^706.^743.^~2, 3~^~02/01/2003~
-~12078~^~306~^659.^7^8.^~1~^~A~^^^2^623.^682.^5^635.^681.^~2, 3~^~02/01/2003~
-~12078~^~307~^3.^7^0.^~1~^~A~^^^2^2.^5.^3^2.^3.^~1, 2, 3~^~02/01/2003~
-~12078~^~318~^0.^1^^~1~^~A~^^^^^^^^^^~02/01/2003~
-~12078~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2002~
-~12078~^~320~^0.^1^^~1~^~A~^^^^^^^^^^~02/01/2003~
-~12078~^~321~^0.^1^^~1~^~A~^^^^^^^^^^~02/01/2003~
-~12078~^~322~^0.^1^^~1~^~A~^^^^^^^^^^~02/01/2003~
-~12078~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2009~
-~12078~^~334~^0.^1^^~1~^~A~^^^^^^^^^^~02/01/2003~
-~12078~^~337~^0.^1^^~1~^~A~^^^^^^^^^^~02/01/2003~
-~12078~^~338~^0.^1^^~1~^~A~^^^^^^^^^^~02/01/2003~
-~12078~^~417~^22.^4^2.^~1~^~A~^^^1^15.^26.^3^14.^29.^~2, 3~^~02/01/2003~
-~12078~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~
-~12078~^~432~^22.^4^2.^~1~^~A~^^^1^15.^26.^3^14.^29.^^~06/01/2006~
-~12078~^~435~^22.^0^^~4~^~NC~^^^^^^^^^^~06/01/2006~
-~12078~^~601~^0.^0^^~7~^~Z~^^^^^^^^^^~09/01/1984~
-~12078~^~638~^6.^7^0.^~1~^~A~^^^2^6.^6.^1^1.^10.^~2~^~05/01/2011~
-~12078~^~639~^2.^7^0.^~1~^~A~^^^2^1.^2.^1^-2.^5.^~2~^~05/01/2011~
-~12078~^~641~^64.^7^1.^~1~^~A~^^^2^62.^70.^1^43.^85.^~2~^~04/01/2014~
-~12084~^~208~^612.^0^^~4~^~NC~^^^^^^^^^^~09/01/1984~
-~12084~^~268~^2561.^0^^~4~^^^^^^^^^^^
-~12084~^~301~^53.^4^1.^~1~^^^^^^^^^^^~09/01/1984~
-~12084~^~304~^237.^4^15.^~1~^^^^^^^^^^^~09/01/1984~
-~12084~^~305~^446.^4^37.^~1~^^^^^^^^^^^~09/01/1984~
-~12084~^~306~^421.^4^16.^~1~^^^^^^^^^^^~09/01/1984~
-~12084~^~307~^1.^4^0.^~1~^^^^^^^^^^^~09/01/1984~
-~12084~^~318~^124.^0^^~4~^^^^^^^^^^^~09/01/1984~
-~12084~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2002~
-~12084~^~320~^6.^0^^~4~^^^^^^^^^^^~06/01/2002~
-~12084~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2009~
-~12084~^~417~^66.^0^^~4~^^^^^^^^^^^~09/01/1984~
-~12084~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~
-~12084~^~432~^66.^0^^~4~^^^^^^^^^^^~09/01/1984~
-~12084~^~435~^66.^0^^~4~^~NC~^^^^^^^^^^~01/01/2001~
-~12084~^~601~^0.^0^^~7~^~Z~^^^^^^^^^^~09/01/1984~
-~12085~^~208~^574.^0^^~4~^~NC~^^^^^^^^^^~09/01/1984~
-~12085~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~11/01/2002~
-~12085~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~11/01/2002~
-~12085~^~268~^2402.^0^^~4~^^^^^^^^^^^~11/01/2006~
-~12085~^~301~^45.^1^^~1~^^^^^^^^^^^~09/01/1984~
-~12085~^~304~^260.^1^^~1~^^^^^^^^^^^~09/01/1984~
-~12085~^~305~^490.^1^^~1~^^^^^^^^^^^~09/01/1984~
-~12085~^~306~^565.^2^^~1~^^^^^^^^^^^~09/01/1984~
-~12085~^~307~^16.^0^^~1~^^^^^^^^^^^~09/01/1984~
-~12085~^~318~^0.^0^^~1~^^^^^^^^^^^~09/01/1984~
-~12085~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2002~
-~12085~^~320~^0.^0^^~4~^~NC~^^^^^^^^^^~11/01/2006~
-~12085~^~321~^0.^0^^~4~^~BFZN~^~12086~^^^^^^^^^~11/01/2002~
-~12085~^~322~^0.^0^^~4~^~BFZN~^~12086~^^^^^^^^^~11/01/2002~
-~12085~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2009~
-~12085~^~334~^0.^0^^~4~^~BFZN~^~12086~^^^^^^^^^~11/01/2002~
-~12085~^~337~^0.^0^^~4~^~BFZN~^~12086~^^^^^^^^^~11/01/2002~
-~12085~^~338~^23.^0^^~4~^~BFZN~^~12086~^^^^^^^^^~11/01/2002~
-~12085~^~417~^69.^0^^~1~^^^^^^^^^^^~09/01/1984~
-~12085~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~
-~12085~^~432~^69.^0^^~1~^^^^^^^^^^^~11/01/2006~
-~12085~^~435~^69.^0^^~4~^~NC~^^^^^^^^^^~11/01/2006~
-~12085~^~601~^0.^0^^~7~^~Z~^^^^^^^^^^~09/01/1984~
-~12085~^~636~^158.^0^^~1~^^^^^^^^^^^~09/01/1984~
-~12086~^~208~^580.^0^^~4~^~NC~^^^^^^^^^^~04/01/2006~
-~12086~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2002~
-~12086~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2002~
-~12086~^~268~^2426.^0^^~4~^~NC~^^^^^^^^^^~04/01/2006~
-~12086~^~301~^43.^8^0.^~1~^~A~^^^3^30.^52.^2^40.^45.^~2~^~04/01/2002~
-~12086~^~304~^273.^8^16.^~1~^~A~^^^3^251.^328.^2^202.^343.^~2~^~04/01/2002~
-~12086~^~305~^531.^8^37.^~1~^~A~^^^3^479.^649.^2^371.^691.^~2~^~04/01/2002~
-~12086~^~306~^632.^8^20.^~1~^~A~^^^3^592.^686.^2^545.^718.^~2~^~04/01/2002~
-~12086~^~307~^13.^3^2.^~1~^~A~^^^1^10.^18.^2^3.^23.^~4~^~04/01/2002~
-~12086~^~318~^0.^8^0.^~1~^~A~^^^2^0.^0.^^^^~2, 3~^~04/01/2002~
-~12086~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2002~
-~12086~^~320~^0.^8^0.^~1~^~A~^^^2^0.^0.^^^^~2, 3~^~04/01/2002~
-~12086~^~321~^0.^8^0.^~1~^~A~^^^2^0.^0.^^^^~1, 2, 3~^~04/01/2002~
-~12086~^~322~^0.^8^0.^~1~^~A~^^^2^0.^0.^^^^~1, 2, 3~^~04/01/2002~
-~12086~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2009~
-~12086~^~334~^0.^8^0.^~1~^~A~^^^2^0.^0.^^^^~1, 2, 3~^~04/01/2002~
-~12086~^~337~^0.^8^0.^~1~^~A~^^^2^0.^0.^^^^~1, 2, 3~^~04/01/2002~
-~12086~^~338~^23.^8^1.^~1~^~AS~^^^2^18.^28.^6^18.^26.^~2, 3~^~04/01/2002~
-~12086~^~417~^25.^2^^~1~^~A~^^^2^24.^27.^^^^^~04/01/2002~
-~12086~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2002~
-~12086~^~432~^25.^2^^~1~^~A~^^^^^^^^^^~04/01/2006~
-~12086~^~435~^25.^0^^~4~^~NC~^^^^^^^^^^~04/01/2006~
-~12086~^~601~^0.^0^^~7~^~Z~^^^^^^^^^^~09/01/1984~
-~12086~^~638~^0.^4^0.^~1~^~A~^^^1^0.^0.^^^^~1, 2, 3~^~05/01/2011~
-~12086~^~639~^10.^4^0.^~1~^~A~^^^1^9.^12.^3^7.^12.^~2, 3~^~05/01/2011~
-~12086~^~641~^119.^4^2.^~1~^~A~^^^1^114.^124.^3^111.^125.^~2, 3~^~05/01/2011~
-~12087~^~208~^553.^0^^~4~^~NC~^^^^^^^^^^~03/01/2004~
-~12087~^~268~^2314.^0^^~4~^~NC~^^^^^^^^^^~03/01/2004~
-~12087~^~301~^37.^2^^~1~^~A~^^^1^33.^42.^1^^^^~03/01/2002~
-~12087~^~304~^292.^2^^~1~^~A~^^^1^289.^295.^1^^^^~03/01/2002~
-~12087~^~305~^593.^2^^~1~^~A~^^^1^565.^621.^1^^^^~03/01/2002~
-~12087~^~306~^660.^2^^~1~^~A~^^^1^659.^660.^1^^^^~03/01/2002~
-~12087~^~307~^12.^2^^~1~^~A~^^^1^10.^15.^1^^^^~03/01/2002~
-~12087~^~318~^0.^0^^~4~^~BFSN~^~12086~^^^^^^^^^~05/01/2002~
-~12087~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2002~
-~12087~^~320~^0.^0^^~4~^~BFSN~^~12086~^^^^^^^^^~05/01/2002~
-~12087~^~321~^0.^0^^~4~^~BFSN~^~12086~^^^^^^^^^~05/01/2002~
-~12087~^~322~^0.^0^^~4~^~BFSN~^~12086~^^^^^^^^^~05/01/2002~
-~12087~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2009~
-~12087~^~334~^0.^0^^~4~^~BFSN~^~12086~^^^^^^^^^~05/01/2002~
-~12087~^~337~^0.^0^^~4~^~BFSN~^~12086~^^^^^^^^^~05/01/2002~
-~12087~^~338~^22.^0^^~4~^~BFSN~^~12086~^^^^^^^^^~05/01/2002~
-~12087~^~417~^25.^0^^~4~^~BFSN~^~12086~^^^^^^^^^~05/01/2002~
-~12087~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2002~
-~12087~^~432~^25.^0^^~4~^~BFSN~^~12086~^^^^^^^^^~05/01/2002~
-~12087~^~435~^25.^0^^~4~^~NC~^^^^^^^^^^~03/01/2004~
-~12087~^~601~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2002~
-~12087~^~638~^0.^1^^~1~^~A~^^^^^^^^^~1~^~04/01/2013~
-~12087~^~639~^9.^1^^~1~^~A~^^^^^^^^^^~04/01/2013~
-~12087~^~641~^113.^1^^~1~^~A~^^^^^^^^^^~04/01/2013~
-~12088~^~208~^587.^0^^~4~^~NC~^^^^^^^^^^~09/01/1984~
-~12088~^~268~^2456.^0^^~4~^^^^^^^^^^^
-~12088~^~301~^43.^0^^~1~^^^^^^^^^^^~09/01/1984~
-~12088~^~304~^258.^0^^~1~^^^^^^^^^^^~09/01/1984~
-~12088~^~305~^457.^0^^~1~^^^^^^^^^^^~09/01/1984~
-~12088~^~306~^546.^0^^~1~^^^^^^^^^^^~09/01/1984~
-~12088~^~307~^15.^0^^~1~^^^^^^^^^^^~09/01/1984~
-~12088~^~318~^0.^0^^~1~^^^^^^^^^^^~09/01/1984~
-~12088~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2002~
-~12088~^~320~^0.^0^^~1~^^^^^^^^^^^~06/01/2002~
-~12088~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2009~
-~12088~^~417~^68.^0^^~1~^^^^^^^^^^^~09/01/1984~
-~12088~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~
-~12088~^~432~^68.^0^^~1~^^^^^^^^^^^~09/01/1984~
-~12088~^~435~^68.^0^^~4~^~NC~^^^^^^^^^^~01/01/2001~
-~12088~^~601~^0.^0^^~7~^~Z~^^^^^^^^^^~09/01/1984~
-~12093~^~208~^224.^0^^~4~^~NC~^^^^^^^^^^~09/01/1984~
-~12093~^~268~^937.^0^^~4~^^^^^^^^^^^
-~12093~^~301~^18.^2^^~1~^^^^^^^^^^^~09/01/1984~
-~12093~^~304~^84.^2^^~1~^^^^^^^^^^^~09/01/1984~
-~12093~^~305~^96.^2^^~1~^^^^^^^^^^^~09/01/1984~
-~12093~^~306~^447.^2^^~1~^^^^^^^^^^^~09/01/1984~
-~12093~^~307~^3.^2^^~1~^^^^^^^^^^^~09/01/1984~
-~12093~^~318~^202.^0^^~1~^^^^^^^^^^^~09/01/1984~
-~12093~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2002~
-~12093~^~320~^10.^0^^~1~^^^^^^^^^^^~06/01/2002~
-~12093~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2009~
-~12093~^~417~^68.^0^^~4~^^^^^^^^^^^~09/01/1984~
-~12093~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~
-~12093~^~432~^68.^0^^~4~^^^^^^^^^^^~09/01/1984~
-~12093~^~435~^68.^0^^~4~^~NC~^^^^^^^^^^~01/01/2001~
-~12093~^~601~^0.^0^^~7~^~Z~^^^^^^^^^^~09/01/1984~
-~12094~^~208~^363.^0^^~4~^~NC~^^^^^^^^^^~09/01/1984~
-~12094~^~268~^1519.^0^^~4~^^^^^^^^^^^
-~12094~^~301~^29.^0^^~1~^^^^^^^^^^^~09/01/1984~
-~12094~^~304~^137.^0^^~1~^^^^^^^^^^^~09/01/1984~
-~12094~^~305~^155.^0^^~1~^^^^^^^^^^^~09/01/1984~
-~12094~^~306~^726.^0^^~1~^^^^^^^^^^^~09/01/1984~
-~12094~^~307~^5.^0^^~1~^^^^^^^^^^^~09/01/1984~
-~12094~^~318~^328.^0^^~4~^^^^^^^^^^^~09/01/1984~
-~12094~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2002~
-~12094~^~320~^16.^0^^~4~^^^^^^^^^^^~06/01/2002~
-~12094~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2009~
-~12094~^~417~^110.^0^^~4~^^^^^^^^^^^~09/01/1984~
-~12094~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~
-~12094~^~432~^110.^0^^~4~^^^^^^^^^^^~09/01/1984~
-~12094~^~435~^110.^0^^~4~^~NC~^^^^^^^^^^~01/01/2001~
-~12094~^~601~^0.^0^^~7~^~Z~^^^^^^^^^^~09/01/1984~
-~12095~^~208~^153.^0^^~4~^~NC~^^^^^^^^^^~09/01/1984~
-~12095~^~268~^640.^0^^~4~^^^^^^^^^^^~06/01/2005~
-~12095~^~301~^12.^0^^~1~^^^^^^^^^^^~09/01/1984~
-~12095~^~304~^58.^0^^~1~^^^^^^^^^^^~09/01/1984~
-~12095~^~305~^66.^0^^~1~^^^^^^^^^^^~09/01/1984~
-~12095~^~306~^306.^0^^~1~^^^^^^^^^^^~09/01/1984~
-~12095~^~307~^2.^0^^~1~^^^^^^^^^^^~09/01/1984~
-~12095~^~318~^138.^0^^~4~^^^^^^^^^^^~09/01/1984~
-~12095~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2002~
-~12095~^~320~^7.^0^^~4~^^^^^^^^^^^~06/01/2002~
-~12095~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2009~
-~12095~^~417~^46.^0^^~4~^^^^^^^^^^^~09/01/1984~
-~12095~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~
-~12095~^~432~^46.^0^^~4~^^^^^^^^^^^~09/01/1984~
-~12095~^~435~^46.^0^^~4~^~NC~^^^^^^^^^^~06/01/2005~
-~12095~^~601~^0.^0^^~7~^~Z~^^^^^^^^^^~09/01/1984~
-~12096~^~208~^239.^0^^~4~^~NC~^^^^^^^^^^~09/01/1984~
-~12096~^~268~^1000.^0^^~4~^^^^^^^^^^^
-~12096~^~301~^19.^0^^~1~^^^^^^^^^^^~09/01/1984~
-~12096~^~304~^90.^0^^~1~^^^^^^^^^^^~09/01/1984~
-~12096~^~305~^102.^0^^~1~^^^^^^^^^^^~09/01/1984~
-~12096~^~306~^477.^0^^~1~^^^^^^^^^^^~09/01/1984~
-~12096~^~307~^4.^0^^~1~^^^^^^^^^^^~09/01/1984~
-~12096~^~318~^5.^0^^~1~^^^^^^^^^^^~09/01/1984~
-~12096~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2002~
-~12096~^~320~^0.^0^^~1~^^^^^^^^^^^~06/01/2002~
-~12096~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2009~
-~12096~^~417~^72.^0^^~4~^^^^^^^^^^^~09/01/1984~
-~12096~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~
-~12096~^~432~^72.^0^^~4~^^^^^^^^^^^~09/01/1984~
-~12096~^~435~^72.^0^^~4~^~NC~^^^^^^^^^^~01/01/2001~
-~12096~^~601~^0.^0^^~7~^~Z~^^^^^^^^^^~09/01/1984~
-~12097~^~208~^213.^0^^~4~^~NC~^^^^^^^^^^~09/01/1984~
-~12097~^~268~^891.^0^^~4~^^^^^^^^^^^
-~12097~^~301~^27.^4^0.^~1~^^^^^^^^^^^~09/01/1984~
-~12097~^~304~^32.^4^0.^~1~^^^^^^^^^^^~09/01/1984~
-~12097~^~305~^93.^4^7.^~1~^^^^^^^^^^^~09/01/1984~
-~12097~^~306~^518.^4^29.^~1~^^^^^^^^^^^~09/01/1984~
-~12097~^~307~^3.^4^0.^~1~^^^^^^^^^^^~09/01/1984~
-~12097~^~318~^28.^3^7.^~1~^^^^^^^^^^^~09/01/1984~
-~12097~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2002~
-~12097~^~320~^1.^3^0.^~1~^^^^^^^^^^^~06/01/2002~
-~12097~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2009~
-~12097~^~417~^62.^3^4.^~1~^^^^^^^^^^^~09/01/1984~
-~12097~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~
-~12097~^~432~^62.^3^4.^~1~^^^^^^^^^^^~09/01/1984~
-~12097~^~435~^62.^0^^~4~^~NC~^^^^^^^^^^~01/01/2001~
-~12097~^~601~^0.^0^^~7~^~Z~^^^^^^^^^^~09/01/1984~
-~12097~^~636~^22.^0^^~1~^^^^^^^^^^^~09/01/1984~
-~12098~^~208~^196.^0^^~4~^~NC~^^^^^^^^^^~09/01/1984~
-~12098~^~268~^820.^0^^~4~^^^^^^^^^^^
-~12098~^~301~^19.^1^^~1~^^^^^^^^^^^~09/01/1984~
-~12098~^~304~^30.^0^^~1~^^^^^^^^^^^~09/01/1984~
-~12098~^~305~^38.^1^^~1~^^^^^^^^^^^~09/01/1984~
-~12098~^~306~^484.^0^^~1~^^^^^^^^^^^~09/01/1984~
-~12098~^~307~^2.^0^^~1~^^^^^^^^^^^~09/01/1984~
-~12098~^~318~^26.^0^^~4~^^^^^^^^^^^~09/01/1984~
-~12098~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2002~
-~12098~^~320~^1.^0^^~4~^^^^^^^^^^^~06/01/2002~
-~12098~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2009~
-~12098~^~417~^58.^0^^~4~^^^^^^^^^^^~09/01/1984~
-~12098~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~
-~12098~^~432~^58.^0^^~4~^^^^^^^^^^^~09/01/1984~
-~12098~^~435~^58.^0^^~4~^~NC~^^^^^^^^^^~01/01/2001~
-~12098~^~601~^0.^0^^~7~^~Z~^^^^^^^^^^~09/01/1984~
-~12099~^~208~^374.^0^^~4~^~NC~^^^^^^^^^^~09/01/1984~
-~12099~^~268~^1565.^0^^~4~^^^^^^^^^^^
-~12099~^~301~^67.^2^^~1~^^^^^^^^^^^~09/01/1984~
-~12099~^~304~^74.^1^^~1~^^^^^^^^^^^~09/01/1984~
-~12099~^~305~^175.^2^^~1~^^^^^^^^^^^~09/01/1984~
-~12099~^~306~^986.^1^^~1~^^^^^^^^^^^~09/01/1984~
-~12099~^~307~^37.^1^^~1~^^^^^^^^^^^~09/01/1984~
-~12099~^~318~^0.^1^^~1~^^^^^^^^^^^~09/01/1984~
-~12099~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2002~
-~12099~^~320~^0.^1^^~1~^^^^^^^^^^^~06/01/2002~
-~12099~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2009~
-~12099~^~417~^109.^0^^~1~^^^^^^^^^^^~09/01/1984~
-~12099~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~
-~12099~^~432~^109.^0^^~1~^^^^^^^^^^^~09/01/1984~
-~12099~^~435~^109.^0^^~4~^~NC~^^^^^^^^^^~01/01/2001~
-~12099~^~601~^0.^0^^~7~^~Z~^^^^^^^^^^~09/01/1984~
-~12100~^~208~^369.^0^^~4~^~NC~^^^^^^^^^^~09/01/1984~
-~12100~^~268~^1544.^0^^~4~^^^^^^^^^^^
-~12100~^~301~^64.^1^^~1~^^^^^^^^^^^~09/01/1984~
-~12100~^~304~^74.^0^^~1~^^^^^^^^^^^~09/01/1984~
-~12100~^~305~^137.^1^^~1~^^^^^^^^^^^~09/01/1984~
-~12100~^~306~^991.^0^^~1~^^^^^^^^^^^~09/01/1984~
-~12100~^~307~^37.^0^^~1~^^^^^^^^^^^~09/01/1984~
-~12100~^~318~^0.^0^^~4~^^^^^^^^^^^~09/01/1984~
-~12100~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2002~
-~12100~^~320~^0.^0^^~4~^^^^^^^^^^^~06/01/2002~
-~12100~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2009~
-~12100~^~417~^110.^0^^~4~^^^^^^^^^^^~09/01/1984~
-~12100~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~
-~12100~^~432~^110.^0^^~4~^^^^^^^^^^^~09/01/1984~
-~12100~^~435~^110.^0^^~4~^~NC~^^^^^^^^^^~01/01/2001~
-~12100~^~601~^0.^0^^~7~^~Z~^^^^^^^^^^~09/01/1984~
-~12101~^~208~^131.^0^^~4~^~NC~^^^^^^^^^^~09/01/1984~
-~12101~^~268~^548.^0^^~4~^^^^^^^^^^^
-~12101~^~301~^46.^0^^~1~^^^^^^^^^^^~09/01/1984~
-~12101~^~304~^54.^0^^~1~^^^^^^^^^^^~09/01/1984~
-~12101~^~305~^99.^0^^~1~^^^^^^^^^^^~09/01/1984~
-~12101~^~306~^715.^0^^~1~^^^^^^^^^^^~09/01/1984~
-~12101~^~307~^27.^0^^~1~^^^^^^^^^^^~09/01/1984~
-~12101~^~318~^17.^0^^~4~^^^^^^^^^^^~09/01/1984~
-~12101~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2002~
-~12101~^~320~^1.^0^^~4~^^^^^^^^^^^~06/01/2002~
-~12101~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2009~
-~12101~^~417~^38.^0^^~4~^^^^^^^^^^^~09/01/1984~
-~12101~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~
-~12101~^~432~^38.^0^^~4~^^^^^^^^^^^~09/01/1984~
-~12101~^~435~^38.^0^^~4~^~NC~^^^^^^^^^^~01/01/2001~
-~12101~^~601~^0.^0^^~7~^~Z~^^^^^^^^^^~09/01/1984~
-~12104~^~208~^354.^0^^~4~^~NC~^^^^^^^^^^~09/01/1984~
-~12104~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~11/01/2000~
-~12104~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~11/01/2000~
-~12104~^~268~^1481.^0^^~4~^^^^^^^^^^^~11/01/2006~
-~12104~^~301~^14.^5^2.^~1~^^^^^^^^^^^~09/01/1984~
-~12104~^~304~^32.^2^^~1~^^^^^^^^^^^~09/01/1984~
-~12104~^~305~^113.^5^13.^~1~^^^^^^^^^^^~09/01/1984~
-~12104~^~306~^356.^2^^~1~^^^^^^^^^^^~09/01/1984~
-~12104~^~307~^20.^2^^~1~^^^^^^^^^^^~09/01/1984~
-~12104~^~318~^0.^1^^~1~^^^^^^^^^^^~09/01/1984~
-~12104~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2002~
-~12104~^~320~^0.^0^^~4~^~NC~^^^^^^^^^^~11/01/2006~
-~12104~^~321~^0.^0^^~4~^~BFFN~^~04047~^^^^^^^^^~11/01/2002~
-~12104~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~11/01/2002~
-~12104~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2009~
-~12104~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~11/01/2002~
-~12104~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~11/01/2002~
-~12104~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~11/01/2002~
-~12104~^~417~^26.^4^4.^~1~^^^^^^^^^^^~09/01/1984~
-~12104~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~
-~12104~^~432~^26.^4^4.^~1~^^^^^^^^^^^~11/01/2006~
-~12104~^~435~^26.^0^^~4~^~NC~^^^^^^^^^^~11/01/2006~
-~12104~^~601~^0.^0^^~7~^~Z~^^^^^^^^^^~09/01/1984~
-~12104~^~636~^47.^0^^~1~^^^^^^^^^^^~09/01/1984~
-~12108~^~208~^660.^0^^~4~^~NC~^^^^^^^^^^~09/01/1984~
-~12108~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~11/01/2002~
-~12108~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~11/01/2002~
-~12108~^~268~^2761.^0^^~4~^^^^^^^^^^^~11/01/2006~
-~12108~^~301~^26.^0^^~1~^^^^^^^^^^^~09/01/1984~
-~12108~^~304~^90.^0^^~1~^^^^^^^^^^^~09/01/1984~
-~12108~^~305~^206.^0^^~1~^^^^^^^^^^^~09/01/1984~
-~12108~^~306~^543.^0^^~1~^^^^^^^^^^^~09/01/1984~
-~12108~^~307~^37.^0^^~1~^^^^^^^^^^^~09/01/1984~
-~12108~^~318~^0.^0^^~1~^^^^^^^^^^^~09/01/1984~
-~12108~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2002~
-~12108~^~320~^0.^0^^~1~^^^^^^^^^^^~11/01/2006~
-~12108~^~321~^0.^0^^~4~^~BFSN~^~12104~^^^^^^^^^~11/01/2002~
-~12108~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~11/01/2002~
-~12108~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2009~
-~12108~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~11/01/2002~
-~12108~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~11/01/2002~
-~12108~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~11/01/2002~
-~12108~^~417~^9.^0^^~1~^^^^^^^^^^^~09/01/1984~
-~12108~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~
-~12108~^~432~^9.^0^^~1~^^^^^^^^^^^~11/01/2006~
-~12108~^~435~^9.^0^^~4~^~NC~^^^^^^^^^^~11/01/2006~
-~12108~^~601~^0.^0^^~7~^~Z~^^^^^^^^^^~09/01/1984~
-~12109~^~208~^456.^0^^~4~^~NC~^^^^^^^^^^~11/01/2006~
-~12109~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~11/01/2000~
-~12109~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~11/01/2000~
-~12109~^~268~^1908.^0^^~4~^~NC~^^^^^^^^^^~11/01/2006~
-~12109~^~301~^11.^3^0.^~1~^~A~^^^1^10.^12.^2^8.^13.^~2, 3~^~04/01/2006~
-~12109~^~304~^51.^3^0.^~1~^~A~^^^1^50.^53.^2^47.^55.^~2, 3~^~04/01/2006~
-~12109~^~305~^100.^3^2.^~1~^~A~^^^1^94.^104.^2^87.^112.^~2, 3~^~04/01/2006~
-~12109~^~306~^361.^3^17.^~1~^~A~^^^1^326.^380.^2^285.^436.^~2, 3~^~04/01/2006~
-~12109~^~307~^285.^3^25.^~1~^~A~^^^1^234.^318.^2^173.^395.^~2, 3~^~04/01/2006~
-~12109~^~318~^0.^0^^~1~^^^^^^^^^^^~09/01/1984~
-~12109~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2002~
-~12109~^~320~^0.^0^^~4~^~NC~^^^^^^^^^^~11/01/2006~
-~12109~^~321~^0.^0^^~4~^~BFSN~^~12104~^^^^^^^^^~11/01/2002~
-~12109~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~11/01/2002~
-~12109~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2009~
-~12109~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~11/01/2002~
-~12109~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~11/01/2002~
-~12109~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~11/01/2002~
-~12109~^~417~^3.^3^1.^~1~^~A~^^^1^2.^6.^2^-2.^9.^~2, 3~^~04/01/2006~
-~12109~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~11/01/2008~
-~12109~^~432~^3.^3^1.^~1~^~A~^^^1^2.^6.^2^-2.^9.^~2, 3~^~04/01/2006~
-~12109~^~435~^3.^0^^~4~^~NC~^^^^^^^^^^~11/01/2008~
-~12109~^~601~^0.^0^^~7~^~Z~^^^^^^^^^^~09/01/1984~
-~12110~^~208~^443.^0^^~4~^~NC~^^^^^^^^^^~09/01/1984~
-~12110~^~268~^1854.^0^^~4~^^^^^^^^^^^
-~12110~^~301~^14.^0^^~1~^^^^^^^^^^^~09/01/1984~
-~12110~^~304~^49.^0^^~1~^^^^^^^^^^^~09/01/1984~
-~12110~^~305~^103.^0^^~1~^^^^^^^^^^^~09/01/1984~
-~12110~^~306~^324.^0^^~1~^^^^^^^^^^^~09/01/1984~
-~12110~^~307~^20.^0^^~1~^^^^^^^^^^^~09/01/1984~
-~12110~^~318~^0.^0^^~1~^^^^^^^^^^^~09/01/1984~
-~12110~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2002~
-~12110~^~320~^0.^0^^~1~^^^^^^^^^^^~06/01/2002~
-~12110~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2009~
-~12110~^~417~^7.^0^^~4~^^^^^^^^^^^~09/01/1984~
-~12110~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~
-~12110~^~432~^7.^0^^~4~^^^^^^^^^^^~09/01/1984~
-~12110~^~435~^7.^0^^~4~^~NC~^^^^^^^^^^~01/01/2001~
-~12110~^~601~^0.^0^^~7~^~Z~^^^^^^^^^^~09/01/1984~
-~12114~^~208~^592.^0^^~4~^~NC~^^^^^^^^^^~09/01/1984~
-~12114~^~268~^2477.^0^^~4~^^^^^^^^^^^
-~12114~^~301~^27.^0^^~1~^^^^^^^^^^^~09/01/1984~
-~12114~^~304~^92.^0^^~1~^^^^^^^^^^^~09/01/1984~
-~12114~^~305~^211.^0^^~1~^^^^^^^^^^^~09/01/1984~
-~12114~^~306~^554.^0^^~1~^^^^^^^^^^^~09/01/1984~
-~12114~^~307~^37.^0^^~1~^^^^^^^^^^^~09/01/1984~
-~12114~^~318~^0.^0^^~4~^^^^^^^^^^^~09/01/1984~
-~12114~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2002~
-~12114~^~320~^0.^0^^~4~^^^^^^^^^^^~06/01/2002~
-~12114~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2009~
-~12114~^~417~^9.^0^^~4~^^^^^^^^^^^~09/01/1984~
-~12114~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~
-~12114~^~432~^9.^0^^~4~^^^^^^^^^^^~09/01/1984~
-~12114~^~435~^9.^0^^~4~^~NC~^^^^^^^^^^~01/01/2001~
-~12114~^~601~^0.^0^^~7~^~Z~^^^^^^^^^^~09/01/1984~
-~12115~^~208~^330.^0^^~4~^~NC~^^^^^^^^^^~09/01/1984~
-~12115~^~268~^1381.^0^^~4~^^^^^^^^^^^
-~12115~^~301~^11.^1^^~1~^^^^^^^^^^^~09/01/1984~
-~12115~^~304~^28.^0^^~4~^^^^^^^^^^^~09/01/1984~
-~12115~^~305~^122.^1^^~1~^^^^^^^^^^^~09/01/1984~
-~12115~^~306~^325.^0^^~1~^^^^^^^^^^^~09/01/1984~
-~12115~^~307~^4.^0^^~1~^^^^^^^^^^^~09/01/1984~
-~12115~^~318~^0.^1^^~1~^^^^^^^^^^^~09/01/1984~
-~12115~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2002~
-~12115~^~320~^0.^1^^~1~^^^^^^^^^^^~06/01/2002~
-~12115~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2009~
-~12115~^~417~^23.^0^^~4~^^^^^^^^^^^~09/01/1984~
-~12115~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~
-~12115~^~432~^23.^0^^~4~^^^^^^^^^^^~09/01/1984~
-~12115~^~435~^23.^0^^~4~^~NC~^^^^^^^^^^~01/01/2001~
-~12115~^~601~^0.^0^^~7~^~Z~^^^^^^^^^^~09/01/1984~
-~12116~^~208~^357.^0^^~4~^~NC~^^^^^^^^^^~05/01/2007~
-~12116~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~11/01/2002~
-~12116~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~11/01/2002~
-~12116~^~268~^1494.^0^^~4~^~NC~^^^^^^^^^^~05/01/2007~
-~12116~^~301~^4.^1^^~12~^~MA~^^^^^^^^^^~05/01/2007~
-~12116~^~304~^17.^0^^~4~^^^^^^^^^^^~09/01/1984~
-~12116~^~305~^22.^1^^~1~^^^^^^^^^^^~09/01/1984~
-~12116~^~306~^101.^1^^~1~^^^^^^^^^^^~09/01/1984~
-~12116~^~307~^36.^1^^~12~^~MA~^^^^^^^^^^~05/01/2007~
-~12116~^~318~^0.^0^^~4~^~NC~^^^^^^^^^^~05/01/2007~
-~12116~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2002~
-~12116~^~320~^0.^0^^~4~^~NC~^^^^^^^^^^~05/01/2007~
-~12116~^~321~^0.^1^^~12~^~MA~^^^^^^^^^^~05/01/2007~
-~12116~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~11/01/2002~
-~12116~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2009~
-~12116~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~11/01/2002~
-~12116~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~11/01/2002~
-~12116~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~11/01/2002~
-~12116~^~417~^14.^0^^~4~^^^^^^^^^^^~09/01/1984~
-~12116~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~
-~12116~^~432~^14.^0^^~4~^^^^^^^^^^^~05/01/2007~
-~12116~^~435~^14.^0^^~4~^~NC~^^^^^^^^^^~05/01/2007~
-~12116~^~601~^0.^0^^~7~^~Z~^^^^^^^^^^~09/01/1984~
-~12117~^~208~^230.^0^^~4~^~NC~^^^^^^^^^^~09/01/1984~
-~12117~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~11/01/2002~
-~12117~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~11/01/2002~
-~12117~^~268~^962.^0^^~4~^^^^^^^^^^^~02/01/2007~
-~12117~^~301~^16.^1^^~1~^^^^^^^^^^^~09/01/1984~
-~12117~^~304~^37.^1^^~1~^^^^^^^^^^^~09/01/1984~
-~12117~^~305~^100.^1^^~1~^^^^^^^^^^^~09/01/1984~
-~12117~^~306~^263.^0^^~1~^^^^^^^^^^^~09/01/1984~
-~12117~^~307~^15.^1^^~1~^^^^^^^^^^^~09/01/1984~
-~12117~^~318~^0.^1^^~1~^^^^^^^^^^^~09/01/1984~
-~12117~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2002~
-~12117~^~320~^0.^0^^~4~^~NC~^^^^^^^^^^~02/01/2007~
-~12117~^~321~^0.^0^^~4~^~BFSN~^~12104~^^^^^^^^^~11/01/2002~
-~12117~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~11/01/2002~
-~12117~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2009~
-~12117~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~11/01/2002~
-~12117~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~11/01/2002~
-~12117~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~11/01/2002~
-~12117~^~417~^16.^0^^~4~^^^^^^^^^^^~09/01/1984~
-~12117~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~
-~12117~^~432~^16.^0^^~4~^^^^^^^^^^^~02/01/2007~
-~12117~^~435~^16.^0^^~4~^~NC~^^^^^^^^^^~02/01/2007~
-~12117~^~601~^0.^0^^~7~^~Z~^^^^^^^^^^~09/01/1984~
-~12117~^~636~^1.^0^^~1~^^^^^^^^^^^~09/01/1984~
-~12118~^~208~^197.^0^^~4~^~NC~^^^^^^^^^^~09/01/1984~
-~12118~^~268~^824.^0^^~4~^^^^^^^^^^^~02/01/2007~
-~12118~^~301~^18.^1^^~1~^^^^^^^^^^^~09/01/1984~
-~12118~^~304~^46.^1^^~1~^^^^^^^^^^^~09/01/1984~
-~12118~^~305~^96.^1^^~1~^^^^^^^^^^^~09/01/1984~
-~12118~^~306~^220.^0^^~1~^^^^^^^^^^^~09/01/1984~
-~12118~^~307~^13.^0^^~1~^^^^^^^^^^^~09/01/1984~
-~12118~^~318~^0.^0^^~4~^^^^^^^^^^^~09/01/1984~
-~12118~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2002~
-~12118~^~320~^0.^0^^~1~^~AS~^^^^^^^^^^~02/01/2007~
-~12118~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2009~
-~12118~^~417~^14.^0^^~4~^^^^^^^^^^^~09/01/1984~
-~12118~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~
-~12118~^~432~^14.^0^^~4~^^^^^^^^^^^~02/01/2007~
-~12118~^~435~^14.^0^^~4~^~NC~^^^^^^^^^^~02/01/2007~
-~12118~^~601~^0.^0^^~7~^~Z~^^^^^^^^^^~09/01/1984~
-~12119~^~208~^19.^0^^~4~^~NC~^^^^^^^^^^~09/01/1984~
-~12119~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~11/01/2002~
-~12119~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~11/01/2002~
-~12119~^~268~^79.^0^^~4~^^^^^^^^^^^~02/01/2007~
-~12119~^~301~^24.^4^3.^~1~^^^^^^^^^^^~09/01/1984~
-~12119~^~304~^25.^1^^~1~^^^^^^^^^^^~09/01/1984~
-~12119~^~305~^20.^3^4.^~1~^^^^^^^^^^^~09/01/1984~
-~12119~^~306~^250.^1^^~1~^^^^^^^^^^^~09/01/1984~
-~12119~^~307~^105.^1^^~1~^^^^^^^^^^^~09/01/1984~
-~12119~^~318~^0.^1^^~1~^^^^^^^^^^^~09/01/1984~
-~12119~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2002~
-~12119~^~320~^0.^0^^~4~^~NC~^^^^^^^^^^~02/01/2007~
-~12119~^~321~^0.^0^^~4~^~BFSN~^~12104~^^^^^^^^^~11/01/2002~
-~12119~^~322~^0.^0^^~4~^~BFSN~^~12104~^^^^^^^^^~11/01/2002~
-~12119~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2009~
-~12119~^~334~^0.^0^^~4~^~BFSN~^~12104~^^^^^^^^^~11/01/2002~
-~12119~^~337~^0.^0^^~4~^~BFSN~^~12104~^^^^^^^^^~11/01/2002~
-~12119~^~338~^0.^0^^~4~^~BFSN~^~12104~^^^^^^^^^~11/01/2002~
-~12119~^~417~^3.^0^^~4~^^^^^^^^^^^~09/01/1984~
-~12119~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~
-~12119~^~432~^3.^0^^~4~^^^^^^^^^^^~02/01/2007~
-~12119~^~435~^3.^0^^~4~^~NC~^^^^^^^^^^~02/01/2007~
-~12119~^~601~^0.^0^^~7~^~Z~^^^^^^^^^^~09/01/1984~
-~12120~^~208~^628.^0^^~4~^~NC~^^^^^^^^^^~03/01/2006~
-~12120~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/1999~
-~12120~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/1999~
-~12120~^~268~^2629.^0^^~4~^~NC~^^^^^^^^^^~03/01/2006~
-~12120~^~301~^114.^4^1.^~1~^~A~^^^1^112.^117.^3^110.^117.^~4~^~12/01/2000~
-~12120~^~304~^163.^4^2.^~1~^~A~^^^1^159.^170.^3^155.^171.^~4~^~12/01/2000~
-~12120~^~305~^290.^4^5.^~1~^~A~^^^1^280.^300.^3^271.^308.^~4~^~12/01/2000~
-~12120~^~306~^680.^4^7.^~1~^~A~^^^1^668.^703.^3^654.^704.^~4~^~12/01/2000~
-~12120~^~307~^0.^4^0.^~1~^~A~^^^1^0.^1.^3^0.^0.^~4~^~12/01/2000~
-~12120~^~318~^20.^0^^~1~^~AS~^^^^^^^^^^~12/01/2002~
-~12120~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2002~
-~12120~^~320~^1.^0^^~1~^~AS~^^^^^^^^^^~12/01/2002~
-~12120~^~321~^11.^5^10.^~1~^~A~^^^2^0.^21.^1^-119.^140.^~1, 2~^~12/01/2002~
-~12120~^~322~^3.^5^3.^~1~^~A~^^^2^0.^6.^1^-35.^41.^~2~^~12/01/2002~
-~12120~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2009~
-~12120~^~334~^0.^4^0.^~1~^~A~^^^1^0.^0.^^^^~2, 3~^~12/01/2002~
-~12120~^~337~^0.^4^0.^~1~^~A~^^^1^0.^0.^^^^~2, 3~^~12/01/2002~
-~12120~^~338~^92.^4^9.^~1~^~A~^^^1^68.^115.^3^61.^122.^~2, 3~^~12/01/2002~
-~12120~^~417~^113.^4^1.^~1~^~A~^^^1^109.^116.^3^106.^118.^~4~^~12/01/2000~
-~12120~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2001~
-~12120~^~432~^113.^4^1.^~1~^~A~^^^1^109.^116.^3^106.^118.^^~03/01/2006~
-~12120~^~435~^113.^0^^~4~^~NC~^^^^^^^^^^~03/01/2006~
-~12120~^~601~^0.^0^^~7~^~Z~^^^^^^^^^^~09/01/1984~
-~12120~^~638~^1.^4^0.^~1~^~A~^^^1^1.^1.^3^1.^1.^~1, 2, 3~^~12/01/2000~
-~12120~^~639~^7.^4^0.^~1~^~A~^^^1^6.^7.^3^6.^6.^~2, 3~^~05/01/2011~
-~12120~^~641~^102.^4^1.^~1~^~A~^^^1^99.^105.^3^97.^106.^~2, 3~^~05/01/2011~
-~12121~^~208~^629.^0^^~4~^~NC~^^^^^^^^^^~12/01/2000~
-~12121~^~268~^2630.^0^^~4~^~NC~^^^^^^^^^^~12/01/2000~
-~12121~^~301~^149.^2^^~1~^~A~^^^1^147.^151.^^^^^~06/01/2001~
-~12121~^~304~^160.^2^^~1~^~A~^^^1^159.^161.^^^^^~06/01/2001~
-~12121~^~305~^310.^2^^~1~^~A~^^^1^310.^310.^^^^^~06/01/2001~
-~12121~^~306~^658.^2^^~1~^~A~^^^1^649.^667.^^^^^~06/01/2001~
-~12121~^~307~^0.^2^^~1~^~A~^^^1^0.^1.^^^^^~06/01/2001~
-~12121~^~318~^40.^1^^~1~^~AS~^^^^^^^^^^~06/01/2001~
-~12121~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2002~
-~12121~^~320~^2.^1^^~1~^~AS~^^^^^^^^^^~06/01/2002~
-~12121~^~321~^23.^1^^~1~^~A~^^^^^^^^^^~05/01/1999~
-~12121~^~322~^2.^1^^~1~^~A~^^^^^^^^^^~12/01/2000~
-~12121~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2009~
-~12121~^~417~^78.^2^^~1~^~A~^^^1^71.^85.^^^^^~06/01/2001~
-~12121~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~12/01/2000~
-~12121~^~432~^78.^2^^~1~^~A~^^^^^^^^^^~03/01/2001~
-~12121~^~435~^78.^0^^~4~^~NC~^^^^^^^^^^~06/01/2001~
-~12121~^~601~^0.^0^^~7~^~Z~^^^^^^^^^^~09/01/1984~
-~12121~^~636~^116.^2^^~1~^~A~^^^^^^^^^^~05/01/1999~
-~12121~^~638~^1.^1^^~1~^~A~^^^^^^^^^^~12/01/2000~
-~12121~^~639~^7.^1^^~1~^~A~^^^^^^^^^^~12/01/2000~
-~12121~^~641~^108.^1^^~1~^~A~^^^^^^^^^^~12/01/2000~
-~12122~^~208~^646.^0^^~4~^~NC~^^^^^^^^^^~04/01/2001~
-~12122~^~268~^2703.^0^^~4~^~NC~^^^^^^^^^^~04/01/2001~
-~12122~^~301~^123.^4^3.^~1~^~A~^^^1^113.^130.^3^110.^134.^~4~^~12/01/2000~
-~12122~^~304~^173.^4^6.^~1~^~A~^^^1^155.^182.^3^153.^191.^~4~^~12/01/2000~
-~12122~^~305~^310.^4^8.^~1~^~A~^^^1^290.^330.^3^284.^335.^~4~^~12/01/2000~
-~12122~^~306~^755.^4^13.^~1~^~A~^^^1^728.^781.^3^710.^799.^~4~^~12/01/2000~
-~12122~^~307~^0.^4^0.^~1~^~A~^^^1^0.^1.^3^0.^0.^~4~^~12/01/2000~
-~12122~^~318~^61.^1^^~1~^~A~^^^^^^^^^^~04/01/2001~
-~12122~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2002~
-~12122~^~320~^3.^1^^~1~^~A~^^^^^^^^^^~06/01/2002~
-~12122~^~321~^36.^1^^~1~^~A~^^^^^^^^^^~12/01/2000~
-~12122~^~322~^1.^1^^~1~^~A~^^^^^^^^^^~12/01/2000~
-~12122~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2009~
-~12122~^~417~^88.^4^5.^~1~^~A~^^^1^77.^102.^3^70.^104.^~4~^~12/01/2000~
-~12122~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2001~
-~12122~^~432~^88.^4^5.^~1~^~A~^^^^^^^^^^~04/01/2001~
-~12122~^~435~^88.^0^^~4~^~NC~^^^^^^^^^^~04/01/2001~
-~12122~^~601~^0.^0^^~7~^~Z~^^^^^^^^^^~09/01/1984~
-~12122~^~636~^110.^1^^~1~^~A~^^^^^^^^^^~05/01/1999~
-~12122~^~638~^1.^1^^~1~^~A~^^^^^^^^^^~12/01/2000~
-~12122~^~639~^6.^1^^~1~^~A~^^^^^^^^^^~12/01/2000~
-~12122~^~641~^103.^1^^~1~^~A~^^^^^^^^^^~12/01/2000~
-~12127~^~208~^182.^0^^~4~^~NC~^^^^^^^^^^~09/01/1984~
-~12127~^~268~^761.^0^^~4~^^^^^^^^^^^
-~12127~^~301~^2.^1^^~1~^^^^^^^^^^^~09/01/1984~
-~12127~^~304~^27.^0^^~1~^^^^^^^^^^^~09/01/1984~
-~12127~^~305~^124.^1^^~1~^^^^^^^^^^^~09/01/1984~
-~12127~^~306~^510.^0^^~1~^^^^^^^^^^^~09/01/1984~
-~12127~^~307~^7.^0^^~1~^^^^^^^^^^^~09/01/1984~
-~12127~^~318~^558.^1^^~1~^^^^^^^^^^^~09/01/1984~
-~12127~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2002~
-~12127~^~320~^28.^1^^~1~^^^^^^^^^^^~06/01/2002~
-~12127~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2009~
-~12127~^~417~^54.^0^^~4~^^^^^^^^^^^~09/01/1984~
-~12127~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~
-~12127~^~432~^54.^0^^~4~^^^^^^^^^^^~09/01/1984~
-~12127~^~435~^54.^0^^~4~^~NC~^^^^^^^^^^~01/01/2001~
-~12127~^~601~^0.^0^^~7~^~Z~^^^^^^^^^^~09/01/1984~
-~12128~^~208~^348.^0^^~4~^~NC~^^^^^^^^^^~09/01/1984~
-~12128~^~268~^1456.^0^^~4~^^^^^^^^^^^
-~12128~^~301~^20.^0^^~1~^^^^^^^^^^^~09/01/1984~
-~12128~^~304~^53.^0^^~1~^^^^^^^^^^^~09/01/1984~
-~12128~^~305~^269.^0^^~1~^^^^^^^^^^^~09/01/1984~
-~12128~^~306~^998.^0^^~1~^^^^^^^^^^^~09/01/1984~
-~12128~^~307~^13.^0^^~1~^^^^^^^^^^^~09/01/1984~
-~12128~^~318~^1091.^0^^~1~^^^^^^^^^^^~09/01/1984~
-~12128~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2002~
-~12128~^~320~^55.^0^^~1~^^^^^^^^^^^~06/01/2002~
-~12128~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2009~
-~12128~^~417~^106.^0^^~4~^^^^^^^^^^^~09/01/1984~
-~12128~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~
-~12128~^~432~^106.^0^^~4~^^^^^^^^^^^~09/01/1984~
-~12128~^~435~^106.^0^^~4~^~NC~^^^^^^^^^^~01/01/2001~
-~12128~^~601~^0.^0^^~7~^~Z~^^^^^^^^^^~09/01/1984~
-~12129~^~208~^111.^0^^~4~^~NC~^^^^^^^^^^~09/01/1984~
-~12129~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~11/01/2000~
-~12129~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~11/01/2000~
-~12129~^~268~^464.^0^^~4~^^^^^^^^^^^
-~12129~^~301~^4.^1^^~1~^^^^^^^^^^^~09/01/1984~
-~12129~^~304~^16.^1^^~1~^^^^^^^^^^^~09/01/1984~
-~12129~^~305~^54.^1^^~1~^^^^^^^^^^^~09/01/1984~
-~12129~^~306~^180.^1^^~1~^^^^^^^^^^^~09/01/1984~
-~12129~^~307~^307.^1^^~1~^^^^^^^^^^^~09/01/1984~
-~12129~^~318~^337.^0^^~4~^^^^^^^^^^^~09/01/1984~
-~12129~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2002~
-~12129~^~320~^17.^0^^~4~^^^^^^^^^^^~06/01/2002~
-~12129~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2009~
-~12129~^~417~^33.^0^^~4~^^^^^^^^^^^~09/01/1984~
-~12129~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~
-~12129~^~432~^33.^0^^~4~^^^^^^^^^^^~11/01/2000~
-~12129~^~435~^33.^0^^~4~^~NC~^^^^^^^^^^~01/01/2001~
-~12129~^~601~^0.^0^^~7~^~Z~^^^^^^^^^^~09/01/1984~
-~12130~^~208~^657.^0^^~4~^~NC~^^^^^^^^^^~09/01/1984~
-~12130~^~268~^2749.^0^^~4~^^^^^^^^^^^
-~12130~^~301~^61.^8^4.^~1~^^^^^^^^^^^~09/01/1984~
-~12130~^~304~^173.^8^7.^~1~^^^^^^^^^^^~09/01/1984~
-~12130~^~305~^336.^8^18.^~1~^^^^^^^^^^^~09/01/1984~
-~12130~^~306~^436.^8^26.^~1~^^^^^^^^^^^~09/01/1984~
-~12130~^~307~^1.^8^0.^~1~^^^^^^^^^^^~09/01/1984~
-~12130~^~318~^131.^0^^~4~^^^^^^^^^^^~09/01/1984~
-~12130~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2002~
-~12130~^~320~^7.^0^^~4~^^^^^^^^^^^~06/01/2002~
-~12130~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2009~
-~12130~^~417~^40.^0^^~4~^^^^^^^^^^^~09/01/1984~
-~12130~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~
-~12130~^~432~^40.^0^^~4~^^^^^^^^^^^~09/01/1984~
-~12130~^~435~^40.^0^^~4~^~NC~^^^^^^^^^^~01/01/2001~
-~12130~^~601~^0.^0^^~7~^~Z~^^^^^^^^^^~09/01/1984~
-~12131~^~208~^718.^0^^~4~^~NC~^^^^^^^^^^~05/01/2001~
-~12131~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2001~
-~12131~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~07/01/1999~
-~12131~^~268~^3004.^0^^~4~^~NC~^^^^^^^^^^~05/01/2001~
-~12131~^~301~^85.^3^11.^~1~^~A~^^^1^78.^109.^2^36.^133.^~4~^~12/01/2000~
-~12131~^~304~^130.^3^50.^~1~^~A~^^^1^114.^246.^2^-88.^348.^~4~^~12/01/2000~
-~12131~^~305~^188.^3^11.^~1~^~A~^^^1^170.^203.^2^137.^237.^~4~^~12/01/2000~
-~12131~^~306~^368.^3^10.^~1~^~A~^^^1^353.^382.^2^324.^411.^~4~^~12/01/2000~
-~12131~^~307~^5.^3^1.^~1~^~A~^^^1^3.^6.^2^0.^9.^~4~^~12/01/2000~
-~12131~^~318~^0.^0^^~4~^~BFZN~^~12132~^^^^^^^^^~05/01/2001~
-~12131~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2002~
-~12131~^~320~^0.^0^^~4~^~BFZN~^^^^^^^^^^~06/01/2002~
-~12131~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2009~
-~12131~^~417~^11.^3^1.^~1~^~A~^^^1^9.^13.^2^5.^17.^~4~^~12/01/2000~
-~12131~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2001~
-~12131~^~432~^11.^3^1.^~1~^~A~^^^^^^^^^^~05/01/2001~
-~12131~^~435~^11.^0^^~4~^~NC~^^^^^^^^^^~05/01/2001~
-~12131~^~601~^0.^0^^~7~^~Z~^^^^^^^^^^~09/01/1984~
-~12131~^~636~^116.^1^^~1~^~A~^^^^^^^^^^~07/01/1999~
-~12131~^~638~^0.^1^^~1~^~A~^^^^^^^^^^~12/01/2000~
-~12131~^~639~^8.^1^^~1~^~A~^^^^^^^^^^~12/01/2000~
-~12131~^~641~^108.^1^^~1~^~A~^^^^^^^^^^~12/01/2000~
-~12132~^~208~^718.^0^^~4~^~NC~^^^^^^^^^^~04/01/2006~
-~12132~^~268~^3005.^0^^~4~^~NC~^^^^^^^^^^~04/01/2006~
-~12132~^~301~^70.^4^14.^~1~^~A~^^^1^55.^112.^3^23.^116.^~4~^~12/01/2000~
-~12132~^~304~^118.^4^2.^~1~^~A~^^^1^114.^122.^3^111.^125.^~4~^~12/01/2000~
-~12132~^~305~^198.^4^6.^~1~^~A~^^^1^188.^214.^3^178.^218.^~4~^~12/01/2000~
-~12132~^~306~^363.^4^14.^~1~^~A~^^^1^343.^405.^3^318.^407.^~4~^~12/01/2000~
-~12132~^~307~^4.^4^0.^~1~^~A~^^^1^3.^6.^3^2.^6.^~4~^~12/01/2000~
-~12132~^~318~^0.^0^^~1~^~AS~^^^^^^^^^^~04/01/2006~
-~12132~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2002~
-~12132~^~320~^0.^0^^~1~^~AS~^^^^^^^^^^~04/01/2006~
-~12132~^~321~^0.^8^0.^~1~^~A~^^^2^0.^0.^^^^~1, 2, 3~^~04/01/2006~
-~12132~^~322~^0.^8^0.^~1~^~A~^^^2^0.^0.^^^^~1, 2, 3~^~04/01/2006~
-~12132~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2009~
-~12132~^~334~^0.^8^0.^~1~^~A~^^^2^0.^0.^^^^~1, 2, 3~^~04/01/2006~
-~12132~^~337~^0.^8^0.^~1~^~A~^^^2^0.^0.^^^^~1, 2, 3~^~04/01/2006~
-~12132~^~338~^0.^8^0.^~1~^~A~^^^2^0.^0.^^^^~1, 2, 3~^~04/01/2006~
-~12132~^~417~^10.^4^0.^~1~^~A~^^^1^8.^12.^3^6.^12.^~4~^~12/01/2000~
-~12132~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~12/01/2000~
-~12132~^~432~^10.^4^0.^~1~^~A~^^^1^8.^12.^3^6.^12.^^~04/01/2006~
-~12132~^~435~^10.^0^^~4~^~NC~^^^^^^^^^^~04/01/2007~
-~12132~^~601~^0.^0^^~7~^~Z~^^^^^^^^^^~07/01/1999~
-~12132~^~638~^0.^4^0.^~1~^~A~^^^1^0.^0.^^^^~1, 2, 3~^~12/01/2000~
-~12132~^~639~^10.^4^0.^~1~^~A~^^^1^9.^10.^3^9.^9.^~2, 3~^~05/01/2011~
-~12132~^~641~^145.^4^2.^~1~^~A~^^^1^141.^151.^3^137.^151.^~2, 3~^~05/01/2011~
-~12135~^~208~^607.^0^^~4~^~NC~^^^^^^^^^^~06/01/2015~
-~12135~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2015~
-~12135~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2015~
-~12135~^~268~^2538.^0^^~4~^~NC~^^^^^^^^^^~06/01/2015~
-~12135~^~301~^87.^1^^~1~^~A~^^^^^^^^^^~06/01/2015~
-~12135~^~304~^227.^1^^~1~^~A~^^^^^^^^^^~06/01/2015~
-~12135~^~305~^438.^1^^~1~^~A~^^^^^^^^^^~06/01/2015~
-~12135~^~306~^643.^1^^~1~^~A~^^^^^^^^^^~06/01/2015~
-~12135~^~307~^4.^1^^~1~^~A~^^^^^^^^^~1~^~06/01/2015~
-~12135~^~318~^4.^0^^~4~^~NC~^^^^^^^^^^~06/01/2015~
-~12135~^~319~^0.^0^^~4~^~RA~^^^^^^^^^^~06/01/2015~
-~12135~^~320~^0.^0^^~4~^~NC~^^^^^^^^^^~06/01/2015~
-~12135~^~321~^2.^0^^~4~^~RA~^^^^^^^^^^~06/01/2015~
-~12135~^~322~^0.^0^^~4~^~RA~^^^^^^^^^^~06/01/2015~
-~12135~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2009~
-~12135~^~334~^0.^0^^~4~^~RA~^^^^^^^^^^~06/01/2015~
-~12135~^~337~^0.^0^^~4~^~RA~^^^^^^^^^^~06/01/2015~
-~12135~^~338~^19.^0^^~4~^~RA~^^^^^^^^^^~06/01/2015~
-~12135~^~417~^60.^1^^~1~^~A~^^^^^^^^^^~06/01/2015~
-~12135~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~
-~12135~^~432~^60.^1^^~1~^~A~^^^^^^^^^^~06/01/2015~
-~12135~^~435~^60.^0^^~4~^~NC~^^^^^^^^^^~06/01/2015~
-~12135~^~601~^0.^0^^~7~^~Z~^^^^^^^^^^~09/01/1984~
-~12136~^~208~^572.^0^^~4~^~NC~^^^^^^^^^^~03/01/2016~
-~12136~^~268~^2395.^0^^~4~^~NC~^^^^^^^^^^~03/01/2016~
-~12136~^~301~^129.^2^^~1~^~A~^^^1^122.^135.^1^^^^~06/01/2015~
-~12136~^~304~^209.^2^^~1~^~A~^^^1^206.^212.^1^^^^~06/01/2015~
-~12136~^~305~^493.^2^^~1~^~A~^^^1^480.^506.^1^^^^~06/01/2015~
-~12136~^~306~^758.^2^^~1~^~A~^^^1^742.^774.^1^^^^~06/01/2015~
-~12136~^~307~^232.^2^^~1~^~A~^^^1^219.^245.^1^^^^~06/01/2015~
-~12136~^~318~^90.^0^^~1~^~AS~^^^^^^^^^^~07/01/2015~
-~12136~^~320~^4.^0^^~1~^~AS~^^^^^^^^^^~07/01/2015~
-~12136~^~321~^54.^1^^~1~^~A~^^^^^^^^^^~07/01/2015~
-~12136~^~322~^0.^1^^~1~^~A~^^^^^^^^^~1~^~07/01/2015~
-~12136~^~334~^0.^1^^~1~^~A~^^^^^^^^^~1~^~07/01/2015~
-~12136~^~337~^0.^1^^~1~^~A~^^^^^^^^^~1~^~07/01/2015~
-~12136~^~338~^233.^1^^~1~^~A~^^^^^^^^^^~07/01/2015~
-~12136~^~417~^60.^2^^~1~^~A~^^^1^60.^60.^1^^^^~06/01/2015~
-~12136~^~432~^60.^2^^~1~^~A~^^^^^^^^^^~06/01/2015~
-~12137~^~208~^607.^0^^~4~^~NC~^^^^^^^^^^~05/01/2011~
-~12137~^~268~^2539.^0^^~4~^~NC~^^^^^^^^^^~05/01/2011~
-~12137~^~301~^117.^10^2.^~1~^~A~^^^1^106.^130.^9^111.^123.^~2, 3~^~05/01/2011~
-~12137~^~304~^229.^10^2.^~1~^~A~^^^1^212.^236.^9^224.^234.^~2, 3~^~05/01/2011~
-~12137~^~305~^456.^10^3.^~1~^~A~^^^1^438.^469.^9^447.^464.^~2, 3~^~05/01/2011~
-~12137~^~306~^632.^10^7.^~1~^~A~^^^1^594.^662.^9^615.^648.^~2, 3~^~05/01/2011~
-~12137~^~307~^5.^0^^~4~^~RA~^^^^^^^^^^~05/01/2011~
-~12137~^~318~^3.^0^^~4~^~RA~^^^^^^^^^^~05/01/2011~
-~12137~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2002~
-~12137~^~320~^0.^0^^~4~^~RA~^^^^^^^^^^~05/01/2011~
-~12137~^~321~^2.^0^^~4~^~RA~^^^^^^^^^^~05/01/2011~
-~12137~^~322~^0.^0^^~4~^~RA~^^^^^^^^^^~05/01/2011~
-~12137~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2009~
-~12137~^~334~^0.^0^^~4~^~RA~^^^^^^^^^^~05/01/2011~
-~12137~^~337~^0.^0^^~4~^~RA~^^^^^^^^^^~05/01/2011~
-~12137~^~338~^8.^0^^~4~^~RA~^^^^^^^^^^~05/01/2011~
-~12137~^~417~^83.^0^^~1~^^^^^^^^^^^~09/01/1984~
-~12137~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~
-~12137~^~432~^83.^0^^~1~^^^^^^^^^^^~09/01/1984~
-~12137~^~435~^83.^0^^~4~^~NC~^^^^^^^^^^~01/01/2001~
-~12137~^~601~^0.^0^^~7~^~Z~^^^^^^^^^^~09/01/1984~
-~12138~^~208~^615.^0^^~4~^~NC~^^^^^^^^^^~09/01/1984~
-~12138~^~268~^2573.^0^^~4~^^^^^^^^^^^
-~12138~^~301~^106.^0^^~1~^^^^^^^^^^^~09/01/1984~
-~12138~^~304~^251.^0^^~1~^^^^^^^^^^^~09/01/1984~
-~12138~^~305~^449.^0^^~1~^^^^^^^^^^^~09/01/1984~
-~12138~^~306~^544.^0^^~1~^^^^^^^^^^^~09/01/1984~
-~12138~^~307~^11.^0^^~1~^^^^^^^^^^^~09/01/1984~
-~12138~^~318~^20.^0^^~1~^^^^^^^^^^^~09/01/1984~
-~12138~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2002~
-~12138~^~320~^1.^0^^~1~^^^^^^^^^^^~06/01/2002~
-~12138~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2009~
-~12138~^~417~^56.^0^^~1~^^^^^^^^^^^~09/01/1984~
-~12138~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~
-~12138~^~432~^56.^0^^~1~^^^^^^^^^^^~09/01/1984~
-~12138~^~435~^56.^0^^~4~^~NC~^^^^^^^^^^~01/01/2001~
-~12138~^~601~^0.^0^^~7~^~Z~^^^^^^^^^^~09/01/1984~
-~12140~^~208~^622.^0^^~4~^~NC~^^^^^^^^^^~09/01/1984~
-~12140~^~268~^2602.^0^^~4~^^^^^^^^^^^
-~12140~^~301~^26.^1^^~1~^^^^^^^^^^^~09/01/1984~
-~12140~^~304~^58.^0^^~4~^^^^^^^^^^^~09/01/1984~
-~12140~^~305~^371.^1^^~1~^^^^^^^^^^^~09/01/1984~
-~12140~^~306~^318.^1^^~1~^^^^^^^^^^^~09/01/1984~
-~12140~^~307~^505.^1^^~1~^^^^^^^^^^^~09/01/1984~
-~12140~^~318~^1.^0^^~4~^^^^^^^^^^^~09/01/1984~
-~12140~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2002~
-~12140~^~320~^0.^0^^~4~^^^^^^^^^^^~06/01/2002~
-~12140~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2009~
-~12140~^~417~^142.^0^^~4~^^^^^^^^^^^~09/01/1984~
-~12140~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~
-~12140~^~432~^142.^0^^~4~^^^^^^^^^^^~09/01/1984~
-~12140~^~435~^142.^0^^~4~^~NC~^^^^^^^^^^~01/01/2001~
-~12140~^~601~^0.^0^^~7~^~Z~^^^^^^^^^^~09/01/1984~
-~12141~^~208~^608.^0^^~4~^~NC~^^^^^^^^^^~03/01/2016~
-~12141~^~268~^2544.^0^^~4~^~NC~^^^^^^^^^^~03/01/2016~
-~12141~^~301~^106.^1^^~1~^~A~^^^^^^^^^^~06/01/2015~
-~12141~^~304~^202.^1^^~1~^~A~^^^^^^^^^^~06/01/2015~
-~12141~^~305~^412.^1^^~1~^~A~^^^^^^^^^^~06/01/2015~
-~12141~^~306~^585.^1^^~1~^~A~^^^^^^^^^^~06/01/2015~
-~12141~^~307~^113.^1^^~1~^~A~^^^^^^^^^^~06/01/2015~
-~12141~^~417~^60.^1^^~1~^~A~^^^^^^^^^^~03/01/2016~
-~12141~^~432~^60.^1^^~1~^~A~^^^^^^^^^^~03/01/2016~
-~12142~^~208~^691.^0^^~4~^~NC~^^^^^^^^^^~03/01/2006~
-~12142~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/1999~
-~12142~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/1999~
-~12142~^~268~^2889.^0^^~4~^~NC~^^^^^^^^^^~03/01/2006~
-~12142~^~301~^70.^3^4.^~1~^~A~^^^1^65.^80.^2^49.^90.^~4~^~01/01/2001~
-~12142~^~304~^121.^3^4.^~1~^~A~^^^1^113.^127.^2^103.^138.^~4~^~01/01/2001~
-~12142~^~305~^277.^3^17.^~1~^~A~^^^1^250.^310.^2^200.^352.^~4~^~01/01/2001~
-~12142~^~306~^410.^3^17.^~1~^~A~^^^1^387.^444.^2^336.^484.^~4~^~01/01/2001~
-~12142~^~307~^0.^3^0.^~1~^~A~^^^1^0.^0.^2^0.^0.^~4~^~01/01/2001~
-~12142~^~318~^56.^0^^~1~^~AS~^^^^^^^^^^~03/01/2006~
-~12142~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2002~
-~12142~^~320~^3.^0^^~1~^~AS~^^^^^^^^^^~03/01/2006~
-~12142~^~321~^29.^9^1.^~1~^~A~^^^3^6.^46.^1^15.^43.^~1, 2~^~09/01/2002~
-~12142~^~322~^0.^9^0.^~1~^~A~^^^3^0.^0.^^^^~1, 2~^~09/01/2002~
-~12142~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2009~
-~12142~^~334~^9.^8^1.^~1~^~A~^^^2^0.^14.^3^3.^14.^~1, 2, 3~^~09/01/2002~
-~12142~^~337~^0.^8^0.^~1~^~A~^^^2^0.^0.^^^^~1, 2, 3~^~09/01/2002~
-~12142~^~338~^17.^8^1.^~1~^~A~^^^2^10.^23.^6^13.^21.^~2, 3~^~09/01/2002~
-~12142~^~417~^22.^3^3.^~1~^~A~^^^1^14.^27.^2^5.^38.^~4~^~01/01/2001~
-~12142~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~
-~12142~^~432~^22.^3^3.^~1~^~A~^^^1^14.^27.^2^5.^38.^^~03/01/2006~
-~12142~^~435~^22.^0^^~4~^~NC~^^^^^^^^^^~06/01/2006~
-~12142~^~601~^0.^0^^~7~^~Z~^^^^^^^^^^~09/01/1984~
-~12142~^~638~^3.^3^0.^~1~^~A~^^^1^2.^3.^2^1.^3.^~2, 3~^~01/01/2001~
-~12142~^~639~^6.^3^0.^~1~^~A~^^^1^5.^7.^2^3.^8.^~2, 3~^~05/01/2011~
-~12142~^~641~^117.^3^0.^~1~^~A~^^^1^117.^117.^2^116.^118.^~2, 3~^~05/01/2011~
-~12143~^~208~^710.^0^^~4~^~NC~^^^^^^^^^^~03/01/2001~
-~12143~^~268~^2969.^0^^~4~^~NC~^^^^^^^^^^~03/01/2001~
-~12143~^~301~^72.^3^10.^~1~^~A~^^^1^62.^93.^2^27.^116.^~4~^~01/01/2001~
-~12143~^~304~^132.^3^6.^~1~^~A~^^^1^121.^142.^2^106.^158.^~4~^~01/01/2001~
-~12143~^~305~^293.^3^20.^~1~^~A~^^^1^260.^330.^2^206.^380.^~4~^~01/01/2001~
-~12143~^~306~^424.^3^32.^~1~^~A~^^^1^390.^489.^2^284.^563.^~4~^~01/01/2001~
-~12143~^~307~^1.^3^0.^~1~^~A~^^^1^0.^1.^2^0.^0.^~4~^~01/01/2001~
-~12143~^~318~^140.^1^^~1~^~AS~^^^^^^^^^^~03/01/2001~
-~12143~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2002~
-~12143~^~320~^7.^1^^~1~^~AS~^^^^^^^^^^~06/01/2002~
-~12143~^~321~^84.^1^^~1~^~A~^^^^^^^^^^~06/01/1999~
-~12143~^~322~^0.^1^^~1~^~A~^^^^^^^^^^~06/01/1999~
-~12143~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2009~
-~12143~^~417~^16.^3^4.^~1~^~A~^^^1^9.^25.^2^-4.^35.^~4~^~01/01/2001~
-~12143~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~
-~12143~^~432~^16.^3^4.^~1~^~A~^^^^^^^^^^~03/01/2001~
-~12143~^~435~^16.^0^^~4~^~NC~^^^^^^^^^^~03/01/2001~
-~12143~^~601~^0.^0^^~7~^~Z~^^^^^^^^^^~09/01/1984~
-~12143~^~636~^85.^1^^~1~^~A~^^^^^^^^^^~05/01/1999~
-~12143~^~638~^2.^1^^~1~^~A~^^^^^^^^^^~03/01/2001~
-~12143~^~639~^4.^1^^~1~^~A~^^^^^^^^^^~03/01/2001~
-~12143~^~641~^78.^1^^~1~^~A~^^^^^^^^^^~03/01/2001~
-~12144~^~208~^715.^0^^~4~^~NC~^^^^^^^^^^~03/01/2001~
-~12144~^~268~^2990.^0^^~4~^~NC~^^^^^^^^^^~03/01/2001~
-~12144~^~301~^67.^3^6.^~1~^~A~^^^1^60.^80.^2^40.^94.^~4~^~01/01/2001~
-~12144~^~304~^121.^3^4.^~1~^~A~^^^1^114.^129.^2^102.^139.^~4~^~01/01/2001~
-~12144~^~305~^263.^3^18.^~1~^~A~^^^1^240.^300.^2^183.^343.^~4~^~01/01/2001~
-~12144~^~306~^392.^3^6.^~1~^~A~^^^1^380.^402.^2^364.^420.^~4~^~01/01/2001~
-~12144~^~307~^1.^3^0.^~1~^~A~^^^1^0.^2.^2^-1.^3.^~4~^~01/01/2001~
-~12144~^~318~^104.^1^^~1~^~AS~^^^^^^^^^^~03/01/2001~
-~12144~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2002~
-~12144~^~320~^5.^1^^~1~^~AS~^^^^^^^^^^~06/01/2002~
-~12144~^~321~^62.^1^^~1~^~A~^^^^^^^^^^~06/01/1999~
-~12144~^~322~^0.^1^^~1~^~A~^^^^^^^^^^~06/01/1999~
-~12144~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2009~
-~12144~^~417~^15.^3^1.^~1~^~A~^^^1^13.^18.^2^8.^20.^~4~^~01/01/2001~
-~12144~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~
-~12144~^~432~^15.^3^1.^~1~^~A~^^^^^^^^^^~03/01/2001~
-~12144~^~435~^15.^0^^~4~^~NC~^^^^^^^^^^~03/01/2001~
-~12144~^~601~^0.^0^^~7~^~Z~^^^^^^^^^^~09/01/1984~
-~12144~^~636~^108.^1^^~1~^~A~^^^^^^^^^^~05/01/1999~
-~12144~^~638~^5.^1^^~1~^~A~^^^^^^^^^^~03/01/2001~
-~12144~^~639~^7.^1^^~1~^~A~^^^^^^^^^^~03/01/2001~
-~12144~^~641~^96.^1^^~1~^~A~^^^^^^^^^^~03/01/2001~
-~12145~^~208~^719.^0^^~4~^~NC~^^^^^^^^^^~09/01/1984~
-~12145~^~268~^3008.^0^^~4~^^^^^^^^^^^~08/01/2009~
-~12145~^~301~^145.^0^^~1~^^^^^^^^^^^~09/01/1984~
-~12145~^~304~^302.^0^^~4~^^^^^^^^^^^~09/01/1984~
-~12145~^~305~^575.^0^^~1~^^^^^^^^^^^~09/01/1984~
-~12145~^~306~^507.^0^^~1~^^^^^^^^^^^~09/01/1984~
-~12145~^~307~^3.^0^^~1~^^^^^^^^^^^~09/01/1984~
-~12145~^~318~^41.^0^^~1~^^^^^^^^^^^~09/01/1984~
-~12145~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2002~
-~12145~^~320~^2.^0^^~1~^^^^^^^^^^^~06/01/2002~
-~12145~^~417~^60.^0^^~4~^^^^^^^^^^^~09/01/1984~
-~12145~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~
-~12145~^~432~^60.^0^^~4~^^^^^^^^^^^~09/01/1984~
-~12145~^~435~^60.^0^^~4~^~NC~^^^^^^^^^^~08/01/2009~
-~12145~^~601~^0.^0^^~7~^~Z~^^^^^^^^^^~09/01/1984~
-~12147~^~208~^673.^0^^~4~^~NC~^^^^^^^^^^~04/01/2006~
-~12147~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~
-~12147~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~
-~12147~^~268~^2816.^0^^~4~^~NC~^^^^^^^^^^~04/01/2006~
-~12147~^~301~^16.^8^0.^~1~^~A~^^^2^14.^23.^3^13.^19.^~2, 3~^~02/01/2003~
-~12147~^~304~^251.^8^2.^~1~^~A~^^^2^236.^263.^5^243.^258.^~2, 3~^~02/01/2003~
-~12147~^~305~^575.^8^9.^~1~^~A~^^^2^530.^630.^6^552.^598.^~2, 3~^~02/01/2003~
-~12147~^~306~^597.^8^11.^~1~^~A~^^^2^518.^696.^5^567.^625.^~2, 3~^~02/01/2003~
-~12147~^~307~^2.^4^0.^~1~^~A~^^^1^2.^2.^^^^~1, 2, 3~^~02/01/2003~
-~12147~^~318~^29.^0^^~4~^^^^^^^^^^^~09/01/1984~
-~12147~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2002~
-~12147~^~320~^1.^0^^~4~^~NC~^^^^^^^^^^~04/01/2006~
-~12147~^~321~^17.^0^^~4~^~BNA~^~12155~^^^^^^^^^~02/01/2003~
-~12147~^~322~^0.^0^^~4~^~BNA~^~12155~^^^^^^^^^~02/01/2003~
-~12147~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2009~
-~12147~^~334~^0.^0^^~4~^~BNA~^~12155~^^^^^^^^^~02/01/2003~
-~12147~^~337~^0.^0^^~4~^~BFZN~^~12155~^^^^^^^^^~02/01/2003~
-~12147~^~338~^9.^0^^~4~^~BFZN~^~12155~^^^^^^^^^~02/01/2003~
-~12147~^~417~^34.^6^0.^~1~^~A~^^^2^31.^36.^3^31.^36.^~2, 3~^~10/01/2003~
-~12147~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~
-~12147~^~432~^34.^6^0.^~1~^~A~^^^2^31.^36.^3^31.^36.^^~04/01/2006~
-~12147~^~435~^34.^0^^~4~^~NC~^^^^^^^^^^~04/01/2006~
-~12147~^~601~^0.^0^^~7~^~Z~^^^^^^^^^^~09/01/1984~
-~12147~^~638~^0.^4^0.^~1~^~A~^^^1^0.^0.^^^^~1, 2, 3~^~05/01/2011~
-~12147~^~639~^20.^4^0.^~1~^~A~^^^1^19.^21.^3^19.^20.^~2, 3~^~05/01/2011~
-~12147~^~641~^132.^4^0.^~1~^~A~^^^1^131.^133.^3^130.^133.^~2, 3~^~05/01/2011~
-~12149~^~208~^629.^0^^~4~^~NC~^^^^^^^^^^~07/01/1995~
-~12149~^~268~^2632.^0^^~4~^^^^^^^^^^^
-~12149~^~301~^8.^2^^~1~^^^^^^^^^^^~09/01/1984~
-~12149~^~304~^234.^2^^~1~^^^^^^^^^^^~09/01/1984~
-~12149~^~305~^35.^2^^~1~^^^^^^^^^^^~09/01/1984~
-~12149~^~306~^628.^2^^~1~^^^^^^^^^^^~09/01/1984~
-~12149~^~307~^72.^2^^~1~^^^^^^^^^^^~09/01/1984~
-~12149~^~318~^29.^0^^~1~^^^^^^^^^^^~09/01/1984~
-~12149~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2002~
-~12149~^~320~^1.^0^^~1~^^^^^^^^^^^~06/01/2002~
-~12149~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2009~
-~12149~^~417~^58.^0^^~4~^^^^^^^^^^^~09/01/1984~
-~12149~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~
-~12149~^~432~^58.^0^^~4~^^^^^^^^^^^~09/01/1984~
-~12149~^~435~^58.^0^^~4~^~NC~^^^^^^^^^^~01/01/2001~
-~12149~^~601~^0.^0^^~7~^~Z~^^^^^^^^^^~09/01/1984~
-~12151~^~208~^560.^0^^~4~^~NC~^^^^^^^^^^~04/01/2015~
-~12151~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~08/01/1999~
-~12151~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~08/01/1999~
-~12151~^~268~^2342.^0^^~4~^~NC~^^^^^^^^^^~04/01/2015~
-~12151~^~301~^105.^9^2.^~1~^~A~^^^3^100.^123.^2^94.^115.^~2~^~03/01/2009~
-~12151~^~304~^121.^1^^~1~^~A~^^^^^^^^^^~06/01/1999~
-~12151~^~305~^490.^1^^~1~^~A~^^^^^^^^^^~06/01/1999~
-~12151~^~306~^1025.^8^64.^~1~^~A~^^^2^881.^1090.^1^203.^1846.^~2~^~03/01/2001~
-~12151~^~307~^1.^2^^~1~^~A~^^^2^1.^2.^1^^^~1~^~03/01/2009~
-~12151~^~318~^516.^0^^~1~^~AS~^^^^^^^^^^~04/01/2015~
-~12151~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2002~
-~12151~^~320~^26.^0^^~1~^~AS~^^^^^^^^^^~04/01/2015~
-~12151~^~321~^305.^4^54.^~1~^~A~^^^4^166.^428.^3^132.^477.^~2~^~04/01/2015~
-~12151~^~322~^10.^3^10.^~1~^~A~^^^3^0.^30.^2^-33.^53.^~2~^~04/01/2015~
-~12151~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2009~
-~12151~^~334~^0.^1^^~1~^~A~^^^^^^^^^^~03/01/2009~
-~12151~^~338~^2903.^2^^~1~^~A~^^^2^1405.^4401.^1^^^^~04/01/2015~
-~12151~^~417~^51.^1^^~1~^~A~^^^^^^^^^^~01/01/2001~
-~12151~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~
-~12151~^~432~^51.^1^^~1~^~A~^^^^^^^^^^~03/01/2009~
-~12151~^~435~^51.^0^^~4~^~NC~^^^^^^^^^^~03/01/2009~
-~12151~^~601~^0.^0^^~7~^~Z~^^^^^^^^^^~09/01/1984~
-~12151~^~636~^214.^1^^~1~^^^^^^^^^^^~06/01/1999~
-~12151~^~638~^5.^1^^~1~^~A~^^^^^^^^^^~01/01/2001~
-~12151~^~639~^10.^1^^~1~^~A~^^^^^^^^^^~01/01/2001~
-~12151~^~641~^198.^1^^~1~^~A~^^^^^^^^^^~01/01/2001~
-~12152~^~208~^572.^0^^~4~^~NC~^^^^^^^^^^~04/01/2015~
-~12152~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/1999~
-~12152~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/1999~
-~12152~^~268~^2392.^0^^~4~^~NC~^^^^^^^^^^~04/01/2015~
-~12152~^~301~^107.^13^5.^~1~^~A~^^^3^98.^127.^2^82.^131.^~2~^~05/01/2010~
-~12152~^~304~^109.^5^11.^~1~^~A~^^^2^98.^123.^1^-31.^249.^~2~^~05/01/2010~
-~12152~^~305~^469.^5^16.^~1~^~A~^^^2^452.^500.^1^258.^678.^~2~^~05/01/2010~
-~12152~^~306~^1007.^12^39.^~1~^~A~^^^3^875.^1090.^2^837.^1177.^~2~^~05/01/2010~
-~12152~^~307~^6.^5^3.^~1~^~A~^^^2^3.^19.^1^-43.^56.^~1, 2~^~05/01/2010~
-~12152~^~318~^266.^0^^~1~^~AS~^^^^^^^^^^~04/01/2015~
-~12152~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2002~
-~12152~^~320~^13.^0^^~1~^~AS~^^^^^^^^^^~05/01/2010~
-~12152~^~321~^159.^15^44.^~1~^~A~^^^5^60.^337.^4^35.^283.^~2~^~04/01/2015~
-~12152~^~322~^0.^12^0.^~1~^~A~^^^3^0.^0.^^^^~1, 2~^~12/01/2002~
-~12152~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2009~
-~12152~^~334~^0.^8^0.^~1~^~A~^^^2^0.^0.^^^^~1, 2~^~12/01/2002~
-~12152~^~337~^0.^8^0.^~1~^~A~^^^2^0.^0.^^^^~1, 2~^~12/01/2002~
-~12152~^~338~^1160.^9^48.^~1~^~A~^^^3^1070.^1269.^2^951.^1368.^~2~^~05/01/2010~
-~12152~^~417~^51.^5^0.^~1~^~A~^^^2^48.^54.^1^44.^56.^~2~^~05/01/2010~
-~12152~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~
-~12152~^~432~^51.^5^0.^~1~^~A~^^^2^48.^54.^1^44.^56.^^~05/01/2010~
-~12152~^~435~^51.^0^^~4~^~NC~^^^^^^^^^^~05/01/2010~
-~12152~^~601~^0.^0^^~7~^~Z~^^^^^^^^^^~09/01/1984~
-~12152~^~638~^2.^8^0.^~1~^~A~^^^3^2.^3.^2^1.^3.^~1, 2~^~04/01/2015~
-~12152~^~639~^10.^8^0.^~1~^~A~^^^3^10.^11.^2^9.^11.^~2~^~05/01/2010~
-~12152~^~641~^210.^8^5.^~1~^~A~^^^3^202.^220.^2^188.^232.^~2~^~08/01/2011~
-~12154~^~208~^619.^0^^~4~^~NC~^^^^^^^^^^~02/01/2014~
-~12154~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2002~
-~12154~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2002~
-~12154~^~268~^2590.^0^^~4~^~NC~^^^^^^^^^^~02/01/2014~
-~12154~^~301~^61.^16^2.^~1~^~A~^^^2^58.^64.^1^25.^96.^~2~^~06/01/2002~
-~12154~^~304~^201.^16^1.^~1~^~A~^^^2^200.^202.^1^188.^213.^~2~^~06/01/2002~
-~12154~^~305~^513.^16^49.^~1~^~A~^^^2^464.^562.^1^-109.^1135.^~2~^~06/01/2002~
-~12154~^~306~^523.^16^1.^~1~^~A~^^^2^522.^524.^1^510.^535.^~2~^~06/01/2002~
-~12154~^~307~^2.^13^1.^~1~^~A~^^^2^1.^3.^1^-11.^15.^~2~^~06/01/2002~
-~12154~^~318~^40.^1^^~1~^~A~^^^^^^^^^^~06/01/2002~
-~12154~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2002~
-~12154~^~320~^2.^1^^~1~^~A~^^^^^^^^^^~06/01/2002~
-~12154~^~321~^24.^1^^~1~^~A~^^^^^^^^^^~06/01/2002~
-~12154~^~322~^0.^1^^~1~^~A~^^^^^^^^^~1~^~06/01/2002~
-~12154~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2009~
-~12154~^~334~^0.^0^^~4~^~BFZN~^~12155~^^^^^^^^^~10/01/2002~
-~12154~^~337~^0.^0^^~4~^~BFZN~^~12155~^^^^^^^^^~10/01/2002~
-~12154~^~338~^9.^0^^~4~^~BFZN~^~12155~^^^^^^^^^~10/01/2002~
-~12154~^~417~^31.^1^^~1~^~A~^^^^^^^^^^~06/01/2002~
-~12154~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~
-~12154~^~432~^31.^1^^~1~^~A~^^^^^^^^^^~06/01/2006~
-~12154~^~435~^31.^0^^~4~^~NC~^^^^^^^^^^~07/01/2006~
-~12154~^~601~^0.^1^^~1~^~A~^^^^^^^^^~1~^~06/01/2002~
-~12154~^~638~^1.^4^0.^~1~^~A~^^^2^0.^1.^1^-3.^4.^~1, 2~^~02/01/2011~
-~12154~^~639~^5.^4^0.^~1~^~A~^^^2^4.^5.^1^1.^7.^~2~^~06/01/2002~
-~12154~^~641~^115.^4^0.^~1~^~A~^^^2^114.^116.^1^104.^126.^~2~^~02/01/2014~
-~12155~^~208~^654.^0^^~4~^~NC~^^^^^^^^^^~03/01/2006~
-~12155~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~09/01/1999~
-~12155~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~09/01/1999~
-~12155~^~268~^2738.^0^^~4~^~NC~^^^^^^^^^^~03/01/2006~
-~12155~^~301~^98.^7^3.^~1~^~A~^^^1^86.^110.^6^90.^104.^~4~^~03/01/2001~
-~12155~^~304~^158.^7^1.^~1~^~A~^^^1^154.^164.^6^154.^160.^~4~^~12/01/2000~
-~12155~^~305~^346.^7^3.^~1~^~A~^^^1^340.^360.^6^336.^354.^~4~^~12/01/2000~
-~12155~^~306~^441.^7^6.^~1~^~A~^^^1^415.^470.^6^425.^456.^~4~^~12/01/2000~
-~12155~^~307~^2.^7^0.^~1~^~A~^^^1^0.^7.^6^0.^4.^~4~^~12/01/2000~
-~12155~^~318~^20.^6^12.^~1~^~A~^^^3^0.^77.^5^-11.^52.^~4~^~10/01/2002~
-~12155~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2002~
-~12155~^~320~^1.^6^0.^~1~^~A~^^^3^0.^4.^5^0.^2.^~4~^~10/01/2002~
-~12155~^~321~^12.^6^7.^~1~^~A~^^^3^0.^46.^5^-6.^31.^~1, 4~^~10/01/2002~
-~12155~^~322~^0.^6^0.^~1~^~A~^^^3^0.^0.^5^0.^0.^~1, 4~^~10/01/2002~
-~12155~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2009~
-~12155~^~334~^0.^3^0.^~1~^~A~^^^2^0.^0.^^^^~1, 2, 3~^~10/01/2002~
-~12155~^~337~^0.^3^0.^~1~^~A~^^^2^0.^0.^^^^~1, 2, 3~^~10/01/2002~
-~12155~^~338~^9.^3^0.^~1~^~A~^^^2^8.^11.^1^6.^11.^~1, 2, 3~^~10/01/2002~
-~12155~^~417~^98.^7^3.^~1~^~A~^^^1^81.^113.^6^88.^107.^~4~^~12/01/2000~
-~12155~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~12/01/2000~
-~12155~^~432~^98.^7^3.^~1~^~A~^^^1^81.^113.^6^88.^107.^^~03/01/2006~
-~12155~^~435~^98.^0^^~4~^~NC~^^^^^^^^^^~03/01/2006~
-~12155~^~601~^0.^0^^~7~^~Z~^^^^^^^^^^~09/01/1984~
-~12155~^~638~^0.^4^0.^~1~^~A~^^^1^0.^0.^^^^~1, 2, 3~^~05/01/2011~
-~12155~^~639~^5.^4^0.^~1~^~A~^^^1^5.^5.^3^4.^5.^~2, 3~^~05/01/2011~
-~12155~^~641~^87.^4^3.^~1~^~A~^^^1^82.^95.^3^77.^96.^~2, 3~^~05/01/2011~
-~12156~^~208~^500.^0^^~8~^~LC~^^^^^^^^^^~06/01/2013~
-~12156~^~268~^2092.^0^^~8~^~LC~^^^^^^^^^^~06/01/2013~
-~12156~^~301~^71.^0^^~8~^~LC~^^^^^^^^^^~06/01/2013~
-~12156~^~306~^232.^0^^~8~^~LC~^^^^^^^^^^~06/01/2013~
-~12156~^~307~^446.^0^^~8~^~LC~^^^^^^^^^^~06/01/2013~
-~12156~^~318~^0.^0^^~8~^~LC~^^^^^^^^^^~06/01/2013~
-~12156~^~601~^0.^0^^~8~^~LC~^^^^^^^^^^~06/01/2013~
-~12157~^~208~^643.^0^^~8~^~LC~^^^^^^^^^^~06/01/2015~
-~12157~^~262~^0.^0^^~4~^~FLC~^^^^^^^^^^~02/01/2015~
-~12157~^~263~^0.^0^^~4~^~FLC~^^^^^^^^^^~02/01/2015~
-~12157~^~268~^2690.^0^^~8~^~LC~^^^^^^^^^^~06/01/2015~
-~12157~^~301~^71.^0^^~8~^~LC~^^^^^^^^^^~02/01/2015~
-~12157~^~304~^151.^0^^~4~^~FLC~^^^^^^^^^^~02/01/2015~
-~12157~^~305~^329.^0^^~4~^~FLC~^^^^^^^^^^~02/01/2015~
-~12157~^~306~^459.^0^^~4~^~FLC~^^^^^^^^^^~02/01/2015~
-~12157~^~307~^643.^0^^~8~^~LC~^^^^^^^^^^~02/01/2015~
-~12157~^~318~^19.^0^^~4~^~NC~^^^^^^^^^^~02/01/2015~
-~12157~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2015~
-~12157~^~320~^1.^0^^~4~^~NC~^^^^^^^^^^~02/01/2015~
-~12157~^~321~^11.^0^^~4~^~BFFN~^~12155~^^^^^^^^^~02/01/2015~
-~12157~^~322~^0.^0^^~4~^~BFFN~^~12155~^^^^^^^^^~02/01/2015~
-~12157~^~324~^0.^0^^~4~^~FLC~^^^^^^^^^^~02/01/2015~
-~12157~^~334~^0.^0^^~4~^~BFFN~^~12155~^^^^^^^^^~02/01/2015~
-~12157~^~337~^0.^0^^~4~^~BFFN~^~12155~^^^^^^^^^~02/01/2015~
-~12157~^~338~^8.^0^^~4~^~BFFN~^~12155~^^^^^^^^^~02/01/2015~
-~12157~^~417~^91.^0^^~4~^~BFFN~^~12155~^^^^^^^^^~02/01/2015~
-~12157~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2015~
-~12157~^~432~^91.^0^^~4~^~BFFN~^~12155~^^^^^^^^^~02/01/2015~
-~12157~^~435~^91.^0^^~4~^~NC~^^^^^^^^^^~02/01/2015~
-~12157~^~601~^0.^0^^~8~^~LC~^^^^^^^^^^~02/01/2015~
-~12158~^~208~^207.^0^^~4~^~NC~^^^^^^^^^^~09/01/1984~
-~12158~^~268~^866.^0^^~4~^^^^^^^^^^^
-~12158~^~301~^86.^0^^~1~^^^^^^^^^^^~09/01/1984~
-~12158~^~304~^62.^0^^~4~^^^^^^^^^^^~09/01/1984~
-~12158~^~305~^175.^0^^~1~^^^^^^^^^^^~09/01/1984~
-~12158~^~306~^1082.^0^^~4~^^^^^^^^^^^~09/01/1984~
-~12158~^~307~^28.^0^^~4~^^^^^^^^^^^~09/01/1984~
-~12158~^~318~^294.^0^^~4~^^^^^^^^^^^~09/01/1984~
-~12158~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2002~
-~12158~^~320~^15.^0^^~4~^^^^^^^^^^^~06/01/2002~
-~12158~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2009~
-~12158~^~417~^59.^0^^~4~^^^^^^^^^^^~09/01/1984~
-~12158~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~
-~12158~^~432~^59.^0^^~4~^^^^^^^^^^^~09/01/1984~
-~12158~^~435~^59.^0^^~4~^~NC~^^^^^^^^^^~01/01/2001~
-~12158~^~601~^0.^0^^~7~^~Z~^^^^^^^^^^~09/01/1984~
-~12160~^~208~^506.^0^^~4~^~NC~^^^^^^^^^^~09/01/1984~
-~12160~^~268~^2117.^0^^~4~^^^^^^^^^^^
-~12160~^~301~^100.^0^^~1~^^^^^^^^^^^~09/01/1984~
-~12160~^~304~^440.^0^^~1~^^^^^^^^^^^~09/01/1984~
-~12160~^~305~^800.^0^^~1~^^^^^^^^^^^~09/01/1984~
-~12160~^~306~^1350.^1^^~1~^^^^^^^^^^^~09/01/1984~
-~12160~^~307~^25.^1^^~1~^^^^^^^^^^^~09/01/1984~
-~12160~^~318~^442.^0^^~4~^^^^^^^^^^^~09/01/1984~
-~12160~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2002~
-~12160~^~320~^22.^0^^~4~^^^^^^^^^^^~06/01/2002~
-~12160~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2009~
-~12160~^~417~^233.^0^^~4~^^^^^^^^^^^~09/01/1984~
-~12160~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~
-~12160~^~432~^233.^0^^~4~^^^^^^^^^^^~09/01/1984~
-~12160~^~435~^233.^0^^~4~^~NC~^^^^^^^^^^~01/01/2001~
-~12160~^~601~^0.^0^^~7~^~Z~^^^^^^^^^^~09/01/1984~
-~12163~^~208~^446.^0^^~4~^~NC~^^^^^^^^^^~09/01/1984~
-~12163~^~268~^1866.^0^^~4~^^^^^^^^^^^~04/01/2009~
-~12163~^~301~^55.^1^^~1~^^^^^^^^^^^~09/01/1984~
-~12163~^~304~^262.^1^^~1~^^^^^^^^^^^~09/01/1984~
-~12163~^~305~^92.^1^^~1~^^^^^^^^^^^~09/01/1984~
-~12163~^~306~^919.^1^^~1~^^^^^^^^^^^~09/01/1984~
-~12163~^~307~^18.^0^^~1~^^^^^^^^^^^~09/01/1984~
-~12163~^~318~^62.^0^^~4~^^^^^^^^^^^~09/01/1984~
-~12163~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2002~
-~12163~^~320~^3.^0^^~4~^~NC~^^^^^^^^^^~05/01/2009~
-~12163~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2009~
-~12163~^~417~^9.^0^^~4~^^^^^^^^^^^~09/01/1984~
-~12163~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~
-~12163~^~432~^9.^0^^~4~^^^^^^^^^^^~04/01/2009~
-~12163~^~435~^9.^0^^~4~^~NC~^^^^^^^^^^~05/01/2009~
-~12163~^~601~^0.^0^^~7~^~Z~^^^^^^^^^^~09/01/1984~
-~12166~^~208~^595.^0^^~4~^~NC~^^^^^^^^^^~09/01/1984~
-~12166~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~
-~12166~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~
-~12166~^~268~^2489.^0^^~4~^^^^^^^^^^^~03/01/2009~
-~12166~^~301~^426.^0^^~1~^^^^^^^^^^^~09/01/1984~
-~12166~^~304~^95.^1^^~1~^^^^^^^^^^^~09/01/1984~
-~12166~^~305~^732.^0^^~1~^^^^^^^^^^^~09/01/1984~
-~12166~^~306~^414.^0^^~1~^^^^^^^^^^^~09/01/1984~
-~12166~^~307~^115.^2^^~1~^^^^^^^^^^^~09/01/1984~
-~12166~^~318~^67.^0^^~4~^^^^^^^^^^^~09/01/1984~
-~12166~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2002~
-~12166~^~320~^3.^0^^~4~^~NC~^^^^^^^^^^~03/01/2009~
-~12166~^~321~^40.^0^^~4~^~BFSN~^~12201~^^^^^^^^^~02/01/2003~
-~12166~^~322~^0.^0^^~4~^~BFSN~^~12201~^^^^^^^^^~02/01/2003~
-~12166~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2009~
-~12166~^~334~^0.^0^^~4~^~BFSN~^~12201~^^^^^^^^^~02/01/2003~
-~12166~^~337~^0.^0^^~4~^~BFSN~^~12201~^^^^^^^^^~02/01/2003~
-~12166~^~338~^0.^0^^~4~^~BFSN~^~12201~^^^^^^^^^~02/01/2003~
-~12166~^~417~^98.^0^^~4~^^^^^^^^^^^~09/01/1984~
-~12166~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~
-~12166~^~432~^98.^0^^~4~^^^^^^^^^^^~03/01/2009~
-~12166~^~435~^98.^0^^~4~^~NC~^^^^^^^^^^~03/01/2009~
-~12166~^~601~^0.^0^^~7~^~Z~^^^^^^^^^^~09/01/1984~
-~12167~^~208~^245.^0^^~4~^~NC~^^^^^^^^^^~09/01/1984~
-~12167~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~
-~12167~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~
-~12167~^~268~^1025.^0^^~4~^^^^^^^^^^^~12/01/2006~
-~12167~^~301~^29.^4^0.^~1~^^^^^^^^^^^~09/01/1984~
-~12167~^~304~^33.^3^0.^~1~^^^^^^^^^^^~09/01/1984~
-~12167~^~305~^107.^4^13.^~1~^^^^^^^^^^^~09/01/1984~
-~12167~^~306~^592.^3^15.^~1~^^^^^^^^^^^~09/01/1984~
-~12167~^~307~^2.^3^0.^~1~^^^^^^^^^^^~09/01/1984~
-~12167~^~318~^24.^3^9.^~1~^^^^^^^^^^^~09/01/1984~
-~12167~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2002~
-~12167~^~320~^1.^0^^~4~^~NC~^^^^^^^^^^~12/01/2006~
-~12167~^~321~^14.^0^^~4~^~O~^^^^^^^^^^~02/01/2003~
-~12167~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~
-~12167~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2009~
-~12167~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~
-~12167~^~337~^0.^0^^~4~^~BFSN~^~12635~^^^^^^^^^~02/01/2003~
-~12167~^~338~^13.^0^^~4~^~BFSN~^~12635~^^^^^^^^^~02/01/2003~
-~12167~^~417~^70.^2^^~1~^^^^^^^^^^^~09/01/1984~
-~12167~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~
-~12167~^~432~^70.^2^^~1~^^^^^^^^^^^~12/01/2006~
-~12167~^~435~^70.^0^^~4~^~NC~^^^^^^^^^^~12/01/2006~
-~12167~^~601~^0.^0^^~7~^~Z~^^^^^^^^^^~09/01/1984~
-~12169~^~208~^586.^0^^~4~^~NC~^^^^^^^^^^~03/01/2009~
-~12169~^~268~^2454.^0^^~4~^~NC~^^^^^^^^^^~03/01/2009~
-~12169~^~301~^960.^0^^~1~^^^^^^^^^^^~09/01/1984~
-~12169~^~304~^362.^0^^~1~^^^^^^^^^^^~09/01/1984~
-~12169~^~305~^659.^0^^~1~^^^^^^^^^^^~09/01/1984~
-~12169~^~306~^582.^0^^~1~^^^^^^^^^^^~09/01/1984~
-~12169~^~307~^12.^0^^~1~^^^^^^^^^^^~09/01/1984~
-~12169~^~318~^50.^0^^~1~^^^^^^^^^^^~09/01/1984~
-~12169~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2002~
-~12169~^~320~^3.^0^^~1~^^^^^^^^^^^~05/01/2009~
-~12169~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2009~
-~12169~^~417~^100.^0^^~4~^^^^^^^^^^^~09/01/1984~
-~12169~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~
-~12169~^~432~^100.^0^^~4~^^^^^^^^^^^~03/01/2009~
-~12169~^~435~^100.^0^^~4~^~NC~^^^^^^^^^^~05/01/2009~
-~12169~^~601~^0.^0^^~7~^~Z~^^^^^^^^^^~09/01/1984~
-~12170~^~208~^526.^0^^~4~^~NC~^^^^^^^^^^~09/01/1984~
-~12170~^~268~^2201.^0^^~4~^^^^^^^^^^^
-~12170~^~301~^159.^0^^~1~^^^^^^^^^^^~09/01/1984~
-~12170~^~304~^361.^0^^~1~^^^^^^^^^^^~09/01/1984~
-~12170~^~305~^807.^0^^~1~^^^^^^^^^^^~09/01/1984~
-~12170~^~306~^423.^0^^~1~^^^^^^^^^^^~09/01/1984~
-~12170~^~307~^41.^0^^~1~^^^^^^^^^^^~09/01/1984~
-~12170~^~318~^69.^0^^~1~^^^^^^^^^^^~09/01/1984~
-~12170~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2002~
-~12170~^~320~^3.^0^^~1~^^^^^^^^^^^~06/01/2002~
-~12170~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2009~
-~12170~^~417~^31.^0^^~1~^^^^^^^^^^^~09/01/1984~
-~12170~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~
-~12170~^~432~^31.^0^^~1~^^^^^^^^^^^~09/01/1984~
-~12170~^~435~^31.^0^^~4~^~NC~^^^^^^^^^^~01/01/2001~
-~12170~^~601~^0.^0^^~7~^~Z~^^^^^^^^^^~09/01/1984~
-~12171~^~208~^607.^0^^~4~^~NC~^^^^^^^^^^~09/01/1984~
-~12171~^~268~^2540.^0^^~4~^^^^^^^^^^^
-~12171~^~301~^141.^1^^~1~^^^^^^^^^^^~09/01/1984~
-~12171~^~304~^353.^0^^~1~^^^^^^^^^^^~09/01/1984~
-~12171~^~305~^790.^0^^~1~^^^^^^^^^^^~09/01/1984~
-~12171~^~306~^459.^1^^~1~^^^^^^^^^^^~09/01/1984~
-~12171~^~307~^1.^1^^~1~^^^^^^^^^^^~09/01/1984~
-~12171~^~318~^67.^0^^~4~^^^^^^^^^^^~09/01/1984~
-~12171~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2002~
-~12171~^~320~^3.^0^^~4~^^^^^^^^^^^~06/01/2002~
-~12171~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2009~
-~12171~^~417~^98.^0^^~4~^^^^^^^^^^^~09/01/1984~
-~12171~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~
-~12171~^~432~^98.^0^^~4~^^^^^^^^^^^~09/01/1984~
-~12171~^~435~^98.^0^^~4~^~NC~^^^^^^^^^^~01/01/2001~
-~12171~^~601~^0.^0^^~7~^~Z~^^^^^^^^^^~09/01/1984~
-~12174~^~208~^557.^0^^~4~^~NC~^^^^^^^^^^~09/01/1984~
-~12174~^~268~^2330.^0^^~4~^^^^^^^^^^^
-~12174~^~301~^54.^10^7.^~1~^^^^^^^^^^^~09/01/1984~
-~12174~^~304~^515.^6^24.^~1~^^^^^^^^^^^~09/01/1984~
-~12174~^~305~^755.^10^37.^~1~^^^^^^^^^^^~09/01/1984~
-~12174~^~306~^648.^6^15.^~1~^^^^^^^^^^^~09/01/1984~
-~12174~^~307~^99.^6^88.^~1~^^^^^^^^^^^~09/01/1984~
-~12174~^~318~^0.^1^^~1~^^^^^^^^^^^~09/01/1984~
-~12174~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2002~
-~12174~^~320~^0.^1^^~1~^^^^^^^^^^^~06/01/2002~
-~12174~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2009~
-~12174~^~417~^58.^3^0.^~1~^^^^^^^^^^^~09/01/1984~
-~12174~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~
-~12174~^~432~^58.^3^0.^~1~^^^^^^^^^^^~09/01/1984~
-~12174~^~435~^58.^0^^~4~^~NC~^^^^^^^^^^~01/01/2001~
-~12174~^~601~^0.^0^^~7~^~Z~^^^^^^^^^^~09/01/1984~
-~12175~^~208~^360.^0^^~4~^~NC~^^^^^^^^^^~09/01/1984~
-~12175~^~268~^1506.^0^^~4~^^^^^^^^^^^
-~12175~^~301~^72.^0^^~1~^^^^^^^^^^^~09/01/1984~
-~12175~^~304~^115.^0^^~1~^^^^^^^^^^^~09/01/1984~
-~12175~^~305~^169.^0^^~1~^^^^^^^^^^^~09/01/1984~
-~12175~^~306~^768.^0^^~1~^^^^^^^^^^^~09/01/1984~
-~12175~^~307~^34.^0^^~1~^^^^^^^^^^^~09/01/1984~
-~12175~^~318~^86.^0^^~1~^^^^^^^^^^^~09/01/1984~
-~12175~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2002~
-~12175~^~320~^4.^0^^~1~^^^^^^^^^^^~06/01/2002~
-~12175~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2009~
-~12175~^~417~^109.^0^^~4~^^^^^^^^^^^~09/01/1984~
-~12175~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~
-~12175~^~432~^109.^0^^~4~^^^^^^^^^^^~09/01/1984~
-~12175~^~435~^109.^0^^~4~^~NC~^^^^^^^^^^~01/01/2001~
-~12175~^~601~^0.^0^^~7~^~Z~^^^^^^^^^^~09/01/1984~
-~12176~^~208~^202.^0^^~4~^~NC~^^^^^^^^^^~09/01/1984~
-~12176~^~268~^845.^0^^~4~^^^^^^^^^^^
-~12176~^~301~^4.^1^^~1~^^^^^^^^^^^~09/01/1984~
-~12176~^~304~^32.^1^^~1~^^^^^^^^^^^~09/01/1984~
-~12176~^~305~^59.^1^^~1~^^^^^^^^^^^~09/01/1984~
-~12176~^~306~^232.^1^^~1~^^^^^^^^^^^~09/01/1984~
-~12176~^~307~^12.^1^^~1~^^^^^^^^^^^~09/01/1984~
-~12176~^~318~^0.^0^^~4~^^^^^^^^^^^~09/01/1984~
-~12176~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2002~
-~12176~^~320~^0.^0^^~4~^^^^^^^^^^^~06/01/2002~
-~12176~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2009~
-~12176~^~417~^14.^0^^~4~^^^^^^^^^^^~09/01/1984~
-~12176~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~
-~12176~^~432~^14.^0^^~4~^^^^^^^^^^^~09/01/1984~
-~12176~^~435~^14.^0^^~4~^~NC~^^^^^^^^^^~01/01/2001~
-~12176~^~601~^0.^0^^~7~^~Z~^^^^^^^^^^~09/01/1984~
-~12177~^~208~^684.^0^^~4~^~NC~^^^^^^^^^^~09/01/1984~
-~12177~^~268~^2862.^0^^~4~^^^^^^^^^^^
-~12177~^~301~^26.^0^^~1~^^^^^^^^^^^~09/01/1984~
-~12177~^~304~^92.^0^^~1~^^^^^^^^^^^~09/01/1984~
-~12177~^~305~^209.^0^^~1~^^^^^^^^^^^~09/01/1984~
-~12177~^~306~^551.^0^^~1~^^^^^^^^^^^~09/01/1984~
-~12177~^~307~^37.^0^^~1~^^^^^^^^^^^~09/01/1984~
-~12177~^~318~^0.^0^^~4~^^^^^^^^^^^~09/01/1984~
-~12177~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2002~
-~12177~^~320~^0.^0^^~4~^^^^^^^^^^^~06/01/2002~
-~12177~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2009~
-~12177~^~417~^9.^0^^~4~^^^^^^^^^^^~09/01/1984~
-~12177~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~
-~12177~^~432~^9.^0^^~4~^^^^^^^^^^^~09/01/1984~
-~12177~^~435~^9.^0^^~4~^~NC~^^^^^^^^^^~01/01/2001~
-~12177~^~601~^0.^0^^~7~^~Z~^^^^^^^^^^~09/01/1984~
-~12179~^~208~^501.^0^^~4~^~NC~^^^^^^^^^^~09/01/1984~
-~12179~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~11/01/2002~
-~12179~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~11/01/2002~
-~12179~^~268~^2096.^0^^~4~^^^^^^^^^^^~11/01/2006~
-~12179~^~301~^15.^0^^~1~^^^^^^^^^^^~09/01/1984~
-~12179~^~304~^50.^0^^~1~^^^^^^^^^^^~09/01/1984~
-~12179~^~305~^107.^0^^~1~^^^^^^^^^^^~09/01/1984~
-~12179~^~306~^337.^0^^~1~^^^^^^^^^^^~09/01/1984~
-~12179~^~307~^262.^0^^~1~^^^^^^^^^^^~09/01/1984~
-~12179~^~318~^0.^0^^~1~^^^^^^^^^^^~09/01/1984~
-~12179~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2002~
-~12179~^~320~^0.^0^^~4~^~NC~^^^^^^^^^^~11/01/2006~
-~12179~^~321~^0.^0^^~4~^~BFSN~^~12104~^^^^^^^^^~11/01/2002~
-~12179~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~11/01/2002~
-~12179~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2009~
-~12179~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~11/01/2002~
-~12179~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~11/01/2002~
-~12179~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~11/01/2002~
-~12179~^~417~^8.^0^^~4~^^^^^^^^^^^~09/01/1984~
-~12179~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~
-~12179~^~432~^8.^0^^~4~^^^^^^^^^^^~11/01/2006~
-~12179~^~435~^8.^0^^~4~^~NC~^^^^^^^^^^~11/01/2006~
-~12179~^~601~^0.^0^^~7~^~Z~^^^^^^^^^^~09/01/1984~
-~12193~^~208~^318.^0^^~4~^~NC~^^^^^^^^^^~09/01/1984~
-~12193~^~268~^1331.^0^^~4~^^^^^^^^^^^
-~12193~^~301~^1633.^1^^~1~^^^^^^^^^^^~09/01/1984~
-~12193~^~304~^314.^1^^~1~^^^^^^^^^^^~09/01/1984~
-~12193~^~305~^6.^1^^~1~^^^^^^^^^^^~09/01/1984~
-~12193~^~306~^2130.^1^^~1~^^^^^^^^^^^~09/01/1984~
-~12193~^~307~^92.^1^^~1~^^^^^^^^^^^~09/01/1984~
-~12193~^~318~^63.^0^^~4~^^^^^^^^^^^~09/01/1984~
-~12193~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2002~
-~12193~^~320~^3.^0^^~4~^^^^^^^^^^^~06/01/2002~
-~12193~^~417~^95.^0^^~4~^^^^^^^^^^^~09/01/1984~
-~12193~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~
-~12193~^~432~^95.^0^^~4~^^^^^^^^^^^~09/01/1984~
-~12193~^~435~^95.^0^^~4~^~NC~^^^^^^^^^^~01/01/2001~
-~12193~^~601~^0.^0^^~7~^~Z~^^^^^^^^^^~09/01/1984~
-~12195~^~208~^614.^0^^~4~^~NC~^^^^^^^^^^~08/01/2010~
-~12195~^~268~^2568.^0^^~4~^~NC~^^^^^^^^^^~08/01/2010~
-~12195~^~301~^347.^8^12.^~1~^~A~^^^1^279.^384.^7^317.^377.^~4~^~02/01/2010~
-~12195~^~304~^279.^8^6.^~1~^~A~^^^1^247.^310.^7^263.^293.^~4~^~02/01/2010~
-~12195~^~305~^508.^8^10.^~1~^~A~^^^1^442.^547.^7^482.^533.^~4~^~02/01/2010~
-~12195~^~306~^748.^8^21.^~1~^~A~^^^1^678.^839.^7^698.^798.^~4~^~02/01/2010~
-~12195~^~307~^7.^8^0.^~1~^~A~^^^1^7.^7.^7^7.^7.^~1, 4~^~05/01/2010~
-~12195~^~318~^1.^0^^~4~^~NC~^^^^^^^^^^~08/01/2010~
-~12195~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2002~
-~12195~^~320~^0.^0^^~4~^~NC~^^^^^^^^^^~08/01/2010~
-~12195~^~321~^1.^0^^~4~^~BFZN~^~12063~^^^^^^^^^~08/01/2010~
-~12195~^~322~^0.^0^^~4~^~BFZN~^~12063~^^^^^^^^^~08/01/2010~
-~12195~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2009~
-~12195~^~334~^0.^0^^~4~^~BFZN~^~12063~^^^^^^^^^~08/01/2010~
-~12195~^~337~^0.^0^^~4~^~BFZN~^~12063~^^^^^^^^^~08/01/2010~
-~12195~^~338~^1.^0^^~4~^~BFZN~^~12063~^^^^^^^^^~08/01/2010~
-~12195~^~417~^53.^0^^~4~^~BFZN~^~12063~^^^^^^^^^~08/01/2010~
-~12195~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~
-~12195~^~432~^53.^0^^~4~^~BFZN~^^^^^^^^^^~08/01/2010~
-~12195~^~435~^53.^0^^~4~^~NC~^^^^^^^^^^~08/01/2010~
-~12195~^~601~^0.^0^^~7~^~Z~^^^^^^^^^^~09/01/1984~
-~12195~^~636~^139.^0^^~1~^~AS~^^^^^^^^^^~08/01/2010~
-~12195~^~638~^3.^8^0.^~1~^~A~^^^1^2.^4.^7^2.^3.^~1, 4~^~05/01/2010~
-~12195~^~639~^6.^8^0.^~1~^~A~^^^1^5.^8.^7^4.^6.^~4~^~02/01/2010~
-~12195~^~641~^131.^8^3.^~1~^~A~^^^1^116.^147.^7^122.^138.^~4~^~02/01/2010~
-~12198~^~208~^570.^0^^~4~^~NC~^^^^^^^^^^~09/01/1984~
-~12198~^~268~^2385.^0^^~4~^^^^^^^^^^^
-~12198~^~301~^420.^0^^~1~^^^^^^^^^^^~09/01/1984~
-~12198~^~304~^96.^0^^~1~^^^^^^^^^^^~09/01/1984~
-~12198~^~305~^752.^0^^~1~^^^^^^^^^^^~09/01/1984~
-~12198~^~306~^414.^0^^~1~^^^^^^^^^^^~09/01/1984~
-~12198~^~307~^74.^0^^~1~^^^^^^^^^^^~09/01/1984~
-~12198~^~318~^67.^0^^~4~^^^^^^^^^^^~09/01/1984~
-~12198~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2002~
-~12198~^~320~^3.^0^^~4~^^^^^^^^^^^~06/01/2002~
-~12198~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2009~
-~12198~^~417~^98.^0^^~4~^^^^^^^^^^^~09/01/1984~
-~12198~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~
-~12198~^~432~^98.^0^^~4~^^^^^^^^^^^~09/01/1984~
-~12198~^~435~^98.^0^^~4~^~NC~^^^^^^^^^^~01/01/2001~
-~12198~^~601~^0.^0^^~7~^~Z~^^^^^^^^^^~09/01/1984~
-~12200~^~208~^647.^0^^~4~^~NC~^^^^^^^^^^~09/01/1984~
-~12200~^~268~^2707.^0^^~4~^^^^^^^^^^^
-~12200~^~301~^22.^1^^~1~^^^^^^^^^^^~09/01/1984~
-~12200~^~304~^59.^0^^~4~^^^^^^^^^^^~09/01/1984~
-~12200~^~305~^366.^1^^~1~^^^^^^^^^^^~09/01/1984~
-~12200~^~306~^320.^1^^~1~^^^^^^^^^^^~09/01/1984~
-~12200~^~307~^91.^1^^~1~^^^^^^^^^^^~09/01/1984~
-~12200~^~318~^1.^0^^~4~^^^^^^^^^^^~09/01/1984~
-~12200~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2002~
-~12200~^~320~^0.^0^^~4~^^^^^^^^^^^~06/01/2002~
-~12200~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2009~
-~12200~^~417~^125.^0^^~4~^^^^^^^^^^^~09/01/1984~
-~12200~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~
-~12200~^~432~^125.^0^^~4~^^^^^^^^^^^~09/01/1984~
-~12200~^~435~^125.^0^^~4~^~NC~^^^^^^^^^^~01/01/2001~
-~12200~^~601~^0.^0^^~7~^~Z~^^^^^^^^^^~09/01/1984~
-~12201~^~208~^631.^0^^~4~^~NC~^^^^^^^^^^~03/01/2009~
-~12201~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~
-~12201~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~
-~12201~^~268~^2640.^0^^~4~^~NC~^^^^^^^^^^~03/01/2009~
-~12201~^~301~^60.^1^^~1~^~A~^^^^^^^^^^~02/01/2005~
-~12201~^~304~^345.^1^^~1~^~A~^^^^^^^^^^~02/01/2005~
-~12201~^~305~^667.^1^^~1~^~A~^^^^^^^^^^~02/01/2005~
-~12201~^~306~^370.^1^^~1~^~A~^^^^^^^^^^~02/01/2005~
-~12201~^~307~^47.^1^^~1~^~A~^^^^^^^^^^~02/01/2005~
-~12201~^~318~^66.^1^^~1~^^^^^^^^^^^~09/01/1984~
-~12201~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2002~
-~12201~^~320~^3.^0^^~4~^~NC~^^^^^^^^^^~03/01/2009~
-~12201~^~321~^40.^0^^~4~^~O~^^^^^^^^^^~02/01/2003~
-~12201~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~
-~12201~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2009~
-~12201~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~
-~12201~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~
-~12201~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~
-~12201~^~417~^115.^1^^~1~^~A~^^^^^^^^^^~03/01/2005~
-~12201~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~
-~12201~^~432~^115.^1^^~1~^~A~^^^^^^^^^^~03/01/2009~
-~12201~^~435~^115.^0^^~4~^~NC~^^^^^^^^^^~03/01/2009~
-~12201~^~601~^0.^0^^~7~^~Z~^^^^^^^^^^~09/01/1984~
-~12201~^~638~^22.^1^^~1~^~A~^^^^^^^^^^~05/01/2011~
-~12201~^~639~^53.^1^^~1~^~A~^^^^^^^^^^~05/01/2011~
-~12201~^~641~^232.^1^^~1~^~A~^^^^^^^^^^~05/01/2011~
-~12202~^~208~^154.^0^^~4~^~NC~^^^^^^^^^^~09/01/1984~
-~12202~^~268~^644.^0^^~4~^^^^^^^^^^^
-~12202~^~301~^31.^0^^~1~^^^^^^^^^^^~09/01/1984~
-~12202~^~304~^49.^0^^~1~^^^^^^^^^^^~09/01/1984~
-~12202~^~305~^72.^0^^~1~^^^^^^^^^^^~09/01/1984~
-~12202~^~306~^329.^0^^~1~^^^^^^^^^^^~09/01/1984~
-~12202~^~307~^14.^0^^~1~^^^^^^^^^^^~09/01/1984~
-~12202~^~318~^37.^0^^~1~^^^^^^^^^^^~09/01/1984~
-~12202~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2002~
-~12202~^~320~^2.^0^^~1~^^^^^^^^^^^~06/01/2002~
-~12202~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2009~
-~12202~^~417~^47.^0^^~4~^^^^^^^^^^^~09/01/1984~
-~12202~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~
-~12202~^~432~^47.^0^^~4~^^^^^^^^^^^~09/01/1984~
-~12202~^~435~^47.^0^^~4~^~NC~^^^^^^^^^^~01/01/2001~
-~12202~^~601~^0.^0^^~7~^~Z~^^^^^^^^^^~09/01/1984~
-~12203~^~208~^56.^0^^~4~^~NC~^^^^^^^^^^~09/01/1984~
-~12203~^~268~^234.^0^^~4~^^^^^^^^^^^
-~12203~^~301~^11.^0^^~1~^^^^^^^^^^^~09/01/1984~
-~12203~^~304~^18.^0^^~1~^^^^^^^^^^^~09/01/1984~
-~12203~^~305~^26.^0^^~1~^^^^^^^^^^^~09/01/1984~
-~12203~^~306~^119.^0^^~1~^^^^^^^^^^^~09/01/1984~
-~12203~^~307~^5.^0^^~1~^^^^^^^^^^^~09/01/1984~
-~12203~^~318~^13.^0^^~1~^^^^^^^^^^^~09/01/1984~
-~12203~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2002~
-~12203~^~320~^1.^0^^~1~^^^^^^^^^^^~06/01/2002~
-~12203~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2009~
-~12203~^~417~^17.^0^^~4~^^^^^^^^^^^~09/01/1984~
-~12203~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~
-~12203~^~432~^17.^0^^~4~^^^^^^^^^^^~09/01/1984~
-~12203~^~435~^17.^0^^~4~^~NC~^^^^^^^^^^~01/01/2001~
-~12203~^~601~^0.^0^^~7~^~Z~^^^^^^^^^^~09/01/1984~
-~12204~^~208~^201.^0^^~4~^~NC~^^^^^^^^^^~09/01/1984~
-~12204~^~268~^841.^0^^~4~^^^^^^^^^^^
-~12204~^~301~^35.^0^^~1~^^^^^^^^^^^~09/01/1984~
-~12204~^~304~^64.^0^^~1~^^^^^^^^^^^~09/01/1984~
-~12204~^~305~^93.^0^^~1~^^^^^^^^^^^~09/01/1984~
-~12204~^~306~^427.^0^^~4~^^^^^^^^^^^~09/01/1984~
-~12204~^~307~^19.^0^^~4~^^^^^^^^^^^~09/01/1984~
-~12204~^~318~^74.^0^^~1~^^^^^^^^^^^~09/01/1984~
-~12204~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2002~
-~12204~^~320~^4.^0^^~1~^^^^^^^^^^^~06/01/2002~
-~12204~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2009~
-~12204~^~417~^59.^0^^~4~^^^^^^^^^^^~09/01/1984~
-~12204~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~
-~12204~^~432~^59.^0^^~4~^^^^^^^^^^^~09/01/1984~
-~12204~^~435~^59.^0^^~4~^~NC~^^^^^^^^^^~01/01/2001~
-~12204~^~601~^0.^0^^~7~^~Z~^^^^^^^^^^~09/01/1984~
-~12205~^~208~^89.^0^^~4~^~NC~^^^^^^^^^^~09/01/1984~
-~12205~^~268~^372.^0^^~4~^^^^^^^^^^^
-~12205~^~301~^44.^0^^~1~^^^^^^^^^^^~09/01/1984~
-~12205~^~304~^56.^0^^~1~^^^^^^^^^^^~09/01/1984~
-~12205~^~305~^168.^0^^~1~^^^^^^^^^^^~09/01/1984~
-~12205~^~306~^367.^0^^~1~^^^^^^^^^^^~09/01/1984~
-~12205~^~307~^1.^0^^~1~^^^^^^^^^^^~09/01/1984~
-~12205~^~318~^13.^0^^~1~^^^^^^^^^^^~09/01/1984~
-~12205~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2002~
-~12205~^~320~^1.^0^^~1~^^^^^^^^^^^~06/01/2002~
-~12205~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2009~
-~12205~^~417~^28.^0^^~4~^^^^^^^^^^^~09/01/1984~
-~12205~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~
-~12205~^~432~^28.^0^^~4~^^^^^^^^^^^~09/01/1984~
-~12205~^~435~^28.^0^^~4~^~NC~^^^^^^^^^^~01/01/2001~
-~12205~^~601~^0.^0^^~7~^~Z~^^^^^^^^^^~09/01/1984~
-~12206~^~208~^594.^0^^~4~^~NC~^^^^^^^^^^~09/01/1984~
-~12206~^~268~^2485.^0^^~4~^^^^^^^^^^^
-~12206~^~301~^263.^3^3.^~1~^^^^^^^^^^^~09/01/1984~
-~12206~^~304~^240.^3^0.^~1~^^^^^^^^^^^~09/01/1984~
-~12206~^~305~^400.^3^5.^~1~^^^^^^^^^^^~09/01/1984~
-~12206~^~306~^560.^3^0.^~1~^^^^^^^^^^^~09/01/1984~
-~12206~^~307~^130.^7^8.^~1~^^^^^^^^^^^~09/01/1984~
-~12206~^~318~^0.^0^^~1~^^^^^^^^^^^~09/01/1984~
-~12206~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2002~
-~12206~^~320~^0.^0^^~1~^^^^^^^^^^^~06/01/2002~
-~12206~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2009~
-~12206~^~417~^32.^2^^~1~^^^^^^^^^^^~09/01/1984~
-~12206~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~
-~12206~^~432~^32.^2^^~1~^^^^^^^^^^^~09/01/1984~
-~12206~^~435~^32.^0^^~4~^~NC~^^^^^^^^^^~01/01/2001~
-~12206~^~601~^0.^0^^~7~^~Z~^^^^^^^^^^~09/01/1984~
-~12220~^~208~^534.^0^^~4~^~NC~^^^^^^^^^^~11/01/2006~
-~12220~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2001~
-~12220~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2001~
-~12220~^~268~^2234.^0^^~4~^~NC~^^^^^^^^^^~11/01/2006~
-~12220~^~301~^255.^7^35.^~1~^~A~^^^3^200.^340.^2^102.^408.^~2~^~03/01/2005~
-~12220~^~304~^392.^7^20.^~1~^~A~^^^3^354.^431.^2^305.^478.^~2~^~03/01/2005~
-~12220~^~305~^642.^3^20.^~1~^~A~^^^2^603.^722.^1^384.^899.^~2~^~03/01/2005~
-~12220~^~306~^813.^7^9.^~1~^~A~^^^3^673.^1004.^2^772.^853.^~2~^~03/01/2005~
-~12220~^~307~^30.^7^3.^~1~^~A~^^^3^21.^45.^2^12.^46.^~2~^~03/01/2005~
-~12220~^~318~^0.^3^0.^~1~^~A~^^^2^0.^0.^^^^~2~^~03/01/2005~
-~12220~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2002~
-~12220~^~320~^0.^3^0.^~1~^~A~^^^2^0.^0.^^^^~2~^~03/01/2005~
-~12220~^~321~^0.^3^0.^~1~^~A~^^^2^0.^0.^^^^~1, 2~^~03/01/2005~
-~12220~^~322~^0.^3^0.^~1~^~A~^^^2^0.^0.^^^^~1, 2~^~03/01/2005~
-~12220~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2009~
-~12220~^~334~^0.^2^^~1~^~A~^^^1^0.^0.^^^^~1~^~03/01/2005~
-~12220~^~337~^0.^2^^~1~^~A~^^^1^0.^0.^^^^~1~^~03/01/2005~
-~12220~^~338~^651.^9^52.^~1~^~A~^^^1^500.^970.^8^529.^772.^~4~^~03/01/2003~
-~12220~^~417~^87.^3^24.^~1~^~A~^^^2^35.^112.^1^-230.^404.^~2~^~03/01/2005~
-~12220~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~
-~12220~^~432~^87.^3^24.^~1~^~A~^^^2^35.^112.^1^-230.^404.^^~11/01/2006~
-~12220~^~435~^87.^0^^~4~^~NC~^^^^^^^^^^~11/01/2006~
-~12220~^~601~^0.^0^^~7~^~Z~^^^^^^^^^^~12/01/1997~
-~12220~^~638~^11.^2^^~1~^~A~^^^1^9.^14.^1^^^^~05/01/2011~
-~12220~^~639~^45.^2^^~1~^~A~^^^1^40.^50.^1^^^^~05/01/2011~
-~12220~^~641~^90.^2^^~1~^~A~^^^1^84.^96.^1^^^^~05/01/2011~
-~12516~^~208~^574.^0^^~4~^~NC~^^^^^^^^^^~04/01/2009~
-~12516~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~11/01/2002~
-~12516~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~11/01/2002~
-~12516~^~268~^2401.^0^^~4~^~NC~^^^^^^^^^^~04/01/2009~
-~12516~^~301~^52.^2^^~1~^~A~^^^2^45.^59.^^^^^~04/01/2009~
-~12516~^~304~^550.^2^^~1~^~A~^^^2^544.^557.^^^^^~04/01/2009~
-~12516~^~305~^1174.^2^^~1~^~A~^^^2^1170.^1179.^^^^^~04/01/2009~
-~12516~^~306~^788.^2^^~1~^~A~^^^2^786.^789.^^^^^~04/01/2009~
-~12516~^~307~^256.^1^^~1~^~A~^^^^^^^^^^~04/01/2009~
-~12516~^~318~^8.^1^^~1~^~A~^^^^^^^^^^~04/01/2009~
-~12516~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2002~
-~12516~^~320~^0.^1^^~1~^~A~^^^^^^^^^^~04/01/2009~
-~12516~^~321~^5.^1^^~1~^~A~^^^^^^^^^^~04/01/2009~
-~12516~^~322~^1.^1^^~1~^~A~^^^^^^^^^^~04/01/2009~
-~12516~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2009~
-~12516~^~334~^0.^1^^~1~^~A~^^^^^^^^^^~04/01/2009~
-~12516~^~337~^0.^1^^~1~^~A~^^^^^^^^^^~04/01/2009~
-~12516~^~338~^30.^1^^~1~^~A~^^^^^^^^^^~04/01/2009~
-~12516~^~417~^57.^0^^~4~^^^^^^^^^^^~09/01/1984~
-~12516~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~
-~12516~^~432~^57.^0^^~4~^^^^^^^^^^^~04/01/2009~
-~12516~^~435~^57.^0^^~4~^~NC~^^^^^^^^^^~04/01/2009~
-~12516~^~601~^0.^0^^~7~^~Z~^^^^^^^^^^~09/01/1984~
-~12516~^~638~^0.^1^^~1~^~A~^^^^^^^^^~1~^~04/01/2009~
-~12516~^~639~^3.^1^^~1~^~A~^^^^^^^^^^~04/01/2009~
-~12516~^~641~^13.^1^^~1~^~A~^^^^^^^^^^~04/01/2009~
-~12529~^~208~^567.^0^^~4~^~NC~^^^^^^^^^^~09/01/1984~
-~12529~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~
-~12529~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~
-~12529~^~268~^2372.^0^^~4~^^^^^^^^^^^~03/01/2009~
-~12529~^~301~^131.^0^^~1~^^^^^^^^^^^~09/01/1984~
-~12529~^~304~^346.^0^^~1~^^^^^^^^^^^~09/01/1984~
-~12529~^~305~^774.^0^^~1~^^^^^^^^^^^~09/01/1984~
-~12529~^~306~^406.^0^^~1~^^^^^^^^^^^~09/01/1984~
-~12529~^~307~^588.^0^^~1~^^^^^^^^^^^~09/01/1984~
-~12529~^~318~^66.^0^^~4~^^^^^^^^^^^~09/01/1984~
-~12529~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2002~
-~12529~^~320~^3.^0^^~4~^~NC~^^^^^^^^^^~03/01/2009~
-~12529~^~321~^40.^0^^~4~^~BFZN~^~12201~^^^^^^^^^~02/01/2003~
-~12529~^~322~^0.^0^^~4~^~BFZN~^~12201~^^^^^^^^^~02/01/2003~
-~12529~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2009~
-~12529~^~334~^0.^0^^~4~^~BFZN~^~12201~^^^^^^^^^~02/01/2003~
-~12529~^~337~^0.^0^^~4~^~BFZN~^~12201~^^^^^^^^^~02/01/2003~
-~12529~^~338~^0.^0^^~4~^~BFZN~^~12201~^^^^^^^^^~02/01/2003~
-~12529~^~417~^96.^0^^~4~^^^^^^^^^^^~09/01/1984~
-~12529~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~
-~12529~^~432~^96.^0^^~4~^^^^^^^^^^^~03/01/2009~
-~12529~^~435~^96.^0^^~4~^~NC~^^^^^^^^^^~03/01/2009~
-~12529~^~601~^0.^0^^~7~^~Z~^^^^^^^^^^~09/01/1984~
-~12536~^~208~^546.^0^^~4~^~NC~^^^^^^^^^^~05/01/2014~
-~12536~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2014~
-~12536~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2014~
-~12536~^~268~^2285.^0^^~4~^~NC~^^^^^^^^^^~05/01/2014~
-~12536~^~301~^70.^1^^~1~^^^^^^^^^^^~05/01/2014~
-~12536~^~304~^129.^0^^~1~^^^^^^^^^^^~05/01/2014~
-~12536~^~305~^1155.^0^^~1~^^^^^^^^^^^~05/01/2014~
-~12536~^~306~^850.^1^^~1~^^^^^^^^^^^~05/01/2014~
-~12536~^~307~^6008.^0^^~8~^~LC~^^^^^^^^^^~05/01/2014~
-~12536~^~318~^9.^0^^~4~^~BFZN~^~12538~^^^^^^^^^~05/01/2014~
-~12536~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2014~
-~12536~^~320~^0.^0^^~4~^~BFZN~^~12538~^^^^^^^^^~05/01/2014~
-~12536~^~321~^5.^0^^~4~^~BFZN~^~12538~^^^^^^^^^~05/01/2014~
-~12536~^~322~^0.^0^^~4~^~BFZN~^~12538~^^^^^^^^^~05/01/2014~
-~12536~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2014~
-~12536~^~334~^0.^0^^~4~^~BFZN~^~12538~^^^^^^^^^~05/01/2014~
-~12536~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2014~
-~12536~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2014~
-~12536~^~417~^237.^0^^~4~^^^^^^^^^^^~05/01/2014~
-~12536~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2014~
-~12536~^~432~^237.^0^^~4~^^^^^^^^^^^~05/01/2014~
-~12536~^~435~^237.^0^^~4~^~NC~^^^^^^^^^^~05/01/2014~
-~12536~^~601~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2014~
-~12537~^~208~^582.^0^^~4~^~NC~^^^^^^^^^^~09/01/1984~
-~12537~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~
-~12537~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~
-~12537~^~268~^2435.^0^^~4~^^^^^^^^^^^~12/01/2006~
-~12537~^~301~^70.^1^^~1~^^^^^^^^^^^~09/01/1984~
-~12537~^~304~^129.^0^^~1~^^^^^^^^^^^~09/01/1984~
-~12537~^~305~^1155.^0^^~1~^^^^^^^^^^^~09/01/1984~
-~12537~^~306~^850.^1^^~1~^^^^^^^^^^^~09/01/1984~
-~12537~^~307~^655.^0^^~8~^~LC~^^^^^^^^^^~05/01/2014~
-~12537~^~318~^9.^0^^~4~^~BFZN~^~12538~^^^^^^^^^~05/01/2004~
-~12537~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2002~
-~12537~^~320~^0.^0^^~4~^~BFZN~^~12538~^^^^^^^^^~05/01/2004~
-~12537~^~321~^5.^0^^~4~^~BFZN~^~12538~^^^^^^^^^~05/01/2004~
-~12537~^~322~^0.^0^^~4~^~BFZN~^~12538~^^^^^^^^^~02/01/2003~
-~12537~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2009~
-~12537~^~334~^0.^0^^~4~^~BFZN~^~12538~^^^^^^^^^~02/01/2003~
-~12537~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~
-~12537~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~
-~12537~^~417~^237.^0^^~4~^^^^^^^^^^^~09/01/1984~
-~12537~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~
-~12537~^~432~^237.^0^^~4~^^^^^^^^^^^~12/01/2006~
-~12537~^~435~^237.^0^^~4~^~NC~^^^^^^^^^^~12/01/2006~
-~12537~^~601~^0.^0^^~7~^~Z~^^^^^^^^^^~09/01/1984~
-~12538~^~208~^592.^0^^~4~^~NC~^^^^^^^^^^~12/01/2006~
-~12538~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~11/01/2000~
-~12538~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~11/01/2000~
-~12538~^~268~^2477.^0^^~4~^~NC~^^^^^^^^^^~12/01/2006~
-~12538~^~301~^87.^2^^~1~^~A~^^^2^85.^88.^^^^^~03/01/2004~
-~12538~^~304~^127.^1^^~1~^^^^^^^^^^^~09/01/1984~
-~12538~^~305~^1139.^1^^~1~^^^^^^^^^^^~09/01/1984~
-~12538~^~306~^483.^1^^~1~^^^^^^^^^^^~09/01/1984~
-~12538~^~307~^303.^0^^~8~^~LC~^^^^^^^^^^~07/01/2017~
-~12538~^~318~^9.^0^^~1~^~AS~^^^^^^^^^^~03/01/2004~
-~12538~^~319~^0.^1^^~1~^~A~^^^^^^^^^~1~^~02/01/2003~
-~12538~^~320~^0.^0^^~1~^~AS~^^^^^^^^^^~03/01/2004~
-~12538~^~321~^5.^3^^~1~^~A~^^^2^0.^27.^^^^~2~^~03/01/2004~
-~12538~^~322~^0.^2^^~1~^~A~^^^^^^^^^^~02/01/2003~
-~12538~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2009~
-~12538~^~334~^0.^2^^~1~^~A~^^^^^^^^^^~02/01/2003~
-~12538~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~
-~12538~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~
-~12538~^~417~^234.^1^^~1~^^^^^^^^^^^~09/01/1984~
-~12538~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~
-~12538~^~432~^234.^1^^~1~^^^^^^^^^^^~12/01/2006~
-~12538~^~435~^234.^0^^~4~^~NC~^^^^^^^^^^~12/01/2006~
-~12538~^~601~^0.^2^^~1~^~A~^^^2^0.^0.^^^^~1~^~03/01/2004~
-~12539~^~208~^619.^0^^~4~^~NC~^^^^^^^^^^~09/01/1984~
-~12539~^~268~^2590.^0^^~4~^^^^^^^^^^^
-~12539~^~301~^57.^0^^~1~^^^^^^^^^^^~09/01/1984~
-~12539~^~304~^129.^0^^~1~^^^^^^^^^^^~09/01/1984~
-~12539~^~305~^1158.^0^^~1~^^^^^^^^^^^~09/01/1984~
-~12539~^~306~^491.^0^^~1~^^^^^^^^^^^~09/01/1984~
-~12539~^~307~^613.^1^^~1~^^^^^^^^^^^~09/01/1984~
-~12539~^~318~^0.^0^^~4~^^^^^^^^^^^~09/01/1984~
-~12539~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2002~
-~12539~^~320~^0.^0^^~4~^^^^^^^^^^^~06/01/2002~
-~12539~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2009~
-~12539~^~417~^238.^0^^~4~^^^^^^^^^^^~09/01/1984~
-~12539~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~
-~12539~^~432~^238.^0^^~4~^^^^^^^^^^^~09/01/1984~
-~12539~^~435~^238.^0^^~4~^~NC~^^^^^^^^^^~01/01/2001~
-~12539~^~601~^0.^0^^~7~^~Z~^^^^^^^^^^~09/01/1984~
-~12540~^~208~^617.^0^^~4~^~NC~^^^^^^^^^^~08/01/2010~
-~12540~^~268~^2581.^0^^~4~^~NC~^^^^^^^^^^~08/01/2010~
-~12540~^~301~^64.^3^2.^~1~^~A~^^^1^61.^70.^2^52.^75.^~2, 3~^~02/01/2010~
-~12540~^~304~^311.^3^3.^~1~^~A~^^^1^307.^318.^2^296.^325.^~2, 3~^~02/01/2010~
-~12540~^~305~^666.^3^5.^~1~^~A~^^^1^658.^677.^2^641.^690.^~2, 3~^~02/01/2010~
-~12540~^~306~^576.^3^0.^~1~^~A~^^^1^576.^576.^2^574.^576.^~2, 3~^~02/01/2010~
-~12540~^~307~^331.^3^19.^~1~^~A~^^^1^295.^360.^2^248.^412.^~2, 3~^~02/01/2010~
-~12540~^~318~^52.^0^^~4~^^^^^^^^^^^~08/01/2010~
-~12540~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2002~
-~12540~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2009~
-~12540~^~417~^237.^0^^~4~^^^^^^^^^^^~08/01/2010~
-~12540~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~
-~12540~^~432~^237.^0^^~4~^^^^^^^^^^^~08/01/2010~
-~12540~^~435~^237.^0^^~4~^~NC~^^^^^^^^^^~08/01/2010~
-~12540~^~601~^0.^3^0.^~1~^~A~^^^1^0.^0.^^^^~1, 2, 3~^~02/01/2010~
-~12540~^~638~^18.^3^0.^~1~^~A~^^^1^18.^19.^2^16.^20.^~2, 3~^~02/01/2010~
-~12540~^~639~^21.^3^0.^~1~^~A~^^^1^19.^22.^2^17.^23.^~2, 3~^~02/01/2010~
-~12540~^~641~^170.^3^3.^~1~^~A~^^^1^163.^175.^2^154.^184.^~2, 3~^~02/01/2010~
-~12563~^~208~^598.^0^^~4~^~NC~^^^^^^^^^^~04/01/2013~
-~12563~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~08/01/1999~
-~12563~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~08/01/1999~
-~12563~^~268~^2502.^0^^~4~^~NC~^^^^^^^^^^~04/01/2013~
-~12563~^~301~^268.^22^4.^~1~^~A~^^^3^215.^343.^2^246.^289.^~2~^~04/01/2013~
-~12563~^~304~^279.^21^3.^~1~^~A~^^^3^250.^297.^2^264.^292.^~2~^~04/01/2013~
-~12563~^~305~^471.^21^9.^~1~^~A~^^^3^371.^564.^2^430.^511.^~2~^~04/01/2013~
-~12563~^~306~^713.^21^11.^~1~^~A~^^^3^558.^854.^2^663.^762.^~2~^~04/01/2013~
-~12563~^~307~^234.^13^18.^~1~^~A~^^^1^55.^552.^6^188.^279.^~2, 3~^~10/01/2016~
-~12563~^~318~^1.^0^^~1~^~AS~^^^^^^^^^^~05/01/2010~
-~12563~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2002~
-~12563~^~320~^0.^0^^~1~^~AS~^^^^^^^^^^~05/01/2010~
-~12563~^~321~^1.^1^^~1~^~A~^^^^^^^^^^~01/01/2001~
-~12563~^~322~^0.^1^^~1~^~A~^^^^^^^^^^~01/01/2001~
-~12563~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2009~
-~12563~^~334~^0.^0^^~4~^~BFZN~^~12061~^^^^^^^^^~11/01/2002~
-~12563~^~337~^0.^0^^~4~^~BFZN~^~12061~^^^^^^^^^~11/01/2002~
-~12563~^~338~^1.^0^^~4~^~BFZN~^~12061~^^^^^^^^^~11/01/2002~
-~12563~^~417~^55.^12^12.^~1~^~A~^^^3^27.^127.^2^0.^109.^~2~^~04/01/2013~
-~12563~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2001~
-~12563~^~432~^55.^12^12.^~1~^~A~^^^3^27.^127.^2^0.^109.^^~04/01/2013~
-~12563~^~435~^55.^0^^~4~^~NC~^^^^^^^^^^~04/01/2013~
-~12563~^~601~^0.^1^^~1~^~A~^^^1^0.^1.^11^^^~1~^~04/01/2013~
-~12563~^~638~^4.^16^0.^~1~^~A~^^^3^2.^6.^2^3.^4.^~2~^~05/01/2010~
-~12563~^~639~^4.^16^0.^~1~^~A~^^^3^3.^7.^2^1.^7.^~2~^~05/01/2010~
-~12563~^~641~^122.^16^6.^~1~^~A~^^^3^94.^190.^2^96.^148.^~2~^~04/01/2013~
-~12565~^~208~^607.^0^^~4~^~NC~^^^^^^^^^^~11/01/2006~
-~12565~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~08/01/1999~
-~12565~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~08/01/1999~
-~12565~^~268~^2541.^0^^~4~^~NC~^^^^^^^^^^~11/01/2006~
-~12565~^~301~^291.^3^21.^~1~^~A~^^^1^247.^302.^2^199.^382.^~4~^~01/01/2001~
-~12565~^~304~^274.^3^7.^~1~^~A~^^^1^270.^288.^2^240.^307.^~4~^~01/01/2001~
-~12565~^~305~^466.^3^11.^~1~^~A~^^^1^460.^490.^2^414.^516.^~4~^~01/01/2001~
-~12565~^~306~^699.^3^14.^~1~^~A~^^^1^694.^730.^2^636.^761.^~4~^~01/01/2001~
-~12565~^~307~^339.^528^^~1~^~A~^^^^^^^^^^~08/01/1999~
-~12565~^~318~^1.^1^^~1~^~AS~^^^^^^^^^^~05/01/2001~
-~12565~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2002~
-~12565~^~320~^0.^0^^~4~^~NC~^^^^^^^^^^~11/01/2006~
-~12565~^~321~^1.^1^^~1~^~A~^^^^^^^^^^~01/01/2001~
-~12565~^~322~^0.^1^^~1~^~A~^^^^^^^^^^~01/01/2001~
-~12565~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2009~
-~12565~^~334~^0.^0^^~4~^~BFZN~^~12061~^^^^^^^^^~09/01/2002~
-~12565~^~337~^0.^0^^~4~^~BFZN~^~12061~^^^^^^^^^~09/01/2002~
-~12565~^~338~^1.^0^^~4~^~BFZN~^~12061~^^^^^^^^^~09/01/2002~
-~12565~^~417~^27.^3^2.^~1~^~A~^^^1^26.^32.^2^16.^38.^~4~^~01/01/2001~
-~12565~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2001~
-~12565~^~432~^27.^3^2.^~1~^~A~^^^1^26.^32.^2^16.^38.^^~11/01/2006~
-~12565~^~435~^27.^0^^~4~^~NC~^^^^^^^^^^~11/01/2006~
-~12565~^~601~^0.^0^^~7~^~Z~^^^^^^^^^^~09/01/1984~
-~12565~^~636~^130.^1^^~1~^~A~^^^^^^^^^^~06/01/1999~
-~12565~^~638~^3.^1^^~1~^~A~^^^^^^^^^^~01/01/2001~
-~12565~^~639~^9.^1^^~1~^~A~^^^^^^^^^^~01/01/2001~
-~12565~^~641~^118.^1^^~1~^~A~^^^^^^^^^^~01/01/2001~
-~12567~^~208~^607.^0^^~8~^~LC~^^^^^^^^^^~03/01/2013~
-~12567~^~268~^2540.^0^^~8~^~LC~^^^^^^^^^^~03/01/2013~
-~12567~^~301~^286.^0^^~8~^~LC~^^^^^^^^^^~03/01/2013~
-~12567~^~304~^286.^0^^~8~^~LC~^^^^^^^^^^~03/01/2013~
-~12567~^~306~^679.^0^^~8~^~LC~^^^^^^^^^^~03/01/2013~
-~12567~^~307~^548.^0^^~8~^~LC~^^^^^^^^^^~03/01/2013~
-~12567~^~318~^0.^0^^~8~^~LC~^^^^^^^^^^~03/01/2013~
-~12567~^~601~^0.^0^^~8~^~LC~^^^^^^^^^^~03/01/2013~
-~12585~^~208~^574.^0^^~4~^~NC~^^^^^^^^^^~09/01/1984~
-~12585~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~11/01/2002~
-~12585~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~11/01/2002~
-~12585~^~268~^2402.^0^^~4~^^^^^^^^^^^~11/01/2006~
-~12585~^~301~^45.^1^^~1~^^^^^^^^^^^~09/01/1984~
-~12585~^~304~^260.^1^^~1~^^^^^^^^^^^~09/01/1984~
-~12585~^~305~^490.^1^^~1~^^^^^^^^^^^~09/01/1984~
-~12585~^~306~^565.^2^^~1~^^^^^^^^^^^~09/01/1984~
-~12585~^~307~^640.^2^^~1~^^^^^^^^^^^~09/01/1984~
-~12585~^~318~^0.^0^^~1~^^^^^^^^^^^~09/01/1984~
-~12585~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2002~
-~12585~^~320~^0.^0^^~4~^~NC~^^^^^^^^^^~11/01/2006~
-~12585~^~321~^0.^0^^~4~^~BFZN~^~12586~^^^^^^^^^~11/01/2002~
-~12585~^~322~^0.^0^^~4~^~BFZN~^~12586~^^^^^^^^^~11/01/2002~
-~12585~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2009~
-~12585~^~334~^0.^0^^~4~^~BFZN~^~12586~^^^^^^^^^~11/01/2002~
-~12585~^~337~^0.^0^^~4~^~BFZN~^~12586~^^^^^^^^^~11/01/2002~
-~12585~^~338~^23.^0^^~4~^~BFZN~^~12586~^^^^^^^^^~11/01/2002~
-~12585~^~417~^69.^0^^~1~^^^^^^^^^^^~09/01/1984~
-~12585~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~
-~12585~^~432~^69.^0^^~1~^^^^^^^^^^^~11/01/2006~
-~12585~^~435~^69.^0^^~4~^~NC~^^^^^^^^^^~11/01/2006~
-~12585~^~601~^0.^0^^~7~^~Z~^^^^^^^^^^~09/01/1984~
-~12585~^~636~^158.^0^^~1~^^^^^^^^^^^~09/01/1984~
-~12586~^~208~^581.^0^^~4~^~NC~^^^^^^^^^^~03/01/2006~
-~12586~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2002~
-~12586~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2002~
-~12586~^~268~^2431.^0^^~4~^~NC~^^^^^^^^^^~03/01/2006~
-~12586~^~301~^43.^8^0.^~1~^~A~^^^3^30.^52.^2^40.^45.^~2~^~04/01/2002~
-~12586~^~304~^273.^8^16.^~1~^~A~^^^3^251.^328.^2^202.^343.^~2~^~04/01/2002~
-~12586~^~305~^531.^8^37.^~1~^~A~^^^3^479.^649.^2^371.^691.^~2~^~04/01/2002~
-~12586~^~306~^632.^8^20.^~1~^~A~^^^3^592.^686.^2^545.^718.^~2~^~04/01/2002~
-~12586~^~307~^308.^6^30.^~1~^~A~^^^4^242.^499.^3^211.^405.^~2~^~04/01/2002~
-~12586~^~318~^0.^8^0.^~1~^~A~^^^2^0.^0.^^^^~2, 3~^~04/01/2002~
-~12586~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2002~
-~12586~^~320~^0.^8^0.^~1~^~A~^^^2^0.^0.^^^^~2, 3~^~04/01/2002~
-~12586~^~321~^0.^8^0.^~1~^~A~^^^2^0.^0.^^^^~1, 2, 3~^~04/01/2002~
-~12586~^~322~^0.^8^0.^~1~^~A~^^^2^0.^0.^^^^~1, 2, 3~^~04/01/2002~
-~12586~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2009~
-~12586~^~334~^0.^8^0.^~1~^~A~^^^2^0.^0.^^^^~1, 2, 3~^~04/01/2002~
-~12586~^~337~^0.^8^0.^~1~^~A~^^^2^0.^0.^^^^~1, 2, 3~^~04/01/2002~
-~12586~^~338~^23.^8^1.^~1~^~AS~^^^2^18.^28.^6^18.^26.^~2, 3~^~04/01/2002~
-~12586~^~417~^25.^2^^~1~^~A~^^^2^24.^27.^^^^^~04/01/2002~
-~12586~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~
-~12586~^~432~^25.^2^^~1~^~A~^^^^^^^^^^~03/01/2006~
-~12586~^~435~^25.^0^^~4~^~NC~^^^^^^^^^^~03/01/2006~
-~12586~^~601~^0.^0^^~7~^~Z~^^^^^^^^^^~09/01/1984~
-~12586~^~638~^0.^4^0.^~1~^~A~^^^1^0.^0.^^^^~1, 2, 3~^~05/01/2011~
-~12586~^~639~^10.^4^0.^~1~^~A~^^^1^9.^12.^3^7.^12.^~2, 3~^~05/01/2011~
-~12586~^~641~^119.^4^2.^~1~^~A~^^^1^114.^124.^3^111.^125.^~2, 3~^~05/01/2011~
-~12588~^~208~^609.^0^^~4~^~NC~^^^^^^^^^^~05/01/2014~
-~12588~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~12/01/2002~
-~12588~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~12/01/2002~
-~12588~^~268~^2549.^0^^~4~^~NC~^^^^^^^^^^~05/01/2014~
-~12588~^~301~^61.^0^^~8~^~LC~^^^^^^^^^^~05/01/2014~
-~12588~^~304~^206.^0^^~4~^~FLC~^^^^^^^^^^~05/01/2014~
-~12588~^~305~^388.^0^^~4~^~FLC~^^^^^^^^^^~05/01/2014~
-~12588~^~306~^447.^0^^~4~^~FLC~^^^^^^^^^^~05/01/2014~
-~12588~^~307~^295.^0^^~8~^~LC~^^^^^^^^^^~05/01/2014~
-~12588~^~318~^0.^0^^~8~^~LC~^^^^^^^^^^~05/01/2014~
-~12588~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2002~
-~12588~^~320~^0.^0^^~4~^~NC~^^^^^^^^^^~11/01/2006~
-~12588~^~321~^0.^0^^~4~^~BFZN~^~12585~^^^^^^^^^~12/01/2002~
-~12588~^~322~^0.^0^^~4~^~BFZN~^~12585~^^^^^^^^^~12/01/2002~
-~12588~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2009~
-~12588~^~334~^0.^0^^~4~^~BFZN~^~12585~^^^^^^^^^~12/01/2002~
-~12588~^~337~^0.^0^^~4~^~FLC~^^^^^^^^^^~12/01/2002~
-~12588~^~338~^18.^0^^~4~^~FLC~^^^^^^^^^^~05/01/2014~
-~12588~^~417~^55.^0^^~4~^~FLC~^^^^^^^^^^~05/01/2014~
-~12588~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~
-~12588~^~432~^55.^0^^~4~^~FLC~^^^^^^^^^^~05/01/2014~
-~12588~^~435~^55.^0^^~4~^~NC~^^^^^^^^^^~05/01/2014~
-~12588~^~601~^0.^0^^~7~^~Z~^^^^^^^^^^~09/01/1984~
-~12632~^~208~^716.^0^^~4~^~NC~^^^^^^^^^^~10/01/2006~
-~12632~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~09/01/2002~
-~12632~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~09/01/2002~
-~12632~^~268~^2996.^0^^~4~^~NC~^^^^^^^^^^~10/01/2006~
-~12632~^~301~^70.^4^14.^~1~^~A~^^^1^55.^112.^3^23.^116.^~4~^~12/01/2000~
-~12632~^~304~^118.^4^2.^~1~^~A~^^^1^114.^122.^3^111.^125.^~4~^~12/01/2000~
-~12632~^~305~^198.^4^6.^~1~^~A~^^^1^188.^214.^3^178.^218.^~4~^~12/01/2000~
-~12632~^~306~^363.^4^14.^~1~^~A~^^^1^343.^405.^3^318.^407.^~4~^~12/01/2000~
-~12632~^~307~^353.^0^^~8~^~LC~^^^^^^^^^^~08/01/2012~
-~12632~^~318~^0.^0^^~1~^~AS~^^^^^^^^^^~09/01/2002~
-~12632~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2002~
-~12632~^~320~^0.^0^^~1~^~AS~^^^^^^^^^^~09/01/2002~
-~12632~^~321~^0.^9^0.^~1~^~A~^^^3^0.^0.^^^^~1, 2~^~09/01/2002~
-~12632~^~322~^0.^9^0.^~1~^~A~^^^3^0.^0.^^^^~1, 2~^~09/01/2002~
-~12632~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2009~
-~12632~^~334~^0.^8^0.^~1~^~A~^^^2^0.^0.^^^^~1, 2, 3~^~09/01/2002~
-~12632~^~337~^0.^8^0.^~1~^~A~^^^2^0.^0.^^^^~1, 2, 3~^~09/01/2002~
-~12632~^~338~^0.^8^0.^~1~^~A~^^^2^0.^0.^^^^~1, 2, 3~^~09/01/2002~
-~12632~^~417~^10.^4^0.^~1~^~A~^^^1^8.^12.^3^6.^12.^~4~^~12/01/2000~
-~12632~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~12/01/2000~
-~12632~^~432~^10.^4^0.^~1~^~A~^^^1^8.^12.^3^6.^12.^^~10/01/2006~
-~12632~^~435~^10.^0^^~4~^~NC~^^^^^^^^^^~10/01/2006~
-~12632~^~601~^0.^0^^~7~^~Z~^^^^^^^^^^~07/01/1999~
-~12632~^~638~^0.^4^0.^~1~^~A~^^^1^0.^0.^^^^~1, 2, 3~^~12/01/2000~
-~12632~^~639~^10.^4^0.^~1~^~A~^^^1^9.^10.^3^9.^9.^~2, 3~^~05/01/2011~
-~12632~^~641~^145.^4^2.^~1~^~A~^^^1^141.^151.^3^137.^151.^~2, 3~^~05/01/2011~
-~12635~^~208~^594.^0^^~4~^~NC~^^^^^^^^^^~09/01/1984~
-~12635~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~
-~12635~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~
-~12635~^~268~^2485.^0^^~4~^^^^^^^^^^^~02/01/2007~
-~12635~^~301~^70.^0^^~1~^^^^^^^^^^^~09/01/1984~
-~12635~^~304~^225.^0^^~1~^^^^^^^^^^^~09/01/1984~
-~12635~^~305~^435.^0^^~1~^^^^^^^^^^^~09/01/1984~
-~12635~^~306~^693.^0^^~8~^~LC~^^^^^^^^^^~08/01/2012~
-~12635~^~307~^345.^0^^~8~^~LC~^^^^^^^^^^~08/01/2012~
-~12635~^~318~^5.^0^^~4~^~RA~^^^^^^^^^^~02/01/2003~
-~12635~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2002~
-~12635~^~320~^0.^0^^~4~^~RA~^^^^^^^^^^~02/01/2003~
-~12635~^~321~^3.^0^^~4~^~RA~^^^^^^^^^^~02/01/2003~
-~12635~^~322~^0.^0^^~4~^~RA~^^^^^^^^^^~02/01/2003~
-~12635~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2009~
-~12635~^~334~^0.^0^^~4~^~RA~^^^^^^^^^^~02/01/2003~
-~12635~^~337~^0.^0^^~4~^~RA~^^^^^^^^^^~02/01/2003~
-~12635~^~338~^21.^0^^~4~^~RA~^^^^^^^^^^~02/01/2003~
-~12635~^~417~^50.^0^^~1~^^^^^^^^^^^~09/01/1984~
-~12635~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~
-~12635~^~432~^50.^0^^~1~^^^^^^^^^^^~02/01/2007~
-~12635~^~435~^50.^0^^~4~^~NC~^^^^^^^^^^~02/01/2007~
-~12635~^~601~^0.^0^^~7~^~Z~^^^^^^^^^^~09/01/1984~
-~12637~^~208~^607.^0^^~4~^~NC~^^^^^^^^^^~05/01/2011~
-~12637~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~
-~12637~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~
-~12637~^~268~^2539.^0^^~4~^~NC~^^^^^^^^^^~05/01/2011~
-~12637~^~301~^117.^10^2.^~1~^~A~^^^1^106.^130.^9^111.^123.^~2, 3~^~05/01/2011~
-~12637~^~304~^229.^10^2.^~1~^~A~^^^1^212.^236.^9^224.^234.^~2, 3~^~05/01/2011~
-~12637~^~305~^456.^10^3.^~1~^~A~^^^1^438.^469.^9^447.^464.^~2, 3~^~05/01/2011~
-~12637~^~306~^632.^10^7.^~1~^~A~^^^1^594.^662.^9^615.^648.^~2, 3~^~05/01/2011~
-~12637~^~307~^273.^10^10.^~1~^~A~^^^1^219.^338.^9^248.^297.^~2, 3~^~05/01/2011~
-~12637~^~318~^3.^0^^~4~^~RA~^^^^^^^^^^~03/01/2007~
-~12637~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2002~
-~12637~^~320~^0.^0^^~4~^~RA~^^^^^^^^^^~03/01/2007~
-~12637~^~321~^2.^0^^~4~^~RA~^^^^^^^^^^~03/01/2007~
-~12637~^~322~^0.^0^^~4~^~RA~^^^^^^^^^^~03/01/2007~
-~12637~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2009~
-~12637~^~334~^0.^0^^~4~^~RA~^^^^^^^^^^~03/01/2007~
-~12637~^~337~^0.^0^^~4~^~RA~^^^^^^^^^^~02/01/2003~
-~12637~^~338~^8.^0^^~4~^~RA~^^^^^^^^^^~05/01/2011~
-~12637~^~417~^83.^0^^~1~^^^^^^^^^^^~09/01/1984~
-~12637~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~
-~12637~^~432~^83.^0^^~1~^^^^^^^^^^^~03/01/2007~
-~12637~^~435~^83.^0^^~4~^~NC~^^^^^^^^^^~05/01/2007~
-~12637~^~601~^0.^0^^~7~^~Z~^^^^^^^^^^~09/01/1984~
-~12638~^~208~^615.^0^^~4~^~NC~^^^^^^^^^^~09/01/1984~
-~12638~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~
-~12638~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~
-~12638~^~268~^2573.^0^^~4~^^^^^^^^^^^~02/01/2007~
-~12638~^~301~^106.^0^^~1~^^^^^^^^^^^~09/01/1984~
-~12638~^~304~^251.^0^^~1~^^^^^^^^^^^~09/01/1984~
-~12638~^~305~^449.^0^^~1~^^^^^^^^^^^~09/01/1984~
-~12638~^~306~^544.^0^^~1~^^^^^^^^^^^~09/01/1984~
-~12638~^~307~^306.^3^43.^~8~^~LC~^^^1^258.^393.^2^119.^493.^~4~^~05/01/2004~
-~12638~^~318~^8.^0^^~4~^~RA~^^^^^^^^^^~02/01/2003~
-~12638~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2002~
-~12638~^~320~^0.^0^^~4~^~RA~^^^^^^^^^^~02/01/2003~
-~12638~^~321~^4.^0^^~4~^~RA~^^^^^^^^^^~02/01/2003~
-~12638~^~322~^0.^0^^~4~^~RA~^^^^^^^^^^~02/01/2003~
-~12638~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2009~
-~12638~^~334~^1.^0^^~4~^~RA~^^^^^^^^^^~02/01/2003~
-~12638~^~337~^0.^0^^~4~^~RA~^^^^^^^^^^~02/01/2003~
-~12638~^~338~^22.^0^^~4~^~RA~^^^^^^^^^^~02/01/2003~
-~12638~^~417~^56.^0^^~1~^^^^^^^^^^^~09/01/1984~
-~12638~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~
-~12638~^~432~^56.^0^^~1~^^^^^^^^^^^~02/01/2007~
-~12638~^~435~^56.^0^^~4~^~NC~^^^^^^^^^^~02/01/2007~
-~12638~^~601~^0.^0^^~7~^~Z~^^^^^^^^^^~09/01/1984~
-~12643~^~208~^710.^0^^~4~^~NC~^^^^^^^^^^~03/01/2001~
-~12643~^~268~^2969.^0^^~4~^~NC~^^^^^^^^^^~03/01/2001~
-~12643~^~301~^72.^3^10.^~1~^~A~^^^1^62.^93.^2^27.^116.^~4~^~01/01/2001~
-~12643~^~304~^132.^3^6.^~1~^~A~^^^1^121.^142.^2^106.^158.^~4~^~01/01/2001~
-~12643~^~305~^293.^3^20.^~1~^~A~^^^1^260.^330.^2^206.^380.^~4~^~01/01/2001~
-~12643~^~306~^424.^3^32.^~1~^~A~^^^1^390.^489.^2^284.^563.^~4~^~01/01/2001~
-~12643~^~307~^383.^0^^~4~^~S~^^^^^^^^^^~08/01/1999~
-~12643~^~318~^140.^1^^~1~^~AS~^^^^^^^^^^~03/01/2001~
-~12643~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2002~
-~12643~^~320~^7.^1^^~1~^~AS~^^^^^^^^^^~06/01/2002~
-~12643~^~321~^84.^1^^~1~^~A~^^^^^^^^^^~01/01/2001~
-~12643~^~322~^0.^1^^~1~^~A~^^^^^^^^^^~01/01/2001~
-~12643~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2009~
-~12643~^~417~^16.^3^4.^~1~^~A~^^^1^9.^25.^2^-4.^35.^~4~^~01/01/2001~
-~12643~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~
-~12643~^~432~^16.^3^4.^~1~^~A~^^^^^^^^^^~03/01/2001~
-~12643~^~435~^16.^0^^~4~^~NC~^^^^^^^^^^~04/01/2007~
-~12643~^~601~^0.^0^^~7~^~Z~^^^^^^^^^^~09/01/1984~
-~12643~^~636~^85.^1^^~1~^^^^^^^^^^^~04/01/2007~
-~12643~^~638~^2.^1^^~1~^~A~^^^^^^^^^^~03/01/2001~
-~12643~^~639~^4.^1^^~1~^~A~^^^^^^^^^^~03/01/2001~
-~12643~^~641~^78.^1^^~1~^~A~^^^^^^^^^^~03/01/2001~
-~12644~^~208~^715.^0^^~4~^~NC~^^^^^^^^^^~03/01/2001~
-~12644~^~268~^2990.^0^^~4~^~NC~^^^^^^^^^^~03/01/2001~
-~12644~^~301~^67.^3^6.^~1~^~A~^^^1^60.^80.^2^40.^94.^~4~^~01/01/2001~
-~12644~^~304~^121.^3^4.^~1~^~A~^^^1^114.^129.^2^102.^139.^~4~^~01/01/2001~
-~12644~^~305~^263.^3^18.^~1~^~A~^^^1^240.^300.^2^183.^343.^~4~^~01/01/2001~
-~12644~^~306~^392.^3^6.^~1~^~A~^^^1^380.^402.^2^364.^420.^~4~^~01/01/2001~
-~12644~^~307~^393.^0^^~4~^~S~^^^^^^^^^^~08/01/1999~
-~12644~^~318~^104.^1^^~1~^~AS~^^^^^^^^^^~03/01/2001~
-~12644~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2002~
-~12644~^~320~^5.^1^^~1~^~AS~^^^^^^^^^^~06/01/2002~
-~12644~^~321~^62.^1^^~1~^~A~^^^^^^^^^^~01/01/2001~
-~12644~^~322~^0.^1^^~1~^~A~^^^^^^^^^^~01/01/2001~
-~12644~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2009~
-~12644~^~417~^15.^3^1.^~1~^~A~^^^1^13.^18.^2^8.^20.^~4~^~01/01/2001~
-~12644~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~
-~12644~^~432~^15.^3^1.^~1~^~A~^^^^^^^^^^~03/01/2001~
-~12644~^~435~^15.^0^^~4~^~NC~^^^^^^^^^^~03/01/2001~
-~12644~^~601~^0.^0^^~7~^~Z~^^^^^^^^^^~09/01/1984~
-~12644~^~636~^108.^1^^~1~^^^^^^^^^^^~05/01/1999~
-~12644~^~638~^5.^1^^~1~^~A~^^^^^^^^^^~03/01/2001~
-~12644~^~639~^7.^1^^~1~^~A~^^^^^^^^^^~03/01/2001~
-~12644~^~641~^96.^1^^~1~^~A~^^^^^^^^^^~03/01/2001~
-~12652~^~208~^569.^0^^~4~^~NC~^^^^^^^^^^~04/01/2015~
-~12652~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/1999~
-~12652~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/1999~
-~12652~^~268~^2379.^0^^~4~^~NC~^^^^^^^^^^~04/01/2015~
-~12652~^~301~^107.^13^5.^~1~^~A~^^^3^98.^127.^2^82.^131.^~2~^~05/01/2010~
-~12652~^~304~^109.^5^11.^~1~^~A~^^^2^98.^123.^1^-31.^249.^~2~^~05/01/2010~
-~12652~^~305~^469.^5^16.^~1~^~A~^^^2^452.^500.^1^258.^678.^~2~^~05/01/2010~
-~12652~^~306~^1007.^12^39.^~1~^~A~^^^3^875.^1090.^2^837.^1177.^~2~^~05/01/2010~
-~12652~^~307~^428.^17^34.^~1~^~A~^^^3^195.^1120.^2^281.^574.^~2~^~05/01/2010~
-~12652~^~318~^266.^0^^~1~^~AS~^^^^^^^^^^~04/01/2015~
-~12652~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2002~
-~12652~^~320~^13.^0^^~1~^~AS~^^^^^^^^^^~05/01/2010~
-~12652~^~321~^159.^15^44.^~1~^~A~^^^5^60.^337.^4^35.^283.^~2~^~04/01/2015~
-~12652~^~322~^0.^12^0.^~1~^~A~^^^3^0.^0.^^^^~1, 2~^~12/01/2002~
-~12652~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2009~
-~12652~^~334~^0.^8^0.^~1~^~A~^^^2^0.^0.^^^^~1, 2~^~12/01/2002~
-~12652~^~337~^0.^8^0.^~1~^~A~^^^2^0.^0.^^^^~1, 2~^~12/01/2002~
-~12652~^~338~^1160.^9^48.^~1~^~A~^^^3^1070.^1269.^2^951.^1368.^~2~^~05/01/2010~
-~12652~^~417~^51.^5^0.^~1~^~A~^^^2^48.^54.^1^44.^56.^~2~^~05/01/2010~
-~12652~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~
-~12652~^~432~^51.^5^0.^~1~^~A~^^^2^48.^54.^1^44.^56.^^~05/01/2010~
-~12652~^~435~^51.^0^^~4~^~NC~^^^^^^^^^^~05/01/2010~
-~12652~^~601~^0.^0^^~7~^~Z~^^^^^^^^^^~09/01/1984~
-~12652~^~638~^2.^8^0.^~1~^~A~^^^3^2.^3.^2^1.^3.^~1, 2~^~04/01/2015~
-~12652~^~639~^10.^8^0.^~1~^~A~^^^3^10.^11.^2^9.^11.^~2~^~05/01/2010~
-~12652~^~641~^210.^8^5.^~1~^~A~^^^3^202.^220.^2^188.^232.^~2~^~08/01/2011~
-~12663~^~208~^446.^0^^~4~^~NC~^^^^^^^^^^~09/01/1984~
-~12663~^~268~^1866.^0^^~4~^^^^^^^^^^^~05/01/2009~
-~12663~^~301~^55.^1^^~1~^^^^^^^^^^^~09/01/1984~
-~12663~^~304~^262.^1^^~1~^^^^^^^^^^^~09/01/1984~
-~12663~^~305~^92.^1^^~1~^^^^^^^^^^^~09/01/1984~
-~12663~^~306~^919.^1^^~1~^^^^^^^^^^^~09/01/1984~
-~12663~^~307~^2541.^1^^~8~^~LC~^^^^^^^^^^~05/01/2009~
-~12663~^~318~^62.^0^^~4~^^^^^^^^^^^~09/01/1984~
-~12663~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2002~
-~12663~^~320~^3.^0^^~4~^~NC~^^^^^^^^^^~05/01/2009~
-~12663~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2009~
-~12663~^~417~^9.^0^^~4~^^^^^^^^^^^~09/01/1984~
-~12663~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~
-~12663~^~432~^9.^0^^~4~^^^^^^^^^^^~05/01/2009~
-~12663~^~435~^9.^0^^~4~^~NC~^^^^^^^^^^~05/01/2009~
-~12663~^~601~^0.^0^^~7~^~Z~^^^^^^^^^^~09/01/1984~
-~12665~^~208~^607.^0^^~4~^~NR~^^^^^^^^^^~07/01/2012~
-~12665~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~07/01/2012~
-~12665~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~07/01/2012~
-~12665~^~268~^2540.^0^^~4~^~NR~^^^^^^^^^^~07/01/2012~
-~12665~^~301~^291.^3^21.^~1~^~A~^^^1^247.^302.^2^199.^382.^~4~^~07/01/2012~
-~12665~^~304~^274.^3^7.^~1~^~A~^^^1^270.^288.^2^240.^307.^~4~^~07/01/2012~
-~12665~^~305~^466.^3^11.^~1~^~A~^^^1^460.^490.^2^414.^516.^~4~^~07/01/2012~
-~12665~^~306~^699.^3^14.^~1~^~A~^^^1^694.^730.^2^636.^761.^~4~^~07/01/2012~
-~12665~^~307~^143.^0^^~8~^~LC~^^^^^^^^^^~05/01/2014~
-~12665~^~318~^1.^1^^~1~^~AS~^^^^^^^^^^~07/01/2012~
-~12665~^~321~^1.^1^^~1~^~A~^^^^^^^^^^~07/01/2012~
-~12665~^~322~^0.^1^^~1~^~A~^^^^^^^^^^~07/01/2012~
-~12665~^~334~^0.^0^^~4~^~BFZN~^~12061~^^^^^^^^^~07/01/2012~
-~12665~^~337~^0.^0^^~4~^~BFZN~^~12061~^^^^^^^^^~07/01/2012~
-~12665~^~338~^1.^0^^~4~^~BFZN~^~12061~^^^^^^^^^~07/01/2012~
-~12665~^~417~^27.^3^2.^~1~^~A~^^^1^26.^32.^2^16.^38.^~4~^~07/01/2012~
-~12665~^~432~^27.^3^2.^~1~^~A~^^^1^26.^32.^2^16.^38.^^~07/01/2012~
-~12665~^~601~^0.^0^^~7~^~Z~^^^^^^^^^^~07/01/2012~
-~12665~^~636~^130.^1^^~1~^~A~^^^^^^^^^^~07/01/2012~
-~12665~^~638~^3.^1^^~1~^~A~^^^^^^^^^^~07/01/2012~
-~12665~^~639~^9.^1^^~1~^~A~^^^^^^^^^^~07/01/2012~
-~12665~^~641~^118.^1^^~1~^~A~^^^^^^^^^^~07/01/2012~
-~12695~^~208~^614.^0^^~4~^~NC~^^^^^^^^^^~08/01/2010~
-~12695~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~11/01/2002~
-~12695~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~11/01/2002~
-~12695~^~268~^2568.^0^^~4~^~NC~^^^^^^^^^^~08/01/2010~
-~12695~^~301~^347.^8^12.^~1~^~A~^^^1^279.^384.^7^317.^377.^~4~^~05/01/2010~
-~12695~^~304~^279.^8^6.^~1~^~A~^^^1^247.^310.^7^263.^293.^~4~^~05/01/2010~
-~12695~^~305~^508.^8^10.^~1~^~A~^^^1^442.^547.^7^482.^533.^~4~^~05/01/2010~
-~12695~^~306~^748.^8^21.^~1~^~A~^^^1^678.^839.^7^698.^798.^~4~^~05/01/2010~
-~12695~^~307~^227.^0^^~8~^~LC~^^^^^^^^^^~08/01/2012~
-~12695~^~318~^1.^0^^~4~^~NC~^^^^^^^^^^~08/01/2010~
-~12695~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2002~
-~12695~^~320~^0.^0^^~4~^~NC~^^^^^^^^^^~08/01/2010~
-~12695~^~321~^1.^0^^~4~^~BFZN~^~12563~^^^^^^^^^~08/01/2010~
-~12695~^~322~^0.^0^^~4~^~BFZN~^~12563~^^^^^^^^^~11/01/2002~
-~12695~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2009~
-~12695~^~334~^0.^0^^~4~^~BFZN~^~12563~^^^^^^^^^~11/01/2002~
-~12695~^~337~^0.^0^^~4~^~BFZN~^~12563~^^^^^^^^^~11/01/2002~
-~12695~^~338~^1.^0^^~4~^~BFZN~^~12563~^^^^^^^^^~11/01/2002~
-~12695~^~417~^53.^0^^~4~^~BFZN~^~12563~^^^^^^^^^~08/01/2010~
-~12695~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~
-~12695~^~432~^53.^0^^~4~^~BFZN~^^^^^^^^^^~08/01/2010~
-~12695~^~435~^53.^0^^~4~^~NC~^^^^^^^^^^~08/01/2010~
-~12695~^~601~^0.^0^^~7~^~Z~^^^^^^^^^^~09/01/1984~
-~12695~^~638~^3.^8^0.^~1~^~A~^^^1^2.^4.^7^2.^3.^~1, 4~^~05/01/2010~
-~12695~^~639~^6.^8^0.^~1~^~A~^^^1^5.^8.^7^4.^6.^~4~^~05/01/2010~
-~12695~^~641~^131.^8^3.^~1~^~A~^^^1^116.^147.^7^122.^138.^~4~^~05/01/2010~
-~12698~^~208~^592.^0^^~4~^~NC~^^^^^^^^^^~07/01/1984~
-~12698~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2001~
-~12698~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2001~
-~12698~^~268~^2477.^0^^~4~^^^^^^^^^^^
-~12698~^~301~^141.^0^^~4~^^^^^^^^^^^~07/01/1984~
-~12698~^~304~^95.^0^^~4~^^^^^^^^^^^~07/01/1984~
-~12698~^~305~^790.^0^^~4~^^^^^^^^^^^~07/01/1984~
-~12698~^~306~^459.^0^^~4~^^^^^^^^^^^~07/01/1984~
-~12698~^~307~^35.^0^^~4~^^^^^^^^^^^~07/01/1984~
-~12698~^~318~^67.^0^^~4~^^^^^^^^^^^~07/01/1984~
-~12698~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2002~
-~12698~^~320~^3.^0^^~4~^~NC~^^^^^^^^^^~05/01/2009~
-~12698~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2009~
-~12698~^~417~^98.^0^^~4~^^^^^^^^^^^~07/01/1984~
-~12698~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~
-~12698~^~432~^98.^0^^~4~^^^^^^^^^^^~03/01/2009~
-~12698~^~435~^98.^0^^~4~^~NC~^^^^^^^^^^~05/01/2009~
-~12698~^~601~^0.^0^^~4~^^^^^^^^^^^~03/01/2009~
-~12737~^~208~^607.^0^^~4~^~NC~^^^^^^^^^^~08/01/2012~
-~12737~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~08/01/2012~
-~12737~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~08/01/2012~
-~12737~^~268~^2539.^0^^~4~^~NC~^^^^^^^^^^~08/01/2012~
-~12737~^~301~^117.^10^2.^~1~^~A~^^^1^106.^130.^9^111.^123.^~2, 3~^~08/01/2012~
-~12737~^~304~^229.^10^2.^~1~^~A~^^^1^212.^236.^9^224.^234.^~2, 3~^~08/01/2012~
-~12737~^~305~^456.^10^3.^~1~^~A~^^^1^438.^469.^9^447.^464.^~2, 3~^~08/01/2012~
-~12737~^~306~^632.^10^7.^~1~^~A~^^^1^594.^662.^9^615.^648.^~2, 3~^~08/01/2012~
-~12737~^~307~^161.^0^^~8~^~LC~^^^^^^^^^^~08/01/2012~
-~12737~^~318~^3.^0^^~4~^~RA~^^^^^^^^^^~08/01/2012~
-~12737~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~08/01/2012~
-~12737~^~320~^0.^0^^~4~^~RA~^^^^^^^^^^~08/01/2012~
-~12737~^~321~^2.^0^^~4~^~RA~^^^^^^^^^^~08/01/2012~
-~12737~^~322~^0.^0^^~4~^~RA~^^^^^^^^^^~08/01/2012~
-~12737~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~08/01/2012~
-~12737~^~334~^0.^0^^~4~^~RA~^^^^^^^^^^~08/01/2012~
-~12737~^~337~^0.^0^^~4~^~RA~^^^^^^^^^^~08/01/2012~
-~12737~^~338~^8.^0^^~4~^~RA~^^^^^^^^^^~08/01/2012~
-~12737~^~417~^83.^0^^~1~^^^^^^^^^^^~08/01/2012~
-~12737~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~08/01/2012~
-~12737~^~432~^83.^0^^~1~^^^^^^^^^^^~08/01/2012~
-~12737~^~435~^83.^0^^~4~^~NC~^^^^^^^^^^~08/01/2012~
-~12737~^~601~^0.^0^^~7~^~Z~^^^^^^^^^^~08/01/2012~
-~12738~^~208~^607.^0^^~8~^~LC~^^^^^^^^^^~08/01/2012~
-~12738~^~262~^0.^0^^~8~^~LC~^^^^^^^^^^~08/01/2012~
-~12738~^~263~^0.^0^^~8~^~LC~^^^^^^^^^^~08/01/2012~
-~12738~^~268~^2540.^0^^~8~^~LC~^^^^^^^^^^~08/01/2012~
-~12738~^~301~^130.^0^^~8~^~LC~^^^^^^^^^^~08/01/2012~
-~12738~^~304~^275.^0^^~8~^~LC~^^^^^^^^^^~08/01/2012~
-~12738~^~305~^433.^0^^~8~^~LC~^^^^^^^^^^~08/01/2012~
-~12738~^~306~^714.^0^^~8~^~LC~^^^^^^^^^^~08/01/2012~
-~12738~^~307~^143.^0^^~8~^~LC~^^^^^^^^^^~08/01/2012~
-~12738~^~318~^27.^0^^~8~^~LC~^^^^^^^^^^~08/01/2012~
-~12738~^~320~^1.^0^^~4~^~NC~^^^^^^^^^^~08/01/2012~
-~12738~^~321~^13.^0^^~8~^~LC~^^^^^^^^^^~08/01/2012~
-~12738~^~324~^0.^0^^~8~^~LC~^^^^^^^^^^~08/01/2012~
-~12738~^~417~^104.^0^^~8~^~LC~^^^^^^^^^^~08/01/2012~
-~12738~^~432~^104.^0^^~8~^~LC~^^^^^^^^^^~08/01/2012~
-~12738~^~601~^0.^0^^~8~^~LC~^^^^^^^^^^~08/01/2012~
-~13000~^~208~^117.^0^^~4~^~NC~^^^^^^^^^^~01/01/2008~
-~13000~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~10/01/2007~
-~13000~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~10/01/2007~
-~13000~^~268~^488.^0^^~4~^~NC~^^^^^^^^^^~01/01/2008~
-~13000~^~301~^9.^11^0.^~1~^~A~^^^1^5.^13.^10^7.^10.^~2, 3~^~06/01/2007~
-~13000~^~304~^23.^11^0.^~1~^~A~^^^1^22.^25.^10^22.^23.^~2, 3~^~06/01/2007~
-~13000~^~305~^212.^11^1.^~1~^~A~^^^1^202.^222.^10^207.^216.^~2, 3~^~06/01/2007~
-~13000~^~306~^342.^11^1.^~1~^~A~^^^1^334.^352.^10^338.^346.^~2, 3~^~06/01/2007~
-~13000~^~307~^55.^11^1.^~1~^~A~^^^1^49.^61.^10^52.^57.^~2, 3~^~06/01/2007~
-~13000~^~318~^0.^0^^~1~^~AS~^^^^^^^^^^~10/01/2007~
-~13000~^~319~^0.^0^^~4~^~BFFN~^~23584~^^^^^^^^^~01/01/2008~
-~13000~^~320~^0.^0^^~1~^~AS~^^^^^^^^^^~10/01/2007~
-~13000~^~321~^0.^0^^~7~^~Z~^^^^^^^^^^~10/01/2007~
-~13000~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~10/01/2007~
-~13000~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~10/01/2007~
-~13000~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~10/01/2007~
-~13000~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~10/01/2007~
-~13000~^~417~^13.^0^^~4~^~BFPN~^~23584~^^^^^^^^^~11/01/2007~
-~13000~^~431~^0.^0^^~4~^~BFPN~^~23584~^^^^^^^^^~01/01/2008~
-~13000~^~432~^13.^0^^~4~^~BFPN~^~23584~^^^^^^^^^~11/01/2007~
-~13000~^~435~^13.^0^^~4~^~NC~^~23584~^^^^^^^^^~01/01/2008~
-~13000~^~601~^55.^14^0.^~1~^~A~^^^1^49.^62.^13^52.^56.^~2, 3~^~06/01/2007~
-~13001~^~208~^291.^0^^~4~^~NC~^^^^^^^^^^~05/01/1990~
-~13001~^~268~^1218.^0^^~4~^^^^^^^^^^^~02/01/2006~
-~13001~^~301~^8.^0^^~1~^^^^^^^^^^^~05/01/1990~
-~13001~^~304~^17.^0^^~1~^^^^^^^^^^^~05/01/1990~
-~13001~^~305~^154.^0^^~1~^^^^^^^^^^^~05/01/1990~
-~13001~^~306~^267.^0^^~1~^^^^^^^^^^^~05/01/1990~
-~13001~^~307~^59.^0^^~1~^^^^^^^^^^^~05/01/1990~
-~13001~^~318~^0.^0^^~1~^^^^^^^^^^^~05/01/1990~
-~13001~^~320~^0.^0^^~4~^^^^^^^^^^^~09/01/2010~
-~13001~^~417~^7.^0^^~1~^^^^^^^^^^^~05/01/1990~
-~13001~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~
-~13001~^~432~^7.^0^^~1~^^^^^^^^^^^~02/01/2006~
-~13001~^~435~^7.^0^^~4~^~NC~^^^^^^^^^^~02/01/2006~
-~13001~^~601~^74.^0^^~1~^^^^^^^^^^^~05/01/1990~
-~13002~^~208~^278.^0^^~4~^~NC~^^^^^^^^^^~05/01/1990~
-~13002~^~268~^1163.^0^^~4~^^^^^^^^^^^~02/01/2006~
-~13002~^~301~^8.^0^^~1~^^^^^^^^^^^~05/01/1990~
-~13002~^~304~^17.^0^^~1~^^^^^^^^^^^~05/01/1990~
-~13002~^~305~^156.^0^^~1~^^^^^^^^^^^~05/01/1990~
-~13002~^~306~^271.^0^^~1~^^^^^^^^^^^~05/01/1990~
-~13002~^~307~^59.^0^^~1~^^^^^^^^^^^~05/01/1990~
-~13002~^~318~^0.^0^^~1~^^^^^^^^^^^~05/01/1990~
-~13002~^~417~^7.^0^^~1~^^^^^^^^^^^~05/01/1990~
-~13002~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~
-~13002~^~432~^7.^0^^~1~^^^^^^^^^^^~02/01/2006~
-~13002~^~435~^7.^0^^~4~^~NC~^^^^^^^^^^~02/01/2006~
-~13002~^~601~^74.^0^^~1~^^^^^^^^^^^~05/01/1990~
-~13019~^~208~^674.^0^^~4~^~NC~^^^^^^^^^^~05/01/1990~
-~13019~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~
-~13019~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~
-~13019~^~268~^2820.^0^^~4~^^^^^^^^^^^~04/01/2009~
-~13019~^~301~^26.^4^7.^~1~^~A~^^^^^^^^^^~02/01/2003~
-~13019~^~304~^5.^4^0.^~1~^~A~^^^^^^^^^^~02/01/2003~
-~13019~^~305~^61.^4^4.^~1~^~A~^^^^^^^^^^~02/01/2003~
-~13019~^~306~^96.^4^2.^~1~^~A~^^^^^^^^^^~02/01/2003~
-~13019~^~307~^26.^4^1.^~1~^~A~^^^^^^^^^^~02/01/2003~
-~13019~^~318~^0.^0^^~1~^~AS~^^^^^^^^^^~02/01/2003~
-~13019~^~319~^0.^1^^~1~^~A~^^^^^^^^^^~02/01/2003~
-~13019~^~320~^0.^0^^~1~^~AS~^^^^^^^^^^~04/01/2009~
-~13019~^~321~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~
-~13019~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~
-~13019~^~324~^11.^1^^~1~^~A~^^^^^^^^^^~04/01/2009~
-~13019~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~
-~13019~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~
-~13019~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~
-~13019~^~417~^0.^1^^~1~^~A~^^^^^^^^^^~02/01/2003~
-~13019~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~
-~13019~^~432~^0.^1^^~1~^~A~^^^^^^^^^^~04/01/2009~
-~13019~^~435~^0.^0^^~4~^~NC~^^^^^^^^^^~04/01/2009~
-~13019~^~601~^99.^13^3.^~1~^^^^^^^^^^^~05/01/1990~
-~13020~^~208~^680.^0^^~4~^~NC~^^^^^^^^^^~02/01/2003~
-~13020~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~08/01/2001~
-~13020~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~08/01/2001~
-~13020~^~268~^2845.^0^^~4~^^^^^^^^^^^~04/01/2009~
-~13020~^~301~^19.^4^1.^~1~^~A~^^^^^^^^^^~02/01/2003~
-~13020~^~304~^6.^4^0.^~1~^~A~^^^^^^^^^^~02/01/2003~
-~13020~^~305~^64.^4^1.^~1~^~A~^^^^^^^^^^~02/01/2003~
-~13020~^~306~^99.^4^1.^~1~^~A~^^^^^^^^^^~02/01/2003~
-~13020~^~307~^23.^4^1.^~1~^~A~^^^^^^^^^^~02/01/2003~
-~13020~^~318~^0.^0^^~1~^~AS~^^^^^^^^^^~02/01/2003~
-~13020~^~319~^0.^1^^~1~^~A~^^^^^^^^^^~02/01/2003~
-~13020~^~320~^0.^0^^~1~^~AS~^^^^^^^^^^~02/01/2003~
-~13020~^~321~^0.^0^^~7~^~Z~^^^^^^^^^^~07/01/2002~
-~13020~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~07/01/2002~
-~13020~^~324~^15.^1^^~1~^~A~^^^^^^^^^^~04/01/2009~
-~13020~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~07/01/2002~
-~13020~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~07/01/2002~
-~13020~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~07/01/2002~
-~13020~^~417~^0.^1^^~1~^~A~^^^^^^^^^^~02/01/2003~
-~13020~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~
-~13020~^~432~^0.^1^^~1~^~A~^^^^^^^^^^~04/01/2009~
-~13020~^~435~^0.^0^^~4~^~NC~^^^^^^^^^^~04/01/2009~
-~13020~^~601~^95.^6^3.^~1~^^^^^^^^^^^~02/01/2003~
-~13023~^~208~^157.^0^^~4~^~NC~^^^^^^^^^^~05/01/2016~
-~13023~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2007~
-~13023~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2007~
-~13023~^~268~^658.^0^^~4~^~NC~^^^^^^^^^^~05/01/2016~
-~13023~^~301~^5.^0^^~1~^^^^^^^^^^^~05/01/1990~
-~13023~^~304~^23.^0^^~1~^^^^^^^^^^^~05/01/1990~
-~13023~^~305~^201.^0^^~1~^^^^^^^^^^^~05/01/1990~
-~13023~^~306~^330.^0^^~1~^^^^^^^^^^^~05/01/1990~
-~13023~^~307~^79.^0^^~1~^^^^^^^^^^^~05/01/1990~
-~13023~^~318~^0.^0^^~1~^^^^^^^^^^^~05/01/1990~
-~13023~^~319~^0.^0^^~4~^~BFSN~^~23617~^^^^^^^^^~03/01/2007~
-~13023~^~320~^0.^0^^~1~^~AS~^^^^^^^^^^~03/01/2007~
-~13023~^~321~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2007~
-~13023~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2007~
-~13023~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2007~
-~13023~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2007~
-~13023~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2007~
-~13023~^~417~^7.^0^^~1~^^^^^^^^^^^~05/01/1990~
-~13023~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~
-~13023~^~432~^7.^0^^~1~^^^^^^^^^^^~03/01/2007~
-~13023~^~435~^7.^0^^~4~^~NC~^^^^^^^^^^~03/01/2007~
-~13023~^~601~^62.^0^^~1~^^^^^^^^^^^~05/01/1990~
-~13047~^~208~^198.^0^^~4~^~NC~^^^^^^^^^^~07/01/2015~
-~13047~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2007~
-~13047~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2007~
-~13047~^~268~^828.^0^^~4~^~NC~^^^^^^^^^^~07/01/2015~
-~13047~^~301~^12.^11^1.^~1~^~A~^^^1^8.^21.^10^9.^14.^~2, 3~^~06/01/2007~
-~13047~^~304~^19.^11^0.^~1~^~A~^^^1^16.^20.^10^17.^19.^~2, 3~^~06/01/2007~
-~13047~^~305~^175.^11^2.^~1~^~A~^^^1^153.^192.^10^168.^181.^~2, 3~^~06/01/2007~
-~13047~^~306~^289.^11^5.^~1~^~A~^^^1^247.^308.^10^277.^299.^~2, 3~^~06/01/2007~
-~13047~^~307~^68.^11^1.^~1~^~A~^^^1^55.^74.^10^64.^71.^~2, 3~^~06/01/2007~
-~13047~^~318~^0.^0^^~1~^~AS~^^^^^^^^^^~06/01/2007~
-~13047~^~319~^0.^0^^~4~^~NR~^^^^^^^^^^~11/01/2007~
-~13047~^~320~^0.^0^^~1~^~AS~^^^^^^^^^^~06/01/2007~
-~13047~^~321~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2007~
-~13047~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2007~
-~13047~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2007~
-~13047~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2007~
-~13047~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2007~
-~13047~^~417~^6.^0^^~4~^~NR~^^^^^^^^^^~11/01/2007~
-~13047~^~431~^0.^0^^~4~^~NR~^^^^^^^^^^~11/01/2007~
-~13047~^~432~^6.^0^^~4~^~NR~^^^^^^^^^^~11/01/2007~
-~13047~^~435~^6.^0^^~4~^~NC~^^^^^^^^^^~01/01/2008~
-~13047~^~601~^62.^15^0.^~1~^~A~^^^1^58.^71.^14^60.^64.^~2, 3~^~06/01/2007~
-~13055~^~208~^280.^0^^~4~^~NC~^^^^^^^^^^~07/01/2010~
-~13055~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2003~
-~13055~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2003~
-~13055~^~268~^1173.^0^^~4~^~NC~^^^^^^^^^^~07/01/2010~
-~13055~^~301~^17.^0^^~4~^~BFNN~^^^^^^^^^^~05/01/2003~
-~13055~^~304~^19.^0^^~4~^~BFNN~^^^^^^^^^^~05/01/2003~
-~13055~^~305~^180.^0^^~4~^~BFNN~^^^^^^^^^^~05/01/2003~
-~13055~^~306~^237.^0^^~4~^~BFNN~^^^^^^^^^^~05/01/2003~
-~13055~^~307~^49.^0^^~4~^~BFNN~^^^^^^^^^^~05/01/2003~
-~13055~^~318~^0.^0^^~1~^~AS~^^^^^^^^^^~05/01/2003~
-~13055~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2003~
-~13055~^~320~^0.^0^^~1~^~AS~^^^^^^^^^^~05/01/2003~
-~13055~^~321~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2003~
-~13055~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2003~
-~13055~^~324~^11.^0^^~4~^~BFFN~^^^^^^^^^^~03/01/2009~
-~13055~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2003~
-~13055~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2003~
-~13055~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2003~
-~13055~^~417~^9.^0^^~1~^~PAK~^^^^^^^^^^~05/01/2003~
-~13055~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2003~
-~13055~^~432~^9.^0^^~1~^~PAK~^^^^^^^^^^~07/01/2010~
-~13055~^~435~^9.^0^^~4~^~NC~^^^^^^^^^^~07/01/2010~
-~13055~^~601~^107.^0^^~4~^~BFSN~^~13983~^^^^^^^^^~07/01/2010~
-~13065~^~208~^165.^0^^~4~^~NC~^^^^^^^^^^~07/01/2010~
-~13065~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~
-~13065~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~
-~13065~^~268~^692.^0^^~4~^~NC~^^^^^^^^^^~07/01/2010~
-~13065~^~301~^27.^0^^~4~^~BFFN~^^^^^^^^^^~08/01/2003~
-~13065~^~304~^22.^0^^~4~^~BFFN~^^^^^^^^^^~08/01/2003~
-~13065~^~305~^193.^0^^~4~^~BFFN~^^^^^^^^^^~08/01/2003~
-~13065~^~306~^330.^0^^~4~^~BFFN~^^^^^^^^^^~08/01/2003~
-~13065~^~307~^54.^0^^~4~^~BFFN~^^^^^^^^^^~08/01/2003~
-~13065~^~318~^0.^0^^~1~^~AS~^^^^^^^^^^~08/01/2003~
-~13065~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~08/01/2003~
-~13065~^~320~^0.^0^^~1~^~AS~^^^^^^^^^^~08/01/2003~
-~13065~^~321~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~
-~13065~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~
-~13065~^~324~^4.^0^^~4~^~BFFN~^^^^^^^^^^~03/01/2009~
-~13065~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~
-~13065~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~
-~13065~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~
-~13065~^~417~^12.^0^^~4~^~BFPN~^^^^^^^^^^~08/01/2003~
-~13065~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~
-~13065~^~432~^12.^0^^~4~^~BFPN~^^^^^^^^^^~07/01/2010~
-~13065~^~435~^12.^0^^~4~^~NC~^^^^^^^^^^~07/01/2010~
-~13065~^~601~^68.^0^^~4~^~BFSN~^^^^^^^^^^~07/01/2010~
-~13066~^~208~^263.^0^^~4~^~NC~^^^^^^^^^^~05/01/1990~
-~13066~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2004~
-~13066~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2004~
-~13066~^~268~^1100.^0^^~4~^^^^^^^^^^^~09/01/2004~
-~13066~^~301~^6.^0^^~1~^^^^^^^^^^^~05/01/1990~
-~13066~^~304~^23.^0^^~1~^^^^^^^^^^^~05/01/1990~
-~13066~^~305~^256.^0^^~1~^^^^^^^^^^^~05/01/1990~
-~13066~^~306~^337.^0^^~1~^^^^^^^^^^^~05/01/1990~
-~13066~^~307~^70.^0^^~1~^^^^^^^^^^^~05/01/1990~
-~13066~^~318~^0.^0^^~1~^^^^^^^^^^^~05/01/1990~
-~13066~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2004~
-~13066~^~320~^0.^0^^~1~^~AS~^^^^^^^^^^~09/01/2004~
-~13066~^~321~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2004~
-~13066~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2004~
-~13066~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2004~
-~13066~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2004~
-~13066~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2004~
-~13066~^~417~^9.^0^^~1~^^^^^^^^^^^~05/01/1990~
-~13066~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~
-~13066~^~432~^9.^0^^~1~^^^^^^^^^^^~09/01/2004~
-~13066~^~435~^9.^0^^~4~^~NC~^^^^^^^^^^~03/01/2010~
-~13066~^~601~^72.^0^^~1~^^^^^^^^^^^~05/01/1990~
-~13067~^~208~^202.^0^^~4~^~NC~^^^^^^^^^^~07/01/2010~
-~13067~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2003~
-~13067~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2003~
-~13067~^~268~^843.^0^^~4~^~NC~^^^^^^^^^^~07/01/2010~
-~13067~^~301~^18.^0^^~4~^~BFFN~^^^^^^^^^^~06/01/2003~
-~13067~^~304~^22.^0^^~4~^~BFFN~^^^^^^^^^^~06/01/2003~
-~13067~^~305~^201.^0^^~4~^~BFFN~^^^^^^^^^^~06/01/2003~
-~13067~^~306~^326.^0^^~4~^~BFFN~^^^^^^^^^^~06/01/2003~
-~13067~^~307~^53.^0^^~4~^~BFFN~^^^^^^^^^^~06/01/2003~
-~13067~^~318~^0.^0^^~1~^~AS~^^^^^^^^^^~05/01/2003~
-~13067~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2003~
-~13067~^~320~^0.^0^^~1~^~AS~^^^^^^^^^^~05/01/2003~
-~13067~^~321~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2003~
-~13067~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2003~
-~13067~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2003~
-~13067~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2003~
-~13067~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2003~
-~13067~^~417~^9.^0^^~4~^~BFPN~^^^^^^^^^^~06/01/2003~
-~13067~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~
-~13067~^~432~^9.^0^^~4~^~BFPN~^^^^^^^^^^~07/01/2010~
-~13067~^~435~^9.^0^^~4~^~NC~^^^^^^^^^^~07/01/2010~
-~13067~^~601~^81.^0^^~4~^~BFSN~^^^^^^^^^^~07/01/2010~
-~13068~^~208~^149.^0^^~4~^~NC~^^^^^^^^^^~01/01/2017~
-~13068~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~07/01/2002~
-~13068~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~07/01/2002~
-~13068~^~268~^625.^0^^~4~^~NC~^^^^^^^^^^~01/01/2017~
-~13068~^~301~^28.^0^^~4~^~BFNN~^^^^^^^^^^~08/01/2003~
-~13068~^~304~^23.^0^^~4~^~BFNN~^^^^^^^^^^~08/01/2003~
-~13068~^~305~^204.^0^^~4~^~BFNN~^^^^^^^^^^~08/01/2003~
-~13068~^~306~^340.^0^^~4~^~BFNN~^^^^^^^^^^~08/01/2003~
-~13068~^~307~^57.^0^^~4~^~BFNN~^^^^^^^^^^~08/01/2003~
-~13068~^~318~^0.^0^^~1~^~AS~^^^^^^^^^^~08/01/2003~
-~13068~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~08/01/2003~
-~13068~^~320~^0.^0^^~1~^~AS~^^^^^^^^^^~06/01/2003~
-~13068~^~321~^0.^0^^~7~^~Z~^^^^^^^^^^~07/01/2002~
-~13068~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~07/01/2002~
-~13068~^~324~^3.^0^^~4~^~BFFN~^^^^^^^^^^~03/01/2009~
-~13068~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~07/01/2002~
-~13068~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~07/01/2002~
-~13068~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~07/01/2002~
-~13068~^~417~^13.^0^^~4~^~BFPN~^^^^^^^^^^~08/01/2003~
-~13068~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~
-~13068~^~432~^13.^0^^~4~^~BFPN~^^^^^^^^^^~07/01/2010~
-~13068~^~435~^13.^0^^~4~^~NC~^^^^^^^^^^~07/01/2010~
-~13068~^~601~^69.^0^^~4~^~BFSN~^^^^^^^^^^~07/01/2010~
-~13069~^~208~^237.^0^^~4~^~NC~^^^^^^^^^^~05/01/1990~
-~13069~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~07/01/2002~
-~13069~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~07/01/2002~
-~13069~^~268~^992.^0^^~4~^^^^^^^^^^^~03/01/2009~
-~13069~^~301~^6.^1^^~1~^^^^^^^^^^^~05/01/1990~
-~13069~^~304~^24.^1^^~1~^^^^^^^^^^^~05/01/1990~
-~13069~^~305~^267.^1^^~1~^^^^^^^^^^^~05/01/1990~
-~13069~^~306~^351.^1^^~1~^^^^^^^^^^^~05/01/1990~
-~13069~^~307~^72.^1^^~1~^^^^^^^^^^^~05/01/1990~
-~13069~^~318~^0.^0^^~1~^^^^^^^^^^^~05/01/1990~
-~13069~^~319~^0.^0^^~4~^~NR~^^^^^^^^^^~07/01/2002~
-~13069~^~320~^0.^0^^~1~^~AS~^^^^^^^^^^~07/01/2002~
-~13069~^~321~^0.^0^^~7~^~Z~^^^^^^^^^^~07/01/2002~
-~13069~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~07/01/2002~
-~13069~^~324~^8.^0^^~4~^~BFFN~^^^^^^^^^^~03/01/2009~
-~13069~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~07/01/2002~
-~13069~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~07/01/2002~
-~13069~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~07/01/2002~
-~13069~^~417~^9.^1^^~1~^^^^^^^^^^^~05/01/1990~
-~13069~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~
-~13069~^~432~^9.^1^^~1~^^^^^^^^^^^~03/01/2009~
-~13069~^~435~^9.^0^^~4~^~NC~^^^^^^^^^^~03/01/2010~
-~13069~^~601~^71.^6^8.^~1~^^^^^^^^^^^~05/01/1990~
-~13070~^~208~^194.^0^^~4~^~NC~^^^^^^^^^^~07/01/2010~
-~13070~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2003~
-~13070~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2003~
-~13070~^~268~^811.^0^^~4~^~NC~^^^^^^^^^^~07/01/2010~
-~13070~^~301~^15.^0^^~4~^~BFNN~^^^^^^^^^^~04/01/2003~
-~13070~^~304~^23.^0^^~4~^~BFNN~^^^^^^^^^^~04/01/2003~
-~13070~^~305~^211.^0^^~4~^~BFNN~^^^^^^^^^^~04/01/2003~
-~13070~^~306~^338.^0^^~4~^~BFNN~^^^^^^^^^^~04/01/2003~
-~13070~^~307~^56.^0^^~4~^~BFNN~^^^^^^^^^^~04/01/2003~
-~13070~^~318~^0.^0^^~1~^~AS~^^^^^^^^^^~04/01/2003~
-~13070~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2003~
-~13070~^~320~^0.^0^^~1~^~AS~^^^^^^^^^^~04/01/2003~
-~13070~^~321~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2003~
-~13070~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2003~
-~13070~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2003~
-~13070~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2003~
-~13070~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2003~
-~13070~^~417~^9.^0^^~4~^~BFPN~^^^^^^^^^^~04/01/2003~
-~13070~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~
-~13070~^~432~^9.^0^^~4~^~BFPN~^^^^^^^^^^~07/01/2010~
-~13070~^~435~^9.^0^^~4~^~NC~^^^^^^^^^^~07/01/2010~
-~13070~^~601~^80.^0^^~4~^~BFSN~^^^^^^^^^^~07/01/2010~
-~13095~^~208~^274.^0^^~4~^~NC~^^^^^^^^^^~05/01/1990~
-~13095~^~268~^1146.^0^^~4~^^^^^^^^^^^
-~13095~^~301~^10.^0^^~1~^^^^^^^^^^^~05/01/1990~
-~13095~^~304~^18.^0^^~1~^^^^^^^^^^^~05/01/1990~
-~13095~^~305~^168.^0^^~1~^^^^^^^^^^^~05/01/1990~
-~13095~^~306~^305.^0^^~1~^^^^^^^^^^^~05/01/1990~
-~13095~^~307~^56.^0^^~1~^^^^^^^^^^^~05/01/1990~
-~13095~^~318~^0.^0^^~1~^^^^^^^^^^^~05/01/1990~
-~13095~^~319~^0.^0^^~1~^^^^^^^^^^^~06/01/2002~
-~13095~^~320~^0.^0^^~1~^^^^^^^^^^^~06/01/2002~
-~13095~^~417~^5.^0^^~1~^^^^^^^^^^^~05/01/1990~
-~13095~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~
-~13095~^~432~^5.^0^^~1~^^^^^^^^^^^~05/01/1990~
-~13095~^~435~^5.^0^^~4~^~NC~^^^^^^^^^^~01/01/2001~
-~13095~^~601~^68.^0^^~1~^^^^^^^^^^^~05/01/1990~
-~13096~^~208~^265.^0^^~4~^~NC~^^^^^^^^^^~08/01/2010~
-~13096~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2003~
-~13096~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2003~
-~13096~^~268~^1108.^0^^~4~^~NC~^^^^^^^^^^~08/01/2010~
-~13096~^~301~^18.^0^^~4~^~BFFN~^^^^^^^^^^~05/01/2003~
-~13096~^~304~^22.^0^^~4~^~BFFN~^^^^^^^^^^~05/01/2003~
-~13096~^~305~^201.^0^^~4~^~BFFN~^^^^^^^^^^~05/01/2003~
-~13096~^~306~^326.^0^^~4~^~BFFN~^^^^^^^^^^~05/01/2003~
-~13096~^~307~^53.^0^^~4~^~BFFN~^^^^^^^^^^~05/01/2003~
-~13096~^~318~^0.^0^^~1~^~AS~^^^^^^^^^^~05/01/2003~
-~13096~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2003~
-~13096~^~320~^0.^0^^~1~^~AS~^^^^^^^^^^~05/01/2003~
-~13096~^~321~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2003~
-~13096~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2003~
-~13096~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2003~
-~13096~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2003~
-~13096~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2003~
-~13096~^~417~^8.^0^^~4~^~BFPN~^^^^^^^^^^~05/01/2003~
-~13096~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~
-~13096~^~432~^8.^0^^~4~^~BFPN~^^^^^^^^^^~08/01/2010~
-~13096~^~435~^8.^0^^~4~^~NC~^^^^^^^^^^~08/01/2010~
-~13096~^~601~^88.^0^^~4~^~BFSN~^~23126~^^^^^^^^^~08/01/2010~
-~13097~^~208~^161.^0^^~4~^~NC~^^^^^^^^^^~05/01/1990~
-~13097~^~268~^674.^0^^~4~^^^^^^^^^^^
-~13097~^~301~^10.^0^^~1~^^^^^^^^^^^~05/01/1990~
-~13097~^~304~^22.^0^^~1~^^^^^^^^^^^~05/01/1990~
-~13097~^~305~^196.^0^^~1~^^^^^^^^^^^~05/01/1990~
-~13097~^~306~^373.^0^^~1~^^^^^^^^^^^~05/01/1990~
-~13097~^~307~^63.^0^^~1~^^^^^^^^^^^~05/01/1990~
-~13097~^~318~^0.^0^^~1~^^^^^^^^^^^~05/01/1990~
-~13097~^~319~^0.^0^^~1~^^^^^^^^^^^~06/01/2002~
-~13097~^~320~^0.^0^^~1~^^^^^^^^^^^~06/01/2002~
-~13097~^~417~^6.^0^^~1~^^^^^^^^^^^~05/01/1990~
-~13097~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~
-~13097~^~432~^6.^0^^~1~^^^^^^^^^^^~05/01/1990~
-~13097~^~435~^6.^0^^~4~^~NC~^^^^^^^^^^~01/01/2001~
-~13097~^~601~^59.^0^^~1~^^^^^^^^^^^~05/01/1990~
-~13098~^~208~^205.^0^^~4~^~NC~^^^^^^^^^^~07/01/2010~
-~13098~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2003~
-~13098~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2003~
-~13098~^~268~^856.^0^^~4~^~NC~^^^^^^^^^^~07/01/2010~
-~13098~^~301~^16.^0^^~4~^~BFNN~^^^^^^^^^^~05/01/2003~
-~13098~^~304~^25.^0^^~4~^~BFNN~^^^^^^^^^^~05/01/2003~
-~13098~^~305~^227.^0^^~4~^~BFNN~^^^^^^^^^^~05/01/2003~
-~13098~^~306~^363.^0^^~4~^~BFNN~^^^^^^^^^^~05/01/2003~
-~13098~^~307~^60.^0^^~4~^~BFNN~^^^^^^^^^^~05/01/2003~
-~13098~^~318~^0.^0^^~1~^~AS~^^^^^^^^^^~05/01/2003~
-~13098~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2003~
-~13098~^~320~^0.^0^^~1~^~AS~^^^^^^^^^^~05/01/2003~
-~13098~^~321~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2003~
-~13098~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2003~
-~13098~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2003~
-~13098~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2003~
-~13098~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2003~
-~13098~^~417~^10.^0^^~4~^~BFPN~^^^^^^^^^^~05/01/2003~
-~13098~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~
-~13098~^~432~^10.^0^^~4~^~BFPN~^^^^^^^^^^~07/01/2010~
-~13098~^~435~^10.^0^^~4~^~NC~^^^^^^^^^^~07/01/2010~
-~13098~^~601~^90.^0^^~4~^~BFSN~^~13980~^^^^^^^^^~07/01/2010~
-~13147~^~208~^390.^0^^~4~^~NC~^^^^^^^^^^~05/01/2016~
-~13147~^~268~^1631.^0^^~4~^~NC~^^^^^^^^^^~05/01/2016~
-~13147~^~301~^9.^0^^~1~^^^^^^^^^^^~05/01/1990~
-~13147~^~304~^14.^0^^~1~^^^^^^^^^^^~05/01/1990~
-~13147~^~305~^137.^0^^~1~^^^^^^^^^^^~05/01/1990~
-~13147~^~306~^232.^0^^~1~^^^^^^^^^^^~05/01/1990~
-~13147~^~307~^49.^0^^~1~^^^^^^^^^^^~05/01/1990~
-~13147~^~318~^0.^0^^~4~^^^^^^^^^^^~05/01/1990~
-~13147~^~319~^0.^0^^~4~^^^^^^^^^^^~06/01/2002~
-~13147~^~320~^0.^0^^~4~^^^^^^^^^^^~06/01/2002~
-~13147~^~417~^5.^0^^~1~^^^^^^^^^^^~05/01/1990~
-~13147~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~
-~13147~^~432~^5.^0^^~1~^^^^^^^^^^^~05/01/1990~
-~13147~^~435~^5.^0^^~4~^~NC~^^^^^^^^^^~01/01/2001~
-~13147~^~601~^76.^0^^~1~^^^^^^^^^^^~05/01/1990~
-~13147~^~636~^0.^0^^~4~^^^^^^^^^^^~05/01/1990~
-~13148~^~208~^471.^0^^~4~^~NC~^^^^^^^^^^~05/01/1990~
-~13148~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~
-~13148~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~
-~13148~^~268~^1971.^0^^~4~^^^^^^^^^^^~03/01/2009~
-~13148~^~301~^12.^0^^~1~^^^^^^^^^^^~05/01/1990~
-~13148~^~304~^15.^0^^~1~^^^^^^^^^^^~05/01/1990~
-~13148~^~305~^162.^0^^~1~^^^^^^^^^^^~05/01/1990~
-~13148~^~306~^224.^0^^~1~^^^^^^^^^^^~05/01/1990~
-~13148~^~307~^50.^0^^~1~^^^^^^^^^^^~05/01/1990~
-~13148~^~318~^0.^0^^~4~^^^^^^^^^^^~05/01/1990~
-~13148~^~319~^0.^0^^~4~^~NR~^^^^^^^^^^~02/01/2003~
-~13148~^~320~^0.^0^^~4~^~NC~^^^^^^^^^^~03/01/2009~
-~13148~^~321~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~
-~13148~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~
-~13148~^~324~^27.^0^^~4~^~BFFN~^^^^^^^^^^~03/01/2009~
-~13148~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~
-~13148~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~
-~13148~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~
-~13148~^~417~^5.^0^^~1~^^^^^^^^^^^~05/01/1990~
-~13148~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~
-~13148~^~432~^5.^0^^~1~^^^^^^^^^^^~03/01/2009~
-~13148~^~435~^5.^0^^~4~^~NC~^^^^^^^^^^~11/01/2009~
-~13148~^~601~^94.^0^^~1~^^^^^^^^^^^~05/01/1990~
-~13148~^~636~^0.^0^^~4~^^^^^^^^^^^~05/01/1990~
-~13149~^~208~^175.^0^^~4~^~NC~^^^^^^^^^^~05/01/2016~
-~13149~^~268~^731.^0^^~4~^~NC~^^^^^^^^^^~05/01/2016~
-~13149~^~301~^8.^0^^~1~^^^^^^^^^^^~05/01/1990~
-~13149~^~304~^22.^0^^~1~^^^^^^^^^^^~05/01/1990~
-~13149~^~305~^190.^0^^~1~^^^^^^^^^^^~05/01/1990~
-~13149~^~306~^357.^0^^~1~^^^^^^^^^^^~05/01/1990~
-~13149~^~307~^65.^0^^~1~^^^^^^^^^^^~05/01/1990~
-~13149~^~318~^0.^0^^~4~^^^^^^^^^^^~05/01/1990~
-~13149~^~319~^0.^0^^~4~^^^^^^^^^^^~06/01/2002~
-~13149~^~320~^0.^0^^~4~^^^^^^^^^^^~06/01/2002~
-~13149~^~417~^6.^0^^~1~^^^^^^^^^^^~05/01/1990~
-~13149~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~
-~13149~^~432~^6.^0^^~1~^^^^^^^^^^^~05/01/1990~
-~13149~^~435~^6.^0^^~4~^~NC~^^^^^^^^^^~05/01/2001~
-~13149~^~601~^59.^0^^~1~^^^^^^^^^^^~05/01/1990~
-~13149~^~636~^0.^0^^~4~^^^^^^^^^^^~05/01/1990~
-~13150~^~208~^295.^0^^~4~^~NC~^^^^^^^^^^~05/01/1990~
-~13150~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~07/01/2002~
-~13150~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~07/01/2002~
-~13150~^~268~^1234.^0^^~4~^^^^^^^^^^^~03/01/2009~
-~13150~^~301~^11.^0^^~1~^^^^^^^^^^^~05/01/1990~
-~13150~^~304~^22.^0^^~1~^^^^^^^^^^^~05/01/1990~
-~13150~^~305~^235.^0^^~1~^^^^^^^^^^^~05/01/1990~
-~13150~^~306~^313.^0^^~1~^^^^^^^^^^^~05/01/1990~
-~13150~^~307~^58.^0^^~1~^^^^^^^^^^^~05/01/1990~
-~13150~^~318~^0.^0^^~4~^^^^^^^^^^^~05/01/1990~
-~13150~^~319~^0.^0^^~4~^~NR~^^^^^^^^^^~07/01/2002~
-~13150~^~320~^0.^0^^~1~^~AS~^^^^^^^^^^~07/01/2002~
-~13150~^~321~^0.^0^^~7~^~Z~^^^^^^^^^^~07/01/2002~
-~13150~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~07/01/2002~
-~13150~^~324~^12.^0^^~4~^~BFFN~^^^^^^^^^^~03/01/2009~
-~13150~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~07/01/2002~
-~13150~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~07/01/2002~
-~13150~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~07/01/2002~
-~13150~^~417~^7.^0^^~1~^^^^^^^^^^^~05/01/1990~
-~13150~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~
-~13150~^~432~^7.^0^^~1~^^^^^^^^^^^~03/01/2009~
-~13150~^~435~^7.^0^^~4~^~NC~^^^^^^^^^^~11/01/2009~
-~13150~^~601~^93.^0^^~1~^^^^^^^^^^^~05/01/1990~
-~13150~^~636~^0.^0^^~4~^^^^^^^^^^^~05/01/1990~
-~13156~^~208~^191.^0^^~4~^~NC~^^^^^^^^^^~05/01/1990~
-~13156~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~
-~13156~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~
-~13156~^~268~^799.^0^^~4~^^^^^^^^^^^~03/01/2009~
-~13156~^~301~^5.^0^^~1~^^^^^^^^^^^~05/01/1990~
-~13156~^~304~^28.^0^^~1~^^^^^^^^^^^~05/01/1990~
-~13156~^~305~^256.^0^^~1~^^^^^^^^^^^~05/01/1990~
-~13156~^~306~^422.^0^^~1~^^^^^^^^^^^~05/01/1990~
-~13156~^~307~^64.^0^^~1~^^^^^^^^^^^~05/01/1990~
-~13156~^~318~^0.^0^^~1~^^^^^^^^^^^~05/01/1990~
-~13156~^~319~^0.^0^^~4~^~NR~^^^^^^^^^^~02/01/2003~
-~13156~^~320~^0.^0^^~4~^~NC~^^^^^^^^^^~03/01/2009~
-~13156~^~321~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~
-~13156~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~
-~13156~^~324~^5.^0^^~4~^~BFFN~^^^^^^^^^^~03/01/2009~
-~13156~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~
-~13156~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~
-~13156~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~
-~13156~^~417~^10.^0^^~1~^^^^^^^^^^^~05/01/1990~
-~13156~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~
-~13156~^~432~^10.^0^^~1~^^^^^^^^^^^~03/01/2009~
-~13156~^~435~^10.^0^^~4~^~NC~^^^^^^^^^^~04/01/2009~
-~13156~^~601~^78.^0^^~1~^^^^^^^^^^^~05/01/1990~
-~13158~^~208~^172.^0^^~4~^~NC~^^^^^^^^^^~05/01/1990~
-~13158~^~268~^720.^0^^~4~^^^^^^^^^^^~04/01/2009~
-~13158~^~301~^5.^0^^~1~^^^^^^^^^^^~05/01/1990~
-~13158~^~304~^28.^0^^~1~^^^^^^^^^^^~05/01/1990~
-~13158~^~305~^256.^0^^~1~^^^^^^^^^^^~05/01/1990~
-~13158~^~306~^423.^0^^~1~^^^^^^^^^^^~05/01/1990~
-~13158~^~307~^64.^0^^~1~^^^^^^^^^^^~05/01/1990~
-~13158~^~318~^0.^0^^~1~^^^^^^^^^^^~05/01/1990~
-~13158~^~319~^0.^0^^~1~^^^^^^^^^^^~06/01/2002~
-~13158~^~320~^0.^0^^~1~^^^^^^^^^^^~06/01/2002~
-~13158~^~417~^10.^0^^~1~^^^^^^^^^^^~05/01/1990~
-~13158~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~
-~13158~^~432~^10.^0^^~1~^^^^^^^^^^^~05/01/1990~
-~13158~^~435~^10.^0^^~4~^~NC~^^^^^^^^^^~04/01/2009~
-~13158~^~601~^78.^0^^~1~^^^^^^^^^^^~05/01/1990~
-~13165~^~208~^221.^0^^~4~^~NC~^^^^^^^^^^~07/01/2010~
-~13165~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2003~
-~13165~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2003~
-~13165~^~268~^924.^0^^~4~^~NC~^^^^^^^^^^~07/01/2010~
-~13165~^~301~^17.^0^^~4~^~BFFN~^^^^^^^^^^~05/01/2003~
-~13165~^~304~^21.^0^^~4~^~BFFN~^^^^^^^^^^~05/01/2003~
-~13165~^~305~^191.^0^^~4~^~BFFN~^^^^^^^^^^~05/01/2003~
-~13165~^~306~^254.^0^^~4~^~BFFN~^^^^^^^^^^~05/01/2003~
-~13165~^~307~^52.^0^^~4~^~BFFN~^^^^^^^^^^~05/01/2003~
-~13165~^~318~^0.^0^^~1~^~AS~^^^^^^^^^^~05/01/2003~
-~13165~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2003~
-~13165~^~320~^0.^0^^~1~^~AS~^^^^^^^^^^~05/01/2003~
-~13165~^~321~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2003~
-~13165~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2003~
-~13165~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2003~
-~13165~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2003~
-~13165~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2003~
-~13165~^~417~^10.^0^^~4~^~BFPN~^^^^^^^^^^~05/01/2003~
-~13165~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2003~
-~13165~^~432~^10.^0^^~4~^~BFPN~^^^^^^^^^^~07/01/2010~
-~13165~^~435~^10.^0^^~4~^~NC~^^^^^^^^^^~07/01/2010~
-~13165~^~601~^92.^0^^~4~^~BFSN~^~13975~^^^^^^^^^~07/01/2010~
-~13227~^~208~^128.^0^^~4~^~NC~^^^^^^^^^^~05/01/1990~
-~13227~^~268~^536.^0^^~4~^^^^^^^^^^^~09/01/2009~
-~13227~^~301~^20.^7^1.^~1~^^^^^^^^^^^~05/01/1990~
-~13227~^~304~^14.^7^0.^~1~^^^^^^^^^^^~05/01/1990~
-~13227~^~305~^204.^1^^~1~^^^^^^^^^^^~05/01/1990~
-~13227~^~306~^387.^1^^~1~^^^^^^^^^^^~05/01/1990~
-~13227~^~307~^63.^1^^~1~^^^^^^^^^^^~05/01/1990~
-~13227~^~318~^0.^0^^~1~^^^^^^^^^^^~05/01/1990~
-~13227~^~319~^0.^0^^~1~^^^^^^^^^^^~06/01/2002~
-~13227~^~320~^0.^0^^~1~^^^^^^^^^^^~06/01/2002~
-~13227~^~417~^8.^1^^~1~^^^^^^^^^^^~05/01/1990~
-~13227~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~
-~13227~^~432~^8.^1^^~1~^^^^^^^^^^^~05/01/1990~
-~13227~^~435~^8.^0^^~4~^~NC~^^^^^^^^^^~09/01/2009~
-~13227~^~601~^39.^7^1.^~1~^^^^^^^^^^^~05/01/1990~
-~13228~^~208~^201.^0^^~4~^~NC~^^^^^^^^^^~05/01/1990~
-~13228~^~268~^841.^0^^~4~^^^^^^^^^^^~04/01/2009~
-~13228~^~301~^32.^7^2.^~1~^^^^^^^^^^^~05/01/1990~
-~13228~^~304~^30.^7^0.^~1~^^^^^^^^^^^~05/01/1990~
-~13228~^~305~^263.^7^3.^~1~^^^^^^^^^^^~05/01/1990~
-~13228~^~306~^447.^7^5.^~1~^^^^^^^^^^^~05/01/1990~
-~13228~^~307~^64.^1^^~1~^^^^^^^^^^^~05/01/1990~
-~13228~^~318~^0.^0^^~1~^^^^^^^^^^^~05/01/1990~
-~13228~^~319~^0.^0^^~1~^^^^^^^^^^^~06/01/2002~
-~13228~^~320~^0.^0^^~1~^^^^^^^^^^^~06/01/2002~
-~13228~^~417~^10.^1^^~1~^^^^^^^^^^^~05/01/1990~
-~13228~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~
-~13228~^~432~^10.^1^^~1~^^^^^^^^^^^~05/01/1990~
-~13228~^~435~^10.^0^^~4~^~NC~^^^^^^^^^^~04/01/2009~
-~13228~^~601~^78.^7^5.^~1~^^^^^^^^^^^~05/01/1990~
-~13231~^~208~^161.^0^^~4~^~NC~^^^^^^^^^^~05/01/2013~
-~13231~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2001~
-~13231~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2001~
-~13231~^~268~^674.^0^^~4~^~NC~^^^^^^^^^^~05/01/2013~
-~13231~^~301~^18.^2^^~1~^~AR~^^^^^^^^^^~05/01/2013~
-~13231~^~304~^11.^2^^~1~^~AR~^^^^^^^^^^~05/01/2013~
-~13231~^~305~^209.^2^^~1~^~AR~^^^^^^^^^^~05/01/2013~
-~13231~^~306~^276.^2^^~1~^~AR~^^^^^^^^^^~05/01/2013~
-~13231~^~307~^56.^2^^~1~^~AR~^^^^^^^^^^~05/01/2013~
-~13231~^~318~^0.^0^^~1~^~AS~^^^^^^^^^^~08/01/2002~
-~13231~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~08/01/2001~
-~13231~^~320~^0.^0^^~1~^~AS~^^^^^^^^^^~08/01/2002~
-~13231~^~321~^0.^0^^~7~^~Z~^^^^^^^^^^~09/01/2001~
-~13231~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~09/01/2001~
-~13231~^~324~^3.^0^^~4~^~BFFN~^~23151~^^^^^^^^^~06/01/2013~
-~13231~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~09/01/2001~
-~13231~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~09/01/2001~
-~13231~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~09/01/2001~
-~13231~^~417~^3.^0^^~4~^~BFPN~^~23041~^^^^^^^^^~05/01/2013~
-~13231~^~431~^0.^0^^~4~^~BFPN~^~23041~^^^^^^^^^~05/01/2013~
-~13231~^~432~^3.^0^^~4~^~BFPN~^~23041~^^^^^^^^^~05/01/2013~
-~13231~^~435~^3.^0^^~4~^~NC~^~23041~^^^^^^^^^~05/01/2013~
-~13231~^~601~^59.^4^1.^~1~^~AR~^^^^^^^^^^~05/01/2013~
-~13232~^~208~^221.^0^^~4~^~NC~^^^^^^^^^^~05/01/2013~
-~13232~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~07/01/2001~
-~13232~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~07/01/2001~
-~13232~^~268~^923.^0^^~4~^~NC~^^^^^^^^^^~05/01/2013~
-~13232~^~301~^19.^2^^~1~^~AR~^^^^^^^^^^~05/01/2013~
-~13232~^~304~^23.^2^^~1~^~AR~^^^^^^^^^^~05/01/2013~
-~13232~^~305~^224.^2^^~1~^~AR~^^^^^^^^^^~05/01/2013~
-~13232~^~306~^290.^2^^~1~^~AR~^^^^^^^^^^~05/01/2013~
-~13232~^~307~^67.^2^^~1~^~AR~^^^^^^^^^^~05/01/2013~
-~13232~^~318~^5.^0^^~4~^~NC~^^^^^^^^^^~05/01/2013~
-~13232~^~319~^1.^0^^~4~^~BFSN~^^^^^^^^^^~05/01/2013~
-~13232~^~320~^1.^0^^~4~^~NC~^^^^^^^^^^~05/01/2013~
-~13232~^~321~^0.^0^^~7~^~Z~^^^^^^^^^^~07/01/2001~
-~13232~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~07/01/2001~
-~13232~^~324~^3.^0^^~4~^~BFFN~^~23101~^^^^^^^^^~05/01/2013~
-~13232~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~07/01/2001~
-~13232~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~07/01/2001~
-~13232~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~07/01/2001~
-~13232~^~417~^6.^0^^~4~^~BFPN~^~23042~^^^^^^^^^~05/01/2013~
-~13232~^~431~^0.^0^^~4~^~BFPN~^~23042~^^^^^^^^^~05/01/2013~
-~13232~^~432~^6.^0^^~4~^~BFPN~^~23042~^^^^^^^^^~05/01/2013~
-~13232~^~435~^6.^0^^~4~^~NC~^~23042~^^^^^^^^^~05/01/2013~
-~13232~^~601~^85.^4^2.^~1~^~AR~^^^^^^^^^^~05/01/2013~
-~13235~^~208~^160.^0^^~4~^~NC~^^^^^^^^^^~05/01/2013~
-~13235~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~07/01/2001~
-~13235~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~07/01/2001~
-~13235~^~268~^669.^0^^~4~^~NC~^^^^^^^^^^~05/01/2013~
-~13235~^~301~^21.^2^^~1~^~AR~^^^^^^^^^^~05/01/2013~
-~13235~^~304~^11.^2^^~1~^~AR~^^^^^^^^^^~05/01/2013~
-~13235~^~305~^196.^2^^~1~^~AR~^^^^^^^^^^~05/01/2013~
-~13235~^~306~^263.^2^^~1~^~AR~^^^^^^^^^^~05/01/2013~
-~13235~^~307~^35.^2^^~1~^~AR~^^^^^^^^^^~05/01/2013~
-~13235~^~318~^0.^0^^~1~^~AS~^^^^^^^^^^~08/01/2002~
-~13235~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~07/01/2001~
-~13235~^~320~^0.^0^^~1~^~AS~^^^^^^^^^^~08/01/2002~
-~13235~^~321~^0.^0^^~7~^~Z~^^^^^^^^^^~07/01/2001~
-~13235~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~07/01/2001~
-~13235~^~324~^3.^0^^~4~^~BFFN~^~23151~^^^^^^^^^~05/01/2013~
-~13235~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~07/01/2001~
-~13235~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~07/01/2001~
-~13235~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~07/01/2001~
-~13235~^~417~^4.^0^^~4~^~BFPN~^~23041~^^^^^^^^^~05/01/2013~
-~13235~^~431~^0.^0^^~4~^~BFPN~^~23041~^^^^^^^^^~05/01/2013~
-~13235~^~432~^4.^0^^~4~^~BFPN~^~23041~^^^^^^^^^~05/01/2013~
-~13235~^~435~^4.^0^^~4~^~NC~^~23041~^^^^^^^^^~05/01/2013~
-~13235~^~601~^59.^4^0.^~1~^~AR~^^^^^^^^^^~05/01/2013~
-~13236~^~208~^217.^0^^~4~^~NC~^^^^^^^^^^~05/01/2013~
-~13236~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~07/01/2001~
-~13236~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~07/01/2001~
-~13236~^~268~^908.^0^^~4~^~NC~^^^^^^^^^^~05/01/2013~
-~13236~^~301~^19.^2^^~1~^~AR~^^^^^^^^^^~05/01/2013~
-~13236~^~304~^20.^2^^~1~^~AR~^^^^^^^^^^~05/01/2013~
-~13236~^~305~^210.^2^^~1~^~AR~^^^^^^^^^^~05/01/2013~
-~13236~^~306~^280.^2^^~1~^~AR~^^^^^^^^^^~05/01/2013~
-~13236~^~307~^68.^2^^~1~^~AR~^^^^^^^^^^~05/01/2013~
-~13236~^~318~^5.^0^^~4~^~NC~^^^^^^^^^^~05/01/2013~
-~13236~^~319~^1.^0^^~4~^~BFSN~^^^^^^^^^^~05/01/2013~
-~13236~^~320~^1.^0^^~4~^~NC~^^^^^^^^^^~05/01/2013~
-~13236~^~321~^0.^0^^~7~^~Z~^^^^^^^^^^~07/01/2001~
-~13236~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~07/01/2001~
-~13236~^~324~^3.^0^^~4~^~BFFN~^~23101~^^^^^^^^^~05/01/2013~
-~13236~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~07/01/2001~
-~13236~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~07/01/2001~
-~13236~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~07/01/2001~
-~13236~^~417~^7.^0^^~4~^~BFPN~^~23042~^^^^^^^^^~05/01/2013~
-~13236~^~431~^0.^0^^~4~^~BFPN~^~23042~^^^^^^^^^~05/01/2013~
-~13236~^~432~^7.^0^^~4~^~BFPN~^~23042~^^^^^^^^^~05/01/2013~
-~13236~^~435~^7.^0^^~4~^~NC~^~23042~^^^^^^^^^~05/01/2013~
-~13236~^~601~^81.^4^1.^~1~^~AR~^^^^^^^^^^~05/01/2013~
-~13284~^~208~^149.^0^^~4~^~BFYN~^~13396~^^^^^^^^^~11/01/2009~
-~13284~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~11/01/2009~
-~13284~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~11/01/2009~
-~13284~^~268~^625.^0^^~4~^~BFYN~^^^^^^^^^^~11/01/2009~
-~13284~^~301~^10.^0^^~4~^~BFYN~^~13396~^^^^^^^^^~11/01/2009~
-~13284~^~304~^20.^0^^~4~^~BFYN~^~13396~^^^^^^^^^~11/01/2009~
-~13284~^~305~^157.^0^^~4~^~BFYN~^~13396~^^^^^^^^^~11/01/2009~
-~13284~^~306~^297.^0^^~4~^~BFYN~^~13396~^^^^^^^^^~11/01/2009~
-~13284~^~307~^52.^0^^~4~^~BFYN~^~13396~^^^^^^^^^~11/01/2009~
-~13284~^~318~^0.^0^^~4~^~BFYN~^~13396~^^^^^^^^^~11/01/2009~
-~13284~^~319~^0.^0^^~4~^~BFYN~^~13396~^^^^^^^^^~11/01/2009~
-~13284~^~320~^0.^0^^~4~^~BFYN~^~13396~^^^^^^^^^~11/01/2009~
-~13284~^~321~^0.^0^^~7~^~Z~^^^^^^^^^^~11/01/2009~
-~13284~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~11/01/2009~
-~13284~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~11/01/2009~
-~13284~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~11/01/2009~
-~13284~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~11/01/2009~
-~13284~^~417~^6.^0^^~4~^~BFYN~^~13396~^^^^^^^^^~11/01/2009~
-~13284~^~431~^0.^0^^~4~^~BFYN~^~13396~^^^^^^^^^~11/01/2009~
-~13284~^~432~^6.^0^^~4~^~BFYN~^^^^^^^^^^~11/01/2009~
-~13284~^~435~^6.^0^^~4~^~NC~^^^^^^^^^^~11/01/2009~
-~13284~^~601~^60.^0^^~4~^~BFYN~^~13396~^^^^^^^^^~11/01/2009~
-~13285~^~208~^216.^0^^~4~^~NC~^^^^^^^^^^~05/01/2010~
-~13285~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2010~
-~13285~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2010~
-~13285~^~268~^905.^0^^~4~^~NC~^^^^^^^^^^~05/01/2010~
-~13285~^~301~^14.^6^0.^~1~^~AR~^^^^^^^^^^~05/01/2010~
-~13285~^~304~^22.^6^0.^~1~^~AR~^^^^^^^^^^~05/01/2010~
-~13285~^~305~^206.^6^2.^~1~^~AR~^^^^^^^^^^~05/01/2010~
-~13285~^~306~^306.^6^3.^~1~^~AR~^^^^^^^^^^~05/01/2010~
-~13285~^~307~^65.^6^0.^~1~^~AR~^^^^^^^^^^~05/01/2010~
-~13285~^~318~^6.^0^^~1~^~AS~^^^^^^^^^^~05/01/2010~
-~13285~^~319~^2.^6^0.^~1~^~AR~^^^^^^^^^^~05/01/2010~
-~13285~^~320~^2.^0^^~1~^~AS~^^^^^^^^^^~05/01/2010~
-~13285~^~321~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2010~
-~13285~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2010~
-~13285~^~324~^5.^6^1.^~1~^~AR~^^^^^^^^^^~05/01/2010~
-~13285~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2010~
-~13285~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2010~
-~13285~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2010~
-~13285~^~417~^8.^0^^~4~^~BFNN~^^^^^^^^^^~05/01/2010~
-~13285~^~431~^0.^0^^~4~^~BFNN~^^^^^^^^^^~05/01/2010~
-~13285~^~432~^8.^0^^~4~^~BFNN~^^^^^^^^^^~05/01/2010~
-~13285~^~435~^8.^0^^~4~^~NC~^^^^^^^^^^~05/01/2010~
-~13285~^~601~^104.^6^2.^~1~^~AR~^^^^^^^^^^~07/01/2010~
-~13293~^~208~^140.^0^^~4~^~NC~^^^^^^^^^^~05/01/2010~
-~13293~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2010~
-~13293~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2010~
-~13293~^~268~^587.^0^^~4~^~NC~^^^^^^^^^^~05/01/2010~
-~13293~^~301~^12.^6^0.^~1~^~AR~^^^^^^^^^^~05/01/2010~
-~13293~^~304~^22.^6^0.^~1~^~AR~^^^^^^^^^^~05/01/2010~
-~13293~^~305~^202.^6^2.^~1~^~AR~^^^^^^^^^^~05/01/2010~
-~13293~^~306~^369.^6^6.^~1~^~AR~^^^^^^^^^^~05/01/2010~
-~13293~^~307~^81.^6^0.^~1~^~AR~^^^^^^^^^^~05/01/2010~
-~13293~^~318~^7.^0^^~1~^~AS~^^^^^^^^^^~05/01/2010~
-~13293~^~319~^2.^6^0.^~1~^~AR~^^^^^^^^^^~05/01/2010~
-~13293~^~320~^2.^0^^~1~^~AS~^^^^^^^^^^~05/01/2010~
-~13293~^~321~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2010~
-~13293~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2010~
-~13293~^~324~^4.^6^0.^~1~^~AR~^^^^^^^^^^~05/01/2010~
-~13293~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2010~
-~13293~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2010~
-~13293~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2010~
-~13293~^~417~^3.^0^^~4~^~BFPN~^^^^^^^^^^~05/01/2010~
-~13293~^~431~^0.^0^^~4~^~BFPN~^^^^^^^^^^~05/01/2010~
-~13293~^~432~^3.^0^^~4~^~BFPN~^^^^^^^^^^~05/01/2010~
-~13293~^~435~^3.^0^^~4~^~NC~^^^^^^^^^^~05/01/2010~
-~13293~^~601~^66.^5^1.^~1~^~AR~^^^^^^^^^^~07/01/2010~
-~13294~^~208~^145.^0^^~4~^~NC~^^^^^^^^^^~05/01/2010~
-~13294~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2010~
-~13294~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2010~
-~13294~^~268~^606.^0^^~4~^~NC~^^^^^^^^^^~05/01/2010~
-~13294~^~301~^12.^4^0.^~1~^~AR~^^^^^^^^^^~05/01/2010~
-~13294~^~304~^22.^4^0.^~1~^~AR~^^^^^^^^^^~05/01/2010~
-~13294~^~305~^200.^4^2.^~1~^~AR~^^^^^^^^^^~05/01/2010~
-~13294~^~306~^361.^4^8.^~1~^~AR~^^^^^^^^^^~05/01/2010~
-~13294~^~307~^80.^4^0.^~1~^~AR~^^^^^^^^^^~05/01/2010~
-~13294~^~318~^6.^0^^~1~^~AS~^^^^^^^^^^~05/01/2010~
-~13294~^~319~^2.^4^0.^~1~^~AR~^^^^^^^^^^~05/01/2010~
-~13294~^~320~^2.^0^^~1~^~AS~^^^^^^^^^^~05/01/2010~
-~13294~^~321~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2010~
-~13294~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2010~
-~13294~^~324~^4.^4^0.^~1~^~AR~^^^^^^^^^^~05/01/2010~
-~13294~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2010~
-~13294~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2010~
-~13294~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2010~
-~13294~^~417~^4.^0^^~4~^~BFNN~^~23041~^^^^^^^^^~05/01/2010~
-~13294~^~431~^0.^0^^~4~^~BFNN~^~23041~^^^^^^^^^~05/01/2010~
-~13294~^~432~^4.^0^^~4~^~BFNN~^~23041~^^^^^^^^^~05/01/2010~
-~13294~^~435~^4.^0^^~4~^~NC~^~23041~^^^^^^^^^~05/01/2010~
-~13294~^~601~^65.^4^1.^~1~^~AR~^^^^^^^^^^~07/01/2010~
-~13317~^~208~^295.^0^^~4~^~NC~^^^^^^^^^^~03/01/2009~
-~13317~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2007~
-~13317~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2007~
-~13317~^~268~^1236.^0^^~4~^~NC~^^^^^^^^^^~03/01/2009~
-~13317~^~301~^11.^2^^~1~^~A~^^^1^10.^11.^1^^^^~02/01/2007~
-~13317~^~304~^19.^2^^~1~^~A~^^^1^18.^19.^1^^^^~02/01/2007~
-~13317~^~305~^174.^2^^~1~^~A~^^^1^172.^176.^1^^^^~02/01/2007~
-~13317~^~306~^305.^2^^~1~^~A~^^^1^299.^311.^1^^^^~02/01/2007~
-~13317~^~307~^77.^2^^~1~^~A~^^^1^74.^79.^1^^^^~02/01/2007~
-~13317~^~318~^0.^0^^~4~^~NC~^^^^^^^^^^~03/01/2009~
-~13317~^~319~^0.^0^^~4~^~BFSN~^~23578~^^^^^^^^^~03/01/2007~
-~13317~^~320~^0.^0^^~1~^~AS~^^^^^^^^^^~02/01/2007~
-~13317~^~321~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2007~
-~13317~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2007~
-~13317~^~324~^8.^0^^~1~^~PAK~^^^^^^^^^^~03/01/2009~
-~13317~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2007~
-~13317~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2007~
-~13317~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2007~
-~13317~^~417~^21.^2^^~1~^~A~^^^1^12.^29.^1^^^^~02/01/2007~
-~13317~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~
-~13317~^~432~^21.^2^^~1~^~A~^^^1^12.^29.^1^^^^~02/01/2007~
-~13317~^~435~^21.^0^^~4~^~NC~^^^^^^^^^^~11/01/2009~
-~13317~^~601~^84.^2^^~1~^~A~^^^1^84.^84.^^^^^~02/01/2007~
-~13318~^~208~^143.^0^^~4~^~NC~^^^^^^^^^^~10/01/2004~
-~13318~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~
-~13318~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~
-~13318~^~268~^600.^0^^~4~^~NC~^^^^^^^^^^~10/01/2004~
-~13318~^~301~^43.^1^^~1~^~A~^^^^^^^^^^~02/01/2003~
-~13318~^~304~^13.^1^^~1~^~A~^^^^^^^^^^~02/01/2003~
-~13318~^~305~^362.^1^^~1~^~A~^^^^^^^^^^~02/01/2003~
-~13318~^~306~^274.^1^^~1~^~A~^^^^^^^^^^~02/01/2003~
-~13318~^~307~^126.^1^^~1~^~A~^^^^^^^^^^~02/01/2003~
-~13318~^~318~^147.^0^^~1~^~AS~^^^^^^^^^^~02/01/2003~
-~13318~^~319~^0.^1^^~1~^~A~^^^^^^^^^~1~^~02/01/2003~
-~13318~^~320~^7.^0^^~1~^~AS~^^^^^^^^^^~02/01/2003~
-~13318~^~321~^88.^1^^~1~^~A~^^^^^^^^^^~02/01/2003~
-~13318~^~322~^0.^1^^~1~^~A~^^^^^^^^^~1~^~02/01/2003~
-~13318~^~334~^0.^1^^~1~^~A~^^^^^^^^^~1~^~02/01/2003~
-~13318~^~337~^0.^1^^~1~^~A~^^^^^^^^^~1~^~02/01/2003~
-~13318~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~
-~13318~^~417~^3.^2^^~1~^~A~^^^^^^^^^^~04/01/2003~
-~13318~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~
-~13318~^~432~^3.^2^^~1~^~A~^^^^^^^^^^~10/01/2004~
-~13318~^~435~^3.^0^^~4~^~NC~^^^^^^^^^^~10/01/2004~
-~13318~^~601~^3010.^1^^~1~^~A~^^^^^^^^^^~02/01/2003~
-~13319~^~208~^196.^0^^~4~^^^^^^^^^^^~05/01/1990~
-~13319~^~268~^820.^0^^~4~^^^^^^^^^^^
-~13319~^~301~^9.^1^^~1~^^^^^^^^^^^~05/01/1990~
-~13319~^~304~^15.^1^^~1~^^^^^^^^^^^~05/01/1990~
-~13319~^~305~^386.^1^^~1~^^^^^^^^^^^~05/01/1990~
-~13319~^~306~^354.^1^^~1~^^^^^^^^^^^~05/01/1990~
-~13319~^~307~^158.^1^^~1~^^^^^^^^^^^~05/01/1990~
-~13319~^~318~^0.^0^^~4~^^^^^^^^^^^~05/01/1990~
-~13319~^~319~^0.^0^^~4~^^^^^^^^^^^~06/01/2002~
-~13319~^~320~^0.^0^^~4~^^^^^^^^^^^~06/01/2002~
-~13319~^~417~^6.^1^^~1~^^^^^^^^^^^~05/01/1990~
-~13319~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~
-~13319~^~432~^6.^1^^~1~^^^^^^^^^^^~05/01/1990~
-~13319~^~435~^6.^0^^~4~^~NC~^^^^^^^^^^~01/01/2001~
-~13319~^~601~^1995.^0^^~4~^^^^^^^^^^^~05/01/1990~
-~13319~^~636~^0.^0^^~1~^^^^^^^^^^^~05/01/1990~
-~13320~^~208~^151.^0^^~4~^~NR~^^^^^^^^^^~06/01/2011~
-~13320~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~
-~13320~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~
-~13320~^~268~^630.^0^^~1~^~A~^^^^^^^^^^~06/01/2011~
-~13320~^~301~^9.^1^^~1~^~A~^^^^^^^^^^~02/01/2003~
-~13320~^~304~^12.^1^^~1~^~A~^^^^^^^^^^~02/01/2003~
-~13320~^~305~^335.^1^^~1~^~A~^^^^^^^^^^~02/01/2003~
-~13320~^~306~^244.^1^^~1~^~A~^^^^^^^^^^~02/01/2003~
-~13320~^~307~^108.^1^^~1~^~A~^^^^^^^^^^~02/01/2003~
-~13320~^~318~^117.^0^^~1~^~AS~^^^^^^^^^^~02/01/2003~
-~13320~^~319~^0.^1^^~1~^~A~^^^^^^^^^~1~^~02/01/2003~
-~13320~^~320~^6.^0^^~1~^~AS~^^^^^^^^^^~02/01/2003~
-~13320~^~321~^70.^1^^~1~^~A~^^^^^^^^^^~09/01/2004~
-~13320~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~
-~13320~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~
-~13320~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~
-~13320~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~
-~13320~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~
-~13320~^~417~^5.^2^^~1~^~A~^^^^^^^^^^~04/01/2003~
-~13320~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~
-~13320~^~432~^5.^2^^~1~^~A~^^^^^^^^^^~10/01/2004~
-~13320~^~435~^5.^0^^~4~^~NC~^^^^^^^^^^~11/01/2009~
-~13320~^~601~^3100.^1^^~1~^~A~^^^^^^^^^^~02/01/2003~
-~13321~^~208~^112.^0^^~4~^~NC~^^^^^^^^^^~07/01/2004~
-~13321~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~
-~13321~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~
-~13321~^~268~^467.^0^^~4~^~NC~^^^^^^^^^^~07/01/2004~
-~13321~^~301~^7.^1^^~1~^~A~^^^^^^^^^^~02/01/2003~
-~13321~^~304~^21.^1^^~1~^~A~^^^^^^^^^^~02/01/2003~
-~13321~^~305~^212.^1^^~1~^~A~^^^^^^^^^^~02/01/2003~
-~13321~^~306~^287.^1^^~1~^~A~^^^^^^^^^^~02/01/2003~
-~13321~^~307~^98.^1^^~1~^~A~^^^^^^^^^^~02/01/2003~
-~13321~^~318~^0.^0^^~1~^~AS~^^^^^^^^^^~02/01/2003~
-~13321~^~319~^0.^1^^~1~^~A~^^^^^^^^^~1~^~02/01/2003~
-~13321~^~320~^0.^0^^~1~^~AS~^^^^^^^^^^~02/01/2003~
-~13321~^~321~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2003~
-~13321~^~322~^0.^1^^~1~^~A~^^^^^^^^^~1~^~02/01/2003~
-~13321~^~334~^0.^1^^~1~^~A~^^^^^^^^^~1~^~02/01/2003~
-~13321~^~337~^17.^1^^~1~^~A~^^^^^^^^^^~02/01/2003~
-~13321~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~
-~13321~^~417~^3.^2^^~1~^~A~^^^^^^^^^^~04/01/2003~
-~13321~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~
-~13321~^~432~^3.^2^^~1~^~A~^^^^^^^^^^~06/01/2003~
-~13321~^~435~^3.^0^^~4~^~NC~^^^^^^^^^^~07/01/2004~
-~13321~^~601~^124.^1^^~1~^~A~^^^^^^^^^^~02/01/2003~
-~13322~^~208~^165.^0^^~1~^~A~^^^^^^^^^^~03/01/2009~
-~13322~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~
-~13322~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~
-~13322~^~268~^690.^0^^~1~^~A~^^^^^^^^^^~05/01/2009~
-~13322~^~301~^5.^1^^~1~^~A~^^^^^^^^^^~02/01/2003~
-~13322~^~304~^21.^1^^~1~^~A~^^^^^^^^^^~02/01/2003~
-~13322~^~305~^254.^1^^~1~^~A~^^^^^^^^^^~02/01/2003~
-~13322~^~306~^219.^1^^~1~^~A~^^^^^^^^^^~02/01/2003~
-~13322~^~307~^59.^1^^~1~^~A~^^^^^^^^^^~02/01/2003~
-~13322~^~318~^0.^0^^~1~^~AS~^^^^^^^^^^~02/01/2003~
-~13322~^~319~^0.^1^^~1~^~A~^^^^^^^^^~1~^~02/01/2003~
-~13322~^~320~^0.^0^^~1~^~AS~^^^^^^^^^^~02/01/2003~
-~13322~^~321~^0.^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~
-~13322~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~
-~13322~^~324~^3.^0^^~4~^~BFFN~^^^^^^^^^^~03/01/2009~
-~13322~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~
-~13322~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~
-~13322~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~
-~13322~^~417~^5.^2^^~1~^~A~^^^^^^^^^^~04/01/2003~
-~13322~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~
-~13322~^~432~^5.^2^^~1~^~A~^^^^^^^^^^~03/01/2009~
-~13322~^~435~^5.^0^^~4~^~NC~^^^^^^^^^^~05/01/2009~
-~13322~^~601~^212.^1^^~1~^~A~^^^^^^^^^^~02/01/2003~
-~13323~^~208~^99.^1^^~1~^~A~^^^^^^^^^^~02/01/2009~
-~13323~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~
-~13323~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~
-~13323~^~268~^413.^0^^~1~^~A~^^^^^^^^^^~02/01/2009~
-~13323~^~301~^13.^1^^~1~^~A~^^^^^^^^^^~02/01/2003~
-~13323~^~304~^17.^1^^~1~^~A~^^^^^^^^^^~02/01/2003~
-~13323~^~305~^257.^1^^~1~^~A~^^^^^^^^^^~02/01/2003~
-~13323~^~306~^262.^1^^~1~^~A~^^^^^^^^^^~02/01/2003~
-~13323~^~307~^182.^1^^~1~^~A~^^^^^^^^^^~02/01/2003~
-~13323~^~318~^1397.^0^^~1~^~AS~^^^^^^^^^^~02/01/2003~
-~13323~^~319~^419.^1^^~1~^~A~^^^^^^^^^^~02/01/2003~
-~13323~^~320~^419.^0^^~1~^~AS~^^^^^^^^^^~02/01/2003~
-~13323~^~321~^0.^1^^~1~^~A~^^^^^^^^^~1~^~02/01/2003~
-~13323~^~322~^0.^1^^~1~^~A~^^^^^^^^^~1~^~02/01/2003~
-~13323~^~324~^45.^46^^~1~^~A~^^^2^17.^108.^^^^~2, 3~^~02/01/2009~
-~13323~^~334~^0.^1^^~1~^~A~^^^^^^^^^~1~^~02/01/2003~
-~13323~^~337~^20.^1^^~1~^~A~^^^^^^^^^^~02/01/2003~
-~13323~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~
-~13323~^~417~^98.^2^^~1~^~A~^^^^^^^^^^~04/01/2003~
-~13323~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~
-~13323~^~432~^98.^2^^~1~^~A~^^^^^^^^^^~02/01/2009~
-~13323~^~435~^98.^0^^~4~^~NC~^^^^^^^^^^~05/01/2009~
-~13323~^~601~^411.^1^^~1~^~A~^^^^^^^^^^~02/01/2003~
-~13324~^~208~^158.^0^^~4~^~NC~^^^^^^^^^^~05/01/2009~
-~13324~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~
-~13324~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~
-~13324~^~268~^663.^0^^~4~^~NC~^^^^^^^^^^~05/01/2009~
-~13324~^~301~^19.^1^^~1~^~A~^^^^^^^^^^~02/01/2003~
-~13324~^~304~^12.^1^^~1~^~A~^^^^^^^^^^~02/01/2003~
-~13324~^~305~^304.^1^^~1~^~A~^^^^^^^^^^~02/01/2003~
-~13324~^~306~^135.^1^^~1~^~A~^^^^^^^^^^~02/01/2003~
-~13324~^~307~^94.^1^^~1~^~A~^^^^^^^^^^~02/01/2003~
-~13324~^~318~^0.^0^^~1~^~AS~^^^^^^^^^^~02/01/2003~
-~13324~^~319~^0.^1^^~1~^~A~^^^^^^^^^~1~^~02/01/2003~
-~13324~^~320~^0.^0^^~1~^~AS~^^^^^^^^^^~02/01/2003~
-~13324~^~321~^0.^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~
-~13324~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~
-~13324~^~324~^45.^46^^~1~^~A~^^^2^17.^108.^^^^~2, 3~^~02/01/2009~
-~13324~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~
-~13324~^~337~^23.^1^^~1~^~A~^^^^^^^^^^~09/01/2004~
-~13324~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~
-~13324~^~417~^83.^2^^~1~^~A~^^^^^^^^^^~04/01/2003~
-~13324~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~
-~13324~^~432~^83.^2^^~1~^~A~^^^^^^^^^^~05/01/2009~
-~13324~^~435~^83.^0^^~4~^~NC~^^^^^^^^^^~05/01/2009~
-~13324~^~601~^716.^1^^~1~^~A~^^^^^^^^^^~02/01/2003~
-~13325~^~208~^135.^0^^~4~^~NC~^^^^^^^^^^~02/01/2009~
-~13325~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~
-~13325~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~
-~13325~^~268~^564.^0^^~4~^~NC~^^^^^^^^^^~02/01/2009~
-~13325~^~301~^5.^4^0.^~1~^~A~^^^1^5.^5.^3^4.^5.^~2, 3~^~02/01/2003~
-~13325~^~304~^18.^4^0.^~1~^~A~^^^1^18.^19.^3^17.^19.^~2, 3~^~02/01/2003~
-~13325~^~305~^387.^4^5.^~1~^~A~^^^1^377.^403.^3^368.^406.^~2, 3~^~02/01/2003~
-~13325~^~306~^313.^4^3.^~1~^~A~^^^1^304.^320.^3^302.^323.^~2, 3~^~02/01/2003~
-~13325~^~307~^69.^4^2.^~1~^~A~^^^1^64.^73.^3^62.^76.^~2, 3~^~02/01/2003~
-~13325~^~318~^16898.^0^^~1~^~AS~^^^^^^^^^^~01/01/2003~
-~13325~^~319~^4948.^4^1321.^~1~^~A~^^^1^2530.^8710.^3^740.^9154.^~2, 3~^~02/01/2003~
-~13325~^~320~^4968.^0^^~1~^~AS~^^^^^^^^^^~01/01/2003~
-~13325~^~321~^232.^4^203.^~1~^~A~^^^1^11.^841.^3^-415.^879.^~1, 2, 3~^~02/01/2003~
-~13325~^~322~^11.^4^0.^~1~^~A~^^^1^11.^11.^^^^~1, 2, 3~^~02/01/2003~
-~13325~^~324~^49.^46^^~1~^~A~^^^2^34.^57.^^^^~2, 3~^~02/01/2009~
-~13325~^~334~^13.^4^1.^~1~^~A~^^^1^11.^18.^3^7.^18.^~1, 2, 3~^~02/01/2003~
-~13325~^~337~^0.^4^0.^~1~^~A~^^^1^0.^0.^^^^~1, 2, 3~^~02/01/2003~
-~13325~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~
-~13325~^~417~^290.^4^42.^~1~^~A~^^^1^181.^389.^3^153.^426.^~2, 3~^~02/01/2003~
-~13325~^~431~^0.^0^^~4~^~NR~^^^^^^^^^^~01/01/2003~
-~13325~^~432~^290.^4^42.^~1~^~A~^^^1^181.^389.^3^153.^426.^^~02/01/2009~
-~13325~^~435~^290.^0^^~4~^~NC~^^^^^^^^^^~05/01/2009~
-~13325~^~601~^275.^4^7.^~1~^~A~^^^1^259.^294.^3^250.^299.^~2, 3~^~02/01/2003~
-~13326~^~208~^191.^0^^~4~^~NC~^^^^^^^^^^~02/01/2009~
-~13326~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2003~
-~13326~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2003~
-~13326~^~268~^801.^0^^~4~^~NC~^^^^^^^^^^~02/01/2009~
-~13326~^~301~^6.^4^0.^~1~^~A~^^^1^6.^7.^3^5.^6.^~2, 3~^~02/01/2003~
-~13326~^~304~^21.^4^1.^~1~^~A~^^^1^18.^24.^3^16.^24.^~2, 3~^~02/01/2003~
-~13326~^~305~^497.^4^13.^~1~^~A~^^^1^460.^517.^3^454.^538.^~2, 3~^~02/01/2003~
-~13326~^~306~^352.^4^8.^~1~^~A~^^^1^333.^373.^3^325.^378.^~2, 3~^~02/01/2003~
-~13326~^~307~^79.^4^1.^~1~^~A~^^^1^75.^81.^3^73.^83.^~2, 3~^~02/01/2003~
-~13326~^~318~^31714.^0^^~1~^~AS~^^^^^^^^^^~01/01/2003~
-~13326~^~319~^9428.^4^554.^~1~^~A~^^^1^7920.^10400.^3^7662.^11192.^~2, 3~^~02/01/2003~
-~13326~^~320~^9442.^0^^~1~^~AS~^^^^^^^^^^~01/01/2003~
-~13326~^~321~^162.^4^52.^~1~^~A~^^^1^92.^319.^3^-5.^329.^~2, 3~^~02/01/2003~
-~13326~^~322~^11.^4^0.^~1~^~A~^^^1^11.^11.^^^^~1, 2, 3~^~02/01/2003~
-~13326~^~324~^49.^46^^~1~^~A~^^^2^34.^57.^^^^~2, 3~^~02/01/2009~
-~13326~^~334~^11.^4^0.^~1~^~A~^^^1^11.^11.^^^^~1, 2, 3~^~02/01/2003~
-~13326~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~
-~13326~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~
-~13326~^~417~^253.^4^35.^~1~^~A~^^^1^164.^333.^3^138.^366.^~2, 3~^~02/01/2003~
-~13326~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2003~
-~13326~^~432~^253.^4^35.^~1~^~A~^^^1^164.^333.^3^138.^366.^^~02/01/2009~
-~13326~^~435~^253.^0^^~4~^~NC~^^^^^^^^^^~06/01/2009~
-~13326~^~601~^396.^4^9.^~1~^~A~^^^1^377.^419.^3^366.^425.^~2, 3~^~02/01/2003~
-~13327~^~208~^175.^0^^~4~^~NC~^^^^^^^^^^~02/01/2009~
-~13327~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2003~
-~13327~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2003~
-~13327~^~268~^734.^0^^~4~^~NC~^^^^^^^^^^~02/01/2009~
-~13327~^~301~^6.^4^0.^~1~^~A~^^^1^5.^6.^3^5.^6.^~2, 3~^~02/01/2003~
-~13327~^~304~^22.^4^0.^~1~^~A~^^^1^20.^23.^3^19.^24.^~2, 3~^~02/01/2003~
-~13327~^~305~^485.^4^8.^~1~^~A~^^^1^467.^504.^3^457.^512.^~2, 3~^~02/01/2003~
-~13327~^~306~^351.^4^9.^~1~^~A~^^^1^333.^368.^3^321.^380.^~2, 3~^~02/01/2003~
-~13327~^~307~^77.^4^3.^~1~^~A~^^^1^68.^83.^3^66.^86.^~2, 3~^~02/01/2003~
-~13327~^~318~^26088.^0^^~1~^~AS~^^^^^^^^^^~01/01/2003~
-~13327~^~319~^7728.^4^890.^~1~^~A~^^^1^5770.^9790.^3^4893.^10561.^~2, 3~^~10/01/2004~
-~13327~^~320~^7744.^0^^~1~^~AS~^^^^^^^^^^~10/01/2004~
-~13327~^~321~^182.^4^40.^~1~^~A~^^^1^110.^295.^3^53.^310.^~2, 3~^~10/01/2004~
-~13327~^~322~^11.^4^0.^~1~^~A~^^^1^11.^11.^^^^~1, 2, 3~^~10/01/2004~
-~13327~^~324~^49.^46^^~1~^~A~^^^2^34.^57.^^^^~2, 3~^~02/01/2009~
-~13327~^~334~^21.^4^6.^~1~^~A~^^^1^11.^38.^3^0.^41.^~1, 2, 3~^~10/01/2004~
-~13327~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~
-~13327~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~
-~13327~^~417~^260.^4^35.^~1~^~A~^^^1^177.^351.^3^146.^373.^~2, 3~^~02/01/2003~
-~13327~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2003~
-~13327~^~432~^260.^4^35.^~1~^~A~^^^1^177.^351.^3^146.^373.^^~02/01/2009~
-~13327~^~435~^260.^0^^~4~^~NC~^^^^^^^^^^~02/01/2009~
-~13327~^~601~^381.^4^12.^~1~^~A~^^^1^349.^405.^3^341.^419.^~2, 3~^~02/01/2003~
-~13328~^~208~^92.^0^^~4~^^^^^^^^^^^~05/01/1990~
-~13328~^~268~^385.^0^^~4~^^^^^^^^^^^
-~13328~^~301~^10.^0^^~1~^^^^^^^^^^^~05/01/1990~
-~13328~^~304~^14.^0^^~1~^^^^^^^^^^^~05/01/1990~
-~13328~^~305~^224.^0^^~1~^^^^^^^^^^^~05/01/1990~
-~13328~^~306~^340.^1^^~1~^^^^^^^^^^^~05/01/1990~
-~13328~^~307~^198.^0^^~1~^^^^^^^^^^^~05/01/1990~
-~13328~^~318~^46.^0^^~1~^^^^^^^^^^^~05/01/1990~
-~13328~^~319~^14.^0^^~1~^^^^^^^^^^^~06/01/2002~
-~13328~^~320~^14.^0^^~1~^^^^^^^^^^^~06/01/2002~
-~13328~^~417~^11.^0^^~1~^^^^^^^^^^^~05/01/1990~
-~13328~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~
-~13328~^~432~^11.^0^^~1~^^^^^^^^^^^~05/01/1990~
-~13328~^~435~^11.^0^^~4~^~NC~^^^^^^^^^^~01/01/2001~
-~13328~^~601~^242.^1^^~1~^^^^^^^^^^^~05/01/1990~
-~13328~^~636~^0.^0^^~4~^^^^^^^^^^^~05/01/1990~
-~13329~^~208~^120.^0^^~4~^^^^^^^^^^^~05/01/1990~
-~13329~^~268~^502.^0^^~4~^^^^^^^^^^^
-~13329~^~301~^11.^0^^~1~^^^^^^^^^^^~05/01/1990~
-~13329~^~304~^10.^0^^~1~^^^^^^^^^^^~05/01/1990~
-~13329~^~305~^178.^0^^~1~^^^^^^^^^^^~05/01/1990~
-~13329~^~306~^173.^0^^~1~^^^^^^^^^^^~05/01/1990~
-~13329~^~307~^101.^0^^~1~^^^^^^^^^^^~05/01/1990~
-~13329~^~318~^39.^0^^~1~^^^^^^^^^^^~05/01/1990~
-~13329~^~319~^12.^0^^~1~^^^^^^^^^^^~06/01/2002~
-~13329~^~320~^12.^0^^~1~^^^^^^^^^^^~06/01/2002~
-~13329~^~417~^8.^0^^~1~^^^^^^^^^^^~05/01/1990~
-~13329~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~
-~13329~^~432~^8.^0^^~1~^^^^^^^^^^^~05/01/1990~
-~13329~^~435~^8.^0^^~4~^~NC~^^^^^^^^^^~01/01/2001~
-~13329~^~601~^277.^0^^~1~^^^^^^^^^^^~05/01/1990~
-~13329~^~636~^0.^0^^~4~^^^^^^^^^^^~05/01/1990~
-~13330~^~208~^276.^0^^~4~^^^^^^^^^^^~05/01/1990~
-~13330~^~268~^1155.^0^^~4~^^^^^^^^^^^
-~13330~^~301~^485.^55^16.^~1~^^^^^^^^^^^~05/01/1990~
-~13330~^~304~^17.^0^^~4~^^^^^^^^^^^~05/01/1990~
-~13330~^~305~^324.^28^9.^~1~^^^^^^^^^^^~05/01/1990~
-~13330~^~306~^277.^0^^~4~^^^^^^^^^^^~05/01/1990~
-~13330~^~307~^57.^0^^~4~^^^^^^^^^^^~05/01/1990~
-~13330~^~318~^0.^0^^~4~^^^^^^^^^^^~05/01/1990~
-~13330~^~319~^0.^0^^~4~^^^^^^^^^^^~06/01/2002~
-~13330~^~320~^0.^0^^~4~^^^^^^^^^^^~06/01/2002~
-~13330~^~417~^5.^0^^~4~^^^^^^^^^^^~05/01/1990~
-~13330~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~
-~13330~^~432~^5.^0^^~4~^^^^^^^^^^^~05/01/1990~
-~13330~^~435~^5.^0^^~4~^~NC~^^^^^^^^^^~01/01/2001~
-~13330~^~601~^209.^18^11.^~1~^^^^^^^^^^^~05/01/1990~
-~13330~^~636~^0.^0^^~4~^^^^^^^^^^^~05/01/1990~
-~13331~^~208~^235.^0^^~4~^^^^^^^^^^^~05/01/1990~
-~13331~^~268~^983.^0^^~4~^^^^^^^^^^^
-~13331~^~301~^9.^2^^~1~^^^^^^^^^^^~05/01/1990~
-~13331~^~304~^18.^2^^~1~^^^^^^^^^^^~05/01/1990~
-~13331~^~305~^327.^2^^~1~^^^^^^^^^^^~05/01/1990~
-~13331~^~306~^276.^2^^~1~^^^^^^^^^^^~05/01/1990~
-~13331~^~307~^67.^2^^~1~^^^^^^^^^^^~05/01/1990~
-~13331~^~318~^0.^3^0.^~1~^^^^^^^^^^^~05/01/1990~
-~13331~^~319~^0.^3^0.^~1~^^^^^^^^^^^~06/01/2002~
-~13331~^~320~^0.^3^0.^~1~^^^^^^^^^^^~06/01/2002~
-~13331~^~417~^3.^0^^~1~^^^^^^^^^^^~05/01/1990~
-~13331~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~
-~13331~^~432~^3.^0^^~1~^^^^^^^^^^^~05/01/1990~
-~13331~^~435~^3.^0^^~4~^~NC~^^^^^^^^^^~01/01/2001~
-~13331~^~601~^205.^0^^~1~^^^^^^^^^^^~05/01/1990~
-~13331~^~636~^0.^0^^~4~^^^^^^^^^^^~05/01/1990~
-~13332~^~208~^271.^0^^~4~^^^^^^^^^^^~05/01/1990~
-~13332~^~268~^1134.^0^^~4~^^^^^^^^^^^
-~13332~^~301~^16.^0^^~4~^^^^^^^^^^^~05/01/1990~
-~13332~^~304~^21.^0^^~4~^^^^^^^^^^^~05/01/1990~
-~13332~^~305~^453.^0^^~4~^^^^^^^^^^^~05/01/1990~
-~13332~^~306~^246.^0^^~4~^^^^^^^^^^^~05/01/1990~
-~13332~^~307~^60.^0^^~4~^^^^^^^^^^^~05/01/1990~
-~13332~^~318~^0.^0^^~1~^^^^^^^^^^^~05/01/1990~
-~13332~^~319~^0.^0^^~1~^^^^^^^^^^^~06/01/2002~
-~13332~^~320~^0.^0^^~1~^^^^^^^^^^^~06/01/2002~
-~13332~^~417~^3.^0^^~4~^^^^^^^^^^^~05/01/1990~
-~13332~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~
-~13332~^~432~^3.^0^^~4~^^^^^^^^^^^~05/01/1990~
-~13332~^~435~^3.^0^^~4~^~NC~^^^^^^^^^^~01/01/2001~
-~13332~^~601~^262.^0^^~4~^^^^^^^^^^^~05/01/1990~
-~13332~^~636~^0.^0^^~4~^^^^^^^^^^^~05/01/1990~
-~13333~^~208~^105.^0^^~4~^^^^^^^^^^^~05/01/1990~
-~13333~^~268~^439.^0^^~4~^^^^^^^^^^^
-~13333~^~301~^9.^1^^~1~^^^^^^^^^^^~05/01/1990~
-~13333~^~304~^22.^1^^~1~^^^^^^^^^^^~05/01/1990~
-~13333~^~305~^296.^1^^~1~^^^^^^^^^^^~05/01/1990~
-~13333~^~306~^429.^2^^~1~^^^^^^^^^^^~05/01/1990~
-~13333~^~307~^85.^1^^~1~^^^^^^^^^^^~05/01/1990~
-~13333~^~318~^0.^3^0.^~1~^^^^^^^^^^^~05/01/1990~
-~13333~^~319~^0.^3^0.^~1~^^^^^^^^^^^~06/01/2002~
-~13333~^~320~^0.^3^0.^~1~^^^^^^^^^^^~06/01/2002~
-~13333~^~417~^4.^0^^~4~^^^^^^^^^^^~05/01/1990~
-~13333~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~
-~13333~^~432~^4.^0^^~4~^^^^^^^^^^^~05/01/1990~
-~13333~^~435~^4.^0^^~4~^~NC~^^^^^^^^^^~01/01/2001~
-~13333~^~601~^263.^1^^~1~^^^^^^^^^^^~05/01/1990~
-~13333~^~636~^0.^0^^~4~^^^^^^^^^^^~05/01/1990~
-~13334~^~208~^145.^0^^~4~^^^^^^^^^^^~05/01/1990~
-~13334~^~268~^607.^0^^~4~^^^^^^^^^^^
-~13334~^~301~^12.^0^^~1~^^^^^^^^^^^~05/01/1990~
-~13334~^~304~^19.^0^^~1~^^^^^^^^^^^~05/01/1990~
-~13334~^~305~^305.^0^^~1~^^^^^^^^^^^~05/01/1990~
-~13334~^~306~^284.^0^^~1~^^^^^^^^^^^~05/01/1990~
-~13334~^~307~^57.^0^^~1~^^^^^^^^^^^~05/01/1990~
-~13334~^~318~^0.^0^^~1~^^^^^^^^^^^~05/01/1990~
-~13334~^~319~^0.^0^^~1~^^^^^^^^^^^~06/01/2002~
-~13334~^~320~^0.^0^^~1~^^^^^^^^^^^~06/01/2002~
-~13334~^~417~^4.^0^^~4~^^^^^^^^^^^~05/01/1990~
-~13334~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~
-~13334~^~432~^4.^0^^~4~^^^^^^^^^^^~05/01/1990~
-~13334~^~435~^4.^0^^~4~^~NC~^^^^^^^^^^~01/01/2001~
-~13334~^~601~^347.^0^^~1~^^^^^^^^^^^~05/01/1990~
-~13334~^~636~^0.^0^^~4~^^^^^^^^^^^~05/01/1990~
-~13335~^~208~^854.^0^^~4~^^^^^^^^^^^~05/01/1990~
-~13335~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~
-~13335~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~
-~13335~^~268~^3573.^0^^~4~^^^^^^^^^^^~05/01/2007~
-~13335~^~301~^2.^0^^~4~^^^^^^^^^^^~05/01/1990~
-~13335~^~304~^1.^0^^~4~^^^^^^^^^^^~05/01/1990~
-~13335~^~305~^15.^0^^~4~^^^^^^^^^^^~05/01/1990~
-~13335~^~306~^16.^7^0.^~1~^^^^^^^^^^^~05/01/1990~
-~13335~^~307~^7.^0^^~4~^^^^^^^^^^^~05/01/1990~
-~13335~^~318~^0.^0^^~4~^^^^^^^^^^^~05/01/1990~
-~13335~^~319~^0.^0^^~4~^~NR~^^^^^^^^^^~02/01/2003~
-~13335~^~320~^0.^0^^~4~^~NC~^^^^^^^^^^~05/01/2007~
-~13335~^~321~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~
-~13335~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~
-~13335~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~
-~13335~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~
-~13335~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~
-~13335~^~417~^1.^0^^~4~^^^^^^^^^^^~05/01/1990~
-~13335~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~
-~13335~^~432~^1.^0^^~4~^^^^^^^^^^^~05/01/2007~
-~13335~^~435~^1.^0^^~4~^~NC~^^^^^^^^^^~05/01/2007~
-~13335~^~601~^68.^5^2.^~1~^^^^^^^^^^^~05/01/1990~
-~13335~^~636~^0.^0^^~4~^^^^^^^^^^^~05/01/1990~
-~13337~^~208~^236.^0^^~4~^~NC~^^^^^^^^^^~05/01/1990~
-~13337~^~268~^987.^0^^~4~^^^^^^^^^^^
-~13337~^~301~^7.^0^^~4~^^^^^^^^^^^~05/01/1990~
-~13337~^~304~^14.^0^^~4~^^^^^^^^^^^~05/01/1990~
-~13337~^~305~^393.^1^^~1~^^^^^^^^^^^~05/01/1990~
-~13337~^~306~^360.^1^^~1~^^^^^^^^^^^~05/01/1990~
-~13337~^~307~^96.^1^^~1~^^^^^^^^^^^~05/01/1990~
-~13337~^~318~^0.^3^0.^~1~^^^^^^^^^^^~05/01/1990~
-~13337~^~319~^0.^3^0.^~1~^^^^^^^^^^^~06/01/2002~
-~13337~^~320~^0.^3^0.^~1~^^^^^^^^^^^~06/01/2002~
-~13337~^~417~^2.^0^^~4~^^^^^^^^^^^~05/01/1990~
-~13337~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~
-~13337~^~432~^2.^0^^~4~^^^^^^^^^^^~05/01/1990~
-~13337~^~435~^2.^0^^~4~^~NC~^^^^^^^^^^~01/01/2001~
-~13337~^~601~^223.^1^^~1~^^^^^^^^^^^~05/01/1990~
-~13337~^~636~^0.^0^^~4~^^^^^^^^^^^~05/01/1990~
-~13338~^~208~^319.^0^^~4~^~NC~^^^^^^^^^^~05/01/1990~
-~13338~^~268~^1335.^0^^~4~^^^^^^^^^^^
-~13338~^~301~^10.^0^^~4~^^^^^^^^^^^~05/01/1990~
-~13338~^~304~^10.^0^^~4~^^^^^^^^^^^~05/01/1990~
-~13338~^~305~^364.^1^^~1~^^^^^^^^^^^~05/01/1990~
-~13338~^~306~^433.^1^^~1~^^^^^^^^^^^~05/01/1990~
-~13338~^~307~^116.^1^^~1~^^^^^^^^^^^~05/01/1990~
-~13338~^~318~^0.^0^^~1~^^^^^^^^^^^~05/01/1990~
-~13338~^~319~^0.^0^^~1~^^^^^^^^^^^~06/01/2002~
-~13338~^~320~^0.^0^^~1~^^^^^^^^^^^~06/01/2002~
-~13338~^~417~^1.^0^^~4~^^^^^^^^^^^~05/01/1990~
-~13338~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~
-~13338~^~432~^1.^0^^~4~^^^^^^^^^^^~05/01/1990~
-~13338~^~435~^1.^0^^~4~^~NC~^^^^^^^^^^~01/01/2001~
-~13338~^~601~^294.^0^^~1~^^^^^^^^^^^~05/01/1990~
-~13338~^~636~^0.^0^^~4~^^^^^^^^^^^~05/01/1990~
-~13339~^~208~^224.^0^^~4~^~NC~^^^^^^^^^^~05/01/1990~
-~13339~^~268~^937.^0^^~4~^^^^^^^^^^^
-~13339~^~301~^6.^1^^~1~^^^^^^^^^^^~05/01/1990~
-~13339~^~304~^16.^1^^~1~^^^^^^^^^^^~05/01/1990~
-~13339~^~305~^133.^1^^~1~^^^^^^^^^^^~05/01/1990~
-~13339~^~306~^315.^2^^~1~^^^^^^^^^^^~05/01/1990~
-~13339~^~307~^69.^1^^~1~^^^^^^^^^^^~05/01/1990~
-~13339~^~318~^0.^0^^~4~^^^^^^^^^^^~05/01/1990~
-~13339~^~319~^0.^0^^~4~^^^^^^^^^^^~06/01/2002~
-~13339~^~320~^0.^0^^~4~^^^^^^^^^^^~06/01/2002~
-~13339~^~417~^7.^1^^~1~^^^^^^^^^^^~05/01/1990~
-~13339~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~
-~13339~^~432~^7.^1^^~1~^^^^^^^^^^^~05/01/1990~
-~13339~^~435~^7.^0^^~4~^~NC~^^^^^^^^^^~01/01/2001~
-~13339~^~601~^87.^1^^~1~^^^^^^^^^^^~05/01/1990~
-~13339~^~636~^0.^0^^~4~^^^^^^^^^^^~05/01/1990~
-~13340~^~208~^284.^0^^~4~^~NC~^^^^^^^^^^~03/01/2009~
-~13340~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~
-~13340~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~
-~13340~^~268~^1186.^0^^~4~^~NC~^^^^^^^^^^~03/01/2009~
-~13340~^~301~^5.^1^^~1~^~A~^^^^^^^^^^~02/01/2003~
-~13340~^~304~^15.^1^^~1~^~A~^^^^^^^^^^~02/01/2003~
-~13340~^~305~^145.^1^^~1~^~A~^^^^^^^^^^~02/01/2003~
-~13340~^~306~^184.^1^^~1~^~A~^^^^^^^^^^~02/01/2003~
-~13340~^~307~^65.^1^^~1~^~A~^^^^^^^^^^~02/01/2003~
-~13340~^~318~^0.^0^^~1~^~AS~^^^^^^^^^^~02/01/2003~
-~13340~^~319~^0.^1^^~1~^~A~^^^^^^^^^~1~^~02/01/2003~
-~13340~^~320~^0.^0^^~1~^~AS~^^^^^^^^^^~02/01/2003~
-~13340~^~321~^0.^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~
-~13340~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~
-~13340~^~324~^15.^0^^~4~^~BFFN~^^^^^^^^^^~03/01/2009~
-~13340~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~
-~13340~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~
-~13340~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~
-~13340~^~417~^7.^1^^~1~^~A~^^^^^^^^^^~05/01/2004~
-~13340~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~
-~13340~^~432~^7.^1^^~1~^~A~^^^^^^^^^^~03/01/2009~
-~13340~^~435~^7.^0^^~4~^~NC~^^^^^^^^^^~03/01/2009~
-~13340~^~601~^132.^1^^~1~^~A~^^^^^^^^^^~02/01/2003~
-~13341~^~208~^85.^0^^~4~^~NC~^^^^^^^^^^~10/01/2004~
-~13341~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~
-~13341~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~
-~13341~^~268~^355.^0^^~4~^~NC~^^^^^^^^^^~10/01/2004~
-~13341~^~301~^69.^1^^~1~^~A~^^^^^^^^^^~02/01/2003~
-~13341~^~304~^13.^1^^~1~^~A~^^^^^^^^^^~02/01/2003~
-~13341~^~305~^64.^1^^~1~^~A~^^^^^^^^^^~02/01/2003~
-~13341~^~306~^67.^1^^~1~^~A~^^^^^^^^^^~02/01/2003~
-~13341~^~307~^97.^1^^~1~^~A~^^^^^^^^^^~02/01/2003~
-~13341~^~318~^0.^0^^~1~^~AS~^^^^^^^^^^~02/01/2003~
-~13341~^~319~^0.^1^^~1~^~A~^^^^^^^^^~1~^~02/01/2003~
-~13341~^~320~^0.^0^^~1~^~AS~^^^^^^^^^^~02/01/2003~
-~13341~^~321~^0.^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~
-~13341~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~
-~13341~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~
-~13341~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~
-~13341~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~09/01/2004~
-~13341~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~
-~13341~^~417~^5.^2^^~1~^~A~^^^^^^^^^^~04/01/2003~
-~13341~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~
-~13341~^~432~^5.^2^^~1~^~A~^^^^^^^^^^~09/01/2004~
-~13341~^~435~^5.^0^^~4~^~NC~^^^^^^^^^^~02/01/2009~
-~13341~^~601~^122.^1^^~1~^~A~^^^^^^^^^^~02/01/2003~
-~13342~^~208~^309.^0^^~9~^~MC~^^^^^^^^^^~06/01/1998~
-~13342~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~12/01/2000~
-~13342~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~12/01/2000~
-~13342~^~268~^1293.^0^^~9~^~MC~^^^^^^^^^^~03/01/2009~
-~13342~^~301~^12.^1^^~1~^~A~^^^^^^^^^^~06/01/1998~
-~13342~^~304~^16.^0^^~4~^~BFNN~^^^^^^^^^^~06/01/1998~
-~13342~^~305~^133.^0^^~4~^~BFNN~^^^^^^^^^^~06/01/1998~
-~13342~^~306~^233.^0^^~4~^~BFNN~^^^^^^^^^^~06/01/1998~
-~13342~^~307~^68.^1^^~1~^~A~^^^^^^^^^^~06/01/1998~
-~13342~^~318~^0.^1^^~1~^~A~^^^^^^^^^^~03/01/2003~
-~13342~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2003~
-~13342~^~320~^0.^0^^~1~^~AS~^^^^^^^^^^~03/01/2009~
-~13342~^~321~^0.^0^^~7~^~Z~^^^^^^^^^^~12/01/2000~
-~13342~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2003~
-~13342~^~324~^15.^0^^~4~^~BFFN~^^^^^^^^^^~03/01/2009~
-~13342~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2003~
-~13342~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2003~
-~13342~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2003~
-~13342~^~417~^7.^0^^~4~^~BFZN~^^^^^^^^^^~06/01/1998~
-~13342~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~12/01/2000~
-~13342~^~432~^7.^0^^~4~^~BFZN~^^^^^^^^^^~03/01/2009~
-~13342~^~435~^7.^0^^~4~^~NC~^^^^^^^^^^~03/01/2009~
-~13342~^~601~^71.^1^^~1~^~A~^^^^^^^^^^~06/01/1998~
-~13343~^~208~^212.^0^^~4~^~NC~^^^^^^^^^^~07/01/2010~
-~13343~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2003~
-~13343~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2003~
-~13343~^~268~^887.^0^^~4~^~NC~^^^^^^^^^^~07/01/2010~
-~13343~^~301~^14.^0^^~4~^~BFNN~^^^^^^^^^^~05/01/2003~
-~13343~^~304~^21.^0^^~4~^~BFNN~^^^^^^^^^^~05/01/2003~
-~13343~^~305~^198.^0^^~4~^~BFNN~^^^^^^^^^^~05/01/2003~
-~13343~^~306~^256.^0^^~4~^~BFNN~^^^^^^^^^^~05/01/2003~
-~13343~^~307~^52.^0^^~4~^~BFNN~^^^^^^^^^^~05/01/2003~
-~13343~^~318~^0.^0^^~1~^~AS~^^^^^^^^^^~05/01/2003~
-~13343~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2003~
-~13343~^~320~^0.^0^^~1~^~AS~^^^^^^^^^^~05/01/2003~
-~13343~^~321~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2003~
-~13343~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2003~
-~13343~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2003~
-~13343~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2003~
-~13343~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2003~
-~13343~^~417~^11.^0^^~4~^~BFPN~^^^^^^^^^^~05/01/2003~
-~13343~^~432~^11.^0^^~4~^~BFPN~^^^^^^^^^^~07/01/2010~
-~13343~^~601~^99.^0^^~4~^~BFSN~^~13596~^^^^^^^^^~07/01/2010~
-~13344~^~208~^406.^0^^~4~^~NC~^^^^^^^^^^~05/01/1990~
-~13344~^~268~^1699.^0^^~4~^^^^^^^^^^^
-~13344~^~301~^4.^0^^~4~^^^^^^^^^^^~05/01/1990~
-~13344~^~304~^11.^22^0.^~1~^^^^^^^^^^^~05/01/1990~
-~13344~^~305~^100.^22^2.^~1~^^^^^^^^^^^~05/01/1990~
-~13344~^~306~^153.^22^6.^~1~^^^^^^^^^^^~05/01/1990~
-~13344~^~307~^955.^22^14.^~1~^^^^^^^^^^^~05/01/1990~
-~13344~^~318~^0.^0^^~4~^^^^^^^^^^^~05/01/1990~
-~13344~^~319~^0.^0^^~4~^^^^^^^^^^^~06/01/2002~
-~13344~^~320~^0.^0^^~4~^^^^^^^^^^^~06/01/2002~
-~13344~^~417~^5.^0^^~4~^^^^^^^^^^^~05/01/1990~
-~13344~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~
-~13344~^~432~^5.^0^^~4~^^^^^^^^^^^~05/01/1990~
-~13344~^~435~^5.^0^^~4~^~NC~^^^^^^^^^^~01/01/2001~
-~13344~^~601~^82.^22^2.^~1~^^^^^^^^^^^~05/01/1990~
-~13344~^~636~^0.^0^^~4~^^^^^^^^^^^~05/01/1990~
-~13345~^~208~^449.^0^^~4~^~NC~^^^^^^^^^^~05/01/1990~
-~13345~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2003~
-~13345~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2003~
-~13345~^~268~^1879.^0^^~4~^^^^^^^^^^^~03/01/2009~
-~13345~^~301~^9.^0^^~1~^^^^^^^^^^^~05/01/1990~
-~13345~^~304~^27.^22^0.^~1~^^^^^^^^^^^~05/01/1990~
-~13345~^~305~^236.^22^7.^~1~^^^^^^^^^^^~05/01/1990~
-~13345~^~306~^412.^22^13.^~1~^^^^^^^^^^^~05/01/1990~
-~13345~^~307~^2253.^22^43.^~1~^^^^^^^^^^^~05/01/1990~
-~13345~^~318~^0.^0^^~7~^^^^^^^^^^^~05/01/1990~
-~13345~^~319~^0.^0^^~4~^~NR~^^^^^^^^^^~03/01/2003~
-~13345~^~320~^0.^0^^~4~^~NC~^^^^^^^^^^~03/01/2009~
-~13345~^~321~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2003~
-~13345~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2003~
-~13345~^~324~^7.^0^^~4~^~BFNN~^^^^^^^^^^~03/01/2009~
-~13345~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2003~
-~13345~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2003~
-~13345~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2003~
-~13345~^~417~^8.^0^^~4~^^^^^^^^^^^~05/01/1990~
-~13345~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~
-~13345~^~432~^8.^0^^~4~^^^^^^^^^^^~03/01/2009~
-~13345~^~435~^8.^0^^~4~^~NC~^^^^^^^^^^~03/01/2009~
-~13345~^~601~^119.^22^3.^~1~^^^^^^^^^^^~05/01/1990~
-~13345~^~636~^0.^0^^~4~^^^^^^^^^^^~05/01/1990~
-~13346~^~208~^198.^0^^~4~^~NC~^^^^^^^^^^~05/01/1990~
-~13346~^~268~^828.^0^^~4~^^^^^^^^^^^
-~13346~^~301~^7.^6^0.^~1~^^^^^^^^^^^~05/01/1990~
-~13346~^~304~^14.^11^0.^~1~^^^^^^^^^^^~05/01/1990~
-~13346~^~305~^117.^5^9.^~1~^^^^^^^^^^^~05/01/1990~
-~13346~^~306~^297.^11^31.^~1~^^^^^^^^^^^~05/01/1990~
-~13346~^~307~^1217.^19^41.^~1~^^^^^^^^^^^~07/01/2002~
-~13346~^~318~^0.^0^^~4~^^^^^^^^^^^~05/01/1990~
-~13346~^~319~^0.^0^^~4~^^^^^^^^^^^~06/01/2002~
-~13346~^~320~^0.^0^^~4~^^^^^^^^^^^~06/01/2002~
-~13346~^~417~^5.^0^^~4~^^^^^^^^^^^~05/01/1990~
-~13346~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~
-~13346~^~432~^5.^0^^~4~^^^^^^^^^^^~05/01/1990~
-~13346~^~435~^5.^0^^~4~^~NC~^^^^^^^^^^~07/01/2002~
-~13346~^~601~^54.^5^9.^~1~^^^^^^^^^^^~05/01/1990~
-~13346~^~636~^0.^0^^~4~^^^^^^^^^^^~05/01/1990~
-~13347~^~208~^251.^0^^~4~^~NC~^^^^^^^^^^~05/01/1990~
-~13347~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~09/01/2002~
-~13347~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~09/01/2002~
-~13347~^~268~^1050.^0^^~4~^^^^^^^^^^^~03/01/2009~
-~13347~^~301~^8.^0^^~4~^^^^^^^^^^^~05/01/1990~
-~13347~^~304~^12.^5^1.^~1~^^^^^^^^^^^~05/01/1990~
-~13347~^~305~^125.^13^3.^~1~^^^^^^^^^^^~05/01/1990~
-~13347~^~306~^145.^5^21.^~1~^^^^^^^^^^^~05/01/1990~
-~13347~^~307~^973.^0^^~8~^~LC~^^^^^^^^^^~08/01/2012~
-~13347~^~318~^0.^0^^~7~^^^^^^^^^^^~05/01/1990~
-~13347~^~319~^0.^0^^~4~^~NR~^^^^^^^^^^~09/01/2002~
-~13347~^~320~^0.^0^^~4~^~NC~^^^^^^^^^^~03/01/2009~
-~13347~^~321~^0.^0^^~7~^~Z~^^^^^^^^^^~09/01/2002~
-~13347~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~09/01/2002~
-~13347~^~324~^4.^0^^~4~^~BFNN~^^^^^^^^^^~03/01/2009~
-~13347~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~09/01/2002~
-~13347~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~09/01/2002~
-~13347~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~09/01/2002~
-~13347~^~417~^6.^0^^~4~^^^^^^^^^^^~05/01/1990~
-~13347~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~
-~13347~^~432~^6.^0^^~4~^^^^^^^^^^^~03/01/2009~
-~13347~^~435~^6.^0^^~4~^~NC~^^^^^^^^^^~03/01/2009~
-~13347~^~601~^98.^5^9.^~1~^^^^^^^^^^^~05/01/1990~
-~13347~^~636~^0.^0^^~4~^^^^^^^^^^^~05/01/1990~
-~13348~^~208~^250.^0^^~4~^~NC~^^^^^^^^^^~05/01/1990~
-~13348~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2001~
-~13348~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2001~
-~13348~^~268~^1046.^0^^~4~^^^^^^^^^^^~03/01/2009~
-~13348~^~301~^12.^0^^~4~^^^^^^^^^^^~05/01/1990~
-~13348~^~304~^14.^6^0.^~1~^^^^^^^^^^^~05/01/1990~
-~13348~^~305~^111.^6^8.^~1~^^^^^^^^^^^~05/01/1990~
-~13348~^~306~^136.^6^9.^~1~^^^^^^^^^^^~05/01/1990~
-~13348~^~307~^897.^0^^~8~^~LC~^^^^^^^^^^~08/01/2012~
-~13348~^~318~^0.^2^^~1~^^^^^^^^^^^~05/01/1990~
-~13348~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2002~
-~13348~^~320~^0.^0^^~1~^~AS~^^^^^^^^^^~03/01/2009~
-~13348~^~321~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2003~
-~13348~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2003~
-~13348~^~324~^10.^0^^~4~^~BFFN~^^^^^^^^^^~03/01/2009~
-~13348~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2003~
-~13348~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2003~
-~13348~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2003~
-~13348~^~417~^9.^0^^~4~^^^^^^^^^^^~05/01/1990~
-~13348~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~
-~13348~^~432~^9.^0^^~4~^^^^^^^^^^^~03/01/2009~
-~13348~^~435~^9.^0^^~4~^~NC~^^^^^^^^^^~03/01/2009~
-~13348~^~601~^86.^8^3.^~1~^^^^^^^^^^^~05/01/1990~
-~13348~^~636~^0.^0^^~4~^^^^^^^^^^^~05/01/1990~
-~13349~^~208~^134.^0^^~4~^~NC~^^^^^^^^^^~05/01/2010~
-~13349~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2010~
-~13349~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2010~
-~13349~^~268~^559.^0^^~4~^~NC~^^^^^^^^^^~05/01/2010~
-~13349~^~301~^12.^2^^~1~^~AR~^^^^^^^^^^~05/01/2010~
-~13349~^~304~^23.^2^^~1~^~AR~^^^^^^^^^^~05/01/2010~
-~13349~^~305~^206.^2^^~1~^~AR~^^^^^^^^^^~05/01/2010~
-~13349~^~306~^380.^2^^~1~^~AR~^^^^^^^^^^~05/01/2010~
-~13349~^~307~^81.^2^^~1~^~AR~^^^^^^^^^^~05/01/2010~
-~13349~^~318~^7.^0^^~1~^~AS~^^^^^^^^^^~05/01/2010~
-~13349~^~319~^2.^2^^~1~^~AR~^^^^^^^^^^~05/01/2010~
-~13349~^~320~^2.^0^^~1~^~AS~^^^^^^^^^^~05/01/2010~
-~13349~^~321~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2010~
-~13349~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2010~
-~13349~^~324~^3.^2^^~1~^~AR~^^^^^^^^^^~05/01/2010~
-~13349~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2010~
-~13349~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2010~
-~13349~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2010~
-~13349~^~417~^3.^0^^~4~^~BFPN~^~23043~^^^^^^^^^~05/01/2010~
-~13349~^~431~^0.^0^^~4~^~BFPN~^~23043~^^^^^^^^^~05/01/2010~
-~13349~^~432~^3.^0^^~4~^~BFPN~^~23043~^^^^^^^^^~05/01/2010~
-~13349~^~435~^3.^0^^~4~^~NC~^~23043~^^^^^^^^^~05/01/2010~
-~13349~^~601~^66.^1^^~1~^~AR~^^^^^^^^^^~07/01/2010~
-~13350~^~208~^153.^0^^~4~^~NC~^^^^^^^^^^~03/01/2009~
-~13350~^~262~^0.^0^^~4~^~FLA~^^^^^^^^^^~05/01/2005~
-~13350~^~263~^0.^0^^~4~^~FLA~^^^^^^^^^^~05/01/2005~
-~13350~^~268~^640.^0^^~4~^~NC~^^^^^^^^^^~03/01/2009~
-~13350~^~301~^8.^0^^~4~^~FLA~^^^^^^^^^^~02/01/2007~
-~13350~^~304~^19.^0^^~4~^~FLA~^^^^^^^^^^~02/01/2007~
-~13350~^~305~^181.^0^^~4~^~FLA~^^^^^^^^^^~02/01/2007~
-~13350~^~306~^235.^0^^~4~^~FLA~^^^^^^^^^^~02/01/2007~
-~13350~^~307~^2790.^1^^~1~^~A~^^^^^^^^^^~10/01/2002~
-~13350~^~318~^0.^1^^~1~^~A~^^^^^^^^^^~10/01/2002~
-~13350~^~319~^0.^0^^~4~^~FLA~^^^^^^^^^^~05/01/2005~
-~13350~^~320~^0.^0^^~4~^~NC~^^^^^^^^^^~03/01/2009~
-~13350~^~321~^0.^0^^~4~^~FLA~^^^^^^^^^^~05/01/2005~
-~13350~^~322~^0.^0^^~4~^~FLA~^^^^^^^^^^~05/01/2005~
-~13350~^~324~^1.^0^^~4~^~BFFN~^^^^^^^^^^~03/01/2009~
-~13350~^~334~^0.^0^^~4~^~FLA~^^^^^^^^^^~05/01/2005~
-~13350~^~337~^0.^0^^~4~^~FLA~^^^^^^^^^^~05/01/2005~
-~13350~^~338~^0.^0^^~4~^~FLA~^^^^^^^^^^~05/01/2005~
-~13350~^~417~^10.^0^^~4~^~FLA~^^^^^^^^^^~02/01/2007~
-~13350~^~431~^0.^0^^~4~^~FLA~^^^^^^^^^^~10/01/2002~
-~13350~^~432~^10.^0^^~4~^~FLA~^^^^^^^^^^~02/01/2007~
-~13350~^~435~^10.^0^^~4~^~NC~^^^^^^^^^^~03/01/2009~
-~13350~^~601~^79.^1^^~1~^~A~^^^^^^^^^^~10/01/2002~
-~13350~^~636~^0.^0^^~4~^~FLA~^^^^^^^^^^~10/01/2002~
-~13351~^~208~^220.^0^^~4~^~NC~^^^^^^^^^^~05/01/2010~
-~13351~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2010~
-~13351~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2010~
-~13351~^~268~^922.^0^^~4~^~NC~^^^^^^^^^^~05/01/2010~
-~13351~^~301~^14.^3^^~1~^~AR~^^^^^^^^^^~05/01/2010~
-~13351~^~304~^23.^3^^~1~^~AR~^^^^^^^^^^~05/01/2010~
-~13351~^~305~^205.^3^^~1~^~AR~^^^^^^^^^^~05/01/2010~
-~13351~^~306~^314.^3^^~1~^~AR~^^^^^^^^^^~05/01/2010~
-~13351~^~307~^73.^3^^~1~^~AR~^^^^^^^^^^~05/01/2010~
-~13351~^~318~^5.^0^^~4~^~NC~^^^^^^^^^^~05/01/2010~
-~13351~^~319~^2.^0^^~4~^~BFPN~^^^^^^^^^^~05/01/2010~
-~13351~^~320~^2.^0^^~4~^~NC~^^^^^^^^^^~05/01/2010~
-~13351~^~321~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2010~
-~13351~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2010~
-~13351~^~324~^5.^0^^~4~^~BFSN~^^^^^^^^^^~05/01/2010~
-~13351~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2010~
-~13351~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2010~
-~13351~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2010~
-~13351~^~417~^6.^0^^~4~^~BFPN~^^^^^^^^^^~05/01/2010~
-~13351~^~431~^0.^0^^~4~^~BFPN~^^^^^^^^^^~05/01/2010~
-~13351~^~432~^6.^0^^~4~^~BFPN~^^^^^^^^^^~05/01/2010~
-~13351~^~435~^6.^0^^~4~^~NC~^^^^^^^^^^~05/01/2010~
-~13351~^~601~^93.^6^8.^~1~^~AR~^^^^^^^^^^~07/01/2010~
-~13352~^~208~^228.^0^^~4~^~NC~^^^^^^^^^^~05/01/2010~
-~13352~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2010~
-~13352~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2010~
-~13352~^~268~^953.^0^^~4~^~NC~^^^^^^^^^^~05/01/2010~
-~13352~^~301~^12.^2^^~1~^~AR~^^^^^^^^^^~05/01/2010~
-~13352~^~304~^23.^2^^~1~^~AR~^^^^^^^^^^~05/01/2010~
-~13352~^~305~^207.^2^^~1~^~AR~^^^^^^^^^^~05/01/2010~
-~13352~^~306~^318.^2^^~1~^~AR~^^^^^^^^^^~05/01/2010~
-~13352~^~307~^73.^2^^~1~^~AR~^^^^^^^^^^~05/01/2010~
-~13352~^~318~^5.^0^^~4~^~NC~^^^^^^^^^^~05/01/2010~
-~13352~^~319~^1.^0^^~4~^~BFSN~^^^^^^^^^^~05/01/2010~
-~13352~^~320~^1.^0^^~4~^~NC~^^^^^^^^^^~05/01/2010~
-~13352~^~321~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2010~
-~13352~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2010~
-~13352~^~324~^6.^0^^~4~^~BFSN~^^^^^^^^^^~05/01/2010~
-~13352~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2010~
-~13352~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2010~
-~13352~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2010~
-~13352~^~417~^6.^0^^~4~^~BFPN~^~23042~^^^^^^^^^~05/01/2010~
-~13352~^~431~^0.^0^^~4~^~BFPN~^~23042~^^^^^^^^^~05/01/2010~
-~13352~^~432~^6.^0^^~4~^~BFPN~^~23042~^^^^^^^^^~05/01/2010~
-~13352~^~435~^6.^0^^~4~^~NC~^~23042~^^^^^^^^^~05/01/2010~
-~13352~^~601~^89.^4^10.^~1~^~AR~^^^^^^^^^^~07/01/2010~
-~13353~^~208~^111.^0^^~4~^~NC~^^^^^^^^^^~05/01/1990~
-~13353~^~268~^464.^0^^~4~^^^^^^^^^^^
-~13353~^~301~^10.^7^0.^~1~^^^^^^^^^^^~05/01/1990~
-~13353~^~304~^18.^7^0.^~1~^^^^^^^^^^^~05/01/1990~
-~13353~^~305~^139.^0^^~4~^^^^^^^^^^^~05/01/1990~
-~13353~^~306~^402.^7^22.^~1~^^^^^^^^^^^~05/01/1990~
-~13353~^~307~^1322.^7^41.^~1~^^^^^^^^^^^~05/01/1990~
-~13353~^~318~^0.^0^^~4~^^^^^^^^^^^~05/01/1990~
-~13353~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2002~
-~13353~^~320~^0.^0^^~4~^^^^^^^^^^^~06/01/2002~
-~13353~^~417~^7.^0^^~4~^^^^^^^^^^^~05/01/1990~
-~13353~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~
-~13353~^~432~^7.^0^^~4~^^^^^^^^^^^~05/01/1990~
-~13353~^~435~^7.^0^^~4~^~NC~^^^^^^^^^^~01/01/2001~
-~13353~^~601~^34.^0^^~4~^^^^^^^^^^^~05/01/1990~
-~13353~^~636~^0.^0^^~4~^^^^^^^^^^^~05/01/1990~
-~13354~^~208~^209.^0^^~4~^~NC~^^^^^^^^^^~05/01/2010~
-~13354~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2010~
-~13354~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2010~
-~13354~^~268~^875.^0^^~4~^~NC~^^^^^^^^^^~05/01/2010~
-~13354~^~301~^16.^1^^~1~^~AR~^^^^^^^^^^~05/01/2010~
-~13354~^~304~^23.^1^^~1~^~AR~^^^^^^^^^^~05/01/2010~
-~13354~^~305~^202.^1^^~1~^~AR~^^^^^^^^^^~05/01/2010~
-~13354~^~306~^306.^1^^~1~^~AR~^^^^^^^^^^~05/01/2010~
-~13354~^~307~^74.^1^^~1~^~AR~^^^^^^^^^^~05/01/2010~
-~13354~^~318~^7.^0^^~4~^~NC~^^^^^^^^^^~05/01/2010~
-~13354~^~319~^2.^0^^~4~^~BFSN~^^^^^^^^^^~05/01/2010~
-~13354~^~320~^2.^0^^~4~^~NC~^^^^^^^^^^~05/01/2010~
-~13354~^~321~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2010~
-~13354~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2010~
-~13354~^~324~^4.^0^^~4~^~BFSN~^^^^^^^^^^~05/01/2010~
-~13354~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2010~
-~13354~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2010~
-~13354~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2010~
-~13354~^~417~^6.^0^^~4~^~BFPN~^~23044~^^^^^^^^^~05/01/2010~
-~13354~^~431~^0.^0^^~4~^~BFPN~^~23044~^^^^^^^^^~05/01/2010~
-~13354~^~432~^6.^0^^~4~^~BFPN~^~23044~^^^^^^^^^~05/01/2010~
-~13354~^~435~^6.^0^^~4~^~NC~^~23044~^^^^^^^^^~05/01/2010~
-~13354~^~601~^98.^2^^~1~^~AR~^^^^^^^^^^~07/01/2010~
-~13355~^~208~^147.^0^^~4~^~NC~^^^^^^^^^^~06/01/2009~
-~13355~^~262~^0.^0^^~4~^~FLA~^^^^^^^^^^~07/01/2004~
-~13355~^~263~^0.^0^^~4~^~FLA~^^^^^^^^^^~07/01/2004~
-~13355~^~268~^615.^0^^~4~^~NC~^^^^^^^^^^~06/01/2009~
-~13355~^~301~^10.^4^^~1~^~A~^^^1^9.^10.^^^^~2~^~05/01/2004~
-~13355~^~304~^17.^0^^~4~^~FLA~^^^^^^^^^^~02/01/2007~
-~13355~^~305~^175.^0^^~4~^~FLA~^^^^^^^^^^~02/01/2007~
-~13355~^~306~^210.^0^^~4~^~FLA~^^^^^^^^^^~02/01/2007~
-~13355~^~307~^1078.^0^^~8~^~LC~^^^^^^^^^^~08/01/2012~
-~13355~^~318~^42.^0^^~4~^~FLA~^^^^^^^^^^~02/01/2007~
-~13355~^~319~^0.^0^^~4~^~FLA~^^^^^^^^^^~07/01/2004~
-~13355~^~320~^2.^0^^~4~^~FLA~^^^^^^^^^^~02/01/2007~
-~13355~^~321~^22.^0^^~4~^~FLA~^^^^^^^^^^~02/01/2007~
-~13355~^~322~^0.^0^^~4~^~FLA~^^^^^^^^^^~07/01/2004~
-~13355~^~324~^4.^0^^~4~^~BFFN~^^^^^^^^^^~03/01/2009~
-~13355~^~334~^6.^0^^~4~^~FLA~^^^^^^^^^^~02/01/2007~
-~13355~^~337~^0.^0^^~4~^~FLA~^^^^^^^^^^~07/01/2004~
-~13355~^~338~^11.^0^^~4~^~FLA~^^^^^^^^^^~02/01/2007~
-~13355~^~417~^6.^0^^~4~^~FLA~^^^^^^^^^^~02/01/2007~
-~13355~^~431~^0.^0^^~4~^~FLA~^^^^^^^^^^~07/01/2004~
-~13355~^~432~^6.^0^^~4~^~FLA~^^^^^^^^^^~06/01/2009~
-~13355~^~435~^6.^0^^~4~^~NC~^^^^^^^^^^~06/01/2009~
-~13355~^~601~^68.^5^^~1~^~A~^^^2^63.^73.^^^^~2~^~05/01/2004~
-~13355~^~636~^0.^0^^~4~^~FLA~^^^^^^^^^^~02/01/2007~
-~13356~^~208~^170.^0^^~4~^~NC~^^^^^^^^^^~05/01/2010~
-~13356~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2010~
-~13356~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2010~
-~13356~^~268~^709.^0^^~4~^~NC~^^^^^^^^^^~05/01/2010~
-~13356~^~301~^11.^3^^~1~^~AR~^^^^^^^^^^~05/01/2010~
-~13356~^~304~^20.^3^^~1~^~AR~^^^^^^^^^^~05/01/2010~
-~13356~^~305~^181.^3^^~1~^~AR~^^^^^^^^^^~05/01/2010~
-~13356~^~306~^321.^3^^~1~^~AR~^^^^^^^^^^~05/01/2010~
-~13356~^~307~^77.^3^^~1~^~AR~^^^^^^^^^^~05/01/2010~
-~13356~^~318~^7.^0^^~4~^~NC~^^^^^^^^^^~05/01/2010~
-~13356~^~319~^2.^0^^~4~^~BFSN~^^^^^^^^^^~05/01/2010~
-~13356~^~320~^2.^0^^~4~^~NC~^^^^^^^^^^~05/01/2010~
-~13356~^~321~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2010~
-~13356~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2010~
-~13356~^~324~^4.^0^^~4~^~BFSN~^^^^^^^^^^~05/01/2010~
-~13356~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2010~
-~13356~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2010~
-~13356~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2010~
-~13356~^~417~^3.^0^^~4~^~BFPN~^^^^^^^^^^~05/01/2010~
-~13356~^~431~^0.^0^^~4~^~BFPN~^^^^^^^^^^~05/01/2010~
-~13356~^~432~^3.^0^^~4~^~BFPN~^^^^^^^^^^~05/01/2010~
-~13356~^~435~^3.^0^^~4~^~NC~^^^^^^^^^^~05/01/2010~
-~13356~^~601~^69.^6^5.^~1~^~AR~^^^^^^^^^^~07/01/2010~
-~13357~^~208~^312.^0^^~4~^~NC~^^^^^^^^^^~05/01/1990~
-~13357~^~268~^1305.^0^^~4~^^^^^^^^^^^
-~13357~^~301~^7.^8^1.^~1~^^^^^^^^^^^~05/01/1990~
-~13357~^~304~^13.^5^0.^~1~^^^^^^^^^^^~05/01/1990~
-~13357~^~305~^105.^5^3.^~1~^^^^^^^^^^^~05/01/1990~
-~13357~^~306~^176.^5^8.^~1~^^^^^^^^^^^~05/01/1990~
-~13357~^~307~^1131.^7^69.^~1~^^^^^^^^^^^~05/01/1990~
-~13357~^~318~^0.^0^^~4~^^^^^^^^^^^~05/01/1990~
-~13357~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2002~
-~13357~^~320~^0.^0^^~4~^^^^^^^^^^^~06/01/2002~
-~13357~^~417~^4.^0^^~4~^^^^^^^^^^^~05/01/1990~
-~13357~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~
-~13357~^~432~^4.^0^^~4~^^^^^^^^^^^~05/01/1990~
-~13357~^~435~^4.^0^^~4~^~NC~^^^^^^^^^^~01/01/2001~
-~13357~^~601~^67.^5^4.^~1~^^^^^^^^^^^~05/01/1990~
-~13357~^~636~^0.^0^^~4~^^^^^^^^^^^~05/01/1990~
-~13358~^~208~^133.^0^^~4~^~NC~^^^^^^^^^^~04/01/1997~
-~13358~^~268~^556.^0^^~4~^^^^^^^^^^^
-~13358~^~301~^8.^0^^~4~^^^^^^^^^^^~05/01/1990~
-~13358~^~304~^21.^7^1.^~1~^^^^^^^^^^^~05/01/1990~
-~13358~^~305~^181.^7^8.^~1~^^^^^^^^^^^~05/01/1990~
-~13358~^~306~^377.^7^17.^~1~^^^^^^^^^^^~05/01/1990~
-~13358~^~307~^1258.^33^33.^~1~^^^^^^^^^^^~05/01/1990~
-~13358~^~318~^0.^0^^~4~^^^^^^^^^^^~05/01/1990~
-~13358~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2002~
-~13358~^~320~^0.^0^^~4~^^^^^^^^^^^~06/01/2002~
-~13358~^~417~^8.^0^^~4~^^^^^^^^^^^~05/01/1990~
-~13358~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~
-~13358~^~432~^8.^0^^~4~^^^^^^^^^^^~05/01/1990~
-~13358~^~435~^8.^0^^~4~^~NC~^^^^^^^^^^~01/01/2001~
-~13358~^~601~^46.^8^3.^~1~^^^^^^^^^^^~05/01/1990~
-~13358~^~636~^0.^0^^~4~^^^^^^^^^^^~05/01/1990~
-~13359~^~208~^178.^0^^~4~^~NC~^^^^^^^^^^~05/01/2010~
-~13359~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2010~
-~13359~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2010~
-~13359~^~268~^746.^0^^~4~^~NC~^^^^^^^^^^~05/01/2010~
-~13359~^~301~^12.^2^^~1~^~AR~^^^^^^^^^^~05/01/2010~
-~13359~^~304~^20.^2^^~1~^~AR~^^^^^^^^^^~05/01/2010~
-~13359~^~305~^180.^2^^~1~^~AR~^^^^^^^^^^~05/01/2010~
-~13359~^~306~^317.^2^^~1~^~AR~^^^^^^^^^^~05/01/2010~
-~13359~^~307~^76.^2^^~1~^~AR~^^^^^^^^^^~05/01/2010~
-~13359~^~318~^7.^0^^~4~^~NC~^^^^^^^^^^~05/01/2010~
-~13359~^~319~^2.^0^^~4~^~BFSN~^^^^^^^^^^~05/01/2010~
-~13359~^~320~^2.^0^^~4~^~NC~^^^^^^^^^^~05/01/2010~
-~13359~^~321~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2010~
-~13359~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2010~
-~13359~^~324~^5.^0^^~4~^~BFSN~^^^^^^^^^^~05/01/2010~
-~13359~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2010~
-~13359~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2010~
-~13359~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2010~
-~13359~^~417~^3.^0^^~4~^~BFPN~^~23041~^^^^^^^^^~05/01/2010~
-~13359~^~431~^0.^0^^~4~^~BFPN~^~23041~^^^^^^^^^~05/01/2010~
-~13359~^~432~^3.^0^^~4~^~BFPN~^~23041~^^^^^^^^^~05/01/2010~
-~13359~^~435~^3.^0^^~4~^~NC~^~23041~^^^^^^^^^~05/01/2010~
-~13359~^~601~^70.^4^6.^~1~^~AR~^^^^^^^^^^~07/01/2010~
-~13361~^~208~^230.^0^^~4~^~PIK~^^^^^^^^^^~06/01/2015~
-~13361~^~262~^0.^0^^~4~^~PIK~^^^^^^^^^^~06/01/2015~
-~13361~^~263~^0.^0^^~4~^~PIK~^^^^^^^^^^~06/01/2015~
-~13361~^~268~^962.^0^^~4~^~PIK~^^^^^^^^^^~06/01/2015~
-~13361~^~301~^14.^0^^~4~^~PIK~^^^^^^^^^^~06/01/2015~
-~13361~^~304~^20.^0^^~4~^~PIK~^^^^^^^^^^~06/01/2015~
-~13361~^~305~^224.^0^^~4~^~PIK~^^^^^^^^^^~06/01/2015~
-~13361~^~306~^323.^0^^~4~^~PIK~^^^^^^^^^^~06/01/2015~
-~13361~^~307~^62.^0^^~4~^~PIK~^^^^^^^^^^~06/01/2015~
-~13361~^~318~^14.^0^^~4~^~PIK~^^^^^^^^^^~06/01/2015~
-~13361~^~319~^4.^0^^~4~^~PIK~^^^^^^^^^^~06/01/2015~
-~13361~^~320~^4.^0^^~4~^~PIK~^^^^^^^^^^~06/01/2015~
-~13361~^~321~^0.^0^^~4~^~PIK~^^^^^^^^^^~06/01/2015~
-~13361~^~322~^0.^0^^~4~^~PIK~^^^^^^^^^^~06/01/2015~
-~13361~^~324~^4.^0^^~4~^~PIK~^^^^^^^^^^~06/01/2015~
-~13361~^~334~^0.^0^^~4~^~PIK~^^^^^^^^^^~06/01/2015~
-~13361~^~337~^0.^0^^~4~^~PIK~^^^^^^^^^^~06/01/2015~
-~13361~^~338~^0.^0^^~4~^~PIK~^^^^^^^^^^~06/01/2015~
-~13361~^~417~^7.^0^^~4~^~PIK~^^^^^^^^^^~06/01/2015~
-~13361~^~431~^0.^0^^~4~^~PIK~^^^^^^^^^^~06/01/2015~
-~13361~^~432~^7.^0^^~4~^~PIK~^^^^^^^^^^~06/01/2015~
-~13361~^~435~^7.^0^^~4~^~NC~^^^^^^^^^^~11/01/2009~
-~13361~^~601~^89.^0^^~4~^~PIK~^^^^^^^^^^~06/01/2015~
-~13362~^~208~^233.^0^^~4~^~NC~^^^^^^^^^^~07/01/2015~
-~13362~^~262~^0.^0^^~4~^~PIK~^^^^^^^^^^~07/01/2015~
-~13362~^~263~^0.^0^^~4~^~PIK~^^^^^^^^^^~07/01/2015~
-~13362~^~268~^976.^0^^~4~^~NC~^^^^^^^^^^~07/01/2015~
-~13362~^~301~^15.^0^^~4~^~PIK~^^^^^^^^^^~07/01/2015~
-~13362~^~304~^20.^0^^~4~^~PIK~^^^^^^^^^^~07/01/2015~
-~13362~^~305~^222.^0^^~4~^~PIK~^^^^^^^^^^~07/01/2015~
-~13362~^~306~^321.^0^^~4~^~PIK~^^^^^^^^^^~07/01/2015~
-~13362~^~307~^62.^0^^~4~^~PIK~^^^^^^^^^^~07/01/2015~
-~13362~^~318~^14.^0^^~4~^~PIK~^^^^^^^^^^~07/01/2015~
-~13362~^~319~^4.^0^^~4~^~PIK~^^^^^^^^^^~07/01/2015~
-~13362~^~320~^4.^0^^~4~^~PIK~^^^^^^^^^^~07/01/2015~
-~13362~^~321~^0.^0^^~4~^~PIK~^^^^^^^^^^~07/01/2015~
-~13362~^~322~^0.^0^^~4~^~PIK~^^^^^^^^^^~07/01/2015~
-~13362~^~324~^3.^0^^~4~^~PIK~^^^^^^^^^^~07/01/2015~
-~13362~^~334~^0.^0^^~4~^~PIK~^^^^^^^^^^~07/01/2015~
-~13362~^~337~^0.^0^^~4~^~PIK~^^^^^^^^^^~07/01/2015~
-~13362~^~338~^0.^0^^~4~^~PIK~^^^^^^^^^^~07/01/2015~
-~13362~^~417~^7.^0^^~4~^~PIK~^^^^^^^^^^~07/01/2015~
-~13362~^~431~^0.^0^^~4~^~PIK~^^^^^^^^^^~07/01/2015~
-~13362~^~432~^7.^0^^~4~^~PIK~^^^^^^^^^^~07/01/2015~
-~13362~^~435~^7.^0^^~4~^~NC~^^^^^^^^^^~06/01/2008~
-~13362~^~601~^86.^0^^~4~^~PIK~^^^^^^^^^^~07/01/2015~
-~13363~^~208~^203.^0^^~4~^~PIK~^^^^^^^^^^~07/01/2015~
-~13363~^~262~^0.^0^^~4~^~PIK~^^^^^^^^^^~07/01/2015~
-~13363~^~263~^0.^0^^~4~^~PIK~^^^^^^^^^^~07/01/2015~
-~13363~^~268~^847.^0^^~4~^~PIK~^^^^^^^^^^~07/01/2015~
-~13363~^~301~^15.^0^^~4~^~PIK~^^^^^^^^^^~07/01/2015~
-~13363~^~304~^19.^0^^~4~^~PIK~^^^^^^^^^^~07/01/2015~
-~13363~^~305~^231.^0^^~4~^~PIK~^^^^^^^^^^~07/01/2015~
-~13363~^~306~^333.^0^^~4~^~PIK~^^^^^^^^^^~07/01/2015~
-~13363~^~307~^62.^0^^~4~^~PIK~^^^^^^^^^^~07/01/2015~
-~13363~^~318~^13.^0^^~4~^~PIK~^^^^^^^^^^~07/01/2015~
-~13363~^~319~^4.^0^^~4~^~PIK~^^^^^^^^^^~07/01/2015~
-~13363~^~320~^4.^0^^~4~^~PIK~^^^^^^^^^^~07/01/2015~
-~13363~^~321~^0.^0^^~4~^~PIK~^^^^^^^^^^~07/01/2015~
-~13363~^~322~^0.^0^^~4~^~PIK~^^^^^^^^^^~07/01/2015~
-~13363~^~324~^2.^0^^~4~^~PIK~^^^^^^^^^^~07/01/2015~
-~13363~^~334~^0.^0^^~4~^~PIK~^^^^^^^^^^~07/01/2015~
-~13363~^~337~^0.^0^^~4~^~PIK~^^^^^^^^^^~07/01/2015~
-~13363~^~338~^0.^0^^~4~^~PIK~^^^^^^^^^^~07/01/2015~
-~13363~^~417~^7.^0^^~4~^~PIK~^^^^^^^^^^~07/01/2015~
-~13363~^~431~^0.^0^^~4~^~PIK~^^^^^^^^^^~07/01/2015~
-~13363~^~432~^7.^0^^~4~^~PIK~^^^^^^^^^^~07/01/2015~
-~13363~^~435~^7.^0^^~4~^~NC~^^^^^^^^^^~06/01/2008~
-~13363~^~601~^85.^0^^~4~^~PIK~^^^^^^^^^^~07/01/2015~
-~13364~^~208~^203.^0^^~4~^~NC~^^^^^^^^^^~06/01/2015~
-~13364~^~262~^0.^0^^~4~^~PIK~^^^^^^^^^^~06/01/2015~
-~13364~^~263~^0.^0^^~4~^~PIK~^^^^^^^^^^~06/01/2015~
-~13364~^~268~^850.^0^^~4~^~NC~^^^^^^^^^^~06/01/2015~
-~13364~^~301~^14.^0^^~4~^~PIK~^^^^^^^^^^~06/01/2015~
-~13364~^~304~^21.^0^^~4~^~PIK~^^^^^^^^^^~06/01/2015~
-~13364~^~305~^237.^0^^~4~^~PIK~^^^^^^^^^^~06/01/2015~
-~13364~^~306~^339.^0^^~4~^~PIK~^^^^^^^^^^~06/01/2015~
-~13364~^~307~^64.^0^^~4~^~PIK~^^^^^^^^^^~06/01/2015~
-~13364~^~318~^5.^0^^~4~^~PIK~^^^^^^^^^^~06/01/2015~
-~13364~^~319~^1.^0^^~4~^~PIK~^^^^^^^^^^~06/01/2015~
-~13364~^~320~^1.^0^^~4~^~PIK~^^^^^^^^^^~06/01/2015~
-~13364~^~321~^0.^0^^~4~^~PIK~^^^^^^^^^^~06/01/2015~
-~13364~^~322~^0.^0^^~4~^~PIK~^^^^^^^^^^~06/01/2015~
-~13364~^~324~^4.^0^^~4~^~PIK~^^^^^^^^^^~06/01/2015~
-~13364~^~334~^0.^0^^~4~^~PIK~^^^^^^^^^^~06/01/2015~
-~13364~^~337~^0.^0^^~4~^~PIK~^^^^^^^^^^~06/01/2015~
-~13364~^~338~^0.^0^^~4~^~PIK~^^^^^^^^^^~06/01/2015~
-~13364~^~417~^7.^0^^~4~^~PIK~^^^^^^^^^^~06/01/2015~
-~13364~^~431~^0.^0^^~4~^~PIK~^^^^^^^^^^~06/01/2015~
-~13364~^~432~^7.^0^^~4~^~PIK~^^^^^^^^^^~06/01/2015~
-~13364~^~435~^7.^0^^~4~^~NC~^^^^^^^^^^~06/01/2015~
-~13364~^~601~^90.^0^^~4~^~PIK~^^^^^^^^^^~06/01/2015~
-~13365~^~208~^206.^0^^~4~^~NC~^^^^^^^^^^~07/01/2015~
-~13365~^~262~^0.^0^^~4~^~PIK~^^^^^^^^^^~07/01/2015~
-~13365~^~263~^0.^0^^~4~^~PIK~^^^^^^^^^^~07/01/2015~
-~13365~^~268~^862.^0^^~4~^~NC~^^^^^^^^^^~07/01/2015~
-~13365~^~301~^14.^0^^~4~^~PIK~^^^^^^^^^^~07/01/2015~
-~13365~^~304~^21.^0^^~4~^~PIK~^^^^^^^^^^~07/01/2015~
-~13365~^~305~^235.^0^^~4~^~PIK~^^^^^^^^^^~07/01/2015~
-~13365~^~306~^338.^0^^~4~^~PIK~^^^^^^^^^^~07/01/2015~
-~13365~^~307~^63.^0^^~4~^~PIK~^^^^^^^^^^~07/01/2015~
-~13365~^~318~^4.^0^^~4~^~PIK~^^^^^^^^^^~07/01/2015~
-~13365~^~319~^1.^0^^~4~^~PIK~^^^^^^^^^^~07/01/2015~
-~13365~^~320~^1.^0^^~4~^~PIK~^^^^^^^^^^~07/01/2015~
-~13365~^~321~^0.^0^^~4~^~PIK~^^^^^^^^^^~07/01/2015~
-~13365~^~322~^0.^0^^~4~^~PIK~^^^^^^^^^^~07/01/2015~
-~13365~^~324~^3.^0^^~4~^~PIK~^^^^^^^^^^~07/01/2015~
-~13365~^~334~^0.^0^^~4~^~PIK~^^^^^^^^^^~07/01/2015~
-~13365~^~337~^0.^0^^~4~^~PIK~^^^^^^^^^^~07/01/2015~
-~13365~^~338~^0.^0^^~4~^~PIK~^^^^^^^^^^~07/01/2015~
-~13365~^~417~^7.^0^^~4~^~PIK~^^^^^^^^^^~07/01/2015~
-~13365~^~431~^0.^0^^~4~^~PIK~^^^^^^^^^^~07/01/2015~
-~13365~^~432~^7.^0^^~4~^~PIK~^^^^^^^^^^~07/01/2015~
-~13365~^~435~^7.^0^^~4~^~NC~^^^^^^^^^^~07/01/2015~
-~13365~^~601~^89.^0^^~4~^~PIK~^^^^^^^^^^~07/01/2015~
-~13366~^~208~^188.^0^^~4~^~PIK~^^^^^^^^^^~07/01/2015~
-~13366~^~262~^0.^0^^~4~^~PIK~^^^^^^^^^^~07/01/2015~
-~13366~^~263~^0.^0^^~4~^~PIK~^^^^^^^^^^~07/01/2015~
-~13366~^~268~^788.^0^^~4~^~PIK~^^^^^^^^^^~07/01/2015~
-~13366~^~301~^14.^0^^~4~^~PIK~^^^^^^^^^^~07/01/2015~
-~13366~^~304~^20.^0^^~4~^~PIK~^^^^^^^^^^~07/01/2015~
-~13366~^~305~^237.^0^^~4~^~PIK~^^^^^^^^^^~07/01/2015~
-~13366~^~306~^346.^0^^~4~^~PIK~^^^^^^^^^^~07/01/2015~
-~13366~^~307~^64.^0^^~4~^~PIK~^^^^^^^^^^~07/01/2015~
-~13366~^~318~^6.^0^^~4~^~PIK~^^^^^^^^^^~07/01/2015~
-~13366~^~319~^2.^0^^~4~^~PIK~^^^^^^^^^^~07/01/2015~
-~13366~^~320~^2.^0^^~4~^~PIK~^^^^^^^^^^~07/01/2015~
-~13366~^~321~^0.^0^^~4~^~PIK~^^^^^^^^^^~07/01/2015~
-~13366~^~322~^0.^0^^~4~^~PIK~^^^^^^^^^^~07/01/2015~
-~13366~^~324~^2.^0^^~4~^~PIK~^^^^^^^^^^~07/01/2015~
-~13366~^~334~^0.^0^^~4~^~PIK~^^^^^^^^^^~07/01/2015~
-~13366~^~337~^0.^0^^~4~^~PIK~^^^^^^^^^^~07/01/2015~
-~13366~^~338~^0.^0^^~4~^~PIK~^^^^^^^^^^~07/01/2015~
-~13366~^~417~^7.^0^^~4~^~PIK~^^^^^^^^^^~07/01/2015~
-~13366~^~431~^0.^0^^~4~^~PIK~^^^^^^^^^^~07/01/2015~
-~13366~^~432~^7.^0^^~4~^~PIK~^^^^^^^^^^~07/01/2015~
-~13366~^~435~^7.^0^^~4~^~NC~^^^^^^^^^^~07/01/2015~
-~13366~^~601~^89.^0^^~4~^~PIK~^^^^^^^^^^~07/01/2015~
-~13367~^~208~^291.^0^^~4~^~NC~^^^^^^^^^^~05/01/1990~
-~13367~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~
-~13367~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~
-~13367~^~268~^1218.^0^^~4~^^^^^^^^^^^~03/01/2009~
-~13367~^~301~^7.^0^^~1~^^^^^^^^^^^~05/01/1990~
-~13367~^~304~^21.^0^^~1~^^^^^^^^^^^~05/01/1990~
-~13367~^~305~^216.^0^^~1~^^^^^^^^^^^~05/01/1990~
-~13367~^~306~^259.^0^^~1~^^^^^^^^^^^~05/01/1990~
-~13367~^~307~^65.^0^^~1~^^^^^^^^^^^~05/01/1990~
-~13367~^~318~^0.^0^^~1~^^^^^^^^^^^~05/01/1990~
-~13367~^~319~^0.^0^^~4~^~NR~^^^^^^^^^^~02/01/2003~
-~13367~^~320~^0.^0^^~4~^~NC~^^^^^^^^^^~03/01/2009~
-~13367~^~321~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~
-~13367~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~
-~13367~^~324~^13.^0^^~4~^~BFFN~^^^^^^^^^^~03/01/2009~
-~13367~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~
-~13367~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~
-~13367~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~
-~13367~^~417~^7.^0^^~1~^^^^^^^^^^^~05/01/1990~
-~13367~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~
-~13367~^~432~^7.^0^^~1~^^^^^^^^^^^~03/01/2009~
-~13367~^~435~^7.^0^^~4~^~NC~^^^^^^^^^^~11/01/2009~
-~13367~^~601~^93.^0^^~1~^^^^^^^^^^^~05/01/1990~
-~13368~^~208~^218.^0^^~4~^~NC~^^^^^^^^^^~05/01/1990~
-~13368~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~10/01/2002~
-~13368~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~10/01/2002~
-~13368~^~268~^912.^0^^~4~^^^^^^^^^^^~03/01/2009~
-~13368~^~301~^6.^0^^~1~^^^^^^^^^^^~05/01/1990~
-~13368~^~304~^23.^0^^~1~^^^^^^^^^^^~05/01/1990~
-~13368~^~305~^241.^0^^~1~^^^^^^^^^^^~05/01/1990~
-~13368~^~306~^285.^0^^~1~^^^^^^^^^^^~05/01/1990~
-~13368~^~307~^70.^0^^~1~^^^^^^^^^^^~05/01/1990~
-~13368~^~318~^0.^0^^~1~^^^^^^^^^^^~05/01/1990~
-~13368~^~319~^0.^0^^~4~^~NR~^^^^^^^^^^~10/01/2002~
-~13368~^~320~^0.^0^^~4~^~NC~^^^^^^^^^^~03/01/2009~
-~13368~^~321~^0.^0^^~7~^~Z~^^^^^^^^^^~10/01/2002~
-~13368~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~10/01/2002~
-~13368~^~324~^7.^0^^~4~^~BFFN~^^^^^^^^^^~03/01/2009~
-~13368~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~10/01/2002~
-~13368~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~10/01/2002~
-~13368~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~10/01/2002~
-~13368~^~417~^8.^0^^~1~^^^^^^^^^^^~05/01/1990~
-~13368~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~
-~13368~^~432~^8.^0^^~1~^^^^^^^^^^^~03/01/2009~
-~13368~^~435~^8.^0^^~4~^~NC~^^^^^^^^^^~11/01/2009~
-~13368~^~601~^93.^0^^~1~^^^^^^^^^^^~05/01/1990~
-~13369~^~208~^213.^0^^~4~^~NC~^^^^^^^^^^~07/01/2010~
-~13369~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2003~
-~13369~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2003~
-~13369~^~268~^890.^0^^~4~^~NC~^^^^^^^^^^~07/01/2010~
-~13369~^~301~^19.^0^^~4~^~BFFN~^^^^^^^^^^~05/01/2003~
-~13369~^~304~^21.^0^^~4~^~BFFN~^^^^^^^^^^~05/01/2003~
-~13369~^~305~^200.^0^^~4~^~BFFN~^^^^^^^^^^~05/01/2003~
-~13369~^~306~^264.^0^^~4~^~BFFN~^^^^^^^^^^~05/01/2003~
-~13369~^~307~^54.^0^^~4~^~BFFN~^^^^^^^^^^~05/01/2003~
-~13369~^~318~^0.^0^^~1~^~AS~^^^^^^^^^^~05/01/2003~
-~13369~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2003~
-~13369~^~320~^0.^0^^~1~^~AS~^^^^^^^^^^~05/01/2003~
-~13369~^~321~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2003~
-~13369~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2003~
-~13369~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2003~
-~13369~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2003~
-~13369~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2003~
-~13369~^~417~^10.^0^^~4~^~BFPN~^^^^^^^^^^~05/01/2003~
-~13369~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~
-~13369~^~432~^10.^0^^~4~^~BFPN~^^^^^^^^^^~07/01/2010~
-~13369~^~435~^10.^0^^~4~^~NC~^^^^^^^^^^~07/01/2010~
-~13369~^~601~^92.^0^^~4~^~BFSN~^~13904~^^^^^^^^^~07/01/2010~
-~13370~^~208~^205.^0^^~4~^~NC~^^^^^^^^^^~07/01/2010~
-~13370~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2003~
-~13370~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2003~
-~13370~^~268~^858.^0^^~4~^~NC~^^^^^^^^^^~07/01/2010~
-~13370~^~301~^16.^0^^~4~^~BFNN~^^^^^^^^^^~05/01/2003~
-~13370~^~304~^22.^0^^~4~^~BFNN~^^^^^^^^^^~05/01/2003~
-~13370~^~305~^205.^0^^~4~^~BFNN~^^^^^^^^^^~05/01/2003~
-~13370~^~306~^267.^0^^~4~^~BFNN~^^^^^^^^^^~05/01/2003~
-~13370~^~307~^54.^0^^~4~^~BFNN~^^^^^^^^^^~05/01/2003~
-~13370~^~318~^0.^0^^~1~^~AS~^^^^^^^^^^~05/01/2003~
-~13370~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2003~
-~13370~^~320~^0.^0^^~1~^~AS~^^^^^^^^^^~05/01/2003~
-~13370~^~321~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2003~
-~13370~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2003~
-~13370~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2003~
-~13370~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2003~
-~13370~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2003~
-~13370~^~417~^11.^0^^~4~^~BFPN~^^^^^^^^^^~05/01/2003~
-~13370~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~
-~13370~^~432~^11.^0^^~4~^~BFPN~^^^^^^^^^^~07/01/2010~
-~13370~^~435~^11.^0^^~4~^~NC~^^^^^^^^^^~07/01/2010~
-~13370~^~601~^100.^0^^~4~^~BFSN~^~13595~^^^^^^^^^~07/01/2010~
-~13371~^~208~^358.^0^^~4~^~NC~^^^^^^^^^^~05/01/1990~
-~13371~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2008~
-~13371~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2008~
-~13371~^~268~^1498.^0^^~4~^^^^^^^^^^^~04/01/2008~
-~13371~^~301~^8.^0^^~1~^^^^^^^^^^^~05/01/1990~
-~13371~^~304~^18.^0^^~1~^^^^^^^^^^^~05/01/1990~
-~13371~^~305~^187.^0^^~1~^^^^^^^^^^^~05/01/1990~
-~13371~^~306~^233.^0^^~1~^^^^^^^^^^^~05/01/1990~
-~13371~^~307~^68.^0^^~1~^^^^^^^^^^^~05/01/1990~
-~13371~^~318~^0.^0^^~1~^^^^^^^^^^^~05/01/1990~
-~13371~^~320~^0.^0^^~1~^~AS~^^^^^^^^^^~04/01/2008~
-~13371~^~321~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2008~
-~13371~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2008~
-~13371~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2008~
-~13371~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2008~
-~13371~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2008~
-~13371~^~417~^7.^0^^~1~^^^^^^^^^^^~05/01/1990~
-~13371~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~
-~13371~^~432~^7.^0^^~1~^^^^^^^^^^^~04/01/2008~
-~13371~^~435~^7.^0^^~4~^~NC~^^^^^^^^^^~06/01/2008~
-~13371~^~601~^92.^0^^~1~^^^^^^^^^^^~05/01/1990~
-~13372~^~208~^244.^0^^~4~^~NC~^^^^^^^^^^~05/01/1990~
-~13372~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2008~
-~13372~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2008~
-~13372~^~268~^1021.^0^^~4~^^^^^^^^^^^~04/01/2008~
-~13372~^~301~^6.^10^0.^~1~^^^^^^^^^^^~05/01/1990~
-~13372~^~304~^22.^10^0.^~1~^^^^^^^^^^^~05/01/1990~
-~13372~^~305~^226.^1^^~1~^^^^^^^^^^^~05/01/1990~
-~13372~^~306~^273.^10^8.^~1~^^^^^^^^^^^~05/01/1990~
-~13372~^~307~^77.^10^5.^~1~^^^^^^^^^^^~05/01/1990~
-~13372~^~318~^0.^0^^~1~^^^^^^^^^^^~05/01/1990~
-~13372~^~320~^0.^0^^~1~^~AS~^^^^^^^^^^~04/01/2008~
-~13372~^~321~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2008~
-~13372~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2008~
-~13372~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2008~
-~13372~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2008~
-~13372~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2008~
-~13372~^~417~^8.^11^1.^~1~^^^^^^^^^^^~05/01/1990~
-~13372~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~
-~13372~^~432~^8.^11^1.^~1~^^^^^^^^^^^~04/01/2008~
-~13372~^~435~^8.^0^^~4~^~NC~^^^^^^^^^^~06/01/2008~
-~13372~^~601~^91.^8^1.^~1~^^^^^^^^^^^~05/01/1990~
-~13373~^~208~^297.^0^^~4~^~NC~^^^^^^^^^^~07/01/2010~
-~13373~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~
-~13373~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~
-~13373~^~268~^1241.^0^^~4~^~NC~^^^^^^^^^^~07/01/2010~
-~13373~^~301~^16.^0^^~4~^~BFFN~^^^^^^^^^^~08/01/2003~
-~13373~^~304~^19.^0^^~4~^~BFFN~^^^^^^^^^^~08/01/2003~
-~13373~^~305~^174.^0^^~4~^~BFFN~^^^^^^^^^^~08/01/2003~
-~13373~^~306~^231.^0^^~4~^~BFFN~^^^^^^^^^^~08/01/2003~
-~13373~^~307~^47.^0^^~4~^~BFFN~^^^^^^^^^^~08/01/2003~
-~13373~^~318~^0.^0^^~1~^~AS~^^^^^^^^^^~08/01/2003~
-~13373~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2003~
-~13373~^~320~^0.^0^^~1~^~AS~^^^^^^^^^^~06/01/2003~
-~13373~^~321~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~
-~13373~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~
-~13373~^~324~^8.^0^^~1~^~PAK~^^^^^^^^^^~07/01/2009~
-~13373~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~
-~13373~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~
-~13373~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~
-~13373~^~417~^9.^0^^~4~^~BFPN~^^^^^^^^^^~08/01/2003~
-~13373~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~
-~13373~^~432~^9.^0^^~4~^~BFPN~^^^^^^^^^^~07/01/2010~
-~13373~^~435~^9.^0^^~4~^~NC~^^^^^^^^^^~07/01/2010~
-~13373~^~601~^116.^0^^~4~^~BFSN~^~23131~^^^^^^^^^~07/01/2010~
-~13375~^~208~^283.^0^^~4~^~NC~^^^^^^^^^^~07/01/2010~
-~13375~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2003~
-~13375~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2003~
-~13375~^~268~^1185.^0^^~4~^~NC~^^^^^^^^^^~07/01/2010~
-~13375~^~301~^17.^0^^~4~^~BFFN~^^^^^^^^^^~05/01/2003~
-~13375~^~304~^19.^0^^~4~^~BFFN~^^^^^^^^^^~05/01/2003~
-~13375~^~305~^178.^0^^~4~^~BFFN~^^^^^^^^^^~05/01/2003~
-~13375~^~306~^235.^0^^~4~^~BFFN~^^^^^^^^^^~05/01/2003~
-~13375~^~307~^48.^0^^~4~^~BFFN~^^^^^^^^^^~05/01/2003~
-~13375~^~318~^0.^0^^~1~^~AS~^^^^^^^^^^~05/01/2003~
-~13375~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2003~
-~13375~^~320~^0.^0^^~1~^~AS~^^^^^^^^^^~05/01/2003~
-~13375~^~321~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2003~
-~13375~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2003~
-~13375~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2003~
-~13375~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2003~
-~13375~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2003~
-~13375~^~417~^9.^0^^~4~^~BFPN~^^^^^^^^^^~05/01/2003~
-~13375~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~
-~13375~^~432~^9.^0^^~4~^~BFPN~^^^^^^^^^^~07/01/2010~
-~13375~^~435~^9.^0^^~4~^~NC~^^^^^^^^^^~07/01/2010~
-~13375~^~601~^115.^0^^~4~^~BFSN~^~23133~^^^^^^^^^~07/01/2010~
-~13377~^~208~^212.^0^^~4~^~NC~^^^^^^^^^^~07/01/2010~
-~13377~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2003~
-~13377~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2003~
-~13377~^~268~^886.^0^^~4~^~NC~^^^^^^^^^^~07/01/2010~
-~13377~^~301~^14.^0^^~4~^~BFNN~^^^^^^^^^^~05/01/2003~
-~13377~^~304~^22.^0^^~4~^~BFNN~^^^^^^^^^^~05/01/2003~
-~13377~^~305~^202.^0^^~4~^~BFNN~^^^^^^^^^^~05/01/2003~
-~13377~^~306~^262.^0^^~4~^~BFNN~^^^^^^^^^^~05/01/2003~
-~13377~^~307~^54.^0^^~4~^~BFNN~^^^^^^^^^^~05/01/2003~
-~13377~^~318~^0.^0^^~1~^~AS~^^^^^^^^^^~05/01/2003~
-~13377~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2003~
-~13377~^~320~^0.^0^^~1~^~AS~^^^^^^^^^^~05/01/2003~
-~13377~^~321~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2003~
-~13377~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2003~
-~13377~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2003~
-~13377~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2003~
-~13377~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2003~
-~13377~^~417~^11.^0^^~4~^~BFPN~^^^^^^^^^^~05/01/2003~
-~13377~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~
-~13377~^~432~^11.^0^^~4~^~BFPN~^^^^^^^^^^~07/01/2010~
-~13377~^~435~^11.^0^^~4~^~NC~^^^^^^^^^^~07/01/2010~
-~13377~^~601~^100.^0^^~4~^~BFSN~^~23081~^^^^^^^^^~07/01/2010~
-~13378~^~208~^195.^0^^~4~^~NC~^^^^^^^^^^~07/01/2010~
-~13378~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2003~
-~13378~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2003~
-~13378~^~268~^815.^0^^~4~^~NC~^^^^^^^^^^~07/01/2010~
-~13378~^~301~^17.^0^^~4~^~BFNN~^^^^^^^^^^~05/01/2003~
-~13378~^~304~^22.^0^^~4~^~BFNN~^^^^^^^^^^~05/01/2003~
-~13378~^~305~^207.^0^^~4~^~BFNN~^^^^^^^^^^~05/01/2003~
-~13378~^~306~^270.^0^^~4~^~BFNN~^^^^^^^^^^~05/01/2003~
-~13378~^~307~^55.^0^^~4~^~BFNN~^^^^^^^^^^~05/01/2003~
-~13378~^~318~^0.^0^^~1~^~AS~^^^^^^^^^^~05/01/2003~
-~13378~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2003~
-~13378~^~320~^0.^0^^~1~^~AS~^^^^^^^^^^~05/01/2003~
-~13378~^~321~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2003~
-~13378~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2003~
-~13378~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2003~
-~13378~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2003~
-~13378~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2003~
-~13378~^~417~^11.^0^^~4~^~BFPN~^^^^^^^^^^~05/01/2003~
-~13378~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~
-~13378~^~432~^11.^0^^~4~^~BFPN~^^^^^^^^^^~07/01/2010~
-~13378~^~435~^11.^0^^~4~^~NC~^^^^^^^^^^~07/01/2010~
-~13378~^~601~^98.^0^^~4~^~BFSN~^~23082~^^^^^^^^^~07/01/2010~
-~13379~^~208~^334.^0^^~4~^~NC~^^^^^^^^^^~05/01/1990~
-~13379~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~
-~13379~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~
-~13379~^~268~^1397.^0^^~4~^^^^^^^^^^^~03/01/2009~
-~13379~^~301~^13.^0^^~1~^^^^^^^^^^^~05/01/1990~
-~13379~^~304~^20.^0^^~1~^^^^^^^^^^^~05/01/1990~
-~13379~^~305~^205.^0^^~1~^^^^^^^^^^^~05/01/1990~
-~13379~^~306~^236.^0^^~1~^^^^^^^^^^^~05/01/1990~
-~13379~^~307~^65.^0^^~1~^^^^^^^^^^^~05/01/1990~
-~13379~^~318~^0.^0^^~1~^^^^^^^^^^^~05/01/1990~
-~13379~^~319~^0.^0^^~4~^~NR~^^^^^^^^^^~02/01/2003~
-~13379~^~320~^0.^0^^~4~^~NC~^^^^^^^^^^~03/01/2009~
-~13379~^~321~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~
-~13379~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~
-~13379~^~324~^16.^0^^~4~^~BFFN~^^^^^^^^^^~03/01/2009~
-~13379~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~
-~13379~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~
-~13379~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~
-~13379~^~417~^5.^0^^~1~^^^^^^^^^^^~05/01/1990~
-~13379~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~
-~13379~^~432~^5.^0^^~1~^^^^^^^^^^^~03/01/2009~
-~13379~^~435~^5.^0^^~4~^~NC~^^^^^^^^^^~03/01/2009~
-~13379~^~601~^104.^0^^~1~^^^^^^^^^^^~05/01/1990~
-~13380~^~208~^306.^0^^~4~^~NC~^^^^^^^^^^~09/01/2010~
-~13380~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2008~
-~13380~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2008~
-~13380~^~268~^1282.^0^^~4~^~NC~^^^^^^^^^^~09/01/2010~
-~13380~^~301~^14.^4^0.^~1~^~AR~^^^^^^^^^^~07/01/2010~
-~13380~^~304~^19.^4^0.^~1~^~AR~^^^^^^^^^^~07/01/2010~
-~13380~^~305~^174.^4^1.^~1~^~AR~^^^^^^^^^^~07/01/2010~
-~13380~^~306~^262.^4^3.^~1~^~AR~^^^^^^^^^^~07/01/2010~
-~13380~^~307~^61.^4^0.^~1~^~AR~^^^^^^^^^^~07/01/2010~
-~13380~^~318~^26.^0^^~1~^~AS~^^^^^^^^^^~07/01/2010~
-~13380~^~319~^8.^4^0.^~1~^~AR~^^^^^^^^^^~07/01/2010~
-~13380~^~320~^8.^0^^~1~^~AS~^^^^^^^^^^~07/01/2010~
-~13380~^~321~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2008~
-~13380~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2008~
-~13380~^~324~^6.^4^1.^~1~^~AR~^^^^^^^^^^~07/01/2010~
-~13380~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2008~
-~13380~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2008~
-~13380~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2008~
-~13380~^~601~^100.^4^2.^~1~^~AR~^^^^^^^^^^~07/01/2010~
-~13381~^~208~^288.^0^^~4~^~NC~^^^^^^^^^^~09/01/2010~
-~13381~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2008~
-~13381~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2008~
-~13381~^~268~^1203.^0^^~4~^~NC~^^^^^^^^^^~09/01/2010~
-~13381~^~301~^14.^2^^~1~^~AR~^^^^^^^^^^~07/01/2010~
-~13381~^~304~^20.^2^^~1~^~AR~^^^^^^^^^^~07/01/2010~
-~13381~^~305~^171.^2^^~1~^~AR~^^^^^^^^^^~07/01/2010~
-~13381~^~306~^261.^2^^~1~^~AR~^^^^^^^^^^~07/01/2010~
-~13381~^~307~^64.^2^^~1~^~AR~^^^^^^^^^^~07/01/2010~
-~13381~^~318~^28.^0^^~1~^~AS~^^^^^^^^^^~07/01/2010~
-~13381~^~319~^8.^2^^~1~^~AR~^^^^^^^^^^~07/01/2010~
-~13381~^~320~^8.^0^^~1~^~AS~^^^^^^^^^^~07/01/2010~
-~13381~^~321~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2008~
-~13381~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2008~
-~13381~^~324~^5.^2^^~1~^~AR~^^^^^^^^^^~07/01/2010~
-~13381~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2008~
-~13381~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2008~
-~13381~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2008~
-~13381~^~417~^7.^0^^~4~^~BFPN~^~23044~^^^^^^^^^~08/01/2015~
-~13381~^~431~^0.^0^^~4~^~BFPN~^~23044~^^^^^^^^^~08/01/2015~
-~13381~^~432~^7.^0^^~4~^~BFPN~^~23044~^^^^^^^^^~08/01/2015~
-~13381~^~435~^7.^0^^~4~^~NC~^~23044~^^^^^^^^^~08/01/2015~
-~13381~^~601~^98.^2^^~1~^~AR~^^^^^^^^^^~07/01/2010~
-~13382~^~208~^253.^0^^~4~^~NC~^^^^^^^^^^~05/01/1990~
-~13382~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~10/01/2002~
-~13382~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~10/01/2002~
-~13382~^~268~^1059.^0^^~4~^^^^^^^^^^^~03/01/2009~
-~13382~^~301~^13.^11^1.^~1~^^^^^^^^^^^~05/01/1990~
-~13382~^~304~^23.^11^0.^~1~^^^^^^^^^^^~05/01/1990~
-~13382~^~305~^235.^1^^~1~^^^^^^^^^^^~05/01/1990~
-~13382~^~306~^263.^11^8.^~1~^^^^^^^^^^^~05/01/1990~
-~13382~^~307~^71.^11^6.^~1~^^^^^^^^^^^~05/01/1990~
-~13382~^~318~^0.^0^^~1~^^^^^^^^^^^~05/01/1990~
-~13382~^~319~^0.^0^^~4~^~NR~^^^^^^^^^^~10/01/2002~
-~13382~^~320~^0.^0^^~4~^~NC~^^^^^^^^^^~03/01/2009~
-~13382~^~321~^0.^0^^~7~^~Z~^^^^^^^^^^~10/01/2002~
-~13382~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~10/01/2002~
-~13382~^~324~^9.^0^^~4~^~BFFN~^^^^^^^^^^~03/01/2009~
-~13382~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~10/01/2002~
-~13382~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~10/01/2002~
-~13382~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~10/01/2002~
-~13382~^~417~^6.^11^1.^~1~^^^^^^^^^^^~05/01/1990~
-~13382~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~
-~13382~^~432~^6.^11^1.^~1~^^^^^^^^^^^~03/01/2009~
-~13382~^~435~^6.^0^^~4~^~NC~^^^^^^^^^^~11/01/2009~
-~13382~^~601~^106.^8^1.^~1~^^^^^^^^^^^~05/01/1990~
-~13383~^~208~^231.^0^^~4~^~NC~^^^^^^^^^^~09/01/2010~
-~13383~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2008~
-~13383~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2008~
-~13383~^~268~^965.^0^^~4~^~NC~^^^^^^^^^^~09/01/2010~
-~13383~^~301~^14.^4^0.^~1~^~AR~^^^^^^^^^^~05/01/2010~
-~13383~^~304~^22.^4^0.^~1~^~AR~^^^^^^^^^^~05/01/2010~
-~13383~^~305~^207.^4^3.^~1~^~AR~^^^^^^^^^^~05/01/2010~
-~13383~^~306~^307.^4^4.^~1~^~AR~^^^^^^^^^^~05/01/2010~
-~13383~^~307~^63.^4^0.^~1~^~AR~^^^^^^^^^^~05/01/2010~
-~13383~^~318~^5.^0^^~1~^~AS~^^^^^^^^^^~05/01/2010~
-~13383~^~319~^2.^4^0.^~1~^~AR~^^^^^^^^^^~05/01/2010~
-~13383~^~320~^2.^0^^~1~^~AS~^^^^^^^^^^~05/01/2010~
-~13383~^~321~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2008~
-~13383~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2008~
-~13383~^~324~^6.^4^1.^~1~^~AR~^^^^^^^^^^~05/01/2010~
-~13383~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2008~
-~13383~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2008~
-~13383~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2008~
-~13383~^~417~^7.^0^^~4~^~BFPN~^~23042~^^^^^^^^^~05/01/2010~
-~13383~^~431~^0.^0^^~4~^~BFPN~^~23042~^^^^^^^^^~05/01/2010~
-~13383~^~432~^7.^0^^~4~^~BFPN~^~23042~^^^^^^^^^~05/01/2010~
-~13383~^~435~^7.^0^^~4~^~NC~^~23042~^^^^^^^^^~05/01/2010~
-~13383~^~601~^105.^4^3.^~1~^~AR~^^^^^^^^^^~07/01/2010~
-~13384~^~208~^216.^0^^~4~^~NC~^^^^^^^^^^~09/01/2010~
-~13384~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2008~
-~13384~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2008~
-~13384~^~268~^904.^0^^~4~^~NC~^^^^^^^^^^~09/01/2010~
-~13384~^~301~^14.^2^^~1~^~AR~^^^^^^^^^^~05/01/2010~
-~13384~^~304~^22.^2^^~1~^~AR~^^^^^^^^^^~05/01/2010~
-~13384~^~305~^204.^2^^~1~^~AR~^^^^^^^^^^~05/01/2010~
-~13384~^~306~^306.^2^^~1~^~AR~^^^^^^^^^^~05/01/2010~
-~13384~^~307~^67.^2^^~1~^~AR~^^^^^^^^^^~05/01/2010~
-~13384~^~318~^8.^0^^~1~^~AS~^^^^^^^^^^~05/01/2010~
-~13384~^~319~^2.^2^^~1~^~AR~^^^^^^^^^^~05/01/2010~
-~13384~^~320~^2.^0^^~1~^~AS~^^^^^^^^^^~05/01/2010~
-~13384~^~321~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2008~
-~13384~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2008~
-~13384~^~324~^4.^2^^~1~^~AR~^^^^^^^^^^~05/01/2010~
-~13384~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2008~
-~13384~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2008~
-~13384~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2008~
-~13384~^~417~^7.^0^^~4~^~BFPN~^~23044~^^^^^^^^^~05/01/2010~
-~13384~^~431~^0.^0^^~4~^~BFPN~^~23044~^^^^^^^^^~05/01/2010~
-~13384~^~432~^7.^0^^~4~^~BFPN~^~23044~^^^^^^^^^~05/01/2010~
-~13384~^~435~^7.^0^^~4~^~NC~^~23044~^^^^^^^^^~05/01/2010~
-~13384~^~601~^102.^2^^~1~^~AR~^^^^^^^^^^~07/01/2010~
-~13386~^~208~^372.^0^^~4~^~NC~^^^^^^^^^^~05/01/1990~
-~13386~^~268~^1556.^0^^~4~^^^^^^^^^^^
-~13386~^~301~^10.^0^^~1~^^^^^^^^^^^~05/01/1990~
-~13386~^~304~^20.^0^^~1~^^^^^^^^^^^~05/01/1990~
-~13386~^~305~^172.^0^^~1~^^^^^^^^^^^~05/01/1990~
-~13386~^~306~^290.^0^^~1~^^^^^^^^^^^~05/01/1990~
-~13386~^~307~^64.^0^^~1~^^^^^^^^^^^~05/01/1990~
-~13386~^~318~^0.^0^^~1~^^^^^^^^^^^~05/01/1990~
-~13386~^~319~^0.^0^^~1~^^^^^^^^^^^~06/01/2002~
-~13386~^~320~^0.^0^^~1~^^^^^^^^^^^~06/01/2002~
-~13386~^~417~^7.^0^^~1~^^^^^^^^^^^~05/01/1990~
-~13386~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~
-~13386~^~432~^7.^0^^~1~^^^^^^^^^^^~05/01/1990~
-~13386~^~435~^7.^0^^~4~^~NC~^^^^^^^^^^~01/01/2001~
-~13386~^~601~^85.^0^^~1~^^^^^^^^^^^~05/01/1990~
-~13387~^~208~^331.^0^^~4~^~NC~^^^^^^^^^^~05/01/1990~
-~13387~^~268~^1385.^0^^~4~^^^^^^^^^^^
-~13387~^~301~^9.^0^^~1~^^^^^^^^^^^~05/01/1990~
-~13387~^~304~^20.^0^^~1~^^^^^^^^^^^~05/01/1990~
-~13387~^~305~^177.^0^^~1~^^^^^^^^^^^~05/01/1990~
-~13387~^~306~^300.^0^^~1~^^^^^^^^^^^~05/01/1990~
-~13387~^~307~^65.^0^^~1~^^^^^^^^^^^~05/01/1990~
-~13387~^~318~^0.^0^^~1~^^^^^^^^^^^~05/01/1990~
-~13387~^~319~^0.^0^^~1~^^^^^^^^^^^~06/01/2002~
-~13387~^~320~^0.^0^^~1~^^^^^^^^^^^~06/01/2002~
-~13387~^~417~^8.^0^^~1~^^^^^^^^^^^~05/01/1990~
-~13387~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~
-~13387~^~432~^8.^0^^~1~^^^^^^^^^^^~05/01/1990~
-~13387~^~435~^8.^0^^~4~^~NC~^^^^^^^^^^~01/01/2001~
-~13387~^~601~^84.^0^^~1~^^^^^^^^^^^~05/01/1990~
-~13388~^~208~^238.^0^^~4~^~NC~^^^^^^^^^^~05/01/1990~
-~13388~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~10/01/2002~
-~13388~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~10/01/2002~
-~13388~^~268~^996.^0^^~4~^^^^^^^^^^^~03/01/2009~
-~13388~^~301~^8.^11^0.^~1~^^^^^^^^^^^~05/01/1990~
-~13388~^~304~^25.^11^0.^~1~^^^^^^^^^^^~05/01/1990~
-~13388~^~305~^209.^1^^~1~^^^^^^^^^^^~05/01/1990~
-~13388~^~306~^357.^11^6.^~1~^^^^^^^^^^^~05/01/1990~
-~13388~^~307~^73.^11^7.^~1~^^^^^^^^^^^~05/01/1990~
-~13388~^~318~^0.^0^^~1~^^^^^^^^^^^~05/01/1990~
-~13388~^~319~^0.^0^^~4~^~NR~^^^^^^^^^^~10/01/2002~
-~13388~^~320~^0.^0^^~4~^~NC~^^^^^^^^^^~03/01/2009~
-~13388~^~321~^0.^0^^~7~^~Z~^^^^^^^^^^~10/01/2002~
-~13388~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~10/01/2002~
-~13388~^~324~^9.^0^^~4~^~BFFN~^^^^^^^^^^~03/01/2009~
-~13388~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~10/01/2002~
-~13388~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~10/01/2002~
-~13388~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~10/01/2002~
-~13388~^~417~^9.^14^0.^~1~^^^^^^^^^^^~05/01/1990~
-~13388~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~
-~13388~^~432~^9.^14^0.^~1~^^^^^^^^^^^~03/01/2009~
-~13388~^~435~^9.^0^^~4~^~NC~^^^^^^^^^^~11/01/2009~
-~13388~^~601~^81.^8^2.^~1~^^^^^^^^^^^~05/01/1990~
-~13389~^~208~^253.^0^^~4~^~NC~^^^^^^^^^^~05/01/1990~
-~13389~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2001~
-~13389~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2001~
-~13389~^~268~^1059.^0^^~4~^^^^^^^^^^^
-~13389~^~301~^8.^0^^~1~^^^^^^^^^^^~05/01/1990~
-~13389~^~304~^25.^0^^~1~^^^^^^^^^^^~05/01/1990~
-~13389~^~305~^209.^0^^~1~^^^^^^^^^^^~05/01/1990~
-~13389~^~306~^357.^0^^~1~^^^^^^^^^^^~05/01/1990~
-~13389~^~307~^73.^0^^~1~^^^^^^^^^^^~05/01/1990~
-~13389~^~318~^0.^0^^~1~^^^^^^^^^^^~05/01/1990~
-~13389~^~319~^0.^0^^~1~^^^^^^^^^^^~06/01/2002~
-~13389~^~320~^0.^0^^~1~^^^^^^^^^^^~06/01/2002~
-~13389~^~417~^9.^0^^~1~^^^^^^^^^^^~05/01/1990~
-~13389~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~
-~13389~^~432~^9.^0^^~1~^^^^^^^^^^^~05/01/1990~
-~13389~^~435~^9.^0^^~4~^~NC~^^^^^^^^^^~07/01/2002~
-~13389~^~601~^81.^0^^~1~^^^^^^^^^^^~05/01/1990~
-~13390~^~208~^220.^0^^~4~^~NC~^^^^^^^^^^~05/01/1990~
-~13390~^~268~^920.^0^^~4~^^^^^^^^^^^
-~13390~^~301~^8.^0^^~1~^^^^^^^^^^^~05/01/1990~
-~13390~^~304~^25.^0^^~1~^^^^^^^^^^^~05/01/1990~
-~13390~^~305~^209.^0^^~1~^^^^^^^^^^^~05/01/1990~
-~13390~^~306~^357.^0^^~1~^^^^^^^^^^^~05/01/1990~
-~13390~^~307~^73.^0^^~1~^^^^^^^^^^^~05/01/1990~
-~13390~^~318~^0.^0^^~1~^^^^^^^^^^^~05/01/1990~
-~13390~^~319~^0.^0^^~1~^^^^^^^^^^^~06/01/2002~
-~13390~^~320~^0.^0^^~1~^^^^^^^^^^^~06/01/2002~
-~13390~^~417~^9.^0^^~1~^^^^^^^^^^^~05/01/1990~
-~13390~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~
-~13390~^~432~^9.^0^^~1~^^^^^^^^^^^~05/01/1990~
-~13390~^~435~^9.^0^^~4~^~NC~^^^^^^^^^^~07/01/2002~
-~13390~^~601~^81.^0^^~1~^^^^^^^^^^^~05/01/1990~
-~13391~^~208~^249.^0^^~4~^~NC~^^^^^^^^^^~07/01/2010~
-~13391~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~
-~13391~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~
-~13391~^~268~^1043.^0^^~4~^~NC~^^^^^^^^^^~07/01/2010~
-~13391~^~301~^20.^0^^~4~^~BFFN~^^^^^^^^^^~08/01/2003~
-~13391~^~304~^23.^0^^~4~^~BFFN~^^^^^^^^^^~08/01/2003~
-~13391~^~305~^212.^0^^~4~^~BFFN~^^^^^^^^^^~08/01/2003~
-~13391~^~306~^340.^0^^~4~^~BFFN~^^^^^^^^^^~08/01/2003~
-~13391~^~307~^56.^0^^~4~^~BFFN~^^^^^^^^^^~08/01/2003~
-~13391~^~318~^0.^0^^~1~^~AS~^^^^^^^^^^~08/01/2003~
-~13391~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~08/01/2003~
-~13391~^~320~^0.^0^^~1~^~AS~^^^^^^^^^^~08/01/2003~
-~13391~^~321~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~
-~13391~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~
-~13391~^~324~^7.^0^^~1~^~PAK~^^^^^^^^^^~07/01/2009~
-~13391~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~
-~13391~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~
-~13391~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~
-~13391~^~417~^8.^0^^~4~^~BFPN~^^^^^^^^^^~08/01/2003~
-~13391~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~
-~13391~^~432~^8.^0^^~4~^~BFPN~^^^^^^^^^^~07/01/2010~
-~13391~^~435~^8.^0^^~4~^~NC~^^^^^^^^^^~07/01/2010~
-~13391~^~601~^89.^0^^~4~^~BFSN~^~23125~^^^^^^^^^~07/01/2010~
-~13392~^~208~^312.^0^^~4~^~NC~^^^^^^^^^^~05/01/1990~
-~13392~^~268~^1305.^0^^~4~^^^^^^^^^^^
-~13392~^~301~^13.^0^^~1~^^^^^^^^^^^~05/01/1990~
-~13392~^~304~^23.^0^^~1~^^^^^^^^^^^~05/01/1990~
-~13392~^~305~^183.^0^^~1~^^^^^^^^^^^~05/01/1990~
-~13392~^~306~^342.^0^^~1~^^^^^^^^^^^~05/01/1990~
-~13392~^~307~^64.^0^^~1~^^^^^^^^^^^~05/01/1990~
-~13392~^~318~^0.^0^^~1~^^^^^^^^^^^~05/01/1990~
-~13392~^~319~^0.^0^^~1~^^^^^^^^^^^~06/01/2002~
-~13392~^~320~^0.^0^^~1~^^^^^^^^^^^~06/01/2002~
-~13392~^~417~^7.^0^^~1~^^^^^^^^^^^~05/01/1990~
-~13392~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~
-~13392~^~432~^7.^0^^~1~^^^^^^^^^^^~05/01/1990~
-~13392~^~435~^7.^0^^~4~^~NC~^^^^^^^^^^~01/01/2001~
-~13392~^~601~^83.^0^^~1~^^^^^^^^^^^~05/01/1990~
-~13393~^~208~^285.^0^^~4~^~NC~^^^^^^^^^^~05/01/1990~
-~13393~^~268~^1192.^0^^~4~^^^^^^^^^^^
-~13393~^~301~^13.^0^^~1~^^^^^^^^^^^~05/01/1990~
-~13393~^~304~^23.^0^^~1~^^^^^^^^^^^~05/01/1990~
-~13393~^~305~^184.^0^^~1~^^^^^^^^^^^~05/01/1990~
-~13393~^~306~^344.^0^^~1~^^^^^^^^^^^~05/01/1990~
-~13393~^~307~^64.^0^^~1~^^^^^^^^^^^~05/01/1990~
-~13393~^~318~^0.^0^^~1~^^^^^^^^^^^~05/01/1990~
-~13393~^~319~^0.^0^^~1~^^^^^^^^^^^~06/01/2002~
-~13393~^~320~^0.^0^^~1~^^^^^^^^^^^~06/01/2002~
-~13393~^~417~^7.^0^^~1~^^^^^^^^^^^~05/01/1990~
-~13393~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~
-~13393~^~432~^7.^0^^~1~^^^^^^^^^^^~05/01/1990~
-~13393~^~435~^7.^0^^~4~^~NC~^^^^^^^^^^~01/01/2001~
-~13393~^~601~^83.^0^^~1~^^^^^^^^^^^~05/01/1990~
-~13394~^~208~^193.^0^^~4~^~NC~^^^^^^^^^^~07/01/2010~
-~13394~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~
-~13394~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~
-~13394~^~268~^809.^0^^~4~^~NC~^^^^^^^^^^~07/01/2010~
-~13394~^~301~^19.^0^^~4~^~BFNN~^^^^^^^^^^~08/01/2003~
-~13394~^~304~^25.^0^^~4~^~BFNN~^^^^^^^^^^~08/01/2003~
-~13394~^~305~^233.^0^^~4~^~BFNN~^^^^^^^^^^~08/01/2003~
-~13394~^~306~^376.^0^^~4~^~BFNN~^^^^^^^^^^~08/01/2003~
-~13394~^~307~^61.^0^^~4~^~BFNN~^^^^^^^^^^~08/01/2003~
-~13394~^~318~^0.^0^^~1~^~AS~^^^^^^^^^^~08/01/2003~
-~13394~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~08/01/2003~
-~13394~^~320~^0.^0^^~1~^~AS~^^^^^^^^^^~08/01/2003~
-~13394~^~321~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~
-~13394~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~
-~13394~^~324~^5.^0^^~4~^~BFFN~^^^^^^^^^^~07/01/2009~
-~13394~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~
-~13394~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~
-~13394~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~
-~13394~^~417~^10.^0^^~4~^~BFPN~^^^^^^^^^^~08/01/2003~
-~13394~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~
-~13394~^~432~^10.^0^^~4~^~BFPN~^^^^^^^^^^~07/01/2010~
-~13394~^~435~^10.^0^^~4~^~NC~^^^^^^^^^^~07/01/2010~
-~13394~^~601~^91.^0^^~4~^~BFSN~^~13982~^^^^^^^^^~07/01/2010~
-~13395~^~208~^225.^0^^~4~^~NC~^^^^^^^^^^~05/01/1990~
-~13395~^~268~^941.^0^^~4~^^^^^^^^^^^
-~13395~^~301~^13.^0^^~1~^^^^^^^^^^^~05/01/1990~
-~13395~^~304~^27.^0^^~1~^^^^^^^^^^^~05/01/1990~
-~13395~^~305~^208.^0^^~1~^^^^^^^^^^^~05/01/1990~
-~13395~^~306~^394.^0^^~1~^^^^^^^^^^^~05/01/1990~
-~13395~^~307~^69.^0^^~1~^^^^^^^^^^^~05/01/1990~
-~13395~^~318~^0.^0^^~1~^^^^^^^^^^^~05/01/1990~
-~13395~^~319~^0.^0^^~1~^^^^^^^^^^^~06/01/2002~
-~13395~^~320~^0.^0^^~1~^^^^^^^^^^^~06/01/2002~
-~13395~^~417~^8.^0^^~1~^^^^^^^^^^^~05/01/1990~
-~13395~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~
-~13395~^~432~^8.^0^^~1~^^^^^^^^^^^~05/01/1990~
-~13395~^~435~^8.^0^^~4~^~NC~^^^^^^^^^^~07/01/2002~
-~13395~^~601~^80.^0^^~1~^^^^^^^^^^^~05/01/1990~
-~13396~^~208~^198.^0^^~4~^~NC~^^^^^^^^^^~05/01/1990~
-~13396~^~268~^828.^0^^~4~^^^^^^^^^^^
-~13396~^~301~^13.^0^^~1~^^^^^^^^^^^~05/01/1990~
-~13396~^~304~^27.^0^^~1~^^^^^^^^^^^~05/01/1990~
-~13396~^~305~^208.^0^^~1~^^^^^^^^^^^~05/01/1990~
-~13396~^~306~^394.^0^^~1~^^^^^^^^^^^~05/01/1990~
-~13396~^~307~^69.^0^^~1~^^^^^^^^^^^~05/01/1990~
-~13396~^~318~^0.^0^^~1~^^^^^^^^^^^~05/01/1990~
-~13396~^~319~^0.^0^^~1~^^^^^^^^^^^~06/01/2002~
-~13396~^~320~^0.^0^^~1~^^^^^^^^^^^~06/01/2002~
-~13396~^~417~^8.^0^^~1~^^^^^^^^^^^~05/01/1990~
-~13396~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~
-~13396~^~432~^8.^0^^~1~^^^^^^^^^^^~05/01/1990~
-~13396~^~435~^8.^0^^~4~^~NC~^^^^^^^^^^~07/01/2002~
-~13396~^~601~^80.^0^^~1~^^^^^^^^^^^~05/01/1990~
-~13398~^~208~^223.^0^^~4~^~NC~^^^^^^^^^^~07/01/2010~
-~13398~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~
-~13398~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~
-~13398~^~268~^934.^0^^~4~^~NC~^^^^^^^^^^~07/01/2010~
-~13398~^~301~^8.^0^^~4~^~BFFN~^^^^^^^^^^~08/01/2003~
-~13398~^~304~^22.^0^^~4~^~BFFN~^^^^^^^^^^~08/01/2003~
-~13398~^~305~^208.^0^^~4~^~BFFN~^^^^^^^^^^~08/01/2003~
-~13398~^~306~^271.^0^^~4~^~BFFN~^^^^^^^^^^~08/01/2003~
-~13398~^~307~^44.^0^^~4~^~BFFN~^^^^^^^^^^~08/01/2003~
-~13398~^~318~^0.^0^^~1~^~AS~^^^^^^^^^^~08/01/2003~
-~13398~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~08/01/2003~
-~13398~^~320~^0.^0^^~1~^~AS~^^^^^^^^^^~08/01/2003~
-~13398~^~321~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~
-~13398~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~
-~13398~^~324~^6.^0^^~1~^~PAK~^^^^^^^^^^~07/01/2009~
-~13398~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~
-~13398~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~
-~13398~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~
-~13398~^~417~^10.^0^^~4~^~BFPN~^^^^^^^^^^~08/01/2003~
-~13398~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~
-~13398~^~432~^10.^0^^~4~^~BFPN~^^^^^^^^^^~07/01/2010~
-~13398~^~435~^10.^0^^~4~^~NC~^^^^^^^^^^~07/01/2010~
-~13398~^~601~^95.^0^^~4~^~BFSN~^^^^^^^^^^~07/01/2010~
-~13399~^~208~^187.^0^^~4~^~NC~^^^^^^^^^^~07/01/2010~
-~13399~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2003~
-~13399~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2003~
-~13399~^~268~^781.^0^^~4~^~NC~^^^^^^^^^^~07/01/2010~
-~13399~^~301~^7.^0^^~4~^~BFFN~^^^^^^^^^^~05/01/2003~
-~13399~^~304~^18.^0^^~4~^~BFFN~^^^^^^^^^^~05/01/2003~
-~13399~^~305~^171.^0^^~4~^~BFFN~^^^^^^^^^^~05/01/2003~
-~13399~^~306~^223.^0^^~4~^~BFFN~^^^^^^^^^^~05/01/2003~
-~13399~^~307~^36.^0^^~4~^~BFFN~^^^^^^^^^^~05/01/2003~
-~13399~^~318~^0.^0^^~1~^~AS~^^^^^^^^^^~05/01/2003~
-~13399~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2003~
-~13399~^~320~^0.^0^^~1~^~AS~^^^^^^^^^^~05/01/2003~
-~13399~^~321~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2003~
-~13399~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2003~
-~13399~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2003~
-~13399~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2003~
-~13399~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2003~
-~13399~^~417~^9.^0^^~4~^~BFPN~^^^^^^^^^^~05/01/2003~
-~13399~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~
-~13399~^~432~^9.^0^^~4~^~BFPN~^^^^^^^^^^~07/01/2010~
-~13399~^~435~^9.^0^^~4~^~NC~^^^^^^^^^^~07/01/2010~
-~13399~^~601~^79.^0^^~4~^~BFSN~^^^^^^^^^^~07/01/2010~
-~13401~^~208~^230.^0^^~4~^~NC~^^^^^^^^^^~07/01/2010~
-~13401~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2003~
-~13401~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2003~
-~13401~^~268~^962.^0^^~4~^~NC~^^^^^^^^^^~07/01/2010~
-~13401~^~301~^7.^0^^~4~^~BFFN~^^^^^^^^^^~05/01/2003~
-~13401~^~304~^21.^0^^~4~^~BFFN~^^^^^^^^^^~05/01/2003~
-~13401~^~305~^199.^0^^~4~^~BFFN~^^^^^^^^^^~05/01/2003~
-~13401~^~306~^264.^0^^~4~^~BFFN~^^^^^^^^^^~05/01/2003~
-~13401~^~307~^42.^0^^~4~^~BFFN~^^^^^^^^^^~05/01/2003~
-~13401~^~318~^0.^0^^~1~^~AS~^^^^^^^^^^~05/01/2003~
-~13401~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2003~
-~13401~^~320~^0.^0^^~1~^~AS~^^^^^^^^^^~05/01/2003~
-~13401~^~321~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2003~
-~13401~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2003~
-~13401~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2003~
-~13401~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2003~
-~13401~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2003~
-~13401~^~417~^10.^0^^~4~^~BFPN~^^^^^^^^^^~05/01/2003~
-~13401~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~
-~13401~^~432~^10.^0^^~4~^~BFPN~^^^^^^^^^^~07/01/2010~
-~13401~^~435~^10.^0^^~4~^~NC~^^^^^^^^^^~07/01/2010~
-~13401~^~601~^96.^0^^~4~^~BFSN~^^^^^^^^^^~07/01/2010~
-~13402~^~208~^199.^0^^~4~^~NC~^^^^^^^^^^~07/01/2010~
-~13402~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2003~
-~13402~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2003~
-~13402~^~268~^832.^0^^~4~^~NC~^^^^^^^^^^~07/01/2010~
-~13402~^~301~^6.^0^^~4~^~BFFN~^^^^^^^^^^~05/01/2003~
-~13402~^~304~^17.^0^^~4~^~BFFN~^^^^^^^^^^~05/01/2003~
-~13402~^~305~^162.^0^^~4~^~BFFN~^^^^^^^^^^~05/01/2003~
-~13402~^~306~^215.^0^^~4~^~BFFN~^^^^^^^^^^~05/01/2003~
-~13402~^~307~^35.^0^^~4~^~BFFN~^^^^^^^^^^~05/01/2003~
-~13402~^~318~^0.^0^^~1~^~AS~^^^^^^^^^^~05/01/2003~
-~13402~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2003~
-~13402~^~320~^0.^0^^~1~^~AS~^^^^^^^^^^~05/01/2003~
-~13402~^~321~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2003~
-~13402~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2003~
-~13402~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2003~
-~13402~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2003~
-~13402~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2003~
-~13402~^~417~^8.^0^^~4~^~BFPN~^^^^^^^^^^~05/01/2003~
-~13402~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~
-~13402~^~432~^8.^0^^~4~^~BFPN~^^^^^^^^^^~07/01/2010~
-~13402~^~435~^8.^0^^~4~^~NC~^^^^^^^^^^~07/01/2010~
-~13402~^~601~^81.^0^^~4~^~BFSN~^^^^^^^^^^~07/01/2010~
-~13404~^~208~^217.^0^^~4~^~NC~^^^^^^^^^^~07/01/2010~
-~13404~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2003~
-~13404~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2003~
-~13404~^~268~^906.^0^^~4~^~NC~^^^^^^^^^^~07/01/2010~
-~13404~^~301~^9.^0^^~4~^~BFFN~^^^^^^^^^^~05/01/2003~
-~13404~^~304~^22.^0^^~4~^~BFFN~^^^^^^^^^^~05/01/2003~
-~13404~^~305~^216.^0^^~4~^~BFFN~^^^^^^^^^^~05/01/2003~
-~13404~^~306~^279.^0^^~4~^~BFFN~^^^^^^^^^^~05/01/2003~
-~13404~^~307~^45.^0^^~4~^~BFFN~^^^^^^^^^^~05/01/2003~
-~13404~^~318~^0.^0^^~1~^~AS~^^^^^^^^^^~05/01/2003~
-~13404~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2003~
-~13404~^~320~^0.^0^^~1~^~AS~^^^^^^^^^^~05/01/2003~
-~13404~^~321~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2003~
-~13404~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2003~
-~13404~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2003~
-~13404~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2003~
-~13404~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2003~
-~13404~^~417~^11.^0^^~4~^~BFPN~^^^^^^^^^^~05/01/2003~
-~13404~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~
-~13404~^~432~^11.^0^^~4~^~BFPN~^^^^^^^^^^~07/01/2010~
-~13404~^~435~^11.^0^^~4~^~NC~^^^^^^^^^^~07/01/2010~
-~13404~^~601~^93.^0^^~4~^~BFSN~^^^^^^^^^^~07/01/2010~
-~13405~^~208~^175.^0^^~4~^~NC~^^^^^^^^^^~07/01/2010~
-~13405~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2003~
-~13405~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2003~
-~13405~^~268~^731.^0^^~4~^~NC~^^^^^^^^^^~07/01/2010~
-~13405~^~301~^7.^0^^~4~^~BFFN~^^^^^^^^^^~05/01/2003~
-~13405~^~304~^19.^0^^~4~^~BFFN~^^^^^^^^^^~05/01/2003~
-~13405~^~305~^179.^0^^~4~^~BFFN~^^^^^^^^^^~05/01/2003~
-~13405~^~306~^232.^0^^~4~^~BFFN~^^^^^^^^^^~05/01/2003~
-~13405~^~307~^37.^0^^~4~^~BFFN~^^^^^^^^^^~05/01/2003~
-~13405~^~318~^0.^0^^~1~^~AS~^^^^^^^^^^~05/01/2003~
-~13405~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2003~
-~13405~^~320~^0.^0^^~1~^~AS~^^^^^^^^^^~05/01/2003~
-~13405~^~321~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2003~
-~13405~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2003~
-~13405~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2003~
-~13405~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2003~
-~13405~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2003~
-~13405~^~417~^9.^0^^~4~^~BFPN~^^^^^^^^^^~05/01/2003~
-~13405~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~
-~13405~^~432~^9.^0^^~4~^~BFPN~^^^^^^^^^^~07/01/2010~
-~13405~^~435~^9.^0^^~4~^~NC~^^^^^^^^^^~07/01/2010~
-~13405~^~601~^77.^0^^~4~^~BFSN~^^^^^^^^^^~07/01/2010~
-~13407~^~208~^214.^0^^~4~^~NC~^^^^^^^^^^~07/01/2010~
-~13407~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~10/01/2002~
-~13407~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~10/01/2002~
-~13407~^~268~^897.^0^^~4~^~NC~^^^^^^^^^^~07/01/2010~
-~13407~^~301~^7.^0^^~4~^~BFNN~^^^^^^^^^^~08/01/2003~
-~13407~^~304~^23.^0^^~4~^~BFNN~^^^^^^^^^^~08/01/2003~
-~13407~^~305~^214.^0^^~4~^~BFNN~^^^^^^^^^^~08/01/2003~
-~13407~^~306~^278.^0^^~4~^~BFNN~^^^^^^^^^^~08/01/2003~
-~13407~^~307~^44.^0^^~4~^~BFNN~^^^^^^^^^^~08/01/2003~
-~13407~^~318~^0.^0^^~1~^~AS~^^^^^^^^^^~08/01/2003~
-~13407~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~08/01/2003~
-~13407~^~320~^0.^0^^~1~^~AS~^^^^^^^^^^~08/01/2003~
-~13407~^~321~^0.^0^^~7~^~Z~^^^^^^^^^^~10/01/2002~
-~13407~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~10/01/2002~
-~13407~^~324~^5.^0^^~4~^~BFFN~^^^^^^^^^^~07/01/2009~
-~13407~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~10/01/2002~
-~13407~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~10/01/2002~
-~13407~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~10/01/2002~
-~13407~^~417~^11.^0^^~4~^~BFPN~^^^^^^^^^^~08/01/2003~
-~13407~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~
-~13407~^~432~^11.^0^^~4~^~BFPN~^^^^^^^^^^~07/01/2010~
-~13407~^~435~^11.^0^^~4~^~NC~^^^^^^^^^^~07/01/2010~
-~13407~^~601~^93.^0^^~4~^~BFSN~^^^^^^^^^^~07/01/2010~
-~13408~^~208~^177.^0^^~4~^~NC~^^^^^^^^^^~07/01/2010~
-~13408~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2003~
-~13408~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2003~
-~13408~^~268~^740.^0^^~4~^~NC~^^^^^^^^^^~07/01/2010~
-~13408~^~301~^6.^0^^~4~^~BFNN~^^^^^^^^^^~05/01/2003~
-~13408~^~304~^19.^0^^~4~^~BFNN~^^^^^^^^^^~05/01/2003~
-~13408~^~305~^176.^0^^~4~^~BFNN~^^^^^^^^^^~05/01/2003~
-~13408~^~306~^228.^0^^~4~^~BFNN~^^^^^^^^^^~05/01/2003~
-~13408~^~307~^36.^0^^~4~^~BFNN~^^^^^^^^^^~05/01/2003~
-~13408~^~318~^0.^0^^~1~^~AS~^^^^^^^^^^~05/01/2003~
-~13408~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2003~
-~13408~^~320~^0.^0^^~1~^~AS~^^^^^^^^^^~05/01/2003~
-~13408~^~321~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2003~
-~13408~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2003~
-~13408~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2003~
-~13408~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2003~
-~13408~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2003~
-~13408~^~417~^9.^0^^~4~^~BFPN~^^^^^^^^^^~05/01/2003~
-~13408~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~
-~13408~^~432~^9.^0^^~4~^~BFPN~^^^^^^^^^^~07/01/2010~
-~13408~^~435~^9.^0^^~4~^~NC~^^^^^^^^^^~07/01/2010~
-~13408~^~601~^77.^0^^~4~^~BFSN~^^^^^^^^^^~07/01/2010~
-~13410~^~208~^223.^0^^~4~^~NC~^^^^^^^^^^~07/01/2010~
-~13410~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2003~
-~13410~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2003~
-~13410~^~268~^932.^0^^~4~^~NC~^^^^^^^^^^~07/01/2010~
-~13410~^~301~^7.^0^^~4~^~BFNN~^^^^^^^^^^~05/01/2003~
-~13410~^~304~^22.^0^^~4~^~BFNN~^^^^^^^^^^~05/01/2003~
-~13410~^~305~^209.^0^^~4~^~BFNN~^^^^^^^^^^~05/01/2003~
-~13410~^~306~^271.^0^^~4~^~BFNN~^^^^^^^^^^~05/01/2003~
-~13410~^~307~^43.^0^^~4~^~BFNN~^^^^^^^^^^~05/01/2003~
-~13410~^~318~^0.^0^^~1~^~AS~^^^^^^^^^^~05/01/2003~
-~13410~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2003~
-~13410~^~320~^0.^0^^~1~^~AS~^^^^^^^^^^~05/01/2003~
-~13410~^~321~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2003~
-~13410~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2003~
-~13410~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2003~
-~13410~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2003~
-~13410~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2003~
-~13410~^~417~^11.^0^^~4~^~BFPN~^^^^^^^^^^~05/01/2003~
-~13410~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~
-~13410~^~432~^11.^0^^~4~^~BFPN~^^^^^^^^^^~07/01/2010~
-~13410~^~435~^11.^0^^~4~^~NC~^^^^^^^^^^~07/01/2010~
-~13410~^~601~^95.^0^^~4~^~BFSN~^^^^^^^^^^~07/01/2010~
-~13411~^~208~^185.^0^^~4~^~NC~^^^^^^^^^^~09/01/2010~
-~13411~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2003~
-~13411~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2003~
-~13411~^~268~^774.^0^^~4~^~NC~^^^^^^^^^^~09/01/2010~
-~13411~^~301~^6.^0^^~4~^~BFNN~^^^^^^^^^^~05/01/2003~
-~13411~^~304~^18.^0^^~4~^~BFNN~^^^^^^^^^^~05/01/2003~
-~13411~^~305~^172.^0^^~4~^~BFNN~^^^^^^^^^^~05/01/2003~
-~13411~^~306~^222.^0^^~4~^~BFNN~^^^^^^^^^^~05/01/2003~
-~13411~^~307~^36.^0^^~4~^~BFNN~^^^^^^^^^^~05/01/2003~
-~13411~^~318~^0.^0^^~1~^~AS~^^^^^^^^^^~05/01/2003~
-~13411~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2003~
-~13411~^~320~^0.^0^^~1~^~AS~^^^^^^^^^^~05/01/2003~
-~13411~^~321~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2003~
-~13411~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2003~
-~13411~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2003~
-~13411~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2003~
-~13411~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2003~
-~13411~^~417~^9.^0^^~4~^~BFPN~^^^^^^^^^^~05/01/2003~
-~13411~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~
-~13411~^~432~^9.^0^^~4~^~BFPN~^^^^^^^^^^~07/01/2010~
-~13411~^~435~^9.^0^^~4~^~NC~^^^^^^^^^^~07/01/2010~
-~13411~^~601~^78.^0^^~4~^~BFSN~^^^^^^^^^^~07/01/2010~
-~13413~^~208~^206.^0^^~4~^~NC~^^^^^^^^^^~07/01/2010~
-~13413~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2003~
-~13413~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2003~
-~13413~^~268~^862.^0^^~4~^~NC~^^^^^^^^^^~07/01/2010~
-~13413~^~301~^7.^0^^~4~^~BFNN~^^^^^^^^^^~05/01/2003~
-~13413~^~304~^23.^0^^~4~^~BFNN~^^^^^^^^^^~05/01/2003~
-~13413~^~305~^222.^0^^~4~^~BFNN~^^^^^^^^^^~05/01/2003~
-~13413~^~306~^289.^0^^~4~^~BFNN~^^^^^^^^^^~05/01/2003~
-~13413~^~307~^46.^0^^~4~^~BFNN~^^^^^^^^^^~05/01/2003~
-~13413~^~318~^0.^0^^~1~^~AS~^^^^^^^^^^~05/01/2003~
-~13413~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2003~
-~13413~^~320~^0.^0^^~1~^~AS~^^^^^^^^^^~05/01/2003~
-~13413~^~321~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2003~
-~13413~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2003~
-~13413~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2003~
-~13413~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2003~
-~13413~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2003~
-~13413~^~417~^12.^0^^~4~^~BFPN~^^^^^^^^^^~05/01/2003~
-~13413~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~
-~13413~^~432~^12.^0^^~4~^~BFPN~^^^^^^^^^^~07/01/2010~
-~13413~^~435~^12.^0^^~4~^~NC~^^^^^^^^^^~07/01/2010~
-~13413~^~601~^91.^0^^~4~^~BFSN~^^^^^^^^^^~07/01/2010~
-~13414~^~208~^169.^0^^~4~^~NC~^^^^^^^^^^~07/01/2010~
-~13414~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2003~
-~13414~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2003~
-~13414~^~268~^707.^0^^~4~^~NC~^^^^^^^^^^~07/01/2010~
-~13414~^~301~^6.^0^^~4~^~BFNN~^^^^^^^^^^~05/01/2003~
-~13414~^~304~^19.^0^^~4~^~BFNN~^^^^^^^^^^~05/01/2003~
-~13414~^~305~^183.^0^^~4~^~BFNN~^^^^^^^^^^~05/01/2003~
-~13414~^~306~^238.^0^^~4~^~BFNN~^^^^^^^^^^~05/01/2003~
-~13414~^~307~^38.^0^^~4~^~BFNN~^^^^^^^^^^~05/01/2003~
-~13414~^~318~^0.^0^^~1~^~AS~^^^^^^^^^^~05/01/2003~
-~13414~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2003~
-~13414~^~320~^0.^0^^~1~^~AS~^^^^^^^^^^~05/01/2003~
-~13414~^~321~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2003~
-~13414~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2003~
-~13414~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2003~
-~13414~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2003~
-~13414~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2003~
-~13414~^~417~^9.^0^^~4~^~BFPN~^^^^^^^^^^~05/01/2003~
-~13414~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~
-~13414~^~432~^9.^0^^~4~^~BFPN~^^^^^^^^^^~07/01/2010~
-~13414~^~435~^9.^0^^~4~^~NC~^^^^^^^^^^~07/01/2010~
-~13414~^~601~^76.^0^^~4~^~BFSN~^^^^^^^^^^~07/01/2010~
-~13415~^~208~^167.^0^^~4~^~NC~^^^^^^^^^^~06/01/2013~
-~13415~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~
-~13415~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~
-~13415~^~268~^698.^0^^~4~^~NC~^^^^^^^^^^~06/01/2013~
-~13415~^~301~^16.^0^^~4~^~BFYN~^~23330~^^^^^^^^^~04/01/2013~
-~13415~^~304~^15.^0^^~4~^~BFYN~^~23330~^^^^^^^^^~04/01/2013~
-~13415~^~305~^279.^0^^~4~^~BFYN~^~23330~^^^^^^^^^~04/01/2013~
-~13415~^~306~^401.^0^^~4~^~BFYN~^~23330~^^^^^^^^^~04/01/2013~
-~13415~^~307~^67.^0^^~4~^~BFYN~^~23330~^^^^^^^^^~04/01/2013~
-~13415~^~318~^14.^0^^~4~^~BFYN~^~23330~^^^^^^^^^~04/01/2013~
-~13415~^~319~^4.^0^^~4~^~BFYN~^~23330~^^^^^^^^^~04/01/2013~
-~13415~^~320~^4.^0^^~4~^~BFYN~^~23330~^^^^^^^^^~04/01/2013~
-~13415~^~321~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~
-~13415~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~
-~13415~^~324~^1.^0^^~4~^~BFFN~^~23197~^^^^^^^^^~06/01/2013~
-~13415~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~
-~13415~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~
-~13415~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~
-~13415~^~417~^5.^0^^~4~^~BFYN~^~23330~^^^^^^^^^~04/01/2013~
-~13415~^~431~^0.^0^^~4~^~BFYN~^~23330~^^^^^^^^^~04/01/2013~
-~13415~^~432~^5.^0^^~4~^~BFYN~^~23330~^^^^^^^^^~04/01/2013~
-~13415~^~435~^5.^0^^~4~^~NC~^~23330~^^^^^^^^^~04/01/2013~
-~13415~^~601~^76.^0^^~4~^~BFYN~^~23330~^^^^^^^^^~07/01/2010~
-~13416~^~208~^171.^0^^~4~^~NC~^^^^^^^^^^~06/01/2013~
-~13416~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2003~
-~13416~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2003~
-~13416~^~268~^715.^0^^~4~^~NC~^^^^^^^^^^~06/01/2013~
-~13416~^~301~^16.^0^^~4~^~BFYN~^~23331~^^^^^^^^^~04/01/2013~
-~13416~^~304~^15.^0^^~4~^~BFYN~^~23331~^^^^^^^^^~04/01/2013~
-~13416~^~305~^279.^0^^~4~^~BFYN~^~23331~^^^^^^^^^~04/01/2013~
-~13416~^~306~^408.^0^^~4~^~BFYN~^~23331~^^^^^^^^^~04/01/2013~
-~13416~^~307~^66.^0^^~4~^~BFYN~^~23331~^^^^^^^^^~04/01/2013~
-~13416~^~318~^13.^0^^~4~^~BFYN~^~23331~^^^^^^^^^~04/01/2013~
-~13416~^~319~^4.^0^^~4~^~BFYN~^~23331~^^^^^^^^^~04/01/2013~
-~13416~^~320~^4.^0^^~4~^~BFYN~^~23331~^^^^^^^^^~04/01/2013~
-~13416~^~321~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2003~
-~13416~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2003~
-~13416~^~324~^1.^0^^~4~^~BFFN~^~23195~^^^^^^^^^~06/01/2013~
-~13416~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2003~
-~13416~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2003~
-~13416~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2003~
-~13416~^~417~^5.^0^^~4~^~BFYN~^~23331~^^^^^^^^^~04/01/2013~
-~13416~^~431~^0.^0^^~4~^~BFYN~^~23331~^^^^^^^^^~04/01/2013~
-~13416~^~432~^5.^0^^~4~^~BFYN~^~23331~^^^^^^^^^~04/01/2013~
-~13416~^~435~^5.^0^^~4~^~NC~^~23331~^^^^^^^^^~04/01/2013~
-~13416~^~601~^74.^0^^~4~^~BFYN~^~23331~^^^^^^^^^~04/01/2013~
-~13417~^~208~^162.^0^^~4~^~NC~^^^^^^^^^^~06/01/2013~
-~13417~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2003~
-~13417~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2003~
-~13417~^~268~^676.^0^^~4~^~NC~^^^^^^^^^^~06/01/2013~
-~13417~^~301~^16.^0^^~4~^~BFYN~^~23332~^^^^^^^^^~05/01/2013~
-~13417~^~304~^14.^0^^~4~^~BFYN~^~23332~^^^^^^^^^~05/01/2013~
-~13417~^~305~^280.^0^^~4~^~BFYN~^~23332~^^^^^^^^^~05/01/2013~
-~13417~^~306~^392.^0^^~4~^~BFYN~^~23332~^^^^^^^^^~05/01/2013~
-~13417~^~307~^63.^0^^~4~^~BFYN~^~23332~^^^^^^^^^~05/01/2013~
-~13417~^~318~^21.^0^^~4~^~BFYN~^~23332~^^^^^^^^^~05/01/2013~
-~13417~^~319~^6.^0^^~4~^~BFYN~^~23332~^^^^^^^^^~05/01/2013~
-~13417~^~320~^6.^0^^~4~^~BFYN~^~23332~^^^^^^^^^~05/01/2013~
-~13417~^~321~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2003~
-~13417~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2003~
-~13417~^~324~^1.^0^^~4~^~BFFN~^~23196~^^^^^^^^^~06/01/2013~
-~13417~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2003~
-~13417~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2003~
-~13417~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2003~
-~13417~^~417~^5.^0^^~4~^~BFYN~^~23332~^^^^^^^^^~05/01/2013~
-~13417~^~431~^0.^0^^~4~^~BFYN~^~23332~^^^^^^^^^~05/01/2013~
-~13417~^~432~^5.^0^^~4~^~BFYN~^~23332~^^^^^^^^^~05/01/2013~
-~13417~^~435~^5.^0^^~4~^~NC~^~23332~^^^^^^^^^~05/01/2013~
-~13417~^~601~^79.^0^^~4~^~BFYN~^~23332~^^^^^^^^^~05/01/2013~
-~13418~^~208~^163.^0^^~4~^~NC~^^^^^^^^^^~06/01/2013~
-~13418~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~10/01/2002~
-~13418~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~10/01/2002~
-~13418~^~268~^680.^0^^~4~^~NC~^^^^^^^^^^~06/01/2013~
-~13418~^~301~^16.^0^^~4~^~BFYN~^~23360~^^^^^^^^^~05/01/2013~
-~13418~^~304~^15.^0^^~4~^~BFYN~^~23360~^^^^^^^^^~05/01/2013~
-~13418~^~305~^281.^0^^~4~^~BFYN~^~23360~^^^^^^^^^~05/01/2013~
-~13418~^~306~^404.^0^^~4~^~BFYN~^~23360~^^^^^^^^^~05/01/2013~
-~13418~^~307~^67.^0^^~4~^~BFYN~^~23360~^^^^^^^^^~05/01/2013~
-~13418~^~318~^5.^0^^~4~^~BFYN~^~23360~^^^^^^^^^~05/01/2013~
-~13418~^~319~^1.^0^^~4~^~BFYN~^~23360~^^^^^^^^^~05/01/2013~
-~13418~^~320~^1.^0^^~4~^~BFYN~^~23360~^^^^^^^^^~05/01/2013~
-~13418~^~321~^0.^0^^~7~^~Z~^^^^^^^^^^~10/01/2002~
-~13418~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~10/01/2002~
-~13418~^~324~^1.^0^^~4~^~BFFN~^~23100~^^^^^^^^^~06/01/2013~
-~13418~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~10/01/2002~
-~13418~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~10/01/2002~
-~13418~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~10/01/2002~
-~13418~^~417~^5.^0^^~4~^~BFYN~^~23360~^^^^^^^^^~05/01/2013~
-~13418~^~431~^0.^0^^~4~^~BFYN~^~23360~^^^^^^^^^~05/01/2013~
-~13418~^~432~^5.^0^^~4~^~BFYN~^~23360~^^^^^^^^^~05/01/2013~
-~13418~^~435~^5.^0^^~4~^~NC~^~23360~^^^^^^^^^~05/01/2013~
-~13418~^~601~^76.^0^^~4~^~BFYN~^~23360~^^^^^^^^^~05/01/2013~
-~13419~^~208~^166.^0^^~4~^~NC~^^^^^^^^^^~06/01/2013~
-~13419~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2003~
-~13419~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2003~
-~13419~^~268~^696.^0^^~4~^~NC~^^^^^^^^^^~06/01/2013~
-~13419~^~301~^16.^0^^~4~^~BFYN~^~23361~^^^^^^^^^~05/01/2013~
-~13419~^~304~^15.^0^^~4~^~BFYN~^~23361~^^^^^^^^^~05/01/2013~
-~13419~^~305~^280.^0^^~4~^~BFYN~^~23361~^^^^^^^^^~05/01/2013~
-~13419~^~306~^411.^0^^~4~^~BFYN~^~23361~^^^^^^^^^~05/01/2013~
-~13419~^~307~^66.^0^^~4~^~BFYN~^~23361~^^^^^^^^^~05/01/2013~
-~13419~^~318~^7.^0^^~4~^~BFYN~^~23361~^^^^^^^^^~05/01/2013~
-~13419~^~319~^2.^0^^~4~^~BFYN~^~23361~^^^^^^^^^~05/01/2013~
-~13419~^~320~^2.^0^^~4~^~BFYN~^~23361~^^^^^^^^^~05/01/2013~
-~13419~^~321~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2003~
-~13419~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2003~
-~13419~^~324~^2.^0^^~4~^~BFFN~^~23148~^^^^^^^^^~05/01/2013~
-~13419~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2003~
-~13419~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2003~
-~13419~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2003~
-~13419~^~417~^5.^0^^~4~^~BFYN~^~23361~^^^^^^^^^~05/01/2013~
-~13419~^~431~^0.^0^^~4~^~BFYN~^~23361~^^^^^^^^^~05/01/2013~
-~13419~^~432~^5.^0^^~4~^~BFYN~^~23361~^^^^^^^^^~05/01/2013~
-~13419~^~435~^5.^0^^~4~^~NC~^~23361~^^^^^^^^^~05/01/2013~
-~13419~^~601~^74.^0^^~4~^~BFYN~^~23361~^^^^^^^^^~07/01/2010~
-~13420~^~208~^157.^0^^~4~^~NC~^^^^^^^^^^~06/01/2013~
-~13420~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2003~
-~13420~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2003~
-~13420~^~268~^657.^0^^~4~^~NC~^^^^^^^^^^~06/01/2013~
-~13420~^~301~^16.^0^^~4~^~BFYN~^~23362~^^^^^^^^^~05/01/2013~
-~13420~^~304~^14.^0^^~4~^~BFYN~^~23362~^^^^^^^^^~05/01/2013~
-~13420~^~305~^281.^0^^~4~^~BFYN~^~23362~^^^^^^^^^~05/01/2013~
-~13420~^~306~^394.^0^^~4~^~BFYN~^~23362~^^^^^^^^^~05/01/2013~
-~13420~^~307~^63.^0^^~4~^~BFYN~^~23362~^^^^^^^^^~05/01/2013~
-~13420~^~318~^9.^0^^~4~^~BFYN~^~23362~^^^^^^^^^~05/01/2013~
-~13420~^~319~^3.^0^^~4~^~BFYN~^~23362~^^^^^^^^^~05/01/2013~
-~13420~^~320~^3.^0^^~4~^~BFYN~^~23362~^^^^^^^^^~05/01/2013~
-~13420~^~321~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2003~
-~13420~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2003~
-~13420~^~324~^1.^0^^~4~^~BFFN~^~23149~^^^^^^^^^~06/01/2013~
-~13420~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2003~
-~13420~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2003~
-~13420~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2003~
-~13420~^~417~^5.^0^^~4~^~BFYN~^~23362~^^^^^^^^^~05/01/2013~
-~13420~^~431~^0.^0^^~4~^~BFYN~^~23362~^^^^^^^^^~05/01/2013~
-~13420~^~432~^5.^0^^~4~^~BFYN~^~23362~^^^^^^^^^~05/01/2013~
-~13420~^~435~^5.^0^^~4~^~NC~^~23362~^^^^^^^^^~05/01/2013~
-~13420~^~601~^79.^0^^~4~^~BFYN~^~23362~^^^^^^^^^~05/01/2013~
-~13421~^~208~^188.^0^^~4~^~NC~^^^^^^^^^^~07/01/2010~
-~13421~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~
-~13421~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~
-~13421~^~268~^788.^0^^~4~^~NC~^^^^^^^^^^~07/01/2010~
-~13421~^~301~^6.^0^^~4~^~BFFN~^^^^^^^^^^~08/01/2003~
-~13421~^~304~^17.^0^^~4~^~BFFN~^^^^^^^^^^~08/01/2003~
-~13421~^~305~^166.^0^^~4~^~BFFN~^^^^^^^^^^~08/01/2003~
-~13421~^~306~^217.^0^^~4~^~BFFN~^^^^^^^^^^~08/01/2003~
-~13421~^~307~^35.^0^^~4~^~BFFN~^^^^^^^^^^~08/01/2003~
-~13421~^~318~^0.^0^^~1~^~AS~^^^^^^^^^^~08/01/2003~
-~13421~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~08/01/2003~
-~13421~^~320~^0.^0^^~1~^~AS~^^^^^^^^^^~08/01/2003~
-~13421~^~321~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~
-~13421~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~
-~13421~^~324~^6.^0^^~1~^~PAK~^^^^^^^^^^~07/01/2009~
-~13421~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~
-~13421~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~
-~13421~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~
-~13421~^~417~^8.^0^^~4~^~BFPN~^^^^^^^^^^~08/01/2003~
-~13421~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~
-~13421~^~432~^8.^0^^~4~^~BFPN~^^^^^^^^^^~07/01/2010~
-~13421~^~435~^8.^0^^~4~^~NC~^^^^^^^^^^~07/01/2010~
-~13421~^~601~^78.^0^^~4~^~BFSN~^^^^^^^^^^~07/01/2010~
-~13422~^~208~^196.^0^^~4~^~NC~^^^^^^^^^^~07/01/2010~
-~13422~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2003~
-~13422~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2003~
-~13422~^~268~^818.^0^^~4~^~NC~^^^^^^^^^^~07/01/2010~
-~13422~^~301~^6.^0^^~4~^~BFFN~^^^^^^^^^^~05/01/2003~
-~13422~^~304~^17.^0^^~4~^~BFFN~^^^^^^^^^^~05/01/2003~
-~13422~^~305~^164.^0^^~4~^~BFFN~^^^^^^^^^^~05/01/2003~
-~13422~^~306~^216.^0^^~4~^~BFFN~^^^^^^^^^^~05/01/2003~
-~13422~^~307~^35.^0^^~4~^~BFFN~^^^^^^^^^^~05/01/2003~
-~13422~^~318~^0.^0^^~1~^~AS~^^^^^^^^^^~05/01/2003~
-~13422~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2003~
-~13422~^~320~^0.^0^^~1~^~AS~^^^^^^^^^^~05/01/2003~
-~13422~^~321~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2003~
-~13422~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2003~
-~13422~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2003~
-~13422~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2003~
-~13422~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2003~
-~13422~^~417~^8.^0^^~4~^~BFPN~^^^^^^^^^^~05/01/2003~
-~13422~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~
-~13422~^~432~^8.^0^^~4~^~BFPN~^^^^^^^^^^~07/01/2010~
-~13422~^~435~^8.^0^^~4~^~NC~^^^^^^^^^^~07/01/2010~
-~13422~^~601~^80.^0^^~4~^~BFSN~^^^^^^^^^^~07/01/2010~
-~13423~^~208~^181.^0^^~4~^~NC~^^^^^^^^^^~07/01/2010~
-~13423~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2003~
-~13423~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2003~
-~13423~^~268~^759.^0^^~4~^~NC~^^^^^^^^^^~07/01/2010~
-~13423~^~301~^7.^0^^~4~^~BFFN~^^^^^^^^^^~05/01/2003~
-~13423~^~304~^18.^0^^~4~^~BFFN~^^^^^^^^^^~05/01/2003~
-~13423~^~305~^169.^0^^~4~^~BFFN~^^^^^^^^^^~05/01/2003~
-~13423~^~306~^218.^0^^~4~^~BFFN~^^^^^^^^^^~05/01/2003~
-~13423~^~307~^35.^0^^~4~^~BFFN~^^^^^^^^^^~05/01/2003~
-~13423~^~318~^0.^0^^~1~^~AS~^^^^^^^^^^~05/01/2003~
-~13423~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2003~
-~13423~^~320~^0.^0^^~1~^~AS~^^^^^^^^^^~05/01/2003~
-~13423~^~321~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2003~
-~13423~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2003~
-~13423~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2003~
-~13423~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2003~
-~13423~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2003~
-~13423~^~417~^8.^0^^~4~^~BFPN~^^^^^^^^^^~05/01/2003~
-~13423~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~
-~13423~^~432~^8.^0^^~4~^~BFPN~^^^^^^^^^^~07/01/2010~
-~13423~^~435~^8.^0^^~4~^~NC~^^^^^^^^^^~07/01/2010~
-~13423~^~601~^76.^0^^~4~^~BFSN~^^^^^^^^^^~07/01/2010~
-~13424~^~208~^174.^0^^~4~^~NC~^^^^^^^^^^~07/01/2010~
-~13424~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~10/01/2002~
-~13424~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~10/01/2002~
-~13424~^~268~^726.^0^^~4~^~NC~^^^^^^^^^^~07/01/2010~
-~13424~^~301~^6.^0^^~4~^~BFNN~^^^^^^^^^^~08/01/2003~
-~13424~^~304~^18.^0^^~4~^~BFNN~^^^^^^^^^^~08/01/2003~
-~13424~^~305~^174.^0^^~4~^~BFNN~^^^^^^^^^^~08/01/2003~
-~13424~^~306~^226.^0^^~4~^~BFNN~^^^^^^^^^^~08/01/2003~
-~13424~^~307~^36.^0^^~4~^~BFNN~^^^^^^^^^^~08/01/2003~
-~13424~^~318~^0.^0^^~1~^~AS~^^^^^^^^^^~08/01/2003~
-~13424~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2003~
-~13424~^~320~^0.^0^^~1~^~AS~^^^^^^^^^^~06/01/2003~
-~13424~^~321~^0.^0^^~7~^~Z~^^^^^^^^^^~10/01/2002~
-~13424~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~10/01/2002~
-~13424~^~324~^4.^0^^~4~^~BFFN~^^^^^^^^^^~03/01/2009~
-~13424~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~10/01/2002~
-~13424~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~10/01/2002~
-~13424~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~10/01/2002~
-~13424~^~417~^9.^0^^~4~^~BFPN~^^^^^^^^^^~08/01/2003~
-~13424~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~
-~13424~^~432~^9.^0^^~4~^~BFPN~^^^^^^^^^^~07/01/2010~
-~13424~^~435~^9.^0^^~4~^~NC~^^^^^^^^^^~07/01/2010~
-~13424~^~601~^74.^0^^~4~^~BFSN~^^^^^^^^^^~07/01/2010~
-~13425~^~208~^176.^0^^~4~^~NC~^^^^^^^^^^~07/01/2010~
-~13425~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2003~
-~13425~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2003~
-~13425~^~268~^737.^0^^~4~^~NC~^^^^^^^^^^~07/01/2010~
-~13425~^~301~^6.^10^^~4~^~BFNN~^^^^^^^^^^~04/01/2003~
-~13425~^~304~^19.^0^^~4~^~BFNN~^^^^^^^^^^~04/01/2003~
-~13425~^~305~^174.^0^^~4~^~BFNN~^^^^^^^^^^~04/01/2003~
-~13425~^~306~^225.^0^^~4~^~BFNN~^^^^^^^^^^~04/01/2003~
-~13425~^~307~^36.^0^^~4~^~BFNN~^^^^^^^^^^~04/01/2003~
-~13425~^~318~^0.^0^^~1~^~AS~^^^^^^^^^^~04/01/2003~
-~13425~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2003~
-~13425~^~320~^0.^0^^~1~^~AS~^^^^^^^^^^~04/01/2003~
-~13425~^~321~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2003~
-~13425~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2003~
-~13425~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2003~
-~13425~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2003~
-~13425~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2003~
-~13425~^~417~^9.^0^^~4~^~BFPN~^^^^^^^^^^~04/01/2003~
-~13425~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~
-~13425~^~432~^9.^0^^~4~^~BFPN~^^^^^^^^^^~07/01/2010~
-~13425~^~435~^9.^0^^~4~^~NC~^^^^^^^^^^~07/01/2010~
-~13425~^~601~^76.^0^^~4~^~BFSN~^^^^^^^^^^~07/01/2010~
-~13426~^~208~^149.^0^^~4~^~NC~^^^^^^^^^^~07/01/2010~
-~13426~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2003~
-~13426~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2003~
-~13426~^~268~^623.^0^^~4~^~NC~^^^^^^^^^^~07/01/2010~
-~13426~^~301~^6.^0^^~4~^~BFNN~^^^^^^^^^^~04/01/2003~
-~13426~^~304~^18.^0^^~4~^~BFNN~^^^^^^^^^^~05/01/2003~
-~13426~^~305~^177.^0^^~4~^~BFNN~^^^^^^^^^^~05/01/2003~
-~13426~^~306~^230.^0^^~4~^~BFNN~^^^^^^^^^^~05/01/2003~
-~13426~^~307~^36.^0^^~4~^~BFNN~^^^^^^^^^^~05/01/2003~
-~13426~^~318~^0.^0^^~1~^~AS~^^^^^^^^^^~04/01/2003~
-~13426~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2003~
-~13426~^~320~^0.^0^^~1~^~AS~^^^^^^^^^^~04/01/2003~
-~13426~^~321~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2003~
-~13426~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2003~
-~13426~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2003~
-~13426~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2003~
-~13426~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2003~
-~13426~^~417~^9.^0^^~4~^~BFPN~^^^^^^^^^^~04/01/2003~
-~13426~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~
-~13426~^~432~^9.^0^^~4~^~BFPN~^^^^^^^^^^~07/01/2010~
-~13426~^~435~^9.^0^^~4~^~NC~^^^^^^^^^^~07/01/2010~
-~13426~^~601~^71.^0^^~4~^~BFSN~^^^^^^^^^^~07/01/2010~
-~13428~^~208~^209.^0^^~4~^~NC~^^^^^^^^^^~05/01/1990~
-~13428~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~
-~13428~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~
-~13428~^~268~^874.^0^^~4~^^^^^^^^^^^~07/01/2009~
-~13428~^~301~^4.^0^^~1~^^^^^^^^^^^~05/01/1990~
-~13428~^~304~^25.^0^^~1~^^^^^^^^^^^~05/01/1990~
-~13428~^~305~^223.^0^^~1~^^^^^^^^^^^~05/01/1990~
-~13428~^~306~^330.^0^^~1~^^^^^^^^^^^~05/01/1990~
-~13428~^~307~^45.^0^^~1~^^^^^^^^^^^~05/01/1990~
-~13428~^~318~^0.^0^^~1~^^^^^^^^^^^~05/01/1990~
-~13428~^~319~^0.^0^^~4~^~NR~^^^^^^^^^^~02/01/2003~
-~13428~^~320~^0.^0^^~4~^~NC~^^^^^^^^^^~07/01/2009~
-~13428~^~321~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~
-~13428~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~
-~13428~^~324~^4.^0^^~4~^~BFFN~^^^^^^^^^^~07/01/2009~
-~13428~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~
-~13428~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~
-~13428~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~
-~13428~^~417~^9.^0^^~1~^^^^^^^^^^^~05/01/1990~
-~13428~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~
-~13428~^~432~^9.^0^^~1~^^^^^^^^^^^~07/01/2009~
-~13428~^~435~^9.^0^^~4~^~NC~^^^^^^^^^^~07/01/2009~
-~13428~^~601~^90.^0^^~1~^^^^^^^^^^^~05/01/1990~
-~13430~^~208~^216.^0^^~4~^~NC~^^^^^^^^^^~05/01/1990~
-~13430~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2008~
-~13430~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2008~
-~13430~^~268~^904.^0^^~4~^^^^^^^^^^^~04/01/2008~
-~13430~^~301~^4.^0^^~1~^^^^^^^^^^^~05/01/1990~
-~13430~^~304~^25.^0^^~1~^^^^^^^^^^^~05/01/1990~
-~13430~^~305~^223.^0^^~1~^^^^^^^^^^^~05/01/1990~
-~13430~^~306~^330.^0^^~1~^^^^^^^^^^^~05/01/1990~
-~13430~^~307~^45.^0^^~1~^^^^^^^^^^^~05/01/1990~
-~13430~^~318~^0.^0^^~1~^^^^^^^^^^^~05/01/1990~
-~13430~^~320~^0.^0^^~1~^~AS~^^^^^^^^^^~04/01/2008~
-~13430~^~321~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2008~
-~13430~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2008~
-~13430~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2008~
-~13430~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2008~
-~13430~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2008~
-~13430~^~417~^9.^0^^~1~^^^^^^^^^^^~05/01/1990~
-~13430~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~
-~13430~^~432~^9.^0^^~1~^^^^^^^^^^^~04/01/2008~
-~13430~^~435~^9.^0^^~4~^~NC~^^^^^^^^^^~06/01/2008~
-~13430~^~601~^90.^0^^~1~^^^^^^^^^^^~05/01/1990~
-~13432~^~208~^200.^0^^~4~^~NC~^^^^^^^^^^~05/01/1990~
-~13432~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2008~
-~13432~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2008~
-~13432~^~268~^837.^0^^~4~^^^^^^^^^^^~04/01/2008~
-~13432~^~301~^4.^0^^~1~^^^^^^^^^^^~05/01/1990~
-~13432~^~304~^25.^0^^~1~^^^^^^^^^^^~05/01/1990~
-~13432~^~305~^223.^0^^~1~^^^^^^^^^^^~05/01/1990~
-~13432~^~306~^330.^0^^~1~^^^^^^^^^^^~05/01/1990~
-~13432~^~307~^45.^0^^~1~^^^^^^^^^^^~05/01/1990~
-~13432~^~318~^0.^0^^~1~^^^^^^^^^^^~05/01/1990~
-~13432~^~320~^0.^0^^~1~^~AS~^^^^^^^^^^~04/01/2008~
-~13432~^~321~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2008~
-~13432~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2008~
-~13432~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2008~
-~13432~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2008~
-~13432~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2008~
-~13432~^~417~^9.^0^^~1~^^^^^^^^^^^~05/01/1990~
-~13432~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~
-~13432~^~432~^9.^0^^~1~^^^^^^^^^^^~04/01/2008~
-~13432~^~435~^9.^0^^~4~^~NC~^^^^^^^^^^~06/01/2008~
-~13432~^~601~^90.^0^^~1~^^^^^^^^^^^~05/01/1990~
-~13436~^~208~^207.^0^^~4~^~NC~^^^^^^^^^^~05/01/1990~
-~13436~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2008~
-~13436~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2008~
-~13436~^~268~^866.^0^^~4~^^^^^^^^^^^~04/01/2008~
-~13436~^~301~^4.^0^^~1~^^^^^^^^^^^~05/01/1990~
-~13436~^~304~^26.^0^^~1~^^^^^^^^^^^~05/01/1990~
-~13436~^~305~^226.^0^^~1~^^^^^^^^^^^~05/01/1990~
-~13436~^~306~^334.^0^^~1~^^^^^^^^^^^~05/01/1990~
-~13436~^~307~^45.^0^^~1~^^^^^^^^^^^~05/01/1990~
-~13436~^~318~^0.^0^^~1~^^^^^^^^^^^~05/01/1990~
-~13436~^~320~^0.^0^^~1~^~AS~^^^^^^^^^^~04/01/2008~
-~13436~^~321~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2008~
-~13436~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2008~
-~13436~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2008~
-~13436~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2008~
-~13436~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2008~
-~13436~^~417~^9.^0^^~1~^^^^^^^^^^^~05/01/1990~
-~13436~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~
-~13436~^~432~^9.^0^^~1~^^^^^^^^^^^~04/01/2008~
-~13436~^~435~^9.^0^^~4~^~NC~^^^^^^^^^^~06/01/2008~
-~13436~^~601~^90.^0^^~1~^^^^^^^^^^^~05/01/1990~
-~13438~^~208~^190.^0^^~4~^~NC~^^^^^^^^^^~05/01/1990~
-~13438~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2008~
-~13438~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2008~
-~13438~^~268~^795.^0^^~4~^^^^^^^^^^^~04/01/2008~
-~13438~^~301~^4.^0^^~1~^^^^^^^^^^^~05/01/1990~
-~13438~^~304~^26.^0^^~1~^^^^^^^^^^^~05/01/1990~
-~13438~^~305~^226.^0^^~1~^^^^^^^^^^^~05/01/1990~
-~13438~^~306~^334.^0^^~1~^^^^^^^^^^^~05/01/1990~
-~13438~^~307~^45.^0^^~1~^^^^^^^^^^^~05/01/1990~
-~13438~^~318~^0.^0^^~1~^^^^^^^^^^^~05/01/1990~
-~13438~^~320~^0.^0^^~1~^~AS~^^^^^^^^^^~04/01/2008~
-~13438~^~321~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2008~
-~13438~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2008~
-~13438~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2008~
-~13438~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2008~
-~13438~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2008~
-~13438~^~417~^9.^0^^~1~^^^^^^^^^^^~05/01/1990~
-~13438~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~
-~13438~^~432~^9.^0^^~1~^^^^^^^^^^^~04/01/2008~
-~13438~^~435~^9.^0^^~4~^~NC~^^^^^^^^^^~06/01/2008~
-~13438~^~601~^90.^0^^~1~^^^^^^^^^^^~05/01/1990~
-~13439~^~208~^211.^0^^~4~^~NC~^^^^^^^^^^~03/01/2013~
-~13439~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~
-~13439~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~
-~13439~^~268~^881.^0^^~4~^~NC~^^^^^^^^^^~03/01/2013~
-~13439~^~301~^13.^0^^~4~^~BFNN~^^^^^^^^^^~03/01/2013~
-~13439~^~304~^18.^0^^~4~^~BFNN~^^^^^^^^^^~03/01/2013~
-~13439~^~305~^257.^0^^~4~^~BFNN~^^^^^^^^^^~03/01/2013~
-~13439~^~306~^350.^0^^~4~^~BFNN~^^^^^^^^^^~03/01/2013~
-~13439~^~307~^57.^0^^~4~^~BFNN~^^^^^^^^^^~03/01/2013~
-~13439~^~318~^22.^0^^~4~^~NC~^^^^^^^^^^~03/01/2013~
-~13439~^~319~^7.^0^^~4~^~BFSN~^^^^^^^^^^~03/01/2013~
-~13439~^~320~^7.^0^^~4~^~NC~^^^^^^^^^^~03/01/2013~
-~13439~^~321~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~
-~13439~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~
-~13439~^~324~^3.^0^^~4~^~BFFN~^~23197~^^^^^^^^^~06/01/2013~
-~13439~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~
-~13439~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~
-~13439~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~
-~13439~^~417~^7.^0^^~4~^~BFPN~^^^^^^^^^^~03/01/2013~
-~13439~^~431~^0.^0^^~4~^~BFPN~^^^^^^^^^^~03/01/2013~
-~13439~^~432~^7.^0^^~4~^~BFPN~^^^^^^^^^^~03/01/2013~
-~13439~^~435~^7.^0^^~4~^~NC~^^^^^^^^^^~03/01/2013~
-~13439~^~601~^93.^6^4.^~1~^~AR~^^^^^^^^^^~03/01/2013~
-~13440~^~208~^217.^0^^~4~^~NC~^^^^^^^^^^~03/01/2013~
-~13440~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2003~
-~13440~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2003~
-~13440~^~268~^906.^0^^~4~^~NC~^^^^^^^^^^~03/01/2013~
-~13440~^~301~^14.^0^^~4~^~BFNN~^^^^^^^^^^~03/01/2013~
-~13440~^~304~^19.^0^^~4~^~BFNN~^^^^^^^^^^~03/01/2013~
-~13440~^~305~^258.^0^^~4~^~BFNN~^^^^^^^^^^~03/01/2013~
-~13440~^~306~^356.^0^^~4~^~BFNN~^^^^^^^^^^~03/01/2013~
-~13440~^~307~^58.^0^^~4~^~BFNN~^^^^^^^^^^~03/01/2013~
-~13440~^~318~^23.^0^^~4~^~NC~^^^^^^^^^^~03/01/2013~
-~13440~^~319~^7.^0^^~4~^~BFSN~^^^^^^^^^^~03/01/2013~
-~13440~^~320~^7.^0^^~4~^~NC~^^^^^^^^^^~03/01/2013~
-~13440~^~321~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2003~
-~13440~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2003~
-~13440~^~324~^3.^0^^~4~^~BFFN~^~23195~^^^^^^^^^~06/01/2013~
-~13440~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2003~
-~13440~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2003~
-~13440~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2003~
-~13440~^~417~^7.^0^^~4~^~BFPN~^~23042~^^^^^^^^^~03/01/2013~
-~13440~^~431~^0.^0^^~4~^~BFPN~^~23042~^^^^^^^^^~03/01/2013~
-~13440~^~432~^7.^0^^~4~^~BFPN~^~23042~^^^^^^^^^~03/01/2013~
-~13440~^~435~^7.^0^^~4~^~NC~^~23042~^^^^^^^^^~03/01/2013~
-~13440~^~601~^93.^4^5.^~1~^~AR~^^^^^^^^^^~03/01/2013~
-~13441~^~208~^202.^0^^~4~^~NC~^^^^^^^^^^~03/01/2013~
-~13441~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2003~
-~13441~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2003~
-~13441~^~268~^843.^0^^~4~^~NC~^^^^^^^^^^~03/01/2013~
-~13441~^~301~^13.^0^^~4~^~BFNN~^^^^^^^^^^~03/01/2013~
-~13441~^~304~^14.^0^^~4~^~BFNN~^^^^^^^^^^~03/01/2013~
-~13441~^~305~^257.^0^^~4~^~BFNN~^^^^^^^^^^~03/01/2013~
-~13441~^~306~^348.^0^^~4~^~BFNN~^^^^^^^^^^~03/01/2013~
-~13441~^~307~^54.^0^^~4~^~BFNN~^^^^^^^^^^~03/01/2013~
-~13441~^~318~^22.^0^^~4~^~NC~^^^^^^^^^^~03/01/2013~
-~13441~^~319~^7.^0^^~4~^~BFSN~^^^^^^^^^^~03/01/2013~
-~13441~^~320~^7.^0^^~4~^~NC~^^^^^^^^^^~03/01/2013~
-~13441~^~321~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2003~
-~13441~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2003~
-~13441~^~324~^2.^0^^~4~^~BFFN~^~23196~^^^^^^^^^~06/01/2013~
-~13441~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2003~
-~13441~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2003~
-~13441~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2003~
-~13441~^~417~^7.^0^^~4~^~BFPN~^~23044~^^^^^^^^^~03/01/2013~
-~13441~^~431~^0.^0^^~4~^~BFPN~^~23044~^^^^^^^^^~03/01/2013~
-~13441~^~432~^7.^0^^~4~^~BFPN~^~23044~^^^^^^^^^~03/01/2013~
-~13441~^~435~^7.^0^^~4~^~NC~^~23044~^^^^^^^^^~03/01/2013~
-~13441~^~601~^93.^2^^~1~^~AR~^^^^^^^^^^~03/01/2013~
-~13442~^~208~^198.^0^^~4~^~NC~^^^^^^^^^^~04/01/2013~
-~13442~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~
-~13442~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~
-~13442~^~268~^827.^0^^~4~^~NC~^^^^^^^^^^~04/01/2013~
-~13442~^~301~^15.^0^^~4~^~BFNN~^^^^^^^^^^~04/01/2013~
-~13442~^~304~^20.^0^^~4~^~BFNN~^^^^^^^^^^~04/01/2013~
-~13442~^~305~^285.^0^^~4~^~BFNN~^^^^^^^^^^~04/01/2013~
-~13442~^~306~^390.^0^^~4~^~BFNN~^^^^^^^^^^~04/01/2013~
-~13442~^~307~^59.^0^^~4~^~BFNN~^^^^^^^^^^~08/01/2003~
-~13442~^~318~^5.^0^^~4~^~NC~^^^^^^^^^^~04/01/2013~
-~13442~^~319~^2.^0^^~4~^~BFSN~^^^^^^^^^^~04/01/2013~
-~13442~^~320~^2.^0^^~4~^~NC~^^^^^^^^^^~04/01/2013~
-~13442~^~321~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~
-~13442~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~
-~13442~^~324~^3.^0^^~4~^~BFFN~^~23100~^^^^^^^^^~04/01/2013~
-~13442~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~
-~13442~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~
-~13442~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~
-~13442~^~417~^7.^0^^~4~^~BFPN~^^^^^^^^^^~04/01/2013~
-~13442~^~431~^0.^0^^~4~^~BFPN~^^^^^^^^^^~04/01/2013~
-~13442~^~432~^7.^0^^~4~^~BFPN~^^^^^^^^^^~04/01/2013~
-~13442~^~435~^7.^0^^~4~^~NC~^^^^^^^^^^~04/01/2013~
-~13442~^~601~^93.^6^4.^~1~^~AR~^^^^^^^^^^~04/01/2013~
-~13443~^~208~^211.^0^^~4~^~NC~^^^^^^^^^^~04/01/2013~
-~13443~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2003~
-~13443~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2003~
-~13443~^~268~^885.^0^^~4~^~NC~^^^^^^^^^^~04/01/2013~
-~13443~^~301~^17.^0^^~4~^~BFYN~^^^^^^^^^^~04/01/2013~
-~13443~^~304~^23.^0^^~4~^~BFYN~^^^^^^^^^^~04/01/2013~
-~13443~^~305~^321.^0^^~4~^~BFYN~^^^^^^^^^^~04/01/2013~
-~13443~^~306~^443.^0^^~4~^~BFYN~^^^^^^^^^^~04/01/2013~
-~13443~^~307~^71.^0^^~4~^~BFYN~^^^^^^^^^^~04/01/2013~
-~13443~^~318~^5.^0^^~4~^~NC~^^^^^^^^^^~04/01/2013~
-~13443~^~319~^1.^0^^~4~^~BFSN~^^^^^^^^^^~04/01/2013~
-~13443~^~320~^1.^0^^~4~^~NC~^^^^^^^^^^~04/01/2013~
-~13443~^~321~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2003~
-~13443~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2003~
-~13443~^~324~^3.^0^^~4~^~BFFN~^~23148~^^^^^^^^^~04/01/2013~
-~13443~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2003~
-~13443~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2003~
-~13443~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2003~
-~13443~^~417~^7.^0^^~4~^~BFPN~^~23042~^^^^^^^^^~04/01/2013~
-~13443~^~431~^0.^0^^~4~^~BFPN~^~23042~^^^^^^^^^~04/01/2013~
-~13443~^~432~^7.^0^^~4~^~BFPN~^~23042~^^^^^^^^^~04/01/2013~
-~13443~^~435~^7.^0^^~4~^~NC~^~23042~^^^^^^^^^~04/01/2013~
-~13443~^~601~^93.^4^5.^~1~^~AR~^^^^^^^^^^~04/01/2013~
-~13444~^~208~^198.^0^^~4~^~NC~^^^^^^^^^^~05/01/2013~
-~13444~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2003~
-~13444~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2003~
-~13444~^~268~^829.^0^^~4~^~NC~^^^^^^^^^^~05/01/2013~
-~13444~^~301~^13.^0^^~4~^~BFNN~^^^^^^^^^^~05/01/2013~
-~13444~^~304~^14.^0^^~4~^~BFNN~^^^^^^^^^^~05/01/2013~
-~13444~^~305~^265.^0^^~4~^~BFNN~^^^^^^^^^^~05/01/2013~
-~13444~^~306~^359.^0^^~4~^~BFNN~^^^^^^^^^^~05/01/2013~
-~13444~^~307~^55.^0^^~4~^~BFNN~^^^^^^^^^^~05/01/2013~
-~13444~^~318~^6.^0^^~4~^~NC~^^^^^^^^^^~05/01/2013~
-~13444~^~319~^2.^0^^~4~^~BFSN~^^^^^^^^^^~05/01/2013~
-~13444~^~320~^2.^0^^~4~^~NC~^^^^^^^^^^~05/01/2013~
-~13444~^~321~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2003~
-~13444~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2003~
-~13444~^~324~^3.^0^^~4~^~BFFN~^~23149~^^^^^^^^^~05/01/2013~
-~13444~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2003~
-~13444~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2003~
-~13444~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2003~
-~13444~^~417~^7.^0^^~4~^~BFPN~^~23044~^^^^^^^^^~05/01/2013~
-~13444~^~431~^0.^0^^~4~^~BFPN~^~23044~^^^^^^^^^~05/01/2013~
-~13444~^~432~^7.^0^^~4~^~BFPN~^~23044~^^^^^^^^^~05/01/2013~
-~13444~^~435~^7.^0^^~4~^~NC~^~23044~^^^^^^^^^~05/01/2013~
-~13444~^~601~^93.^2^^~1~^~AR~^^^^^^^^^^~05/01/2013~
-~13445~^~208~^223.^0^^~4~^~NC~^^^^^^^^^^~04/01/2013~
-~13445~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~
-~13445~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~
-~13445~^~268~^931.^0^^~4~^~NC~^^^^^^^^^^~04/01/2013~
-~13445~^~301~^14.^0^^~4~^~BFNN~^^^^^^^^^^~04/01/2013~
-~13445~^~304~^19.^0^^~4~^~BFNN~^^^^^^^^^^~04/01/2013~
-~13445~^~305~^265.^0^^~4~^~BFNN~^^^^^^^^^^~04/01/2013~
-~13445~^~306~^366.^0^^~4~^~BFNN~^^^^^^^^^^~04/01/2013~
-~13445~^~307~^59.^0^^~4~^~BFNN~^^^^^^^^^^~08/01/2003~
-~13445~^~318~^22.^0^^~4~^~NC~^^^^^^^^^^~04/01/2013~
-~13445~^~319~^7.^0^^~4~^~BFSN~^^^^^^^^^^~04/01/2013~
-~13445~^~320~^7.^0^^~4~^~NC~^^^^^^^^^^~04/01/2013~
-~13445~^~321~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~
-~13445~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~
-~13445~^~324~^3.^0^^~4~^~BFFN~^~23197~^^^^^^^^^~06/01/2013~
-~13445~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~
-~13445~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~
-~13445~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~
-~13445~^~417~^7.^0^^~4~^~BFPN~^^^^^^^^^^~04/01/2013~
-~13445~^~431~^0.^0^^~4~^~BFPN~^^^^^^^^^^~04/01/2013~
-~13445~^~432~^7.^0^^~4~^~BFPN~^^^^^^^^^^~04/01/2013~
-~13445~^~435~^7.^0^^~4~^~NC~^^^^^^^^^^~04/01/2013~
-~13445~^~601~^81.^0^^~4~^~BFSN~^~13910~^^^^^^^^^~07/01/2015~
-~13446~^~208~^233.^0^^~4~^~NC~^^^^^^^^^^~04/01/2013~
-~13446~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2003~
-~13446~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2003~
-~13446~^~268~^976.^0^^~4~^~NC~^^^^^^^^^^~04/01/2013~
-~13446~^~301~^14.^0^^~4~^~BFNN~^~23346~^^^^^^^^^~04/01/2013~
-~13446~^~304~^19.^0^^~4~^~BFNN~^~23346~^^^^^^^^^~04/01/2013~
-~13446~^~305~^262.^0^^~4~^~BFNN~^~23346~^^^^^^^^^~04/01/2013~
-~13446~^~306~^361.^0^^~4~^~BFNN~^~23346~^^^^^^^^^~04/01/2013~
-~13446~^~307~^59.^0^^~4~^~BFNN~^~23346~^^^^^^^^^~04/01/2013~
-~13446~^~318~^22.^0^^~4~^~NC~^^^^^^^^^^~04/01/2013~
-~13446~^~319~^7.^0^^~4~^~BFSN~^^^^^^^^^^~04/01/2013~
-~13446~^~320~^7.^0^^~4~^~NC~^^^^^^^^^^~04/01/2013~
-~13446~^~321~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2003~
-~13446~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2003~
-~13446~^~324~^4.^0^^~4~^~BFFN~^~23195~^^^^^^^^^~06/01/2013~
-~13446~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2003~
-~13446~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2003~
-~13446~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2003~
-~13446~^~417~^7.^0^^~4~^~BFPN~^~23042~^^^^^^^^^~04/01/2013~
-~13446~^~431~^0.^0^^~4~^~BFPN~^~23042~^^^^^^^^^~06/01/2013~
-~13446~^~432~^7.^0^^~4~^~BFPN~^~23042~^^^^^^^^^~04/01/2013~
-~13446~^~435~^7.^0^^~4~^~NC~^~23042~^^^^^^^^^~04/01/2013~
-~13446~^~601~^88.^0^^~4~^~BFSN~^^^^^^^^^^~04/01/2013~
-~13447~^~208~^207.^0^^~4~^~NC~^^^^^^^^^^~04/01/2013~
-~13447~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2003~
-~13447~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2003~
-~13447~^~268~^865.^0^^~4~^~NC~^^^^^^^^^^~04/01/2013~
-~13447~^~301~^14.^0^^~4~^~BFNN~^^^^^^^^^^~04/01/2013~
-~13447~^~304~^15.^0^^~4~^~BFNN~^^^^^^^^^^~04/01/2013~
-~13447~^~305~^274.^0^^~4~^~BFNN~^^^^^^^^^^~04/01/2013~
-~13447~^~306~^371.^0^^~4~^~BFNN~^^^^^^^^^^~04/01/2013~
-~13447~^~307~^57.^0^^~4~^~BFNN~^^^^^^^^^^~04/01/2013~
-~13447~^~318~^21.^0^^~4~^~NC~^^^^^^^^^^~04/01/2013~
-~13447~^~319~^6.^0^^~4~^~BFSN~^^^^^^^^^^~04/01/2013~
-~13447~^~320~^6.^0^^~4~^~NC~^^^^^^^^^^~04/01/2013~
-~13447~^~321~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2003~
-~13447~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2003~
-~13447~^~324~^3.^0^^~4~^~BFFN~^~23196~^^^^^^^^^~06/01/2013~
-~13447~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2003~
-~13447~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2003~
-~13447~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2003~
-~13447~^~417~^7.^0^^~4~^~BFPN~^~23044~^^^^^^^^^~04/01/2013~
-~13447~^~431~^0.^0^^~4~^~BFPN~^~23044~^^^^^^^^^~04/01/2013~
-~13447~^~432~^7.^0^^~4~^~BFPN~^~23044~^^^^^^^^^~04/01/2013~
-~13447~^~435~^7.^0^^~4~^~NC~^~23044~^^^^^^^^^~04/01/2013~
-~13447~^~601~^85.^0^^~4~^~BFSN~^^^^^^^^^^~04/01/2013~
-~13448~^~208~^202.^0^^~4~^~NC~^^^^^^^^^^~05/01/2013~
-~13448~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~11/01/2002~
-~13448~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~11/01/2002~
-~13448~^~268~^845.^0^^~4~^~NC~^^^^^^^^^^~05/01/2013~
-~13448~^~301~^14.^0^^~4~^~BFNN~^^^^^^^^^^~05/01/2013~
-~13448~^~304~^20.^0^^~4~^~BFNN~^^^^^^^^^^~05/01/2013~
-~13448~^~305~^275.^0^^~4~^~BFNN~^^^^^^^^^^~05/01/2013~
-~13448~^~306~^376.^0^^~4~^~BFNN~^^^^^^^^^^~05/01/2013~
-~13448~^~307~^61.^0^^~4~^~BFNN~^^^^^^^^^^~05/01/2013~
-~13448~^~318~^6.^0^^~4~^~NC~^^^^^^^^^^~05/01/2013~
-~13448~^~319~^2.^0^^~4~^~BFSN~^^^^^^^^^^~05/01/2013~
-~13448~^~320~^2.^0^^~4~^~NC~^^^^^^^^^^~05/01/2013~
-~13448~^~321~^0.^0^^~7~^~Z~^^^^^^^^^^~11/01/2002~
-~13448~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~11/01/2002~
-~13448~^~324~^3.^0^^~4~^~BFFN~^~23100~^^^^^^^^^~05/01/2013~
-~13448~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~11/01/2002~
-~13448~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~11/01/2002~
-~13448~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~11/01/2002~
-~13448~^~417~^7.^0^^~4~^~BFPN~^^^^^^^^^^~05/01/2013~
-~13448~^~431~^0.^0^^~4~^~BFPN~^^^^^^^^^^~05/01/2013~
-~13448~^~432~^7.^0^^~4~^~BFPN~^^^^^^^^^^~05/01/2013~
-~13448~^~435~^7.^0^^~4~^~NC~^^^^^^^^^^~05/01/2013~
-~13448~^~601~^91.^0^^~4~^~BFSN~^^^^^^^^^^~05/01/2013~
-~13449~^~208~^211.^0^^~4~^~NC~^^^^^^^^^^~05/01/2013~
-~13449~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2003~
-~13449~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2003~
-~13449~^~268~^882.^0^^~4~^~NC~^^^^^^^^^^~05/01/2013~
-~13449~^~301~^14.^0^^~4~^~BFNN~^^^^^^^^^^~05/01/2013~
-~13449~^~304~^19.^0^^~4~^~BFNN~^^^^^^^^^^~05/01/2013~
-~13449~^~305~^268.^0^^~4~^~BFNN~^^^^^^^^^^~05/01/2013~
-~13449~^~306~^367.^0^^~4~^~BFNN~^^^^^^^^^^~05/01/2013~
-~13449~^~307~^59.^0^^~4~^~BFNN~^^^^^^^^^^~05/01/2003~
-~13449~^~318~^4.^0^^~4~^~NC~^^^^^^^^^^~05/01/2013~
-~13449~^~319~^1.^0^^~4~^~BFSN~^^^^^^^^^^~05/01/2013~
-~13449~^~320~^1.^0^^~4~^~NC~^^^^^^^^^^~05/01/2013~
-~13449~^~321~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2003~
-~13449~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2003~
-~13449~^~324~^3.^0^^~4~^~BFFN~^~23148~^^^^^^^^^~05/01/2013~
-~13449~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2003~
-~13449~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2003~
-~13449~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2003~
-~13449~^~417~^7.^0^^~4~^~BFPN~^~23042~^^^^^^^^^~05/01/2013~
-~13449~^~431~^0.^0^^~4~^~BFPN~^~23042~^^^^^^^^^~05/01/2013~
-~13449~^~432~^7.^0^^~4~^~BFPN~^~23042~^^^^^^^^^~05/01/2013~
-~13449~^~435~^7.^0^^~4~^~NC~^~23042~^^^^^^^^^~05/01/2013~
-~13449~^~601~^87.^0^^~4~^~BFSN~^^^^^^^^^^~05/01/2013~
-~13450~^~208~^189.^0^^~4~^~NC~^^^^^^^^^^~05/01/2013~
-~13450~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2003~
-~13450~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2003~
-~13450~^~268~^790.^0^^~4~^~NC~^^^^^^^^^^~05/01/2013~
-~13450~^~301~^14.^0^^~4~^~BFNN~^^^^^^^^^^~05/01/2013~
-~13450~^~304~^15.^0^^~4~^~BFNN~^^^^^^^^^^~05/01/2013~
-~13450~^~305~^277.^0^^~4~^~BFNN~^^^^^^^^^^~05/01/2013~
-~13450~^~306~^375.^0^^~4~^~BFNN~^^^^^^^^^^~05/01/2013~
-~13450~^~307~^58.^0^^~4~^~BFNN~^^^^^^^^^^~05/01/2013~
-~13450~^~318~^6.^0^^~4~^~NC~^^^^^^^^^^~05/01/2013~
-~13450~^~319~^2.^0^^~4~^~BFSN~^^^^^^^^^^~05/01/2013~
-~13450~^~320~^2.^0^^~4~^~NC~^^^^^^^^^^~05/01/2013~
-~13450~^~321~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2003~
-~13450~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2003~
-~13450~^~324~^2.^0^^~4~^~BFFN~^~23149~^^^^^^^^^~05/01/2013~
-~13450~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2003~
-~13450~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2003~
-~13450~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2003~
-~13450~^~417~^7.^0^^~4~^~BFPN~^~23044~^^^^^^^^^~05/01/2013~
-~13450~^~431~^0.^0^^~4~^~BFPN~^~23044~^^^^^^^^^~05/01/2013~
-~13450~^~432~^7.^0^^~4~^~BFPN~^~23044~^^^^^^^^^~05/01/2013~
-~13450~^~435~^7.^0^^~4~^~NC~^~23044~^^^^^^^^^~05/01/2013~
-~13450~^~601~^86.^0^^~4~^~BFSN~^^^^^^^^^^~05/01/2013~
-~13451~^~208~^212.^0^^~4~^~NC~^^^^^^^^^^~07/01/2010~
-~13451~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~
-~13451~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~
-~13451~^~268~^889.^0^^~4~^~NC~^^^^^^^^^^~07/01/2010~
-~13451~^~301~^22.^0^^~4~^~BFFN~^^^^^^^^^^~08/01/2003~
-~13451~^~304~^25.^0^^~4~^~BFFN~^^^^^^^^^^~08/01/2003~
-~13451~^~305~^229.^0^^~4~^~BFFN~^^^^^^^^^^~08/01/2003~
-~13451~^~306~^368.^0^^~4~^~BFFN~^^^^^^^^^^~08/01/2003~
-~13451~^~307~^61.^0^^~4~^~BFFN~^^^^^^^^^^~08/01/2003~
-~13451~^~318~^0.^0^^~1~^~AS~^^^^^^^^^^~08/01/2003~
-~13451~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~08/01/2003~
-~13451~^~320~^0.^0^^~1~^~AS~^^^^^^^^^^~08/01/2003~
-~13451~^~321~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~
-~13451~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~
-~13451~^~324~^7.^0^^~1~^~PAK~^^^^^^^^^^~07/01/2009~
-~13451~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~
-~13451~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~
-~13451~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~
-~13451~^~417~^9.^0^^~4~^~BFPN~^^^^^^^^^^~08/01/2003~
-~13451~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~
-~13451~^~432~^9.^0^^~4~^~BFPN~^^^^^^^^^^~07/01/2010~
-~13451~^~435~^9.^0^^~4~^~NC~^^^^^^^^^^~07/01/2010~
-~13451~^~601~^88.^0^^~4~^~BFSN~^^^^^^^^^^~07/01/2010~
-~13452~^~208~^219.^0^^~4~^~NC~^^^^^^^^^^~07/01/2010~
-~13452~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2003~
-~13452~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2003~
-~13452~^~268~^916.^0^^~4~^~NC~^^^^^^^^^^~07/01/2010~
-~13452~^~301~^19.^0^^~4~^~BFFN~^^^^^^^^^^~05/01/2003~
-~13452~^~304~^24.^0^^~4~^~BFFN~^^^^^^^^^^~05/01/2003~
-~13452~^~305~^218.^0^^~4~^~BFFN~^^^^^^^^^^~05/01/2003~
-~13452~^~306~^355.^0^^~4~^~BFFN~^^^^^^^^^^~05/01/2003~
-~13452~^~307~^58.^0^^~4~^~BFFN~^^^^^^^^^^~05/01/2003~
-~13452~^~318~^0.^0^^~1~^~AS~^^^^^^^^^^~05/01/2003~
-~13452~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2003~
-~13452~^~320~^0.^0^^~1~^~AS~^^^^^^^^^^~05/01/2003~
-~13452~^~321~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2003~
-~13452~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2003~
-~13452~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2003~
-~13452~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2003~
-~13452~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2003~
-~13452~^~417~^9.^0^^~4~^~BFPN~^^^^^^^^^^~05/01/2003~
-~13452~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~
-~13452~^~432~^9.^0^^~4~^~BFPN~^^^^^^^^^^~07/01/2010~
-~13452~^~435~^9.^0^^~4~^~NC~^^^^^^^^^^~07/01/2010~
-~13452~^~601~^89.^0^^~4~^~BFSN~^^^^^^^^^^~07/01/2010~
-~13453~^~208~^206.^0^^~4~^~NC~^^^^^^^^^^~07/01/2010~
-~13453~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2003~
-~13453~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2003~
-~13453~^~268~^862.^0^^~4~^~NC~^^^^^^^^^^~07/01/2010~
-~13453~^~301~^24.^0^^~4~^~BFFN~^^^^^^^^^^~05/01/2003~
-~13453~^~304~^26.^0^^~4~^~BFFN~^^^^^^^^^^~05/01/2003~
-~13453~^~305~^239.^0^^~4~^~BFFN~^^^^^^^^^^~05/01/2003~
-~13453~^~306~^381.^0^^~4~^~BFFN~^^^^^^^^^^~05/01/2003~
-~13453~^~307~^63.^0^^~4~^~BFFN~^^^^^^^^^^~05/01/2003~
-~13453~^~318~^0.^0^^~1~^~AS~^^^^^^^^^^~05/01/2003~
-~13453~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2003~
-~13453~^~320~^0.^0^^~1~^~AS~^^^^^^^^^^~05/01/2003~
-~13453~^~321~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2003~
-~13453~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2003~
-~13453~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2003~
-~13453~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2003~
-~13453~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2003~
-~13453~^~417~^9.^0^^~4~^~BFPN~^^^^^^^^^^~05/01/2003~
-~13453~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~
-~13453~^~432~^9.^0^^~4~^~BFPN~^^^^^^^^^^~07/01/2010~
-~13453~^~435~^9.^0^^~4~^~NC~^^^^^^^^^^~07/01/2010~
-~13453~^~601~^87.^0^^~4~^~BFSN~^^^^^^^^^^~07/01/2010~
-~13454~^~208~^183.^0^^~4~^~NC~^^^^^^^^^^~07/01/2010~
-~13454~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~11/01/2002~
-~13454~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~11/01/2002~
-~13454~^~268~^764.^0^^~4~^~NC~^^^^^^^^^^~07/01/2010~
-~13454~^~301~^20.^0^^~4~^~BFNN~^^^^^^^^^^~08/01/2003~
-~13454~^~304~^26.^0^^~4~^~BFNN~^^^^^^^^^^~08/01/2003~
-~13454~^~305~^244.^0^^~4~^~BFNN~^^^^^^^^^^~08/01/2003~
-~13454~^~306~^393.^0^^~4~^~BFNN~^^^^^^^^^^~08/01/2003~
-~13454~^~307~^64.^0^^~4~^~BFNN~^^^^^^^^^^~08/01/2003~
-~13454~^~318~^0.^0^^~1~^~AS~^^^^^^^^^^~08/01/2003~
-~13454~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~08/01/2003~
-~13454~^~320~^0.^0^^~1~^~AS~^^^^^^^^^^~08/01/2003~
-~13454~^~321~^0.^0^^~7~^~Z~^^^^^^^^^^~11/01/2002~
-~13454~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~11/01/2002~
-~13454~^~324~^4.^0^^~4~^~BFFN~^^^^^^^^^^~07/01/2009~
-~13454~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~11/01/2002~
-~13454~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~11/01/2002~
-~13454~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~11/01/2002~
-~13454~^~417~^10.^0^^~4~^~BFPN~^^^^^^^^^^~08/01/2003~
-~13454~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~
-~13454~^~432~^10.^0^^~4~^~BFPN~^^^^^^^^^^~07/01/2010~
-~13454~^~435~^10.^0^^~4~^~NC~^^^^^^^^^^~07/01/2010~
-~13454~^~601~^82.^0^^~4~^~BFSN~^^^^^^^^^^~07/01/2010~
-~13455~^~208~^188.^0^^~4~^~NC~^^^^^^^^^^~07/01/2010~
-~13455~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2003~
-~13455~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2003~
-~13455~^~268~^788.^0^^~4~^~NC~^^^^^^^^^^~07/01/2010~
-~13455~^~301~^17.^0^^~4~^~BFNN~^^^^^^^^^^~05/01/2003~
-~13455~^~304~^26.^0^^~4~^~BFNN~^^^^^^^^^^~05/01/2003~
-~13455~^~305~^237.^0^^~4~^~BFNN~^^^^^^^^^^~05/01/2003~
-~13455~^~306~^380.^0^^~4~^~BFNN~^^^^^^^^^^~05/01/2003~
-~13455~^~307~^63.^0^^~4~^~BFNN~^^^^^^^^^^~05/01/2003~
-~13455~^~318~^0.^0^^~1~^~AS~^^^^^^^^^^~05/01/2003~
-~13455~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2003~
-~13455~^~320~^0.^0^^~1~^~AS~^^^^^^^^^^~05/01/2003~
-~13455~^~321~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2003~
-~13455~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2003~
-~13455~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2003~
-~13455~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2003~
-~13455~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2003~
-~13455~^~417~^10.^0^^~4~^~BFPN~^^^^^^^^^^~05/01/2003~
-~13455~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~
-~13455~^~432~^10.^0^^~4~^~BFPN~^^^^^^^^^^~07/01/2010~
-~13455~^~435~^10.^0^^~4~^~NC~^^^^^^^^^^~07/01/2010~
-~13455~^~601~^83.^0^^~4~^~BFSN~^^^^^^^^^^~07/01/2010~
-~13456~^~208~^177.^0^^~4~^~NC~^^^^^^^^^^~07/01/2010~
-~13456~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2003~
-~13456~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2003~
-~13456~^~268~^740.^0^^~4~^~NC~^^^^^^^^^^~07/01/2010~
-~13456~^~301~^22.^0^^~4~^~BFNN~^^^^^^^^^^~05/01/2003~
-~13456~^~304~^27.^0^^~4~^~BFNN~^^^^^^^^^^~05/01/2003~
-~13456~^~305~^253.^0^^~4~^~BFNN~^^^^^^^^^^~05/01/2003~
-~13456~^~306~^410.^0^^~4~^~BFNN~^^^^^^^^^^~05/01/2003~
-~13456~^~307~^66.^0^^~4~^~BFNN~^^^^^^^^^^~05/01/2003~
-~13456~^~318~^0.^0^^~1~^~AS~^^^^^^^^^^~05/01/2003~
-~13456~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2003~
-~13456~^~320~^0.^0^^~1~^~AS~^^^^^^^^^^~05/01/2003~
-~13456~^~321~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2003~
-~13456~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2003~
-~13456~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2003~
-~13456~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2003~
-~13456~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2003~
-~13456~^~417~^10.^0^^~4~^~BFPN~^^^^^^^^^^~05/01/2003~
-~13456~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~
-~13456~^~432~^10.^0^^~4~^~BFPN~^^^^^^^^^^~07/01/2010~
-~13456~^~435~^10.^0^^~4~^~NC~^^^^^^^^^^~07/01/2010~
-~13456~^~601~^81.^0^^~4~^~BFSN~^^^^^^^^^^~07/01/2010~
-~13459~^~208~^276.^0^^~4~^~NC~^^^^^^^^^^~06/01/2008~
-~13459~^~262~^0.^0^^~4~^~PIK~^^^^^^^^^^~04/01/2008~
-~13459~^~263~^0.^0^^~4~^~PIK~^^^^^^^^^^~04/01/2008~
-~13459~^~268~^1155.^0^^~4~^~NC~^^^^^^^^^^~06/01/2008~
-~13459~^~301~^7.^0^^~1~^~PAK~^^^^^^^^^^~04/01/2008~
-~13459~^~304~^22.^0^^~1~^~PAK~^^^^^^^^^^~04/01/2008~
-~13459~^~305~^193.^0^^~1~^~PAK~^^^^^^^^^^~04/01/2008~
-~13459~^~306~^299.^0^^~1~^~PAK~^^^^^^^^^^~04/01/2008~
-~13459~^~307~^65.^0^^~1~^~PAK~^^^^^^^^^^~04/01/2008~
-~13459~^~318~^0.^0^^~4~^~PIK~^^^^^^^^^^~04/01/2008~
-~13459~^~319~^0.^0^^~4~^~PIK~^^^^^^^^^^~04/01/2008~
-~13459~^~320~^0.^0^^~4~^~NC~^^^^^^^^^^~04/01/2008~
-~13459~^~321~^0.^0^^~4~^~PIK~^^^^^^^^^^~04/01/2008~
-~13459~^~322~^0.^0^^~4~^~PIK~^^^^^^^^^^~04/01/2008~
-~13459~^~334~^0.^0^^~4~^~PIK~^^^^^^^^^^~04/01/2008~
-~13459~^~337~^0.^0^^~4~^~PIK~^^^^^^^^^^~04/01/2008~
-~13459~^~338~^0.^0^^~4~^~PIK~^^^^^^^^^^~04/01/2008~
-~13459~^~417~^7.^0^^~1~^~PAK~^^^^^^^^^^~04/01/2008~
-~13459~^~431~^0.^0^^~4~^~PIK~^^^^^^^^^^~04/01/2008~
-~13459~^~432~^7.^0^^~1~^~PAK~^^^^^^^^^^~04/01/2008~
-~13459~^~435~^7.^0^^~4~^~NC~^^^^^^^^^^~06/01/2008~
-~13459~^~601~^67.^0^^~1~^~PAK~^^^^^^^^^^~04/01/2008~
-~13460~^~208~^283.^0^^~4~^~NC~^^^^^^^^^^~06/01/2008~
-~13460~^~262~^0.^0^^~4~^~PIK~^^^^^^^^^^~04/01/2008~
-~13460~^~263~^0.^0^^~4~^~PIK~^^^^^^^^^^~04/01/2008~
-~13460~^~268~^1182.^0^^~4~^~NC~^^^^^^^^^^~06/01/2008~
-~13460~^~301~^7.^0^^~1~^~PAK~^^^^^^^^^^~04/01/2008~
-~13460~^~304~^22.^0^^~1~^~PAK~^^^^^^^^^^~04/01/2008~
-~13460~^~305~^194.^0^^~1~^~PAK~^^^^^^^^^^~04/01/2008~
-~13460~^~306~^278.^0^^~1~^~PAK~^^^^^^^^^^~04/01/2008~
-~13460~^~307~^65.^0^^~1~^~PAK~^^^^^^^^^^~04/01/2008~
-~13460~^~318~^0.^0^^~1~^~PAK~^^^^^^^^^^~04/01/2008~
-~13460~^~319~^0.^0^^~4~^~PIK~^^^^^^^^^^~04/01/2008~
-~13460~^~320~^0.^0^^~1~^~PAK~^^^^^^^^^^~04/01/2008~
-~13460~^~321~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2008~
-~13460~^~322~^0.^0^^~4~^~PIK~^^^^^^^^^^~04/01/2008~
-~13460~^~334~^0.^0^^~4~^~PIK~^^^^^^^^^^~04/01/2008~
-~13460~^~337~^0.^0^^~4~^~PIK~^^^^^^^^^^~04/01/2008~
-~13460~^~338~^0.^0^^~4~^~PIK~^^^^^^^^^^~04/01/2008~
-~13460~^~417~^7.^0^^~1~^~PAK~^^^^^^^^^^~04/01/2008~
-~13460~^~431~^0.^0^^~4~^~PIK~^^^^^^^^^^~04/01/2008~
-~13460~^~432~^7.^0^^~1~^~PAK~^^^^^^^^^^~04/01/2008~
-~13460~^~435~^7.^0^^~4~^~NC~^^^^^^^^^^~06/01/2008~
-~13460~^~601~^69.^0^^~1~^~PAK~^^^^^^^^^^~04/01/2008~
-~13463~^~208~^267.^0^^~4~^~NC~^^^^^^^^^^~06/01/2008~
-~13463~^~262~^0.^0^^~4~^~PIK~^^^^^^^^^^~04/01/2008~
-~13463~^~263~^0.^0^^~4~^~PIK~^^^^^^^^^^~04/01/2008~
-~13463~^~268~^1116.^0^^~4~^~NC~^^^^^^^^^^~06/01/2008~
-~13463~^~301~^7.^0^^~1~^~PAK~^^^^^^^^^^~04/01/2008~
-~13463~^~304~^22.^0^^~1~^~PAK~^^^^^^^^^^~04/01/2008~
-~13463~^~305~^191.^0^^~1~^~PAK~^^^^^^^^^^~04/01/2008~
-~13463~^~306~^330.^0^^~1~^~PAK~^^^^^^^^^^~04/01/2008~
-~13463~^~307~^65.^0^^~1~^~PAK~^^^^^^^^^^~04/01/2008~
-~13463~^~318~^0.^0^^~1~^~PAK~^^^^^^^^^^~04/01/2008~
-~13463~^~319~^0.^0^^~4~^~PIK~^^^^^^^^^^~04/01/2008~
-~13463~^~320~^0.^0^^~1~^~PAK~^^^^^^^^^^~04/01/2008~
-~13463~^~321~^0.^0^^~4~^~PIK~^^^^^^^^^^~04/01/2008~
-~13463~^~322~^0.^0^^~4~^~PIK~^^^^^^^^^^~04/01/2008~
-~13463~^~334~^0.^0^^~4~^~PIK~^^^^^^^^^^~04/01/2008~
-~13463~^~337~^0.^0^^~4~^~PIK~^^^^^^^^^^~04/01/2008~
-~13463~^~338~^0.^0^^~4~^~PIK~^^^^^^^^^^~04/01/2008~
-~13463~^~417~^7.^0^^~1~^~PAK~^^^^^^^^^^~04/01/2008~
-~13463~^~431~^0.^0^^~4~^~PIK~^^^^^^^^^^~04/01/2008~
-~13463~^~432~^7.^0^^~1~^~PAK~^^^^^^^^^^~04/01/2008~
-~13463~^~435~^7.^0^^~4~^~NC~^^^^^^^^^^~06/01/2008~
-~13463~^~601~^64.^0^^~1~^~PAK~^^^^^^^^^^~04/01/2008~
-~13464~^~208~^155.^0^^~4~^~NC~^^^^^^^^^^~05/01/2013~
-~13464~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2013~
-~13464~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2013~
-~13464~^~268~^648.^0^^~4~^~NC~^^^^^^^^^^~05/01/2013~
-~13464~^~301~^18.^3^^~1~^~AR~^^^^^^^^^^~05/01/2013~
-~13464~^~304~^11.^3^^~1~^~AR~^^^^^^^^^^~05/01/2013~
-~13464~^~305~^206.^3^^~1~^~AR~^^^^^^^^^^~05/01/2013~
-~13464~^~306~^274.^3^^~1~^~AR~^^^^^^^^^^~05/01/2013~
-~13464~^~307~^51.^3^^~1~^~AR~^^^^^^^^^^~05/01/2013~
-~13464~^~318~^7.^0^^~4~^~NC~^^^^^^^^^^~06/01/2013~
-~13464~^~319~^2.^0^^~4~^~BFSN~^^^^^^^^^^~06/01/2013~
-~13464~^~320~^2.^0^^~4~^~NC~^^^^^^^^^^~06/01/2013~
-~13464~^~321~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2013~
-~13464~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2013~
-~13464~^~324~^3.^0^^~4~^~BFFN~^~23150~^^^^^^^^^~06/01/2013~
-~13464~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2013~
-~13464~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2013~
-~13464~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2013~
-~13464~^~417~^3.^0^^~4~^~BFPN~^^^^^^^^^^~05/01/2013~
-~13464~^~431~^0.^0^^~4~^~BFPN~^^^^^^^^^^~09/01/2001~
-~13464~^~432~^3.^0^^~4~^~BFPN~^^^^^^^^^^~05/01/2013~
-~13464~^~435~^3.^0^^~4~^~NC~^^^^^^^^^^~05/01/2013~
-~13464~^~601~^58.^6^1.^~1~^~AR~^^^^^^^^^^~05/01/2013~
-~13465~^~208~^213.^0^^~4~^~NC~^^^^^^^^^^~05/01/2013~
-~13465~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2013~
-~13465~^~263~^0.^0^^~4~^~PIK~^^^^^^^^^^~09/01/2001~
-~13465~^~268~^893.^0^^~4~^~NC~^^^^^^^^^^~05/01/2013~
-~13465~^~301~^19.^3^^~1~^~AR~^^^^^^^^^^~05/01/2013~
-~13465~^~304~^23.^3^^~1~^~AR~^^^^^^^^^^~05/01/2013~
-~13465~^~305~^224.^3^^~1~^~AR~^^^^^^^^^^~05/01/2013~
-~13465~^~306~^291.^3^^~1~^~AR~^^^^^^^^^^~05/01/2013~
-~13465~^~307~^68.^3^^~1~^~AR~^^^^^^^^^^~05/01/2013~
-~13465~^~318~^22.^0^^~4~^~NC~^^^^^^^^^^~05/01/2013~
-~13465~^~319~^7.^0^^~4~^~BFSN~^^^^^^^^^^~05/01/2013~
-~13465~^~320~^7.^0^^~4~^~NC~^^^^^^^^^^~05/01/2013~
-~13465~^~321~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2013~
-~13465~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2013~
-~13465~^~324~^3.^0^^~4~^~BFFN~^~23146~^^^^^^^^^~06/01/2013~
-~13465~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2013~
-~13465~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2013~
-~13465~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2013~
-~13465~^~417~^7.^0^^~4~^~BFPN~^^^^^^^^^^~05/01/2013~
-~13465~^~431~^0.^0^^~4~^~BFPN~^^^^^^^^^^~09/01/2001~
-~13465~^~432~^7.^0^^~4~^~BFPN~^^^^^^^^^^~05/01/2013~
-~13465~^~435~^7.^0^^~4~^~NC~^^^^^^^^^^~05/01/2013~
-~13465~^~601~^82.^6^2.^~1~^~AR~^^^^^^^^^^~05/01/2013~
-~13466~^~208~^212.^0^^~4~^~NC~^^^^^^^^^^~06/01/2008~
-~13466~^~262~^0.^0^^~4~^~PIK~^^^^^^^^^^~04/01/2008~
-~13466~^~263~^0.^0^^~4~^~PIK~^^^^^^^^^^~04/01/2008~
-~13466~^~268~^888.^0^^~4~^~NC~^^^^^^^^^^~06/01/2008~
-~13466~^~301~^6.^0^^~1~^~PAK~^^^^^^^^^^~04/01/2008~
-~13466~^~304~^25.^0^^~1~^~PAK~^^^^^^^^^^~04/01/2008~
-~13466~^~305~^211.^0^^~1~^~PAK~^^^^^^^^^^~04/01/2008~
-~13466~^~306~^328.^0^^~1~^~PAK~^^^^^^^^^^~04/01/2008~
-~13466~^~307~^69.^0^^~1~^~PAK~^^^^^^^^^^~04/01/2008~
-~13466~^~318~^0.^0^^~1~^~PAK~^^^^^^^^^^~04/01/2008~
-~13466~^~319~^0.^0^^~4~^~PIK~^^^^^^^^^^~04/01/2008~
-~13466~^~320~^0.^0^^~1~^~PAK~^^^^^^^^^^~04/01/2008~
-~13466~^~321~^0.^0^^~4~^~PIK~^^^^^^^^^^~04/01/2008~
-~13466~^~322~^0.^0^^~4~^~PIK~^^^^^^^^^^~04/01/2008~
-~13466~^~334~^0.^0^^~4~^~PIK~^^^^^^^^^^~04/01/2008~
-~13466~^~337~^0.^0^^~4~^~PIK~^^^^^^^^^^~04/01/2008~
-~13466~^~338~^0.^0^^~4~^~PIK~^^^^^^^^^^~04/01/2008~
-~13466~^~417~^8.^0^^~1~^~PAK~^^^^^^^^^^~04/01/2008~
-~13466~^~431~^0.^0^^~4~^~PIK~^^^^^^^^^^~04/01/2008~
-~13466~^~432~^8.^0^^~1~^~PAK~^^^^^^^^^^~04/01/2008~
-~13466~^~435~^8.^0^^~4~^~NC~^^^^^^^^^^~06/01/2009~
-~13466~^~601~^62.^0^^~1~^~PAK~^^^^^^^^^^~04/01/2008~
-~13467~^~208~^224.^0^^~4~^~NC~^^^^^^^^^^~07/01/2010~
-~13467~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~07/01/2001~
-~13467~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~07/01/2001~
-~13467~^~268~^939.^0^^~4~^~NC~^^^^^^^^^^~07/01/2010~
-~13467~^~301~^6.^30^1.^~1~^~A~^^^2^4.^7.^1^-11.^22.^~2~^~07/01/2001~
-~13467~^~304~^25.^27^2.^~1~^~A~^^^2^22.^27.^1^-6.^55.^~2~^~07/01/2001~
-~13467~^~305~^211.^6^7.^~1~^~A~^^^^^^^^^^~10/01/1995~
-~13467~^~306~^301.^30^65.^~1~^~A~^^^2^236.^367.^1^-532.^1134.^~2~^~07/01/2001~
-~13467~^~307~^69.^22^3.^~1~^~A~^^^^^^^^^^~10/01/1995~
-~13467~^~318~^0.^0^^~1~^~AS~^^^^^^^^^^~12/01/2001~
-~13467~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~08/01/2001~
-~13467~^~320~^0.^0^^~1~^~AS~^^^^^^^^^^~12/01/2001~
-~13467~^~321~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2008~
-~13467~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~07/01/2001~
-~13467~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~07/01/2001~
-~13467~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~07/01/2001~
-~13467~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~07/01/2001~
-~13467~^~417~^8.^0^^~1~^~PAK~^^^^^^^^^^~10/01/1995~
-~13467~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~07/01/2001~
-~13467~^~432~^8.^0^^~1~^~PAK~^^^^^^^^^^~07/01/2010~
-~13467~^~435~^8.^0^^~4~^~NC~^^^^^^^^^^~07/01/2010~
-~13467~^~601~^91.^0^^~4~^~BFSN~^^^^^^^^^^~07/01/2010~
-~13468~^~208~^145.^0^^~4~^~NC~^^^^^^^^^^~05/01/2013~
-~13468~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~07/01/2001~
-~13468~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~07/01/2001~
-~13468~^~268~^608.^0^^~4~^~NC~^^^^^^^^^^~05/01/2013~
-~13468~^~301~^19.^1^^~1~^~AR~^^^^^^^^^^~05/01/2013~
-~13468~^~304~^11.^1^^~1~^~AR~^^^^^^^^^^~05/01/2013~
-~13468~^~305~^200.^1^^~1~^~AR~^^^^^^^^^^~05/01/2013~
-~13468~^~306~^266.^1^^~1~^~AR~^^^^^^^^^^~05/01/2013~
-~13468~^~307~^43.^1^^~1~^~AR~^^^^^^^^^^~05/01/2013~
-~13468~^~318~^12.^0^^~4~^~NC~^^^^^^^^^^~05/01/2013~
-~13468~^~319~^4.^0^^~4~^~BFSN~^^^^^^^^^^~05/01/2013~
-~13468~^~320~^4.^0^^~4~^~NC~^^^^^^^^^^~05/01/2013~
-~13468~^~321~^0.^0^^~7~^~Z~^^^^^^^^^^~07/01/2001~
-~13468~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~07/01/2001~
-~13468~^~324~^2.^0^^~4~^~BFFN~^~23152~^^^^^^^^^~05/01/2013~
-~13468~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~07/01/2001~
-~13468~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~07/01/2001~
-~13468~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~07/01/2001~
-~13468~^~417~^4.^0^^~4~^~BFPN~^~23043~^^^^^^^^^~05/01/2013~
-~13468~^~431~^0.^0^^~4~^~BFPN~^~23043~^^^^^^^^^~05/01/2013~
-~13468~^~432~^4.^0^^~4~^~BFPN~^~23043~^^^^^^^^^~05/01/2013~
-~13468~^~435~^4.^0^^~4~^~NC~^~23043~^^^^^^^^^~05/01/2013~
-~13468~^~601~^57.^2^^~1~^~AR~^^^^^^^^^^~05/01/2013~
-~13469~^~208~^203.^0^^~4~^~NC~^^^^^^^^^^~07/01/2010~
-~13469~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~07/01/2001~
-~13469~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~07/01/2001~
-~13469~^~268~^847.^0^^~4~^~NC~^^^^^^^^^^~05/01/2013~
-~13469~^~301~^20.^1^^~1~^~AR~^^^^^^^^^^~05/01/2013~
-~13469~^~304~^23.^1^^~1~^~AR~^^^^^^^^^^~05/01/2013~
-~13469~^~305~^227.^1^^~1~^~AR~^^^^^^^^^^~05/01/2013~
-~13469~^~306~^292.^1^^~1~^~AR~^^^^^^^^^^~05/01/2013~
-~13469~^~307~^67.^1^^~1~^~AR~^^^^^^^^^^~05/01/2013~
-~13469~^~318~^7.^0^^~4~^~NC~^^^^^^^^^^~05/01/2013~
-~13469~^~319~^2.^0^^~4~^~BFSN~^^^^^^^^^^~05/01/2013~
-~13469~^~320~^2.^0^^~4~^~NC~^^^^^^^^^^~05/01/2013~
-~13469~^~321~^0.^0^^~7~^~Z~^^^^^^^^^^~07/01/2001~
-~13469~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~07/01/2001~
-~13469~^~324~^3.^0^^~4~^~BFFN~^~23147~^^^^^^^^^~05/01/2013~
-~13469~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~07/01/2001~
-~13469~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~07/01/2001~
-~13469~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~07/01/2001~
-~13469~^~417~^7.^0^^~4~^~BFPN~^~23044~^^^^^^^^^~05/01/2013~
-~13469~^~431~^0.^0^^~4~^~BFPN~^~23044~^^^^^^^^^~05/01/2013~
-~13469~^~432~^7.^0^^~4~^~BFPN~^~23044~^^^^^^^^^~05/01/2013~
-~13469~^~435~^7.^0^^~4~^~NC~^~23044~^^^^^^^^^~05/01/2013~
-~13469~^~601~^78.^2^^~1~^~AR~^^^^^^^^^^~05/01/2013~
-~13470~^~208~^194.^0^^~4~^~NC~^^^^^^^^^^~07/01/2010~
-~13470~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~07/01/2001~
-~13470~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~07/01/2001~
-~13470~^~268~^813.^0^^~4~^~NC~^^^^^^^^^^~07/01/2010~
-~13470~^~301~^6.^30^1.^~1~^~A~^^^2^4.^7.^1^-11.^22.^~2~^~07/01/2001~
-~13470~^~304~^25.^27^2.^~1~^~A~^^^2^22.^27.^1^-6.^55.^~2~^~07/01/2001~
-~13470~^~305~^211.^6^7.^~1~^~A~^^^^^^^^^^~10/01/1995~
-~13470~^~306~^367.^26^14.^~1~^~A~^^^^^^^^^^~10/01/1995~
-~13470~^~307~^69.^22^3.^~1~^~A~^^^^^^^^^^~10/01/1995~
-~13470~^~318~^0.^0^^~1~^~AS~^^^^^^^^^^~12/01/2001~
-~13470~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~07/01/2001~
-~13470~^~320~^0.^0^^~1~^~AS~^^^^^^^^^^~12/01/2001~
-~13470~^~321~^0.^0^^~7~^~Z~^^^^^^^^^^~07/01/2001~
-~13470~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~07/01/2001~
-~13470~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~07/01/2001~
-~13470~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~07/01/2001~
-~13470~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~07/01/2001~
-~13470~^~417~^8.^0^^~1~^~PAK~^^^^^^^^^^~10/01/1995~
-~13470~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~07/01/2001~
-~13470~^~432~^8.^0^^~1~^~PAK~^^^^^^^^^^~07/01/2010~
-~13470~^~435~^8.^0^^~4~^~NC~^^^^^^^^^^~07/01/2010~
-~13470~^~601~^84.^0^^~4~^~BFSN~^^^^^^^^^^~07/01/2010~
-~13473~^~208~^247.^0^^~4~^~NC~^^^^^^^^^^~06/01/2008~
-~13473~^~262~^0.^0^^~4~^~PIK~^^^^^^^^^^~04/01/2008~
-~13473~^~263~^0.^0^^~4~^~PIK~^^^^^^^^^^~04/01/2008~
-~13473~^~268~^1033.^0^^~4~^~NC~^^^^^^^^^^~06/01/2008~
-~13473~^~301~^5.^0^^~1~^~PAK~^^^^^^^^^^~04/01/2008~
-~13473~^~304~^24.^0^^~1~^~PAK~^^^^^^^^^^~04/01/2008~
-~13473~^~305~^199.^0^^~1~^~PAK~^^^^^^^^^^~04/01/2008~
-~13473~^~306~^302.^0^^~1~^~PAK~^^^^^^^^^^~04/01/2008~
-~13473~^~307~^67.^0^^~1~^~PAK~^^^^^^^^^^~04/01/2008~
-~13473~^~318~^0.^0^^~4~^~PIK~^^^^^^^^^^~04/01/2008~
-~13473~^~319~^0.^0^^~4~^~PIK~^^^^^^^^^^~04/01/2008~
-~13473~^~320~^0.^0^^~4~^~NC~^^^^^^^^^^~04/01/2008~
-~13473~^~321~^0.^0^^~4~^~PIK~^^^^^^^^^^~04/01/2008~
-~13473~^~322~^0.^0^^~4~^~PIK~^^^^^^^^^^~04/01/2008~
-~13473~^~334~^0.^0^^~4~^~PIK~^^^^^^^^^^~04/01/2008~
-~13473~^~337~^0.^0^^~4~^~PIK~^^^^^^^^^^~04/01/2008~
-~13473~^~338~^0.^0^^~4~^~PIK~^^^^^^^^^^~04/01/2008~
-~13473~^~417~^7.^0^^~1~^~PAK~^^^^^^^^^^~04/01/2008~
-~13473~^~431~^0.^0^^~4~^~PIK~^^^^^^^^^^~04/01/2008~
-~13473~^~432~^7.^0^^~1~^~PAK~^^^^^^^^^^~04/01/2008~
-~13473~^~435~^7.^0^^~4~^~NC~^^^^^^^^^^~06/01/2008~
-~13473~^~601~^60.^0^^~1~^~PAK~^^^^^^^^^^~04/01/2008~
-~13474~^~208~^258.^0^^~4~^~NC~^^^^^^^^^^~06/01/2008~
-~13474~^~262~^0.^0^^~4~^~PIK~^^^^^^^^^^~04/01/2008~
-~13474~^~263~^0.^0^^~4~^~PIK~^^^^^^^^^^~04/01/2008~
-~13474~^~268~^1081.^0^^~4~^~NC~^^^^^^^^^^~06/01/2008~
-~13474~^~301~^5.^0^^~1~^~PAK~^^^^^^^^^^~04/01/2008~
-~13474~^~304~^24.^0^^~1~^~PAK~^^^^^^^^^^~04/01/2008~
-~13474~^~305~^197.^0^^~1~^~PAK~^^^^^^^^^^~04/01/2008~
-~13474~^~306~^300.^0^^~1~^~PAK~^^^^^^^^^^~04/01/2008~
-~13474~^~307~^67.^0^^~1~^~PAK~^^^^^^^^^^~04/01/2008~
-~13474~^~318~^0.^0^^~1~^~PAK~^^^^^^^^^^~04/01/2008~
-~13474~^~319~^0.^0^^~4~^~PIK~^^^^^^^^^^~04/01/2008~
-~13474~^~320~^0.^0^^~1~^~PAK~^^^^^^^^^^~04/01/2008~
-~13474~^~321~^0.^0^^~4~^~PIK~^^^^^^^^^^~04/01/2008~
-~13474~^~322~^0.^0^^~4~^~PIK~^^^^^^^^^^~04/01/2008~
-~13474~^~334~^0.^0^^~4~^~PIK~^^^^^^^^^^~04/01/2008~
-~13474~^~337~^0.^0^^~4~^~PIK~^^^^^^^^^^~04/01/2008~
-~13474~^~338~^0.^0^^~4~^~PIK~^^^^^^^^^^~04/01/2008~
-~13474~^~417~^7.^0^^~1~^~PAK~^^^^^^^^^^~04/01/2008~
-~13474~^~431~^0.^0^^~4~^~PIK~^^^^^^^^^^~04/01/2008~
-~13474~^~432~^7.^0^^~1~^~PAK~^^^^^^^^^^~04/01/2008~
-~13474~^~435~^7.^0^^~4~^~NC~^^^^^^^^^^~06/01/2008~
-~13474~^~601~^61.^0^^~1~^~PAK~^^^^^^^^^^~04/01/2008~
-~13477~^~208~^230.^0^^~4~^~NC~^^^^^^^^^^~06/01/2008~
-~13477~^~262~^0.^0^^~4~^~PIK~^^^^^^^^^^~04/01/2008~
-~13477~^~263~^0.^0^^~4~^~PIK~^^^^^^^^^^~04/01/2008~
-~13477~^~268~^964.^0^^~4~^~NC~^^^^^^^^^^~06/01/2008~
-~13477~^~301~^5.^0^^~1~^~PAK~^^^^^^^^^^~04/01/2008~
-~13477~^~304~^24.^0^^~1~^~PAK~^^^^^^^^^^~04/01/2008~
-~13477~^~305~^200.^0^^~1~^~PAK~^^^^^^^^^^~04/01/2008~
-~13477~^~306~^305.^0^^~1~^~PAK~^^^^^^^^^^~04/01/2008~
-~13477~^~307~^68.^0^^~1~^~PAK~^^^^^^^^^^~04/01/2008~
-~13477~^~318~^0.^0^^~1~^~PAK~^^^^^^^^^^~04/01/2008~
-~13477~^~319~^0.^0^^~4~^~PIK~^^^^^^^^^^~04/01/2008~
-~13477~^~320~^0.^0^^~1~^~PAK~^^^^^^^^^^~04/01/2008~
-~13477~^~321~^0.^0^^~4~^~PIK~^^^^^^^^^^~04/01/2008~
-~13477~^~322~^0.^0^^~4~^~PIK~^^^^^^^^^^~04/01/2008~
-~13477~^~334~^0.^0^^~4~^~PIK~^^^^^^^^^^~04/01/2008~
-~13477~^~337~^0.^0^^~4~^~PIK~^^^^^^^^^^~04/01/2008~
-~13477~^~338~^0.^0^^~4~^~PIK~^^^^^^^^^^~04/01/2008~
-~13477~^~417~^7.^0^^~1~^~PAK~^^^^^^^^^^~04/01/2008~
-~13477~^~431~^0.^0^^~4~^~PIK~^^^^^^^^^^~04/01/2008~
-~13477~^~432~^7.^0^^~1~^~PAK~^^^^^^^^^^~04/01/2008~
-~13477~^~435~^7.^0^^~4~^~NC~^^^^^^^^^^~06/01/2008~
-~13477~^~601~^59.^0^^~1~^~PAK~^^^^^^^^^^~04/01/2008~
-~13478~^~208~^153.^0^^~4~^~NC~^^^^^^^^^^~05/01/2013~
-~13478~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2013~
-~13478~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2013~
-~13478~^~268~^642.^0^^~4~^~NC~^^^^^^^^^^~05/01/2013~
-~13478~^~301~^21.^3^^~1~^~AR~^^^^^^^^^^~05/01/2013~
-~13478~^~304~^11.^3^^~1~^~AR~^^^^^^^^^^~05/01/2013~
-~13478~^~305~^200.^3^^~1~^~AR~^^^^^^^^^^~05/01/2013~
-~13478~^~306~^267.^3^^~1~^~AR~^^^^^^^^^^~05/01/2013~
-~13478~^~307~^42.^3^^~1~^~AR~^^^^^^^^^^~05/01/2013~
-~13478~^~318~^7.^0^^~4~^~NC~^^^^^^^^^^~05/01/2013~
-~13478~^~319~^2.^0^^~4~^~BFSN~^^^^^^^^^^~05/01/2013~
-~13478~^~320~^2.^0^^~4~^~NC~^^^^^^^^^^~05/01/2013~
-~13478~^~321~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2013~
-~13478~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2013~
-~13478~^~324~^3.^0^^~4~^~BFFN~^~23150~^^^^^^^^^~06/01/2013~
-~13478~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2013~
-~13478~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2013~
-~13478~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2013~
-~13478~^~417~^4.^0^^~4~^~BFPN~^^^^^^^^^^~05/01/2013~
-~13478~^~431~^0.^0^^~4~^~BFPN~^^^^^^^^^^~09/01/2001~
-~13478~^~432~^4.^0^^~4~^~BFPN~^^^^^^^^^^~05/01/2013~
-~13478~^~435~^4.^0^^~4~^~NC~^^^^^^^^^^~05/01/2013~
-~13478~^~601~^59.^6^0.^~1~^~AR~^^^^^^^^^^~05/01/2013~
-~13479~^~208~^212.^0^^~4~^~NC~^^^^^^^^^^~05/01/2013~
-~13479~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2013~
-~13479~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2013~
-~13479~^~268~^889.^0^^~4~^~NC~^^^^^^^^^^~05/01/2013~
-~13479~^~301~^18.^3^^~1~^~AR~^^^^^^^^^^~05/01/2013~
-~13479~^~304~^21.^3^^~1~^~AR~^^^^^^^^^^~05/01/2013~
-~13479~^~305~^219.^3^^~1~^~AR~^^^^^^^^^^~05/01/2013~
-~13479~^~306~^290.^3^^~1~^~AR~^^^^^^^^^^~05/01/2013~
-~13479~^~307~^67.^3^^~1~^~AR~^^^^^^^^^^~05/01/2013~
-~13479~^~318~^6.^0^^~4~^~NC~^^^^^^^^^^~05/01/2013~
-~13479~^~319~^2.^0^^~4~^~BFSN~^^^^^^^^^^~05/01/2013~
-~13479~^~320~^2.^0^^~4~^~NC~^^^^^^^^^^~05/01/2013~
-~13479~^~321~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2013~
-~13479~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2013~
-~13479~^~324~^3.^0^^~4~^~BFFN~^~23146~^^^^^^^^^~05/01/2013~
-~13479~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2013~
-~13479~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2013~
-~13479~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2013~
-~13479~^~417~^7.^0^^~4~^~BFPN~^^^^^^^^^^~05/01/2013~
-~13479~^~431~^0.^0^^~4~^~BFPN~^^^^^^^^^^~09/01/2001~
-~13479~^~432~^7.^0^^~4~^~BFPN~^^^^^^^^^^~05/01/2013~
-~13479~^~435~^7.^0^^~4~^~NC~^^^^^^^^^^~05/01/2013~
-~13479~^~601~^82.^6^1.^~1~^~AR~^^^^^^^^^^~05/01/2013~
-~13481~^~208~^198.^0^^~4~^~NC~^^^^^^^^^^~07/01/2010~
-~13481~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~07/01/2001~
-~13481~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~07/01/2001~
-~13481~^~268~^827.^0^^~4~^~NC~^^^^^^^^^^~07/01/2010~
-~13481~^~301~^4.^29^2.^~1~^~A~^^^2^2.^6.^1^-21.^29.^~2~^~07/01/2001~
-~13481~^~304~^26.^27^1.^~1~^~A~^^^2^24.^28.^1^3.^49.^~2~^~07/01/2001~
-~13481~^~305~^215.^6^5.^~1~^~A~^^^^^^^^^^~10/01/1995~
-~13481~^~306~^327.^29^51.^~1~^~A~^^^2^275.^378.^1^-325.^979.^~2~^~07/01/2001~
-~13481~^~307~^71.^24^3.^~1~^~A~^^^^^^^^^^~10/01/1995~
-~13481~^~318~^0.^0^^~1~^~PAK~^^^^^^^^^^~04/01/2008~
-~13481~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~07/01/2001~
-~13481~^~320~^0.^0^^~1~^~AS~^^^^^^^^^^~12/01/2001~
-~13481~^~321~^0.^0^^~7~^~Z~^^^^^^^^^^~07/01/2001~
-~13481~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~07/01/2001~
-~13481~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~07/01/2001~
-~13481~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~07/01/2001~
-~13481~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~07/01/2001~
-~13481~^~417~^8.^0^^~1~^~PAK~^^^^^^^^^^~10/01/1995~
-~13481~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~07/01/2001~
-~13481~^~432~^8.^0^^~1~^~PAK~^^^^^^^^^^~07/01/2010~
-~13481~^~435~^8.^0^^~4~^~NC~^^^^^^^^^^~07/01/2010~
-~13481~^~601~^83.^0^^~4~^~BFSN~^^^^^^^^^^~07/01/2010~
-~13482~^~208~^144.^0^^~4~^~NC~^^^^^^^^^^~05/01/2013~
-~13482~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~07/01/2001~
-~13482~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~07/01/2001~
-~13482~^~268~^602.^0^^~4~^~NC~^^^^^^^^^^~05/01/2013~
-~13482~^~301~^23.^1^^~1~^~AR~^^^^^^^^^^~05/01/2013~
-~13482~^~304~^12.^1^^~1~^~AR~^^^^^^^^^^~05/01/2013~
-~13482~^~305~^214.^1^^~1~^~AR~^^^^^^^^^^~05/01/2013~
-~13482~^~306~^284.^1^^~1~^~AR~^^^^^^^^^^~05/01/2013~
-~13482~^~307~^57.^1^^~1~^~AR~^^^^^^^^^^~05/01/2013~
-~13482~^~318~^7.^0^^~4~^~NC~^^^^^^^^^^~05/01/2013~
-~13482~^~319~^2.^0^^~4~^~BFSN~^^^^^^^^^^~05/01/2013~
-~13482~^~320~^2.^0^^~4~^~NC~^^^^^^^^^^~05/01/2013~
-~13482~^~321~^0.^0^^~7~^~Z~^^^^^^^^^^~07/01/2001~
-~13482~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~07/01/2001~
-~13482~^~324~^2.^0^^~4~^~BFFN~^~23152~^^^^^^^^^~05/01/2013~
-~13482~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~07/01/2001~
-~13482~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~07/01/2001~
-~13482~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~07/01/2001~
-~13482~^~417~^4.^0^^~4~^~BFPN~^~23043~^^^^^^^^^~05/01/2013~
-~13482~^~431~^0.^0^^~4~^~BFPN~^~23043~^^^^^^^^^~05/01/2013~
-~13482~^~432~^4.^0^^~4~^~BFPN~^~23043~^^^^^^^^^~05/01/2013~
-~13482~^~435~^4.^0^^~4~^~NC~^~23043~^^^^^^^^^~05/01/2013~
-~13482~^~601~^59.^2^^~1~^~AR~^^^^^^^^^^~05/01/2013~
-~13483~^~208~^206.^0^^~4~^~NC~^^^^^^^^^^~05/01/2013~
-~13483~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~07/01/2001~
-~13483~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~07/01/2001~
-~13483~^~268~^861.^0^^~4~^~NC~^^^^^^^^^^~05/01/2013~
-~13483~^~301~^18.^1^^~1~^~AR~^^^^^^^^^^~05/01/2013~
-~13483~^~304~^24.^1^^~1~^~AR~^^^^^^^^^^~05/01/2013~
-~13483~^~305~^234.^1^^~1~^~AR~^^^^^^^^^^~05/01/2013~
-~13483~^~306~^304.^1^^~1~^~AR~^^^^^^^^^^~05/01/2013~
-~13483~^~307~^66.^1^^~1~^~AR~^^^^^^^^^^~05/01/2013~
-~13483~^~318~^7.^0^^~4~^~NC~^^^^^^^^^^~05/01/2013~
-~13483~^~319~^2.^0^^~4~^~BFSN~^^^^^^^^^^~05/01/2013~
-~13483~^~320~^2.^0^^~4~^~NC~^^^^^^^^^^~05/01/2013~
-~13483~^~321~^0.^0^^~7~^~Z~^^^^^^^^^^~07/01/2001~
-~13483~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~07/01/2001~
-~13483~^~324~^3.^0^^~4~^~BFFN~^~23147~^^^^^^^^^~05/01/2013~
-~13483~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~07/01/2001~
-~13483~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~07/01/2001~
-~13483~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~07/01/2001~
-~13483~^~417~^7.^0^^~4~^~BFPN~^~23044~^^^^^^^^^~05/01/2013~
-~13483~^~431~^0.^0^^~4~^~BFPN~^~23044~^^^^^^^^^~05/01/2013~
-~13483~^~432~^7.^0^^~4~^~BFPN~^~23044~^^^^^^^^^~05/01/2013~
-~13483~^~435~^7.^0^^~4~^~NC~^~23044~^^^^^^^^^~05/01/2013~
-~13483~^~601~^83.^2^^~1~^~AR~^^^^^^^^^^~05/01/2013~
-~13484~^~208~^177.^0^^~4~^~NC~^^^^^^^^^^~07/01/2010~
-~13484~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~07/01/2001~
-~13484~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~07/01/2001~
-~13484~^~268~^742.^0^^~4~^~NC~^^^^^^^^^^~07/01/2010~
-~13484~^~301~^4.^28^2.^~1~^~A~^^^2^2.^6.^1^-21.^29.^~2~^~07/01/2001~
-~13484~^~304~^26.^26^1.^~1~^~A~^^^2^24.^28.^1^3.^49.^~2~^~07/01/2001~
-~13484~^~305~^215.^6^5.^~1~^~A~^^^^^^^^^^~10/01/1995~
-~13484~^~306~^327.^28^51.^~1~^~A~^^^2^275.^378.^1^-325.^979.^~2~^~07/01/2001~
-~13484~^~307~^71.^24^3.^~1~^~A~^^^^^^^^^^~10/01/1995~
-~13484~^~318~^0.^0^^~1~^~AS~^^^^^^^^^^~12/01/2001~
-~13484~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~07/01/2001~
-~13484~^~320~^0.^0^^~1~^~AS~^^^^^^^^^^~12/01/2001~
-~13484~^~321~^0.^0^^~7~^~Z~^^^^^^^^^^~07/01/2001~
-~13484~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~07/01/2001~
-~13484~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~07/01/2001~
-~13484~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~07/01/2001~
-~13484~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~07/01/2001~
-~13484~^~417~^8.^0^^~1~^~PAK~^^^^^^^^^^~10/01/1995~
-~13484~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~07/01/2001~
-~13484~^~432~^8.^0^^~1~^~PAK~^^^^^^^^^^~07/01/2010~
-~13484~^~435~^8.^0^^~4~^~NC~^^^^^^^^^^~07/01/2010~
-~13484~^~601~^80.^0^^~4~^~BFSN~^^^^^^^^^^~07/01/2010~
-~13485~^~208~^198.^0^^~4~^~NC~^^^^^^^^^^~07/01/2010~
-~13485~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2003~
-~13485~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2003~
-~13485~^~268~^829.^0^^~4~^~NC~^^^^^^^^^^~07/01/2010~
-~13485~^~301~^17.^0^^~4~^~BFNN~^^^^^^^^^^~05/01/2003~
-~13485~^~304~^23.^0^^~4~^~BFNN~^^^^^^^^^^~05/01/2003~
-~13485~^~305~^214.^0^^~4~^~BFNN~^^^^^^^^^^~05/01/2003~
-~13485~^~306~^279.^0^^~4~^~BFNN~^^^^^^^^^^~05/01/2003~
-~13485~^~307~^56.^0^^~4~^~BFNN~^^^^^^^^^^~05/01/2003~
-~13485~^~318~^0.^0^^~1~^~AS~^^^^^^^^^^~05/01/2003~
-~13485~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2003~
-~13485~^~320~^0.^0^^~1~^~AS~^^^^^^^^^^~05/01/2003~
-~13485~^~321~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2003~
-~13485~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2003~
-~13485~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2003~
-~13485~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2003~
-~13485~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2003~
-~13485~^~417~^11.^0^^~4~^~BFPN~^^^^^^^^^^~05/01/2003~
-~13485~^~432~^11.^0^^~4~^~BFPN~^^^^^^^^^^~07/01/2010~
-~13485~^~601~^102.^0^^~4~^~BFSN~^~13597~^^^^^^^^^~07/01/2010~
-~13486~^~208~^151.^0^^~4~^~NC~^^^^^^^^^^~07/01/2010~
-~13486~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2003~
-~13486~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2003~
-~13486~^~268~^630.^0^^~4~^~NC~^^^^^^^^^^~07/01/2010~
-~13486~^~301~^19.^0^^~4~^~BFNN~^^^^^^^^^^~05/01/2003~
-~13486~^~304~^22.^0^^~4~^~BFNN~^^^^^^^^^^~05/01/2003~
-~13486~^~305~^194.^0^^~4~^~BFNN~^^^^^^^^^^~05/01/2003~
-~13486~^~306~^318.^0^^~4~^~BFNN~^^^^^^^^^^~05/01/2003~
-~13486~^~307~^55.^0^^~4~^~BFNN~^^^^^^^^^^~05/01/2003~
-~13486~^~318~^0.^0^^~1~^~AS~^^^^^^^^^^~05/01/2003~
-~13486~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2003~
-~13486~^~320~^0.^0^^~1~^~AS~^^^^^^^^^^~05/01/2003~
-~13486~^~321~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2003~
-~13486~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2003~
-~13486~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2003~
-~13486~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2003~
-~13486~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2003~
-~13486~^~417~^11.^0^^~4~^~BFPN~^^^^^^^^^^~05/01/2003~
-~13486~^~432~^11.^0^^~4~^~BFPN~^^^^^^^^^^~07/01/2010~
-~13486~^~601~^62.^0^^~4~^~BFSN~^^^^^^^^^^~07/01/2010~
-~13487~^~208~^156.^0^^~4~^~NC~^^^^^^^^^^~07/01/2010~
-~13487~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2003~
-~13487~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2003~
-~13487~^~268~^652.^0^^~4~^~NC~^^^^^^^^^^~07/01/2010~
-~13487~^~301~^15.^0^^~4~^~BFNN~^^^^^^^^^^~05/01/2003~
-~13487~^~304~^21.^0^^~4~^~BFNN~^^^^^^^^^^~05/01/2003~
-~13487~^~305~^191.^0^^~4~^~BFNN~^^^^^^^^^^~05/01/2003~
-~13487~^~306~^309.^0^^~4~^~BFNN~^^^^^^^^^^~05/01/2003~
-~13487~^~307~^51.^0^^~4~^~BFNN~^^^^^^^^^^~05/01/2003~
-~13487~^~318~^0.^0^^~1~^~AS~^^^^^^^^^^~05/01/2003~
-~13487~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2003~
-~13487~^~320~^0.^0^^~1~^~AS~^^^^^^^^^^~05/01/2003~
-~13487~^~321~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2003~
-~13487~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2003~
-~13487~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2003~
-~13487~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2003~
-~13487~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2003~
-~13487~^~417~^11.^0^^~4~^~BFPN~^^^^^^^^^^~05/01/2003~
-~13487~^~432~^11.^0^^~4~^~BFPN~^^^^^^^^^^~07/01/2010~
-~13487~^~601~^63.^0^^~4~^~BFSN~^^^^^^^^^^~07/01/2010~
-~13488~^~208~^145.^0^^~4~^~NC~^^^^^^^^^^~07/01/2010~
-~13488~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2003~
-~13488~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2003~
-~13488~^~268~^609.^0^^~4~^~NC~^^^^^^^^^^~07/01/2010~
-~13488~^~301~^23.^0^^~4~^~BFNN~^^^^^^^^^^~05/01/2003~
-~13488~^~304~^22.^0^^~4~^~BFNN~^^^^^^^^^^~05/01/2003~
-~13488~^~305~^196.^0^^~4~^~BFNN~^^^^^^^^^^~05/01/2003~
-~13488~^~306~^327.^0^^~4~^~BFNN~^^^^^^^^^^~05/01/2003~
-~13488~^~307~^58.^0^^~4~^~BFNN~^^^^^^^^^^~05/01/2003~
-~13488~^~318~^0.^0^^~1~^~AS~^^^^^^^^^^~05/01/2003~
-~13488~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2003~
-~13488~^~320~^0.^0^^~1~^~AS~^^^^^^^^^^~05/01/2003~
-~13488~^~321~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2003~
-~13488~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2003~
-~13488~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2003~
-~13488~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2003~
-~13488~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2003~
-~13488~^~417~^11.^0^^~4~^~BFPN~^^^^^^^^^^~05/01/2003~
-~13488~^~432~^11.^0^^~4~^~BFPN~^^^^^^^^^^~07/01/2010~
-~13488~^~601~^61.^0^^~4~^~BFSN~^^^^^^^^^^~07/01/2010~
-~13490~^~208~^182.^0^^~4~^~NC~^^^^^^^^^^~07/01/2010~
-~13490~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2003~
-~13490~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2003~
-~13490~^~268~^763.^0^^~4~^~NC~^^^^^^^^^^~07/01/2010~
-~13490~^~301~^21.^0^^~4~^~BFNN~^^^^^^^^^^~05/01/2003~
-~13490~^~304~^26.^0^^~4~^~BFNN~^^^^^^^^^^~05/01/2003~
-~13490~^~305~^242.^0^^~4~^~BFNN~^^^^^^^^^^~05/01/2003~
-~13490~^~306~^392.^0^^~4~^~BFNN~^^^^^^^^^^~05/01/2003~
-~13490~^~307~^63.^0^^~4~^~BFNN~^^^^^^^^^^~05/01/2003~
-~13490~^~318~^0.^0^^~1~^~AS~^^^^^^^^^^~05/01/2003~
-~13490~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2003~
-~13490~^~320~^0.^0^^~1~^~AS~^^^^^^^^^^~05/01/2003~
-~13490~^~321~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2003~
-~13490~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2003~
-~13490~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2003~
-~13490~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2003~
-~13490~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2003~
-~13490~^~417~^10.^0^^~4~^~BFPN~^^^^^^^^^^~05/01/2003~
-~13490~^~432~^10.^0^^~4~^~BFPN~^^^^^^^^^^~07/01/2010~
-~13490~^~601~^95.^0^^~4~^~BFSN~^~13981~^^^^^^^^^~07/01/2010~
-~13491~^~208~^162.^0^^~4~^~NC~^^^^^^^^^^~06/01/2013~
-~13491~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2003~
-~13491~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2003~
-~13491~^~268~^680.^0^^~4~^~NC~^^^^^^^^^^~06/01/2013~
-~13491~^~301~^18.^0^^~4~^~BFYN~^~23354~^^^^^^^^^~05/01/2013~
-~13491~^~304~^17.^0^^~4~^~BFYN~^~23354~^^^^^^^^^~05/01/2013~
-~13491~^~305~^306.^0^^~4~^~BFYN~^~23354~^^^^^^^^^~05/01/2013~
-~13491~^~306~^435.^0^^~4~^~BFYN~^~23354~^^^^^^^^^~05/01/2013~
-~13491~^~307~^75.^0^^~4~^~BFYN~^~23354~^^^^^^^^^~05/01/2013~
-~13491~^~318~^9.^0^^~4~^~BFYN~^~23354~^^^^^^^^^~05/01/2013~
-~13491~^~319~^3.^0^^~4~^~BFYN~^~23354~^^^^^^^^^~05/01/2013~
-~13491~^~320~^3.^0^^~4~^~BFYN~^~23354~^^^^^^^^^~05/01/2013~
-~13491~^~321~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2003~
-~13491~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2003~
-~13491~^~324~^1.^0^^~4~^~BFFN~^~23100~^^^^^^^^^~06/01/2013~
-~13491~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2003~
-~13491~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2003~
-~13491~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2003~
-~13491~^~417~^5.^0^^~4~^~BFYN~^~23354~^^^^^^^^^~05/01/2013~
-~13491~^~431~^0.^0^^~4~^~BFYN~^~23354~^^^^^^^^^~05/01/2013~
-~13491~^~432~^5.^0^^~4~^~BFYN~^~23354~^^^^^^^^^~05/01/2013~
-~13491~^~435~^5.^0^^~4~^~NC~^~23354~^^^^^^^^^~05/01/2013~
-~13491~^~601~^86.^0^^~4~^~BFYN~^~23354~^^^^^^^^^~05/01/2013~
-~13492~^~208~^166.^0^^~4~^~NC~^^^^^^^^^^~06/01/2013~
-~13492~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2003~
-~13492~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2003~
-~13492~^~268~^695.^0^^~4~^~NC~^^^^^^^^^^~06/01/2013~
-~13492~^~301~^18.^0^^~4~^~BFYN~^~23355~^^^^^^^^^~05/01/2013~
-~13492~^~304~^17.^0^^~4~^~BFYN~^~23355~^^^^^^^^^~05/01/2013~
-~13492~^~305~^307.^0^^~4~^~BFYN~^~23355~^^^^^^^^^~05/01/2013~
-~13492~^~306~^429.^0^^~4~^~BFYN~^~23355~^^^^^^^^^~05/01/2013~
-~13492~^~307~^78.^0^^~4~^~BFYN~^~23355~^^^^^^^^^~05/01/2013~
-~13492~^~318~^9.^0^^~4~^~BFYN~^~23355~^^^^^^^^^~05/01/2013~
-~13492~^~319~^3.^0^^~4~^~BFYN~^~23355~^^^^^^^^^~05/01/2013~
-~13492~^~320~^3.^0^^~4~^~BFYN~^~23355~^^^^^^^^^~05/01/2013~
-~13492~^~321~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2003~
-~13492~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2003~
-~13492~^~324~^2.^0^^~4~^~BFFN~^~23148~^^^^^^^^^~05/01/2013~
-~13492~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2003~
-~13492~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2003~
-~13492~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2003~
-~13492~^~417~^5.^0^^~4~^~BFYN~^~23355~^^^^^^^^^~05/01/2013~
-~13492~^~431~^0.^0^^~4~^~BFYN~^~23355~^^^^^^^^^~05/01/2013~
-~13492~^~432~^5.^0^^~4~^~BFYN~^~23355~^^^^^^^^^~05/01/2013~
-~13492~^~435~^5.^0^^~4~^~NC~^~23355~^^^^^^^^^~05/01/2013~
-~13492~^~601~^85.^0^^~4~^~BFYN~^~23355~^^^^^^^^^~05/01/2013~
-~13493~^~208~^158.^0^^~4~^~NC~^^^^^^^^^^~06/01/2013~
-~13493~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2003~
-~13493~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2003~
-~13493~^~268~^660.^0^^~4~^~NC~^^^^^^^^^^~06/01/2013~
-~13493~^~301~^19.^0^^~4~^~BFYN~^~23356~^^^^^^^^^~05/01/2013~
-~13493~^~304~^17.^0^^~4~^~BFYN~^~23356~^^^^^^^^^~05/01/2013~
-~13493~^~305~^305.^0^^~4~^~BFYN~^~23356~^^^^^^^^^~05/01/2013~
-~13493~^~306~^438.^0^^~4~^~BFYN~^~23356~^^^^^^^^^~05/01/2013~
-~13493~^~307~^76.^0^^~4~^~BFYN~^~23356~^^^^^^^^^~05/01/2013~
-~13493~^~318~^10.^0^^~4~^~BFYN~^~23356~^^^^^^^^^~05/01/2013~
-~13493~^~319~^3.^0^^~4~^~BFYN~^~23356~^^^^^^^^^~05/01/2013~
-~13493~^~320~^3.^0^^~4~^~BFYN~^~23356~^^^^^^^^^~05/01/2013~
-~13493~^~321~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2003~
-~13493~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2003~
-~13493~^~324~^1.^0^^~4~^~BFFN~^~23149~^^^^^^^^^~06/01/2013~
-~13493~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2003~
-~13493~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2003~
-~13493~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2003~
-~13493~^~417~^5.^0^^~4~^~BFYN~^~23356~^^^^^^^^^~05/01/2013~
-~13493~^~431~^0.^0^^~4~^~BFYN~^~23356~^^^^^^^^^~05/01/2013~
-~13493~^~432~^5.^0^^~4~^~BFYN~^~23356~^^^^^^^^^~05/01/2013~
-~13493~^~435~^5.^0^^~4~^~NC~^~23356~^^^^^^^^^~05/01/2013~
-~13493~^~601~^88.^0^^~4~^~BFYN~^~23356~^^^^^^^^^~05/01/2013~
-~13494~^~208~^270.^0^^~4~^~NC~^^^^^^^^^^~07/01/2015~
-~13494~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~10/01/2003~
-~13494~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~10/01/2003~
-~13494~^~268~^1131.^0^^~4~^~NC~^^^^^^^^^^~07/01/2015~
-~13494~^~301~^41.^12^7.^~1~^~AR~^^^^^^^^^^~03/01/2004~
-~13494~^~304~^20.^12^0.^~1~^~AR~^^^^^^^^^^~03/01/2004~
-~13494~^~305~^202.^12^7.^~1~^~AR~^^^^^^^^^^~03/01/2004~
-~13494~^~306~^328.^12^17.^~1~^~AR~^^^^^^^^^^~03/01/2004~
-~13494~^~307~^96.^12^4.^~1~^~AR~^^^^^^^^^^~03/01/2004~
-~13494~^~318~^9.^0^^~4~^~NC~^^^^^^^^^^~06/01/2014~
-~13494~^~319~^3.^0^^~4~^~NR~^^^^^^^^^^~06/01/2014~
-~13494~^~320~^3.^0^^~4~^~NC~^^^^^^^^^^~06/01/2014~
-~13494~^~321~^0.^0^^~7~^~Z~^^^^^^^^^^~10/01/2003~
-~13494~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~10/01/2003~
-~13494~^~324~^2.^0^^~4~^~NR~^^^^^^^^^^~06/01/2014~
-~13494~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~10/01/2003~
-~13494~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~10/01/2003~
-~13494~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~10/01/2003~
-~13494~^~417~^13.^6^2.^~1~^~AR~^^^^^^^^^^~03/01/2004~
-~13494~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~10/01/2003~
-~13494~^~432~^13.^6^2.^~1~^~AR~^^^^^^^^^^~02/01/2006~
-~13494~^~435~^13.^0^^~4~^~NC~^^^^^^^^^^~02/01/2006~
-~13494~^~601~^89.^12^2.^~1~^~AR~^^^^^^^^^^~04/01/2014~
-~13495~^~208~^241.^0^^~4~^~NC~^^^^^^^^^^~02/01/2006~
-~13495~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~10/01/2003~
-~13495~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~10/01/2003~
-~13495~^~268~^1007.^0^^~4~^~NC~^^^^^^^^^^~02/01/2006~
-~13495~^~301~^33.^12^6.^~1~^~AR~^^^^^^^^^^~03/01/2004~
-~13495~^~304~^17.^12^0.^~1~^~AR~^^^^^^^^^^~03/01/2004~
-~13495~^~305~^166.^12^7.^~1~^~AR~^^^^^^^^^^~03/01/2004~
-~13495~^~306~^241.^12^14.^~1~^~AR~^^^^^^^^^^~03/01/2004~
-~13495~^~307~^73.^12^2.^~1~^~AR~^^^^^^^^^^~03/01/2004~
-~13495~^~318~^9.^0^^~4~^~NC~^^^^^^^^^^~06/01/2014~
-~13495~^~319~^3.^0^^~4~^~NR~^^^^^^^^^^~06/01/2014~
-~13495~^~320~^3.^0^^~4~^~NC~^^^^^^^^^^~06/01/2014~
-~13495~^~321~^0.^0^^~7~^~Z~^^^^^^^^^^~10/01/2003~
-~13495~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~10/01/2003~
-~13495~^~324~^2.^0^^~4~^~NR~^^^^^^^^^^~06/01/2014~
-~13495~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~10/01/2003~
-~13495~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~10/01/2003~
-~13495~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~10/01/2003~
-~13495~^~417~^7.^6^2.^~1~^~AR~^^^^^^^^^^~03/01/2004~
-~13495~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~10/01/2003~
-~13495~^~432~^7.^6^2.^~1~^~AR~^^^^^^^^^^~02/01/2006~
-~13495~^~435~^7.^0^^~4~^~NC~^^^^^^^^^^~02/01/2006~
-~13495~^~601~^88.^12^2.^~1~^~AR~^^^^^^^^^^~05/01/2014~
-~13496~^~208~^238.^0^^~4~^~NC~^^^^^^^^^^~02/01/2006~
-~13496~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~10/01/2003~
-~13496~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~10/01/2003~
-~13496~^~268~^995.^0^^~4~^~NC~^^^^^^^^^^~02/01/2006~
-~13496~^~301~^37.^12^8.^~1~^~AR~^^^^^^^^^^~03/01/2004~
-~13496~^~304~^20.^12^0.^~1~^~AR~^^^^^^^^^^~03/01/2004~
-~13496~^~305~^194.^12^8.^~1~^~AR~^^^^^^^^^^~03/01/2004~
-~13496~^~306~^308.^12^19.^~1~^~AR~^^^^^^^^^^~03/01/2004~
-~13496~^~307~^92.^12^3.^~1~^~AR~^^^^^^^^^^~03/01/2004~
-~13496~^~318~^10.^0^^~4~^~NC~^^^^^^^^^^~06/01/2014~
-~13496~^~319~^3.^0^^~4~^~NR~^^^^^^^^^^~06/01/2014~
-~13496~^~320~^3.^0^^~4~^~NC~^^^^^^^^^^~06/01/2014~
-~13496~^~321~^0.^0^^~7~^~Z~^^^^^^^^^^~10/01/2003~
-~13496~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~10/01/2003~
-~13496~^~324~^2.^0^^~4~^~NR~^^^^^^^^^^~06/01/2014~
-~13496~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~10/01/2003~
-~13496~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~10/01/2003~
-~13496~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~10/01/2003~
-~13496~^~417~^10.^0^^~4~^~BFPN~^~13497~^^^^^^^^^~02/01/2006~
-~13496~^~431~^0.^0^^~4~^~BFPN~^~13497~^^^^^^^^^~05/01/2014~
-~13496~^~432~^10.^0^^~4~^~BFPN~^~13497~^^^^^^^^^~02/01/2006~
-~13496~^~435~^10.^0^^~4~^~NC~^~13497~^^^^^^^^^~03/01/2006~
-~13496~^~601~^84.^12^1.^~1~^~AR~^^^^^^^^^^~05/01/2014~
-~13497~^~208~^277.^0^^~4~^~NC~^^^^^^^^^^~05/01/2014~
-~13497~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~10/01/2003~
-~13497~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~10/01/2003~
-~13497~^~268~^1158.^0^^~4~^~NC~^^^^^^^^^^~05/01/2014~
-~13497~^~301~^35.^36^4.^~1~^~AR~^^^^^^^^^^~03/01/2004~
-~13497~^~304~^19.^36^0.^~1~^~AR~^^^^^^^^^^~03/01/2004~
-~13497~^~305~^185.^36^4.^~1~^~AR~^^^^^^^^^^~03/01/2004~
-~13497~^~306~^275.^36^6.^~1~^~AR~^^^^^^^^^^~03/01/2004~
-~13497~^~307~^81.^36^2.^~1~^~AR~^^^^^^^^^^~03/01/2004~
-~13497~^~318~^9.^0^^~4~^~NC~^^^^^^^^^^~06/01/2014~
-~13497~^~319~^3.^0^^~4~^~NR~^^^^^^^^^^~06/01/2014~
-~13497~^~320~^3.^0^^~4~^~NC~^^^^^^^^^^~06/01/2014~
-~13497~^~321~^0.^0^^~7~^~Z~^^^^^^^^^^~10/01/2003~
-~13497~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~10/01/2003~
-~13497~^~324~^2.^0^^~4~^~NR~^^^^^^^^^^~06/01/2014~
-~13497~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~10/01/2003~
-~13497~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~10/01/2003~
-~13497~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~10/01/2003~
-~13497~^~417~^11.^6^2.^~1~^~AR~^^^^^^^^^^~03/01/2004~
-~13497~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~10/01/2003~
-~13497~^~432~^11.^6^2.^~1~^~AR~^^^^^^^^^^~02/01/2006~
-~13497~^~435~^11.^0^^~4~^~NC~^^^^^^^^^^~02/01/2006~
-~13497~^~601~^88.^36^1.^~1~^~AR~^^^^^^^^^^~05/01/2014~
-~13498~^~208~^332.^0^^~4~^~NC~^^^^^^^^^^~02/01/2006~
-~13498~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~10/01/2003~
-~13498~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~10/01/2003~
-~13498~^~268~^1389.^0^^~4~^~NC~^^^^^^^^^^~02/01/2006~
-~13498~^~301~^24.^36^4.^~1~^~AR~^^^^^^^^^^~03/01/2004~
-~13498~^~304~^14.^36^0.^~1~^~AR~^^^^^^^^^^~03/01/2004~
-~13498~^~305~^132.^36^3.^~1~^~AR~^^^^^^^^^^~03/01/2004~
-~13498~^~306~^218.^36^6.^~1~^~AR~^^^^^^^^^^~03/01/2004~
-~13498~^~307~^66.^36^1.^~1~^~AR~^^^^^^^^^^~05/01/2014~
-~13498~^~318~^14.^0^^~1~^~AS~^^^^^^^^^^~06/01/2014~
-~13498~^~319~^4.^6^0.^~1~^~AR~^^^^^^^^^^~06/01/2014~
-~13498~^~320~^4.^0^^~1~^~AS~^^^^^^^^^^~06/01/2014~
-~13498~^~321~^0.^0^^~7~^~Z~^^^^^^^^^^~10/01/2003~
-~13498~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~10/01/2003~
-~13498~^~324~^3.^16^^~1~^~AR~^^^^^^^^^^~06/01/2014~
-~13498~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~10/01/2003~
-~13498~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~10/01/2003~
-~13498~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~10/01/2003~
-~13498~^~417~^9.^6^1.^~1~^~AR~^^^^^^^^^^~05/01/2014~
-~13498~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~10/01/2003~
-~13498~^~432~^9.^6^1.^~1~^~AR~^^^^^^^^^^~05/01/2014~
-~13498~^~435~^9.^0^^~4~^~NC~^^^^^^^^^^~05/01/2014~
-~13498~^~601~^78.^36^2.^~1~^~AR~^^^^^^^^^^~10/01/2003~
-~13499~^~208~^157.^0^^~4~^~NC~^^^^^^^^^^~05/01/2010~
-~13499~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2010~
-~13499~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2010~
-~13499~^~268~^655.^0^^~4~^~NC~^^^^^^^^^^~05/01/2010~
-~13499~^~301~^11.^1^^~1~^~AR~^^^^^^^^^^~05/01/2010~
-~13499~^~304~^20.^1^^~1~^~AR~^^^^^^^^^^~05/01/2010~
-~13499~^~305~^186.^1^^~1~^~AR~^^^^^^^^^^~05/01/2010~
-~13499~^~306~^329.^1^^~1~^~AR~^^^^^^^^^^~05/01/2010~
-~13499~^~307~^77.^1^^~1~^~AR~^^^^^^^^^^~05/01/2010~
-~13499~^~318~^8.^0^^~4~^~NC~^^^^^^^^^^~05/01/2010~
-~13499~^~319~^2.^0^^~4~^~BFSN~^^^^^^^^^^~05/01/2010~
-~13499~^~320~^2.^0^^~4~^~NC~^^^^^^^^^^~05/01/2010~
-~13499~^~321~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2010~
-~13499~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2010~
-~13499~^~324~^4.^0^^~4~^~BFSN~^^^^^^^^^^~05/01/2010~
-~13499~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2010~
-~13499~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2010~
-~13499~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2010~
-~13499~^~417~^3.^0^^~4~^~BFPN~^~23043~^^^^^^^^^~05/01/2010~
-~13499~^~431~^0.^0^^~4~^~BFPN~^~23043~^^^^^^^^^~05/01/2010~
-~13499~^~432~^3.^0^^~4~^~BFPN~^~23043~^^^^^^^^^~05/01/2010~
-~13499~^~435~^3.^0^^~4~^~NC~^~23043~^^^^^^^^^~05/01/2010~
-~13499~^~601~^68.^2^^~1~^~AR~^^^^^^^^^^~07/01/2010~
-~13500~^~208~^196.^0^^~4~^~NC~^^^^^^^^^^~06/01/2010~
-~13500~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2010~
-~13500~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2010~
-~13500~^~268~^819.^0^^~4~^~NC~^^^^^^^^^^~06/01/2010~
-~13500~^~301~^14.^3^^~1~^~AR~^^^^^^^^^^~06/01/2010~
-~13500~^~304~^23.^3^^~1~^~AR~^^^^^^^^^^~06/01/2010~
-~13500~^~305~^224.^3^^~1~^~AR~^^^^^^^^^^~06/01/2010~
-~13500~^~306~^390.^3^^~1~^~AR~^^^^^^^^^^~06/01/2010~
-~13500~^~307~^87.^3^^~1~^~AR~^^^^^^^^^^~06/01/2010~
-~13500~^~318~^6.^0^^~4~^~NC~^^^^^^^^^^~06/01/2010~
-~13500~^~319~^2.^0^^~4~^~BFSN~^^^^^^^^^^~06/01/2010~
-~13500~^~320~^2.^0^^~4~^~NC~^^^^^^^^^^~06/01/2010~
-~13500~^~321~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2010~
-~13500~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2010~
-~13500~^~324~^5.^0^^~4~^~BFSN~^^^^^^^^^^~06/01/2010~
-~13500~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2010~
-~13500~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2010~
-~13500~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2010~
-~13500~^~417~^7.^0^^~4~^~BFPN~^^^^^^^^^^~06/01/2010~
-~13500~^~431~^0.^0^^~4~^~BFPN~^^^^^^^^^^~06/01/2010~
-~13500~^~432~^7.^0^^~4~^~BFPN~^^^^^^^^^^~06/01/2010~
-~13500~^~435~^7.^0^^~4~^~NC~^^^^^^^^^^~06/01/2010~
-~13500~^~601~^95.^6^1.^~1~^~AR~^^^^^^^^^^~07/01/2010~
-~13501~^~208~^202.^0^^~4~^~NC~^^^^^^^^^^~06/01/2010~
-~13501~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2010~
-~13501~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2010~
-~13501~^~268~^844.^0^^~4~^~NC~^^^^^^^^^^~06/01/2010~
-~13501~^~301~^14.^2^^~1~^~AR~^^^^^^^^^^~06/01/2010~
-~13501~^~304~^23.^2^^~1~^~AR~^^^^^^^^^^~06/01/2010~
-~13501~^~305~^226.^2^^~1~^~AR~^^^^^^^^^^~06/01/2010~
-~13501~^~306~^389.^2^^~1~^~AR~^^^^^^^^^^~06/01/2010~
-~13501~^~307~^85.^2^^~1~^~AR~^^^^^^^^^^~06/01/2010~
-~13501~^~318~^5.^0^^~4~^~NC~^^^^^^^^^^~06/01/2010~
-~13501~^~319~^1.^0^^~4~^~BFSN~^^^^^^^^^^~06/01/2010~
-~13501~^~320~^1.^0^^~4~^~NC~^^^^^^^^^^~06/01/2010~
-~13501~^~321~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2010~
-~13501~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2010~
-~13501~^~324~^5.^0^^~4~^~BFSN~^^^^^^^^^^~06/01/2010~
-~13501~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2010~
-~13501~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2010~
-~13501~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2010~
-~13501~^~417~^7.^0^^~4~^~BFPN~^~23042~^^^^^^^^^~06/01/2010~
-~13501~^~431~^0.^0^^~4~^~BFPN~^~23042~^^^^^^^^^~06/01/2010~
-~13501~^~432~^7.^0^^~4~^~BFPN~^~23042~^^^^^^^^^~06/01/2010~
-~13501~^~435~^7.^0^^~4~^~NC~^~23042~^^^^^^^^^~06/01/2010~
-~13501~^~601~^93.^4^2.^~1~^~AR~^^^^^^^^^^~07/01/2010~
-~13502~^~208~^187.^0^^~4~^~NC~^^^^^^^^^^~06/01/2010~
-~13502~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2010~
-~13502~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2010~
-~13502~^~268~^782.^0^^~4~^~NC~^^^^^^^^^^~06/01/2010~
-~13502~^~301~^14.^1^^~1~^~AR~^^^^^^^^^^~06/01/2010~
-~13502~^~304~^24.^1^^~1~^~AR~^^^^^^^^^^~06/01/2010~
-~13502~^~305~^228.^1^^~1~^~AR~^^^^^^^^^^~06/01/2010~
-~13502~^~306~^394.^1^^~1~^~AR~^^^^^^^^^^~06/01/2010~
-~13502~^~307~^89.^1^^~1~^~AR~^^^^^^^^^^~06/01/2010~
-~13502~^~318~^7.^0^^~4~^~NC~^^^^^^^^^^~06/01/2010~
-~13502~^~319~^2.^0^^~4~^~BFSN~^^^^^^^^^^~06/01/2010~
-~13502~^~320~^2.^0^^~4~^~NC~^^^^^^^^^^~06/01/2010~
-~13502~^~321~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2010~
-~13502~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2010~
-~13502~^~324~^4.^0^^~4~^~BFSN~^^^^^^^^^^~06/01/2010~
-~13502~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2010~
-~13502~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2010~
-~13502~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2010~
-~13502~^~417~^7.^0^^~4~^~BFPN~^~23044~^^^^^^^^^~06/01/2010~
-~13502~^~431~^0.^0^^~4~^~BFPN~^~23044~^^^^^^^^^~06/01/2010~
-~13502~^~432~^7.^0^^~4~^~BFPN~^~23044~^^^^^^^^^~06/01/2010~
-~13502~^~435~^7.^0^^~4~^~NC~^~23044~^^^^^^^^^~06/01/2010~
-~13502~^~601~^98.^2^^~1~^~AR~^^^^^^^^^^~07/01/2010~
-~13519~^~208~^139.^0^^~4~^~NC~^^^^^^^^^^~06/01/2010~
-~13519~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2010~
-~13519~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2010~
-~13519~^~268~^583.^0^^~4~^~NC~^^^^^^^^^^~06/01/2010~
-~13519~^~301~^12.^3^^~1~^~AR~^^^^^^^^^^~06/01/2010~
-~13519~^~304~^20.^3^^~1~^~AR~^^^^^^^^^^~06/01/2010~
-~13519~^~305~^203.^3^^~1~^~AR~^^^^^^^^^^~06/01/2010~
-~13519~^~306~^338.^3^^~1~^~AR~^^^^^^^^^^~06/01/2010~
-~13519~^~307~^83.^3^^~1~^~AR~^^^^^^^^^^~06/01/2010~
-~13519~^~318~^6.^0^^~4~^~NC~^^^^^^^^^^~06/01/2010~
-~13519~^~319~^2.^0^^~4~^~BFSN~^^^^^^^^^^~06/01/2010~
-~13519~^~320~^2.^0^^~4~^~NC~^^^^^^^^^^~06/01/2010~
-~13519~^~321~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2010~
-~13519~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2010~
-~13519~^~324~^4.^0^^~4~^~BFSN~^^^^^^^^^^~06/01/2010~
-~13519~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2010~
-~13519~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2010~
-~13519~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2010~
-~13519~^~417~^3.^0^^~4~^~BFPN~^^^^^^^^^^~06/01/2010~
-~13519~^~431~^0.^0^^~4~^~BFPN~^^^^^^^^^^~06/01/2010~
-~13519~^~432~^3.^0^^~4~^~BFPN~^^^^^^^^^^~06/01/2010~
-~13519~^~435~^3.^0^^~4~^~NC~^^^^^^^^^^~06/01/2010~
-~13519~^~601~^69.^6^1.^~1~^~AR~^^^^^^^^^^~07/01/2010~
-~13520~^~208~^143.^0^^~4~^~NC~^^^^^^^^^^~06/01/2010~
-~13520~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2010~
-~13520~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2010~
-~13520~^~268~^599.^0^^~4~^~NC~^^^^^^^^^^~06/01/2010~
-~13520~^~301~^12.^2^^~1~^~AR~^^^^^^^^^^~06/01/2010~
-~13520~^~304~^19.^2^^~1~^~AR~^^^^^^^^^^~06/01/2010~
-~13520~^~305~^202.^2^^~1~^~AR~^^^^^^^^^^~06/01/2010~
-~13520~^~306~^340.^2^^~1~^~AR~^^^^^^^^^^~06/01/2010~
-~13520~^~307~^82.^2^^~1~^~AR~^^^^^^^^^^~06/01/2010~
-~13520~^~318~^6.^0^^~4~^~NC~^^^^^^^^^^~06/01/2010~
-~13520~^~319~^2.^0^^~4~^~BFSN~^^^^^^^^^^~06/01/2010~
-~13520~^~320~^2.^0^^~4~^~NC~^^^^^^^^^^~06/01/2010~
-~13520~^~321~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2010~
-~13520~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2010~
-~13520~^~324~^4.^0^^~4~^~BFSN~^^^^^^^^^^~06/01/2010~
-~13520~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2010~
-~13520~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2010~
-~13520~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2010~
-~13520~^~417~^3.^0^^~4~^~BFPN~^~23041~^^^^^^^^^~06/01/2010~
-~13520~^~431~^0.^0^^~4~^~BFPN~^~23041~^^^^^^^^^~06/01/2010~
-~13520~^~432~^3.^0^^~4~^~BFPN~^~23041~^^^^^^^^^~06/01/2010~
-~13520~^~435~^3.^0^^~4~^~NC~^~23041~^^^^^^^^^~06/01/2010~
-~13520~^~601~^68.^4^1.^~1~^~AR~^^^^^^^^^^~07/01/2010~
-~13523~^~208~^133.^0^^~4~^~NC~^^^^^^^^^^~06/01/2010~
-~13523~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2010~
-~13523~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2010~
-~13523~^~268~^557.^0^^~4~^~NC~^^^^^^^^^^~06/01/2010~
-~13523~^~301~^12.^1^^~1~^~AR~^^^^^^^^^^~06/01/2010~
-~13523~^~304~^20.^1^^~1~^~AR~^^^^^^^^^^~06/01/2010~
-~13523~^~305~^211.^1^^~1~^~AR~^^^^^^^^^^~06/01/2010~
-~13523~^~306~^346.^1^^~1~^~AR~^^^^^^^^^^~06/01/2010~
-~13523~^~307~^87.^1^^~1~^~AR~^^^^^^^^^^~06/01/2010~
-~13523~^~318~^7.^0^^~4~^~NC~^^^^^^^^^^~06/01/2010~
-~13523~^~319~^2.^0^^~4~^~BFSN~^^^^^^^^^^~06/01/2010~
-~13523~^~320~^2.^0^^~4~^~NC~^^^^^^^^^^~06/01/2010~
-~13523~^~321~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2010~
-~13523~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2010~
-~13523~^~324~^3.^0^^~4~^~BFSN~^^^^^^^^^^~06/01/2010~
-~13523~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2010~
-~13523~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2010~
-~13523~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2010~
-~13523~^~417~^3.^0^^~4~^~BFPN~^~23043~^^^^^^^^^~06/01/2010~
-~13523~^~431~^0.^0^^~4~^~BFPN~^~23043~^^^^^^^^^~06/01/2010~
-~13523~^~432~^3.^0^^~4~^~BFPN~^~23043~^^^^^^^^^~06/01/2010~
-~13523~^~435~^3.^0^^~4~^~NC~^~23043~^^^^^^^^^~06/01/2010~
-~13523~^~601~^71.^2^^~1~^~AR~^^^^^^^^^^~07/01/2010~
-~13595~^~208~^132.^0^^~4~^~NC~^^^^^^^^^^~06/01/2010~
-~13595~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2010~
-~13595~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2010~
-~13595~^~268~^552.^0^^~4~^~NC~^^^^^^^^^^~06/01/2010~
-~13595~^~301~^13.^6^0.^~1~^~AR~^^^^^^^^^^~06/01/2010~
-~13595~^~304~^24.^6^0.^~1~^~AR~^^^^^^^^^^~06/01/2010~
-~13595~^~305~^222.^6^2.^~1~^~AR~^^^^^^^^^^~06/01/2010~
-~13595~^~306~^362.^6^6.^~1~^~AR~^^^^^^^^^^~06/01/2010~
-~13595~^~307~^83.^6^1.^~1~^~AR~^^^^^^^^^^~06/01/2010~
-~13595~^~318~^6.^0^^~4~^~NC~^^^^^^^^^^~06/01/2010~
-~13595~^~319~^2.^0^^~4~^~BFSN~^^^^^^^^^^~06/01/2010~
-~13595~^~320~^2.^0^^~4~^~NC~^^^^^^^^^^~06/01/2010~
-~13595~^~321~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2010~
-~13595~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2010~
-~13595~^~324~^4.^0^^~4~^~BFSN~^^^^^^^^^^~06/01/2010~
-~13595~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2010~
-~13595~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2010~
-~13595~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2010~
-~13595~^~417~^3.^0^^~4~^~BFPN~^^^^^^^^^^~06/01/2010~
-~13595~^~431~^0.^0^^~4~^~BFPN~^^^^^^^^^^~06/01/2010~
-~13595~^~432~^3.^0^^~4~^~BFPN~^^^^^^^^^^~06/01/2010~
-~13595~^~435~^3.^0^^~4~^~NC~^^^^^^^^^^~06/01/2010~
-~13595~^~601~^67.^6^1.^~1~^~AR~^^^^^^^^^^~07/01/2010~
-~13596~^~208~^137.^0^^~4~^~NC~^^^^^^^^^^~06/01/2010~
-~13596~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2010~
-~13596~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2010~
-~13596~^~268~^573.^0^^~4~^~NC~^^^^^^^^^^~06/01/2010~
-~13596~^~301~^13.^4^0.^~1~^~AR~^^^^^^^^^^~06/01/2010~
-~13596~^~304~^24.^4^0.^~1~^~AR~^^^^^^^^^^~06/01/2010~
-~13596~^~305~^224.^4^2.^~1~^~AR~^^^^^^^^^^~06/01/2010~
-~13596~^~306~^367.^4^7.^~1~^~AR~^^^^^^^^^^~06/01/2010~
-~13596~^~307~^82.^4^1.^~1~^~AR~^^^^^^^^^^~06/01/2010~
-~13596~^~318~^6.^0^^~4~^~NC~^^^^^^^^^^~06/01/2010~
-~13596~^~319~^2.^0^^~4~^~BFSN~^^^^^^^^^^~06/01/2010~
-~13596~^~320~^2.^0^^~4~^~NC~^^^^^^^^^^~06/01/2010~
-~13596~^~321~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2010~
-~13596~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2010~
-~13596~^~324~^4.^0^^~4~^~BFSN~^^^^^^^^^^~06/01/2010~
-~13596~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2010~
-~13596~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2010~
-~13596~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2010~
-~13596~^~417~^3.^0^^~4~^~BFPN~^~23041~^^^^^^^^^~06/01/2010~
-~13596~^~431~^0.^0^^~4~^~BFPN~^~23041~^^^^^^^^^~06/01/2010~
-~13596~^~432~^3.^0^^~4~^~BFPN~^~23041~^^^^^^^^^~06/01/2010~
-~13596~^~435~^3.^0^^~4~^~NC~^~23041~^^^^^^^^^~06/01/2010~
-~13596~^~601~^67.^4^2.^~1~^~AR~^^^^^^^^^^~07/01/2010~
-~13597~^~208~^124.^0^^~4~^~NC~^^^^^^^^^^~06/01/2010~
-~13597~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2010~
-~13597~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2010~
-~13597~^~268~^520.^0^^~4~^~NC~^^^^^^^^^^~06/01/2010~
-~13597~^~301~^13.^2^^~1~^~AR~^^^^^^^^^^~06/01/2010~
-~13597~^~304~^24.^2^^~1~^~AR~^^^^^^^^^^~06/01/2010~
-~13597~^~305~^218.^2^^~1~^~AR~^^^^^^^^^^~06/01/2010~
-~13597~^~306~^353.^2^^~1~^~AR~^^^^^^^^^^~06/01/2010~
-~13597~^~307~^85.^2^^~1~^~AR~^^^^^^^^^^~06/01/2010~
-~13597~^~318~^7.^0^^~4~^~NC~^^^^^^^^^^~06/01/2010~
-~13597~^~319~^2.^0^^~4~^~BFSN~^^^^^^^^^^~06/01/2010~
-~13597~^~320~^2.^0^^~4~^~NC~^^^^^^^^^^~06/01/2010~
-~13597~^~321~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2010~
-~13597~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2010~
-~13597~^~324~^3.^0^^~4~^~BFSN~^^^^^^^^^^~06/01/2010~
-~13597~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2010~
-~13597~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2010~
-~13597~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2010~
-~13597~^~417~^3.^0^^~4~^~BFPN~^~23043~^^^^^^^^^~06/01/2010~
-~13597~^~431~^0.^0^^~4~^~BFPN~^~23043~^^^^^^^^^~06/01/2010~
-~13597~^~432~^3.^0^^~4~^~BFPN~^~23043~^^^^^^^^^~06/01/2010~
-~13597~^~435~^3.^0^^~4~^~NC~^~23043~^^^^^^^^^~06/01/2010~
-~13597~^~601~^69.^2^^~1~^~AR~^^^^^^^^^^~07/01/2010~
-~13598~^~208~^210.^0^^~4~^~NC~^^^^^^^^^^~07/01/2010~
-~13598~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~07/01/2010~
-~13598~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~07/01/2010~
-~13598~^~268~^879.^0^^~4~^~NC~^^^^^^^^^^~07/01/2010~
-~13598~^~301~^14.^3^^~1~^~AR~^^^^^^^^^^~07/01/2010~
-~13598~^~304~^23.^3^^~1~^~AR~^^^^^^^^^^~07/01/2010~
-~13598~^~305~^217.^3^^~1~^~AR~^^^^^^^^^^~07/01/2010~
-~13598~^~306~^379.^3^^~1~^~AR~^^^^^^^^^^~07/01/2010~
-~13598~^~307~^85.^3^^~1~^~AR~^^^^^^^^^^~07/01/2010~
-~13598~^~318~^22.^0^^~4~^~NC~^^^^^^^^^^~07/01/2010~
-~13598~^~319~^7.^0^^~4~^~BFSN~^^^^^^^^^^~07/01/2010~
-~13598~^~320~^7.^0^^~4~^~NC~^^^^^^^^^^~07/01/2010~
-~13598~^~321~^0.^0^^~7~^~Z~^^^^^^^^^^~07/01/2010~
-~13598~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~07/01/2010~
-~13598~^~324~^5.^0^^~4~^~BFSN~^^^^^^^^^^~07/01/2010~
-~13598~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~07/01/2010~
-~13598~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~07/01/2010~
-~13598~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~07/01/2010~
-~13598~^~417~^7.^0^^~4~^~BFPN~^^^^^^^^^^~07/01/2010~
-~13598~^~431~^0.^0^^~4~^~BFPN~^^^^^^^^^^~07/01/2010~
-~13598~^~432~^7.^0^^~4~^~BFPN~^^^^^^^^^^~07/01/2010~
-~13598~^~435~^7.^0^^~4~^~NC~^^^^^^^^^^~07/01/2010~
-~13598~^~601~^95.^6^1.^~1~^~AR~^^^^^^^^^^~07/01/2010~
-~13647~^~208~^123.^0^^~4~^~NC~^^^^^^^^^^~06/01/2010~
-~13647~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2010~
-~13647~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2010~
-~13647~^~268~^516.^0^^~4~^~NC~^^^^^^^^^^~06/01/2010~
-~13647~^~301~^12.^2^^~1~^~AR~^^^^^^^^^^~06/01/2010~
-~13647~^~304~^25.^2^^~1~^~AR~^^^^^^^^^^~06/01/2010~
-~13647~^~305~^236.^2^^~1~^~AR~^^^^^^^^^^~06/01/2010~
-~13647~^~306~^399.^2^^~1~^~AR~^^^^^^^^^^~06/01/2010~
-~13647~^~307~^73.^2^^~1~^~AR~^^^^^^^^^^~06/01/2010~
-~13647~^~318~^6.^0^^~4~^~NC~^^^^^^^^^^~06/01/2010~
-~13647~^~319~^2.^0^^~4~^~BFSN~^^^^^^^^^^~06/01/2010~
-~13647~^~320~^2.^0^^~4~^~NC~^^^^^^^^^^~06/01/2010~
-~13647~^~321~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2010~
-~13647~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2010~
-~13647~^~324~^1.^2^^~1~^~AR~^^^^^^^^^^~06/01/2010~
-~13647~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2010~
-~13647~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2010~
-~13647~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2010~
-~13647~^~417~^3.^0^^~4~^~BFPN~^^^^^^^^^^~06/01/2010~
-~13647~^~431~^0.^0^^~4~^~BFPN~^^^^^^^^^^~06/01/2010~
-~13647~^~432~^3.^0^^~4~^~BFPN~^^^^^^^^^^~06/01/2010~
-~13647~^~435~^3.^0^^~4~^~NC~^^^^^^^^^^~06/01/2010~
-~13647~^~601~^65.^6^2.^~1~^~AR~^^^^^^^^^^~07/01/2010~
-~13648~^~208~^125.^0^^~4~^~NC~^^^^^^^^^^~07/01/2010~
-~13648~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2010~
-~13648~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2010~
-~13648~^~268~^525.^0^^~4~^~NC~^^^^^^^^^^~07/01/2010~
-~13648~^~301~^12.^4^0.^~1~^~AR~^^^^^^^^^^~07/01/2010~
-~13648~^~304~^25.^4^0.^~1~^~AR~^^^^^^^^^^~07/01/2010~
-~13648~^~305~^237.^4^2.^~1~^~AR~^^^^^^^^^^~07/01/2010~
-~13648~^~306~^408.^4^10.^~1~^~AR~^^^^^^^^^^~07/01/2010~
-~13648~^~307~^74.^4^1.^~1~^~AR~^^^^^^^^^^~07/01/2010~
-~13648~^~318~^5.^0^^~4~^~NC~^^^^^^^^^^~07/01/2010~
-~13648~^~319~^2.^0^^~4~^~BFSN~^^^^^^^^^^~06/01/2010~
-~13648~^~320~^2.^0^^~4~^~NC~^^^^^^^^^^~07/01/2010~
-~13648~^~321~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2010~
-~13648~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2010~
-~13648~^~324~^2.^4^0.^~1~^~AR~^^^^^^^^^^~07/01/2010~
-~13648~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2010~
-~13648~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2010~
-~13648~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2010~
-~13648~^~417~^4.^0^^~4~^~BFPN~^~23041~^^^^^^^^^~06/01/2010~
-~13648~^~431~^0.^0^^~4~^~BFPN~^~23041~^^^^^^^^^~06/01/2010~
-~13648~^~432~^4.^0^^~4~^~BFPN~^~23041~^^^^^^^^^~06/01/2010~
-~13648~^~435~^4.^0^^~4~^~NC~^~23041~^^^^^^^^^~07/01/2010~
-~13648~^~601~^64.^4^3.^~1~^~AR~^^^^^^^^^^~07/01/2010~
-~13649~^~208~^121.^0^^~4~^~NC~^^^^^^^^^^~06/01/2010~
-~13649~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2010~
-~13649~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2010~
-~13649~^~268~^506.^0^^~4~^~NC~^^^^^^^^^^~06/01/2010~
-~13649~^~301~^12.^6^0.^~1~^~AR~^^^^^^^^^^~06/01/2010~
-~13649~^~304~^26.^6^0.^~1~^~AR~^^^^^^^^^^~06/01/2010~
-~13649~^~305~^235.^6^3.^~1~^~AR~^^^^^^^^^^~06/01/2010~
-~13649~^~306~^386.^6^14.^~1~^~AR~^^^^^^^^^^~06/01/2010~
-~13649~^~307~^71.^6^2.^~1~^~AR~^^^^^^^^^^~06/01/2010~
-~13649~^~318~^7.^0^^~4~^~NC~^^^^^^^^^^~06/01/2010~
-~13649~^~319~^2.^0^^~4~^~BFSN~^^^^^^^^^^~06/01/2010~
-~13649~^~320~^2.^0^^~4~^~NC~^^^^^^^^^^~06/01/2010~
-~13649~^~321~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2010~
-~13649~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2010~
-~13649~^~324~^1.^6^0.^~1~^~AR~^^^^^^^^^^~06/01/2010~
-~13649~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2010~
-~13649~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2010~
-~13649~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2010~
-~13649~^~417~^4.^0^^~4~^~BFPN~^~23043~^^^^^^^^^~06/01/2010~
-~13649~^~431~^0.^0^^~4~^~BFPN~^~23043~^^^^^^^^^~06/01/2010~
-~13649~^~432~^4.^0^^~4~^~BFPN~^~23043~^^^^^^^^^~06/01/2010~
-~13649~^~435~^4.^0^^~4~^~NC~^~23043~^^^^^^^^^~06/01/2010~
-~13649~^~601~^68.^2^^~1~^~AR~^^^^^^^^^^~07/01/2010~
-~13650~^~208~^220.^0^^~4~^~NC~^^^^^^^^^^~07/01/2010~
-~13650~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~07/01/2010~
-~13650~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~07/01/2010~
-~13650~^~268~^922.^0^^~4~^~NC~^^^^^^^^^^~07/01/2010~
-~13650~^~301~^14.^2^^~1~^~AR~^^^^^^^^^^~07/01/2010~
-~13650~^~304~^22.^2^^~1~^~AR~^^^^^^^^^^~07/01/2010~
-~13650~^~305~^217.^2^^~1~^~AR~^^^^^^^^^^~07/01/2010~
-~13650~^~306~^374.^2^^~1~^~AR~^^^^^^^^^^~07/01/2010~
-~13650~^~307~^84.^2^^~1~^~AR~^^^^^^^^^^~07/01/2010~
-~13650~^~318~^21.^0^^~4~^~NC~^^^^^^^^^^~07/01/2010~
-~13650~^~319~^6.^0^^~4~^~BFSN~^^^^^^^^^^~07/01/2010~
-~13650~^~320~^6.^0^^~4~^~NC~^^^^^^^^^^~07/01/2010~
-~13650~^~321~^0.^0^^~7~^~Z~^^^^^^^^^^~07/01/2010~
-~13650~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~07/01/2010~
-~13650~^~324~^5.^0^^~4~^~BFSN~^^^^^^^^^^~07/01/2010~
-~13650~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~07/01/2010~
-~13650~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~07/01/2010~
-~13650~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~07/01/2010~
-~13650~^~417~^7.^0^^~4~^~BFPN~^~23042~^^^^^^^^^~07/01/2010~
-~13650~^~431~^0.^0^^~4~^~BFPN~^~23042~^^^^^^^^^~07/01/2010~
-~13650~^~432~^7.^0^^~4~^~BFPN~^~23042~^^^^^^^^^~07/01/2010~
-~13650~^~435~^7.^0^^~4~^~NC~^~23042~^^^^^^^^^~07/01/2010~
-~13650~^~601~^92.^4^2.^~1~^~AR~^^^^^^^^^^~07/01/2010~
-~13786~^~208~^180.^0^^~4~^~NC~^^^^^^^^^^~07/01/2010~
-~13786~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~07/01/2010~
-~13786~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~07/01/2010~
-~13786~^~268~^753.^0^^~4~^~NC~^^^^^^^^^^~07/01/2010~
-~13786~^~301~^17.^3^^~1~^~AR~^^^^^^^^^^~07/01/2010~
-~13786~^~304~^19.^3^^~1~^~AR~^^^^^^^^^^~07/01/2010~
-~13786~^~305~^189.^3^^~1~^~AR~^^^^^^^^^^~07/01/2010~
-~13786~^~306~^332.^3^^~1~^~AR~^^^^^^^^^^~07/01/2010~
-~13786~^~307~^81.^3^^~1~^~AR~^^^^^^^^^^~07/01/2010~
-~13786~^~318~^13.^0^^~4~^~NC~^^^^^^^^^^~07/01/2010~
-~13786~^~319~^4.^0^^~4~^~BFSN~^^^^^^^^^^~07/01/2010~
-~13786~^~320~^4.^0^^~4~^~NC~^^^^^^^^^^~07/01/2010~
-~13786~^~321~^0.^0^^~7~^~Z~^^^^^^^^^^~07/01/2010~
-~13786~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~07/01/2010~
-~13786~^~324~^4.^0^^~4~^~BFSN~^^^^^^^^^^~07/01/2010~
-~13786~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~07/01/2010~
-~13786~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~07/01/2010~
-~13786~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~07/01/2010~
-~13786~^~417~^3.^0^^~4~^~BFPN~^^^^^^^^^^~07/01/2010~
-~13786~^~431~^0.^0^^~4~^~BFPN~^^^^^^^^^^~07/01/2010~
-~13786~^~432~^3.^0^^~4~^~BFPN~^^^^^^^^^^~07/01/2010~
-~13786~^~435~^3.^0^^~4~^~NC~^^^^^^^^^^~07/01/2010~
-~13786~^~601~^69.^6^1.^~1~^~AR~^^^^^^^^^^~07/01/2010~
-~13788~^~208~^185.^0^^~4~^~NC~^^^^^^^^^^~07/01/2010~
-~13788~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~07/01/2010~
-~13788~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~07/01/2010~
-~13788~^~268~^773.^0^^~4~^~NC~^^^^^^^^^^~07/01/2010~
-~13788~^~301~^17.^2^^~1~^~AR~^^^^^^^^^^~07/01/2010~
-~13788~^~304~^19.^2^^~1~^~AR~^^^^^^^^^^~07/01/2010~
-~13788~^~305~^186.^2^^~1~^~AR~^^^^^^^^^^~07/01/2010~
-~13788~^~306~^310.^2^^~1~^~AR~^^^^^^^^^^~07/01/2010~
-~13788~^~307~^80.^2^^~1~^~AR~^^^^^^^^^^~07/01/2010~
-~13788~^~318~^12.^0^^~4~^~NC~^^^^^^^^^^~07/01/2010~
-~13788~^~319~^4.^0^^~4~^~BFSN~^^^^^^^^^^~07/01/2010~
-~13788~^~320~^4.^0^^~4~^~NC~^^^^^^^^^^~07/01/2010~
-~13788~^~321~^0.^0^^~7~^~Z~^^^^^^^^^^~07/01/2010~
-~13788~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~07/01/2010~
-~13788~^~324~^4.^0^^~4~^~BFSN~^^^^^^^^^^~07/01/2010~
-~13788~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~07/01/2010~
-~13788~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~07/01/2010~
-~13788~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~07/01/2010~
-~13788~^~417~^3.^0^^~4~^~BFPN~^~23041~^^^^^^^^^~07/01/2010~
-~13788~^~431~^0.^0^^~4~^~BFPN~^~23041~^^^^^^^^^~07/01/2010~
-~13788~^~432~^3.^0^^~4~^~BFPN~^~23041~^^^^^^^^^~07/01/2010~
-~13788~^~435~^3.^0^^~4~^~NC~^~23041~^^^^^^^^^~07/01/2010~
-~13788~^~601~^67.^4^2.^~1~^~AR~^^^^^^^^^^~07/01/2010~
-~13791~^~208~^173.^0^^~4~^~NC~^^^^^^^^^^~07/01/2010~
-~13791~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~07/01/2010~
-~13791~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~07/01/2010~
-~13791~^~268~^724.^0^^~4~^~NC~^^^^^^^^^^~07/01/2010~
-~13791~^~301~^18.^1^^~1~^~AR~^^^^^^^^^^~07/01/2010~
-~13791~^~304~^19.^1^^~1~^~AR~^^^^^^^^^^~07/01/2010~
-~13791~^~305~^187.^1^^~1~^~AR~^^^^^^^^^^~07/01/2010~
-~13791~^~306~^367.^1^^~1~^~AR~^^^^^^^^^^~07/01/2010~
-~13791~^~307~^82.^1^^~1~^~AR~^^^^^^^^^^~07/01/2010~
-~13791~^~318~^13.^0^^~4~^~NC~^^^^^^^^^^~07/01/2010~
-~13791~^~319~^4.^0^^~4~^~BFSN~^^^^^^^^^^~07/01/2010~
-~13791~^~320~^4.^0^^~4~^~NC~^^^^^^^^^^~07/01/2010~
-~13791~^~321~^0.^0^^~7~^~Z~^^^^^^^^^^~07/01/2010~
-~13791~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~07/01/2010~
-~13791~^~324~^4.^0^^~4~^~BFSN~^^^^^^^^^^~07/01/2010~
-~13791~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~07/01/2010~
-~13791~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~07/01/2010~
-~13791~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~07/01/2010~
-~13791~^~417~^3.^0^^~4~^~BFPN~^~23043~^^^^^^^^^~07/01/2010~
-~13791~^~431~^0.^0^^~4~^~BFPN~^~23043~^^^^^^^^^~07/01/2010~
-~13791~^~432~^3.^0^^~4~^~BFPN~^~23043~^^^^^^^^^~07/01/2010~
-~13791~^~435~^3.^0^^~4~^~NC~^~23043~^^^^^^^^^~07/01/2010~
-~13791~^~601~^73.^2^^~1~^~AR~^^^^^^^^^^~07/01/2010~
-~13795~^~208~^215.^0^^~4~^~NC~^^^^^^^^^^~05/01/2016~
-~13795~^~262~^0.^0^^~4~^~PIK~^^^^^^^^^^~06/01/2015~
-~13795~^~263~^0.^0^^~4~^~PIK~^^^^^^^^^^~06/01/2015~
-~13795~^~268~^902.^0^^~4~^~NC~^^^^^^^^^^~05/01/2016~
-~13795~^~301~^17.^0^^~4~^~PIK~^^^^^^^^^^~06/01/2015~
-~13795~^~304~^19.^0^^~4~^~PIK~^^^^^^^^^^~12/01/1995~
-~13795~^~305~^174.^0^^~4~^~PIK~^^^^^^^^^^~06/01/2015~
-~13795~^~306~^283.^0^^~4~^~PIK~^^^^^^^^^^~06/01/2015~
-~13795~^~307~^52.^0^^~4~^~PIK~^^^^^^^^^^~06/01/2015~
-~13795~^~318~^7.^0^^~4~^~PIK~^^^^^^^^^^~06/01/2015~
-~13795~^~319~^2.^0^^~4~^~PIK~^^^^^^^^^^~06/01/2015~
-~13795~^~320~^2.^0^^~4~^~PIK~^^^^^^^^^^~06/01/2015~
-~13795~^~321~^0.^0^^~4~^~PIK~^^^^^^^^^^~06/01/2015~
-~13795~^~322~^0.^0^^~4~^~PIK~^^^^^^^^^^~06/01/2015~
-~13795~^~324~^2.^0^^~4~^~PIK~^^^^^^^^^^~06/01/2015~
-~13795~^~334~^0.^0^^~4~^~PIK~^^^^^^^^^^~06/01/2015~
-~13795~^~337~^0.^0^^~4~^~PIK~^^^^^^^^^^~06/01/2015~
-~13795~^~338~^0.^0^^~4~^~PIK~^^^^^^^^^^~06/01/2015~
-~13795~^~417~^8.^0^^~4~^~PIK~^^^^^^^^^^~06/01/2015~
-~13795~^~431~^0.^0^^~4~^~PIK~^^^^^^^^^^~06/01/2015~
-~13795~^~432~^8.^0^^~4~^~PIK~^^^^^^^^^^~06/01/2015~
-~13795~^~435~^8.^0^^~4~^~NC~^^^^^^^^^^~06/01/2015~
-~13795~^~601~^72.^0^^~4~^~PIK~^^^^^^^^^^~06/01/2015~
-~13796~^~208~^259.^0^^~4~^~PIK~^^^^^^^^^^~06/01/2015~
-~13796~^~262~^0.^0^^~4~^~PIK~^^^^^^^^^^~06/01/2015~
-~13796~^~263~^0.^0^^~4~^~PIK~^^^^^^^^^^~06/01/2015~
-~13796~^~268~^1084.^0^^~4~^~PIK~^^^^^^^^^^~06/01/2015~
-~13796~^~301~^13.^0^^~4~^~PIK~^^^^^^^^^^~06/01/2015~
-~13796~^~304~^20.^0^^~4~^~PIK~^^^^^^^^^^~06/01/2015~
-~13796~^~305~^180.^0^^~4~^~PIK~^^^^^^^^^^~06/01/2015~
-~13796~^~306~^271.^0^^~4~^~PIK~^^^^^^^^^^~06/01/2015~
-~13796~^~307~^50.^0^^~4~^~PIK~^^^^^^^^^^~06/01/2015~
-~13796~^~318~^11.^0^^~4~^~PIK~^^^^^^^^^^~06/01/2015~
-~13796~^~319~^3.^0^^~4~^~PIK~^^^^^^^^^^~06/01/2015~
-~13796~^~320~^3.^0^^~4~^~PIK~^^^^^^^^^^~06/01/2015~
-~13796~^~321~^0.^0^^~4~^~PIK~^^^^^^^^^^~06/01/2015~
-~13796~^~322~^0.^0^^~4~^~PIK~^^^^^^^^^^~06/01/2015~
-~13796~^~324~^6.^0^^~4~^~PIK~^^^^^^^^^^~06/01/2015~
-~13796~^~334~^0.^0^^~4~^~PIK~^^^^^^^^^^~06/01/2015~
-~13796~^~337~^0.^0^^~4~^~PIK~^^^^^^^^^^~06/01/2015~
-~13796~^~338~^0.^0^^~4~^~PIK~^^^^^^^^^^~06/01/2015~
-~13796~^~417~^7.^0^^~4~^~PIK~^^^^^^^^^^~12/01/1995~
-~13796~^~431~^0.^0^^~4~^~PIK~^^^^^^^^^^~06/01/2015~
-~13796~^~432~^7.^0^^~4~^~PIK~^^^^^^^^^^~03/01/2009~
-~13796~^~435~^7.^0^^~4~^~NC~^^^^^^^^^^~11/01/2009~
-~13796~^~601~^87.^0^^~4~^~PIK~^^^^^^^^^^~12/01/1995~
-~13797~^~208~^224.^0^^~4~^~NC~^^^^^^^^^^~05/01/2016~
-~13797~^~262~^0.^0^^~4~^~PIK~^^^^^^^^^^~07/01/2015~
-~13797~^~263~^0.^0^^~4~^~PIK~^^^^^^^^^^~07/01/2015~
-~13797~^~268~^935.^0^^~4~^~NC~^^^^^^^^^^~05/01/2016~
-~13797~^~301~^17.^0^^~4~^~PIK~^^^^^^^^^^~07/01/2015~
-~13797~^~304~^19.^0^^~4~^~PIK~^^^^^^^^^^~12/01/1995~
-~13797~^~305~^171.^0^^~4~^~PIK~^^^^^^^^^^~07/01/2015~
-~13797~^~306~^276.^0^^~4~^~PIK~^^^^^^^^^^~07/01/2015~
-~13797~^~307~^50.^0^^~4~^~PIK~^^^^^^^^^^~07/01/2015~
-~13797~^~318~^6.^0^^~4~^~PIK~^^^^^^^^^^~07/01/2015~
-~13797~^~319~^2.^0^^~4~^~PIK~^^^^^^^^^^~07/01/2015~
-~13797~^~320~^2.^0^^~4~^~PIK~^^^^^^^^^^~07/01/2015~
-~13797~^~321~^0.^0^^~4~^~PIK~^^^^^^^^^^~07/01/2015~
-~13797~^~322~^0.^0^^~4~^~PIK~^^^^^^^^^^~07/01/2015~
-~13797~^~324~^2.^0^^~4~^~PIK~^^^^^^^^^^~07/01/2015~
-~13797~^~334~^0.^0^^~4~^~PIK~^^^^^^^^^^~07/01/2015~
-~13797~^~337~^0.^0^^~4~^~PIK~^^^^^^^^^^~07/01/2015~
-~13797~^~338~^0.^0^^~4~^~PIK~^^^^^^^^^^~07/01/2015~
-~13797~^~417~^8.^0^^~4~^~PIK~^^^^^^^^^^~07/01/2015~
-~13797~^~431~^0.^0^^~4~^~PIK~^^^^^^^^^^~07/01/2015~
-~13797~^~432~^8.^0^^~4~^~PIK~^^^^^^^^^^~07/01/2015~
-~13797~^~435~^8.^0^^~4~^~NC~^^^^^^^^^^~07/01/2015~
-~13797~^~601~^72.^0^^~4~^~PIK~^^^^^^^^^^~07/01/2015~
-~13798~^~208~^268.^0^^~4~^~PIK~^^^^^^^^^^~07/01/2015~
-~13798~^~262~^0.^0^^~4~^~PIK~^^^^^^^^^^~07/01/2015~
-~13798~^~263~^0.^0^^~4~^~PIK~^^^^^^^^^^~07/01/2015~
-~13798~^~268~^1121.^0^^~4~^~PIK~^^^^^^^^^^~07/01/2015~
-~13798~^~301~^13.^0^^~4~^~PIK~^^^^^^^^^^~07/01/2015~
-~13798~^~304~^20.^0^^~4~^~PIK~^^^^^^^^^^~07/01/2015~
-~13798~^~305~^175.^0^^~4~^~PIK~^^^^^^^^^^~07/01/2015~
-~13798~^~306~^265.^0^^~4~^~PIK~^^^^^^^^^^~07/01/2015~
-~13798~^~307~^49.^0^^~4~^~PIK~^^^^^^^^^^~07/01/2015~
-~13798~^~318~^11.^0^^~4~^~PIK~^^^^^^^^^^~07/01/2015~
-~13798~^~319~^3.^0^^~4~^~PIK~^^^^^^^^^^~07/01/2015~
-~13798~^~320~^3.^0^^~4~^~PIK~^^^^^^^^^^~07/01/2015~
-~13798~^~321~^0.^0^^~4~^~PIK~^^^^^^^^^^~07/01/2015~
-~13798~^~322~^0.^0^^~4~^~PIK~^^^^^^^^^^~07/01/2015~
-~13798~^~324~^4.^0^^~4~^~PIK~^^^^^^^^^^~07/01/2015~
-~13798~^~334~^0.^0^^~4~^~PIK~^^^^^^^^^^~07/01/2015~
-~13798~^~337~^0.^0^^~4~^~PIK~^^^^^^^^^^~07/01/2015~
-~13798~^~338~^0.^0^^~4~^~PIK~^^^^^^^^^^~07/01/2015~
-~13798~^~417~^7.^0^^~4~^~PIK~^^^^^^^^^^~12/01/1995~
-~13798~^~431~^0.^0^^~4~^~PIK~^^^^^^^^^^~07/01/2015~
-~13798~^~432~^7.^0^^~4~^~PIK~^^^^^^^^^^~04/01/2008~
-~13798~^~435~^7.^0^^~4~^~NC~^^^^^^^^^^~06/01/2008~
-~13798~^~601~^89.^0^^~4~^~PIK~^^^^^^^^^^~07/01/2015~
-~13799~^~208~^193.^0^^~4~^~NC~^^^^^^^^^^~05/01/2016~
-~13799~^~262~^0.^0^^~4~^~PIK~^^^^^^^^^^~07/01/2015~
-~13799~^~263~^0.^0^^~4~^~PIK~^^^^^^^^^^~07/01/2015~
-~13799~^~268~^809.^0^^~4~^~NC~^^^^^^^^^^~05/01/2016~
-~13799~^~301~^17.^0^^~4~^~PIK~^^^^^^^^^^~07/01/2015~
-~13799~^~304~^19.^0^^~4~^~PIK~^^^^^^^^^^~12/01/1995~
-~13799~^~305~^168.^0^^~4~^~PIK~^^^^^^^^^^~07/01/2015~
-~13799~^~306~^279.^0^^~4~^~PIK~^^^^^^^^^^~07/01/2015~
-~13799~^~307~^51.^0^^~4~^~PIK~^^^^^^^^^^~07/01/2015~
-~13799~^~318~^6.^0^^~4~^~PIK~^^^^^^^^^^~07/01/2015~
-~13799~^~319~^2.^0^^~4~^~PIK~^^^^^^^^^^~07/01/2015~
-~13799~^~320~^2.^0^^~4~^~PIK~^^^^^^^^^^~07/01/2015~
-~13799~^~321~^0.^0^^~4~^~PIK~^^^^^^^^^^~07/01/2015~
-~13799~^~322~^0.^0^^~4~^~PIK~^^^^^^^^^^~07/01/2015~
-~13799~^~324~^2.^0^^~4~^~PIK~^^^^^^^^^^~07/01/2015~
-~13799~^~334~^0.^0^^~4~^~PIK~^^^^^^^^^^~07/01/2015~
-~13799~^~337~^0.^0^^~4~^~PIK~^^^^^^^^^^~07/01/2015~
-~13799~^~338~^0.^0^^~4~^~PIK~^^^^^^^^^^~07/01/2015~
-~13799~^~417~^7.^0^^~4~^~PIK~^^^^^^^^^^~12/01/1995~
-~13799~^~431~^0.^0^^~4~^~PIK~^^^^^^^^^^~07/01/2015~
-~13799~^~432~^7.^0^^~4~^~PIK~^^^^^^^^^^~04/01/2008~
-~13799~^~435~^7.^0^^~4~^~NC~^^^^^^^^^^~06/01/2008~
-~13799~^~601~^68.^0^^~4~^~PIK~^^^^^^^^^^~07/01/2015~
-~13800~^~208~^245.^0^^~4~^~PIK~^^^^^^^^^^~07/01/2015~
-~13800~^~262~^0.^0^^~4~^~PIK~^^^^^^^^^^~07/01/2015~
-~13800~^~263~^0.^0^^~4~^~PIK~^^^^^^^^^^~07/01/2015~
-~13800~^~268~^1026.^0^^~4~^~PIK~^^^^^^^^^^~07/01/2015~
-~13800~^~301~^13.^0^^~4~^~PIK~^^^^^^^^^^~07/01/2015~
-~13800~^~304~^20.^0^^~4~^~PIK~^^^^^^^^^^~07/01/2015~
-~13800~^~305~^174.^0^^~4~^~PIK~^^^^^^^^^^~07/01/2015~
-~13800~^~306~^262.^0^^~4~^~PIK~^^^^^^^^^^~07/01/2015~
-~13800~^~307~^51.^0^^~4~^~PIK~^^^^^^^^^^~07/01/2015~
-~13800~^~318~^10.^0^^~4~^~PIK~^^^^^^^^^^~07/01/2015~
-~13800~^~319~^3.^0^^~4~^~PIK~^^^^^^^^^^~07/01/2015~
-~13800~^~320~^3.^0^^~4~^~PIK~^^^^^^^^^^~07/01/2015~
-~13800~^~321~^0.^0^^~4~^~PIK~^^^^^^^^^^~07/01/2015~
-~13800~^~322~^0.^0^^~4~^~PIK~^^^^^^^^^^~07/01/2015~
-~13800~^~324~^3.^0^^~4~^~PIK~^^^^^^^^^^~07/01/2015~
-~13800~^~334~^0.^0^^~4~^~PIK~^^^^^^^^^^~07/01/2015~
-~13800~^~337~^0.^0^^~4~^~PIK~^^^^^^^^^^~07/01/2015~
-~13800~^~338~^0.^0^^~4~^~PIK~^^^^^^^^^^~07/01/2015~
-~13800~^~417~^7.^0^^~4~^~PIK~^^^^^^^^^^~07/01/2015~
-~13800~^~431~^0.^0^^~4~^~PIK~^^^^^^^^^^~07/01/2015~
-~13800~^~432~^7.^0^^~4~^~PIK~^^^^^^^^^^~07/01/2015~
-~13800~^~435~^7.^0^^~4~^~NC~^^^^^^^^^^~07/01/2015~
-~13800~^~601~^85.^0^^~4~^~PIK~^^^^^^^^^^~07/01/2015~
-~13803~^~208~^253.^0^^~4~^~NC~^^^^^^^^^^~05/01/2016~
-~13803~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2008~
-~13803~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2008~
-~13803~^~268~^1057.^0^^~4~^~NC~^^^^^^^^^^~05/01/2016~
-~13803~^~301~^6.^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~
-~13803~^~304~^19.^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~
-~13803~^~305~^177.^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~
-~13803~^~306~^282.^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~
-~13803~^~307~^69.^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~
-~13803~^~318~^0.^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~
-~13803~^~320~^0.^0^^~1~^~AS~^^^^^^^^^^~04/01/2008~
-~13803~^~321~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2008~
-~13803~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2008~
-~13803~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2008~
-~13803~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2008~
-~13803~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2008~
-~13803~^~417~^6.^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~
-~13803~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~
-~13803~^~432~^6.^0^^~4~^~PAE~^^^^^^^^^^~04/01/2008~
-~13803~^~435~^6.^0^^~4~^~NC~^^^^^^^^^^~06/01/2008~
-~13803~^~601~^68.^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~
-~13804~^~208~^331.^0^^~4~^~NC~^^^^^^^^^^~12/01/1995~
-~13804~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2007~
-~13804~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2007~
-~13804~^~268~^1385.^0^^~4~^^^^^^^^^^^~03/01/2009~
-~13804~^~301~^7.^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~
-~13804~^~304~^20.^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~
-~13804~^~305~^207.^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~
-~13804~^~306~^251.^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~
-~13804~^~307~^64.^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~
-~13804~^~318~^0.^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~
-~13804~^~319~^0.^0^^~4~^~BFSN~^~13892~^^^^^^^^^~03/01/2007~
-~13804~^~320~^0.^0^^~1~^~AS~^^^^^^^^^^~03/01/2007~
-~13804~^~321~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2007~
-~13804~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2007~
-~13804~^~324~^16.^0^^~4~^~BFFN~^^^^^^^^^^~03/01/2009~
-~13804~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2007~
-~13804~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2007~
-~13804~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2007~
-~13804~^~417~^7.^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~
-~13804~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~
-~13804~^~432~^7.^0^^~4~^~PAE~^^^^^^^^^^~03/01/2009~
-~13804~^~435~^7.^0^^~4~^~NC~^^^^^^^^^^~11/01/2009~
-~13804~^~601~^93.^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~
-~13805~^~208~^277.^0^^~4~^~NC~^^^^^^^^^^~07/01/2010~
-~13805~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2003~
-~13805~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2003~
-~13805~^~268~^1158.^0^^~4~^~NC~^^^^^^^^^^~07/01/2010~
-~13805~^~301~^16.^0^^~4~^~BFNN~^^^^^^^^^^~04/01/2003~
-~13805~^~304~^18.^0^^~4~^~BFNN~^^^^^^^^^^~04/01/2003~
-~13805~^~305~^165.^0^^~4~^~BFNN~^^^^^^^^^^~04/01/2003~
-~13805~^~306~^276.^0^^~4~^~BFNN~^^^^^^^^^^~04/01/2003~
-~13805~^~307~^59.^0^^~4~^~BFNN~^^^^^^^^^^~04/01/2003~
-~13805~^~318~^0.^0^^~1~^~AS~^^^^^^^^^^~04/01/2003~
-~13805~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2003~
-~13805~^~320~^0.^0^^~1~^~AS~^^^^^^^^^^~04/01/2008~
-~13805~^~321~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2003~
-~13805~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2003~
-~13805~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2003~
-~13805~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2003~
-~13805~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2003~
-~13805~^~417~^10.^0^^~1~^~PAK~^^^^^^^^^^~04/01/2003~
-~13805~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~
-~13805~^~432~^10.^0^^~1~^~PAK~^^^^^^^^^^~07/01/2010~
-~13805~^~435~^10.^0^^~4~^~NC~^^^^^^^^^^~07/01/2010~
-~13805~^~601~^92.^0^^~4~^~BFSN~^~13904~^^^^^^^^^~07/01/2010~
-~13806~^~208~^289.^0^^~4~^~NC~^^^^^^^^^^~07/01/2010~
-~13806~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2003~
-~13806~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2003~
-~13806~^~268~^1210.^0^^~4~^~NC~^^^^^^^^^^~07/01/2010~
-~13806~^~301~^16.^0^^~4~^~BFNN~^^^^^^^^^^~04/01/2003~
-~13806~^~304~^19.^0^^~4~^~BFNN~^^^^^^^^^^~04/01/2003~
-~13806~^~305~^175.^0^^~4~^~BFNN~^^^^^^^^^^~04/01/2003~
-~13806~^~306~^232.^0^^~4~^~BFNN~^^^^^^^^^^~04/01/2003~
-~13806~^~307~^48.^0^^~4~^~BFNN~^^^^^^^^^^~04/01/2003~
-~13806~^~318~^0.^0^^~1~^~AS~^^^^^^^^^^~04/01/2003~
-~13806~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2003~
-~13806~^~320~^0.^0^^~1~^~AS~^^^^^^^^^^~04/01/2003~
-~13806~^~321~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2003~
-~13806~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2003~
-~13806~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2003~
-~13806~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2003~
-~13806~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2003~
-~13806~^~417~^9.^0^^~1~^~PAK~^^^^^^^^^^~04/01/2003~
-~13806~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~
-~13806~^~432~^9.^0^^~1~^~PAK~^^^^^^^^^^~07/01/2010~
-~13806~^~435~^9.^0^^~4~^~NC~^^^^^^^^^^~07/01/2010~
-~13806~^~601~^106.^0^^~4~^~BFSN~^~13904~^^^^^^^^^~07/01/2010~
-~13807~^~208~^267.^0^^~4~^~NC~^^^^^^^^^^~05/01/2016~
-~13807~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2008~
-~13807~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2008~
-~13807~^~268~^1117.^0^^~4~^~NC~^^^^^^^^^^~05/01/2016~
-~13807~^~301~^6.^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~
-~13807~^~304~^18.^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~
-~13807~^~305~^166.^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~
-~13807~^~306~^264.^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~
-~13807~^~307~^72.^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~
-~13807~^~318~^0.^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~
-~13807~^~320~^0.^0^^~1~^~AS~^^^^^^^^^^~04/01/2008~
-~13807~^~321~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2008~
-~13807~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2008~
-~13807~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2008~
-~13807~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2008~
-~13807~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2008~
-~13807~^~417~^6.^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~
-~13807~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~
-~13807~^~432~^6.^0^^~4~^~PAE~^^^^^^^^^^~04/01/2008~
-~13807~^~435~^6.^0^^~4~^~NC~^^^^^^^^^^~06/01/2008~
-~13807~^~601~^71.^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~
-~13808~^~208~^349.^0^^~4~^~NC~^^^^^^^^^^~12/01/1995~
-~13808~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2008~
-~13808~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2008~
-~13808~^~268~^1460.^0^^~4~^^^^^^^^^^^~04/01/2008~
-~13808~^~301~^8.^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~
-~13808~^~304~^19.^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~
-~13808~^~305~^194.^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~
-~13808~^~306~^241.^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~
-~13808~^~307~^69.^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~
-~13808~^~318~^0.^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~
-~13808~^~320~^0.^0^^~1~^~AS~^^^^^^^^^^~04/01/2008~
-~13808~^~321~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2008~
-~13808~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2008~
-~13808~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2008~
-~13808~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2008~
-~13808~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2008~
-~13808~^~417~^7.^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~
-~13808~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~
-~13808~^~432~^7.^0^^~4~^~PAE~^^^^^^^^^^~04/01/2008~
-~13808~^~435~^7.^0^^~4~^~NC~^^^^^^^^^^~06/01/2008~
-~13808~^~601~^92.^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~
-~13809~^~208~^244.^0^^~4~^~NC~^^^^^^^^^^~07/01/2010~
-~13809~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2003~
-~13809~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2003~
-~13809~^~268~^1022.^0^^~4~^~NC~^^^^^^^^^^~07/01/2010~
-~13809~^~301~^17.^4^2.^~1~^~PAK~^^^^^^^^^^~04/01/2003~
-~13809~^~304~^19.^4^0.^~1~^~PAK~^^^^^^^^^^~04/01/2003~
-~13809~^~305~^174.^4^4.^~1~^~PAK~^^^^^^^^^^~04/01/2003~
-~13809~^~306~^290.^4^8.^~1~^~PAK~^^^^^^^^^^~04/01/2003~
-~13809~^~307~^62.^4^2.^~1~^~PAK~^^^^^^^^^^~04/01/2003~
-~13809~^~318~^0.^0^^~1~^~AS~^^^^^^^^^^~04/01/2003~
-~13809~^~319~^0.^0^^~1~^~PAK~^^^^^^^^^^~04/01/2003~
-~13809~^~320~^0.^0^^~1~^~AS~^^^^^^^^^^~04/01/2003~
-~13809~^~321~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2003~
-~13809~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2003~
-~13809~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2003~
-~13809~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2003~
-~13809~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2003~
-~13809~^~417~^10.^4^0.^~1~^~PAK~^^^^^^^^^^~04/01/2003~
-~13809~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~
-~13809~^~432~^10.^4^0.^~1~^~PAK~^^^^^^^^^^~07/01/2010~
-~13809~^~435~^10.^0^^~4~^~NC~^^^^^^^^^^~07/01/2010~
-~13809~^~601~^91.^0^^~4~^~BFSN~^~23000~^^^^^^^^^~07/01/2010~
-~13810~^~208~^302.^0^^~4~^~NC~^^^^^^^^^^~07/01/2010~
-~13810~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2003~
-~13810~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2003~
-~13810~^~268~^1263.^0^^~4~^~NC~^^^^^^^^^^~07/01/2010~
-~13810~^~301~^17.^4^1.^~1~^~PAK~^^^^^^^^^^~04/01/2003~
-~13810~^~304~^20.^4^0.^~1~^~PAK~^^^^^^^^^^~04/01/2003~
-~13810~^~305~^183.^4^1.^~1~^~PAK~^^^^^^^^^^~04/01/2003~
-~13810~^~306~^242.^4^1.^~1~^~PAK~^^^^^^^^^^~04/01/2003~
-~13810~^~307~^50.^4^1.^~1~^~PAK~^^^^^^^^^^~04/01/2003~
-~13810~^~318~^0.^0^^~1~^~AS~^^^^^^^^^^~04/01/2003~
-~13810~^~319~^0.^0^^~1~^~PAK~^^^^^^^^^^~04/01/2003~
-~13810~^~320~^0.^0^^~1~^~AS~^^^^^^^^^^~04/01/2003~
-~13810~^~321~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2003~
-~13810~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2003~
-~13810~^~324~^13.^0^^~4~^~BFFN~^^^^^^^^^^~03/01/2009~
-~13810~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2003~
-~13810~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2003~
-~13810~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2003~
-~13810~^~417~^9.^4^0.^~1~^~PAK~^^^^^^^^^^~04/01/2003~
-~13810~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~
-~13810~^~432~^9.^4^0.^~1~^~PAK~^^^^^^^^^^~07/01/2010~
-~13810~^~435~^9.^0^^~4~^~NC~^^^^^^^^^^~07/01/2010~
-~13810~^~601~^120.^0^^~4~^~BFSN~^~23131~^^^^^^^^^~07/01/2010~
-~13811~^~208~^249.^0^^~4~^~NC~^^^^^^^^^^~07/01/2010~
-~13811~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2003~
-~13811~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2003~
-~13811~^~268~^1043.^0^^~4~^~NC~^^^^^^^^^^~07/01/2010~
-~13811~^~301~^16.^2^^~1~^~PAK~^^^^^^^^^^~04/01/2003~
-~13811~^~304~^19.^2^^~1~^~PAK~^^^^^^^^^^~04/01/2003~
-~13811~^~305~^171.^2^^~1~^~PAK~^^^^^^^^^^~04/01/2003~
-~13811~^~306~^290.^2^^~1~^~PAK~^^^^^^^^^^~04/01/2003~
-~13811~^~307~^63.^2^^~1~^~PAK~^^^^^^^^^^~04/01/2003~
-~13811~^~318~^0.^0^^~1~^~AS~^^^^^^^^^^~04/01/2003~
-~13811~^~319~^0.^0^^~1~^~PAK~^^^^^^^^^^~04/01/2003~
-~13811~^~320~^0.^0^^~1~^~AS~^^^^^^^^^^~04/01/2003~
-~13811~^~321~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2003~
-~13811~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2003~
-~13811~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2003~
-~13811~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2003~
-~13811~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2003~
-~13811~^~417~^10.^2^^~1~^~PAK~^^^^^^^^^^~04/01/2003~
-~13811~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~
-~13811~^~432~^10.^2^^~1~^~PAK~^^^^^^^^^^~07/01/2010~
-~13811~^~435~^10.^0^^~4~^~NC~^^^^^^^^^^~07/01/2010~
-~13811~^~601~^89.^0^^~4~^~BFSN~^~23111~^^^^^^^^^~07/01/2010~
-~13812~^~208~^309.^0^^~4~^~NC~^^^^^^^^^^~07/01/2010~
-~13812~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2003~
-~13812~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2003~
-~13812~^~268~^1292.^0^^~4~^~NC~^^^^^^^^^^~07/01/2010~
-~13812~^~301~^16.^2^^~1~^~PAK~^^^^^^^^^^~04/01/2003~
-~13812~^~304~^20.^2^^~1~^~PAK~^^^^^^^^^^~04/01/2003~
-~13812~^~305~^182.^2^^~1~^~PAK~^^^^^^^^^^~04/01/2003~
-~13812~^~306~^241.^2^^~1~^~PAK~^^^^^^^^^^~04/01/2003~
-~13812~^~307~^49.^2^^~1~^~PAK~^^^^^^^^^^~04/01/2003~
-~13812~^~318~^0.^0^^~1~^~AS~^^^^^^^^^^~04/01/2003~
-~13812~^~319~^0.^0^^~1~^~PAK~^^^^^^^^^^~04/01/2003~
-~13812~^~320~^0.^0^^~1~^~AS~^^^^^^^^^^~04/01/2003~
-~13812~^~321~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2003~
-~13812~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2003~
-~13812~^~324~^13.^0^^~4~^~BFFN~^^^^^^^^^^~03/01/2009~
-~13812~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2003~
-~13812~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2003~
-~13812~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2003~
-~13812~^~417~^9.^2^^~1~^~PAK~^^^^^^^^^^~04/01/2003~
-~13812~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~
-~13812~^~432~^9.^2^^~1~^~PAK~^^^^^^^^^^~07/01/2010~
-~13812~^~435~^9.^0^^~4~^~NC~^^^^^^^^^^~07/01/2010~
-~13812~^~601~^121.^0^^~4~^~BFSN~^~23132~^^^^^^^^^~07/01/2010~
-~13813~^~208~^239.^0^^~4~^~NC~^^^^^^^^^^~07/01/2010~
-~13813~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2003~
-~13813~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2003~
-~13813~^~268~^1001.^0^^~4~^~NC~^^^^^^^^^^~07/01/2010~
-~13813~^~301~^18.^2^^~1~^~PAK~^^^^^^^^^^~04/01/2003~
-~13813~^~304~^19.^2^^~1~^~PAK~^^^^^^^^^^~04/01/2003~
-~13813~^~305~^176.^2^^~1~^~PAK~^^^^^^^^^^~04/01/2003~
-~13813~^~306~^290.^2^^~1~^~PAK~^^^^^^^^^^~04/01/2003~
-~13813~^~307~^62.^2^^~1~^~PAK~^^^^^^^^^^~04/01/2003~
-~13813~^~318~^0.^0^^~1~^~AS~^^^^^^^^^^~04/01/2003~
-~13813~^~319~^0.^0^^~1~^~PAK~^^^^^^^^^^~04/01/2003~
-~13813~^~320~^0.^0^^~1~^~AS~^^^^^^^^^^~04/01/2003~
-~13813~^~321~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2003~
-~13813~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2003~
-~13813~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2003~
-~13813~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2003~
-~13813~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2003~
-~13813~^~417~^10.^2^^~1~^~PAK~^^^^^^^^^^~04/01/2003~
-~13813~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~
-~13813~^~432~^10.^2^^~1~^~PAK~^^^^^^^^^^~07/01/2010~
-~13813~^~435~^10.^0^^~4~^~NC~^^^^^^^^^^~07/01/2010~
-~13813~^~601~^93.^0^^~4~^~BFSN~^~23112~^^^^^^^^^~07/01/2010~
-~13814~^~208~^295.^0^^~4~^~NC~^^^^^^^^^^~07/01/2010~
-~13814~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2003~
-~13814~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2003~
-~13814~^~268~^1235.^0^^~4~^~NC~^^^^^^^^^^~07/01/2010~
-~13814~^~301~^18.^2^^~1~^~PAK~^^^^^^^^^^~04/01/2003~
-~13814~^~304~^20.^2^^~1~^~PAK~^^^^^^^^^^~04/01/2003~
-~13814~^~305~^184.^2^^~1~^~PAK~^^^^^^^^^^~04/01/2003~
-~13814~^~306~^243.^2^^~1~^~PAK~^^^^^^^^^^~04/01/2003~
-~13814~^~307~^50.^2^^~1~^~PAK~^^^^^^^^^^~04/01/2003~
-~13814~^~318~^0.^0^^~1~^~AS~^^^^^^^^^^~04/01/2003~
-~13814~^~319~^0.^0^^~1~^~PAK~^^^^^^^^^^~04/01/2003~
-~13814~^~320~^0.^0^^~1~^~AS~^^^^^^^^^^~04/01/2003~
-~13814~^~321~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2003~
-~13814~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2003~
-~13814~^~324~^12.^0^^~4~^~BFFN~^^^^^^^^^^~03/01/2009~
-~13814~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2003~
-~13814~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2003~
-~13814~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2003~
-~13814~^~417~^9.^2^^~1~^~PAK~^^^^^^^^^^~04/01/2003~
-~13814~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~
-~13814~^~432~^9.^2^^~1~^~PAK~^^^^^^^^^^~07/01/2010~
-~13814~^~435~^9.^0^^~4~^~NC~^^^^^^^^^^~07/01/2010~
-~13814~^~601~^119.^0^^~4~^~BFSN~^~23133~^^^^^^^^^~07/01/2010~
-~13815~^~208~^248.^0^^~4~^~NC~^^^^^^^^^^~01/01/2017~
-~13815~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2008~
-~13815~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2008~
-~13815~^~268~^1038.^0^^~4~^^^^^^^^^^^~01/01/2017~
-~13815~^~301~^10.^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~
-~13815~^~304~^17.^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~
-~13815~^~305~^162.^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~
-~13815~^~306~^271.^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~
-~13815~^~307~^68.^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~
-~13815~^~318~^0.^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~
-~13815~^~321~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2008~
-~13815~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2008~
-~13815~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2008~
-~13815~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2008~
-~13815~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2008~
-~13815~^~417~^5.^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~
-~13815~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~
-~13815~^~432~^5.^0^^~4~^~PAE~^^^^^^^^^^~04/01/2008~
-~13815~^~435~^5.^0^^~4~^~NC~^^^^^^^^^^~06/01/2008~
-~13815~^~601~^71.^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~
-~13816~^~208~^341.^0^^~4~^~NC~^^^^^^^^^^~04/01/2005~
-~13816~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~11/01/2004~
-~13816~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~11/01/2004~
-~13816~^~268~^1427.^0^^~4~^^^^^^^^^^^~03/01/2009~
-~13816~^~301~^13.^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~
-~13816~^~304~^19.^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~
-~13816~^~305~^202.^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~
-~13816~^~306~^233.^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~
-~13816~^~307~^65.^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~
-~13816~^~318~^0.^0^^~1~^~AS~^^^^^^^^^^~04/01/2005~
-~13816~^~319~^0.^0^^~4~^~NR~^^^^^^^^^^~11/01/2004~
-~13816~^~320~^0.^0^^~1~^~AS~^^^^^^^^^^~11/01/2004~
-~13816~^~321~^0.^0^^~7~^~Z~^^^^^^^^^^~11/01/2004~
-~13816~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~11/01/2004~
-~13816~^~324~^16.^0^^~4~^~BFFN~^^^^^^^^^^~03/01/2009~
-~13816~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~11/01/2004~
-~13816~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~11/01/2004~
-~13816~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~11/01/2004~
-~13816~^~417~^5.^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~
-~13816~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~
-~13816~^~432~^5.^0^^~4~^~PAE~^^^^^^^^^^~03/01/2009~
-~13816~^~435~^5.^0^^~4~^~NC~^^^^^^^^^^~11/01/2009~
-~13816~^~601~^104.^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~
-~13817~^~208~^268.^0^^~4~^~NC~^^^^^^^^^^~05/01/2016~
-~13817~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2008~
-~13817~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2008~
-~13817~^~268~^1123.^0^^~4~^~NC~^^^^^^^^^^~05/01/2016~
-~13817~^~301~^10.^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~
-~13817~^~304~^17.^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~
-~13817~^~305~^160.^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~
-~13817~^~306~^267.^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~
-~13817~^~307~^67.^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~
-~13817~^~318~^0.^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~
-~13817~^~320~^0.^0^^~1~^~AS~^^^^^^^^^^~04/01/2008~
-~13817~^~321~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2008~
-~13817~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2008~
-~13817~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2008~
-~13817~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2008~
-~13817~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2008~
-~13817~^~417~^5.^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~
-~13817~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~
-~13817~^~432~^5.^0^^~4~^~PAE~^^^^^^^^^^~04/01/2008~
-~13817~^~435~^5.^0^^~4~^~NC~^^^^^^^^^^~06/01/2008~
-~13817~^~601~^72.^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~
-~13818~^~208~^359.^0^^~4~^~NC~^^^^^^^^^^~12/01/1995~
-~13818~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2007~
-~13818~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2007~
-~13818~^~268~^1502.^0^^~4~^^^^^^^^^^^~03/01/2009~
-~13818~^~301~^13.^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~
-~13818~^~304~^19.^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~
-~13818~^~305~^198.^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~
-~13818~^~306~^230.^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~
-~13818~^~307~^64.^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~
-~13818~^~318~^0.^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~
-~13818~^~319~^0.^0^^~4~^~BFSN~^~13816~^^^^^^^^^~03/01/2007~
-~13818~^~320~^0.^0^^~1~^~AS~^^^^^^^^^^~03/01/2007~
-~13818~^~321~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2007~
-~13818~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2007~
-~13818~^~324~^18.^0^^~4~^~BFFN~^^^^^^^^^^~03/01/2009~
-~13818~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2007~
-~13818~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2007~
-~13818~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2007~
-~13818~^~417~^5.^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~
-~13818~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~
-~13818~^~432~^5.^0^^~4~^~PAE~^^^^^^^^^^~03/01/2009~
-~13818~^~435~^5.^0^^~4~^~NC~^^^^^^^^^^~11/01/2009~
-~13818~^~601~^103.^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~
-~13819~^~208~^230.^0^^~4~^~NC~^^^^^^^^^^~01/01/2017~
-~13819~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2008~
-~13819~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2008~
-~13819~^~268~^962.^0^^~4~^^^^^^^^^^^~01/01/2017~
-~13819~^~301~^10.^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~
-~13819~^~304~^17.^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~
-~13819~^~305~^164.^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~
-~13819~^~306~^276.^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~
-~13819~^~307~^69.^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~
-~13819~^~318~^0.^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~
-~13819~^~321~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2008~
-~13819~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2008~
-~13819~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2008~
-~13819~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2008~
-~13819~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2008~
-~13819~^~417~^5.^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~
-~13819~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~
-~13819~^~432~^5.^0^^~4~^~PAE~^^^^^^^^^^~04/01/2008~
-~13819~^~435~^5.^0^^~4~^~NC~^^^^^^^^^^~06/01/2008~
-~13819~^~601~^71.^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~
-~13820~^~208~^318.^0^^~4~^~NC~^^^^^^^^^^~12/01/1995~
-~13820~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2008~
-~13820~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2008~
-~13820~^~268~^1331.^0^^~4~^^^^^^^^^^^~04/01/2008~
-~13820~^~301~^13.^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~
-~13820~^~304~^20.^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~
-~13820~^~305~^206.^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~
-~13820~^~306~^237.^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~
-~13820~^~307~^66.^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~
-~13820~^~318~^0.^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~
-~13820~^~320~^0.^0^^~1~^~AS~^^^^^^^^^^~04/01/2008~
-~13820~^~321~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2008~
-~13820~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2008~
-~13820~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2008~
-~13820~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2008~
-~13820~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2008~
-~13820~^~417~^5.^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~
-~13820~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~
-~13820~^~432~^5.^0^^~4~^~PAE~^^^^^^^^^^~04/01/2008~
-~13820~^~435~^5.^0^^~4~^~NC~^^^^^^^^^^~06/01/2008~
-~13820~^~601~^104.^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~
-~13821~^~208~^183.^0^^~4~^~NC~^^^^^^^^^^~06/01/2010~
-~13821~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2010~
-~13821~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2010~
-~13821~^~268~^765.^0^^~4~^~NC~^^^^^^^^^^~06/01/2010~
-~13821~^~301~^19.^3^^~1~^~AR~^^^^^^^^^^~06/01/2010~
-~13821~^~304~^22.^3^^~1~^~AR~^^^^^^^^^^~06/01/2010~
-~13821~^~305~^210.^3^^~1~^~AR~^^^^^^^^^^~06/01/2010~
-~13821~^~306~^344.^3^^~1~^~AR~^^^^^^^^^^~06/01/2010~
-~13821~^~307~^80.^3^^~1~^~AR~^^^^^^^^^^~06/01/2010~
-~13821~^~318~^5.^0^^~4~^~NC~^^^^^^^^^^~06/01/2010~
-~13821~^~319~^2.^0^^~4~^~BFSN~^^^^^^^^^^~06/01/2010~
-~13821~^~320~^2.^0^^~4~^~NC~^^^^^^^^^^~06/01/2010~
-~13821~^~321~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2010~
-~13821~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2010~
-~13821~^~324~^5.^0^^~4~^~BFSN~^^^^^^^^^^~06/01/2010~
-~13821~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2010~
-~13821~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2010~
-~13821~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2010~
-~13821~^~417~^6.^0^^~4~^~BFPN~^^^^^^^^^^~06/01/2010~
-~13821~^~431~^0.^0^^~4~^~BFPN~^^^^^^^^^^~06/01/2010~
-~13821~^~432~^6.^0^^~4~^~BFPN~^^^^^^^^^^~06/01/2010~
-~13821~^~435~^6.^0^^~4~^~NC~^^^^^^^^^^~06/01/2010~
-~13821~^~601~^83.^6^2.^~1~^~AR~^^^^^^^^^^~07/01/2010~
-~13822~^~208~^190.^0^^~4~^~NC~^^^^^^^^^^~06/01/2010~
-~13822~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2010~
-~13822~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2010~
-~13822~^~268~^795.^0^^~4~^~NC~^^^^^^^^^^~06/01/2010~
-~13822~^~301~^18.^2^^~1~^~AR~^^^^^^^^^^~06/01/2010~
-~13822~^~304~^22.^2^^~1~^~AR~^^^^^^^^^^~06/01/2010~
-~13822~^~305~^211.^2^^~1~^~AR~^^^^^^^^^^~06/01/2010~
-~13822~^~306~^339.^2^^~1~^~AR~^^^^^^^^^^~06/01/2010~
-~13822~^~307~^79.^2^^~1~^~AR~^^^^^^^^^^~06/01/2010~
-~13822~^~318~^4.^0^^~4~^~NC~^^^^^^^^^^~06/01/2010~
-~13822~^~319~^1.^0^^~4~^~BFSN~^^^^^^^^^^~06/01/2010~
-~13822~^~320~^1.^0^^~4~^~NC~^^^^^^^^^^~06/01/2010~
-~13822~^~321~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2010~
-~13822~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2010~
-~13822~^~324~^5.^0^^~4~^~BFSN~^^^^^^^^^^~06/01/2010~
-~13822~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2010~
-~13822~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2010~
-~13822~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2010~
-~13822~^~417~^6.^0^^~4~^~BFPN~^~23042~^^^^^^^^^~06/01/2010~
-~13822~^~431~^0.^0^^~4~^~BFPN~^~23042~^^^^^^^^^~06/01/2010~
-~13822~^~432~^6.^0^^~4~^~BFPN~^~23042~^^^^^^^^^~06/01/2010~
-~13822~^~435~^6.^0^^~4~^~NC~^~23042~^^^^^^^^^~06/01/2010~
-~13822~^~601~^84.^4^3.^~1~^~AR~^^^^^^^^^^~07/01/2010~
-~13823~^~208~^172.^0^^~4~^~NC~^^^^^^^^^^~06/01/2010~
-~13823~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2010~
-~13823~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2010~
-~13823~^~268~^720.^0^^~4~^~NC~^^^^^^^^^^~06/01/2010~
-~13823~^~301~^20.^1^^~1~^~AR~^^^^^^^^^^~06/01/2010~
-~13823~^~304~^22.^1^^~1~^~AR~^^^^^^^^^^~06/01/2010~
-~13823~^~305~^209.^1^^~1~^~AR~^^^^^^^^^^~06/01/2010~
-~13823~^~306~^351.^1^^~1~^~AR~^^^^^^^^^^~06/01/2010~
-~13823~^~307~^81.^1^^~1~^~AR~^^^^^^^^^^~06/01/2010~
-~13823~^~318~^6.^0^^~4~^~NC~^^^^^^^^^^~06/01/2010~
-~13823~^~319~^2.^0^^~4~^~BFSN~^^^^^^^^^^~06/01/2010~
-~13823~^~320~^2.^0^^~4~^~NC~^^^^^^^^^^~06/01/2010~
-~13823~^~321~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2010~
-~13823~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2010~
-~13823~^~324~^4.^0^^~4~^~BFSN~^^^^^^^^^^~06/01/2010~
-~13823~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2010~
-~13823~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2010~
-~13823~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2010~
-~13823~^~417~^7.^0^^~4~^~BFPN~^~23044~^^^^^^^^^~06/01/2010~
-~13823~^~431~^0.^0^^~4~^~BFPN~^~23044~^^^^^^^^^~06/01/2010~
-~13823~^~432~^7.^0^^~4~^~BFPN~^~23044~^^^^^^^^^~06/01/2010~
-~13823~^~435~^7.^0^^~4~^~NC~^~23044~^^^^^^^^^~06/01/2010~
-~13823~^~601~^81.^2^^~1~^~AR~^^^^^^^^^^~07/01/2010~
-~13824~^~208~^306.^0^^~4~^~NC~^^^^^^^^^^~12/01/1995~
-~13824~^~268~^1280.^0^^~4~^^^^^^^^^^^~01/01/2008~
-~13824~^~301~^9.^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~
-~13824~^~304~^16.^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~
-~13824~^~305~^156.^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~
-~13824~^~306~^272.^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~
-~13824~^~307~^55.^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~
-~13824~^~318~^0.^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~
-~13824~^~417~^5.^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~
-~13824~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~
-~13824~^~432~^5.^0^^~4~^~PAE~^^^^^^^^^^~01/01/2008~
-~13824~^~435~^5.^0^^~4~^~NC~^^^^^^^^^^~01/01/2008~
-~13824~^~601~^70.^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~
-~13825~^~208~^337.^0^^~4~^~NC~^^^^^^^^^^~12/01/1995~
-~13825~^~268~^1410.^0^^~4~^^^^^^^^^^^~01/01/2008~
-~13825~^~301~^11.^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~
-~13825~^~304~^20.^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~
-~13825~^~305~^179.^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~
-~13825~^~306~^315.^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~
-~13825~^~307~^63.^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~
-~13825~^~318~^0.^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~
-~13825~^~417~^6.^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~
-~13825~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~
-~13825~^~432~^6.^0^^~4~^~PAE~^^^^^^^^^^~01/01/2008~
-~13825~^~435~^6.^0^^~4~^~NC~^^^^^^^^^^~01/01/2008~
-~13825~^~601~^82.^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~
-~13826~^~208~^351.^0^^~4~^~NC~^^^^^^^^^^~12/01/1995~
-~13826~^~268~^1469.^0^^~4~^^^^^^^^^^^~01/01/2008~
-~13826~^~301~^11.^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~
-~13826~^~304~^20.^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~
-~13826~^~305~^177.^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~
-~13826~^~306~^305.^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~
-~13826~^~307~^64.^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~
-~13826~^~318~^0.^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~
-~13826~^~417~^7.^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~
-~13826~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~
-~13826~^~432~^7.^0^^~4~^~PAE~^^^^^^^^^^~01/01/2008~
-~13826~^~435~^7.^0^^~4~^~NC~^^^^^^^^^^~01/01/2008~
-~13826~^~601~^84.^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~
-~13827~^~208~^322.^0^^~4~^~NC~^^^^^^^^^^~12/01/1995~
-~13827~^~268~^1347.^0^^~4~^^^^^^^^^^^~01/01/2008~
-~13827~^~301~^9.^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~
-~13827~^~304~^16.^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~
-~13827~^~305~^154.^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~
-~13827~^~306~^267.^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~
-~13827~^~307~^54.^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~
-~13827~^~318~^0.^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~
-~13827~^~417~^5.^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~
-~13827~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~
-~13827~^~432~^5.^0^^~4~^~PAE~^^^^^^^^^^~01/01/2008~
-~13827~^~435~^5.^0^^~4~^~NC~^^^^^^^^^^~01/01/2008~
-~13827~^~601~^71.^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~
-~13828~^~208~^352.^0^^~4~^~NC~^^^^^^^^^^~12/01/1995~
-~13828~^~268~^1473.^0^^~4~^^^^^^^^^^^~01/01/2008~
-~13828~^~301~^11.^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~
-~13828~^~304~^20.^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~
-~13828~^~305~^178.^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~
-~13828~^~306~^313.^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~
-~13828~^~307~^63.^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~
-~13828~^~318~^0.^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~
-~13828~^~417~^6.^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~
-~13828~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~
-~13828~^~432~^6.^0^^~4~^~PAE~^^^^^^^^^^~01/01/2008~
-~13828~^~435~^6.^0^^~4~^~NC~^^^^^^^^^^~01/01/2008~
-~13828~^~601~^82.^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~
-~13829~^~208~^365.^0^^~4~^~NC~^^^^^^^^^^~03/01/2007~
-~13829~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2007~
-~13829~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2007~
-~13829~^~268~^1527.^0^^~4~^^^^^^^^^^^~03/01/2009~
-~13829~^~301~^11.^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~
-~13829~^~304~^20.^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~
-~13829~^~305~^176.^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~
-~13829~^~306~^302.^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~
-~13829~^~307~^64.^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~
-~13829~^~318~^0.^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~
-~13829~^~319~^0.^0^^~4~^~BFSN~^~13840~^^^^^^^^^~03/01/2007~
-~13829~^~320~^0.^0^^~1~^~AS~^^^^^^^^^^~03/01/2007~
-~13829~^~321~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2007~
-~13829~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2007~
-~13829~^~324~^19.^0^^~4~^~BFFN~^^^^^^^^^^~03/01/2009~
-~13829~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2007~
-~13829~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2007~
-~13829~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2007~
-~13829~^~417~^7.^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~
-~13829~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~
-~13829~^~432~^7.^0^^~4~^~PAE~^^^^^^^^^^~03/01/2009~
-~13829~^~435~^7.^0^^~4~^~NC~^^^^^^^^^^~11/01/2009~
-~13829~^~601~^84.^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~
-~13830~^~208~^288.^0^^~4~^~NC~^^^^^^^^^^~12/01/1995~
-~13830~^~268~^1205.^0^^~4~^^^^^^^^^^^~01/01/2008~
-~13830~^~301~^9.^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~
-~13830~^~304~^17.^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~
-~13830~^~305~^159.^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~
-~13830~^~306~^278.^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~
-~13830~^~307~^55.^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~
-~13830~^~318~^0.^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~
-~13830~^~417~^5.^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~
-~13830~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~
-~13830~^~432~^5.^0^^~4~^~PAE~^^^^^^^^^^~01/01/2008~
-~13830~^~435~^5.^0^^~4~^~NC~^^^^^^^^^^~01/01/2008~
-~13830~^~601~^70.^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~
-~13831~^~208~^315.^0^^~4~^~NC~^^^^^^^^^^~12/01/1995~
-~13831~^~268~^1318.^0^^~4~^^^^^^^^^^^~01/01/2008~
-~13831~^~301~^11.^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~
-~13831~^~304~^20.^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~
-~13831~^~305~^182.^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~
-~13831~^~306~^321.^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~
-~13831~^~307~^64.^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~
-~13831~^~318~^0.^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~
-~13831~^~417~^6.^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~
-~13831~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~
-~13831~^~432~^6.^0^^~4~^~PAE~^^^^^^^^^^~01/01/2008~
-~13831~^~435~^6.^0^^~4~^~NC~^^^^^^^^^^~01/01/2008~
-~13831~^~601~^81.^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~
-~13832~^~208~^330.^0^^~4~^~NC~^^^^^^^^^^~12/01/1995~
-~13832~^~268~^1381.^0^^~4~^^^^^^^^^^^~01/01/2008~
-~13832~^~301~^11.^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~
-~13832~^~304~^20.^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~
-~13832~^~305~^180.^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~
-~13832~^~306~^310.^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~
-~13832~^~307~^65.^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~
-~13832~^~318~^0.^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~
-~13832~^~417~^7.^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~
-~13832~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~
-~13832~^~432~^7.^0^^~4~^~PAE~^^^^^^^^^^~01/01/2008~
-~13832~^~435~^7.^0^^~4~^~NC~^^^^^^^^^^~01/01/2008~
-~13832~^~601~^84.^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~
-~13833~^~208~^355.^0^^~4~^~NC~^^^^^^^^^^~12/01/1995~
-~13833~^~268~^1485.^0^^~4~^^^^^^^^^^^~01/01/2008~
-~13833~^~301~^9.^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~
-~13833~^~304~^16.^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~
-~13833~^~305~^152.^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~
-~13833~^~306~^263.^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~
-~13833~^~307~^53.^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~
-~13833~^~318~^0.^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~
-~13833~^~417~^5.^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~
-~13833~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~
-~13833~^~432~^5.^0^^~4~^~PAE~^^^^^^^^^^~01/01/2008~
-~13833~^~435~^5.^0^^~4~^~NC~^^^^^^^^^^~01/01/2008~
-~13833~^~601~^72.^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~
-~13834~^~208~^386.^0^^~4~^~NC~^^^^^^^^^^~12/01/1995~
-~13834~^~268~^1615.^0^^~4~^^^^^^^^^^^
-~13834~^~301~^11.^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~
-~13834~^~304~^20.^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~
-~13834~^~305~^169.^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~
-~13834~^~306~^310.^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~
-~13834~^~307~^62.^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~
-~13834~^~318~^0.^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~
-~13834~^~319~^0.^0^^~4~^~PAE~^^^^^^^^^^~06/01/2002~
-~13834~^~320~^0.^0^^~4~^~PAE~^^^^^^^^^^~06/01/2002~
-~13834~^~417~^6.^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~
-~13834~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~
-~13834~^~432~^6.^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~
-~13834~^~435~^6.^0^^~4~^~NC~^^^^^^^^^^~01/01/2001~
-~13834~^~601~^85.^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~
-~13835~^~208~^400.^0^^~4~^~NC~^^^^^^^^^^~12/01/1995~
-~13835~^~268~^1674.^0^^~4~^^^^^^^^^^^
-~13835~^~301~^11.^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~
-~13835~^~304~^20.^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~
-~13835~^~305~^175.^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~
-~13835~^~306~^304.^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~
-~13835~^~307~^65.^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~
-~13835~^~318~^0.^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~
-~13835~^~319~^0.^0^^~4~^~PAE~^^^^^^^^^^~06/01/2002~
-~13835~^~320~^0.^0^^~4~^~PAE~^^^^^^^^^^~06/01/2002~
-~13835~^~417~^7.^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~
-~13835~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~
-~13835~^~432~^7.^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~
-~13835~^~435~^7.^0^^~4~^~NC~^^^^^^^^^^~01/01/2001~
-~13835~^~601~^85.^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~
-~13838~^~208~^316.^0^^~4~^~NC~^^^^^^^^^^~12/01/1995~
-~13838~^~268~^1322.^0^^~4~^^^^^^^^^^^
-~13838~^~301~^8.^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~
-~13838~^~304~^16.^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~
-~13838~^~305~^153.^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~
-~13838~^~306~^260.^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~
-~13838~^~307~^55.^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~
-~13838~^~318~^0.^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~
-~13838~^~319~^0.^0^^~4~^~PAE~^^^^^^^^^^~06/01/2002~
-~13838~^~320~^0.^0^^~4~^~PAE~^^^^^^^^^^~06/01/2002~
-~13838~^~417~^5.^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~
-~13838~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~
-~13838~^~432~^5.^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~
-~13838~^~435~^5.^0^^~4~^~NC~^^^^^^^^^^~01/01/2001~
-~13838~^~601~^71.^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~
-~13839~^~208~^338.^0^^~4~^~NC~^^^^^^^^^^~12/01/1995~
-~13839~^~268~^1414.^0^^~4~^^^^^^^^^^^
-~13839~^~301~^10.^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~
-~13839~^~304~^19.^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~
-~13839~^~305~^182.^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~
-~13839~^~306~^309.^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~
-~13839~^~307~^64.^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~
-~13839~^~318~^0.^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~
-~13839~^~319~^0.^0^^~4~^~PAE~^^^^^^^^^^~06/01/2002~
-~13839~^~320~^0.^0^^~4~^~PAE~^^^^^^^^^^~06/01/2002~
-~13839~^~417~^6.^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~
-~13839~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~
-~13839~^~432~^6.^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~
-~13839~^~435~^6.^0^^~4~^~NC~^^^^^^^^^^~01/01/2001~
-~13839~^~601~^80.^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~
-~13840~^~208~^355.^0^^~4~^~NC~^^^^^^^^^^~04/01/2005~
-~13840~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~11/01/2004~
-~13840~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~11/01/2004~
-~13840~^~268~^1485.^0^^~4~^^^^^^^^^^^~03/01/2009~
-~13840~^~301~^10.^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~
-~13840~^~304~^20.^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~
-~13840~^~305~^173.^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~
-~13840~^~306~^293.^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~
-~13840~^~307~^64.^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~
-~13840~^~318~^0.^0^^~1~^~AS~^^^^^^^^^^~04/01/2005~
-~13840~^~319~^0.^0^^~4~^~NR~^^^^^^^^^^~11/01/2004~
-~13840~^~320~^0.^0^^~1~^~AS~^^^^^^^^^^~11/01/2004~
-~13840~^~321~^0.^0^^~7~^~Z~^^^^^^^^^^~11/01/2004~
-~13840~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~11/01/2004~
-~13840~^~324~^19.^0^^~4~^~BFFN~^^^^^^^^^^~03/01/2009~
-~13840~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~11/01/2004~
-~13840~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~11/01/2004~
-~13840~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~11/01/2004~
-~13840~^~417~^7.^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~
-~13840~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~
-~13840~^~432~^7.^0^^~4~^~PAE~^^^^^^^^^^~03/01/2009~
-~13840~^~435~^7.^0^^~4~^~NC~^^^^^^^^^^~11/01/2009~
-~13840~^~601~^85.^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~
-~13841~^~208~^333.^0^^~4~^~NC~^^^^^^^^^^~12/01/1995~
-~13841~^~268~^1393.^0^^~4~^^^^^^^^^^^
-~13841~^~301~^8.^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~
-~13841~^~304~^15.^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~
-~13841~^~305~^150.^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~
-~13841~^~306~^254.^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~
-~13841~^~307~^54.^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~
-~13841~^~318~^0.^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~
-~13841~^~319~^0.^0^^~4~^~PAE~^^^^^^^^^^~06/01/2002~
-~13841~^~320~^0.^0^^~4~^~PAE~^^^^^^^^^^~06/01/2002~
-~13841~^~417~^5.^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~
-~13841~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~
-~13841~^~432~^5.^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~
-~13841~^~435~^5.^0^^~4~^~NC~^^^^^^^^^^~01/01/2001~
-~13841~^~601~^72.^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~
-~13842~^~208~^370.^0^^~4~^~NC~^^^^^^^^^^~12/01/1995~
-~13842~^~268~^1548.^0^^~4~^^^^^^^^^^^
-~13842~^~301~^10.^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~
-~13842~^~304~^18.^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~
-~13842~^~305~^175.^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~
-~13842~^~306~^297.^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~
-~13842~^~307~^63.^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~
-~13842~^~318~^0.^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~
-~13842~^~319~^0.^0^^~4~^~PAE~^^^^^^^^^^~06/01/2002~
-~13842~^~320~^0.^0^^~4~^~PAE~^^^^^^^^^^~06/01/2002~
-~13842~^~417~^5.^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~
-~13842~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~
-~13842~^~432~^5.^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~
-~13842~^~435~^5.^0^^~4~^~NC~^^^^^^^^^^~01/01/2001~
-~13842~^~601~^81.^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~
-~13843~^~208~^378.^0^^~4~^~NC~^^^^^^^^^^~12/01/1995~
-~13843~^~268~^1582.^0^^~4~^^^^^^^^^^^
-~13843~^~301~^10.^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~
-~13843~^~304~^19.^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~
-~13843~^~305~^169.^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~
-~13843~^~306~^286.^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~
-~13843~^~307~^63.^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~
-~13843~^~318~^0.^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~
-~13843~^~319~^0.^0^^~4~^~PAE~^^^^^^^^^^~06/01/2002~
-~13843~^~320~^0.^0^^~4~^~PAE~^^^^^^^^^^~06/01/2002~
-~13843~^~417~^7.^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~
-~13843~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~
-~13843~^~432~^7.^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~
-~13843~^~435~^7.^0^^~4~^~NC~^^^^^^^^^^~01/01/2001~
-~13843~^~601~^85.^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~
-~13844~^~208~^295.^0^^~4~^~NC~^^^^^^^^^^~12/01/1995~
-~13844~^~268~^1234.^0^^~4~^^^^^^^^^^^
-~13844~^~301~^8.^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~
-~13844~^~304~^16.^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~
-~13844~^~305~^155.^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~
-~13844~^~306~^266.^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~
-~13844~^~307~^56.^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~
-~13844~^~318~^0.^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~
-~13844~^~319~^0.^0^^~4~^~PAE~^^^^^^^^^^~06/01/2002~
-~13844~^~320~^0.^0^^~4~^~PAE~^^^^^^^^^^~06/01/2002~
-~13844~^~417~^5.^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~
-~13844~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~
-~13844~^~432~^5.^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~
-~13844~^~435~^5.^0^^~4~^~NC~^^^^^^^^^^~01/01/2001~
-~13844~^~601~^70.^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~
-~13845~^~208~^324.^0^^~4~^~NC~^^^^^^^^^^~12/01/1995~
-~13845~^~268~^1356.^0^^~4~^^^^^^^^^^^
-~13845~^~301~^10.^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~
-~13845~^~304~^19.^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~
-~13845~^~305~^182.^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~
-~13845~^~306~^309.^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~
-~13845~^~307~^64.^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~
-~13845~^~318~^0.^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~
-~13845~^~319~^0.^0^^~4~^~PAE~^^^^^^^^^^~06/01/2002~
-~13845~^~320~^0.^0^^~4~^~PAE~^^^^^^^^^^~06/01/2002~
-~13845~^~417~^6.^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~
-~13845~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~
-~13845~^~432~^6.^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~
-~13845~^~435~^6.^0^^~4~^~NC~^^^^^^^^^^~01/01/2001~
-~13845~^~601~^80.^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~
-~13846~^~208~^333.^0^^~4~^~NC~^^^^^^^^^^~12/01/1995~
-~13846~^~268~^1393.^0^^~4~^^^^^^^^^^^
-~13846~^~301~^9.^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~
-~13846~^~304~^20.^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~
-~13846~^~305~^176.^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~
-~13846~^~306~^299.^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~
-~13846~^~307~^65.^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~
-~13846~^~318~^0.^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~
-~13846~^~319~^0.^0^^~4~^~PAE~^^^^^^^^^^~06/01/2002~
-~13846~^~320~^0.^0^^~4~^~PAE~^^^^^^^^^^~06/01/2002~
-~13846~^~417~^8.^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~
-~13846~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~
-~13846~^~432~^8.^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~
-~13846~^~435~^8.^0^^~4~^~NC~^^^^^^^^^^~01/01/2001~
-~13846~^~601~^84.^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~
-~13847~^~208~^367.^0^^~4~^~NC~^^^^^^^^^^~12/01/1995~
-~13847~^~268~^1536.^0^^~4~^^^^^^^^^^^
-~13847~^~301~^8.^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~
-~13847~^~304~^15.^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~
-~13847~^~305~^147.^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~
-~13847~^~306~^248.^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~
-~13847~^~307~^53.^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~
-~13847~^~318~^0.^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~
-~13847~^~319~^0.^0^^~4~^~PAE~^^^^^^^^^^~06/01/2002~
-~13847~^~320~^0.^0^^~4~^~PAE~^^^^^^^^^^~06/01/2002~
-~13847~^~417~^5.^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~
-~13847~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~
-~13847~^~432~^5.^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~
-~13847~^~435~^5.^0^^~4~^~NC~^^^^^^^^^^~01/01/2001~
-~13847~^~601~^73.^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~
-~13848~^~208~^404.^0^^~4~^~NC~^^^^^^^^^^~12/01/1995~
-~13848~^~268~^1690.^0^^~4~^^^^^^^^^^^
-~13848~^~301~^10.^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~
-~13848~^~304~^19.^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~
-~13848~^~305~^164.^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~
-~13848~^~306~^298.^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~
-~13848~^~307~^62.^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~
-~13848~^~318~^0.^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~
-~13848~^~319~^0.^0^^~4~^~PAE~^^^^^^^^^^~06/01/2002~
-~13848~^~320~^0.^0^^~4~^~PAE~^^^^^^^^^^~06/01/2002~
-~13848~^~417~^6.^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~
-~13848~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~
-~13848~^~432~^6.^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~
-~13848~^~435~^6.^0^^~4~^~NC~^^^^^^^^^^~01/01/2001~
-~13848~^~601~^86.^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~
-~13849~^~208~^393.^0^^~4~^~NC~^^^^^^^^^^~12/01/1995~
-~13849~^~268~^1644.^0^^~4~^^^^^^^^^^^
-~13849~^~301~^10.^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~
-~13849~^~304~^20.^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~
-~13849~^~305~^172.^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~
-~13849~^~306~^291.^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~
-~13849~^~307~^64.^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~
-~13849~^~318~^0.^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~
-~13849~^~319~^0.^0^^~4~^~PAE~^^^^^^^^^^~06/01/2002~
-~13849~^~320~^0.^0^^~4~^~PAE~^^^^^^^^^^~06/01/2002~
-~13849~^~417~^7.^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~
-~13849~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~
-~13849~^~432~^7.^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~
-~13849~^~435~^7.^0^^~4~^~NC~^^^^^^^^^^~01/01/2001~
-~13849~^~601~^85.^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~
-~13850~^~208~^254.^0^^~4~^~NC~^^^^^^^^^^~07/01/2010~
-~13850~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2003~
-~13850~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2003~
-~13850~^~268~^1065.^0^^~4~^~NC~^^^^^^^^^^~07/01/2010~
-~13850~^~301~^23.^0^^~4~^~BFNN~^^^^^^^^^^~06/01/2003~
-~13850~^~304~^20.^0^^~4~^~BFNN~^^^^^^^^^^~06/01/2003~
-~13850~^~305~^176.^0^^~4~^~BFNN~^^^^^^^^^^~06/01/2003~
-~13850~^~306~^295.^0^^~4~^~BFNN~^^^^^^^^^^~06/01/2003~
-~13850~^~307~^49.^0^^~4~^~BFNN~^^^^^^^^^^~06/01/2003~
-~13850~^~318~^0.^0^^~1~^~AS~^^^^^^^^^^~04/01/2003~
-~13850~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2003~
-~13850~^~320~^0.^0^^~1~^~AS~^^^^^^^^^^~04/01/2003~
-~13850~^~321~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2003~
-~13850~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2003~
-~13850~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2003~
-~13850~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2003~
-~13850~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2003~
-~13850~^~417~^10.^0^^~4~^~BFPN~^^^^^^^^^^~04/01/2003~
-~13850~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~
-~13850~^~432~^10.^0^^~4~^~BFPN~^^^^^^^^^^~07/01/2010~
-~13850~^~435~^10.^0^^~4~^~NC~^^^^^^^^^^~07/01/2010~
-~13850~^~601~^81.^0^^~4~^~BFSN~^~23128~^^^^^^^^^~07/01/2010~
-~13851~^~208~^291.^0^^~4~^~NC~^^^^^^^^^^~07/01/2010~
-~13851~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2003~
-~13851~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2003~
-~13851~^~268~^1218.^0^^~4~^~NC~^^^^^^^^^^~07/01/2010~
-~13851~^~301~^19.^0^^~4~^~BFNN~^^^^^^^^^^~04/01/2003~
-~13851~^~304~^22.^0^^~4~^~BFNN~^^^^^^^^^^~04/01/2003~
-~13851~^~305~^201.^0^^~4~^~BFNN~^^^^^^^^^^~04/01/2003~
-~13851~^~306~^323.^0^^~4~^~BFNN~^^^^^^^^^^~04/01/2003~
-~13851~^~307~^53.^0^^~4~^~BFNN~^^^^^^^^^^~04/01/2003~
-~13851~^~318~^0.^0^^~1~^~AS~^^^^^^^^^^~04/01/2003~
-~13851~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2003~
-~13851~^~320~^0.^0^^~1~^~AS~^^^^^^^^^^~04/01/2003~
-~13851~^~321~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2003~
-~13851~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2003~
-~13851~^~324~^13.^0^^~4~^~BFFN~^^^^^^^^^^~03/01/2009~
-~13851~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2003~
-~13851~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2003~
-~13851~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2003~
-~13851~^~417~^8.^0^^~4~^~BFPN~^^^^^^^^^^~04/01/2003~
-~13851~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~
-~13851~^~432~^8.^0^^~4~^~BFPN~^^^^^^^^^^~07/01/2010~
-~13851~^~435~^8.^0^^~4~^~NC~^^^^^^^^^^~07/01/2010~
-~13851~^~601~^97.^0^^~4~^~BFSN~^~23125~^^^^^^^^^~07/01/2010~
-~13852~^~208~^341.^0^^~4~^~NC~^^^^^^^^^^~12/01/1995~
-~13852~^~268~^1427.^0^^~4~^^^^^^^^^^^
-~13852~^~301~^13.^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~
-~13852~^~304~^20.^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~
-~13852~^~305~^183.^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~
-~13852~^~306~^324.^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~
-~13852~^~307~^63.^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~
-~13852~^~318~^0.^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~
-~13852~^~319~^0.^0^^~4~^~PAE~^^^^^^^^^^~06/01/2002~
-~13852~^~320~^0.^0^^~4~^~PAE~^^^^^^^^^^~06/01/2002~
-~13852~^~417~^6.^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~
-~13852~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~
-~13852~^~432~^6.^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~
-~13852~^~435~^6.^0^^~4~^~NC~^^^^^^^^^^~01/01/2001~
-~13852~^~601~^83.^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~
-~13853~^~208~^263.^0^^~4~^~NC~^^^^^^^^^^~07/01/2010~
-~13853~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2003~
-~13853~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2003~
-~13853~^~268~^1101.^0^^~4~^~NC~^^^^^^^^^^~07/01/2010~
-~13853~^~301~^24.^0^^~4~^~BFNN~^^^^^^^^^^~04/01/2003~
-~13853~^~304~^19.^0^^~4~^~BFNN~^^^^^^^^^^~04/01/2003~
-~13853~^~305~^172.^0^^~4~^~BFNN~^^^^^^^^^^~04/01/2003~
-~13853~^~306~^293.^0^^~4~^~BFNN~^^^^^^^^^^~04/01/2003~
-~13853~^~307~^48.^0^^~4~^~BFNN~^^^^^^^^^^~04/01/2003~
-~13853~^~318~^0.^0^^~1~^~AS~^^^^^^^^^^~04/01/2003~
-~13853~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2003~
-~13853~^~320~^0.^0^^~1~^~AS~^^^^^^^^^^~04/01/2003~
-~13853~^~321~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2003~
-~13853~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2003~
-~13853~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2003~
-~13853~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2003~
-~13853~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2003~
-~13853~^~417~^10.^0^^~4~^~BFPN~^^^^^^^^^^~04/01/2003~
-~13853~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~
-~13853~^~432~^10.^0^^~4~^~BFPN~^^^^^^^^^^~07/01/2010~
-~13853~^~435~^10.^0^^~4~^~NC~^^^^^^^^^^~07/01/2010~
-~13853~^~601~^80.^0^^~4~^~BFSN~^~23129~^^^^^^^^^~07/01/2010~
-~13854~^~208~^304.^0^^~4~^~NC~^^^^^^^^^^~07/01/2010~
-~13854~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2003~
-~13854~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2003~
-~13854~^~268~^1272.^0^^~4~^~NC~^^^^^^^^^^~07/01/2010~
-~13854~^~301~^16.^0^^~4~^~BFNN~^^^^^^^^^^~05/01/2003~
-~13854~^~304~^20.^0^^~4~^~BFNN~^^^^^^^^^^~05/01/2003~
-~13854~^~305~^183.^0^^~4~^~BFNN~^^^^^^^^^^~05/01/2003~
-~13854~^~306~^298.^0^^~4~^~BFNN~^^^^^^^^^^~05/01/2003~
-~13854~^~307~^49.^0^^~4~^~BFNN~^^^^^^^^^^~05/01/2003~
-~13854~^~318~^0.^0^^~1~^~AS~^^^^^^^^^^~05/01/2003~
-~13854~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2003~
-~13854~^~320~^0.^0^^~1~^~AS~^^^^^^^^^^~05/01/2003~
-~13854~^~321~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2003~
-~13854~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2003~
-~13854~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2003~
-~13854~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2003~
-~13854~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2003~
-~13854~^~417~^8.^0^^~4~^~BFPN~^^^^^^^^^^~05/01/2003~
-~13854~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~
-~13854~^~432~^8.^0^^~4~^~BFPN~^^^^^^^^^^~07/01/2010~
-~13854~^~435~^8.^0^^~4~^~NC~^^^^^^^^^^~07/01/2010~
-~13854~^~601~^94.^0^^~4~^~BFSN~^~23126~^^^^^^^^^~07/01/2010~
-~13855~^~208~^359.^0^^~4~^~NC~^^^^^^^^^^~12/01/1995~
-~13855~^~268~^1502.^0^^~4~^^^^^^^^^^^
-~13855~^~301~^13.^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~
-~13855~^~304~^20.^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~
-~13855~^~305~^181.^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~
-~13855~^~306~^319.^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~
-~13855~^~307~^63.^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~
-~13855~^~318~^0.^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~
-~13855~^~319~^0.^0^^~4~^~PAE~^^^^^^^^^^~06/01/2002~
-~13855~^~320~^0.^0^^~4~^~PAE~^^^^^^^^^^~06/01/2002~
-~13855~^~417~^6.^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~
-~13855~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~
-~13855~^~432~^6.^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~
-~13855~^~435~^6.^0^^~4~^~NC~^^^^^^^^^^~01/01/2001~
-~13855~^~601~^83.^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~
-~13856~^~208~^246.^0^^~4~^~NC~^^^^^^^^^^~07/01/2010~
-~13856~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2003~
-~13856~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2003~
-~13856~^~268~^1029.^0^^~4~^~NC~^^^^^^^^^^~07/01/2010~
-~13856~^~301~^22.^0^^~4~^~BFNN~^^^^^^^^^^~04/01/2003~
-~13856~^~304~^20.^0^^~4~^~BFNN~^^^^^^^^^^~04/01/2003~
-~13856~^~305~^180.^0^^~4~^~BFNN~^^^^^^^^^^~04/01/2003~
-~13856~^~306~^297.^0^^~4~^~BFNN~^^^^^^^^^^~04/01/2003~
-~13856~^~307~^49.^0^^~4~^~BFNN~^^^^^^^^^^~04/01/2003~
-~13856~^~318~^0.^0^^~1~^~AS~^^^^^^^^^^~04/01/2003~
-~13856~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2003~
-~13856~^~320~^0.^0^^~1~^~AS~^^^^^^^^^^~04/01/2003~
-~13856~^~321~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2003~
-~13856~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2003~
-~13856~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2003~
-~13856~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2003~
-~13856~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2003~
-~13856~^~417~^10.^0^^~4~^~BFPN~^^^^^^^^^^~04/01/2003~
-~13856~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~
-~13856~^~432~^10.^0^^~4~^~BFPN~^^^^^^^^^^~07/01/2010~
-~13856~^~435~^10.^0^^~4~^~NC~^^^^^^^^^^~07/01/2010~
-~13856~^~601~^85.^0^^~4~^~BFSN~^~23130~^^^^^^^^^~07/01/2010~
-~13857~^~208~^278.^0^^~4~^~NC~^^^^^^^^^^~07/01/2010~
-~13857~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2003~
-~13857~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2003~
-~13857~^~268~^1165.^0^^~4~^~NC~^^^^^^^^^^~07/01/2010~
-~13857~^~301~^22.^0^^~4~^~BFNN~^^^^^^^^^^~04/01/2003~
-~13857~^~304~^23.^0^^~4~^~BFNN~^^^^^^^^^^~04/01/2003~
-~13857~^~305~^219.^0^^~4~^~BFNN~^^^^^^^^^^~04/01/2003~
-~13857~^~306~^349.^0^^~4~^~BFNN~^^^^^^^^^^~04/01/2003~
-~13857~^~307~^58.^0^^~4~^~BFNN~^^^^^^^^^^~04/01/2003~
-~13857~^~318~^0.^0^^~1~^~AS~^^^^^^^^^^~04/01/2003~
-~13857~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2003~
-~13857~^~320~^0.^0^^~1~^~AS~^^^^^^^^^^~04/01/2003~
-~13857~^~321~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2003~
-~13857~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2003~
-~13857~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2003~
-~13857~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2003~
-~13857~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2003~
-~13857~^~417~^8.^0^^~4~^~BFPN~^^^^^^^^^^~04/01/2003~
-~13857~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~
-~13857~^~432~^8.^0^^~4~^~BFPN~^^^^^^^^^^~07/01/2010~
-~13857~^~435~^8.^0^^~4~^~NC~^^^^^^^^^^~07/01/2010~
-~13857~^~601~^103.^0^^~4~^~BFSN~^~23127~^^^^^^^^^~07/01/2010~
-~13858~^~208~^323.^0^^~4~^~NC~^^^^^^^^^^~12/01/1995~
-~13858~^~268~^1351.^0^^~4~^^^^^^^^^^^
-~13858~^~301~^13.^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~
-~13858~^~304~^20.^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~
-~13858~^~305~^185.^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~
-~13858~^~306~^328.^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~
-~13858~^~307~^64.^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~
-~13858~^~318~^0.^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~
-~13858~^~319~^0.^0^^~4~^~PAE~^^^^^^^^^^~06/01/2002~
-~13858~^~320~^0.^0^^~4~^~PAE~^^^^^^^^^^~06/01/2002~
-~13858~^~417~^6.^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~
-~13858~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~
-~13858~^~432~^6.^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~
-~13858~^~435~^6.^0^^~4~^~NC~^^^^^^^^^^~01/01/2001~
-~13858~^~601~^83.^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~
-~13859~^~208~^335.^0^^~4~^~NC~^^^^^^^^^^~12/01/1995~
-~13859~^~268~^1401.^0^^~4~^~NC~^^^^^^^^^^~05/01/2016~
-~13859~^~301~^10.^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~
-~13859~^~304~^17.^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~
-~13859~^~305~^160.^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~
-~13859~^~306~^286.^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~
-~13859~^~307~^53.^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~
-~13859~^~318~^0.^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~
-~13859~^~319~^0.^0^^~4~^~PAE~^^^^^^^^^^~06/01/2002~
-~13859~^~320~^0.^0^^~4~^~PAE~^^^^^^^^^^~06/01/2002~
-~13859~^~417~^5.^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~
-~13859~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~
-~13859~^~432~^5.^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~
-~13859~^~435~^5.^0^^~4~^~NC~^^^^^^^^^^~01/01/2001~
-~13859~^~601~^70.^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~
-~13860~^~208~^354.^0^^~4~^~NC~^^^^^^^^^^~12/01/1995~
-~13860~^~268~^1481.^0^^~4~^^^^^^^^^^^
-~13860~^~301~^13.^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~
-~13860~^~304~^22.^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~
-~13860~^~305~^178.^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~
-~13860~^~306~^332.^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~
-~13860~^~307~^63.^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~
-~13860~^~318~^0.^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~
-~13860~^~319~^0.^0^^~4~^~PAE~^^^^^^^^^^~06/01/2002~
-~13860~^~320~^0.^0^^~4~^~PAE~^^^^^^^^^^~06/01/2002~
-~13860~^~417~^7.^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~
-~13860~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~
-~13860~^~432~^7.^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~
-~13860~^~435~^7.^0^^~4~^~NC~^^^^^^^^^^~01/01/2001~
-~13860~^~601~^83.^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~
-~13861~^~208~^411.^0^^~4~^~NC~^^^^^^^^^^~12/01/1995~
-~13861~^~268~^1720.^0^^~4~^^^^^^^^^^^
-~13861~^~301~^13.^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~
-~13861~^~304~^20.^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~
-~13861~^~305~^178.^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~
-~13861~^~306~^323.^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~
-~13861~^~307~^65.^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~
-~13861~^~318~^0.^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~
-~13861~^~319~^0.^0^^~4~^~PAE~^^^^^^^^^^~06/01/2002~
-~13861~^~320~^0.^0^^~4~^~PAE~^^^^^^^^^^~06/01/2002~
-~13861~^~417~^7.^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~
-~13861~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~
-~13861~^~432~^7.^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~
-~13861~^~435~^7.^0^^~4~^~NC~^^^^^^^^^^~01/01/2001~
-~13861~^~601~^84.^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~
-~13862~^~208~^194.^0^^~4~^~NC~^^^^^^^^^^~07/01/2010~
-~13862~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~07/01/2010~
-~13862~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~07/01/2010~
-~13862~^~268~^813.^0^^~4~^~NC~^^^^^^^^^^~07/01/2010~
-~13862~^~301~^14.^1^^~1~^~AR~^^^^^^^^^^~07/01/2010~
-~13862~^~304~^24.^1^^~1~^~AR~^^^^^^^^^^~07/01/2010~
-~13862~^~305~^224.^1^^~1~^~AR~^^^^^^^^^^~07/01/2010~
-~13862~^~306~^388.^1^^~1~^~AR~^^^^^^^^^^~07/01/2010~
-~13862~^~307~^88.^1^^~1~^~AR~^^^^^^^^^^~07/01/2010~
-~13862~^~318~^22.^0^^~4~^~NC~^^^^^^^^^^~07/01/2010~
-~13862~^~319~^7.^0^^~4~^~BFSN~^^^^^^^^^^~07/01/2010~
-~13862~^~320~^7.^0^^~4~^~NC~^^^^^^^^^^~07/01/2010~
-~13862~^~321~^0.^0^^~7~^~Z~^^^^^^^^^^~07/01/2010~
-~13862~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~07/01/2010~
-~13862~^~324~^4.^0^^~4~^~BFSN~^^^^^^^^^^~07/01/2010~
-~13862~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~07/01/2010~
-~13862~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~07/01/2010~
-~13862~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~07/01/2010~
-~13862~^~417~^7.^0^^~4~^~BFPN~^~23044~^^^^^^^^^~07/01/2010~
-~13862~^~431~^0.^0^^~4~^~BFPN~^~23044~^^^^^^^^^~07/01/2010~
-~13862~^~432~^7.^0^^~4~^~BFPN~^~23044~^^^^^^^^^~07/01/2010~
-~13862~^~435~^7.^0^^~4~^~NC~^~23044~^^^^^^^^^~07/01/2010~
-~13862~^~601~^98.^2^^~1~^~AR~^^^^^^^^^^~07/01/2010~
-~13863~^~208~^146.^0^^~4~^~NC~^^^^^^^^^^~07/01/2010~
-~13863~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~07/01/2010~
-~13863~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~07/01/2010~
-~13863~^~268~^610.^0^^~4~^~NC~^^^^^^^^^^~07/01/2010~
-~13863~^~301~^12.^3^^~1~^~AR~^^^^^^^^^^~07/01/2010~
-~13863~^~304~^19.^3^^~1~^~AR~^^^^^^^^^^~07/01/2010~
-~13863~^~305~^201.^3^^~1~^~AR~^^^^^^^^^^~07/01/2010~
-~13863~^~306~^335.^3^^~1~^~AR~^^^^^^^^^^~07/01/2010~
-~13863~^~307~^82.^3^^~1~^~AR~^^^^^^^^^^~07/01/2010~
-~13863~^~318~^11.^0^^~4~^~NC~^^^^^^^^^^~07/01/2010~
-~13863~^~319~^3.^0^^~4~^~BFSN~^^^^^^^^^^~07/01/2010~
-~13863~^~320~^3.^0^^~4~^~NC~^^^^^^^^^^~07/01/2010~
-~13863~^~321~^0.^0^^~7~^~Z~^^^^^^^^^^~07/01/2010~
-~13863~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~07/01/2010~
-~13863~^~324~^4.^0^^~4~^~BFSN~^^^^^^^^^^~07/01/2010~
-~13863~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~07/01/2010~
-~13863~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~07/01/2010~
-~13863~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~07/01/2010~
-~13863~^~417~^3.^0^^~4~^~BFPN~^^^^^^^^^^~07/01/2010~
-~13863~^~431~^0.^0^^~4~^~BFPN~^^^^^^^^^^~07/01/2010~
-~13863~^~432~^3.^0^^~4~^~BFPN~^^^^^^^^^^~07/01/2010~
-~13863~^~435~^3.^0^^~4~^~NC~^^^^^^^^^^~07/01/2010~
-~13863~^~601~^69.^6^1.^~1~^~AR~^^^^^^^^^^~07/01/2010~
-~13864~^~208~^195.^0^^~4~^~NC~^^^^^^^^^^~01/01/2017~
-~13864~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2007~
-~13864~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2007~
-~13864~^~268~^816.^0^^~4~^^^^^^^^^^^~01/01/2017~
-~13864~^~301~^4.^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~
-~13864~^~304~^22.^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~
-~13864~^~305~^199.^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~
-~13864~^~306~^342.^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~
-~13864~^~307~^54.^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~
-~13864~^~318~^0.^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~
-~13864~^~319~^0.^0^^~4~^~BFSN~^^^^^^^^^^~03/01/2007~
-~13864~^~320~^0.^0^^~1~^~AS~^^^^^^^^^^~03/01/2007~
-~13864~^~321~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2007~
-~13864~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2007~
-~13864~^~324~^6.^0^^~4~^~BFFN~^^^^^^^^^^~03/01/2009~
-~13864~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2007~
-~13864~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2007~
-~13864~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2007~
-~13864~^~417~^8.^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~
-~13864~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~
-~13864~^~432~^8.^0^^~4~^~PAE~^^^^^^^^^^~03/01/2009~
-~13864~^~435~^8.^0^^~4~^~NC~^^^^^^^^^^~03/01/2009~
-~13864~^~601~^62.^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~
-~13865~^~208~^235.^0^^~4~^~NC~^^^^^^^^^^~12/01/1995~
-~13865~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2007~
-~13865~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2007~
-~13865~^~268~^983.^0^^~4~^^^^^^^^^^^~03/01/2009~
-~13865~^~301~^6.^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~
-~13865~^~304~^26.^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~
-~13865~^~305~^240.^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~
-~13865~^~306~^395.^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~
-~13865~^~307~^62.^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~
-~13865~^~318~^0.^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~
-~13865~^~319~^0.^0^^~4~^~BFSN~^~13892~^^^^^^^^^~03/01/2009~
-~13865~^~320~^0.^0^^~1~^~AS~^^^^^^^^^^~03/01/2007~
-~13865~^~321~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2007~
-~13865~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2007~
-~13865~^~324~^8.^0^^~4~^~BFFN~^^^^^^^^^^~03/01/2009~
-~13865~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2007~
-~13865~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2007~
-~13865~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2007~
-~13865~^~417~^9.^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~
-~13865~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~
-~13865~^~432~^9.^0^^~4~^~PAE~^^^^^^^^^^~03/01/2009~
-~13865~^~435~^9.^0^^~4~^~NC~^^^^^^^^^^~11/01/2009~
-~13865~^~601~^79.^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~
-~13866~^~208~^184.^0^^~4~^~NC~^^^^^^^^^^~01/01/2017~
-~13866~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2008~
-~13866~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2008~
-~13866~^~268~^770.^0^^~4~^^^^^^^^^^^~01/01/2017~
-~13866~^~301~^4.^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~
-~13866~^~304~^22.^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~
-~13866~^~305~^199.^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~
-~13866~^~306~^342.^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~
-~13866~^~307~^54.^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~
-~13866~^~318~^0.^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~
-~13866~^~320~^0.^0^^~1~^~AS~^^^^^^^^^^~04/01/2008~
-~13866~^~321~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2008~
-~13866~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2008~
-~13866~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2008~
-~13866~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2008~
-~13866~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2008~
-~13866~^~417~^8.^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~
-~13866~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~
-~13866~^~432~^8.^0^^~4~^~PAE~^^^^^^^^^^~04/01/2008~
-~13866~^~435~^8.^0^^~4~^~NC~^^^^^^^^^^~06/01/2008~
-~13866~^~601~^62.^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~
-~13867~^~208~^218.^0^^~4~^~NC~^^^^^^^^^^~12/01/1995~
-~13867~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2008~
-~13867~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2008~
-~13867~^~268~^912.^0^^~4~^^^^^^^^^^^~04/01/2008~
-~13867~^~301~^6.^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~
-~13867~^~304~^26.^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~
-~13867~^~305~^240.^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~
-~13867~^~306~^395.^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~
-~13867~^~307~^62.^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~
-~13867~^~318~^0.^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~
-~13867~^~320~^0.^0^^~1~^~AS~^^^^^^^^^^~04/01/2008~
-~13867~^~321~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2008~
-~13867~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2008~
-~13867~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2008~
-~13867~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2008~
-~13867~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2008~
-~13867~^~417~^9.^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~
-~13867~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~
-~13867~^~432~^9.^0^^~4~^~PAE~^^^^^^^^^^~04/01/2008~
-~13867~^~435~^9.^0^^~4~^~NC~^^^^^^^^^^~06/01/2008~
-~13867~^~601~^79.^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~
-~13868~^~208~^192.^0^^~4~^~NC~^^^^^^^^^^~07/01/2010~
-~13868~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2003~
-~13868~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2003~
-~13868~^~268~^805.^0^^~4~^~NC~^^^^^^^^^^~07/01/2010~
-~13868~^~301~^20.^4^4.^~1~^~PAK~^^^^^^^^^^~05/01/2003~
-~13868~^~304~^22.^4^0.^~1~^~PAK~^^^^^^^^^^~05/01/2003~
-~13868~^~305~^199.^4^3.^~1~^~PAK~^^^^^^^^^^~05/01/2003~
-~13868~^~306~^327.^4^9.^~1~^~PAK~^^^^^^^^^^~05/01/2003~
-~13868~^~307~^56.^4^2.^~1~^~PAK~^^^^^^^^^^~05/01/2003~
-~13868~^~318~^0.^0^^~1~^~AS~^^^^^^^^^^~05/01/2003~
-~13868~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2003~
-~13868~^~320~^0.^0^^~1~^~AS~^^^^^^^^^^~05/01/2003~
-~13868~^~321~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2003~
-~13868~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2003~
-~13868~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2003~
-~13868~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2003~
-~13868~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2003~
-~13868~^~417~^11.^0^^~4~^~BFPN~^^^^^^^^^^~05/01/2003~
-~13868~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~
-~13868~^~432~^11.^0^^~4~^~BFPN~^^^^^^^^^^~07/01/2010~
-~13868~^~435~^11.^0^^~4~^~NC~^^^^^^^^^^~07/01/2010~
-~13868~^~601~^73.^0^^~4~^~BFSN~^^^^^^^^^^~07/01/2010~
-~13869~^~208~^247.^0^^~4~^~NC~^^^^^^^^^^~07/01/2010~
-~13869~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2003~
-~13869~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2003~
-~13869~^~268~^1033.^0^^~4~^~NC~^^^^^^^^^^~07/01/2010~
-~13869~^~301~^8.^4^0.^~1~^~PAK~^^^^^^^^^^~04/01/2003~
-~13869~^~304~^21.^4^0.^~1~^~PAK~^^^^^^^^^^~04/01/2003~
-~13869~^~305~^204.^4^2.^~1~^~PAK~^^^^^^^^^^~04/01/2003~
-~13869~^~306~^266.^4^2.^~1~^~PAK~^^^^^^^^^^~04/01/2003~
-~13869~^~307~^43.^4^1.^~1~^~PAK~^^^^^^^^^^~04/01/2003~
-~13869~^~318~^0.^0^^~1~^~AS~^^^^^^^^^^~04/01/2003~
-~13869~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2003~
-~13869~^~320~^0.^0^^~1~^~AS~^^^^^^^^^^~04/01/2003~
-~13869~^~321~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2003~
-~13869~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2003~
-~13869~^~324~^8.^0^^~4~^~BFFN~^^^^^^^^^^~03/01/2009~
-~13869~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2003~
-~13869~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2003~
-~13869~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2003~
-~13869~^~417~^10.^0^^~4~^~BFPN~^^^^^^^^^^~04/01/2003~
-~13869~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~
-~13869~^~432~^10.^0^^~4~^~BFPN~^^^^^^^^^^~07/01/2010~
-~13869~^~435~^10.^0^^~4~^~NC~^^^^^^^^^^~07/01/2010~
-~13869~^~601~^100.^0^^~4~^~BFSN~^^^^^^^^^^~07/01/2010~
-~13870~^~208~^218.^0^^~4~^~NC~^^^^^^^^^^~07/01/2010~
-~13870~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2003~
-~13870~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2003~
-~13870~^~268~^911.^0^^~4~^~NC~^^^^^^^^^^~07/01/2010~
-~13870~^~301~^6.^0^^~4~^~BFNN~^^^^^^^^^^~04/01/2003~
-~13870~^~304~^17.^0^^~4~^~BFNN~^^^^^^^^^^~04/01/2003~
-~13870~^~305~^164.^0^^~4~^~BFNN~^^^^^^^^^^~04/01/2003~
-~13870~^~306~^214.^0^^~4~^~BFNN~^^^^^^^^^^~04/01/2003~
-~13870~^~307~^35.^0^^~4~^~BFNN~^^^^^^^^^^~04/01/2003~
-~13870~^~318~^0.^0^^~1~^~AS~^^^^^^^^^^~04/01/2003~
-~13870~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2003~
-~13870~^~320~^0.^0^^~1~^~AS~^^^^^^^^^^~04/01/2003~
-~13870~^~321~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2003~
-~13870~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2003~
-~13870~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2003~
-~13870~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2003~
-~13870~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2003~
-~13870~^~417~^8.^0^^~4~^~BFPN~^^^^^^^^^^~04/01/2003~
-~13870~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~
-~13870~^~432~^8.^0^^~4~^~BFPN~^^^^^^^^^^~07/01/2010~
-~13870~^~435~^8.^0^^~4~^~NC~^^^^^^^^^^~07/01/2010~
-~13870~^~601~^85.^0^^~4~^~BFSN~^^^^^^^^^^~07/01/2010~
-~13871~^~208~^198.^0^^~4~^~NC~^^^^^^^^^^~07/01/2010~
-~13871~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2003~
-~13871~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2003~
-~13871~^~268~^829.^0^^~4~^~NC~^^^^^^^^^^~07/01/2010~
-~13871~^~301~^16.^2^^~1~^~PAK~^^^^^^^^^^~04/01/2008~
-~13871~^~304~^22.^2^^~1~^~PAK~^^^^^^^^^^~04/01/2008~
-~13871~^~305~^197.^2^^~1~^~PAK~^^^^^^^^^^~04/01/2008~
-~13871~^~306~^319.^2^^~1~^~PAK~^^^^^^^^^^~04/01/2008~
-~13871~^~307~^53.^2^^~1~^~PAK~^^^^^^^^^^~04/01/2008~
-~13871~^~318~^0.^0^^~1~^~AS~^^^^^^^^^^~05/01/2003~
-~13871~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2003~
-~13871~^~320~^0.^0^^~1~^~AS~^^^^^^^^^^~05/01/2003~
-~13871~^~321~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2003~
-~13871~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2003~
-~13871~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2003~
-~13871~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2003~
-~13871~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2003~
-~13871~^~417~^11.^0^^~4~^~BFPN~^^^^^^^^^^~05/01/2003~
-~13871~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~
-~13871~^~432~^11.^0^^~4~^~BFPN~^^^^^^^^^^~07/01/2010~
-~13871~^~435~^11.^0^^~4~^~NC~^^^^^^^^^^~07/01/2010~
-~13871~^~601~^75.^0^^~4~^~BFSN~^^^^^^^^^^~07/01/2010~
-~13872~^~208~^254.^0^^~4~^~NC~^^^^^^^^^^~07/01/2010~
-~13872~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2003~
-~13872~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2003~
-~13872~^~268~^1061.^0^^~4~^~NC~^^^^^^^^^^~07/01/2010~
-~13872~^~301~^7.^2^^~1~^~PAK~^^^^^^^^^^~04/01/2003~
-~13872~^~304~^21.^2^^~1~^~PAK~^^^^^^^^^^~04/01/2003~
-~13872~^~305~^199.^2^^~1~^~PAK~^^^^^^^^^^~04/01/2003~
-~13872~^~306~^263.^2^^~1~^~PAK~^^^^^^^^^^~04/01/2003~
-~13872~^~307~^42.^2^^~1~^~PAK~^^^^^^^^^^~04/01/2003~
-~13872~^~318~^0.^0^^~1~^~AS~^^^^^^^^^^~04/01/2003~
-~13872~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2003~
-~13872~^~320~^0.^0^^~1~^~AS~^^^^^^^^^^~04/01/2003~
-~13872~^~321~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2003~
-~13872~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2003~
-~13872~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2003~
-~13872~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2003~
-~13872~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2003~
-~13872~^~417~^10.^0^^~4~^~BFPN~^^^^^^^^^^~04/01/2003~
-~13872~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~
-~13872~^~432~^10.^0^^~4~^~BFPN~^^^^^^^^^^~07/01/2010~
-~13872~^~435~^10.^0^^~4~^~NC~^^^^^^^^^^~07/01/2010~
-~13872~^~601~^101.^0^^~4~^~BFSN~^^^^^^^^^^~07/01/2010~
-~13873~^~208~^223.^0^^~4~^~NC~^^^^^^^^^^~07/01/2010~
-~13873~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2003~
-~13873~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2003~
-~13873~^~268~^935.^0^^~4~^~NC~^^^^^^^^^^~07/01/2010~
-~13873~^~301~^6.^0^^~4~^~BFNN~^^^^^^^^^^~04/01/2003~
-~13873~^~304~^17.^0^^~4~^~BFNN~^^^^^^^^^^~04/01/2003~
-~13873~^~305~^159.^0^^~4~^~BFNN~^^^^^^^^^^~04/01/2003~
-~13873~^~306~^210.^0^^~4~^~BFNN~^^^^^^^^^^~04/01/2003~
-~13873~^~307~^34.^0^^~4~^~BFNN~^^^^^^^^^^~04/01/2003~
-~13873~^~318~^0.^0^^~1~^~AS~^^^^^^^^^^~04/01/2003~
-~13873~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2003~
-~13873~^~320~^0.^0^^~1~^~AS~^^^^^^^^^^~04/01/2003~
-~13873~^~321~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2003~
-~13873~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2003~
-~13873~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2003~
-~13873~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2003~
-~13873~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2003~
-~13873~^~417~^8.^0^^~4~^~BFPN~^^^^^^^^^^~04/01/2003~
-~13873~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~
-~13873~^~432~^8.^0^^~4~^~BFPN~^^^^^^^^^^~07/01/2010~
-~13873~^~435~^8.^0^^~4~^~NC~^^^^^^^^^^~07/01/2010~
-~13873~^~601~^86.^0^^~4~^~BFSN~^^^^^^^^^^~07/01/2010~
-~13874~^~208~^187.^0^^~4~^~NC~^^^^^^^^^^~07/01/2010~
-~13874~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2003~
-~13874~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2003~
-~13874~^~268~^782.^0^^~4~^~NC~^^^^^^^^^^~07/01/2010~
-~13874~^~301~^23.^2^^~1~^~PAK~^^^^^^^^^^~04/01/2008~
-~13874~^~304~^22.^2^^~1~^~PAK~^^^^^^^^^^~04/01/2008~
-~13874~^~305~^201.^2^^~1~^~PAK~^^^^^^^^^^~04/01/2008~
-~13874~^~306~^335.^2^^~1~^~PAK~^^^^^^^^^^~04/01/2008~
-~13874~^~307~^60.^2^^~1~^~PAK~^^^^^^^^^^~04/01/2008~
-~13874~^~318~^0.^0^^~1~^~AS~^^^^^^^^^^~05/01/2003~
-~13874~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2003~
-~13874~^~320~^0.^0^^~1~^~AS~^^^^^^^^^^~05/01/2003~
-~13874~^~321~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2003~
-~13874~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2003~
-~13874~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2003~
-~13874~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2003~
-~13874~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2003~
-~13874~^~417~^11.^0^^~4~^~BFPN~^^^^^^^^^^~05/01/2003~
-~13874~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~
-~13874~^~432~^11.^0^^~4~^~BFPN~^^^^^^^^^^~07/01/2010~
-~13874~^~435~^11.^0^^~4~^~NC~^^^^^^^^^^~07/01/2010~
-~13874~^~601~^72.^0^^~4~^~BFSN~^^^^^^^^^^~07/01/2010~
-~13875~^~208~^240.^0^^~4~^~NC~^^^^^^^^^^~07/01/2010~
-~13875~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2003~
-~13875~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2003~
-~13875~^~268~^1006.^0^^~4~^~NC~^^^^^^^^^^~07/01/2010~
-~13875~^~301~^8.^2^^~1~^~PAK~^^^^^^^^^^~04/01/2003~
-~13875~^~304~^22.^2^^~1~^~PAK~^^^^^^^^^^~04/01/2003~
-~13875~^~305~^208.^2^^~1~^~PAK~^^^^^^^^^^~04/01/2003~
-~13875~^~306~^269.^2^^~1~^~PAK~^^^^^^^^^^~04/01/2003~
-~13875~^~307~^43.^2^^~1~^~PAK~^^^^^^^^^^~04/01/2003~
-~13875~^~318~^0.^0^^~1~^~AS~^^^^^^^^^^~04/01/2003~
-~13875~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2003~
-~13875~^~320~^0.^0^^~1~^~AS~^^^^^^^^^^~04/01/2003~
-~13875~^~321~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2003~
-~13875~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2003~
-~13875~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2003~
-~13875~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2003~
-~13875~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2003~
-~13875~^~417~^10.^0^^~4~^~BFPN~^^^^^^^^^^~04/01/2003~
-~13875~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~
-~13875~^~432~^10.^0^^~4~^~BFPN~^^^^^^^^^^~07/01/2010~
-~13875~^~435~^10.^0^^~4~^~NC~^^^^^^^^^^~07/01/2010~
-~13875~^~601~^98.^0^^~4~^~BFSN~^^^^^^^^^^~07/01/2010~
-~13876~^~208~^212.^0^^~4~^~NC~^^^^^^^^^^~07/01/2010~
-~13876~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2003~
-~13876~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2003~
-~13876~^~268~^888.^0^^~4~^~NC~^^^^^^^^^^~07/01/2010~
-~13876~^~301~^7.^0^^~4~^~BFNN~^^^^^^^^^^~04/01/2003~
-~13876~^~304~^18.^0^^~4~^~BFNN~^^^^^^^^^^~04/01/2003~
-~13876~^~305~^170.^0^^~4~^~BFNN~^^^^^^^^^^~04/01/2003~
-~13876~^~306~^219.^0^^~4~^~BFNN~^^^^^^^^^^~04/01/2003~
-~13876~^~307~^35.^0^^~4~^~BFNN~^^^^^^^^^^~04/01/2003~
-~13876~^~318~^0.^0^^~1~^~AS~^^^^^^^^^^~04/01/2003~
-~13876~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2003~
-~13876~^~320~^0.^0^^~1~^~AS~^^^^^^^^^^~04/01/2003~
-~13876~^~321~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2003~
-~13876~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2003~
-~13876~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2003~
-~13876~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2003~
-~13876~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2003~
-~13876~^~417~^8.^0^^~4~^~BFPN~^^^^^^^^^^~04/01/2003~
-~13876~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~
-~13876~^~432~^8.^0^^~4~^~BFPN~^^^^^^^^^^~07/01/2010~
-~13876~^~435~^8.^0^^~4~^~NC~^^^^^^^^^^~07/01/2010~
-~13876~^~601~^84.^0^^~4~^~BFSN~^^^^^^^^^^~07/01/2010~
-~13877~^~208~^166.^0^^~4~^~NC~^^^^^^^^^^~07/01/2010~
-~13877~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2003~
-~13877~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2003~
-~13877~^~268~^695.^0^^~4~^~NC~^^^^^^^^^^~07/01/2010~
-~13877~^~301~^20.^0^^~4~^~BFNN~^^^^^^^^^^~05/01/2003~
-~13877~^~304~^23.^0^^~4~^~BFNN~^^^^^^^^^^~05/01/2003~
-~13877~^~305~^207.^0^^~4~^~BFNN~^^^^^^^^^^~05/01/2003~
-~13877~^~306~^340.^0^^~4~^~BFNN~^^^^^^^^^^~05/01/2003~
-~13877~^~307~^58.^0^^~4~^~BFNN~^^^^^^^^^^~05/01/2003~
-~13877~^~318~^0.^0^^~1~^~AS~^^^^^^^^^^~05/01/2003~
-~13877~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2003~
-~13877~^~320~^0.^0^^~1~^~AS~^^^^^^^^^^~05/01/2003~
-~13877~^~321~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2003~
-~13877~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2003~
-~13877~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2003~
-~13877~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2003~
-~13877~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2003~
-~13877~^~417~^12.^0^^~4~^~BFPN~^^^^^^^^^^~05/01/2003~
-~13877~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~
-~13877~^~432~^12.^0^^~4~^~BFPN~^^^^^^^^^^~07/01/2010~
-~13877~^~435~^12.^0^^~4~^~NC~^^^^^^^^^^~07/01/2010~
-~13877~^~601~^68.^0^^~4~^~BFSN~^^^^^^^^^^~07/01/2010~
-~13878~^~208~^208.^0^^~4~^~NC~^^^^^^^^^^~07/01/2010~
-~13878~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2003~
-~13878~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2003~
-~13878~^~268~^870.^0^^~4~^~NC~^^^^^^^^^^~07/01/2010~
-~13878~^~301~^7.^0^^~4~^~BFNN~^^^^^^^^^^~04/01/2003~
-~13878~^~304~^18.^0^^~4~^~BFNN~^^^^^^^^^^~04/01/2003~
-~13878~^~305~^174.^0^^~4~^~BFNN~^^^^^^^^^^~04/01/2003~
-~13878~^~306~^227.^0^^~4~^~BFNN~^^^^^^^^^^~04/01/2003~
-~13878~^~307~^37.^0^^~4~^~BFNN~^^^^^^^^^^~04/01/2003~
-~13878~^~318~^0.^0^^~1~^~AS~^^^^^^^^^^~04/01/2003~
-~13878~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2003~
-~13878~^~320~^0.^0^^~1~^~AS~^^^^^^^^^^~04/01/2003~
-~13878~^~321~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2003~
-~13878~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2003~
-~13878~^~324~^6.^0^^~4~^~BFFN~^^^^^^^^^^~03/01/2009~
-~13878~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2003~
-~13878~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2003~
-~13878~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2003~
-~13878~^~417~^9.^0^^~4~^~BFPN~^^^^^^^^^^~04/01/2003~
-~13878~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~
-~13878~^~432~^9.^0^^~4~^~BFPN~^^^^^^^^^^~07/01/2010~
-~13878~^~435~^9.^0^^~4~^~NC~^^^^^^^^^^~07/01/2010~
-~13878~^~601~^84.^0^^~4~^~BFSN~^^^^^^^^^^~07/01/2010~
-~13879~^~208~^173.^0^^~4~^~NC~^^^^^^^^^^~07/01/2010~
-~13879~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2003~
-~13879~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2003~
-~13879~^~268~^724.^0^^~4~^~NC~^^^^^^^^^^~07/01/2010~
-~13879~^~301~^16.^0^^~4~^~BFNN~^^^^^^^^^^~05/01/2003~
-~13879~^~304~^23.^0^^~4~^~BFNN~^^^^^^^^^^~05/01/2003~
-~13879~^~305~^206.^0^^~4~^~BFNN~^^^^^^^^^^~05/01/2003~
-~13879~^~306~^334.^0^^~4~^~BFNN~^^^^^^^^^^~05/01/2003~
-~13879~^~307~^55.^0^^~4~^~BFNN~^^^^^^^^^^~05/01/2003~
-~13879~^~318~^0.^0^^~1~^~AS~^^^^^^^^^^~05/01/2003~
-~13879~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2003~
-~13879~^~320~^0.^0^^~1~^~AS~^^^^^^^^^^~05/01/2003~
-~13879~^~321~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2003~
-~13879~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2003~
-~13879~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2003~
-~13879~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2003~
-~13879~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2003~
-~13879~^~417~^12.^0^^~4~^~BFPN~^^^^^^^^^^~05/01/2003~
-~13879~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~
-~13879~^~432~^12.^0^^~4~^~BFPN~^^^^^^^^^^~07/01/2010~
-~13879~^~435~^12.^0^^~4~^~NC~^^^^^^^^^^~07/01/2010~
-~13879~^~601~^70.^0^^~4~^~BFSN~^^^^^^^^^^~07/01/2010~
-~13880~^~208~^212.^0^^~4~^~NC~^^^^^^^^^^~07/01/2010~
-~13880~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2003~
-~13880~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2003~
-~13880~^~268~^888.^0^^~4~^~NC~^^^^^^^^^^~07/01/2010~
-~13880~^~301~^6.^0^^~4~^~BFNN~^^^^^^^^^^~04/01/2003~
-~13880~^~304~^18.^0^^~4~^~BFNN~^^^^^^^^^^~04/01/2003~
-~13880~^~305~^171.^0^^~4~^~BFNN~^^^^^^^^^^~04/01/2003~
-~13880~^~306~^227.^0^^~4~^~BFNN~^^^^^^^^^^~04/01/2003~
-~13880~^~307~^37.^0^^~4~^~BFNN~^^^^^^^^^^~04/01/2003~
-~13880~^~318~^0.^0^^~1~^~AS~^^^^^^^^^^~04/01/2003~
-~13880~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2003~
-~13880~^~320~^0.^0^^~1~^~AS~^^^^^^^^^^~04/01/2003~
-~13880~^~321~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2003~
-~13880~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2003~
-~13880~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2003~
-~13880~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2003~
-~13880~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2003~
-~13880~^~417~^9.^0^^~4~^~BFPN~^^^^^^^^^^~04/01/2003~
-~13880~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~
-~13880~^~432~^9.^0^^~4~^~BFPN~^^^^^^^^^^~07/01/2010~
-~13880~^~435~^9.^0^^~4~^~NC~^^^^^^^^^^~07/01/2010~
-~13880~^~601~^86.^0^^~4~^~BFSN~^^^^^^^^^^~07/01/2010~
-~13881~^~208~^160.^0^^~4~^~NC~^^^^^^^^^^~05/01/2016~
-~13881~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2003~
-~13881~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2003~
-~13881~^~268~^668.^0^^~4~^~NC~^^^^^^^^^^~05/01/2016~
-~13881~^~301~^24.^0^^~4~^~BFNN~^^^^^^^^^^~05/01/2003~
-~13881~^~304~^23.^0^^~4~^~BFNN~^^^^^^^^^^~05/01/2003~
-~13881~^~305~^208.^0^^~4~^~BFNN~^^^^^^^^^^~05/01/2003~
-~13881~^~306~^346.^0^^~4~^~BFNN~^^^^^^^^^^~05/01/2003~
-~13881~^~307~^62.^0^^~4~^~BFNN~^^^^^^^^^^~05/01/2003~
-~13881~^~318~^0.^0^^~1~^~AS~^^^^^^^^^^~05/01/2003~
-~13881~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2003~
-~13881~^~320~^0.^0^^~1~^~AS~^^^^^^^^^^~05/01/2003~
-~13881~^~321~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2003~
-~13881~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2003~
-~13881~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2003~
-~13881~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2003~
-~13881~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2003~
-~13881~^~417~^11.^0^^~4~^~BFPN~^^^^^^^^^^~05/01/2003~
-~13881~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~
-~13881~^~432~^11.^0^^~4~^~BFPN~^^^^^^^^^^~07/01/2010~
-~13881~^~435~^11.^0^^~4~^~NC~^^^^^^^^^^~07/01/2010~
-~13881~^~601~^66.^0^^~4~^~BFSN~^^^^^^^^^^~07/01/2010~
-~13882~^~208~^204.^0^^~4~^~NC~^^^^^^^^^^~07/01/2010~
-~13882~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2003~
-~13882~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2003~
-~13882~^~268~^852.^0^^~4~^~NC~^^^^^^^^^^~07/01/2010~
-~13882~^~301~^7.^0^^~4~^~BFNN~^^^^^^^^^^~05/01/2003~
-~13882~^~304~^18.^0^^~4~^~BFNN~^^^^^^^^^^~05/01/2003~
-~13882~^~305~^177.^0^^~4~^~BFNN~^^^^^^^^^^~05/01/2003~
-~13882~^~306~^228.^0^^~4~^~BFNN~^^^^^^^^^^~05/01/2003~
-~13882~^~307~^37.^0^^~4~^~BFNN~^^^^^^^^^^~05/01/2003~
-~13882~^~318~^0.^0^^~1~^~AS~^^^^^^^^^^~05/01/2003~
-~13882~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2003~
-~13882~^~320~^0.^0^^~1~^~AS~^^^^^^^^^^~05/01/2003~
-~13882~^~321~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2003~
-~13882~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2003~
-~13882~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2003~
-~13882~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2003~
-~13882~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2003~
-~13882~^~417~^9.^0^^~4~^~BFPN~^^^^^^^^^^~05/01/2003~
-~13882~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~
-~13882~^~432~^9.^0^^~4~^~BFPN~^^^^^^^^^^~07/01/2010~
-~13882~^~435~^9.^0^^~4~^~NC~^^^^^^^^^^~07/01/2010~
-~13882~^~601~^83.^0^^~4~^~BFSN~^^^^^^^^^^~07/01/2010~
-~13883~^~208~^189.^0^^~4~^~NC~^^^^^^^^^^~12/01/1995~
-~13883~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2008~
-~13883~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2008~
-~13883~^~268~^791.^0^^~4~^^^^^^^^^^^~04/01/2008~
-~13883~^~301~^5.^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~
-~13883~^~304~^22.^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~
-~13883~^~305~^193.^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~
-~13883~^~306~^329.^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~
-~13883~^~307~^58.^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~
-~13883~^~318~^0.^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~
-~13883~^~417~^7.^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~
-~13883~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~
-~13883~^~432~^7.^0^^~4~^~PAE~^^^^^^^^^^~04/01/2008~
-~13883~^~435~^7.^0^^~4~^~NC~^^^^^^^^^^~06/01/2008~
-~13883~^~601~^65.^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~
-~13884~^~208~^219.^0^^~4~^~NC~^^^^^^^^^^~04/01/2005~
-~13884~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~11/01/2004~
-~13884~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~11/01/2004~
-~13884~^~268~^916.^0^^~4~^^^^^^^^^^^~03/01/2009~
-~13884~^~301~^6.^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~
-~13884~^~304~^26.^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~
-~13884~^~305~^230.^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~
-~13884~^~306~^367.^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~
-~13884~^~307~^63.^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~
-~13884~^~318~^0.^0^^~1~^~AS~^^^^^^^^^^~04/01/2005~
-~13884~^~319~^0.^0^^~4~^~NR~^^^^^^^^^^~11/01/2004~
-~13884~^~320~^0.^0^^~1~^~AS~^^^^^^^^^^~11/01/2004~
-~13884~^~321~^0.^0^^~7~^~Z~^^^^^^^^^^~11/01/2004~
-~13884~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~11/01/2004~
-~13884~^~324~^7.^0^^~4~^~BFFN~^^^^^^^^^^~03/01/2009~
-~13884~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~11/01/2004~
-~13884~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~11/01/2004~
-~13884~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~11/01/2004~
-~13884~^~417~^8.^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~
-~13884~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~
-~13884~^~432~^8.^0^^~4~^~PAE~^^^^^^^^^^~03/01/2009~
-~13884~^~435~^8.^0^^~4~^~NC~^^^^^^^^^^~11/01/2009~
-~13884~^~601~^82.^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~
-~13885~^~208~^199.^0^^~4~^~NC~^^^^^^^^^^~12/01/1995~
-~13885~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2008~
-~13885~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2008~
-~13885~^~268~^833.^0^^~4~^^^^^^^^^^^~04/01/2008~
-~13885~^~301~^5.^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~
-~13885~^~304~^21.^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~
-~13885~^~305~^192.^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~
-~13885~^~306~^326.^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~
-~13885~^~307~^58.^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~
-~13885~^~318~^0.^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~
-~13885~^~320~^0.^0^^~1~^~AS~^^^^^^^^^^~04/01/2008~
-~13885~^~321~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2008~
-~13885~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2008~
-~13885~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2008~
-~13885~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2008~
-~13885~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2008~
-~13885~^~417~^7.^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~
-~13885~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~
-~13885~^~432~^7.^0^^~4~^~PAE~^^^^^^^^^^~04/01/2008~
-~13885~^~435~^7.^0^^~4~^~NC~^^^^^^^^^^~06/01/2008~
-~13885~^~601~^65.^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~
-~13886~^~208~^228.^0^^~4~^~NC~^^^^^^^^^^~12/01/1995~
-~13886~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2007~
-~13886~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2007~
-~13886~^~268~^954.^0^^~4~^^^^^^^^^^^~03/01/2009~
-~13886~^~301~^6.^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~
-~13886~^~304~^25.^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~
-~13886~^~305~^229.^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~
-~13886~^~306~^365.^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~
-~13886~^~307~^63.^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~
-~13886~^~318~^0.^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~
-~13886~^~319~^0.^0^^~4~^~BFSN~^~13884~^^^^^^^^^~03/01/2007~
-~13886~^~320~^0.^0^^~1~^~AS~^^^^^^^^^^~03/01/2007~
-~13886~^~321~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2007~
-~13886~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2007~
-~13886~^~324~^8.^0^^~4~^~BFFN~^^^^^^^^^^~03/01/2009~
-~13886~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2007~
-~13886~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2007~
-~13886~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2007~
-~13886~^~417~^8.^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~
-~13886~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~
-~13886~^~432~^8.^0^^~4~^~PAE~^^^^^^^^^^~03/01/2009~
-~13886~^~435~^8.^0^^~4~^~NC~^^^^^^^^^^~03/01/2009~
-~13886~^~601~^82.^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~
-~13887~^~208~^178.^0^^~4~^~NC~^^^^^^^^^^~12/01/1995~
-~13887~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2008~
-~13887~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2008~
-~13887~^~268~^745.^0^^~4~^^^^^^^^^^^~04/01/2008~
-~13887~^~301~^5.^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~
-~13887~^~304~^22.^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~
-~13887~^~305~^195.^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~
-~13887~^~306~^332.^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~
-~13887~^~307~^58.^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~
-~13887~^~318~^0.^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~
-~13887~^~320~^0.^0^^~1~^~AS~^^^^^^^^^^~04/01/2008~
-~13887~^~321~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2008~
-~13887~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2008~
-~13887~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2008~
-~13887~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2008~
-~13887~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2008~
-~13887~^~417~^7.^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~
-~13887~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~
-~13887~^~432~^7.^0^^~4~^~PAE~^^^^^^^^^^~04/01/2008~
-~13887~^~435~^7.^0^^~4~^~NC~^^^^^^^^^^~06/01/2008~
-~13887~^~601~^64.^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~
-~13888~^~208~^210.^0^^~4~^~NC~^^^^^^^^^^~12/01/1995~
-~13888~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2007~
-~13888~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2007~
-~13888~^~268~^879.^0^^~4~^^^^^^^^^^^~03/01/2009~
-~13888~^~301~^6.^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~
-~13888~^~304~^26.^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~
-~13888~^~305~^232.^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~
-~13888~^~306~^370.^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~
-~13888~^~307~^64.^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~
-~13888~^~318~^0.^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~
-~13888~^~319~^0.^0^^~4~^~BFSN~^~13892~^^^^^^^^^~03/01/2007~
-~13888~^~320~^0.^0^^~1~^~AS~^^^^^^^^^^~03/01/2007~
-~13888~^~321~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2007~
-~13888~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2007~
-~13888~^~324~^7.^0^^~4~^~BFFN~^^^^^^^^^^~03/01/2009~
-~13888~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2007~
-~13888~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2007~
-~13888~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2007~
-~13888~^~417~^8.^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~
-~13888~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~
-~13888~^~432~^8.^0^^~4~^~PAE~^^^^^^^^^^~03/01/2009~
-~13888~^~435~^8.^0^^~4~^~NC~^^^^^^^^^^~03/01/2009~
-~13888~^~601~^82.^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~
-~13889~^~208~^152.^0^^~4~^~NC~^^^^^^^^^^~07/01/2010~
-~13889~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~07/01/2010~
-~13889~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~07/01/2010~
-~13889~^~268~^635.^0^^~4~^~NC~^^^^^^^^^^~07/01/2010~
-~13889~^~301~^12.^2^^~1~^~AR~^^^^^^^^^^~07/01/2010~
-~13889~^~304~^19.^2^^~1~^~AR~^^^^^^^^^^~07/01/2010~
-~13889~^~305~^199.^2^^~1~^~AR~^^^^^^^^^^~07/01/2010~
-~13889~^~306~^336.^2^^~1~^~AR~^^^^^^^^^^~07/01/2010~
-~13889~^~307~^81.^2^^~1~^~AR~^^^^^^^^^^~07/01/2010~
-~13889~^~318~^11.^0^^~4~^~NC~^^^^^^^^^^~07/01/2010~
-~13889~^~319~^3.^0^^~4~^~BFSN~^^^^^^^^^^~07/01/2010~
-~13889~^~320~^3.^0^^~4~^~NC~^^^^^^^^^^~07/01/2010~
-~13889~^~321~^0.^0^^~7~^~Z~^^^^^^^^^^~07/01/2010~
-~13889~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~07/01/2010~
-~13889~^~324~^4.^0^^~4~^~BFSN~^^^^^^^^^^~07/01/2010~
-~13889~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~07/01/2010~
-~13889~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~07/01/2010~
-~13889~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~07/01/2010~
-~13889~^~417~^3.^0^^~4~^~BFPN~^~23041~^^^^^^^^^~07/01/2010~
-~13889~^~431~^0.^0^^~4~^~BFPN~^~23041~^^^^^^^^^~07/01/2010~
-~13889~^~432~^3.^0^^~4~^~BFPN~^~23041~^^^^^^^^^~07/01/2010~
-~13889~^~435~^3.^0^^~4~^~NC~^~23041~^^^^^^^^^~07/01/2010~
-~13889~^~601~^68.^4^1.^~1~^~AR~^^^^^^^^^^~07/01/2010~
-~13890~^~208~^228.^0^^~4~^~NC~^^^^^^^^^^~07/01/2010~
-~13890~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2007~
-~13890~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2007~
-~13890~^~268~^954.^0^^~4~^~NC~^^^^^^^^^^~07/01/2010~
-~13890~^~301~^6.^0^^~4~^~NR~^^^^^^^^^^~03/01/2007~
-~13890~^~304~^35.^0^^~4~^~NR~^^^^^^^^^^~03/01/2007~
-~13890~^~305~^286.^0^^~4~^~NR~^^^^^^^^^^~03/01/2007~
-~13890~^~306~^484.^0^^~4~^~NR~^^^^^^^^^^~03/01/2007~
-~13890~^~307~^65.^0^^~4~^~NR~^^^^^^^^^^~03/01/2007~
-~13890~^~318~^0.^0^^~1~^~AS~^^^^^^^^^^~03/01/2007~
-~13890~^~319~^0.^0^^~4~^~BFSN~^~23621~^^^^^^^^^~03/01/2007~
-~13890~^~320~^0.^0^^~1~^~AS~^^^^^^^^^^~03/01/2007~
-~13890~^~321~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2007~
-~13890~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2007~
-~13890~^~324~^5.^0^^~4~^~BFFN~^^^^^^^^^^~03/01/2009~
-~13890~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2007~
-~13890~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2007~
-~13890~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2007~
-~13890~^~417~^14.^0^^~4~^~NR~^^^^^^^^^^~03/01/2007~
-~13890~^~431~^0.^0^^~4~^~NR~^^^^^^^^^^~03/01/2007~
-~13890~^~432~^14.^0^^~1~^~AS~^^^^^^^^^^~03/01/2009~
-~13890~^~435~^14.^0^^~4~^~NC~^^^^^^^^^^~07/01/2010~
-~13890~^~601~^102.^0^^~4~^~BFSN~^^^^^^^^^^~07/01/2010~
-~13891~^~208~^166.^0^^~4~^~NC~^^^^^^^^^^~07/01/2010~
-~13891~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2003~
-~13891~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2003~
-~13891~^~268~^693.^0^^~4~^~NC~^^^^^^^^^^~07/01/2010~
-~13891~^~301~^21.^0^^~4~^~BFNN~^^^^^^^^^^~05/01/2003~
-~13891~^~304~^24.^0^^~4~^~BFNN~^^^^^^^^^^~05/01/2003~
-~13891~^~305~^212.^0^^~4~^~BFNN~^^^^^^^^^^~05/01/2003~
-~13891~^~306~^349.^0^^~4~^~BFNN~^^^^^^^^^^~05/01/2003~
-~13891~^~307~^60.^0^^~4~^~BFNN~^^^^^^^^^^~05/01/2003~
-~13891~^~318~^0.^0^^~1~^~AS~^^^^^^^^^^~05/01/2003~
-~13891~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2003~
-~13891~^~320~^0.^0^^~1~^~AS~^^^^^^^^^^~05/01/2003~
-~13891~^~321~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2003~
-~13891~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2003~
-~13891~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2003~
-~13891~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2003~
-~13891~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2003~
-~13891~^~417~^12.^0^^~4~^~BFPN~^^^^^^^^^^~05/01/2003~
-~13891~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~
-~13891~^~432~^12.^0^^~4~^~BFPN~^^^^^^^^^^~07/01/2010~
-~13891~^~435~^12.^0^^~4~^~NC~^^^^^^^^^^~07/01/2010~
-~13891~^~601~^69.^0^^~4~^~BFSN~^^^^^^^^^^~07/01/2010~
-~13892~^~208~^238.^0^^~4~^~NC~^^^^^^^^^^~04/01/2005~
-~13892~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~11/01/2004~
-~13892~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~11/01/2004~
-~13892~^~268~^996.^0^^~4~^^^^^^^^^^^~03/01/2009~
-~13892~^~301~^5.^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~
-~13892~^~304~^24.^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~
-~13892~^~305~^215.^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~
-~13892~^~306~^319.^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~
-~13892~^~307~^45.^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~
-~13892~^~318~^0.^0^^~1~^~AS~^^^^^^^^^^~04/01/2005~
-~13892~^~319~^0.^0^^~4~^~NR~^^^^^^^^^^~11/01/2004~
-~13892~^~320~^0.^0^^~1~^~AS~^^^^^^^^^^~11/01/2004~
-~13892~^~321~^0.^0^^~7~^~Z~^^^^^^^^^^~11/01/2004~
-~13892~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~11/01/2004~
-~13892~^~324~^7.^0^^~4~^~BFFN~^^^^^^^^^^~03/01/2009~
-~13892~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~11/01/2004~
-~13892~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~11/01/2004~
-~13892~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~11/01/2004~
-~13892~^~417~^9.^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~
-~13892~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~
-~13892~^~432~^9.^0^^~4~^~PAE~^^^^^^^^^^~03/01/2009~
-~13892~^~435~^9.^0^^~4~^~NC~^^^^^^^^^^~03/01/2009~
-~13892~^~601~^90.^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~
-~13893~^~208~^204.^0^^~4~^~NC~^^^^^^^^^^~07/01/2010~
-~13893~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2003~
-~13893~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2003~
-~13893~^~268~^852.^0^^~4~^~NC~^^^^^^^^^^~07/01/2010~
-~13893~^~301~^7.^0^^~4~^~BFNN~^^^^^^^^^^~04/01/2003~
-~13893~^~304~^20.^0^^~4~^~BFNN~^^^^^^^^^^~04/01/2003~
-~13893~^~305~^193.^0^^~4~^~BFNN~^^^^^^^^^^~04/01/2003~
-~13893~^~306~^252.^0^^~4~^~BFNN~^^^^^^^^^^~04/01/2003~
-~13893~^~307~^41.^0^^~4~^~BFNN~^^^^^^^^^^~04/01/2003~
-~13893~^~318~^0.^0^^~1~^~AS~^^^^^^^^^^~04/01/2003~
-~13893~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2003~
-~13893~^~320~^0.^0^^~1~^~AS~^^^^^^^^^^~04/01/2003~
-~13893~^~321~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2003~
-~13893~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2003~
-~13893~^~324~^6.^0^^~4~^~BFFN~^^^^^^^^^^~03/01/2009~
-~13893~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2003~
-~13893~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2003~
-~13893~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2003~
-~13893~^~417~^10.^0^^~4~^~BFPN~^^^^^^^^^^~04/01/2003~
-~13893~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~
-~13893~^~432~^10.^0^^~4~^~BFPN~^^^^^^^^^^~07/01/2010~
-~13893~^~435~^10.^0^^~4~^~NC~^^^^^^^^^^~07/01/2010~
-~13893~^~601~^90.^0^^~4~^~BFSN~^^^^^^^^^^~07/01/2010~
-~13894~^~208~^168.^0^^~4~^~NC~^^^^^^^^^^~07/01/2010~
-~13894~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2003~
-~13894~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2003~
-~13894~^~268~^701.^0^^~4~^~NC~^^^^^^^^^^~07/01/2010~
-~13894~^~301~^17.^0^^~4~^~BFNN~^^^^^^^^^^~05/01/2003~
-~13894~^~304~^24.^0^^~4~^~BFNN~^^^^^^^^^^~05/01/2003~
-~13894~^~305~^211.^0^^~4~^~BFNN~^^^^^^^^^^~05/01/2003~
-~13894~^~306~^341.^0^^~4~^~BFNN~^^^^^^^^^^~05/01/2003~
-~13894~^~307~^57.^0^^~4~^~BFNN~^^^^^^^^^^~05/01/2003~
-~13894~^~318~^0.^0^^~1~^~AS~^^^^^^^^^^~05/01/2003~
-~13894~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2003~
-~13894~^~320~^0.^0^^~1~^~AS~^^^^^^^^^^~05/01/2003~
-~13894~^~321~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2003~
-~13894~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2003~
-~13894~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2003~
-~13894~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2003~
-~13894~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2003~
-~13894~^~417~^12.^0^^~4~^~BFPN~^^^^^^^^^^~05/01/2003~
-~13894~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~
-~13894~^~432~^12.^0^^~4~^~BFPN~^^^^^^^^^^~07/01/2010~
-~13894~^~435~^12.^0^^~4~^~NC~^^^^^^^^^^~07/01/2010~
-~13894~^~601~^69.^0^^~4~^~BFSN~^^^^^^^^^^~07/01/2010~
-~13895~^~208~^250.^0^^~4~^~NC~^^^^^^^^^^~12/01/1995~
-~13895~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2008~
-~13895~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2008~
-~13895~^~268~^1046.^0^^~4~^^^^^^^^^^^~04/01/2008~
-~13895~^~301~^5.^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~
-~13895~^~304~^24.^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~
-~13895~^~305~^214.^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~
-~13895~^~306~^317.^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~
-~13895~^~307~^45.^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~
-~13895~^~318~^0.^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~
-~13895~^~320~^0.^0^^~1~^~AS~^^^^^^^^^^~04/01/2008~
-~13895~^~321~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2008~
-~13895~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2008~
-~13895~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2008~
-~13895~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2008~
-~13895~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2008~
-~13895~^~417~^9.^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~
-~13895~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~
-~13895~^~432~^9.^0^^~4~^~PAE~^^^^^^^^^^~04/01/2008~
-~13895~^~435~^9.^0^^~4~^~NC~^^^^^^^^^^~06/01/2008~
-~13895~^~601~^90.^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~
-~13896~^~208~^224.^0^^~4~^~NC~^^^^^^^^^^~07/01/2010~
-~13896~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2003~
-~13896~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2003~
-~13896~^~268~^936.^0^^~4~^~NC~^^^^^^^^^^~07/01/2010~
-~13896~^~301~^7.^0^^~4~^~BFNN~^^^^^^^^^^~04/01/2003~
-~13896~^~304~^20.^0^^~4~^~BFNN~^^^^^^^^^^~04/01/2003~
-~13896~^~305~^187.^0^^~4~^~BFNN~^^^^^^^^^^~04/01/2003~
-~13896~^~306~^248.^0^^~4~^~BFNN~^^^^^^^^^^~04/01/2003~
-~13896~^~307~^40.^0^^~4~^~BFNN~^^^^^^^^^^~04/01/2003~
-~13896~^~318~^0.^0^^~1~^~AS~^^^^^^^^^^~04/01/2003~
-~13896~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2003~
-~13896~^~320~^0.^0^^~1~^~AS~^^^^^^^^^^~04/01/2003~
-~13896~^~321~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2003~
-~13896~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2003~
-~13896~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2003~
-~13896~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2003~
-~13896~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2003~
-~13896~^~417~^10.^0^^~4~^~BFPN~^^^^^^^^^^~04/01/2003~
-~13896~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~
-~13896~^~432~^10.^0^^~4~^~BFPN~^^^^^^^^^^~07/01/2010~
-~13896~^~435~^10.^0^^~4~^~NC~^^^^^^^^^^~07/01/2010~
-~13896~^~601~^92.^0^^~4~^~BFSN~^^^^^^^^^^~07/01/2010~
-~13897~^~208~^266.^0^^~4~^~NC~^^^^^^^^^^~12/01/1995~
-~13897~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2007~
-~13897~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2007~
-~13897~^~268~^1113.^0^^~4~^^^^^^^^^^^~03/01/2009~
-~13897~^~301~^6.^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~
-~13897~^~304~^33.^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~
-~13897~^~305~^274.^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~
-~13897~^~306~^480.^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~
-~13897~^~307~^68.^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~
-~13897~^~318~^0.^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~
-~13897~^~319~^0.^0^^~4~^~BFSN~^~13892~^^^^^^^^^~03/01/2007~
-~13897~^~320~^0.^0^^~1~^~AS~^^^^^^^^^^~03/01/2007~
-~13897~^~321~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2007~
-~13897~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2007~
-~13897~^~324~^9.^0^^~4~^~BFFN~^^^^^^^^^^~03/01/2009~
-~13897~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2007~
-~13897~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2007~
-~13897~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2007~
-~13897~^~417~^12.^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~
-~13897~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~
-~13897~^~432~^12.^0^^~4~^~PAE~^^^^^^^^^^~03/01/2009~
-~13897~^~435~^12.^0^^~4~^~NC~^^^^^^^^^^~11/01/2009~
-~13897~^~601~^97.^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~
-~13898~^~208~^164.^0^^~4~^~NC~^^^^^^^^^^~07/01/2010~
-~13898~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2003~
-~13898~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2003~
-~13898~^~268~^686.^0^^~4~^~NC~^^^^^^^^^^~07/01/2010~
-~13898~^~301~^25.^0^^~4~^~BFNN~^^^^^^^^^^~05/01/2003~
-~13898~^~304~^24.^0^^~4~^~BFNN~^^^^^^^^^^~05/01/2003~
-~13898~^~305~^214.^0^^~4~^~BFNN~^^^^^^^^^^~05/01/2003~
-~13898~^~306~^357.^0^^~4~^~BFNN~^^^^^^^^^^~05/01/2003~
-~13898~^~307~^63.^0^^~4~^~BFNN~^^^^^^^^^^~05/01/2003~
-~13898~^~318~^0.^0^^~1~^~AS~^^^^^^^^^^~05/01/2003~
-~13898~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2003~
-~13898~^~320~^0.^0^^~1~^~AS~^^^^^^^^^^~05/01/2003~
-~13898~^~321~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2003~
-~13898~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2003~
-~13898~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2003~
-~13898~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2003~
-~13898~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2003~
-~13898~^~417~^12.^0^^~4~^~BFPN~^^^^^^^^^^~05/01/2003~
-~13898~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~
-~13898~^~432~^12.^0^^~4~^~BFPN~^^^^^^^^^^~07/01/2010~
-~13898~^~435~^12.^0^^~4~^~NC~^^^^^^^^^^~07/01/2010~
-~13898~^~601~^68.^0^^~4~^~BFSN~^^^^^^^^^^~07/01/2010~
-~13899~^~208~^225.^0^^~4~^~NC~^^^^^^^^^^~12/01/1995~
-~13899~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2008~
-~13899~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2008~
-~13899~^~268~^941.^0^^~4~^^^^^^^^^^^~04/01/2008~
-~13899~^~301~^4.^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~
-~13899~^~304~^25.^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~
-~13899~^~305~^217.^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~
-~13899~^~306~^321.^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~
-~13899~^~307~^45.^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~
-~13899~^~318~^0.^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~
-~13899~^~320~^0.^0^^~1~^~AS~^^^^^^^^^^~04/01/2008~
-~13899~^~321~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2008~
-~13899~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2008~
-~13899~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2008~
-~13899~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2008~
-~13899~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2008~
-~13899~^~417~^9.^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~
-~13899~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~
-~13899~^~432~^9.^0^^~4~^~PAE~^^^^^^^^^^~04/01/2008~
-~13899~^~435~^9.^0^^~4~^~NC~^^^^^^^^^^~06/01/2008~
-~13899~^~601~^90.^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~
-~13900~^~208~^201.^0^^~4~^~NC~^^^^^^^^^^~07/01/2010~
-~13900~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2003~
-~13900~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2003~
-~13900~^~268~^839.^0^^~4~^~NC~^^^^^^^^^^~07/01/2010~
-~13900~^~301~^8.^0^^~4~^~BFNN~^^^^^^^^^^~04/01/2003~
-~13900~^~304~^21.^0^^~4~^~BFNN~^^^^^^^^^^~04/01/2003~
-~13900~^~305~^198.^0^^~4~^~BFNN~^^^^^^^^^^~04/01/2003~
-~13900~^~306~^256.^0^^~4~^~BFNN~^^^^^^^^^^~04/01/2003~
-~13900~^~307~^41.^0^^~4~^~BFNN~^^^^^^^^^^~04/01/2003~
-~13900~^~318~^0.^0^^~1~^~AS~^^^^^^^^^^~04/01/2003~
-~13900~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2003~
-~13900~^~320~^0.^0^^~1~^~AS~^^^^^^^^^^~04/01/2003~
-~13900~^~321~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2003~
-~13900~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2003~
-~13900~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2003~
-~13900~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2003~
-~13900~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2003~
-~13900~^~417~^10.^0^^~4~^~BFPN~^^^^^^^^^^~04/01/2003~
-~13900~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~
-~13900~^~432~^10.^0^^~4~^~BFPN~^^^^^^^^^^~07/01/2010~
-~13900~^~435~^10.^0^^~4~^~NC~^^^^^^^^^^~07/01/2010~
-~13900~^~601~^87.^0^^~4~^~BFSN~^^^^^^^^^^~07/01/2010~
-~13901~^~208~^173.^0^^~4~^~NC~^^^^^^^^^^~12/01/1995~
-~13901~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2008~
-~13901~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2008~
-~13901~^~268~^724.^0^^~4~^^^^^^^^^^^~04/01/2008~
-~13901~^~301~^3.^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~
-~13901~^~304~^24.^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~
-~13901~^~305~^213.^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~
-~13901~^~306~^371.^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~
-~13901~^~307~^51.^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~
-~13901~^~318~^0.^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~
-~13901~^~320~^0.^0^^~1~^~AS~^^^^^^^^^^~04/01/2008~
-~13901~^~321~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2008~
-~13901~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2008~
-~13901~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2008~
-~13901~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2008~
-~13901~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2008~
-~13901~^~417~^9.^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~
-~13901~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~
-~13901~^~432~^9.^0^^~4~^~PAE~^^^^^^^^^^~04/01/2008~
-~13901~^~435~^9.^0^^~4~^~NC~^^^^^^^^^^~06/01/2008~
-~13901~^~601~^59.^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~
-~13902~^~208~^225.^0^^~4~^~NC~^^^^^^^^^^~12/01/1995~
-~13902~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2008~
-~13902~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2008~
-~13902~^~268~^941.^0^^~4~^^^^^^^^^^^~04/01/2008~
-~13902~^~301~^6.^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~
-~13902~^~304~^30.^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~
-~13902~^~305~^243.^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~
-~13902~^~306~^436.^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~
-~13902~^~307~^61.^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~
-~13902~^~318~^0.^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~
-~13902~^~320~^0.^0^^~1~^~AS~^^^^^^^^^^~04/01/2008~
-~13902~^~321~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2008~
-~13902~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2008~
-~13902~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2008~
-~13902~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2008~
-~13902~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2008~
-~13902~^~417~^12.^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~
-~13902~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~
-~13902~^~432~^12.^0^^~4~^~PAE~^^^^^^^^^^~04/01/2008~
-~13902~^~435~^12.^0^^~4~^~NC~^^^^^^^^^^~03/01/2010~
-~13902~^~601~^84.^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~
-~13903~^~208~^137.^0^^~4~^~NC~^^^^^^^^^^~07/01/2010~
-~13903~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~07/01/2010~
-~13903~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~07/01/2010~
-~13903~^~268~^573.^0^^~4~^~NC~^^^^^^^^^^~07/01/2010~
-~13903~^~301~^12.^1^^~1~^~AR~^^^^^^^^^^~07/01/2010~
-~13903~^~304~^20.^1^^~1~^~AR~^^^^^^^^^^~07/01/2010~
-~13903~^~305~^210.^1^^~1~^~AR~^^^^^^^^^^~07/01/2010~
-~13903~^~306~^344.^1^^~1~^~AR~^^^^^^^^^^~07/01/2010~
-~13903~^~307~^86.^1^^~1~^~AR~^^^^^^^^^^~07/01/2010~
-~13903~^~318~^12.^0^^~4~^~NC~^^^^^^^^^^~07/01/2010~
-~13903~^~319~^3.^0^^~4~^~BFSN~^^^^^^^^^^~07/01/2010~
-~13903~^~320~^3.^0^^~4~^~NC~^^^^^^^^^^~07/01/2010~
-~13903~^~321~^0.^0^^~7~^~Z~^^^^^^^^^^~07/01/2010~
-~13903~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~07/01/2010~
-~13903~^~324~^3.^0^^~4~^~BFSN~^^^^^^^^^^~07/01/2010~
-~13903~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~07/01/2010~
-~13903~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~07/01/2010~
-~13903~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~07/01/2010~
-~13903~^~417~^3.^0^^~4~^~BFPN~^~23043~^^^^^^^^^~07/01/2010~
-~13903~^~431~^0.^0^^~4~^~BFPN~^~23043~^^^^^^^^^~07/01/2010~
-~13903~^~432~^3.^0^^~4~^~BFPN~^~23043~^^^^^^^^^~07/01/2010~
-~13903~^~435~^3.^0^^~4~^~NC~^~23043~^^^^^^^^^~07/01/2010~
-~13903~^~601~^71.^2^^~1~^~AR~^^^^^^^^^^~07/01/2010~
-~13904~^~208~^165.^0^^~4~^~NC~^^^^^^^^^^~07/01/2010~
-~13904~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~07/01/2010~
-~13904~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~07/01/2010~
-~13904~^~268~^690.^0^^~4~^~NC~^^^^^^^^^^~07/01/2010~
-~13904~^~301~^13.^6^0.^~1~^~AR~^^^^^^^^^^~07/01/2010~
-~13904~^~304~^22.^6^0.^~1~^~AR~^^^^^^^^^^~07/01/2010~
-~13904~^~305~^210.^6^2.^~1~^~AR~^^^^^^^^^^~07/01/2010~
-~13904~^~306~^344.^6^5.^~1~^~AR~^^^^^^^^^^~07/01/2010~
-~13904~^~307~^80.^6^1.^~1~^~AR~^^^^^^^^^^~07/01/2010~
-~13904~^~318~^12.^0^^~4~^~NC~^^^^^^^^^^~07/01/2010~
-~13904~^~319~^4.^0^^~4~^~BFSN~^^^^^^^^^^~07/01/2010~
-~13904~^~320~^4.^0^^~4~^~NC~^^^^^^^^^^~07/01/2010~
-~13904~^~321~^0.^0^^~7~^~Z~^^^^^^^^^^~07/01/2010~
-~13904~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~07/01/2010~
-~13904~^~324~^4.^0^^~4~^~BFSN~^^^^^^^^^^~07/01/2010~
-~13904~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~07/01/2010~
-~13904~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~07/01/2010~
-~13904~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~07/01/2010~
-~13904~^~417~^3.^0^^~4~^~BFPN~^^^^^^^^^^~07/01/2010~
-~13904~^~431~^0.^0^^~4~^~BFPN~^^^^^^^^^^~07/01/2010~
-~13904~^~432~^3.^0^^~4~^~BFPN~^^^^^^^^^^~07/01/2010~
-~13904~^~435~^3.^0^^~4~^~NC~^^^^^^^^^^~07/01/2010~
-~13904~^~601~^67.^6^1.^~1~^~AR~^^^^^^^^^^~07/01/2010~
-~13905~^~208~^218.^0^^~4~^~NC~^^^^^^^^^^~03/01/2013~
-~13905~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2008~
-~13905~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2008~
-~13905~^~268~^914.^0^^~4~^~NC~^^^^^^^^^^~03/01/2013~
-~13905~^~301~^19.^2^^~1~^~AR~^^^^^^^^^^~03/01/2013~
-~13905~^~304~^10.^2^^~1~^~AR~^^^^^^^^^^~03/01/2013~
-~13905~^~305~^188.^2^^~1~^~AR~^^^^^^^^^^~03/01/2013~
-~13905~^~306~^246.^2^^~1~^~AR~^^^^^^^^^^~03/01/2013~
-~13905~^~307~^52.^2^^~1~^~AR~^^^^^^^^^^~03/01/2013~
-~13905~^~318~^14.^0^^~4~^~NC~^^^^^^^^^^~03/01/2013~
-~13905~^~319~^4.^0^^~4~^~BFSN~^^^^^^^^^^~03/01/2013~
-~13905~^~320~^4.^0^^~4~^~NC~^^^^^^^^^^~03/01/2013~
-~13905~^~321~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2008~
-~13905~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2008~
-~13905~^~324~^5.^0^^~4~^~BFFN~^~23193~^^^^^^^^^~06/01/2013~
-~13905~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2008~
-~13905~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2008~
-~13905~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2008~
-~13905~^~417~^3.^0^^~4~^~BFPN~^~23041~^^^^^^^^^~03/01/2013~
-~13905~^~431~^0.^0^^~4~^~BFPN~^~23041~^^^^^^^^^~03/01/2013~
-~13905~^~432~^3.^0^^~4~^~BFPN~^~23041~^^^^^^^^^~03/01/2013~
-~13905~^~435~^3.^0^^~4~^~NC~^~23041~^^^^^^^^^~03/01/2013~
-~13905~^~601~^61.^4^1.^~1~^~AR~^^^^^^^^^^~03/01/2013~
-~13906~^~208~^284.^0^^~4~^~NC~^^^^^^^^^^~03/01/2013~
-~13906~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2008~
-~13906~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2008~
-~13906~^~268~^1190.^0^^~4~^~NC~^^^^^^^^^^~03/01/2013~
-~13906~^~301~^19.^2^^~1~^~AR~^^^^^^^^^^~03/01/2013~
-~13906~^~304~^20.^2^^~1~^~AR~^^^^^^^^^^~03/01/2013~
-~13906~^~305~^207.^2^^~1~^~AR~^^^^^^^^^^~03/01/2013~
-~13906~^~306~^255.^2^^~1~^~AR~^^^^^^^^^^~03/01/2013~
-~13906~^~307~^63.^2^^~1~^~AR~^^^^^^^^^^~03/01/2013~
-~13906~^~318~^24.^0^^~4~^~NC~^^^^^^^^^^~03/01/2013~
-~13906~^~319~^7.^0^^~4~^~BFSN~^^^^^^^^^^~03/01/2013~
-~13906~^~320~^7.^0^^~4~^~NC~^^^^^^^^^^~03/01/2013~
-~13906~^~321~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2008~
-~13906~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2008~
-~13906~^~324~^5.^0^^~4~^~BFFN~^~23186~^^^^^^^^^~06/01/2013~
-~13906~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2008~
-~13906~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2008~
-~13906~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2008~
-~13906~^~417~^6.^0^^~4~^~BFPN~^~23042~^^^^^^^^^~03/01/2013~
-~13906~^~431~^0.^0^^~4~^~BFPN~^~23042~^^^^^^^^^~03/01/2013~
-~13906~^~432~^6.^0^^~4~^~BFPN~^~23042~^^^^^^^^^~03/01/2013~
-~13906~^~435~^6.^0^^~4~^~NC~^~23042~^^^^^^^^^~03/01/2013~
-~13906~^~601~^85.^4^2.^~1~^~AR~^^^^^^^^^^~03/01/2013~
-~13907~^~208~^228.^0^^~4~^~NC~^^^^^^^^^^~03/01/2013~
-~13907~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2008~
-~13907~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2008~
-~13907~^~268~^955.^0^^~4~^~NC~^^^^^^^^^^~03/01/2013~
-~13907~^~301~^21.^2^^~1~^~AR~^^^^^^^^^^~03/01/2013~
-~13907~^~304~^10.^2^^~1~^~AR~^^^^^^^^^^~03/01/2013~
-~13907~^~305~^174.^2^^~1~^~AR~^^^^^^^^^^~03/01/2013~
-~13907~^~306~^229.^2^^~1~^~AR~^^^^^^^^^^~03/01/2013~
-~13907~^~307~^35.^2^^~1~^~AR~^^^^^^^^^^~03/01/2013~
-~13907~^~318~^14.^0^^~4~^~NC~^^^^^^^^^^~03/01/2013~
-~13907~^~319~^4.^0^^~4~^~BFSN~^^^^^^^^^^~03/01/2013~
-~13907~^~320~^4.^0^^~4~^~NC~^^^^^^^^^^~03/01/2013~
-~13907~^~321~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2008~
-~13907~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2008~
-~13907~^~324~^5.^0^^~4~^~BFFN~^~23193~^^^^^^^^^~06/01/2013~
-~13907~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2008~
-~13907~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2008~
-~13907~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2008~
-~13907~^~417~^5.^0^^~4~^~BFPN~^~23042~^^^^^^^^^~03/01/2013~
-~13907~^~431~^0.^0^^~4~^~BFPN~^~23042~^^^^^^^^^~03/01/2013~
-~13907~^~432~^5.^0^^~4~^~BFPN~^~23042~^^^^^^^^^~03/01/2013~
-~13907~^~435~^5.^0^^~4~^~NC~^~23042~^^^^^^^^^~03/01/2013~
-~13907~^~601~^62.^4^0.^~1~^~AR~^^^^^^^^^^~03/01/2013~
-~13908~^~208~^294.^0^^~4~^~NC~^^^^^^^^^^~03/01/2013~
-~13908~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2008~
-~13908~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2008~
-~13908~^~268~^1230.^0^^~4~^~NC~^^^^^^^^^^~03/01/2013~
-~13908~^~301~^19.^2^^~1~^~AR~^^^^^^^^^^~03/01/2013~
-~13908~^~304~^17.^2^^~1~^~AR~^^^^^^^^^^~03/01/2013~
-~13908~^~305~^194.^2^^~1~^~AR~^^^^^^^^^^~03/01/2013~
-~13908~^~306~^240.^2^^~1~^~AR~^^^^^^^^^^~03/01/2013~
-~13908~^~307~^63.^2^^~1~^~AR~^^^^^^^^^^~03/01/2013~
-~13908~^~318~^25.^0^^~4~^~NC~^^^^^^^^^^~03/01/2013~
-~13908~^~319~^7.^0^^~4~^~BFSN~^^^^^^^^^^~03/01/2013~
-~13908~^~320~^7.^0^^~4~^~NC~^^^^^^^^^^~03/01/2013~
-~13908~^~321~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2008~
-~13908~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2008~
-~13908~^~324~^6.^0^^~4~^~BFFN~^~23186~^^^^^^^^^~06/01/2013~
-~13908~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2008~
-~13908~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2008~
-~13908~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2008~
-~13908~^~417~^6.^0^^~4~^~BFPN~^~23042~^^^^^^^^^~03/01/2013~
-~13908~^~431~^0.^0^^~4~^~BFPN~^~23042~^^^^^^^^^~03/01/2013~
-~13908~^~432~^6.^0^^~4~^~BFPN~^~23042~^^^^^^^^^~03/01/2013~
-~13908~^~435~^6.^0^^~4~^~NC~^~23042~^^^^^^^^^~03/01/2013~
-~13908~^~601~^82.^4^1.^~1~^~AR~^^^^^^^^^^~03/01/2013~
-~13909~^~208~^228.^0^^~4~^~NC~^^^^^^^^^^~05/01/2013~
-~13909~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2003~
-~13909~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2003~
-~13909~^~268~^953.^0^^~4~^~NC~^^^^^^^^^^~05/01/2013~
-~13909~^~301~^24.^4^6.^~1~^~PAK~^^^^^^^^^^~05/01/2013~
-~13909~^~304~^21.^4^0.^~1~^~PAK~^^^^^^^^^^~05/01/2013~
-~13909~^~305~^186.^4^1.^~1~^~PAK~^^^^^^^^^^~05/01/2013~
-~13909~^~306~^313.^4^5.^~1~^~PAK~^^^^^^^^^^~05/01/2013~
-~13909~^~307~^52.^4^0.^~1~^~PAK~^^^^^^^^^^~05/01/2013~
-~13909~^~318~^0.^0^^~1~^~AS~^^^^^^^^^^~05/01/2013~
-~13909~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2013~
-~13909~^~320~^0.^0^^~1~^~AS~^^^^^^^^^^~05/01/2013~
-~13909~^~321~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2003~
-~13909~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2003~
-~13909~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2003~
-~13909~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2003~
-~13909~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2003~
-~13909~^~417~^11.^0^^~4~^~BFPN~^^^^^^^^^^~05/01/2013~
-~13909~^~432~^11.^0^^~4~^~BFPN~^^^^^^^^^^~05/01/2013~
-~13909~^~601~^81.^0^^~4~^~BFSN~^^^^^^^^^^~05/01/2013~
-~13910~^~208~^264.^0^^~4~^~NC~^^^^^^^^^^~05/01/2013~
-~13910~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2003~
-~13910~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2003~
-~13910~^~268~^1106.^0^^~4~^~NC~^^^^^^^^^^~05/01/2013~
-~13910~^~301~^19.^4^2.^~1~^~PAK~^^^^^^^^^^~05/01/2013~
-~13910~^~304~^22.^4^0.^~1~^~PAK~^^^^^^^^^^~05/01/2013~
-~13910~^~305~^204.^4^5.^~1~^~PAK~^^^^^^^^^^~05/01/2013~
-~13910~^~306~^328.^4^8.^~1~^~PAK~^^^^^^^^^^~05/01/2013~
-~13910~^~307~^54.^4^1.^~1~^~PAK~^^^^^^^^^^~05/01/2013~
-~13910~^~318~^0.^0^^~1~^~AS~^^^^^^^^^^~04/01/2003~
-~13910~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2003~
-~13910~^~320~^0.^0^^~1~^~AS~^^^^^^^^^^~04/01/2003~
-~13910~^~321~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2003~
-~13910~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2003~
-~13910~^~324~^11.^0^^~4~^~BFFN~^^^^^^^^^^~05/01/2013~
-~13910~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2003~
-~13910~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2003~
-~13910~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2003~
-~13910~^~417~^8.^0^^~4~^~BFPN~^^^^^^^^^^~05/01/2013~
-~13910~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~
-~13910~^~432~^8.^0^^~4~^~BFPN~^^^^^^^^^^~05/01/2013~
-~13910~^~435~^8.^0^^~4~^~NC~^^^^^^^^^^~05/01/2013~
-~13910~^~601~^88.^0^^~4~^~BFFN~^^^^^^^^^^~05/01/2013~
-~13911~^~208~^237.^0^^~4~^~NC~^^^^^^^^^^~05/01/2013~
-~13911~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2003~
-~13911~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2003~
-~13911~^~268~^992.^0^^~4~^^^^^^^^^^^~05/01/2013~
-~13911~^~301~^6.^0^^~4~^~PAE~^^^^^^^^^^~05/01/2013~
-~13911~^~304~^19.^0^^~4~^~PAE~^^^^^^^^^^~05/01/2013~
-~13911~^~305~^166.^0^^~4~^~PAE~^^^^^^^^^^~05/01/2013~
-~13911~^~306~^302.^0^^~4~^~PAE~^^^^^^^^^^~05/01/2013~
-~13911~^~307~^54.^0^^~4~^~PAE~^^^^^^^^^^~05/01/2013~
-~13911~^~318~^0.^0^^~4~^~PAE~^^^^^^^^^^~05/01/2013~
-~13911~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2003~
-~13911~^~320~^0.^0^^~1~^~AS~^^^^^^^^^^~04/01/2003~
-~13911~^~321~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2003~
-~13911~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2003~
-~13911~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2003~
-~13911~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2003~
-~13911~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2003~
-~13911~^~417~^6.^0^^~4~^~PAE~^^^^^^^^^^~05/01/2013~
-~13911~^~432~^6.^0^^~4~^~PAE~^^^^^^^^^^~05/01/2013~
-~13911~^~601~^82.^0^^~4~^~BFSN~^^^^^^^^^^~05/01/2013~
-~13912~^~208~^278.^0^^~4~^~NC~^^^^^^^^^^~05/01/2013~
-~13912~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2003~
-~13912~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2003~
-~13912~^~268~^1164.^0^^~4~^~NC~^^^^^^^^^^~05/01/2013~
-~13912~^~301~^17.^2^^~1~^~PAK~^^^^^^^^^^~05/01/2013~
-~13912~^~304~^21.^2^^~1~^~PAK~^^^^^^^^^^~05/01/2013~
-~13912~^~305~^195.^2^^~1~^~PAK~^^^^^^^^^^~05/01/2013~
-~13912~^~306~^316.^2^^~1~^~PAK~^^^^^^^^^^~05/01/2013~
-~13912~^~307~^52.^2^^~1~^~PAK~^^^^^^^^^^~05/01/2013~
-~13912~^~318~^0.^0^^~1~^~AS~^^^^^^^^^^~04/01/2003~
-~13912~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2003~
-~13912~^~320~^0.^0^^~1~^~AS~^^^^^^^^^^~04/01/2003~
-~13912~^~321~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2003~
-~13912~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2003~
-~13912~^~324~^12.^0^^~4~^~BFFN~^~13910~^^^^^^^^^~07/01/2015~
-~13912~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2003~
-~13912~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2003~
-~13912~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2003~
-~13912~^~417~^8.^0^^~4~^~BFPN~^^^^^^^^^^~05/01/2013~
-~13912~^~431~^0.^0^^~4~^~BFPN~^~13910~^^^^^^^^^~07/01/2015~
-~13912~^~432~^8.^0^^~4~^~BFPN~^^^^^^^^^^~05/01/2013~
-~13912~^~435~^8.^0^^~4~^~NC~^~13910~^^^^^^^^^~07/01/2015~
-~13912~^~601~^97.^0^^~4~^~BFFN~^^^^^^^^^^~05/01/2013~
-~13913~^~208~^224.^0^^~4~^~NC~^^^^^^^^^^~05/01/2013~
-~13913~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2003~
-~13913~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2003~
-~13913~^~268~^935.^0^^~4~^~NC~^^^^^^^^^^~05/01/2013~
-~13913~^~301~^23.^2^^~1~^~PAK~^^^^^^^^^^~05/01/2013~
-~13913~^~304~^21.^2^^~1~^~PAK~^^^^^^^^^^~05/01/2013~
-~13913~^~305~^189.^2^^~1~^~PAK~^^^^^^^^^^~05/01/2013~
-~13913~^~306~^313.^2^^~1~^~PAK~^^^^^^^^^^~05/01/2013~
-~13913~^~307~^52.^2^^~1~^~PAK~^^^^^^^^^^~05/01/2013~
-~13913~^~318~^0.^0^^~1~^~AS~^^^^^^^^^^~05/01/2013~
-~13913~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2013~
-~13913~^~320~^0.^0^^~1~^~AS~^^^^^^^^^^~05/01/2013~
-~13913~^~321~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2003~
-~13913~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2003~
-~13913~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2003~
-~13913~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2003~
-~13913~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2003~
-~13913~^~417~^11.^0^^~4~^~BFPN~^^^^^^^^^^~05/01/2013~
-~13913~^~432~^11.^0^^~4~^~BFPN~^^^^^^^^^^~05/01/2013~
-~13913~^~601~^80.^0^^~4~^~BFSN~^^^^^^^^^^~05/01/2013~
-~13914~^~208~^250.^0^^~4~^~NC~^^^^^^^^^^~05/01/2013~
-~13914~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2003~
-~13914~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2003~
-~13914~^~268~^1048.^0^^~4~^~NC~^^^^^^^^^^~05/01/2013~
-~13914~^~301~^22.^2^^~1~^~PAK~^^^^^^^^^^~05/01/2013~
-~13914~^~304~^23.^2^^~1~^~PAK~^^^^^^^^^^~05/01/2013~
-~13914~^~305~^213.^2^^~1~^~PAK~^^^^^^^^^^~05/01/2013~
-~13914~^~306~^340.^2^^~1~^~PAK~^^^^^^^^^^~05/01/2013~
-~13914~^~307~^57.^2^^~1~^~PAK~^^^^^^^^^^~05/01/2013~
-~13914~^~318~^0.^0^^~1~^~AS~^^^^^^^^^^~05/01/2013~
-~13914~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2013~
-~13914~^~320~^0.^0^^~1~^~AS~^^^^^^^^^^~05/01/2013~
-~13914~^~321~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2003~
-~13914~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2003~
-~13914~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2003~
-~13914~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2003~
-~13914~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2003~
-~13914~^~417~^8.^0^^~4~^~BFPN~^^^^^^^^^^~05/01/2013~
-~13914~^~432~^8.^0^^~4~^~BFPN~^^^^^^^^^^~05/01/2013~
-~13914~^~601~^79.^0^^~4~^~BFFN~^^^^^^^^^^~05/01/2013~
-~13915~^~208~^281.^0^^~4~^~NC~^^^^^^^^^^~05/01/2008~
-~13915~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2008~
-~13915~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2008~
-~13915~^~268~^1176.^0^^~4~^^^^^^^^^^^~05/01/2008~
-~13915~^~301~^6.^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~
-~13915~^~304~^18.^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~
-~13915~^~305~^163.^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~
-~13915~^~306~^295.^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~
-~13915~^~307~^53.^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~
-~13915~^~318~^0.^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~
-~13915~^~320~^0.^0^^~1~^~AS~^^^^^^^^^^~05/01/2008~
-~13915~^~321~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2008~
-~13915~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2008~
-~13915~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2008~
-~13915~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2008~
-~13915~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2008~
-~13915~^~417~^6.^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~
-~13915~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~
-~13915~^~432~^6.^0^^~4~^~PAE~^^^^^^^^^^~05/01/2008~
-~13915~^~435~^6.^0^^~4~^~NC~^^^^^^^^^^~03/01/2010~
-~13915~^~601~^67.^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~
-~13916~^~208~^310.^0^^~4~^~NC~^^^^^^^^^^~12/01/1995~
-~13916~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2008~
-~13916~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2008~
-~13916~^~268~^1297.^0^^~4~^^^^^^^^^^^~05/01/2008~
-~13916~^~301~^9.^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~
-~13916~^~304~^24.^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~
-~13916~^~305~^197.^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~
-~13916~^~306~^354.^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~
-~13916~^~307~^64.^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~
-~13916~^~318~^0.^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~
-~13916~^~320~^0.^0^^~1~^~AS~^^^^^^^^^^~05/01/2008~
-~13916~^~321~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2008~
-~13916~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2008~
-~13916~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2008~
-~13916~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2008~
-~13916~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2008~
-~13916~^~417~^7.^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~
-~13916~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~
-~13916~^~432~^7.^0^^~4~^~PAE~^^^^^^^^^^~05/01/2008~
-~13916~^~435~^7.^0^^~4~^~NC~^^^^^^^^^^~06/01/2008~
-~13916~^~601~^79.^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~
-~13917~^~208~^247.^0^^~4~^~NC~^^^^^^^^^^~07/01/2010~
-~13917~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2003~
-~13917~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2003~
-~13917~^~268~^1036.^0^^~4~^~NC~^^^^^^^^^^~07/01/2010~
-~13917~^~301~^23.^0^^~4~^~BFNN~^^^^^^^^^^~04/01/2003~
-~13917~^~304~^20.^0^^~4~^~BFNN~^^^^^^^^^^~04/01/2003~
-~13917~^~305~^180.^0^^~4~^~BFNN~^^^^^^^^^^~04/01/2003~
-~13917~^~306~^302.^0^^~4~^~BFNN~^^^^^^^^^^~04/01/2003~
-~13917~^~307~^50.^0^^~4~^~BFNN~^^^^^^^^^^~04/01/2003~
-~13917~^~318~^0.^0^^~1~^~AS~^^^^^^^^^^~04/01/2003~
-~13917~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2003~
-~13917~^~320~^0.^0^^~1~^~AS~^^^^^^^^^^~04/01/2003~
-~13917~^~321~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2003~
-~13917~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2003~
-~13917~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2003~
-~13917~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2003~
-~13917~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2003~
-~13917~^~417~^11.^0^^~4~^~BFPN~^^^^^^^^^^~04/01/2003~
-~13917~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~
-~13917~^~432~^11.^0^^~4~^~BFPN~^^^^^^^^^^~07/01/2010~
-~13917~^~435~^11.^0^^~4~^~NC~^^^^^^^^^^~07/01/2010~
-~13917~^~601~^85.^0^^~4~^~BFSN~^^^^^^^^^^~07/01/2010~
-~13918~^~208~^267.^0^^~4~^~NC~^^^^^^^^^^~07/01/2010~
-~13918~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2003~
-~13918~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2003~
-~13918~^~268~^1119.^0^^~4~^~NC~^^^^^^^^^^~07/01/2010~
-~13918~^~301~^19.^0^^~4~^~BFNN~^^^^^^^^^^~04/01/2003~
-~13918~^~304~^22.^0^^~4~^~BFNN~^^^^^^^^^^~04/01/2003~
-~13918~^~305~^205.^0^^~4~^~BFNN~^^^^^^^^^^~04/01/2003~
-~13918~^~306~^329.^0^^~4~^~BFNN~^^^^^^^^^^~04/01/2003~
-~13918~^~307~^54.^0^^~4~^~BFNN~^^^^^^^^^^~04/01/2003~
-~13918~^~318~^0.^0^^~1~^~AS~^^^^^^^^^^~04/01/2003~
-~13918~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2003~
-~13918~^~320~^0.^0^^~1~^~AS~^^^^^^^^^^~04/01/2003~
-~13918~^~321~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2003~
-~13918~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2003~
-~13918~^~324~^11.^0^^~4~^~BFFN~^^^^^^^^^^~03/01/2009~
-~13918~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2003~
-~13918~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2003~
-~13918~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2003~
-~13918~^~417~^8.^0^^~4~^~BFPN~^^^^^^^^^^~04/01/2003~
-~13918~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~
-~13918~^~432~^8.^0^^~4~^~BFPN~^^^^^^^^^^~07/01/2010~
-~13918~^~435~^8.^0^^~4~^~NC~^^^^^^^^^^~07/01/2010~
-~13918~^~601~^97.^0^^~4~^~BFSN~^^^^^^^^^^~07/01/2010~
-~13919~^~208~^324.^0^^~4~^~NC~^^^^^^^^^^~12/01/1995~
-~13919~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2008~
-~13919~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2008~
-~13919~^~268~^1356.^0^^~4~^^^^^^^^^^^~04/01/2008~
-~13919~^~301~^9.^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~
-~13919~^~304~^22.^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~
-~13919~^~305~^203.^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~
-~13919~^~306~^331.^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~
-~13919~^~307~^57.^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~
-~13919~^~318~^0.^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~
-~13919~^~320~^0.^0^^~1~^~AS~^^^^^^^^^^~04/01/2008~
-~13919~^~321~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2008~
-~13919~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2008~
-~13919~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2008~
-~13919~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2008~
-~13919~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2008~
-~13919~^~417~^8.^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~
-~13919~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~
-~13919~^~432~^8.^0^^~4~^~PAE~^^^^^^^^^^~04/01/2008~
-~13919~^~435~^8.^0^^~4~^~NC~^^^^^^^^^^~06/01/2008~
-~13919~^~601~^85.^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~
-~13920~^~208~^246.^0^^~4~^~NC~^^^^^^^^^^~07/01/2010~
-~13920~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2003~
-~13920~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2003~
-~13920~^~268~^1029.^0^^~4~^~NC~^^^^^^^^^^~07/01/2010~
-~13920~^~301~^25.^0^^~4~^~BFNN~^^^^^^^^^^~04/01/2003~
-~13920~^~304~^20.^0^^~4~^~BFNN~^^^^^^^^^^~04/01/2003~
-~13920~^~305~^177.^0^^~4~^~BFNN~^^^^^^^^^^~04/01/2003~
-~13920~^~306~^303.^0^^~4~^~BFNN~^^^^^^^^^^~04/01/2003~
-~13920~^~307~^50.^0^^~4~^~BFNN~^^^^^^^^^^~04/01/2003~
-~13920~^~318~^0.^0^^~1~^~AS~^^^^^^^^^^~04/01/2003~
-~13920~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2003~
-~13920~^~320~^0.^0^^~1~^~AS~^^^^^^^^^^~04/01/2003~
-~13920~^~321~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2003~
-~13920~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2003~
-~13920~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2003~
-~13920~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2003~
-~13920~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2003~
-~13920~^~417~^11.^0^^~4~^~BFPN~^^^^^^^^^^~04/01/2003~
-~13920~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~
-~13920~^~432~^11.^0^^~4~^~BFPN~^^^^^^^^^^~07/01/2010~
-~13920~^~435~^11.^0^^~4~^~NC~^^^^^^^^^^~07/01/2010~
-~13920~^~601~^85.^0^^~4~^~BFSN~^^^^^^^^^^~07/01/2010~
-~13921~^~208~^273.^0^^~4~^~NC~^^^^^^^^^^~07/01/2010~
-~13921~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2003~
-~13921~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2003~
-~13921~^~268~^1143.^0^^~4~^~NC~^^^^^^^^^^~07/01/2010~
-~13921~^~301~^17.^0^^~4~^~BFNN~^^^^^^^^^^~05/01/2003~
-~13921~^~304~^21.^0^^~4~^~BFNN~^^^^^^^^^^~05/01/2003~
-~13921~^~305~^196.^0^^~4~^~BFNN~^^^^^^^^^^~05/01/2003~
-~13921~^~306~^318.^0^^~4~^~BFNN~^^^^^^^^^^~05/01/2003~
-~13921~^~307~^52.^0^^~4~^~BFNN~^^^^^^^^^^~05/01/2003~
-~13921~^~318~^0.^0^^~1~^~AS~^^^^^^^^^^~04/01/2003~
-~13921~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2003~
-~13921~^~320~^0.^0^^~1~^~AS~^^^^^^^^^^~04/01/2003~
-~13921~^~321~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2003~
-~13921~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2003~
-~13921~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2003~
-~13921~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2003~
-~13921~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2003~
-~13921~^~417~^8.^0^^~4~^~BFPN~^^^^^^^^^^~05/01/2003~
-~13921~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~
-~13921~^~432~^8.^0^^~4~^~BFPN~^^^^^^^^^^~07/01/2010~
-~13921~^~435~^8.^0^^~4~^~NC~^^^^^^^^^^~07/01/2010~
-~13921~^~601~^99.^0^^~4~^~BFSN~^^^^^^^^^^~07/01/2010~
-~13922~^~208~^331.^0^^~4~^~NC~^^^^^^^^^^~04/01/2008~
-~13922~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2008~
-~13922~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2008~
-~13922~^~268~^1385.^0^^~4~^~NC~^^^^^^^^^^~04/01/2008~
-~13922~^~301~^9.^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~
-~13922~^~304~^26.^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~
-~13922~^~305~^236.^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~
-~13922~^~306~^407.^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~
-~13922~^~307~^65.^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~
-~13922~^~318~^0.^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~
-~13922~^~320~^0.^0^^~1~^~AS~^^^^^^^^^^~04/01/2008~
-~13922~^~321~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2008~
-~13922~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2008~
-~13922~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2008~
-~13922~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2008~
-~13922~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2008~
-~13922~^~417~^8.^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~
-~13922~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~
-~13922~^~432~^8.^0^^~4~^~PAE~^^^^^^^^^^~04/01/2008~
-~13922~^~435~^8.^0^^~4~^~NC~^^^^^^^^^^~06/01/2008~
-~13922~^~601~^85.^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~
-~13923~^~208~^249.^0^^~4~^~NC~^^^^^^^^^^~07/01/2010~
-~13923~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2003~
-~13923~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2003~
-~13923~^~268~^1043.^0^^~4~^~NC~^^^^^^^^^^~07/01/2010~
-~13923~^~301~^22.^0^^~4~^~BFNN~^^^^^^^^^^~04/01/2003~
-~13923~^~304~^20.^0^^~4~^~BFNN~^^^^^^^^^^~04/01/2003~
-~13923~^~305~^182.^0^^~4~^~BFNN~^^^^^^^^^^~04/01/2003~
-~13923~^~306~^300.^0^^~4~^~BFNN~^^^^^^^^^^~04/01/2003~
-~13923~^~307~^50.^0^^~4~^~BFNN~^^^^^^^^^^~04/01/2003~
-~13923~^~318~^0.^0^^~1~^~AS~^^^^^^^^^^~04/01/2003~
-~13923~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2003~
-~13923~^~320~^0.^0^^~1~^~AS~^^^^^^^^^^~04/01/2003~
-~13923~^~321~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2003~
-~13923~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2003~
-~13923~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2003~
-~13923~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2003~
-~13923~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2003~
-~13923~^~417~^10.^0^^~4~^~BFPN~^^^^^^^^^^~04/01/2003~
-~13923~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~
-~13923~^~432~^10.^0^^~4~^~BFPN~^^^^^^^^^^~07/01/2010~
-~13923~^~435~^10.^0^^~4~^~NC~^^^^^^^^^^~07/01/2010~
-~13923~^~601~^86.^0^^~4~^~BFSN~^^^^^^^^^^~07/01/2010~
-~13924~^~208~^262.^0^^~4~^~NC~^^^^^^^^^^~07/01/2010~
-~13924~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2003~
-~13924~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2003~
-~13924~^~268~^1097.^0^^~4~^~NC~^^^^^^^^^^~07/01/2010~
-~13924~^~301~^22.^0^^~4~^~BFNN~^^^^^^^^^^~04/01/2003~
-~13924~^~304~^23.^0^^~4~^~BFNN~^^^^^^^^^^~04/01/2003~
-~13924~^~305~^214.^0^^~4~^~BFNN~^^^^^^^^^^~04/01/2003~
-~13924~^~306~^340.^0^^~4~^~BFNN~^^^^^^^^^^~04/01/2003~
-~13924~^~307~^57.^0^^~4~^~BFNN~^^^^^^^^^^~04/01/2003~
-~13924~^~318~^0.^0^^~1~^~AS~^^^^^^^^^^~04/01/2003~
-~13924~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2003~
-~13924~^~320~^0.^0^^~1~^~AS~^^^^^^^^^^~04/01/2003~
-~13924~^~321~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2003~
-~13924~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2003~
-~13924~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2003~
-~13924~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2003~
-~13924~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2003~
-~13924~^~417~^8.^0^^~4~^~BFPN~^^^^^^^^^^~04/01/2003~
-~13924~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~
-~13924~^~432~^8.^0^^~4~^~BFPN~^^^^^^^^^^~07/01/2010~
-~13924~^~435~^8.^0^^~4~^~NC~^^^^^^^^^^~07/01/2010~
-~13924~^~601~^96.^0^^~4~^~BFSN~^^^^^^^^^^~07/01/2010~
-~13925~^~208~^316.^0^^~4~^~NC~^^^^^^^^^^~12/01/1995~
-~13925~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2008~
-~13925~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2008~
-~13925~^~268~^1322.^0^^~4~^^^^^^^^^^^~04/01/2008~
-~13925~^~301~^9.^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~
-~13925~^~304~^22.^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~
-~13925~^~305~^203.^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~
-~13925~^~306~^331.^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~
-~13925~^~307~^57.^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~
-~13925~^~318~^0.^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~
-~13925~^~320~^0.^0^^~1~^~AS~^^^^^^^^^^~04/01/2008~
-~13925~^~321~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2008~
-~13925~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2008~
-~13925~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2008~
-~13925~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2008~
-~13925~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2008~
-~13925~^~417~^8.^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~
-~13925~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~
-~13925~^~432~^8.^0^^~4~^~PAE~^^^^^^^^^^~04/01/2008~
-~13925~^~435~^8.^0^^~4~^~NC~^^^^^^^^^^~06/01/2008~
-~13925~^~601~^85.^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~
-~13926~^~208~^274.^0^^~4~^~NC~^^^^^^^^^^~12/01/1995~
-~13926~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2008~
-~13926~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2008~
-~13926~^~268~^1146.^0^^~4~^^^^^^^^^^^~04/01/2008~
-~13926~^~301~^7.^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~
-~13926~^~304~^20.^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~
-~13926~^~305~^181.^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~
-~13926~^~306~^304.^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~
-~13926~^~307~^49.^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~
-~13926~^~318~^0.^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~
-~13926~^~320~^0.^0^^~1~^~AS~^^^^^^^^^^~04/01/2008~
-~13926~^~321~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2008~
-~13926~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2008~
-~13926~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2008~
-~13926~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2008~
-~13926~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2008~
-~13926~^~417~^6.^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~
-~13926~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~
-~13926~^~432~^6.^0^^~4~^~PAE~^^^^^^^^^^~04/01/2008~
-~13926~^~435~^6.^0^^~4~^~NC~^^^^^^^^^^~06/01/2008~
-~13926~^~601~^70.^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~
-~13927~^~208~^308.^0^^~4~^~NC~^^^^^^^^^^~12/01/1995~
-~13927~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2008~
-~13927~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2008~
-~13927~^~268~^1289.^0^^~4~^^^^^^^^^^^~04/01/2008~
-~13927~^~301~^8.^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~
-~13927~^~304~^26.^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~
-~13927~^~305~^210.^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~
-~13927~^~306~^368.^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~
-~13927~^~307~^59.^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~
-~13927~^~318~^0.^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~
-~13927~^~320~^0.^0^^~1~^~AS~^^^^^^^^^^~04/01/2008~
-~13927~^~321~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2008~
-~13927~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2008~
-~13927~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2008~
-~13927~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2008~
-~13927~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2008~
-~13927~^~417~^6.^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~
-~13927~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~
-~13927~^~432~^6.^0^^~4~^~PAE~^^^^^^^^^^~04/01/2008~
-~13927~^~435~^6.^0^^~4~^~NC~^^^^^^^^^^~01/01/2009~
-~13927~^~601~^86.^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~
-~13928~^~208~^343.^0^^~4~^~NC~^^^^^^^^^^~12/01/1995~
-~13928~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2007~
-~13928~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2007~
-~13928~^~268~^1435.^0^^~4~^^^^^^^^^^^~03/01/2009~
-~13928~^~301~^8.^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~
-~13928~^~304~^23.^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~
-~13928~^~305~^203.^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~
-~13928~^~306~^336.^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~
-~13928~^~307~^55.^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~
-~13928~^~318~^0.^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~
-~13928~^~319~^0.^0^^~4~^~BFSN~^~13918~^^^^^^^^^~03/01/2007~
-~13928~^~320~^0.^0^^~1~^~AS~^^^^^^^^^^~03/01/2007~
-~13928~^~321~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2007~
-~13928~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2007~
-~13928~^~324~^17.^0^^~4~^~BFFN~^^^^^^^^^^~03/01/2009~
-~13928~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2007~
-~13928~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2007~
-~13928~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2007~
-~13928~^~417~^7.^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~
-~13928~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~
-~13928~^~432~^7.^0^^~4~^~PAE~^^^^^^^^^^~03/01/2009~
-~13928~^~435~^7.^0^^~4~^~NC~^^^^^^^^^^~03/01/2009~
-~13928~^~601~^88.^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~
-~13929~^~208~^201.^0^^~4~^~NC~^^^^^^^^^^~07/01/2010~
-~13929~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2003~
-~13929~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2003~
-~13929~^~268~^842.^0^^~4~^~NC~^^^^^^^^^^~07/01/2010~
-~13929~^~301~^24.^0^^~4~^~BFNN~^^^^^^^^^^~04/01/2003~
-~13929~^~304~^21.^0^^~4~^~BFNN~^^^^^^^^^^~04/01/2003~
-~13929~^~305~^187.^0^^~4~^~BFNN~^^^^^^^^^^~04/01/2003~
-~13929~^~306~^315.^0^^~4~^~BFNN~^^^^^^^^^^~04/01/2003~
-~13929~^~307~^52.^0^^~4~^~BFNN~^^^^^^^^^^~04/01/2003~
-~13929~^~318~^0.^0^^~1~^~AS~^^^^^^^^^^~04/01/2003~
-~13929~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2003~
-~13929~^~320~^0.^0^^~1~^~AS~^^^^^^^^^^~04/01/2003~
-~13929~^~321~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2003~
-~13929~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2003~
-~13929~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2003~
-~13929~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2003~
-~13929~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2003~
-~13929~^~417~^11.^0^^~4~^~BFPN~^^^^^^^^^^~04/01/2003~
-~13929~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~
-~13929~^~432~^11.^0^^~4~^~BFPN~^^^^^^^^^^~07/01/2010~
-~13929~^~435~^11.^0^^~4~^~NC~^^^^^^^^^^~07/01/2010~
-~13929~^~601~^75.^0^^~4~^~BFSN~^^^^^^^^^^~07/01/2010~
-~13930~^~208~^243.^0^^~4~^~NC~^^^^^^^^^^~07/01/2010~
-~13930~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2003~
-~13930~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2003~
-~13930~^~268~^1019.^0^^~4~^~NC~^^^^^^^^^^~07/01/2010~
-~13930~^~301~^20.^0^^~4~^~BFNN~^^^^^^^^^^~04/01/2003~
-~13930~^~304~^22.^0^^~4~^~BFNN~^^^^^^^^^^~04/01/2003~
-~13930~^~305~^209.^0^^~4~^~BFNN~^^^^^^^^^^~04/01/2003~
-~13930~^~306~^336.^0^^~4~^~BFNN~^^^^^^^^^^~04/01/2003~
-~13930~^~307~^56.^0^^~4~^~BFNN~^^^^^^^^^^~04/01/2003~
-~13930~^~318~^0.^0^^~1~^~AS~^^^^^^^^^^~04/01/2003~
-~13930~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2003~
-~13930~^~320~^0.^0^^~1~^~AS~^^^^^^^^^^~04/01/2003~
-~13930~^~321~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2003~
-~13930~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2003~
-~13930~^~324~^9.^0^^~4~^~BFFN~^^^^^^^^^^~03/01/2009~
-~13930~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2003~
-~13930~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2003~
-~13930~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2003~
-~13930~^~417~^8.^0^^~4~^~BFPN~^^^^^^^^^^~04/01/2003~
-~13930~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~
-~13930~^~432~^8.^0^^~4~^~BFPN~^^^^^^^^^^~07/01/2010~
-~13930~^~435~^8.^0^^~4~^~NC~^^^^^^^^^^~07/01/2010~
-~13930~^~601~^92.^0^^~4~^~BFSN~^^^^^^^^^^~07/01/2010~
-~13931~^~208~^214.^0^^~4~^~NC~^^^^^^^^^^~07/01/2010~
-~13931~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2003~
-~13931~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2003~
-~13931~^~268~^895.^0^^~4~^~NC~^^^^^^^^^^~07/01/2010~
-~13931~^~301~^25.^0^^~4~^~BFNN~^^^^^^^^^^~04/01/2003~
-~13931~^~304~^20.^0^^~4~^~BFNN~^^^^^^^^^^~04/01/2003~
-~13931~^~305~^181.^0^^~4~^~BFNN~^^^^^^^^^^~04/01/2003~
-~13931~^~306~^309.^0^^~4~^~BFNN~^^^^^^^^^^~04/01/2003~
-~13931~^~307~^51.^0^^~4~^~BFNN~^^^^^^^^^^~04/01/2003~
-~13931~^~318~^0.^0^^~1~^~AS~^^^^^^^^^^~04/01/2003~
-~13931~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2003~
-~13931~^~320~^0.^0^^~1~^~AS~^^^^^^^^^^~04/01/2003~
-~13931~^~321~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2003~
-~13931~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2003~
-~13931~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2003~
-~13931~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2003~
-~13931~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2003~
-~13931~^~417~^11.^0^^~4~^~BFPN~^^^^^^^^^^~04/01/2003~
-~13931~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~
-~13931~^~432~^11.^0^^~4~^~BFPN~^^^^^^^^^^~07/01/2010~
-~13931~^~435~^11.^0^^~4~^~NC~^^^^^^^^^^~07/01/2010~
-~13931~^~601~^78.^0^^~4~^~BFSN~^^^^^^^^^^~07/01/2010~
-~13932~^~208~^257.^0^^~4~^~NC~^^^^^^^^^^~07/01/2010~
-~13932~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2003~
-~13932~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2003~
-~13932~^~268~^1073.^0^^~4~^~NC~^^^^^^^^^^~07/01/2010~
-~13932~^~301~^18.^0^^~4~^~BFNN~^^^^^^^^^^~04/01/2003~
-~13932~^~304~^22.^0^^~4~^~BFNN~^^^^^^^^^^~04/01/2003~
-~13932~^~305~^201.^0^^~4~^~BFNN~^^^^^^^^^^~04/01/2003~
-~13932~^~306~^327.^0^^~4~^~BFNN~^^^^^^^^^^~04/01/2003~
-~13932~^~307~^54.^0^^~4~^~BFNN~^^^^^^^^^^~04/01/2003~
-~13932~^~318~^0.^0^^~1~^~AS~^^^^^^^^^^~04/01/2003~
-~13932~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2003~
-~13932~^~320~^0.^0^^~1~^~AS~^^^^^^^^^^~04/01/2003~
-~13932~^~321~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2003~
-~13932~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2003~
-~13932~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2003~
-~13932~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2003~
-~13932~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2003~
-~13932~^~417~^8.^0^^~4~^~BFPN~^^^^^^^^^^~04/01/2003~
-~13932~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~
-~13932~^~432~^8.^0^^~4~^~BFPN~^^^^^^^^^^~07/01/2010~
-~13932~^~435~^8.^0^^~4~^~NC~^^^^^^^^^^~07/01/2010~
-~13932~^~601~^96.^0^^~4~^~BFSN~^^^^^^^^^^~07/01/2010~
-~13933~^~208~^313.^0^^~4~^~NC~^^^^^^^^^^~12/01/1995~
-~13933~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2007~
-~13933~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2007~
-~13933~^~268~^1310.^0^^~4~^^^^^^^^^^^~03/01/2009~
-~13933~^~301~^12.^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~
-~13933~^~304~^28.^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~
-~13933~^~305~^235.^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~
-~13933~^~306~^406.^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~
-~13933~^~307~^71.^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~
-~13933~^~318~^0.^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~
-~13933~^~319~^0.^0^^~4~^~BFSN~^~13930~^^^^^^^^^~03/01/2007~
-~13933~^~320~^0.^0^^~1~^~AS~^^^^^^^^^^~03/01/2007~
-~13933~^~321~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2007~
-~13933~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2007~
-~13933~^~324~^14.^0^^~4~^~BFFN~^^^^^^^^^^~03/01/2009~
-~13933~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2007~
-~13933~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2007~
-~13933~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2007~
-~13933~^~417~^9.^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~
-~13933~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~
-~13933~^~432~^9.^0^^~4~^~PAE~^^^^^^^^^^~03/01/2009~
-~13933~^~435~^9.^0^^~4~^~NC~^^^^^^^^^^~03/01/2010~
-~13933~^~601~^98.^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~
-~13934~^~208~^189.^0^^~4~^~NC~^^^^^^^^^^~07/01/2010~
-~13934~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2003~
-~13934~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2003~
-~13934~^~268~^789.^0^^~4~^~NC~^^^^^^^^^^~07/01/2010~
-~13934~^~301~^24.^0^^~4~^~BFNN~^^^^^^^^^^~04/01/2003~
-~13934~^~304~^21.^0^^~4~^~BFNN~^^^^^^^^^^~04/01/2003~
-~13934~^~305~^194.^0^^~4~^~BFNN~^^^^^^^^^^~04/01/2003~
-~13934~^~306~^321.^0^^~4~^~BFNN~^^^^^^^^^^~04/01/2003~
-~13934~^~307~^53.^0^^~4~^~BFNN~^^^^^^^^^^~04/01/2003~
-~13934~^~318~^0.^0^^~1~^~AS~^^^^^^^^^^~04/01/2003~
-~13934~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2003~
-~13934~^~320~^0.^0^^~1~^~AS~^^^^^^^^^^~04/01/2003~
-~13934~^~321~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2003~
-~13934~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2003~
-~13934~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2003~
-~13934~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2003~
-~13934~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2003~
-~13934~^~417~^11.^0^^~4~^~BFPN~^^^^^^^^^^~04/01/2003~
-~13934~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~
-~13934~^~432~^11.^0^^~4~^~BFPN~^^^^^^^^^^~07/01/2010~
-~13934~^~435~^11.^0^^~4~^~NC~^^^^^^^^^^~07/01/2010~
-~13934~^~601~^72.^0^^~4~^~BFSN~^^^^^^^^^^~07/01/2010~
-~13935~^~208~^230.^0^^~4~^~NC~^^^^^^^^^^~07/01/2010~
-~13935~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2003~
-~13935~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2003~
-~13935~^~268~^964.^0^^~4~^~NC~^^^^^^^^^^~07/01/2010~
-~13935~^~301~^22.^0^^~4~^~BFNN~^^^^^^^^^^~04/01/2003~
-~13935~^~304~^23.^0^^~4~^~BFNN~^^^^^^^^^^~04/01/2003~
-~13935~^~305~^217.^0^^~4~^~BFNN~^^^^^^^^^^~04/01/2003~
-~13935~^~306~^345.^0^^~4~^~BFNN~^^^^^^^^^^~04/01/2003~
-~13935~^~307~^57.^0^^~4~^~BFNN~^^^^^^^^^^~04/01/2003~
-~13935~^~318~^0.^0^^~1~^~AS~^^^^^^^^^^~04/01/2003~
-~13935~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2003~
-~13935~^~320~^0.^0^^~1~^~AS~^^^^^^^^^^~04/01/2003~
-~13935~^~321~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2003~
-~13935~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2003~
-~13935~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2003~
-~13935~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2003~
-~13935~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2003~
-~13935~^~417~^8.^0^^~4~^~BFPN~^^^^^^^^^^~04/01/2003~
-~13935~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~
-~13935~^~432~^8.^0^^~4~^~BFPN~^^^^^^^^^^~07/01/2010~
-~13935~^~435~^8.^0^^~4~^~NC~^^^^^^^^^^~07/01/2010~
-~13935~^~601~^89.^0^^~4~^~BFSN~^^^^^^^^^^~07/01/2010~
-~13937~^~208~^171.^0^^~4~^~NC~^^^^^^^^^^~07/01/2010~
-~13937~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2001~
-~13937~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2001~
-~13937~^~268~^716.^0^^~4~^~NC~^^^^^^^^^^~07/01/2010~
-~13937~^~301~^7.^0^^~4~^~BFNY~^^^^^^^^^^~05/01/2001~
-~13937~^~304~^22.^4^0.^~1~^~A~^^^^^^^^^^~04/01/2008~
-~13937~^~305~^223.^0^^~4~^~BFNY~^^^^^^^^^^~05/01/2001~
-~13937~^~306~^386.^0^^~4~^~BFNY~^^^^^^^^^^~07/01/2001~
-~13937~^~307~^74.^0^^~4~^~BFNY~^^^^^^^^^^~05/01/2001~
-~13937~^~318~^0.^0^^~1~^~AS~^^^^^^^^^^~04/01/2008~
-~13937~^~319~^0.^0^^~4~^~NR~^^^^^^^^^^~06/01/2002~
-~13937~^~320~^0.^0^^~1~^~AS~^^^^^^^^^^~05/01/2002~
-~13937~^~321~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2002~
-~13937~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2002~
-~13937~^~324~^6.^4^1.^~1~^~A~^^^1^3.^8.^3^1.^10.^~2, 3~^~04/01/2009~
-~13937~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2002~
-~13937~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2002~
-~13937~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2002~
-~13937~^~417~^9.^0^^~4~^~BFPY~^^^^^^^^^^~04/01/2009~
-~13937~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~07/01/2001~
-~13937~^~432~^9.^0^^~4~^~BFPY~^^^^^^^^^^~07/01/2010~
-~13937~^~435~^9.^0^^~4~^~NC~^^^^^^^^^^~07/01/2010~
-~13937~^~601~^87.^0^^~4~^~BFSN~^~23081~^^^^^^^^^~07/01/2010~
-~13940~^~208~^172.^0^^~4~^~NC~^^^^^^^^^^~07/01/2010~
-~13940~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2001~
-~13940~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2001~
-~13940~^~268~^721.^0^^~4~^~NC~^^^^^^^^^^~07/01/2010~
-~13940~^~301~^7.^0^^~4~^~BFNY~^^^^^^^^^^~05/01/2001~
-~13940~^~304~^22.^4^0.^~1~^~A~^^^^^^^^^^~04/01/2008~
-~13940~^~305~^222.^0^^~4~^~BFNY~^^^^^^^^^^~05/01/2001~
-~13940~^~306~^384.^0^^~4~^~BFNY~^^^^^^^^^^~07/01/2001~
-~13940~^~307~^74.^0^^~4~^~BFNY~^^^^^^^^^^~05/01/2001~
-~13940~^~318~^0.^0^^~1~^~AS~^^^^^^^^^^~04/01/2008~
-~13940~^~319~^0.^0^^~4~^~NR~^^^^^^^^^^~06/01/2002~
-~13940~^~320~^0.^0^^~1~^~AS~^^^^^^^^^^~05/01/2002~
-~13940~^~321~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2002~
-~13940~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2002~
-~13940~^~324~^5.^2^^~1~^~A~^^^1^4.^6.^1^^^^~04/01/2009~
-~13940~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2002~
-~13940~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2002~
-~13940~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2002~
-~13940~^~417~^10.^0^^~4~^~BFPY~^^^^^^^^^^~04/01/2009~
-~13940~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~07/01/2001~
-~13940~^~432~^10.^0^^~4~^~BFPY~^^^^^^^^^^~07/01/2010~
-~13940~^~435~^10.^0^^~4~^~NC~^^^^^^^^^^~07/01/2010~
-~13940~^~601~^90.^0^^~4~^~BFSN~^~23082~^^^^^^^^^~07/01/2010~
-~13943~^~208~^178.^0^^~4~^~NC~^^^^^^^^^^~09/01/2010~
-~13943~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2001~
-~13943~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2001~
-~13943~^~268~^746.^0^^~4~^~NC~^^^^^^^^^^~09/01/2010~
-~13943~^~301~^12.^4^0.^~1~^~AR~^^^^^^^^^^~07/01/2010~
-~13943~^~304~^26.^4^0.^~1~^~AR~^^^^^^^^^^~07/01/2010~
-~13943~^~305~^249.^4^5.^~1~^~AR~^^^^^^^^^^~07/01/2010~
-~13943~^~306~^372.^4^9.^~1~^~AR~^^^^^^^^^^~07/01/2010~
-~13943~^~307~^68.^4^1.^~1~^~AR~^^^^^^^^^^~07/01/2010~
-~13943~^~318~^4.^0^^~4~^~NC~^^^^^^^^^^~09/01/2010~
-~13943~^~319~^1.^0^^~4~^~BFSN~^^^^^^^^^^~07/01/2010~
-~13943~^~320~^1.^0^^~4~^~NC~^^^^^^^^^^~09/01/2010~
-~13943~^~321~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2002~
-~13943~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2002~
-~13943~^~324~^5.^0^^~4~^~BFSN~^^^^^^^^^^~07/01/2010~
-~13943~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2002~
-~13943~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2002~
-~13943~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2002~
-~13943~^~417~^7.^0^^~4~^~BFPN~^~23042~^^^^^^^^^~07/01/2010~
-~13943~^~431~^0.^0^^~4~^~BFPN~^~23042~^^^^^^^^^~07/01/2010~
-~13943~^~432~^7.^0^^~4~^~BFPN~^~23042~^^^^^^^^^~07/01/2010~
-~13943~^~435~^7.^0^^~4~^~NC~^~23042~^^^^^^^^^~09/01/2010~
-~13943~^~601~^81.^3^1.^~1~^~AR~^^^^^^^^^^~09/01/2010~
-~13946~^~208~^169.^0^^~4~^~NC~^^^^^^^^^^~07/01/2010~
-~13946~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2001~
-~13946~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2001~
-~13946~^~268~^708.^0^^~4~^~NC~^^^^^^^^^^~07/01/2010~
-~13946~^~301~^12.^2^^~1~^~AR~^^^^^^^^^^~07/01/2010~
-~13946~^~304~^25.^2^^~1~^~AR~^^^^^^^^^^~07/01/2010~
-~13946~^~305~^249.^2^^~1~^~AR~^^^^^^^^^^~07/01/2010~
-~13946~^~306~^371.^2^^~1~^~AR~^^^^^^^^^^~07/01/2010~
-~13946~^~307~^68.^2^^~1~^~AR~^^^^^^^^^^~07/01/2010~
-~13946~^~318~^6.^0^^~4~^~NC~^^^^^^^^^^~07/01/2010~
-~13946~^~319~^2.^0^^~4~^~BFSN~^^^^^^^^^^~07/01/2010~
-~13946~^~320~^2.^0^^~4~^~NC~^^^^^^^^^^~07/01/2010~
-~13946~^~321~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2002~
-~13946~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2002~
-~13946~^~324~^4.^0^^~4~^~BFSN~^^^^^^^^^^~07/01/2010~
-~13946~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2002~
-~13946~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2002~
-~13946~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2002~
-~13946~^~417~^7.^0^^~4~^~BFPN~^~23044~^^^^^^^^^~07/01/2010~
-~13946~^~431~^0.^0^^~4~^~BFPN~^~23044~^^^^^^^^^~07/01/2010~
-~13946~^~432~^7.^0^^~4~^~BFPN~^~23044~^^^^^^^^^~07/01/2010~
-~13946~^~435~^7.^0^^~4~^~NC~^~23044~^^^^^^^^^~07/01/2010~
-~13946~^~601~^83.^2^^~1~^~AR~^^^^^^^^^^~07/01/2010~
-~13948~^~208~^192.^0^^~4~^~NC~^^^^^^^^^^~07/01/2010~
-~13948~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2003~
-~13948~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2003~
-~13948~^~268~^805.^0^^~4~^~NC~^^^^^^^^^^~07/01/2010~
-~13948~^~301~^20.^0^^~4~^~BFFN~^^^^^^^^^^~05/01/2003~
-~13948~^~304~^23.^0^^~4~^~BFFN~^^^^^^^^^^~05/01/2003~
-~13948~^~305~^210.^0^^~4~^~BFFN~^^^^^^^^^^~05/01/2003~
-~13948~^~306~^339.^0^^~4~^~BFFN~^^^^^^^^^^~05/01/2003~
-~13948~^~307~^56.^0^^~4~^~BFFN~^^^^^^^^^^~05/01/2003~
-~13948~^~318~^0.^0^^~1~^~AS~^^^^^^^^^^~05/01/2003~
-~13948~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2003~
-~13948~^~320~^0.^0^^~1~^~AS~^^^^^^^^^^~05/01/2003~
-~13948~^~321~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2003~
-~13948~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2003~
-~13948~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2003~
-~13948~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2003~
-~13948~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2003~
-~13948~^~417~^9.^0^^~4~^~BFPN~^^^^^^^^^^~05/01/2003~
-~13948~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2003~
-~13948~^~432~^9.^0^^~4~^~BFPN~^^^^^^^^^^~07/01/2010~
-~13948~^~435~^9.^0^^~4~^~NC~^^^^^^^^^^~07/01/2010~
-~13948~^~601~^79.^0^^~4~^~BFSN~^^^^^^^^^^~07/01/2010~
-~13949~^~208~^183.^0^^~4~^~NC~^^^^^^^^^^~07/01/2010~
-~13949~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2003~
-~13949~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2003~
-~13949~^~268~^766.^0^^~4~^~NC~^^^^^^^^^^~07/01/2010~
-~13949~^~301~^22.^0^^~4~^~BFFN~^^^^^^^^^^~05/01/2003~
-~13949~^~304~^24.^0^^~4~^~BFFN~^^^^^^^^^^~05/01/2003~
-~13949~^~305~^220.^0^^~4~^~BFFN~^^^^^^^^^^~05/01/2003~
-~13949~^~306~^351.^0^^~4~^~BFFN~^^^^^^^^^^~05/01/2003~
-~13949~^~307~^58.^0^^~4~^~BFFN~^^^^^^^^^^~05/01/2003~
-~13949~^~318~^0.^0^^~1~^~AS~^^^^^^^^^^~05/01/2003~
-~13949~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2003~
-~13949~^~320~^0.^0^^~1~^~AS~^^^^^^^^^^~05/01/2003~
-~13949~^~321~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2003~
-~13949~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2003~
-~13949~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2003~
-~13949~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2003~
-~13949~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2003~
-~13949~^~417~^9.^0^^~4~^~BFPN~^^^^^^^^^^~05/01/2003~
-~13949~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2003~
-~13949~^~432~^9.^0^^~4~^~BFPN~^^^^^^^^^^~07/01/2010~
-~13949~^~435~^9.^0^^~4~^~NC~^^^^^^^^^^~07/01/2010~
-~13949~^~601~^78.^0^^~4~^~BFSN~^^^^^^^^^^~07/01/2010~
-~13950~^~208~^205.^0^^~4~^~NC~^^^^^^^^^^~07/01/2010~
-~13950~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2003~
-~13950~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2003~
-~13950~^~268~^856.^0^^~4~^~NC~^^^^^^^^^^~07/01/2010~
-~13950~^~301~^20.^0^^~4~^~BFFN~^^^^^^^^^^~05/01/2003~
-~13950~^~304~^22.^0^^~4~^~BFFN~^^^^^^^^^^~05/01/2003~
-~13950~^~305~^208.^0^^~4~^~BFFN~^^^^^^^^^^~05/01/2003~
-~13950~^~306~^275.^0^^~4~^~BFFN~^^^^^^^^^^~05/01/2003~
-~13950~^~307~^57.^0^^~4~^~BFFN~^^^^^^^^^^~05/01/2003~
-~13950~^~318~^0.^0^^~1~^~AS~^^^^^^^^^^~05/01/2003~
-~13950~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2003~
-~13950~^~320~^0.^0^^~1~^~AS~^^^^^^^^^^~05/01/2003~
-~13950~^~321~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2003~
-~13950~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2003~
-~13950~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2003~
-~13950~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2003~
-~13950~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2003~
-~13950~^~417~^9.^0^^~4~^~BFPN~^^^^^^^^^^~05/01/2003~
-~13950~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2003~
-~13950~^~432~^9.^0^^~4~^~BFPN~^^^^^^^^^^~07/01/2010~
-~13950~^~435~^9.^0^^~4~^~NC~^^^^^^^^^^~07/01/2010~
-~13950~^~601~^93.^0^^~4~^~BFSN~^~13983~^^^^^^^^^~07/01/2010~
-~13951~^~208~^234.^0^^~4~^~NC~^^^^^^^^^^~07/01/2010~
-~13951~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2003~
-~13951~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2003~
-~13951~^~268~^979.^0^^~4~^~NC~^^^^^^^^^^~07/01/2010~
-~13951~^~301~^22.^0^^~4~^~BFFN~^^^^^^^^^^~05/01/2003~
-~13951~^~304~^24.^0^^~4~^~BFFN~^^^^^^^^^^~05/01/2003~
-~13951~^~305~^223.^0^^~4~^~BFFN~^^^^^^^^^^~05/01/2003~
-~13951~^~306~^355.^0^^~4~^~BFFN~^^^^^^^^^^~05/01/2003~
-~13951~^~307~^59.^0^^~4~^~BFFN~^^^^^^^^^^~05/01/2003~
-~13951~^~318~^0.^0^^~1~^~AS~^^^^^^^^^^~05/01/2003~
-~13951~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2003~
-~13951~^~320~^0.^0^^~1~^~AS~^^^^^^^^^^~05/01/2003~
-~13951~^~321~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2003~
-~13951~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2003~
-~13951~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2003~
-~13951~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2003~
-~13951~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2003~
-~13951~^~417~^9.^0^^~4~^~BFPN~^^^^^^^^^^~05/01/2003~
-~13951~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2003~
-~13951~^~432~^9.^0^^~4~^~BFPN~^^^^^^^^^^~07/01/2010~
-~13951~^~435~^9.^0^^~4~^~NC~^^^^^^^^^^~07/01/2010~
-~13951~^~601~^92.^0^^~4~^~BFSN~^~23127~^^^^^^^^^~07/01/2010~
-~13952~^~208~^249.^0^^~4~^~NC~^^^^^^^^^^~07/01/2010~
-~13952~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2003~
-~13952~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2003~
-~13952~^~268~^1043.^0^^~4~^~NC~^^^^^^^^^^~07/01/2010~
-~13952~^~301~^20.^0^^~4~^~BFFN~^^^^^^^^^^~05/01/2003~
-~13952~^~304~^23.^0^^~4~^~BFFN~^^^^^^^^^^~05/01/2003~
-~13952~^~305~^212.^0^^~4~^~BFFN~^^^^^^^^^^~05/01/2003~
-~13952~^~306~^340.^0^^~4~^~BFFN~^^^^^^^^^^~05/01/2003~
-~13952~^~307~^56.^0^^~4~^~BFFN~^^^^^^^^^^~05/01/2003~
-~13952~^~318~^0.^0^^~1~^~AS~^^^^^^^^^^~05/01/2003~
-~13952~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2003~
-~13952~^~320~^0.^0^^~1~^~AS~^^^^^^^^^^~05/01/2003~
-~13952~^~321~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2003~
-~13952~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2003~
-~13952~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2003~
-~13952~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2003~
-~13952~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2003~
-~13952~^~417~^8.^0^^~4~^~BFPN~^^^^^^^^^^~05/01/2003~
-~13952~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2003~
-~13952~^~432~^8.^0^^~4~^~BFPN~^^^^^^^^^^~07/01/2010~
-~13952~^~435~^8.^0^^~4~^~NC~^^^^^^^^^^~07/01/2010~
-~13952~^~601~^89.^0^^~4~^~BFSN~^~23125~^^^^^^^^^~07/01/2010~
-~13953~^~208~^211.^0^^~4~^~NC~^^^^^^^^^^~06/01/2015~
-~13953~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2003~
-~13953~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2003~
-~13953~^~268~^883.^0^^~4~^~NC~^^^^^^^^^^~06/01/2015~
-~13953~^~301~^19.^0^^~4~^~BFFN~^^^^^^^^^^~05/01/2003~
-~13953~^~304~^22.^0^^~4~^~BFFN~^^^^^^^^^^~05/01/2003~
-~13953~^~305~^201.^0^^~4~^~BFFN~^^^^^^^^^^~05/01/2003~
-~13953~^~306~^323.^0^^~4~^~BFFN~^^^^^^^^^^~05/01/2003~
-~13953~^~307~^53.^0^^~4~^~BFFN~^^^^^^^^^^~05/01/2003~
-~13953~^~318~^0.^0^^~1~^~AS~^^^^^^^^^^~05/01/2003~
-~13953~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2003~
-~13953~^~320~^0.^0^^~1~^~AS~^^^^^^^^^^~05/01/2003~
-~13953~^~321~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2003~
-~13953~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2003~
-~13953~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2003~
-~13953~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2003~
-~13953~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2003~
-~13953~^~417~^8.^0^^~4~^~BFPN~^^^^^^^^^^~05/01/2003~
-~13953~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2003~
-~13953~^~432~^8.^0^^~4~^~BFPN~^^^^^^^^^^~06/01/2015~
-~13953~^~435~^8.^0^^~4~^~NC~^^^^^^^^^^~06/01/2015~
-~13953~^~601~^83.^0^^~4~^~BFSN~^^^^^^^^^^~07/01/2010~
-~13954~^~208~^165.^0^^~4~^~NC~^^^^^^^^^^~07/01/2010~
-~13954~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2003~
-~13954~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2003~
-~13954~^~268~^692.^0^^~4~^~NC~^^^^^^^^^^~07/01/2010~
-~13954~^~301~^25.^0^^~4~^~BFFN~^^^^^^^^^^~05/01/2003~
-~13954~^~304~^21.^0^^~4~^~BFFN~^^^^^^^^^^~05/01/2003~
-~13954~^~305~^189.^0^^~4~^~BFFN~^^^^^^^^^^~05/01/2003~
-~13954~^~306~^317.^0^^~4~^~BFFN~^^^^^^^^^^~05/01/2003~
-~13954~^~307~^52.^0^^~4~^~BFFN~^^^^^^^^^^~05/01/2003~
-~13954~^~318~^0.^0^^~1~^~AS~^^^^^^^^^^~05/01/2003~
-~13954~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2003~
-~13954~^~320~^0.^0^^~1~^~AS~^^^^^^^^^^~05/01/2003~
-~13954~^~321~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2003~
-~13954~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2003~
-~13954~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2003~
-~13954~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2003~
-~13954~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2003~
-~13954~^~417~^11.^0^^~4~^~BFPN~^^^^^^^^^^~05/01/2003~
-~13954~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2003~
-~13954~^~432~^11.^0^^~4~^~BFPN~^^^^^^^^^^~07/01/2010~
-~13954~^~435~^11.^0^^~4~^~NC~^^^^^^^^^^~07/01/2010~
-~13954~^~601~^66.^0^^~4~^~BFSN~^^^^^^^^^^~07/01/2010~
-~13955~^~208~^221.^0^^~4~^~NC~^^^^^^^^^^~07/01/2010~
-~13955~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2003~
-~13955~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2003~
-~13955~^~268~^925.^0^^~4~^~NC~^^^^^^^^^^~07/01/2010~
-~13955~^~301~^17.^0^^~4~^~BFFN~^^^^^^^^^^~05/01/2003~
-~13955~^~304~^20.^0^^~4~^~BFFN~^^^^^^^^^^~05/01/2003~
-~13955~^~305~^189.^0^^~4~^~BFFN~^^^^^^^^^^~05/01/2003~
-~13955~^~306~^308.^0^^~4~^~BFFN~^^^^^^^^^^~05/01/2003~
-~13955~^~307~^50.^0^^~4~^~BFFN~^^^^^^^^^^~05/01/2003~
-~13955~^~318~^0.^0^^~1~^~AS~^^^^^^^^^^~05/01/2003~
-~13955~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2003~
-~13955~^~320~^0.^0^^~1~^~AS~^^^^^^^^^^~05/01/2003~
-~13955~^~321~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2003~
-~13955~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2003~
-~13955~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2003~
-~13955~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2003~
-~13955~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2003~
-~13955~^~417~^8.^0^^~4~^~BFPN~^^^^^^^^^^~05/01/2003~
-~13955~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2003~
-~13955~^~432~^8.^0^^~4~^~BFPN~^^^^^^^^^^~07/01/2010~
-~13955~^~435~^8.^0^^~4~^~NC~^^^^^^^^^^~07/01/2010~
-~13955~^~601~^85.^0^^~4~^~BFSN~^^^^^^^^^^~07/01/2010~
-~13956~^~208~^174.^0^^~4~^~NC~^^^^^^^^^^~07/01/2010~
-~13956~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2003~
-~13956~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2003~
-~13956~^~268~^728.^0^^~4~^~NC~^^^^^^^^^^~07/01/2010~
-~13956~^~301~^25.^0^^~4~^~BFFN~^^^^^^^^^^~05/01/2003~
-~13956~^~304~^21.^0^^~4~^~BFFN~^^^^^^^^^^~05/01/2003~
-~13956~^~305~^183.^0^^~4~^~BFFN~^^^^^^^^^^~05/01/2003~
-~13956~^~306~^313.^0^^~4~^~BFFN~^^^^^^^^^^~05/01/2003~
-~13956~^~307~^51.^0^^~4~^~BFFN~^^^^^^^^^^~05/01/2003~
-~13956~^~318~^0.^0^^~1~^~AS~^^^^^^^^^^~05/01/2003~
-~13956~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2003~
-~13956~^~320~^0.^0^^~1~^~AS~^^^^^^^^^^~05/01/2003~
-~13956~^~321~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2003~
-~13956~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2003~
-~13956~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2003~
-~13956~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2003~
-~13956~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2003~
-~13956~^~417~^11.^0^^~4~^~BFPN~^^^^^^^^^^~05/01/2003~
-~13956~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2003~
-~13956~^~432~^11.^0^^~4~^~BFPN~^^^^^^^^^^~07/01/2010~
-~13956~^~435~^11.^0^^~4~^~NC~^^^^^^^^^^~07/01/2010~
-~13956~^~601~^68.^0^^~4~^~BFSN~^^^^^^^^^^~07/01/2010~
-~13957~^~208~^201.^0^^~4~^~NC~^^^^^^^^^^~07/01/2010~
-~13957~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2003~
-~13957~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2003~
-~13957~^~268~^841.^0^^~4~^~NC~^^^^^^^^^^~07/01/2010~
-~13957~^~301~^21.^0^^~4~^~BFFN~^^^^^^^^^^~05/01/2003~
-~13957~^~304~^23.^0^^~4~^~BFFN~^^^^^^^^^^~05/01/2003~
-~13957~^~305~^212.^0^^~4~^~BFFN~^^^^^^^^^^~05/01/2003~
-~13957~^~306~^338.^0^^~4~^~BFFN~^^^^^^^^^^~05/01/2003~
-~13957~^~307~^56.^0^^~4~^~BFFN~^^^^^^^^^^~05/01/2003~
-~13957~^~318~^0.^0^^~1~^~AS~^^^^^^^^^^~05/01/2003~
-~13957~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2003~
-~13957~^~320~^0.^0^^~1~^~AS~^^^^^^^^^^~05/01/2003~
-~13957~^~321~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2003~
-~13957~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2003~
-~13957~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2003~
-~13957~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2003~
-~13957~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2003~
-~13957~^~417~^8.^0^^~4~^~BFPN~^^^^^^^^^^~05/01/2003~
-~13957~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2003~
-~13957~^~432~^8.^0^^~4~^~BFPN~^^^^^^^^^^~07/01/2010~
-~13957~^~435~^8.^0^^~4~^~NC~^^^^^^^^^^~07/01/2010~
-~13957~^~601~^81.^0^^~4~^~BFSN~^^^^^^^^^^~07/01/2010~
-~13958~^~208~^157.^0^^~4~^~NC~^^^^^^^^^^~07/01/2010~
-~13958~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2003~
-~13958~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2003~
-~13958~^~268~^659.^0^^~4~^~NC~^^^^^^^^^^~07/01/2010~
-~13958~^~301~^24.^0^^~4~^~BFFN~^^^^^^^^^^~05/01/2003~
-~13958~^~304~^21.^0^^~4~^~BFFN~^^^^^^^^^^~05/01/2003~
-~13958~^~305~^194.^0^^~4~^~BFFN~^^^^^^^^^^~05/01/2003~
-~13958~^~306~^321.^0^^~4~^~BFFN~^^^^^^^^^^~05/01/2003~
-~13958~^~307~^53.^0^^~4~^~BFFN~^^^^^^^^^^~05/01/2003~
-~13958~^~318~^0.^0^^~1~^~AS~^^^^^^^^^^~05/01/2003~
-~13958~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2003~
-~13958~^~320~^0.^0^^~1~^~AS~^^^^^^^^^^~05/01/2003~
-~13958~^~321~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2003~
-~13958~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2003~
-~13958~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2003~
-~13958~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2003~
-~13958~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2003~
-~13958~^~417~^11.^0^^~4~^~BFPN~^^^^^^^^^^~05/01/2003~
-~13958~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2003~
-~13958~^~432~^11.^0^^~4~^~BFPN~^^^^^^^^^^~07/01/2010~
-~13958~^~435~^11.^0^^~4~^~NC~^^^^^^^^^^~07/01/2010~
-~13958~^~601~^65.^0^^~4~^~BFSN~^^^^^^^^^^~07/01/2010~
-~13959~^~208~^167.^0^^~4~^~NC~^^^^^^^^^^~06/01/2013~
-~13959~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2003~
-~13959~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2003~
-~13959~^~268~^697.^0^^~4~^~NC~^^^^^^^^^^~06/01/2013~
-~13959~^~301~^18.^0^^~4~^~BFYN~^~23324~^^^^^^^^^~05/01/2013~
-~13959~^~304~^17.^0^^~4~^~BFYN~^~23324~^^^^^^^^^~05/01/2013~
-~13959~^~305~^305.^0^^~4~^~BFYN~^~23324~^^^^^^^^^~05/01/2013~
-~13959~^~306~^433.^0^^~4~^~BFYN~^~23324~^^^^^^^^^~05/01/2013~
-~13959~^~307~^75.^0^^~4~^~BFYN~^~23324~^^^^^^^^^~05/01/2013~
-~13959~^~318~^15.^0^^~4~^~BFYN~^~23324~^^^^^^^^^~05/01/2013~
-~13959~^~319~^5.^0^^~4~^~BFYN~^~23324~^^^^^^^^^~05/01/2013~
-~13959~^~320~^5.^0^^~4~^~BFYN~^~23324~^^^^^^^^^~05/01/2013~
-~13959~^~321~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2003~
-~13959~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2003~
-~13959~^~324~^1.^0^^~4~^~BFFN~^~23197~^^^^^^^^^~06/01/2013~
-~13959~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2003~
-~13959~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2003~
-~13959~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2003~
-~13959~^~417~^5.^0^^~4~^~BFYN~^~23324~^^^^^^^^^~05/01/2013~
-~13959~^~431~^0.^0^^~4~^~BFYN~^~23324~^^^^^^^^^~05/01/2013~
-~13959~^~432~^5.^0^^~4~^~BFYN~^~23324~^^^^^^^^^~05/01/2013~
-~13959~^~435~^5.^0^^~4~^~NC~^~23324~^^^^^^^^^~05/01/2013~
-~13959~^~601~^86.^0^^~4~^~BFYN~^~23324~^^^^^^^^^~05/01/2013~
-~13961~^~208~^161.^0^^~4~^~NC~^^^^^^^^^^~07/01/2010~
-~13961~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2001~
-~13961~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2001~
-~13961~^~268~^675.^0^^~4~^~NC~^^^^^^^^^^~07/01/2010~
-~13961~^~301~^8.^0^^~4~^~BFNY~^^^^^^^^^^~04/01/2008~
-~13961~^~304~^23.^4^0.^~1~^~A~^^^^^^^^^^~04/01/2008~
-~13961~^~305~^234.^0^^~4~^~BFNY~^^^^^^^^^^~04/01/2008~
-~13961~^~306~^293.^4^0.^~1~^~A~^^^^^^^^^^~04/01/2008~
-~13961~^~307~^73.^0^^~4~^~BFNY~^^^^^^^^^^~04/01/2008~
-~13961~^~318~^0.^0^^~1~^~AS~^^^^^^^^^^~12/01/2001~
-~13961~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~12/01/2001~
-~13961~^~320~^0.^0^^~1~^~AS~^^^^^^^^^^~12/01/2001~
-~13961~^~321~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2002~
-~13961~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2002~
-~13961~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2002~
-~13961~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2002~
-~13961~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2002~
-~13961~^~417~^8.^0^^~4~^~BFPY~^^^^^^^^^^~04/01/2008~
-~13961~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~07/01/2001~
-~13961~^~432~^8.^0^^~4~^~BFPY~^^^^^^^^^^~07/01/2010~
-~13961~^~435~^8.^0^^~4~^~NC~^^^^^^^^^^~07/01/2010~
-~13961~^~601~^94.^0^^~4~^~BFSN~^~23084~^^^^^^^^^~07/01/2010~
-~13963~^~208~^157.^0^^~4~^~NC~^^^^^^^^^^~07/01/2010~
-~13963~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2001~
-~13963~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2001~
-~13963~^~268~^656.^0^^~4~^~NC~^^^^^^^^^^~07/01/2010~
-~13963~^~301~^7.^0^^~4~^~BFNY~^^^^^^^^^^~04/01/2008~
-~13963~^~304~^23.^4^0.^~1~^~A~^^^^^^^^^^~04/01/2008~
-~13963~^~305~^217.^0^^~4~^~BFNY~^^^^^^^^^^~04/01/2008~
-~13963~^~306~^293.^4^0.^~1~^~A~^^^^^^^^^^~04/01/2008~
-~13963~^~307~^68.^0^^~4~^~BFNY~^^^^^^^^^^~04/01/2008~
-~13963~^~318~^0.^0^^~1~^~AS~^^^^^^^^^^~12/01/2001~
-~13963~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~12/01/2001~
-~13963~^~320~^0.^0^^~1~^~AS~^^^^^^^^^^~12/01/2001~
-~13963~^~321~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2002~
-~13963~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2002~
-~13963~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2002~
-~13963~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2002~
-~13963~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2002~
-~13963~^~417~^8.^0^^~4~^~BFPY~^^^^^^^^^^~04/01/2008~
-~13963~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~07/01/2001~
-~13963~^~432~^8.^0^^~4~^~BFPY~^^^^^^^^^^~07/01/2010~
-~13963~^~435~^8.^0^^~4~^~NC~^^^^^^^^^^~07/01/2010~
-~13963~^~601~^99.^0^^~4~^~BFSN~^~23085~^^^^^^^^^~07/01/2010~
-~13965~^~208~^217.^0^^~4~^~NC~^^^^^^^^^^~07/01/2010~
-~13965~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2001~
-~13965~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2001~
-~13965~^~268~^906.^0^^~4~^~NC~^^^^^^^^^^~07/01/2010~
-~13965~^~301~^7.^0^^~4~^~BFNY~^^^^^^^^^^~04/01/2008~
-~13965~^~304~^24.^4^0.^~1~^~A~^^^^^^^^^^~04/01/2008~
-~13965~^~305~^218.^0^^~4~^~BFNY~^^^^^^^^^^~04/01/2008~
-~13965~^~306~^304.^4^0.^~1~^~A~^^^^^^^^^^~04/01/2008~
-~13965~^~307~^68.^0^^~4~^~BFNY~^^^^^^^^^^~04/01/2008~
-~13965~^~318~^0.^0^^~1~^~AS~^^^^^^^^^^~12/01/2001~
-~13965~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~12/01/2001~
-~13965~^~320~^0.^0^^~1~^~AS~^^^^^^^^^^~12/01/2001~
-~13965~^~321~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2002~
-~13965~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2002~
-~13965~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2002~
-~13965~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2002~
-~13965~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2002~
-~13965~^~417~^8.^0^^~4~^~BFPY~^^^^^^^^^^~04/01/2008~
-~13965~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2001~
-~13965~^~432~^8.^0^^~4~^~BFPY~^^^^^^^^^^~07/01/2010~
-~13965~^~435~^8.^0^^~4~^~NC~^^^^^^^^^^~07/01/2010~
-~13965~^~601~^93.^0^^~4~^~BFSN~^~13501~^^^^^^^^^~07/01/2010~
-~13967~^~208~^184.^0^^~4~^~NC~^^^^^^^^^^~07/01/2010~
-~13967~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2001~
-~13967~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2001~
-~13967~^~268~^769.^0^^~4~^~NC~^^^^^^^^^^~07/01/2010~
-~13967~^~301~^7.^0^^~4~^~BFNY~^^^^^^^^^^~04/01/2008~
-~13967~^~304~^24.^4^0.^~1~^~A~^^^^^^^^^^~04/01/2008~
-~13967~^~305~^217.^0^^~4~^~BFNY~^^^^^^^^^^~04/01/2008~
-~13967~^~306~^304.^4^0.^~1~^~A~^^^^^^^^^^~04/01/2008~
-~13967~^~307~^68.^0^^~4~^~BFNY~^^^^^^^^^^~04/01/2008~
-~13967~^~318~^0.^0^^~1~^~AS~^^^^^^^^^^~12/01/2001~
-~13967~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~12/01/2001~
-~13967~^~320~^0.^0^^~1~^~AS~^^^^^^^^^^~12/01/2001~
-~13967~^~321~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2002~
-~13967~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2002~
-~13967~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2002~
-~13967~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2002~
-~13967~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2002~
-~13967~^~417~^9.^0^^~4~^~BFYN~^^^^^^^^^^~04/01/2008~
-~13967~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2001~
-~13967~^~432~^9.^0^^~4~^~BFYN~^^^^^^^^^^~07/01/2010~
-~13967~^~435~^9.^0^^~4~^~NC~^^^^^^^^^^~07/01/2010~
-~13967~^~601~^94.^0^^~4~^~BFSN~^~13502~^^^^^^^^^~07/01/2010~
-~13968~^~208~^170.^0^^~4~^~NC~^^^^^^^^^^~06/01/2013~
-~13968~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2003~
-~13968~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2003~
-~13968~^~268~^712.^0^^~4~^~NC~^^^^^^^^^^~06/01/2013~
-~13968~^~301~^18.^0^^~4~^~BFYN~^~23325~^^^^^^^^^~05/01/2013~
-~13968~^~304~^17.^0^^~4~^~BFYN~^~23325~^^^^^^^^^~05/01/2013~
-~13968~^~305~^305.^0^^~4~^~BFYN~^~23325~^^^^^^^^^~05/01/2013~
-~13968~^~306~^426.^0^^~4~^~BFYN~^~23325~^^^^^^^^^~05/01/2013~
-~13968~^~307~^78.^0^^~4~^~BFYN~^~23325~^^^^^^^^^~05/01/2013~
-~13968~^~318~^15.^0^^~4~^~BFYN~^~23325~^^^^^^^^^~05/01/2013~
-~13968~^~319~^4.^0^^~4~^~BFYN~^~23325~^^^^^^^^^~05/01/2013~
-~13968~^~320~^4.^0^^~4~^~BFYN~^~23325~^^^^^^^^^~05/01/2013~
-~13968~^~321~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2003~
-~13968~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2003~
-~13968~^~324~^1.^0^^~4~^~BFFN~^~23195~^^^^^^^^^~06/01/2013~
-~13968~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2003~
-~13968~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2003~
-~13968~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2003~
-~13968~^~417~^5.^0^^~4~^~BFYN~^~23325~^^^^^^^^^~05/01/2013~
-~13968~^~431~^0.^0^^~4~^~BFYN~^~23325~^^^^^^^^^~05/01/2013~
-~13968~^~432~^5.^0^^~4~^~BFYN~^~23325~^^^^^^^^^~05/01/2013~
-~13968~^~435~^5.^0^^~4~^~NC~^~23325~^^^^^^^^^~05/01/2013~
-~13968~^~601~^86.^0^^~4~^~BFYN~^~23325~^^^^^^^^^~05/01/2013~
-~13969~^~208~^162.^0^^~4~^~NC~^^^^^^^^^^~06/01/2013~
-~13969~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2003~
-~13969~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2003~
-~13969~^~268~^676.^0^^~4~^~NC~^^^^^^^^^^~06/01/2013~
-~13969~^~301~^19.^0^^~4~^~BFYN~^~23326~^^^^^^^^^~05/01/2013~
-~13969~^~304~^16.^0^^~4~^~BFYN~^~23326~^^^^^^^^^~05/01/2013~
-~13969~^~305~^304.^0^^~4~^~BFYN~^~23326~^^^^^^^^^~05/01/2013~
-~13969~^~306~^436.^0^^~4~^~BFYN~^~23326~^^^^^^^^^~05/01/2013~
-~13969~^~307~^76.^0^^~4~^~BFYN~^~23326~^^^^^^^^^~05/01/2013~
-~13969~^~318~^16.^0^^~4~^~BFYN~^~23326~^^^^^^^^^~05/01/2013~
-~13969~^~319~^5.^0^^~4~^~BFYN~^~23326~^^^^^^^^^~05/01/2013~
-~13969~^~320~^5.^0^^~4~^~BFYN~^~23326~^^^^^^^^^~05/01/2013~
-~13969~^~321~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2003~
-~13969~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2003~
-~13969~^~324~^1.^0^^~4~^~BFFN~^~23196~^^^^^^^^^~06/01/2013~
-~13969~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2003~
-~13969~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2003~
-~13969~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2003~
-~13969~^~417~^5.^0^^~4~^~BFYN~^~23326~^^^^^^^^^~05/01/2013~
-~13969~^~431~^0.^0^^~4~^~BFYN~^~23326~^^^^^^^^^~05/01/2013~
-~13969~^~432~^5.^0^^~4~^~BFYN~^~23326~^^^^^^^^^~05/01/2013~
-~13969~^~435~^5.^0^^~4~^~NC~^~23326~^^^^^^^^^~05/01/2013~
-~13969~^~601~^88.^0^^~4~^~BFYN~^~23326~^^^^^^^^^~05/01/2013~
-~13970~^~208~^155.^0^^~4~^~NC~^^^^^^^^^^~07/01/2010~
-~13970~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2003~
-~13970~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2003~
-~13970~^~268~^650.^0^^~4~^~NC~^^^^^^^^^^~07/01/2010~
-~13970~^~301~^25.^0^^~4~^~BFFN~^^^^^^^^^^~05/01/2003~
-~13970~^~304~^22.^0^^~4~^~BFFN~^^^^^^^^^^~05/01/2003~
-~13970~^~305~^195.^0^^~4~^~BFFN~^^^^^^^^^^~05/01/2003~
-~13970~^~306~^328.^0^^~4~^~BFFN~^^^^^^^^^^~05/01/2003~
-~13970~^~307~^54.^0^^~4~^~BFFN~^^^^^^^^^^~05/01/2003~
-~13970~^~318~^0.^0^^~1~^~AS~^^^^^^^^^^~05/01/2003~
-~13970~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2003~
-~13970~^~320~^0.^0^^~1~^~AS~^^^^^^^^^^~05/01/2003~
-~13970~^~321~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2003~
-~13970~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2003~
-~13970~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2003~
-~13970~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2003~
-~13970~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2003~
-~13970~^~417~^11.^0^^~4~^~BFPN~^^^^^^^^^^~05/01/2003~
-~13970~^~431~^0.^0^^~4~^~NR~^^^^^^^^^^~05/01/2003~
-~13970~^~432~^11.^0^^~4~^~BFPN~^^^^^^^^^^~07/01/2010~
-~13970~^~435~^11.^0^^~4~^~NC~^^^^^^^^^^~07/01/2010~
-~13970~^~601~^65.^0^^~4~^~BFSN~^^^^^^^^^^~07/01/2010~
-~13971~^~208~^145.^0^^~4~^~NC~^^^^^^^^^^~07/01/2010~
-~13971~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2003~
-~13971~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2003~
-~13971~^~268~^608.^0^^~4~^~NC~^^^^^^^^^^~07/01/2010~
-~13971~^~301~^24.^0^^~4~^~BFFN~^^^^^^^^^^~05/01/2003~
-~13971~^~304~^22.^0^^~4~^~BFFN~^^^^^^^^^^~05/01/2003~
-~13971~^~305~^197.^0^^~4~^~BFFN~^^^^^^^^^^~05/01/2003~
-~13971~^~306~^326.^0^^~4~^~BFFN~^^^^^^^^^^~05/01/2003~
-~13971~^~307~^54.^0^^~4~^~BFFN~^^^^^^^^^^~05/01/2003~
-~13971~^~318~^0.^0^^~1~^~AS~^^^^^^^^^^~05/01/2003~
-~13971~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2003~
-~13971~^~320~^0.^0^^~1~^~AS~^^^^^^^^^^~05/01/2003~
-~13971~^~321~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2003~
-~13971~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2003~
-~13971~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2003~
-~13971~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2003~
-~13971~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2003~
-~13971~^~417~^11.^0^^~4~^~BFPN~^^^^^^^^^^~05/01/2003~
-~13971~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2003~
-~13971~^~432~^11.^0^^~4~^~BFPN~^^^^^^^^^^~07/01/2010~
-~13971~^~435~^11.^0^^~4~^~NC~^^^^^^^^^^~07/01/2010~
-~13971~^~601~^62.^0^^~4~^~BFSN~^^^^^^^^^^~07/01/2010~
-~13972~^~208~^137.^0^^~4~^~NC~^^^^^^^^^^~06/01/2010~
-~13972~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2010~
-~13972~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2010~
-~13972~^~268~^571.^0^^~4~^~NC~^^^^^^^^^^~06/01/2010~
-~13972~^~301~^18.^3^^~1~^~AR~^^^^^^^^^^~06/01/2010~
-~13972~^~304~^21.^3^^~1~^~AR~^^^^^^^^^^~06/01/2010~
-~13972~^~305~^204.^3^^~1~^~AR~^^^^^^^^^^~06/01/2010~
-~13972~^~306~^357.^3^^~1~^~AR~^^^^^^^^^^~06/01/2010~
-~13972~^~307~^85.^3^^~1~^~AR~^^^^^^^^^^~06/01/2010~
-~13972~^~318~^6.^0^^~4~^~NC~^^^^^^^^^^~06/01/2010~
-~13972~^~319~^2.^0^^~4~^~BFSN~^^^^^^^^^^~06/01/2010~
-~13972~^~320~^2.^0^^~4~^~NC~^^^^^^^^^^~06/01/2010~
-~13972~^~321~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2010~
-~13972~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2010~
-~13972~^~324~^4.^0^^~4~^~BFSN~^^^^^^^^^^~06/01/2010~
-~13972~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2010~
-~13972~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2010~
-~13972~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2010~
-~13972~^~417~^3.^0^^~4~^~BFPN~^^^^^^^^^^~06/01/2010~
-~13972~^~431~^0.^0^^~4~^~BFPN~^^^^^^^^^^~06/01/2010~
-~13972~^~432~^3.^0^^~4~^~BFPN~^^^^^^^^^^~06/01/2010~
-~13972~^~435~^3.^0^^~4~^~NC~^^^^^^^^^^~06/01/2010~
-~13972~^~601~^69.^6^2.^~1~^~AR~^^^^^^^^^^~07/01/2010~
-~13973~^~208~^139.^0^^~4~^~NC~^^^^^^^^^^~06/01/2010~
-~13973~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2010~
-~13973~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2010~
-~13973~^~268~^580.^0^^~4~^~NC~^^^^^^^^^^~06/01/2010~
-~13973~^~301~^17.^2^^~1~^~AR~^^^^^^^^^^~06/01/2010~
-~13973~^~304~^21.^2^^~1~^~AR~^^^^^^^^^^~06/01/2010~
-~13973~^~305~^201.^2^^~1~^~AR~^^^^^^^^^^~06/01/2010~
-~13973~^~306~^332.^2^^~1~^~AR~^^^^^^^^^^~06/01/2010~
-~13973~^~307~^85.^2^^~1~^~AR~^^^^^^^^^^~06/01/2010~
-~13973~^~318~^6.^0^^~4~^~NC~^^^^^^^^^^~06/01/2010~
-~13973~^~319~^2.^0^^~4~^~BFSN~^^^^^^^^^^~06/01/2010~
-~13973~^~320~^2.^0^^~4~^~NC~^^^^^^^^^^~06/01/2010~
-~13973~^~321~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2010~
-~13973~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2010~
-~13973~^~324~^4.^0^^~4~^~BFSN~^^^^^^^^^^~06/01/2010~
-~13973~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2010~
-~13973~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2010~
-~13973~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2010~
-~13973~^~417~^3.^0^^~4~^~BFPN~^~23041~^^^^^^^^^~06/01/2010~
-~13973~^~431~^0.^0^^~4~^~BFPN~^~23041~^^^^^^^^^~06/01/2010~
-~13973~^~432~^3.^0^^~4~^~BFPN~^~23041~^^^^^^^^^~06/01/2010~
-~13973~^~435~^3.^0^^~4~^~NC~^~23041~^^^^^^^^^~06/01/2010~
-~13973~^~601~^67.^4^2.^~1~^~AR~^^^^^^^^^^~07/01/2010~
-~13974~^~208~^133.^0^^~4~^~NC~^^^^^^^^^^~06/01/2010~
-~13974~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2010~
-~13974~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2010~
-~13974~^~268~^559.^0^^~4~^~NC~^^^^^^^^^^~06/01/2010~
-~13974~^~301~^19.^1^^~1~^~AR~^^^^^^^^^^~06/01/2010~
-~13974~^~304~^21.^1^^~1~^~AR~^^^^^^^^^^~06/01/2010~
-~13974~^~305~^200.^1^^~1~^~AR~^^^^^^^^^^~06/01/2010~
-~13974~^~306~^393.^1^^~1~^~AR~^^^^^^^^^^~06/01/2010~
-~13974~^~307~^86.^1^^~1~^~AR~^^^^^^^^^^~06/01/2010~
-~13974~^~318~^7.^0^^~4~^~NC~^^^^^^^^^^~06/01/2010~
-~13974~^~319~^2.^0^^~4~^~BFSN~^^^^^^^^^^~06/01/2010~
-~13974~^~320~^2.^0^^~4~^~NC~^^^^^^^^^^~06/01/2010~
-~13974~^~321~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2010~
-~13974~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2010~
-~13974~^~324~^3.^0^^~4~^~BFSN~^^^^^^^^^^~06/01/2010~
-~13974~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2010~
-~13974~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2010~
-~13974~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2010~
-~13974~^~417~^3.^0^^~4~^~BFPN~^~23043~^^^^^^^^^~06/01/2010~
-~13974~^~431~^0.^0^^~4~^~BFPN~^~23043~^^^^^^^^^~06/01/2010~
-~13974~^~432~^3.^0^^~4~^~BFPN~^~23043~^^^^^^^^^~06/01/2010~
-~13974~^~435~^3.^0^^~4~^~NC~^~23043~^^^^^^^^^~06/01/2010~
-~13974~^~601~^74.^2^^~1~^~AR~^^^^^^^^^^~07/01/2010~
-~13975~^~208~^169.^0^^~4~^~NC~^^^^^^^^^^~07/01/2010~
-~13975~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~07/01/2010~
-~13975~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~07/01/2010~
-~13975~^~268~^708.^0^^~4~^~NC~^^^^^^^^^^~07/01/2010~
-~13975~^~301~^13.^4^0.^~1~^~AR~^^^^^^^^^^~07/01/2010~
-~13975~^~304~^22.^4^0.^~1~^~AR~^^^^^^^^^^~07/01/2010~
-~13975~^~305~^212.^4^2.^~1~^~AR~^^^^^^^^^^~07/01/2010~
-~13975~^~306~^349.^4^7.^~1~^~AR~^^^^^^^^^^~07/01/2010~
-~13975~^~307~^79.^4^1.^~1~^~AR~^^^^^^^^^^~07/01/2010~
-~13975~^~318~^12.^0^^~4~^~NC~^^^^^^^^^^~07/01/2010~
-~13975~^~319~^4.^0^^~4~^~BFSN~^^^^^^^^^^~07/01/2010~
-~13975~^~320~^4.^0^^~4~^~NC~^^^^^^^^^^~07/01/2010~
-~13975~^~321~^0.^0^^~7~^~Z~^^^^^^^^^^~07/01/2010~
-~13975~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~07/01/2010~
-~13975~^~324~^4.^0^^~4~^~BFSN~^^^^^^^^^^~07/01/2010~
-~13975~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~07/01/2010~
-~13975~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~07/01/2010~
-~13975~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~07/01/2010~
-~13975~^~417~^3.^0^^~4~^~BFPN~^~23041~^^^^^^^^^~07/01/2010~
-~13975~^~431~^0.^0^^~4~^~BFPN~^~23041~^^^^^^^^^~07/01/2010~
-~13975~^~432~^3.^0^^~4~^~BFPN~^~23041~^^^^^^^^^~07/01/2010~
-~13975~^~435~^3.^0^^~4~^~NC~^~23041~^^^^^^^^^~07/01/2010~
-~13975~^~601~^67.^4^2.^~1~^~AR~^^^^^^^^^^~07/01/2010~
-~13977~^~208~^205.^0^^~4~^~NC~^^^^^^^^^^~07/01/2010~
-~13977~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2001~
-~13977~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2001~
-~13977~^~268~^856.^0^^~4~^~NC~^^^^^^^^^^~07/01/2010~
-~13977~^~301~^11.^0^^~4~^~BFNY~^~13149~^^^^^^^^^~04/01/2008~
-~13977~^~304~^24.^2^^~1~^~A~^^^^^^^^^^~09/01/2001~
-~13977~^~305~^236.^0^^~4~^~BFNY~^~13149~^^^^^^^^^~04/01/2008~
-~13977~^~306~^295.^2^^~1~^~A~^^^^^^^^^^~09/01/2001~
-~13977~^~307~^76.^0^^~4~^~BFNY~^~13149~^^^^^^^^^~04/01/2008~
-~13977~^~318~^0.^0^^~1~^~AS~^^^^^^^^^^~12/01/2001~
-~13977~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~12/01/2001~
-~13977~^~320~^0.^0^^~1~^~AS~^^^^^^^^^^~12/01/2001~
-~13977~^~321~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2002~
-~13977~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2002~
-~13977~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2002~
-~13977~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2002~
-~13977~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2002~
-~13977~^~417~^7.^0^^~4~^~BFPY~^~13149~^^^^^^^^^~04/01/2008~
-~13977~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~07/01/2001~
-~13977~^~432~^7.^0^^~4~^~BFPY~^^^^^^^^^^~07/01/2010~
-~13977~^~435~^7.^0^^~4~^~NC~^^^^^^^^^^~07/01/2010~
-~13977~^~601~^85.^0^^~4~^~BFSN~^^^^^^^^^^~07/01/2010~
-~13979~^~208~^233.^0^^~4~^~NC~^^^^^^^^^^~07/01/2010~
-~13979~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2001~
-~13979~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2001~
-~13979~^~268~^974.^0^^~4~^~NC~^^^^^^^^^^~07/01/2010~
-~13979~^~301~^10.^0^^~4~^~BFNY~^~13149~^^^^^^^^^~04/01/2008~
-~13979~^~304~^25.^2^^~1~^~A~^^^^^^^^^^~09/01/2001~
-~13979~^~305~^221.^0^^~4~^~BFNY~^~13149~^^^^^^^^^~04/01/2008~
-~13979~^~306~^393.^0^^~4~^~BFNY~^~13149~^^^^^^^^^~04/01/2008~
-~13979~^~307~^94.^2^^~1~^~A~^^^^^^^^^^~09/01/2001~
-~13979~^~318~^0.^0^^~1~^~AS~^^^^^^^^^^~12/01/2001~
-~13979~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~12/01/2001~
-~13979~^~320~^0.^0^^~1~^~AS~^^^^^^^^^^~12/01/2001~
-~13979~^~321~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2002~
-~13979~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2002~
-~13979~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2002~
-~13979~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2002~
-~13979~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2002~
-~13979~^~417~^8.^0^^~4~^~BFPN~^~13149~^^^^^^^^^~04/01/2008~
-~13979~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~07/01/2001~
-~13979~^~432~^8.^0^^~4~^~BFPN~^^^^^^^^^^~07/01/2010~
-~13979~^~435~^8.^0^^~4~^~NC~^^^^^^^^^^~07/01/2010~
-~13979~^~601~^91.^0^^~4~^~BFSN~^^^^^^^^^^~07/01/2010~
-~13980~^~208~^250.^0^^~4~^~NC~^^^^^^^^^^~06/01/2010~
-~13980~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2010~
-~13980~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2010~
-~13980~^~268~^1046.^0^^~4~^~NC~^^^^^^^^^^~06/01/2010~
-~13980~^~301~^14.^2^^~1~^~AR~^^^^^^^^^^~06/01/2010~
-~13980~^~304~^23.^2^^~1~^~AR~^^^^^^^^^^~06/01/2010~
-~13980~^~305~^200.^2^^~1~^~AR~^^^^^^^^^^~06/01/2010~
-~13980~^~306~^264.^2^^~1~^~AR~^^^^^^^^^^~06/01/2010~
-~13980~^~307~^75.^2^^~1~^~AR~^^^^^^^^^^~06/01/2010~
-~13980~^~318~^5.^0^^~4~^~NC~^^^^^^^^^^~06/01/2010~
-~13980~^~319~^2.^0^^~4~^~BFSN~^^^^^^^^^^~06/01/2010~
-~13980~^~320~^2.^0^^~4~^~NC~^^^^^^^^^^~06/01/2010~
-~13980~^~321~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2010~
-~13980~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2010~
-~13980~^~324~^6.^0^^~4~^~BFSN~^^^^^^^^^^~06/01/2010~
-~13980~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2010~
-~13980~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2010~
-~13980~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2010~
-~13980~^~417~^7.^0^^~4~^~BFPN~^~23042~^^^^^^^^^~06/01/2010~
-~13980~^~431~^0.^0^^~4~^~BFPN~^~23042~^^^^^^^^^~06/01/2010~
-~13980~^~432~^7.^0^^~4~^~BFPN~^~23042~^^^^^^^^^~06/01/2010~
-~13980~^~435~^7.^0^^~4~^~NC~^~23042~^^^^^^^^^~06/01/2010~
-~13980~^~601~^102.^4^3.^~1~^~AR~^^^^^^^^^^~07/01/2010~
-~13981~^~208~^224.^0^^~4~^~NC~^^^^^^^^^^~06/01/2010~
-~13981~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2010~
-~13981~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2010~
-~13981~^~268~^937.^0^^~4~^~NC~^^^^^^^^^^~06/01/2010~
-~13981~^~301~^14.^1^^~1~^~AR~^^^^^^^^^^~06/01/2010~
-~13981~^~304~^23.^1^^~1~^~AR~^^^^^^^^^^~06/01/2010~
-~13981~^~305~^209.^1^^~1~^~AR~^^^^^^^^^^~06/01/2010~
-~13981~^~306~^308.^1^^~1~^~AR~^^^^^^^^^^~06/01/2010~
-~13981~^~307~^75.^1^^~1~^~AR~^^^^^^^^^^~06/01/2010~
-~13981~^~318~^8.^0^^~4~^~NC~^^^^^^^^^^~06/01/2010~
-~13981~^~319~^2.^0^^~4~^~BFSN~^^^^^^^^^^~06/01/2010~
-~13981~^~320~^2.^0^^~4~^~NC~^^^^^^^^^^~06/01/2010~
-~13981~^~321~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2010~
-~13981~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2010~
-~13981~^~324~^4.^0^^~4~^~BFSN~^^^^^^^^^^~06/01/2010~
-~13981~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2010~
-~13981~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2010~
-~13981~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2010~
-~13981~^~417~^7.^0^^~4~^~BFPN~^~23044~^^^^^^^^^~06/01/2010~
-~13981~^~431~^0.^0^^~4~^~BFPN~^~23044~^^^^^^^^^~06/01/2010~
-~13981~^~432~^7.^0^^~4~^~BFPN~^~23044~^^^^^^^^^~06/01/2010~
-~13981~^~435~^7.^0^^~4~^~NC~^~23044~^^^^^^^^^~06/01/2010~
-~13981~^~601~^108.^2^^~1~^~AR~^^^^^^^^^^~07/01/2010~
-~13982~^~208~^240.^0^^~4~^~NC~^^^^^^^^^^~06/01/2010~
-~13982~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2010~
-~13982~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2010~
-~13982~^~268~^1002.^0^^~4~^~NC~^^^^^^^^^^~06/01/2010~
-~13982~^~301~^14.^3^^~1~^~AR~^^^^^^^^^^~06/01/2010~
-~13982~^~304~^23.^3^^~1~^~AR~^^^^^^^^^^~06/01/2010~
-~13982~^~305~^201.^3^^~1~^~AR~^^^^^^^^^^~06/01/2010~
-~13982~^~306~^276.^3^^~1~^~AR~^^^^^^^^^^~06/01/2010~
-~13982~^~307~^75.^3^^~1~^~AR~^^^^^^^^^^~06/01/2010~
-~13982~^~318~^6.^0^^~4~^~NC~^^^^^^^^^^~06/01/2010~
-~13982~^~319~^2.^0^^~4~^~BFSN~^^^^^^^^^^~06/01/2010~
-~13982~^~320~^2.^0^^~4~^~NC~^^^^^^^^^^~06/01/2010~
-~13982~^~321~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2010~
-~13982~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2010~
-~13982~^~324~^6.^0^^~4~^~BFSN~^^^^^^^^^^~06/01/2010~
-~13982~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2010~
-~13982~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2010~
-~13982~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2010~
-~13982~^~417~^7.^0^^~4~^~BFPN~^^^^^^^^^^~06/01/2010~
-~13982~^~431~^0.^0^^~4~^~BFPN~^^^^^^^^^^~06/01/2010~
-~13982~^~432~^7.^0^^~4~^~BFPN~^^^^^^^^^^~06/01/2010~
-~13982~^~435~^7.^0^^~4~^~NC~^^^^^^^^^^~06/01/2010~
-~13982~^~601~^105.^6^2.^~1~^~AR~^^^^^^^^^^~07/01/2010~
-~13983~^~208~^158.^0^^~4~^~NC~^^^^^^^^^^~07/01/2010~
-~13983~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~07/01/2010~
-~13983~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~07/01/2010~
-~13983~^~268~^662.^0^^~4~^~NC~^^^^^^^^^^~07/01/2010~
-~13983~^~301~^12.^2^^~1~^~AR~^^^^^^^^^^~07/01/2010~
-~13983~^~304~^22.^2^^~1~^~AR~^^^^^^^^^^~07/01/2010~
-~13983~^~305~^206.^2^^~1~^~AR~^^^^^^^^^^~07/01/2010~
-~13983~^~306~^336.^2^^~1~^~AR~^^^^^^^^^^~07/01/2010~
-~13983~^~307~^82.^2^^~1~^~AR~^^^^^^^^^^~07/01/2010~
-~13983~^~318~^13.^0^^~4~^~NC~^^^^^^^^^^~07/01/2010~
-~13983~^~319~^4.^0^^~4~^~BFSN~^^^^^^^^^^~07/01/2010~
-~13983~^~320~^4.^0^^~4~^~NC~^^^^^^^^^^~07/01/2010~
-~13983~^~321~^0.^0^^~7~^~Z~^^^^^^^^^^~07/01/2010~
-~13983~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~07/01/2010~
-~13983~^~324~^4.^0^^~4~^~BFSN~^^^^^^^^^^~07/01/2010~
-~13983~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~07/01/2010~
-~13983~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~07/01/2010~
-~13983~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~07/01/2010~
-~13983~^~417~^3.^0^^~4~^~BFPN~^~23043~^^^^^^^^^~07/01/2010~
-~13983~^~431~^0.^0^^~4~^~BFPN~^~23043~^^^^^^^^^~07/01/2010~
-~13983~^~432~^3.^0^^~4~^~BFPN~^~23043~^^^^^^^^^~07/01/2010~
-~13983~^~435~^3.^0^^~4~^~NC~^~23043~^^^^^^^^^~07/01/2010~
-~13983~^~601~^69.^2^^~1~^~AR~^^^^^^^^^^~07/01/2010~
-~13985~^~208~^182.^0^^~4~^~NC~^^^^^^^^^^~07/01/2010~
-~13985~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2001~
-~13985~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2001~
-~13985~^~268~^762.^0^^~4~^~NC~^^^^^^^^^^~07/01/2010~
-~13985~^~301~^17.^0^^~4~^~BFNN~^^^^^^^^^^~09/01/2003~
-~13985~^~304~^23.^0^^~4~^~BFNN~^^^^^^^^^^~09/01/2003~
-~13985~^~305~^211.^0^^~4~^~BFNN~^^^^^^^^^^~09/01/2003~
-~13985~^~306~^340.^0^^~4~^~BFNN~^^^^^^^^^^~09/01/2003~
-~13985~^~307~^55.^0^^~4~^~BFNN~^^^^^^^^^^~09/01/2003~
-~13985~^~318~^0.^0^^~1~^~AS~^^^^^^^^^^~12/01/2001~
-~13985~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~12/01/2001~
-~13985~^~320~^0.^0^^~1~^~AS~^^^^^^^^^^~12/01/2001~
-~13985~^~321~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2002~
-~13985~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2002~
-~13985~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2002~
-~13985~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2002~
-~13985~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2002~
-~13985~^~417~^9.^0^^~4~^~BFPN~^^^^^^^^^^~09/01/2003~
-~13985~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~07/01/2001~
-~13985~^~432~^9.^0^^~4~^~BFPN~^^^^^^^^^^~07/01/2010~
-~13985~^~435~^9.^0^^~4~^~NC~^^^^^^^^^^~07/01/2010~
-~13985~^~601~^78.^0^^~4~^~BFSN~^^^^^^^^^^~07/01/2010~
-~14003~^~208~^43.^0^^~4~^~NC~^^^^^^^^^^~03/01/2005~
-~14003~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~11/01/2002~
-~14003~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~11/01/2002~
-~14003~^~268~^181.^0^^~4~^~NC~^^^^^^^^^^~03/01/2005~
-~14003~^~301~^4.^3^0.^~1~^~A~^^^1^4.^6.^2^1.^7.^~2, 3~^~04/01/2004~
-~14003~^~304~^6.^3^0.^~1~^~A~^^^1^6.^6.^2^4.^6.^~2, 3~^~04/01/2004~
-~14003~^~305~^14.^3^2.^~1~^~A~^^^1^10.^17.^2^4.^22.^~2, 3~^~04/01/2004~
-~14003~^~306~^27.^3^2.^~1~^~A~^^^1^24.^31.^2^17.^37.^~2, 3~^~04/01/2004~
-~14003~^~307~^4.^3^0.^~1~^~A~^^^1^3.^5.^2^2.^6.^~2, 3~^~04/01/2004~
-~14003~^~318~^0.^0^^~1~^^^^^^^^^^^~05/01/1986~
-~14003~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2002~
-~14003~^~320~^0.^0^^~1~^~AS~^^^^^^^^^^~03/01/2005~
-~14003~^~321~^0.^0^^~7~^~Z~^^^^^^^^^^~11/01/2002~
-~14003~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~11/01/2002~
-~14003~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~
-~14003~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~11/01/2002~
-~14003~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~11/01/2002~
-~14003~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~11/01/2002~
-~14003~^~417~^6.^3^0.^~1~^~A~^^^1^4.^7.^2^2.^8.^~1, 2, 3~^~04/01/2004~
-~14003~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~
-~14003~^~432~^6.^3^0.^~1~^~A~^^^1^4.^7.^2^2.^8.^^~03/01/2005~
-~14003~^~435~^6.^0^^~4~^~NC~^^^^^^^^^^~10/01/2006~
-~14003~^~601~^0.^0^^~1~^^^^^^^^^^^~05/01/1986~
-~14004~^~208~^41.^1^^~9~^~MC~^^^^^^^^^^~04/01/2004~
-~14004~^~268~^170.^0^^~9~^~MC~^^^^^^^^^^~04/01/2004~
-~14004~^~301~^4.^1^^~9~^~MC~^^^^^^^^^^~04/01/2004~
-~14004~^~304~^7.^1^^~9~^~MC~^^^^^^^^^^~04/01/2004~
-~14004~^~305~^13.^1^^~9~^~MC~^^^^^^^^^^~04/01/2004~
-~14004~^~306~^33.^1^^~9~^~MC~^^^^^^^^^^~04/01/2004~
-~14004~^~307~^3.^1^^~9~^~MC~^^^^^^^^^^~04/01/2004~
-~14004~^~601~^0.^1^^~9~^~MC~^^^^^^^^^^~04/01/2004~
-~14005~^~208~^28.^1^^~9~^~MC~^^^^^^^^^^~04/01/2006~
-~14005~^~268~^117.^0^^~9~^~MC~^^^^^^^^^^~04/01/2006~
-~14005~^~301~^4.^1^^~9~^~MC~^^^^^^^^^^~04/01/2006~
-~14005~^~304~^6.^1^^~9~^~MC~^^^^^^^^^^~04/01/2006~
-~14005~^~306~^26.^1^^~9~^~MC~^^^^^^^^^^~04/01/2006~
-~14005~^~307~^3.^1^^~9~^~MC~^^^^^^^^^^~04/01/2006~
-~14005~^~601~^0.^1^^~9~^~MC~^^^^^^^^^^~04/01/2006~
-~14006~^~208~^29.^0^^~4~^~NC~^^^^^^^^^^~04/01/2005~
-~14006~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~11/01/2002~
-~14006~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~11/01/2002~
-~14006~^~268~^123.^0^^~4~^~NC~^^^^^^^^^^~04/01/2005~
-~14006~^~301~^4.^4^0.^~1~^~A~^^^1^3.^4.^3^3.^4.^~2, 3~^~04/01/2004~
-~14006~^~304~^5.^4^0.^~1~^~A~^^^1^4.^5.^3^3.^5.^~2, 3~^~04/01/2004~
-~14006~^~305~^12.^4^1.^~1~^~A~^^^1^7.^14.^3^6.^16.^~2, 3~^~04/01/2004~
-~14006~^~306~^21.^4^1.^~1~^~A~^^^1^17.^25.^3^16.^26.^~2, 3~^~04/01/2004~
-~14006~^~307~^4.^4^1.^~1~^~A~^^^1^3.^8.^3^0.^7.^~2, 3~^~04/01/2004~
-~14006~^~318~^0.^0^^~1~^^^^^^^^^^^~05/01/1986~
-~14006~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2002~
-~14006~^~320~^0.^0^^~1~^~AS~^^^^^^^^^^~04/01/2005~
-~14006~^~321~^0.^0^^~7~^~Z~^^^^^^^^^^~11/01/2002~
-~14006~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~11/01/2002~
-~14006~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~
-~14006~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~11/01/2002~
-~14006~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~11/01/2002~
-~14006~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~11/01/2002~
-~14006~^~417~^6.^4^1.^~1~^~A~^^^1^4.^9.^3^2.^10.^~1, 2, 3~^~04/01/2004~
-~14006~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~
-~14006~^~432~^6.^4^1.^~1~^~A~^^^1^4.^9.^3^2.^10.^^~04/01/2005~
-~14006~^~435~^6.^0^^~4~^~NC~^^^^^^^^^^~10/01/2006~
-~14006~^~601~^0.^0^^~1~^^^^^^^^^^^~05/01/1986~
-~14007~^~208~^29.^0^^~4~^~NC~^^^^^^^^^^~08/01/2012~
-~14007~^~268~^123.^0^^~4~^~NC~^^^^^^^^^^~08/01/2012~
-~14007~^~301~^3.^1^^~9~^~MC~^^^^^^^^^^~04/01/2004~
-~14007~^~304~^7.^1^^~9~^~MC~^^^^^^^^^^~04/01/2004~
-~14007~^~305~^11.^1^^~9~^~MC~^^^^^^^^^^~04/01/2004~
-~14007~^~306~^26.^1^^~9~^~MC~^^^^^^^^^^~04/01/2004~
-~14007~^~307~^3.^1^^~9~^~MC~^^^^^^^^^^~04/01/2004~
-~14007~^~601~^0.^1^^~9~^~MC~^^^^^^^^^^~04/01/2004~
-~14009~^~208~^125.^0^^~4~^^^^^^^^^^^~05/01/1986~
-~14009~^~268~^523.^0^^~4~^^^^^^^^^^^
-~14009~^~301~^0.^1^^~1~^^^^^^^^^^^~05/01/1986~
-~14009~^~304~^1.^0^^~4~^^^^^^^^^^^~05/01/1986~
-~14009~^~305~^2.^0^^~4~^^^^^^^^^^^~05/01/1986~
-~14009~^~306~^11.^1^^~1~^^^^^^^^^^^~05/01/1986~
-~14009~^~307~^40.^1^^~1~^^^^^^^^^^^~05/01/1986~
-~14009~^~318~^2.^0^^~4~^^^^^^^^^^^~05/01/1986~
-~14009~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2002~
-~14009~^~320~^0.^0^^~4~^~NC~^^^^^^^^^^~06/01/2002~
-~14009~^~417~^1.^0^^~4~^^^^^^^^^^^~05/01/1986~
-~14009~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~
-~14009~^~432~^1.^0^^~4~^^^^^^^^^^^~05/01/1986~
-~14009~^~435~^1.^0^^~4~^~NC~^^^^^^^^^^~01/01/2001~
-~14009~^~601~^0.^0^^~4~^^^^^^^^^^^~05/01/1986~
-~14010~^~208~^186.^0^^~4~^~RA~^^^^^^^^^^~01/01/2003~
-~14010~^~262~^0.^0^^~4~^~RA~^^^^^^^^^^~01/01/2003~
-~14010~^~263~^0.^0^^~4~^~RA~^^^^^^^^^^~01/01/2003~
-~14010~^~268~^777.^0^^~4~^~RA~^^^^^^^^^^~01/01/2003~
-~14010~^~301~^3.^0^^~4~^~RA~^^^^^^^^^^~01/01/2003~
-~14010~^~304~^2.^0^^~4~^~RA~^^^^^^^^^^~01/01/2003~
-~14010~^~305~^5.^0^^~4~^~RA~^^^^^^^^^^~01/01/2003~
-~14010~^~306~^21.^0^^~4~^~RA~^^^^^^^^^^~01/01/2003~
-~14010~^~307~^5.^0^^~4~^~RA~^^^^^^^^^^~01/01/2003~
-~14010~^~318~^4.^0^^~4~^~NC~^^^^^^^^^^~06/01/2010~
-~14010~^~319~^0.^0^^~4~^~RA~^^^^^^^^^^~01/01/2003~
-~14010~^~320~^0.^0^^~4~^~RA~^^^^^^^^^^~01/01/2003~
-~14010~^~321~^2.^0^^~4~^~RA~^^^^^^^^^^~03/01/2003~
-~14010~^~322~^0.^0^^~4~^~RA~^^^^^^^^^^~01/01/2003~
-~14010~^~334~^0.^0^^~4~^~RA~^^^^^^^^^^~01/01/2003~
-~14010~^~337~^0.^0^^~4~^~RA~^^^^^^^^^^~01/01/2003~
-~14010~^~338~^0.^0^^~4~^~RA~^^^^^^^^^^~01/01/2003~
-~14010~^~417~^2.^0^^~4~^~RA~^^^^^^^^^^~01/01/2003~
-~14010~^~431~^0.^0^^~4~^~RA~^^^^^^^^^^~01/01/2003~
-~14010~^~432~^2.^0^^~4~^~RA~^^^^^^^^^^~01/01/2003~
-~14010~^~435~^2.^0^^~4~^~NC~^^^^^^^^^^~03/01/2003~
-~14010~^~601~^0.^0^^~4~^~RA~^^^^^^^^^^~01/01/2003~
-~14013~^~208~^27.^1^^~9~^~MC~^^^^^^^^^^~04/01/2004~
-~14013~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2015~
-~14013~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2015~
-~14013~^~268~^112.^0^^~9~^~MC~^^^^^^^^^^~04/01/2004~
-~14013~^~301~^4.^1^^~9~^~MC~^^^^^^^^^^~04/01/2004~
-~14013~^~304~^4.^1^^~9~^~MC~^^^^^^^^^^~04/01/2004~
-~14013~^~305~^8.^1^^~9~^~MC~^^^^^^^^^^~04/01/2004~
-~14013~^~306~^17.^1^^~9~^~MC~^^^^^^^^^^~04/01/2004~
-~14013~^~307~^3.^1^^~9~^~MC~^^^^^^^^^^~04/01/2004~
-~14013~^~318~^0.^0^^~1~^~AS~^^^^^^^^^^~06/01/2015~
-~14013~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2015~
-~14013~^~320~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2015~
-~14013~^~321~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2015~
-~14013~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2015~
-~14013~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2015~
-~14013~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2015~
-~14013~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2015~
-~14013~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2015~
-~14013~^~417~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2015~
-~14013~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2015~
-~14013~^~432~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2015~
-~14013~^~435~^0.^0^^~4~^~NC~^^^^^^^^^^~06/01/2015~
-~14013~^~601~^0.^1^^~9~^~MC~^^^^^^^^^^~04/01/2004~
-~14015~^~208~^237.^0^^~4~^~NC~^^^^^^^^^^~05/01/1986~
-~14015~^~268~^992.^0^^~4~^^^^^^^^^^^
-~14015~^~301~^1.^1^^~1~^^^^^^^^^^^~05/01/1986~
-~14015~^~304~^6.^0^^~4~^^^^^^^^^^^~05/01/1986~
-~14015~^~305~^36.^0^^~4~^^^^^^^^^^^~05/01/1986~
-~14015~^~306~^83.^1^^~1~^^^^^^^^^^^~05/01/1986~
-~14015~^~307~^71.^1^^~1~^^^^^^^^^^^~05/01/1986~
-~14015~^~318~^24.^0^^~4~^^^^^^^^^^^~05/01/1986~
-~14015~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2002~
-~14015~^~320~^1.^0^^~4~^~NC~^^^^^^^^^^~06/01/2002~
-~14015~^~417~^6.^0^^~4~^^^^^^^^^^^~05/01/1986~
-~14015~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~
-~14015~^~432~^6.^0^^~4~^^^^^^^^^^^~05/01/1986~
-~14015~^~435~^6.^0^^~4~^~NC~^^^^^^^^^^~01/01/2001~
-~14015~^~601~^0.^0^^~4~^^^^^^^^^^^~05/01/1986~
-~14016~^~208~^38.^0^^~8~^~LC~^^^^^^^^^^~12/01/2012~
-~14016~^~262~^0.^0^^~4~^~FLC~^^^^^^^^^^~12/01/2012~
-~14016~^~263~^0.^0^^~4~^~FLC~^^^^^^^^^^~12/01/2012~
-~14016~^~268~^157.^0^^~8~^~LC~^^^^^^^^^^~12/01/2012~
-~14016~^~301~^188.^0^^~8~^~LC~^^^^^^^^^^~12/01/2012~
-~14016~^~304~^7.^0^^~8~^~LC~^^^^^^^^^^~12/01/2012~
-~14016~^~305~^8.^0^^~8~^~LC~^^^^^^^^^^~12/01/2012~
-~14016~^~306~^50.^0^^~8~^~LC~^^^^^^^^^^~12/01/2012~
-~14016~^~307~^63.^0^^~8~^~LC~^^^^^^^^^^~12/01/2012~
-~14016~^~318~^208.^0^^~4~^~NC~^^^^^^^^^^~02/01/2017~
-~14016~^~319~^63.^0^^~4~^~NR~^^^^^^^^^^~05/01/2013~
-~14016~^~320~^63.^0^^~4~^~NC~^^^^^^^^^^~05/01/2013~
-~14016~^~321~^0.^0^^~4~^~FLC~^^^^^^^^^^~12/01/2012~
-~14016~^~322~^0.^0^^~4~^~FLC~^^^^^^^^^^~12/01/2012~
-~14016~^~324~^42.^0^^~8~^~LC~^^^^^^^^^^~12/01/2012~
-~14016~^~334~^0.^0^^~4~^~FLC~^^^^^^^^^^~12/01/2012~
-~14016~^~337~^0.^0^^~4~^~FLC~^^^^^^^^^^~12/01/2012~
-~14016~^~338~^0.^0^^~4~^~FLC~^^^^^^^^^^~12/01/2012~
-~14016~^~417~^1.^0^^~4~^~FLC~^^^^^^^^^^~12/01/2012~
-~14016~^~431~^0.^0^^~4~^~FLC~^^^^^^^^^^~12/01/2012~
-~14016~^~432~^1.^0^^~4~^~FLC~^^^^^^^^^^~12/01/2012~
-~14016~^~435~^1.^0^^~4~^~NC~^^^^^^^^^^~12/01/2012~
-~14016~^~601~^0.^0^^~8~^~LC~^^^^^^^^^^~12/01/2012~
-~14017~^~208~^174.^0^^~4~^~RC~^^^^^^^^^^~03/01/2003~
-~14017~^~262~^0.^0^^~4~^~RC~^^^^^^^^^^~03/01/2003~
-~14017~^~263~^0.^0^^~4~^~RC~^^^^^^^^^^~03/01/2003~
-~14017~^~268~^728.^0^^~4~^~RC~^^^^^^^^^^~03/01/2003~
-~14017~^~301~^8.^0^^~4~^~RC~^^^^^^^^^^~03/01/2003~
-~14017~^~304~^8.^0^^~4~^~RC~^^^^^^^^^^~03/01/2003~
-~14017~^~305~^7.^0^^~4~^~RC~^^^^^^^^^^~03/01/2003~
-~14017~^~306~^71.^0^^~4~^~RC~^^^^^^^^^^~03/01/2003~
-~14017~^~307~^6.^0^^~4~^~RC~^^^^^^^^^^~03/01/2003~
-~14017~^~318~^2.^0^^~4~^~RC~^^^^^^^^^^~03/01/2003~
-~14017~^~319~^0.^0^^~4~^~RC~^^^^^^^^^^~03/01/2003~
-~14017~^~320~^0.^0^^~4~^~RC~^^^^^^^^^^~03/01/2003~
-~14017~^~321~^1.^0^^~4~^~RC~^^^^^^^^^^~03/01/2003~
-~14017~^~322~^0.^0^^~4~^~RC~^^^^^^^^^^~03/01/2003~
-~14017~^~334~^0.^0^^~4~^~RC~^^^^^^^^^^~03/01/2003~
-~14017~^~337~^0.^0^^~4~^~RC~^^^^^^^^^^~03/01/2003~
-~14017~^~338~^0.^0^^~4~^~RC~^^^^^^^^^^~03/01/2003~
-~14017~^~417~^12.^0^^~4~^~RC~^^^^^^^^^^~03/01/2003~
-~14017~^~431~^0.^0^^~4~^~RC~^^^^^^^^^^~03/01/2003~
-~14017~^~432~^12.^0^^~4~^~RC~^^^^^^^^^^~03/01/2003~
-~14017~^~435~^12.^0^^~4~^~NC~^^^^^^^^^^~03/01/2003~
-~14017~^~601~^0.^0^^~4~^~RC~^^^^^^^^^^~03/01/2003~
-~14019~^~208~^110.^0^^~4~^^^^^^^^^^^~05/01/1986~
-~14019~^~268~^460.^0^^~4~^^^^^^^^^^^
-~14019~^~301~^0.^1^^~1~^^^^^^^^^^^~05/01/1986~
-~14019~^~304~^7.^0^^~4~^^^^^^^^^^^~05/01/1986~
-~14019~^~305~^10.^0^^~4~^^^^^^^^^^^~05/01/1986~
-~14019~^~306~^10.^1^^~1~^^^^^^^^^^^~05/01/1986~
-~14019~^~307~^57.^1^^~1~^^^^^^^^^^^~05/01/1986~
-~14019~^~318~^97.^0^^~4~^^^^^^^^^^^~05/01/1986~
-~14019~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2002~
-~14019~^~320~^5.^0^^~4~^~NC~^^^^^^^^^^~06/01/2002~
-~14019~^~417~^11.^0^^~4~^^^^^^^^^^^~05/01/1986~
-~14019~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~
-~14019~^~432~^11.^0^^~4~^^^^^^^^^^^~05/01/1986~
-~14019~^~435~^11.^0^^~4~^~NC~^^^^^^^^^^~01/01/2001~
-~14019~^~601~^0.^0^^~4~^^^^^^^^^^^~05/01/1986~
-~14021~^~208~^45.^0^^~4~^~NC~^^^^^^^^^^~05/01/2013~
-~14021~^~262~^13.^0^^~8~^~LC~^^^^^^^^^^~05/01/2013~
-~14021~^~263~^0.^0^^~4~^~BFZN~^~14154~^^^^^^^^^~05/01/2013~
-~14021~^~268~^189.^0^^~4~^~NC~^^^^^^^^^^~05/01/2013~
-~14021~^~301~^8.^0^^~8~^~LC~^^^^^^^^^^~05/01/2013~
-~14021~^~304~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2013~
-~14021~^~305~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2013~
-~14021~^~306~^4.^0^^~8~^~LC~^^^^^^^^^^~05/01/2013~
-~14021~^~307~^10.^0^^~8~^~LC~^^^^^^^^^^~05/01/2013~
-~14021~^~318~^0.^0^^~8~^~LC~^^^^^^^^^^~05/01/2013~
-~14021~^~319~^0.^0^^~4~^~BFZN~^~14154~^^^^^^^^^~05/01/2013~
-~14021~^~320~^0.^0^^~4~^~BFZN~^~14154~^^^^^^^^^~05/01/2013~
-~14021~^~321~^0.^0^^~4~^~BFZN~^~14154~^^^^^^^^^~05/01/2013~
-~14021~^~322~^0.^0^^~4~^~BFZN~^~14154~^^^^^^^^^~05/01/2013~
-~14021~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2013~
-~14021~^~334~^0.^0^^~4~^~BFZN~^~14154~^^^^^^^^^~05/01/2013~
-~14021~^~337~^0.^0^^~4~^~BFZN~^~14154~^^^^^^^^^~05/01/2013~
-~14021~^~338~^0.^0^^~4~^~BFZN~^~14154~^^^^^^^^^~05/01/2013~
-~14021~^~417~^0.^0^^~4~^~BFZN~^~14154~^^^^^^^^^~05/01/2013~
-~14021~^~431~^0.^0^^~4~^~BFZN~^~14154~^^^^^^^^^~05/01/2013~
-~14021~^~432~^0.^0^^~4~^~BFZN~^~14154~^^^^^^^^^~05/01/2013~
-~14021~^~435~^0.^0^^~4~^~NC~^~14154~^^^^^^^^^~05/01/2013~
-~14021~^~601~^0.^0^^~4~^~BFZN~^~14154~^^^^^^^^^~05/01/2013~
-~14022~^~208~^5.^0^^~12~^~MA~^^^^^^^^^^~02/01/2013~
-~14022~^~262~^30.^0^^~8~^~LC~^^^^^^^^^^~02/01/2013~
-~14022~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2013~
-~14022~^~268~^23.^0^^~12~^~MA~^^^^^^^^^^~02/01/2013~
-~14022~^~301~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2013~
-~14022~^~304~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2013~
-~14022~^~305~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2013~
-~14022~^~306~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2013~
-~14022~^~307~^75.^0^^~8~^~LC~^^^^^^^^^^~02/01/2013~
-~14022~^~318~^0.^0^^~1~^~AS~^^^^^^^^^^~02/01/2013~
-~14022~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2013~
-~14022~^~320~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2013~
-~14022~^~321~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2013~
-~14022~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2013~
-~14022~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2013~
-~14022~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2013~
-~14022~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2013~
-~14022~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2013~
-~14022~^~417~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2013~
-~14022~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2013~
-~14022~^~432~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2013~
-~14022~^~435~^0.^0^^~4~^~NC~^^^^^^^^^^~02/01/2013~
-~14022~^~601~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2013~
-~14024~^~208~^383.^0^^~4~^~NC~^^^^^^^^^^~05/01/1986~
-~14024~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~12/01/2002~
-~14024~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~12/01/2002~
-~14024~^~268~^1602.^0^^~4~^^^^^^^^^^^~05/01/2006~
-~14024~^~301~^272.^1^^~1~^^^^^^^^^^^~05/01/1986~
-~14024~^~304~^19.^1^^~1~^^^^^^^^^^^~05/01/1986~
-~14024~^~305~^13.^1^^~1~^^^^^^^^^^^~05/01/1986~
-~14024~^~306~^19.^1^^~1~^^^^^^^^^^^~05/01/1986~
-~14024~^~307~^274.^1^^~1~^^^^^^^^^^^~05/01/1986~
-~14024~^~318~^30.^1^^~1~^^^^^^^^^^^~05/01/1986~
-~14024~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2002~
-~14024~^~320~^2.^0^^~4~^~NC~^^^^^^^^^^~06/01/2002~
-~14024~^~417~^0.^0^^~1~^^^^^^^^^^^~05/01/1986~
-~14024~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~
-~14024~^~432~^0.^0^^~1~^^^^^^^^^^^~05/01/1986~
-~14024~^~435~^0.^0^^~4~^~NC~^^^^^^^^^^~05/01/2006~
-~14024~^~601~^0.^0^^~1~^^^^^^^^^^^~05/01/1986~
-~14025~^~208~^164.^0^^~6~^~RPI~^^^^^^^^^^~03/01/2003~
-~14025~^~262~^0.^0^^~6~^~RPI~^^^^^^^^^^~03/01/2003~
-~14025~^~263~^0.^0^^~6~^~RPI~^^^^^^^^^^~03/01/2003~
-~14025~^~268~^684.^0^^~6~^~RPI~^^^^^^^^^^~03/01/2003~
-~14025~^~301~^46.^0^^~1~^~RPA~^^^^^^^^^^~12/01/2006~
-~14025~^~304~^3.^0^^~1~^~RPA~^^^^^^^^^^~12/01/2006~
-~14025~^~305~^4.^0^^~1~^~RPA~^^^^^^^^^^~12/01/2006~
-~14025~^~306~^4.^0^^~1~^~RPA~^^^^^^^^^^~12/01/2006~
-~14025~^~307~^47.^0^^~1~^~RPA~^^^^^^^^^^~12/01/2006~
-~14025~^~318~^5.^0^^~6~^~RPI~^^^^^^^^^^~03/01/2003~
-~14025~^~319~^0.^0^^~6~^~RPI~^^^^^^^^^^~03/01/2003~
-~14025~^~320~^0.^0^^~6~^~RPI~^^^^^^^^^^~03/01/2003~
-~14025~^~321~^0.^0^^~6~^~RPI~^^^^^^^^^^~03/01/2003~
-~14025~^~322~^0.^0^^~6~^~RPI~^^^^^^^^^^~03/01/2003~
-~14025~^~334~^0.^0^^~6~^~RPI~^^^^^^^^^^~03/01/2003~
-~14025~^~337~^0.^0^^~6~^~RPI~^^^^^^^^^^~03/01/2003~
-~14025~^~338~^0.^0^^~6~^~RPI~^^^^^^^^^^~03/01/2003~
-~14025~^~417~^0.^0^^~6~^~RPI~^^^^^^^^^^~03/01/2003~
-~14025~^~431~^0.^0^^~6~^~RPI~^^^^^^^^^^~03/01/2003~
-~14025~^~432~^0.^0^^~6~^~RPI~^^^^^^^^^^~03/01/2003~
-~14025~^~435~^0.^0^^~4~^~NC~^^^^^^^^^^~12/01/2006~
-~14025~^~601~^0.^0^^~6~^~RPI~^^^^^^^^^^~12/01/2006~
-~14026~^~208~^4.^0^^~4~^~NC~^^^^^^^^^^~05/01/2013~
-~14026~^~262~^34.^0^^~9~^~MC~^^^^^^^^^^~07/01/2013~
-~14026~^~263~^0.^0^^~4~^~BFZN~^~14156~^^^^^^^^^~05/01/2013~
-~14026~^~268~^17.^0^^~4~^~NC~^^^^^^^^^^~05/01/2013~
-~14026~^~301~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2013~
-~14026~^~304~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2013~
-~14026~^~305~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2013~
-~14026~^~306~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2013~
-~14026~^~307~^85.^0^^~8~^~LC~^^^^^^^^^^~05/01/2013~
-~14026~^~318~^0.^0^^~4~^~NC~^^^^^^^^^^~05/01/2013~
-~14026~^~319~^0.^0^^~4~^~BFZN~^~14156~^^^^^^^^^~05/01/2013~
-~14026~^~320~^0.^0^^~4~^~BFZN~^~14156~^^^^^^^^^~05/01/2013~
-~14026~^~321~^0.^0^^~4~^~BFZN~^~14156~^^^^^^^^^~05/01/2013~
-~14026~^~322~^0.^0^^~4~^~BFZN~^~14156~^^^^^^^^^~05/01/2013~
-~14026~^~324~^0.^0^^~4~^~NR~^^^^^^^^^^~05/01/2013~
-~14026~^~334~^0.^0^^~4~^~BFZN~^~14156~^^^^^^^^^~05/01/2013~
-~14026~^~337~^0.^0^^~4~^~BFZN~^~14156~^^^^^^^^^~05/01/2013~
-~14026~^~338~^0.^0^^~4~^~BFZN~^~14156~^^^^^^^^^~05/01/2013~
-~14026~^~417~^0.^0^^~4~^~BFZN~^~14156~^^^^^^^^^~05/01/2013~
-~14026~^~431~^0.^0^^~4~^~BFZN~^~14156~^^^^^^^^^~05/01/2013~
-~14026~^~432~^0.^0^^~4~^~BFZN~^~14156~^^^^^^^^^~05/01/2013~
-~14026~^~435~^0.^0^^~4~^~NC~^~14156~^^^^^^^^^~05/01/2013~
-~14026~^~601~^0.^0^^~4~^~BFZN~^~14156~^^^^^^^^^~05/01/2013~
-~14027~^~208~^119.^0^^~4~^^^^^^^^^^^~05/01/1986~
-~14027~^~268~^498.^0^^~4~^^^^^^^^^^^
-~14027~^~301~^0.^1^^~1~^^^^^^^^^^^~05/01/1986~
-~14027~^~304~^1.^0^^~4~^^^^^^^^^^^~05/01/1986~
-~14027~^~305~^6.^0^^~4~^^^^^^^^^^^~05/01/1986~
-~14027~^~306~^11.^1^^~1~^^^^^^^^^^^~05/01/1986~
-~14027~^~307~^44.^1^^~1~^^^^^^^^^^^~05/01/1986~
-~14027~^~318~^13.^0^^~4~^^^^^^^^^^^~05/01/1986~
-~14027~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2002~
-~14027~^~320~^1.^0^^~4~^~NC~^^^^^^^^^^~06/01/2002~
-~14027~^~417~^0.^0^^~4~^^^^^^^^^^^~05/01/1986~
-~14027~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~
-~14027~^~432~^0.^0^^~4~^^^^^^^^^^^~05/01/1986~
-~14027~^~435~^0.^0^^~4~^~NC~^^^^^^^^^^~01/01/2001~
-~14027~^~601~^0.^0^^~4~^^^^^^^^^^^~05/01/1986~
-~14028~^~208~^87.^0^^~4~^~NC~^^^^^^^^^^~03/01/2003~
-~14028~^~262~^0.^0^^~4~^~FLA~^^^^^^^^^^~03/01/2003~
-~14028~^~263~^0.^0^^~4~^~FLA~^^^^^^^^^^~03/01/2003~
-~14028~^~268~^364.^0^^~4~^~NC~^^^^^^^^^^~03/01/2003~
-~14028~^~301~^2.^2^^~1~^^^^^^^^^^^~05/01/1986~
-~14028~^~304~^1.^2^^~1~^^^^^^^^^^^~05/01/1986~
-~14028~^~305~^6.^2^^~1~^^^^^^^^^^^~05/01/1986~
-~14028~^~306~^28.^1^^~1~^^^^^^^^^^^~05/01/1986~
-~14028~^~307~^102.^1^^~1~^^^^^^^^^^^~05/01/1986~
-~14028~^~318~^0.^0^^~4~^~FLA~^^^^^^^^^^~03/01/2003~
-~14028~^~319~^0.^0^^~4~^~FLA~^^^^^^^^^^~03/01/2003~
-~14028~^~320~^0.^0^^~4~^~FLA~^^^^^^^^^^~03/01/2003~
-~14028~^~321~^0.^0^^~4~^~FLA~^^^^^^^^^^~03/01/2003~
-~14028~^~322~^0.^0^^~4~^~FLA~^^^^^^^^^^~03/01/2003~
-~14028~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~
-~14028~^~334~^0.^0^^~4~^~FLA~^^^^^^^^^^~03/01/2003~
-~14028~^~337~^0.^0^^~4~^~FLA~^^^^^^^^^^~03/01/2003~
-~14028~^~338~^0.^0^^~4~^~FLA~^^^^^^^^^^~03/01/2003~
-~14028~^~417~^0.^0^^~4~^~FLA~^^^^^^^^^^~03/01/2003~
-~14028~^~431~^0.^0^^~4~^~FLA~^^^^^^^^^^~03/01/2003~
-~14028~^~432~^0.^0^^~4~^~FLA~^^^^^^^^^^~03/01/2003~
-~14028~^~435~^0.^0^^~4~^~NC~^^^^^^^^^^~03/01/2008~
-~14028~^~601~^0.^0^^~4~^~FLA~^^^^^^^^^^~03/01/2003~
-~14029~^~208~^153.^0^^~6~^~RPI~^^^^^^^^^^~03/01/2003~
-~14029~^~262~^0.^0^^~6~^~RPI~^^^^^^^^^^~03/01/2003~
-~14029~^~263~^0.^0^^~6~^~RPI~^^^^^^^^^^~03/01/2003~
-~14029~^~268~^638.^0^^~6~^~RPI~^^^^^^^^^^~03/01/2003~
-~14029~^~301~^1.^0^^~1~^~RPA~^^^^^^^^^^~03/01/2003~
-~14029~^~304~^1.^0^^~1~^~RPA~^^^^^^^^^^~03/01/2003~
-~14029~^~305~^5.^0^^~1~^~RPA~^^^^^^^^^^~03/01/2003~
-~14029~^~306~^18.^0^^~1~^~RPA~^^^^^^^^^^~03/01/2003~
-~14029~^~307~^61.^0^^~1~^~RPA~^^^^^^^^^^~03/01/2003~
-~14029~^~318~^0.^0^^~6~^~RPI~^^^^^^^^^^~03/01/2003~
-~14029~^~319~^0.^0^^~6~^~RPI~^^^^^^^^^^~03/01/2003~
-~14029~^~320~^0.^0^^~6~^~RPI~^^^^^^^^^^~03/01/2003~
-~14029~^~321~^0.^0^^~6~^~RPI~^^^^^^^^^^~03/01/2003~
-~14029~^~322~^0.^0^^~6~^~RPI~^^^^^^^^^^~03/01/2003~
-~14029~^~334~^0.^0^^~6~^~RPI~^^^^^^^^^^~03/01/2003~
-~14029~^~337~^0.^0^^~6~^~RPI~^^^^^^^^^^~03/01/2003~
-~14029~^~338~^0.^0^^~6~^~RPI~^^^^^^^^^^~03/01/2003~
-~14029~^~417~^0.^0^^~6~^~RPI~^^^^^^^^^^~03/01/2003~
-~14029~^~431~^0.^0^^~6~^~RPI~^^^^^^^^^^~03/01/2003~
-~14029~^~432~^0.^0^^~6~^~RPI~^^^^^^^^^^~03/01/2003~
-~14029~^~435~^0.^0^^~4~^~NC~^^^^^^^^^^~03/01/2003~
-~14029~^~601~^0.^0^^~6~^~RPI~^^^^^^^^^^~03/01/2003~
-~14030~^~208~^44.^0^^~8~^~LC~^^^^^^^^^^~05/01/2013~
-~14030~^~262~^34.^0^^~9~^~MC~^^^^^^^^^^~07/01/2013~
-~14030~^~263~^0.^0^^~4~^~BFZN~^~14154~^^^^^^^^^~05/01/2013~
-~14030~^~268~^183.^0^^~8~^~LC~^^^^^^^^^^~05/01/2013~
-~14030~^~301~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2013~
-~14030~^~304~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2013~
-~14030~^~305~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2013~
-~14030~^~306~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2013~
-~14030~^~307~^85.^0^^~8~^~LC~^^^^^^^^^^~05/01/2013~
-~14030~^~318~^0.^0^^~4~^~NC~^^^^^^^^^^~05/01/2013~
-~14030~^~319~^0.^0^^~4~^~BFZN~^~14154~^^^^^^^^^~05/01/2013~
-~14030~^~320~^0.^0^^~4~^~BFZN~^~14154~^^^^^^^^^~05/01/2013~
-~14030~^~321~^0.^0^^~4~^~BFZN~^~14154~^^^^^^^^^~05/01/2013~
-~14030~^~322~^0.^0^^~4~^~BFZN~^~14154~^^^^^^^^^~05/01/2013~
-~14030~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2013~
-~14030~^~334~^0.^0^^~4~^~BFZN~^~14154~^^^^^^^^^~05/01/2013~
-~14030~^~337~^0.^0^^~4~^~BFZN~^~14154~^^^^^^^^^~05/01/2013~
-~14030~^~338~^0.^0^^~4~^~BFZN~^~14154~^^^^^^^^^~05/01/2013~
-~14030~^~417~^0.^0^^~4~^~BFZN~^~14154~^^^^^^^^^~05/01/2013~
-~14030~^~431~^0.^0^^~4~^~BFZN~^~14154~^^^^^^^^^~05/01/2013~
-~14030~^~432~^0.^0^^~4~^~BFZN~^~14154~^^^^^^^^^~05/01/2013~
-~14030~^~435~^0.^0^^~4~^~NC~^~14154~^^^^^^^^^~05/01/2013~
-~14030~^~601~^0.^0^^~4~^~BFZN~^~14154~^^^^^^^^^~05/01/2013~
-~14031~^~208~^5.^0^^~4~^~NC~^^^^^^^^^^~02/01/2013~
-~14031~^~262~^0.^0^^~8~^~LC~^^^^^^^^^^~02/01/2013~
-~14031~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2013~
-~14031~^~268~^21.^0^^~4~^~NC~^^^^^^^^^^~02/01/2013~
-~14031~^~301~^0.^0^^~8~^~LC~^^^^^^^^^^~02/01/2013~
-~14031~^~304~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2013~
-~14031~^~305~^0.^0^^~4~^~BFZN~^~14440~^^^^^^^^^~02/01/2013~
-~14031~^~306~^8.^0^^~8~^~LC~^^^^^^^^^^~02/01/2013~
-~14031~^~307~^10.^0^^~8~^~LC~^^^^^^^^^^~02/01/2013~
-~14031~^~318~^0.^0^^~8~^~LC~^^^^^^^^^^~02/01/2013~
-~14031~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2013~
-~14031~^~320~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2013~
-~14031~^~321~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2013~
-~14031~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2013~
-~14031~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2013~
-~14031~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2013~
-~14031~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2013~
-~14031~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2013~
-~14031~^~417~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2013~
-~14031~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2013~
-~14031~^~432~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2013~
-~14031~^~435~^0.^0^^~4~^~NC~^^^^^^^^^^~02/01/2013~
-~14031~^~601~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2013~
-~14033~^~208~^385.^0^^~8~^~LC~^^^^^^^^^^~05/01/2013~
-~14033~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2013~
-~14033~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2013~
-~14033~^~268~^1609.^0^^~8~^~LC~^^^^^^^^^^~05/01/2013~
-~14033~^~301~^256.^0^^~8~^~LC~^^^^^^^^^^~05/01/2013~
-~14033~^~304~^181.^0^^~4~^~FLC~^^^^^^^^^^~05/01/2013~
-~14033~^~305~^643.^0^^~4~^~BFZN~^~01223~^^^^^^^^^~05/01/2013~
-~14033~^~306~^564.^0^^~8~^~LC~^^^^^^^^^^~05/01/2013~
-~14033~^~307~^385.^0^^~8~^~LC~^^^^^^^^^^~05/01/2013~
-~14033~^~318~^54.^0^^~4~^~FLC~^^^^^^^^^^~05/01/2013~
-~14033~^~319~^15.^0^^~4~^~FLC~^^^^^^^^^^~05/01/2013~
-~14033~^~320~^15.^0^^~4~^~NC~^^^^^^^^^^~05/01/2013~
-~14033~^~321~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2013~
-~14033~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2013~
-~14033~^~324~^0.^0^^~4~^~FLC~^^^^^^^^^^~05/01/2013~
-~14033~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2013~
-~14033~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2013~
-~14033~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2013~
-~14033~^~417~^200.^0^^~4~^~BFZN~^~01223~^^^^^^^^^~05/01/2013~
-~14033~^~431~^200.^0^^~4~^~BFZN~^~01223~^^^^^^^^^~05/01/2013~
-~14033~^~432~^0.^0^^~4~^~BFZN~^~01223~^^^^^^^^^~05/01/2013~
-~14033~^~435~^340.^0^^~4~^~NC~^~01223~^^^^^^^^^~05/01/2013~
-~14033~^~601~^205.^0^^~8~^~LC~^^^^^^^^^^~05/01/2013~
-~14034~^~208~^371.^0^^~4~^~NC~^^^^^^^^^^~05/01/1986~
-~14034~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~11/01/2002~
-~14034~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~11/01/2002~
-~14034~^~268~^1552.^0^^~4~^^^^^^^^^^^~01/01/2005~
-~14034~^~301~^0.^1^^~1~^^^^^^^^^^^~05/01/1986~
-~14034~^~304~^0.^1^^~1~^^^^^^^^^^^~05/01/1986~
-~14034~^~305~^0.^1^^~1~^^^^^^^^^^^~05/01/1986~
-~14034~^~306~^0.^1^^~1~^^^^^^^^^^^~05/01/1986~
-~14034~^~307~^5.^1^^~1~^^^^^^^^^^^~05/01/1986~
-~14034~^~318~^0.^0^^~1~^^^^^^^^^^^~05/01/1986~
-~14034~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2002~
-~14034~^~320~^0.^0^^~1~^~AS~^^^^^^^^^^~05/01/2014~
-~14034~^~321~^0.^0^^~7~^~Z~^^^^^^^^^^~11/01/2002~
-~14034~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~11/01/2002~
-~14034~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~
-~14034~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~11/01/2002~
-~14034~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~11/01/2002~
-~14034~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~11/01/2002~
-~14034~^~417~^0.^0^^~1~^^^^^^^^^^^~05/01/1986~
-~14034~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~
-~14034~^~432~^0.^0^^~1~^^^^^^^^^^^~05/01/1986~
-~14034~^~435~^0.^0^^~4~^~NC~^^^^^^^^^^~12/01/2006~
-~14034~^~601~^0.^0^^~1~^^^^^^^^^^^~05/01/1986~
-~14035~^~208~^405.^0^^~8~^~LC~^^^^^^^^^^~05/01/2013~
-~14035~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2013~
-~14035~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2013~
-~14035~^~268~^1694.^0^^~8~^~LC~^^^^^^^^^^~05/01/2013~
-~14035~^~301~^95.^0^^~8~^~LC~^^^^^^^^^^~05/01/2013~
-~14035~^~304~^22.^0^^~4~^~FLC~^^^^^^^^^^~02/01/2013~
-~14035~^~305~^441.^0^^~4~^~FLC~^^^^^^^^^^~02/01/2013~
-~14035~^~306~^714.^0^^~8~^~LC~^^^^^^^^^^~05/01/2013~
-~14035~^~307~^452.^0^^~8~^~LC~^^^^^^^^^^~05/01/2013~
-~14035~^~318~^0.^0^^~8~^~LC~^^^^^^^^^^~02/01/2013~
-~14035~^~319~^0.^0^^~4~^~FLC~^^^^^^^^^^~02/01/2013~
-~14035~^~320~^0.^0^^~4~^~FLC~^^^^^^^^^^~02/01/2013~
-~14035~^~321~^0.^0^^~4~^~FLC~^^^^^^^^^^~02/01/2013~
-~14035~^~322~^0.^0^^~4~^~FLC~^^^^^^^^^^~02/01/2013~
-~14035~^~324~^0.^0^^~4~^~FLC~^^^^^^^^^^~05/01/2013~
-~14035~^~334~^0.^0^^~4~^~FLC~^^^^^^^^^^~02/01/2013~
-~14035~^~337~^0.^0^^~4~^~FLC~^^^^^^^^^^~02/01/2013~
-~14035~^~338~^0.^0^^~4~^~FLC~^^^^^^^^^^~02/01/2013~
-~14035~^~417~^100.^0^^~4~^~FLC~^^^^^^^^^^~02/01/2013~
-~14035~^~431~^0.^0^^~4~^~FLC~^^^^^^^^^^~02/01/2013~
-~14035~^~432~^100.^0^^~4~^~FLC~^^^^^^^^^^~02/01/2013~
-~14035~^~435~^100.^0^^~4~^~NC~^^^^^^^^^^~02/01/2013~
-~14035~^~601~^0.^0^^~8~^~LC~^^^^^^^^^^~02/01/2013~
-~14036~^~208~^52.^0^^~4~^~NC~^^^^^^^^^^~11/01/2016~
-~14036~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2013~
-~14036~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2013~
-~14036~^~268~^218.^0^^~4~^~NC~^^^^^^^^^^~11/01/2016~
-~14036~^~301~^69.^0^^~9~^~MC~^^^^^^^^^^~05/01/2013~
-~14036~^~304~^20.^0^^~9~^~MC~^^^^^^^^^^~05/01/2013~
-~14036~^~305~^101.^0^^~9~^~MC~^^^^^^^^^^~05/01/2013~
-~14036~^~306~^198.^0^^~8~^~LC~^^^^^^^^^^~05/01/2013~
-~14036~^~307~^95.^0^^~9~^~MC~^^^^^^^^^^~05/01/2013~
-~14036~^~318~^294.^0^^~4~^~NC~^^^^^^^^^^~11/01/2016~
-~14036~^~319~^88.^0^^~4~^~FLC~^^^^^^^^^^~05/01/2013~
-~14036~^~320~^88.^0^^~4~^~NC~^^^^^^^^^^~11/01/2013~
-~14036~^~321~^0.^0^^~4~^~FLC~^^^^^^^^^^~05/01/2013~
-~14036~^~322~^0.^0^^~4~^~FLC~^^^^^^^^^^~05/01/2013~
-~14036~^~324~^28.^0^^~9~^~MC~^^^^^^^^^^~05/01/2013~
-~14036~^~334~^0.^0^^~4~^~FLC~^^^^^^^^^^~05/01/2013~
-~14036~^~337~^0.^0^^~4~^~FLC~^^^^^^^^^^~05/01/2013~
-~14036~^~338~^0.^0^^~4~^~FLC~^^^^^^^^^^~05/01/2013~
-~14036~^~417~^33.^0^^~9~^~MC~^^^^^^^^^^~05/01/2013~
-~14036~^~431~^33.^0^^~4~^~O~^^^^^^^^^^~04/01/2014~
-~14036~^~432~^0.^0^^~4~^~FLC~^^^^^^^^^^~05/01/2013~
-~14036~^~435~^56.^0^^~4~^~NC~^^^^^^^^^^~04/01/2014~
-~14036~^~601~^2.^0^^~9~^~MC~^^^^^^^^^^~05/01/2013~
-~14037~^~208~^231.^0^^~4~^~NC~^^^^^^^^^^~05/01/1986~
-~14037~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~11/01/2002~
-~14037~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~11/01/2002~
-~14037~^~268~^967.^0^^~4~^^^^^^^^^^^~03/01/2006~
-~14037~^~301~^0.^235^^~1~^^^^^^^^^^^~05/01/1986~
-~14037~^~304~^0.^231^^~1~^^^^^^^^^^^~05/01/1986~
-~14037~^~305~^4.^13^^~1~^^^^^^^^^^^~05/01/1986~
-~14037~^~306~^2.^254^^~1~^^^^^^^^^^^~05/01/1986~
-~14037~^~307~^1.^260^^~1~^^^^^^^^^^^~05/01/1986~
-~14037~^~318~^0.^0^^~1~^^^^^^^^^^^~05/01/1986~
-~14037~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2002~
-~14037~^~320~^0.^0^^~1~^~AS~^^^^^^^^^^~05/01/2014~
-~14037~^~321~^0.^0^^~7~^~Z~^^^^^^^^^^~11/01/2002~
-~14037~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~11/01/2002~
-~14037~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~
-~14037~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~11/01/2002~
-~14037~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~11/01/2002~
-~14037~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~11/01/2002~
-~14037~^~417~^0.^14^^~1~^^^^^^^^^^^~05/01/1986~
-~14037~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~
-~14037~^~432~^0.^14^^~1~^^^^^^^^^^^~05/01/1986~
-~14037~^~435~^0.^0^^~4~^~NC~^^^^^^^^^^~12/01/2006~
-~14037~^~601~^0.^0^^~1~^^^^^^^^^^^~05/01/1986~
-~14038~^~208~^15.^0^^~8~^~LC~^^^^^^^^^^~02/01/2013~
-~14038~^~262~^23.^0^^~9~^~MC~^^^^^^^^^^~07/01/2013~
-~14038~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2013~
-~14038~^~268~^61.^0^^~8~^~LC~^^^^^^^^^^~02/01/2013~
-~14038~^~301~^0.^0^^~8~^~LC~^^^^^^^^^^~02/01/2013~
-~14038~^~304~^2.^0^^~4~^~FLC~^^^^^^^^^^~02/01/2013~
-~14038~^~305~^1.^0^^~4~^~FLC~^^^^^^^^^^~02/01/2013~
-~14038~^~306~^0.^0^^~8~^~LC~^^^^^^^^^^~02/01/2013~
-~14038~^~307~^21.^0^^~8~^~LC~^^^^^^^^^^~02/01/2013~
-~14038~^~318~^0.^0^^~8~^~LC~^^^^^^^^^^~02/01/2013~
-~14038~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2013~
-~14038~^~320~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2013~
-~14038~^~321~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2013~
-~14038~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2013~
-~14038~^~324~^0.^0^^~4~^~FLC~^^^^^^^^^^~05/01/2013~
-~14038~^~334~^0.^0^^~4~^~FLC~^^^^^^^^^^~02/01/2013~
-~14038~^~337~^0.^0^^~4~^~FLC~^^^^^^^^^^~02/01/2013~
-~14038~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2013~
-~14038~^~417~^0.^0^^~4~^~FLC~^^^^^^^^^^~02/01/2013~
-~14038~^~431~^0.^0^^~4~^~FLC~^^^^^^^^^^~02/01/2013~
-~14038~^~432~^0.^0^^~4~^~FLC~^^^^^^^^^^~02/01/2013~
-~14038~^~435~^0.^0^^~4~^~NC~^^^^^^^^^^~02/01/2013~
-~14038~^~601~^0.^0^^~8~^~LC~^^^^^^^^^^~02/01/2013~
-~14041~^~208~^138.^0^^~8~^~LC~^^^^^^^^^^~05/01/2013~
-~14041~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2013~
-~14041~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2013~
-~14041~^~268~^579.^0^^~8~^~LC~^^^^^^^^^^~05/01/2013~
-~14041~^~301~^135.^0^^~8~^~LC~^^^^^^^^^^~05/01/2013~
-~14041~^~304~^38.^0^^~8~^~LC~^^^^^^^^^^~05/01/2013~
-~14041~^~305~^115.^0^^~8~^~LC~^^^^^^^^^^~05/01/2013~
-~14041~^~306~^138.^0^^~8~^~LC~^^^^^^^^^^~05/01/2013~
-~14041~^~307~^77.^0^^~8~^~LC~^^^^^^^^^^~05/01/2013~
-~14041~^~318~^480.^0^^~9~^~MC~^^^^^^^^^^~05/01/2013~
-~14041~^~319~^72.^0^^~9~^~MC~^^^^^^^^^^~05/01/2013~
-~14041~^~320~^84.^0^^~4~^~NC~^^^^^^^^^^~05/01/2013~
-~14041~^~321~^144.^0^^~9~^~MC~^^^^^^^^^^~05/01/2013~
-~14041~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2013~
-~14041~^~324~^92.^0^^~9~^~MC~^^^^^^^^^^~05/01/2013~
-~14041~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2013~
-~14041~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2013~
-~14041~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2013~
-~14041~^~417~^38.^0^^~9~^~MC~^^^^^^^^^^~05/01/2013~
-~14041~^~431~^38.^0^^~4~^~NR~^^^^^^^^^^~05/01/2013~
-~14041~^~432~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2013~
-~14041~^~435~^65.^0^^~4~^~NC~^^^^^^^^^^~05/01/2013~
-~14041~^~601~^4.^0^^~8~^~LC~^^^^^^^^^^~05/01/2013~
-~14044~^~208~^61.^0^^~8~^~LC~^^^^^^^^^^~11/01/2016~
-~14044~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2013~
-~14044~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2013~
-~14044~^~268~^255.^0^^~8~^~LC~^^^^^^^^^^~11/01/2016~
-~14044~^~301~^130.^0^^~9~^~MC~^^^^^^^^^^~05/01/2013~
-~14044~^~304~^44.^0^^~9~^~MC~^^^^^^^^^^~05/01/2013~
-~14044~^~305~^136.^0^^~8~^~LC~^^^^^^^^^^~05/01/2013~
-~14044~^~306~^179.^0^^~9~^~MC~^^^^^^^^^^~05/01/2013~
-~14044~^~307~^72.^0^^~9~^~MC~^^^^^^^^^^~05/01/2013~
-~14044~^~318~^571.^0^^~4~^~NC~^^^^^^^^^^~11/01/2016~
-~14044~^~319~^171.^0^^~4~^~NR~^^^^^^^^^^~05/01/2013~
-~14044~^~320~^171.^0^^~4~^~NC~^^^^^^^^^^~05/01/2013~
-~14044~^~321~^0.^0^^~4~^~FLC~^^^^^^^^^^~05/01/2013~
-~14044~^~322~^0.^0^^~4~^~FLC~^^^^^^^^^^~05/01/2013~
-~14044~^~324~^45.^0^^~9~^~MC~^^^^^^^^^^~07/01/2013~
-~14044~^~334~^0.^0^^~4~^~FLC~^^^^^^^^^^~05/01/2013~
-~14044~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2013~
-~14044~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2013~
-~14044~^~417~^39.^0^^~9~^~MC~^^^^^^^^^^~05/01/2013~
-~14044~^~431~^41.^0^^~8~^~LC~^^^^^^^^^^~05/01/2013~
-~14044~^~432~^0.^0^^~1~^~AS~^^^^^^^^^^~05/01/2013~
-~14044~^~435~^69.^0^^~4~^~NC~^^^^^^^^^^~05/01/2013~
-~14044~^~601~^4.^0^^~9~^~MC~^^^^^^^^^^~05/01/2013~
-~14045~^~208~^57.^0^^~9~^~MC~^^^^^^^^^^~05/01/2013~
-~14045~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2013~
-~14045~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2013~
-~14045~^~268~^238.^0^^~9~^~MC~^^^^^^^^^^~05/01/2013~
-~14045~^~301~^161.^0^^~9~^~MC~^^^^^^^^^^~05/01/2013~
-~14045~^~304~^45.^0^^~9~^~MC~^^^^^^^^^^~05/01/2013~
-~14045~^~305~^161.^0^^~9~^~MC~^^^^^^^^^^~05/01/2013~
-~14045~^~306~^193.^0^^~9~^~MC~^^^^^^^^^^~05/01/2013~
-~14045~^~307~^68.^0^^~9~^~MC~^^^^^^^^^^~05/01/2013~
-~14045~^~318~^565.^0^^~9~^~MC~^^^^^^^^^^~05/01/2013~
-~14045~^~319~^170.^0^^~4~^~O~^^^^^^^^^^~05/01/2014~
-~14045~^~320~^170.^0^^~4~^~NC~^^^^^^^^^^~05/01/2014~
-~14045~^~321~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2013~
-~14045~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2013~
-~14045~^~324~^45.^0^^~9~^~MC~^^^^^^^^^^~05/01/2013~
-~14045~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2013~
-~14045~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2013~
-~14045~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2013~
-~14045~^~417~^39.^0^^~9~^~MC~^^^^^^^^^^~05/01/2013~
-~14045~^~431~^39.^0^^~4~^~O~^^^^^^^^^^~05/01/2014~
-~14045~^~432~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2013~
-~14045~^~435~^66.^0^^~4~^~NC~^^^^^^^^^^~05/01/2014~
-~14045~^~601~^3.^0^^~8~^~LC~^^^^^^^^^^~05/01/2013~
-~14047~^~208~^448.^0^^~4~^~NC~^^^^^^^^^^~06/01/2015~
-~14047~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2013~
-~14047~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2013~
-~14047~^~268~^1876.^0^^~4~^~NC~^^^^^^^^^^~06/01/2015~
-~14047~^~301~^364.^0^^~9~^~MC~^^^^^^^^^^~05/01/2013~
-~14047~^~304~^385.^0^^~8~^~LC~^^^^^^^^^^~05/01/2013~
-~14047~^~305~^385.^0^^~8~^~LC~^^^^^^^^^^~05/01/2013~
-~14047~^~306~^247.^0^^~9~^~MC~^^^^^^^^^^~05/01/2013~
-~14047~^~307~^472.^0^^~9~^~MC~^^^^^^^^^^~05/01/2013~
-~14047~^~318~^3447.^0^^~9~^~MC~^^^^^^^^^^~07/01/2013~
-~14047~^~319~^1034.^0^^~4~^~NR~^^^^^^^^^^~06/01/2014~
-~14047~^~320~^1034.^0^^~4~^~NC~^^^^^^^^^^~06/01/2014~
-~14047~^~321~^1.^0^^~4~^~FLC~^^^^^^^^^^~05/01/2013~
-~14047~^~322~^0.^0^^~4~^~FLC~^^^^^^^^^^~05/01/2013~
-~14047~^~324~^385.^0^^~8~^~LC~^^^^^^^^^^~05/01/2013~
-~14047~^~334~^0.^0^^~4~^~FLC~^^^^^^^^^^~05/01/2013~
-~14047~^~337~^0.^0^^~4~^~FLC~^^^^^^^^^^~05/01/2013~
-~14047~^~338~^0.^0^^~4~^~FLC~^^^^^^^^^^~05/01/2013~
-~14047~^~417~^385.^0^^~8~^~LC~^^^^^^^^^^~05/01/2013~
-~14047~^~431~^384.^0^^~4~^~NR~^^^^^^^^^^~05/01/2013~
-~14047~^~432~^1.^0^^~4~^~FLC~^^^^^^^^^^~05/01/2013~
-~14047~^~435~^653.^0^^~4~^~NC~^^^^^^^^^^~05/01/2013~
-~14047~^~601~^5.^0^^~9~^~MC~^^^^^^^^^^~05/01/2013~
-~14048~^~208~^38.^1^^~8~^~LC~^^^^^^^^^^~12/01/2011~
-~14048~^~262~^0.^0^^~4~^~BFSN~^~09214~^^^^^^^^^~12/01/2011~
-~14048~^~263~^0.^0^^~4~^~BFSN~^~09214~^^^^^^^^^~12/01/2011~
-~14048~^~268~^159.^0^^~8~^~LC~^^^^^^^^^^~12/01/2011~
-~14048~^~301~^9.^0^^~4~^~BFSN~^~09214~^^^^^^^^^~12/01/2011~
-~14048~^~304~^10.^0^^~4~^~BFSN~^~09214~^^^^^^^^^~12/01/2011~
-~14048~^~305~^16.^0^^~4~^~BFSN~^~09214~^^^^^^^^^~12/01/2011~
-~14048~^~306~^192.^0^^~4~^~BFSN~^~09214~^^^^^^^^^~12/01/2011~
-~14048~^~307~^10.^1^^~8~^~LC~^^^^^^^^^^~12/01/2011~
-~14048~^~318~^400.^1^^~8~^~LC~^^^^^^^^^^~12/01/2011~
-~14048~^~319~^0.^0^^~4~^~BFSN~^~09214~^^^^^^^^^~12/01/2011~
-~14048~^~320~^20.^0^^~4~^~NC~^~09214~^^^^^^^^^~12/01/2011~
-~14048~^~321~^232.^0^^~4~^~BNA~^~09436~^^^^^^^^^~12/01/2011~
-~14048~^~322~^0.^0^^~4~^~BNA~^~09436~^^^^^^^^^~12/01/2011~
-~14048~^~324~^0.^0^^~4~^~BFSN~^~09214~^^^^^^^^^~12/01/2011~
-~14048~^~334~^15.^0^^~4~^~BNA~^~09436~^^^^^^^^^~12/01/2011~
-~14048~^~337~^0.^0^^~4~^~BFSN~^~09214~^^^^^^^^^~12/01/2011~
-~14048~^~338~^116.^0^^~4~^~BFSN~^~09214~^^^^^^^^^~12/01/2011~
-~14048~^~417~^44.^0^^~4~^~BFSN~^~09214~^^^^^^^^^~12/01/2011~
-~14048~^~431~^0.^0^^~4~^~BFSN~^~09214~^^^^^^^^^~12/01/2011~
-~14048~^~432~^44.^0^^~4~^~BFSN~^~09214~^^^^^^^^^~12/01/2011~
-~14048~^~435~^44.^0^^~4~^~NC~^~09214~^^^^^^^^^~12/01/2011~
-~14048~^~601~^0.^0^^~4~^~BFSN~^~09214~^^^^^^^^^~12/01/2011~
-~14050~^~208~^231.^0^^~4~^~NC~^^^^^^^^^^~05/01/1986~
-~14050~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~11/01/2002~
-~14050~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~11/01/2002~
-~14050~^~268~^967.^0^^~4~^^^^^^^^^^^~03/01/2006~
-~14050~^~301~^0.^4^^~1~^^^^^^^^^^^~05/01/1986~
-~14050~^~304~^0.^2^^~1~^^^^^^^^^^^~05/01/1986~
-~14050~^~305~^5.^1^^~1~^^^^^^^^^^^~05/01/1986~
-~14050~^~306~^2.^4^^~1~^^^^^^^^^^^~05/01/1986~
-~14050~^~307~^1.^5^^~1~^^^^^^^^^^^~05/01/1986~
-~14050~^~318~^0.^0^^~1~^^^^^^^^^^^~05/01/1986~
-~14050~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2002~
-~14050~^~320~^0.^0^^~1~^~AS~^^^^^^^^^^~07/01/2015~
-~14050~^~321~^0.^0^^~7~^~Z~^^^^^^^^^^~11/01/2002~
-~14050~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~11/01/2002~
-~14050~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~
-~14050~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~11/01/2002~
-~14050~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~11/01/2002~
-~14050~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~11/01/2002~
-~14050~^~417~^0.^1^^~1~^^^^^^^^^^^~05/01/1986~
-~14050~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~
-~14050~^~432~^0.^1^^~1~^^^^^^^^^^^~05/01/1986~
-~14050~^~435~^0.^0^^~4~^~NC~^^^^^^^^^^~12/01/2006~
-~14050~^~601~^0.^0^^~1~^^^^^^^^^^^~05/01/1986~
-~14051~^~208~^231.^0^^~4~^~NC~^^^^^^^^^^~05/01/1986~
-~14051~^~268~^967.^0^^~4~^^^^^^^^^^^~06/01/2005~
-~14051~^~301~^0.^3^^~1~^^^^^^^^^^^~05/01/1986~
-~14051~^~304~^0.^3^^~1~^^^^^^^^^^^~05/01/1986~
-~14051~^~305~^5.^1^^~1~^^^^^^^^^^^~05/01/1986~
-~14051~^~306~^1.^3^^~1~^^^^^^^^^^^~05/01/1986~
-~14051~^~307~^1.^4^^~1~^^^^^^^^^^^~05/01/1986~
-~14051~^~318~^0.^0^^~1~^^^^^^^^^^^~05/01/1986~
-~14051~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2002~
-~14051~^~417~^0.^2^^~1~^^^^^^^^^^^~05/01/1986~
-~14051~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~
-~14051~^~432~^0.^2^^~1~^^^^^^^^^^^~05/01/1986~
-~14051~^~435~^0.^0^^~4~^~NC~^^^^^^^^^^~05/01/2006~
-~14051~^~601~^0.^0^^~1~^^^^^^^^^^^~05/01/1986~
-~14052~^~208~^250.^0^^~4~^~NC~^^^^^^^^^^~07/01/2003~
-~14052~^~268~^1046.^0^^~4~^~NC~^^^^^^^^^^~07/01/2003~
-~14052~^~301~^0.^244^0.^~6~^~JA~^^^1^0.^0.^1^0.^1.^~4~^~11/01/2002~
-~14052~^~304~^0.^242^0.^~6~^~JA~^^^1^0.^0.^1^0.^0.^~4~^~11/01/2002~
-~14052~^~305~^3.^28^2.^~6~^~JA~^^^1^0.^5.^1^-31.^37.^~4~^~11/01/2002~
-~14052~^~306~^1.^258^0.^~6~^~JA~^^^1^1.^2.^1^-6.^8.^~4~^~11/01/2002~
-~14052~^~307~^0.^261^0.^~6~^~JA~^^^1^0.^1.^1^0.^1.^~4~^~11/01/2002~
-~14052~^~318~^0.^0^^~1~^^^^^^^^^^^~05/01/1986~
-~14052~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2002~
-~14052~^~320~^0.^0^^~1~^~AS~^^^^^^^^^^~07/01/2003~
-~14052~^~417~^0.^10^^~1~^^^^^^^^^^^~05/01/1986~
-~14052~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~
-~14052~^~432~^0.^10^^~1~^^^^^^^^^^^~07/01/2003~
-~14052~^~435~^0.^0^^~4~^~NC~^^^^^^^^^^~05/01/2006~
-~14052~^~601~^0.^0^^~1~^^^^^^^^^^^~05/01/1986~
-~14054~^~208~^50.^0^^~8~^~LC~^^^^^^^^^^~05/01/2013~
-~14054~^~262~^0.^0^^~4~^~FLC~^^^^^^^^^^~05/01/2013~
-~14054~^~263~^4.^0^^~4~^~FLC~^^^^^^^^^^~05/01/2013~
-~14054~^~268~^209.^0^^~8~^~LC~^^^^^^^^^^~05/01/2013~
-~14054~^~301~^188.^0^^~8~^~LC~^^^^^^^^^^~05/01/2013~
-~14054~^~304~^12.^0^^~8~^~LC~^^^^^^^^^^~05/01/2013~
-~14054~^~305~^19.^0^^~4~^~FLC~^^^^^^^^^^~05/01/2013~
-~14054~^~306~^75.^0^^~8~^~LC~^^^^^^^^^^~05/01/2013~
-~14054~^~307~^71.^0^^~8~^~LC~^^^^^^^^^^~05/01/2013~
-~14054~^~318~^208.^0^^~8~^~LC~^^^^^^^^^^~05/01/2013~
-~14054~^~319~^62.^0^^~4~^~NR~^^^^^^^^^^~05/01/2013~
-~14054~^~320~^63.^0^^~4~^~NC~^^^^^^^^^^~05/01/2013~
-~14054~^~321~^0.^0^^~4~^~FLC~^^^^^^^^^^~05/01/2013~
-~14054~^~322~^0.^0^^~4~^~FLC~^^^^^^^^^^~05/01/2013~
-~14054~^~324~^42.^0^^~8~^~LC~^^^^^^^^^^~05/01/2013~
-~14054~^~334~^0.^0^^~4~^~FLC~^^^^^^^^^^~05/01/2013~
-~14054~^~337~^0.^0^^~4~^~FLC~^^^^^^^^^^~05/01/2013~
-~14054~^~338~^0.^0^^~4~^~FLC~^^^^^^^^^^~05/01/2013~
-~14054~^~417~^1.^0^^~4~^~FLC~^^^^^^^^^^~05/01/2013~
-~14054~^~431~^0.^0^^~4~^~FLC~^^^^^^^^^^~05/01/2013~
-~14054~^~432~^1.^0^^~4~^~FLC~^^^^^^^^^^~05/01/2013~
-~14054~^~435~^1.^0^^~4~^~NC~^^^^^^^^^^~05/01/2013~
-~14054~^~601~^0.^1^^~11~^~JO~^^^1^0.^0.^1^^^^~05/01/2013~
-~14054~^~638~^0.^0^^~4~^~FLC~^^^^^^^^^^~05/01/2013~
-~14054~^~639~^0.^0^^~4~^~FLC~^^^^^^^^^^~05/01/2013~
-~14054~^~641~^3.^0^^~4~^~FLC~^^^^^^^^^^~05/01/2013~
-~14055~^~208~^433.^0^^~4~^~NC~^^^^^^^^^^~11/01/2016~
-~14055~^~262~^0.^0^^~4~^~BFZN~^~14047~^^^^^^^^^~05/01/2013~
-~14055~^~263~^0.^0^^~4~^~BFZN~^~14047~^^^^^^^^^~05/01/2013~
-~14055~^~268~^1810.^0^^~4~^~NC~^^^^^^^^^^~11/01/2016~
-~14055~^~301~^1039.^0^^~9~^~MC~^^^^^^^^^^~06/01/2014~
-~14055~^~304~^473.^0^^~9~^~MC~^^^^^^^^^^~05/01/2013~
-~14055~^~305~^563.^0^^~9~^~MC~^^^^^^^^^^~05/01/2013~
-~14055~^~306~^752.^0^^~9~^~MC~^^^^^^^^^^~05/01/2013~
-~14055~^~307~^495.^0^^~9~^~MC~^^^^^^^^^^~05/01/2013~
-~14055~^~318~^2886.^0^^~4~^~NC~^^^^^^^^^^~11/01/2016~
-~14055~^~319~^865.^0^^~4~^~BFZN~^~14047~^^^^^^^^^~05/01/2013~
-~14055~^~320~^865.^0^^~4~^~NC~^~14047~^^^^^^^^^~05/01/2013~
-~14055~^~321~^1.^0^^~4~^~BFZN~^~14047~^^^^^^^^^~05/01/2013~
-~14055~^~322~^0.^0^^~4~^~BFZN~^~14047~^^^^^^^^^~05/01/2013~
-~14055~^~324~^384.^0^^~9~^~MC~^^^^^^^^^^~05/01/2013~
-~14055~^~334~^0.^0^^~4~^~BFZN~^~14047~^^^^^^^^^~05/01/2013~
-~14055~^~337~^0.^0^^~4~^~BFZN~^~14047~^^^^^^^^^~05/01/2013~
-~14055~^~338~^0.^0^^~4~^~BFZN~^~14047~^^^^^^^^^~05/01/2013~
-~14055~^~417~^385.^0^^~8~^~LC~^^^^^^^^^^~05/01/2013~
-~14055~^~431~^384.^0^^~4~^~BFZN~^~14047~^^^^^^^^^~05/01/2013~
-~14055~^~432~^1.^0^^~4~^~BFZN~^~14047~^^^^^^^^^~05/01/2013~
-~14055~^~435~^653.^0^^~4~^~NC~^~14047~^^^^^^^^^~05/01/2013~
-~14055~^~601~^6.^0^^~9~^~MC~^^^^^^^^^^~05/01/2013~
-~14056~^~208~^62.^0^^~4~^~NC~^^^^^^^^^^~06/01/2015~
-~14056~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2013~
-~14056~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2013~
-~14056~^~268~^260.^0^^~4~^~NC~^^^^^^^^^^~06/01/2015~
-~14056~^~301~^19.^1^^~1~^~A~^^^^^^^^^^~06/01/2015~
-~14056~^~304~^11.^1^^~1~^~A~^^^^^^^^^^~06/01/2015~
-~14056~^~305~^13.^1^^~1~^~A~^^^^^^^^^^~06/01/2015~
-~14056~^~306~^130.^1^^~1~^~A~^^^^^^^^^^~06/01/2015~
-~14056~^~307~^13.^1^^~1~^~A~^^^^^^^^^^~06/01/2015~
-~14056~^~318~^9698.^0^^~1~^~AS~^^^^^^^^^^~07/01/2015~
-~14056~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2015~
-~14056~^~320~^485.^0^^~1~^~AS~^^^^^^^^^^~07/01/2015~
-~14056~^~321~^5784.^1^^~1~^~A~^^^^^^^^^^~07/01/2015~
-~14056~^~322~^46.^1^^~1~^~A~^^^^^^^^^^~07/01/2015~
-~14056~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2015~
-~14056~^~334~^23.^1^^~1~^~A~^^^^^^^^^^~07/01/2015~
-~14056~^~337~^899.^1^^~1~^~A~^^^^^^^^^^~07/01/2015~
-~14056~^~338~^783.^1^^~1~^~A~^^^^^^^^^^~07/01/2015~
-~14056~^~417~^4.^1^^~1~^~A~^^^^^^^^^~1~^~06/01/2015~
-~14056~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2015~
-~14056~^~432~^4.^0^^~4~^~NR~^^^^^^^^^^~06/01/2015~
-~14056~^~435~^4.^0^^~4~^~NC~^^^^^^^^^^~06/01/2015~
-~14056~^~601~^0.^0^^~4~^~BFZN~^~14623~^^^^^^^^^~05/01/2013~
-~14057~^~208~^160.^0^^~4~^~NC~^^^^^^^^^^~11/01/2002~
-~14057~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~11/01/2002~
-~14057~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~11/01/2002~
-~14057~^~268~^671.^0^^~4~^~NC~^^^^^^^^^^~05/01/2006~
-~14057~^~301~^8.^26^0.^~1~^^^^^^^^^^^~05/01/1986~
-~14057~^~304~^9.^19^0.^~1~^^^^^^^^^^^~05/01/1986~
-~14057~^~305~^9.^2^^~1~^^^^^^^^^^^~05/01/1986~
-~14057~^~306~^92.^81^8.^~1~^^^^^^^^^^^~05/01/1986~
-~14057~^~307~^9.^89^1.^~1~^^^^^^^^^^^~05/01/1986~
-~14057~^~318~^0.^0^^~4~^^^^^^^^^^^~05/01/1986~
-~14057~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2002~
-~14057~^~320~^0.^0^^~1~^~AS~^^^^^^^^^^~11/01/2002~
-~14057~^~321~^0.^0^^~7~^~Z~^^^^^^^^^^~11/01/2002~
-~14057~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~11/01/2002~
-~14057~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~
-~14057~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~11/01/2002~
-~14057~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~11/01/2002~
-~14057~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~11/01/2002~
-~14057~^~417~^0.^3^0.^~1~^^^^^^^^^^^~05/01/1986~
-~14057~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~
-~14057~^~432~^0.^3^0.^~1~^^^^^^^^^^^~11/01/2002~
-~14057~^~435~^0.^0^^~4~^~NC~^^^^^^^^^^~10/01/2006~
-~14057~^~601~^0.^0^^~1~^^^^^^^^^^^~05/01/1986~
-~14058~^~208~^359.^0^^~4~^~NC~^^^^^^^^^^~05/01/2013~
-~14058~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2013~
-~14058~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2013~
-~14058~^~268~^1503.^0^^~4~^~NC~^^^^^^^^^^~05/01/2013~
-~14058~^~301~^698.^0^^~8~^~LC~^^^^^^^^^^~05/01/2013~
-~14058~^~304~^233.^0^^~8~^~LC~^^^^^^^^^^~05/01/2013~
-~14058~^~305~^581.^0^^~8~^~LC~^^^^^^^^^^~05/01/2013~
-~14058~^~306~^872.^0^^~8~^~LC~^^^^^^^^^^~05/01/2013~
-~14058~^~307~^372.^0^^~8~^~LC~^^^^^^^^^^~05/01/2013~
-~14058~^~318~^2907.^0^^~8~^~LC~^^^^^^^^^^~07/01/2015~
-~14058~^~319~^872.^0^^~4~^~NR~^^^^^^^^^^~05/01/2013~
-~14058~^~320~^872.^0^^~4~^~NC~^^^^^^^^^^~05/01/2013~
-~14058~^~321~^1.^0^^~4~^~BFZN~^~01113~^^^^^^^^^~05/01/2013~
-~14058~^~322~^0.^0^^~4~^~BFZN~^~01113~^^^^^^^^^~05/01/2013~
-~14058~^~324~^0.^0^^~4~^~BFZN~^~01113~^^^^^^^^^~05/01/2013~
-~14058~^~334~^0.^0^^~4~^~BFZN~^~01113~^^^^^^^^^~05/01/2013~
-~14058~^~337~^0.^0^^~4~^~BFZN~^~01113~^^^^^^^^^~05/01/2013~
-~14058~^~338~^0.^0^^~4~^~BFZN~^~01113~^^^^^^^^^~05/01/2013~
-~14058~^~417~^233.^0^^~8~^~LC~^^^^^^^^^^~05/01/2013~
-~14058~^~431~^233.^0^^~4~^~O~^^^^^^^^^^~05/01/2013~
-~14058~^~432~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2013~
-~14058~^~435~^395.^0^^~4~^~NC~^^^^^^^^^^~05/01/2013~
-~14058~^~601~^12.^0^^~8~^~LC~^^^^^^^^^^~05/01/2013~
-~14060~^~208~^62.^0^^~4~^~NC~^^^^^^^^^^~05/01/2013~
-~14060~^~262~^38.^0^^~4~^~NR~^^^^^^^^^^~05/01/2013~
-~14060~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2013~
-~14060~^~268~^258.^0^^~4~^~NC~^^^^^^^^^^~05/01/2013~
-~14060~^~301~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2013~
-~14060~^~304~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2013~
-~14060~^~305~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2013~
-~14060~^~306~^10.^0^^~8~^~LC~^^^^^^^^^^~05/01/2013~
-~14060~^~307~^48.^0^^~8~^~LC~^^^^^^^^^^~05/01/2013~
-~14060~^~318~^0.^0^^~1~^~AS~^^^^^^^^^^~05/01/2013~
-~14060~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2013~
-~14060~^~320~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2013~
-~14060~^~321~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2013~
-~14060~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2013~
-~14060~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2013~
-~14060~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2013~
-~14060~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2013~
-~14060~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2013~
-~14060~^~417~^167.^0^^~8~^~LC~^^^^^^^^^^~05/01/2013~
-~14060~^~431~^167.^0^^~4~^~NR~^^^^^^^^^^~05/01/2013~
-~14060~^~432~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2013~
-~14060~^~435~^283.^0^^~4~^~NC~^^^^^^^^^^~05/01/2013~
-~14060~^~601~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2013~
-~14061~^~208~^4.^0^^~8~^~LC~^^^^^^^^^^~05/01/2013~
-~14061~^~262~^32.^0^^~8~^~LC~^^^^^^^^^^~05/01/2013~
-~14061~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2013~
-~14061~^~268~^17.^0^^~8~^~LC~^^^^^^^^^^~05/01/2013~
-~14061~^~301~^0.^0^^~8~^~LC~^^^^^^^^^^~05/01/2013~
-~14061~^~304~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2013~
-~14061~^~305~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2013~
-~14061~^~306~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2013~
-~14061~^~307~^42.^0^^~8~^~LC~^^^^^^^^^^~05/01/2013~
-~14061~^~318~^0.^0^^~8~^~LC~^^^^^^^^^^~05/01/2013~
-~14061~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2013~
-~14061~^~320~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2013~
-~14061~^~321~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2013~
-~14061~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2013~
-~14061~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2013~
-~14061~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2013~
-~14061~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2013~
-~14061~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2013~
-~14061~^~417~^167.^0^^~4~^~NR~^^^^^^^^^^~05/01/2013~
-~14061~^~431~^167.^0^^~4~^~NR~^^^^^^^^^^~05/01/2013~
-~14061~^~432~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2013~
-~14061~^~435~^283.^0^^~4~^~NC~^^^^^^^^^^~05/01/2013~
-~14061~^~601~^0.^0^^~8~^~LC~^^^^^^^^^^~05/01/2013~
-~14062~^~208~^105.^0^^~9~^~MC~^^^^^^^^^^~05/01/2013~
-~14062~^~262~^0.^0^^~9~^~MC~^^^^^^^^^^~05/01/2013~
-~14062~^~263~^0.^0^^~4~^~BFZN~^^^^^^^^^^~05/01/2013~
-~14062~^~268~^441.^0^^~9~^~MC~^^^^^^^^^^~05/01/2013~
-~14062~^~301~^127.^0^^~9~^~MC~^^^^^^^^^^~05/01/2013~
-~14062~^~304~^42.^0^^~9~^~MC~^^^^^^^^^^~05/01/2013~
-~14062~^~305~^105.^0^^~9~^~MC~^^^^^^^^^^~05/01/2013~
-~14062~^~306~^156.^0^^~9~^~MC~^^^^^^^^^^~05/01/2013~
-~14062~^~307~^84.^0^^~9~^~MC~^^^^^^^^^^~05/01/2013~
-~14062~^~318~^527.^0^^~4~^~NC~^^^^^^^^^^~11/01/2016~
-~14062~^~319~^158.^0^^~4~^~BFZN~^^^^^^^^^^~05/01/2013~
-~14062~^~320~^158.^0^^~4~^~NC~^^^^^^^^^^~05/01/2013~
-~14062~^~321~^0.^0^^~4~^~BFZN~^^^^^^^^^^~05/01/2013~
-~14062~^~322~^0.^0^^~4~^~BFZN~^^^^^^^^^^~05/01/2013~
-~14062~^~324~^42.^0^^~9~^~MC~^^^^^^^^^^~05/01/2013~
-~14062~^~334~^0.^0^^~4~^~BFZN~^^^^^^^^^^~05/01/2013~
-~14062~^~337~^0.^0^^~4~^~BFZN~^^^^^^^^^^~05/01/2013~
-~14062~^~338~^0.^0^^~4~^~BFZN~^^^^^^^^^^~05/01/2013~
-~14062~^~417~^42.^0^^~9~^~MC~^^^^^^^^^^~05/01/2013~
-~14062~^~431~^42.^0^^~4~^~O~^^^^^^^^^^~04/01/2014~
-~14062~^~432~^0.^0^^~4~^~BFZN~^^^^^^^^^^~05/01/2013~
-~14062~^~435~^72.^0^^~4~^~NC~^^^^^^^^^^~04/01/2014~
-~14062~^~601~^2.^0^^~9~^~MC~^^^^^^^^^^~05/01/2013~
-~14063~^~208~^350.^0^^~4~^~NC~^^^^^^^^^^~07/01/2017~
-~14063~^~262~^1.^0^^~9~^~MC~^~14315~^^^^^^^^^~07/01/2013~
-~14063~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2013~
-~14063~^~268~^1465.^0^^~4~^~NC~^^^^^^^^^^~07/01/2017~
-~14063~^~301~^909.^0^^~8~^~LC~^^^^^^^^^^~05/01/2013~
-~14063~^~304~^410.^0^^~4~^~BFZN~^~43260~^^^^^^^^^~05/01/2013~
-~14063~^~305~^500.^0^^~4~^~BFZN~^~43260~^^^^^^^^^~05/01/2013~
-~14063~^~306~^1705.^0^^~4~^~BFZN~^~43260~^^^^^^^^^~05/01/2013~
-~14063~^~307~^500.^0^^~8~^~LC~^^^^^^^^^^~01/01/2018~
-~14063~^~318~^0.^0^^~8~^~LC~^^^^^^^^^^~05/01/2013~
-~14063~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2013~
-~14063~^~320~^0.^0^^~1~^~AS~^^^^^^^^^^~07/01/2017~
-~14063~^~321~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2013~
-~14063~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2013~
-~14063~^~324~^0.^0^^~8~^~LC~^^^^^^^^^^~05/01/2013~
-~14063~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2013~
-~14063~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2013~
-~14063~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2013~
-~14063~^~417~^7.^0^^~4~^~BFZN~^~14315~^^^^^^^^^~05/01/2013~
-~14063~^~431~^0.^0^^~4~^~BFZN~^~14315~^^^^^^^^^~05/01/2013~
-~14063~^~432~^7.^0^^~4~^~BFZN~^~14315~^^^^^^^^^~05/01/2013~
-~14063~^~435~^7.^0^^~4~^~NC~^~14315~^^^^^^^^^~05/01/2013~
-~14063~^~601~^0.^0^^~8~^~LC~^^^^^^^^^^~05/01/2013~
-~14064~^~208~^21.^0^^~8~^~LC~^^^^^^^^^^~05/01/2013~
-~14064~^~262~^0.^0^^~4~^~BFZN~^~42270~^^^^^^^^^~05/01/2013~
-~14064~^~263~^0.^0^^~4~^~BFZN~^~42270~^^^^^^^^^~05/01/2013~
-~14064~^~268~^87.^0^^~8~^~LC~^^^^^^^^^^~05/01/2013~
-~14064~^~301~^0.^0^^~8~^~LC~^^^^^^^^^^~05/01/2013~
-~14064~^~304~^10.^0^^~8~^~LC~^^^^^^^^^^~05/01/2013~
-~14064~^~305~^4.^0^^~4~^~BFZN~^~42270~^^^^^^^^^~05/01/2013~
-~14064~^~306~^188.^0^^~8~^~LC~^^^^^^^^^^~05/01/2013~
-~14064~^~307~^4.^0^^~8~^~LC~^^^^^^^^^^~05/01/2013~
-~14064~^~318~^208.^0^^~8~^~LC~^^^^^^^^^^~05/01/2013~
-~14064~^~319~^0.^0^^~4~^~NR~^^^^^^^^^^~05/01/2013~
-~14064~^~320~^10.^0^^~4~^~O~^^^^^^^^^^~07/01/2013~
-~14064~^~321~^79.^0^^~4~^~BFZN~^~14327~^^^^^^^^^~07/01/2013~
-~14064~^~322~^2.^0^^~4~^~BFZN~^~14327~^^^^^^^^^~07/01/2013~
-~14064~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2013~
-~14064~^~334~^60.^0^^~4~^~BFZN~^~14327~^^^^^^^^^~07/01/2013~
-~14064~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2013~
-~14064~^~338~^47.^0^^~4~^~BFZN~^~14327~^^^^^^^^^~07/01/2013~
-~14064~^~417~^10.^0^^~8~^~LC~^^^^^^^^^^~05/01/2013~
-~14064~^~431~^0.^0^^~4~^~BFZN~^~42270~^^^^^^^^^~05/01/2013~
-~14064~^~432~^10.^0^^~4~^~NR~^^^^^^^^^^~05/01/2013~
-~14064~^~435~^10.^0^^~4~^~NC~^^^^^^^^^^~05/01/2013~
-~14064~^~601~^0.^0^^~8~^~LC~^^^^^^^^^^~05/01/2013~
-~14065~^~208~^45.^0^^~8~^~LC~^^^^^^^^^^~05/01/2013~
-~14065~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2013~
-~14065~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2013~
-~14065~^~268~^188.^0^^~8~^~LC~^^^^^^^^^^~05/01/2013~
-~14065~^~301~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2013~
-~14065~^~304~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2013~
-~14065~^~305~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2013~
-~14065~^~306~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2013~
-~14065~^~307~^8.^0^^~8~^~LC~^^^^^^^^^^~05/01/2013~
-~14065~^~318~^0.^0^^~1~^~AS~^^^^^^^^^^~05/01/2013~
-~14065~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2013~
-~14065~^~320~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2013~
-~14065~^~321~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2013~
-~14065~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2013~
-~14065~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2013~
-~14065~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2013~
-~14065~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2013~
-~14065~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2013~
-~14065~^~417~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2013~
-~14065~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2013~
-~14065~^~432~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2013~
-~14065~^~435~^0.^0^^~4~^~NC~^^^^^^^^^^~05/01/2013~
-~14065~^~601~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2013~
-~14066~^~208~^352.^0^^~4~^~FLC~^^^^^^^^^^~05/01/2013~
-~14066~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2013~
-~14066~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2013~
-~14066~^~268~^1472.^0^^~4~^~FLC~^^^^^^^^^^~05/01/2013~
-~14066~^~301~^469.^0^^~8~^~LC~^^^^^^^^^^~05/01/2013~
-~14066~^~304~^195.^0^^~4~^~FLC~^^^^^^^^^^~05/01/2013~
-~14066~^~305~^1321.^0^^~4~^~FLC~^^^^^^^^^^~05/01/2013~
-~14066~^~306~^500.^0^^~8~^~LC~^^^^^^^^^^~05/01/2013~
-~14066~^~307~^156.^0^^~8~^~LC~^^^^^^^^^^~05/01/2013~
-~14066~^~318~^0.^0^^~8~^~LC~^^^^^^^^^^~05/01/2013~
-~14066~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2013~
-~14066~^~320~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2013~
-~14066~^~321~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2013~
-~14066~^~322~^0.^0^^~4~^~FLC~^^^^^^^^^^~05/01/2013~
-~14066~^~324~^0.^0^^~4~^~FLC~^^^^^^^^^^~05/01/2013~
-~14066~^~334~^0.^0^^~4~^~FLC~^^^^^^^^^^~05/01/2013~
-~14066~^~337~^0.^0^^~4~^~FLC~^^^^^^^^^^~05/01/2013~
-~14066~^~338~^0.^0^^~4~^~FLC~^^^^^^^^^^~05/01/2013~
-~14066~^~417~^33.^0^^~4~^~FLC~^^^^^^^^^^~05/01/2013~
-~14066~^~431~^0.^0^^~4~^~FLC~^^^^^^^^^^~05/01/2013~
-~14066~^~432~^33.^0^^~4~^~FLC~^^^^^^^^^^~05/01/2013~
-~14066~^~435~^33.^0^^~4~^~NC~^^^^^^^^^^~05/01/2013~
-~14066~^~601~^16.^0^^~8~^~LC~^^^^^^^^^^~05/01/2013~
-~14067~^~208~^388.^0^^~4~^~NC~^^^^^^^^^^~05/01/2013~
-~14067~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2013~
-~14067~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2013~
-~14067~^~268~^1622.^0^^~4~^~NC~^^^^^^^^^^~05/01/2013~
-~14067~^~301~^178.^0^^~8~^~LC~^^^^^^^^^^~05/01/2013~
-~14067~^~304~^64.^0^^~4~^~BFFN~^~16122~^^^^^^^^^~05/01/2013~
-~14067~^~305~^1272.^0^^~4~^~BFFN~^~16122~^^^^^^^^^~05/01/2013~
-~14067~^~306~^933.^0^^~8~^~LC~^^^^^^^^^^~05/01/2013~
-~14067~^~307~^733.^0^^~8~^~LC~^^^^^^^^^^~05/01/2013~
-~14067~^~318~^0.^0^^~8~^~LC~^^^^^^^^^^~05/01/2013~
-~14067~^~319~^0.^0^^~4~^~BFFN~^~16122~^^^^^^^^^~05/01/2013~
-~14067~^~320~^0.^0^^~4~^~BFFN~^~16122~^^^^^^^^^~05/01/2013~
-~14067~^~321~^0.^0^^~4~^~BFFN~^~16122~^^^^^^^^^~05/01/2013~
-~14067~^~322~^0.^0^^~4~^~BFFN~^~16122~^^^^^^^^^~05/01/2013~
-~14067~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2013~
-~14067~^~334~^0.^0^^~4~^~BFFN~^~16122~^^^^^^^^^~05/01/2013~
-~14067~^~337~^0.^0^^~4~^~BFFN~^~16122~^^^^^^^^^~05/01/2013~
-~14067~^~338~^0.^0^^~4~^~BFFN~^~16122~^^^^^^^^^~05/01/2013~
-~14067~^~417~^289.^0^^~4~^~BFFN~^~16122~^^^^^^^^^~05/01/2013~
-~14067~^~431~^0.^0^^~4~^~BFFN~^~16122~^^^^^^^^^~05/01/2013~
-~14067~^~432~^289.^0^^~4~^~BFFN~^~16122~^^^^^^^^^~05/01/2013~
-~14067~^~435~^289.^0^^~4~^~NC~^~16122~^^^^^^^^^~05/01/2013~
-~14067~^~601~^0.^0^^~8~^~LC~^^^^^^^^^^~05/01/2013~
-~14073~^~208~^0.^0^^~8~^~LC~^^^^^^^^^^~05/01/2014~
-~14073~^~262~^13.^0^^~12~^~MA~^^^^^^^^^^~07/01/2015~
-~14073~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2014~
-~14073~^~268~^0.^0^^~8~^~LC~^^^^^^^^^^~05/01/2014~
-~14073~^~301~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2014~
-~14073~^~304~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2014~
-~14073~^~305~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2014~
-~14073~^~306~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2014~
-~14073~^~307~^6.^0^^~12~^~MA~^^^^^^^^^^~07/01/2015~
-~14073~^~318~^0.^0^^~1~^~AS~^^^^^^^^^^~05/01/2014~
-~14073~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2014~
-~14073~^~320~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2014~
-~14073~^~321~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2014~
-~14073~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2014~
-~14073~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2014~
-~14073~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2014~
-~14073~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2014~
-~14073~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2014~
-~14073~^~417~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2014~
-~14073~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2014~
-~14073~^~432~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2014~
-~14073~^~435~^0.^0^^~4~^~NC~^^^^^^^^^^~05/01/2014~
-~14073~^~601~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2014~
-~14074~^~208~^0.^0^^~8~^~LC~^^^^^^^^^^~05/01/2014~
-~14074~^~262~^0.^0^^~8~^~LC~^^^^^^^^^^~05/01/2014~
-~14074~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2014~
-~14074~^~268~^0.^0^^~8~^~LC~^^^^^^^^^^~05/01/2014~
-~14074~^~301~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2014~
-~14074~^~304~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2014~
-~14074~^~305~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2014~
-~14074~^~306~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2014~
-~14074~^~307~^6.^0^^~4~^~O~^^^^^^^^^^~05/01/2014~
-~14074~^~318~^0.^0^^~1~^~AS~^^^^^^^^^^~05/01/2014~
-~14074~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2014~
-~14074~^~320~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2014~
-~14074~^~321~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2014~
-~14074~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2014~
-~14074~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2014~
-~14074~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2014~
-~14074~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2014~
-~14074~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2014~
-~14074~^~417~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2014~
-~14074~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2014~
-~14074~^~432~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2014~
-~14074~^~435~^0.^0^^~4~^~NC~^^^^^^^^^^~05/01/2014~
-~14074~^~601~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2014~
-~14075~^~208~^0.^0^^~8~^~LC~^^^^^^^^^^~05/01/2014~
-~14075~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2014~
-~14075~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2014~
-~14075~^~268~^0.^0^^~8~^~LC~^^^^^^^^^^~05/01/2014~
-~14075~^~301~^33.^0^^~8~^~LC~^^^^^^^^^^~05/01/2014~
-~14075~^~304~^11.^0^^~9~^~MC~^^^^^^^^^^~07/01/2014~
-~14075~^~305~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2014~
-~14075~^~306~^2.^0^^~9~^~MC~^^^^^^^^^^~07/01/2014~
-~14075~^~307~^13.^0^^~8~^~LC~^^^^^^^^^^~05/01/2014~
-~14075~^~318~^0.^0^^~1~^~AS~^^^^^^^^^^~05/01/2014~
-~14075~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2014~
-~14075~^~320~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2014~
-~14075~^~321~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2014~
-~14075~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2014~
-~14075~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2014~
-~14075~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2014~
-~14075~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2014~
-~14075~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2014~
-~14075~^~417~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2014~
-~14075~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2014~
-~14075~^~432~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2014~
-~14075~^~435~^0.^0^^~4~^~NC~^^^^^^^^^^~05/01/2014~
-~14075~^~601~^0.^0^^~8~^~LC~^^^^^^^^^^~05/01/2014~
-~14079~^~208~^49.^0^^~8~^~LC~^^^^^^^^^^~05/01/2014~
-~14079~^~262~^15.^0^^~8~^~LC~^^^^^^^^^^~05/01/2014~
-~14079~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2014~
-~14079~^~268~^203.^0^^~8~^~LC~^^^^^^^^^^~05/01/2014~
-~14079~^~301~^13.^0^^~4~^~BFZN~^~14625~^^^^^^^^^~06/01/2015~
-~14079~^~304~^3.^0^^~4~^~BFZN~^~14625~^^^^^^^^^~06/01/2015~
-~14079~^~305~^0.^0^^~8~^~LC~^^^^^^^^^^~06/01/2014~
-~14079~^~306~^2.^0^^~8~^~LC~^^^^^^^^^^~06/01/2014~
-~14079~^~307~^18.^0^^~8~^~LC~^^^^^^^^^^~05/01/2014~
-~14079~^~318~^0.^0^^~1~^~AS~^^^^^^^^^^~06/01/2015~
-~14079~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2015~
-~14079~^~320~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2015~
-~14079~^~321~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2015~
-~14079~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2015~
-~14079~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2014~
-~14079~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2015~
-~14079~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2015~
-~14079~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2015~
-~14079~^~417~^0.^0^^~4~^~BFZN~^~14625~^^^^^^^^^~05/01/2014~
-~14079~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2015~
-~14079~^~432~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2015~
-~14079~^~435~^0.^0^^~4~^~NC~^^^^^^^^^^~05/01/2014~
-~14079~^~601~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2014~
-~14080~^~208~^372.^0^^~4~^~NC~^^^^^^^^^^~06/01/2015~
-~14080~^~262~^0.^0^^~8~^~LC~^^^^^^^^^^~05/01/2014~
-~14080~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2014~
-~14080~^~268~^1556.^0^^~4~^~NC~^^^^^^^^^^~06/01/2015~
-~14080~^~301~^909.^0^^~8~^~LC~^^^^^^^^^^~05/01/2014~
-~14080~^~304~^218.^0^^~8~^~LC~^^^^^^^^^^~05/01/2014~
-~14080~^~305~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2014~
-~14080~^~306~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2014~
-~14080~^~307~^636.^0^^~8~^~LC~^^^^^^^^^^~05/01/2014~
-~14080~^~318~^4545.^0^^~8~^~LC~^^^^^^^^^^~05/01/2014~
-~14080~^~319~^1365.^0^^~4~^~O~^^^^^^^^^^~06/01/2014~
-~14080~^~320~^1365.^0^^~4~^~O~^^^^^^^^^^~06/01/2014~
-~14080~^~321~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2014~
-~14080~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2014~
-~14080~^~324~^364.^0^^~8~^~LC~^^^^^^^^^^~05/01/2014~
-~14080~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2014~
-~14080~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2014~
-~14080~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2014~
-~14080~^~417~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2014~
-~14080~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2014~
-~14080~^~432~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2014~
-~14080~^~435~^0.^0^^~4~^~NC~^^^^^^^^^^~05/01/2014~
-~14080~^~601~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2014~
-~14082~^~208~^0.^0^^~8~^~LC~^^^^^^^^^^~07/01/2014~
-~14082~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~07/01/2014~
-~14082~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~07/01/2014~
-~14082~^~268~^0.^0^^~8~^~LC~^^^^^^^^^^~07/01/2014~
-~14082~^~301~^33.^0^^~8~^~LC~^^^^^^^^^^~07/01/2014~
-~14082~^~304~^11.^0^^~9~^~MC~^^^^^^^^^^~07/01/2014~
-~14082~^~305~^0.^0^^~7~^~Z~^^^^^^^^^^~07/01/2014~
-~14082~^~306~^2.^0^^~9~^~MC~^^^^^^^^^^~07/01/2014~
-~14082~^~307~^13.^0^^~8~^~LC~^^^^^^^^^^~07/01/2014~
-~14082~^~318~^0.^0^^~1~^~AS~^^^^^^^^^^~07/01/2014~
-~14082~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~07/01/2014~
-~14082~^~320~^0.^0^^~7~^~Z~^^^^^^^^^^~07/01/2014~
-~14082~^~321~^0.^0^^~7~^~Z~^^^^^^^^^^~07/01/2014~
-~14082~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~07/01/2014~
-~14082~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~07/01/2014~
-~14082~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~07/01/2014~
-~14082~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~07/01/2014~
-~14082~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~07/01/2014~
-~14082~^~417~^0.^0^^~7~^~Z~^^^^^^^^^^~07/01/2014~
-~14082~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~07/01/2014~
-~14082~^~432~^0.^0^^~7~^~Z~^^^^^^^^^^~07/01/2014~
-~14082~^~435~^0.^0^^~4~^~NC~^^^^^^^^^^~07/01/2014~
-~14082~^~601~^0.^0^^~8~^~LC~^^^^^^^^^^~07/01/2014~
-~14083~^~208~^49.^0^^~4~^~RA~^^^^^^^^^^~05/01/2014~
-~14083~^~262~^0.^0^^~4~^~RA~^^^^^^^^^^~05/01/2014~
-~14083~^~263~^0.^0^^~4~^~RA~^^^^^^^^^^~05/01/2014~
-~14083~^~268~^205.^0^^~4~^~RA~^^^^^^^^^^~05/01/2014~
-~14083~^~301~^234.^0^^~4~^~RA~^^^^^^^^^^~05/01/2014~
-~14083~^~304~^20.^0^^~4~^~RA~^^^^^^^^^^~05/01/2014~
-~14083~^~305~^97.^0^^~4~^~RA~^^^^^^^^^^~05/01/2014~
-~14083~^~306~^158.^0^^~4~^~RA~^^^^^^^^^^~05/01/2014~
-~14083~^~307~^77.^0^^~4~^~RA~^^^^^^^^^^~05/01/2014~
-~14083~^~318~^458.^0^^~4~^~NC~^^^^^^^^^^~05/01/2014~
-~14083~^~319~^137.^0^^~4~^~BFZN~^~42290~^^^^^^^^^~05/01/2014~
-~14083~^~320~^137.^0^^~4~^~NC~^~42290~^^^^^^^^^~05/01/2014~
-~14083~^~321~^0.^0^^~4~^~RA~^^^^^^^^^^~05/01/2014~
-~14083~^~322~^0.^0^^~4~^~RA~^^^^^^^^^^~05/01/2014~
-~14083~^~324~^60.^0^^~4~^~RA~^^^^^^^^^^~05/01/2014~
-~14083~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2014~
-~14083~^~337~^0.^0^^~4~^~RA~^^^^^^^^^^~05/01/2014~
-~14083~^~338~^0.^0^^~4~^~RA~^^^^^^^^^^~05/01/2014~
-~14083~^~417~^5.^0^^~4~^~RA~^^^^^^^^^^~05/01/2014~
-~14083~^~431~^0.^0^^~4~^~RA~^^^^^^^^^^~05/01/2014~
-~14083~^~432~^5.^0^^~4~^~RA~^^^^^^^^^^~05/01/2014~
-~14083~^~435~^5.^0^^~4~^~NC~^^^^^^^^^^~05/01/2014~
-~14083~^~601~^2.^0^^~4~^~RA~^^^^^^^^^^~05/01/2014~
-~14084~^~208~^83.^0^^~4~^~NC~^^^^^^^^^^~10/01/2006~
-~14084~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~11/01/2002~
-~14084~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~11/01/2002~
-~14084~^~268~^347.^0^^~4~^~NC~^^^^^^^^^^~10/01/2006~
-~14084~^~301~^8.^2^^~1~^~A~^^^1^8.^9.^1^^^^~02/01/2005~
-~14084~^~304~^11.^2^^~1~^~A~^^^1^10.^12.^1^^^^~02/01/2005~
-~14084~^~305~^20.^2^^~1~^~A~^^^1^18.^23.^1^^^^~02/01/2005~
-~14084~^~306~^99.^2^^~1~^~A~^^^1^71.^127.^1^^^^~02/01/2005~
-~14084~^~307~^5.^2^^~1~^~A~^^^1^4.^5.^1^^^^~02/01/2005~
-~14084~^~318~^0.^0^^~1~^^^^^^^^^^^~05/01/1986~
-~14084~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2002~
-~14084~^~320~^0.^0^^~1~^~AS~^^^^^^^^^^~03/01/2005~
-~14084~^~321~^0.^0^^~7~^~Z~^^^^^^^^^^~11/01/2002~
-~14084~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~11/01/2002~
-~14084~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~
-~14084~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~11/01/2002~
-~14084~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~11/01/2002~
-~14084~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~11/01/2002~
-~14084~^~417~^1.^2^^~1~^~A~^^^1^1.^1.^^^^~1~^~02/01/2005~
-~14084~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~
-~14084~^~432~^1.^2^^~1~^~A~^^^^^^^^^^~03/01/2005~
-~14084~^~435~^1.^0^^~4~^~NC~^^^^^^^^^^~10/01/2006~
-~14084~^~601~^0.^0^^~1~^^^^^^^^^^^~05/01/1986~
-~14086~^~208~^37.^1^^~8~^~LC~^^^^^^^^^^~12/01/2006~
-~14086~^~268~^154.^0^^~8~^~LC~^^^^^^^^^^~12/01/2006~
-~14086~^~301~^41.^1^^~8~^~LC~^^^^^^^^^^~12/01/2006~
-~14086~^~306~^24.^1^^~8~^~LC~^^^^^^^^^^~12/01/2006~
-~14086~^~307~^29.^1^^~8~^~LC~^^^^^^^^^^~12/01/2006~
-~14086~^~318~^1429.^1^^~8~^~LC~^^^^^^^^^^~12/01/2006~
-~14086~^~601~^0.^1^^~8~^~LC~^^^^^^^^^^~12/01/2006~
-~14087~^~208~^37.^1^^~8~^~LC~^^^^^^^^^^~12/01/2006~
-~14087~^~268~^154.^0^^~8~^~LC~^^^^^^^^^^~12/01/2006~
-~14087~^~301~^41.^1^^~8~^~LC~^^^^^^^^^^~12/01/2006~
-~14087~^~306~^24.^1^^~8~^~LC~^^^^^^^^^^~12/01/2006~
-~14087~^~307~^29.^1^^~8~^~LC~^^^^^^^^^^~12/01/2006~
-~14087~^~318~^408.^1^^~8~^~LC~^^^^^^^^^^~12/01/2006~
-~14087~^~601~^0.^1^^~8~^~LC~^^^^^^^^^^~12/01/2006~
-~14088~^~208~^41.^1^^~8~^~LC~^^^^^^^^^^~12/01/2006~
-~14088~^~268~^170.^0^^~8~^~LC~^^^^^^^^^^~12/01/2006~
-~14088~^~301~^41.^1^^~8~^~LC~^^^^^^^^^^~12/01/2006~
-~14088~^~306~^24.^1^^~8~^~LC~^^^^^^^^^^~12/01/2006~
-~14088~^~307~^20.^1^^~8~^~LC~^^^^^^^^^^~12/01/2006~
-~14088~^~318~^0.^1^^~8~^~LC~^^^^^^^^^^~12/01/2006~
-~14088~^~601~^0.^1^^~8~^~LC~^^^^^^^^^^~12/01/2006~
-~14090~^~208~^18.^0^^~4~^~NC~^^^^^^^^^^~07/01/2014~
-~14090~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~07/01/2014~
-~14090~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~07/01/2014~
-~14090~^~268~^75.^0^^~4~^~NC~^^^^^^^^^^~07/01/2014~
-~14090~^~301~^7.^9^1.^~1~^~A~^^^1^2.^15.^8^4.^10.^~2, 3~^~07/01/2014~
-~14090~^~304~^6.^9^0.^~1~^~A~^^^1^3.^10.^8^4.^8.^~2, 3~^~07/01/2014~
-~14090~^~305~^5.^9^0.^~1~^~A~^^^1^1.^8.^8^2.^7.^~2, 3~^~07/01/2014~
-~14090~^~306~^165.^9^9.^~1~^~A~^^^1^116.^203.^8^142.^187.^~2, 3~^~07/01/2014~
-~14090~^~307~^26.^9^5.^~1~^~A~^^^1^11.^52.^8^13.^38.^~2, 3~^~07/01/2014~
-~14090~^~318~^0.^0^^~1~^~AS~^^^^^^^^^^~07/01/2014~
-~14090~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~07/01/2014~
-~14090~^~320~^0.^0^^~1~^~AS~^^^^^^^^^^~07/01/2014~
-~14090~^~321~^0.^1^^~1~^~A~^^^^^^^^^~1~^~07/01/2014~
-~14090~^~322~^0.^1^^~1~^~A~^^^^^^^^^~1~^~07/01/2014~
-~14090~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~07/01/2014~
-~14090~^~334~^0.^1^^~1~^~A~^^^^^^^^^~1~^~07/01/2014~
-~14090~^~337~^0.^1^^~1~^~A~^^^^^^^^^~1~^~07/01/2014~
-~14090~^~338~^0.^1^^~1~^~A~^^^^^^^^^~1~^~07/01/2014~
-~14090~^~417~^0.^1^^~1~^~A~^^^^^^^^^~1~^~07/01/2014~
-~14090~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~07/01/2014~
-~14090~^~432~^0.^1^^~1~^~A~^^^^^^^^^^~07/01/2014~
-~14090~^~435~^0.^0^^~4~^~NC~^^^^^^^^^^~07/01/2014~
-~14090~^~601~^0.^0^^~7~^~Z~^^^^^^^^^^~07/01/2014~
-~14091~^~208~^15.^0^^~4~^~NC~^^^^^^^^^^~11/01/2016~
-~14091~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2015~
-~14091~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2015~
-~14091~^~268~^65.^0^^~4~^~NC~^^^^^^^^^^~11/01/2016~
-~14091~^~301~^184.^1^^~12~^~MA~^^^^^^^^^^~10/01/2016~
-~14091~^~304~^6.^1^^~12~^~MA~^^^^^^^^^^~10/01/2016~
-~14091~^~305~^9.^1^^~12~^~MA~^^^^^^^^^^~10/01/2016~
-~14091~^~306~^67.^1^^~12~^~MA~^^^^^^^^^^~10/01/2016~
-~14091~^~307~^72.^1^^~12~^~MA~^^^^^^^^^^~10/01/2016~
-~14091~^~318~^0.^0^^~4~^~NC~^^^^^^^^^^~10/01/2016~
-~14091~^~319~^0.^0^^~12~^~MA~^^^^^^^^^^~10/01/2016~
-~14091~^~320~^0.^0^^~4~^~NC~^^^^^^^^^^~10/01/2016~
-~14091~^~321~^0.^0^^~12~^~MA~^^^^^^^^^^~10/01/2016~
-~14091~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2015~
-~14091~^~324~^41.^1^^~12~^~MA~^^^^^^^^^^~10/01/2016~
-~14091~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2015~
-~14091~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2015~
-~14091~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2015~
-~14091~^~417~^1.^0^^~12~^~MA~^^^^^^^^^^~10/01/2016~
-~14091~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2015~
-~14091~^~432~^1.^0^^~1~^~A~^^^^^^^^^^~11/01/2016~
-~14091~^~435~^1.^0^^~4~^~NC~^^^^^^^^^^~03/01/2015~
-~14091~^~601~^0.^1^^~12~^~MA~^^^^^^^^^^~10/01/2016~
-~14092~^~208~^21.^0^^~4~^~NC~^^^^^^^^^^~03/01/2015~
-~14092~^~262~^0.^0^^~4~^~BFFN~^~14054~^^^^^^^^^~03/01/2015~
-~14092~^~263~^5.^0^^~4~^~BFFN~^~14054~^^^^^^^^^~03/01/2015~
-~14092~^~268~^90.^0^^~4~^~NC~^^^^^^^^^^~03/01/2015~
-~14092~^~301~^188.^0^^~8~^~LC~^^^^^^^^^^~03/01/2015~
-~14092~^~304~^10.^0^^~8~^~LC~^^^^^^^^^^~03/01/2015~
-~14092~^~305~^17.^0^^~8~^~LC~^^^^^^^^^^~03/01/2015~
-~14092~^~306~^96.^0^^~8~^~LC~^^^^^^^^^^~03/01/2015~
-~14092~^~307~^75.^0^^~8~^~LC~^^^^^^^^^^~03/01/2015~
-~14092~^~318~^208.^0^^~4~^~NC~^^^^^^^^^^~09/01/2015~
-~14092~^~319~^62.^0^^~4~^~NR~^^^^^^^^^^~03/01/2015~
-~14092~^~320~^62.^0^^~4~^~NC~^^^^^^^^^^~03/01/2015~
-~14092~^~321~^0.^0^^~4~^~BFZN~^~14091~^^^^^^^^^~03/01/2015~
-~14092~^~322~^0.^0^^~4~^~BFZN~^~14091~^^^^^^^^^~03/01/2015~
-~14092~^~324~^42.^0^^~8~^~LC~^^^^^^^^^^~03/01/2015~
-~14092~^~334~^0.^0^^~4~^~BFZN~^~14091~^^^^^^^^^~03/01/2015~
-~14092~^~337~^0.^0^^~4~^~BFZN~^~14091~^^^^^^^^^~03/01/2015~
-~14092~^~338~^0.^0^^~4~^~BFZN~^~14091~^^^^^^^^^~03/01/2015~
-~14092~^~417~^1.^0^^~4~^~BFZN~^~14091~^^^^^^^^^~03/01/2015~
-~14092~^~431~^0.^0^^~4~^~BFZN~^~14091~^^^^^^^^^~03/01/2015~
-~14092~^~432~^1.^0^^~4~^~BFZN~^~14091~^^^^^^^^^~03/01/2015~
-~14092~^~435~^1.^0^^~4~^~NC~^~14091~^^^^^^^^^~03/01/2015~
-~14092~^~601~^0.^0^^~8~^~LC~^^^^^^^^^^~03/01/2015~
-~14093~^~208~^0.^0^^~4~^~NC~^^^^^^^^^^~06/01/2015~
-~14093~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~12/01/2014~
-~14093~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~12/01/2014~
-~14093~^~268~^0.^0^^~4~^~NC~^^^^^^^^^^~06/01/2015~
-~14093~^~301~^0.^0^^~7~^~Z~^^^^^^^^^^~12/01/2014~
-~14093~^~304~^0.^0^^~7~^~Z~^^^^^^^^^^~12/01/2014~
-~14093~^~305~^0.^0^^~7~^~Z~^^^^^^^^^^~12/01/2014~
-~14093~^~306~^148.^0^^~8~^~LC~^^^^^^^^^^~12/01/2014~
-~14093~^~307~^0.^0^^~8~^~LC~^^^^^^^^^^~12/01/2014~
-~14093~^~318~^0.^0^^~1~^~AS~^^^^^^^^^^~12/01/2014~
-~14093~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~12/01/2014~
-~14093~^~320~^0.^0^^~1~^~AS~^^^^^^^^^^~11/01/2016~
-~14093~^~321~^0.^0^^~7~^~Z~^^^^^^^^^^~12/01/2014~
-~14093~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~12/01/2014~
-~14093~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~12/01/2014~
-~14093~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~12/01/2014~
-~14093~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~12/01/2014~
-~14093~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~12/01/2014~
-~14093~^~417~^0.^0^^~7~^~Z~^^^^^^^^^^~12/01/2014~
-~14093~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~12/01/2014~
-~14093~^~432~^0.^0^^~7~^~Z~^^^^^^^^^^~12/01/2014~
-~14093~^~435~^0.^0^^~4~^~NC~^^^^^^^^^^~12/01/2014~
-~14093~^~601~^0.^0^^~7~^~Z~^^^^^^^^^^~12/01/2014~
-~14095~^~208~^50.^0^^~8~^~LC~^^^^^^^^^^~12/01/2014~
-~14095~^~262~^0.^0^^~4~^~BFZN~^~14303~^^^^^^^^^~12/01/2014~
-~14095~^~263~^0.^0^^~4~^~BFZN~^~14303~^^^^^^^^^~12/01/2014~
-~14095~^~268~^209.^0^^~8~^~LC~^^^^^^^^^^~12/01/2014~
-~14095~^~301~^2.^0^^~4~^~BFZN~^~14303~^^^^^^^^^~12/01/2014~
-~14095~^~304~^2.^0^^~4~^~BFZN~^~14303~^^^^^^^^^~12/01/2014~
-~14095~^~305~^1.^0^^~4~^~BFZN~^~14303~^^^^^^^^^~12/01/2014~
-~14095~^~306~^10.^0^^~4~^~BFZN~^~14303~^^^^^^^^^~12/01/2014~
-~14095~^~307~^6.^0^^~8~^~LC~^^^^^^^^^^~12/01/2014~
-~14095~^~318~^0.^0^^~4~^~NC~^^^^^^^^^^~12/01/2014~
-~14095~^~319~^0.^0^^~4~^~BFZN~^~14303~^^^^^^^^^~12/01/2014~
-~14095~^~320~^0.^0^^~4~^~BFZN~^~14303~^^^^^^^^^~12/01/2014~
-~14095~^~321~^0.^0^^~4~^~BFZN~^~14303~^^^^^^^^^~12/01/2014~
-~14095~^~322~^0.^0^^~4~^~BFZN~^~14303~^^^^^^^^^~12/01/2014~
-~14095~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~12/01/2014~
-~14095~^~334~^0.^0^^~4~^~BFZN~^~14303~^^^^^^^^^~12/01/2014~
-~14095~^~337~^0.^0^^~4~^~BFZN~^~14303~^^^^^^^^^~12/01/2014~
-~14095~^~338~^0.^0^^~4~^~BFZN~^~14303~^^^^^^^^^~12/01/2014~
-~14095~^~417~^1.^0^^~4~^~BFZN~^~14303~^^^^^^^^^~12/01/2014~
-~14095~^~431~^0.^0^^~4~^~BFZN~^~14303~^^^^^^^^^~12/01/2014~
-~14095~^~432~^1.^0^^~4~^~BFZN~^~14303~^^^^^^^^^~12/01/2014~
-~14095~^~435~^1.^0^^~4~^~NC~^~14303~^^^^^^^^^~12/01/2014~
-~14095~^~601~^0.^0^^~4~^~BFZN~^~14303~^^^^^^^^^~12/01/2014~
-~14096~^~208~^85.^0^^~4~^~O~^^^^^^^^^^~03/01/2007~
-~14096~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2007~
-~14096~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2007~
-~14096~^~268~^356.^0^^~4~^~O~^^^^^^^^^^~03/01/2007~
-~14096~^~301~^8.^1^^~1~^~A~^^^^^^^^^^~03/01/2005~
-~14096~^~304~^12.^1^^~1~^~A~^^^^^^^^^^~03/01/2005~
-~14096~^~305~^23.^1^^~1~^~A~^^^^^^^^^^~03/01/2005~
-~14096~^~306~^127.^1^^~1~^~A~^^^^^^^^^^~03/01/2005~
-~14096~^~307~^4.^1^^~1~^~A~^^^^^^^^^^~03/01/2005~
-~14096~^~318~^2.^0^^~4~^~NC~^^^^^^^^^^~03/01/2007~
-~14096~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2002~
-~14096~^~320~^0.^0^^~4~^~NC~^^^^^^^^^^~03/01/2007~
-~14096~^~321~^1.^0^^~4~^~O~^^^^^^^^^^~03/01/2007~
-~14096~^~322~^0.^0^^~4~^~O~^^^^^^^^^^~03/01/2007~
-~14096~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~
-~14096~^~334~^0.^0^^~4~^~O~^^^^^^^^^^~03/01/2007~
-~14096~^~337~^0.^0^^~4~^~O~^^^^^^^^^^~03/01/2007~
-~14096~^~338~^6.^0^^~4~^~O~^^^^^^^^^^~03/01/2007~
-~14096~^~417~^1.^1^^~1~^~A~^^^^^^^^^~1~^~03/01/2005~
-~14096~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~
-~14096~^~432~^1.^0^^~4~^~NR~^^^^^^^^^^~03/01/2005~
-~14096~^~435~^1.^0^^~4~^~NC~^^^^^^^^^^~03/01/2007~
-~14096~^~601~^0.^0^^~1~^^^^^^^^^^^~05/01/1986~
-~14097~^~208~^83.^0^^~4~^~NC~^^^^^^^^^^~10/01/2006~
-~14097~^~268~^347.^0^^~4~^~NC~^^^^^^^^^^~10/01/2006~
-~14098~^~208~^83.^0^^~4~^~NC~^^^^^^^^^^~10/01/2006~
-~14098~^~268~^349.^0^^~4~^~NC~^^^^^^^^^^~10/01/2006~
-~14099~^~208~^82.^0^^~4~^~NC~^^^^^^^^^^~10/01/2006~
-~14099~^~268~^341.^0^^~4~^~NC~^^^^^^^^^^~10/01/2006~
-~14100~^~208~^83.^0^^~4~^~NC~^^^^^^^^^^~10/01/2006~
-~14100~^~268~^348.^0^^~4~^~NC~^^^^^^^^^^~10/01/2006~
-~14101~^~208~^85.^0^^~4~^~NC~^^^^^^^^^^~10/01/2006~
-~14101~^~268~^355.^0^^~4~^~NC~^^^^^^^^^^~10/01/2006~
-~14102~^~208~^88.^0^^~4~^~NC~^^^^^^^^^^~10/01/2006~
-~14102~^~268~^369.^0^^~4~^~NC~^^^^^^^^^^~10/01/2006~
-~14103~^~208~^85.^0^^~4~^~NC~^^^^^^^^^^~10/01/2006~
-~14103~^~268~^356.^0^^~4~^~NC~^^^^^^^^^^~10/01/2006~
-~14105~^~208~^83.^0^^~4~^~NC~^^^^^^^^^^~10/01/2006~
-~14105~^~268~^348.^0^^~4~^~NC~^^^^^^^^^^~10/01/2006~
-~14106~^~208~^82.^0^^~4~^~NC~^^^^^^^^^^~10/01/2006~
-~14106~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2007~
-~14106~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2007~
-~14106~^~268~^342.^0^^~4~^~NC~^^^^^^^^^^~10/01/2006~
-~14106~^~301~^9.^1^^~1~^~A~^^^^^^^^^^~03/01/2005~
-~14106~^~304~^10.^1^^~1~^~A~^^^^^^^^^^~03/01/2005~
-~14106~^~305~^18.^1^^~1~^~A~^^^^^^^^^^~03/01/2005~
-~14106~^~306~^71.^1^^~1~^~A~^^^^^^^^^^~03/01/2005~
-~14106~^~307~^5.^1^^~1~^~A~^^^^^^^^^^~03/01/2005~
-~14106~^~318~^0.^0^^~1~^^^^^^^^^^^~05/01/1986~
-~14106~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2002~
-~14106~^~320~^0.^0^^~1~^~AS~^^^^^^^^^^~06/01/2005~
-~14106~^~321~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2007~
-~14106~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2007~
-~14106~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~
-~14106~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2007~
-~14106~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2007~
-~14106~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2007~
-~14106~^~417~^1.^1^^~1~^~A~^^^^^^^^^~1~^~03/01/2005~
-~14106~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~
-~14106~^~432~^1.^1^^~1~^~A~^^^^^^^^^^~06/01/2005~
-~14106~^~435~^1.^0^^~4~^~NC~^^^^^^^^^^~03/01/2007~
-~14106~^~601~^0.^0^^~1~^^^^^^^^^^^~05/01/1986~
-~14107~^~208~^80.^0^^~4~^~NC~^^^^^^^^^^~10/01/2006~
-~14107~^~268~^337.^0^^~4~^~NC~^^^^^^^^^^~10/01/2006~
-~14108~^~208~^86.^0^^~4~^~NC~^^^^^^^^^^~10/01/2006~
-~14108~^~268~^359.^0^^~4~^~NC~^^^^^^^^^^~10/01/2006~
-~14109~^~208~^74.^0^^~4~^~NC~^^^^^^^^^^~10/01/2006~
-~14109~^~268~^311.^0^^~4~^~NC~^^^^^^^^^^~10/01/2006~
-~14113~^~208~^83.^0^^~4~^~NC~^^^^^^^^^^~10/01/2006~
-~14113~^~268~^346.^0^^~4~^~NC~^^^^^^^^^^~10/01/2006~
-~14116~^~208~^80.^0^^~4~^~NC~^^^^^^^^^^~10/01/2006~
-~14116~^~268~^334.^0^^~4~^~NC~^^^^^^^^^^~10/01/2006~
-~14117~^~208~^82.^0^^~4~^~NC~^^^^^^^^^^~10/01/2006~
-~14117~^~268~^343.^0^^~4~^~NC~^^^^^^^^^^~10/01/2006~
-~14119~^~208~^29.^1^^~8~^~LC~^^^^^^^^^^~01/01/2005~
-~14119~^~262~^0.^0^^~4~^~FLC~^^^^^^^^^^~10/01/2003~
-~14119~^~263~^0.^0^^~4~^~FLC~^^^^^^^^^^~10/01/2003~
-~14119~^~268~^122.^0^^~8~^~LC~^^^^^^^^^^~01/01/2005~
-~14119~^~301~^3.^0^^~4~^~FLC~^^^^^^^^^^~01/01/2005~
-~14119~^~304~^1.^0^^~4~^~FLC~^^^^^^^^^^~01/01/2005~
-~14119~^~305~^2.^0^^~4~^~FLC~^^^^^^^^^^~01/01/2005~
-~14119~^~306~^19.^1^^~8~^~LC~^^^^^^^^^^~01/01/2005~
-~14119~^~307~^21.^1^^~8~^~LC~^^^^^^^^^^~01/01/2005~
-~14119~^~318~^2083.^1^^~8~^~LC~^^^^^^^^^^~01/01/2005~
-~14119~^~319~^0.^0^^~4~^~FLC~^^^^^^^^^^~10/01/2003~
-~14119~^~320~^104.^0^^~4~^~FLC~^^^^^^^^^^~01/01/2005~
-~14119~^~321~^1178.^0^^~4~^~FLC~^^^^^^^^^^~01/01/2005~
-~14119~^~322~^144.^0^^~4~^~FLC~^^^^^^^^^^~01/01/2005~
-~14119~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~
-~14119~^~334~^0.^0^^~4~^~FLC~^^^^^^^^^^~01/01/2005~
-~14119~^~337~^0.^0^^~4~^~FLC~^^^^^^^^^^~01/01/2005~
-~14119~^~338~^12.^0^^~4~^~FLC~^^^^^^^^^^~01/01/2005~
-~14119~^~417~^0.^0^^~4~^~FLC~^^^^^^^^^^~01/01/2005~
-~14119~^~431~^0.^0^^~4~^~FLC~^^^^^^^^^^~10/01/2003~
-~14119~^~432~^0.^0^^~4~^~FLC~^^^^^^^^^^~01/01/2005~
-~14119~^~435~^0.^0^^~4~^~NC~^^^^^^^^^^~12/01/2006~
-~14119~^~601~^0.^1^^~8~^~LC~^^^^^^^^^^~10/01/2003~
-~14120~^~208~^76.^0^^~4~^~NC~^^^^^^^^^^~10/01/2006~
-~14120~^~268~^319.^0^^~4~^~NC~^^^^^^^^^^~10/01/2006~
-~14121~^~208~^0.^0^^~4~^~NC~^^^^^^^^^^~05/01/2001~
-~14121~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2001~
-~14121~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2003~
-~14121~^~268~^0.^0^^~4~^~NC~^^^^^^^^^^~10/01/2006~
-~14121~^~301~^5.^1^^~1~^^^^^^^^^^^~05/01/1986~
-~14121~^~304~^1.^2^^~1~^^^^^^^^^^^~07/01/2001~
-~14121~^~305~^0.^5^0.^~1~^^^^^^^^^^^~05/01/1986~
-~14121~^~306~^2.^5^1.^~1~^^^^^^^^^^^~05/01/1986~
-~14121~^~307~^21.^6^5.^~1~^^^^^^^^^^^~05/01/1986~
-~14121~^~318~^0.^1^^~1~^~AS~^^^^^^^^^^~10/01/2006~
-~14121~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2002~
-~14121~^~320~^0.^0^^~4~^~NC~^^^^^^^^^^~06/01/2002~
-~14121~^~321~^0.^0^^~7~^~Z~^^^^^^^^^^~11/01/2002~
-~14121~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~11/01/2002~
-~14121~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~
-~14121~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~11/01/2002~
-~14121~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~11/01/2002~
-~14121~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~11/01/2002~
-~14121~^~417~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2001~
-~14121~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~07/01/2002~
-~14121~^~432~^0.^0^^~7~^~Z~^^^^^^^^^^~07/01/2002~
-~14121~^~435~^0.^0^^~4~^~NC~^^^^^^^^^^~10/01/2006~
-~14121~^~601~^0.^0^^~1~^^^^^^^^^^^~05/01/1986~
-~14124~^~208~^81.^0^^~4~^~NC~^^^^^^^^^^~10/01/2006~
-~14124~^~268~^337.^0^^~4~^~NC~^^^^^^^^^^~10/01/2006~
-~14125~^~208~^108.^0^^~4~^~NC~^^^^^^^^^^~05/01/2005~
-~14125~^~268~^451.^0^^~4~^~NC~^^^^^^^^^^~05/01/2005~
-~14126~^~208~^82.^0^^~4~^~NC~^^^^^^^^^^~10/01/2006~
-~14126~^~268~^344.^0^^~4~^~NC~^^^^^^^^^^~10/01/2006~
-~14130~^~208~^51.^0^^~4~^~NC~^^^^^^^^^^~05/01/1986~
-~14130~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~
-~14130~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~
-~14130~^~268~^213.^0^^~4~^^^^^^^^^^^~01/01/2005~
-~14130~^~301~^5.^1^^~1~^^^^^^^^^^^~05/01/1986~
-~14130~^~304~^1.^1^^~1~^^^^^^^^^^^~05/01/1986~
-~14130~^~305~^0.^3^0.^~1~^^^^^^^^^^^~05/01/1986~
-~14130~^~306~^1.^8^0.^~1~^^^^^^^^^^^~05/01/1986~
-~14130~^~307~^12.^8^2.^~1~^^^^^^^^^^^~05/01/1986~
-~14130~^~318~^0.^0^^~1~^^^^^^^^^^^~05/01/1986~
-~14130~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2002~
-~14130~^~320~^0.^0^^~4~^~NC~^^^^^^^^^^~06/01/2002~
-~14130~^~321~^0.^0^^~7~^~Z~^^^^^^^^^^~11/01/2002~
-~14130~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~11/01/2002~
-~14130~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~
-~14130~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~11/01/2002~
-~14130~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~11/01/2002~
-~14130~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~11/01/2002~
-~14130~^~417~^0.^0^^~4~^^^^^^^^^^^~05/01/1986~
-~14130~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~
-~14130~^~432~^0.^0^^~4~^^^^^^^^^^^~05/01/1986~
-~14130~^~435~^0.^0^^~4~^~NC~^^^^^^^^^^~12/01/2006~
-~14130~^~601~^0.^0^^~1~^^^^^^^^^^^~05/01/1986~
-~14132~^~208~^80.^0^^~4~^~NC~^^^^^^^^^^~10/01/2006~
-~14132~^~268~^337.^0^^~4~^~NC~^^^^^^^^^^~10/01/2006~
-~14134~^~208~^81.^0^^~4~^~NC~^^^^^^^^^^~10/01/2006~
-~14134~^~268~^340.^0^^~4~^~NC~^^^^^^^^^^~10/01/2006~
-~14135~^~208~^112.^0^^~4~^~NC~^^^^^^^^^^~10/01/2006~
-~14135~^~268~^467.^0^^~4~^~NC~^^^^^^^^^^~10/01/2006~
-~14136~^~208~^34.^0^^~4~^~NC~^^^^^^^^^^~11/01/2002~
-~14136~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~
-~14136~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~
-~14136~^~268~^142.^0^^~4~^~NC~^^^^^^^^^^~11/01/2002~
-~14136~^~301~^3.^15^^~1~^^^^^^^^^^^~05/01/1986~
-~14136~^~304~^1.^14^^~1~^^^^^^^^^^^~05/01/1986~
-~14136~^~305~^0.^13^^~1~^^^^^^^^^^^~05/01/1986~
-~14136~^~306~^1.^19^^~1~^^^^^^^^^^^~05/01/1986~
-~14136~^~307~^7.^26^^~1~^^^^^^^^^^^~05/01/1986~
-~14136~^~318~^0.^0^^~1~^^^^^^^^^^^~05/01/1986~
-~14136~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2002~
-~14136~^~320~^0.^0^^~1~^~AS~^^^^^^^^^^~11/01/2002~
-~14136~^~321~^0.^0^^~7~^~Z~^^^^^^^^^^~11/01/2002~
-~14136~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~11/01/2002~
-~14136~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~
-~14136~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~11/01/2002~
-~14136~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~11/01/2002~
-~14136~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~11/01/2002~
-~14136~^~417~^0.^1^^~1~^^^^^^^^^^^~05/01/1986~
-~14136~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~
-~14136~^~432~^0.^1^^~1~^^^^^^^^^^^~11/01/2002~
-~14136~^~435~^0.^0^^~4~^~NC~^^^^^^^^^^~12/01/2006~
-~14136~^~601~^0.^0^^~1~^^^^^^^^^^^~05/01/1986~
-~14137~^~208~^36.^0^^~4~^~NC~^^^^^^^^^^~04/01/2005~
-~14137~^~262~^3.^1^^~1~^~A~^^^^^^^^^^~04/01/2005~
-~14137~^~263~^0.^1^^~1~^~A~^^^^^^^^^~1~^~04/01/2005~
-~14137~^~268~^152.^0^^~4~^~NC~^^^^^^^^^^~04/01/2005~
-~14137~^~301~^3.^1^^~1~^~A~^^^^^^^^^^~04/01/2005~
-~14137~^~304~^1.^1^^~1~^~A~^^^^^^^^^^~04/01/2005~
-~14137~^~305~^36.^1^^~1~^~A~^^^^^^^^^^~04/01/2005~
-~14137~^~306~^19.^1^^~1~^~A~^^^^^^^^^^~04/01/2005~
-~14137~^~307~^21.^1^^~1~^~A~^^^^^^^^^^~04/01/2005~
-~14138~^~208~^81.^0^^~4~^~NC~^^^^^^^^^^~10/01/2006~
-~14138~^~268~^340.^0^^~4~^~NC~^^^^^^^^^^~10/01/2006~
-~14140~^~208~^82.^0^^~4~^~NC~^^^^^^^^^^~10/01/2006~
-~14140~^~268~^342.^0^^~4~^~NC~^^^^^^^^^^~10/01/2006~
-~14142~^~208~^43.^0^^~4~^~NC~^^^^^^^^^^~05/01/1986~
-~14142~^~268~^180.^0^^~4~^^^^^^^^^^^~03/01/2006~
-~14142~^~301~^3.^2^^~1~^^^^^^^^^^^~05/01/1986~
-~14142~^~304~^1.^2^^~1~^^^^^^^^^^^~05/01/1986~
-~14142~^~305~^0.^9^0.^~1~^^^^^^^^^^^~05/01/1986~
-~14142~^~306~^1.^25^^~1~^^^^^^^^^^^~05/01/1986~
-~14142~^~307~^15.^25^^~1~^^^^^^^^^^^~05/01/1986~
-~14142~^~318~^0.^0^^~4~^^^^^^^^^^^~05/01/1986~
-~14142~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2002~
-~14142~^~320~^0.^0^^~4~^~NC~^^^^^^^^^^~06/01/2002~
-~14142~^~417~^0.^0^^~4~^^^^^^^^^^^~05/01/1986~
-~14142~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~
-~14142~^~432~^0.^0^^~4~^^^^^^^^^^^~05/01/1986~
-~14142~^~435~^0.^0^^~4~^~NC~^^^^^^^^^^~03/01/2006~
-~14142~^~601~^0.^0^^~1~^^^^^^^^^^^~05/01/1986~
-~14143~^~208~^0.^0^^~4~^~NC~^^^^^^^^^^~01/01/1999~
-~14143~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~
-~14143~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~
-~14143~^~268~^0.^0^^~4~^~NC~^^^^^^^^^^~10/01/2006~
-~14143~^~301~^4.^0^^~4~^~BFZN~^^^^^^^^^^~01/01/1999~
-~14143~^~304~^1.^0^^~4~^~BFZN~^^^^^^^^^^~01/01/1999~
-~14143~^~305~^0.^0^^~4~^~BFZN~^^^^^^^^^^~01/01/1999~
-~14143~^~306~^2.^0^^~4~^~BFZN~^^^^^^^^^^~01/01/1999~
-~14143~^~307~^6.^0^^~4~^~BFZN~^^^^^^^^^^~01/01/1999~
-~14143~^~318~^0.^0^^~4~^~BFZN~^^^^^^^^^^~01/01/1999~
-~14143~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2002~
-~14143~^~320~^0.^0^^~1~^~AS~^^^^^^^^^^~11/01/2002~
-~14143~^~321~^0.^0^^~7~^~Z~^^^^^^^^^^~11/01/2002~
-~14143~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~11/01/2002~
-~14143~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~
-~14143~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~11/01/2002~
-~14143~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~11/01/2002~
-~14143~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~11/01/2002~
-~14143~^~417~^0.^0^^~4~^~BFZN~^^^^^^^^^^~01/01/1999~
-~14143~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~
-~14143~^~432~^0.^0^^~4~^~BFZN~^^^^^^^^^^~11/01/2002~
-~14143~^~435~^0.^0^^~4~^~NC~^^^^^^^^^^~12/01/2006~
-~14143~^~601~^0.^0^^~4~^~BFZN~^^^^^^^^^^~01/01/1999~
-~14144~^~208~^41.^0^^~4~^~NC~^^^^^^^^^^~04/01/2005~
-~14144~^~262~^0.^1^^~1~^~A~^^^^^^^^^~1~^~07/01/2013~
-~14144~^~263~^0.^1^^~1~^~A~^^^^^^^^^~1~^~04/01/2005~
-~14144~^~268~^170.^0^^~4~^~NC~^^^^^^^^^^~04/01/2005~
-~14144~^~301~^2.^1^^~1~^~A~^^^^^^^^^^~04/01/2005~
-~14144~^~304~^1.^1^^~1~^~A~^^^^^^^^^^~04/01/2005~
-~14144~^~305~^0.^1^^~1~^~A~^^^^^^^^^~1~^~04/01/2005~
-~14144~^~306~^1.^1^^~1~^~A~^^^^^^^^^~1~^~04/01/2005~
-~14144~^~307~^10.^1^^~1~^~A~^^^^^^^^^^~04/01/2005~
-~14144~^~318~^0.^0^^~4~^~BFZN~^^^^^^^^^^~01/01/1999~
-~14144~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2002~
-~14144~^~320~^0.^0^^~1~^~AS~^^^^^^^^^^~04/01/2005~
-~14144~^~321~^0.^0^^~7~^~Z~^^^^^^^^^^~11/01/2002~
-~14144~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~11/01/2002~
-~14144~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~
-~14144~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~11/01/2002~
-~14144~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~11/01/2002~
-~14144~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~11/01/2002~
-~14144~^~417~^0.^0^^~4~^~BFZN~^^^^^^^^^^~01/01/1999~
-~14144~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~
-~14144~^~432~^0.^0^^~4~^~BFZN~^^^^^^^^^^~04/01/2005~
-~14144~^~435~^0.^0^^~4~^~NC~^^^^^^^^^^~12/01/2006~
-~14144~^~601~^0.^0^^~4~^~BFZN~^^^^^^^^^^~01/01/1999~
-~14145~^~208~^40.^0^^~4~^~NC~^^^^^^^^^^~04/01/2005~
-~14145~^~262~^0.^2^^~1~^~A~^^^2^0.^0.^^^^~1~^~04/01/2005~
-~14145~^~263~^0.^1^^~1~^~A~^^^^^^^^^~1~^~04/01/2005~
-~14145~^~268~^165.^0^^~4~^~NC~^^^^^^^^^^~04/01/2005~
-~14145~^~301~^2.^4^^~1~^~A~^^^4^0.^4.^^^^~1, 2, 3~^~04/01/2005~
-~14145~^~304~^1.^4^^~1~^~A~^^^4^0.^1.^^^^~2, 3~^~04/01/2005~
-~14145~^~305~^0.^4^^~1~^~A~^^^4^0.^0.^^^^~1, 2, 3~^~04/01/2005~
-~14145~^~306~^1.^4^^~1~^~A~^^^4^0.^2.^^^^~1, 2, 3~^~04/01/2005~
-~14145~^~307~^9.^4^^~1~^~A~^^^4^1.^13.^^^^~2, 3~^~04/01/2005~
-~14145~^~318~^0.^0^^~1~^^^^^^^^^^^~05/01/1986~
-~14145~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2002~
-~14145~^~320~^0.^0^^~1~^~AS~^^^^^^^^^^~04/01/2005~
-~14145~^~321~^0.^0^^~7~^~Z~^^^^^^^^^^~11/01/2002~
-~14145~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~11/01/2002~
-~14145~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~
-~14145~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~11/01/2002~
-~14145~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~11/01/2002~
-~14145~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~11/01/2002~
-~14145~^~417~^0.^2^^~1~^^^^^^^^^^^~05/01/1986~
-~14145~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~
-~14145~^~432~^0.^2^^~1~^^^^^^^^^^^~04/01/2005~
-~14145~^~435~^0.^0^^~4~^~NC~^^^^^^^^^^~12/01/2006~
-~14145~^~601~^0.^0^^~1~^^^^^^^^^^^~05/01/1986~
-~14146~^~208~^1.^0^^~4~^~NC~^^^^^^^^^^~04/01/2005~
-~14146~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~07/01/2013~
-~14146~^~263~^0.^4^0.^~1~^~A~^^^1^0.^0.^^^^~1, 2, 3~^~04/01/2005~
-~14146~^~268~^4.^0^^~4~^~NC~^^^^^^^^^^~04/01/2005~
-~14146~^~301~^3.^4^0.^~1~^~A~^^^1^3.^3.^1^2.^3.^~2, 3~^~04/01/2005~
-~14146~^~304~^0.^4^0.^~1~^~A~^^^1^0.^1.^1^0.^0.^~1, 2, 3~^~04/01/2005~
-~14146~^~305~^10.^4^0.^~1~^~A~^^^1^8.^15.^1^9.^11.^~2, 3~^~04/01/2005~
-~14146~^~306~^7.^4^0.^~1~^~A~^^^1^6.^9.^1^6.^7.^~2, 3~^~04/01/2005~
-~14146~^~307~^4.^4^0.^~1~^~A~^^^1^3.^6.^1^3.^4.^~2, 3~^~04/01/2005~
-~14146~^~318~^0.^0^^~4~^~BFZN~^^^^^^^^^^~01/01/1999~
-~14146~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2002~
-~14146~^~320~^0.^0^^~1~^~AS~^^^^^^^^^^~04/01/2005~
-~14146~^~321~^0.^0^^~7~^~Z~^^^^^^^^^^~11/01/2002~
-~14146~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~11/01/2002~
-~14146~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~
-~14146~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~11/01/2002~
-~14146~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~11/01/2002~
-~14146~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~11/01/2002~
-~14146~^~417~^0.^0^^~4~^~BFZN~^^^^^^^^^^~01/01/1999~
-~14146~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~
-~14146~^~432~^0.^0^^~4~^~BFZN~^^^^^^^^^^~04/01/2005~
-~14146~^~435~^0.^0^^~4~^~NC~^^^^^^^^^^~12/01/2006~
-~14146~^~601~^0.^0^^~4~^~BFZN~^^^^^^^^^^~01/01/1999~
-~14147~^~208~^41.^0^^~4~^~NC~^^^^^^^^^^~04/01/2005~
-~14147~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/1999~
-~14147~^~263~^0.^4^0.^~1~^~A~^^^1^0.^0.^^^^~1, 2, 3~^~04/01/2005~
-~14147~^~268~^171.^0^^~4~^~NC~^^^^^^^^^^~04/01/2005~
-~14147~^~301~^2.^4^0.^~1~^~A~^^^1^2.^3.^3^1.^2.^~2, 3~^~04/01/2005~
-~14147~^~304~^0.^4^0.^~1~^~A~^^^1^0.^1.^3^0.^0.^~1, 2, 3~^~04/01/2005~
-~14147~^~305~^11.^4^0.^~1~^~A~^^^1^10.^13.^3^8.^12.^~2, 3~^~04/01/2005~
-~14147~^~306~^3.^4^0.^~1~^~A~^^^1^1.^4.^3^0.^5.^~1, 2, 3~^~04/01/2005~
-~14147~^~307~^4.^4^0.^~1~^~A~^^^1^2.^6.^3^0.^6.^~1, 2, 3~^~04/01/2005~
-~14147~^~318~^0.^0^^~4~^~BFZN~^~14400~^^^^^^^^^~04/01/2005~
-~14147~^~319~^0.^0^^~4~^~BFZN~^~14400~^^^^^^^^^~04/01/2005~
-~14147~^~320~^0.^0^^~4~^~NC~^~14400~^^^^^^^^^~04/01/2005~
-~14147~^~321~^0.^0^^~4~^~BFZN~^~14400~^^^^^^^^^~04/01/2005~
-~14147~^~322~^0.^0^^~4~^~BFZN~^~14400~^^^^^^^^^~04/01/2005~
-~14147~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~
-~14147~^~334~^0.^0^^~4~^~BFZN~^~14400~^^^^^^^^^~04/01/2005~
-~14147~^~337~^0.^0^^~4~^~BFZN~^~14400~^^^^^^^^^~04/01/2005~
-~14147~^~338~^0.^0^^~4~^~BFZN~^~14400~^^^^^^^^^~12/01/2002~
-~14147~^~417~^0.^0^^~4~^~BFZN~^~14400~^^^^^^^^^~04/01/2005~
-~14147~^~431~^0.^0^^~4~^~BFZN~^~14400~^^^^^^^^^~04/01/2005~
-~14147~^~432~^0.^0^^~4~^~BFZN~^~14400~^^^^^^^^^~04/01/2005~
-~14147~^~435~^0.^0^^~4~^~NC~^~14400~^^^^^^^^^~12/01/2006~
-~14147~^~601~^0.^0^^~4~^~BFZN~^~14400~^^^^^^^^^~04/01/2005~
-~14148~^~208~^42.^0^^~4~^~NC~^^^^^^^^^^~01/01/2015~
-~14148~^~262~^9.^6^0.^~1~^~A~^^^1^9.^10.^3^9.^9.^~2, 3~^~01/01/2015~
-~14148~^~263~^0.^4^0.^~1~^~A~^^^1^0.^0.^^^^~1, 2, 3~^~04/01/2005~
-~14148~^~268~^176.^0^^~4~^~NC~^^^^^^^^^^~01/01/2015~
-~14148~^~301~^1.^12^0.^~1~^~A~^^^1^1.^2.^9^1.^1.^~2, 3~^~01/01/2015~
-~14148~^~304~^0.^12^0.^~1~^~A~^^^1^0.^0.^6^0.^0.^~2, 3~^~04/01/2005~
-~14148~^~305~^9.^12^0.^~1~^~A~^^^1^9.^9.^6^6.^11.^~2, 3~^~01/01/2015~
-~14148~^~306~^5.^12^0.^~1~^~A~^^^1^3.^6.^9^3.^5.^~2, 3~^~01/01/2015~
-~14148~^~307~^3.^12^0.^~1~^~A~^^^1^3.^4.^7^1.^4.^~2, 3~^~01/01/2015~
-~14148~^~318~^0.^0^^~4~^~BFZN~^^^^^^^^^^~01/01/1999~
-~14148~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2002~
-~14148~^~320~^0.^0^^~4~^~NC~^^^^^^^^^^~04/01/2005~
-~14148~^~321~^0.^0^^~4~^~BFZN~^~14400~^^^^^^^^^~12/01/2002~
-~14148~^~322~^0.^0^^~4~^~BFZN~^~14400~^^^^^^^^^~12/01/2002~
-~14148~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~
-~14148~^~334~^0.^0^^~4~^~BFZN~^~14400~^^^^^^^^^~12/01/2002~
-~14148~^~337~^0.^0^^~4~^~BFZN~^~14400~^^^^^^^^^~12/01/2002~
-~14148~^~338~^0.^0^^~4~^~BFZN~^~14400~^^^^^^^^^~12/01/2002~
-~14148~^~417~^0.^0^^~4~^~BFZN~^^^^^^^^^^~01/01/1999~
-~14148~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~
-~14148~^~432~^0.^0^^~4~^~BFZN~^^^^^^^^^^~04/01/2005~
-~14148~^~435~^0.^0^^~4~^~NC~^^^^^^^^^^~12/01/2006~
-~14148~^~601~^0.^0^^~4~^~BFZN~^^^^^^^^^^~01/01/1999~
-~14149~^~208~^20.^0^^~4~^~NC~^^^^^^^^^^~04/01/2005~
-~14149~^~262~^9.^4^0.^~1~^~A~^^^1^9.^10.^3^8.^9.^~2, 3~^~04/01/2005~
-~14149~^~263~^0.^4^0.^~1~^~A~^^^1^0.^0.^^^^~1, 2, 3~^~04/01/2005~
-~14149~^~268~^84.^0^^~4~^~NC~^^^^^^^^^^~04/01/2005~
-~14149~^~301~^2.^4^0.^~1~^~A~^^^1^2.^3.^3^1.^2.^~2, 3~^~04/01/2005~
-~14149~^~304~^0.^4^0.^~1~^~A~^^^1^0.^1.^3^0.^0.^~1, 2, 3~^~04/01/2005~
-~14149~^~305~^11.^4^0.^~1~^~A~^^^1^10.^13.^3^8.^12.^~2, 3~^~04/01/2005~
-~14149~^~306~^3.^4^0.^~1~^~A~^^^1^1.^4.^3^0.^5.^~1, 2, 3~^~04/01/2005~
-~14149~^~307~^4.^4^0.^~1~^~A~^^^1^2.^6.^3^0.^6.^~1, 2, 3~^~04/01/2005~
-~14149~^~318~^0.^1^^~1~^^^^^^^^^^^~04/01/2005~
-~14149~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2005~
-~14149~^~320~^0.^0^^~4~^~NR~^^^^^^^^^^~04/01/2005~
-~14149~^~321~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2005~
-~14149~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2005~
-~14149~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~
-~14149~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2005~
-~14149~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2005~
-~14149~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2005~
-~14149~^~417~^0.^0^^~4~^^^^^^^^^^^~04/01/2005~
-~14149~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2005~
-~14149~^~432~^0.^0^^~4~^^^^^^^^^^^~04/01/2005~
-~14149~^~435~^0.^0^^~4~^~NC~^^^^^^^^^^~07/01/2008~
-~14149~^~601~^0.^0^^~1~^^^^^^^^^^^~04/01/2005~
-~14150~^~208~^48.^0^^~4~^~NC~^^^^^^^^^^~05/01/1986~
-~14150~^~268~^201.^0^^~4~^^^^^^^^^^^~03/01/2006~
-~14150~^~301~^5.^6^^~1~^^^^^^^^^^^~05/01/1986~
-~14150~^~304~^1.^6^^~1~^^^^^^^^^^^~05/01/1986~
-~14150~^~305~^1.^11^^~1~^^^^^^^^^^^~05/01/1986~
-~14150~^~306~^2.^76^^~1~^^^^^^^^^^^~05/01/1986~
-~14150~^~307~^12.^30^^~1~^^^^^^^^^^^~05/01/1986~
-~14150~^~318~^0.^0^^~4~^^^^^^^^^^^~05/01/1986~
-~14150~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2002~
-~14150~^~320~^0.^0^^~1~^~AS~^^^^^^^^^^~03/01/2006~
-~14150~^~417~^0.^0^^~4~^^^^^^^^^^^~05/01/1986~
-~14150~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~
-~14150~^~432~^0.^0^^~4~^^^^^^^^^^^~03/01/2006~
-~14150~^~435~^0.^0^^~4~^~NC~^^^^^^^^^^~03/01/2006~
-~14150~^~601~^0.^0^^~1~^^^^^^^^^^^~05/01/1986~
-~14151~^~208~^0.^0^^~4~^~BFZN~^^^^^^^^^^~04/01/2005~
-~14151~^~262~^15.^0^^~4~^~FLC~^^^^^^^^^^~04/01/2005~
-~14151~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2005~
-~14151~^~268~^0.^0^^~4~^^^^^^^^^^^~04/01/2005~
-~14151~^~301~^4.^0^^~4~^~BFZN~^^^^^^^^^^~04/01/2005~
-~14151~^~304~^1.^0^^~4~^~BFZN~^^^^^^^^^^~04/01/2005~
-~14151~^~305~^0.^0^^~4~^~BFZN~^^^^^^^^^^~04/01/2005~
-~14151~^~306~^2.^0^^~4~^~BFZN~^^^^^^^^^^~04/01/2005~
-~14151~^~307~^6.^0^^~4~^~BFZN~^^^^^^^^^^~04/01/2005~
-~14151~^~318~^0.^0^^~4~^~BFZN~^^^^^^^^^^~04/01/2005~
-~14151~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2002~
-~14151~^~320~^0.^0^^~4~^~NC~^^^^^^^^^^~06/01/2002~
-~14151~^~321~^0.^0^^~7~^~Z~^^^^^^^^^^~11/01/2002~
-~14151~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~11/01/2002~
-~14151~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~
-~14151~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~11/01/2002~
-~14151~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~11/01/2002~
-~14151~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~11/01/2002~
-~14151~^~417~^0.^0^^~4~^~BFZN~^^^^^^^^^^~04/01/2005~
-~14151~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~
-~14151~^~432~^0.^0^^~4~^~BFZN~^^^^^^^^^^~04/01/2005~
-~14151~^~435~^0.^0^^~4~^~NC~^^^^^^^^^^~12/01/2006~
-~14151~^~601~^0.^0^^~4~^~BFZN~^^^^^^^^^^~04/01/2005~
-~14152~^~208~^86.^0^^~4~^~NC~^^^^^^^^^^~10/01/2006~
-~14152~^~268~^360.^0^^~4~^~NC~^^^^^^^^^^~10/01/2006~
-~14153~^~208~^41.^0^^~4~^~NC~^^^^^^^^^^~05/01/1986~
-~14153~^~262~^10.^3^^~1~^^^^^^^^^^^~04/01/2003~
-~14153~^~268~^172.^0^^~4~^^^^^^^^^^^~03/01/2006~
-~14153~^~301~^3.^2^^~1~^^^^^^^^^^^~05/01/1986~
-~14153~^~304~^0.^2^^~1~^^^^^^^^^^^~05/01/1986~
-~14153~^~305~^11.^5^^~1~^^^^^^^^^^^~05/01/1986~
-~14153~^~306~^1.^8^0.^~1~^^^^^^^^^^^~05/01/1986~
-~14153~^~307~^10.^8^1.^~1~^^^^^^^^^^^~05/01/1986~
-~14153~^~318~^0.^0^^~4~^^^^^^^^^^^~05/01/1986~
-~14153~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2002~
-~14153~^~417~^0.^0^^~4~^^^^^^^^^^^~05/01/1986~
-~14153~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~
-~14153~^~432~^0.^0^^~4~^^^^^^^^^^^~05/01/1986~
-~14153~^~435~^0.^0^^~4~^~NC~^^^^^^^^^^~03/01/2006~
-~14153~^~601~^0.^0^^~1~^^^^^^^^^^^~05/01/1986~
-~14154~^~208~^43.^0^^~4~^~NC~^^^^^^^^^^~02/01/2015~
-~14154~^~262~^29.^3^0.^~1~^~A~^^^1^29.^30.^2^27.^30.^~2, 3~^~02/01/2015~
-~14154~^~263~^0.^0^^~4~^~FLC~^^^^^^^^^^~03/01/2003~
-~14154~^~268~^179.^0^^~4~^~NC~^^^^^^^^^^~02/01/2015~
-~14154~^~301~^6.^6^0.^~1~^~A~^^^1^5.^8.^5^4.^7.^~2, 3~^~02/01/2015~
-~14154~^~304~^19.^6^0.^~1~^~A~^^^1^18.^19.^5^18.^18.^~2, 3~^~02/01/2015~
-~14154~^~305~^0.^6^0.^~1~^~A~^^^1^0.^0.^^^^~1, 2, 3~^~02/01/2015~
-~14154~^~306~^3.^6^0.^~1~^~A~^^^1^2.^6.^5^1.^5.^~1, 2, 3~^~02/01/2015~
-~14154~^~307~^39.^6^0.^~1~^~A~^^^1^36.^41.^5^36.^40.^~2, 3~^~02/01/2015~
-~14154~^~318~^0.^0^^~4~^~FLC~^^^^^^^^^^~03/01/2003~
-~14154~^~319~^0.^0^^~4~^~FLC~^^^^^^^^^^~03/01/2003~
-~14154~^~320~^0.^0^^~4~^~NC~^^^^^^^^^^~03/01/2003~
-~14154~^~321~^0.^0^^~4~^~FLC~^^^^^^^^^^~03/01/2003~
-~14154~^~322~^0.^0^^~4~^~FLC~^^^^^^^^^^~03/01/2003~
-~14154~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~
-~14154~^~334~^0.^0^^~4~^~FLC~^^^^^^^^^^~03/01/2003~
-~14154~^~337~^0.^0^^~4~^~FLC~^^^^^^^^^^~03/01/2003~
-~14154~^~338~^0.^0^^~4~^~FLC~^^^^^^^^^^~03/01/2003~
-~14154~^~417~^0.^0^^~4~^~FLC~^^^^^^^^^^~03/01/2003~
-~14154~^~431~^0.^0^^~4~^~FLC~^^^^^^^^^^~03/01/2003~
-~14154~^~432~^0.^0^^~4~^~FLC~^^^^^^^^^^~03/01/2003~
-~14154~^~435~^0.^0^^~4~^~NC~^^^^^^^^^^~12/01/2006~
-~14154~^~601~^0.^0^^~4~^~FLC~^^^^^^^^^^~02/01/2015~
-~14155~^~208~^34.^0^^~4~^~NC~^^^^^^^^^^~05/01/1986~
-~14155~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~
-~14155~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~
-~14155~^~268~^142.^0^^~4~^^^^^^^^^^^~11/01/2004~
-~14155~^~301~^1.^1^^~1~^^^^^^^^^^^~05/01/1986~
-~14155~^~304~^0.^1^^~1~^^^^^^^^^^^~05/01/1986~
-~14155~^~305~^0.^3^0.^~1~^^^^^^^^^^^~05/01/1986~
-~14155~^~306~^0.^3^0.^~1~^^^^^^^^^^^~05/01/1986~
-~14155~^~307~^12.^3^1.^~8~^~LC~^^^1^10.^14.^2^7.^17.^~4~^~11/01/2004~
-~14155~^~318~^0.^0^^~1~^^^^^^^^^^^~05/01/1986~
-~14155~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2002~
-~14155~^~320~^0.^0^^~1~^~AS~^^^^^^^^^^~11/01/2004~
-~14155~^~321~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2003~
-~14155~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2003~
-~14155~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~
-~14155~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2003~
-~14155~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2003~
-~14155~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2003~
-~14155~^~417~^0.^0^^~4~^^^^^^^^^^^~05/01/1986~
-~14155~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~
-~14155~^~432~^0.^0^^~4~^^^^^^^^^^^~11/01/2004~
-~14155~^~435~^0.^0^^~4~^~NC~^^^^^^^^^^~10/01/2006~
-~14155~^~601~^0.^0^^~7~^~Z~^^^^^^^^^^~11/01/2004~
-~14156~^~208~^5.^0^^~4~^~NC~^^^^^^^^^^~02/01/2005~
-~14156~^~262~^30.^2^^~13~^~AI~^^^1^29.^31.^1^^^^~02/01/2005~
-~14156~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2009~
-~14156~^~268~^19.^0^^~4~^~NC~^^^^^^^^^^~02/01/2005~
-~14156~^~301~^13.^2^^~13~^~AI~^^^1^12.^14.^1^^^^~02/01/2005~
-~14156~^~304~^3.^2^^~13~^~AI~^^^1^3.^3.^1^^^^~02/01/2005~
-~14156~^~305~^0.^0^^~4~^~O~^^^^^^^^^^~06/01/2013~
-~14156~^~306~^3.^2^^~13~^~AI~^^^1^1.^6.^1^^^^~02/01/2005~
-~14156~^~307~^83.^0^^~4~^~NR~^^^^^^^^^^~06/01/2013~
-~14156~^~318~^0.^0^^~4~^~NC~^^^^^^^^^^~06/01/2013~
-~14156~^~319~^0.^0^^~4~^~BFZN~^~14154~^^^^^^^^^~06/01/2013~
-~14156~^~320~^0.^0^^~4~^~NC~^~14154~^^^^^^^^^~06/01/2013~
-~14156~^~321~^0.^0^^~4~^~BFZN~^~14154~^^^^^^^^^~06/01/2013~
-~14156~^~322~^0.^0^^~4~^~BFZN~^~14154~^^^^^^^^^~06/01/2013~
-~14156~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2009~
-~14156~^~334~^0.^0^^~4~^~BFZN~^~14154~^^^^^^^^^~06/01/2013~
-~14156~^~337~^0.^0^^~4~^~BFZN~^~14154~^^^^^^^^^~06/01/2013~
-~14156~^~338~^0.^0^^~4~^~BFZN~^~14154~^^^^^^^^^~06/01/2013~
-~14156~^~417~^0.^0^^~4~^~BFZN~^~14154~^^^^^^^^^~06/01/2013~
-~14156~^~431~^0.^0^^~4~^~BFZN~^~14154~^^^^^^^^^~06/01/2013~
-~14156~^~432~^0.^0^^~4~^~BFZN~^~14154~^^^^^^^^^~03/01/2009~
-~14156~^~435~^0.^0^^~4~^~NC~^~14154~^^^^^^^^^~03/01/2009~
-~14156~^~601~^0.^0^^~4~^~BFZN~^~14154~^^^^^^^^^~06/01/2013~
-~14157~^~208~^41.^0^^~4~^~NC~^^^^^^^^^^~05/01/1986~
-~14157~^~262~^0.^1^^~1~^^^^^^^^^^^~05/01/1986~
-~14157~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~
-~14157~^~268~^172.^0^^~4~^^^^^^^^^^^~01/01/2005~
-~14157~^~301~^5.^10^^~1~^^^^^^^^^^^~05/01/1986~
-~14157~^~304~^1.^10^^~1~^^^^^^^^^^^~05/01/1986~
-~14157~^~305~^0.^16^^~1~^^^^^^^^^^^~05/01/1986~
-~14157~^~306~^1.^27^^~1~^^^^^^^^^^^~05/01/1986~
-~14157~^~307~^13.^27^^~1~^^^^^^^^^^^~05/01/1986~
-~14157~^~318~^0.^0^^~1~^^^^^^^^^^^~05/01/1986~
-~14157~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2002~
-~14157~^~320~^0.^0^^~4~^~NC~^^^^^^^^^^~06/01/2002~
-~14157~^~321~^0.^0^^~7~^~Z~^^^^^^^^^^~11/01/2002~
-~14157~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~11/01/2002~
-~14157~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~
-~14157~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~11/01/2002~
-~14157~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~11/01/2002~
-~14157~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~11/01/2002~
-~14157~^~417~^0.^0^^~4~^^^^^^^^^^^~05/01/1986~
-~14157~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~
-~14157~^~432~^0.^0^^~4~^^^^^^^^^^^~05/01/1986~
-~14157~^~435~^0.^0^^~4~^~NC~^^^^^^^^^^~12/01/2006~
-~14157~^~601~^0.^0^^~1~^^^^^^^^^^^~05/01/1986~
-~14158~^~208~^78.^0^^~4~^~NC~^^^^^^^^^^~10/01/2006~
-~14158~^~268~^326.^0^^~4~^~NC~^^^^^^^^^^~10/01/2006~
-~14159~^~208~^88.^0^^~4~^~NC~^^^^^^^^^^~10/01/2006~
-~14159~^~268~^369.^0^^~4~^~NC~^^^^^^^^^^~10/01/2006~
-~14160~^~208~^84.^0^^~4~^~NC~^^^^^^^^^^~06/01/2005~
-~14160~^~268~^351.^0^^~4~^~NC~^^^^^^^^^^~06/01/2005~
-~14160~^~301~^9.^1^^~1~^~A~^^^^^^^^^^~06/01/2005~
-~14160~^~304~^10.^1^^~1~^~A~^^^^^^^^^^~06/01/2005~
-~14160~^~305~^18.^1^^~1~^~A~^^^^^^^^^^~06/01/2005~
-~14160~^~306~^71.^1^^~1~^~A~^^^^^^^^^^~06/01/2005~
-~14160~^~307~^5.^1^^~1~^~A~^^^^^^^^^^~06/01/2005~
-~14160~^~417~^1.^1^^~1~^~A~^^^^^^^^^~1~^~06/01/2005~
-~14160~^~432~^1.^1^^~1~^~A~^^^^^^^^^^~06/01/2005~
-~14161~^~208~^47.^0^^~8~^~LC~^^^^^^^^^^~03/01/2015~
-~14161~^~262~^0.^0^^~8~^~LC~^^^^^^^^^^~03/01/2015~
-~14161~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2015~
-~14161~^~268~^195.^0^^~8~^~LC~^^^^^^^^^^~03/01/2015~
-~14161~^~301~^0.^0^^~4~^~BFZN~^^^^^^^^^^~03/01/2015~
-~14161~^~304~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2015~
-~14161~^~305~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2015~
-~14161~^~306~^14.^0^^~4~^~BFZN~^^^^^^^^^^~03/01/2015~
-~14161~^~307~^11.^0^^~8~^~LC~^^^^^^^^^^~03/01/2015~
-~14161~^~318~^20.^0^^~4~^~BFZN~^~09516~^^^^^^^^^~08/01/2015~
-~14161~^~319~^0.^0^^~4~^~BFZN~^~09516~^^^^^^^^^~08/01/2015~
-~14161~^~320~^1.^0^^~4~^~BFZN~^~09516~^^^^^^^^^~08/01/2015~
-~14161~^~321~^9.^0^^~4~^~BFZN~^~09516~^^^^^^^^^~08/01/2015~
-~14161~^~322~^4.^0^^~4~^~BFZN~^~09516~^^^^^^^^^~08/01/2015~
-~14161~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2015~
-~14161~^~334~^1.^0^^~4~^~BFZN~^~09516~^^^^^^^^^~08/01/2015~
-~14161~^~337~^0.^0^^~4~^~BFZN~^~09516~^^^^^^^^^~08/01/2015~
-~14161~^~338~^25.^0^^~4~^~BFZN~^~09516~^^^^^^^^^~08/01/2015~
-~14161~^~417~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2015~
-~14161~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2015~
-~14161~^~432~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2015~
-~14161~^~435~^0.^0^^~4~^~NC~^^^^^^^^^^~03/01/2015~
-~14161~^~601~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2015~
-~14162~^~208~^22.^0^^~12~^~MA~^^^^^^^^^^~07/01/2015~
-~14162~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2015~
-~14162~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2015~
-~14162~^~268~^92.^0^^~12~^~MA~^^^^^^^^^^~07/01/2015~
-~14162~^~301~^3.^0^^~12~^~MA~^^^^^^^^^^~07/01/2015~
-~14162~^~304~^5.^0^^~4~^~BFZN~^~09517~^^^^^^^^^~04/01/2015~
-~14162~^~305~^9.^0^^~4~^~BFZN~^~09517~^^^^^^^^^~04/01/2015~
-~14162~^~306~^51.^0^^~12~^~MA~^^^^^^^^^^~07/01/2015~
-~14162~^~307~^13.^0^^~12~^~MA~^^^^^^^^^^~07/01/2015~
-~14162~^~318~^0.^0^^~4~^~NC~^^^^^^^^^^~04/01/2015~
-~14162~^~319~^0.^0^^~4~^~BFZN~^~09018~^^^^^^^^^~04/01/2015~
-~14162~^~320~^0.^0^^~4~^~BFZN~^~09018~^^^^^^^^^~04/01/2015~
-~14162~^~321~^0.^0^^~4~^~BFZN~^~09018~^^^^^^^^^~04/01/2015~
-~14162~^~322~^0.^0^^~4~^~BFZN~^~09018~^^^^^^^^^~04/01/2015~
-~14162~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2015~
-~14162~^~334~^0.^0^^~4~^~BFZN~^~09018~^^^^^^^^^~04/01/2015~
-~14162~^~337~^0.^0^^~4~^~BFZN~^~09018~^^^^^^^^^~04/01/2015~
-~14162~^~338~^16.^0^^~4~^~BFZN~^~09018~^^^^^^^^^~04/01/2015~
-~14162~^~417~^0.^0^^~4~^~BFZN~^~09517~^^^^^^^^^~04/01/2015~
-~14162~^~431~^0.^0^^~4~^~BFZN~^~09517~^^^^^^^^^~04/01/2015~
-~14162~^~432~^0.^0^^~4~^~BFZN~^~09517~^^^^^^^^^~04/01/2015~
-~14162~^~435~^0.^0^^~4~^~NC~^~09517~^^^^^^^^^~04/01/2015~
-~14162~^~601~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2015~
-~14163~^~208~^101.^0^^~8~^~LC~^^^^^^^^^^~04/01/2015~
-~14163~^~262~^0.^0^^~4~^~FLC~^^^^^^^^^^~04/01/2015~
-~14163~^~263~^13.^0^^~4~^~FLC~^^^^^^^^^^~04/01/2015~
-~14163~^~268~^424.^0^^~8~^~LC~^^^^^^^^^^~04/01/2015~
-~14163~^~301~^127.^0^^~8~^~LC~^^^^^^^^^^~04/01/2015~
-~14163~^~304~^42.^0^^~8~^~LC~^^^^^^^^^^~04/01/2015~
-~14163~^~305~^127.^0^^~8~^~LC~^^^^^^^^^^~04/01/2015~
-~14163~^~306~^245.^0^^~8~^~LC~^^^^^^^^^^~04/01/2015~
-~14163~^~307~^63.^0^^~8~^~LC~^^^^^^^^^^~04/01/2015~
-~14163~^~318~^527.^0^^~8~^~LC~^^^^^^^^^^~04/01/2015~
-~14163~^~319~^158.^0^^~4~^~O~^^^^^^^^^^~04/01/2015~
-~14163~^~320~^158.^0^^~4~^~O~^^^^^^^^^^~04/01/2015~
-~14163~^~321~^1.^0^^~4~^~FLC~^^^^^^^^^^~04/01/2015~
-~14163~^~322~^0.^0^^~4~^~FLC~^^^^^^^^^^~04/01/2015~
-~14163~^~324~^101.^0^^~8~^~LC~^^^^^^^^^^~04/01/2015~
-~14163~^~334~^0.^0^^~4~^~FLC~^^^^^^^^^^~04/01/2015~
-~14163~^~337~^0.^0^^~4~^~FLC~^^^^^^^^^^~04/01/2015~
-~14163~^~338~^0.^0^^~4~^~FLC~^^^^^^^^^^~04/01/2015~
-~14163~^~417~^42.^0^^~8~^~LC~^^^^^^^^^^~04/01/2015~
-~14163~^~431~^42.^0^^~4~^~O~^^^^^^^^^^~04/01/2015~
-~14163~^~432~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2015~
-~14163~^~435~^72.^0^^~4~^~NC~^^^^^^^^^^~04/01/2015~
-~14163~^~601~^4.^0^^~8~^~LC~^^^^^^^^^^~04/01/2015~
-~14164~^~208~^57.^0^^~4~^~NC~^^^^^^^^^^~06/01/2015~
-~14164~^~262~^1.^2^^~1~^~A~^^^1^1.^1.^1^^^^~06/01/2015~
-~14164~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2015~
-~14164~^~268~^239.^0^^~4~^~NC~^^^^^^^^^^~06/01/2015~
-~14164~^~301~^160.^6^1.^~1~^~A~^^^1^158.^166.^5^156.^163.^~2, 3~^~06/01/2015~
-~14164~^~304~^24.^6^0.^~1~^~A~^^^1^23.^27.^5^22.^25.^~2, 3~^~06/01/2015~
-~14164~^~305~^94.^6^1.^~1~^~A~^^^1^89.^97.^5^90.^96.^~2, 3~^~06/01/2015~
-~14164~^~306~^191.^6^5.^~1~^~A~^^^1^172.^208.^5^176.^204.^~2, 3~^~06/01/2015~
-~14164~^~307~^60.^6^1.^~1~^~A~^^^1^52.^64.^5^55.^64.^~2, 3~^~06/01/2015~
-~14164~^~318~^570.^0^^~4~^~NC~^^^^^^^^^^~06/01/2015~
-~14164~^~319~^171.^0^^~4~^~O~^^^^^^^^^^~06/01/2015~
-~14164~^~320~^171.^0^^~4~^~NC~^^^^^^^^^^~06/01/2015~
-~14164~^~321~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2015~
-~14164~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2015~
-~14164~^~324~^100.^0^^~4~^~O~^^^^^^^^^^~06/01/2015~
-~14164~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2015~
-~14164~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2015~
-~14164~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2015~
-~14164~^~417~^7.^2^^~1~^~A~^^^1^7.^7.^1^^^^~06/01/2015~
-~14164~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2015~
-~14164~^~432~^7.^0^^~4~^~NR~^^^^^^^^^^~06/01/2015~
-~14164~^~435~^7.^0^^~4~^~NC~^^^^^^^^^^~06/01/2015~
-~14164~^~601~^5.^0^^~4~^~BFFN~^~01082~^^^^^^^^^~06/01/2015~
-~14165~^~208~^17.^0^^~4~^~NC~^^^^^^^^^^~11/01/2016~
-~14165~^~262~^18.^3^0.^~1~^~A~^^^1^18.^19.^2^17.^18.^~2, 3~^~02/01/2015~
-~14165~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2015~
-~14165~^~268~^73.^0^^~4~^~NC~^^^^^^^^^^~11/01/2016~
-~14165~^~301~^2.^6^0.^~1~^~A~^^^1^1.^3.^5^1.^2.^~2, 3~^~02/01/2015~
-~14165~^~304~^0.^6^0.^~1~^~A~^^^1^0.^0.^5^0.^0.^~2, 3~^~02/01/2015~
-~14165~^~305~^29.^6^0.^~1~^~A~^^^1^28.^30.^5^27.^29.^~2, 3~^~02/01/2015~
-~14165~^~306~^19.^6^0.^~1~^~A~^^^1^17.^21.^5^17.^21.^~2, 3~^~02/01/2015~
-~14165~^~307~^40.^6^2.^~1~^~A~^^^1^29.^44.^5^34.^46.^~2, 3~^~02/01/2015~
-~14165~^~318~^0.^0^^~1~^~AS~^^^^^^^^^^~02/01/2015~
-~14165~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2015~
-~14165~^~320~^0.^0^^~1~^~AS~^^^^^^^^^^~11/01/2016~
-~14165~^~321~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2015~
-~14165~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2015~
-~14165~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2015~
-~14165~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2015~
-~14165~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2015~
-~14165~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2015~
-~14165~^~417~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2015~
-~14165~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2015~
-~14165~^~432~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2015~
-~14165~^~435~^0.^0^^~4~^~NC~^^^^^^^^^^~02/01/2015~
-~14165~^~601~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2015~
-~14166~^~208~^0.^0^^~4~^~NC~^^^^^^^^^^~12/01/2002~
-~14166~^~262~^11.^17^0.^~1~^^^^^^^^^^^~04/01/2003~
-~14166~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~
-~14166~^~268~^0.^0^^~4~^^^^^^^^^^^~12/01/2002~
-~14166~^~301~^4.^74^0.^~6~^~JA~^^^1^3.^4.^1^0.^8.^~4~^~12/01/2002~
-~14166~^~304~^1.^74^0.^~6~^~JA~^^^1^1.^1.^1^-2.^3.^~4~^~12/01/2002~
-~14166~^~305~^11.^41^0.^~6~^~JA~^^^1^11.^11.^1^8.^12.^~4~^~12/01/2002~
-~14166~^~306~^4.^74^2.^~6~^~JA~^^^1^2.^6.^1^-24.^32.^~4~^~12/01/2002~
-~14166~^~307~^16.^72^0.^~1~^^^^^^^^^^^~12/01/2002~
-~14166~^~318~^0.^0^^~1~^^^^^^^^^^^~12/01/2002~
-~14166~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2002~
-~14166~^~320~^0.^0^^~1~^~AS~^^^^^^^^^^~12/01/2002~
-~14166~^~321~^0.^0^^~7~^~Z~^^^^^^^^^^~11/01/2002~
-~14166~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~11/01/2002~
-~14166~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~11/01/2002~
-~14166~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~11/01/2002~
-~14166~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~11/01/2002~
-~14166~^~417~^0.^4^^~1~^^^^^^^^^^^~12/01/2002~
-~14166~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~
-~14166~^~432~^0.^4^^~1~^^^^^^^^^^^~12/01/2002~
-~14166~^~435~^0.^0^^~4~^~NC~^^^^^^^^^^~07/01/2003~
-~14166~^~601~^0.^0^^~1~^^^^^^^^^^^~12/01/2002~
-~14167~^~208~^0.^0^^~8~^~LC~^^^^^^^^^^~12/01/2014~
-~14167~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~12/01/2014~
-~14167~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~12/01/2014~
-~14167~^~268~^0.^0^^~8~^~LC~^^^^^^^^^^~12/01/2014~
-~14167~^~301~^0.^0^^~7~^~Z~^^^^^^^^^^~12/01/2014~
-~14167~^~304~^0.^0^^~7~^~Z~^^^^^^^^^^~12/01/2014~
-~14167~^~305~^0.^0^^~7~^~Z~^^^^^^^^^^~12/01/2014~
-~14167~^~306~^10.^0^^~8~^~LC~^^^^^^^^^^~12/01/2014~
-~14167~^~307~^42.^0^^~8~^~LC~^^^^^^^^^^~12/01/2014~
-~14167~^~318~^0.^0^^~1~^~AS~^^^^^^^^^^~12/01/2014~
-~14167~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~12/01/2014~
-~14167~^~320~^0.^0^^~7~^~Z~^^^^^^^^^^~12/01/2014~
-~14167~^~321~^0.^0^^~7~^~Z~^^^^^^^^^^~12/01/2014~
-~14167~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~12/01/2014~
-~14167~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~12/01/2014~
-~14167~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~12/01/2014~
-~14167~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~12/01/2014~
-~14167~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~12/01/2014~
-~14167~^~417~^0.^0^^~7~^~Z~^^^^^^^^^^~12/01/2014~
-~14167~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~12/01/2014~
-~14167~^~432~^0.^0^^~7~^~Z~^^^^^^^^^^~12/01/2014~
-~14167~^~435~^0.^0^^~4~^~NC~^^^^^^^^^^~12/01/2014~
-~14167~^~601~^0.^0^^~7~^~Z~^^^^^^^^^^~12/01/2014~
-~14168~^~208~^372.^0^^~4~^~NC~^^^^^^^^^^~05/01/1986~
-~14168~^~268~^1556.^0^^~4~^^^^^^^^^^^~05/01/2006~
-~14168~^~301~^32.^0^^~4~^^^^^^^^^^^~05/01/1986~
-~14168~^~304~^5.^0^^~4~^^^^^^^^^^^~05/01/1986~
-~14168~^~305~^7.^0^^~4~^^^^^^^^^^^~05/01/1986~
-~14168~^~306~^104.^0^^~4~^^^^^^^^^^^~05/01/1986~
-~14168~^~307~^103.^2^^~1~^^^^^^^^^^^~05/01/1986~
-~14168~^~318~^0.^0^^~4~^^^^^^^^^^^~05/01/1986~
-~14168~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2002~
-~14168~^~320~^0.^0^^~4~^~NC~^^^^^^^^^^~06/01/2002~
-~14168~^~417~^0.^0^^~4~^^^^^^^^^^^~05/01/1986~
-~14168~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~
-~14168~^~432~^0.^0^^~4~^^^^^^^^^^^~05/01/1986~
-~14168~^~435~^0.^0^^~4~^~NC~^^^^^^^^^^~05/01/2006~
-~14168~^~601~^0.^0^^~1~^^^^^^^^^^^~05/01/1986~
-~14169~^~208~^75.^0^^~6~^~RPI~^^^^^^^^^^~03/01/2003~
-~14169~^~268~^313.^0^^~6~^~RPI~^^^^^^^^^^~03/01/2003~
-~14169~^~301~^98.^0^^~6~^~RPI~^^^^^^^^^^~03/01/2003~
-~14169~^~304~^10.^0^^~6~^~RPI~^^^^^^^^^^~03/01/2003~
-~14169~^~305~^80.^0^^~6~^~RPI~^^^^^^^^^^~03/01/2003~
-~14169~^~306~^131.^0^^~6~^~RPI~^^^^^^^^^^~03/01/2003~
-~14169~^~307~^46.^0^^~1~^~RPA~^^^^^^^^^^~03/01/2003~
-~14169~^~318~^97.^0^^~6~^~RPI~^^^^^^^^^^~03/01/2003~
-~14169~^~319~^27.^0^^~6~^~RPI~^^^^^^^^^^~03/01/2003~
-~14169~^~320~^27.^0^^~4~^~NC~^^^^^^^^^^~03/01/2003~
-~14169~^~417~^5.^0^^~6~^~RPI~^^^^^^^^^^~03/01/2003~
-~14169~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~
-~14169~^~432~^5.^0^^~6~^~RPI~^^^^^^^^^^~03/01/2003~
-~14169~^~435~^5.^0^^~4~^~NC~^^^^^^^^^^~03/01/2003~
-~14169~^~601~^10.^0^^~1~^~RPA~^^^^^^^^^^~03/01/2003~
-~14171~^~208~^31.^0^^~4~^~NC~^^^^^^^^^^~12/01/2014~
-~14171~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~12/01/2014~
-~14171~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~12/01/2014~
-~14171~^~268~^131.^0^^~4~^~NC~^^^^^^^^^^~12/01/2014~
-~14171~^~301~^188.^0^^~8~^~LC~^^^^^^^^^^~12/01/2014~
-~14171~^~304~^0.^0^^~7~^~Z~^^^^^^^^^^~12/01/2014~
-~14171~^~305~^0.^0^^~7~^~Z~^^^^^^^^^^~12/01/2014~
-~14171~^~306~^19.^0^^~8~^~LC~^^^^^^^^^^~12/01/2014~
-~14171~^~307~^19.^0^^~8~^~LC~^^^^^^^^^^~12/01/2014~
-~14171~^~318~^208.^0^^~8~^~LC~^^^^^^^^^^~12/01/2014~
-~14171~^~319~^63.^0^^~4~^~NR~^^^^^^^^^^~12/01/2014~
-~14171~^~320~^63.^0^^~4~^~NR~^^^^^^^^^^~12/01/2014~
-~14171~^~321~^0.^0^^~7~^~Z~^^^^^^^^^^~12/01/2014~
-~14171~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~12/01/2014~
-~14171~^~324~^42.^0^^~8~^~LC~^^^^^^^^^^~12/01/2014~
-~14171~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~12/01/2014~
-~14171~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~12/01/2014~
-~14171~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~12/01/2014~
-~14171~^~417~^0.^0^^~7~^~Z~^^^^^^^^^^~12/01/2014~
-~14171~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~12/01/2014~
-~14171~^~432~^0.^0^^~7~^~Z~^^^^^^^^^^~12/01/2014~
-~14171~^~435~^0.^0^^~4~^~NC~^^^^^^^^^^~12/01/2014~
-~14171~^~601~^0.^0^^~8~^~LC~^^^^^^^^^^~12/01/2014~
-~14173~^~208~^36.^0^^~8~^~LC~^^^^^^^^^^~02/01/2015~
-~14173~^~262~^18.^0^^~8~^~LC~^^^^^^^^^^~02/01/2015~
-~14173~^~263~^0.^0^^~4~^~BFZN~^~14179~^^^^^^^^^~02/01/2015~
-~14173~^~268~^149.^0^^~8~^~LC~^^^^^^^^^^~02/01/2015~
-~14173~^~301~^71.^0^^~8~^~LC~^^^^^^^^^^~02/01/2015~
-~14173~^~304~^9.^0^^~4~^~BFZN~^~14179~^^^^^^^^^~02/01/2015~
-~14173~^~305~^59.^0^^~4~^~BFZN~^~14179~^^^^^^^^^~02/01/2015~
-~14173~^~306~^175.^0^^~4~^~BFZN~^~14179~^^^^^^^^^~02/01/2015~
-~14173~^~307~^34.^0^^~8~^~LC~^^^^^^^^^^~02/01/2015~
-~14173~^~318~^0.^0^^~8~^~LC~^^^^^^^^^^~02/01/2015~
-~14173~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2015~
-~14173~^~320~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2015~
-~14173~^~321~^0.^0^^~4~^~BFZN~^~14179~^^^^^^^^^~02/01/2015~
-~14173~^~322~^0.^0^^~4~^~BFZN~^~14179~^^^^^^^^^~02/01/2015~
-~14173~^~324~^1.^0^^~4~^~BFFN~^~01175~^^^^^^^^^~02/01/2015~
-~14173~^~334~^0.^0^^~4~^~BFZN~^~14179~^^^^^^^^^~02/01/2015~
-~14173~^~337~^0.^0^^~4~^~BFZN~^~14179~^^^^^^^^^~02/01/2015~
-~14173~^~338~^0.^0^^~4~^~BFZN~^~14179~^^^^^^^^^~02/01/2015~
-~14173~^~417~^0.^0^^~4~^~BFZN~^~14179~^^^^^^^^^~02/01/2015~
-~14173~^~431~^0.^0^^~4~^~BFZN~^~14179~^^^^^^^^^~02/01/2015~
-~14173~^~432~^0.^0^^~4~^~BFZN~^~14179~^^^^^^^^^~02/01/2015~
-~14173~^~435~^0.^0^^~4~^~NC~^~14179~^^^^^^^^^~02/01/2015~
-~14173~^~601~^5.^0^^~8~^~LC~^^^^^^^^^^~02/01/2015~
-~14174~^~208~^21.^0^^~8~^~LC~^^^^^^^^^^~12/01/2014~
-~14174~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~12/01/2014~
-~14174~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~12/01/2014~
-~14174~^~268~^87.^0^^~8~^~LC~^^^^^^^^^^~12/01/2014~
-~14174~^~301~^2.^0^^~4~^~BFZN~^~14095~^^^^^^^^^~12/01/2014~
-~14174~^~304~^2.^0^^~4~^~BFZN~^~14095~^^^^^^^^^~12/01/2014~
-~14174~^~305~^1.^0^^~4~^~BFZN~^~14095~^^^^^^^^^~12/01/2014~
-~14174~^~306~^10.^0^^~4~^~BFZN~^~14095~^^^^^^^^^~12/01/2014~
-~14174~^~307~^5.^0^^~8~^~LC~^^^^^^^^^^~12/01/2014~
-~14174~^~318~^0.^0^^~4~^~NC~^^^^^^^^^^~12/01/2014~
-~14174~^~319~^0.^0^^~4~^~BFZN~^~14095~^^^^^^^^^~12/01/2014~
-~14174~^~320~^0.^0^^~4~^~BFZN~^~14095~^^^^^^^^^~12/01/2014~
-~14174~^~321~^0.^0^^~4~^~BFZN~^~14095~^^^^^^^^^~12/01/2014~
-~14174~^~322~^0.^0^^~4~^~BFZN~^~14095~^^^^^^^^^~12/01/2014~
-~14174~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~12/01/2014~
-~14174~^~334~^0.^0^^~4~^~BFZN~^~14095~^^^^^^^^^~12/01/2014~
-~14174~^~337~^0.^0^^~4~^~BFZN~^~14095~^^^^^^^^^~12/01/2014~
-~14174~^~338~^0.^0^^~4~^~BFZN~^~14095~^^^^^^^^^~12/01/2014~
-~14174~^~417~^1.^0^^~4~^~BFZN~^~14095~^^^^^^^^^~12/01/2014~
-~14174~^~431~^0.^0^^~4~^~BFZN~^~14095~^^^^^^^^^~12/01/2014~
-~14174~^~432~^1.^0^^~4~^~BFZN~^~14095~^^^^^^^^^~12/01/2014~
-~14174~^~435~^1.^0^^~4~^~NC~^~14095~^^^^^^^^^~12/01/2014~
-~14174~^~601~^0.^0^^~8~^~LC~^^^^^^^^^^~12/01/2014~
-~14177~^~208~^85.^0^^~6~^~RPI~^^^^^^^^^^~03/01/2003~
-~14177~^~262~^3.^0^^~6~^~RPI~^^^^^^^^^^~03/01/2003~
-~14177~^~263~^104.^0^^~6~^~RPI~^^^^^^^^^^~03/01/2003~
-~14177~^~268~^356.^0^^~6~^~RPI~^^^^^^^^^^~03/01/2003~
-~14177~^~301~^95.^0^^~1~^~RPA~^^^^^^^^^^~03/01/2003~
-~14177~^~304~^18.^0^^~1~^~RPA~^^^^^^^^^^~03/01/2003~
-~14177~^~305~^88.^0^^~1~^~RPA~^^^^^^^^^^~03/01/2003~
-~14177~^~306~^172.^0^^~1~^~RPA~^^^^^^^^^^~03/01/2003~
-~14177~^~307~^58.^0^^~1~^~RPA~^^^^^^^^^^~03/01/2003~
-~14177~^~318~^93.^0^^~4~^~NC~^^^^^^^^^^~09/01/2015~
-~14177~^~319~^26.^0^^~6~^~RPI~^^^^^^^^^^~03/01/2003~
-~14177~^~320~^26.^0^^~4~^~NC~^^^^^^^^^^~09/01/2015~
-~14177~^~321~^5.^0^^~6~^~RPI~^^^^^^^^^^~03/01/2003~
-~14177~^~322~^0.^0^^~6~^~RPI~^^^^^^^^^^~03/01/2003~
-~14177~^~334~^0.^0^^~6~^~RPI~^^^^^^^^^^~03/01/2003~
-~14177~^~337~^0.^0^^~6~^~RPI~^^^^^^^^^^~03/01/2003~
-~14177~^~338~^0.^0^^~6~^~RPI~^^^^^^^^^^~03/01/2003~
-~14177~^~417~^5.^0^^~6~^~RPI~^^^^^^^^^^~03/01/2003~
-~14177~^~431~^0.^0^^~6~^~RPI~^^^^^^^^^^~03/01/2003~
-~14177~^~432~^5.^0^^~6~^~RPI~^^^^^^^^^^~03/01/2003~
-~14177~^~435~^5.^0^^~4~^~NC~^^^^^^^^^^~06/01/2009~
-~14177~^~601~^9.^0^^~6~^~RPI~^^^^^^^^^^~03/01/2003~
-~14179~^~208~^71.^0^^~4~^~NC~^^^^^^^^^^~02/01/2015~
-~14179~^~262~^28.^1^^~1~^~A~^^^^^^^^^^~02/01/2015~
-~14179~^~263~^0.^0^^~4~^~BFZN~^~14173~^^^^^^^^^~02/01/2015~
-~14179~^~268~^296.^0^^~4~^~NC~^^^^^^^^^^~02/01/2015~
-~14179~^~301~^74.^5^1.^~1~^~A~^^^1^70.^77.^4^69.^77.^~2, 3~^~02/01/2015~
-~14179~^~304~^9.^5^0.^~1~^~A~^^^1^9.^10.^4^8.^9.^~2, 3~^~02/01/2015~
-~14179~^~305~^59.^5^0.^~1~^~A~^^^1^56.^61.^4^55.^61.^~2, 3~^~02/01/2015~
-~14179~^~306~^175.^5^4.^~1~^~A~^^^1^166.^192.^4^160.^188.^~2, 3~^~02/01/2015~
-~14179~^~307~^26.^5^0.^~1~^~A~^^^1^24.^27.^4^24.^27.^~2, 3~^~02/01/2015~
-~14179~^~318~^0.^0^^~4~^~NC~^^^^^^^^^^~02/01/2015~
-~14179~^~319~^0.^0^^~4~^~BFZN~^~14173~^^^^^^^^^~02/01/2015~
-~14179~^~320~^0.^0^^~4~^~NC~^~14173~^^^^^^^^^~02/01/2015~
-~14179~^~321~^0.^0^^~4~^~BFZN~^~14173~^^^^^^^^^~02/01/2015~
-~14179~^~322~^0.^0^^~4~^~BFZN~^~14173~^^^^^^^^^~02/01/2015~
-~14179~^~324~^1.^0^^~4~^~O~^^^^^^^^^^~08/01/2015~
-~14179~^~334~^0.^0^^~4~^~BFZN~^~14173~^^^^^^^^^~02/01/2015~
-~14179~^~337~^0.^0^^~4~^~BFZN~^~14173~^^^^^^^^^~02/01/2015~
-~14179~^~338~^0.^0^^~4~^~BFZN~^~14173~^^^^^^^^^~02/01/2015~
-~14179~^~417~^0.^0^^~4~^~BFZN~^~14173~^^^^^^^^^~02/01/2015~
-~14179~^~431~^0.^0^^~4~^~BFZN~^~14173~^^^^^^^^^~02/01/2015~
-~14179~^~432~^0.^0^^~4~^~BFZN~^~14173~^^^^^^^^^~02/01/2015~
-~14179~^~435~^0.^0^^~4~^~NC~^~14173~^^^^^^^^^~02/01/2015~
-~14179~^~601~^5.^0^^~4~^~BFZN~^~14173~^^^^^^^^^~02/01/2015~
-~14180~^~208~^2.^0^^~4~^~NC~^^^^^^^^^^~02/01/2015~
-~14180~^~262~^37.^0^^~1~^~A~^^^^^^^^^^~08/01/2016~
-~14180~^~268~^8.^0^^~4~^~NC~^^^^^^^^^^~11/01/2016~
-~14180~^~301~^2.^6^0.^~1~^~A~^^^1^2.^2.^5^1.^1.^~2, 3~^~02/01/2015~
-~14180~^~304~^4.^6^0.^~1~^~A~^^^1^3.^4.^5^3.^3.^~2, 3~^~02/01/2015~
-~14180~^~305~^3.^6^0.^~1~^~A~^^^1^3.^3.^5^2.^3.^~2, 3~^~02/01/2015~
-~14180~^~306~^50.^6^1.^~1~^~A~^^^1^44.^56.^5^46.^54.^~2, 3~^~02/01/2015~
-~14180~^~307~^1.^6^0.^~1~^~A~^^^1^1.^1.^5^0.^1.^~1, 2, 3~^~02/01/2015~
-~14180~^~318~^0.^0^^~1~^~AS~^^^^^^^^^^~02/01/2015~
-~14180~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2015~
-~14180~^~320~^0.^0^^~1~^~AS~^^^^^^^^^^~11/01/2016~
-~14180~^~321~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2015~
-~14180~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2015~
-~14180~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2015~
-~14180~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2015~
-~14180~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2015~
-~14180~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2015~
-~14180~^~417~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2015~
-~14180~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2015~
-~14180~^~432~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2015~
-~14180~^~435~^0.^0^^~4~^~NC~^^^^^^^^^^~02/01/2015~
-~14180~^~601~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2015~
-~14181~^~208~^279.^0^^~4~^~NC~^^^^^^^^^^~01/01/2008~
-~14181~^~262~^6.^0^^~4~^~FLA~^^^^^^^^^^~12/01/2006~
-~14181~^~263~^190.^0^^~4~^~FLA~^^^^^^^^^^~12/01/2006~
-~14181~^~268~^1167.^0^^~4~^~NC~^^^^^^^^^^~01/01/2008~
-~14181~^~301~^14.^3^^~1~^^^^^^^^^^^~05/01/1986~
-~14181~^~304~^65.^3^^~1~^^^^^^^^^^^~05/01/1986~
-~14181~^~305~^129.^2^^~1~^^^^^^^^^^^~05/01/1986~
-~14181~^~306~^224.^3^^~1~^^^^^^^^^^^~01/01/2005~
-~14181~^~307~^72.^15^13.^~1~^~A~^^^^^^^^^^~03/01/1998~
-~14181~^~318~^0.^0^^~4~^~FLA~^^^^^^^^^^~01/01/2008~
-~14181~^~319~^0.^0^^~4~^~FLA~^^^^^^^^^^~12/01/2002~
-~14181~^~320~^0.^0^^~4~^~NC~^^^^^^^^^^~01/01/2008~
-~14181~^~321~^0.^0^^~4~^~FLA~^^^^^^^^^^~08/01/2003~
-~14181~^~322~^0.^0^^~4~^~FLA~^^^^^^^^^^~12/01/2002~
-~14181~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~
-~14181~^~334~^0.^0^^~4~^~FLA~^^^^^^^^^^~12/01/2002~
-~14181~^~337~^0.^0^^~4~^~FLA~^^^^^^^^^^~12/01/2002~
-~14181~^~338~^3.^0^^~4~^~FLA~^^^^^^^^^^~12/01/2006~
-~14181~^~417~^2.^0^^~4~^~FLA~^^^^^^^^^^~12/01/2006~
-~14181~^~431~^0.^0^^~4~^~FLA~^^^^^^^^^^~12/01/2002~
-~14181~^~432~^2.^0^^~4~^~FLA~^^^^^^^^^^~12/01/2006~
-~14181~^~435~^2.^0^^~4~^~NC~^^^^^^^^^^~01/01/2008~
-~14181~^~601~^0.^0^^~4~^~FLA~^^^^^^^^^^~01/01/2005~
-~14182~^~208~^90.^0^^~6~^~RPI~^^^^^^^^^^~03/01/2003~
-~14182~^~262~^2.^0^^~6~^~RPI~^^^^^^^^^^~04/01/2002~
-~14182~^~263~^64.^0^^~6~^~RPI~^^^^^^^^^^~04/01/2002~
-~14182~^~268~^377.^0^^~6~^~RPI~^^^^^^^^^^~03/01/2003~
-~14182~^~301~^89.^0^^~1~^~RPA~^^^^^^^^^^~03/01/2003~
-~14182~^~304~^18.^0^^~1~^~RPA~^^^^^^^^^^~03/01/2003~
-~14182~^~305~^90.^0^^~1~^~RPA~^^^^^^^^^^~03/01/2003~
-~14182~^~306~^145.^0^^~1~^~RPA~^^^^^^^^^^~03/01/2003~
-~14182~^~307~^47.^0^^~1~^~RPA~^^^^^^^^^^~03/01/2003~
-~14182~^~318~^88.^0^^~6~^~RPI~^^^^^^^^^^~03/01/2003~
-~14182~^~319~^24.^0^^~6~^~RPI~^^^^^^^^^^~03/01/2003~
-~14182~^~320~^25.^0^^~4~^~NC~^^^^^^^^^^~09/01/2015~
-~14182~^~321~^4.^0^^~6~^~RPI~^^^^^^^^^^~03/01/2003~
-~14182~^~322~^0.^0^^~6~^~RPI~^^^^^^^^^^~03/01/2003~
-~14182~^~334~^0.^0^^~6~^~RPI~^^^^^^^^^^~03/01/2003~
-~14182~^~337~^0.^0^^~6~^~RPI~^^^^^^^^^^~03/01/2003~
-~14182~^~338~^0.^0^^~6~^~RPI~^^^^^^^^^^~03/01/2003~
-~14182~^~417~^5.^0^^~6~^~RPI~^^^^^^^^^^~03/01/2003~
-~14182~^~431~^0.^0^^~6~^~RPI~^^^^^^^^^^~04/01/2002~
-~14182~^~432~^5.^0^^~6~^~RPI~^^^^^^^^^^~03/01/2003~
-~14182~^~435~^5.^0^^~4~^~NC~^^^^^^^^^^~03/01/2003~
-~14182~^~601~^9.^0^^~1~^~RPA~^^^^^^^^^^~03/01/2003~
-~14183~^~208~^60.^0^^~4~^~NC~^^^^^^^^^^~02/01/2015~
-~14183~^~262~^20.^2^^~1~^~A~^^^1^20.^21.^1^^^^~02/01/2015~
-~14183~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2015~
-~14183~^~268~^253.^0^^~4~^~NC~^^^^^^^^^^~02/01/2015~
-~14183~^~301~^52.^6^1.^~1~^~A~^^^1^44.^57.^5^47.^56.^~2, 3~^~02/01/2015~
-~14183~^~304~^9.^6^0.^~1~^~A~^^^1^7.^10.^5^7.^10.^~2, 3~^~02/01/2015~
-~14183~^~305~^59.^6^2.^~1~^~A~^^^1^51.^67.^5^51.^66.^~2, 3~^~02/01/2015~
-~14183~^~306~^136.^6^7.^~1~^~A~^^^1^115.^157.^5^115.^155.^~2, 3~^~02/01/2015~
-~14183~^~307~^31.^6^1.^~1~^~A~^^^1^25.^36.^5^26.^35.^~2, 3~^~02/01/2015~
-~14183~^~318~^0.^0^^~1~^~AS~^^^^^^^^^^~02/01/2015~
-~14183~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2015~
-~14183~^~320~^0.^0^^~1~^~AS~^^^^^^^^^^~02/01/2017~
-~14183~^~321~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2015~
-~14183~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2015~
-~14183~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2015~
-~14183~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2015~
-~14183~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2015~
-~14183~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2015~
-~14183~^~417~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2015~
-~14183~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2015~
-~14183~^~432~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2015~
-~14183~^~435~^0.^0^^~4~^~NC~^^^^^^^^^^~02/01/2015~
-~14183~^~601~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2015~
-~14185~^~208~^1.^0^^~4~^~NC~^^^^^^^^^^~02/01/2015~
-~14185~^~262~^16.^2^^~1~^~A~^^^1^14.^19.^1^^^^~02/01/2015~
-~14185~^~263~^2.^2^^~1~^~A~^^^1^1.^4.^1^^^~1~^~02/01/2015~
-~14185~^~268~^2.^0^^~4~^~NC~^^^^^^^^^^~02/01/2015~
-~14185~^~301~^1.^3^0.^~1~^~A~^^^1^1.^1.^2^0.^0.^~2, 3~^~02/01/2015~
-~14185~^~304~^1.^3^0.^~1~^~A~^^^1^1.^1.^2^0.^0.^~2, 3~^~02/01/2015~
-~14185~^~305~^1.^3^0.^~1~^~A~^^^1^1.^1.^2^0.^1.^~2, 3~^~02/01/2015~
-~14185~^~306~^12.^3^1.^~1~^~A~^^^1^10.^14.^2^6.^16.^~2, 3~^~02/01/2015~
-~14185~^~307~^3.^3^0.^~1~^~A~^^^1^3.^4.^2^2.^4.^~2, 3~^~02/01/2015~
-~14185~^~318~^0.^0^^~1~^~AS~^^^^^^^^^^~02/01/2015~
-~14185~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2015~
-~14185~^~320~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2015~
-~14185~^~321~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2015~
-~14185~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2015~
-~14185~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2015~
-~14185~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2015~
-~14185~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2015~
-~14185~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2015~
-~14185~^~417~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2015~
-~14185~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2015~
-~14185~^~432~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2015~
-~14185~^~435~^0.^0^^~4~^~NC~^^^^^^^^^^~02/01/2015~
-~14185~^~601~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2015~
-~14187~^~208~^48.^0^^~4~^~NC~^^^^^^^^^^~11/01/2003~
-~14187~^~262~^0.^0^^~4~^~FLC~^^^^^^^^^^~11/01/2003~
-~14187~^~263~^0.^0^^~4~^~FLC~^^^^^^^^^^~11/01/2003~
-~14187~^~268~^200.^0^^~4~^~NC~^^^^^^^^^^~11/01/2003~
-~14187~^~301~^8.^1^^~8~^~LC~^^^^^^^^^^~11/01/2003~
-~14187~^~304~^5.^0^^~4~^~FLC~^^^^^^^^^^~11/01/2003~
-~14187~^~305~^11.^0^^~4~^~FLC~^^^^^^^^^^~11/01/2003~
-~14187~^~306~^89.^0^^~4~^~FLC~^^^^^^^^^^~11/01/2003~
-~14187~^~307~^362.^2^^~1~^~A~^^^^^^^^^^~12/01/1997~
-~14187~^~318~^149.^0^^~4~^~NC~^^^^^^^^^^~11/01/2003~
-~14187~^~319~^0.^0^^~4~^~FLC~^^^^^^^^^^~11/01/2003~
-~14187~^~320~^7.^0^^~4~^~FLC~^^^^^^^^^^~11/01/2003~
-~14187~^~321~^89.^0^^~4~^~FLC~^^^^^^^^^^~11/01/2003~
-~14187~^~322~^0.^0^^~4~^~FLC~^^^^^^^^^^~11/01/2003~
-~14187~^~334~^0.^0^^~4~^~FLC~^^^^^^^^^^~11/01/2003~
-~14187~^~337~^2982.^0^^~4~^~FLC~^^^^^^^^^^~11/01/2003~
-~14187~^~338~^20.^0^^~4~^~FLC~^^^^^^^^^^~11/01/2003~
-~14187~^~417~^8.^0^^~4~^~FLC~^^^^^^^^^^~11/01/2003~
-~14187~^~431~^0.^0^^~4~^~FLC~^^^^^^^^^^~11/01/2003~
-~14187~^~432~^8.^0^^~4~^~FLC~^^^^^^^^^^~11/01/2003~
-~14187~^~435~^8.^0^^~4~^~NC~^^^^^^^^^^~11/01/2003~
-~14187~^~601~^0.^1^^~8~^~LC~^^^^^^^^^^~11/01/2003~
-~14188~^~208~^30.^0^^~4~^~NC~^^^^^^^^^^~02/01/2015~
-~14188~^~262~^4.^3^0.^~1~^~A~^^^2^3.^5.^1^2.^4.^~2, 3~^~06/01/2015~
-~14188~^~263~^0.^1^^~1~^~A~^^^^^^^^^~1~^~06/01/2015~
-~14188~^~268~^127.^0^^~4~^~NC~^^^^^^^^^^~06/01/2015~
-~14188~^~301~^3.^8^0.^~1~^~A~^^^2^1.^11.^5^2.^4.^~2, 3~^~06/01/2015~
-~14188~^~304~^1.^8^0.^~1~^~A~^^^2^0.^2.^5^0.^1.^~2, 3~^~02/01/2015~
-~14188~^~305~^0.^8^0.^~1~^~A~^^^2^0.^0.^5^0.^0.^~2, 3~^~02/01/2015~
-~14188~^~306~^5.^8^0.^~1~^~A~^^^2^3.^9.^5^4.^6.^~2, 3~^~02/01/2015~
-~14188~^~307~^2.^8^0.^~1~^~A~^^^2^1.^4.^5^1.^2.^~1, 2, 3~^~02/01/2015~
-~14188~^~318~^0.^0^^~1~^~AS~^^^^^^^^^^~02/01/2015~
-~14188~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2015~
-~14188~^~320~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2015~
-~14188~^~321~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2015~
-~14188~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2015~
-~14188~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2015~
-~14188~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2015~
-~14188~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2015~
-~14188~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2015~
-~14188~^~417~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2015~
-~14188~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2015~
-~14188~^~432~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2015~
-~14188~^~435~^0.^0^^~4~^~NC~^^^^^^^^^^~02/01/2015~
-~14188~^~601~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2015~
-~14189~^~208~^46.^0^^~8~^~LC~^^^^^^^^^^~04/01/2015~
-~14189~^~262~^0.^0^^~4~^~BFZN~^~14095~^^^^^^^^^~04/01/2015~
-~14189~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2015~
-~14189~^~268~^192.^0^^~8~^~LC~^^^^^^^^^^~04/01/2015~
-~14189~^~301~^2.^0^^~4~^~BFZN~^~14095~^^^^^^^^^~04/01/2015~
-~14189~^~304~^2.^0^^~4~^~BFZN~^~14095~^^^^^^^^^~04/01/2015~
-~14189~^~305~^1.^0^^~4~^~BFZN~^~14095~^^^^^^^^^~04/01/2015~
-~14189~^~306~^10.^0^^~4~^~BFZN~^~14095~^^^^^^^^^~04/01/2015~
-~14189~^~307~^6.^0^^~8~^~LC~^^^^^^^^^^~04/01/2015~
-~14189~^~318~^0.^0^^~4~^~NC~^^^^^^^^^^~04/01/2015~
-~14189~^~319~^0.^0^^~4~^~BFZN~^~14095~^^^^^^^^^~04/01/2015~
-~14189~^~320~^0.^0^^~4~^~BFZN~^~14095~^^^^^^^^^~04/01/2015~
-~14189~^~321~^0.^0^^~4~^~BFZN~^~14095~^^^^^^^^^~04/01/2015~
-~14189~^~322~^0.^0^^~4~^~BFZN~^~14095~^^^^^^^^^~04/01/2015~
-~14189~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2015~
-~14189~^~334~^0.^0^^~4~^~BFZN~^~14095~^^^^^^^^^~04/01/2015~
-~14189~^~337~^0.^0^^~4~^~BFZN~^~14095~^^^^^^^^^~04/01/2015~
-~14189~^~338~^0.^0^^~4~^~BFZN~^~14095~^^^^^^^^^~04/01/2015~
-~14189~^~417~^1.^0^^~4~^~BFZN~^~14095~^^^^^^^^^~04/01/2015~
-~14189~^~431~^0.^0^^~4~^~BFZN~^~14095~^^^^^^^^^~04/01/2015~
-~14189~^~432~^1.^0^^~4~^~BFZN~^~14095~^^^^^^^^^~04/01/2015~
-~14189~^~435~^1.^0^^~4~^~NC~^~14095~^^^^^^^^^~04/01/2015~
-~14189~^~601~^0.^0^^~4~^~BFZN~^~14095~^^^^^^^^^~04/01/2015~
-~14190~^~208~^4.^0^^~4~^~NC~^^^^^^^^^^~11/01/2016~
-~14190~^~262~^4.^2^^~1~^~A~^^^1^4.^4.^1^^^^~04/01/2015~
-~14190~^~263~^0.^2^^~1~^~A~^^^1^0.^0.^^^^~1~^~04/01/2015~
-~14190~^~268~^16.^0^^~4~^~NC~^^^^^^^^^^~11/01/2016~
-~14190~^~301~^1.^5^0.^~1~^~A~^^^1^0.^3.^4^0.^2.^~1, 2, 3~^~04/01/2015~
-~14190~^~304~^1.^5^0.^~1~^~A~^^^1^0.^1.^4^0.^1.^~2, 3~^~04/01/2015~
-~14190~^~305~^0.^5^0.^~1~^~A~^^^1^0.^0.^4^0.^0.^~2, 3~^~04/01/2015~
-~14190~^~306~^5.^5^0.^~1~^~A~^^^1^5.^6.^4^5.^5.^~2, 3~^~04/01/2015~
-~14190~^~307~^6.^5^1.^~1~^~A~^^^1^2.^10.^4^1.^10.^~2, 3~^~04/01/2015~
-~14190~^~318~^0.^0^^~1~^~AS~^^^^^^^^^^~04/01/2015~
-~14190~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2015~
-~14190~^~320~^0.^0^^~1~^~AS~^^^^^^^^^^~11/01/2016~
-~14190~^~321~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2015~
-~14190~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2015~
-~14190~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2015~
-~14190~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2015~
-~14190~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2015~
-~14190~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2015~
-~14190~^~417~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2015~
-~14190~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2015~
-~14190~^~432~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2015~
-~14190~^~435~^0.^0^^~4~^~NC~^^^^^^^^^^~04/01/2015~
-~14190~^~601~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2015~
-~14191~^~208~^1.^0^^~4~^~NC~^^^^^^^^^^~04/01/2015~
-~14191~^~262~^5.^1^^~1~^~A~^^^^^^^^^^~04/01/2015~
-~14191~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2015~
-~14191~^~268~^5.^0^^~4~^~NC~^^^^^^^^^^~08/01/2015~
-~14191~^~301~^1.^6^0.^~1~^~A~^^^1^0.^1.^5^0.^1.^~2, 3~^~04/01/2015~
-~14191~^~304~^0.^6^0.^~1~^~A~^^^1^0.^0.^5^0.^0.^~1, 2, 3~^~04/01/2015~
-~14191~^~305~^36.^6^0.^~1~^~A~^^^1^35.^37.^5^35.^36.^~2, 3~^~04/01/2015~
-~14191~^~306~^13.^6^0.^~1~^~A~^^^1^12.^13.^5^12.^12.^~2, 3~^~04/01/2015~
-~14191~^~307~^26.^6^0.^~1~^~A~^^^1^24.^28.^5^24.^27.^~2, 3~^~04/01/2015~
-~14191~^~318~^0.^0^^~1~^~AS~^^^^^^^^^^~04/01/2015~
-~14191~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2015~
-~14191~^~320~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2015~
-~14191~^~321~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2015~
-~14191~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2015~
-~14191~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2015~
-~14191~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2015~
-~14191~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2015~
-~14191~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2015~
-~14191~^~417~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2015~
-~14191~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2015~
-~14191~^~432~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2015~
-~14191~^~435~^0.^0^^~4~^~NC~^^^^^^^^^^~04/01/2015~
-~14191~^~601~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2015~
-~14192~^~208~^398.^0^^~4~^~NC~^^^^^^^^^^~12/01/2006~
-~14192~^~262~^18.^10^^~1~^^^^^^^^^^^~05/01/1986~
-~14192~^~263~^323.^0^^~4~^~FLA~^^^^^^^^^^~12/01/2006~
-~14192~^~268~^1664.^0^^~4~^~NC~^^^^^^^^^^~12/01/2006~
-~14192~^~301~^133.^3^17.^~8~^~LC~^^^1^99.^158.^2^57.^208.^~4~^~01/01/2005~
-~14192~^~304~^83.^9^^~1~^^^^^^^^^^^~05/01/1986~
-~14192~^~305~^315.^8^^~1~^^^^^^^^^^^~01/01/2005~
-~14192~^~306~^712.^8^^~1~^^^^^^^^^^^~01/01/2005~
-~14192~^~307~^504.^8^^~1~^^^^^^^^^^^~01/01/2005~
-~14192~^~318~^4.^0^^~4~^~FLA~^^^^^^^^^^~12/01/2006~
-~14192~^~319~^1.^0^^~4~^~FLA~^^^^^^^^^^~12/01/2006~
-~14192~^~320~^1.^0^^~4~^~FLA~^^^^^^^^^^~12/01/2006~
-~14192~^~321~^0.^0^^~4~^~FLA~^^^^^^^^^^~12/01/2006~
-~14192~^~322~^0.^0^^~4~^~FLA~^^^^^^^^^^~01/01/2005~
-~14192~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~
-~14192~^~334~^0.^0^^~4~^~FLA~^^^^^^^^^^~01/01/2005~
-~14192~^~337~^0.^0^^~4~^~FLA~^^^^^^^^^^~01/01/2005~
-~14192~^~338~^5.^0^^~4~^~FLA~^^^^^^^^^^~12/01/2006~
-~14192~^~417~^6.^0^^~4~^~FLA~^^^^^^^^^^~12/01/2006~
-~14192~^~431~^0.^0^^~4~^~FLA~^^^^^^^^^^~01/01/2005~
-~14192~^~432~^6.^0^^~4~^~FLA~^^^^^^^^^^~12/01/2006~
-~14192~^~435~^6.^0^^~4~^~NC~^^^^^^^^^^~12/01/2006~
-~14192~^~601~^0.^3^0.^~8~^~LC~^^^1^0.^0.^2^0.^0.^~4~^~12/01/2006~
-~14194~^~208~^55.^0^^~6~^~RPI~^^^^^^^^^^~03/01/2003~
-~14194~^~262~^2.^0^^~6~^~RPI~^^^^^^^^^^~03/01/2003~
-~14194~^~263~^44.^0^^~6~^~RPI~^^^^^^^^^^~12/01/2006~
-~14194~^~268~^229.^0^^~6~^~RPI~^^^^^^^^^^~03/01/2003~
-~14194~^~301~^21.^0^^~6~^~RPI~^^^^^^^^^^~12/01/2006~
-~14194~^~304~^12.^0^^~1~^~RPA~^^^^^^^^^^~12/01/2006~
-~14194~^~305~^43.^0^^~1~^~RPA~^^^^^^^^^^~12/01/2006~
-~14194~^~306~^99.^0^^~1~^~RPA~^^^^^^^^^^~12/01/2006~
-~14194~^~307~^73.^0^^~1~^~RPA~^^^^^^^^^^~12/01/2006~
-~14194~^~318~^1.^0^^~4~^~NC~^^^^^^^^^^~09/01/2015~
-~14194~^~319~^0.^0^^~6~^~RPI~^^^^^^^^^^~12/01/2006~
-~14194~^~320~^0.^0^^~4~^~NC~^^^^^^^^^^~09/01/2015~
-~14194~^~321~^0.^0^^~6~^~RPI~^^^^^^^^^^~12/01/2006~
-~14194~^~322~^0.^0^^~6~^~RPI~^^^^^^^^^^~03/01/2003~
-~14194~^~334~^0.^0^^~6~^~RPI~^^^^^^^^^^~03/01/2003~
-~14194~^~337~^0.^0^^~6~^~RPI~^^^^^^^^^^~03/01/2003~
-~14194~^~338~^1.^0^^~6~^~RPI~^^^^^^^^^^~12/01/2006~
-~14194~^~417~^1.^0^^~6~^~RPI~^^^^^^^^^^~12/01/2006~
-~14194~^~431~^0.^0^^~6~^~RPI~^^^^^^^^^^~03/01/2003~
-~14194~^~432~^1.^0^^~6~^~RPI~^^^^^^^^^^~12/01/2006~
-~14194~^~435~^1.^0^^~4~^~NC~^^^^^^^^^^~12/01/2006~
-~14194~^~601~^0.^0^^~6~^~RPI~^^^^^^^^^^~12/01/2006~
-~14195~^~208~^400.^1^^~9~^~MC~^^^^^^^^^^~04/01/2006~
-~14195~^~268~^1674.^0^^~9~^~MC~^^^^^^^^^^~04/01/2006~
-~14195~^~301~^80.^1^^~9~^~MC~^^^^^^^^^^~04/01/2006~
-~14195~^~307~^800.^1^^~9~^~MC~^^^^^^^^^^~04/01/2006~
-~14195~^~318~^10.^1^^~9~^~MC~^^^^^^^^^^~04/01/2006~
-~14195~^~601~^0.^1^^~9~^~MC~^^^^^^^^^^~04/01/2006~
-~14196~^~208~^377.^0^^~4~^~NC~^^^^^^^^^^~12/01/2006~
-~14196~^~262~^19.^0^^~4~^~FLA~^^^^^^^^^^~01/01/2005~
-~14196~^~263~^658.^0^^~4~^~FLA~^^^^^^^^^^~01/01/2005~
-~14196~^~268~^1576.^0^^~4~^~NC~^^^^^^^^^^~12/01/2006~
-~14196~^~301~^576.^1^^~1~^^^^^^^^^^^~05/01/1986~
-~14196~^~304~^208.^2^^~1~^^^^^^^^^^^~03/01/2002~
-~14196~^~305~^893.^1^^~1~^^^^^^^^^^^~02/01/2003~
-~14196~^~306~^2702.^2^^~1~^^^^^^^^^^^~02/01/2003~
-~14196~^~307~^876.^3^189.^~8~^~LC~^^^1^496.^1067.^2^58.^1692.^~4~^~01/01/2005~
-~14196~^~318~^15.^0^^~4~^~FLA~^^^^^^^^^^~01/01/2005~
-~14196~^~319~^4.^0^^~4~^~FLA~^^^^^^^^^^~01/01/2005~
-~14196~^~320~^4.^0^^~4~^~FLA~^^^^^^^^^^~01/01/2005~
-~14196~^~321~^1.^0^^~4~^~FLA~^^^^^^^^^^~01/01/2005~
-~14196~^~322~^0.^0^^~4~^~FLA~^^^^^^^^^^~12/01/2002~
-~14196~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~
-~14196~^~334~^0.^0^^~4~^~FLA~^^^^^^^^^^~12/01/2002~
-~14196~^~337~^0.^0^^~4~^~FLA~^^^^^^^^^^~12/01/2002~
-~14196~^~338~^9.^0^^~4~^~FLA~^^^^^^^^^^~01/01/2005~
-~14196~^~417~^14.^0^^~4~^~FLA~^^^^^^^^^^~01/01/2005~
-~14196~^~431~^0.^0^^~4~^~FLA~^^^^^^^^^^~01/01/2005~
-~14196~^~432~^14.^0^^~4~^~FLA~^^^^^^^^^^~01/01/2005~
-~14196~^~435~^14.^0^^~4~^~NC~^^^^^^^^^^~12/01/2006~
-~14196~^~601~^0.^3^0.^~8~^~LC~^^^1^0.^0.^2^0.^0.^~4~^~01/01/2005~
-~14197~^~208~^400.^1^^~9~^~MC~^^^^^^^^^^~04/01/2006~
-~14197~^~268~^1674.^0^^~9~^~MC~^^^^^^^^^^~04/01/2006~
-~14197~^~301~^100.^1^^~9~^~MC~^^^^^^^^^^~04/01/2006~
-~14197~^~306~^0.^1^^~8~^~LC~^^^^^^^^^^~04/01/2006~
-~14197~^~307~^850.^1^^~9~^~MC~^^^^^^^^^^~04/01/2006~
-~14197~^~318~^11.^1^^~9~^~MC~^^^^^^^^^^~04/01/2006~
-~14197~^~601~^0.^1^^~9~^~MC~^^^^^^^^^^~04/01/2006~
-~14199~^~208~^45.^0^^~4~^~NC~^^^^^^^^^^~04/01/2015~
-~14199~^~262~^9.^4^2.^~1~^~A~^^^1^4.^14.^3^0.^17.^~2, 3~^~04/01/2015~
-~14199~^~263~^0.^3^0.^~1~^~A~^^^1^0.^1.^2^0.^1.^~1, 2, 3~^~04/01/2015~
-~14199~^~268~^189.^0^^~4~^~NC~^^^^^^^^^^~04/01/2015~
-~14199~^~301~^4.^7^1.^~1~^~A~^^^1^0.^12.^6^0.^8.^~1, 2, 3~^~04/01/2015~
-~14199~^~304~^1.^7^0.^~1~^~A~^^^1^0.^2.^6^0.^1.^~2, 3~^~04/01/2015~
-~14199~^~305~^1.^7^0.^~1~^~A~^^^1^0.^4.^6^0.^3.^~1, 2, 3~^~04/01/2015~
-~14199~^~306~^14.^7^3.^~1~^~A~^^^1^9.^28.^6^6.^22.^~2, 3~^~04/01/2015~
-~14199~^~307~^3.^7^0.^~1~^~A~^^^1^2.^6.^6^1.^4.^~2, 3~^~04/01/2015~
-~14199~^~318~^0.^0^^~1~^~AS~^^^^^^^^^^~04/01/2015~
-~14199~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2015~
-~14199~^~320~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2015~
-~14199~^~321~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2015~
-~14199~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2015~
-~14199~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2015~
-~14199~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2015~
-~14199~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2015~
-~14199~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2015~
-~14199~^~417~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2015~
-~14199~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2015~
-~14199~^~432~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2015~
-~14199~^~435~^0.^0^^~4~^~NC~^^^^^^^^^^~04/01/2015~
-~14199~^~601~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2015~
-~14201~^~208~^0.^0^^~4~^~NC~^^^^^^^^^^~04/01/2004~
-~14201~^~262~^1.^0^^~4~^~BFZN~^^^^^^^^^^~01/01/1999~
-~14201~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~
-~14201~^~268~^1.^0^^~4~^~NC~^^^^^^^^^^~04/01/2004~
-~14201~^~301~^2.^0^^~4~^~BFZN~^^^^^^^^^^~04/01/2004~
-~14201~^~304~^5.^0^^~4~^~BFZN~^^^^^^^^^^~04/01/2004~
-~14201~^~305~^1.^0^^~4~^~BFZN~^^^^^^^^^^~04/01/2004~
-~14201~^~306~^54.^0^^~4~^~BFZN~^^^^^^^^^^~04/01/2004~
-~14201~^~307~^2.^0^^~4~^~BFZN~^^^^^^^^^^~04/01/2004~
-~14201~^~318~^0.^0^^~4~^~BFZN~^^^^^^^^^^~01/01/1999~
-~14201~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2002~
-~14201~^~320~^0.^0^^~1~^~AS~^^^^^^^^^^~04/01/2004~
-~14201~^~321~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2004~
-~14201~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2004~
-~14201~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~
-~14201~^~334~^0.^0^^~4~^~NR~^^^^^^^^^^~04/01/2004~
-~14201~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2004~
-~14201~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2004~
-~14201~^~417~^0.^0^^~4~^~BFZN~^^^^^^^^^^~04/01/2004~
-~14201~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~
-~14201~^~432~^0.^0^^~4~^~BFZN~^^^^^^^^^^~04/01/2004~
-~14201~^~435~^0.^0^^~4~^~NC~^^^^^^^^^^~10/01/2006~
-~14201~^~601~^0.^0^^~4~^~BFZN~^^^^^^^^^^~01/01/1999~
-~14202~^~208~^9.^0^^~4~^~NC~^~14201~^^^^^^^^^~08/01/2012~
-~14202~^~262~^1.^0^^~4~^~BFZN~^^^^^^^^^^~01/01/1999~
-~14202~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~
-~14202~^~268~^37.^0^^~4~^~NC~^~14201~^^^^^^^^^~08/01/2012~
-~14202~^~301~^2.^0^^~4~^~BFZN~^^^^^^^^^^~01/01/1999~
-~14202~^~304~^80.^0^^~4~^~BFZN~^^^^^^^^^^~01/01/1999~
-~14202~^~305~^7.^0^^~4~^~BFZN~^^^^^^^^^^~01/01/1999~
-~14202~^~306~^115.^0^^~4~^~BFZN~^^^^^^^^^^~01/01/1999~
-~14202~^~307~^14.^0^^~4~^~BFZN~^^^^^^^^^^~01/01/1999~
-~14202~^~318~^0.^0^^~4~^~BFZN~^^^^^^^^^^~01/01/1999~
-~14202~^~319~^0.^0^^~4~^~BFZN~^~14201~^^^^^^^^^~04/01/2004~
-~14202~^~320~^0.^0^^~4~^~BFZN~^~14201~^^^^^^^^^~04/01/2004~
-~14202~^~321~^0.^0^^~4~^~BFZN~^~14201~^^^^^^^^^~04/01/2004~
-~14202~^~322~^0.^0^^~4~^~BFZN~^~14201~^^^^^^^^^~04/01/2004~
-~14202~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~
-~14202~^~334~^0.^0^^~4~^~BFZN~^~14201~^^^^^^^^^~04/01/2004~
-~14202~^~337~^0.^0^^~4~^~BFZN~^~14201~^^^^^^^^^~04/01/2004~
-~14202~^~338~^0.^0^^~4~^~BFZN~^~14201~^^^^^^^^^~04/01/2004~
-~14202~^~417~^1.^0^^~4~^~BFZN~^^^^^^^^^^~01/01/1999~
-~14202~^~431~^0.^0^^~4~^~BFZN~^~14201~^^^^^^^^^~04/01/2004~
-~14202~^~432~^1.^0^^~4~^~BFZN~^^^^^^^^^^~05/01/2004~
-~14202~^~435~^1.^0^^~4~^~NC~^~14201~^^^^^^^^^~10/01/2006~
-~14202~^~601~^0.^0^^~4~^~BFZN~^^^^^^^^^^~01/01/1999~
-~14203~^~208~^352.^0^^~4~^~NC~^^^^^^^^^^~08/01/2012~
-~14203~^~262~^1571.^0^^~4~^~FLC~^^^^^^^^^^~01/01/1999~
-~14203~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~
-~14203~^~268~^1473.^0^^~4~^~NC~^^^^^^^^^^~08/01/2012~
-~14203~^~301~^141.^0^^~4~^~BFZN~^^^^^^^^^^~01/01/1999~
-~14203~^~304~^327.^0^^~4~^~BFZN~^^^^^^^^^^~01/01/1999~
-~14203~^~305~^303.^0^^~4~^~BFZN~^^^^^^^^^^~01/01/1999~
-~14203~^~306~^3535.^0^^~4~^~BFZN~^^^^^^^^^^~01/01/1999~
-~14203~^~307~^37.^0^^~4~^~BFZN~^^^^^^^^^^~01/01/1999~
-~14203~^~318~^0.^0^^~4~^~BFZN~^^^^^^^^^^~01/01/1999~
-~14203~^~319~^0.^0^^~4~^~BFZN~^~14218~^^^^^^^^^~02/01/2003~
-~14203~^~320~^0.^0^^~4~^~BFZN~^~14218~^^^^^^^^^~02/01/2003~
-~14203~^~321~^0.^0^^~4~^~BFZN~^~14218~^^^^^^^^^~02/01/2003~
-~14203~^~322~^0.^0^^~4~^~BFZN~^~14218~^^^^^^^^^~02/01/2003~
-~14203~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~
-~14203~^~334~^0.^0^^~4~^~BFZN~^~14218~^^^^^^^^^~02/01/2003~
-~14203~^~337~^0.^0^^~4~^~BFZN~^~14218~^^^^^^^^^~02/01/2003~
-~14203~^~338~^0.^0^^~4~^~BFZN~^~14218~^^^^^^^^^~02/01/2003~
-~14203~^~417~^0.^0^^~4~^~BFZN~^^^^^^^^^^~01/01/1999~
-~14203~^~431~^0.^0^^~4~^~BFZN~^~14218~^^^^^^^^^~02/01/2003~
-~14203~^~432~^0.^0^^~4~^~BFZN~^~14218~^^^^^^^^^~02/01/2003~
-~14203~^~435~^0.^0^^~4~^~NC~^~14218~^^^^^^^^^~03/01/2008~
-~14203~^~601~^0.^0^^~4~^~BFZN~^^^^^^^^^^~01/01/1999~
-~14204~^~208~^440.^0^^~4~^~NC~^^^^^^^^^^~08/01/2012~
-~14204~^~262~^25.^0^^~4~^~FLC~^^^^^^^^^^~12/01/2006~
-~14204~^~263~^324.^0^^~4~^~FLC~^^^^^^^^^^~12/01/2006~
-~14204~^~268~^1843.^0^^~4~^~NC~^^^^^^^^^^~08/01/2012~
-~14204~^~301~^60.^0^^~4~^~BFZN~^^^^^^^^^^~05/01/2007~
-~14204~^~304~^122.^0^^~4~^~BFZN~^^^^^^^^^^~05/01/2007~
-~14204~^~305~^451.^0^^~4~^~BFZN~^^^^^^^^^^~05/01/2007~
-~14204~^~306~^1856.^0^^~4~^~BFZN~^^^^^^^^^^~05/01/2007~
-~14204~^~307~^500.^0^^~4~^~BFZN~^^^^^^^^^^~05/01/2007~
-~14204~^~318~^4.^0^^~4~^~BFZN~^^^^^^^^^^~05/01/2007~
-~14204~^~319~^0.^0^^~4~^~BFZN~^^^^^^^^^^~05/01/2007~
-~14204~^~320~^0.^0^^~4~^~BFZN~^^^^^^^^^^~05/01/2007~
-~14204~^~321~^2.^0^^~4~^~BFZN~^^^^^^^^^^~05/01/2007~
-~14204~^~322~^0.^0^^~4~^~BFZN~^^^^^^^^^^~05/01/2007~
-~14204~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~
-~14204~^~334~^0.^0^^~4~^~BFZN~^^^^^^^^^^~05/01/2007~
-~14204~^~337~^0.^0^^~4~^~BFZN~^^^^^^^^^^~05/01/2007~
-~14204~^~338~^6.^0^^~4~^~BFZN~^^^^^^^^^^~05/01/2007~
-~14204~^~417~^5.^0^^~4~^~BFZN~^^^^^^^^^^~05/01/2007~
-~14204~^~431~^0.^0^^~4~^~BFZN~^^^^^^^^^^~05/01/2007~
-~14204~^~432~^5.^0^^~4~^~BFZN~^^^^^^^^^^~05/01/2007~
-~14204~^~435~^5.^0^^~4~^~NC~^^^^^^^^^^~05/01/2007~
-~14204~^~601~^0.^0^^~4~^~BFZN~^^^^^^^^^^~05/01/2007~
-~14206~^~208~^27.^0^^~4~^~NC~^^^^^^^^^^~04/01/2015~
-~14206~^~262~^5.^2^^~1~^~A~^^^1^5.^5.^1^^^^~04/01/2015~
-~14206~^~263~^1.^1^^~1~^~A~^^^^^^^^^^~04/01/2015~
-~14206~^~268~^112.^0^^~4~^~NC~^^^^^^^^^^~04/01/2015~
-~14206~^~301~^1.^6^0.^~1~^~A~^^^1^0.^1.^5^0.^0.^~2, 3~^~04/01/2015~
-~14206~^~304~^0.^6^0.^~1~^~A~^^^1^0.^0.^5^0.^0.^~1, 2, 3~^~04/01/2015~
-~14206~^~305~^31.^6^0.^~1~^~A~^^^1^30.^32.^5^30.^31.^~2, 3~^~04/01/2015~
-~14206~^~306~^12.^6^0.^~1~^~A~^^^1^12.^13.^5^12.^12.^~2, 3~^~04/01/2015~
-~14206~^~307~^21.^6^0.^~1~^~A~^^^1^20.^25.^5^19.^23.^~2, 3~^~04/01/2015~
-~14206~^~318~^0.^0^^~1~^~AS~^^^^^^^^^^~04/01/2015~
-~14206~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2015~
-~14206~^~320~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2015~
-~14206~^~321~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2015~
-~14206~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2015~
-~14206~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2015~
-~14206~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2015~
-~14206~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2015~
-~14206~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2015~
-~14206~^~417~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2015~
-~14206~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2015~
-~14206~^~432~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2015~
-~14206~^~435~^0.^0^^~4~^~NC~^^^^^^^^^^~04/01/2015~
-~14206~^~601~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2015~
-~14207~^~208~^2.^0^^~8~^~LC~^^^^^^^^^^~04/01/2015~
-~14207~^~262~^8.^1^^~1~^~A~^^^^^^^^^^~04/01/2015~
-~14207~^~263~^0.^1^^~1~^~A~^^^^^^^^^~1~^~04/01/2015~
-~14207~^~268~^9.^0^^~8~^~LC~^^^^^^^^^^~04/01/2015~
-~14207~^~301~^0.^3^0.^~1~^~A~^^^1^0.^0.^^^^~1, 2, 3~^~04/01/2015~
-~14207~^~304~^0.^3^0.^~1~^~A~^^^1^0.^0.^2^0.^0.^~2, 3~^~04/01/2015~
-~14207~^~305~^0.^3^0.^~1~^~A~^^^1^0.^0.^2^0.^0.^~2, 3~^~04/01/2015~
-~14207~^~306~^37.^3^0.^~1~^~A~^^^1^36.^37.^2^34.^38.^~2, 3~^~04/01/2015~
-~14207~^~307~^1.^3^0.^~1~^~A~^^^1^1.^1.^2^0.^0.^~1, 2, 3~^~04/01/2015~
-~14207~^~318~^0.^0^^~1~^~AS~^^^^^^^^^^~04/01/2015~
-~14207~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2015~
-~14207~^~320~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2015~
-~14207~^~321~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2015~
-~14207~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2015~
-~14207~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2015~
-~14207~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2015~
-~14207~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2015~
-~14207~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2015~
-~14207~^~417~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2015~
-~14207~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2015~
-~14207~^~432~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2015~
-~14207~^~435~^0.^0^^~4~^~NC~^^^^^^^^^^~04/01/2015~
-~14207~^~601~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2015~
-~14209~^~208~^1.^0^^~4~^~NC~^^^^^^^^^^~03/01/2006~
-~14209~^~262~^40.^8^0.^~1~^~A~^^^4^30.^44.^4^38.^41.^~2, 3~^~04/01/2004~
-~14209~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2004~
-~14209~^~268~^2.^0^^~4~^~NC~^^^^^^^^^^~03/01/2006~
-~14209~^~301~^2.^11^0.^~1~^~A~^^^4^1.^5.^7^1.^1.^~2, 3~^~04/01/2004~
-~14209~^~304~^3.^11^0.^~1~^~A~^^^4^2.^5.^7^2.^3.^~2, 3~^~04/01/2004~
-~14209~^~305~^3.^11^0.^~1~^~A~^^^4^2.^4.^7^2.^2.^~1, 2, 3~^~04/01/2004~
-~14209~^~306~^49.^11^0.^~1~^~A~^^^4^43.^52.^7^47.^50.^~2, 3~^~04/01/2004~
-~14209~^~307~^2.^11^0.^~1~^~A~^^^4^0.^5.^7^1.^1.^~2, 3~^~04/01/2004~
-~14209~^~318~^0.^0^^~4~^^^^^^^^^^^~05/01/1986~
-~14209~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2002~
-~14209~^~320~^0.^0^^~1~^~AS~^^^^^^^^^^~09/01/2015~
-~14209~^~321~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~
-~14209~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~
-~14209~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~
-~14209~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~
-~14209~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~
-~14209~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~
-~14209~^~417~^2.^6^0.^~1~^~A~^^^4^0.^3.^2^1.^2.^~1, 2, 3~^~04/01/2004~
-~14209~^~431~^0.^2^^~1~^~A~^^^2^0.^0.^^^^~1~^~04/01/2004~
-~14209~^~432~^2.^6^0.^~1~^~A~^^^4^0.^3.^2^1.^2.^^~03/01/2006~
-~14209~^~435~^2.^0^^~4~^~NC~^^^^^^^^^^~03/01/2006~
-~14209~^~601~^0.^0^^~1~^^^^^^^^^^^~04/01/2004~
-~14210~^~208~^9.^0^^~4~^~NC~^^^^^^^^^^~08/01/2012~
-~14210~^~262~^212.^2^^~1~^~A~^^^^^^^^^^~03/01/1996~
-~14210~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2003~
-~14210~^~268~^36.^0^^~4~^~NC~^^^^^^^^^^~08/01/2012~
-~14210~^~301~^2.^2^^~1~^~A~^^^^^^^^^^~03/01/1996~
-~14210~^~304~^80.^2^^~1~^~A~^^^^^^^^^^~03/01/1996~
-~14210~^~305~^7.^2^^~1~^~A~^^^^^^^^^^~03/01/1996~
-~14210~^~306~^115.^2^^~1~^~A~^^^^^^^^^^~03/01/1996~
-~14210~^~307~^14.^2^^~1~^~A~^^^^^^^^^^~03/01/1996~
-~14210~^~318~^0.^0^^~4~^~BFZN~^^^^^^^^^^~03/01/1996~
-~14210~^~319~^0.^0^^~4~^~BFZN~^~14209~^^^^^^^^^~04/01/2004~
-~14210~^~320~^0.^0^^~4~^~BFZN~^~14209~^^^^^^^^^~04/01/2004~
-~14210~^~321~^0.^0^^~4~^~BFZN~^~14209~^^^^^^^^^~04/01/2004~
-~14210~^~322~^0.^0^^~4~^~BFZN~^~14209~^^^^^^^^^~04/01/2004~
-~14210~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~
-~14210~^~334~^0.^0^^~4~^~BFZN~^~14209~^^^^^^^^^~04/01/2004~
-~14210~^~337~^0.^0^^~4~^~BFZN~^~14209~^^^^^^^^^~04/01/2004~
-~14210~^~338~^0.^0^^~4~^~BFZN~^~14209~^^^^^^^^^~04/01/2004~
-~14210~^~417~^1.^2^^~1~^~A~^^^^^^^^^^~03/01/1996~
-~14210~^~431~^0.^0^^~4~^~BFZN~^~14209~^^^^^^^^^~04/01/2004~
-~14210~^~432~^1.^2^^~1~^~A~^^^^^^^^^^~04/01/2004~
-~14210~^~435~^1.^0^^~4~^~NC~^~14209~^^^^^^^^^~10/01/2006~
-~14210~^~601~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/1996~
-~14211~^~208~^1.^0^^~4~^~NC~^^^^^^^^^^~04/01/2015~
-~14211~^~262~^2.^2^^~1~^~A~^^^1^1.^2.^1^^^^~04/01/2015~
-~14211~^~263~^0.^2^^~1~^~A~^^^1^0.^0.^^^^~1~^~04/01/2015~
-~14211~^~268~^4.^0^^~4~^~NC~^^^^^^^^^^~04/01/2015~
-~14211~^~301~^0.^3^0.^~1~^~A~^^^1^0.^0.^2^0.^0.^~2, 3~^~04/01/2015~
-~14211~^~304~^0.^3^0.^~1~^~A~^^^1^0.^0.^^^^~1, 2, 3~^~04/01/2015~
-~14211~^~305~^33.^3^0.^~1~^~A~^^^1^33.^34.^2^32.^34.^~2, 3~^~04/01/2015~
-~14211~^~306~^14.^3^0.^~1~^~A~^^^1^14.^14.^2^13.^14.^~2, 3~^~04/01/2015~
-~14211~^~307~^17.^3^0.^~1~^~A~^^^1^17.^17.^2^16.^17.^~2, 3~^~04/01/2015~
-~14211~^~318~^0.^0^^~1~^~AS~^^^^^^^^^^~04/01/2015~
-~14211~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2015~
-~14211~^~320~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2015~
-~14211~^~321~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2015~
-~14211~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2015~
-~14211~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2015~
-~14211~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2015~
-~14211~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2015~
-~14211~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2015~
-~14211~^~417~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2015~
-~14211~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2015~
-~14211~^~432~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2015~
-~14211~^~435~^0.^0^^~4~^~NC~^^^^^^^^^^~04/01/2015~
-~14211~^~601~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2015~
-~14214~^~208~^353.^0^^~4~^~NC~^^^^^^^^^^~08/01/2012~
-~14214~^~262~^3142.^15^^~1~^^^^^^^^^^^~05/01/1986~
-~14214~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2001~
-~14214~^~268~^1479.^0^^~4~^~NC~^^^^^^^^^^~08/01/2012~
-~14214~^~301~^141.^28^^~1~^^^^^^^^^^^~05/01/1986~
-~14214~^~304~^327.^23^^~1~^^^^^^^^^^^~05/01/1986~
-~14214~^~305~^303.^28^^~1~^^^^^^^^^^^~05/01/1986~
-~14214~^~306~^3535.^32^^~1~^^^^^^^^^^^~05/01/1986~
-~14214~^~307~^37.^32^^~1~^^^^^^^^^^^~05/01/1986~
-~14214~^~318~^0.^0^^~1~^^^^^^^^^^^~05/01/1986~
-~14214~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2002~
-~14214~^~320~^0.^0^^~4~^~NC~^^^^^^^^^^~02/01/2003~
-~14214~^~321~^0.^0^^~4~^~BFZN~^~14218~^^^^^^^^^~02/01/2003~
-~14214~^~322~^0.^0^^~4~^~BFZN~^~14218~^^^^^^^^^~02/01/2003~
-~14214~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~
-~14214~^~334~^0.^0^^~4~^~BFZN~^~14218~^^^^^^^^^~02/01/2003~
-~14214~^~337~^0.^0^^~4~^~BFZN~^~14218~^^^^^^^^^~02/01/2003~
-~14214~^~338~^0.^0^^~4~^~BFZN~^~14218~^^^^^^^^^~02/01/2003~
-~14214~^~417~^0.^0^^~1~^^^^^^^^^^^~05/01/1986~
-~14214~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~
-~14214~^~432~^0.^0^^~1~^^^^^^^^^^^~02/01/2003~
-~14214~^~435~^0.^0^^~4~^~NC~^^^^^^^^^^~03/01/2008~
-~14214~^~601~^0.^0^^~1~^^^^^^^^^^^~05/01/1986~
-~14215~^~208~^2.^0^^~6~^~RPI~^^^^^^^^^^~03/01/2003~
-~14215~^~262~^26.^0^^~6~^~RPI~^^^^^^^^^^~03/01/2003~
-~14215~^~263~^0.^0^^~6~^~RPI~^^^^^^^^^^~03/01/2003~
-~14215~^~268~^7.^0^^~6~^~RPI~^^^^^^^^^^~03/01/2003~
-~14215~^~301~^4.^0^^~1~^~RPA~^^^^^^^^^^~12/01/2006~
-~14215~^~304~^4.^0^^~1~^~RPA~^^^^^^^^^^~12/01/2006~
-~14215~^~305~^3.^0^^~1~^~RPA~^^^^^^^^^^~12/01/2006~
-~14215~^~306~^30.^0^^~1~^~RPA~^^^^^^^^^^~12/01/2006~
-~14215~^~307~^4.^0^^~1~^~RPA~^^^^^^^^^^~12/01/2006~
-~14215~^~318~^0.^0^^~6~^~RPI~^^^^^^^^^^~03/01/2003~
-~14215~^~319~^0.^0^^~6~^~RPI~^^^^^^^^^^~03/01/2003~
-~14215~^~320~^0.^0^^~4~^~NC~^^^^^^^^^^~09/01/2015~
-~14215~^~321~^0.^0^^~6~^~RPI~^^^^^^^^^^~03/01/2003~
-~14215~^~322~^0.^0^^~6~^~RPI~^^^^^^^^^^~03/01/2003~
-~14215~^~334~^0.^0^^~6~^~RPI~^^^^^^^^^^~03/01/2003~
-~14215~^~337~^0.^0^^~6~^~RPI~^^^^^^^^^^~03/01/2003~
-~14215~^~338~^0.^0^^~6~^~RPI~^^^^^^^^^^~03/01/2003~
-~14215~^~417~^0.^0^^~6~^~RPI~^^^^^^^^^^~03/01/2003~
-~14215~^~431~^0.^0^^~6~^~RPI~^^^^^^^^^^~03/01/2003~
-~14215~^~432~^0.^0^^~6~^~RPI~^^^^^^^^^^~03/01/2003~
-~14215~^~435~^0.^0^^~4~^~NC~^^^^^^^^^^~12/01/2006~
-~14215~^~601~^0.^0^^~6~^~RPI~^^^^^^^^^^~12/01/2006~
-~14216~^~208~^15.^0^^~8~^~LC~^^^^^^^^^^~05/01/2015~
-~14216~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2015~
-~14216~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2015~
-~14216~^~268~^61.^0^^~8~^~LC~^^^^^^^^^^~05/01/2015~
-~14216~^~301~^8.^0^^~8~^~LC~^^^^^^^^^^~05/01/2015~
-~14216~^~304~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2015~
-~14216~^~305~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2015~
-~14216~^~306~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2015~
-~14216~^~307~^8.^0^^~8~^~LC~^^^^^^^^^^~05/01/2015~
-~14216~^~318~^0.^0^^~8~^~LC~^^^^^^^^^^~05/01/2015~
-~14216~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2015~
-~14216~^~320~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2015~
-~14216~^~321~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2015~
-~14216~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2015~
-~14216~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2015~
-~14216~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2015~
-~14216~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2015~
-~14216~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2015~
-~14216~^~417~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2015~
-~14216~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2015~
-~14216~^~432~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2015~
-~14216~^~435~^0.^0^^~4~^~NC~^^^^^^^^^^~05/01/2015~
-~14216~^~601~^0.^0^^~8~^~LC~^^^^^^^^^^~05/01/2015~
-~14217~^~208~^54.^0^^~4~^~NC~^^^^^^^^^^~09/01/2015~
-~14217~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2015~
-~14217~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2015~
-~14217~^~268~^224.^0^^~4~^~NC~^^^^^^^^^^~09/01/2015~
-~14217~^~301~^3.^1^^~1~^~A~^^^^^^^^^^~05/01/2015~
-~14217~^~304~^1.^1^^~1~^~A~^^^^^^^^^^~05/01/2015~
-~14217~^~305~^2.^1^^~1~^~A~^^^^^^^^^^~05/01/2015~
-~14217~^~306~^11.^1^^~1~^~A~^^^^^^^^^^~05/01/2015~
-~14217~^~307~^19.^1^^~1~^~A~^^^^^^^^^^~05/01/2015~
-~14217~^~318~^25.^0^^~1~^~AS~^^^^^^^^^^~08/01/2015~
-~14217~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2015~
-~14217~^~320~^1.^0^^~1~^~AS~^^^^^^^^^^~05/01/2015~
-~14217~^~321~^15.^1^^~1~^~A~^^^^^^^^^~1~^~05/01/2015~
-~14217~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2015~
-~14217~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2015~
-~14217~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2015~
-~14217~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2015~
-~14217~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2015~
-~14217~^~417~^4.^1^^~1~^~A~^^^^^^^^^~1~^~05/01/2015~
-~14217~^~431~^4.^0^^~1~^~A~^^^^^^^^^^~08/01/2015~
-~14217~^~432~^0.^0^^~4~^~O~^^^^^^^^^^~08/01/2015~
-~14217~^~435~^8.^0^^~4~^~NC~^^^^^^^^^^~08/01/2015~
-~14217~^~601~^1.^1^^~1~^~A~^^^^^^^^^~1~^~09/01/2015~
-~14218~^~208~^351.^0^^~4~^~NC~^^^^^^^^^^~08/01/2012~
-~14218~^~262~^122.^10^^~1~^^^^^^^^^^^~05/01/1986~
-~14218~^~263~^0.^0^^~4~^~FLA~^^^^^^^^^^~02/01/2003~
-~14218~^~268~^1470.^0^^~4~^~NC~^^^^^^^^^^~08/01/2012~
-~14218~^~301~^140.^27^^~1~^^^^^^^^^^^~05/01/1986~
-~14218~^~304~^311.^23^^~1~^^^^^^^^^^^~05/01/1986~
-~14218~^~305~^286.^26^^~1~^^^^^^^^^^^~05/01/1986~
-~14218~^~306~^3501.^29^^~1~^^^^^^^^^^^~05/01/1986~
-~14218~^~307~^23.^29^^~1~^^^^^^^^^^^~05/01/1986~
-~14218~^~318~^0.^0^^~4~^~FLA~^^^^^^^^^^~02/01/2003~
-~14218~^~319~^0.^0^^~4~^~FLA~^^^^^^^^^^~02/01/2003~
-~14218~^~320~^0.^0^^~4~^~FLA~^^^^^^^^^^~02/01/2003~
-~14218~^~321~^0.^0^^~4~^~FLA~^^^^^^^^^^~02/01/2003~
-~14218~^~322~^0.^0^^~4~^~FLA~^^^^^^^^^^~02/01/2003~
-~14218~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~
-~14218~^~334~^0.^0^^~4~^~FLA~^^^^^^^^^^~02/01/2003~
-~14218~^~337~^0.^0^^~4~^~FLA~^^^^^^^^^^~02/01/2003~
-~14218~^~338~^0.^0^^~4~^~FLA~^^^^^^^^^^~02/01/2003~
-~14218~^~417~^0.^0^^~4~^~FLA~^^^^^^^^^^~02/01/2003~
-~14218~^~431~^0.^0^^~4~^~FLA~^^^^^^^^^^~02/01/2003~
-~14218~^~432~^0.^0^^~4~^~FLA~^^^^^^^^^^~02/01/2003~
-~14218~^~435~^0.^0^^~4~^~NC~^^^^^^^^^^~03/01/2006~
-~14218~^~601~^0.^0^^~4~^~FLA~^^^^^^^^^^~02/01/2003~
-~14219~^~208~^2.^0^^~6~^~RPI~^^^^^^^^^^~03/01/2003~
-~14219~^~262~^1.^0^^~6~^~RPI~^^^^^^^^^^~03/01/2003~
-~14219~^~263~^0.^0^^~6~^~RPI~^^^^^^^^^^~03/01/2003~
-~14219~^~268~^9.^0^^~6~^~RPI~^^^^^^^^^^~03/01/2003~
-~14219~^~301~^4.^0^^~1~^~RPA~^^^^^^^^^^~12/01/2006~
-~14219~^~304~^4.^0^^~1~^~RPA~^^^^^^^^^^~12/01/2006~
-~14219~^~305~^3.^0^^~1~^~RPA~^^^^^^^^^^~12/01/2006~
-~14219~^~306~^36.^0^^~1~^~RPA~^^^^^^^^^^~12/01/2006~
-~14219~^~307~^4.^0^^~1~^~RPA~^^^^^^^^^^~12/01/2006~
-~14219~^~318~^0.^0^^~6~^~RPI~^^^^^^^^^^~03/01/2003~
-~14219~^~319~^0.^0^^~6~^~RPI~^^^^^^^^^^~03/01/2003~
-~14219~^~320~^0.^0^^~4~^~NC~^^^^^^^^^^~09/01/2015~
-~14219~^~321~^0.^0^^~6~^~RPI~^^^^^^^^^^~03/01/2003~
-~14219~^~322~^0.^0^^~6~^~RPI~^^^^^^^^^^~03/01/2003~
-~14219~^~334~^0.^0^^~6~^~RPI~^^^^^^^^^^~03/01/2003~
-~14219~^~337~^0.^0^^~6~^~RPI~^^^^^^^^^^~03/01/2003~
-~14219~^~338~^0.^0^^~6~^~RPI~^^^^^^^^^^~03/01/2003~
-~14219~^~417~^0.^0^^~6~^~RPI~^^^^^^^^^^~03/01/2003~
-~14219~^~431~^0.^0^^~6~^~RPI~^^^^^^^^^^~03/01/2003~
-~14219~^~432~^0.^0^^~6~^~RPI~^^^^^^^^^^~03/01/2003~
-~14219~^~435~^0.^0^^~4~^~NC~^^^^^^^^^^~12/01/2006~
-~14219~^~601~^0.^0^^~6~^~RPI~^^^^^^^^^^~03/01/2003~
-~14220~^~208~^56.^0^^~4~^~NC~^^^^^^^^^^~08/01/2015~
-~14220~^~268~^234.^0^^~4~^~NC~^^^^^^^^^^~08/01/2015~
-~14220~^~301~^2.^1^^~1~^~A~^^^^^^^^^^~05/01/2015~
-~14220~^~304~^1.^1^^~1~^~A~^^^^^^^^^^~05/01/2015~
-~14220~^~305~^1.^1^^~1~^~A~^^^^^^^^^^~05/01/2015~
-~14220~^~306~^14.^1^^~1~^~A~^^^^^^^^^^~05/01/2015~
-~14220~^~307~^19.^1^^~1~^~A~^^^^^^^^^^~05/01/2015~
-~14220~^~318~^24.^0^^~4~^~NC~^^^^^^^^^^~08/01/2015~
-~14220~^~319~^0.^0^^~4~^~BFZN~^~43404~^^^^^^^^^~05/01/2015~
-~14220~^~320~^1.^0^^~4~^~NC~^^^^^^^^^^~08/01/2015~
-~14220~^~321~^14.^1^^~1~^~A~^^^^^^^^^~1~^~05/01/2015~
-~14220~^~322~^0.^0^^~4~^~BFZN~^~43404~^^^^^^^^^~05/01/2015~
-~14220~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2015~
-~14220~^~334~^0.^0^^~4~^~BFZN~^~43404~^^^^^^^^^~05/01/2015~
-~14220~^~337~^0.^0^^~4~^~BFZN~^~43404~^^^^^^^^^~05/01/2015~
-~14220~^~338~^19.^0^^~4~^~BFZN~^~43404~^^^^^^^^^~05/01/2015~
-~14220~^~417~^4.^1^^~1~^~A~^^^^^^^^^~1~^~05/01/2015~
-~14220~^~431~^4.^0^^~1~^~A~^^^^^^^^^^~08/01/2015~
-~14220~^~432~^0.^0^^~4~^~NR~^^^^^^^^^^~08/01/2015~
-~14220~^~435~^8.^0^^~4~^~NC~^~43404~^^^^^^^^^~08/01/2015~
-~14220~^~601~^0.^1^^~1~^~A~^^^^^^^^^~1~^~05/01/2015~
-~14221~^~208~^4.^0^^~4~^~NC~^^^^^^^^^^~08/01/2015~
-~14221~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2015~
-~14221~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2015~
-~14221~^~268~^15.^0^^~4~^~NC~^^^^^^^^^^~08/01/2015~
-~14221~^~301~^3.^1^^~1~^~A~^^^^^^^^^^~05/01/2015~
-~14221~^~304~^1.^1^^~1~^~A~^^^^^^^^^^~05/01/2015~
-~14221~^~305~^0.^1^^~1~^~A~^^^^^^^^^~1~^~05/01/2015~
-~14221~^~306~^8.^1^^~1~^~A~^^^^^^^^^^~05/01/2015~
-~14221~^~307~^7.^1^^~1~^~A~^^^^^^^^^^~05/01/2015~
-~14221~^~318~^25.^0^^~1~^~AS~^^^^^^^^^^~08/01/2015~
-~14221~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2015~
-~14221~^~320~^1.^0^^~1~^~AS~^^^^^^^^^^~05/01/2015~
-~14221~^~321~^15.^1^^~1~^~A~^^^^^^^^^~1~^~05/01/2015~
-~14221~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2015~
-~14221~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2015~
-~14221~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2015~
-~14221~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2015~
-~14221~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2015~
-~14221~^~417~^4.^1^^~1~^~A~^^^^^^^^^~1~^~05/01/2015~
-~14221~^~431~^4.^0^^~1~^~A~^^^^^^^^^^~08/01/2015~
-~14221~^~432~^0.^0^^~4~^~NR~^^^^^^^^^^~08/01/2015~
-~14221~^~435~^8.^0^^~4~^~NC~^^^^^^^^^^~08/01/2015~
-~14221~^~601~^0.^1^^~1~^~A~^^^^^^^^^~1~^~08/01/2015~
-~14222~^~208~^355.^0^^~4~^~NC~^^^^^^^^^^~08/01/2012~
-~14222~^~262~^2063.^3^144.^~1~^^^^^^^^^^^~05/01/1986~
-~14222~^~268~^1485.^0^^~4~^~NC~^^^^^^^^^^~08/01/2012~
-~14222~^~301~^103.^3^2.^~1~^^^^^^^^^^^~05/01/1986~
-~14222~^~304~^213.^3^8.^~1~^^^^^^^^^^^~05/01/1986~
-~14222~^~305~^271.^3^7.^~1~^^^^^^^^^^^~05/01/1986~
-~14222~^~306~^3395.^3^99.^~1~^^^^^^^^^^^~05/01/1986~
-~14222~^~307~^277.^3^20.^~1~^^^^^^^^^^^~05/01/1986~
-~14222~^~318~^0.^0^^~4~^^^^^^^^^^^~05/01/1986~
-~14222~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2002~
-~14222~^~320~^0.^0^^~4~^~NC~^^^^^^^^^^~06/01/2002~
-~14222~^~417~^0.^0^^~4~^^^^^^^^^^^~05/01/1986~
-~14222~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~
-~14222~^~432~^0.^0^^~4~^^^^^^^^^^^~05/01/1986~
-~14222~^~435~^0.^0^^~4~^~NC~^^^^^^^^^^~05/01/2006~
-~14222~^~601~^0.^0^^~1~^^^^^^^^^^^~05/01/1986~
-~14223~^~208~^3.^0^^~6~^~RPI~^^^^^^^^^^~03/01/2003~
-~14223~^~262~^21.^0^^~6~^~RPI~^^^^^^^^^^~03/01/2003~
-~14223~^~263~^0.^0^^~6~^~RPI~^^^^^^^^^^~12/01/2006~
-~14223~^~268~^14.^0^^~6~^~RPI~^^^^^^^^^^~03/01/2003~
-~14223~^~301~^4.^0^^~1~^~RPA~^^^^^^^^^^~12/01/2006~
-~14223~^~304~^3.^0^^~1~^~RPA~^^^^^^^^^^~12/01/2006~
-~14223~^~305~^3.^0^^~1~^~RPA~^^^^^^^^^^~12/01/2006~
-~14223~^~306~^35.^0^^~1~^~RPA~^^^^^^^^^^~12/01/2006~
-~14223~^~307~^7.^0^^~1~^~RPA~^^^^^^^^^^~12/01/2006~
-~14223~^~318~^0.^0^^~6~^~RPI~^^^^^^^^^^~03/01/2003~
-~14223~^~319~^0.^0^^~6~^~RPI~^^^^^^^^^^~03/01/2003~
-~14223~^~320~^0.^0^^~4~^~NC~^^^^^^^^^^~09/01/2015~
-~14223~^~321~^0.^0^^~6~^~RPI~^^^^^^^^^^~12/01/2006~
-~14223~^~322~^0.^0^^~6~^~RPI~^^^^^^^^^^~12/01/2006~
-~14223~^~334~^0.^0^^~6~^~RPI~^^^^^^^^^^~12/01/2006~
-~14223~^~337~^0.^0^^~6~^~RPI~^^^^^^^^^^~12/01/2006~
-~14223~^~338~^0.^0^^~6~^~RPI~^^^^^^^^^^~12/01/2006~
-~14223~^~417~^0.^0^^~6~^~RPI~^^^^^^^^^^~03/01/2003~
-~14223~^~431~^0.^0^^~6~^~RPI~^^^^^^^^^^~03/01/2003~
-~14223~^~432~^0.^0^^~6~^~RPI~^^^^^^^^^^~03/01/2003~
-~14223~^~435~^0.^0^^~4~^~NC~^^^^^^^^^^~12/01/2006~
-~14223~^~601~^0.^0^^~6~^~RPI~^^^^^^^^^^~12/01/2006~
-~14224~^~208~^460.^0^^~4~^~NC~^^^^^^^^^^~12/01/2006~
-~14224~^~262~^360.^0^^~4~^~FLC~^^^^^^^^^^~12/01/2006~
-~14224~^~263~^294.^0^^~4~^~FLC~^^^^^^^^^^~12/01/2006~
-~14224~^~268~^1925.^0^^~4~^~NC~^^^^^^^^^^~12/01/2006~
-~14224~^~301~^271.^2^^~8~^~LC~^^^1^222.^320.^1^^^^~12/01/2002~
-~14224~^~304~^68.^2^^~1~^^^^^^^^^^^~05/01/1986~
-~14224~^~305~^251.^9^^~1~^^^^^^^^^^^~01/01/2005~
-~14224~^~306~^1033.^9^^~1~^^^^^^^^^^^~05/01/1986~
-~14224~^~307~^317.^1^^~8~^~LC~^^^^^^^^^^~01/01/2005~
-~14224~^~318~^5.^0^^~4~^~FLC~^^^^^^^^^^~01/01/2005~
-~14224~^~319~^0.^0^^~4~^~FLC~^^^^^^^^^^~01/01/2005~
-~14224~^~320~^1.^0^^~4~^~FLC~^^^^^^^^^^~01/01/2005~
-~14224~^~321~^2.^0^^~4~^~FLC~^^^^^^^^^^~01/01/2005~
-~14224~^~322~^0.^0^^~4~^~FLC~^^^^^^^^^^~01/01/2005~
-~14224~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~
-~14224~^~334~^0.^0^^~4~^~FLC~^^^^^^^^^^~01/01/2005~
-~14224~^~337~^0.^0^^~4~^~FLC~^^^^^^^^^^~01/01/2005~
-~14224~^~338~^4.^0^^~4~^~FLC~^^^^^^^^^^~01/01/2005~
-~14224~^~417~^9.^0^^~4~^~FLC~^^^^^^^^^^~01/01/2005~
-~14224~^~431~^0.^0^^~4~^~FLC~^^^^^^^^^^~01/01/2005~
-~14224~^~432~^9.^0^^~4~^~FLC~^^^^^^^^^^~01/01/2005~
-~14224~^~435~^9.^0^^~4~^~NC~^^^^^^^^^^~05/01/2007~
-~14224~^~601~^0.^2^^~8~^~LC~^^^1^0.^0.^1^^^^~12/01/2006~
-~14226~^~208~^26.^0^^~4~^~NC~^^^^^^^^^^~08/01/2015~
-~14226~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2015~
-~14226~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2015~
-~14226~^~268~^109.^0^^~4~^~NC~^^^^^^^^^^~08/01/2015~
-~14226~^~301~^4.^1^^~1~^~A~^^^^^^^^^^~05/01/2015~
-~14226~^~304~^3.^1^^~1~^~A~^^^^^^^^^^~05/01/2015~
-~14226~^~305~^4.^1^^~1~^~A~^^^^^^^^^^~05/01/2015~
-~14226~^~306~^47.^1^^~1~^~A~^^^^^^^^^^~05/01/2015~
-~14226~^~307~^2.^1^^~1~^~A~^^^^^^^^^~1~^~05/01/2015~
-~14226~^~318~^26.^0^^~4~^~NC~^^^^^^^^^^~08/01/2015~
-~14226~^~319~^0.^1^^~1~^~A~^^^^^^^^^~1~^~05/01/2015~
-~14226~^~320~^1.^0^^~4~^~NC~^^^^^^^^^^~08/01/2015~
-~14226~^~321~^0.^1^^~1~^~A~^^^^^^^^^~1~^~05/01/2015~
-~14226~^~322~^31.^1^^~1~^~A~^^^^^^^^^~1~^~05/01/2015~
-~14226~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2015~
-~14226~^~334~^0.^0^^~4~^~BFZN~^~43404~^^^^^^^^^~05/01/2015~
-~14226~^~337~^0.^0^^~4~^~BFZN~^~43404~^^^^^^^^^~05/01/2015~
-~14226~^~338~^19.^0^^~4~^~BFZN~^~43404~^^^^^^^^^~05/01/2015~
-~14226~^~601~^0.^1^^~1~^~A~^^^^^^^^^~1~^~05/01/2015~
-~14227~^~208~^49.^0^^~4~^~NC~^^^^^^^^^^~08/01/2015~
-~14227~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2015~
-~14227~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2015~
-~14227~^~268~^204.^0^^~4~^~NC~^^^^^^^^^^~09/01/2015~
-~14227~^~301~^4.^1^^~1~^~A~^^^^^^^^^^~05/01/2015~
-~14227~^~304~^2.^1^^~1~^~A~^^^^^^^^^^~05/01/2015~
-~14227~^~305~^3.^1^^~1~^~A~^^^^^^^^^^~05/01/2015~
-~14227~^~306~^14.^1^^~1~^~A~^^^^^^^^^^~05/01/2015~
-~14227~^~307~^3.^1^^~1~^~A~^^^^^^^^^^~05/01/2015~
-~14227~^~318~^25.^0^^~1~^~AS~^^^^^^^^^^~08/01/2015~
-~14227~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2015~
-~14227~^~320~^1.^0^^~1~^~AS~^^^^^^^^^^~05/01/2015~
-~14227~^~321~^15.^1^^~1~^~A~^^^^^^^^^~1~^~05/01/2015~
-~14227~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2015~
-~14227~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2015~
-~14227~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2015~
-~14227~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2015~
-~14227~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2015~
-~14227~^~417~^4.^1^^~1~^~A~^^^^^^^^^~1~^~05/01/2015~
-~14227~^~431~^4.^0^^~1~^~A~^^^^^^^^^^~08/01/2015~
-~14227~^~432~^0.^0^^~4~^~NR~^^^^^^^^^^~08/01/2015~
-~14227~^~435~^8.^0^^~4~^~NC~^^^^^^^^^^~08/01/2015~
-~14227~^~601~^0.^1^^~1~^~A~^^^^^^^^^^~05/01/2015~
-~14231~^~208~^481.^0^^~4~^~NC~^^^^^^^^^^~06/01/2015~
-~14231~^~268~^2013.^0^^~4~^~NC~^^^^^^^^^^~08/01/2015~
-~14231~^~301~^12.^0^^~9~^~MC~^^^^^^^^^^~02/01/1999~
-~14231~^~305~^203.^0^^~9~^~MC~^^^^^^^^^^~02/01/1999~
-~14231~^~306~^546.^0^^~9~^~MC~^^^^^^^^^^~02/01/1999~
-~14231~^~307~^399.^0^^~9~^~MC~^^^^^^^^^^~02/01/1999~
-~14231~^~318~^0.^0^^~9~^~MC~^^^^^^^^^^~02/01/1999~
-~14231~^~601~^0.^0^^~9~^~MC~^^^^^^^^^^~02/01/1999~
-~14233~^~208~^49.^0^^~4~^~NC~^^^^^^^^^^~09/01/2015~
-~14233~^~268~^205.^0^^~4~^~NC~^^^^^^^^^^~09/01/2015~
-~14233~^~301~^2.^1^^~1~^~A~^^^^^^^^^^~05/01/2015~
-~14233~^~304~^1.^1^^~1~^~A~^^^^^^^^^^~05/01/2015~
-~14233~^~305~^1.^1^^~1~^~A~^^^^^^^^^^~05/01/2015~
-~14233~^~306~^18.^1^^~1~^~A~^^^^^^^^^^~05/01/2015~
-~14233~^~307~^14.^1^^~1~^~A~^^^^^^^^^^~05/01/2015~
-~14233~^~318~^25.^0^^~4~^~NC~^^^^^^^^^^~08/01/2015~
-~14233~^~319~^0.^0^^~4~^~BFZN~^~14226~^^^^^^^^^~05/01/2015~
-~14233~^~320~^1.^0^^~4~^~NC~^^^^^^^^^^~08/01/2015~
-~14233~^~321~^15.^1^^~1~^~A~^^^^^^^^^~1~^~05/01/2015~
-~14233~^~322~^0.^0^^~4~^~BFZN~^~14226~^^^^^^^^^~05/01/2015~
-~14233~^~324~^0.^0^^~4~^~BFZN~^~14226~^^^^^^^^^~05/01/2015~
-~14233~^~334~^0.^0^^~4~^~BFZN~^~14226~^^^^^^^^^~05/01/2015~
-~14233~^~337~^0.^0^^~4~^~BFZN~^~14226~^^^^^^^^^~05/01/2015~
-~14233~^~338~^19.^0^^~4~^~BFZN~^~14226~^^^^^^^^^~05/01/2015~
-~14233~^~417~^4.^1^^~1~^~A~^^^^^^^^^~1~^~05/01/2015~
-~14233~^~432~^4.^0^^~4~^~NR~^^^^^^^^^^~05/01/2015~
-~14233~^~601~^0.^1^^~1~^~A~^^^^^^^^^^~08/01/2015~
-~14234~^~208~^45.^0^^~4~^~NC~^^^^^^^^^^~09/01/2015~
-~14234~^~262~^0.^0^^~4~^~BFZN~^~14226~^^^^^^^^^~05/01/2015~
-~14234~^~263~^0.^0^^~4~^~BFZN~^~14226~^^^^^^^^^~05/01/2015~
-~14234~^~268~^188.^0^^~4~^~NC~^^^^^^^^^^~09/01/2015~
-~14234~^~301~^2.^1^^~1~^~A~^^^^^^^^^^~05/01/2015~
-~14234~^~304~^1.^1^^~1~^~A~^^^^^^^^^^~05/01/2015~
-~14234~^~305~^1.^1^^~1~^~A~^^^^^^^^^^~05/01/2015~
-~14234~^~306~^10.^1^^~1~^~A~^^^^^^^^^^~05/01/2015~
-~14234~^~307~^52.^1^^~1~^~A~^^^^^^^^^^~05/01/2015~
-~14234~^~318~^25.^0^^~4~^~NC~^^^^^^^^^^~08/01/2015~
-~14234~^~319~^0.^0^^~4~^~BFZN~^~14226~^^^^^^^^^~05/01/2015~
-~14234~^~320~^1.^0^^~4~^~NC~^^^^^^^^^^~08/01/2015~
-~14234~^~321~^15.^1^^~1~^~A~^^^^^^^^^~1~^~05/01/2015~
-~14234~^~322~^0.^0^^~4~^~BFZN~^~14226~^^^^^^^^^~05/01/2015~
-~14234~^~324~^0.^0^^~4~^~BFZN~^~14226~^^^^^^^^^~05/01/2015~
-~14234~^~334~^0.^0^^~4~^~BFZN~^~14226~^^^^^^^^^~05/01/2015~
-~14234~^~337~^0.^0^^~4~^~BFZN~^~14226~^^^^^^^^^~05/01/2015~
-~14234~^~338~^19.^0^^~4~^~BFZN~^~14226~^^^^^^^^^~05/01/2015~
-~14234~^~435~^0.^0^^~4~^~BFZN~^~14226~^^^^^^^^^~05/01/2015~
-~14234~^~601~^0.^1^^~1~^~A~^^^^^^^^^^~05/01/2015~
-~14235~^~208~^4.^0^^~4~^~NC~^^^^^^^^^^~08/01/2015~
-~14235~^~268~^15.^0^^~4~^~NC~^^^^^^^^^^~08/01/2015~
-~14235~^~301~^1.^1^^~1~^~A~^^^^^^^^^^~05/01/2015~
-~14235~^~304~^1.^1^^~1~^~A~^^^^^^^^^^~05/01/2015~
-~14235~^~305~^0.^1^^~1~^~A~^^^^^^^^^~1~^~05/01/2015~
-~14235~^~306~^12.^1^^~1~^~A~^^^^^^^^^^~05/01/2015~
-~14235~^~307~^8.^1^^~1~^~A~^^^^^^^^^^~05/01/2015~
-~14235~^~318~^25.^0^^~1~^~AS~^^^^^^^^^^~08/01/2015~
-~14235~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2015~
-~14235~^~320~^1.^0^^~1~^~AS~^^^^^^^^^^~05/01/2015~
-~14235~^~321~^15.^1^^~1~^~A~^^^^^^^^^~1~^~05/01/2015~
-~14235~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2015~
-~14235~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2015~
-~14235~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2015~
-~14235~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2015~
-~14235~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2015~
-~14235~^~417~^4.^1^^~1~^~A~^^^^^^^^^~1~^~05/01/2015~
-~14235~^~431~^4.^0^^~1~^~A~^^^^^^^^^^~08/01/2015~
-~14235~^~432~^0.^0^^~7~^~Z~^^^^^^^^^^~08/01/2015~
-~14235~^~435~^8.^0^^~4~^~NC~^^^^^^^^^^~08/01/2015~
-~14235~^~601~^0.^1^^~1~^~A~^^^^^^^^^^~05/01/2015~
-~14236~^~208~^360.^0^^~4~^~NC~^^^^^^^^^^~12/01/2006~
-~14236~^~262~^19.^0^^~4~^~NR~^^^^^^^^^^~06/01/2013~
-~14236~^~263~^0.^0^^~4~^~FLA~^^^^^^^^^^~12/01/2002~
-~14236~^~268~^1508.^0^^~4~^~NC~^^^^^^^^^^~12/01/2006~
-~14236~^~301~^58.^1^^~1~^^^^^58.^58.^^^^^~12/01/2006~
-~14236~^~304~^244.^11^107.^~11~^~JO~^^^1^137.^351.^1^-1115.^1603.^~4~^~12/01/2002~
-~14236~^~305~^580.^11^144.^~11~^~JO~^^^1^436.^724.^1^-1250.^2411.^~4~^~12/01/2002~
-~14236~^~306~^2443.^11^860.^~11~^~JO~^^^1^1583.^3303.^1^-8484.^13370.^~4~^~12/01/2002~
-~14236~^~307~^83.^11^19.^~11~^~JO~^^^1^63.^102.^1^-164.^330.^~4~^~12/01/2002~
-~14236~^~318~^8.^0^^~4~^~FLA~^^^^^^^^^^~12/01/2002~
-~14236~^~319~^0.^0^^~4~^~FLA~^^^^^^^^^^~12/01/2002~
-~14236~^~320~^0.^0^^~4~^~FLA~^^^^^^^^^^~01/01/2005~
-~14236~^~321~^5.^0^^~4~^~FLA~^^^^^^^^^^~12/01/2002~
-~14236~^~322~^0.^0^^~4~^~FLA~^^^^^^^^^^~12/01/2002~
-~14236~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~
-~14236~^~334~^0.^0^^~4~^~FLA~^^^^^^^^^^~12/01/2002~
-~14236~^~337~^0.^0^^~4~^~FLA~^^^^^^^^^^~12/01/2002~
-~14236~^~338~^194.^0^^~4~^~FLA~^^^^^^^^^^~12/01/2002~
-~14236~^~417~^52.^0^^~4~^~FLA~^^^^^^^^^^~12/01/2002~
-~14236~^~431~^0.^0^^~4~^~FLA~^^^^^^^^^^~12/01/2002~
-~14236~^~432~^52.^0^^~4~^~FLA~^^^^^^^^^^~12/01/2002~
-~14236~^~435~^52.^0^^~4~^~NC~^^^^^^^^^^~06/01/2007~
-~14236~^~601~^0.^0^^~4~^~FLA~^^^^^^^^^^~12/01/2002~
-~14237~^~208~^6.^0^^~6~^~RPI~^^^^^^^^^^~12/01/2006~
-~14237~^~262~^0.^0^^~6~^~RPI~^^^^^^^^^^~01/01/2005~
-~14237~^~263~^0.^0^^~6~^~RPI~^^^^^^^^^^~02/01/2003~
-~14237~^~268~^25.^0^^~6~^~RPI~^^^^^^^^^^~12/01/2006~
-~14237~^~301~^4.^0^^~1~^~RPA~^^^^^^^^^^~12/01/2006~
-~14237~^~304~^5.^0^^~6~^~RPI~^^^^^^^^^^~12/01/2006~
-~14237~^~305~^10.^0^^~6~^~RPI~^^^^^^^^^^~12/01/2006~
-~14237~^~306~^41.^0^^~6~^~RPI~^^^^^^^^^^~12/01/2006~
-~14237~^~307~^5.^0^^~6~^~RPI~^^^^^^^^^^~12/01/2006~
-~14237~^~318~^0.^0^^~4~^~NC~^^^^^^^^^^~09/01/2015~
-~14237~^~319~^0.^0^^~6~^~RPI~^^^^^^^^^^~02/01/2003~
-~14237~^~320~^0.^0^^~4~^~NC~^^^^^^^^^^~09/01/2015~
-~14237~^~321~^0.^0^^~6~^~RPI~^^^^^^^^^^~01/01/2005~
-~14237~^~322~^0.^0^^~6~^~RPI~^^^^^^^^^^~02/01/2003~
-~14237~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~
-~14237~^~334~^0.^0^^~6~^~RPI~^^^^^^^^^^~02/01/2003~
-~14237~^~337~^0.^0^^~6~^~RPI~^^^^^^^^^^~02/01/2003~
-~14237~^~338~^3.^0^^~6~^~RPI~^^^^^^^^^^~01/01/2005~
-~14237~^~417~^1.^0^^~6~^~RPI~^^^^^^^^^^~01/01/2005~
-~14237~^~431~^0.^0^^~6~^~RPI~^^^^^^^^^^~02/01/2003~
-~14237~^~432~^1.^0^^~6~^~RPI~^^^^^^^^^^~01/01/2005~
-~14237~^~435~^1.^0^^~4~^~NC~^^^^^^^^^^~12/01/2006~
-~14237~^~601~^0.^0^^~6~^~RPI~^^^^^^^^^^~02/01/2003~
-~14238~^~208~^63.^0^^~4~^~NC~^^^^^^^^^^~02/01/2005~
-~14238~^~262~^0.^0^^~4~^~FLM~^^^^^^^^^^~02/01/2005~
-~14238~^~263~^0.^0^^~4~^~FLM~^^^^^^^^^^~02/01/2005~
-~14238~^~268~^263.^0^^~4~^~NC~^^^^^^^^^^~02/01/2005~
-~14238~^~301~^3.^1^^~1~^~A~^^^^^^^^^^~02/01/2005~
-~14238~^~304~^1.^1^^~1~^~A~^^^^^^^^^^~02/01/2005~
-~14238~^~305~^2.^1^^~1~^~A~^^^^^^^^^^~02/01/2005~
-~14238~^~306~^17.^1^^~1~^~A~^^^^^^^^^^~02/01/2005~
-~14238~^~307~^2.^1^^~1~^~A~^^^^^^^^^~1~^~02/01/2005~
-~14238~^~318~^3.^0^^~4~^~NC~^^^^^^^^^^~02/01/2005~
-~14238~^~319~^0.^0^^~4~^~FLM~^^^^^^^^^^~02/01/2005~
-~14238~^~320~^0.^0^^~4~^~NC~^^^^^^^^^^~02/01/2005~
-~14238~^~321~^2.^0^^~4~^~FLM~^^^^^^^^^^~02/01/2005~
-~14238~^~322~^0.^0^^~4~^~FLM~^^^^^^^^^^~02/01/2005~
-~14238~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~
-~14238~^~334~^0.^0^^~4~^~FLM~^^^^^^^^^^~02/01/2005~
-~14238~^~337~^0.^0^^~4~^~FLM~^^^^^^^^^^~02/01/2005~
-~14238~^~338~^6.^0^^~4~^~FLM~^^^^^^^^^^~02/01/2005~
-~14238~^~417~^0.^0^^~4~^~FLM~^^^^^^^^^^~02/01/2005~
-~14238~^~431~^0.^0^^~4~^~FLM~^^^^^^^^^^~02/01/2005~
-~14238~^~432~^0.^0^^~4~^~FLM~^^^^^^^^^^~02/01/2005~
-~14238~^~435~^0.^0^^~4~^~NC~^^^^^^^^^^~12/01/2006~
-~14238~^~601~^0.^0^^~4~^~FLM~^^^^^^^^^^~02/01/2005~
-~14239~^~208~^68.^0^^~4~^~NC~^^^^^^^^^^~06/01/2015~
-~14239~^~262~^0.^0^^~4~^~FLC~^^^^^^^^^^~05/01/2015~
-~14239~^~263~^0.^0^^~4~^~FLC~^^^^^^^^^^~05/01/2015~
-~14239~^~268~^284.^0^^~4~^~NC~^^^^^^^^^^~06/01/2015~
-~14239~^~301~^4.^0^^~4~^~FLC~^^^^^^^^^^~05/01/2015~
-~14239~^~304~^4.^0^^~4~^~FLC~^^^^^^^^^^~05/01/2015~
-~14239~^~305~^7.^0^^~4~^~FLC~^^^^^^^^^^~05/01/2015~
-~14239~^~306~^27.^0^^~4~^~FLC~^^^^^^^^^^~05/01/2015~
-~14239~^~307~^5.^0^^~4~^~FLC~^^^^^^^^^^~05/01/2015~
-~14239~^~318~^0.^0^^~4~^~FLC~^^^^^^^^^^~05/01/2015~
-~14239~^~319~^0.^0^^~4~^~FLC~^^^^^^^^^^~05/01/2015~
-~14239~^~320~^0.^0^^~4~^~NC~^^^^^^^^^^~05/01/2015~
-~14239~^~321~^0.^0^^~4~^~FLC~^^^^^^^^^^~05/01/2015~
-~14239~^~322~^0.^0^^~4~^~FLC~^^^^^^^^^^~05/01/2015~
-~14239~^~324~^0.^0^^~4~^~FLC~^^^^^^^^^^~05/01/2015~
-~14239~^~334~^0.^0^^~4~^~FLC~^^^^^^^^^^~05/01/2015~
-~14239~^~337~^0.^0^^~4~^~FLC~^^^^^^^^^^~05/01/2015~
-~14239~^~338~^1.^0^^~4~^~FLC~^^^^^^^^^^~05/01/2015~
-~14239~^~417~^4.^0^^~4~^~FLC~^^^^^^^^^^~05/01/2015~
-~14239~^~431~^0.^0^^~4~^~FLC~^^^^^^^^^^~05/01/2015~
-~14239~^~432~^4.^0^^~4~^~FLC~^^^^^^^^^^~05/01/2015~
-~14239~^~435~^4.^0^^~4~^~NC~^^^^^^^^^^~05/01/2015~
-~14239~^~601~^0.^0^^~4~^~FLC~^^^^^^^^^^~05/01/2015~
-~14240~^~208~^64.^0^^~4~^~NC~^^^^^^^^^^~05/01/1986~
-~14240~^~268~^268.^0^^~4~^^^^^^^^^^^
-~14240~^~301~^9.^1^^~1~^^^^^^^^^^^~05/01/1986~
-~14240~^~304~^3.^1^^~1~^^^^^^^^^^^~05/01/1986~
-~14240~^~305~^5.^1^^~1~^^^^^^^^^^^~05/01/1986~
-~14240~^~306~^61.^1^^~1~^^^^^^^^^^^~05/01/1986~
-~14240~^~307~^2.^1^^~1~^^^^^^^^^^^~05/01/1986~
-~14240~^~318~^463.^0^^~4~^^^^^^^^^^^~05/01/1986~
-~14240~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2002~
-~14240~^~320~^23.^0^^~4~^~NC~^^^^^^^^^^~06/01/2002~
-~14240~^~417~^1.^0^^~4~^^^^^^^^^^^~05/01/1986~
-~14240~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~
-~14240~^~432~^1.^0^^~4~^^^^^^^^^^^~05/01/1986~
-~14240~^~435~^1.^0^^~4~^~NC~^^^^^^^^^^~07/01/2002~
-~14240~^~601~^0.^0^^~1~^^^^^^^^^^^~05/01/1986~
-~14241~^~208~^56.^0^^~4~^~NC~^^^^^^^^^^~05/01/1986~
-~14241~^~268~^234.^0^^~4~^^^^^^^^^^^~03/01/2006~
-~14241~^~301~^8.^1^^~1~^^^^^^^^^^^~05/01/1986~
-~14241~^~304~^3.^1^^~1~^^^^^^^^^^^~05/01/1986~
-~14241~^~305~^4.^1^^~1~^^^^^^^^^^^~05/01/1986~
-~14241~^~306~^24.^1^^~1~^^^^^^^^^^^~05/01/1986~
-~14241~^~307~^3.^1^^~1~^^^^^^^^^^^~05/01/1986~
-~14241~^~318~^5.^0^^~4~^^^^^^^^^^^~05/01/1986~
-~14241~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2002~
-~14241~^~320~^0.^0^^~4~^~NC~^^^^^^^^^^~06/01/2002~
-~14241~^~417~^1.^0^^~4~^^^^^^^^^^^~05/01/1986~
-~14241~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~
-~14241~^~432~^1.^0^^~4~^^^^^^^^^^^~05/01/1986~
-~14241~^~435~^1.^0^^~4~^~NC~^^^^^^^^^^~03/01/2006~
-~14241~^~601~^0.^0^^~1~^^^^^^^^^^^~05/01/1986~
-~14242~^~208~^54.^0^^~4~^~NC~^^^^^^^^^^~03/01/2006~
-~14242~^~262~^0.^0^^~4~^~FLA~^^^^^^^^^^~02/01/2005~
-~14242~^~263~^0.^0^^~4~^~FLA~^^^^^^^^^^~02/01/2005~
-~14242~^~268~^224.^0^^~4~^~NC~^^^^^^^^^^~03/01/2006~
-~14242~^~301~^3.^1^^~1~^~A~^^^^^^^^^^~02/01/2005~
-~14242~^~304~^1.^1^^~1~^~A~^^^^^^^^^^~02/01/2005~
-~14242~^~305~^1.^1^^~1~^~A~^^^^^^^^^^~02/01/2005~
-~14242~^~306~^14.^1^^~1~^~A~^^^^^^^^^^~02/01/2005~
-~14242~^~307~^2.^1^^~1~^~A~^^^^^^^^^~1~^~02/01/2005~
-~14242~^~318~^8.^0^^~4~^~FLA~^^^^^^^^^^~02/01/2005~
-~14242~^~319~^0.^0^^~4~^~FLA~^^^^^^^^^^~02/01/2005~
-~14242~^~320~^0.^0^^~4~^~FLA~^^^^^^^^^^~02/01/2005~
-~14242~^~321~^5.^0^^~4~^~FLA~^^^^^^^^^^~02/01/2005~
-~14242~^~322~^0.^1^^~1~^~A~^^^^^^^^^~1~^~02/01/2005~
-~14242~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~
-~14242~^~334~^0.^1^^~1~^~A~^^^^^^^^^~1~^~02/01/2005~
-~14242~^~337~^0.^1^^~1~^~A~^^^^^^^^^~1~^~02/01/2005~
-~14242~^~338~^13.^0^^~4~^~FLA~^^^^^^^^^^~02/01/2005~
-~14242~^~417~^0.^3^0.^~13~^~AI~^^^1^0.^0.^2^0.^0.^~4~^~02/01/2005~
-~14242~^~431~^0.^0^^~4~^~FLA~^^^^^^^^^^~02/01/2005~
-~14242~^~432~^0.^3^0.^~13~^~AI~^^^1^0.^0.^2^0.^0.^^~03/01/2006~
-~14242~^~435~^0.^0^^~4~^~NC~^^^^^^^^^^~12/01/2006~
-~14242~^~601~^0.^0^^~4~^~FLA~^^^^^^^^^^~02/01/2005~
-~14243~^~208~^19.^0^^~4~^~NC~^^^^^^^^^^~03/01/2003~
-~14243~^~262~^0.^0^^~4~^~FLC~^^^^^^^^^^~02/01/2003~
-~14243~^~263~^0.^0^^~4~^~FLC~^^^^^^^^^^~02/01/2003~
-~14243~^~268~^77.^0^^~4~^~NC~^^^^^^^^^^~03/01/2003~
-~14243~^~301~^9.^1^^~9~^~MC~^^^^9.^9.^^^^^~03/01/2003~
-~14243~^~304~^2.^1^^~9~^~MC~^^^^2.^2.^^^^^~03/01/2003~
-~14243~^~305~^1.^1^^~9~^~MC~^^^^1.^1.^^^^^~03/01/2003~
-~14243~^~306~^25.^1^^~13~^~AI~^^^^25.^25.^^^^^~02/01/2003~
-~14243~^~307~^3.^1^^~9~^~MC~^^^^3.^3.^^^^^~03/01/2003~
-~14243~^~318~^2.^0^^~4~^~FLC~^^^^^^^^^^~02/01/2003~
-~14243~^~319~^0.^0^^~4~^~FLC~^^^^^^^^^^~02/01/2003~
-~14243~^~320~^0.^0^^~4~^~FLC~^^^^^^^^^^~02/01/2003~
-~14243~^~321~^1.^0^^~4~^~FLC~^^^^^^^^^^~02/01/2003~
-~14243~^~322~^0.^0^^~4~^~FLC~^^^^^^^^^^~02/01/2003~
-~14243~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~
-~14243~^~334~^0.^0^^~4~^~FLC~^^^^^^^^^^~02/01/2003~
-~14243~^~337~^0.^0^^~4~^~FLC~^^^^^^^^^^~02/01/2003~
-~14243~^~338~^3.^0^^~4~^~FLC~^^^^^^^^^^~02/01/2003~
-~14243~^~417~^0.^0^^~4~^~FLC~^^^^^^^^^^~02/01/2003~
-~14243~^~431~^0.^0^^~4~^~FLC~^^^^^^^^^^~02/01/2003~
-~14243~^~432~^0.^0^^~4~^~FLC~^^^^^^^^^^~02/01/2003~
-~14243~^~435~^0.^0^^~4~^~NC~^^^^^^^^^^~12/01/2006~
-~14243~^~601~^0.^0^^~4~^~FLC~^^^^^^^^^^~02/01/2003~
-~14245~^~208~^95.^0^^~6~^~RPI~^^^^^^^^^^~03/01/2003~
-~14245~^~262~^0.^0^^~6~^~RPI~^^^^^^^^^^~03/01/2003~
-~14245~^~263~^0.^0^^~6~^~RPI~^^^^^^^^^^~03/01/2003~
-~14245~^~268~^396.^0^^~6~^~RPI~^^^^^^^^^^~03/01/2003~
-~14245~^~301~^92.^0^^~6~^~RPI~^^^^^^^^^^~03/01/2003~
-~14245~^~304~^10.^0^^~6~^~RPI~^^^^^^^^^^~03/01/2003~
-~14245~^~305~^77.^0^^~6~^~RPI~^^^^^^^^^^~03/01/2003~
-~14245~^~306~^121.^0^^~6~^~RPI~^^^^^^^^^^~03/01/2003~
-~14245~^~307~^55.^0^^~1~^~RPA~^^^^^^^^^^~03/01/2003~
-~14245~^~318~^94.^0^^~6~^~RPI~^^^^^^^^^^~03/01/2003~
-~14245~^~319~^26.^0^^~6~^~RPI~^^^^^^^^^^~03/01/2003~
-~14245~^~320~^26.^0^^~4~^~NC~^^^^^^^^^^~02/01/2017~
-~14245~^~321~^5.^0^^~6~^~RPI~^^^^^^^^^^~03/01/2003~
-~14245~^~322~^0.^0^^~6~^~RPI~^^^^^^^^^^~03/01/2003~
-~14245~^~334~^0.^0^^~6~^~RPI~^^^^^^^^^^~03/01/2003~
-~14245~^~337~^0.^0^^~6~^~RPI~^^^^^^^^^^~03/01/2003~
-~14245~^~338~^2.^0^^~6~^~RPI~^^^^^^^^^^~03/01/2003~
-~14245~^~417~^5.^0^^~6~^~RPI~^^^^^^^^^^~03/01/2003~
-~14245~^~431~^0.^0^^~6~^~RPI~^^^^^^^^^^~03/01/2003~
-~14245~^~432~^5.^0^^~6~^~RPI~^^^^^^^^^^~03/01/2003~
-~14245~^~435~^5.^0^^~4~^~NC~^^^^^^^^^^~03/01/2003~
-~14245~^~601~^11.^0^^~6~^~RPI~^^^^^^^^^^~03/01/2003~
-~14246~^~208~^378.^0^^~4~^~NC~^^^^^^^^^^~05/01/2015~
-~14246~^~262~^0.^0^^~8~^~LC~^^^^^^^^^^~05/01/2015~
-~14246~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2015~
-~14246~^~268~^1581.^0^^~4~^~NC~^^^^^^^^^^~05/01/2015~
-~14246~^~301~^2.^0^^~4~^~BFZN~^~14357~^^^^^^^^^~05/01/2015~
-~14246~^~304~^3.^0^^~4~^~BFZN~^~14357~^^^^^^^^^~05/01/2015~
-~14246~^~305~^2.^0^^~4~^~BFZN~^~14357~^^^^^^^^^~05/01/2015~
-~14246~^~306~^169.^0^^~4~^~BFZN~^~14357~^^^^^^^^^~05/01/2015~
-~14246~^~307~^0.^0^^~8~^~LC~^^^^^^^^^^~05/01/2015~
-~14246~^~318~^0.^0^^~4~^~NC~^^^^^^^^^^~05/01/2015~
-~14246~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2015~
-~14246~^~320~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2015~
-~14246~^~321~^0.^0^^~4~^~BFZN~^~14357~^^^^^^^^^~05/01/2015~
-~14246~^~322~^0.^0^^~4~^~BFZN~^~14357~^^^^^^^^^~05/01/2015~
-~14246~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2015~
-~14246~^~334~^0.^0^^~4~^~BFZN~^~14357~^^^^^^^^^~05/01/2015~
-~14246~^~337~^0.^0^^~4~^~BFZN~^~14357~^^^^^^^^^~05/01/2015~
-~14246~^~338~^0.^0^^~4~^~BFZN~^~14357~^^^^^^^^^~05/01/2015~
-~14246~^~417~^1.^0^^~4~^~BFZN~^~14357~^^^^^^^^^~05/01/2015~
-~14246~^~431~^0.^0^^~4~^~BFZN~^~14357~^^^^^^^^^~05/01/2015~
-~14246~^~432~^1.^0^^~4~^~BFZN~^~14357~^^^^^^^^^~05/01/2015~
-~14246~^~435~^1.^0^^~4~^~NC~^~14357~^^^^^^^^^~05/01/2015~
-~14246~^~601~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2015~
-~14247~^~208~^0.^0^^~8~^~LC~^^^^^^^^^^~05/01/2015~
-~14247~^~262~^11.^0^^~4~^~NR~^^^^^^^^^^~06/01/2015~
-~14247~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2015~
-~14247~^~268~^0.^0^^~8~^~LC~^^^^^^^^^^~05/01/2015~
-~14247~^~301~^0.^0^^~8~^~LC~^^^^^^^^^^~05/01/2015~
-~14247~^~304~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2015~
-~14247~^~305~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2015~
-~14247~^~306~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2015~
-~14247~^~307~^2.^0^^~8~^~LC~^^^^^^^^^^~05/01/2015~
-~14247~^~318~^0.^0^^~8~^~LC~^^^^^^^^^^~05/01/2015~
-~14247~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2015~
-~14247~^~320~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2015~
-~14247~^~321~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2015~
-~14247~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2015~
-~14247~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2015~
-~14247~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2015~
-~14247~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2015~
-~14247~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2015~
-~14247~^~417~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2015~
-~14247~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2015~
-~14247~^~432~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2015~
-~14247~^~435~^0.^0^^~4~^~NC~^^^^^^^^^^~05/01/2015~
-~14247~^~601~^0.^0^^~8~^~LC~^^^^^^^^^^~05/01/2015~
-~14248~^~208~^46.^0^^~4~^~NC~^^^^^^^^^^~05/01/2015~
-~14248~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2015~
-~14248~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2015~
-~14248~^~268~^191.^0^^~4~^~NC~^^^^^^^^^^~05/01/2015~
-~14248~^~301~^4.^0^^~4~^~BFZN~^~14006~^^^^^^^^^~05/01/2015~
-~14248~^~304~^5.^0^^~4~^~BFZN~^~14006~^^^^^^^^^~05/01/2015~
-~14248~^~305~^12.^0^^~4~^~BFZN~^~14006~^^^^^^^^^~05/01/2015~
-~14248~^~306~^21.^0^^~4~^~BFZN~^~14006~^^^^^^^^^~05/01/2015~
-~14248~^~307~^4.^0^^~4~^~BFZN~^~14006~^^^^^^^^^~05/01/2015~
-~14248~^~318~^0.^0^^~4~^~NC~^^^^^^^^^^~05/01/2015~
-~14248~^~319~^0.^0^^~4~^~BFZN~^~14006~^^^^^^^^^~05/01/2015~
-~14248~^~320~^0.^0^^~4~^~NC~^~14006~^^^^^^^^^~05/01/2015~
-~14248~^~321~^0.^0^^~4~^~BFZN~^~14006~^^^^^^^^^~05/01/2015~
-~14248~^~322~^0.^0^^~4~^~BFZN~^~14006~^^^^^^^^^~05/01/2015~
-~14248~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2015~
-~14248~^~334~^0.^0^^~4~^~BFZN~^~14006~^^^^^^^^^~05/01/2015~
-~14248~^~337~^0.^0^^~4~^~BFZN~^~14006~^^^^^^^^^~05/01/2015~
-~14248~^~338~^0.^0^^~4~^~BFZN~^~14006~^^^^^^^^^~05/01/2015~
-~14248~^~417~^6.^0^^~4~^~BFZN~^~14006~^^^^^^^^^~05/01/2015~
-~14248~^~431~^0.^0^^~4~^~BFZN~^~14006~^^^^^^^^^~05/01/2015~
-~14248~^~432~^6.^0^^~4~^~BFZN~^~14006~^^^^^^^^^~05/01/2015~
-~14248~^~435~^6.^0^^~4~^~NC~^~14006~^^^^^^^^^~05/01/2015~
-~14248~^~601~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2015~
-~14250~^~208~^56.^0^^~8~^~LC~^^^^^^^^^^~06/01/2015~
-~14250~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2015~
-~14250~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2015~
-~14250~^~268~^236.^0^^~8~^~LC~^^^^^^^^^^~06/01/2015~
-~14250~^~301~^4.^0^^~4~^~FLA~^^^^^^^^^^~06/01/2015~
-~14250~^~304~^3.^0^^~4~^~FLA~^^^^^^^^^^~06/01/2015~
-~14250~^~305~^6.^0^^~4~^~FLA~^^^^^^^^^^~06/01/2015~
-~14250~^~306~^54.^0^^~4~^~FLA~^^^^^^^^^^~06/01/2015~
-~14250~^~307~^4.^0^^~8~^~LC~^^^^^^^^^^~06/01/2015~
-~14250~^~318~^27.^0^^~4~^~NC~^^^^^^^^^^~06/01/2015~
-~14250~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2015~
-~14250~^~320~^1.^0^^~4~^~NC~^^^^^^^^^^~06/01/2015~
-~14250~^~321~^14.^0^^~4~^~FLA~^^^^^^^^^^~06/01/2015~
-~14250~^~322~^0.^0^^~4~^~FLA~^^^^^^^^^^~06/01/2015~
-~14250~^~324~^0.^0^^~4~^~FLA~^^^^^^^^^^~06/01/2015~
-~14250~^~334~^5.^0^^~4~^~FLA~^^^^^^^^^^~06/01/2015~
-~14250~^~337~^0.^0^^~4~^~FLA~^^^^^^^^^^~06/01/2015~
-~14250~^~338~^15.^0^^~4~^~FLA~^^^^^^^^^^~06/01/2015~
-~14250~^~417~^1.^0^^~4~^~FLA~^^^^^^^^^^~06/01/2015~
-~14250~^~431~^0.^0^^~4~^~FLA~^^^^^^^^^^~06/01/2015~
-~14250~^~432~^1.^0^^~4~^~FLA~^^^^^^^^^^~06/01/2015~
-~14250~^~435~^1.^0^^~4~^~NC~^^^^^^^^^^~06/01/2015~
-~14250~^~601~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2015~
-~14251~^~208~^58.^0^^~4~^~NC~^^^^^^^^^^~07/01/2015~
-~14251~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2015~
-~14251~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2015~
-~14251~^~268~^243.^0^^~4~^~NC~^^^^^^^^^^~07/01/2015~
-~14251~^~301~^8.^1^^~1~^~A~^^^^^^^^^^~06/01/2015~
-~14251~^~304~^12.^1^^~1~^~A~^^^^^^^^^^~06/01/2015~
-~14251~^~305~^32.^1^^~1~^~A~^^^^^^^^^^~06/01/2015~
-~14251~^~306~^62.^1^^~1~^~A~^^^^^^^^^^~06/01/2015~
-~14251~^~307~^4.^1^^~1~^~A~^^^^^^^^^^~06/01/2015~
-~14251~^~318~^0.^0^^~1~^~AS~^^^^^^^^^^~06/01/2015~
-~14251~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2015~
-~14251~^~320~^0.^0^^~1~^~AS~^^^^^^^^^^~09/01/2015~
-~14251~^~321~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2015~
-~14251~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2015~
-~14251~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2015~
-~14251~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2015~
-~14251~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2015~
-~14251~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2015~
-~14251~^~417~^18.^1^^~1~^~A~^^^^^^^^^^~06/01/2015~
-~14251~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2015~
-~14251~^~432~^18.^0^^~4~^~NR~^^^^^^^^^^~06/01/2015~
-~14251~^~435~^18.^0^^~4~^~NC~^^^^^^^^^^~06/01/2015~
-~14251~^~601~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2015~
-~14252~^~208~^40.^0^^~4~^~NC~^^^^^^^^^^~08/01/2015~
-~14252~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2015~
-~14252~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2015~
-~14252~^~268~^165.^0^^~4~^~NC~^^^^^^^^^^~08/01/2015~
-~14252~^~301~^3.^1^^~1~^~A~^^^^^^^^^^~06/01/2015~
-~14252~^~304~^5.^1^^~1~^~A~^^^^^^^^^^~06/01/2015~
-~14252~^~305~^13.^1^^~1~^~A~^^^^^^^^^^~06/01/2015~
-~14252~^~306~^33.^1^^~1~^~A~^^^^^^^^^^~06/01/2015~
-~14252~^~307~^3.^1^^~1~^~A~^^^^^^^^^^~06/01/2015~
-~14252~^~318~^0.^0^^~1~^~AS~^^^^^^^^^^~06/01/2015~
-~14252~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2015~
-~14252~^~320~^0.^0^^~1~^~AS~^^^^^^^^^^~11/01/2016~
-~14252~^~321~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2015~
-~14252~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2015~
-~14252~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2015~
-~14252~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2015~
-~14252~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2015~
-~14252~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2015~
-~14252~^~417~^4.^1^^~1~^~A~^^^^^^^^^~1~^~06/01/2015~
-~14252~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2015~
-~14252~^~432~^4.^0^^~4~^~NR~^^^^^^^^^^~06/01/2015~
-~14252~^~435~^4.^0^^~4~^~NC~^^^^^^^^^^~06/01/2015~
-~14252~^~601~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2015~
-~14253~^~208~^83.^0^^~4~^~NC~^^^^^^^^^^~08/01/2015~
-~14253~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2015~
-~14253~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2015~
-~14253~^~268~^348.^0^^~4~^~NC~^^^^^^^^^^~08/01/2015~
-~14253~^~301~^10.^1^^~1~^~A~^^^^^^^^^^~06/01/2015~
-~14253~^~304~^10.^1^^~1~^~A~^^^^^^^^^^~06/01/2015~
-~14253~^~305~^18.^1^^~1~^~A~^^^^^^^^^^~06/01/2015~
-~14253~^~306~^59.^1^^~1~^~A~^^^^^^^^^^~06/01/2015~
-~14253~^~307~^5.^1^^~1~^~A~^^^^^^^^^^~06/01/2015~
-~14253~^~318~^0.^0^^~1~^~AS~^^^^^^^^^^~06/01/2015~
-~14253~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2015~
-~14253~^~320~^0.^0^^~1~^~AS~^^^^^^^^^^~09/01/2015~
-~14253~^~321~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2015~
-~14253~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2015~
-~14253~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2015~
-~14253~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2015~
-~14253~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2015~
-~14253~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2015~
-~14253~^~417~^1.^0^^~4~^~BFZN~^^^^^^^^^^~06/01/2015~
-~14253~^~431~^0.^0^^~4~^~BFZN~^^^^^^^^^^~06/01/2015~
-~14253~^~432~^1.^0^^~4~^~BFZN~^^^^^^^^^^~06/01/2015~
-~14253~^~435~^1.^0^^~4~^~NC~^^^^^^^^^^~06/01/2015~
-~14253~^~601~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2015~
-~14255~^~208~^47.^1^^~1~^~A~^^^^^^^^^^~08/01/2015~
-~14255~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2015~
-~14255~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2015~
-~14255~^~268~^197.^0^^~1~^~A~^^^^^^^^^^~08/01/2015~
-~14255~^~301~^2.^1^^~1~^~A~^^^^^^^^^^~06/01/2015~
-~14255~^~304~^1.^1^^~1~^~A~^^^^^^^^^^~06/01/2015~
-~14255~^~305~^1.^1^^~1~^~A~^^^^^^^^^^~06/01/2015~
-~14255~^~306~^11.^1^^~1~^~A~^^^^^^^^^^~06/01/2015~
-~14255~^~307~^12.^1^^~1~^~A~^^^^^^^^^^~06/01/2015~
-~14255~^~318~^24.^0^^~1~^~AS~^^^^^^^^^^~08/01/2015~
-~14255~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2015~
-~14255~^~320~^1.^0^^~1~^~AS~^^^^^^^^^^~06/01/2015~
-~14255~^~321~^14.^1^^~1~^~A~^^^^^^^^^~1~^~06/01/2015~
-~14255~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2015~
-~14255~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2015~
-~14255~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2015~
-~14255~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2015~
-~14255~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2015~
-~14255~^~417~^4.^0^^~4~^~O~^^^^^^^^^^~06/01/2015~
-~14255~^~431~^4.^1^^~1~^~A~^^^^^^^^^~1~^~06/01/2015~
-~14255~^~432~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2015~
-~14255~^~435~^8.^0^^~4~^~NC~^^^^^^^^^^~06/01/2015~
-~14255~^~601~^0.^1^^~1~^~A~^^^^^^^^^^~08/01/2015~
-~14256~^~208~^46.^1^^~1~^~A~^^^^^^^^^^~08/01/2015~
-~14256~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2015~
-~14256~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2015~
-~14256~^~268~^194.^0^^~1~^~A~^^^^^^^^^^~08/01/2015~
-~14256~^~301~^3.^1^^~1~^~A~^^^^^^^^^^~06/01/2015~
-~14256~^~304~^1.^1^^~1~^~A~^^^^^^^^^^~06/01/2015~
-~14256~^~305~^2.^1^^~1~^~A~^^^^^^^^^^~06/01/2015~
-~14256~^~306~^24.^1^^~1~^~A~^^^^^^^^^^~06/01/2015~
-~14256~^~307~^7.^1^^~1~^~A~^^^^^^^^^^~06/01/2015~
-~14256~^~318~^33.^0^^~1~^~AS~^^^^^^^^^^~08/01/2015~
-~14256~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2015~
-~14256~^~320~^2.^0^^~1~^~AS~^^^^^^^^^^~06/01/2015~
-~14256~^~321~^20.^1^^~1~^~A~^^^^^^^^^~1~^~06/01/2015~
-~14256~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2015~
-~14256~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2015~
-~14256~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2015~
-~14256~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2015~
-~14256~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2015~
-~14256~^~417~^22.^0^^~4~^~O~^^^^^^^^^^~06/01/2015~
-~14256~^~431~^22.^1^^~1~^~A~^^^^^^^^^^~06/01/2015~
-~14256~^~432~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2015~
-~14256~^~435~^37.^0^^~4~^~NC~^^^^^^^^^^~06/01/2015~
-~14256~^~601~^0.^1^^~1~^~A~^^^^^^^^^^~08/01/2015~
-~14257~^~208~^19.^2^^~1~^~A~^^^1^19.^19.^1^^^^~06/01/2015~
-~14257~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2015~
-~14257~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2015~
-~14257~^~268~^78.^0^^~1~^~A~^^^^^^^^^^~06/01/2015~
-~14257~^~301~^3.^2^^~1~^~A~^^^1^3.^4.^1^^^^~06/01/2015~
-~14257~^~304~^1.^0^^~4~^~BFZN~^^^^^^^^^^~06/01/2015~
-~14257~^~305~^1.^0^^~4~^~BFZN~^^^^^^^^^^~06/01/2015~
-~14257~^~306~^38.^2^^~1~^~A~^^^1^37.^39.^1^^^^~06/01/2015~
-~14257~^~307~^15.^2^^~1~^~A~^^^1^13.^18.^1^^^^~06/01/2015~
-~14257~^~318~^25.^0^^~1~^~AS~^^^^^^^^^^~08/01/2015~
-~14257~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2015~
-~14257~^~320~^1.^0^^~1~^~AS~^^^^^^^^^^~06/01/2015~
-~14257~^~321~^15.^2^^~1~^~A~^^^1^15.^15.^^^^~1~^~06/01/2015~
-~14257~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2015~
-~14257~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2015~
-~14257~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2015~
-~14257~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2015~
-~14257~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2015~
-~14257~^~601~^0.^0^^~4~^~NR~^^^^^^^^^^~08/01/2015~
-~14258~^~208~^45.^1^^~1~^~A~^^^^^^^^^^~08/01/2015~
-~14258~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2015~
-~14258~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2015~
-~14258~^~268~^187.^0^^~1~^~A~^^^^^^^^^^~08/01/2015~
-~14258~^~301~^3.^1^^~1~^~A~^^^^^^^^^^~06/01/2015~
-~14258~^~304~^2.^1^^~1~^~A~^^^^^^^^^^~06/01/2015~
-~14258~^~305~^3.^1^^~1~^~A~^^^^^^^^^^~06/01/2015~
-~14258~^~306~^22.^1^^~1~^~A~^^^^^^^^^^~06/01/2015~
-~14258~^~307~^11.^1^^~1~^~A~^^^^^^^^^^~06/01/2015~
-~14258~^~318~^33.^0^^~1~^~AS~^^^^^^^^^^~08/01/2015~
-~14258~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2015~
-~14258~^~320~^2.^0^^~1~^~AS~^^^^^^^^^^~08/01/2015~
-~14258~^~321~^20.^1^^~1~^~A~^^^^^^^^^~1~^~08/01/2015~
-~14258~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2015~
-~14258~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2015~
-~14258~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2015~
-~14258~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2015~
-~14258~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2015~
-~14258~^~417~^4.^0^^~4~^~O~^^^^^^^^^^~06/01/2015~
-~14258~^~431~^4.^1^^~1~^~A~^^^^^^^^^~1~^~06/01/2015~
-~14258~^~432~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2015~
-~14258~^~435~^8.^0^^~4~^~NC~^^^^^^^^^^~06/01/2015~
-~14258~^~601~^0.^1^^~1~^~A~^^^^^^^^^^~08/01/2015~
-~14259~^~208~^23.^1^^~1~^~A~^^^^^^^^^^~06/01/2015~
-~14259~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2015~
-~14259~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2015~
-~14259~^~268~^94.^0^^~1~^~A~^^^^^^^^^^~06/01/2015~
-~14259~^~301~^4.^1^^~1~^~A~^^^^^^^^^^~06/01/2015~
-~14259~^~304~^1.^0^^~4~^~BFZN~^^^^^^^^^^~06/01/2015~
-~14259~^~305~^1.^0^^~4~^~BFZN~^^^^^^^^^^~06/01/2015~
-~14259~^~306~^34.^1^^~1~^~A~^^^^^^^^^^~06/01/2015~
-~14259~^~307~^8.^1^^~1~^~A~^^^^^^^^^^~06/01/2015~
-~14259~^~318~^25.^0^^~1~^~AS~^^^^^^^^^^~08/01/2015~
-~14259~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2015~
-~14259~^~320~^1.^0^^~1~^~AS~^^^^^^^^^^~06/01/2015~
-~14259~^~321~^15.^1^^~1~^~A~^^^^^^^^^~1~^~06/01/2015~
-~14259~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2015~
-~14259~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2015~
-~14259~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2015~
-~14259~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2015~
-~14259~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2015~
-~14259~^~601~^0.^1^^~1~^~A~^^^^^^^^^^~08/01/2015~
-~14260~^~208~^0.^0^^~8~^~LC~^^^^^^^^^^~06/01/2015~
-~14260~^~262~^0.^0^^~4~^~O~^^^^^^^^^^~06/01/2015~
-~14260~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2015~
-~14260~^~268~^0.^0^^~8~^~LC~^^^^^^^^^^~06/01/2015~
-~14260~^~301~^0.^0^^~8~^~LC~^^^^^^^^^^~06/01/2015~
-~14260~^~304~^1.^0^^~4~^~BFZN~^^^^^^^^^^~06/01/2015~
-~14260~^~305~^0.^0^^~4~^~BFZN~^^^^^^^^^^~06/01/2015~
-~14260~^~306~^15.^0^^~8~^~LC~^^^^^^^^^^~06/01/2015~
-~14260~^~307~^0.^0^^~8~^~LC~^^^^^^^^^^~06/01/2015~
-~14260~^~318~^0.^0^^~8~^~LC~^^^^^^^^^^~06/01/2015~
-~14260~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2015~
-~14260~^~320~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2015~
-~14260~^~321~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2015~
-~14260~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2015~
-~14260~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2015~
-~14260~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2015~
-~14260~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2015~
-~14260~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2015~
-~14260~^~417~^0.^0^^~4~^~BFZN~^^^^^^^^^^~06/01/2015~
-~14260~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2015~
-~14260~^~432~^0.^0^^~4~^~BFZN~^^^^^^^^^^~06/01/2015~
-~14260~^~435~^0.^0^^~4~^~NC~^^^^^^^^^^~06/01/2015~
-~14260~^~601~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2015~
-~14261~^~208~^0.^0^^~8~^~LC~^^^^^^^^^^~06/01/2015~
-~14261~^~262~^12.^0^^~8~^~LC~^^^^^^^^^^~06/01/2015~
-~14261~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2015~
-~14261~^~268~^0.^0^^~8~^~LC~^^^^^^^^^^~06/01/2015~
-~14261~^~301~^1.^0^^~4~^~BFZN~^^^^^^^^^^~06/01/2015~
-~14261~^~304~^0.^0^^~4~^~BFZN~^^^^^^^^^^~06/01/2015~
-~14261~^~305~^26.^0^^~4~^~BFZN~^^^^^^^^^^~06/01/2015~
-~14261~^~306~^19.^0^^~4~^~BFZN~^^^^^^^^^^~06/01/2015~
-~14261~^~307~^7.^0^^~8~^~LC~^^^^^^^^^^~06/01/2015~
-~14261~^~318~^0.^0^^~8~^~LC~^^^^^^^^^^~06/01/2015~
-~14261~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2015~
-~14261~^~320~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2015~
-~14261~^~321~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2015~
-~14261~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2015~
-~14261~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2015~
-~14261~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2015~
-~14261~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2015~
-~14261~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2015~
-~14261~^~417~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2015~
-~14261~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2015~
-~14261~^~432~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2015~
-~14261~^~435~^0.^0^^~4~^~NC~^^^^^^^^^^~06/01/2015~
-~14261~^~601~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2015~
-~14262~^~208~^162.^0^^~4~^~NC~^^^^^^^^^^~02/01/2005~
-~14262~^~262~^0.^0^^~4~^~FLC~^^^^^^^^^^~02/01/2003~
-~14262~^~263~^0.^0^^~4~^~FLC~^^^^^^^^^^~02/01/2003~
-~14262~^~268~^676.^0^^~4~^~NC~^^^^^^^^^^~02/01/2005~
-~14262~^~301~^25.^7^^~1~^^^^^^^^^^^~05/01/1986~
-~14262~^~304~^20.^8^^~1~^^^^^^^^^^^~05/01/1986~
-~14262~^~305~^36.^4^2.^~1~^^^^^^^^^^^~05/01/1986~
-~14262~^~306~^393.^8^^~1~^^^^^^^^^^^~05/01/1986~
-~14262~^~307~^3.^8^^~1~^^^^^^^^^^^~05/01/1986~
-~14262~^~318~^131.^0^^~4~^~NC~^^^^^^^^^^~02/01/2005~
-~14262~^~319~^0.^0^^~4~^~FLC~^^^^^^^^^^~02/01/2003~
-~14262~^~320~^7.^0^^~4~^~NC~^^^^^^^^^^~02/01/2005~
-~14262~^~321~^27.^0^^~4~^~FLC~^^^^^^^^^^~02/01/2005~
-~14262~^~322~^6.^0^^~4~^~FLC~^^^^^^^^^^~02/01/2005~
-~14262~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~
-~14262~^~334~^97.^0^^~4~^~FLC~^^^^^^^^^^~02/01/2005~
-~14262~^~337~^0.^0^^~4~^~FLC~^^^^^^^^^^~02/01/2003~
-~14262~^~338~^93.^0^^~4~^~FLC~^^^^^^^^^^~02/01/2005~
-~14262~^~417~^26.^0^^~4~^~FLC~^^^^^^^^^^~02/01/2005~
-~14262~^~431~^0.^0^^~4~^~FLC~^^^^^^^^^^~02/01/2003~
-~14262~^~432~^26.^0^^~4~^~FLC~^^^^^^^^^^~02/01/2005~
-~14262~^~435~^26.^0^^~4~^~NC~^^^^^^^^^^~12/01/2006~
-~14262~^~601~^0.^0^^~4~^~FLC~^^^^^^^^^^~02/01/2003~
-~14263~^~208~^46.^0^^~6~^~RPI~^^^^^^^^^^~12/01/2006~
-~14263~^~262~^0.^0^^~6~^~RPI~^^^^^^^^^^~12/01/2006~
-~14263~^~263~^0.^0^^~6~^~RPI~^^^^^^^^^^~12/01/2006~
-~14263~^~268~^192.^0^^~6~^~RPI~^^^^^^^^^^~12/01/2006~
-~14263~^~301~^9.^0^^~1~^~RPA~^^^^^^^^^^~12/01/2006~
-~14263~^~304~^6.^0^^~1~^~RPA~^^^^^^^^^^~12/01/2006~
-~14263~^~305~^10.^0^^~1~^~RPA~^^^^^^^^^^~12/01/2006~
-~14263~^~306~^112.^0^^~1~^~RPA~^^^^^^^^^^~12/01/2006~
-~14263~^~307~^4.^0^^~1~^~RPA~^^^^^^^^^^~12/01/2006~
-~14263~^~318~^37.^0^^~4~^~NC~^^^^^^^^^^~09/01/2015~
-~14263~^~319~^0.^0^^~6~^~RPI~^^^^^^^^^^~12/01/2006~
-~14263~^~320~^2.^0^^~4~^~NC~^^^^^^^^^^~09/01/2015~
-~14263~^~321~^8.^0^^~6~^~RPI~^^^^^^^^^^~12/01/2006~
-~14263~^~322~^2.^0^^~6~^~RPI~^^^^^^^^^^~12/01/2006~
-~14263~^~334~^28.^0^^~6~^~RPI~^^^^^^^^^^~12/01/2006~
-~14263~^~337~^0.^0^^~6~^~RPI~^^^^^^^^^^~12/01/2006~
-~14263~^~338~^27.^0^^~6~^~RPI~^^^^^^^^^^~12/01/2006~
-~14263~^~417~^7.^0^^~6~^~RPI~^^^^^^^^^^~12/01/2006~
-~14263~^~431~^0.^0^^~6~^~RPI~^^^^^^^^^^~12/01/2006~
-~14263~^~432~^7.^0^^~6~^~RPI~^^^^^^^^^^~12/01/2006~
-~14263~^~435~^7.^0^^~4~^~NC~^^^^^^^^^^~12/01/2006~
-~14263~^~601~^0.^0^^~6~^~RPI~^^^^^^^^^^~12/01/2006~
-~14264~^~208~^48.^0^^~4~^~NC~^^^^^^^^^^~02/01/2003~
-~14264~^~262~^0.^0^^~4~^~FLC~^^^^^^^^^^~02/01/2003~
-~14264~^~263~^0.^0^^~4~^~FLC~^^^^^^^^^^~02/01/2003~
-~14264~^~268~^200.^0^^~4~^~NC~^^^^^^^^^^~02/01/2003~
-~14264~^~301~^8.^0^^~4~^~BFZN~^~14267~^^^^^^^^^~02/01/2003~
-~14264~^~304~^3.^0^^~4~^~BFZN~^~14267~^^^^^^^^^~02/01/2003~
-~14264~^~305~^3.^0^^~4~^~BFZN~^~14267~^^^^^^^^^~02/01/2003~
-~14264~^~306~^25.^0^^~4~^~BFZN~^~14267~^^^^^^^^^~02/01/2003~
-~14264~^~307~^10.^2^^~8~^~LC~^^^1^10.^10.^1^^^^~02/01/2003~
-~14264~^~318~^0.^0^^~4~^~FLC~^^^^^^^^^^~02/01/2003~
-~14264~^~319~^0.^0^^~4~^~FLC~^^^^^^^^^^~02/01/2003~
-~14264~^~320~^0.^0^^~4~^~FLC~^^^^^^^^^^~02/01/2003~
-~14264~^~321~^0.^0^^~4~^~FLC~^^^^^^^^^^~02/01/2003~
-~14264~^~322~^0.^0^^~4~^~FLC~^^^^^^^^^^~02/01/2003~
-~14264~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~
-~14264~^~334~^0.^0^^~4~^~FLC~^^^^^^^^^^~02/01/2003~
-~14264~^~337~^0.^0^^~4~^~FLC~^^^^^^^^^^~02/01/2003~
-~14264~^~338~^0.^0^^~4~^~FLC~^^^^^^^^^^~02/01/2003~
-~14264~^~417~^4.^0^^~4~^~BFZN~^~14267~^^^^^^^^^~02/01/2003~
-~14264~^~431~^0.^0^^~4~^~BFZN~^~14267~^^^^^^^^^~02/01/2003~
-~14264~^~432~^4.^0^^~4~^~BFZN~^~14267~^^^^^^^^^~02/01/2003~
-~14264~^~435~^4.^0^^~4~^~NC~^~14267~^^^^^^^^^~12/01/2006~
-~14264~^~601~^0.^1^^~8~^~LC~^^^^^^^^^^~02/01/2003~
-~14267~^~208~^47.^0^^~4~^~NC~^^^^^^^^^^~02/01/2005~
-~14267~^~262~^0.^0^^~4~^~FLA~^^^^^^^^^^~02/01/2005~
-~14267~^~263~^0.^0^^~4~^~FLA~^^^^^^^^^^~02/01/2005~
-~14267~^~268~^195.^0^^~4~^~NC~^^^^^^^^^^~02/01/2005~
-~14267~^~301~^8.^15^1.^~1~^~A~^^^7^2.^20.^14^5.^11.^~4~^~02/01/2003~
-~14267~^~304~^3.^18^0.^~1~^~A~^^^7^1.^7.^17^2.^4.^~4~^~02/01/2003~
-~14267~^~305~^3.^17^0.^~1~^~A~^^^7^0.^11.^16^1.^4.^~4~^~02/01/2003~
-~14267~^~306~^31.^18^5.^~1~^~A~^^^7^11.^87.^17^19.^43.^~4~^~02/01/2005~
-~14267~^~307~^38.^1^^~8~^~LC~^^^^^^^^^^~02/01/2003~
-~14267~^~318~^28.^0^^~4~^~FLA~^^^^^^^^^^~02/01/2005~
-~14267~^~319~^0.^0^^~4~^~FLA~^^^^^^^^^^~02/01/2005~
-~14267~^~320~^2.^0^^~4~^~FLA~^^^^^^^^^^~02/01/2005~
-~14267~^~321~^14.^0^^~4~^~FLA~^^^^^^^^^^~02/01/2005~
-~14267~^~322~^0.^0^^~4~^~FLA~^^^^^^^^^^~02/01/2005~
-~14267~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~
-~14267~^~334~^4.^0^^~4~^~FLA~^^^^^^^^^^~02/01/2005~
-~14267~^~337~^1.^0^^~4~^~FLA~^^^^^^^^^^~02/01/2005~
-~14267~^~338~^2.^0^^~4~^~FLA~^^^^^^^^^^~02/01/2005~
-~14267~^~417~^1.^2^^~11~^~JO~^^^1^0.^1.^1^^^^~02/01/2005~
-~14267~^~431~^0.^0^^~4~^~FLA~^^^^^^^^^^~02/01/2005~
-~14267~^~432~^1.^2^^~11~^~JO~^^^^^^^^^^~02/01/2005~
-~14267~^~435~^1.^0^^~4~^~NC~^^^^^^^^^^~12/01/2006~
-~14267~^~601~^0.^0^^~4~^~FLA~^^^^^^^^^^~02/01/2005~
-~14268~^~208~^162.^0^^~4~^~NC~^^^^^^^^^^~05/01/1986~
-~14268~^~268~^678.^0^^~4~^^^^^^^^^^^~05/01/2006~
-~14268~^~301~^8.^2^^~1~^^^^^^^^^^^~05/01/1986~
-~14268~^~304~^6.^2^^~1~^^^^^^^^^^^~05/01/1986~
-~14268~^~305~^2.^2^^~1~^^^^^^^^^^^~05/01/1986~
-~14268~^~306~^44.^2^^~1~^^^^^^^^^^^~05/01/1986~
-~14268~^~307~^8.^2^^~1~^^^^^^^^^^^~05/01/1986~
-~14268~^~318~^39.^2^^~1~^^^^^^^^^^^~05/01/1986~
-~14268~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2002~
-~14268~^~320~^2.^0^^~4~^~NC~^^^^^^^^^^~06/01/2002~
-~14268~^~417~^3.^2^^~1~^^^^^^^^^^^~05/01/1986~
-~14268~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~
-~14268~^~432~^3.^2^^~1~^^^^^^^^^^^~05/01/1986~
-~14268~^~435~^3.^0^^~4~^~NC~^^^^^^^^^^~05/01/2006~
-~14268~^~601~^0.^0^^~1~^^^^^^^^^^^~05/01/1986~
-~14269~^~208~^46.^0^^~6~^~RPI~^^^^^^^^^^~03/01/2003~
-~14269~^~262~^0.^0^^~6~^~RPI~^^^^^^^^^^~03/01/2003~
-~14269~^~263~^0.^0^^~6~^~RPI~^^^^^^^^^^~03/01/2003~
-~14269~^~268~^191.^0^^~6~^~RPI~^^^^^^^^^^~03/01/2003~
-~14269~^~301~^4.^0^^~1~^~RPA~^^^^^^^^^^~12/01/2006~
-~14269~^~304~^2.^0^^~1~^~RPA~^^^^^^^^^^~12/01/2006~
-~14269~^~305~^1.^0^^~1~^~RPA~^^^^^^^^^^~12/01/2006~
-~14269~^~306~^13.^0^^~1~^~RPA~^^^^^^^^^^~12/01/2006~
-~14269~^~307~^5.^0^^~1~^~RPA~^^^^^^^^^^~12/01/2006~
-~14269~^~318~^11.^0^^~6~^~RPI~^^^^^^^^^^~03/01/2003~
-~14269~^~319~^0.^0^^~6~^~RPI~^^^^^^^^^^~12/01/2006~
-~14269~^~320~^1.^0^^~6~^~RPI~^^^^^^^^^^~12/01/2006~
-~14269~^~321~^0.^0^^~6~^~RPI~^^^^^^^^^^~12/01/2006~
-~14269~^~322~^0.^0^^~6~^~RPI~^^^^^^^^^^~12/01/2006~
-~14269~^~334~^0.^0^^~6~^~RPI~^^^^^^^^^^~12/01/2006~
-~14269~^~337~^0.^0^^~6~^~RPI~^^^^^^^^^^~12/01/2006~
-~14269~^~338~^0.^0^^~6~^~RPI~^^^^^^^^^^~12/01/2006~
-~14269~^~417~^1.^0^^~6~^~RPI~^^^^^^^^^^~03/01/2003~
-~14269~^~431~^0.^0^^~6~^~RPI~^^^^^^^^^^~03/01/2003~
-~14269~^~432~^1.^0^^~6~^~RPI~^^^^^^^^^^~03/01/2003~
-~14269~^~435~^1.^0^^~4~^~NC~^^^^^^^^^^~12/01/2006~
-~14269~^~601~^0.^0^^~6~^~RPI~^^^^^^^^^^~12/01/2006~
-~14270~^~208~^465.^0^^~4~^~NC~^^^^^^^^^^~06/01/2015~
-~14270~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2015~
-~14270~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2015~
-~14270~^~268~^1946.^0^^~4~^~NC~^^^^^^^^^^~06/01/2015~
-~14270~^~301~^0.^0^^~8~^~LC~^^^^^^^^^^~06/01/2015~
-~14270~^~304~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2015~
-~14270~^~305~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2015~
-~14270~^~306~^57.^0^^~4~^~BFFN~^~14231~^^^^^^^^^~06/01/2015~
-~14270~^~307~^333.^0^^~8~^~LC~^^^^^^^^^^~06/01/2015~
-~14270~^~318~^0.^0^^~8~^~LC~^^^^^^^^^^~06/01/2015~
-~14270~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2015~
-~14270~^~320~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2015~
-~14270~^~321~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2015~
-~14270~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2015~
-~14270~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2015~
-~14270~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2015~
-~14270~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2015~
-~14270~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2015~
-~14270~^~417~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2015~
-~14270~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2015~
-~14270~^~432~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2015~
-~14270~^~435~^0.^0^^~4~^~NC~^^^^^^^^^^~06/01/2015~
-~14270~^~601~^0.^0^^~8~^~LC~^^^^^^^^^^~06/01/2015~
-~14276~^~208~^10.^0^^~8~^~LC~^^^^^^^^^^~12/01/2014~
-~14276~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~12/01/2014~
-~14276~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~12/01/2014~
-~14276~^~268~^42.^0^^~8~^~LC~^^^^^^^^^^~12/01/2014~
-~14276~^~301~^0.^0^^~8~^~LC~^^^^^^^^^^~12/01/2014~
-~14276~^~304~^0.^0^^~7~^~Z~^^^^^^^^^^~12/01/2014~
-~14276~^~305~^0.^0^^~9~^~MC~^^^^^^^^^^~02/01/1999~
-~14276~^~306~^0.^0^^~7~^~Z~^^^^^^^^^^~12/01/2014~
-~14276~^~307~^13.^0^^~8~^~LC~^^^^^^^^^^~12/01/2014~
-~14276~^~318~^0.^0^^~8~^~LC~^^^^^^^^^^~12/01/2014~
-~14276~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~12/01/2014~
-~14276~^~320~^0.^0^^~7~^~Z~^^^^^^^^^^~12/01/2014~
-~14276~^~321~^0.^0^^~7~^~Z~^^^^^^^^^^~12/01/2014~
-~14276~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~12/01/2014~
-~14276~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~12/01/2014~
-~14276~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~12/01/2014~
-~14276~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~12/01/2014~
-~14276~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~12/01/2014~
-~14276~^~417~^0.^0^^~7~^~Z~^^^^^^^^^^~12/01/2014~
-~14276~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~12/01/2014~
-~14276~^~432~^0.^0^^~7~^~Z~^^^^^^^^^^~12/01/2014~
-~14276~^~435~^0.^0^^~4~^~NC~^^^^^^^^^^~12/01/2014~
-~14276~^~601~^0.^0^^~8~^~LC~^^^^^^^^^^~12/01/2014~
-~14277~^~208~^61.^0^^~4~^~NC~^^^^^^^^^^~02/01/2005~
-~14277~^~262~^0.^0^^~4~^~FLA~^^^^^^^^^^~01/01/2003~
-~14277~^~263~^0.^0^^~4~^~FLA~^^^^^^^^^^~01/01/2003~
-~14277~^~268~^257.^0^^~4~^~NC~^^^^^^^^^^~02/01/2005~
-~14277~^~301~^52.^1^^~8~^~LC~^^^^^^^^^^~02/01/2005~
-~14277~^~304~^1.^0^^~4~^~FLA~^^^^^^^^^^~01/01/2003~
-~14277~^~305~^0.^0^^~4~^~FLA~^^^^^^^^^^~01/01/2003~
-~14277~^~306~^12.^5^3.^~11~^~JO~^^^1^5.^22.^4^3.^20.^~4~^~01/01/2003~
-~14277~^~307~^16.^2^^~8~^~LC~^^^1^13.^18.^1^^^^~02/01/2005~
-~14277~^~318~^0.^0^^~4~^~NC~^^^^^^^^^^~02/01/2005~
-~14277~^~319~^0.^0^^~4~^~FLA~^^^^^^^^^^~01/01/2003~
-~14277~^~320~^0.^0^^~4~^~NC~^^^^^^^^^^~02/01/2005~
-~14277~^~321~^0.^0^^~4~^~FLA~^^^^^^^^^^~02/01/2005~
-~14277~^~322~^0.^0^^~4~^~FLA~^^^^^^^^^^~02/01/2005~
-~14277~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~
-~14277~^~334~^0.^0^^~4~^~FLA~^^^^^^^^^^~02/01/2005~
-~14277~^~337~^0.^0^^~4~^~FLA~^^^^^^^^^^~01/01/2003~
-~14277~^~338~^4.^0^^~4~^~FLA~^^^^^^^^^^~02/01/2005~
-~14277~^~417~^0.^0^^~4~^~FLA~^^^^^^^^^^~01/01/2003~
-~14277~^~431~^0.^0^^~4~^~FLA~^^^^^^^^^^~01/01/2003~
-~14277~^~432~^0.^0^^~4~^~FLA~^^^^^^^^^^~01/01/2003~
-~14277~^~435~^0.^0^^~4~^~NC~^^^^^^^^^^~12/01/2006~
-~14277~^~601~^0.^0^^~4~^~FLA~^^^^^^^^^^~01/01/2003~
-~14278~^~208~^1.^0^^~4~^~NC~^^^^^^^^^^~06/01/2015~
-~14278~^~262~^12.^6^0.^~1~^~A~^^^1^8.^18.^2^10.^13.^~2, 3~^~06/01/2015~
-~14278~^~263~^0.^6^0.^~1~^~A~^^^1^0.^0.^^^^~1, 2, 3~^~06/01/2015~
-~14278~^~268~^4.^0^^~4~^~NC~^^^^^^^^^^~06/01/2015~
-~14278~^~301~^0.^12^0.^~1~^~A~^^^1^0.^1.^3^0.^0.^~2, 3~^~06/01/2015~
-~14278~^~304~^1.^12^0.^~1~^~A~^^^1^0.^1.^8^0.^0.^~2, 3~^~06/01/2015~
-~14278~^~305~^0.^12^0.^~1~^~A~^^^1^0.^0.^6^0.^0.^~2, 3~^~06/01/2015~
-~14278~^~306~^8.^12^0.^~1~^~A~^^^1^7.^9.^6^7.^8.^~2, 3~^~06/01/2015~
-~14278~^~307~^1.^12^0.^~1~^~A~^^^1^1.^1.^8^0.^0.^~2, 3~^~06/01/2015~
-~14278~^~318~^0.^0^^~1~^~AS~^^^^^^^^^^~06/01/2015~
-~14278~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2015~
-~14278~^~320~^0.^0^^~1~^~AS~^^^^^^^^^^~11/01/2016~
-~14278~^~321~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2015~
-~14278~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2015~
-~14278~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2015~
-~14278~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2015~
-~14278~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2015~
-~14278~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2015~
-~14278~^~417~^0.^1^^~1~^~A~^^^^^^^^^~1~^~06/01/2015~
-~14278~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2015~
-~14278~^~432~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2015~
-~14278~^~435~^0.^0^^~4~^~NC~^^^^^^^^^^~06/01/2015~
-~14278~^~601~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2015~
-~14279~^~208~^1.^0^^~4~^~NC~^^^^^^^^^^~06/01/2015~
-~14279~^~262~^4.^1^^~1~^~A~^^^^^^^^^^~06/01/2015~
-~14279~^~263~^0.^1^^~1~^~A~^^^^^^^^^~1~^~06/01/2015~
-~14279~^~268~^4.^0^^~4~^~NC~^^^^^^^^^^~06/01/2015~
-~14279~^~301~^1.^2^^~1~^~A~^^^1^1.^1.^1^^^^~06/01/2015~
-~14279~^~304~^1.^2^^~1~^~A~^^^1^1.^1.^1^^^^~06/01/2015~
-~14279~^~305~^1.^2^^~1~^~A~^^^1^1.^1.^1^^^^~06/01/2015~
-~14279~^~306~^12.^2^^~1~^~A~^^^1^11.^13.^1^^^^~06/01/2015~
-~14279~^~307~^5.^2^^~1~^~A~^^^1^5.^6.^1^^^^~06/01/2015~
-~14279~^~318~^0.^0^^~1~^~AS~^^^^^^^^^^~06/01/2015~
-~14279~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2015~
-~14279~^~320~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2015~
-~14279~^~321~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2015~
-~14279~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2015~
-~14279~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2015~
-~14279~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2015~
-~14279~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2015~
-~14279~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2015~
-~14279~^~417~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2015~
-~14279~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2015~
-~14279~^~432~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2015~
-~14279~^~435~^0.^0^^~4~^~NC~^^^^^^^^^^~06/01/2015~
-~14279~^~601~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2015~
-~14280~^~208~^0.^0^^~8~^~LC~^^^^^^^^^^~06/01/2015~
-~14280~^~262~^1.^0^^~8~^~LC~^^^^^^^^^^~06/01/2015~
-~14280~^~263~^1.^0^^~4~^~BFZN~^^^^^^^^^^~06/01/2015~
-~14280~^~268~^0.^0^^~8~^~LC~^^^^^^^^^^~06/01/2015~
-~14280~^~301~^11.^0^^~4~^~BFZN~^^^^^^^^^^~06/01/2015~
-~14280~^~304~^2.^0^^~4~^~BFZN~^^^^^^^^^^~06/01/2015~
-~14280~^~305~^4.^0^^~4~^~BFZN~^^^^^^^^^^~06/01/2015~
-~14280~^~306~^27.^0^^~4~^~BFZN~^^^^^^^^^^~06/01/2015~
-~14280~^~307~^4.^0^^~8~^~LC~^^^^^^^^^^~06/01/2015~
-~14280~^~318~^0.^0^^~1~^~AS~^^^^^^^^^^~06/01/2015~
-~14280~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2015~
-~14280~^~320~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2015~
-~14280~^~321~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2015~
-~14280~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2015~
-~14280~^~324~^0.^0^^~4~^~NR~^^^^^^^^^^~08/01/2015~
-~14280~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2015~
-~14280~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2015~
-~14280~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2015~
-~14280~^~417~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2015~
-~14280~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2015~
-~14280~^~432~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2015~
-~14280~^~435~^0.^0^^~4~^~NC~^^^^^^^^^^~06/01/2015~
-~14280~^~601~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2015~
-~14281~^~208~^38.^0^^~8~^~LC~^^^^^^^^^^~06/01/2015~
-~14281~^~262~^1.^0^^~8~^~LC~^^^^^^^^^^~06/01/2015~
-~14281~^~263~^1.^0^^~4~^~BFZN~^^^^^^^^^^~06/01/2015~
-~14281~^~268~^157.^0^^~8~^~LC~^^^^^^^^^^~06/01/2015~
-~14281~^~301~^11.^0^^~4~^~BFZN~^^^^^^^^^^~06/01/2015~
-~14281~^~304~^2.^0^^~4~^~BFZN~^^^^^^^^^^~06/01/2015~
-~14281~^~305~^4.^0^^~4~^~BFZN~^^^^^^^^^^~06/01/2015~
-~14281~^~306~^27.^0^^~4~^~BFZN~^^^^^^^^^^~06/01/2015~
-~14281~^~307~^8.^0^^~8~^~LC~^^^^^^^^^^~06/01/2015~
-~14281~^~318~^0.^0^^~1~^~AS~^^^^^^^^^^~06/01/2015~
-~14281~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2015~
-~14281~^~320~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2015~
-~14281~^~321~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2015~
-~14281~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2015~
-~14281~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2015~
-~14281~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2015~
-~14281~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2015~
-~14281~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2015~
-~14281~^~417~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2015~
-~14281~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2015~
-~14281~^~432~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2015~
-~14281~^~435~^0.^0^^~4~^~NC~^^^^^^^^^^~06/01/2015~
-~14281~^~601~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2015~
-~14282~^~208~^57.^0^^~4~^~NC~^^^^^^^^^^~02/01/2005~
-~14282~^~262~^0.^0^^~4~^~FLA~^^^^^^^^^^~01/01/2003~
-~14282~^~263~^0.^0^^~4~^~FLA~^^^^^^^^^^~01/01/2003~
-~14282~^~268~^237.^0^^~4~^~NC~^^^^^^^^^^~02/01/2005~
-~14282~^~301~^7.^0^^~4~^~FLA~^^^^^^^^^^~02/01/2005~
-~14282~^~304~^6.^0^^~4~^~FLA~^^^^^^^^^^~02/01/2005~
-~14282~^~305~^6.^0^^~4~^~FLA~^^^^^^^^^^~02/01/2005~
-~14282~^~306~^33.^6^4.^~13~^~AI~^^^1^26.^52.^5^22.^43.^~4~^~01/01/2003~
-~14282~^~307~^9.^1^^~8~^~LC~^^^^^^^^^^~02/01/2005~
-~14282~^~318~^4.^0^^~4~^~NC~^^^^^^^^^^~02/01/2005~
-~14282~^~319~^0.^0^^~4~^~FLA~^^^^^^^^^^~01/01/2003~
-~14282~^~320~^0.^0^^~4~^~NC~^^^^^^^^^^~02/01/2005~
-~14282~^~321~^3.^0^^~4~^~FLA~^^^^^^^^^^~02/01/2005~
-~14282~^~322~^0.^0^^~4~^~FLA~^^^^^^^^^^~02/01/2005~
-~14282~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~
-~14282~^~334~^0.^0^^~4~^~FLA~^^^^^^^^^^~02/01/2005~
-~14282~^~337~^0.^0^^~4~^~FLA~^^^^^^^^^^~02/01/2005~
-~14282~^~338~^19.^0^^~4~^~FLA~^^^^^^^^^^~02/01/2005~
-~14282~^~417~^1.^0^^~4~^~FLA~^^^^^^^^^^~02/01/2005~
-~14282~^~431~^0.^0^^~4~^~FLA~^^^^^^^^^^~01/01/2003~
-~14282~^~432~^1.^0^^~4~^~FLA~^^^^^^^^^^~02/01/2005~
-~14282~^~435~^1.^0^^~4~^~NC~^^^^^^^^^^~12/01/2006~
-~14282~^~601~^0.^0^^~4~^~FLA~^^^^^^^^^^~01/01/2003~
-~14284~^~208~^52.^0^^~4~^~NC~^^^^^^^^^^~06/01/2015~
-~14284~^~268~^218.^0^^~4~^~NC~^^^^^^^^^^~06/01/2015~
-~14284~^~301~^3.^13^0.^~1~^~A~^^^1^1.^6.^2^0.^4.^~2, 3~^~06/01/2015~
-~14284~^~304~^1.^13^0.^~1~^~A~^^^1^1.^3.^4^1.^1.^~2, 3~^~06/01/2015~
-~14284~^~305~^1.^13^0.^~1~^~A~^^^1^1.^1.^7^0.^1.^~2, 3~^~06/01/2015~
-~14284~^~306~^19.^13^0.^~1~^~A~^^^1^16.^21.^3^17.^20.^~2, 3~^~06/01/2015~
-~14284~^~307~^2.^13^0.^~1~^~A~^^^1^2.^5.^5^1.^2.^~1, 2, 3~^~06/01/2015~
-~14285~^~208~^45.^1^^~1~^~A~^^^^^^^^^^~06/01/2015~
-~14285~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2015~
-~14285~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2015~
-~14285~^~268~^187.^0^^~1~^~A~^^^^^^^^^^~06/01/2015~
-~14285~^~301~^5.^1^^~1~^~A~^^^^^^^^^^~06/01/2015~
-~14285~^~304~^2.^1^^~1~^~A~^^^^^^^^^^~06/01/2015~
-~14285~^~305~^4.^1^^~1~^~A~^^^^^^^^^^~06/01/2015~
-~14285~^~306~^39.^1^^~1~^~A~^^^^^^^^^^~06/01/2015~
-~14285~^~307~^11.^1^^~1~^~A~^^^^^^^^^^~06/01/2015~
-~14285~^~318~^483.^1^^~1~^~A~^^^^^^^^^^~06/01/2015~
-~14285~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2015~
-~14285~^~320~^24.^0^^~1~^~AS~^^^^^^^^^^~06/01/2015~
-~14285~^~321~^290.^1^^~1~^~A~^^^^^^^^^^~06/01/2015~
-~14285~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2015~
-~14285~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2015~
-~14285~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2015~
-~14285~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2015~
-~14285~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2015~
-~14285~^~417~^4.^0^^~4~^~NR~^^^^^^^^^^~06/01/2015~
-~14285~^~431~^4.^1^^~1~^~A~^^^^^^^^^~1~^~06/01/2015~
-~14285~^~432~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2015~
-~14285~^~435~^8.^0^^~4~^~NC~^^^^^^^^^^~06/01/2015~
-~14285~^~601~^0.^1^^~1~^~A~^^^^^^^^^^~08/01/2015~
-~14286~^~208~^22.^0^^~9~^~MC~^^^^^^^^^^~07/01/2015~
-~14286~^~268~^92.^0^^~9~^~MC~^^^^^^^^^^~07/01/2015~
-~14286~^~301~^3.^0^^~9~^~MC~^^^^^^^^^^~07/01/2015~
-~14286~^~306~^51.^0^^~9~^~MC~^^^^^^^^^^~07/01/2015~
-~14286~^~307~^13.^0^^~8~^~LC~^^^^^^^^^^~07/01/2015~
-~14286~^~318~^0.^0^^~9~^~MC~^^^^^^^^^^~07/01/2015~
-~14286~^~601~^0.^0^^~9~^~MC~^^^^^^^^^^~07/01/2015~
-~14287~^~208~^376.^0^^~4~^~NC~^^^^^^^^^^~10/01/2013~
-~14287~^~262~^0.^0^^~4~^~FLC~^^^^^^^^^^~02/01/2005~
-~14287~^~263~^0.^0^^~4~^~FLC~^^^^^^^^^^~02/01/2005~
-~14287~^~268~^1573.^0^^~4~^^^^^^^^^^^~10/01/2013~
-~14287~^~301~^20.^1^^~1~^~A~^^^^^^^^^^~01/01/2009~
-~14287~^~304~^247.^1^^~1~^~A~^^^^^^^^^^~01/01/2009~
-~14287~^~305~^4.^1^^~1~^~A~^^^^^^^^^^~01/01/2009~
-~14287~^~306~^147.^1^^~1~^~A~^^^^^^^^^^~01/01/2009~
-~14287~^~307~^51.^1^^~1~^~A~^^^^^^^^^^~01/01/2009~
-~14287~^~318~^0.^0^^~1~^^^^^^^^^^^~10/01/2013~
-~14287~^~319~^0.^0^^~4~^~FLC~^^^^^^^^^^~02/01/2005~
-~14287~^~320~^0.^0^^~4~^~FLC~^^^^^^^^^^~01/01/2009~
-~14287~^~321~^0.^0^^~4~^~FLC~^^^^^^^^^^~10/01/2013~
-~14287~^~322~^0.^0^^~4~^~FLC~^^^^^^^^^^~12/01/2006~
-~14287~^~324~^0.^0^^~4~^~FLC~^^^^^^^^^^~10/01/2013~
-~14287~^~334~^0.^0^^~4~^~FLC~^^^^^^^^^^~10/01/2013~
-~14287~^~337~^0.^0^^~4~^~FLC~^^^^^^^^^^~02/01/2005~
-~14287~^~338~^0.^0^^~4~^~FLC~^^^^^^^^^^~10/01/2013~
-~14287~^~417~^6.^0^^~4~^~O~^^^^^^^^^^~02/01/2005~
-~14287~^~431~^0.^0^^~4~^~O~^^^^^^^^^^~02/01/2005~
-~14287~^~432~^6.^0^^~4~^~O~^^^^^^^^^^~02/01/2005~
-~14287~^~435~^6.^0^^~4~^~NC~^^^^^^^^^^~01/01/2009~
-~14287~^~601~^0.^0^^~1~^^^^^^^^^^^~10/01/2013~
-~14288~^~208~^14.^0^^~6~^~RPI~^^^^^^^^^^~01/01/2009~
-~14288~^~262~^0.^0^^~6~^~RPI~^^^^^^^^^^~03/01/2003~
-~14288~^~263~^0.^0^^~6~^~RPI~^^^^^^^^^^~03/01/2003~
-~14288~^~268~^58.^0^^~6~^~RPI~^^^^^^^^^^~01/01/2009~
-~14288~^~301~^4.^0^^~1~^~RPA~^^^^^^^^^^~01/01/2009~
-~14288~^~304~^10.^0^^~1~^~RPA~^^^^^^^^^^~01/01/2009~
-~14288~^~305~^0.^0^^~1~^~RPA~^^^^^^^^^^~01/01/2009~
-~14288~^~306~^6.^0^^~1~^~RPA~^^^^^^^^^^~01/01/2009~
-~14288~^~307~^6.^0^^~1~^~RPA~^^^^^^^^^^~01/01/2009~
-~14288~^~318~^0.^0^^~4~^~NC~^^^^^^^^^^~09/01/2015~
-~14288~^~319~^0.^0^^~6~^~RPI~^^^^^^^^^^~03/01/2003~
-~14288~^~320~^0.^0^^~4~^~NC~^^^^^^^^^^~09/01/2015~
-~14288~^~321~^0.^0^^~6~^~RPI~^^^^^^^^^^~01/01/2009~
-~14288~^~322~^0.^0^^~6~^~RPI~^^^^^^^^^^~01/01/2009~
-~14288~^~324~^0.^0^^~6~^~RPI~^^^^^^^^^^~01/01/2009~
-~14288~^~334~^0.^0^^~6~^~RPI~^^^^^^^^^^~01/01/2009~
-~14288~^~337~^0.^0^^~6~^~RPI~^^^^^^^^^^~03/01/2003~
-~14288~^~338~^0.^0^^~6~^~RPI~^^^^^^^^^^~01/01/2009~
-~14288~^~417~^0.^0^^~6~^~RPI~^^^^^^^^^^~01/01/2009~
-~14288~^~431~^0.^0^^~6~^~RPI~^^^^^^^^^^~03/01/2003~
-~14288~^~432~^0.^0^^~6~^~RPI~^^^^^^^^^^~01/01/2009~
-~14288~^~435~^0.^0^^~4~^~NC~^^^^^^^^^^~01/01/2009~
-~14288~^~601~^0.^0^^~6~^~RPI~^^^^^^^^^^~12/01/2006~
-~14291~^~208~^2.^0^^~9~^~MC~^^^^^^^^^^~07/01/2015~
-~14291~^~262~^8.^0^^~9~^~MC~^^^^^^^^^^~07/01/2015~
-~14291~^~268~^8.^0^^~9~^~MC~^^^^^^^^^^~07/01/2015~
-~14291~^~301~^0.^0^^~9~^~MC~^^^^^^^^^^~07/01/2015~
-~14291~^~306~^19.^0^^~9~^~MC~^^^^^^^^^^~07/01/2015~
-~14291~^~307~^3.^0^^~9~^~MC~^^^^^^^^^^~07/01/2015~
-~14291~^~318~^3.^0^^~9~^~MC~^^^^^^^^^^~07/01/2015~
-~14291~^~601~^0.^0^^~9~^~MC~^^^^^^^^^^~07/01/2015~
-~14292~^~208~^196.^0^^~4~^~NC~^^^^^^^^^^~01/01/2009~
-~14292~^~262~^0.^0^^~4~^~FLA~^^^^^^^^^^~01/01/2009~
-~14292~^~263~^0.^0^^~4~^~FLA~^^^^^^^^^^~01/01/2009~
-~14292~^~268~^821.^0^^~4~^~NC~^^^^^^^^^^~01/01/2009~
-~14292~^~301~^7.^2^^~1~^~A~^^^1^6.^9.^1^^^^~01/01/2009~
-~14292~^~304~^7.^2^^~1~^~A~^^^1^6.^8.^1^^^^~01/01/2009~
-~14292~^~305~^7.^2^^~1~^~A~^^^1^6.^7.^1^^^^~01/01/2009~
-~14292~^~306~^72.^2^^~1~^~A~^^^1^65.^79.^1^^^^~01/01/2009~
-~14292~^~307~^7.^2^^~1~^~A~^^^1^7.^7.^1^^^^~01/01/2009~
-~14292~^~318~^0.^0^^~1~^~AS~^^^^^^^^^^~01/01/2009~
-~14292~^~319~^0.^0^^~4~^~FLA~^^^^^^^^^^~01/01/2009~
-~14292~^~320~^0.^0^^~1~^~AS~^^^^^^^^^^~01/01/2009~
-~14292~^~321~^0.^2^^~1~^~A~^^^1^0.^0.^^^^~1~^~01/01/2009~
-~14292~^~322~^0.^2^^~1~^~A~^^^1^0.^0.^^^^~1~^~01/01/2009~
-~14292~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2009~
-~14292~^~334~^0.^2^^~1~^~A~^^^1^0.^0.^^^^~1~^~01/01/2009~
-~14292~^~337~^0.^2^^~1~^~A~^^^1^0.^0.^^^^~1~^~01/01/2009~
-~14292~^~338~^4.^0^^~4~^~FLA~^^^^^^^^^^~01/01/2009~
-~14292~^~417~^7.^2^^~1~^~A~^^^1^6.^8.^1^^^^~01/01/2009~
-~14292~^~431~^0.^2^^~7~^~Z~^^^1^0.^0.^^^^^~01/01/2009~
-~14292~^~432~^7.^2^^~1~^~A~^^^1^6.^8.^1^^^^~01/01/2009~
-~14292~^~435~^7.^0^^~4~^~NR~^^^^^^^^^^~01/01/2009~
-~14292~^~601~^0.^0^^~1~^^^^^^^^^^^~01/01/2009~
-~14293~^~208~^40.^0^^~6~^~RPI~^^^^^^^^^^~12/01/2006~
-~14293~^~262~^0.^0^^~6~^~RPI~^^^^^^^^^^~03/01/2003~
-~14293~^~263~^0.^0^^~6~^~RPI~^^^^^^^^^^~03/01/2003~
-~14293~^~268~^168.^0^^~6~^~RPI~^^^^^^^^^^~12/01/2006~
-~14293~^~301~^4.^0^^~1~^~RPA~^^^^^^^^^^~12/01/2006~
-~14293~^~304~^2.^0^^~1~^~RPA~^^^^^^^^^^~12/01/2006~
-~14293~^~305~^2.^0^^~1~^~RPA~^^^^^^^^^^~12/01/2006~
-~14293~^~306~^15.^0^^~1~^~RPA~^^^^^^^^^^~12/01/2006~
-~14293~^~307~^4.^0^^~1~^~RPA~^^^^^^^^^^~12/01/2006~
-~14293~^~318~^1.^0^^~4~^~NC~^^^^^^^^^^~09/01/2015~
-~14293~^~319~^0.^0^^~6~^~RPI~^^^^^^^^^^~03/01/2003~
-~14293~^~320~^0.^0^^~4~^~NC~^^^^^^^^^^~09/01/2015~
-~14293~^~321~^0.^0^^~6~^~RPI~^^^^^^^^^^~12/01/2006~
-~14293~^~322~^0.^0^^~6~^~RPI~^^^^^^^^^^~12/01/2006~
-~14293~^~334~^1.^0^^~6~^~RPI~^^^^^^^^^^~12/01/2006~
-~14293~^~337~^0.^0^^~6~^~RPI~^^^^^^^^^^~03/01/2003~
-~14293~^~338~^1.^0^^~6~^~RPI~^^^^^^^^^^~12/01/2006~
-~14293~^~417~^1.^0^^~6~^~RPI~^^^^^^^^^^~12/01/2006~
-~14293~^~431~^0.^0^^~6~^~RPI~^^^^^^^^^^~03/01/2003~
-~14293~^~432~^1.^0^^~6~^~RPI~^^^^^^^^^^~12/01/2006~
-~14293~^~435~^1.^0^^~4~^~NC~^^^^^^^^^^~12/01/2006~
-~14293~^~601~^0.^0^^~6~^~RPI~^^^^^^^^^^~12/01/2006~
-~14294~^~208~^2.^0^^~9~^~MC~^^^^^^^^^^~07/01/2015~
-~14294~^~262~^9.^0^^~9~^~MC~^^^^^^^^^^~07/01/2015~
-~14294~^~268~^8.^0^^~9~^~MC~^^^^^^^^^^~07/01/2015~
-~14294~^~301~^0.^0^^~9~^~MC~^^^^^^^^^^~07/01/2015~
-~14294~^~306~^20.^0^^~9~^~MC~^^^^^^^^^^~07/01/2015~
-~14294~^~307~^3.^0^^~9~^~MC~^^^^^^^^^^~07/01/2015~
-~14294~^~318~^3.^0^^~9~^~MC~^^^^^^^^^^~07/01/2015~
-~14294~^~601~^0.^0^^~9~^~MC~^^^^^^^^^^~07/01/2015~
-~14296~^~208~^380.^0^^~4~^~NC~^^^^^^^^^^~10/01/2013~
-~14296~^~262~^0.^0^^~4~^~FLC~^^^^^^^^^^~01/01/2003~
-~14296~^~263~^0.^0^^~4~^~FLC~^^^^^^^^^^~01/01/2003~
-~14296~^~268~^1592.^0^^~4~^~NC~^^^^^^^^^^~10/01/2013~
-~14296~^~301~^11.^2^^~1~^~A~^^^1^11.^12.^1^^^^~01/01/2009~
-~14296~^~304~^165.^2^^~1~^~A~^^^1^152.^177.^1^^^^~01/01/2009~
-~14296~^~305~^99.^2^^~1~^~A~^^^1^96.^102.^1^^^^~01/01/2009~
-~14296~^~306~^39.^2^^~1~^~A~^^^1^35.^43.^1^^^^~01/01/2009~
-~14296~^~307~^130.^2^^~1~^~A~^^^1^124.^136.^1^^^^~01/01/2009~
-~14296~^~318~^0.^0^^~1~^^^^^^^^^^^~01/01/2009~
-~14296~^~319~^0.^0^^~4~^~FLC~^^^^^^^^^^~01/01/2003~
-~14296~^~320~^0.^0^^~4~^~NC~^^^^^^^^^^~01/01/2003~
-~14296~^~321~^0.^0^^~4~^~FLC~^^^^^^^^^^~01/01/2003~
-~14296~^~322~^0.^0^^~4~^~FLC~^^^^^^^^^^~01/01/2003~
-~14296~^~324~^0.^0^^~4~^~FLC~^^^^^^^^^^~10/01/2013~
-~14296~^~334~^0.^0^^~4~^~FLC~^^^^^^^^^^~01/01/2003~
-~14296~^~337~^0.^0^^~4~^~FLC~^^^^^^^^^^~01/01/2003~
-~14296~^~338~^0.^0^^~4~^~FLC~^^^^^^^^^^~01/01/2003~
-~14296~^~417~^0.^1^^~1~^^^^^^^^^^^~10/01/2013~
-~14296~^~431~^0.^0^^~4~^~FLC~^^^^^^^^^^~01/01/2003~
-~14296~^~432~^0.^0^^~4~^~FLC~^^^^^^^^^^~01/01/2003~
-~14296~^~435~^0.^0^^~4~^~NC~^^^^^^^^^^~01/01/2009~
-~14296~^~601~^0.^0^^~1~^^^^^^^^^^^~10/01/2013~
-~14297~^~208~^27.^0^^~6~^~RPI~^^^^^^^^^^~01/01/2009~
-~14297~^~262~^0.^0^^~6~^~RPI~^^^^^^^^^^~12/01/2006~
-~14297~^~263~^0.^0^^~6~^~RPI~^^^^^^^^^^~12/01/2006~
-~14297~^~268~^112.^0^^~6~^~RPI~^^^^^^^^^^~01/01/2009~
-~14297~^~301~^4.^0^^~1~^~RPA~^^^^^^^^^^~01/01/2009~
-~14297~^~304~^13.^0^^~1~^~RPA~^^^^^^^^^^~01/01/2009~
-~14297~^~305~^7.^0^^~1~^~RPA~^^^^^^^^^^~01/01/2009~
-~14297~^~306~^3.^0^^~1~^~RPA~^^^^^^^^^^~01/01/2009~
-~14297~^~307~^13.^0^^~1~^~RPA~^^^^^^^^^^~01/01/2009~
-~14297~^~318~^0.^0^^~6~^~RPI~^^^^^^^^^^~12/01/2006~
-~14297~^~319~^0.^0^^~6~^~RPI~^^^^^^^^^^~12/01/2006~
-~14297~^~320~^0.^0^^~4~^~NC~^^^^^^^^^^~09/01/2015~
-~14297~^~321~^0.^0^^~6~^~RPI~^^^^^^^^^^~12/01/2006~
-~14297~^~322~^0.^0^^~6~^~RPI~^^^^^^^^^^~12/01/2006~
-~14297~^~324~^0.^0^^~6~^~RPI~^^^^^^^^^^~01/01/2009~
-~14297~^~334~^0.^0^^~6~^~RPI~^^^^^^^^^^~12/01/2006~
-~14297~^~337~^0.^0^^~6~^~RPI~^^^^^^^^^^~12/01/2006~
-~14297~^~338~^0.^0^^~6~^~RPI~^^^^^^^^^^~12/01/2006~
-~14297~^~417~^0.^0^^~6~^~RPI~^^^^^^^^^^~12/01/2006~
-~14297~^~431~^0.^0^^~6~^~RPI~^^^^^^^^^^~12/01/2006~
-~14297~^~432~^0.^0^^~6~^~RPI~^^^^^^^^^^~12/01/2006~
-~14297~^~435~^0.^0^^~4~^~NC~^^^^^^^^^^~01/01/2009~
-~14297~^~601~^0.^0^^~6~^~RPI~^^^^^^^^^^~12/01/2006~
-~14303~^~208~^52.^0^^~6~^~RPI~^^^^^^^^^^~12/01/2006~
-~14303~^~262~^0.^0^^~6~^~RPI~^^^^^^^^^^~12/01/2006~
-~14303~^~263~^0.^0^^~6~^~RPI~^^^^^^^^^^~12/01/2006~
-~14303~^~268~^219.^0^^~6~^~RPI~^^^^^^^^^^~12/01/2006~
-~14303~^~301~^2.^0^^~6~^~RPI~^^^^^^^^^^~12/01/2006~
-~14303~^~304~^2.^0^^~6~^~RPI~^^^^^^^^^^~12/01/2006~
-~14303~^~305~^1.^0^^~6~^~RPI~^^^^^^^^^^~12/01/2006~
-~14303~^~306~^10.^0^^~6~^~RPI~^^^^^^^^^^~12/01/2006~
-~14303~^~307~^3.^0^^~6~^~RPI~^^^^^^^^^^~12/01/2006~
-~14303~^~318~^0.^0^^~6~^~RPI~^^^^^^^^^^~12/01/2006~
-~14303~^~319~^0.^0^^~6~^~RPI~^^^^^^^^^^~12/01/2006~
-~14303~^~320~^0.^0^^~4~^~NC~^^^^^^^^^^~09/01/2015~
-~14303~^~321~^0.^0^^~6~^~RPI~^^^^^^^^^^~12/01/2006~
-~14303~^~322~^0.^0^^~6~^~RPI~^^^^^^^^^^~12/01/2006~
-~14303~^~334~^0.^0^^~6~^~RPI~^^^^^^^^^^~12/01/2006~
-~14303~^~337~^0.^0^^~6~^~RPI~^^^^^^^^^^~12/01/2006~
-~14303~^~338~^0.^0^^~6~^~RPI~^^^^^^^^^^~12/01/2006~
-~14303~^~417~^1.^0^^~6~^~RPI~^^^^^^^^^^~12/01/2006~
-~14303~^~431~^0.^0^^~6~^~RPI~^^^^^^^^^^~12/01/2006~
-~14303~^~432~^1.^0^^~6~^~RPI~^^^^^^^^^^~12/01/2006~
-~14303~^~435~^1.^0^^~4~^~NC~^^^^^^^^^^~12/01/2006~
-~14303~^~601~^0.^0^^~6~^~RPI~^^^^^^^^^^~12/01/2006~
-~14305~^~208~^37.^0^^~4~^~NC~^^^^^^^^^^~01/01/2003~
-~14305~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2003~
-~14305~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2003~
-~14305~^~268~^156.^0^^~4~^~NC~^^^^^^^^^^~01/01/2003~
-~14305~^~301~^7.^4^1.^~11~^~JO~^^^1^3.^8.^3^2.^10.^~4~^~01/01/2003~
-~14305~^~304~^7.^3^0.^~11~^~JO~^^^1^6.^9.^2^2.^10.^~4~^~01/01/2003~
-~14305~^~305~^16.^3^7.^~11~^~JO~^^^1^8.^31.^2^-16.^47.^~4~^~01/01/2003~
-~14305~^~306~^8.^2^^~1~^~A~^^^^^^^^^^~02/01/1996~
-~14305~^~307~^13.^2^^~1~^~A~^^^^^^^^^^~02/01/1996~
-~14305~^~318~^2.^2^^~1~^~A~^^^^^^^^^^~03/01/1996~
-~14305~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2002~
-~14305~^~320~^0.^0^^~1~^~AS~^^^^^^^^^^~01/01/2003~
-~14305~^~321~^0.^2^^~7~^~Z~^^^1^0.^0.^1^^^^~03/01/2003~
-~14305~^~322~^0.^2^^~7~^~Z~^^^1^0.^0.^1^^^^~03/01/2003~
-~14305~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~
-~14305~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2003~
-~14305~^~337~^0.^2^^~7~^~Z~^^^1^0.^0.^1^^^^~03/01/2003~
-~14305~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2003~
-~14305~^~417~^14.^2^^~1~^~A~^^^^^^^^^^~02/01/1996~
-~14305~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~
-~14305~^~432~^14.^2^^~1~^~A~^^^^^^^^^^~01/01/2003~
-~14305~^~435~^14.^0^^~4~^~NC~^^^^^^^^^^~12/01/2006~
-~14305~^~601~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/1996~
-~14309~^~208~^372.^0^^~4~^~FLA~^^^^^^^^^^~06/01/2014~
-~14309~^~262~^0.^0^^~8~^~LC~^^^^^^^^^^~06/01/2014~
-~14309~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2014~
-~14309~^~268~^1555.^0^^~4~^~FLA~^^^^^^^^^^~06/01/2014~
-~14309~^~301~^909.^0^^~8~^~LC~^^^^^^^^^^~06/01/2014~
-~14309~^~304~^218.^0^^~8~^~LC~^^^^^^^^^^~06/01/2014~
-~14309~^~305~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2014~
-~14309~^~306~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2014~
-~14309~^~307~^636.^0^^~8~^~LC~^^^^^^^^^^~06/01/2014~
-~14309~^~318~^4545.^0^^~8~^~LC~^^^^^^^^^^~06/01/2014~
-~14309~^~319~^1365.^0^^~9~^~MC~^^^^^^^^^^~06/01/2014~
-~14309~^~320~^1365.^0^^~9~^~MC~^^^^^^^^^^~06/01/2014~
-~14309~^~321~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2014~
-~14309~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2014~
-~14309~^~324~^364.^0^^~8~^~LC~^^^^^^^^^^~06/01/2014~
-~14309~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2014~
-~14309~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2014~
-~14309~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2014~
-~14309~^~417~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2014~
-~14309~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~
-~14309~^~432~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2014~
-~14309~^~435~^0.^0^^~4~^~NC~^^^^^^^^^^~06/01/2014~
-~14309~^~601~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2014~
-~14310~^~208~^86.^0^^~6~^~RPI~^^^^^^^^^^~03/01/2003~
-~14310~^~262~^0.^0^^~6~^~RPI~^^^^^^^^^^~03/01/2002~
-~14310~^~263~^0.^0^^~6~^~RPI~^^^^^^^^^^~03/01/2002~
-~14310~^~268~^359.^0^^~6~^~RPI~^^^^^^^^^^~03/01/2003~
-~14310~^~301~^123.^0^^~1~^~RPA~^^^^^^^^^^~03/01/2003~
-~14310~^~304~^15.^0^^~1~^~RPA~^^^^^^^^^^~03/01/2003~
-~14310~^~305~^107.^0^^~1~^~RPA~^^^^^^^^^^~03/01/2003~
-~14310~^~306~^200.^0^^~1~^~RPA~^^^^^^^^^^~03/01/2003~
-~14310~^~307~^72.^0^^~1~^~RPA~^^^^^^^^^^~03/01/2003~
-~14310~^~318~^942.^0^^~6~^~RPI~^^^^^^^^^^~03/01/2003~
-~14310~^~319~^280.^0^^~6~^~RPI~^^^^^^^^^^~03/01/2003~
-~14310~^~320~^281.^0^^~6~^~RPI~^^^^^^^^^^~03/01/2003~
-~14310~^~321~^5.^0^^~6~^~RPI~^^^^^^^^^^~03/01/2003~
-~14310~^~322~^0.^0^^~6~^~RPI~^^^^^^^^^^~03/01/2003~
-~14310~^~334~^0.^0^^~6~^~RPI~^^^^^^^^^^~03/01/2003~
-~14310~^~337~^0.^0^^~6~^~RPI~^^^^^^^^^^~03/01/2003~
-~14310~^~417~^6.^0^^~6~^~RPI~^^^^^^^^^^~03/01/2003~
-~14310~^~431~^0.^0^^~6~^~RPI~^^^^^^^^^^~03/01/2002~
-~14310~^~432~^6.^0^^~6~^~RPI~^^^^^^^^^^~03/01/2003~
-~14310~^~435~^6.^0^^~4~^~NC~^^^^^^^^^^~05/01/2003~
-~14310~^~601~^11.^0^^~6~^~RPI~^^^^^^^^^^~03/01/2003~
-~14311~^~208~^428.^0^^~4~^~NC~^^^^^^^^^^~12/01/2006~
-~14311~^~262~^0.^0^^~4~^~FLC~^^^^^^^^^^~02/01/2005~
-~14311~^~263~^0.^0^^~4~^~FLC~^^^^^^^^^^~02/01/2005~
-~14311~^~268~^1789.^0^^~4~^~NC~^^^^^^^^^^~12/01/2006~
-~14311~^~301~^298.^1^^~1~^^^^^^^^^^^~05/01/1986~
-~14311~^~304~^93.^1^^~1~^^^^^^^^^^^~05/01/1986~
-~14311~^~305~^358.^1^^~1~^^^^^^^^^^^~05/01/1986~
-~14311~^~306~^758.^0^^~1~^^^^^^^^^^^~05/01/1986~
-~14311~^~307~^405.^1^^~8~^~LC~^^^^^^^^^^~02/01/2005~
-~14311~^~318~^224.^0^^~4~^~FLC~^^^^^^^^^^~12/01/2006~
-~14311~^~319~^62.^0^^~4~^~FLC~^^^^^^^^^^~12/01/2006~
-~14311~^~320~^63.^0^^~4~^~FLC~^^^^^^^^^^~12/01/2006~
-~14311~^~321~^11.^0^^~4~^~FLC~^^^^^^^^^^~12/01/2006~
-~14311~^~322~^0.^0^^~4~^~FLC~^^^^^^^^^^~12/01/2006~
-~14311~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~
-~14311~^~334~^0.^0^^~4~^~FLC~^^^^^^^^^^~12/01/2006~
-~14311~^~337~^0.^0^^~4~^~FLC~^^^^^^^^^^~12/01/2006~
-~14311~^~338~^7.^0^^~4~^~FLC~^^^^^^^^^^~12/01/2006~
-~14311~^~417~^46.^0^^~4~^~FLM~^^^^^^^^^^~12/01/2006~
-~14311~^~431~^0.^0^^~4~^~FLM~^^^^^^^^^^~01/01/2003~
-~14311~^~432~^46.^0^^~4~^~FLM~^^^^^^^^^^~03/01/2003~
-~14311~^~435~^46.^0^^~4~^~NC~^^^^^^^^^^~12/01/2006~
-~14311~^~601~^24.^1^^~8~^~LC~^^^^^^^^^^~02/01/2005~
-~14312~^~208~^88.^0^^~6~^~RPI~^^^^^^^^^^~03/01/2003~
-~14312~^~262~^0.^0^^~6~^~RPI~^^^^^^^^^^~03/01/2002~
-~14312~^~263~^0.^0^^~6~^~RPI~^^^^^^^^^^~03/01/2002~
-~14312~^~268~^369.^0^^~6~^~RPI~^^^^^^^^^^~03/01/2003~
-~14312~^~301~^117.^0^^~1~^~RPA~^^^^^^^^^^~03/01/2003~
-~14312~^~304~^17.^0^^~1~^~RPA~^^^^^^^^^^~03/01/2003~
-~14312~^~305~^106.^0^^~1~^~RPA~^^^^^^^^^^~03/01/2003~
-~14312~^~306~^183.^0^^~1~^~RPA~^^^^^^^^^^~03/01/2003~
-~14312~^~307~^79.^0^^~1~^~RPA~^^^^^^^^^^~03/01/2003~
-~14312~^~318~^117.^0^^~4~^~NC~^^^^^^^^^^~02/01/2017~
-~14312~^~319~^32.^0^^~6~^~RPI~^^^^^^^^^^~03/01/2003~
-~14312~^~320~^33.^0^^~4~^~NC~^^^^^^^^^^~02/01/2017~
-~14312~^~321~^6.^0^^~6~^~RPI~^^^^^^^^^^~03/01/2003~
-~14312~^~322~^0.^0^^~6~^~RPI~^^^^^^^^^^~03/01/2003~
-~14312~^~334~^0.^0^^~6~^~RPI~^^^^^^^^^^~03/01/2003~
-~14312~^~337~^0.^0^^~6~^~RPI~^^^^^^^^^^~03/01/2003~
-~14312~^~338~^0.^0^^~6~^~RPI~^^^^^^^^^^~03/01/2003~
-~14312~^~417~^8.^0^^~1~^~RPA~^^^^^^^^^^~03/01/2002~
-~14312~^~431~^0.^0^^~6~^~RPI~^^^^^^^^^^~03/01/2002~
-~14312~^~432~^8.^0^^~6~^~RPI~^^^^^^^^^^~03/01/2003~
-~14312~^~435~^8.^0^^~4~^~NC~^^^^^^^^^^~06/01/2009~
-~14312~^~601~^12.^0^^~6~^~RPI~^^^^^^^^^^~03/01/2003~
-~14315~^~208~^372.^0^^~4~^~NC~^^^^^^^^^^~06/01/2014~
-~14315~^~262~^0.^0^^~8~^~LC~^^^^^^^^^^~06/01/2014~
-~14315~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2014~
-~14315~^~268~^1556.^0^^~4~^~NC~^^^^^^^^^^~06/01/2014~
-~14315~^~301~^909.^0^^~8~^~LC~^^^^^^^^^^~06/01/2014~
-~14315~^~304~^218.^0^^~8~^~LC~^^^^^^^^^^~06/01/2014~
-~14315~^~305~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2014~
-~14315~^~306~^0.^1^^~8~^~LC~^^^^^^^^^^~06/01/2014~
-~14315~^~307~^530.^0^^~8~^~LC~^^^^^^^^^^~07/01/2017~
-~14315~^~318~^4550.^0^^~4~^~NC~^^^^^^^^^^~07/01/2017~
-~14315~^~319~^1365.^0^^~4~^~O~^^^^^^^^^^~06/01/2014~
-~14315~^~320~^1365.^0^^~4~^~NC~^^^^^^^^^^~06/01/2014~
-~14315~^~321~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2014~
-~14315~^~322~^0.^0^^~4~^~FLC~^^^^^^^^^^~06/01/2014~
-~14315~^~324~^364.^0^^~8~^~LC~^^^^^^^^^^~06/01/2014~
-~14315~^~334~^0.^0^^~4~^~FLC~^^^^^^^^^^~06/01/2014~
-~14315~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2014~
-~14315~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2014~
-~14315~^~417~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2014~
-~14315~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~
-~14315~^~432~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2014~
-~14315~^~435~^0.^0^^~4~^~NC~^^^^^^^^^^~06/01/2014~
-~14315~^~601~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2014~
-~14316~^~208~^87.^0^^~6~^~RPI~^^^^^^^^^^~06/01/2009~
-~14316~^~262~^2.^0^^~6~^~RPI~^^^^^^^^^^~03/01/2002~
-~14316~^~263~^28.^0^^~6~^~RPI~^^^^^^^^^^~03/01/2002~
-~14316~^~268~^365.^0^^~6~^~RPI~^^^^^^^^^^~06/01/2009~
-~14316~^~301~^139.^0^^~1~^~RPA~^^^^^^^^^^~06/01/2009~
-~14316~^~304~^17.^0^^~1~^~RPA~^^^^^^^^^^~06/01/2009~
-~14316~^~305~^109.^0^^~1~^~RPA~^^^^^^^^^^~06/01/2009~
-~14316~^~306~^217.^0^^~1~^~RPA~^^^^^^^^^^~06/01/2009~
-~14316~^~307~^87.^0^^~1~^~RPA~^^^^^^^^^^~06/01/2009~
-~14316~^~318~^1199.^0^^~4~^~NC~^^^^^^^^^^~02/01/2017~
-~14316~^~319~^357.^0^^~6~^~RPI~^^^^^^^^^^~06/01/2009~
-~14316~^~320~^357.^0^^~4~^~NC~^^^^^^^^^^~02/01/2017~
-~14316~^~321~^6.^0^^~6~^~RPI~^^^^^^^^^^~06/01/2009~
-~14316~^~322~^0.^0^^~6~^~RPI~^^^^^^^^^^~03/01/2003~
-~14316~^~324~^123.^0^^~6~^~RPI~^^^^^^^^^^~06/01/2009~
-~14316~^~334~^0.^0^^~6~^~RPI~^^^^^^^^^^~03/01/2003~
-~14316~^~337~^0.^0^^~6~^~RPI~^^^^^^^^^^~03/01/2003~
-~14316~^~338~^1.^0^^~6~^~RPI~^^^^^^^^^^~03/01/2003~
-~14316~^~417~^5.^0^^~6~^~RPI~^^^^^^^^^^~06/01/2009~
-~14316~^~431~^0.^0^^~6~^~RPI~^^^^^^^^^^~03/01/2002~
-~14316~^~432~^5.^0^^~6~^~RPI~^^^^^^^^^^~06/01/2009~
-~14316~^~435~^5.^0^^~4~^~NC~^^^^^^^^^^~06/01/2009~
-~14316~^~601~^10.^0^^~6~^~RPI~^^^^^^^^^^~06/01/2009~
-~14317~^~208~^411.^0^^~4~^~NC~^^^^^^^^^^~12/01/2006~
-~14317~^~262~^37.^2^^~1~^^^^^^^^^^^~05/01/1986~
-~14317~^~263~^345.^0^^~4~^~BFZN~^^^^^^^^^^~12/01/1997~
-~14317~^~268~^1720.^0^^~4~^~NC~^^^^^^^^^^~12/01/2006~
-~14317~^~301~^60.^3^^~1~^^^^^^^^^^^~05/01/1986~
-~14317~^~304~^70.^1^^~1~^^^^^^^^^^^~05/01/1986~
-~14317~^~305~^175.^1^^~1~^^^^^^^^^^^~05/01/1986~
-~14317~^~306~^618.^0^^~4~^~FLA~^^^^^^^^^^~02/01/2003~
-~14317~^~307~^190.^1^^~8~^~LC~^^^^^^^^^^~02/01/2005~
-~14317~^~318~^117.^0^^~4~^~NC~^^^^^^^^^^~12/01/2006~
-~14317~^~319~^32.^0^^~4~^~FLA~^^^^^^^^^^~12/01/2006~
-~14317~^~320~^33.^0^^~4~^~NC~^^^^^^^^^^~12/01/2006~
-~14317~^~321~^5.^0^^~4~^~FLA~^^^^^^^^^^~12/01/2006~
-~14317~^~322~^0.^0^^~4~^~FLA~^^^^^^^^^^~12/01/2006~
-~14317~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~
-~14317~^~334~^0.^0^^~4~^~FLA~^^^^^^^^^^~12/01/2006~
-~14317~^~337~^0.^0^^~4~^~FLA~^^^^^^^^^^~02/01/2003~
-~14317~^~338~^2.^0^^~4~^~FLA~^^^^^^^^^^~12/01/2006~
-~14317~^~417~^37.^0^^~4~^~FLA~^^^^^^^^^^~12/01/2006~
-~14317~^~431~^18.^0^^~4~^~FLA~^^^^^^^^^^~12/01/2006~
-~14317~^~432~^19.^0^^~4~^~FLA~^^^^^^^^^^~12/01/2006~
-~14317~^~435~^50.^0^^~4~^~NC~^^^^^^^^^^~12/01/2006~
-~14317~^~601~^1.^0^^~4~^~FLA~^^^^^^^^^^~02/01/2003~
-~14318~^~208~^85.^0^^~6~^~RPI~^^^^^^^^^^~03/01/2003~
-~14318~^~262~^3.^0^^~6~^~RPI~^^^^^^^^^^~03/01/2002~
-~14318~^~263~^28.^0^^~6~^~RPI~^^^^^^^^^^~03/01/2002~
-~14318~^~268~^357.^0^^~6~^~RPI~^^^^^^^^^^~03/01/2003~
-~14318~^~301~^98.^0^^~1~^~RPA~^^^^^^^^^^~03/01/2003~
-~14318~^~304~^15.^0^^~1~^~RPA~^^^^^^^^^^~03/01/2003~
-~14318~^~305~^91.^0^^~1~^~RPA~^^^^^^^^^^~03/01/2003~
-~14318~^~306~^172.^0^^~6~^~RPI~^^^^^^^^^^~03/01/2003~
-~14318~^~307~^60.^0^^~1~^~RPA~^^^^^^^^^^~03/01/2003~
-~14318~^~318~^95.^0^^~4~^~NC~^^^^^^^^^^~02/01/2017~
-~14318~^~319~^26.^0^^~6~^~RPI~^^^^^^^^^^~03/01/2003~
-~14318~^~320~^26.^0^^~4~^~NC~^^^^^^^^^^~02/01/2017~
-~14318~^~321~^5.^0^^~6~^~RPI~^^^^^^^^^^~03/01/2003~
-~14318~^~322~^0.^0^^~6~^~RPI~^^^^^^^^^^~03/01/2003~
-~14318~^~334~^0.^0^^~6~^~RPI~^^^^^^^^^^~03/01/2003~
-~14318~^~337~^0.^0^^~6~^~RPI~^^^^^^^^^^~03/01/2003~
-~14318~^~338~^1.^0^^~6~^~RPI~^^^^^^^^^^~03/01/2003~
-~14318~^~417~^9.^0^^~6~^~RPI~^^^^^^^^^^~03/01/2003~
-~14318~^~431~^0.^0^^~6~^~RPI~^^^^^^^^^^~03/01/2002~
-~14318~^~432~^9.^0^^~6~^~RPI~^^^^^^^^^^~03/01/2003~
-~14318~^~435~^9.^0^^~4~^~NC~^^^^^^^^^^~03/01/2003~
-~14318~^~601~^10.^0^^~6~^~RPI~^^^^^^^^^^~03/01/2003~
-~14323~^~208~^49.^0^^~4~^~NC~^^^^^^^^^^~02/01/2005~
-~14323~^~262~^0.^0^^~4~^~FLA~^^^^^^^^^^~01/01/2003~
-~14323~^~263~^0.^0^^~4~^~FLA~^^^^^^^^^^~01/01/2003~
-~14323~^~268~^204.^0^^~4~^~NC~^^^^^^^^^^~02/01/2005~
-~14323~^~301~^5.^5^0.^~1~^~A~^^^1^5.^6.^4^4.^5.^~4~^~02/01/2005~
-~14323~^~304~^2.^6^0.^~1~^~A~^^^1^1.^2.^5^1.^2.^~4~^~02/01/2005~
-~14323~^~305~^1.^6^0.^~1~^~A~^^^1^1.^2.^5^0.^1.^~4~^~02/01/2005~
-~14323~^~306~^18.^8^^~1~^^^^^^^^^^^~05/01/1986~
-~14323~^~307~^3.^6^0.^~1~^~A~^^^1^0.^4.^5^1.^3.^~1, 4~^~02/01/2005~
-~14323~^~318~^8.^0^^~4~^~NC~^^^^^^^^^^~02/01/2005~
-~14323~^~319~^0.^0^^~4~^~FLA~^^^^^^^^^^~01/01/2003~
-~14323~^~320~^0.^0^^~4~^~NC~^^^^^^^^^^~09/01/2015~
-~14323~^~321~^1.^0^^~4~^~FLA~^^^^^^^^^^~02/01/2005~
-~14323~^~322~^0.^0^^~4~^~FLA~^^^^^^^^^^~02/01/2005~
-~14323~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~
-~14323~^~334~^7.^0^^~4~^~FLA~^^^^^^^^^^~02/01/2005~
-~14323~^~337~^0.^0^^~4~^~FLA~^^^^^^^^^^~01/01/2003~
-~14323~^~338~^9.^0^^~4~^~FLA~^^^^^^^^^^~02/01/2005~
-~14323~^~417~^2.^0^^~4~^~FLA~^^^^^^^^^^~02/01/2005~
-~14323~^~431~^0.^0^^~4~^~FLA~^^^^^^^^^^~01/01/2003~
-~14323~^~432~^2.^0^^~4~^~FLA~^^^^^^^^^^~02/01/2005~
-~14323~^~435~^2.^0^^~4~^~NC~^^^^^^^^^^~12/01/2006~
-~14323~^~601~^0.^0^^~4~^~FLA~^^^^^^^^^^~01/01/2003~
-~14327~^~208~^51.^0^^~4~^~NC~^^^^^^^^^^~05/01/1986~
-~14327~^~262~^0.^0^^~4~^~FLA~^^^^^^^^^^~01/01/2003~
-~14327~^~263~^0.^0^^~4~^~FLA~^^^^^^^^^^~01/01/2003~
-~14327~^~268~^213.^0^^~4~^^^^^^^^^^^~05/01/2005~
-~14327~^~301~^5.^0^^~1~^^^^^^^^^^^~05/01/1986~
-~14327~^~304~^5.^0^^~4~^~FLA~^^^^^^^^^^~01/01/2003~
-~14327~^~305~^8.^0^^~1~^^^^^^^^^^^~05/01/1986~
-~14327~^~306~^80.^1^^~1~^^^^^^^^^^^~05/01/1986~
-~14327~^~307~^2.^0^^~4~^~FLA~^^^^^^^^^^~01/01/2003~
-~14327~^~318~^183.^0^^~4~^~NC~^^^^^^^^^^~01/01/2003~
-~14327~^~319~^0.^0^^~4~^~FLA~^^^^^^^^^^~01/01/2003~
-~14327~^~320~^9.^0^^~4~^~NC~^^^^^^^^^^~01/01/2003~
-~14327~^~321~^79.^0^^~4~^~FLA~^^^^^^^^^^~03/01/2003~
-~14327~^~322~^2.^0^^~4~^~FLA~^^^^^^^^^^~03/01/2003~
-~14327~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~07/01/2009~
-~14327~^~334~^60.^0^^~4~^~FLA~^^^^^^^^^^~03/01/2003~
-~14327~^~337~^0.^0^^~4~^~FLA~^^^^^^^^^^~01/01/2003~
-~14327~^~338~^47.^0^^~4~^~FLA~^^^^^^^^^^~03/01/2003~
-~14327~^~417~^7.^0^^~4~^~FLA~^^^^^^^^^^~01/01/2003~
-~14327~^~431~^0.^0^^~4~^~FLA~^^^^^^^^^^~01/01/2003~
-~14327~^~432~^7.^0^^~4~^~FLA~^^^^^^^^^^~01/01/2003~
-~14327~^~435~^7.^0^^~4~^~NC~^^^^^^^^^^~07/01/2009~
-~14327~^~601~^0.^0^^~1~^^^^^^^^^^^~05/01/1986~
-~14334~^~208~^47.^0^^~4~^~NC~^^^^^^^^^^~05/01/1986~
-~14334~^~262~^0.^0^^~4~^~FLA~^^^^^^^^^^~01/01/2003~
-~14334~^~263~^0.^0^^~4~^~FLA~^^^^^^^^^^~01/01/2003~
-~14334~^~268~^197.^0^^~4~^^^^^^^^^^^~05/01/2005~
-~14334~^~301~^7.^8^^~1~^^^^^^^^^^^~05/01/1986~
-~14334~^~304~^6.^8^^~1~^^^^^^^^^^^~05/01/1986~
-~14334~^~305~^6.^8^^~1~^^^^^^^^^^^~05/01/1986~
-~14334~^~306~^61.^8^^~1~^^^^^^^^^^^~05/01/1986~
-~14334~^~307~^14.^5^^~1~^^^^^^^^^^^~05/01/1986~
-~14334~^~318~^2.^0^^~4~^~NC~^^^^^^^^^^~01/01/2003~
-~14334~^~319~^0.^0^^~4~^~FLA~^^^^^^^^^^~01/01/2003~
-~14334~^~320~^0.^0^^~4~^~NC~^^^^^^^^^^~01/01/2003~
-~14334~^~321~^1.^0^^~4~^~FLA~^^^^^^^^^^~03/01/2003~
-~14334~^~322~^0.^0^^~4~^~FLA~^^^^^^^^^^~03/01/2003~
-~14334~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~07/01/2009~
-~14334~^~334~^0.^0^^~4~^~FLA~^^^^^^^^^^~03/01/2003~
-~14334~^~337~^0.^0^^~4~^~FLA~^^^^^^^^^^~01/01/2003~
-~14334~^~338~^1.^0^^~4~^~FLA~^^^^^^^^^^~03/01/2003~
-~14334~^~417~^9.^0^^~4~^~FLA~^^^^^^^^^^~01/01/2003~
-~14334~^~431~^0.^0^^~4~^~FLA~^^^^^^^^^^~01/01/2003~
-~14334~^~432~^9.^0^^~4~^~FLA~^^^^^^^^^^~01/01/2003~
-~14334~^~435~^9.^0^^~4~^~NC~^^^^^^^^^^~07/01/2009~
-~14334~^~601~^0.^0^^~4~^~FLA~^^^^^^^^^^~01/01/2003~
-~14341~^~208~^50.^0^^~4~^~NC~^^^^^^^^^^~05/01/1986~
-~14341~^~262~^0.^0^^~4~^~FLA~^^^^^^^^^^~01/01/2003~
-~14341~^~263~^0.^0^^~4~^~FLA~^^^^^^^^^^~01/01/2003~
-~14341~^~268~^209.^0^^~4~^^^^^^^^^^^~05/01/2005~
-~14341~^~301~^5.^15^0.^~1~^^^^^^^^^^^~05/01/1986~
-~14341~^~304~^6.^15^0.^~1~^^^^^^^^^^^~05/01/1986~
-~14341~^~305~^4.^15^0.^~1~^^^^^^^^^^^~05/01/1986~
-~14341~^~306~^46.^22^1.^~1~^^^^^^^^^^^~05/01/1986~
-~14341~^~307~^3.^15^0.^~1~^^^^^^^^^^^~05/01/1986~
-~14341~^~318~^19.^0^^~4~^~NC~^^^^^^^^^^~01/01/2003~
-~14341~^~319~^0.^0^^~4~^~FLA~^^^^^^^^^^~01/01/2003~
-~14341~^~320~^1.^0^^~4~^~NC~^^^^^^^^^^~01/01/2003~
-~14341~^~321~^4.^0^^~4~^~FLA~^^^^^^^^^^~03/01/2003~
-~14341~^~322~^0.^0^^~4~^~FLA~^^^^^^^^^^~03/01/2003~
-~14341~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~07/01/2009~
-~14341~^~334~^15.^0^^~4~^~FLA~^^^^^^^^^^~03/01/2003~
-~14341~^~337~^0.^0^^~4~^~FLA~^^^^^^^^^^~01/01/2003~
-~14341~^~338~^12.^0^^~4~^~FLA~^^^^^^^^^^~03/01/2003~
-~14341~^~417~^9.^0^^~4~^~FLA~^^^^^^^^^^~01/01/2003~
-~14341~^~431~^0.^0^^~4~^~FLA~^^^^^^^^^^~01/01/2003~
-~14341~^~432~^9.^0^^~4~^~FLA~^^^^^^^^^^~01/01/2003~
-~14341~^~435~^9.^0^^~4~^~NC~^^^^^^^^^^~07/01/2009~
-~14341~^~601~^0.^0^^~4~^~FLA~^^^^^^^^^^~01/01/2003~
-~14347~^~208~^148.^0^^~4~^~NC~^^^^^^^^^^~12/01/2006~
-~14347~^~262~^0.^0^^~4~^~FLA~^^^^^^^^^^~01/01/2003~
-~14347~^~263~^0.^0^^~4~^~FLA~^^^^^^^^^^~01/01/2003~
-~14347~^~268~^620.^0^^~4~^~NC~^^^^^^^^^^~12/01/2006~
-~14347~^~301~^115.^2^^~1~^~A~^^^2^104.^125.^^^^^~04/01/2005~
-~14347~^~304~^13.^2^^~1~^~A~^^^2^12.^13.^^^^^~04/01/2005~
-~14347~^~305~^98.^2^^~1~^~A~^^^2^97.^98.^^^^^~04/01/2005~
-~14347~^~306~^166.^2^^~1~^~A~^^^2^153.^178.^^^^^~04/01/2005~
-~14347~^~307~^81.^2^^~1~^~A~^^^2^62.^100.^^^^^~04/01/2005~
-~14347~^~318~^304.^0^^~4~^~BFZN~^^^^^^^^^^~12/01/2006~
-~14347~^~319~^91.^0^^~4~^~BFZN~^^^^^^^^^^~12/01/2006~
-~14347~^~320~^91.^0^^~4~^~O~^^^^^^^^^^~12/01/2006~
-~14347~^~321~^0.^0^^~4~^~O~^^^^^^^^^^~04/01/2005~
-~14347~^~322~^0.^0^^~4~^~FLA~^^^^^^^^^^~01/01/2003~
-~14347~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~
-~14347~^~334~^0.^0^^~4~^~FLA~^^^^^^^^^^~01/01/2003~
-~14347~^~337~^0.^0^^~4~^~FLA~^^^^^^^^^^~01/01/2003~
-~14347~^~338~^0.^0^^~4~^~FLA~^^^^^^^^^^~01/01/2003~
-~14347~^~417~^0.^1^^~1~^~A~^^^^^^^^^^~04/01/2005~
-~14347~^~431~^0.^1^^~1~^~A~^^^^^^^^^~1~^~04/01/2005~
-~14347~^~432~^0.^0^^~1~^~AS~^^^^^^^^^^~04/01/2005~
-~14347~^~435~^0.^0^^~4~^~NC~^^^^^^^^^^~12/01/2006~
-~14347~^~601~^23.^2^^~1~^~A~^^^2^16.^31.^^^^^~04/01/2005~
-~14350~^~208~^389.^0^^~4~^~NC~^^^^^^^^^^~02/01/2005~
-~14350~^~262~^0.^0^^~4~^~FLA~^^^^^^^^^^~01/01/2003~
-~14350~^~263~^0.^0^^~4~^~FLA~^^^^^^^^^^~01/01/2003~
-~14350~^~268~^1626.^0^^~4~^~NC~^^^^^^^^^^~02/01/2005~
-~14350~^~301~^4.^0^^~4~^~FLA~^^^^^^^^^^~02/01/2005~
-~14350~^~304~^1.^0^^~4~^~FLA~^^^^^^^^^^~02/01/2005~
-~14350~^~305~^5.^0^^~4~^~FLA~^^^^^^^^^^~02/01/2005~
-~14350~^~306~^6.^0^^~4~^~FLA~^^^^^^^^^^~02/01/2005~
-~14350~^~307~^38.^7^^~1~^^^^^^^^^^^~05/01/1986~
-~14350~^~318~^0.^0^^~4~^~FLA~^^^^^^^^^^~01/01/2003~
-~14350~^~319~^0.^0^^~4~^~FLA~^^^^^^^^^^~01/01/2003~
-~14350~^~320~^0.^0^^~4~^~FLA~^^^^^^^^^^~01/01/2003~
-~14350~^~321~^0.^0^^~4~^~FLA~^^^^^^^^^^~01/01/2003~
-~14350~^~322~^0.^0^^~4~^~FLA~^^^^^^^^^^~01/01/2003~
-~14350~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~
-~14350~^~334~^0.^0^^~4~^~FLA~^^^^^^^^^^~01/01/2003~
-~14350~^~337~^0.^0^^~4~^~FLA~^^^^^^^^^^~01/01/2003~
-~14350~^~338~^0.^0^^~4~^~FLA~^^^^^^^^^^~01/01/2003~
-~14350~^~417~^0.^0^^~4~^~FLA~^^^^^^^^^^~01/01/2003~
-~14350~^~431~^0.^0^^~4~^~FLA~^^^^^^^^^^~01/01/2003~
-~14350~^~432~^0.^0^^~4~^~FLA~^^^^^^^^^^~01/01/2003~
-~14350~^~435~^0.^0^^~4~^~NC~^^^^^^^^^^~12/01/2006~
-~14350~^~601~^0.^1^^~8~^~LC~^^^^^^^^^^~02/01/2005~
-~14351~^~208~^88.^0^^~4~^~NC~^^^^^^^^^^~05/01/1986~
-~14351~^~268~^368.^0^^~4~^^^^^^^^^^^
-~14351~^~301~^110.^0^^~1~^^^^^^^^^^^~05/01/1986~
-~14351~^~304~^12.^0^^~1~^^^^^^^^^^^~05/01/1986~
-~14351~^~305~^86.^0^^~1~^^^^^^^^^^^~05/01/1986~
-~14351~^~306~^139.^0^^~1~^^^^^^^^^^^~05/01/1986~
-~14351~^~307~^48.^0^^~1~^^^^^^^^^^^~05/01/1986~
-~14351~^~318~^116.^0^^~1~^^^^^^^^^^^~05/01/1986~
-~14351~^~319~^26.^0^^~4~^~O~^^^^^^^^^^~04/01/2002~
-~14351~^~320~^26.^0^^~4~^~NC~^^^^^^^^^^~04/01/2002~
-~14351~^~417~^5.^0^^~1~^^^^^^^^^^^~05/01/1986~
-~14351~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~
-~14351~^~432~^5.^0^^~1~^^^^^^^^^^^~05/01/1986~
-~14351~^~435~^5.^0^^~4~^~NC~^^^^^^^^^^~04/01/2002~
-~14351~^~601~^12.^0^^~1~^^^^^^^^^^^~05/01/1986~
-~14351~^~636~^0.^0^^~1~^^^^^^^^^^^~05/01/1986~
-~14352~^~208~^1.^0^^~4~^~BFZN~^^^^^^^^^^~01/01/1999~
-~14352~^~262~^1.^0^^~4~^~BFZN~^^^^^^^^^^~01/01/1999~
-~14352~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/1999~
-~14352~^~268~^4.^0^^~4~^^^^^^^^^^^~03/01/2006~
-~14352~^~301~^0.^0^^~4~^~BFZN~^^^^^^^^^^~01/01/1999~
-~14352~^~304~^3.^0^^~4~^~BFZN~^^^^^^^^^^~01/01/1999~
-~14352~^~305~^1.^0^^~4~^~BFZN~^^^^^^^^^^~01/01/1999~
-~14352~^~306~^37.^0^^~4~^~BFZN~^^^^^^^^^^~01/01/1999~
-~14352~^~307~^3.^0^^~4~^~BFZN~^^^^^^^^^^~01/01/1999~
-~14352~^~318~^0.^0^^~4~^~BFZN~^^^^^^^^^^~01/01/1999~
-~14352~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2002~
-~14352~^~320~^0.^0^^~1~^~AS~^^^^^^^^^^~02/01/2003~
-~14352~^~321~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~
-~14352~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~
-~14352~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~
-~14352~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~
-~14352~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~
-~14352~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~
-~14352~^~417~^5.^0^^~4~^~BFZN~^^^^^^^^^^~01/01/1999~
-~14352~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~
-~14352~^~432~^5.^0^^~4~^~BFZN~^^^^^^^^^^~02/01/2003~
-~14352~^~435~^5.^0^^~4~^~NC~^^^^^^^^^^~10/01/2006~
-~14352~^~601~^0.^0^^~4~^~BFZN~^^^^^^^^^^~01/01/1999~
-~14353~^~208~^315.^0^^~4~^~NC~^^^^^^^^^^~02/01/2005~
-~14353~^~262~^169.^0^^~4~^~BFZN~^^^^^^^^^^~01/01/1999~
-~14353~^~263~^11.^0^^~4~^~BFZN~^^^^^^^^^^~01/01/1999~
-~14353~^~268~^1320.^0^^~4~^~NC~^^^^^^^^^^~02/01/2005~
-~14353~^~301~^118.^0^^~4~^~BFZN~^~14366~^^^^^^^^^~02/01/2005~
-~14353~^~304~^272.^0^^~4~^~BFZN~^~14366~^^^^^^^^^~02/01/2005~
-~14353~^~305~^239.^0^^~4~^~BFZN~^~14366~^^^^^^^^^~02/01/2005~
-~14353~^~306~^6040.^0^^~4~^~BFZN~^~14366~^^^^^^^^^~02/01/2005~
-~14353~^~307~^72.^0^^~4~^~BFZN~^~14366~^^^^^^^^^~02/01/2005~
-~14353~^~318~^0.^0^^~4~^~BFZN~^~14366~^^^^^^^^^~01/01/1999~
-~14353~^~319~^0.^0^^~4~^~BFZN~^~14366~^^^^^^^^^~01/01/2003~
-~14353~^~320~^0.^0^^~4~^~BFZN~^~14366~^^^^^^^^^~02/01/2005~
-~14353~^~321~^0.^0^^~4~^~BFZN~^~14366~^^^^^^^^^~01/01/2003~
-~14353~^~322~^0.^0^^~4~^~BFZN~^~14366~^^^^^^^^^~01/01/2003~
-~14353~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~
-~14353~^~334~^0.^0^^~4~^~BFZN~^~14366~^^^^^^^^^~01/01/2003~
-~14353~^~337~^0.^0^^~4~^~BFZN~^~14366~^^^^^^^^^~01/01/2003~
-~14353~^~338~^0.^0^^~4~^~BFZN~^~14366~^^^^^^^^^~01/01/2003~
-~14353~^~417~^103.^0^^~4~^~BFZN~^~14366~^^^^^^^^^~01/01/2003~
-~14353~^~431~^0.^0^^~4~^~BFZN~^~14366~^^^^^^^^^~02/01/2005~
-~14353~^~432~^103.^0^^~4~^~BFZN~^~14366~^^^^^^^^^~02/01/2005~
-~14353~^~435~^103.^0^^~4~^~NC~^~14366~^^^^^^^^^~10/01/2006~
-~14353~^~601~^0.^0^^~4~^~BFZN~^~14366~^^^^^^^^^~01/01/1999~
-~14355~^~208~^1.^0^^~4~^~NC~^^^^^^^^^^~05/01/1986~
-~14355~^~262~^20.^41^^~1~^^^^^^^^^^^~05/01/1986~
-~14355~^~263~^2.^0^^~1~^^^^^^^^^^^~05/01/1998~
-~14355~^~268~^4.^0^^~4~^^^^^^^^^^^~03/01/2006~
-~14355~^~301~^0.^2^^~1~^^^^^^^^^^^~05/01/1986~
-~14355~^~304~^3.^2^^~1~^^^^^^^^^^^~05/01/1986~
-~14355~^~305~^1.^2^^~1~^^^^^^^^^^^~05/01/1986~
-~14355~^~306~^37.^2^^~1~^^^^^^^^^^^~05/01/1986~
-~14355~^~307~^3.^2^^~1~^^^^^^^^^^^~05/01/1986~
-~14355~^~318~^0.^0^^~4~^^^^^^^^^^^~05/01/1986~
-~14355~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2002~
-~14355~^~320~^0.^0^^~1~^~AS~^^^^^^^^^^~03/01/2006~
-~14355~^~321~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~
-~14355~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~
-~14355~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~
-~14355~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~
-~14355~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~
-~14355~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~
-~14355~^~417~^5.^7^0.^~1~^^^^^^^^^^^~05/01/1986~
-~14355~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~
-~14355~^~432~^5.^7^0.^~1~^^^^^^^^^^^~03/01/2006~
-~14355~^~435~^5.^0^^~4~^~NC~^^^^^^^^^^~03/01/2006~
-~14355~^~601~^0.^0^^~1~^^^^^^^^^^^~05/01/1986~
-~14356~^~208~^338.^0^^~4~^~BFZN~^~14375~^^^^^^^^^~01/01/2003~
-~14356~^~262~^57.^0^^~4~^~O~^~14375~^^^^^^^^^~05/01/2007~
-~14356~^~263~^4.^0^^~4~^~O~^~14375~^^^^^^^^^~05/01/2007~
-~14356~^~268~^1412.^0^^~4~^~BFZN~^~14375~^^^^^^^^^~01/01/2003~
-~14356~^~301~^21.^0^^~4~^~BFZN~^~14375~^^^^^^^^^~12/01/2006~
-~14356~^~304~^125.^0^^~4~^~BFZN~^~14375~^^^^^^^^^~12/01/2006~
-~14356~^~305~^140.^0^^~4~^~BFZN~^~14375~^^^^^^^^^~12/01/2006~
-~14356~^~306~^2568.^0^^~4~^~BFZN~^~14375~^^^^^^^^^~12/01/2006~
-~14356~^~307~^412.^0^^~4~^~BFZN~^~14375~^^^^^^^^^~01/01/2003~
-~14356~^~318~^0.^0^^~4~^~BFZN~^~14375~^^^^^^^^^~12/01/2006~
-~14356~^~319~^0.^0^^~4~^~BFZN~^~14375~^^^^^^^^^~12/01/2006~
-~14356~^~320~^0.^0^^~4~^~BFZN~^~14375~^^^^^^^^^~01/01/2003~
-~14356~^~321~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2003~
-~14356~^~322~^0.^0^^~4~^~NR~^^^^^^^^^^~12/01/2006~
-~14356~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~
-~14356~^~334~^0.^0^^~4~^~NR~^^^^^^^^^^~12/01/2006~
-~14356~^~337~^0.^0^^~4~^~NR~^^^^^^^^^^~12/01/2006~
-~14356~^~338~^0.^0^^~4~^~NR~^^^^^^^^^^~12/01/2006~
-~14356~^~417~^35.^0^^~4~^~BFZN~^~14375~^^^^^^^^^~12/01/2006~
-~14356~^~431~^0.^0^^~4~^~BFZN~^~14375~^^^^^^^^^~01/01/2003~
-~14356~^~432~^35.^0^^~4~^~BFZN~^~14375~^^^^^^^^^~12/01/2006~
-~14356~^~435~^35.^0^^~4~^~NC~^~14375~^^^^^^^^^~05/01/2007~
-~14356~^~601~^0.^0^^~4~^~BFZN~^~14375~^^^^^^^^^~01/01/1999~
-~14357~^~208~^401.^0^^~4~^~NC~^^^^^^^^^^~08/01/2012~
-~14357~^~262~^5.^0^^~4~^~BFZN~^^^^^^^^^^~01/01/1999~
-~14357~^~263~^0.^0^^~4~^~BFZN~^^^^^^^^^^~01/01/1999~
-~14357~^~268~^1679.^0^^~4~^~NC~^^^^^^^^^^~08/01/2012~
-~14357~^~301~^2.^0^^~4~^~BFZN~^~14370~^^^^^^^^^~04/01/2005~
-~14357~^~304~^3.^0^^~4~^~BFZN~^~14370~^^^^^^^^^~04/01/2005~
-~14357~^~305~^2.^0^^~4~^~BFZN~^~14370~^^^^^^^^^~04/01/2005~
-~14357~^~306~^169.^0^^~4~^~BFZN~^~14370~^^^^^^^^^~04/01/2005~
-~14357~^~307~^5.^0^^~4~^~BFZN~^~14370~^^^^^^^^^~04/01/2005~
-~14357~^~318~^0.^0^^~4~^~BFZN~^~14370~^^^^^^^^^~04/01/2005~
-~14357~^~319~^0.^0^^~4~^~BFZN~^~14370~^^^^^^^^^~01/01/2003~
-~14357~^~320~^0.^0^^~4~^~BFZN~^~14370~^^^^^^^^^~04/01/2005~
-~14357~^~321~^0.^0^^~4~^~BFZN~^~14370~^^^^^^^^^~04/01/2005~
-~14357~^~322~^0.^0^^~4~^~BFZN~^~14370~^^^^^^^^^~01/01/2003~
-~14357~^~334~^0.^0^^~4~^~BFZN~^~14370~^^^^^^^^^~04/01/2005~
-~14357~^~337~^0.^0^^~4~^~BFZN~^~14370~^^^^^^^^^~01/01/2003~
-~14357~^~338~^0.^0^^~4~^~BFZN~^~14370~^^^^^^^^^~04/01/2005~
-~14357~^~417~^1.^0^^~4~^~BFZN~^~14370~^^^^^^^^^~04/01/2005~
-~14357~^~431~^0.^0^^~4~^~BFZN~^~14370~^^^^^^^^^~01/01/2003~
-~14357~^~432~^1.^0^^~4~^~BFZN~^~14370~^^^^^^^^^~04/01/2005~
-~14357~^~435~^1.^0^^~4~^~NC~^~14370~^^^^^^^^^~04/01/2005~
-~14357~^~601~^0.^0^^~4~^~BFZN~^~14370~^^^^^^^^^~01/01/1999~
-~14366~^~208~^315.^0^^~4~^~NC~^^^^^^^^^^~02/01/2005~
-~14366~^~262~^5714.^0^^~9~^~MC~^^^^^^^^^^~07/01/2013~
-~14366~^~263~^71.^1^^~1~^~A~^^^^^^^^^^~02/01/2005~
-~14366~^~268~^1320.^0^^~4~^~NC~^^^^^^^^^^~02/01/2005~
-~14366~^~301~^118.^1^^~1~^~A~^^^^^^^^^^~02/01/2005~
-~14366~^~304~^272.^1^^~1~^~A~^^^^^^^^^^~02/01/2005~
-~14366~^~305~^239.^1^^~1~^~A~^^^^^^^^^^~02/01/2005~
-~14366~^~306~^6040.^1^^~1~^~A~^^^^^^^^^^~02/01/2005~
-~14366~^~307~^72.^1^^~1~^~A~^^^^^^^^^^~02/01/2005~
-~14366~^~318~^0.^0^^~1~^^^^^^^^^^^~05/01/1986~
-~14366~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2003~
-~14366~^~320~^0.^0^^~1~^~AS~^^^^^^^^^^~02/01/2005~
-~14366~^~321~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2003~
-~14366~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2003~
-~14366~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~
-~14366~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2003~
-~14366~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2003~
-~14366~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2003~
-~14366~^~417~^103.^5^^~1~^^^^^^^^^^^~02/01/2005~
-~14366~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2005~
-~14366~^~432~^103.^0^^~4~^~NR~^^^^^^^^^^~02/01/2005~
-~14366~^~435~^103.^0^^~4~^~NC~^^^^^^^^^^~10/01/2006~
-~14366~^~601~^0.^1^^~8~^~LC~^^^^^^^^^^~02/01/2005~
-~14367~^~208~^1.^0^^~6~^~RPI~^^^^^^^^^^~04/01/2005~
-~14367~^~262~^11.^0^^~6~^~RPI~^^^^^^^^^^~04/01/2005~
-~14367~^~263~^0.^0^^~6~^~RPI~^^^^^^^^^^~04/01/2005~
-~14367~^~268~^4.^0^^~6~^~RPI~^^^^^^^^^^~04/01/2005~
-~14367~^~301~^3.^0^^~1~^~RPA~^^^^^^^^^^~12/01/2006~
-~14367~^~304~^2.^0^^~1~^~RPA~^^^^^^^^^^~12/01/2006~
-~14367~^~305~^1.^0^^~1~^~RPA~^^^^^^^^^^~12/01/2006~
-~14367~^~306~^18.^0^^~1~^~RPA~^^^^^^^^^^~12/01/2006~
-~14367~^~307~^4.^0^^~1~^~RPA~^^^^^^^^^^~12/01/2006~
-~14367~^~318~^0.^0^^~6~^~RPI~^^^^^^^^^^~01/01/2003~
-~14367~^~319~^0.^0^^~6~^~RPI~^^^^^^^^^^~01/01/2003~
-~14367~^~320~^0.^0^^~4~^~NC~^^^^^^^^^^~09/01/2015~
-~14367~^~321~^0.^0^^~6~^~RPI~^^^^^^^^^^~01/01/2003~
-~14367~^~322~^0.^0^^~6~^~RPI~^^^^^^^^^^~01/01/2003~
-~14367~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~
-~14367~^~334~^0.^0^^~6~^~RPI~^^^^^^^^^^~01/01/2003~
-~14367~^~337~^0.^0^^~6~^~RPI~^^^^^^^^^^~01/01/2003~
-~14367~^~338~^0.^0^^~6~^~RPI~^^^^^^^^^^~01/01/2003~
-~14367~^~417~^0.^0^^~6~^~RPI~^^^^^^^^^^~01/01/2003~
-~14367~^~431~^0.^0^^~6~^~RPI~^^^^^^^^^^~01/01/2003~
-~14367~^~432~^0.^0^^~6~^~RPI~^^^^^^^^^^~04/01/2005~
-~14367~^~435~^0.^0^^~4~^~NC~^^^^^^^^^^~12/01/2006~
-~14367~^~601~^0.^0^^~6~^~RPI~^^^^^^^^^^~04/01/2005~
-~14368~^~208~^345.^0^^~4~^~NC~^^^^^^^^^^~12/01/2006~
-~14368~^~262~^1794.^1^^~1~^^^^^^^^^^^~06/01/2013~
-~14368~^~263~^40.^0^^~4~^~FLA~^^^^^^^^^^~12/01/2006~
-~14368~^~268~^1445.^0^^~4~^~NC~^^^^^^^^^^~12/01/2006~
-~14368~^~301~^28.^1^^~1~^^^^^^^^^^^~05/01/1986~
-~14368~^~304~^139.^1^^~1~^^^^^^^^^^^~05/01/1986~
-~14368~^~305~^107.^1^^~1~^^^^^^^^^^^~05/01/1986~
-~14368~^~306~^3453.^1^^~1~^^^^^^^^^^^~05/01/1986~
-~14368~^~307~^55.^0^^~4~^~FLA~^^^^^^^^^^~02/01/2005~
-~14368~^~318~^0.^0^^~1~^^^^^^^^^^^~12/01/2006~
-~14368~^~319~^0.^0^^~4~^~FLA~^^^^^^^^^^~01/01/2003~
-~14368~^~320~^0.^0^^~4~^~NC~^^^^^^^^^^~12/01/2006~
-~14368~^~321~^0.^0^^~4~^~NR~^^^^^^^^^^~02/01/2005~
-~14368~^~322~^0.^0^^~4~^~NR~^^^^^^^^^^~02/01/2005~
-~14368~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~
-~14368~^~334~^0.^0^^~4~^~NR~^^^^^^^^^^~02/01/2005~
-~14368~^~337~^0.^0^^~4~^~FLA~^^^^^^^^^^~01/01/2003~
-~14368~^~338~^0.^0^^~4~^~NR~^^^^^^^^^^~02/01/2005~
-~14368~^~417~^61.^0^^~4~^~FLA~^^^^^^^^^^~02/01/2005~
-~14368~^~431~^0.^0^^~4~^~FLA~^^^^^^^^^^~01/01/2003~
-~14368~^~432~^61.^0^^~4~^~FLA~^^^^^^^^^^~02/01/2005~
-~14368~^~435~^61.^0^^~4~^~NC~^^^^^^^^^^~12/01/2006~
-~14368~^~601~^0.^0^^~4~^~FLA~^^^^^^^^^^~01/01/2003~
-~14370~^~208~^401.^0^^~4~^~NC~^^^^^^^^^^~12/01/2006~
-~14370~^~262~^35.^1^^~1~^~A~^^^^^^^^^^~02/01/2005~
-~14370~^~263~^1.^1^^~1~^~A~^^^^^^^^^~1~^~02/01/2005~
-~14370~^~268~^1679.^0^^~4~^~NC~^^^^^^^^^^~12/01/2006~
-~14370~^~301~^2.^1^^~1~^~A~^^^^^^^^^^~02/01/2005~
-~14370~^~304~^3.^1^^~1~^~A~^^^^^^^^^^~02/01/2005~
-~14370~^~305~^2.^1^^~1~^~A~^^^^^^^^^^~02/01/2005~
-~14370~^~306~^169.^1^^~1~^~A~^^^^^^^^^^~02/01/2005~
-~14370~^~307~^5.^1^^~1~^~A~^^^^^^^^^^~02/01/2005~
-~14370~^~318~^0.^0^^~4~^~FLA~^^^^^^^^^^~02/01/2005~
-~14370~^~319~^0.^0^^~4~^~FLA~^^^^^^^^^^~01/01/2003~
-~14370~^~320~^0.^0^^~4~^~FLA~^^^^^^^^^^~02/01/2005~
-~14370~^~321~^0.^0^^~4~^~FLA~^^^^^^^^^^~02/01/2005~
-~14370~^~322~^0.^0^^~4~^~FLA~^^^^^^^^^^~02/01/2005~
-~14370~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~
-~14370~^~334~^0.^0^^~4~^~FLA~^^^^^^^^^^~02/01/2005~
-~14370~^~337~^0.^0^^~4~^~FLA~^^^^^^^^^^~01/01/2003~
-~14370~^~338~^0.^0^^~4~^~FLA~^^^^^^^^^^~02/01/2005~
-~14370~^~417~^1.^0^^~4~^~FLA~^^^^^^^^^^~02/01/2005~
-~14370~^~431~^0.^0^^~4~^~FLA~^^^^^^^^^^~01/01/2003~
-~14370~^~432~^1.^0^^~4~^~FLA~^^^^^^^^^^~02/01/2005~
-~14370~^~435~^1.^0^^~4~^~NC~^^^^^^^^^^~12/01/2006~
-~14370~^~601~^0.^0^^~4~^~FLA~^^^^^^^^^^~01/01/2003~
-~14371~^~208~^35.^0^^~6~^~RPI~^^^^^^^^^^~04/01/2005~
-~14371~^~262~^3.^0^^~6~^~RPI~^^^^^^^^^^~04/01/2005~
-~14371~^~263~^0.^0^^~6~^~RPI~^^^^^^^^^^~04/01/2005~
-~14371~^~268~^147.^0^^~6~^~RPI~^^^^^^^^^^~04/01/2005~
-~14371~^~301~^2.^0^^~1~^~RPA~^^^^^^^^^^~04/01/2005~
-~14371~^~304~^1.^0^^~1~^~RPA~^^^^^^^^^^~04/01/2005~
-~14371~^~305~^0.^0^^~1~^~RPA~^^^^^^^^^^~04/01/2005~
-~14371~^~306~^15.^0^^~1~^~RPA~^^^^^^^^^^~04/01/2005~
-~14371~^~307~^2.^0^^~1~^~RPA~^^^^^^^^^^~04/01/2005~
-~14371~^~318~^0.^0^^~6~^~RPI~^^^^^^^^^^~04/01/2005~
-~14371~^~319~^0.^0^^~6~^~RPI~^^^^^^^^^^~01/01/2003~
-~14371~^~320~^0.^0^^~6~^~RPI~^^^^^^^^^^~04/01/2005~
-~14371~^~321~^0.^0^^~6~^~RPI~^^^^^^^^^^~01/01/2003~
-~14371~^~322~^0.^0^^~6~^~RPI~^^^^^^^^^^~01/01/2003~
-~14371~^~334~^0.^0^^~6~^~RPI~^^^^^^^^^^~04/01/2005~
-~14371~^~337~^0.^0^^~6~^~RPI~^^^^^^^^^^~01/01/2003~
-~14371~^~338~^0.^0^^~6~^~RPI~^^^^^^^^^^~04/01/2005~
-~14371~^~417~^0.^0^^~6~^~RPI~^^^^^^^^^^~04/01/2005~
-~14371~^~431~^0.^0^^~6~^~RPI~^^^^^^^^^^~01/01/2003~
-~14371~^~432~^0.^0^^~6~^~RPI~^^^^^^^^^^~04/01/2005~
-~14371~^~435~^0.^0^^~4~^~NC~^^^^^^^^^^~04/01/2005~
-~14371~^~601~^0.^0^^~6~^~RPI~^^^^^^^^^^~01/01/2003~
-~14375~^~208~^338.^0^^~4~^~NC~^^^^^^^^^^~12/01/2006~
-~14375~^~262~^2240.^1^^~9~^~MC~^^^^2240.^2240.^^^^^~12/01/2006~
-~14375~^~263~^24.^0^^~4~^~FLA~^^^^^^^^^^~12/01/2006~
-~14375~^~268~^1412.^0^^~4~^~NC~^^^^^^^^^^~12/01/2006~
-~14375~^~301~^21.^1^^~9~^~MC~^^^^21.^21.^^^^^~12/01/2006~
-~14375~^~304~^125.^1^^~9~^~MC~^^^^125.^125.^^^^^~12/01/2006~
-~14375~^~305~^140.^1^^~9~^~MC~^^^^140.^140.^^^^^~12/01/2006~
-~14375~^~306~^2568.^1^^~9~^~MC~^^^^2568.^2568.^^^^^~12/01/2006~
-~14375~^~307~^412.^0^^~8~^~LC~^^^^^^^^^^~05/01/2007~
-~14375~^~318~^0.^0^^~4~^~FLA~^^^^^^^^^^~12/01/2006~
-~14375~^~319~^0.^0^^~4~^~FLA~^^^^^^^^^^~01/01/2003~
-~14375~^~320~^0.^0^^~4~^~FLA~^^^^^^^^^^~01/01/2003~
-~14375~^~321~^0.^0^^~4~^~FLA~^^^^^^^^^^~12/01/2006~
-~14375~^~322~^0.^0^^~4~^~FLA~^^^^^^^^^^~01/01/2003~
-~14375~^~334~^0.^0^^~4~^~FLA~^^^^^^^^^^~12/01/2006~
-~14375~^~337~^0.^0^^~4~^~FLA~^^^^^^^^^^~01/01/2003~
-~14375~^~338~^0.^0^^~4~^~FLA~^^^^^^^^^^~12/01/2006~
-~14375~^~417~^35.^0^^~4~^~FLA~^^^^^^^^^^~12/01/2006~
-~14375~^~431~^0.^0^^~4~^~FLA~^^^^^^^^^^~01/01/2003~
-~14375~^~432~^35.^0^^~4~^~FLA~^^^^^^^^^^~12/01/2006~
-~14375~^~435~^35.^0^^~4~^~NC~^^^^^^^^^^~05/01/2007~
-~14375~^~601~^0.^0^^~4~^~FLA~^^^^^^^^^^~01/01/2003~
-~14376~^~208~^2.^0^^~6~^~RPI~^^^^^^^^^^~01/01/2003~
-~14376~^~262~^11.^0^^~6~^~RPI~^^^^^^^^^^~12/01/2006~
-~14376~^~263~^0.^0^^~6~^~RPI~^^^^^^^^^^~12/01/2006~
-~14376~^~268~^7.^0^^~6~^~RPI~^^^^^^^^^^~01/01/2003~
-~14376~^~301~^3.^0^^~6~^~RPI~^^^^^^^^^^~12/01/2006~
-~14376~^~304~^2.^0^^~6~^~RPI~^^^^^^^^^^~12/01/2006~
-~14376~^~305~^1.^0^^~6~^~RPI~^^^^^^^^^^~12/01/2006~
-~14376~^~306~^14.^0^^~6~^~RPI~^^^^^^^^^^~12/01/2006~
-~14376~^~307~^6.^0^^~6~^~RPI~^^^^^^^^^^~05/01/2007~
-~14376~^~318~^0.^0^^~6~^~RPI~^^^^^^^^^^~01/01/2003~
-~14376~^~319~^0.^0^^~6~^~RPI~^^^^^^^^^^~01/01/2003~
-~14376~^~320~^0.^0^^~4~^~NC~^^^^^^^^^^~09/01/2015~
-~14376~^~321~^0.^0^^~6~^~RPI~^^^^^^^^^^~01/01/2003~
-~14376~^~322~^0.^0^^~6~^~RPI~^^^^^^^^^^~01/01/2003~
-~14376~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~
-~14376~^~334~^0.^0^^~6~^~RPI~^^^^^^^^^^~01/01/2003~
-~14376~^~337~^0.^0^^~6~^~RPI~^^^^^^^^^^~01/01/2003~
-~14376~^~338~^0.^0^^~6~^~RPI~^^^^^^^^^^~01/01/2003~
-~14376~^~417~^0.^0^^~6~^~RPI~^^^^^^^^^^~12/01/2006~
-~14376~^~431~^0.^0^^~6~^~RPI~^^^^^^^^^^~01/01/2003~
-~14376~^~432~^0.^0^^~6~^~RPI~^^^^^^^^^^~12/01/2006~
-~14376~^~435~^0.^0^^~4~^~NC~^^^^^^^^^^~05/01/2007~
-~14376~^~601~^0.^0^^~6~^~RPI~^^^^^^^^^^~01/01/2003~
-~14381~^~208~^1.^0^^~4~^~NC~^^^^^^^^^^~05/01/1986~
-~14381~^~262~^0.^1^^~1~^^^^^^^^^^^~05/01/1986~
-~14381~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~
-~14381~^~268~^4.^0^^~4~^^^^^^^^^^^~10/01/2006~
-~14381~^~301~^2.^10^^~1~^^^^^^^^^^^~05/01/1986~
-~14381~^~304~^1.^3^^~1~^^^^^^^^^^^~05/01/1986~
-~14381~^~305~^0.^0^^~1~^^^^^^^^^^^~05/01/1986~
-~14381~^~306~^9.^33^^~1~^^^^^^^^^^^~05/01/1986~
-~14381~^~307~^1.^32^^~1~^^^^^^^^^^^~05/01/1986~
-~14381~^~318~^0.^0^^~1~^^^^^^^^^^^~05/01/1986~
-~14381~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2002~
-~14381~^~320~^0.^0^^~4~^~NC~^^^^^^^^^^~06/01/2002~
-~14381~^~321~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~
-~14381~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~
-~14381~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~
-~14381~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~
-~14381~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~
-~14381~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~
-~14381~^~417~^1.^5^^~1~^^^^^^^^^^^~05/01/1986~
-~14381~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~
-~14381~^~432~^1.^5^^~1~^^^^^^^^^^^~05/01/1986~
-~14381~^~435~^1.^0^^~4~^~NC~^^^^^^^^^^~10/01/2006~
-~14381~^~601~^0.^0^^~1~^^^^^^^^^^^~05/01/1986~
-~14384~^~208~^0.^0^^~4~^~NC~^^^^^^^^^^~05/01/1986~
-~14384~^~268~^0.^0^^~4~^^^^^^^^^^^~03/01/2005~
-~14384~^~301~^14.^41^^~1~^^^^^^^^^^^~05/01/1986~
-~14384~^~304~^0.^40^0.^~1~^^^^^^^^^^^~05/01/1986~
-~14384~^~305~^0.^1^^~1~^^^^^^^^^^^~05/01/1986~
-~14384~^~306~^0.^42^^~1~^^^^^^^^^^^~05/01/1986~
-~14384~^~307~^1.^44^^~1~^^^^^^^^^^^~05/01/1986~
-~14384~^~318~^0.^0^^~4~^^^^^^^^^^^~05/01/1986~
-~14384~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2002~
-~14384~^~320~^0.^0^^~1~^~AS~^^^^^^^^^^~03/01/2005~
-~14384~^~417~^0.^0^^~4~^^^^^^^^^^^~05/01/1986~
-~14384~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~
-~14384~^~432~^0.^0^^~4~^^^^^^^^^^^~03/01/2005~
-~14384~^~435~^0.^0^^~4~^~NC~^^^^^^^^^^~11/01/2006~
-~14384~^~601~^0.^0^^~1~^^^^^^^^^^^~05/01/1986~
-~14385~^~208~^0.^0^^~4~^~NC~^^^^^^^^^^~05/01/1986~
-~14385~^~268~^0.^0^^~4~^^^^^^^^^^^~03/01/2005~
-~14385~^~301~^1.^1^^~1~^^^^^^^^^^^~05/01/1986~
-~14385~^~304~^1.^1^^~1~^^^^^^^^^^^~05/01/1986~
-~14385~^~305~^0.^0^^~4~^^^^^^^^^^^~05/01/1986~
-~14385~^~306~^0.^1^^~1~^^^^^^^^^^^~05/01/1986~
-~14385~^~307~^1.^3^^~1~^^^^^^^^^^^~05/01/1986~
-~14385~^~318~^0.^0^^~4~^^^^^^^^^^^~05/01/1986~
-~14385~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2002~
-~14385~^~320~^0.^0^^~1~^~AS~^^^^^^^^^^~03/01/2005~
-~14385~^~417~^0.^0^^~4~^^^^^^^^^^^~05/01/1986~
-~14385~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~
-~14385~^~432~^0.^0^^~4~^^^^^^^^^^^~03/01/2005~
-~14385~^~435~^0.^0^^~4~^~NC~^^^^^^^^^^~03/01/2005~
-~14385~^~601~^0.^0^^~1~^^^^^^^^^^^~05/01/1986~
-~14390~^~208~^29.^0^^~6~^~RPI~^^^^^^^^^^~12/01/2006~
-~14390~^~262~^2.^0^^~6~^~RPI~^^^^^^^^^^~12/01/2006~
-~14390~^~263~^51.^0^^~6~^~RPI~^^^^^^^^^^~12/01/2006~
-~14390~^~268~^123.^0^^~6~^~RPI~^^^^^^^^^^~12/01/2006~
-~14390~^~301~^48.^0^^~1~^~RPA~^^^^^^^^^^~12/01/2006~
-~14390~^~304~^17.^0^^~1~^~RPA~^^^^^^^^^^~12/01/2006~
-~14390~^~305~^70.^0^^~1~^~RPA~^^^^^^^^^^~12/01/2006~
-~14390~^~306~^211.^0^^~1~^~RPA~^^^^^^^^^^~12/01/2006~
-~14390~^~307~^72.^0^^~6~^~RPI~^^^^^^^^^^~12/01/2006~
-~14390~^~318~^1.^0^^~4~^~NC~^^^^^^^^^^~09/01/2015~
-~14390~^~319~^0.^0^^~6~^~RPI~^^^^^^^^^^~12/01/2006~
-~14390~^~320~^0.^0^^~4~^~NC~^^^^^^^^^^~09/01/2015~
-~14390~^~321~^0.^0^^~6~^~RPI~^^^^^^^^^^~12/01/2006~
-~14390~^~322~^0.^0^^~6~^~RPI~^^^^^^^^^^~03/01/2003~
-~14390~^~334~^0.^0^^~6~^~RPI~^^^^^^^^^^~03/01/2003~
-~14390~^~337~^0.^0^^~6~^~RPI~^^^^^^^^^^~03/01/2003~
-~14390~^~338~^1.^0^^~6~^~RPI~^^^^^^^^^^~12/01/2006~
-~14390~^~417~^1.^0^^~6~^~RPI~^^^^^^^^^^~12/01/2006~
-~14390~^~431~^0.^0^^~6~^~RPI~^^^^^^^^^^~04/01/2002~
-~14390~^~432~^1.^0^^~6~^~RPI~^^^^^^^^^^~12/01/2006~
-~14390~^~435~^1.^0^^~4~^~NC~^^^^^^^^^^~12/01/2006~
-~14390~^~601~^0.^0^^~6~^~RPI~^^^^^^^^^^~12/01/2006~
-~14400~^~208~^37.^0^^~4~^~NC~^^^^^^^^^^~12/01/2006~
-~14400~^~262~^8.^7^0.^~1~^~A~^^^4^2.^10.^3^7.^8.^~2, 3~^~04/01/2005~
-~14400~^~263~^0.^4^0.^~1~^~A~^^^1^0.^0.^^^^~1, 2, 3~^~04/01/2005~
-~14400~^~268~^157.^0^^~4~^~NC~^^^^^^^^^^~12/01/2006~
-~14400~^~301~^2.^7^0.^~1~^~A~^^^4^0.^4.^3^1.^2.^~1, 2, 3~^~04/01/2005~
-~14400~^~304~^0.^7^0.^~1~^~A~^^^4^0.^1.^3^0.^0.^~1, 2, 3~^~04/01/2005~
-~14400~^~305~^10.^7^0.^~1~^~A~^^^4^6.^13.^3^9.^11.^~2, 3~^~04/01/2005~
-~14400~^~306~^2.^7^0.^~1~^~A~^^^4^0.^4.^3^0.^3.^~1, 2, 3~^~04/01/2005~
-~14400~^~307~^4.^7^0.^~1~^~A~^^^4^2.^7.^3^2.^5.^~1, 2, 3~^~04/01/2005~
-~14400~^~318~^0.^1^^~1~^^^^^^^^^^^~12/01/2002~
-~14400~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2002~
-~14400~^~320~^0.^0^^~1~^~AS~^^^^^^^^^^~12/01/2006~
-~14400~^~321~^0.^0^^~7~^~Z~^^^^^^^^^^~12/01/2002~
-~14400~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~12/01/2002~
-~14400~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~
-~14400~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~12/01/2002~
-~14400~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~12/01/2002~
-~14400~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~12/01/2002~
-~14400~^~417~^0.^0^^~4~^^^^^^^^^^^~12/01/2002~
-~14400~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~
-~14400~^~432~^0.^0^^~4~^^^^^^^^^^^~12/01/2006~
-~14400~^~435~^0.^0^^~4~^~NC~^^^^^^^^^^~05/01/2007~
-~14400~^~601~^0.^0^^~1~^^^^^^^^^^^~12/01/2002~
-~14405~^~208~^175.^0^^~4~^~NC~^^^^^^^^^^~05/01/1986~
-~14405~^~268~^732.^0^^~4~^^^^^^^^^^^~05/01/2006~
-~14405~^~301~^20.^1^^~1~^^^^^^^^^^^~05/01/1986~
-~14405~^~304~^11.^1^^~1~^^^^^^^^^^^~05/01/1986~
-~14405~^~305~^12.^0^^~4~^^^^^^^^^^^~05/01/1986~
-~14405~^~306~^270.^1^^~1~^^^^^^^^^^^~05/01/1986~
-~14405~^~307~^10.^1^^~1~^^^^^^^^^^^~05/01/1986~
-~14405~^~318~^21.^1^^~1~^^^^^^^^^^^~05/01/1986~
-~14405~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2002~
-~14405~^~320~^1.^0^^~4~^~NC~^^^^^^^^^^~06/01/2002~
-~14405~^~417~^7.^1^^~1~^^^^^^^^^^^~05/01/1986~
-~14405~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~
-~14405~^~432~^7.^1^^~1~^^^^^^^^^^^~05/01/1986~
-~14405~^~435~^7.^0^^~4~^~NC~^^^^^^^^^^~05/01/2006~
-~14405~^~601~^0.^0^^~1~^^^^^^^^^^^~05/01/1986~
-~14406~^~208~^42.^0^^~6~^~RPI~^^^^^^^^^^~12/01/2006~
-~14406~^~262~^0.^0^^~6~^~RPI~^^^^^^^^^^~12/01/2006~
-~14406~^~263~^0.^0^^~6~^~RPI~^^^^^^^^^^~12/01/2006~
-~14406~^~268~^177.^0^^~6~^~RPI~^^^^^^^^^^~12/01/2006~
-~14406~^~301~^7.^0^^~1~^~RPA~^^^^^^^^^^~12/01/2006~
-~14406~^~304~^3.^0^^~1~^~RPA~^^^^^^^^^^~12/01/2006~
-~14406~^~305~^3.^0^^~6~^~RPI~^^^^^^^^^^~12/01/2006~
-~14406~^~306~^66.^0^^~1~^~RPA~^^^^^^^^^^~12/01/2006~
-~14406~^~307~^5.^0^^~1~^~RPA~^^^^^^^^^^~12/01/2006~
-~14406~^~318~^5.^0^^~6~^~RPI~^^^^^^^^^^~12/01/2006~
-~14406~^~319~^0.^0^^~6~^~RPI~^^^^^^^^^^~12/01/2006~
-~14406~^~320~^0.^0^^~6~^~RPI~^^^^^^^^^^~12/01/2006~
-~14406~^~321~^0.^0^^~6~^~RPI~^^^^^^^^^^~12/01/2006~
-~14406~^~322~^0.^0^^~6~^~RPI~^^^^^^^^^^~12/01/2006~
-~14406~^~334~^0.^0^^~6~^~RPI~^^^^^^^^^^~12/01/2006~
-~14406~^~337~^0.^0^^~6~^~RPI~^^^^^^^^^^~12/01/2006~
-~14406~^~338~^0.^0^^~6~^~RPI~^^^^^^^^^^~12/01/2006~
-~14406~^~417~^2.^0^^~6~^~RPI~^^^^^^^^^^~12/01/2006~
-~14406~^~431~^0.^0^^~6~^~RPI~^^^^^^^^^^~12/01/2006~
-~14406~^~432~^2.^0^^~6~^~RPI~^^^^^^^^^^~12/01/2006~
-~14406~^~435~^2.^0^^~4~^~NC~^^^^^^^^^^~12/01/2006~
-~14406~^~601~^0.^0^^~6~^~RPI~^^^^^^^^^^~12/01/2006~
-~14407~^~208~^386.^0^^~4~^~NC~^^^^^^^^^^~03/01/2003~
-~14407~^~262~^0.^0^^~4~^~FLA~^^^^^^^^^^~01/01/2003~
-~14407~^~263~^0.^0^^~4~^~FLA~^^^^^^^^^^~01/01/2003~
-~14407~^~268~^1615.^0^^~4~^~NC~^^^^^^^^^^~03/01/2003~
-~14407~^~301~^385.^3^61.^~13~^~AI~^^^1^265.^470.^2^119.^650.^~4~^~02/01/2003~
-~14407~^~304~^0.^0^^~4~^~FLA~^^^^^^^^^^~01/01/2003~
-~14407~^~305~^151.^5^^~9~^~MC~^^^^143.^164.^^^^^~02/01/2003~
-~14407~^~306~^190.^0^^~9~^~MC~^^^^^^^^^^~02/01/2003~
-~14407~^~307~^17.^5^^~9~^~MC~^^^^11.^20.^^^^^~02/01/2003~
-~14407~^~318~^2000.^0^^~4~^~NC~^^^^^^^^^^~02/01/2003~
-~14407~^~319~^599.^0^^~4~^~FLA~^^^^^^^^^^~02/01/2003~
-~14407~^~320~^599.^0^^~4~^~NC~^^^^^^^^^^~09/01/2015~
-~14407~^~321~^0.^0^^~4~^~FLA~^^^^^^^^^^~03/01/2003~
-~14407~^~322~^0.^0^^~4~^~FLA~^^^^^^^^^^~03/01/2003~
-~14407~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~
-~14407~^~334~^1.^0^^~4~^~FLA~^^^^^^^^^^~03/01/2003~
-~14407~^~337~^0.^0^^~4~^~FLA~^^^^^^^^^^~01/01/2003~
-~14407~^~338~^1.^0^^~4~^~FLA~^^^^^^^^^^~03/01/2003~
-~14407~^~417~^0.^0^^~4~^~FLA~^^^^^^^^^^~01/01/2003~
-~14407~^~431~^0.^0^^~4~^~NR~^^^^^^^^^^~04/01/2005~
-~14407~^~432~^0.^0^^~4~^~FLA~^^^^^^^^^^~01/01/2003~
-~14407~^~435~^0.^0^^~4~^~NC~^^^^^^^^^^~12/01/2006~
-~14407~^~601~^0.^0^^~4~^~FLA~^^^^^^^^^^~01/01/2003~
-~14408~^~208~^49.^0^^~6~^~RPI~^^^^^^^^^^~03/01/2003~
-~14408~^~262~^0.^0^^~6~^~RPI~^^^^^^^^^^~04/01/2002~
-~14408~^~263~^0.^0^^~6~^~RPI~^^^^^^^^^^~04/01/2002~
-~14408~^~268~^206.^0^^~6~^~RPI~^^^^^^^^^^~03/01/2003~
-~14408~^~301~^52.^0^^~6~^~RPI~^^^^^^^^^^~12/01/2006~
-~14408~^~304~^1.^0^^~6~^~RPI~^^^^^^^^^^~12/01/2006~
-~14408~^~305~^19.^0^^~6~^~RPI~^^^^^^^^^^~12/01/2006~
-~14408~^~306~^25.^0^^~6~^~RPI~^^^^^^^^^^~12/01/2006~
-~14408~^~307~^5.^0^^~6~^~RPI~^^^^^^^^^^~12/01/2006~
-~14408~^~318~^256.^0^^~4~^~NC~^^^^^^^^^^~09/01/2015~
-~14408~^~319~^77.^0^^~6~^~RPI~^^^^^^^^^^~03/01/2003~
-~14408~^~320~^77.^0^^~4~^~NC~^^^^^^^^^^~09/01/2015~
-~14408~^~321~^0.^0^^~6~^~RPI~^^^^^^^^^^~03/01/2003~
-~14408~^~322~^0.^0^^~6~^~RPI~^^^^^^^^^^~03/01/2003~
-~14408~^~334~^0.^0^^~6~^~RPI~^^^^^^^^^^~03/01/2003~
-~14408~^~337~^0.^0^^~6~^~RPI~^^^^^^^^^^~03/01/2003~
-~14408~^~338~^0.^0^^~6~^~RPI~^^^^^^^^^^~03/01/2003~
-~14408~^~417~^0.^0^^~6~^~RPI~^^^^^^^^^^~03/01/2003~
-~14408~^~431~^0.^0^^~6~^~RPI~^^^^^^^^^^~12/01/2006~
-~14408~^~432~^0.^0^^~6~^~RPI~^^^^^^^^^^~03/01/2003~
-~14408~^~435~^0.^0^^~4~^~NC~^^^^^^^^^^~12/01/2006~
-~14408~^~601~^0.^0^^~6~^~RPI~^^^^^^^^^^~04/01/2002~
-~14409~^~208~^217.^0^^~9~^~MC~^^^^^^^^^^~04/01/2002~
-~14409~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2002~
-~14409~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2002~
-~14409~^~268~^908.^0^^~9~^~MC~^^^^^^^^^^~04/01/2002~
-~14409~^~301~^1378.^0^^~9~^~MC~^^^^^^^^^^~04/01/2002~
-~14409~^~304~^275.^0^^~9~^~MC~^^^^^^^^^^~04/01/2002~
-~14409~^~305~^629.^0^^~9~^~MC~^^^^^^^^^^~04/01/2002~
-~14409~^~306~^3132.^0^^~9~^~MC~^^^^^^^^^^~04/01/2002~
-~14409~^~307~^81.^0^^~9~^~MC~^^^^^^^^^^~04/01/2002~
-~14409~^~318~^20000.^0^^~9~^~MC~^^^^^^^^^^~04/01/2002~
-~14409~^~319~^6006.^0^^~4~^~O~^^^^^^^^^^~04/01/2002~
-~14409~^~320~^6006.^0^^~4~^~NC~^^^^^^^^^^~04/01/2002~
-~14409~^~417~^0.^0^^~9~^~MC~^^^^^^^^^^~04/01/2002~
-~14409~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~07/01/2002~
-~14409~^~432~^0.^0^^~9~^~MC~^^^^^^^^^^~04/01/2002~
-~14409~^~435~^0.^0^^~4~^~NC~^^^^^^^^^^~06/01/2014~
-~14409~^~601~^0.^0^^~9~^~MC~^^^^^^^^^^~04/01/2002~
-~14411~^~208~^0.^0^^~4~^~NC~^^^^^^^^^^~04/01/2006~
-~14411~^~262~^0.^0^^~4~^~BFZN~^^^^^^^^^^~10/01/2006~
-~14411~^~263~^0.^0^^~4~^~BFZN~^^^^^^^^^^~10/01/2006~
-~14411~^~268~^0.^0^^~4~^~NC~^^^^^^^^^^~04/01/2006~
-~14411~^~301~^3.^287^0.^~1~^~A~^^^1^0.^10.^286^2.^3.^~2, 3~^~04/01/2006~
-~14411~^~304~^1.^287^0.^~1~^~A~^^^1^0.^5.^286^0.^1.^~2, 3~^~04/01/2006~
-~14411~^~305~^0.^287^0.^~1~^~A~^^^1^0.^0.^286^0.^0.^~1, 2, 3~^~04/01/2006~
-~14411~^~306~^0.^287^0.^~1~^~A~^^^1^0.^20.^286^0.^0.^~1, 2, 3~^~04/01/2006~
-~14411~^~307~^4.^287^0.^~1~^~A~^^^1^0.^39.^286^3.^4.^~2, 3~^~04/01/2006~
-~14411~^~318~^0.^0^^~4~^~BFZN~^^^^^^^^^^~10/01/2006~
-~14411~^~319~^0.^0^^~4~^~BFZN~^^^^^^^^^^~10/01/2006~
-~14411~^~320~^0.^0^^~4~^~NC~^^^^^^^^^^~05/01/2007~
-~14411~^~321~^0.^0^^~4~^~BFZN~^^^^^^^^^^~10/01/2006~
-~14411~^~322~^0.^0^^~4~^~BFZN~^^^^^^^^^^~10/01/2006~
-~14411~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~
-~14411~^~334~^0.^0^^~4~^~BFZN~^^^^^^^^^^~10/01/2006~
-~14411~^~337~^0.^0^^~4~^~BFZN~^^^^^^^^^^~10/01/2006~
-~14411~^~338~^0.^0^^~4~^~BFZN~^^^^^^^^^^~10/01/2006~
-~14411~^~417~^0.^0^^~4~^~BFZN~^^^^^^^^^^~10/01/2006~
-~14411~^~431~^0.^0^^~4~^~BFZN~^^^^^^^^^^~10/01/2006~
-~14411~^~432~^0.^0^^~4~^~BFZN~^^^^^^^^^^~10/01/2006~
-~14411~^~435~^0.^0^^~4~^~NC~^^^^^^^^^^~03/01/2009~
-~14411~^~601~^0.^0^^~4~^~BFZN~^^^^^^^^^^~10/01/2006~
-~14412~^~208~^0.^0^^~4~^~NC~^^^^^^^^^^~04/01/2006~
-~14412~^~268~^0.^0^^~4~^~NC~^^^^^^^^^^~04/01/2006~
-~14412~^~301~^3.^50^^~1~^~A~^^^1^0.^10.^^^^~2~^~11/01/2005~
-~14412~^~304~^1.^50^^~1~^~A~^^^1^0.^5.^^^^~2~^~11/01/2005~
-~14412~^~305~^0.^50^^~1~^~A~^^^1^0.^0.^^^^~1, 2~^~11/01/2005~
-~14412~^~306~^0.^50^^~1~^~A~^^^1^0.^1.^^^^~1, 2~^~11/01/2005~
-~14412~^~307~^5.^50^^~1~^~A~^^^1^0.^27.^^^^~2~^~11/01/2005~
-~14414~^~208~^336.^0^^~4~^~NC~^^^^^^^^^^~06/01/2014~
-~14414~^~262~^26.^0^^~4~^~FLA~^^^^^^^^^^~01/01/2003~
-~14414~^~263~^0.^0^^~4~^~FLA~^^^^^^^^^^~12/01/1997~
-~14414~^~268~^1406.^0^^~4~^^^^^^^^^^^~06/01/2014~
-~14414~^~301~^1.^2^^~1~^^^^^^^^^^^~05/01/1986~
-~14414~^~304~^3.^2^^~1~^^^^^^^^^^^~05/01/1986~
-~14414~^~305~^6.^2^^~1~^^^^^^^^^^^~05/01/1986~
-~14414~^~306~^30.^2^^~1~^^^^^^^^^^^~05/01/1986~
-~14414~^~307~^8.^2^^~1~^^^^^^^^^^^~05/01/1986~
-~14414~^~318~^0.^0^^~4~^~FLA~^^^^^^^^^^~01/01/2003~
-~14414~^~319~^0.^0^^~4~^~FLA~^^^^^^^^^^~01/01/2003~
-~14414~^~320~^0.^0^^~4~^~NC~^^^^^^^^^^~01/01/2003~
-~14414~^~321~^0.^0^^~4~^~FLA~^^^^^^^^^^~01/01/2003~
-~14414~^~322~^0.^0^^~4~^~FLA~^^^^^^^^^^~01/01/2003~
-~14414~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~
-~14414~^~334~^0.^0^^~4~^~FLA~^^^^^^^^^^~01/01/2003~
-~14414~^~337~^0.^0^^~4~^~FLA~^^^^^^^^^^~01/01/2003~
-~14414~^~338~^0.^0^^~4~^~FLA~^^^^^^^^^^~01/01/2003~
-~14414~^~417~^0.^0^^~4~^~FLA~^^^^^^^^^^~01/01/2003~
-~14414~^~431~^0.^0^^~4~^~FLA~^^^^^^^^^^~01/01/2003~
-~14414~^~432~^0.^0^^~4~^~FLA~^^^^^^^^^^~01/01/2003~
-~14414~^~435~^0.^0^^~4~^~NC~^^^^^^^^^^~12/01/2006~
-~14414~^~601~^0.^0^^~4~^~FLA~^^^^^^^^^^~01/01/2003~
-~14415~^~208~^327.^0^^~4~^~NC~^^^^^^^^^^~04/01/2005~
-~14415~^~262~^8.^0^^~4~^~FLC~^^^^^^^^^^~01/01/2003~
-~14415~^~263~^0.^0^^~4~^~FLC~^^^^^^^^^^~01/01/2003~
-~14415~^~268~^1368.^0^^~4~^~NC~^^^^^^^^^^~04/01/2005~
-~14415~^~301~^16.^1^^~1~^^^^^^^^^^^~05/01/1986~
-~14415~^~304~^2.^1^^~1~^^^^^^^^^^^~05/01/1986~
-~14415~^~305~^50.^1^^~1~^^^^^^^^^^^~05/01/1986~
-~14415~^~306~^32.^1^^~1~^^^^^^^^^^^~05/01/1986~
-~14415~^~307~^92.^1^^~1~^^^^^^^^^^^~05/01/1986~
-~14415~^~318~^620.^0^^~4~^~FLC~^^^^^^^^^^~01/01/2003~
-~14415~^~319~^171.^0^^~4~^~FLC~^^^^^^^^^^~01/01/2003~
-~14415~^~320~^173.^0^^~4~^~FLC~^^^^^^^^^^~01/01/2003~
-~14415~^~321~^30.^0^^~4~^~FLC~^^^^^^^^^^~01/01/2003~
-~14415~^~322~^0.^0^^~4~^~FLC~^^^^^^^^^^~01/01/2003~
-~14415~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~
-~14415~^~334~^0.^0^^~4~^~FLC~^^^^^^^^^^~01/01/2003~
-~14415~^~337~^0.^0^^~4~^~FLC~^^^^^^^^^^~01/01/2003~
-~14415~^~338~^0.^0^^~4~^~FLC~^^^^^^^^^^~01/01/2003~
-~14415~^~417~^2.^0^^~4~^~FLC~^^^^^^^^^^~01/01/2003~
-~14415~^~431~^0.^0^^~4~^~FLC~^^^^^^^^^^~01/01/2003~
-~14415~^~432~^2.^0^^~4~^~FLC~^^^^^^^^^^~01/01/2003~
-~14415~^~435~^2.^0^^~4~^~NC~^^^^^^^^^^~12/01/2006~
-~14415~^~601~^58.^0^^~4~^~FLC~^^^^^^^^^^~01/01/2003~
-~14416~^~208~^2.^0^^~4~^~NC~^^^^^^^^^^~03/01/2006~
-~14416~^~262~^12.^7^^~1~^~A~^^^4^3.^20.^^^^~2, 3~^~04/01/2005~
-~14416~^~263~^0.^4^^~1~^~A~^^^1^0.^0.^^^^~1, 2, 3~^~04/01/2005~
-~14416~^~268~^7.^0^^~4~^~NC~^^^^^^^^^^~03/01/2006~
-~14416~^~301~^3.^6^^~1~^~A~^^^3^3.^4.^^^^~1, 2, 3~^~03/01/2006~
-~14416~^~304~^1.^7^^~1~^~A~^^^4^0.^1.^^^^~1, 2, 3~^~04/01/2005~
-~14416~^~305~^9.^7^^~1~^~A~^^^4^5.^15.^^^^~2, 3~^~04/01/2005~
-~14416~^~306~^8.^6^^~1~^~A~^^^3^6.^10.^^^^~2, 3~^~03/01/2006~
-~14416~^~307~^8.^7^^~1~^~A~^^^4^3.^20.^^^^~2, 3~^~04/01/2005~
-~14416~^~318~^0.^0^^~1~^^^^^^^^^^^~12/01/2002~
-~14416~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2002~
-~14416~^~320~^0.^0^^~1~^~AS~^^^^^^^^^^~03/01/2006~
-~14416~^~321~^0.^0^^~7~^~Z~^^^^^^^^^^~12/01/2002~
-~14416~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~12/01/2002~
-~14416~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~
-~14416~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~12/01/2002~
-~14416~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~12/01/2002~
-~14416~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~12/01/2002~
-~14416~^~417~^0.^1^^~1~^^^^^^^^^^^~12/01/2002~
-~14416~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~
-~14416~^~432~^0.^1^^~1~^^^^^^^^^^^~03/01/2006~
-~14416~^~435~^0.^0^^~4~^~NC~^^^^^^^^^^~08/01/2007~
-~14416~^~601~^0.^0^^~1~^^^^^^^^^^^~12/01/2002~
-~14421~^~208~^65.^0^^~4~^~NC~^^^^^^^^^^~05/01/1986~
-~14421~^~262~^0.^0^^~1~^^^^^^^^^^^~05/01/1986~
-~14421~^~268~^272.^0^^~4~^^^^^^^^^^^
-~14421~^~301~^119.^0^^~1~^^^^^^^^^^^~05/01/1986~
-~14421~^~304~^16.^0^^~1~^^^^^^^^^^^~05/01/1986~
-~14421~^~305~^99.^0^^~1~^^^^^^^^^^^~05/01/1986~
-~14421~^~306~^172.^0^^~1~^^^^^^^^^^^~05/01/1986~
-~14421~^~307~^49.^0^^~1~^^^^^^^^^^^~05/01/1986~
-~14421~^~318~^124.^0^^~1~^^^^^^^^^^^~05/01/1986~
-~14421~^~319~^28.^0^^~4~^~O~^^^^^^^^^^~04/01/2002~
-~14421~^~320~^28.^0^^~4~^~NC~^^^^^^^^^^~04/01/2002~
-~14421~^~417~^5.^0^^~1~^^^^^^^^^^^~05/01/1986~
-~14421~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~
-~14421~^~432~^5.^0^^~1~^^^^^^^^^^^~05/01/1986~
-~14421~^~435~^5.^0^^~4~^~NC~^^^^^^^^^^~04/01/2002~
-~14421~^~601~^13.^0^^~1~^^^^^^^^^^^~05/01/1986~
-~14422~^~208~^329.^0^^~4~^~NC~^^^^^^^^^^~12/01/2006~
-~14422~^~262~^25.^0^^~4~^~FLC~^^^^^^^^^^~12/01/2006~
-~14422~^~263~^833.^0^^~4~^~FLC~^^^^^^^^^^~12/01/2006~
-~14422~^~268~^1377.^0^^~4~^~NC~^^^^^^^^^^~12/01/2006~
-~14422~^~301~^1412.^1^^~8~^~LC~^^^^^^^^^^~04/01/2005~
-~14422~^~304~^210.^1^^~1~^^^^^^^^^^^~05/01/1986~
-~14422~^~305~^893.^0^^~4~^~FLA~^^^^^^^^^^~01/01/2003~
-~14422~^~306~^2240.^1^^~1~^^^^^^^^^^^~04/01/2005~
-~14422~^~307~^659.^1^^~8~^~LC~^^^^^^^^^^~04/01/2005~
-~14422~^~318~^698.^0^^~4~^~FLC~^^^^^^^^^^~12/01/2006~
-~14422~^~319~^209.^0^^~4~^~FLC~^^^^^^^^^^~12/01/2006~
-~14422~^~320~^209.^0^^~4~^~FLC~^^^^^^^^^^~12/01/2006~
-~14422~^~321~^1.^0^^~4~^~FLC~^^^^^^^^^^~12/01/2006~
-~14422~^~322~^0.^0^^~4~^~FLC~^^^^^^^^^^~01/01/2003~
-~14422~^~324~^188.^1^^~8~^~LC~^^^^^^^^^^~01/01/2003~
-~14422~^~334~^0.^0^^~4~^~FLC~^^^^^^^^^^~01/01/2003~
-~14422~^~337~^0.^0^^~4~^~FLC~^^^^^^^^^^~01/01/2003~
-~14422~^~338~^12.^0^^~4~^~FLC~^^^^^^^^^^~12/01/2006~
-~14422~^~417~^33.^0^^~4~^~FLA~^^^^^^^^^^~01/01/2003~
-~14422~^~431~^0.^0^^~4~^~FLA~^^^^^^^^^^~01/01/2003~
-~14422~^~432~^33.^0^^~4~^~FLA~^^^^^^^^^^~01/01/2003~
-~14422~^~435~^33.^0^^~4~^~NC~^^^^^^^^^^~03/01/2009~
-~14422~^~601~^24.^1^^~8~^~LC~^^^^^^^^^^~01/01/2003~
-~14423~^~208~^29.^0^^~6~^~RPI~^^^^^^^^^^~12/01/2006~
-~14423~^~262~^2.^0^^~6~^~RPI~^^^^^^^^^^~12/01/2006~
-~14423~^~263~^73.^0^^~6~^~RPI~^^^^^^^^^^~12/01/2006~
-~14423~^~268~^121.^0^^~6~^~RPI~^^^^^^^^^^~12/01/2006~
-~14423~^~301~^127.^0^^~6~^~RPI~^^^^^^^^^^~12/01/2006~
-~14423~^~304~^19.^0^^~1~^~RPA~^^^^^^^^^^~12/01/2006~
-~14423~^~305~^78.^0^^~6~^~RPI~^^^^^^^^^^~12/01/2006~
-~14423~^~306~^197.^0^^~1~^~RPA~^^^^^^^^^^~12/01/2006~
-~14423~^~307~^61.^0^^~6~^~RPI~^^^^^^^^^^~12/01/2006~
-~14423~^~318~^61.^0^^~4~^~NC~^^^^^^^^^^~09/01/2015~
-~14423~^~319~^18.^0^^~6~^~RPI~^^^^^^^^^^~12/01/2006~
-~14423~^~320~^18.^0^^~4~^~NC~^^^^^^^^^^~09/01/2015~
-~14423~^~321~^0.^0^^~6~^~RPI~^^^^^^^^^^~12/01/2006~
-~14423~^~322~^0.^0^^~6~^~RPI~^^^^^^^^^^~12/01/2006~
-~14423~^~334~^0.^0^^~6~^~RPI~^^^^^^^^^^~12/01/2006~
-~14423~^~337~^0.^0^^~6~^~RPI~^^^^^^^^^^~12/01/2006~
-~14423~^~338~^1.^0^^~6~^~RPI~^^^^^^^^^^~12/01/2006~
-~14423~^~417~^3.^0^^~6~^~RPI~^^^^^^^^^^~12/01/2006~
-~14423~^~431~^0.^0^^~6~^~RPI~^^^^^^^^^^~12/01/2006~
-~14423~^~432~^3.^0^^~6~^~RPI~^^^^^^^^^^~12/01/2006~
-~14423~^~435~^3.^0^^~4~^~NC~^^^^^^^^^^~12/01/2006~
-~14423~^~601~^2.^0^^~6~^~RPI~^^^^^^^^^^~12/01/2006~
-~14424~^~208~^172.^0^^~4~^~NC~^^^^^^^^^^~05/01/1986~
-~14424~^~262~^0.^0^^~4~^~FLA~^^^^^^^^^^~01/01/2003~
-~14424~^~263~^0.^0^^~4~^~FLA~^^^^^^^^^^~01/01/2003~
-~14424~^~268~^720.^0^^~4~^^^^^^^^^^^~05/01/2005~
-~14424~^~301~^130.^1^^~13~^~AI~^^^^130.^130.^^^^^~01/01/2003~
-~14424~^~304~^2.^1^^~1~^^^^^^^^^^^~05/01/1986~
-~14424~^~305~^76.^6^^~1~^^^^^^^^^^^~05/01/1986~
-~14424~^~306~^435.^6^^~1~^^^^^^^^^^^~05/01/1986~
-~14424~^~307~^24.^6^^~1~^^^^^^^^^^^~05/01/1986~
-~14424~^~318~^0.^0^^~1~^^^^^^^^^^^~05/01/1986~
-~14424~^~319~^0.^0^^~4~^~FLA~^^^^^^^^^^~01/01/2003~
-~14424~^~320~^0.^0^^~4~^~NC~^^^^^^^^^^~09/01/2015~
-~14424~^~321~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2003~
-~14424~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2003~
-~14424~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~
-~14424~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2003~
-~14424~^~337~^0.^0^^~4~^~FLA~^^^^^^^^^^~01/01/2003~
-~14424~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2003~
-~14424~^~417~^30.^0^^~4~^~FLA~^^^^^^^^^^~01/01/2003~
-~14424~^~431~^0.^0^^~4~^~FLA~^^^^^^^^^^~01/01/2003~
-~14424~^~432~^30.^0^^~4~^~FLA~^^^^^^^^^^~01/01/2003~
-~14424~^~435~^30.^0^^~4~^~NC~^^^^^^^^^^~12/01/2006~
-~14424~^~601~^0.^0^^~4~^~FLA~^^^^^^^^^^~01/01/2003~
-~14425~^~208~^49.^0^^~6~^~RPI~^^^^^^^^^^~01/01/2003~
-~14425~^~262~^0.^0^^~6~^~RPI~^^^^^^^^^^~01/01/2003~
-~14425~^~263~^0.^0^^~6~^~RPI~^^^^^^^^^^~01/01/2003~
-~14425~^~268~^205.^0^^~6~^~RPI~^^^^^^^^^^~01/01/2003~
-~14425~^~301~^39.^0^^~6~^~RPI~^^^^^^^^^^~12/01/2006~
-~14425~^~304~^1.^0^^~1~^~RPA~^^^^^^^^^^~12/01/2006~
-~14425~^~305~^22.^0^^~1~^~RPA~^^^^^^^^^^~12/01/2006~
-~14425~^~306~^124.^0^^~1~^~RPA~^^^^^^^^^^~12/01/2006~
-~14425~^~307~^10.^0^^~1~^~RPA~^^^^^^^^^^~12/01/2006~
-~14425~^~318~^0.^0^^~6~^~RPI~^^^^^^^^^^~01/01/2003~
-~14425~^~319~^0.^0^^~6~^~RPI~^^^^^^^^^^~01/01/2003~
-~14425~^~320~^0.^0^^~6~^~RPI~^^^^^^^^^^~01/01/2003~
-~14425~^~321~^0.^0^^~6~^~RPI~^^^^^^^^^^~01/01/2003~
-~14425~^~322~^0.^0^^~6~^~RPI~^^^^^^^^^^~01/01/2003~
-~14425~^~334~^0.^0^^~6~^~RPI~^^^^^^^^^^~01/01/2003~
-~14425~^~337~^0.^0^^~6~^~RPI~^^^^^^^^^^~01/01/2003~
-~14425~^~338~^0.^0^^~6~^~RPI~^^^^^^^^^^~01/01/2003~
-~14425~^~417~^9.^0^^~6~^~RPI~^^^^^^^^^^~01/01/2003~
-~14425~^~431~^0.^0^^~6~^~RPI~^^^^^^^^^^~01/01/2003~
-~14425~^~432~^9.^0^^~6~^~RPI~^^^^^^^^^^~01/01/2003~
-~14425~^~435~^9.^0^^~4~^~NC~^^^^^^^^^^~12/01/2006~
-~14425~^~601~^0.^0^^~6~^~RPI~^^^^^^^^^^~01/01/2003~
-~14426~^~208~^153.^0^^~4~^~NC~^^^^^^^^^^~01/01/2003~
-~14426~^~262~^0.^0^^~4~^~BFZN~^~14425~^^^^^^^^^~01/01/2003~
-~14426~^~263~^0.^0^^~4~^~BFZN~^~14425~^^^^^^^^^~01/01/2003~
-~14426~^~268~^640.^0^^~4~^^^^^^^^^^^~05/01/2005~
-~14426~^~301~^399.^1^^~1~^^^^^^^^^^^~05/01/1986~
-~14426~^~304~^34.^1^^~1~^^^^^^^^^^^~05/01/1986~
-~14426~^~305~^115.^1^^~1~^^^^^^^^^^^~01/01/2003~
-~14426~^~306~^465.^1^^~1~^^^^^^^^^^^~01/01/2003~
-~14426~^~307~^26.^1^^~1~^^^^^^^^^^^~01/01/2003~
-~14426~^~318~^21.^1^^~1~^^^^^^^^^^^~05/01/1986~
-~14426~^~319~^0.^0^^~4~^~BFZN~^~14425~^^^^^^^^^~01/01/2003~
-~14426~^~320~^1.^1^^~1~^^^^^^^^^^^~01/01/2003~
-~14426~^~321~^11.^0^^~4~^~O~^~14425~^^^^^^^^^~06/01/2003~
-~14426~^~322~^0.^0^^~4~^~BFZN~^~14425~^^^^^^^^^~01/01/2003~
-~14426~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~
-~14426~^~334~^0.^0^^~4~^~BFZN~^~14425~^^^^^^^^^~01/01/2003~
-~14426~^~337~^0.^0^^~4~^~BFZN~^~14425~^^^^^^^^^~01/01/2003~
-~14426~^~338~^0.^0^^~4~^~BFZN~^~14425~^^^^^^^^^~01/01/2003~
-~14426~^~417~^0.^0^^~4~^~FLA~^^^^^^^^^^~01/01/2003~
-~14426~^~431~^0.^0^^~4~^~BFZN~^~14425~^^^^^^^^^~01/01/2003~
-~14426~^~432~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2003~
-~14426~^~435~^0.^0^^~4~^~NC~^^^^^^^^^^~12/01/2006~
-~14426~^~601~^0.^0^^~1~^^^^^^^^^^^~01/01/2003~
-~14427~^~208~^45.^0^^~6~^~RPI~^^^^^^^^^^~01/01/2003~
-~14427~^~262~^0.^0^^~6~^~RPI~^^^^^^^^^^~01/01/2003~
-~14427~^~263~^0.^0^^~6~^~RPI~^^^^^^^^^^~01/01/2003~
-~14427~^~268~^186.^0^^~6~^~RPI~^^^^^^^^^^~01/01/2003~
-~14427~^~301~^118.^0^^~1~^~RPA~^^^^^^^^^^~12/01/2006~
-~14427~^~304~^11.^0^^~1~^~RPA~^^^^^^^^^^~12/01/2006~
-~14427~^~305~^33.^0^^~1~^~RPA~^^^^^^^^^^~12/01/2006~
-~14427~^~306~^167.^3^17.^~13~^~AI~^^^1^132.^191.^2^89.^244.^~4~^~01/01/2003~
-~14427~^~307~^10.^3^3.^~13~^~AI~^^^1^7.^16.^2^-2.^23.^~4~^~01/01/2003~
-~14427~^~318~^6.^0^^~6~^~RPI~^^^^^^^^^^~01/01/2003~
-~14427~^~319~^0.^0^^~6~^~RPI~^^^^^^^^^^~01/01/2003~
-~14427~^~320~^0.^0^^~6~^~RPI~^^^^^^^^^^~12/01/2006~
-~14427~^~321~^3.^0^^~6~^~RPI~^^^^^^^^^^~12/01/2006~
-~14427~^~322~^0.^0^^~6~^~RPI~^^^^^^^^^^~01/01/2003~
-~14427~^~334~^0.^0^^~6~^~RPI~^^^^^^^^^^~01/01/2003~
-~14427~^~337~^0.^0^^~6~^~RPI~^^^^^^^^^^~01/01/2003~
-~14427~^~338~^0.^0^^~6~^~RPI~^^^^^^^^^^~01/01/2003~
-~14427~^~417~^0.^0^^~6~^~RPI~^^^^^^^^^^~12/01/2006~
-~14427~^~431~^0.^0^^~6~^~RPI~^^^^^^^^^^~12/01/2006~
-~14427~^~432~^0.^0^^~6~^~RPI~^^^^^^^^^^~12/01/2006~
-~14427~^~435~^0.^0^^~4~^~NC~^^^^^^^^^^~12/01/2006~
-~14427~^~601~^0.^0^^~6~^~RPI~^^^^^^^^^^~12/01/2006~
-~14428~^~208~^113.^0^^~4~^~NC~^^^^^^^^^^~05/01/1986~
-~14428~^~268~^473.^0^^~4~^^^^^^^^^^^~04/01/2005~
-~14428~^~301~^113.^3^^~1~^^^^^^^^^^^~05/01/1986~
-~14428~^~304~^13.^3^^~1~^^^^^^^^^^^~05/01/1986~
-~14428~^~305~^100.^3^^~1~^^^^^^^^^^^~05/01/1986~
-~14428~^~306~^182.^3^^~1~^^^^^^^^^^^~05/01/1986~
-~14428~^~307~^83.^3^^~1~^^^^^^^^^^^~05/01/1986~
-~14428~^~318~^120.^2^^~1~^^^^^^^^^^^~05/01/1986~
-~14428~^~319~^26.^0^^~4~^~O~^^^^^^^^^^~04/01/2002~
-~14428~^~320~^26.^0^^~4~^~NC~^^^^^^^^^^~04/01/2002~
-~14428~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~
-~14428~^~417~^3.^3^^~1~^^^^^^^^^^^~05/01/1986~
-~14428~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~
-~14428~^~432~^3.^3^^~1~^^^^^^^^^^^~01/01/2001~
-~14428~^~435~^3.^0^^~4~^~NC~^^^^^^^^^^~10/01/2008~
-~14428~^~601~^11.^5^^~1~^^^^^^^^^^^~05/01/1986~
-~14429~^~208~^0.^0^^~4~^^^^^^^^^^^~05/01/1986~
-~14429~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~10/01/2002~
-~14429~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~10/01/2002~
-~14429~^~268~^0.^0^^~4~^^^^^^^^^^^~04/01/2006~
-~14429~^~301~^3.^236^0.^~1~^~A~^^^1^0.^10.^235^2.^3.^~2, 3~^~04/01/2006~
-~14429~^~304~^1.^236^0.^~1~^~A~^^^1^0.^3.^235^0.^1.^~2, 3~^~04/01/2006~
-~14429~^~305~^0.^236^0.^~1~^~A~^^^1^0.^0.^235^0.^0.^~1, 2, 3~^~04/01/2006~
-~14429~^~306~^1.^236^0.^~1~^~A~^^^1^0.^20.^235^0.^0.^~2, 3~^~04/01/2006~
-~14429~^~307~^3.^236^0.^~1~^~A~^^^1^0.^39.^235^2.^4.^~2, 3~^~04/01/2006~
-~14429~^~318~^0.^0^^~4~^^^^^^^^^^^~05/01/1986~
-~14429~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2002~
-~14429~^~320~^0.^0^^~1~^~AS~^^^^^^^^^^~04/01/2006~
-~14429~^~321~^0.^0^^~7~^~Z~^^^^^^^^^^~10/01/2002~
-~14429~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~10/01/2002~
-~14429~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~
-~14429~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~10/01/2002~
-~14429~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~10/01/2002~
-~14429~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~10/01/2002~
-~14429~^~417~^0.^0^^~4~^^^^^^^^^^^~05/01/1986~
-~14429~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~
-~14429~^~432~^0.^0^^~4~^^^^^^^^^^^~04/01/2006~
-~14429~^~435~^0.^0^^~4~^~NC~^^^^^^^^^^~10/01/2006~
-~14429~^~601~^0.^0^^~1~^^^^^^^^^^^~05/01/1986~
-~14430~^~208~^201.^0^^~4~^~NC~^^^^^^^^^^~12/01/1997~
-~14430~^~268~^841.^0^^~4~^^^^^^^^^^^~05/01/2006~
-~14430~^~301~^11.^1^^~1~^^^^^^^^^^^~05/01/1986~
-~14430~^~304~^5.^1^^~1~^^^^^^^^^^^~05/01/1986~
-~14430~^~305~^5.^1^^~1~^^^^^^^^^^^~05/01/1986~
-~14430~^~306~^49.^1^^~1~^^^^^^^^^^^~05/01/1986~
-~14430~^~307~^4.^2^^~1~^~A~^^^^^^^^^^~12/01/1997~
-~14430~^~318~^34.^1^^~1~^^^^^^^^^^^~05/01/1986~
-~14430~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2002~
-~14430~^~320~^2.^0^^~4~^~NC~^^^^^^^^^^~06/01/2002~
-~14430~^~417~^0.^1^^~1~^^^^^^^^^^^~05/01/1986~
-~14430~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~
-~14430~^~432~^0.^1^^~1~^^^^^^^^^^^~05/01/1986~
-~14430~^~435~^0.^0^^~4~^~NC~^^^^^^^^^^~05/01/2006~
-~14430~^~601~^0.^0^^~1~^^^^^^^^^^^~05/01/1986~
-~14431~^~208~^47.^0^^~4~^~NC~^^^^^^^^^^~12/01/2006~
-~14431~^~262~^0.^0^^~6~^~RPI~^^^^^^^^^^~12/01/2006~
-~14431~^~263~^0.^0^^~6~^~RPI~^^^^^^^^^^~12/01/2006~
-~14431~^~268~^198.^0^^~4~^~NC~^^^^^^^^^^~12/01/2006~
-~14431~^~301~^5.^0^^~1~^~RPA~^^^^^^^^^^~12/01/2006~
-~14431~^~304~^2.^0^^~1~^~RPA~^^^^^^^^^^~12/01/2006~
-~14431~^~305~^1.^0^^~1~^~RPA~^^^^^^^^^^~12/01/2006~
-~14431~^~306~^12.^0^^~1~^~RPA~^^^^^^^^^^~12/01/2006~
-~14431~^~307~^4.^0^^~1~^~RPA~^^^^^^^^^^~12/01/2006~
-~14431~^~318~^8.^0^^~6~^~RPI~^^^^^^^^^^~12/01/2006~
-~14431~^~319~^0.^0^^~6~^~RPI~^^^^^^^^^^~12/01/2006~
-~14431~^~320~^0.^0^^~6~^~RPI~^^^^^^^^^^~12/01/2006~
-~14431~^~321~^0.^0^^~6~^~RPI~^^^^^^^^^^~12/01/2006~
-~14431~^~322~^0.^0^^~6~^~RPI~^^^^^^^^^^~12/01/2006~
-~14431~^~334~^0.^0^^~6~^~RPI~^^^^^^^^^^~12/01/2006~
-~14431~^~337~^0.^0^^~6~^~RPI~^^^^^^^^^^~12/01/2006~
-~14431~^~338~^0.^0^^~6~^~RPI~^^^^^^^^^^~12/01/2006~
-~14431~^~417~^0.^0^^~6~^~RPI~^^^^^^^^^^~12/01/2006~
-~14431~^~431~^0.^0^^~6~^~RPI~^^^^^^^^^^~12/01/2006~
-~14431~^~432~^0.^0^^~6~^~RPI~^^^^^^^^^^~12/01/2006~
-~14431~^~435~^0.^0^^~4~^~NC~^^^^^^^^^^~12/01/2006~
-~14431~^~601~^0.^0^^~6~^~RPI~^^^^^^^^^^~12/01/2006~
-~14432~^~208~^0.^0^^~4~^~NC~^^^^^^^^^^~03/01/2005~
-~14432~^~268~^0.^0^^~4~^~NC~^^^^^^^^^^~03/01/2005~
-~14432~^~301~^3.^1^^~1~^~A~^^^^^^^^^^~03/01/2005~
-~14432~^~304~^1.^1^^~1~^~A~^^^^^^^^^^~03/01/2005~
-~14432~^~305~^0.^1^^~1~^~A~^^^^^^^^^~1~^~03/01/2005~
-~14432~^~306~^0.^1^^~1~^~A~^^^^^^^^^~1~^~03/01/2005~
-~14432~^~307~^0.^1^^~1~^~A~^^^^^^^^^~1~^~03/01/2005~
-~14433~^~208~^0.^0^^~4~^~NC~^^^^^^^^^^~03/01/2005~
-~14433~^~268~^0.^0^^~4~^~NC~^^^^^^^^^^~03/01/2005~
-~14433~^~301~^0.^1^^~1~^~A~^^^^^^^^^~1~^~03/01/2005~
-~14433~^~304~^0.^1^^~1~^~A~^^^^^^^^^~1~^~03/01/2005~
-~14433~^~305~^0.^1^^~1~^~A~^^^^^^^^^~1~^~03/01/2005~
-~14433~^~306~^0.^1^^~1~^~A~^^^^^^^^^~1~^~03/01/2005~
-~14433~^~307~^0.^1^^~1~^~A~^^^^^^^^^~1~^~03/01/2005~
-~14434~^~208~^0.^0^^~4~^~NC~^^^^^^^^^^~03/01/2005~
-~14434~^~268~^0.^0^^~4~^~NC~^^^^^^^^^^~03/01/2005~
-~14434~^~301~^0.^1^^~1~^~A~^^^^^^^^^~1~^~03/01/2005~
-~14434~^~304~^0.^1^^~1~^~A~^^^^^^^^^~1~^~03/01/2005~
-~14434~^~305~^0.^1^^~1~^~A~^^^^^^^^^~1~^~03/01/2005~
-~14434~^~306~^0.^1^^~1~^~A~^^^^^^^^^~1~^~03/01/2005~
-~14434~^~307~^0.^1^^~1~^~A~^^^^^^^^^~1~^~03/01/2005~
-~14436~^~208~^53.^0^^~4~^~NC~^^^^^^^^^^~04/01/2005~
-~14436~^~262~^0.^0^^~4~^~FLA~^^^^^^^^^^~04/01/2005~
-~14436~^~263~^0.^0^^~4~^~FLA~^^^^^^^^^^~04/01/2005~
-~14436~^~268~^221.^0^^~4~^~NC~^^^^^^^^^^~04/01/2005~
-~14436~^~301~^100.^0^^~4~^^^^^^^^^^^~04/01/2005~
-~14436~^~304~^5.^0^^~4~^^^^^^^^^^^~04/01/2005~
-~14436~^~305~^7.^0^^~4~^^^^^^^^^^^~04/01/2005~
-~14436~^~306~^83.^0^^~4~^^^^^^^^^^^~04/01/2005~
-~14436~^~307~^54.^0^^~4~^^^^^^^^^^^~04/01/2005~
-~14436~^~318~^417.^0^^~4~^~NC~^^^^^^^^^^~04/01/2005~
-~14436~^~319~^0.^0^^~4~^~FLC~^^^^^^^^^^~04/01/2005~
-~14436~^~320~^21.^0^^~4~^~NC~^^^^^^^^^^~04/01/2005~
-~14436~^~321~^219.^0^^~4~^~FLC~^^^^^^^^^^~04/01/2005~
-~14436~^~322~^0.^0^^~4~^~FLC~^^^^^^^^^^~04/01/2005~
-~14436~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~
-~14436~^~334~^62.^0^^~4~^~FLC~^^^^^^^^^^~04/01/2005~
-~14436~^~337~^0.^0^^~4~^~FLC~^^^^^^^^^^~04/01/2005~
-~14436~^~338~^8.^0^^~4~^~FLC~^^^^^^^^^^~04/01/2005~
-~14436~^~417~^5.^0^^~4~^~NR~^^^^^^^^^^~04/01/2005~
-~14436~^~431~^0.^0^^~4~^~FLA~^^^^^^^^^^~04/01/2005~
-~14436~^~432~^5.^0^^~4~^~FLA~^^^^^^^^^^~04/01/2005~
-~14436~^~435~^5.^0^^~4~^~NC~^^^^^^^^^^~12/01/2006~
-~14436~^~601~^0.^0^^~7~^^^^^^^^^^^~04/01/2005~
-~14437~^~208~^0.^0^^~4~^~NC~^^^^^^^^^^~03/01/2005~
-~14437~^~268~^0.^0^^~4~^~NC~^^^^^^^^^^~03/01/2005~
-~14437~^~301~^0.^2^^~1~^~A~^^^^^^^^^^~03/01/2005~
-~14437~^~304~^0.^2^^~1~^~A~^^^^^^^^^^~03/01/2005~
-~14437~^~306~^0.^2^^~1~^~A~^^^^^^^^^^~03/01/2005~
-~14437~^~307~^0.^2^^~1~^~A~^^^^^^^^^^~03/01/2005~
-~14438~^~208~^0.^0^^~4~^~NC~^^^^^^^^^^~03/01/2005~
-~14438~^~268~^0.^0^^~4~^~NC~^^^^^^^^^^~03/01/2005~
-~14438~^~301~^3.^4^0.^~1~^~A~^^^^^^^^^^~03/01/2005~
-~14438~^~304~^0.^4^0.^~1~^~A~^^^^^^^^^^~03/01/2005~
-~14438~^~306~^0.^4^0.^~1~^~A~^^^^^^^^^^~03/01/2005~
-~14438~^~307~^1.^4^0.^~1~^~A~^^^^^^^^^^~03/01/2005~
-~14439~^~208~^0.^0^^~4~^~NC~^^^^^^^^^^~03/01/2005~
-~14439~^~268~^0.^0^^~4~^~NC~^^^^^^^^^^~03/01/2005~
-~14439~^~301~^4.^4^0.^~1~^~A~^^^^^^^^^^~03/01/2005~
-~14439~^~304~^2.^4^0.^~1~^~A~^^^^^^^^^^~03/01/2005~
-~14439~^~306~^0.^4^0.^~1~^~A~^^^^^^^^^^~03/01/2005~
-~14439~^~307~^1.^4^0.^~1~^~A~^^^^^^^^^^~03/01/2005~
-~14440~^~208~^0.^0^^~4~^~NC~^^^^^^^^^^~04/01/2005~
-~14440~^~268~^1.^0^^~4~^~NC~^^^^^^^^^^~04/01/2005~
-~14440~^~301~^3.^1^^~1~^~A~^^^^^^^^^^~04/01/2005~
-~14440~^~304~^1.^1^^~1~^~A~^^^^^^^^^^~04/01/2005~
-~14440~^~305~^0.^1^^~1~^~A~^^^^^^^^^~1~^~04/01/2005~
-~14440~^~306~^0.^1^^~1~^~A~^^^^^^^^^~1~^~04/01/2005~
-~14440~^~307~^1.^1^^~1~^~A~^^^^^^^^^^~04/01/2005~
-~14450~^~208~^388.^0^^~4~^~NC~^^^^^^^^^^~04/01/2005~
-~14450~^~268~^1621.^0^^~4~^~NC~^^^^^^^^^^~04/01/2005~
-~14450~^~301~^40.^1^^~1~^~A~^^^^^^^^^^~04/01/2005~
-~14450~^~304~^1.^1^^~1~^~A~^^^^^^^^^^~04/01/2005~
-~14450~^~305~^120.^1^^~1~^~A~^^^^^^^^^^~04/01/2005~
-~14450~^~306~^30.^1^^~1~^~A~^^^^^^^^^^~04/01/2005~
-~14450~^~307~^63.^1^^~1~^~A~^^^^^^^^^^~04/01/2005~
-~14450~^~601~^0.^1^^~8~^~LC~^^^^^^^^^^~04/01/2005~
-~14460~^~208~^26.^0^^~4~^~NC~^^^^^^^^^^~03/01/2007~
-~14460~^~262~^0.^0^^~4~^~FLA~^^^^^^^^^^~03/01/2007~
-~14460~^~263~^0.^0^^~4~^~FLA~^^^^^^^^^^~03/01/2007~
-~14460~^~268~^110.^0^^~4~^~NC~^^^^^^^^^^~03/01/2007~
-~14460~^~301~^1.^2^^~1~^~A~^^^1^0.^1.^^^^^~03/01/2007~
-~14460~^~304~^0.^2^^~1~^~A~^^^1^0.^0.^^^^~1~^~03/01/2007~
-~14460~^~305~^10.^2^^~1~^~A~^^^1^9.^10.^^^^^~03/01/2007~
-~14460~^~306~^15.^2^^~1~^~A~^^^1^15.^16.^^^^^~03/01/2007~
-~14460~^~307~^39.^2^^~1~^~A~^^^1^39.^39.^^^^^~03/01/2007~
-~14460~^~318~^0.^0^^~4~^~FLA~^^^^^^^^^^~03/01/2007~
-~14460~^~319~^0.^0^^~4~^~FLA~^^^^^^^^^^~03/01/2007~
-~14460~^~320~^0.^0^^~4~^~FLA~^^^^^^^^^^~03/01/2007~
-~14460~^~321~^0.^0^^~4~^~FLA~^^^^^^^^^^~03/01/2007~
-~14460~^~322~^0.^0^^~4~^~FLA~^^^^^^^^^^~03/01/2007~
-~14460~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~
-~14460~^~334~^0.^0^^~4~^~FLA~^^^^^^^^^^~03/01/2007~
-~14460~^~337~^0.^0^^~4~^~FLA~^^^^^^^^^^~03/01/2007~
-~14460~^~338~^0.^0^^~4~^~FLA~^^^^^^^^^^~03/01/2007~
-~14460~^~417~^0.^0^^~4~^~FLA~^^^^^^^^^^~03/01/2007~
-~14460~^~431~^0.^0^^~4~^~FLA~^^^^^^^^^^~03/01/2007~
-~14460~^~432~^0.^0^^~4~^~FLA~^^^^^^^^^^~03/01/2007~
-~14460~^~435~^0.^0^^~4~^~NC~^^^^^^^^^^~02/01/2008~
-~14460~^~601~^0.^1^^~8~^~LC~^^^^^^^^^^~03/01/2007~
-~14461~^~208~^32.^0^^~4~^~FLA~^^^^^^^^^^~11/01/2007~
-~14461~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2013~
-~14461~^~263~^0.^0^^~4~^~FLA~^^^^^^^^^^~03/01/2007~
-~14461~^~268~^134.^0^^~4~^~FLA~^^^^^^^^^^~11/01/2007~
-~14461~^~301~^1.^2^^~1~^~A~^^^1^1.^1.^^^^^~11/01/2007~
-~14461~^~304~^0.^2^^~8~^~LC~^^^1^0.^0.^1^^^^~06/01/2013~
-~14461~^~305~^1.^2^^~1~^~A~^^^1^1.^1.^^^^^~11/01/2007~
-~14461~^~306~^18.^2^^~1~^~A~^^^1^16.^21.^^^^^~11/01/2007~
-~14461~^~307~^42.^0^^~4~^~NR~^^^^^^^^^^~06/01/2013~
-~14461~^~318~^0.^0^^~4~^~FLA~^^^^^^^^^^~03/01/2007~
-~14461~^~319~^0.^0^^~4~^~FLA~^^^^^^^^^^~03/01/2007~
-~14461~^~320~^0.^0^^~4~^~FLA~^^^^^^^^^^~03/01/2007~
-~14461~^~321~^0.^0^^~4~^~FLA~^^^^^^^^^^~03/01/2007~
-~14461~^~322~^0.^0^^~4~^~FLA~^^^^^^^^^^~03/01/2007~
-~14461~^~324~^0.^0^^~4~^~FLA~^^^^^^^^^^~11/01/2007~
-~14461~^~334~^0.^0^^~4~^~FLA~^^^^^^^^^^~03/01/2007~
-~14461~^~337~^0.^0^^~4~^~FLA~^^^^^^^^^^~03/01/2007~
-~14461~^~338~^0.^0^^~4~^~FLA~^^^^^^^^^^~03/01/2007~
-~14461~^~417~^0.^0^^~4~^~FLA~^^^^^^^^^^~03/01/2007~
-~14461~^~431~^0.^0^^~4~^~FLA~^^^^^^^^^^~03/01/2007~
-~14461~^~432~^0.^0^^~4~^~FLA~^^^^^^^^^^~03/01/2007~
-~14461~^~435~^0.^0^^~4~^~NC~^^^^^^^^^^~11/01/2007~
-~14461~^~601~^0.^0^^~4~^~FLA~^^^^^^^^^^~11/01/2007~
-~14462~^~208~^5.^0^^~4~^~NC~^^^^^^^^^^~10/01/2008~
-~14462~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2005~
-~14462~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2005~
-~14462~^~268~^19.^0^^~4~^~NC~^^^^^^^^^^~05/01/2014~
-~14462~^~301~^1.^2^^~1~^~A~^^^1^1.^1.^1^^^^~04/01/2005~
-~14462~^~304~^0.^2^^~1~^~A~^^^1^0.^0.^^^^~1~^~10/01/2008~
-~14462~^~305~^25.^0^^~4~^~NR~^^^^^^^^^^~06/01/2013~
-~14462~^~306~^16.^2^^~1~^~A~^^^1^16.^17.^1^^^^~04/01/2005~
-~14462~^~307~^33.^0^^~4~^~NR~^^^^^^^^^^~06/01/2013~
-~14462~^~318~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2005~
-~14462~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2005~
-~14462~^~320~^0.^0^^~1~^~AS~^^^^^^^^^^~09/01/2015~
-~14462~^~321~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2005~
-~14462~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2005~
-~14462~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~
-~14462~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2005~
-~14462~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2005~
-~14462~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2005~
-~14462~^~417~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2005~
-~14462~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2005~
-~14462~^~432~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2005~
-~14462~^~435~^0.^0^^~4~^~NC~^^^^^^^^^^~08/01/2009~
-~14462~^~601~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2005~
-~14475~^~208~^39.^0^^~4~^~NC~^^^^^^^^^^~04/01/2005~
-~14475~^~262~^5.^1^^~1~^~A~^^^^^^^^^^~02/01/2005~
-~14475~^~263~^0.^1^^~1~^~A~^^^^^^^^^~1~^~04/01/2005~
-~14475~^~268~^164.^0^^~4~^~NC~^^^^^^^^^^~04/01/2005~
-~14475~^~301~^3.^1^^~1~^~A~^^^^^^^^^^~02/01/2005~
-~14475~^~304~^1.^1^^~1~^~A~^^^^^^^^^^~02/01/2005~
-~14475~^~305~^1.^1^^~1~^~A~^^^^^^^^^^~02/01/2005~
-~14475~^~306~^10.^1^^~1~^~A~^^^^^^^^^^~02/01/2005~
-~14475~^~307~^4.^1^^~1~^~A~^^^^^^^^^^~02/01/2005~
-~14475~^~318~^0.^1^^~8~^~LC~^^^^^^^^^^~04/01/2005~
-~14475~^~601~^0.^1^^~8~^~LC~^^^^^^^^^^~04/01/2005~
-~14476~^~208~^35.^0^^~4~^~NC~^^^^^^^^^^~04/01/2005~
-~14476~^~262~^2.^2^^~1~^~A~^^^1^2.^2.^1^^^^~02/01/2005~
-~14476~^~263~^0.^2^^~1~^~A~^^^1^0.^0.^^^^~1~^~04/01/2005~
-~14476~^~268~^147.^0^^~4~^~NC~^^^^^^^^^^~04/01/2005~
-~14476~^~301~^1.^2^^~1~^~A~^^^1^1.^1.^1^^^^~02/01/2005~
-~14476~^~304~^0.^2^^~1~^~A~^^^1^0.^0.^^^^~1~^~02/01/2005~
-~14476~^~305~^26.^2^^~1~^~A~^^^1^26.^26.^1^^^^~02/01/2005~
-~14476~^~306~^19.^2^^~1~^~A~^^^1^19.^19.^^^^^~02/01/2005~
-~14476~^~307~^21.^2^^~1~^~A~^^^1^20.^21.^1^^^^~02/01/2005~
-~14476~^~601~^0.^2^^~8~^~LC~^^^1^0.^0.^1^^^^~04/01/2005~
-~14530~^~208~^84.^0^^~4~^~NC~^^^^^^^^^^~05/01/1986~
-~14530~^~268~^351.^0^^~4~^^^^^^^^^^^~05/01/2006~
-~14530~^~301~^2.^2^^~1~^^^^^^^^^^^~05/01/1986~
-~14530~^~304~^1.^2^^~1~^^^^^^^^^^^~05/01/1986~
-~14530~^~305~^6.^2^^~1~^^^^^^^^^^^~05/01/1986~
-~14530~^~306~^7.^1^^~1~^^^^^^^^^^^~05/01/1986~
-~14530~^~307~^33.^1^^~1~^^^^^^^^^^^~05/01/1986~
-~14530~^~318~^21.^2^^~1~^^^^^^^^^^^~05/01/1986~
-~14530~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2002~
-~14530~^~320~^1.^0^^~4~^~NC~^^^^^^^^^^~06/01/2002~
-~14530~^~417~^0.^0^^~1~^^^^^^^^^^^~05/01/1986~
-~14530~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~
-~14530~^~432~^0.^0^^~1~^^^^^^^^^^^~05/01/1986~
-~14530~^~435~^0.^0^^~4~^~NC~^^^^^^^^^^~05/01/2006~
-~14530~^~601~^0.^0^^~1~^^^^^^^^^^^~05/01/1986~
-~14531~^~208~^149.^0^^~4~^~NC~^^^^^^^^^^~05/01/1986~
-~14531~^~268~^623.^0^^~4~^^^^^^^^^^^
-~14531~^~301~^1.^0^^~1~^^^^^^^^^^^~05/01/1986~
-~14531~^~304~^1.^0^^~1~^^^^^^^^^^^~05/01/1986~
-~14531~^~305~^6.^0^^~1~^^^^^^^^^^^~05/01/1986~
-~14531~^~306~^5.^0^^~1~^^^^^^^^^^^~05/01/1986~
-~14531~^~307~^20.^0^^~1~^^^^^^^^^^^~05/01/1986~
-~14531~^~318~^13.^0^^~1~^^^^^^^^^^^~05/01/1986~
-~14531~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2002~
-~14531~^~417~^0.^0^^~1~^^^^^^^^^^^~05/01/1986~
-~14531~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~
-~14531~^~432~^0.^0^^~1~^^^^^^^^^^^~05/01/1986~
-~14531~^~435~^0.^0^^~4~^~NC~^^^^^^^^^^~01/01/2001~
-~14531~^~601~^0.^0^^~1~^^^^^^^^^^^~05/01/1986~
-~14532~^~208~^275.^0^^~4~^~NC~^^^^^^^^^^~05/01/1986~
-~14532~^~268~^1151.^0^^~4~^^^^^^^^^^^
-~14532~^~301~^0.^235^^~1~^^^^^^^^^^^~05/01/1986~
-~14532~^~304~^0.^231^^~1~^^^^^^^^^^^~05/01/1986~
-~14532~^~305~^4.^13^^~1~^^^^^^^^^^^~05/01/1986~
-~14532~^~306~^2.^254^^~1~^^^^^^^^^^^~05/01/1986~
-~14532~^~307~^1.^260^^~1~^^^^^^^^^^^~05/01/1986~
-~14532~^~318~^0.^0^^~1~^^^^^^^^^^^~05/01/1986~
-~14532~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2002~
-~14532~^~320~^0.^0^^~4~^~NC~^^^^^^^^^^~06/01/2002~
-~14532~^~417~^0.^14^^~1~^^^^^^^^^^^~05/01/1986~
-~14532~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~
-~14532~^~432~^0.^14^^~1~^^^^^^^^^^^~05/01/1986~
-~14532~^~435~^0.^0^^~4~^~NC~^^^^^^^^^^~01/01/2001~
-~14532~^~601~^0.^0^^~1~^^^^^^^^^^^~05/01/1986~
-~14533~^~208~^295.^0^^~4~^~NC~^^^^^^^^^^~05/01/1986~
-~14533~^~268~^1234.^0^^~4~^^^^^^^^^^^
-~14533~^~301~^0.^235^^~1~^^^^^^^^^^^~05/01/1986~
-~14533~^~304~^0.^231^^~1~^^^^^^^^^^^~05/01/1986~
-~14533~^~305~^4.^13^^~1~^^^^^^^^^^^~05/01/1986~
-~14533~^~306~^2.^254^^~1~^^^^^^^^^^^~05/01/1986~
-~14533~^~307~^1.^260^^~1~^^^^^^^^^^^~05/01/1986~
-~14533~^~318~^0.^0^^~1~^^^^^^^^^^^~05/01/1986~
-~14533~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2002~
-~14533~^~417~^0.^14^^~1~^^^^^^^^^^^~05/01/1986~
-~14533~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~
-~14533~^~432~^0.^14^^~1~^^^^^^^^^^^~05/01/1986~
-~14533~^~435~^0.^0^^~4~^~NC~^^^^^^^^^^~01/01/2001~
-~14533~^~601~^0.^0^^~1~^^^^^^^^^^^~05/01/1986~
-~14534~^~208~^308.^0^^~4~^~NC~^^^^^^^^^^~05/01/1986~
-~14534~^~262~^26.^0^^~4~^~FLA~^^^^^^^^^^~12/01/1997~
-~14534~^~263~^0.^0^^~4~^~FLA~^^^^^^^^^^~12/01/1997~
-~14534~^~268~^1289.^0^^~4~^^^^^^^^^^^~04/01/2005~
-~14534~^~301~^1.^2^^~1~^^^^^^^^^^^~05/01/1986~
-~14534~^~304~^3.^2^^~1~^^^^^^^^^^^~05/01/1986~
-~14534~^~305~^6.^2^^~1~^^^^^^^^^^^~05/01/1986~
-~14534~^~306~^30.^2^^~1~^^^^^^^^^^^~05/01/1986~
-~14534~^~307~^8.^2^^~1~^^^^^^^^^^^~05/01/1986~
-~14534~^~318~^0.^0^^~1~^^^^^^^^^^^~05/01/1986~
-~14534~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2002~
-~14534~^~320~^0.^0^^~4~^~NC~^^^^^^^^^^~06/01/2002~
-~14534~^~417~^0.^0^^~1~^^^^^^^^^^^~05/01/1986~
-~14534~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~
-~14534~^~432~^0.^0^^~1~^^^^^^^^^^^~05/01/1986~
-~14534~^~435~^0.^0^^~4~^~NC~^^^^^^^^^^~05/01/2006~
-~14534~^~601~^0.^0^^~1~^^^^^^^^^^^~05/01/1986~
-~14536~^~208~^152.^0^^~4~^~NC~^^^^^^^^^^~11/01/2002~
-~14536~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~11/01/2002~
-~14536~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~11/01/2002~
-~14536~^~268~^638.^0^^~4~^~NC~^^^^^^^^^^~11/01/2002~
-~14536~^~301~^8.^26^0.^~1~^^^^^^^^^^^~05/01/1986~
-~14536~^~304~^9.^19^0.^~1~^^^^^^^^^^^~05/01/1986~
-~14536~^~305~^9.^2^^~1~^^^^^^^^^^^~05/01/1986~
-~14536~^~306~^92.^81^8.^~1~^^^^^^^^^^^~05/01/1986~
-~14536~^~307~^9.^89^1.^~1~^^^^^^^^^^^~05/01/1986~
-~14536~^~318~^0.^0^^~4~^^^^^^^^^^^~05/01/1986~
-~14536~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2002~
-~14536~^~320~^0.^0^^~1~^~AS~^^^^^^^^^^~11/01/2002~
-~14536~^~321~^0.^0^^~7~^~Z~^^^^^^^^^^~11/01/2002~
-~14536~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~11/01/2002~
-~14536~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~11/01/2002~
-~14536~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~11/01/2002~
-~14536~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~11/01/2002~
-~14536~^~417~^0.^3^0.^~1~^^^^^^^^^^^~05/01/1986~
-~14536~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~
-~14536~^~432~^0.^3^0.^~1~^^^^^^^^^^^~11/01/2002~
-~14536~^~435~^0.^0^^~4~^~NC~^^^^^^^^^^~11/01/2002~
-~14536~^~601~^0.^0^^~1~^^^^^^^^^^^~05/01/1986~
-~14537~^~208~^0.^0^^~4~^~NC~^^^^^^^^^^~05/01/1986~
-~14537~^~268~^0.^0^^~4~^^^^^^^^^^^
-~14537~^~301~^4.^56^^~1~^^^^^^^^^^^~05/01/1986~
-~14537~^~304~^1.^56^0.^~1~^^^^^^^^^^^~05/01/1986~
-~14537~^~305~^0.^23^^~1~^^^^^^^^^^^~05/01/1986~
-~14537~^~306~^2.^56^0.^~1~^^^^^^^^^^^~05/01/1986~
-~14537~^~307~^16.^72^0.^~1~^^^^^^^^^^^~05/01/1986~
-~14537~^~318~^0.^0^^~1~^^^^^^^^^^^~05/01/1986~
-~14537~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2002~
-~14537~^~320~^0.^0^^~4~^~NC~^^^^^^^^^^~06/01/2002~
-~14537~^~417~^0.^4^^~1~^^^^^^^^^^^~05/01/1986~
-~14537~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~
-~14537~^~432~^0.^4^^~1~^^^^^^^^^^^~05/01/1986~
-~14537~^~435~^0.^0^^~4~^~NC~^^^^^^^^^^~01/01/2001~
-~14537~^~601~^0.^0^^~1~^^^^^^^^^^^~05/01/1986~
-~14538~^~208~^359.^0^^~4~^~NC~^^^^^^^^^^~12/01/2006~
-~14538~^~262~^34.^0^^~4~^~BFZN~^^^^^^^^^^~07/01/2013~
-~14538~^~263~^608.^0^^~4~^~BFZN~^~43260~^^^^^^^^^~07/01/2013~
-~14538~^~268~^1504.^0^^~4~^~NC~^^^^^^^^^^~12/01/2006~
-~14538~^~301~^1440.^1^^~1~^^^^^^^^^^^~12/01/2006~
-~14538~^~304~^208.^2^^~1~^^^^^^^^^^^~05/01/1986~
-~14538~^~305~^1630.^1^^~1~^^^^^^^^^^^~12/01/2006~
-~14538~^~306~^2702.^2^^~1~^^^^^^^^^^^~05/01/1986~
-~14538~^~307~^653.^1^^~1~^^^^^^^^^^^~05/01/1986~
-~14538~^~318~^1600.^0^^~4~^~FLA~^^^^^^^^^^~12/01/2006~
-~14538~^~319~^479.^0^^~4~^~FLA~^^^^^^^^^^~12/01/2006~
-~14538~^~320~^479.^0^^~4~^~FLA~^^^^^^^^^^~12/01/2006~
-~14538~^~321~^1.^0^^~4~^~FLA~^^^^^^^^^^~12/01/2006~
-~14538~^~322~^0.^0^^~4~^~FLA~^^^^^^^^^^~02/01/2003~
-~14538~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~
-~14538~^~334~^0.^0^^~4~^~FLA~^^^^^^^^^^~02/01/2003~
-~14538~^~337~^0.^0^^~4~^~FLA~^^^^^^^^^^~02/01/2003~
-~14538~^~338~^0.^0^^~4~^~FLA~^^^^^^^^^^~12/01/2006~
-~14538~^~417~^27.^0^^~4~^~FLA~^^^^^^^^^^~12/01/2006~
-~14538~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~
-~14538~^~432~^27.^0^^~4~^~FLA~^^^^^^^^^^~12/01/2006~
-~14538~^~435~^27.^0^^~4~^~NC~^^^^^^^^^^~12/01/2006~
-~14538~^~601~^11.^0^^~4~^~FLA~^^^^^^^^^^~12/01/2006~
-~14541~^~208~^37.^0^^~6~^~RPI~^^^^^^^^^^~02/01/2003~
-~14541~^~262~^0.^0^^~6~^~RPI~^^^^^^^^^^~02/01/2003~
-~14541~^~263~^0.^0^^~6~^~RPI~^^^^^^^^^^~02/01/2003~
-~14541~^~268~^155.^0^^~6~^~RPI~^^^^^^^^^^~02/01/2003~
-~14541~^~301~^17.^0^^~1~^~RPA~^^^^^^^^^^~12/01/2006~
-~14541~^~304~^1.^0^^~6~^~RPI~^^^^^^^^^^~12/01/2006~
-~14541~^~305~^0.^0^^~6~^~RPI~^^^^^^^^^^~12/01/2006~
-~14541~^~306~^1.^0^^~1~^~RPA~^^^^^^^^^^~12/01/2006~
-~14541~^~307~^7.^0^^~1~^~RPA~^^^^^^^^^^~12/01/2006~
-~14541~^~318~^0.^0^^~6~^~RPI~^^^^^^^^^^~02/01/2003~
-~14541~^~319~^0.^0^^~6~^~RPI~^^^^^^^^^^~02/01/2003~
-~14541~^~320~^0.^0^^~4~^~NC~^^^^^^^^^^~09/01/2015~
-~14541~^~321~^0.^0^^~6~^~RPI~^^^^^^^^^^~02/01/2003~
-~14541~^~322~^0.^0^^~6~^~RPI~^^^^^^^^^^~02/01/2003~
-~14541~^~334~^0.^0^^~6~^~RPI~^^^^^^^^^^~02/01/2003~
-~14541~^~337~^0.^0^^~6~^~RPI~^^^^^^^^^^~02/01/2003~
-~14541~^~338~^0.^0^^~6~^~RPI~^^^^^^^^^^~02/01/2003~
-~14541~^~417~^0.^0^^~6~^~RPI~^^^^^^^^^^~02/01/2003~
-~14541~^~431~^0.^0^^~6~^~RPI~^^^^^^^^^^~02/01/2003~
-~14541~^~432~^0.^0^^~6~^~RPI~^^^^^^^^^^~02/01/2003~
-~14541~^~435~^0.^0^^~4~^~NC~^^^^^^^^^^~12/01/2006~
-~14541~^~601~^0.^0^^~6~^~RPI~^^^^^^^^^^~02/01/2003~
-~14542~^~208~^192.^0^^~4~^~NC~^^^^^^^^^^~01/01/2009~
-~14542~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2009~
-~14542~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2009~
-~14542~^~268~^804.^0^^~4~^~NC~^^^^^^^^^^~01/01/2009~
-~14542~^~301~^8.^2^^~1~^~A~^^^1^6.^9.^1^^^^~01/01/2009~
-~14542~^~304~^7.^2^^~1~^~A~^^^1^7.^7.^1^^^^~01/01/2009~
-~14542~^~305~^7.^2^^~1~^~A~^^^1^7.^7.^1^^^^~01/01/2009~
-~14542~^~306~^76.^2^^~1~^~A~^^^1^71.^81.^1^^^^~01/01/2009~
-~14542~^~307~^4.^2^^~1~^~A~^^^1^4.^5.^1^^^^~01/01/2009~
-~14542~^~318~^0.^0^^~1~^~AS~^^^^^^^^^^~01/01/2009~
-~14542~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2002~
-~14542~^~320~^0.^0^^~1~^~AS~^^^^^^^^^^~01/01/2009~
-~14542~^~321~^0.^2^^~1~^~A~^^^1^0.^0.^^^^~1~^~01/01/2009~
-~14542~^~322~^0.^2^^~1~^~A~^^^1^0.^0.^^^^~1~^~01/01/2009~
-~14542~^~334~^0.^2^^~1~^~A~^^^1^0.^0.^^^^~1~^~01/01/2009~
-~14542~^~337~^0.^2^^~1~^~A~^^^1^0.^0.^^^^~1~^~01/01/2009~
-~14542~^~417~^11.^2^^~1~^~A~^^^1^8.^13.^1^^^^~01/01/2009~
-~14542~^~431~^0.^2^^~7~^~Z~^^^1^0.^0.^^^^^~01/01/2009~
-~14542~^~432~^11.^2^^~1~^~A~^^^1^8.^13.^1^^^^~01/01/2009~
-~14542~^~435~^11.^0^^~4~^~NC~^^^^^^^^^^~05/01/2009~
-~14542~^~601~^0.^0^^~1~^^^^^^^^^^^~01/01/2009~
-~14543~^~208~^43.^0^^~6~^~RPI~^^^^^^^^^^~01/01/2009~
-~14543~^~262~^0.^0^^~6~^~RPI~^^^^^^^^^^~12/01/2006~
-~14543~^~263~^0.^0^^~6~^~RPI~^^^^^^^^^^~12/01/2006~
-~14543~^~268~^178.^0^^~6~^~RPI~^^^^^^^^^^~01/01/2009~
-~14543~^~301~^4.^0^^~1~^~RPA~^^^^^^^^^^~01/01/2009~
-~14543~^~304~^2.^0^^~1~^~RPA~^^^^^^^^^^~01/01/2009~
-~14543~^~305~^2.^0^^~1~^~RPA~^^^^^^^^^^~01/01/2009~
-~14543~^~306~^17.^0^^~1~^~RPA~^^^^^^^^^^~01/01/2009~
-~14543~^~307~^4.^0^^~1~^~RPA~^^^^^^^^^^~01/01/2009~
-~14543~^~318~^0.^0^^~6~^~RPI~^^^^^^^^^^~01/01/2009~
-~14543~^~319~^0.^0^^~6~^~RPI~^^^^^^^^^^~12/01/2006~
-~14543~^~320~^0.^0^^~4~^~NC~^^^^^^^^^^~09/01/2015~
-~14543~^~321~^0.^0^^~6~^~RPI~^^^^^^^^^^~01/01/2009~
-~14543~^~322~^0.^0^^~6~^~RPI~^^^^^^^^^^~01/01/2009~
-~14543~^~324~^0.^0^^~6~^~RPI~^^^^^^^^^^~01/01/2009~
-~14543~^~334~^0.^0^^~6~^~RPI~^^^^^^^^^^~01/01/2009~
-~14543~^~337~^0.^0^^~6~^~RPI~^^^^^^^^^^~01/01/2009~
-~14543~^~338~^0.^0^^~6~^~RPI~^^^^^^^^^^~01/01/2009~
-~14543~^~417~^2.^0^^~6~^~RPI~^^^^^^^^^^~01/01/2009~
-~14543~^~431~^0.^0^^~6~^~RPI~^^^^^^^^^^~12/01/2006~
-~14543~^~432~^2.^0^^~6~^~RPI~^^^^^^^^^^~01/01/2009~
-~14543~^~435~^2.^0^^~4~^~NC~^^^^^^^^^^~03/01/2009~
-~14543~^~601~^0.^0^^~6~^~RPI~^^^^^^^^^^~12/01/2006~
-~14544~^~208~^1.^0^^~4~^~NC~^^^^^^^^^^~05/01/1986~
-~14544~^~262~^20.^41^^~1~^^^^^^^^^^^~05/01/1986~
-~14544~^~268~^4.^0^^~4~^^^^^^^^^^^
-~14544~^~301~^0.^0^^~1~^^^^^^^^^^^~05/01/1986~
-~14544~^~304~^1.^0^^~1~^^^^^^^^^^^~05/01/1986~
-~14544~^~305~^1.^0^^~1~^^^^^^^^^^^~05/01/1986~
-~14544~^~306~^21.^0^^~1~^^^^^^^^^^^~05/01/1986~
-~14544~^~307~^0.^0^^~1~^^^^^^^^^^^~05/01/1986~
-~14544~^~318~^0.^0^^~4~^^^^^^^^^^^~05/01/1986~
-~14544~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2002~
-~14544~^~417~^5.^7^0.^~1~^^^^^^^^^^^~05/01/1986~
-~14544~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~
-~14544~^~432~^5.^7^0.^~1~^^^^^^^^^^^~04/01/2001~
-~14544~^~435~^5.^0^^~4~^~NC~^^^^^^^^^^~04/01/2001~
-~14544~^~601~^0.^0^^~1~^^^^^^^^^^^~05/01/1986~
-~14545~^~208~^1.^0^^~4~^~NC~^^^^^^^^^^~05/01/1986~
-~14545~^~262~^0.^1^^~1~^^^^^^^^^^^~05/01/1986~
-~14545~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~
-~14545~^~268~^4.^0^^~4~^^^^^^^^^^^~03/01/2006~
-~14545~^~301~^2.^10^^~1~^^^^^^^^^^^~05/01/1986~
-~14545~^~304~^1.^3^^~1~^^^^^^^^^^^~05/01/1986~
-~14545~^~305~^0.^0^^~1~^^^^^^^^^^^~05/01/1986~
-~14545~^~306~^9.^33^^~1~^^^^^^^^^^^~05/01/1986~
-~14545~^~307~^1.^32^^~1~^^^^^^^^^^^~05/01/1986~
-~14545~^~318~^20.^0^^~1~^^^^^^^^^^^~05/01/1986~
-~14545~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2002~
-~14545~^~320~^1.^0^^~4~^~NC~^^^^^^^^^^~06/01/2002~
-~14545~^~321~^12.^0^^~4~^~NR~^^^^^^^^^^~02/01/2003~
-~14545~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~
-~14545~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~
-~14545~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~
-~14545~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~
-~14545~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~
-~14545~^~417~^1.^5^^~1~^^^^^^^^^^^~05/01/1986~
-~14545~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~
-~14545~^~432~^1.^5^^~1~^^^^^^^^^^^~05/01/1986~
-~14545~^~435~^1.^0^^~4~^~NC~^^^^^^^^^^~10/01/2006~
-~14545~^~601~^0.^0^^~1~^^^^^^^^^^^~05/01/1986~
-~14548~^~208~^385.^0^^~4~^~NC~^^^^^^^^^^~05/01/1986~
-~14548~^~262~^124.^6^19.^~1~^^^^^^^^^^^~05/01/1986~
-~14548~^~268~^1611.^0^^~4~^^^^^^^^^^^
-~14548~^~301~^3.^4^0.^~1~^^^^^^^^^^^~05/01/1986~
-~14548~^~304~^11.^4^0.^~1~^^^^^^^^^^^~05/01/1986~
-~14548~^~305~^14.^4^0.^~1~^^^^^^^^^^^~05/01/1986~
-~14548~^~306~^217.^4^9.^~1~^^^^^^^^^^^~05/01/1986~
-~14548~^~307~^5.^0^^~4~^^^^^^^^^^^~05/01/1986~
-~14548~^~318~^0.^0^^~1~^^^^^^^^^^^~05/01/1986~
-~14548~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2002~
-~14548~^~320~^0.^0^^~4~^~NC~^^^^^^^^^^~06/01/2002~
-~14548~^~417~^43.^2^^~1~^^^^^^^^^^^~05/01/1986~
-~14548~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~
-~14548~^~432~^43.^2^^~1~^^^^^^^^^^^~05/01/1986~
-~14548~^~435~^43.^0^^~4~^~NC~^^^^^^^^^^~01/01/2001~
-~14548~^~601~^0.^0^^~1~^^^^^^^^^^^~05/01/1986~
-~14550~^~208~^250.^0^^~4~^~NC~^^^^^^^^^^~05/01/1986~
-~14550~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2003~
-~14550~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2003~
-~14550~^~268~^1046.^0^^~4~^^^^^^^^^^^~12/01/2006~
-~14550~^~301~^0.^235^^~1~^^^^^^^^^^^~05/01/1986~
-~14550~^~304~^0.^231^^~1~^^^^^^^^^^^~05/01/1986~
-~14550~^~305~^4.^13^^~1~^^^^^^^^^^^~05/01/1986~
-~14550~^~306~^2.^254^^~1~^^^^^^^^^^^~05/01/1986~
-~14550~^~307~^1.^260^^~1~^^^^^^^^^^^~05/01/1986~
-~14550~^~318~^0.^0^^~1~^^^^^^^^^^^~05/01/1986~
-~14550~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2002~
-~14550~^~320~^0.^0^^~1~^~AS~^^^^^^^^^^~05/01/2014~
-~14550~^~321~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2003~
-~14550~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2003~
-~14550~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~
-~14550~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2003~
-~14550~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2003~
-~14550~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2003~
-~14550~^~417~^0.^14^^~1~^^^^^^^^^^^~05/01/1986~
-~14550~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~
-~14550~^~432~^0.^14^^~1~^^^^^^^^^^^~05/01/1986~
-~14550~^~435~^0.^0^^~4~^~NC~^^^^^^^^^^~12/01/2006~
-~14550~^~601~^0.^0^^~1~^^^^^^^^^^^~05/01/1986~
-~14551~^~208~^263.^0^^~4~^~NC~^^^^^^^^^^~05/01/1986~
-~14551~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2001~
-~14551~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2001~
-~14551~^~268~^1100.^0^^~4~^^^^^^^^^^^~12/01/2006~
-~14551~^~301~^0.^235^^~1~^^^^^^^^^^^~05/01/1986~
-~14551~^~304~^0.^231^^~1~^^^^^^^^^^^~05/01/1986~
-~14551~^~305~^4.^13^^~1~^^^^^^^^^^^~05/01/1986~
-~14551~^~306~^2.^254^^~1~^^^^^^^^^^^~05/01/1986~
-~14551~^~307~^1.^260^^~1~^^^^^^^^^^^~05/01/1986~
-~14551~^~318~^0.^0^^~1~^^^^^^^^^^^~05/01/1986~
-~14551~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2002~
-~14551~^~320~^0.^0^^~1~^~AS~^^^^^^^^^^~05/01/2014~
-~14551~^~321~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2003~
-~14551~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2003~
-~14551~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~
-~14551~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2003~
-~14551~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2003~
-~14551~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2003~
-~14551~^~417~^0.^14^^~1~^^^^^^^^^^^~05/01/1986~
-~14551~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~
-~14551~^~432~^0.^14^^~1~^^^^^^^^^^^~05/01/1986~
-~14551~^~435~^0.^0^^~4~^~NC~^^^^^^^^^^~12/01/2006~
-~14551~^~601~^0.^0^^~1~^^^^^^^^^^^~05/01/1986~
-~14552~^~208~^42.^0^^~4~^^^^^^^^^^^~02/01/2005~
-~14552~^~262~^2.^0^^~4~^~BFZN~^^^^^^^^^^~12/01/1997~
-~14552~^~263~^63.^0^^~4~^~BFZN~^^^^^^^^^^~12/01/1997~
-~14552~^~268~^176.^0^^~4~^^^^^^^^^^^~02/01/2005~
-~14552~^~301~^4.^1^^~1~^^^^^^^^^^^~02/01/2005~
-~14552~^~304~^1.^1^^~1~^^^^^^^^^^^~02/01/2005~
-~14552~^~305~^1.^1^^~1~^^^^^^^^^^^~02/01/2005~
-~14552~^~306~^50.^1^^~1~^^^^^^^^^^^~02/01/2005~
-~14552~^~307~^4.^0^^~4~^~O~^^^^^^^^^^~09/01/2012~
-~14552~^~318~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2001~
-~14552~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2002~
-~14552~^~320~^0.^0^^~4~^~NC~^^^^^^^^^^~06/01/2002~
-~14552~^~321~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~
-~14552~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~
-~14552~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~
-~14552~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~
-~14552~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~
-~14552~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~
-~14552~^~417~^0.^0^^~7~^^^^^^^^^^^~02/01/2005~
-~14552~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2001~
-~14552~^~432~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2001~
-~14552~^~435~^0.^0^^~4~^~NC~^^^^^^^^^^~12/01/2006~
-~14552~^~601~^0.^0^^~7~^^^^^^^^^^^~04/01/2001~
-~14553~^~208~^6.^0^^~4~^^^^^^^^^^^~10/01/2006~
-~14553~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2001~
-~14553~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2001~
-~14553~^~268~^25.^0^^~4~^^^^^^^^^^^~10/01/2006~
-~14553~^~301~^9.^0^^~4~^^^^^^^^^^^~10/01/2006~
-~14553~^~304~^10.^0^^~4~^^^^^^^^^^^~10/01/2006~
-~14553~^~305~^15.^0^^~4~^^^^^^^^^^^~10/01/2006~
-~14553~^~306~^88.^0^^~4~^^^^^^^^^^^~10/01/2006~
-~14553~^~307~^7.^0^^~4~^^^^^^^^^^^~10/01/2006~
-~14553~^~318~^0.^0^^~4~^^^^^^^^^^^~10/01/2006~
-~14553~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2002~
-~14553~^~320~^0.^0^^~1~^~AS~^^^^^^^^^^~01/01/2003~
-~14553~^~321~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2003~
-~14553~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2003~
-~14553~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~
-~14553~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2003~
-~14553~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2003~
-~14553~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2003~
-~14553~^~417~^1.^0^^~4~^^^^^^^^^^^~10/01/2006~
-~14553~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2001~
-~14553~^~432~^1.^0^^~4~^^^^^^^^^^^~10/01/2006~
-~14553~^~435~^1.^0^^~4~^~NC~^^^^^^^^^^~10/01/2006~
-~14553~^~601~^0.^0^^~7~^^^^^^^^^^^~10/01/2006~
-~14555~^~208~^0.^0^^~4~^~NC~^^^^^^^^^^~01/01/2005~
-~14555~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2005~
-~14555~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2005~
-~14555~^~268~^0.^0^^~4~^~NC~^^^^^^^^^^~01/01/2005~
-~14555~^~301~^10.^1^^~6~^~JA~^^^3^0.^38.^12^^^~1~^~01/01/2005~
-~14555~^~304~^2.^1^^~6~^~JA~^^^3^0.^9.^12^^^~1~^~01/01/2005~
-~14555~^~305~^0.^0^^~4~^~BFZN~^~14429~^^^^^^^^^~01/01/2005~
-~14555~^~306~^0.^1^^~6~^~JA~^^^3^0.^1.^12^^^~1~^~01/01/2005~
-~14555~^~307~^2.^1^^~6~^~JA~^^^3^0.^13.^12^^^~1~^~01/01/2005~
-~14555~^~318~^0.^0^^~4~^^^^^^^^^^^~01/01/2005~
-~14555~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2005~
-~14555~^~320~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2005~
-~14555~^~321~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2005~
-~14555~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2005~
-~14555~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~
-~14555~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2005~
-~14555~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2005~
-~14555~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2005~
-~14555~^~417~^0.^0^^~4~^^^^^^^^^^^~01/01/2005~
-~14555~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2005~
-~14555~^~432~^0.^0^^~4~^^^^^^^^^^^~01/01/2005~
-~14555~^~435~^0.^0^^~4~^~NC~^^^^^^^^^^~12/01/2006~
-~14555~^~601~^0.^0^^~1~^^^^^^^^^^^~01/01/2005~
-~14557~^~208~^400.^0^^~4~^~NC~^^^^^^^^^^~12/01/2006~
-~14557~^~262~^8.^0^^~4~^~FLC~^^^^^^^^^^~10/01/2003~
-~14557~^~263~^277.^0^^~4~^~FLC~^^^^^^^^^^~10/01/2003~
-~14557~^~268~^1673.^0^^~4~^~NC~^^^^^^^^^^~12/01/2006~
-~14557~^~301~^455.^1^^~8~^~LC~^^^^^^^^^^~10/01/2003~
-~14557~^~304~^53.^0^^~4~^~FLC~^^^^^^^^^^~10/01/2003~
-~14557~^~305~^86.^0^^~4~^~FLC~^^^^^^^^^^~10/01/2003~
-~14557~^~306~^280.^0^^~4~^~FLC~^^^^^^^^^^~10/01/2003~
-~14557~^~307~^136.^1^^~8~^~LC~^^^^^^^^^^~10/01/2003~
-~14557~^~318~^2.^0^^~4~^~FLC~^^^^^^^^^^~12/01/2006~
-~14557~^~319~^0.^0^^~4~^~FLC~^^^^^^^^^^~10/01/2003~
-~14557~^~320~^0.^0^^~4~^~NC~^^^^^^^^^^~10/01/2003~
-~14557~^~321~^0.^0^^~4~^~FLC~^^^^^^^^^^~10/01/2003~
-~14557~^~322~^0.^0^^~4~^~FLC~^^^^^^^^^^~10/01/2003~
-~14557~^~324~^0.^1^^~8~^~LC~^^^^^^^^^^~10/01/2003~
-~14557~^~334~^0.^0^^~4~^~FLC~^^^^^^^^^^~10/01/2003~
-~14557~^~337~^0.^0^^~4~^~FLC~^^^^^^^^^^~10/01/2003~
-~14557~^~338~^0.^0^^~4~^~FLC~^^^^^^^^^^~10/01/2003~
-~14557~^~417~^4.^0^^~4~^~FLC~^^^^^^^^^^~10/01/2003~
-~14557~^~431~^0.^0^^~4~^~FLC~^^^^^^^^^^~10/01/2003~
-~14557~^~432~^4.^0^^~4~^~FLC~^^^^^^^^^^~10/01/2003~
-~14557~^~435~^4.^0^^~4~^~NC~^^^^^^^^^^~12/01/2006~
-~14557~^~601~^0.^1^^~8~^~LC~^^^^^^^^^^~10/01/2003~
-~14558~^~208~^89.^0^^~4~^~NC~^^^^^^^^^^~03/01/2009~
-~14558~^~262~^1.^0^^~6~^~RPI~^^^^^^^^^^~10/01/2003~
-~14558~^~263~^23.^0^^~6~^~RPI~^^^^^^^^^^~10/01/2003~
-~14558~^~268~^373.^0^^~4~^~NC~^^^^^^^^^^~03/01/2009~
-~14558~^~301~^141.^0^^~6~^~RPI~^^^^^^^^^^~03/01/2009~
-~14558~^~304~^14.^0^^~6~^~RPI~^^^^^^^^^^~03/01/2009~
-~14558~^~305~^84.^0^^~6~^~RPI~^^^^^^^^^^~03/01/2009~
-~14558~^~306~^144.^0^^~6~^~RPI~^^^^^^^^^^~03/01/2009~
-~14558~^~307~^50.^0^^~6~^~RPI~^^^^^^^^^^~03/01/2009~
-~14558~^~318~^148.^0^^~4~^~NC~^^^^^^^^^^~09/01/2015~
-~14558~^~319~^41.^0^^~6~^~RPI~^^^^^^^^^^~03/01/2009~
-~14558~^~320~^42.^0^^~4~^~NC~^^^^^^^^^^~09/01/2015~
-~14558~^~321~^6.^0^^~6~^~RPI~^^^^^^^^^^~03/01/2009~
-~14558~^~322~^0.^0^^~6~^~RPI~^^^^^^^^^^~10/01/2003~
-~14558~^~324~^47.^0^^~6~^~RPI~^^^^^^^^^^~03/01/2009~
-~14558~^~334~^0.^0^^~6~^~RPI~^^^^^^^^^^~10/01/2003~
-~14558~^~337~^0.^0^^~6~^~RPI~^^^^^^^^^^~10/01/2003~
-~14558~^~338~^0.^0^^~6~^~RPI~^^^^^^^^^^~10/01/2003~
-~14558~^~417~^5.^0^^~6~^~RPI~^^^^^^^^^^~10/01/2003~
-~14558~^~431~^0.^0^^~6~^~RPI~^^^^^^^^^^~10/01/2003~
-~14558~^~432~^5.^0^^~6~^~RPI~^^^^^^^^^^~10/01/2003~
-~14558~^~435~^5.^0^^~4~^~NC~^^^^^^^^^^~03/01/2009~
-~14558~^~601~^10.^0^^~6~^~RPI~^^^^^^^^^^~10/01/2003~
-~14559~^~208~^0.^0^^~4~^~NC~^^^^^^^^^^~09/01/2004~
-~14559~^~268~^0.^0^^~4~^~NC~^^^^^^^^^^~09/01/2004~
-~14559~^~301~^8.^11^0.^~1~^~A~^^^2^7.^8.^1^1.^14.^~4~^~09/01/2004~
-~14559~^~304~^2.^11^0.^~1~^~A~^^^2^2.^2.^1^1.^3.^~4~^~09/01/2004~
-~14559~^~305~^0.^1^^~1~^~A~^^^^^^^^^~1~^~09/01/2004~
-~14559~^~306~^0.^11^0.^~1~^~A~^^^2^0.^0.^1^0.^1.^~1, 4~^~09/01/2004~
-~14559~^~307~^0.^11^0.^~1~^~A~^^^2^0.^1.^1^-3.^4.^~1, 4~^~09/01/2004~
-~14599~^~208~^0.^1^^~8~^~LC~^^^^^^^^^^~03/01/2011~
-~14599~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~07/01/2013~
-~14599~^~263~^0.^0^^~4~^~BFZN~^~14644~^^^^^^^^^~03/01/2011~
-~14599~^~268~^0.^0^^~8~^~LC~^^^^^^^^^^~03/01/2011~
-~14599~^~301~^2.^1^^~8~^~LC~^^^^^^^^^~1~^~06/01/2011~
-~14599~^~304~^1.^1^^~8~^~LC~^^^^^^^^^~1~^~06/01/2011~
-~14599~^~305~^0.^0^^~4~^~O~^^^^^^^^^^~06/01/2011~
-~14599~^~306~^10.^1^^~8~^~LC~^^^^^^^^^^~06/01/2011~
-~14599~^~307~^42.^1^^~8~^~LC~^^^^^^^^^^~06/01/2011~
-~14599~^~318~^0.^0^^~4~^~NC~^^^^^^^^^^~03/01/2011~
-~14599~^~319~^0.^0^^~4~^~BFZN~^~14644~^^^^^^^^^~03/01/2011~
-~14599~^~320~^0.^0^^~4~^~BFZN~^~14644~^^^^^^^^^~03/01/2011~
-~14599~^~321~^0.^0^^~4~^~BFZN~^~14644~^^^^^^^^^~03/01/2011~
-~14599~^~322~^0.^0^^~4~^~BFZN~^~14644~^^^^^^^^^~03/01/2011~
-~14599~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2011~
-~14599~^~334~^0.^0^^~4~^~BFZN~^~14644~^^^^^^^^^~03/01/2011~
-~14599~^~337~^0.^0^^~4~^~BFZN~^~14644~^^^^^^^^^~03/01/2011~
-~14599~^~338~^0.^0^^~4~^~BFZN~^~14644~^^^^^^^^^~03/01/2011~
-~14599~^~417~^0.^0^^~4~^~BFZN~^~14644~^^^^^^^^^~03/01/2011~
-~14599~^~431~^0.^0^^~4~^~BFZN~^~14644~^^^^^^^^^~03/01/2011~
-~14599~^~432~^0.^0^^~4~^~BFZN~^~14644~^^^^^^^^^~03/01/2011~
-~14599~^~435~^0.^0^^~4~^~NC~^~14644~^^^^^^^^^~03/01/2011~
-~14599~^~601~^0.^0^^~4~^~BFZN~^~14644~^^^^^^^^^~03/01/2011~
-~14601~^~208~^1.^0^^~4~^~NC~^^^^^^^^^^~04/01/2005~
-~14601~^~262~^8.^1^^~1~^~A~^^^^^^^^^^~04/01/2005~
-~14601~^~263~^1.^1^^~1~^~A~^^^^^^^^^^~04/01/2005~
-~14601~^~268~^4.^0^^~4~^~NC~^^^^^^^^^^~04/01/2005~
-~14601~^~301~^2.^1^^~1~^~A~^^^^^^^^^^~04/01/2005~
-~14601~^~304~^1.^1^^~1~^~A~^^^^^^^^^^~04/01/2005~
-~14601~^~305~^1.^1^^~1~^~A~^^^^^^^^^~1~^~04/01/2005~
-~14601~^~306~^14.^1^^~1~^~A~^^^^^^^^^^~04/01/2005~
-~14601~^~307~^3.^1^^~1~^~A~^^^^^^^^^^~04/01/2005~
-~14602~^~208~^83.^0^^~4~^~NC~^^^^^^^^^^~10/01/2006~
-~14602~^~268~^348.^0^^~4~^~NC~^^^^^^^^^^~10/01/2006~
-~14602~^~301~^8.^1^^~1~^~A~^^^^^^^^^^~06/01/2005~
-~14602~^~304~^12.^1^^~1~^~A~^^^^^^^^^^~06/01/2005~
-~14602~^~305~^23.^1^^~1~^~A~^^^^^^^^^^~06/01/2005~
-~14602~^~306~^127.^1^^~1~^~A~^^^^^^^^^^~06/01/2005~
-~14602~^~307~^4.^1^^~1~^~A~^^^^^^^^^^~06/01/2005~
-~14602~^~417~^1.^1^^~1~^~A~^^^^^^^^^~1~^~06/01/2005~
-~14602~^~432~^1.^1^^~1~^~A~^^^^^^^^^^~06/01/2005~
-~14604~^~208~^1.^0^^~4~^~NC~^^^^^^^^^^~02/01/2007~
-~14604~^~262~^0.^0^^~4~^~BFZN~^~14555~^^^^^^^^^~02/01/2007~
-~14604~^~263~^0.^0^^~4~^~BFZN~^~14555~^^^^^^^^^~02/01/2007~
-~14604~^~268~^2.^0^^~4~^~NC~^^^^^^^^^^~06/01/2014~
-~14604~^~301~^1.^2^^~1~^~A~^^^1^1.^1.^1^^^^~02/01/2007~
-~14604~^~304~^0.^2^^~1~^~A~^^^1^0.^0.^1^^^^~02/01/2007~
-~14604~^~305~^0.^2^^~1~^~A~^^^1^0.^0.^^^^~1~^~02/01/2007~
-~14604~^~306~^4.^2^^~1~^~A~^^^1^4.^4.^1^^^^~02/01/2007~
-~14604~^~307~^14.^0^^~4~^~NR~^^^^^^^^^^~05/01/2013~
-~14604~^~318~^0.^0^^~4~^~NC~^^^^^^^^^^~02/01/2007~
-~14604~^~319~^0.^0^^~4~^~BFZN~^~14555~^^^^^^^^^~02/01/2007~
-~14604~^~320~^0.^0^^~4~^~BFZN~^~14555~^^^^^^^^^~02/01/2007~
-~14604~^~321~^0.^0^^~4~^~BFZN~^~14555~^^^^^^^^^~02/01/2007~
-~14604~^~322~^0.^0^^~4~^~BFZN~^~14555~^^^^^^^^^~02/01/2007~
-~14604~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2009~
-~14604~^~334~^0.^0^^~4~^~BFZN~^~14555~^^^^^^^^^~02/01/2007~
-~14604~^~337~^0.^0^^~4~^~BFZN~^~14555~^^^^^^^^^~02/01/2007~
-~14604~^~338~^0.^0^^~4~^~BFZN~^~14555~^^^^^^^^^~02/01/2007~
-~14604~^~417~^0.^0^^~4~^~BFZN~^~14555~^^^^^^^^^~02/01/2007~
-~14604~^~431~^0.^0^^~4~^~BFZN~^~14555~^^^^^^^^^~02/01/2007~
-~14604~^~432~^0.^0^^~4~^~BFZN~^~14555~^^^^^^^^^~02/01/2007~
-~14604~^~435~^0.^0^^~4~^~NC~^~14555~^^^^^^^^^~03/01/2009~
-~14604~^~601~^0.^0^^~4~^~BFZN~^~14555~^^^^^^^^^~02/01/2007~
-~14605~^~208~^22.^2^^~4~^~NC~^^^1^21.^21.^^^^^~02/01/2007~
-~14605~^~262~^0.^0^^~4~^~BFZN~^~14555~^^^^^^^^^~02/01/2007~
-~14605~^~263~^0.^0^^~4~^~BFZN~^~14555~^^^^^^^^^~02/01/2007~
-~14605~^~268~^92.^0^^~4~^~NC~^^^^^^^^^^~02/01/2007~
-~14605~^~301~^17.^2^^~8~^~LC~^^^1^17.^17.^^^^^~02/01/2007~
-~14605~^~304~^3.^2^^~8~^~LC~^^^1^0.^7.^^^^^~02/01/2007~
-~14605~^~305~^0.^0^^~4~^~BFZN~^~14555~^^^^^^^^^~02/01/2007~
-~14605~^~306~^0.^0^^~4~^~BFZN~^~14555~^^^^^^^^^~02/01/2007~
-~14605~^~307~^0.^1^^~8~^~LC~^^^^^^^^^^~02/01/2007~
-~14605~^~318~^105.^2^^~8~^~LC~^^^1^0.^211.^^^^^~02/01/2007~
-~14605~^~319~^32.^0^^~4~^~NR~^^^^^^^^^^~02/01/2007~
-~14605~^~320~^32.^0^^~4~^~NC~^^^^^^^^^^~02/01/2007~
-~14605~^~321~^0.^0^^~4~^~BFZN~^~14555~^^^^^^^^^~02/01/2007~
-~14605~^~322~^0.^0^^~4~^~BFZN~^~14555~^^^^^^^^^~02/01/2007~
-~14605~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2009~
-~14605~^~334~^0.^0^^~4~^~BFZN~^~14555~^^^^^^^^^~02/01/2007~
-~14605~^~337~^0.^0^^~4~^~BFZN~^~14555~^^^^^^^^^~02/01/2007~
-~14605~^~338~^0.^0^^~4~^~BFZN~^~14555~^^^^^^^^^~02/01/2007~
-~14605~^~417~^8.^2^^~8~^~LC~^^^1^0.^17.^^^^^~02/01/2007~
-~14605~^~431~^8.^0^^~4~^~NR~^^^^^^^^^^~02/01/2007~
-~14605~^~432~^0.^0^^~4~^~BFZN~^~14555~^^^^^^^^^~02/01/2007~
-~14605~^~435~^14.^0^^~4~^~NC~^^^^^^^^^^~03/01/2009~
-~14605~^~601~^0.^0^^~4~^~BFZN~^~14555~^^^^^^^^^~02/01/2007~
-~14607~^~208~^4.^0^^~8~^~LC~^^^^^^^^^^~03/01/2007~
-~14607~^~268~^17.^0^^~8~^~LC~^^^^^^^^^^~03/01/2007~
-~14607~^~306~^33.^1^^~8~^~LC~^^^^^^^^^^~03/01/2007~
-~14607~^~307~^14.^1^^~8~^~LC~^^^^^^^^^^~03/01/2007~
-~14607~^~318~^2058.^1^^~8~^~LC~^^^^^^^^^^~03/01/2007~
-~14608~^~208~^4.^0^^~8~^~LC~^^^^^^^^^^~03/01/2007~
-~14608~^~268~^18.^0^^~8~^~LC~^^^^^^^^^^~03/01/2007~
-~14608~^~306~^15.^1^^~8~^~LC~^^^^^^^^^^~03/01/2007~
-~14608~^~307~^13.^1^^~8~^~LC~^^^^^^^^^^~03/01/2007~
-~14608~^~318~^2101.^1^^~8~^~LC~^^^^^^^^^^~03/01/2007~
-~14609~^~208~^4.^0^^~8~^~LC~^^^^^^^^^^~03/01/2007~
-~14609~^~268~^18.^0^^~8~^~LC~^^^^^^^^^^~03/01/2007~
-~14609~^~301~^8.^1^^~8~^~LC~^^^^^^^^^^~03/01/2007~
-~14609~^~306~^15.^1^^~8~^~LC~^^^^^^^^^^~03/01/2007~
-~14609~^~307~^13.^1^^~8~^~LC~^^^^^^^^^^~03/01/2007~
-~14609~^~318~^2101.^1^^~8~^~LC~^^^^^^^^^^~03/01/2007~
-~14610~^~208~^4.^0^^~8~^~LC~^^^^^^^^^^~03/01/2007~
-~14610~^~268~^18.^0^^~8~^~LC~^^^^^^^^^^~03/01/2007~
-~14610~^~306~^34.^1^^~8~^~LC~^^^^^^^^^^~03/01/2007~
-~14610~^~307~^15.^1^^~8~^~LC~^^^^^^^^^^~03/01/2007~
-~14610~^~318~^2101.^1^^~8~^~LC~^^^^^^^^^^~03/01/2007~
-~14611~^~208~^29.^1^^~8~^~LC~^^^^^^^^^^~03/01/2007~
-~14611~^~268~^121.^0^^~8~^~LC~^^^^^^^^^^~03/01/2007~
-~14611~^~306~^14.^1^^~8~^~LC~^^^^^^^^^^~03/01/2007~
-~14611~^~307~^21.^1^^~8~^~LC~^^^^^^^^^^~03/01/2007~
-~14611~^~318~^2058.^1^^~8~^~LC~^^^^^^^^^^~03/01/2007~
-~14612~^~208~^33.^0^^~8~^~LC~^^^^^^^^^^~03/01/2007~
-~14612~^~268~^138.^0^^~8~^~LC~^^^^^^^^^^~03/01/2007~
-~14612~^~306~^10.^1^^~8~^~LC~^^^^^^^^^^~03/01/2007~
-~14612~^~307~^21.^1^^~8~^~LC~^^^^^^^^^^~03/01/2007~
-~14612~^~318~^2058.^1^^~8~^~LC~^^^^^^^^^^~03/01/2007~
-~14613~^~208~^33.^0^^~8~^~LC~^^^^^^^^^^~03/01/2007~
-~14613~^~268~^138.^0^^~8~^~LC~^^^^^^^^^^~03/01/2007~
-~14613~^~306~^12.^1^^~8~^~LC~^^^^^^^^^^~03/01/2007~
-~14613~^~307~^14.^1^^~8~^~LC~^^^^^^^^^^~03/01/2007~
-~14613~^~318~^2058.^1^^~8~^~LC~^^^^^^^^^^~03/01/2007~
-~14614~^~208~^33.^0^^~8~^~LC~^^^^^^^^^^~03/01/2007~
-~14614~^~268~^138.^0^^~8~^~LC~^^^^^^^^^^~03/01/2007~
-~14614~^~306~^12.^1^^~8~^~LC~^^^^^^^^^^~03/01/2007~
-~14614~^~307~^16.^1^^~8~^~LC~^^^^^^^^^^~03/01/2007~
-~14614~^~318~^2058.^1^^~8~^~LC~^^^^^^^^^^~03/01/2007~
-~14615~^~208~^29.^0^^~8~^~LC~^^^^^^^^^^~03/01/2007~
-~14615~^~268~^121.^0^^~8~^~LC~^^^^^^^^^^~03/01/2007~
-~14615~^~306~^10.^1^^~8~^~LC~^^^^^^^^^^~03/01/2007~
-~14615~^~307~^21.^1^^~8~^~LC~^^^^^^^^^^~03/01/2007~
-~14615~^~318~^2058.^1^^~8~^~LC~^^^^^^^^^^~03/01/2007~
-~14616~^~208~^33.^0^^~8~^~LC~^^^^^^^^^^~03/01/2007~
-~14616~^~268~^138.^0^^~8~^~LC~^^^^^^^^^^~03/01/2007~
-~14616~^~306~^10.^1^^~8~^~LC~^^^^^^^^^^~03/01/2007~
-~14616~^~307~^21.^1^^~8~^~LC~^^^^^^^^^^~03/01/2007~
-~14616~^~318~^2058.^1^^~8~^~LC~^^^^^^^^^^~03/01/2007~
-~14617~^~208~^29.^0^^~8~^~LC~^^^^^^^^^^~03/01/2007~
-~14617~^~268~^121.^0^^~8~^~LC~^^^^^^^^^^~03/01/2007~
-~14617~^~306~^8.^1^^~8~^~LC~^^^^^^^^^^~03/01/2007~
-~14617~^~307~^21.^1^^~8~^~LC~^^^^^^^^^^~03/01/2007~
-~14617~^~318~^2058.^1^^~8~^~LC~^^^^^^^^^^~03/01/2007~
-~14618~^~208~^29.^0^^~8~^~LC~^^^^^^^^^^~03/01/2007~
-~14618~^~268~^121.^0^^~8~^~LC~^^^^^^^^^^~03/01/2007~
-~14618~^~306~^14.^1^^~8~^~LC~^^^^^^^^^^~03/01/2007~
-~14618~^~307~^21.^1^^~8~^~LC~^^^^^^^^^^~03/01/2007~
-~14618~^~318~^2058.^1^^~8~^~LC~^^^^^^^^^^~03/01/2007~
-~14619~^~208~^29.^0^^~8~^~LC~^^^^^^^^^^~03/01/2007~
-~14619~^~268~^121.^0^^~8~^~LC~^^^^^^^^^^~03/01/2007~
-~14619~^~306~^12.^1^^~8~^~LC~^^^^^^^^^^~03/01/2007~
-~14619~^~307~^21.^1^^~8~^~LC~^^^^^^^^^^~03/01/2007~
-~14619~^~318~^2058.^1^^~8~^~LC~^^^^^^^^^^~03/01/2007~
-~14620~^~208~^49.^0^^~8~^~LC~^^^^^^^^^^~03/01/2007~
-~14620~^~268~^204.^0^^~8~^~LC~^^^^^^^^^^~03/01/2007~
-~14620~^~301~^8.^1^^~8~^~LC~^^^^^^^^^^~03/01/2007~
-~14620~^~304~^7.^1^^~8~^~LC~^^^^^^^^^^~03/01/2007~
-~14620~^~306~^85.^1^^~8~^~LC~^^^^^^^^^^~03/01/2007~
-~14620~^~307~^28.^1^^~8~^~LC~^^^^^^^^^^~03/01/2007~
-~14620~^~318~^407.^1^^~8~^~LC~^^^^^^^^^^~03/01/2007~
-~14620~^~417~^3.^1^^~8~^~LC~^^^^^^^^^^~03/01/2007~
-~14620~^~432~^3.^1^^~8~^~LC~^^^^^^^^^^~09/01/2015~
-~14621~^~208~^49.^0^^~8~^~LC~^^^^^^^^^^~03/01/2007~
-~14621~^~268~^204.^0^^~8~^~LC~^^^^^^^^^^~03/01/2007~
-~14621~^~301~^8.^1^^~8~^~LC~^^^^^^^^^^~03/01/2007~
-~14621~^~304~^7.^1^^~8~^~LC~^^^^^^^^^^~03/01/2007~
-~14621~^~306~^102.^1^^~8~^~LC~^^^^^^^^^^~03/01/2007~
-~14621~^~307~^28.^1^^~8~^~LC~^^^^^^^^^^~03/01/2007~
-~14621~^~318~^813.^1^^~8~^~LC~^^^^^^^^^^~03/01/2007~
-~14621~^~417~^3.^1^^~8~^~LC~^^^^^^^^^^~03/01/2007~
-~14621~^~432~^3.^1^^~8~^~LC~^^^^^^^^^^~09/01/2015~
-~14622~^~208~^49.^0^^~8~^~LC~^^^^^^^^^^~03/01/2007~
-~14622~^~268~^204.^0^^~8~^~LC~^^^^^^^^^^~03/01/2007~
-~14622~^~301~^8.^1^^~8~^~LC~^^^^^^^^^^~03/01/2007~
-~14622~^~304~^7.^1^^~8~^~LC~^^^^^^^^^^~03/01/2007~
-~14622~^~306~^118.^1^^~8~^~LC~^^^^^^^^^^~03/01/2007~
-~14622~^~307~^33.^1^^~8~^~LC~^^^^^^^^^^~03/01/2007~
-~14622~^~318~^1626.^1^^~8~^~LC~^^^^^^^^^^~03/01/2007~
-~14622~^~417~^3.^1^^~8~^~LC~^^^^^^^^^^~03/01/2007~
-~14622~^~432~^3.^1^^~8~^~LC~^^^^^^^^^^~09/01/2015~
-~14623~^~208~^45.^1^^~8~^~LC~^^^^^^^^^^~01/01/2008~
-~14623~^~268~^187.^1^^~8~^~LC~^^^^^^^^^^~09/01/2015~
-~14623~^~301~^1.^1^^~8~^~LC~^^^^^^^^^^~01/01/2008~
-~14623~^~306~^98.^1^^~8~^~LC~^^^^^^^^^^~01/01/2008~
-~14623~^~307~^28.^1^^~8~^~LC~^^^^^^^^^^~01/01/2008~
-~14623~^~318~^6.^1^^~8~^~LC~^^^^^^^^^^~01/01/2008~
-~14623~^~601~^0.^1^^~8~^~LC~^^^^^^^^^^~01/01/2008~
-~14625~^~208~^46.^1^^~8~^~LC~^^^1^46.^46.^0^^^^~08/01/2008~
-~14625~^~262~^31.^0^^~8~^~LC~^^^^^^^^^^~06/01/2014~
-~14625~^~263~^0.^0^^~4~^~BFZN~^~14154~^^^^^^^^^~11/01/2007~
-~14625~^~268~^192.^1^^~8~^~LC~^^^^^^^^^^~08/01/2009~
-~14625~^~301~^13.^0^^~4~^~BFZN~^~14154~^^^^^^^^^~11/01/2007~
-~14625~^~304~^3.^0^^~4~^~BFZN~^~14154~^^^^^^^^^~11/01/2007~
-~14625~^~305~^17.^0^^~8~^~LC~^^^^^^^^^^~08/01/2009~
-~14625~^~306~^3.^0^^~4~^~BFZN~^~14154~^^^^^^^^^~11/01/2007~
-~14625~^~307~^27.^1^^~8~^~LC~^^^1^27.^27.^0^^^^~03/01/2009~
-~14625~^~318~^0.^0^^~4~^~NC~^^^^^^^^^^~03/01/2009~
-~14625~^~319~^0.^0^^~4~^~BFZN~^~14154~^^^^^^^^^~11/01/2007~
-~14625~^~320~^0.^0^^~4~^~BFZN~^~14154~^^^^^^^^^~11/01/2007~
-~14625~^~321~^0.^0^^~4~^~BFZN~^~14154~^^^^^^^^^~11/01/2007~
-~14625~^~322~^0.^0^^~4~^~BFZN~^~14154~^^^^^^^^^~11/01/2007~
-~14625~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2009~
-~14625~^~334~^0.^0^^~4~^~BFZN~^~14154~^^^^^^^^^~11/01/2007~
-~14625~^~337~^0.^0^^~4~^~BFZN~^~14154~^^^^^^^^^~11/01/2007~
-~14625~^~338~^0.^0^^~4~^~BFZN~^~14154~^^^^^^^^^~11/01/2007~
-~14625~^~417~^0.^0^^~4~^~BFZN~^~14154~^^^^^^^^^~11/01/2007~
-~14625~^~431~^0.^0^^~4~^~BFZN~^~14154~^^^^^^^^^~11/01/2007~
-~14625~^~432~^0.^0^^~4~^~BFZN~^~14154~^^^^^^^^^~11/01/2007~
-~14625~^~435~^0.^0^^~4~^~NC~^~14154~^^^^^^^^^~08/01/2009~
-~14625~^~601~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2009~
-~14626~^~208~^46.^1^^~8~^~LC~^^^^^^^^^^~03/01/2009~
-~14626~^~262~^33.^0^^~9~^~MC~^^^^^^^^^^~07/01/2013~
-~14626~^~263~^0.^0^^~4~^~BFZN~^~14154~^^^^^^^^^~03/01/2009~
-~14626~^~268~^192.^0^^~8~^~LC~^^^^^^^^^^~08/01/2009~
-~14626~^~301~^13.^0^^~4~^~BFZN~^~14154~^^^^^^^^^~03/01/2009~
-~14626~^~304~^3.^0^^~4~^~BFZN~^~14154~^^^^^^^^^~03/01/2009~
-~14626~^~305~^0.^0^^~4~^~BFZN~^~14154~^^^^^^^^^~03/01/2009~
-~14626~^~306~^3.^0^^~4~^~BFZN~^~14154~^^^^^^^^^~03/01/2009~
-~14626~^~307~^35.^1^^~8~^~LC~^^^^^^^^^^~03/01/2009~
-~14626~^~318~^0.^0^^~4~^~NC~^^^^^^^^^^~03/01/2009~
-~14626~^~319~^0.^0^^~4~^~BFZN~^~14154~^^^^^^^^^~03/01/2009~
-~14626~^~320~^0.^0^^~4~^~BFZN~^~14154~^^^^^^^^^~03/01/2009~
-~14626~^~321~^0.^0^^~4~^~BFZN~^~14154~^^^^^^^^^~03/01/2009~
-~14626~^~322~^0.^0^^~4~^~BFZN~^~14154~^^^^^^^^^~03/01/2009~
-~14626~^~324~^0.^0^^~4~^~BFZN~^~14154~^^^^^^^^^~03/01/2009~
-~14626~^~334~^0.^0^^~4~^~BFZN~^~14154~^^^^^^^^^~03/01/2009~
-~14626~^~337~^0.^0^^~4~^~BFZN~^~14154~^^^^^^^^^~03/01/2009~
-~14626~^~338~^0.^0^^~4~^~BFZN~^~14154~^^^^^^^^^~03/01/2009~
-~14626~^~417~^0.^0^^~4~^~BFZN~^~14154~^^^^^^^^^~03/01/2009~
-~14626~^~431~^0.^0^^~4~^~BFZN~^~14154~^^^^^^^^^~03/01/2009~
-~14626~^~432~^0.^0^^~4~^~BFZN~^~14154~^^^^^^^^^~03/01/2009~
-~14626~^~435~^0.^0^^~4~^~NC~^~14154~^^^^^^^^^~10/01/2009~
-~14626~^~601~^0.^1^^~8~^~LC~^^^^^^^^^^~03/01/2009~
-~14627~^~208~^47.^0^^~4~^~NC~^^^^^^^^^^~05/01/2015~
-~14627~^~262~^33.^0^^~9~^~MC~^^^^^^^^^^~06/01/2015~
-~14627~^~263~^0.^0^^~4~^~FLC~^^^^^^^^^^~03/01/2009~
-~14627~^~268~^197.^0^^~4~^~NC~^^^^^^^^^^~05/01/2015~
-~14627~^~301~^0.^6^0.^~1~^~A~^^^1^0.^0.^^^^~1, 2, 3~^~05/01/2015~
-~14627~^~304~^0.^6^0.^~1~^~A~^^^1^0.^0.^^^^~1, 2, 3~^~05/01/2015~
-~14627~^~305~^0.^6^0.^~1~^~A~^^^1^0.^0.^^^^~1, 2, 3~^~05/01/2015~
-~14627~^~306~^2.^6^0.^~1~^~A~^^^1^2.^2.^^^^~1, 2, 3~^~05/01/2015~
-~14627~^~307~^77.^6^0.^~1~^~A~^^^1^77.^78.^5^76.^77.^~2, 3~^~05/01/2015~
-~14627~^~318~^0.^0^^~4~^~FLC~^^^^^^^^^^~03/01/2009~
-~14627~^~319~^0.^0^^~4~^~FLC~^^^^^^^^^^~03/01/2009~
-~14627~^~320~^0.^0^^~4~^~FLC~^^^^^^^^^^~03/01/2009~
-~14627~^~321~^0.^0^^~4~^~FLC~^^^^^^^^^^~03/01/2009~
-~14627~^~322~^0.^0^^~4~^~FLC~^^^^^^^^^^~03/01/2009~
-~14627~^~324~^0.^0^^~4~^~FLC~^^^^^^^^^^~03/01/2009~
-~14627~^~334~^0.^0^^~4~^~FLC~^^^^^^^^^^~03/01/2009~
-~14627~^~337~^0.^0^^~4~^~FLC~^^^^^^^^^^~03/01/2009~
-~14627~^~338~^0.^0^^~4~^~FLC~^^^^^^^^^^~03/01/2009~
-~14627~^~417~^0.^0^^~4~^~FLC~^^^^^^^^^^~03/01/2009~
-~14627~^~431~^0.^0^^~4~^~FLC~^^^^^^^^^^~03/01/2009~
-~14627~^~432~^0.^0^^~4~^~FLC~^^^^^^^^^^~03/01/2009~
-~14627~^~435~^0.^0^^~4~^~NC~^^^^^^^^^^~03/01/2009~
-~14627~^~601~^0.^0^^~4~^~FLC~^^^^^^^^^^~03/01/2009~
-~14628~^~208~^2.^1^^~8~^~LC~^^^^^^^^^^~03/01/2009~
-~14628~^~262~^30.^1^^~8~^~LC~^^^^^^^^^^~03/01/2009~
-~14628~^~263~^0.^0^^~4~^~BFZN~^~14156~^^^^^^^^^~03/01/2009~
-~14628~^~268~^9.^1^^~8~^~LC~^^^^^^^^^^~05/01/2015~
-~14628~^~301~^0.^1^^~8~^~LC~^^^^^^^^^^~03/01/2009~
-~14628~^~304~^3.^0^^~4~^~BFZN~^~14156~^^^^^^^^^~03/01/2009~
-~14628~^~305~^17.^0^^~8~^~LC~^^^^^^^^^^~08/01/2009~
-~14628~^~306~^2.^1^^~8~^~LC~^^^^^^^^^^~03/01/2009~
-~14628~^~307~^31.^1^^~8~^~LC~^^^^^^^^^^~03/01/2009~
-~14628~^~318~^0.^1^^~8~^~LC~^^^^^^^^^^~03/01/2009~
-~14628~^~319~^0.^0^^~4~^~BFZN~^~14156~^^^^^^^^^~03/01/2009~
-~14628~^~320~^0.^0^^~4~^~BFZN~^~14156~^^^^^^^^^~03/01/2009~
-~14628~^~321~^0.^0^^~4~^~BFZN~^~14156~^^^^^^^^^~03/01/2009~
-~14628~^~322~^0.^0^^~4~^~BFZN~^~14156~^^^^^^^^^~03/01/2009~
-~14628~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2009~
-~14628~^~334~^0.^0^^~4~^~BFZN~^~14156~^^^^^^^^^~03/01/2009~
-~14628~^~337~^0.^0^^~4~^~BFZN~^~14156~^^^^^^^^^~03/01/2009~
-~14628~^~338~^0.^0^^~4~^~BFZN~^~14156~^^^^^^^^^~03/01/2009~
-~14628~^~417~^0.^0^^~4~^~BFZN~^~14156~^^^^^^^^^~03/01/2009~
-~14628~^~431~^0.^0^^~4~^~BFZN~^~14156~^^^^^^^^^~03/01/2009~
-~14628~^~432~^0.^0^^~4~^~BFZN~^~14156~^^^^^^^^^~03/01/2009~
-~14628~^~435~^0.^0^^~4~^~NC~^~14156~^^^^^^^^^~08/01/2009~
-~14628~^~601~^0.^0^^~4~^~BFZN~^~14156~^^^^^^^^^~03/01/2009~
-~14629~^~208~^58.^1^^~8~^~LC~^^^^^^^^^^~03/01/2009~
-~14629~^~262~^33.^0^^~4~^~NR~^^^^^^^^^^~07/01/2013~
-~14629~^~263~^0.^0^^~4~^~BFZN~^~14154~^^^^^^^^^~03/01/2009~
-~14629~^~268~^244.^0^^~8~^~LC~^^^^^^^^^^~11/01/2011~
-~14629~^~301~^1.^5^0.^~1~^~A~^^^1^1.^2.^4^1.^1.^~2, 3~^~11/01/2011~
-~14629~^~304~^0.^5^0.^~1~^~A~^^^1^0.^0.^^^^~1, 2, 3~^~11/01/2011~
-~14629~^~305~^0.^5^0.^~1~^~A~^^^1^0.^0.^^^^~1, 2, 3~^~11/01/2011~
-~14629~^~306~^6.^5^0.^~1~^~A~^^^1^5.^7.^4^4.^7.^~2, 3~^~11/01/2011~
-~14629~^~307~^16.^5^0.^~1~^~A~^^^1^14.^16.^4^14.^16.^~2, 3~^~11/01/2011~
-~14629~^~318~^0.^0^^~4~^~NC~^^^^^^^^^^~03/01/2009~
-~14629~^~319~^0.^0^^~4~^~BFZN~^~14154~^^^^^^^^^~03/01/2009~
-~14629~^~320~^0.^0^^~4~^~BFZN~^~14154~^^^^^^^^^~03/01/2009~
-~14629~^~321~^0.^0^^~4~^~BFZN~^~14154~^^^^^^^^^~03/01/2009~
-~14629~^~322~^0.^0^^~4~^~BFZN~^~14154~^^^^^^^^^~03/01/2009~
-~14629~^~324~^0.^0^^~4~^~BFZN~^~14154~^^^^^^^^^~03/01/2009~
-~14629~^~334~^0.^0^^~4~^~BFZN~^~14154~^^^^^^^^^~03/01/2009~
-~14629~^~337~^0.^0^^~4~^~BFZN~^~14154~^^^^^^^^^~03/01/2009~
-~14629~^~338~^0.^0^^~4~^~BFZN~^~14154~^^^^^^^^^~03/01/2009~
-~14629~^~417~^0.^0^^~4~^~BFZN~^~14154~^^^^^^^^^~03/01/2009~
-~14629~^~431~^0.^0^^~4~^~BFZN~^~14154~^^^^^^^^^~03/01/2009~
-~14629~^~432~^0.^0^^~4~^~BFZN~^~14154~^^^^^^^^^~03/01/2009~
-~14629~^~435~^0.^0^^~4~^~NC~^~14154~^^^^^^^^^~05/01/2009~
-~14629~^~601~^0.^1^^~8~^~LC~^^^^^^^^^^~03/01/2009~
-~14630~^~208~^4.^1^^~8~^~LC~^^^^^^^^^^~03/01/2009~
-~14630~^~262~^33.^1^^~8~^~LC~^^^^^^^^^^~03/01/2009~
-~14630~^~263~^0.^0^^~4~^~BFZN~^~14156~^^^^^^^^^~03/01/2009~
-~14630~^~268~^17.^1^^~8~^~LC~^^^^^^^^^^~08/01/2009~
-~14630~^~301~^13.^0^^~4~^~BFZN~^~14156~^^^^^^^^^~03/01/2009~
-~14630~^~304~^3.^0^^~4~^~BFZN~^~14156~^^^^^^^^^~03/01/2009~
-~14630~^~305~^0.^0^^~4~^~BFZN~^~14156~^^^^^^^^^~03/01/2009~
-~14630~^~306~^3.^0^^~4~^~BFZN~^~14156~^^^^^^^^^~03/01/2009~
-~14630~^~307~^52.^1^^~8~^~LC~^^^^^^^^^^~03/01/2009~
-~14630~^~318~^0.^0^^~4~^~NC~^^^^^^^^^^~03/01/2009~
-~14630~^~319~^0.^0^^~4~^~BFZN~^~14156~^^^^^^^^^~03/01/2009~
-~14630~^~320~^0.^0^^~4~^~BFZN~^~14156~^^^^^^^^^~03/01/2009~
-~14630~^~321~^0.^0^^~4~^~BFZN~^~14156~^^^^^^^^^~03/01/2009~
-~14630~^~322~^0.^0^^~4~^~BFZN~^~14156~^^^^^^^^^~03/01/2009~
-~14630~^~324~^0.^0^^~4~^~BFZN~^~14156~^^^^^^^^^~03/01/2009~
-~14630~^~334~^0.^0^^~4~^~BFZN~^~14156~^^^^^^^^^~03/01/2009~
-~14630~^~337~^0.^0^^~4~^~BFZN~^~14156~^^^^^^^^^~03/01/2009~
-~14630~^~338~^0.^0^^~4~^~BFZN~^~14156~^^^^^^^^^~03/01/2009~
-~14630~^~417~^0.^0^^~4~^~BFZN~^~14156~^^^^^^^^^~03/01/2009~
-~14630~^~431~^0.^0^^~4~^~BFZN~^~14156~^^^^^^^^^~03/01/2009~
-~14630~^~432~^0.^0^^~4~^~BFZN~^~14156~^^^^^^^^^~03/01/2009~
-~14630~^~435~^0.^0^^~4~^~NC~^~14156~^^^^^^^^^~03/01/2009~
-~14630~^~601~^0.^0^^~4~^~BFZN~^~14156~^^^^^^^^^~03/01/2009~
-~14632~^~208~^101.^0^^~4~^~NC~^^^^^^^^^^~01/01/2009~
-~14632~^~268~^421.^0^^~4~^~NC~^^^^^^^^^^~01/01/2009~
-~14632~^~301~^110.^1^^~1~^~A~^^^^^^^^^^~01/01/2009~
-~14632~^~304~^16.^1^^~1~^~A~^^^^^^^^^^~01/01/2009~
-~14632~^~305~^110.^1^^~1~^~A~^^^^^^^^^^~01/01/2009~
-~14632~^~306~^160.^1^^~1~^~A~^^^^^^^^^^~01/01/2009~
-~14632~^~307~^54.^1^^~1~^~A~^^^^^^^^^^~01/01/2009~
-~14633~^~208~^4.^4^0.^~8~^~LC~^^^1^4.^4.^3^4.^4.^~4~^~03/01/2009~
-~14633~^~262~^0.^0^^~4~^~FLC~^^^^^^^^^^~03/01/2009~
-~14633~^~263~^0.^0^^~4~^~FLC~^^^^^^^^^^~03/01/2009~
-~14633~^~268~^17.^4^^~8~^~LC~^^^^^^^^^^~08/01/2009~
-~14633~^~301~^8.^1^^~8~^~LC~^^^^^^^^^^~03/01/2009~
-~14633~^~304~^1.^0^^~4~^~FLC~^^^^^^^^^^~03/01/2009~
-~14633~^~305~^1.^0^^~4~^~FLC~^^^^^^^^^^~03/01/2009~
-~14633~^~306~^24.^4^5.^~8~^~LC~^^^1^15.^34.^3^6.^41.^~4~^~03/01/2009~
-~14633~^~307~^14.^4^0.^~8~^~LC~^^^1^13.^15.^3^11.^15.^~4~^~03/01/2009~
-~14633~^~318~^2090.^4^10.^~8~^~LC~^^^1^2058.^2101.^3^2055.^2124.^~4~^~03/01/2009~
-~14633~^~319~^0.^0^^~4~^~FLC~^^^^^^^^^^~03/01/2009~
-~14633~^~320~^105.^0^^~4~^~NC~^^^^^^^^^^~03/01/2009~
-~14633~^~321~^1253.^0^^~4~^~FLC~^^^^^^^^^^~03/01/2009~
-~14633~^~322~^3.^0^^~4~^~FLC~^^^^^^^^^^~03/01/2009~
-~14633~^~324~^0.^0^^~4~^~FLC~^^^^^^^^^^~03/01/2009~
-~14633~^~334~^0.^0^^~4~^~FLC~^^^^^^^^^^~03/01/2009~
-~14633~^~337~^144.^0^^~4~^~FLC~^^^^^^^^^^~03/01/2009~
-~14633~^~338~^2.^0^^~4~^~FLC~^^^^^^^^^^~03/01/2009~
-~14633~^~417~^0.^0^^~4~^~FLC~^^^^^^^^^^~03/01/2009~
-~14633~^~431~^0.^0^^~4~^~FLC~^^^^^^^^^^~03/01/2009~
-~14633~^~432~^0.^0^^~4~^~FLC~^^^^^^^^^^~03/01/2009~
-~14633~^~435~^0.^0^^~4~^~NC~^^^^^^^^^^~03/01/2009~
-~14633~^~601~^0.^0^^~4~^~FLC~^^^^^^^^^^~03/01/2009~
-~14634~^~208~^77.^0^^~4~^~FLC~^^^^^^^^^^~04/01/2009~
-~14634~^~262~^0.^0^^~4~^~FLC~^^^^^^^^^^~04/01/2009~
-~14634~^~263~^0.^0^^~4~^~FLC~^^^^^^^^^^~04/01/2009~
-~14634~^~268~^322.^0^^~4~^~FLC~^^^^^^^^^^~04/01/2009~
-~14634~^~301~^164.^0^^~4~^~FLC~^^^^^^^^^^~04/01/2009~
-~14634~^~304~^10.^0^^~4~^~FLC~^^^^^^^^^^~04/01/2009~
-~14634~^~305~^85.^0^^~4~^~FLC~^^^^^^^^^^~04/01/2009~
-~14634~^~306~^130.^0^^~4~^~FLC~^^^^^^^^^^~04/01/2009~
-~14634~^~307~^49.^0^^~4~^~FLC~^^^^^^^^^^~04/01/2009~
-~14634~^~318~^175.^0^^~4~^~FLC~^^^^^^^^^^~04/01/2009~
-~14634~^~319~^51.^0^^~4~^~FLC~^^^^^^^^^^~04/01/2009~
-~14634~^~320~^51.^0^^~4~^~FLC~^^^^^^^^^^~04/01/2009~
-~14634~^~321~^4.^0^^~4~^~FLC~^^^^^^^^^^~04/01/2009~
-~14634~^~322~^0.^0^^~4~^~FLC~^^^^^^^^^^~04/01/2009~
-~14634~^~324~^45.^0^^~4~^~FLC~^^^^^^^^^^~04/01/2009~
-~14634~^~334~^0.^0^^~4~^~FLC~^^^^^^^^^^~04/01/2009~
-~14634~^~337~^0.^0^^~4~^~FLC~^^^^^^^^^^~04/01/2009~
-~14634~^~338~^0.^0^^~4~^~FLC~^^^^^^^^^^~04/01/2009~
-~14634~^~417~^4.^0^^~4~^~FLC~^^^^^^^^^^~04/01/2009~
-~14634~^~431~^0.^0^^~4~^~FLC~^^^^^^^^^^~04/01/2009~
-~14634~^~432~^4.^0^^~4~^~FLC~^^^^^^^^^^~04/01/2009~
-~14634~^~435~^4.^0^^~4~^~NC~^^^^^^^^^^~04/01/2009~
-~14634~^~601~^8.^0^^~4~^~FLC~^^^^^^^^^^~04/01/2009~
-~14635~^~208~^46.^0^^~4~^~NC~^^^^^^^^^^~05/01/2009~
-~14635~^~262~^0.^0^^~4~^~BFZN~^~14633~^^^^^^^^^~04/01/2009~
-~14635~^~263~^0.^0^^~4~^~BFZN~^~14633~^^^^^^^^^~04/01/2009~
-~14635~^~268~^192.^0^^~4~^~NC~^^^^^^^^^^~05/01/2009~
-~14635~^~301~^8.^3^0.^~8~^~LC~^^^1^8.^8.^2^8.^8.^~4~^~04/01/2009~
-~14635~^~304~^7.^3^0.^~8~^~LC~^^^1^7.^7.^2^6.^6.^~4~^~04/01/2009~
-~14635~^~305~^1.^0^^~4~^~BFZN~^~14633~^^^^^^^^^~04/01/2009~
-~14635~^~306~^101.^4^6.^~8~^~LC~^^^2^85.^118.^3^79.^121.^~4~^~05/01/2009~
-~14635~^~307~^29.^4^1.^~8~^~LC~^^^2^28.^33.^3^26.^32.^~4~^~05/01/2009~
-~14635~^~318~^713.^4^346.^~8~^~LC~^^^2^6.^1626.^3^-388.^1814.^~4~^~05/01/2009~
-~14635~^~319~^0.^0^^~4~^~BFZN~^~14633~^^^^^^^^^~04/01/2009~
-~14635~^~320~^36.^0^^~4~^~NC~^^^^^^^^^^~05/01/2009~
-~14635~^~321~^427.^0^^~4~^~BNA~^~14633~^^^^^^^^^~05/01/2009~
-~14635~^~322~^1.^0^^~4~^~BNA~^~14633~^^^^^^^^^~05/01/2009~
-~14635~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2009~
-~14635~^~334~^0.^0^^~4~^~BNA~^~14633~^^^^^^^^^~05/01/2009~
-~14635~^~337~^144.^0^^~4~^~BFZN~^~14633~^^^^^^^^^~04/01/2009~
-~14635~^~338~^2.^0^^~4~^~BFZN~^~14633~^^^^^^^^^~04/01/2009~
-~14635~^~417~^3.^3^0.^~8~^~LC~^^^1^3.^3.^2^3.^3.^~4~^~05/01/2009~
-~14635~^~431~^0.^0^^~4~^~BFZN~^~14633~^^^^^^^^^~05/01/2009~
-~14635~^~432~^3.^0^^~4~^~NR~^^^^^^^^^^~05/01/2009~
-~14635~^~435~^3.^0^^~4~^~NC~^~14633~^^^^^^^^^~05/01/2009~
-~14635~^~601~^0.^0^^~4~^~BFZN~^~14633~^^^^^^^^^~04/01/2009~
-~14636~^~208~^39.^0^^~4~^~NC~^^^^^^^^^^~04/01/2009~
-~14636~^~262~^0.^0^^~4~^~BFSN~^~14264~^^^^^^^^^~04/01/2009~
-~14636~^~263~^0.^0^^~4~^~BFSN~^~14264~^^^^^^^^^~04/01/2009~
-~14636~^~268~^161.^0^^~4~^~NC~^^^^^^^^^^~04/01/2009~
-~14636~^~301~^5.^4^0.^~1~^~A~^^^1^5.^6.^3^4.^5.^~2, 3~^~04/01/2009~
-~14636~^~304~^2.^4^0.^~1~^~A~^^^1^2.^2.^3^1.^2.^~2, 3~^~04/01/2009~
-~14636~^~305~^1.^4^0.^~1~^~A~^^^1^1.^2.^3^0.^1.^~2, 3~^~04/01/2009~
-~14636~^~306~^11.^4^0.^~1~^~A~^^^1^9.^13.^3^8.^13.^~2, 3~^~04/01/2009~
-~14636~^~307~^2.^4^0.^~1~^~A~^^^1^0.^4.^3^0.^4.^~1, 2, 3~^~04/01/2009~
-~14636~^~318~^0.^0^^~4~^~NC~^^^^^^^^^^~04/01/2009~
-~14636~^~319~^0.^0^^~4~^~BFSN~^~14264~^^^^^^^^^~04/01/2009~
-~14636~^~320~^0.^0^^~4~^~BFSN~^~14264~^^^^^^^^^~04/01/2009~
-~14636~^~321~^0.^0^^~4~^~BFSN~^~14264~^^^^^^^^^~04/01/2009~
-~14636~^~322~^0.^0^^~4~^~BFSN~^~14264~^^^^^^^^^~04/01/2009~
-~14636~^~324~^0.^0^^~4~^~BFSN~^^^^^^^^^^~05/01/2009~
-~14636~^~334~^0.^0^^~4~^~BFSN~^~14264~^^^^^^^^^~04/01/2009~
-~14636~^~337~^0.^0^^~4~^~BFSN~^~14264~^^^^^^^^^~04/01/2009~
-~14636~^~338~^0.^0^^~4~^~BFSN~^~14264~^^^^^^^^^~04/01/2009~
-~14636~^~417~^1.^1^^~1~^~A~^^^^^^^^^~1~^~04/01/2009~
-~14636~^~431~^0.^1^^~1~^~A~^^^^^^^^^~1~^~04/01/2009~
-~14636~^~432~^1.^0^^~1~^~AS~^^^^^^^^^^~04/01/2009~
-~14636~^~435~^1.^0^^~4~^~NC~^~14264~^^^^^^^^^~05/01/2009~
-~14636~^~601~^0.^0^^~4~^~BFSN~^~14264~^^^^^^^^^~04/01/2009~
-~14637~^~208~^18.^0^^~4~^~NC~^^^^^^^^^^~04/01/2009~
-~14637~^~262~^0.^0^^~4~^~BFZN~^~14605~^^^^^^^^^~04/01/2009~
-~14637~^~263~^0.^0^^~4~^~BFZN~^~14605~^^^^^^^^^~04/01/2009~
-~14637~^~268~^75.^0^^~4~^~NC~^^^^^^^^^^~04/01/2009~
-~14637~^~301~^17.^0^^~4~^~BFZN~^~14605~^^^^^^^^^~04/01/2009~
-~14637~^~304~^3.^0^^~4~^~BFZN~^~14605~^^^^^^^^^~04/01/2009~
-~14637~^~305~^0.^0^^~4~^~BFZN~^~14605~^^^^^^^^^~04/01/2009~
-~14637~^~306~^0.^0^^~4~^~BFZN~^~14605~^^^^^^^^^~04/01/2009~
-~14637~^~307~^8.^1^^~8~^~LC~^^^^^^^^^^~04/01/2009~
-~14637~^~318~^106.^0^^~4~^~NC~^^^^^^^^^^~04/01/2009~
-~14637~^~319~^32.^0^^~4~^~BFZN~^~14605~^^^^^^^^^~04/01/2009~
-~14637~^~320~^32.^0^^~4~^~BFZN~^~14605~^^^^^^^^^~04/01/2009~
-~14637~^~321~^0.^0^^~4~^~BFZN~^~14605~^^^^^^^^^~04/01/2009~
-~14637~^~322~^0.^0^^~4~^~BFZN~^~14605~^^^^^^^^^~04/01/2009~
-~14637~^~324~^0.^0^^~4~^~BFZN~^^^^^^^^^^~05/01/2009~
-~14637~^~334~^0.^0^^~4~^~BFZN~^~14605~^^^^^^^^^~04/01/2009~
-~14637~^~337~^0.^0^^~4~^~BFZN~^~14605~^^^^^^^^^~04/01/2009~
-~14637~^~338~^0.^0^^~4~^~BFZN~^~14605~^^^^^^^^^~04/01/2009~
-~14637~^~417~^8.^0^^~4~^~BFZN~^~14605~^^^^^^^^^~04/01/2009~
-~14637~^~431~^8.^0^^~4~^~BFZN~^~14605~^^^^^^^^^~04/01/2009~
-~14637~^~432~^0.^0^^~4~^~BFZN~^~14605~^^^^^^^^^~04/01/2009~
-~14637~^~435~^14.^0^^~4~^~NC~^~14605~^^^^^^^^^~05/01/2009~
-~14637~^~601~^0.^0^^~4~^~BFZN~^~14605~^^^^^^^^^~04/01/2009~
-~14638~^~208~^54.^0^^~4~^~NC~^^^^^^^^^^~05/01/2009~
-~14638~^~268~^228.^0^^~4~^~NC~^^^^^^^^^^~05/01/2009~
-~14638~^~301~^18.^3^6.^~1~^~A~^^^1^7.^28.^2^-7.^44.^~2, 3~^~05/01/2009~
-~14638~^~304~^3.^3^0.^~1~^~A~^^^1^1.^4.^2^-1.^6.^~2, 3~^~05/01/2009~
-~14638~^~305~^15.^3^5.^~1~^~A~^^^1^6.^25.^2^-7.^38.^~2, 3~^~05/01/2009~
-~14638~^~306~^34.^3^15.^~1~^~A~^^^1^10.^62.^2^-30.^99.^~2, 3~^~05/01/2009~
-~14638~^~307~^14.^3^7.^~1~^~A~^^^1^6.^29.^2^-16.^45.^~2, 3~^~05/01/2009~
-~14639~^~208~^47.^0^^~4~^~NC~^^^^^^^^^^~06/01/2009~
-~14639~^~262~^0.^0^^~4~^~FLC~^^^^^^^^^^~06/01/2009~
-~14639~^~263~^0.^0^^~4~^~FLC~^^^^^^^^^^~06/01/2009~
-~14639~^~268~^195.^0^^~4~^~NC~^^^^^^^^^^~06/01/2009~
-~14639~^~301~^118.^3^6.^~8~^~LC~^^^1^104.^125.^2^88.^147.^~4~^~06/01/2009~
-~14639~^~304~^11.^0^^~4~^~FLC~^^^^^^^^^^~06/01/2009~
-~14639~^~305~^56.^3^6.^~8~^~LC~^^^1^42.^63.^2^25.^85.^~4~^~06/01/2009~
-~14639~^~306~^27.^1^^~8~^~LC~^^^^^^^^^^~06/01/2009~
-~14639~^~307~^39.^3^3.^~8~^~LC~^^^1^33.^46.^2^23.^54.^~4~^~06/01/2009~
-~14639~^~318~^208.^3^0.^~8~^~LC~^^^1^208.^208.^2^208.^208.^~4~^~06/01/2009~
-~14639~^~319~^63.^0^^~4~^~NR~^^^^^^^^^^~06/01/2009~
-~14639~^~320~^63.^0^^~4~^~NC~^^^^^^^^^^~06/01/2009~
-~14639~^~321~^0.^0^^~4~^~FLC~^^^^^^^^^^~06/01/2009~
-~14639~^~322~^0.^0^^~4~^~FLC~^^^^^^^^^^~06/01/2009~
-~14639~^~324~^42.^3^0.^~8~^~LC~^^^1^42.^42.^2^41.^41.^~4~^~06/01/2009~
-~14639~^~334~^0.^0^^~4~^~FLC~^^^^^^^^^^~06/01/2009~
-~14639~^~337~^0.^0^^~4~^~FLC~^^^^^^^^^^~06/01/2009~
-~14639~^~338~^0.^0^^~4~^~FLC~^^^^^^^^^^~06/01/2009~
-~14639~^~417~^2.^0^^~4~^~FLC~^^^^^^^^^^~06/01/2009~
-~14639~^~431~^0.^0^^~4~^~FLC~^^^^^^^^^^~06/01/2009~
-~14639~^~432~^2.^0^^~4~^~FLC~^^^^^^^^^^~06/01/2009~
-~14639~^~435~^2.^0^^~4~^~NC~^^^^^^^^^^~07/01/2009~
-~14639~^~601~^0.^3^0.^~8~^~LC~^^^1^0.^0.^2^0.^0.^~4~^~06/01/2009~
-~14640~^~208~^49.^1^^~8~^~LC~^^^^^^^^^^~07/01/2009~
-~14640~^~262~^19.^1^^~8~^~LC~^^^^^^^^^^~07/01/2009~
-~14640~^~263~^0.^0^^~4~^~BFZN~^~14154~^^^^^^^^^~07/01/2009~
-~14640~^~268~^204.^0^^~8~^~LC~^^^^^^^^^^~12/01/2011~
-~14640~^~301~^2.^0^^~4~^~BFZN~^~14144~^^^^^^^^^~07/01/2009~
-~14640~^~304~^3.^0^^~4~^~BFZN~^~14154~^^^^^^^^^~07/01/2009~
-~14640~^~305~^0.^0^^~4~^~BFZN~^~14154~^^^^^^^^^~07/01/2009~
-~14640~^~306~^3.^0^^~4~^~BFZN~^~14154~^^^^^^^^^~07/01/2009~
-~14640~^~307~^12.^1^^~8~^~LC~^^^^^^^^^^~07/01/2009~
-~14640~^~318~^0.^1^^~8~^~LC~^^^^^^^^^^~07/01/2009~
-~14640~^~319~^0.^0^^~4~^~BFZN~^~14154~^^^^^^^^^~07/01/2009~
-~14640~^~320~^0.^0^^~4~^~BFZN~^~14154~^^^^^^^^^~07/01/2009~
-~14640~^~321~^0.^0^^~4~^~BFZN~^~14154~^^^^^^^^^~07/01/2009~
-~14640~^~322~^0.^0^^~4~^~BFZN~^~14154~^^^^^^^^^~07/01/2009~
-~14640~^~324~^0.^0^^~4~^~BFZN~^~14154~^^^^^^^^^~07/01/2009~
-~14640~^~334~^0.^0^^~4~^~BFZN~^~14154~^^^^^^^^^~07/01/2009~
-~14640~^~337~^0.^0^^~4~^~BFZN~^~14154~^^^^^^^^^~07/01/2009~
-~14640~^~338~^0.^0^^~4~^~BFZN~^~14154~^^^^^^^^^~07/01/2009~
-~14640~^~417~^0.^0^^~4~^~BFZN~^~14154~^^^^^^^^^~07/01/2009~
-~14640~^~431~^0.^0^^~4~^~BFZN~^~14154~^^^^^^^^^~07/01/2009~
-~14640~^~432~^0.^0^^~4~^~BFZN~^~14154~^^^^^^^^^~07/01/2009~
-~14640~^~435~^0.^0^^~4~^~NC~^~14154~^^^^^^^^^~07/01/2009~
-~14640~^~601~^0.^1^^~8~^~LC~^^^^^^^^^^~07/01/2009~
-~14641~^~208~^1.^1^^~8~^~LC~^^^^^^^^^^~07/01/2009~
-~14641~^~262~^19.^1^^~8~^~LC~^^^^^^^^^^~07/01/2009~
-~14641~^~263~^0.^0^^~4~^~BFZN~^~14154~^^^^^^^^^~07/01/2009~
-~14641~^~268~^6.^0^^~8~^~LC~^^^^^^^^^^~12/01/2011~
-~14641~^~301~^2.^0^^~4~^~BFZN~^~14144~^^^^^^^^^~07/01/2009~
-~14641~^~304~^3.^0^^~4~^~BFZN~^~14154~^^^^^^^^^~07/01/2009~
-~14641~^~305~^0.^0^^~4~^~BFZN~^~14154~^^^^^^^^^~07/01/2009~
-~14641~^~306~^3.^0^^~4~^~BFZN~^~14154~^^^^^^^^^~07/01/2009~
-~14641~^~307~^14.^1^^~8~^~LC~^^^^^^^^^^~07/01/2009~
-~14641~^~318~^0.^1^^~8~^~LC~^^^^^^^^^^~07/01/2009~
-~14641~^~319~^0.^0^^~4~^~BFZN~^~14154~^^^^^^^^^~07/01/2009~
-~14641~^~320~^0.^0^^~4~^~BFZN~^~14154~^^^^^^^^^~07/01/2009~
-~14641~^~321~^0.^0^^~4~^~BFZN~^~14154~^^^^^^^^^~07/01/2009~
-~14641~^~322~^0.^0^^~4~^~BFZN~^~14154~^^^^^^^^^~07/01/2009~
-~14641~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~07/01/2009~
-~14641~^~334~^0.^0^^~4~^~BFZN~^~14154~^^^^^^^^^~07/01/2009~
-~14641~^~337~^0.^0^^~4~^~BFZN~^~14154~^^^^^^^^^~07/01/2009~
-~14641~^~338~^0.^0^^~4~^~BFZN~^~14154~^^^^^^^^^~07/01/2009~
-~14641~^~417~^0.^0^^~4~^~BFZN~^~14154~^^^^^^^^^~07/01/2009~
-~14641~^~431~^0.^0^^~4~^~BFZN~^~14154~^^^^^^^^^~07/01/2009~
-~14641~^~432~^0.^0^^~4~^~BFZN~^~14154~^^^^^^^^^~07/01/2009~
-~14641~^~435~^0.^0^^~4~^~NC~^~14154~^^^^^^^^^~07/01/2009~
-~14641~^~601~^0.^1^^~8~^~LC~^^^^^^^^^^~07/01/2009~
-~14644~^~208~^8.^0^^~9~^~MC~^^^^^^^^^^~05/01/2011~
-~14644~^~262~^0.^0^^~4~^~BFZN~^~14460~^^^^^^^^^~03/01/2011~
-~14644~^~263~^0.^0^^~4~^~BFZN~^~14460~^^^^^^^^^~03/01/2011~
-~14644~^~268~^33.^0^^~9~^~MC~^^^^^^^^^^~05/01/2011~
-~14644~^~301~^0.^0^^~9~^~MC~^^^^^^^^^^~05/01/2011~
-~14644~^~304~^0.^0^^~9~^~MC~^^^^^^^^^^~05/01/2011~
-~14644~^~305~^7.^0^^~9~^~MC~^^^^^^^^^^~05/01/2011~
-~14644~^~306~^13.^0^^~9~^~MC~^^^^^^^^^^~05/01/2011~
-~14644~^~307~^45.^0^^~9~^~MC~^^^^^^^^^^~05/01/2011~
-~14644~^~318~^0.^0^^~9~^~MC~^^^^^^^^^^~05/01/2011~
-~14644~^~319~^0.^0^^~4~^~BFZN~^~14460~^^^^^^^^^~03/01/2011~
-~14644~^~320~^0.^0^^~4~^~NC~^~14460~^^^^^^^^^~03/01/2011~
-~14644~^~321~^0.^0^^~4~^~BFZN~^~14460~^^^^^^^^^~03/01/2011~
-~14644~^~322~^0.^0^^~4~^~BFZN~^~14460~^^^^^^^^^~03/01/2011~
-~14644~^~324~^0.^0^^~9~^~MC~^^^^^^^^^^~05/01/2011~
-~14644~^~334~^0.^0^^~4~^~BFZN~^~14460~^^^^^^^^^~03/01/2011~
-~14644~^~337~^0.^0^^~4~^~BFZN~^~14460~^^^^^^^^^~03/01/2011~
-~14644~^~338~^0.^0^^~4~^~BFZN~^~14460~^^^^^^^^^~03/01/2011~
-~14644~^~417~^0.^0^^~9~^~MC~^^^^^^^^^^~05/01/2011~
-~14644~^~431~^0.^0^^~4~^~BFZN~^~14460~^^^^^^^^^~03/01/2011~
-~14644~^~432~^0.^0^^~4~^~BFZN~^~14460~^^^^^^^^^~03/01/2011~
-~14644~^~435~^0.^0^^~4~^~NC~^~14460~^^^^^^^^^~03/01/2011~
-~14644~^~601~^0.^0^^~9~^~MC~^^^^^^^^^^~05/01/2011~
-~14645~^~208~^64.^0^^~4~^~NC~^^^^^^^^^^~03/01/2011~
-~14645~^~262~^0.^0^^~4~^~BFZN~^~14429~^^^^^^^^^~03/01/2011~
-~14645~^~263~^0.^0^^~4~^~BFZN~^~14429~^^^^^^^^^~03/01/2011~
-~14645~^~268~^268.^0^^~4~^~NC~^^^^^^^^^^~03/01/2011~
-~14645~^~301~^3.^0^^~4~^~BFZN~^~14429~^^^^^^^^^~03/01/2011~
-~14645~^~304~^1.^0^^~4~^~BFZN~^~14429~^^^^^^^^^~03/01/2011~
-~14645~^~305~^0.^0^^~4~^~BFZN~^~14647~^^^^^^^^^~03/01/2011~
-~14645~^~306~^31.^0^^~4~^~BFZN~^~14647~^^^^^^^^^~03/01/2011~
-~14645~^~307~^36.^7^11.^~8~^~LC~^^^1^17.^105.^6^7.^64.^~4~^~03/01/2011~
-~14645~^~318~^0.^0^^~4~^~NC~^^^^^^^^^^~03/01/2011~
-~14645~^~319~^0.^0^^~4~^~BFZN~^~14429~^^^^^^^^^~03/01/2011~
-~14645~^~320~^0.^0^^~4~^~BFZN~^~14429~^^^^^^^^^~03/01/2011~
-~14645~^~321~^0.^0^^~4~^~BFZN~^~14429~^^^^^^^^^~03/01/2011~
-~14645~^~322~^0.^0^^~4~^~BFZN~^~14429~^^^^^^^^^~03/01/2011~
-~14645~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2011~
-~14645~^~334~^0.^0^^~4~^~BFZN~^~14429~^^^^^^^^^~03/01/2011~
-~14645~^~337~^0.^0^^~4~^~BFZN~^~14429~^^^^^^^^^~03/01/2011~
-~14645~^~338~^0.^0^^~4~^~BFZN~^~14429~^^^^^^^^^~03/01/2011~
-~14645~^~417~^0.^0^^~4~^~BFZN~^~14429~^^^^^^^^^~03/01/2011~
-~14645~^~431~^0.^0^^~4~^~BFZN~^~14429~^^^^^^^^^~03/01/2011~
-~14645~^~432~^0.^0^^~4~^~BFZN~^~14429~^^^^^^^^^~03/01/2011~
-~14645~^~435~^0.^0^^~4~^~NC~^~14429~^^^^^^^^^~03/01/2011~
-~14645~^~601~^0.^0^^~4~^~BFZN~^~14429~^^^^^^^^^~03/01/2011~
-~14646~^~208~^27.^0^^~4~^~NC~^~14645~^^^^^^^^^~03/01/2011~
-~14646~^~262~^0.^0^^~4~^~BFZN~^~14645~^^^^^^^^^~03/01/2011~
-~14646~^~263~^0.^0^^~4~^~BFZN~^~14645~^^^^^^^^^~03/01/2011~
-~14646~^~268~^112.^0^^~4~^~NC~^^^^^^^^^^~03/01/2011~
-~14646~^~301~^3.^0^^~4~^~BFZN~^~14645~^^^^^^^^^~03/01/2011~
-~14646~^~304~^1.^0^^~4~^~BFZN~^~14645~^^^^^^^^^~03/01/2011~
-~14646~^~305~^0.^0^^~4~^~BFZN~^~14645~^^^^^^^^^~03/01/2011~
-~14646~^~306~^31.^0^^~4~^~BFZN~^~14645~^^^^^^^^^~03/01/2011~
-~14646~^~307~^36.^0^^~4~^~BFZN~^~14645~^^^^^^^^^~03/01/2011~
-~14646~^~318~^0.^0^^~4~^~NC~^^^^^^^^^^~03/01/2011~
-~14646~^~319~^0.^0^^~4~^~BFZN~^~14645~^^^^^^^^^~03/01/2011~
-~14646~^~320~^0.^0^^~4~^~BFZN~^~14645~^^^^^^^^^~03/01/2011~
-~14646~^~321~^0.^0^^~4~^~BFZN~^~14645~^^^^^^^^^~03/01/2011~
-~14646~^~322~^0.^0^^~4~^~BFZN~^~14645~^^^^^^^^^~03/01/2011~
-~14646~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2011~
-~14646~^~334~^0.^0^^~4~^~BFZN~^~14645~^^^^^^^^^~03/01/2011~
-~14646~^~337~^0.^0^^~4~^~BFZN~^~14645~^^^^^^^^^~03/01/2011~
-~14646~^~338~^0.^0^^~4~^~BFZN~^~14645~^^^^^^^^^~03/01/2011~
-~14646~^~417~^0.^0^^~4~^~BFZN~^~14645~^^^^^^^^^~03/01/2011~
-~14646~^~431~^0.^0^^~4~^~BFZN~^~14645~^^^^^^^^^~03/01/2011~
-~14646~^~432~^0.^0^^~4~^~BFZN~^~14645~^^^^^^^^^~03/01/2011~
-~14646~^~435~^0.^0^^~4~^~NC~^~14645~^^^^^^^^^~03/01/2011~
-~14646~^~601~^0.^0^^~4~^~BFZN~^~14645~^^^^^^^^^~03/01/2011~
-~14647~^~208~^29.^1^^~8~^~LC~^^^^^^^^^^~03/01/2011~
-~14647~^~262~^0.^0^^~4~^~FLC~^^^^^^^^^^~03/01/2011~
-~14647~^~263~^0.^0^^~4~^~FLC~^^^^^^^^^^~03/01/2011~
-~14647~^~268~^122.^0^^~8~^~LC~^^^^^^^^^^~03/01/2011~
-~14647~^~301~^42.^1^^~8~^~LC~^^^^^^^^^^~03/01/2011~
-~14647~^~304~^1.^5^0.^~1~^~A~^^^1^0.^1.^4^0.^1.^~1, 2, 3~^~03/01/2011~
-~14647~^~305~^0.^5^0.^~1~^~A~^^^1^0.^1.^4^0.^0.^~1, 2, 3~^~03/01/2011~
-~14647~^~306~^31.^5^1.^~1~^~A~^^^1^27.^34.^4^27.^34.^~2, 3~^~03/01/2011~
-~14647~^~307~^25.^1^^~8~^~LC~^^^^^^^^^^~03/01/2011~
-~14647~^~318~^3.^0^^~4~^~NC~^^^^^^^^^^~08/01/2011~
-~14647~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~08/01/2011~
-~14647~^~320~^0.^0^^~4~^~NC~^^^^^^^^^^~08/01/2011~
-~14647~^~321~^0.^2^^~1~^~A~^^^1^0.^0.^1^^^^~03/01/2011~
-~14647~^~322~^0.^0^^~4~^~FLC~^^^^^^^^^^~03/01/2011~
-~14647~^~324~^10.^0^^~4~^~O~^^^^^^^^^^~03/01/2011~
-~14647~^~334~^3.^0^^~4~^~FLC~^^^^^^^^^^~03/01/2011~
-~14647~^~337~^0.^0^^~4~^~FLC~^^^^^^^^^^~03/01/2011~
-~14647~^~338~^2.^0^^~4~^~FLC~^^^^^^^^^^~03/01/2011~
-~14647~^~417~^2.^0^^~1~^~AS~^^^^^^^^^^~03/01/2011~
-~14647~^~431~^0.^0^^~4~^~FLC~^^^^^^^^^^~03/01/2011~
-~14647~^~432~^2.^0^^~1~^~AS~^^^^^^^^^^~03/01/2011~
-~14647~^~435~^2.^0^^~4~^~NC~^^^^^^^^^^~03/01/2011~
-~14647~^~601~^0.^1^^~8~^~LC~^^^^^^^^^^~03/01/2011~
-~14648~^~208~^54.^4^2.^~11~^~JO~^^^1^50.^59.^3^46.^60.^~4~^~03/01/2011~
-~14648~^~262~^0.^0^^~4~^~BFZN~^~14651~^^^^^^^^^~03/01/2011~
-~14648~^~263~^0.^0^^~4~^~BFZN~^~14651~^^^^^^^^^~03/01/2011~
-~14648~^~268~^225.^0^^~11~^~JO~^^^^^^^^^^~03/01/2011~
-~14648~^~301~^3.^0^^~4~^~BFZN~^~14651~^^^^^^^^^~03/01/2011~
-~14648~^~304~^5.^0^^~4~^~BFZN~^~14651~^^^^^^^^^~03/01/2011~
-~14648~^~305~^7.^0^^~4~^~BFZN~^~14651~^^^^^^^^^~03/01/2011~
-~14648~^~306~^122.^0^^~4~^~BFZN~^~14651~^^^^^^^^^~03/01/2011~
-~14648~^~307~^61.^3^11.^~8~^~LC~^^^1^38.^72.^2^12.^109.^~4~^~06/01/2013~
-~14648~^~318~^17.^0^^~4~^~NC~^^^^^^^^^^~03/01/2011~
-~14648~^~319~^5.^0^^~4~^~BFZN~^~14651~^^^^^^^^^~03/01/2011~
-~14648~^~320~^5.^0^^~4~^~NC~^~14651~^^^^^^^^^~03/01/2011~
-~14648~^~321~^0.^0^^~4~^~BFZN~^~14651~^^^^^^^^^~03/01/2011~
-~14648~^~322~^0.^0^^~4~^~BFZN~^~14651~^^^^^^^^^~03/01/2011~
-~14648~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2011~
-~14648~^~334~^0.^0^^~4~^~BFZN~^~14651~^^^^^^^^^~03/01/2011~
-~14648~^~337~^0.^0^^~4~^~BFZN~^~14651~^^^^^^^^^~03/01/2011~
-~14648~^~338~^16.^0^^~4~^~BFZN~^~14651~^^^^^^^^^~03/01/2011~
-~14648~^~417~^0.^0^^~4~^~BFZN~^~14651~^^^^^^^^^~03/01/2011~
-~14648~^~431~^0.^0^^~4~^~BFZN~^~14651~^^^^^^^^^~03/01/2011~
-~14648~^~432~^0.^0^^~4~^~BFZN~^~14651~^^^^^^^^^~03/01/2011~
-~14648~^~435~^0.^0^^~4~^~NC~^~14651~^^^^^^^^^~03/01/2011~
-~14648~^~601~^0.^0^^~4~^~BFZN~^~14651~^^^^^^^^^~03/01/2011~
-~14649~^~208~^0.^0^^~4~^~NC~^^^^^^^^^^~04/01/2015~
-~14649~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2011~
-~14649~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2011~
-~14649~^~268~^0.^0^^~4~^~NC~^^^^^^^^^^~04/01/2015~
-~14649~^~301~^8.^1^^~1~^~A~^^^^^^^^^^~01/01/2015~
-~14649~^~304~^3.^1^^~1~^~A~^^^^^^^^^^~01/01/2015~
-~14649~^~305~^1.^1^^~1~^~A~^^^^^^^^^^~01/01/2015~
-~14649~^~306~^20.^1^^~1~^~A~^^^^^^^^^^~01/01/2015~
-~14649~^~307~^4.^1^^~1~^~A~^^^^^^^^^^~01/01/2015~
-~14649~^~318~^0.^0^^~1~^~AS~^^^^^^^^^^~01/01/2015~
-~14649~^~319~^0.^0^^~4~^~BFZN~^~14381~^^^^^^^^^~04/01/2011~
-~14649~^~320~^0.^0^^~1~^~AS~^^^^^^^^^^~01/01/2015~
-~14649~^~321~^0.^1^^~1~^~A~^^^^^^^^^~1~^~01/01/2015~
-~14649~^~322~^0.^1^^~1~^~A~^^^^^^^^^~1~^~01/01/2015~
-~14649~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2011~
-~14649~^~334~^0.^1^^~1~^~A~^^^^^^^^^~1~^~01/01/2015~
-~14649~^~337~^0.^1^^~1~^~A~^^^^^^^^^~1~^~01/01/2015~
-~14649~^~338~^0.^1^^~1~^~A~^^^^^^^^^~1~^~01/01/2015~
-~14649~^~417~^1.^0^^~4~^~BFZN~^~14381~^^^^^^^^^~04/01/2011~
-~14649~^~431~^0.^0^^~4~^~BFZN~^~14381~^^^^^^^^^~04/01/2011~
-~14649~^~432~^1.^0^^~4~^~BFZN~^~14381~^^^^^^^^^~04/01/2011~
-~14649~^~435~^1.^0^^~4~^~NC~^~14381~^^^^^^^^^~04/01/2011~
-~14649~^~601~^0.^0^^~4~^~BFFN~^~11416~^^^^^^^^^~04/01/2011~
-~14651~^~208~^46.^0^^~4~^~RA~^^^^^^^^^^~03/01/2011~
-~14651~^~262~^0.^0^^~4~^~RA~^^^^^^^^^^~03/01/2011~
-~14651~^~263~^0.^0^^~4~^~RA~^^^^^^^^^^~03/01/2011~
-~14651~^~268~^192.^0^^~4~^~RA~^^^^^^^^^^~03/01/2011~
-~14651~^~301~^3.^0^^~4~^~BFZN~^~14645~^^^^^^^^^~03/01/2011~
-~14651~^~304~^5.^0^^~4~^~RA~^^^^^^^^^^~03/01/2011~
-~14651~^~305~^7.^0^^~4~^~RA~^^^^^^^^^^~03/01/2011~
-~14651~^~306~^122.^0^^~4~^~RA~^^^^^^^^^^~03/01/2011~
-~14651~^~307~^8.^0^^~4~^~RA~^^^^^^^^^^~03/01/2011~
-~14651~^~318~^17.^0^^~4~^~RA~^^^^^^^^^^~03/01/2011~
-~14651~^~319~^5.^0^^~4~^~RA~^^^^^^^^^^~03/01/2011~
-~14651~^~320~^5.^0^^~4~^~NC~^^^^^^^^^^~03/01/2011~
-~14651~^~321~^0.^0^^~4~^~RA~^^^^^^^^^^~03/01/2011~
-~14651~^~322~^0.^0^^~4~^~RA~^^^^^^^^^^~03/01/2011~
-~14651~^~324~^0.^0^^~4~^~RA~^^^^^^^^^^~03/01/2011~
-~14651~^~334~^0.^0^^~4~^~RA~^^^^^^^^^^~03/01/2011~
-~14651~^~337~^0.^0^^~4~^~RA~^^^^^^^^^^~03/01/2011~
-~14651~^~338~^16.^0^^~4~^~RA~^^^^^^^^^^~03/01/2011~
-~14651~^~417~^0.^0^^~4~^~RA~^^^^^^^^^^~03/01/2011~
-~14651~^~431~^0.^0^^~4~^~RA~^^^^^^^^^^~03/01/2011~
-~14651~^~432~^0.^0^^~4~^~RA~^^^^^^^^^^~03/01/2011~
-~14651~^~435~^0.^0^^~4~^~NC~^^^^^^^^^^~03/01/2011~
-~14651~^~601~^0.^0^^~4~^~RA~^^^^^^^^^^~03/01/2011~
-~14654~^~208~^392.^0^^~4~^~NC~^^^^^^^^^^~05/01/2013~
-~14654~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2013~
-~14654~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2013~
-~14654~^~268~^1641.^0^^~4~^~NC~^^^^^^^^^^~05/01/2013~
-~14654~^~301~^714.^0^^~8~^~LC~^^^^^^^^^^~05/01/2013~
-~14654~^~304~^500.^0^^~8~^~LC~^^^^^^^^^^~05/01/2013~
-~14654~^~305~^1429.^0^^~8~^~LC~^^^^^^^^^^~05/01/2013~
-~14654~^~306~^1000.^0^^~8~^~LC~^^^^^^^^^^~05/01/2013~
-~14654~^~307~^1214.^0^^~8~^~LC~^^^^^^^^^^~05/01/2013~
-~14654~^~318~^6250.^0^^~8~^~LC~^^^^^^^^^^~05/01/2013~
-~14654~^~319~^1875.^0^^~4~^~NR~^^^^^^^^^^~05/01/2013~
-~14654~^~320~^1875.^0^^~4~^~NC~^^^^^^^^^^~05/01/2013~
-~14654~^~321~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2013~
-~14654~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2013~
-~14654~^~324~^500.^0^^~8~^~LC~^^^^^^^^^^~05/01/2013~
-~14654~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2013~
-~14654~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2013~
-~14654~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2013~
-~14654~^~417~^571.^0^^~8~^~LC~^^^^^^^^^^~05/01/2013~
-~14654~^~431~^571.^0^^~4~^~NR~^^^^^^^^^^~05/01/2013~
-~14654~^~432~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2013~
-~14654~^~435~^971.^0^^~4~^~NC~^^^^^^^^^^~05/01/2013~
-~14654~^~601~^0.^0^^~8~^~LC~^^^^^^^^^^~05/01/2013~
-~15001~^~208~^131.^0^^~4~^^^^^^^^^^^~09/01/1987~
-~15001~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~
-~15001~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~
-~15001~^~268~^548.^0^^~4~^^^^^^^^^^^
-~15001~^~301~^147.^2^^~1~^^^^^^^^^^^~09/01/1987~
-~15001~^~304~^41.^2^^~1~^^^^^^^^^^^~09/01/1987~
-~15001~^~305~^174.^3^26.^~1~^^^^^^^^^^^~09/01/1987~
-~15001~^~306~^383.^2^^~1~^^^^^^^^^^^~09/01/1987~
-~15001~^~307~^104.^2^^~1~^^^^^^^^^^^~09/01/1987~
-~15001~^~318~^50.^0^^~4~^~NC~^^^^^^^^^^~02/01/2003~
-~15001~^~319~^15.^0^^~4~^~NC~^^^^^^^^^^~02/01/2003~
-~15001~^~320~^15.^0^^~4~^~NC~^^^^^^^^^^~02/01/2003~
-~15001~^~321~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~
-~15001~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~
-~15001~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~
-~15001~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~
-~15001~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~
-~15001~^~417~^9.^0^^~4~^^^^^^^^^^^~09/01/1987~
-~15001~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~
-~15001~^~432~^9.^0^^~4~^^^^^^^^^^^~02/01/2003~
-~15001~^~435~^9.^0^^~4~^~NC~^^^^^^^^^^~02/01/2003~
-~15001~^~601~^60.^0^^~4~^^^^^^^^^^^~09/01/1987~
-~15002~^~208~^210.^0^^~4~^~NC~^^^^^^^^^^~09/01/1987~
-~15002~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~
-~15002~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~
-~15002~^~268~^879.^0^^~4~^^^^^^^^^^^~03/01/2009~
-~15002~^~301~^232.^0^^~1~^^^^^^^^^^^~09/01/1987~
-~15002~^~304~^69.^0^^~1~^^^^^^^^^^^~09/01/1987~
-~15002~^~305~^252.^0^^~1~^^^^^^^^^^^~09/01/1987~
-~15002~^~306~^544.^0^^~1~^^^^^^^^^^^~09/01/1987~
-~15002~^~307~^3668.^0^^~1~^^^^^^^^^^^~09/01/1987~
-~15002~^~318~^40.^0^^~4~^~NC~^^^^^^^^^^~03/01/2009~
-~15002~^~319~^12.^0^^~4~^~RA~^^^^^^^^^^~02/01/2003~
-~15002~^~320~^12.^0^^~4~^~NC~^^^^^^^^^^~03/01/2009~
-~15002~^~321~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~
-~15002~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~
-~15002~^~324~^69.^0^^~4~^~NR~^^^^^^^^^^~03/01/2009~
-~15002~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~
-~15002~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~
-~15002~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~
-~15002~^~417~^13.^0^^~4~^^^^^^^^^^^~09/01/1987~
-~15002~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~
-~15002~^~432~^13.^0^^~4~^^^^^^^^^^^~03/01/2009~
-~15002~^~435~^13.^0^^~4~^~NC~^^^^^^^^^^~03/01/2009~
-~15002~^~601~^85.^0^^~4~^^^^^^^^^^^~09/01/1987~
-~15003~^~208~^114.^0^^~4~^~NC~^^^^^^^^^^~09/01/1987~
-~15003~^~268~^477.^0^^~4~^^^^^^^^^^^
-~15003~^~301~^80.^2^^~1~^^^^^^^^^^^~09/01/1987~
-~15003~^~304~^30.^2^^~1~^^^^^^^^^^^~09/01/1987~
-~15003~^~305~^200.^2^^~1~^^^^^^^^^^^~09/01/1987~
-~15003~^~306~^356.^11^^~1~^^^^^^^^^^^~09/01/1987~
-~15003~^~307~^70.^2^^~1~^^^^^^^^^^^~09/01/1987~
-~15003~^~318~^100.^0^^~4~^^^^^^^^^^^~09/01/1987~
-~15003~^~319~^30.^0^^~4~^^^^^^^^^^^~06/01/2002~
-~15003~^~320~^30.^0^^~4~^^^^^^^^^^^~06/01/2002~
-~15003~^~417~^15.^0^^~4~^^^^^^^^^^^~09/01/1987~
-~15003~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~
-~15003~^~432~^15.^0^^~4~^^^^^^^^^^^~09/01/1987~
-~15003~^~435~^15.^0^^~4~^~NC~^^^^^^^^^^~01/01/2001~
-~15003~^~601~^68.^2^^~1~^^^^^^^^^^^~09/01/1987~
-~15004~^~208~^97.^0^^~4~^~NC~^^^^^^^^^^~09/01/1987~
-~15004~^~268~^406.^0^^~4~^^^^^^^^^^^
-~15004~^~301~^15.^0^^~4~^^^^^^^^^^^~09/01/1987~
-~15004~^~304~^40.^0^^~4~^^^^^^^^^^^~09/01/1987~
-~15004~^~305~^198.^0^^~4~^^^^^^^^^^^~09/01/1987~
-~15004~^~306~^256.^0^^~4~^^^^^^^^^^^~09/01/1987~
-~15004~^~307~^69.^0^^~4~^^^^^^^^^^^~09/01/1987~
-~15004~^~318~^90.^0^^~4~^^^^^^^^^^^~09/01/1987~
-~15004~^~319~^27.^0^^~4~^^^^^^^^^^^~06/01/2002~
-~15004~^~320~^27.^0^^~4~^^^^^^^^^^^~06/01/2002~
-~15004~^~417~^9.^0^^~4~^^^^^^^^^^^~09/01/1987~
-~15004~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~
-~15004~^~432~^9.^0^^~4~^^^^^^^^^^^~09/01/1987~
-~15004~^~435~^9.^0^^~4~^~NC~^^^^^^^^^^~01/01/2001~
-~15004~^~601~^80.^1^^~1~^^^^^^^^^^^~09/01/1987~
-~15005~^~208~^124.^0^^~4~^~NC~^^^^^^^^^^~09/01/1987~
-~15005~^~268~^519.^0^^~4~^^^^^^^^^^^
-~15005~^~301~^7.^3^^~1~^^^^^^^^^^^~09/01/1987~
-~15005~^~304~^33.^3^^~1~^^^^^^^^^^^~09/01/1987~
-~15005~^~305~^227.^3^^~1~^^^^^^^^^^^~09/01/1987~
-~15005~^~306~^372.^3^^~1~^^^^^^^^^^^~09/01/1987~
-~15005~^~307~^60.^3^^~1~^^^^^^^^^^^~09/01/1987~
-~15005~^~318~^398.^3^^~1~^^^^^^^^^^^~09/01/1987~
-~15005~^~319~^120.^3^0.^~1~^^^^^^^^^^^~06/01/2002~
-~15005~^~320~^120.^3^0.^~1~^^^^^^^^^^^~06/01/2002~
-~15005~^~417~^2.^2^^~1~^^^^^^^^^^^~09/01/1987~
-~15005~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~
-~15005~^~432~^2.^2^^~1~^^^^^^^^^^^~09/01/1987~
-~15005~^~435~^2.^0^^~4~^~NC~^^^^^^^^^^~01/01/2001~
-~15005~^~601~^59.^0^^~1~^^^^^^^^^^^~09/01/1987~
-~15006~^~208~^90.^0^^~4~^~NC~^^^^^^^^^^~09/01/1987~
-~15006~^~268~^377.^0^^~4~^^^^^^^^^^^
-~15006~^~301~^50.^1^^~1~^^^^^^^^^^^~09/01/1987~
-~15006~^~304~^32.^2^^~1~^^^^^^^^^^^~09/01/1987~
-~15006~^~305~^200.^1^^~1~^^^^^^^^^^^~09/01/1987~
-~15006~^~306~^404.^2^^~1~^^^^^^^^^^^~09/01/1987~
-~15006~^~307~^97.^2^^~1~^^^^^^^^^^^~09/01/1987~
-~15006~^~318~^15.^0^^~4~^^^^^^^^^^^~09/01/1987~
-~15006~^~319~^5.^0^^~4~^^^^^^^^^^^~06/01/2002~
-~15006~^~320~^5.^0^^~4~^^^^^^^^^^^~06/01/2002~
-~15006~^~417~^1.^0^^~4~^^^^^^^^^^^~09/01/1987~
-~15006~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~
-~15006~^~432~^1.^0^^~4~^^^^^^^^^^^~09/01/1987~
-~15006~^~435~^1.^0^^~4~^~NC~^^^^^^^^^^~01/01/2001~
-~15006~^~601~^60.^2^^~1~^^^^^^^^^^^~09/01/1987~
-~15007~^~208~^146.^0^^~4~^~NC~^^^^^^^^^^~09/01/1987~
-~15007~^~268~^611.^0^^~4~^^^^^^^^^^^
-~15007~^~301~^22.^0^^~4~^^^^^^^^^^^~09/01/1987~
-~15007~^~304~^25.^0^^~4~^^^^^^^^^^^~09/01/1987~
-~15007~^~305~^240.^0^^~4~^^^^^^^^^^^~09/01/1987~
-~15007~^~306~^375.^24^9.^~1~^^^^^^^^^^^~09/01/1987~
-~15007~^~307~^89.^24^3.^~1~^^^^^^^^^^^~09/01/1987~
-~15007~^~318~^100.^0^^~4~^^^^^^^^^^^~09/01/1987~
-~15007~^~319~^30.^0^^~4~^^^^^^^^^^^~06/01/2002~
-~15007~^~320~^30.^0^^~4~^^^^^^^^^^^~06/01/2002~
-~15007~^~417~^15.^0^^~4~^^^^^^^^^^^~09/01/1987~
-~15007~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~
-~15007~^~432~^15.^0^^~4~^^^^^^^^^^^~09/01/1987~
-~15007~^~435~^15.^0^^~4~^~NC~^^^^^^^^^^~01/01/2001~
-~15007~^~601~^65.^0^^~4~^^^^^^^^^^^~09/01/1987~
-~15008~^~208~^127.^0^^~4~^~NC~^^^^^^^^^^~09/01/1987~
-~15008~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~
-~15008~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~
-~15008~^~268~^531.^0^^~4~^^^^^^^^^^^~03/01/2009~
-~15008~^~301~^41.^11^6.^~1~^^^^^^^^^^^~09/01/1987~
-~15008~^~304~^29.^7^2.^~1~^^^^^^^^^^^~09/01/1987~
-~15008~^~305~^415.^7^125.^~1~^^^^^^^^^^^~09/01/1987~
-~15008~^~306~^333.^14^35.^~1~^^^^^^^^^^^~09/01/1987~
-~15008~^~307~^49.^5^1.^~1~^^^^^^^^^^^~09/01/1987~
-~15008~^~318~^30.^0^^~4~^~NC~^^^^^^^^^^~03/01/2009~
-~15008~^~319~^9.^0^^~4~^~T~^^^^^^^^^^~03/01/2009~
-~15008~^~320~^9.^0^^~4~^~NC~^^^^^^^^^^~03/01/2009~
-~15008~^~321~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~
-~15008~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~
-~15008~^~324~^988.^0^^~4~^~NR~^^^^^^^^^^~03/01/2009~
-~15008~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~
-~15008~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~
-~15008~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~
-~15008~^~417~^15.^0^^~4~^^^^^^^^^^^~09/01/1987~
-~15008~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~
-~15008~^~432~^15.^0^^~4~^^^^^^^^^^^~03/01/2009~
-~15008~^~435~^15.^0^^~4~^~NC~^^^^^^^^^^~03/01/2009~
-~15008~^~601~^66.^2^^~1~^^^^^^^^^^^~09/01/1987~
-~15009~^~208~^162.^0^^~4~^~NC~^^^^^^^^^^~09/01/1987~
-~15009~^~268~^678.^0^^~4~^^^^^^^^^^^
-~15009~^~301~^52.^0^^~1~^^^^^^^^^^^~09/01/1987~
-~15009~^~304~^38.^0^^~1~^^^^^^^^^^^~09/01/1987~
-~15009~^~305~^531.^0^^~1~^^^^^^^^^^^~09/01/1987~
-~15009~^~306~^427.^0^^~1~^^^^^^^^^^^~09/01/1987~
-~15009~^~307~^63.^0^^~1~^^^^^^^^^^^~09/01/1987~
-~15009~^~318~^32.^0^^~1~^^^^^^^^^^^~09/01/1987~
-~15009~^~319~^10.^0^^~1~^^^^^^^^^^^~06/01/2002~
-~15009~^~320~^10.^0^^~1~^^^^^^^^^^^~06/01/2002~
-~15009~^~417~^17.^0^^~4~^^^^^^^^^^^~09/01/1987~
-~15009~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~
-~15009~^~432~^17.^0^^~4~^^^^^^^^^^^~09/01/1987~
-~15009~^~435~^17.^0^^~4~^~NC~^^^^^^^^^^~01/01/2001~
-~15009~^~601~^84.^0^^~1~^^^^^^^^^^^~09/01/1987~
-~15010~^~208~^95.^0^^~4~^~NC~^^^^^^^^^^~09/01/1987~
-~15010~^~268~^397.^0^^~4~^^^^^^^^^^^~03/01/2009~
-~15010~^~301~^14.^5^7.^~1~^^^^^^^^^^^~09/01/1987~
-~15010~^~304~^23.^4^0.^~1~^^^^^^^^^^^~09/01/1987~
-~15010~^~305~^209.^4^18.^~1~^^^^^^^^^^^~09/01/1987~
-~15010~^~306~^358.^4^18.^~1~^^^^^^^^^^^~09/01/1987~
-~15010~^~307~^43.^4^3.^~1~^^^^^^^^^^^~09/01/1987~
-~15010~^~318~^50.^4^0.^~1~^^^^^^^^^^^~09/01/1987~
-~15010~^~319~^15.^4^0.^~1~^^^^^^^^^^^~06/01/2002~
-~15010~^~320~^15.^4^0.^~1~^^^^^^^^^^^~06/01/2002~
-~15010~^~324~^500.^0^^~4~^~T~^^^^^^^^^^~02/01/2001~
-~15010~^~417~^10.^2^^~1~^^^^^^^^^^^~09/01/1987~
-~15010~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~
-~15010~^~432~^10.^2^^~1~^^^^^^^^^^^~09/01/1987~
-~15010~^~435~^10.^0^^~4~^~NC~^^^^^^^^^^~03/01/2009~
-~15010~^~601~^58.^4^3.^~1~^^^^^^^^^^^~09/01/1987~
-~15011~^~208~^229.^0^^~4~^~NC~^^^^^^^^^^~08/01/2010~
-~15011~^~268~^956.^0^^~4~^~NC~^^^^^^^^^^~08/01/2010~
-~15011~^~301~^44.^0^^~1~^^^^^^^^^^^~09/01/1987~
-~15011~^~304~^27.^0^^~1~^^^^^^^^^^^~09/01/1987~
-~15011~^~305~^216.^0^^~1~^^^^^^^^^^^~09/01/1987~
-~15011~^~306~^340.^0^^~1~^^^^^^^^^^^~09/01/1987~
-~15011~^~307~^280.^0^^~1~^^^^^^^^^^^~09/01/1987~
-~15011~^~318~^28.^0^^~1~^^^^^^^^^^^~09/01/1987~
-~15011~^~320~^8.^0^^~4~^~NR~^^^^^^^^^^~05/01/2014~
-~15011~^~417~^30.^0^^~4~^~RA~^^^^^^^^^^~11/01/1997~
-~15011~^~431~^14.^0^^~4~^~NC~^^^^^^^^^^~05/01/2000~
-~15011~^~432~^17.^0^^~4~^^^^^^^^^^^~09/01/1987~
-~15011~^~435~^39.^0^^~4~^~NC~^^^^^^^^^^~08/01/2010~
-~15011~^~601~^71.^0^^~4~^~O~^^^^^^^^^^~08/01/2010~
-~15012~^~208~^264.^0^^~4~^~NC~^^^^^^^^^^~08/01/2010~
-~15012~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2001~
-~15012~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2001~
-~15012~^~268~^1105.^0^^~4~^~NC~^^^^^^^^^^~08/01/2010~
-~15012~^~301~^275.^0^^~4~^^^^^^^^^^^~09/01/1987~
-~15012~^~304~^300.^0^^~4~^^^^^^^^^^^~09/01/1987~
-~15012~^~305~^356.^0^^~4~^^^^^^^^^^^~09/01/1987~
-~15012~^~306~^181.^0^^~4~^^^^^^^^^^^~09/01/1987~
-~15012~^~307~^1500.^0^^~1~^^^^^^^^^^^~09/01/1987~
-~15012~^~318~^905.^0^^~4~^~NC~^^^^^^^^^^~08/01/2010~
-~15012~^~319~^271.^0^^~4~^~BFPN~^~01123~^^^^^^^^^~05/01/2007~
-~15012~^~320~^271.^0^^~4~^~NC~^^^^^^^^^^~08/01/2010~
-~15012~^~321~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~
-~15012~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~
-~15012~^~324~^117.^0^^~4~^~NR~^^^^^^^^^^~03/01/2009~
-~15012~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~
-~15012~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~
-~15012~^~338~^648.^0^^~4~^~BFPN~^~01123~^^^^^^^^^~05/01/2007~
-~15012~^~417~^50.^0^^~4~^^^^^^^^^^^~09/01/1987~
-~15012~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~
-~15012~^~432~^50.^0^^~4~^^^^^^^^^^^~08/01/2010~
-~15012~^~435~^50.^0^^~4~^~NC~^^^^^^^^^^~08/01/2010~
-~15012~^~601~^588.^0^^~1~^^^^^^^^^^^~09/01/1987~
-~15013~^~208~^98.^0^^~4~^~NC~^^^^^^^^^^~09/01/1987~
-~15013~^~268~^410.^0^^~4~^^^^^^^^^^^
-~15013~^~301~^12.^0^^~4~^^^^^^^^^^^~09/01/1987~
-~15013~^~304~^17.^0^^~4~^^^^^^^^^^^~09/01/1987~
-~15013~^~305~^152.^0^^~4~^^^^^^^^^^^~09/01/1987~
-~15013~^~306~^354.^18^8.^~1~^^^^^^^^^^^~09/01/1987~
-~15013~^~307~^55.^18^1.^~1~^^^^^^^^^^^~09/01/1987~
-~15013~^~318~^100.^0^^~4~^^^^^^^^^^^~09/01/1987~
-~15013~^~319~^30.^0^^~4~^^^^^^^^^^^~06/01/2002~
-~15013~^~320~^30.^0^^~4~^^^^^^^^^^^~06/01/2002~
-~15013~^~417~^15.^0^^~4~^^^^^^^^^^^~09/01/1987~
-~15013~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~
-~15013~^~432~^15.^0^^~4~^^^^^^^^^^^~09/01/1987~
-~15013~^~435~^15.^0^^~4~^~NC~^^^^^^^^^^~01/01/2001~
-~15013~^~601~^50.^0^^~4~^^^^^^^^^^^~09/01/1987~
-~15014~^~208~^177.^0^^~4~^~NC~^^^^^^^^^^~09/01/1987~
-~15014~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~
-~15014~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~
-~15014~^~268~^741.^0^^~4~^^^^^^^^^^^~03/01/2009~
-~15014~^~301~^26.^2^^~1~^^^^^^^^^^^~09/01/1987~
-~15014~^~304~^17.^2^^~1~^^^^^^^^^^^~09/01/1987~
-~15014~^~305~^150.^2^^~1~^^^^^^^^^^^~09/01/1987~
-~15014~^~306~^293.^2^^~1~^^^^^^^^^^^~09/01/1987~
-~15014~^~307~^481.^2^^~1~^^^^^^^^^^^~09/01/1987~
-~15014~^~318~^943.^0^^~4~^~NC~^^^^^^^^^^~03/01/2009~
-~15014~^~319~^283.^0^^~4~^~T~^^^^^^^^^^~03/01/2009~
-~15014~^~320~^283.^0^^~4~^~NC~^^^^^^^^^^~03/01/2009~
-~15014~^~321~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~
-~15014~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~
-~15014~^~324~^530.^0^^~4~^~BFSN~^~15130~^^^^^^^^^~03/01/2009~
-~15014~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~
-~15014~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~
-~15014~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~
-~15014~^~417~^2.^2^^~1~^^^^^^^^^^^~09/01/1987~
-~15014~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~
-~15014~^~432~^2.^2^^~1~^^^^^^^^^^^~03/01/2009~
-~15014~^~435~^2.^0^^~4~^~NC~^^^^^^^^^^~03/01/2009~
-~15014~^~601~^32.^2^^~1~^^^^^^^^^^^~09/01/1987~
-~15015~^~208~^82.^0^^~4~^~NC~^^^^^^^^^^~03/01/2009~
-~15015~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2001~
-~15015~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2001~
-~15015~^~268~^343.^0^^~4~^~NC~^^^^^^^^^^~03/01/2009~
-~15015~^~301~^16.^101^1.^~1~^^^^^^^^^^^~09/01/1987~
-~15015~^~304~^32.^30^1.^~1~^^^^^^^^^^^~09/01/1987~
-~15015~^~305~^203.^75^3.^~1~^^^^^^^^^^^~09/01/1987~
-~15015~^~306~^413.^49^11.^~1~^^^^^^^^^^^~09/01/1987~
-~15015~^~307~^54.^44^3.^~1~^^^^^^^^^^^~09/01/1987~
-~15015~^~318~^40.^0^^~4~^~NC~^^^^^^^^^^~03/01/2009~
-~15015~^~319~^12.^0^^~4~^~T~^^^^^^^^^^~03/01/2009~
-~15015~^~320~^12.^0^^~4~^~NC~^^^^^^^^^^~03/01/2009~
-~15015~^~321~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~
-~15015~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~
-~15015~^~324~^36.^1^^~1~^~A~^^^^^^^^^^~05/01/2009~
-~15015~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~
-~15015~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~
-~15015~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~
-~15015~^~417~^7.^0^^~4~^^^^^^^^^^^~09/01/1987~
-~15015~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~
-~15015~^~432~^7.^0^^~4~^^^^^^^^^^^~03/01/2009~
-~15015~^~435~^7.^0^^~4~^~NC~^^^^^^^^^^~05/01/2009~
-~15015~^~601~^43.^37^0.^~1~^^^^^^^^^^^~09/01/1987~
-~15016~^~208~^105.^0^^~4~^~NC~^^^^^^^^^^~03/01/2009~
-~15016~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~
-~15016~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~
-~15016~^~268~^440.^0^^~4~^~NC~^^^^^^^^^^~03/01/2009~
-~15016~^~301~^14.^2^^~1~^^^^^^^^^^^~09/01/1987~
-~15016~^~304~^42.^2^^~1~^^^^^^^^^^^~09/01/1987~
-~15016~^~305~^138.^2^^~1~^^^^^^^^^^^~09/01/1987~
-~15016~^~306~^244.^2^^~1~^^^^^^^^^^^~09/01/1987~
-~15016~^~307~^78.^2^^~1~^^^^^^^^^^^~09/01/1987~
-~15016~^~318~^47.^0^^~4~^~NC~^^^^^^^^^^~03/01/2009~
-~15016~^~319~^14.^0^^~4~^~T~^^^^^^^^^^~03/01/2009~
-~15016~^~320~^14.^0^^~4~^~NC~^^^^^^^^^^~03/01/2009~
-~15016~^~321~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~
-~15016~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~
-~15016~^~324~^46.^0^^~4~^~BFSN~^~15015~^^^^^^^^^~03/01/2009~
-~15016~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~
-~15016~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~
-~15016~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~
-~15016~^~417~^8.^0^^~4~^^^^^^^^^^^~09/01/1987~
-~15016~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~
-~15016~^~432~^8.^0^^~4~^^^^^^^^^^^~03/01/2009~
-~15016~^~435~^8.^0^^~4~^~NC~^^^^^^^^^^~03/01/2009~
-~15016~^~601~^55.^0^^~1~^^^^^^^^^^^~09/01/1987~
-~15017~^~208~^105.^0^^~4~^~NC~^^^^^^^^^^~09/01/1987~
-~15017~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2001~
-~15017~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2001~
-~15017~^~268~^439.^0^^~4~^^^^^^^^^^^~03/01/2009~
-~15017~^~301~^21.^0^^~1~^^^^^^^^^^^~09/01/1987~
-~15017~^~304~^41.^0^^~1~^^^^^^^^^^^~09/01/1987~
-~15017~^~305~^260.^0^^~1~^^^^^^^^^^^~09/01/1987~
-~15017~^~306~^528.^0^^~1~^^^^^^^^^^^~09/01/1987~
-~15017~^~307~^218.^0^^~1~^^^^^^^^^^^~09/01/1987~
-~15017~^~318~^47.^0^^~4~^~NC~^^^^^^^^^^~03/01/2009~
-~15017~^~319~^14.^0^^~4~^~T~^^^^^^^^^^~03/01/2009~
-~15017~^~320~^14.^0^^~4~^~NC~^^^^^^^^^^~03/01/2009~
-~15017~^~321~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~
-~15017~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~
-~15017~^~324~^47.^0^^~4~^~BFSN~^~15015~^^^^^^^^^~03/01/2009~
-~15017~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~
-~15017~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~
-~15017~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~
-~15017~^~417~^8.^0^^~4~^^^^^^^^^^^~09/01/1987~
-~15017~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~
-~15017~^~432~^8.^0^^~4~^^^^^^^^^^^~03/01/2009~
-~15017~^~435~^8.^0^^~4~^~NC~^^^^^^^^^^~03/01/2009~
-~15017~^~601~^55.^0^^~1~^^^^^^^^^^^~09/01/1987~
-~15018~^~208~^290.^0^^~4~^~NC~^^^^^^^^^^~03/01/2009~
-~15018~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~
-~15018~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~
-~15018~^~268~^1212.^0^^~4~^~NC~^^^^^^^^^^~03/01/2009~
-~15018~^~301~^160.^1^^~1~^^^^^^^^^^^~09/01/1987~
-~15018~^~304~^133.^0^^~1~^^^^^^^^^^^~09/01/1987~
-~15018~^~305~^950.^1^^~1~^^^^^^^^^^^~09/01/1987~
-~15018~^~306~^1458.^0^^~1~^^^^^^^^^^^~09/01/1987~
-~15018~^~307~^7027.^0^^~1~^^^^^^^^^^^~09/01/1987~
-~15018~^~318~^140.^0^^~4~^~NC~^^^^^^^^^^~03/01/2009~
-~15018~^~319~^42.^0^^~4~^~T~^^^^^^^^^^~03/01/2009~
-~15018~^~320~^42.^0^^~4~^~NC~^^^^^^^^^^~03/01/2009~
-~15018~^~321~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~
-~15018~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~
-~15018~^~324~^161.^0^^~4~^~BFSN~^~15015~^^^^^^^^^~03/01/2009~
-~15018~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~
-~15018~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~
-~15018~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~
-~15018~^~417~^25.^0^^~4~^^^^^^^^^^^~09/01/1987~
-~15018~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~
-~15018~^~432~^25.^0^^~4~^^^^^^^^^^^~03/01/2009~
-~15018~^~435~^25.^0^^~4~^~NC~^^^^^^^^^^~03/01/2009~
-~15018~^~601~^152.^0^^~1~^^^^^^^^^^^~09/01/1987~
-~15019~^~208~^69.^0^^~4~^~NC~^^^^^^^^^^~07/01/2010~
-~15019~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~
-~15019~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~
-~15019~^~268~^288.^0^^~4~^~NC~^^^^^^^^^^~07/01/2010~
-~15019~^~301~^8.^11^0.^~1~^~A~^^^1^5.^15.^10^6.^10.^~2, 3~^~07/01/2010~
-~15019~^~304~^20.^11^3.^~1~^~A~^^^1^10.^44.^10^12.^26.^~2, 3~^~07/01/2010~
-~15019~^~305~^281.^11^31.^~1~^~A~^^^1^169.^413.^10^211.^350.^~2, 3~^~07/01/2010~
-~15019~^~306~^235.^11^34.^~1~^~A~^^^1^109.^376.^10^157.^313.^~2, 3~^~07/01/2010~
-~15019~^~307~^303.^11^65.^~1~^~A~^^^1^64.^573.^10^157.^449.^~2, 3~^~07/01/2010~
-~15019~^~318~^6.^0^^~1~^~AS~^^^^^^^^^^~07/01/2010~
-~15019~^~319~^2.^1^^~1~^~A~^^^^^^^^^^~07/01/2010~
-~15019~^~320~^2.^0^^~1~^~AS~^^^^^^^^^^~07/01/2010~
-~15019~^~321~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~
-~15019~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~
-~15019~^~324~^20.^4^4.^~1~^~A~^^^1^6.^30.^3^3.^35.^~2, 3~^~07/01/2010~
-~15019~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~
-~15019~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~
-~15019~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~
-~15019~^~417~^7.^0^^~4~^^^^^^^^^^^~09/01/1987~
-~15019~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~
-~15019~^~432~^7.^0^^~4~^^^^^^^^^^^~07/01/2010~
-~15019~^~435~^7.^0^^~4~^~NC~^^^^^^^^^^~07/01/2010~
-~15019~^~601~^47.^4^3.^~1~^~A~^^^1^36.^54.^3^34.^59.^~2, 3~^~07/01/2010~
-~15020~^~208~^104.^0^^~4~^~NC~^^^^^^^^^^~09/01/1987~
-~15020~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~
-~15020~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~
-~15020~^~268~^435.^0^^~4~^^^^^^^^^^^~03/01/2009~
-~15020~^~301~^15.^1^^~1~^^^^^^^^^^^~09/01/1987~
-~15020~^~304~^40.^1^^~1~^^^^^^^^^^^~09/01/1987~
-~15020~^~305~^210.^1^^~1~^^^^^^^^^^^~09/01/1987~
-~15020~^~306~^345.^1^^~1~^^^^^^^^^^^~09/01/1987~
-~15020~^~307~^56.^1^^~1~^^^^^^^^^^^~09/01/1987~
-~15020~^~318~^41.^0^^~4~^~NC~^^^^^^^^^^~03/01/2009~
-~15020~^~319~^12.^0^^~4~^~BFSN~^~15057~^^^^^^^^^~03/01/2009~
-~15020~^~320~^12.^0^^~4~^~NC~^^^^^^^^^^~03/01/2009~
-~15020~^~321~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~
-~15020~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~
-~15020~^~324~^27.^0^^~4~^~BFSN~^~15057~^^^^^^^^^~03/01/2009~
-~15020~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~
-~15020~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~
-~15020~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~
-~15020~^~417~^15.^0^^~4~^^^^^^^^^^^~09/01/1987~
-~15020~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~
-~15020~^~432~^15.^0^^~4~^^^^^^^^^^^~03/01/2009~
-~15020~^~435~^15.^0^^~4~^~NC~^^^^^^^^^^~03/01/2009~
-~15020~^~601~^61.^1^^~1~^^^^^^^^^^^~09/01/1987~
-~15021~^~208~^221.^0^^~4~^~NC~^^^^^^^^^^~09/01/1987~
-~15021~^~268~^925.^0^^~4~^^^^^^^^^^^
-~15021~^~301~^32.^0^^~1~^^^^^^^^^^^~09/01/1987~
-~15021~^~304~^42.^0^^~1~^^^^^^^^^^^~09/01/1987~
-~15021~^~305~^217.^0^^~1~^^^^^^^^^^^~09/01/1987~
-~15021~^~306~^340.^0^^~1~^^^^^^^^^^^~09/01/1987~
-~15021~^~307~^348.^0^^~1~^^^^^^^^^^^~09/01/1987~
-~15021~^~318~^75.^0^^~4~^^^^^^^^^^^~09/01/1987~
-~15021~^~319~^23.^0^^~4~^^^^^^^^^^^~06/01/2002~
-~15021~^~320~^23.^0^^~4~^^^^^^^^^^^~06/01/2002~
-~15021~^~417~^34.^0^^~4~^~RA~^^^^^^^^^^~11/01/1997~
-~15021~^~431~^16.^0^^~4~^~NC~^^^^^^^^^^~05/01/2000~
-~15021~^~432~^18.^0^^~4~^^^^^^^^^^^~09/01/1987~
-~15021~^~435~^45.^0^^~4~^~NC~^^^^^^^^^^~01/01/2001~
-~15021~^~601~^84.^0^^~1~^^^^^^^^^^^~09/01/1987~
-~15022~^~208~^87.^0^^~4~^~NC~^^^^^^^^^^~09/01/1987~
-~15022~^~268~^364.^0^^~4~^^^^^^^^^^^
-~15022~^~301~^10.^23^5.^~1~^^^^^^^^^^^~09/01/1987~
-~15022~^~304~^31.^19^2.^~1~^^^^^^^^^^^~09/01/1987~
-~15022~^~305~^204.^6^17.^~1~^^^^^^^^^^^~09/01/1987~
-~15022~^~306~^392.^22^14.^~1~^^^^^^^^^^^~09/01/1987~
-~15022~^~307~^31.^20^5.^~1~^^^^^^^^^^^~09/01/1987~
-~15022~^~318~^60.^0^^~4~^^^^^^^^^^^~09/01/1987~
-~15022~^~319~^18.^0^^~4~^^^^^^^^^^^~06/01/2002~
-~15022~^~320~^18.^0^^~4~^^^^^^^^^^^~06/01/2002~
-~15022~^~417~^2.^0^^~4~^^^^^^^^^^^~09/01/1987~
-~15022~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~
-~15022~^~432~^2.^0^^~4~^^^^^^^^^^^~09/01/1987~
-~15022~^~435~^2.^0^^~4~^~NC~^^^^^^^^^^~01/01/2001~
-~15022~^~601~^41.^0^^~4~^^^^^^^^^^^~09/01/1987~
-~15023~^~208~^85.^0^^~4~^~NC~^^^^^^^^^^~09/01/1987~
-~15023~^~268~^356.^0^^~4~^^^^^^^^^^^
-~15023~^~301~^15.^0^^~4~^^^^^^^^^^^~09/01/1987~
-~15023~^~304~^30.^0^^~4~^^^^^^^^^^^~09/01/1987~
-~15023~^~305~^143.^0^^~4~^^^^^^^^^^^~09/01/1987~
-~15023~^~306~^416.^1^^~1~^^^^^^^^^^^~09/01/1987~
-~15023~^~307~^88.^2^^~1~^^^^^^^^^^^~09/01/1987~
-~15023~^~318~^180.^0^^~4~^^^^^^^^^^^~09/01/1987~
-~15023~^~319~^54.^0^^~4~^^^^^^^^^^^~06/01/2002~
-~15023~^~320~^54.^0^^~4~^^^^^^^^^^^~06/01/2002~
-~15023~^~417~^5.^0^^~4~^^^^^^^^^^^~09/01/1987~
-~15023~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~
-~15023~^~432~^5.^0^^~4~^^^^^^^^^^^~09/01/1987~
-~15023~^~435~^5.^0^^~4~^~NC~^^^^^^^^^^~01/01/2001~
-~15023~^~601~^73.^1^^~1~^^^^^^^^^^^~09/01/1987~
-~15024~^~208~^119.^0^^~4~^~NC~^^^^^^^^^^~09/01/1987~
-~15024~^~268~^498.^0^^~4~^^^^^^^^^^^
-~15024~^~301~^60.^1^^~1~^^^^^^^^^^^~09/01/1987~
-~15024~^~304~^30.^1^^~1~^^^^^^^^^^^~09/01/1987~
-~15024~^~305~^180.^1^^~1~^^^^^^^^^^^~09/01/1987~
-~15024~^~306~^275.^189^1.^~1~^^^^^^^^^^^~09/01/1987~
-~15024~^~307~^75.^163^0.^~1~^^^^^^^^^^^~09/01/1987~
-~15024~^~318~^170.^0^^~4~^^^^^^^^^^^~09/01/1987~
-~15024~^~319~^51.^0^^~4~^^^^^^^^^^^~06/01/2002~
-~15024~^~320~^51.^0^^~4~^^^^^^^^^^^~06/01/2002~
-~15024~^~417~^15.^0^^~4~^^^^^^^^^^^~09/01/1987~
-~15024~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~
-~15024~^~432~^15.^0^^~4~^^^^^^^^^^^~09/01/1987~
-~15024~^~435~^15.^0^^~4~^~NC~^^^^^^^^^^~01/01/2001~
-~15024~^~601~^64.^1^^~1~^^^^^^^^^^^~09/01/1987~
-~15025~^~208~^184.^0^^~4~^~NC~^^^^^^^^^^~09/01/1987~
-~15025~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~
-~15025~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~
-~15025~^~268~^770.^0^^~4~^^^^^^^^^^^~03/01/2009~
-~15025~^~301~^20.^1^^~1~^^^^^^^^^^^~09/01/1987~
-~15025~^~304~^20.^0^^~4~^^^^^^^^^^^~09/01/1987~
-~15025~^~305~^216.^2^^~1~^^^^^^^^^^^~09/01/1987~
-~15025~^~306~^272.^5^^~1~^^^^^^^^^^^~09/01/1987~
-~15025~^~307~^51.^4^^~1~^^^^^^^^^^^~09/01/1987~
-~15025~^~318~^3477.^0^^~4~^~NC~^^^^^^^^^^~03/01/2009~
-~15025~^~319~^1043.^0^^~4~^~T~^^^^^^^^^^~03/01/2009~
-~15025~^~320~^1043.^0^^~4~^~NC~^^^^^^^^^^~03/01/2009~
-~15025~^~321~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~
-~15025~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~
-~15025~^~324~^932.^0^^~4~^~NR~^^^^^^^^^^~03/01/2009~
-~15025~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~
-~15025~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~
-~15025~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~
-~15025~^~417~^15.^0^^~4~^^^^^^^^^^^~09/01/1987~
-~15025~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~
-~15025~^~432~^15.^0^^~4~^^^^^^^^^^^~03/01/2009~
-~15025~^~435~^15.^0^^~4~^~NC~^^^^^^^^^^~03/01/2009~
-~15025~^~601~^126.^2^^~1~^^^^^^^^^^^~09/01/1987~
-~15026~^~208~^236.^0^^~4~^~NC~^^^^^^^^^^~09/01/1987~
-~15026~^~268~^987.^0^^~4~^^^^^^^^^^^
-~15026~^~301~^26.^0^^~1~^^^^^^^^^^^~09/01/1987~
-~15026~^~304~^26.^0^^~4~^^^^^^^^^^^~09/01/1987~
-~15026~^~305~^277.^0^^~1~^^^^^^^^^^^~09/01/1987~
-~15026~^~306~^349.^0^^~1~^^^^^^^^^^^~09/01/1987~
-~15026~^~307~^65.^0^^~1~^^^^^^^^^^^~09/01/1987~
-~15026~^~318~^3787.^0^^~1~^^^^^^^^^^^~09/01/1987~
-~15026~^~319~^1137.^0^^~1~^^^^^^^^^^^~06/01/2002~
-~15026~^~320~^1137.^0^^~1~^^^^^^^^^^^~06/01/2002~
-~15026~^~417~^17.^0^^~4~^^^^^^^^^^^~09/01/1987~
-~15026~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~
-~15026~^~432~^17.^0^^~4~^^^^^^^^^^^~09/01/1987~
-~15026~^~435~^17.^0^^~4~^~NC~^^^^^^^^^^~01/01/2001~
-~15026~^~601~^161.^0^^~1~^^^^^^^^^^^~09/01/1987~
-~15027~^~208~^277.^0^^~4~^~NC~^^^^^^^^^^~03/01/2013~
-~15027~^~262~^0.^0^^~4~^~RA~^^^^^^^^^^~03/01/2009~
-~15027~^~263~^0.^0^^~4~^~RA~^^^^^^^^^^~03/01/2009~
-~15027~^~268~^1160.^0^^~4~^~NC~^^^^^^^^^^~03/01/2013~
-~15027~^~301~^16.^18^0.^~1~^~A~^^^1^14.^23.^13^15.^17.^~2, 3~^~03/01/2013~
-~15027~^~304~^25.^18^0.^~1~^~A~^^^1^16.^35.^12^23.^26.^~2, 3~^~03/01/2013~
-~15027~^~305~^191.^18^3.^~1~^~A~^^^1^132.^282.^11^184.^198.^~2, 3~^~03/01/2013~
-~15027~^~306~^185.^18^2.^~1~^~A~^^^1^115.^240.^10^179.^189.^~2, 3~^~03/01/2013~
-~15027~^~307~^402.^18^11.^~1~^~A~^^^1^311.^644.^7^375.^429.^~2, 3~^~03/01/2013~
-~15027~^~318~^18.^0^^~1~^~AS~^^^^^^^^^^~03/01/2013~
-~15027~^~319~^3.^3^^~1~^~A~^^^1^2.^5.^^^^~2, 3~^~03/01/2013~
-~15027~^~320~^4.^0^^~1~^~AS~^^^^^^^^^^~03/01/2013~
-~15027~^~321~^3.^3^^~1~^~A~^^^1^2.^4.^^^^~2, 3~^~03/01/2013~
-~15027~^~322~^0.^3^^~1~^~A~^^^1^0.^0.^^^^~1, 2, 3~^~03/01/2013~
-~15027~^~324~^1.^2^^~1~^~A~^^^1^1.^1.^^^^~1~^~03/01/2013~
-~15027~^~334~^2.^3^^~1~^~A~^^^1^1.^3.^^^^~2, 3~^~03/01/2013~
-~15027~^~337~^0.^3^^~1~^~A~^^^1^0.^0.^^^^~1, 2, 3~^~03/01/2013~
-~15027~^~338~^42.^3^^~1~^~A~^^^1^30.^51.^^^^~2, 3~^~03/01/2013~
-~15027~^~417~^24.^3^^~1~^~A~^^^1^14.^37.^^^^~2, 3~^~03/01/2013~
-~15027~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2013~
-~15027~^~432~^24.^3^^~1~^~A~^^^1^14.^37.^^^^^~03/01/2013~
-~15027~^~435~^24.^0^^~4~^~NC~^^^^^^^^^^~03/01/2013~
-~15027~^~601~^28.^9^0.^~1~^~A~^^^1^23.^32.^5^26.^30.^~2, 3~^~03/01/2013~
-~15028~^~208~^70.^0^^~4~^~NC~^^^^^^^^^^~07/01/2010~
-~15028~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2001~
-~15028~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2001~
-~15028~^~268~^294.^0^^~4~^~NC~^^^^^^^^^^~07/01/2010~
-~15028~^~301~^21.^4^3.^~1~^~A~^^^1^13.^31.^3^8.^32.^~2, 3~^~07/01/2010~
-~15028~^~304~^18.^4^2.^~1~^~A~^^^1^12.^22.^3^11.^25.^~2, 3~^~07/01/2010~
-~15028~^~305~^252.^4^31.^~1~^~A~^^^1^195.^330.^3^152.^350.^~2, 3~^~07/01/2010~
-~15028~^~306~^160.^4^37.^~1~^~A~^^^1^67.^230.^3^40.^279.^~2, 3~^~07/01/2010~
-~15028~^~307~^296.^4^51.^~1~^~A~^^^1^179.^429.^3^132.^458.^~2, 3~^~07/01/2010~
-~15028~^~318~^33.^0^^~4~^~NC~^^^^^^^^^^~07/01/2010~
-~15028~^~319~^10.^0^^~4~^~T~^^^^^^^^^^~03/01/2009~
-~15028~^~320~^10.^0^^~4~^~NC~^^^^^^^^^^~07/01/2010~
-~15028~^~321~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~
-~15028~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~
-~15028~^~324~^113.^11^20.^~1~^~A~^^^1^18.^265.^10^68.^158.^~2, 3~^~07/01/2010~
-~15028~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~
-~15028~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~
-~15028~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~
-~15028~^~417~^5.^3^1.^~1~^~A~^^^1^2.^8.^2^-2.^12.^~2, 3~^~07/01/2010~
-~15028~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~
-~15028~^~432~^5.^3^1.^~1~^~AS~^^^1^2.^8.^2^-2.^12.^~2, 3~^~07/01/2010~
-~15028~^~435~^5.^0^^~4~^~NC~^^^^^^^^^^~07/01/2010~
-~15028~^~601~^45.^4^2.^~1~^~A~^^^1^42.^51.^3^38.^51.^~2, 3~^~07/01/2010~
-~15029~^~208~^86.^0^^~4~^~RA~^^^^^^^^^^~07/01/2010~
-~15029~^~262~^0.^0^^~4~^~RA~^^^^^^^^^^~07/01/2010~
-~15029~^~263~^0.^0^^~4~^~RA~^^^^^^^^^^~07/01/2010~
-~15029~^~268~^362.^0^^~4~^~RA~^^^^^^^^^^~07/01/2010~
-~15029~^~301~^25.^0^^~4~^~RA~^^^^^^^^^^~07/01/2010~
-~15029~^~304~^22.^0^^~4~^~RA~^^^^^^^^^^~07/01/2010~
-~15029~^~305~^309.^0^^~4~^~RA~^^^^^^^^^^~07/01/2010~
-~15029~^~306~^197.^0^^~4~^~RA~^^^^^^^^^^~07/01/2010~
-~15029~^~307~^363.^0^^~4~^~RA~^^^^^^^^^^~07/01/2010~
-~15029~^~318~^37.^0^^~4~^~RA~^^^^^^^^^^~07/01/2010~
-~15029~^~319~^12.^0^^~4~^~RA~^^^^^^^^^^~07/01/2010~
-~15029~^~320~^12.^0^^~4~^~RA~^^^^^^^^^^~07/01/2010~
-~15029~^~321~^0.^0^^~4~^~RA~^^^^^^^^^^~07/01/2010~
-~15029~^~322~^0.^0^^~4~^~RA~^^^^^^^^^^~07/01/2010~
-~15029~^~324~^139.^0^^~4~^~RA~^^^^^^^^^^~07/01/2010~
-~15029~^~334~^0.^0^^~4~^~RA~^^^^^^^^^^~07/01/2010~
-~15029~^~337~^0.^0^^~4~^~RA~^^^^^^^^^^~07/01/2010~
-~15029~^~338~^0.^0^^~4~^~RA~^^^^^^^^^^~07/01/2010~
-~15029~^~417~^6.^0^^~4~^~RA~^^^^^^^^^^~07/01/2010~
-~15029~^~431~^0.^0^^~4~^~RA~^^^^^^^^^^~07/01/2010~
-~15029~^~432~^6.^0^^~4~^~RA~^^^^^^^^^^~07/01/2010~
-~15029~^~435~^6.^0^^~4~^~NC~^^^^^^^^^^~07/01/2010~
-~15029~^~601~^56.^0^^~4~^~RA~^^^^^^^^^^~07/01/2010~
-~15030~^~208~^84.^0^^~4~^~NC~^^^^^^^^^^~09/01/1987~
-~15030~^~268~^351.^0^^~4~^^^^^^^^^^^
-~15030~^~301~^23.^2^^~1~^^^^^^^^^^^~09/01/1987~
-~15030~^~304~^9.^2^^~1~^^^^^^^^^^^~09/01/1987~
-~15030~^~305~^73.^2^^~1~^^^^^^^^^^^~09/01/1987~
-~15030~^~306~^91.^2^^~1~^^^^^^^^^^^~09/01/1987~
-~15030~^~307~^524.^2^^~1~^^^^^^^^^^^~09/01/1987~
-~15030~^~318~^89.^2^^~1~^^^^^^^^^^^~09/01/1987~
-~15030~^~319~^27.^2^^~1~^^^^^^^^^^^~06/01/2002~
-~15030~^~320~^27.^2^^~1~^^^^^^^^^^^~06/01/2002~
-~15030~^~417~^3.^2^^~1~^^^^^^^^^^^~09/01/1987~
-~15030~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~
-~15030~^~432~^3.^2^^~1~^^^^^^^^^^^~09/01/1987~
-~15030~^~435~^3.^0^^~4~^~NC~^^^^^^^^^^~01/01/2001~
-~15030~^~601~^30.^2^^~1~^^^^^^^^^^^~09/01/1987~
-~15031~^~208~^92.^0^^~4~^~NC~^^^^^^^^^^~09/01/1987~
-~15031~^~268~^385.^0^^~4~^^^^^^^^^^^
-~15031~^~301~^27.^5^4.^~1~^^^^^^^^^^^~09/01/1987~
-~15031~^~304~^31.^3^0.^~1~^^^^^^^^^^^~09/01/1987~
-~15031~^~305~^162.^5^^~1~^^^^^^^^^^^~09/01/1987~
-~15031~^~306~^483.^3^9.^~1~^^^^^^^^^^^~09/01/1987~
-~15031~^~307~^53.^4^9.^~1~^^^^^^^^^^^~09/01/1987~
-~15031~^~318~^143.^0^^~4~^^^^^^^^^^^~09/01/1987~
-~15031~^~319~^43.^0^^~4~^^^^^^^^^^^~06/01/2002~
-~15031~^~320~^43.^0^^~4~^^^^^^^^^^^~06/01/2002~
-~15031~^~417~^9.^0^^~4~^^^^^^^^^^^~09/01/1987~
-~15031~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~
-~15031~^~432~^9.^0^^~4~^^^^^^^^^^^~09/01/1987~
-~15031~^~435~^9.^0^^~4~^~NC~^^^^^^^^^^~01/01/2001~
-~15031~^~601~^37.^2^^~1~^^^^^^^^^^^~09/01/1987~
-~15032~^~208~^118.^0^^~4~^~NC~^^^^^^^^^^~09/01/1987~
-~15032~^~268~^494.^0^^~4~^^^^^^^^^^^
-~15032~^~301~^21.^2^^~1~^^^^^^^^^^^~09/01/1987~
-~15032~^~304~^37.^2^^~1~^^^^^^^^^^^~09/01/1987~
-~15032~^~305~^143.^2^^~1~^^^^^^^^^^^~09/01/1987~
-~15032~^~306~^475.^2^^~1~^^^^^^^^^^^~09/01/1987~
-~15032~^~307~^53.^2^^~1~^^^^^^^^^^^~09/01/1987~
-~15032~^~318~^165.^0^^~4~^^^^^^^^^^^~09/01/1987~
-~15032~^~319~^50.^0^^~4~^^^^^^^^^^^~06/01/2002~
-~15032~^~320~^50.^0^^~4~^^^^^^^^^^^~06/01/2002~
-~15032~^~417~^10.^0^^~4~^^^^^^^^^^^~09/01/1987~
-~15032~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~
-~15032~^~432~^10.^0^^~4~^^^^^^^^^^^~09/01/1987~
-~15032~^~435~^10.^0^^~4~^~NC~^^^^^^^^^^~01/01/2001~
-~15032~^~601~^47.^0^^~1~^^^^^^^^^^^~09/01/1987~
-~15033~^~208~^74.^0^^~4~^~NC~^^^^^^^^^^~07/01/2010~
-~15033~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~
-~15033~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~
-~15033~^~268~^309.^0^^~4~^~NC~^^^^^^^^^^~07/01/2010~
-~15033~^~301~^11.^8^1.^~1~^~A~^^^1^5.^15.^7^8.^13.^~2, 3~^~07/01/2010~
-~15033~^~304~^21.^8^1.^~1~^~A~^^^1^17.^25.^7^18.^23.^~2, 3~^~07/01/2010~
-~15033~^~305~^227.^8^21.^~1~^~A~^^^1^183.^341.^7^175.^279.^~2, 3~^~07/01/2010~
-~15033~^~306~^286.^8^24.^~1~^~A~^^^1^192.^360.^7^229.^343.^~2, 3~^~07/01/2010~
-~15033~^~307~^213.^8^55.^~1~^~A~^^^1^76.^452.^7^82.^343.^~2, 3~^~07/01/2010~
-~15033~^~318~^57.^0^^~4~^~NC~^^^^^^^^^^~07/01/2010~
-~15033~^~319~^17.^0^^~4~^~T~^^^^^^^^^^~03/01/2009~
-~15033~^~320~^17.^0^^~4~^~NC~^^^^^^^^^^~07/01/2010~
-~15033~^~321~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~
-~15033~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~
-~15033~^~324~^18.^3^3.^~1~^~A~^^^1^11.^24.^2^2.^34.^~2, 3~^~07/01/2010~
-~15033~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~
-~15033~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~
-~15033~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~
-~15033~^~417~^12.^0^^~4~^^^^^^^^^^^~09/01/1987~
-~15033~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~
-~15033~^~432~^12.^0^^~4~^^^^^^^^^^^~07/01/2010~
-~15033~^~435~^12.^0^^~4~^~NC~^^^^^^^^^^~07/01/2010~
-~15033~^~601~^54.^3^3.^~1~^~A~^^^1^46.^58.^2^37.^70.^~2, 3~^~07/01/2010~
-~15034~^~208~^90.^0^^~4~^~NC~^^^^^^^^^^~07/01/2010~
-~15034~^~262~^0.^0^^~4~^~RA~^^^^^^^^^^~07/01/2010~
-~15034~^~263~^0.^0^^~4~^~RA~^^^^^^^^^^~07/01/2010~
-~15034~^~268~^378.^0^^~4~^~RA~^^^^^^^^^^~07/01/2010~
-~15034~^~301~^14.^0^^~4~^~RA~^^^^^^^^^^~07/01/2010~
-~15034~^~304~^26.^0^^~4~^~RA~^^^^^^^^^^~07/01/2010~
-~15034~^~305~^278.^0^^~4~^~RA~^^^^^^^^^^~07/01/2010~
-~15034~^~306~^351.^0^^~4~^~RA~^^^^^^^^^^~07/01/2010~
-~15034~^~307~^261.^0^^~4~^~RA~^^^^^^^^^^~07/01/2010~
-~15034~^~318~^62.^0^^~4~^~RA~^^^^^^^^^^~07/01/2010~
-~15034~^~319~^21.^0^^~4~^~RA~^^^^^^^^^^~07/01/2010~
-~15034~^~320~^21.^0^^~4~^~RA~^^^^^^^^^^~07/01/2010~
-~15034~^~321~^0.^0^^~4~^~RA~^^^^^^^^^^~07/01/2010~
-~15034~^~322~^0.^0^^~4~^~RA~^^^^^^^^^^~07/01/2010~
-~15034~^~324~^23.^0^^~4~^~RA~^^^^^^^^^^~07/01/2010~
-~15034~^~334~^0.^0^^~4~^~RA~^^^^^^^^^^~07/01/2010~
-~15034~^~337~^0.^0^^~4~^~RA~^^^^^^^^^^~07/01/2010~
-~15034~^~338~^0.^0^^~4~^~RA~^^^^^^^^^^~07/01/2010~
-~15034~^~417~^13.^0^^~4~^~RA~^^^^^^^^^^~07/01/2010~
-~15034~^~431~^0.^0^^~4~^~RA~^^^^^^^^^^~07/01/2010~
-~15034~^~432~^13.^0^^~4~^~RA~^^^^^^^^^^~07/01/2010~
-~15034~^~435~^13.^0^^~4~^~NC~^^^^^^^^^^~07/01/2010~
-~15034~^~601~^66.^0^^~4~^~RA~^^^^^^^^^^~07/01/2010~
-~15035~^~208~^116.^0^^~4~^~NC~^^^^^^^^^^~09/01/1987~
-~15035~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~
-~15035~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~
-~15035~^~268~^485.^0^^~4~^^^^^^^^^^^~03/01/2009~
-~15035~^~301~^49.^0^^~1~^^^^^^^^^^^~09/01/1987~
-~15035~^~304~^54.^0^^~1~^^^^^^^^^^^~09/01/1987~
-~15035~^~305~^251.^0^^~1~^^^^^^^^^^^~09/01/1987~
-~15035~^~306~^415.^0^^~1~^^^^^^^^^^^~09/01/1987~
-~15035~^~307~^763.^0^^~1~^^^^^^^^^^^~09/01/1987~
-~15035~^~318~^80.^0^^~4~^~NC~^^^^^^^^^^~03/01/2009~
-~15035~^~319~^24.^0^^~4~^~BFSN~^~15033~^^^^^^^^^~03/01/2009~
-~15035~^~320~^24.^0^^~4~^~NC~^^^^^^^^^^~03/01/2009~
-~15035~^~321~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~
-~15035~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~
-~15035~^~324~^34.^0^^~4~^~BFSN~^~15033~^^^^^^^^^~03/01/2009~
-~15035~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~
-~15035~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~
-~15035~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~
-~15035~^~417~^15.^0^^~4~^^^^^^^^^^^~09/01/1987~
-~15035~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~
-~15035~^~432~^15.^0^^~4~^^^^^^^^^^^~03/01/2009~
-~15035~^~435~^15.^0^^~4~^~NC~^^^^^^^^^^~03/01/2009~
-~15035~^~601~^77.^0^^~1~^^^^^^^^^^^~09/01/1987~
-~15036~^~208~^91.^0^^~4~^~NC~^^^^^^^^^^~07/01/2010~
-~15036~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~
-~15036~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~
-~15036~^~268~^382.^0^^~4~^~NC~^^^^^^^^^^~07/01/2010~
-~15036~^~301~^7.^10^1.^~1~^~A~^^^1^4.^22.^9^3.^11.^~2, 3~^~07/01/2010~
-~15036~^~304~^23.^10^0.^~1~^~A~^^^1^19.^30.^9^20.^25.^~2, 3~^~07/01/2010~
-~15036~^~305~^236.^10^2.^~1~^~A~^^^1^223.^254.^9^229.^242.^~2, 3~^~07/01/2010~
-~15036~^~306~^435.^10^16.^~1~^~A~^^^1^293.^477.^9^397.^471.^~2, 3~^~07/01/2010~
-~15036~^~307~^68.^10^7.^~1~^~A~^^^1^33.^112.^9^50.^84.^~2, 3~^~07/01/2010~
-~15036~^~318~^67.^0^^~1~^~AS~^^^^^^^^^^~07/01/2010~
-~15036~^~319~^20.^1^^~1~^~A~^^^^^^^^^^~07/01/2010~
-~15036~^~320~^20.^0^^~1~^~AS~^^^^^^^^^^~07/01/2010~
-~15036~^~321~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~
-~15036~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~
-~15036~^~324~^190.^10^43.^~1~^~A~^^^1^30.^434.^9^90.^289.^~2, 3~^~07/01/2010~
-~15036~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~
-~15036~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~
-~15036~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~
-~15036~^~417~^12.^0^^~4~^^^^^^^^^^^~09/01/1987~
-~15036~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~
-~15036~^~432~^12.^0^^~4~^^^^^^^^^^^~07/01/2010~
-~15036~^~435~^12.^0^^~4~^~NC~^^^^^^^^^^~07/01/2010~
-~15036~^~601~^49.^4^2.^~1~^~A~^^^1^42.^56.^3^40.^58.^~2, 3~^~07/01/2010~
-~15037~^~208~^111.^0^^~4~^~NC~^^^^^^^^^^~07/01/2010~
-~15037~^~262~^0.^0^^~4~^~RA~^^^^^^^^^^~07/01/2010~
-~15037~^~263~^0.^0^^~4~^~RA~^^^^^^^^^^~07/01/2010~
-~15037~^~268~^464.^0^^~4~^~RA~^^^^^^^^^^~07/01/2010~
-~15037~^~301~^9.^0^^~4~^~RA~^^^^^^^^^^~07/01/2010~
-~15037~^~304~^28.^0^^~4~^~RA~^^^^^^^^^^~07/01/2010~
-~15037~^~305~^287.^0^^~4~^~RA~^^^^^^^^^^~07/01/2010~
-~15037~^~306~^528.^0^^~4~^~RA~^^^^^^^^^^~07/01/2010~
-~15037~^~307~^82.^0^^~4~^~RA~^^^^^^^^^^~07/01/2010~
-~15037~^~318~^73.^0^^~4~^~RA~^^^^^^^^^^~07/01/2010~
-~15037~^~319~^24.^0^^~4~^~RA~^^^^^^^^^^~07/01/2010~
-~15037~^~320~^24.^0^^~4~^~RA~^^^^^^^^^^~07/01/2010~
-~15037~^~321~^0.^0^^~4~^~RA~^^^^^^^^^^~07/01/2010~
-~15037~^~322~^0.^0^^~4~^~RA~^^^^^^^^^^~07/01/2010~
-~15037~^~324~^231.^0^^~4~^~RA~^^^^^^^^^^~07/01/2010~
-~15037~^~334~^0.^0^^~4~^~RA~^^^^^^^^^^~07/01/2010~
-~15037~^~337~^0.^0^^~4~^~RA~^^^^^^^^^^~07/01/2010~
-~15037~^~338~^0.^0^^~4~^~RA~^^^^^^^^^^~07/01/2010~
-~15037~^~417~^14.^0^^~4~^~RA~^^^^^^^^^^~07/01/2010~
-~15037~^~431~^0.^0^^~4~^~RA~^^^^^^^^^^~07/01/2010~
-~15037~^~432~^14.^0^^~4~^~RA~^^^^^^^^^^~07/01/2010~
-~15037~^~435~^14.^0^^~4~^~NC~^^^^^^^^^^~07/01/2010~
-~15037~^~601~^60.^0^^~4~^~RA~^^^^^^^^^^~07/01/2010~
-~15038~^~208~^186.^0^^~4~^~NC~^^^^^^^^^^~09/01/1987~
-~15038~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2001~
-~15038~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2001~
-~15038~^~268~^778.^0^^~4~^^^^^^^^^^^~03/01/2009~
-~15038~^~301~^3.^1^^~1~^^^^^^^^^^^~09/01/1987~
-~15038~^~304~^26.^0^^~4~^^^^^^^^^^^~09/01/1987~
-~15038~^~305~^164.^1^^~1~^^^^^^^^^^^~09/01/1987~
-~15038~^~306~^268.^1^^~1~^^^^^^^^^^^~09/01/1987~
-~15038~^~307~^80.^1^^~1~^^^^^^^^^^^~09/01/1987~
-~15038~^~318~^47.^0^^~4~^~NC~^^^^^^^^^^~03/01/2009~
-~15038~^~319~^14.^0^^~4~^~BFSN~^~15028~^^^^^^^^^~03/01/2009~
-~15038~^~320~^14.^0^^~4~^~NC~^^^^^^^^^^~03/01/2009~
-~15038~^~321~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~
-~15038~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~
-~15038~^~324~^1097.^0^^~4~^~BFFN~^~15028~^^^^^^^^^~03/01/2009~
-~15038~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~
-~15038~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~
-~15038~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~
-~15038~^~417~^1.^0^^~4~^^^^^^^^^^^~09/01/1987~
-~15038~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~
-~15038~^~432~^1.^0^^~4~^^^^^^^^^^^~03/01/2009~
-~15038~^~435~^1.^0^^~4~^~NC~^^^^^^^^^^~03/01/2009~
-~15038~^~601~^46.^9^0.^~1~^^^^^^^^^^^~09/01/1987~
-~15039~^~208~^158.^0^^~4~^~NC~^^^^^^^^^^~09/01/1987~
-~15039~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2001~
-~15039~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2001~
-~15039~^~268~^661.^0^^~4~^^^^^^^^^^^~03/01/2009~
-~15039~^~301~^57.^3^16.^~1~^^^^^^^^^^^~09/01/1987~
-~15039~^~304~^32.^1^^~1~^^^^^^^^^^^~09/01/1987~
-~15039~^~305~^236.^4^33.^~1~^^^^^^^^^^^~09/01/1987~
-~15039~^~306~^327.^5^50.^~1~^^^^^^^^^^^~09/01/1987~
-~15039~^~307~^90.^7^4.^~1~^^^^^^^^^^^~09/01/1987~
-~15039~^~318~^93.^0^^~4~^~NC~^^^^^^^^^^~03/01/2009~
-~15039~^~319~^28.^0^^~4~^~T~^^^^^^^^^^~03/01/2009~
-~15039~^~320~^28.^0^^~4~^~NC~^^^^^^^^^^~03/01/2009~
-~15039~^~321~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~
-~15039~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~
-~15039~^~324~^167.^0^^~4~^~NR~^^^^^^^^^^~03/01/2009~
-~15039~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~
-~15039~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~
-~15039~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~
-~15039~^~417~^10.^0^^~4~^^^^^^^^^^^~09/01/1987~
-~15039~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~
-~15039~^~432~^10.^0^^~4~^^^^^^^^^^^~03/01/2009~
-~15039~^~435~^10.^0^^~4~^~NC~^^^^^^^^^^~03/01/2009~
-~15039~^~601~^60.^20^1.^~1~^^^^^^^^^^^~09/01/1987~
-~15040~^~208~^203.^0^^~4~^^^^^^^^^^^~09/01/1987~
-~15040~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~
-~15040~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~
-~15040~^~268~^849.^0^^~4~^^^^^^^^^^^~03/01/2009~
-~15040~^~301~^74.^0^^~4~^^^^^^^^^^^~09/01/1987~
-~15040~^~304~^41.^0^^~4~^^^^^^^^^^^~09/01/1987~
-~15040~^~305~^303.^0^^~4~^^^^^^^^^^^~09/01/1987~
-~15040~^~306~^419.^0^^~4~^^^^^^^^^^^~09/01/1987~
-~15040~^~307~^115.^0^^~4~^^^^^^^^^^^~09/01/1987~
-~15040~^~318~^120.^0^^~4~^~NC~^^^^^^^^^^~03/01/2009~
-~15040~^~319~^36.^0^^~4~^~BFSN~^~15039~^^^^^^^^^~02/01/2003~
-~15040~^~320~^36.^0^^~4~^~NC~^^^^^^^^^^~03/01/2009~
-~15040~^~321~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~
-~15040~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~
-~15040~^~324~^214.^0^^~4~^~BFSN~^~15039~^^^^^^^^^~03/01/2009~
-~15040~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~
-~15040~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~
-~15040~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~
-~15040~^~417~^12.^0^^~4~^^^^^^^^^^^~02/01/1995~
-~15040~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~
-~15040~^~432~^12.^0^^~4~^^^^^^^^^^^~03/01/2009~
-~15040~^~435~^12.^0^^~4~^~NC~^^^^^^^^^^~03/01/2009~
-~15040~^~601~^77.^0^^~4~^^^^^^^^^^^~09/01/1987~
-~15041~^~208~^262.^0^^~4~^~NC~^^^^^^^^^^~09/01/1987~
-~15041~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2001~
-~15041~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2001~
-~15041~^~268~^1096.^0^^~4~^^^^^^^^^^^~03/01/2009~
-~15041~^~301~^77.^2^^~1~^^^^^^^^^^^~09/01/1987~
-~15041~^~304~^8.^2^^~1~^^^^^^^^^^^~09/01/1987~
-~15041~^~305~^89.^2^^~1~^^^^^^^^^^^~09/01/1987~
-~15041~^~306~^69.^2^^~1~^^^^^^^^^^^~09/01/1987~
-~15041~^~307~^870.^2^^~1~^^^^^^^^^^^~09/01/1987~
-~15041~^~318~^860.^0^^~4~^~NC~^^^^^^^^^^~03/01/2009~
-~15041~^~319~^258.^0^^~4~^~T~^^^^^^^^^^~03/01/2009~
-~15041~^~320~^258.^0^^~4~^~NC~^^^^^^^^^^~03/01/2009~
-~15041~^~321~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~
-~15041~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~
-~15041~^~324~^113.^0^^~4~^~O~^^^^^^^^^^~03/01/2009~
-~15041~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~
-~15041~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~
-~15041~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~
-~15041~^~417~^2.^2^^~1~^^^^^^^^^^^~09/01/1987~
-~15041~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~
-~15041~^~432~^2.^2^^~1~^^^^^^^^^^^~03/01/2009~
-~15041~^~435~^2.^0^^~4~^~NC~^^^^^^^^^^~03/01/2009~
-~15041~^~601~^13.^2^^~1~^^^^^^^^^^^~09/01/1987~
-~15042~^~208~^217.^0^^~4~^~NC~^^^^^^^^^^~09/01/1987~
-~15042~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2001~
-~15042~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2001~
-~15042~^~268~^908.^0^^~4~^^^^^^^^^^^~03/01/2009~
-~15042~^~301~^84.^0^^~1~^^^^^^^^^^^~09/01/1987~
-~15042~^~304~^46.^0^^~1~^^^^^^^^^^^~09/01/1987~
-~15042~^~305~^325.^0^^~1~^^^^^^^^^^^~09/01/1987~
-~15042~^~306~^447.^0^^~1~^^^^^^^^^^^~09/01/1987~
-~15042~^~307~^918.^0^^~1~^^^^^^^^^^^~09/01/1987~
-~15042~^~318~^135.^0^^~4~^~NC~^^^^^^^^^^~03/01/2009~
-~15042~^~319~^40.^0^^~4~^~BFSN~^~15039~^^^^^^^^^~02/01/2003~
-~15042~^~320~^40.^0^^~4~^~NC~^^^^^^^^^^~03/01/2009~
-~15042~^~321~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~
-~15042~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~
-~15042~^~324~^86.^0^^~4~^~NR~^^^^^^^^^^~03/01/2009~
-~15042~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~
-~15042~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~
-~15042~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~
-~15042~^~417~^14.^0^^~4~^^^^^^^^^^^~09/01/1987~
-~15042~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~
-~15042~^~432~^14.^0^^~4~^^^^^^^^^^^~03/01/2009~
-~15042~^~435~^14.^0^^~4~^~NC~^^^^^^^^^^~03/01/2009~
-~15042~^~601~^82.^0^^~1~^^^^^^^^^^^~09/01/1987~
-~15043~^~208~^195.^0^^~4~^~NC~^^^^^^^^^^~09/01/1987~
-~15043~^~268~^816.^0^^~4~^^^^^^^^^^^
-~15043~^~301~^83.^0^^~4~^^^^^^^^^^^~09/01/1987~
-~15043~^~304~^32.^0^^~4~^^^^^^^^^^^~09/01/1987~
-~15043~^~305~^228.^0^^~4~^^^^^^^^^^^~09/01/1987~
-~15043~^~306~^423.^31^7.^~1~^^^^^^^^^^^~09/01/1987~
-~15043~^~307~^74.^31^0.^~1~^^^^^^^^^^^~09/01/1987~
-~15043~^~318~^106.^2^^~1~^^^^^^^^^^^~09/01/1987~
-~15043~^~319~^32.^2^^~1~^^^^^^^^^^^~06/01/2002~
-~15043~^~320~^32.^2^^~1~^^^^^^^^^^^~06/01/2002~
-~15043~^~417~^5.^0^^~4~^^^^^^^^^^^~09/01/1987~
-~15043~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~
-~15043~^~432~^5.^0^^~4~^^^^^^^^^^^~09/01/1987~
-~15043~^~435~^5.^0^^~4~^~NC~^^^^^^^^^^~01/01/2001~
-~15043~^~601~^77.^3^5.^~1~^^^^^^^^^^^~09/01/1987~
-~15044~^~208~^87.^0^^~4~^~NC~^^^^^^^^^^~09/01/1987~
-~15044~^~268~^364.^0^^~4~^^^^^^^^^^^
-~15044~^~301~^34.^2^^~1~^^^^^^^^^^^~09/01/1987~
-~15044~^~304~^63.^1^^~1~^^^^^^^^^^^~09/01/1987~
-~15044~^~305~^198.^3^8.^~1~^^^^^^^^^^^~09/01/1987~
-~15044~^~306~^379.^1^^~1~^^^^^^^^^^^~09/01/1987~
-~15044~^~307~^135.^1^^~1~^^^^^^^^^^^~09/01/1987~
-~15044~^~318~^100.^3^65.^~1~^^^^^^^^^^^~09/01/1987~
-~15044~^~319~^30.^3^19.^~1~^^^^^^^^^^^~06/01/2002~
-~15044~^~320~^30.^3^19.^~1~^^^^^^^^^^^~06/01/2002~
-~15044~^~417~^7.^0^^~4~^^^^^^^^^^^~09/01/1987~
-~15044~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~
-~15044~^~432~^7.^0^^~4~^^^^^^^^^^^~09/01/1987~
-~15044~^~435~^7.^0^^~4~^~NC~^^^^^^^^^^~01/01/2001~
-~15044~^~601~^40.^0^^~4~^^^^^^^^^^^~09/01/1987~
-~15045~^~208~^85.^0^^~4~^~NC~^^^^^^^^^^~09/01/1987~
-~15045~^~268~^356.^0^^~4~^^^^^^^^^^^
-~15045~^~301~^14.^1^^~1~^^^^^^^^^^^~09/01/1987~
-~15045~^~304~^26.^1^^~1~^^^^^^^^^^^~09/01/1987~
-~15045~^~305~^201.^1^^~1~^^^^^^^^^^^~09/01/1987~
-~15045~^~306~^437.^95^2.^~1~^^^^^^^^^^^~09/01/1987~
-~15045~^~307~^59.^95^1.^~1~^^^^^^^^^^^~09/01/1987~
-~15045~^~318~^50.^0^^~4~^^^^^^^^^^^~09/01/1987~
-~15045~^~319~^15.^0^^~4~^^^^^^^^^^^~06/01/2002~
-~15045~^~320~^15.^0^^~4~^^^^^^^^^^^~06/01/2002~
-~15045~^~417~^9.^0^^~4~^^^^^^^^^^^~09/01/1987~
-~15045~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~
-~15045~^~432~^9.^0^^~4~^^^^^^^^^^^~09/01/1987~
-~15045~^~435~^9.^0^^~4~^~NC~^^^^^^^^^^~01/01/2001~
-~15045~^~601~^52.^0^^~4~^^^^^^^^^^^~09/01/1987~
-~15046~^~208~^205.^0^^~4~^~NC~^^^^^^^^^^~09/01/1987~
-~15046~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2001~
-~15046~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2001~
-~15046~^~268~^858.^0^^~4~^^^^^^^^^^^~03/01/2009~
-~15046~^~301~^12.^7^2.^~1~^^^^^^^^^^^~09/01/1987~
-~15046~^~304~^76.^1^^~1~^^^^^^^^^^^~09/01/1987~
-~15046~^~305~^217.^8^11.^~1~^^^^^^^^^^^~09/01/1987~
-~15046~^~306~^314.^10^19.^~1~^^^^^^^^^^^~09/01/1987~
-~15046~^~307~^90.^14^7.^~1~^^^^^^^^^^^~09/01/1987~
-~15046~^~318~^167.^0^^~4~^~NC~^^^^^^^^^^~03/01/2009~
-~15046~^~319~^50.^0^^~4~^~T~^^^^^^^^^^~03/01/2009~
-~15046~^~320~^50.^0^^~4~^~NC~^^^^^^^^^^~03/01/2009~
-~15046~^~321~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~
-~15046~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~
-~15046~^~324~^643.^0^^~4~^~BFFN~^~15127~^^^^^^^^^~03/01/2009~
-~15046~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~
-~15046~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~
-~15046~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~
-~15046~^~417~^1.^0^^~4~^^^^^^^^^^^~09/01/1987~
-~15046~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~
-~15046~^~432~^1.^0^^~4~^^^^^^^^^^^~03/01/2009~
-~15046~^~435~^1.^0^^~4~^~NC~^^^^^^^^^^~03/01/2009~
-~15046~^~601~^70.^2^^~1~^^^^^^^^^^^~09/01/1987~
-~15047~^~208~^262.^0^^~4~^~NC~^^^^^^^^^^~09/01/1987~
-~15047~^~268~^1096.^0^^~4~^^^^^^^^^^^
-~15047~^~301~^15.^0^^~1~^^^^^^^^^^^~09/01/1987~
-~15047~^~304~^97.^0^^~1~^^^^^^^^^^^~09/01/1987~
-~15047~^~305~^278.^0^^~1~^^^^^^^^^^^~09/01/1987~
-~15047~^~306~^401.^10^15.^~1~^^^^^^^^^^^~09/01/1987~
-~15047~^~307~^83.^10^8.^~1~^^^^^^^^^^^~09/01/1987~
-~15047~^~318~^180.^0^^~1~^^^^^^^^^^^~09/01/1987~
-~15047~^~319~^54.^0^^~1~^^^^^^^^^^^~06/01/2002~
-~15047~^~320~^54.^0^^~1~^^^^^^^^^^^~06/01/2002~
-~15047~^~417~^2.^0^^~4~^^^^^^^^^^^~09/01/1987~
-~15047~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~
-~15047~^~432~^2.^0^^~4~^^^^^^^^^^^~09/01/1987~
-~15047~^~435~^2.^0^^~4~^~NC~^^^^^^^^^^~01/01/2001~
-~15047~^~601~^75.^10^2.^~1~^^^^^^^^^^^~09/01/1987~
-~15048~^~208~^156.^0^^~4~^~NC~^^^^^^^^^^~09/01/1987~
-~15048~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2001~
-~15048~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2001~
-~15048~^~268~^653.^0^^~4~^^^^^^^^^^^~03/01/2009~
-~15048~^~301~^241.^2^^~1~^^^^^^^^^^^~09/01/1987~
-~15048~^~304~^37.^2^^~1~^^^^^^^^^^^~09/01/1987~
-~15048~^~305~^301.^2^^~1~^^^^^^^^^^^~09/01/1987~
-~15048~^~306~^194.^2^^~1~^^^^^^^^^^^~09/01/1987~
-~15048~^~307~^379.^2^^~1~^^^^^^^^^^^~09/01/1987~
-~15048~^~318~^433.^0^^~4~^~NC~^^^^^^^^^^~03/01/2009~
-~15048~^~319~^130.^0^^~4~^~T~^^^^^^^^^^~03/01/2009~
-~15048~^~320~^130.^0^^~4~^~NC~^^^^^^^^^^~03/01/2009~
-~15048~^~321~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~
-~15048~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~
-~15048~^~324~^292.^0^^~4~^~BFFN~^~15050~^^^^^^^^^~03/01/2009~
-~15048~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~
-~15048~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~
-~15048~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~
-~15048~^~417~^5.^2^^~1~^^^^^^^^^^^~09/01/1987~
-~15048~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~
-~15048~^~432~^5.^2^^~1~^^^^^^^^^^^~03/01/2009~
-~15048~^~435~^5.^0^^~4~^~NC~^^^^^^^^^^~03/01/2009~
-~15048~^~601~^79.^2^^~1~^^^^^^^^^^^~09/01/1987~
-~15049~^~208~^105.^0^^~4~^~NC~^^^^^^^^^^~09/01/1987~
-~15049~^~268~^439.^0^^~4~^^^^^^^^^^^
-~15049~^~301~^31.^2^^~1~^^^^^^^^^^^~09/01/1987~
-~15049~^~304~^32.^2^^~1~^^^^^^^^^^^~09/01/1987~
-~15049~^~305~^248.^2^^~1~^^^^^^^^^^^~09/01/1987~
-~15049~^~306~^435.^2^^~1~^^^^^^^^^^^~09/01/1987~
-~15049~^~307~^158.^2^^~1~^^^^^^^^^^^~09/01/1987~
-~15049~^~318~^727.^2^^~1~^^^^^^^^^^^~09/01/1987~
-~15049~^~319~^218.^2^^~1~^^^^^^^^^^^~06/01/2002~
-~15049~^~320~^218.^2^^~1~^^^^^^^^^^^~06/01/2002~
-~15049~^~417~^8.^2^^~1~^^^^^^^^^^^~09/01/1987~
-~15049~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~
-~15049~^~432~^8.^2^^~1~^^^^^^^^^^^~09/01/1987~
-~15049~^~435~^8.^0^^~4~^~NC~^^^^^^^^^^~01/01/2001~
-~15049~^~601~^53.^2^^~1~^^^^^^^^^^^~09/01/1987~
-~15050~^~208~^158.^0^^~4~^~NC~^^^^^^^^^^~09/01/1987~
-~15050~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~
-~15050~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~
-~15050~^~268~^661.^0^^~4~^^^^^^^^^^^~03/01/2009~
-~15050~^~301~^23.^1^^~1~^^^^^^^^^^^~09/01/1987~
-~15050~^~304~^28.^1^^~1~^^^^^^^^^^^~09/01/1987~
-~15050~^~305~^125.^1^^~1~^^^^^^^^^^^~09/01/1987~
-~15050~^~306~^406.^3^8.^~1~^^^^^^^^^^^~09/01/1987~
-~15050~^~307~^86.^3^1.^~1~^^^^^^^^^^^~09/01/1987~
-~15050~^~318~^62.^0^^~4~^~NC~^^^^^^^^^^~03/01/2009~
-~15050~^~319~^19.^0^^~4~^~BFSN~^~15127~^^^^^^^^^~03/01/2009~
-~15050~^~320~^19.^0^^~4~^~NC~^^^^^^^^^^~03/01/2009~
-~15050~^~321~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~
-~15050~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~
-~15050~^~324~^366.^0^^~4~^~BFFN~^~15127~^^^^^^^^^~03/01/2009~
-~15050~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~
-~15050~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~
-~15050~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~
-~15050~^~417~^2.^5^0.^~1~^^^^^^^^^^^~09/01/1987~
-~15050~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~
-~15050~^~432~^2.^5^0.^~1~^^^^^^^^^^^~03/01/2009~
-~15050~^~435~^2.^0^^~4~^~NC~^^^^^^^^^^~03/01/2009~
-~15050~^~601~^47.^6^^~1~^^^^^^^^^^^~09/01/1987~
-~15051~^~208~^139.^0^^~4~^~NC~^^^^^^^^^^~09/01/1987~
-~15051~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~
-~15051~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~
-~15051~^~268~^582.^0^^~4~^^^^^^^^^^^~03/01/2009~
-~15051~^~301~^11.^3^0.^~1~^^^^^^^^^^^~09/01/1987~
-~15051~^~304~^33.^3^1.^~1~^^^^^^^^^^^~09/01/1987~
-~15051~^~305~^205.^3^31.^~1~^^^^^^^^^^^~09/01/1987~
-~15051~^~306~^446.^3^32.^~1~^^^^^^^^^^^~09/01/1987~
-~15051~^~307~^59.^3^7.^~1~^^^^^^^^^^^~09/01/1987~
-~15051~^~318~^130.^0^^~4~^~NC~^^^^^^^^^^~03/01/2009~
-~15051~^~319~^39.^0^^~4~^~BFSN~^~15046~^^^^^^^^^~03/01/2009~
-~15051~^~320~^39.^0^^~4~^~NC~^^^^^^^^^^~03/01/2009~
-~15051~^~321~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~
-~15051~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~
-~15051~^~324~^292.^0^^~4~^~BFFN~^~15046~^^^^^^^^^~03/01/2009~
-~15051~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~
-~15051~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~
-~15051~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~
-~15051~^~417~^1.^0^^~4~^^^^^^^^^^^~09/01/1987~
-~15051~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~
-~15051~^~432~^1.^0^^~4~^^^^^^^^^^^~03/01/2009~
-~15051~^~435~^1.^0^^~4~^~NC~^^^^^^^^^^~03/01/2009~
-~15051~^~601~^76.^1^^~1~^^^^^^^^^^^~09/01/1987~
-~15052~^~208~^158.^0^^~4~^~NC~^^^^^^^^^^~09/01/1987~
-~15052~^~268~^661.^0^^~4~^^^^^^^^^^^
-~15052~^~301~^13.^2^^~1~^^^^^^^^^^^~09/01/1987~
-~15052~^~304~^38.^2^^~1~^^^^^^^^^^^~09/01/1987~
-~15052~^~305~^271.^2^^~1~^^^^^^^^^^^~09/01/1987~
-~15052~^~306~^554.^3^^~1~^^^^^^^^^^^~09/01/1987~
-~15052~^~307~^66.^3^^~1~^^^^^^^^^^^~09/01/1987~
-~15052~^~318~^109.^0^^~4~^^^^^^^^^^^~09/01/1987~
-~15052~^~319~^33.^0^^~4~^^^^^^^^^^^~06/01/2002~
-~15052~^~320~^33.^0^^~4~^^^^^^^^^^^~06/01/2002~
-~15052~^~417~^1.^0^^~4~^^^^^^^^^^^~09/01/1987~
-~15052~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~
-~15052~^~432~^1.^0^^~4~^^^^^^^^^^^~09/01/1987~
-~15052~^~435~^1.^0^^~4~^~NC~^^^^^^^^^^~01/01/2001~
-~15052~^~601~^73.^1^^~1~^^^^^^^^^^^~09/01/1987~
-~15053~^~208~^148.^0^^~4~^~NC~^^^^^^^^^^~09/01/1987~
-~15053~^~268~^619.^0^^~4~^^^^^^^^^^^
-~15053~^~301~^51.^1^^~1~^^^^^^^^^^^~09/01/1987~
-~15053~^~304~^30.^0^^~4~^^^^^^^^^^^~09/01/1987~
-~15053~^~305~^162.^1^^~1~^^^^^^^^^^^~09/01/1987~
-~15053~^~306~^292.^0^^~4~^^^^^^^^^^^~09/01/1987~
-~15053~^~307~^72.^0^^~4~^^^^^^^^^^^~09/01/1987~
-~15053~^~318~^100.^0^^~4~^^^^^^^^^^^~09/01/1987~
-~15053~^~319~^30.^0^^~4~^^^^^^^^^^^~06/01/2002~
-~15053~^~320~^30.^0^^~4~^^^^^^^^^^^~06/01/2002~
-~15053~^~417~^16.^0^^~4~^^^^^^^^^^^~09/01/1987~
-~15053~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~
-~15053~^~432~^16.^0^^~4~^^^^^^^^^^^~09/01/1987~
-~15053~^~435~^16.^0^^~4~^~NC~^^^^^^^^^^~01/01/2001~
-~15053~^~601~^52.^1^^~1~^^^^^^^^^^^~09/01/1987~
-~15054~^~208~^76.^0^^~4~^~NC~^^^^^^^^^^~09/01/1987~
-~15054~^~268~^318.^0^^~4~^^^^^^^^^^^
-~15054~^~301~^8.^1^^~1~^^^^^^^^^^^~09/01/1987~
-~15054~^~304~^21.^1^^~1~^^^^^^^^^^^~09/01/1987~
-~15054~^~305~^200.^0^^~4~^^^^^^^^^^^~09/01/1987~
-~15054~^~306~^400.^0^^~4~^^^^^^^^^^^~09/01/1987~
-~15054~^~307~^18.^1^^~1~^^^^^^^^^^^~09/01/1987~
-~15054~^~318~^40.^0^^~4~^^^^^^^^^^^~09/01/1987~
-~15054~^~319~^12.^0^^~4~^^^^^^^^^^^~06/01/2002~
-~15054~^~320~^12.^0^^~4~^^^^^^^^^^^~06/01/2002~
-~15054~^~417~^7.^0^^~4~^^^^^^^^^^^~09/01/1987~
-~15054~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~
-~15054~^~432~^7.^0^^~4~^^^^^^^^^^^~09/01/1987~
-~15054~^~435~^7.^0^^~4~^~NC~^^^^^^^^^^~01/01/2001~
-~15054~^~601~^25.^1^^~1~^^^^^^^^^^^~09/01/1987~
-~15055~^~208~^117.^0^^~4~^~NC~^^^^^^^^^^~09/01/1987~
-~15055~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~
-~15055~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~
-~15055~^~268~^490.^0^^~4~^^^^^^^^^^^~03/01/2009~
-~15055~^~301~^41.^6^7.^~1~^^^^^^^^^^^~09/01/1987~
-~15055~^~304~^29.^6^0.^~1~^^^^^^^^^^^~09/01/1987~
-~15055~^~305~^221.^7^8.^~1~^^^^^^^^^^^~09/01/1987~
-~15055~^~306~^357.^10^19.^~1~^^^^^^^^^^^~09/01/1987~
-~15055~^~307~^65.^12^3.^~1~^^^^^^^^^^^~09/01/1987~
-~15055~^~318~^123.^0^^~4~^~NC~^^^^^^^^^^~03/01/2009~
-~15055~^~319~^37.^0^^~4~^~T~^^^^^^^^^^~03/01/2009~
-~15055~^~320~^37.^0^^~4~^~NC~^^^^^^^^^^~03/01/2009~
-~15055~^~321~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~
-~15055~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~
-~15055~^~324~^61.^0^^~4~^~BFFN~^~15057~^^^^^^^^^~03/01/2009~
-~15055~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~
-~15055~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~
-~15055~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~
-~15055~^~417~^9.^2^^~1~^^^^^^^^^^^~09/01/1987~
-~15055~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~
-~15055~^~432~^9.^2^^~1~^^^^^^^^^^^~03/01/2009~
-~15055~^~435~^9.^0^^~4~^~NC~^^^^^^^^^^~03/01/2009~
-~15055~^~601~^49.^1^^~1~^^^^^^^^^^^~09/01/1987~
-~15056~^~208~^150.^0^^~4~^~NC~^^^^^^^^^^~09/01/1987~
-~15056~^~268~^628.^0^^~4~^^^^^^^^^^^
-~15056~^~301~^31.^2^^~1~^^^^^^^^^^^~09/01/1987~
-~15056~^~304~^33.^2^^~1~^^^^^^^^^^^~09/01/1987~
-~15056~^~305~^244.^2^^~1~^^^^^^^^^^^~09/01/1987~
-~15056~^~306~^458.^2^^~1~^^^^^^^^^^^~09/01/1987~
-~15056~^~307~^71.^2^^~1~^^^^^^^^^^^~09/01/1987~
-~15056~^~318~^141.^0^^~1~^^^^^^^^^^^~09/01/1987~
-~15056~^~319~^42.^0^^~1~^^^^^^^^^^^~06/01/2002~
-~15056~^~320~^42.^0^^~1~^^^^^^^^^^^~06/01/2002~
-~15056~^~417~^10.^0^^~1~^^^^^^^^^^^~09/01/1987~
-~15056~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~
-~15056~^~432~^10.^0^^~1~^^^^^^^^^^^~09/01/1987~
-~15056~^~435~^10.^0^^~4~^~NC~^^^^^^^^^^~01/01/2001~
-~15056~^~601~^63.^0^^~1~^^^^^^^^^^^~09/01/1987~
-~15057~^~208~^79.^0^^~4~^~NC~^^^^^^^^^^~07/01/2010~
-~15057~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~
-~15057~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~
-~15057~^~268~^332.^0^^~4~^~NC~^^^^^^^^^^~07/01/2010~
-~15057~^~301~^28.^11^4.^~1~^~A~^^^1^10.^57.^10^17.^38.^~2, 3~^~07/01/2010~
-~15057~^~304~^23.^11^1.^~1~^~A~^^^1^18.^31.^10^19.^25.^~2, 3~^~07/01/2010~
-~15057~^~305~^248.^11^20.^~1~^~A~^^^1^157.^355.^10^201.^295.^~2, 3~^~07/01/2010~
-~15057~^~306~^187.^11^27.^~1~^~A~^^^1^102.^338.^10^125.^248.^~2, 3~^~07/01/2010~
-~15057~^~307~^287.^11^42.^~1~^~A~^^^1^54.^413.^10^192.^381.^~2, 3~^~07/01/2010~
-~15057~^~318~^40.^0^^~4~^~NC~^^^^^^^^^^~07/01/2010~
-~15057~^~319~^12.^0^^~4~^~T~^^^^^^^^^^~03/01/2009~
-~15057~^~320~^12.^0^^~4~^~NC~^^^^^^^^^^~07/01/2010~
-~15057~^~321~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~
-~15057~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~
-~15057~^~324~^48.^4^32.^~1~^~A~^^^1^9.^144.^3^-54.^150.^~2, 3~^~07/01/2010~
-~15057~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~
-~15057~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~
-~15057~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~
-~15057~^~417~^9.^0^^~4~^^^^^^^^^^^~09/01/1987~
-~15057~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~
-~15057~^~432~^9.^0^^~4~^^^^^^^^^^^~07/01/2010~
-~15057~^~435~^9.^0^^~4~^~NC~^^^^^^^^^^~07/01/2010~
-~15057~^~601~^52.^4^2.^~1~^~A~^^^1^45.^56.^3^43.^59.^~2, 3~^~07/01/2010~
-~15058~^~208~^96.^0^^~4~^~NC~^^^^^^^^^^~07/01/2010~
-~15058~^~262~^0.^0^^~4~^~RA~^^^^^^^^^^~07/01/2010~
-~15058~^~263~^0.^0^^~4~^~RA~^^^^^^^^^^~07/01/2010~
-~15058~^~268~^401.^0^^~4~^~RA~^^^^^^^^^^~07/01/2010~
-~15058~^~301~^34.^0^^~4~^~RA~^^^^^^^^^^~07/01/2010~
-~15058~^~304~^27.^0^^~4~^~RA~^^^^^^^^^^~07/01/2010~
-~15058~^~305~^300.^0^^~4~^~RA~^^^^^^^^^^~07/01/2010~
-~15058~^~306~^226.^0^^~4~^~RA~^^^^^^^^^^~07/01/2010~
-~15058~^~307~^347.^0^^~4~^~RA~^^^^^^^^^^~07/01/2010~
-~15058~^~318~^44.^0^^~4~^~RA~^^^^^^^^^^~07/01/2010~
-~15058~^~319~^15.^0^^~4~^~RA~^^^^^^^^^^~07/01/2010~
-~15058~^~320~^15.^0^^~4~^~RA~^^^^^^^^^^~07/01/2010~
-~15058~^~321~^0.^0^^~4~^~RA~^^^^^^^^^^~07/01/2010~
-~15058~^~322~^0.^0^^~4~^~RA~^^^^^^^^^^~07/01/2010~
-~15058~^~324~^58.^0^^~4~^~RA~^^^^^^^^^^~07/01/2010~
-~15058~^~334~^0.^0^^~4~^~RA~^^^^^^^^^^~07/01/2010~
-~15058~^~337~^0.^0^^~4~^~RA~^^^^^^^^^^~07/01/2010~
-~15058~^~338~^0.^0^^~4~^~RA~^^^^^^^^^^~07/01/2010~
-~15058~^~417~^10.^0^^~4~^~RA~^^^^^^^^^^~07/01/2010~
-~15058~^~431~^0.^0^^~4~^~RA~^^^^^^^^^^~07/01/2010~
-~15058~^~432~^10.^0^^~4~^~RA~^^^^^^^^^^~07/01/2010~
-~15058~^~435~^10.^0^^~4~^~NC~^^^^^^^^^^~07/01/2010~
-~15058~^~601~^63.^0^^~4~^~RA~^^^^^^^^^^~07/01/2010~
-~15059~^~208~^79.^0^^~4~^~NC~^^^^^^^^^^~09/01/1987~
-~15059~^~268~^331.^0^^~4~^^^^^^^^^^^
-~15059~^~301~^10.^1^^~1~^^^^^^^^^^^~09/01/1987~
-~15059~^~304~^13.^1^^~1~^^^^^^^^^^^~09/01/1987~
-~15059~^~305~^200.^0^^~4~^^^^^^^^^^^~09/01/1987~
-~15059~^~306~^400.^0^^~4~^^^^^^^^^^^~09/01/1987~
-~15059~^~307~^61.^1^^~1~^^^^^^^^^^^~09/01/1987~
-~15059~^~318~^40.^0^^~4~^^^^^^^^^^^~09/01/1987~
-~15059~^~319~^12.^0^^~4~^^^^^^^^^^^~06/01/2002~
-~15059~^~320~^12.^0^^~4~^^^^^^^^^^^~06/01/2002~
-~15059~^~417~^7.^0^^~4~^^^^^^^^^^^~09/01/1987~
-~15059~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~
-~15059~^~432~^7.^0^^~4~^^^^^^^^^^^~09/01/1987~
-~15059~^~435~^7.^0^^~4~^~NC~^^^^^^^^^^~01/01/2001~
-~15059~^~601~^52.^1^^~1~^^^^^^^^^^^~09/01/1987~
-~15060~^~208~^91.^0^^~4~^~NC~^^^^^^^^^^~09/01/1987~
-~15060~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~
-~15060~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~
-~15060~^~268~^381.^0^^~4~^^^^^^^^^^^~03/01/2009~
-~15060~^~301~^80.^2^^~1~^^^^^^^^^^^~09/01/1987~
-~15060~^~304~^30.^2^^~1~^^^^^^^^^^^~09/01/1987~
-~15060~^~305~^200.^2^^~1~^^^^^^^^^^^~09/01/1987~
-~15060~^~306~^269.^4^^~1~^^^^^^^^^^^~09/01/1987~
-~15060~^~307~^62.^4^^~1~^^^^^^^^^^^~09/01/1987~
-~15060~^~318~^30.^0^^~4~^~NC~^^^^^^^^^^~03/01/2009~
-~15060~^~319~^9.^0^^~4~^~T~^^^^^^^^^^~03/01/2009~
-~15060~^~320~^9.^0^^~4~^~NC~^^^^^^^^^^~03/01/2009~
-~15060~^~321~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~
-~15060~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~
-~15060~^~324~^118.^0^^~4~^~NR~^^^^^^^^^^~03/01/2009~
-~15060~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~
-~15060~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~
-~15060~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~
-~15060~^~417~^5.^0^^~4~^^^^^^^^^^^~09/01/1987~
-~15060~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~
-~15060~^~432~^5.^0^^~4~^^^^^^^^^^^~03/01/2009~
-~15060~^~435~^5.^0^^~4~^~NC~^^^^^^^^^^~03/01/2009~
-~15060~^~601~^90.^2^^~1~^^^^^^^^^^^~09/01/1987~
-~15061~^~208~^117.^0^^~4~^~NC~^^^^^^^^^^~09/01/1987~
-~15061~^~268~^490.^0^^~4~^^^^^^^^^^^
-~15061~^~301~^102.^0^^~1~^^^^^^^^^^^~09/01/1987~
-~15061~^~304~^38.^0^^~1~^^^^^^^^^^^~09/01/1987~
-~15061~^~305~^257.^0^^~1~^^^^^^^^^^^~09/01/1987~
-~15061~^~306~^344.^0^^~1~^^^^^^^^^^^~09/01/1987~
-~15061~^~307~^79.^0^^~1~^^^^^^^^^^^~09/01/1987~
-~15061~^~318~^32.^0^^~4~^^^^^^^^^^^~09/01/1987~
-~15061~^~319~^10.^0^^~4~^^^^^^^^^^^~06/01/2002~
-~15061~^~320~^10.^0^^~4~^^^^^^^^^^^~06/01/2002~
-~15061~^~417~^6.^0^^~4~^^^^^^^^^^^~09/01/1987~
-~15061~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~
-~15061~^~432~^6.^0^^~4~^^^^^^^^^^^~09/01/1987~
-~15061~^~435~^6.^0^^~4~^~NC~^^^^^^^^^^~01/01/2001~
-~15061~^~601~^115.^0^^~1~^^^^^^^^^^^~09/01/1987~
-~15062~^~208~^88.^0^^~4~^~NC~^^^^^^^^^^~09/01/1987~
-~15062~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~
-~15062~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~
-~15062~^~268~^368.^0^^~4~^^^^^^^^^^^~03/01/2009~
-~15062~^~301~^57.^3^15.^~1~^^^^^^^^^^^~09/01/1987~
-~15062~^~304~^31.^0^^~4~^^^^^^^^^^^~09/01/1987~
-~15062~^~305~^220.^3^23.^~1~^^^^^^^^^^^~09/01/1987~
-~15062~^~306~^259.^2^^~1~^^^^^^^^^^^~09/01/1987~
-~15062~^~307~^39.^0^^~4~^^^^^^^^^^^~09/01/1987~
-~15062~^~318~^70.^0^^~4~^~NC~^^^^^^^^^^~03/01/2009~
-~15062~^~319~^21.^0^^~4~^~T~^^^^^^^^^^~03/01/2009~
-~15062~^~320~^21.^0^^~4~^~NC~^^^^^^^^^^~03/01/2009~
-~15062~^~321~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~
-~15062~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~
-~15062~^~324~^99.^0^^~4~^~NR~^^^^^^^^^^~03/01/2009~
-~15062~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~
-~15062~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~
-~15062~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~
-~15062~^~417~^15.^0^^~4~^^^^^^^^^^^~09/01/1987~
-~15062~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~
-~15062~^~432~^15.^0^^~4~^^^^^^^^^^^~03/01/2009~
-~15062~^~435~^15.^0^^~4~^~NC~^^^^^^^^^^~03/01/2009~
-~15062~^~601~^39.^1^^~1~^^^^^^^^^^^~09/01/1987~
-~15063~^~208~^113.^0^^~4~^~NC~^^^^^^^^^^~09/01/1987~
-~15063~^~268~^473.^0^^~4~^^^^^^^^^^^
-~15063~^~301~^73.^0^^~1~^^^^^^^^^^^~09/01/1987~
-~15063~^~304~^40.^0^^~4~^^^^^^^^^^^~09/01/1987~
-~15063~^~305~^282.^0^^~1~^^^^^^^^^^^~09/01/1987~
-~15063~^~306~^331.^0^^~1~^^^^^^^^^^^~09/01/1987~
-~15063~^~307~^49.^0^^~4~^^^^^^^^^^^~09/01/1987~
-~15063~^~318~^81.^0^^~1~^^^^^^^^^^^~09/01/1987~
-~15063~^~319~^24.^0^^~1~^^^^^^^^^^^~06/01/2002~
-~15063~^~320~^24.^0^^~1~^^^^^^^^^^^~06/01/2002~
-~15063~^~417~^17.^0^^~4~^^^^^^^^^^^~09/01/1987~
-~15063~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~
-~15063~^~432~^17.^0^^~4~^^^^^^^^^^^~09/01/1987~
-~15063~^~435~^17.^0^^~4~^~NC~^^^^^^^^^^~01/01/2001~
-~15063~^~601~^50.^0^^~1~^^^^^^^^^^^~09/01/1987~
-~15064~^~208~^93.^0^^~4~^~NC~^^^^^^^^^^~09/01/1987~
-~15064~^~268~^389.^0^^~4~^^^^^^^^^^^
-~15064~^~301~^110.^1^^~1~^^^^^^^^^^^~09/01/1987~
-~15064~^~304~^30.^1^^~1~^^^^^^^^^^^~09/01/1987~
-~15064~^~305~^210.^1^^~1~^^^^^^^^^^^~09/01/1987~
-~15064~^~306~^389.^3^70.^~1~^^^^^^^^^^^~09/01/1987~
-~15064~^~307~^51.^3^0.^~1~^^^^^^^^^^^~09/01/1987~
-~15064~^~318~^70.^0^^~4~^^^^^^^^^^^~09/01/1987~
-~15064~^~319~^21.^0^^~4~^^^^^^^^^^^~06/01/2002~
-~15064~^~320~^21.^0^^~4~^^^^^^^^^^^~06/01/2002~
-~15064~^~417~^15.^0^^~4~^^^^^^^^^^^~09/01/1987~
-~15064~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~
-~15064~^~432~^15.^0^^~4~^^^^^^^^^^^~09/01/1987~
-~15064~^~435~^15.^0^^~4~^~NC~^^^^^^^^^^~01/01/2001~
-~15064~^~601~^86.^1^^~1~^^^^^^^^^^^~09/01/1987~
-~15065~^~208~^92.^0^^~4~^~NC~^^^^^^^^^^~09/01/1987~
-~15065~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~
-~15065~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~
-~15065~^~268~^385.^0^^~4~^^^^^^^^^^^~03/01/2009~
-~15065~^~301~^60.^17^11.^~1~^^^^^^^^^^^~09/01/1987~
-~15065~^~304~^67.^1^^~1~^^^^^^^^^^^~09/01/1987~
-~15065~^~305~^221.^22^8.^~1~^^^^^^^^^^^~09/01/1987~
-~15065~^~306~^356.^30^9.^~1~^^^^^^^^^^^~09/01/1987~
-~15065~^~307~^86.^28^5.^~1~^^^^^^^^^^^~09/01/1987~
-~15065~^~318~^46.^0^^~4~^~NC~^^^^^^^^^^~03/01/2009~
-~15065~^~319~^14.^0^^~4~^~BFSN~^~15015~^^^^^^^^^~03/01/2009~
-~15065~^~320~^14.^0^^~4~^~NC~^^^^^^^^^^~03/01/2009~
-~15065~^~321~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~
-~15065~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~
-~15065~^~324~^42.^0^^~4~^~BFSN~^~15015~^^^^^^^^^~03/01/2009~
-~15065~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~
-~15065~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~
-~15065~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~
-~15065~^~417~^3.^0^^~4~^^^^^^^^^^^~09/01/1987~
-~15065~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~
-~15065~^~432~^3.^0^^~4~^^^^^^^^^^^~03/01/2009~
-~15065~^~435~^3.^0^^~4~^~NC~^^^^^^^^^^~03/01/2009~
-~15065~^~601~^71.^1^^~1~^^^^^^^^^^^~09/01/1987~
-~15066~^~208~^56.^0^^~4~^~NC~^^^^^^^^^^~07/01/2010~
-~15066~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~
-~15066~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~
-~15066~^~268~^233.^0^^~4~^~NC~^^^^^^^^^^~07/01/2010~
-~15066~^~301~^15.^8^4.^~1~^~A~^^^1^5.^36.^7^4.^24.^~2, 3~^~07/01/2010~
-~15066~^~304~^16.^8^2.^~1~^~A~^^^1^9.^27.^7^10.^21.^~2, 3~^~07/01/2010~
-~15066~^~305~^284.^8^48.^~1~^~A~^^^1^135.^541.^7^170.^397.^~2, 3~^~07/01/2010~
-~15066~^~306~^160.^8^40.^~1~^~A~^^^1^73.^416.^7^64.^254.^~2, 3~^~07/01/2010~
-~15066~^~307~^333.^8^67.^~1~^~A~^^^1^72.^617.^7^174.^491.^~2, 3~^~07/01/2010~
-~15066~^~318~^10.^0^^~1~^~AS~^^^^^^^^^^~07/01/2010~
-~15066~^~319~^3.^1^^~1~^~A~^^^^^^^^^^~07/01/2010~
-~15066~^~320~^3.^0^^~1~^~AS~^^^^^^^^^^~07/01/2010~
-~15066~^~321~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~
-~15066~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~
-~15066~^~324~^8.^3^4.^~1~^~A~^^^1^3.^17.^2^-11.^27.^~2, 3~^~07/01/2010~
-~15066~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~
-~15066~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~
-~15066~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~
-~15066~^~417~^3.^2^^~1~^^^^^^^^^^^~09/01/1987~
-~15066~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~
-~15066~^~432~^3.^2^^~1~^^^^^^^^^^^~07/01/2010~
-~15066~^~435~^3.^0^^~4~^~NC~^^^^^^^^^^~07/01/2010~
-~15066~^~601~^46.^3^3.^~1~^~A~^^^1^42.^52.^2^32.^59.^~2, 3~^~07/01/2010~
-~15067~^~208~^111.^0^^~4~^~RA~^^^^^^^^^^~07/01/2010~
-~15067~^~262~^0.^0^^~4~^~RA~^^^^^^^^^^~07/01/2010~
-~15067~^~263~^0.^0^^~4~^~RA~^^^^^^^^^^~07/01/2010~
-~15067~^~268~^464.^0^^~4~^~RA~^^^^^^^^^^~07/01/2010~
-~15067~^~301~^72.^0^^~4~^~RA~^^^^^^^^^^~07/01/2010~
-~15067~^~304~^81.^0^^~4~^~RA~^^^^^^^^^^~07/01/2010~
-~15067~^~305~^267.^0^^~4~^~RA~^^^^^^^^^^~07/01/2010~
-~15067~^~306~^430.^0^^~4~^~RA~^^^^^^^^^^~07/01/2010~
-~15067~^~307~^419.^0^^~4~^~O~^^^^^^^^^^~09/01/2011~
-~15067~^~318~^51.^0^^~4~^~RA~^^^^^^^^^^~07/01/2010~
-~15067~^~319~^17.^0^^~4~^~RA~^^^^^^^^^^~07/01/2010~
-~15067~^~320~^17.^0^^~4~^~RA~^^^^^^^^^^~07/01/2010~
-~15067~^~321~^0.^0^^~4~^~RA~^^^^^^^^^^~07/01/2010~
-~15067~^~322~^0.^0^^~4~^~RA~^^^^^^^^^^~07/01/2010~
-~15067~^~324~^51.^0^^~4~^~RA~^^^^^^^^^^~07/01/2010~
-~15067~^~334~^0.^0^^~4~^~RA~^^^^^^^^^^~07/01/2010~
-~15067~^~337~^0.^0^^~4~^~RA~^^^^^^^^^^~07/01/2010~
-~15067~^~338~^0.^0^^~4~^~RA~^^^^^^^^^^~07/01/2010~
-~15067~^~417~^3.^0^^~4~^~RA~^^^^^^^^^^~07/01/2010~
-~15067~^~431~^0.^0^^~4~^~RA~^^^^^^^^^^~07/01/2010~
-~15067~^~432~^3.^0^^~4~^~RA~^^^^^^^^^^~07/01/2010~
-~15067~^~435~^3.^0^^~4~^~NC~^^^^^^^^^^~07/01/2010~
-~15067~^~601~^86.^0^^~4~^~RA~^^^^^^^^^^~07/01/2010~
-~15068~^~208~^164.^0^^~4~^~NC~^^^^^^^^^^~09/01/1987~
-~15068~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~
-~15068~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~
-~15068~^~268~^686.^0^^~4~^^^^^^^^^^^~03/01/2009~
-~15068~^~301~^22.^6^3.^~1~^^^^^^^^^^^~09/01/1987~
-~15068~^~304~^27.^6^1.^~1~^^^^^^^^^^^~09/01/1987~
-~15068~^~305~^195.^6^19.^~1~^^^^^^^^^^^~09/01/1987~
-~15068~^~306~^381.^7^39.^~1~^^^^^^^^^^^~09/01/1987~
-~15068~^~307~^65.^7^3.^~1~^^^^^^^^^^^~09/01/1987~
-~15068~^~318~^132.^0^^~4~^~NC~^^^^^^^^^^~03/01/2009~
-~15068~^~319~^40.^0^^~4~^~BFSN~^~15046~^^^^^^^^^~03/01/2009~
-~15068~^~320~^40.^0^^~4~^~NC~^^^^^^^^^^~03/01/2009~
-~15068~^~321~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~
-~15068~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~
-~15068~^~324~^439.^0^^~4~^~BFFN~^~15046~^^^^^^^^^~03/01/2009~
-~15068~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~
-~15068~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~
-~15068~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~
-~15068~^~417~^15.^0^^~4~^^^^^^^^^^^~09/01/1987~
-~15068~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~
-~15068~^~432~^15.^0^^~4~^^^^^^^^^^^~03/01/2009~
-~15068~^~435~^15.^0^^~4~^~NC~^^^^^^^^^^~03/01/2009~
-~15068~^~601~^50.^1^^~1~^^^^^^^^^^^~09/01/1987~
-~15069~^~208~^211.^0^^~4~^~NC~^^^^^^^^^^~09/01/1987~
-~15069~^~268~^883.^0^^~4~^^^^^^^^^^^~04/01/2004~
-~15069~^~301~^43.^1^^~1~^^^^^^^^^^^~09/01/1987~
-~15069~^~304~^31.^1^^~1~^^^^^^^^^^^~09/01/1987~
-~15069~^~305~^341.^1^^~1~^^^^^^^^^^^~09/01/1987~
-~15069~^~306~^636.^1^^~1~^^^^^^^^^^^~09/01/1987~
-~15069~^~307~^76.^1^^~1~^^^^^^^^^^^~09/01/1987~
-~15069~^~318~^120.^0^^~4~^^^^^^^^^^^~09/01/1987~
-~15069~^~319~^36.^0^^~4~^^^^^^^^^^^~04/01/2004~
-~15069~^~320~^36.^0^^~4~^~NC~^^^^^^^^^^~04/01/2004~
-~15069~^~417~^17.^0^^~4~^^^^^^^^^^^~09/01/1987~
-~15069~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~
-~15069~^~432~^17.^0^^~4~^^^^^^^^^^^~04/01/2004~
-~15069~^~435~^17.^0^^~4~^~NC~^^^^^^^^^^~04/01/2004~
-~15069~^~601~^64.^0^^~1~^^^^^^^^^^^~09/01/1987~
-~15070~^~208~^90.^0^^~4~^~NC~^^^^^^^^^^~07/01/2010~
-~15070~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~
-~15070~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~
-~15070~^~268~^378.^0^^~4~^~NC~^^^^^^^^^^~07/01/2010~
-~15070~^~301~^14.^4^1.^~1~^~A~^^^1^10.^17.^3^9.^19.^~2, 3~^~07/01/2010~
-~15070~^~304~^27.^4^0.^~1~^~A~^^^1^26.^29.^3^25.^29.^~2, 3~^~07/01/2010~
-~15070~^~305~^205.^4^8.^~1~^~A~^^^1^192.^227.^3^179.^231.^~2, 3~^~07/01/2010~
-~15070~^~306~^386.^4^6.^~1~^~A~^^^1^371.^401.^3^365.^406.^~2, 3~^~07/01/2010~
-~15070~^~307~^74.^4^3.^~1~^~A~^^^1^63.^82.^3^61.^86.^~2, 3~^~07/01/2010~
-~15070~^~318~^15.^0^^~1~^~AS~^^^^^^^^^^~07/01/2010~
-~15070~^~319~^4.^1^^~1~^~A~^^^^^^^^^^~07/01/2010~
-~15070~^~320~^4.^0^^~1~^~AS~^^^^^^^^^^~07/01/2010~
-~15070~^~321~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~
-~15070~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~
-~15070~^~324~^151.^4^90.^~1~^~A~^^^1^37.^421.^3^-137.^439.^~2, 3~^~07/01/2010~
-~15070~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~
-~15070~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~
-~15070~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~
-~15070~^~417~^9.^0^^~4~^^^^^^^^^^^~09/01/1987~
-~15070~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~
-~15070~^~432~^9.^0^^~4~^^^^^^^^^^^~07/01/2010~
-~15070~^~435~^9.^0^^~4~^~NC~^^^^^^^^^^~07/01/2010~
-~15070~^~601~^50.^3^2.^~1~^~A~^^^1^48.^54.^2^41.^59.^~2, 3~^~07/01/2010~
-~15071~^~208~^109.^0^^~4~^~RA~^^^^^^^^^^~07/01/2010~
-~15071~^~262~^0.^0^^~4~^~RA~^^^^^^^^^^~07/01/2010~
-~15071~^~263~^0.^0^^~4~^~RA~^^^^^^^^^^~07/01/2010~
-~15071~^~268~^458.^0^^~4~^~RA~^^^^^^^^^^~07/01/2010~
-~15071~^~301~^17.^0^^~4~^~RA~^^^^^^^^^^~07/01/2010~
-~15071~^~304~^33.^0^^~4~^~RA~^^^^^^^^^^~07/01/2010~
-~15071~^~305~^248.^0^^~4~^~RA~^^^^^^^^^^~07/01/2010~
-~15071~^~306~^467.^0^^~4~^~RA~^^^^^^^^^^~07/01/2010~
-~15071~^~307~^89.^0^^~4~^~RA~^^^^^^^^^^~07/01/2010~
-~15071~^~318~^16.^0^^~4~^~RA~^^^^^^^^^^~07/01/2010~
-~15071~^~319~^5.^0^^~4~^~RA~^^^^^^^^^^~07/01/2010~
-~15071~^~320~^5.^0^^~4~^~RA~^^^^^^^^^^~07/01/2010~
-~15071~^~321~^0.^0^^~4~^~RA~^^^^^^^^^^~07/01/2010~
-~15071~^~322~^0.^0^^~4~^~RA~^^^^^^^^^^~07/01/2010~
-~15071~^~324~^183.^0^^~4~^~RA~^^^^^^^^^^~07/01/2010~
-~15071~^~334~^0.^0^^~4~^~RA~^^^^^^^^^^~07/01/2010~
-~15071~^~337~^0.^0^^~4~^~RA~^^^^^^^^^^~07/01/2010~
-~15071~^~338~^0.^0^^~4~^~RA~^^^^^^^^^^~07/01/2010~
-~15071~^~417~^10.^0^^~4~^~RA~^^^^^^^^^^~07/01/2010~
-~15071~^~431~^0.^0^^~4~^~RA~^^^^^^^^^^~07/01/2010~
-~15071~^~432~^10.^0^^~4~^~RA~^^^^^^^^^^~07/01/2010~
-~15071~^~435~^10.^0^^~4~^~NC~^^^^^^^^^^~07/01/2010~
-~15071~^~601~^61.^0^^~4~^~RA~^^^^^^^^^^~07/01/2010~
-~15072~^~208~^143.^0^^~4~^~NC~^^^^^^^^^^~03/01/2009~
-~15072~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~
-~15072~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~
-~15072~^~268~^599.^0^^~4~^~NC~^^^^^^^^^^~03/01/2009~
-~15072~^~301~^22.^0^^~4~^^^^^^^^^^^~09/01/1987~
-~15072~^~304~^20.^0^^~4~^^^^^^^^^^^~09/01/1987~
-~15072~^~305~^402.^0^^~4~^^^^^^^^^^^~09/01/1987~
-~15072~^~306~^221.^0^^~4~^^^^^^^^^^^~09/01/1987~
-~15072~^~307~^91.^0^^~4~^^^^^^^^^^^~09/01/1987~
-~15072~^~318~^299.^0^^~4~^~NC~^^^^^^^^^^~03/01/2009~
-~15072~^~319~^90.^0^^~4~^~BFFN~^~01123~^^^^^^^^^~02/01/2003~
-~15072~^~320~^90.^0^^~4~^~NC~^^^^^^^^^^~03/01/2009~
-~15072~^~321~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~
-~15072~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~
-~15072~^~324~^484.^0^^~4~^~NR~^^^^^^^^^^~03/01/2009~
-~15072~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~
-~15072~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~
-~15072~^~338~^214.^0^^~4~^~BFFN~^~01123~^^^^^^^^^~02/01/2003~
-~15072~^~417~^80.^0^^~4~^^^^^^^^^^^~09/01/1987~
-~15072~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~
-~15072~^~432~^80.^0^^~4~^^^^^^^^^^^~03/01/2009~
-~15072~^~435~^80.^0^^~4~^~NC~^^^^^^^^^^~03/01/2009~
-~15072~^~601~^374.^5^^~1~^^^^^^^^^^^~09/01/1987~
-~15073~^~208~^76.^0^^~4~^~NC~^^^^^^^^^^~03/01/2005~
-~15073~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2005~
-~15073~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2005~
-~15073~^~268~^320.^0^^~4~^~NC~^^^^^^^^^^~03/01/2005~
-~15073~^~301~^9.^3^0.^~1~^~A~^^^1^^^^^^^~02/01/2005~
-~15073~^~304~^17.^3^1.^~1~^~A~^^^1^^^^^^^~02/01/2005~
-~15073~^~305~^107.^3^14.^~1~^~A~^^^1^^^^^^^~02/01/2005~
-~15073~^~306~^167.^3^9.^~1~^~A~^^^1^^^^^^^~02/01/2005~
-~15073~^~307~^72.^1^^~1~^~A~^^^^^^^^^^~02/01/2005~
-~15073~^~318~^70.^0^^~4~^~NC~^^^^^^^^^^~03/01/2005~
-~15073~^~319~^21.^0^^~4~^~T~^^^^^^^^^^~03/01/2005~
-~15073~^~320~^21.^0^^~4~^~NC~^^^^^^^^^^~03/01/2005~
-~15073~^~321~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2005~
-~15073~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2005~
-~15073~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2005~
-~15073~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2005~
-~15073~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2005~
-~15073~^~417~^26.^3^2.^~1~^~A~^^^1^^^^^^^~02/01/2005~
-~15073~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~
-~15073~^~432~^26.^3^2.^~1~^~A~^^^1^^^^^^^~03/01/2005~
-~15073~^~435~^26.^0^^~4~^~NC~^^^^^^^^^^~03/01/2005~
-~15073~^~601~^60.^3^2.^~1~^~A~^^^1^^^^^^^~02/01/2005~
-~15074~^~208~^195.^0^^~4~^~NC~^^^^^^^^^^~09/01/1987~
-~15074~^~268~^816.^0^^~4~^^^^^^^^^^^
-~15074~^~301~^35.^0^^~4~^^^^^^^^^^^~09/01/1987~
-~15074~^~304~^55.^0^^~4~^^^^^^^^^^^~09/01/1987~
-~15074~^~305~^168.^0^^~4~^^^^^^^^^^^~09/01/1987~
-~15074~^~306~^358.^56^2.^~1~^^^^^^^^^^^~09/01/1987~
-~15074~^~307~^56.^56^1.^~1~^^^^^^^^^^^~09/01/1987~
-~15074~^~318~^310.^0^^~4~^^^^^^^^^^^~09/01/1987~
-~15074~^~319~^93.^0^^~4~^^^^^^^^^^^~06/01/2002~
-~15074~^~320~^93.^0^^~4~^^^^^^^^^^^~06/01/2002~
-~15074~^~417~^15.^0^^~4~^^^^^^^^^^^~09/01/1987~
-~15074~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~
-~15074~^~432~^15.^0^^~4~^^^^^^^^^^^~09/01/1987~
-~15074~^~435~^15.^0^^~4~^~NC~^^^^^^^^^^~01/01/2001~
-~15074~^~601~^49.^1^^~1~^^^^^^^^^^^~09/01/1987~
-~15075~^~208~^257.^0^^~4~^~NC~^^^^^^^^^^~08/01/2010~
-~15075~^~268~^1075.^0^^~4~^~NC~^^^^^^^^^^~08/01/2010~
-~15075~^~301~^50.^0^^~4~^^^^^^^^^^^~09/01/1987~
-~15075~^~304~^74.^0^^~4~^^^^^^^^^^^~09/01/1987~
-~15075~^~305~^222.^0^^~4~^^^^^^^^^^^~09/01/1987~
-~15075~^~306~^471.^0^^~1~^^^^^^^^^^^~09/01/1987~
-~15075~^~307~^737.^0^^~1~^^^^^^^^^^^~09/01/1987~
-~15075~^~318~^408.^0^^~4~^^^^^^^^^^^~09/01/1987~
-~15075~^~320~^122.^0^^~4~^~NR~^^^^^^^^^^~05/01/2011~
-~15075~^~417~^20.^0^^~4~^^^^^^^^^^^~09/01/1987~
-~15075~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~
-~15075~^~432~^20.^0^^~4~^^^^^^^^^^^~08/01/2010~
-~15075~^~435~^20.^0^^~4~^~NC~^^^^^^^^^^~08/01/2010~
-~15075~^~601~^64.^0^^~1~^^^^^^^^^^^~09/01/1987~
-~15076~^~208~^142.^0^^~4~^~NC~^^^^^^^^^^~09/01/1987~
-~15076~^~268~^594.^0^^~4~^^^^^^^^^^^
-~15076~^~301~^12.^3^4.^~1~^^^^^^^^^^^~09/01/1987~
-~15076~^~304~^29.^1^^~1~^^^^^^^^^^^~09/01/1987~
-~15076~^~305~^200.^1^^~1~^^^^^^^^^^^~09/01/1987~
-~15076~^~306~^490.^3^30.^~1~^^^^^^^^^^^~09/01/1987~
-~15076~^~307~^44.^2^^~1~^^^^^^^^^^^~09/01/1987~
-~15076~^~318~^40.^1^^~1~^^^^^^^^^^^~09/01/1987~
-~15076~^~319~^12.^1^^~1~^^^^^^^^^^^~06/01/2002~
-~15076~^~320~^12.^1^^~1~^^^^^^^^^^^~06/01/2002~
-~15076~^~417~^25.^1^^~1~^^^^^^^^^^^~09/01/1987~
-~15076~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~
-~15076~^~432~^25.^1^^~1~^^^^^^^^^^^~09/01/1987~
-~15076~^~435~^25.^0^^~4~^~NC~^^^^^^^^^^~01/01/2001~
-~15076~^~601~^55.^0^^~1~^^^^^^^^^^^~09/01/1987~
-~15077~^~208~^117.^0^^~4~^~NC~^^^^^^^^^^~09/01/1987~
-~15077~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~
-~15077~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~
-~15077~^~268~^490.^0^^~4~^^^^^^^^^^^~03/01/2009~
-~15077~^~301~^11.^2^^~1~^^^^^^^^^^^~09/01/1987~
-~15077~^~304~^18.^2^^~1~^^^^^^^^^^^~09/01/1987~
-~15077~^~305~^164.^2^^~1~^^^^^^^^^^^~09/01/1987~
-~15077~^~306~^175.^2^^~1~^^^^^^^^^^^~09/01/1987~
-~15077~^~307~^672.^0^^~4~^~NR~^^^^^^^^^^~06/01/2013~
-~15077~^~318~^87.^0^^~4~^~NC~^^^^^^^^^^~03/01/2009~
-~15077~^~319~^26.^0^^~4~^~T~^^^^^^^^^^~03/01/2009~
-~15077~^~320~^26.^0^^~4~^~NC~^^^^^^^^^^~03/01/2009~
-~15077~^~321~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~
-~15077~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~
-~15077~^~324~^685.^0^^~4~^~BFSN~^~15085~^^^^^^^^^~03/01/2009~
-~15077~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~
-~15077~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~
-~15077~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~
-~15077~^~417~^2.^2^^~1~^^^^^^^^^^^~09/01/1987~
-~15077~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~
-~15077~^~432~^2.^2^^~1~^^^^^^^^^^^~03/01/2009~
-~15077~^~435~^2.^0^^~4~^~NC~^^^^^^^^^^~03/01/2009~
-~15077~^~601~^23.^2^^~1~^^^^^^^^^^^~09/01/1987~
-~15078~^~208~^179.^0^^~4~^~NC~^^^^^^^^^^~04/01/2003~
-~15078~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2003~
-~15078~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2003~
-~15078~^~268~^750.^0^^~4~^~NC~^^^^^^^^^^~04/01/2003~
-~15078~^~301~^26.^3^13.^~6~^~JA~^^^2^7.^47.^1^-143.^195.^~2, 3~^~04/01/2003~
-~15078~^~304~^95.^0^^~4~^^^^^^^^^^^~09/01/1987~
-~15078~^~305~^289.^0^^~4~^^^^^^^^^^^~09/01/1987~
-~15078~^~306~^394.^77^^~1~^^^^1^352.^447.^^^^~2, 3~^~04/01/2003~
-~15078~^~307~^47.^79^0.^~6~^~JA~^^^2^37.^64.^1^46.^47.^~2, 3~^~04/01/2003~
-~15078~^~318~^453.^0^^~4~^~NC~^^^^^^^^^^~04/01/2003~
-~15078~^~319~^136.^0^^~4~^~NR~^^^^^^^^^^~04/01/2003~
-~15078~^~320~^136.^0^^~4~^~NC~^^^^^^^^^^~04/01/2003~
-~15078~^~321~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2003~
-~15078~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2003~
-~15078~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2003~
-~15078~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2003~
-~15078~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2003~
-~15078~^~417~^30.^0^^~4~^^^^^^^^^^^~09/01/1987~
-~15078~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~
-~15078~^~432~^30.^0^^~4~^~NR~^^^^^^^^^^~04/01/2003~
-~15078~^~435~^30.^0^^~4~^~NC~^^^^^^^^^^~04/01/2003~
-~15078~^~601~^50.^2^^~1~^~A~^^^1^41.^60.^1^^^^~04/01/2003~
-~15079~^~208~^120.^0^^~4~^^^^^^^^^^^~09/01/1987~
-~15079~^~268~^502.^0^^~4~^^^^^^^^^^^
-~15079~^~301~^11.^1^^~1~^^^^^^^^^^^~09/01/1987~
-~15079~^~304~^22.^0^^~4~^^^^^^^^^^^~09/01/1987~
-~15079~^~305~^283.^1^^~1~^^^^^^^^^^^~09/01/1987~
-~15079~^~306~^429.^6^5.^~1~^^^^^^^^^^^~09/01/1987~
-~15079~^~307~^50.^6^1.^~1~^^^^^^^^^^^~09/01/1987~
-~15079~^~318~^99.^1^^~1~^^^^^^^^^^^~09/01/1987~
-~15079~^~319~^30.^1^^~1~^^^^^^^^^^^~06/01/2002~
-~15079~^~320~^30.^1^^~1~^^^^^^^^^^^~06/01/2002~
-~15079~^~417~^4.^0^^~4~^^^^^^^^^^^~09/01/1987~
-~15079~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~
-~15079~^~432~^4.^0^^~4~^^^^^^^^^^^~09/01/1987~
-~15079~^~435~^4.^0^^~4~^~NC~^^^^^^^^^^~01/01/2001~
-~15079~^~601~^74.^2^^~1~^^^^^^^^^^^~09/01/1987~
-~15080~^~208~^141.^0^^~4~^~NC~^^^^^^^^^^~09/01/1987~
-~15080~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2001~
-~15080~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2001~
-~15080~^~268~^590.^0^^~4~^~NC~^^^^^^^^^^~03/01/2009~
-~15080~^~301~^249.^6^1.^~1~^^^^^^^^^^^~09/01/1987~
-~15080~^~304~^30.^0^^~4~^^^^^^^^^^^~09/01/1987~
-~15080~^~305~^354.^6^2.^~1~^^^^^^^^^^^~09/01/1987~
-~15080~^~306~^300.^0^^~4~^^^^^^^^^^^~09/01/1987~
-~15080~^~307~^391.^0^^~4~^~O~^^^^^^^^^^~06/01/2013~
-~15080~^~318~^60.^0^^~4~^~NC~^^^^^^^^^^~03/01/2009~
-~15080~^~319~^18.^0^^~4~^~T~^^^^^^^^^^~03/01/2009~
-~15080~^~320~^18.^0^^~4~^~NC~^^^^^^^^^^~03/01/2009~
-~15080~^~321~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~
-~15080~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~
-~15080~^~324~^386.^0^^~4~^~BFSN~^~15083~^^^^^^^^^~03/01/2009~
-~15080~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~
-~15080~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~
-~15080~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~
-~15080~^~417~^20.^0^^~4~^^^^^^^^^^^~09/01/1987~
-~15080~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~
-~15080~^~432~^20.^0^^~4~^^^^^^^^^^^~03/01/2009~
-~15080~^~435~^20.^0^^~4~^~NC~^^^^^^^^^^~03/01/2009~
-~15080~^~601~^39.^1^^~1~^^^^^^^^^^^~09/01/1987~
-~15081~^~208~^146.^0^^~4~^~NC~^^^^^^^^^^~09/01/1987~
-~15081~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~
-~15081~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~
-~15081~^~268~^611.^0^^~4~^^^^^^^^^^^~03/01/2009~
-~15081~^~301~^36.^1^^~1~^^^^^^^^^^^~09/01/1987~
-~15081~^~304~^31.^3^0.^~1~^^^^^^^^^^^~09/01/1987~
-~15081~^~305~^262.^3^16.^~1~^^^^^^^^^^^~09/01/1987~
-~15081~^~306~^423.^47^2.^~1~^^^^^^^^^^^~09/01/1987~
-~15081~^~307~^46.^47^1.^~1~^^^^^^^^^^^~09/01/1987~
-~15081~^~318~^135.^0^^~4~^~NC~^^^^^^^^^^~03/01/2009~
-~15081~^~319~^40.^0^^~4~^~BFSN~^~15083~^^^^^^^^^~03/01/2009~
-~15081~^~320~^40.^0^^~4~^~NC~^^^^^^^^^^~03/01/2009~
-~15081~^~321~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~
-~15081~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~
-~15081~^~324~^361.^0^^~4~^~BFSN~^~15083~^^^^^^^^^~03/01/2009~
-~15081~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~
-~15081~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~
-~15081~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~
-~15081~^~417~^9.^3^3.^~1~^^^^^^^^^^^~09/01/1987~
-~15081~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~
-~15081~^~432~^9.^3^3.^~1~^^^^^^^^^^^~03/01/2009~
-~15081~^~435~^9.^0^^~4~^~NC~^^^^^^^^^^~03/01/2009~
-~15081~^~601~^45.^3^3.^~1~^^^^^^^^^^^~09/01/1987~
-~15082~^~208~^184.^0^^~4~^~NC~^^^^^^^^^^~09/01/1987~
-~15082~^~268~^770.^0^^~4~^^^^^^^^^^^
-~15082~^~301~^46.^0^^~1~^^^^^^^^^^^~09/01/1987~
-~15082~^~304~^35.^0^^~1~^^^^^^^^^^^~09/01/1987~
-~15082~^~305~^298.^0^^~1~^^^^^^^^^^^~09/01/1987~
-~15082~^~306~^455.^0^^~1~^^^^^^^^^^^~09/01/1987~
-~15082~^~307~^53.^0^^~1~^^^^^^^^^^^~09/01/1987~
-~15082~^~318~^108.^0^^~1~^^^^^^^^^^^~09/01/1987~
-~15082~^~319~^32.^0^^~1~^^^^^^^^^^^~06/01/2002~
-~15082~^~320~^32.^0^^~1~^^^^^^^^^^^~06/01/2002~
-~15082~^~417~^9.^0^^~1~^^^^^^^^^^^~09/01/1987~
-~15082~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~
-~15082~^~432~^9.^0^^~1~^^^^^^^^^^^~09/01/1987~
-~15082~^~435~^9.^0^^~4~^~NC~^^^^^^^^^^~01/01/2001~
-~15082~^~601~^57.^0^^~1~^^^^^^^^^^^~09/01/1987~
-~15083~^~208~^127.^0^^~4~^~NC~^^^^^^^^^^~07/01/2010~
-~15083~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~
-~15083~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~
-~15083~^~268~^532.^0^^~4~^~NC~^^^^^^^^^^~07/01/2010~
-~15083~^~301~^7.^3^0.^~1~^~A~^^^1^6.^8.^2^4.^9.^~2, 3~^~07/01/2010~
-~15083~^~304~^27.^3^0.^~1~^~A~^^^1^26.^28.^2^25.^28.^~2, 3~^~07/01/2010~
-~15083~^~305~^261.^3^10.^~1~^~A~^^^1^243.^279.^2^216.^305.^~2, 3~^~07/01/2010~
-~15083~^~306~^366.^3^26.^~1~^~A~^^^1^318.^410.^2^251.^481.^~2, 3~^~07/01/2010~
-~15083~^~307~^75.^3^25.^~1~^~A~^^^1^43.^125.^2^-33.^183.^~2, 3~^~07/01/2010~
-~15083~^~318~^117.^0^^~4~^~NC~^^^^^^^^^^~07/01/2010~
-~15083~^~319~^35.^0^^~4~^~T~^^^^^^^^^^~03/01/2009~
-~15083~^~320~^35.^0^^~4~^~NC~^^^^^^^^^^~07/01/2010~
-~15083~^~321~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~
-~15083~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~
-~15083~^~324~^435.^3^75.^~1~^~A~^^^1^285.^525.^2^110.^759.^~2, 3~^~07/01/2010~
-~15083~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~
-~15083~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~
-~15083~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~
-~15083~^~417~^4.^0^^~4~^^^^^^^^^^^~09/01/1987~
-~15083~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~
-~15083~^~432~^4.^0^^~4~^^^^^^^^^^^~07/01/2010~
-~15083~^~435~^4.^0^^~4~^~NC~^^^^^^^^^^~07/01/2010~
-~15083~^~601~^46.^2^^~1~^~A~^^^1^42.^50.^1^^^^~07/01/2010~
-~15084~^~208~^129.^0^^~4~^~NC~^^^^^^^^^^~05/01/2011~
-~15084~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2001~
-~15084~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2001~
-~15084~^~268~^539.^0^^~4~^~NC~^^^^^^^^^^~05/01/2011~
-~15084~^~301~^215.^17^7.^~1~^~A~^^^1^154.^262.^16^198.^231.^~2, 3~^~05/01/2011~
-~15084~^~304~^30.^17^0.^~1~^~A~^^^1^27.^34.^16^28.^30.^~2, 3~^~05/01/2011~
-~15084~^~305~^337.^17^5.^~1~^~A~^^^1^299.^379.^16^324.^349.^~2, 3~^~05/01/2011~
-~15084~^~306~^344.^17^4.^~1~^~A~^^^1^301.^368.^16^334.^352.^~2, 3~^~05/01/2011~
-~15084~^~307~^403.^17^8.^~1~^~A~^^^1^304.^471.^16^383.^421.^~2, 3~^~05/01/2011~
-~15084~^~318~^57.^0^^~4~^~NC~^^^^^^^^^^~03/01/2009~
-~15084~^~319~^17.^0^^~4~^~T~^^^^^^^^^^~03/01/2009~
-~15084~^~320~^17.^0^^~4~^~NC~^^^^^^^^^^~03/01/2009~
-~15084~^~321~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~
-~15084~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~
-~15084~^~324~^547.^0^^~4~^~BFFN~^~15083~^^^^^^^^^~03/01/2009~
-~15084~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~
-~15084~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~
-~15084~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~
-~15084~^~417~^15.^3^0.^~1~^^^^^^^^^^^~09/01/1987~
-~15084~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~
-~15084~^~432~^15.^3^0.^~1~^^^^^^^^^^^~03/01/2009~
-~15084~^~435~^15.^0^^~4~^~NC~^^^^^^^^^^~03/01/2009~
-~15084~^~601~^55.^0^^~4~^^^^^^^^^^^~09/01/1987~
-~15085~^~208~^131.^0^^~4~^~NC~^^^^^^^^^^~08/01/2015~
-~15085~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2009~
-~15085~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2009~
-~15085~^~268~^549.^0^^~4~^~NC~^^^^^^^^^^~08/01/2015~
-~15085~^~301~^9.^22^^~1~^~A~^^^3^7.^10.^^^^~2~^~08/01/2015~
-~15085~^~304~^30.^22^^~1~^~A~^^^3^30.^31.^^^^~2~^~07/01/2010~
-~15085~^~305~^257.^22^^~1~^~A~^^^3^248.^266.^^^^~2~^~08/01/2015~
-~15085~^~306~^367.^22^^~1~^~A~^^^3^343.^398.^^^^~2~^~08/01/2015~
-~15085~^~307~^78.^22^^~1~^~A~^^^3^50.^112.^^^^~2~^~08/01/2015~
-~15085~^~318~^162.^0^^~1~^~AS~^^^^^^^^^^~08/01/2015~
-~15085~^~319~^49.^15^2.^~1~^~A~^^^^^^^^^^~08/01/2015~
-~15085~^~320~^49.^0^^~1~^~AS~^^^^^^^^^^~08/01/2015~
-~15085~^~321~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2009~
-~15085~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2009~
-~15085~^~324~^563.^0^^~4~^~NR~^^^^^^^^^^~08/01/2015~
-~15085~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2009~
-~15085~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2009~
-~15085~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2009~
-~15085~^~417~^6.^19^^~1~^~A~^^^2^4.^8.^^^^~2~^~08/01/2015~
-~15085~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~
-~15085~^~432~^6.^19^^~1~^~A~^^^2^4.^8.^^^^^~08/01/2015~
-~15085~^~435~^6.^0^^~4~^~NC~^^^^^^^^^^~08/01/2015~
-~15085~^~601~^51.^22^^~1~^~A~^^^3^50.^53.^^^^~2~^~08/01/2015~
-~15086~^~208~^156.^0^^~4~^~NC~^^^^^^^^^^~08/01/2015~
-~15086~^~262~^0.^0^^~4~^~RA~^^^^^^^^^^~07/01/2010~
-~15086~^~263~^0.^0^^~4~^~RA~^^^^^^^^^^~07/01/2010~
-~15086~^~268~^653.^0^^~4~^~NC~^^^^^^^^^^~08/01/2015~
-~15086~^~301~^11.^0^^~4~^~RA~^^^^^^^^^^~08/01/2015~
-~15086~^~304~^36.^0^^~4~^~RA~^^^^^^^^^^~07/01/2010~
-~15086~^~305~^305.^0^^~4~^~RA~^^^^^^^^^^~08/01/2015~
-~15086~^~306~^436.^0^^~4~^~RA~^^^^^^^^^^~08/01/2015~
-~15086~^~307~^92.^0^^~4~^~RA~^^^^^^^^^^~08/01/2015~
-~15086~^~318~^193.^0^^~4~^~NC~^^^^^^^^^^~08/01/2015~
-~15086~^~319~^58.^0^^~4~^~RA~^^^^^^^^^^~08/01/2015~
-~15086~^~320~^58.^0^^~4~^~RA~^^^^^^^^^^~08/01/2015~
-~15086~^~321~^0.^0^^~4~^~RA~^^^^^^^^^^~07/01/2010~
-~15086~^~322~^0.^0^^~4~^~RA~^^^^^^^^^^~07/01/2010~
-~15086~^~324~^670.^0^^~4~^~RA~^^^^^^^^^^~08/01/2015~
-~15086~^~334~^0.^0^^~4~^~RA~^^^^^^^^^^~07/01/2010~
-~15086~^~337~^0.^0^^~4~^~RA~^^^^^^^^^^~07/01/2010~
-~15086~^~338~^0.^0^^~4~^~RA~^^^^^^^^^^~07/01/2010~
-~15086~^~417~^7.^0^^~4~^~RA~^^^^^^^^^^~08/01/2015~
-~15086~^~431~^0.^0^^~4~^~RA~^^^^^^^^^^~07/01/2010~
-~15086~^~432~^7.^0^^~4~^~RA~^^^^^^^^^^~08/01/2015~
-~15086~^~435~^7.^0^^~4~^~NC~^^^^^^^^^^~08/01/2015~
-~15086~^~601~^61.^0^^~4~^~RA~^^^^^^^^^^~08/01/2015~
-~15087~^~208~^167.^0^^~4~^~NC~^^^^^^^^^^~05/01/2011~
-~15087~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~
-~15087~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~
-~15087~^~268~^701.^0^^~4~^~NC~^^^^^^^^^^~05/01/2011~
-~15087~^~301~^232.^12^5.^~1~^~A~^^^1^204.^260.^11^218.^244.^~2, 3~^~05/01/2011~
-~15087~^~304~^31.^12^0.^~1~^~A~^^^1^27.^34.^11^29.^32.^~2, 3~^~06/01/2005~
-~15087~^~305~^338.^12^3.^~1~^~A~^^^1^320.^353.^11^331.^345.^~2, 3~^~05/01/2011~
-~15087~^~306~^314.^12^5.^~1~^~A~^^^1^286.^338.^11^302.^324.^~2, 3~^~05/01/2011~
-~15087~^~307~^408.^12^18.^~1~^~A~^^^1^334.^532.^11^367.^448.^~2, 3~^~05/01/2011~
-~15087~^~318~^184.^0^^~1~^~AS~^^^^^^^^^^~05/01/2011~
-~15087~^~319~^55.^12^3.^~1~^~A~^^^1^38.^77.^11^47.^62.^~2, 3~^~05/01/2011~
-~15087~^~320~^55.^0^^~1~^~AS~^^^^^^^^^^~05/01/2011~
-~15087~^~321~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~
-~15087~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~
-~15087~^~324~^841.^3^71.^~1~^~A~^^^1^706.^949.^2^533.^1147.^~2, 3~^~05/01/2011~
-~15087~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~
-~15087~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~
-~15087~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~
-~15087~^~417~^4.^4^0.^~1~^~A~^^^1^^^^^^^~06/01/2005~
-~15087~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~
-~15087~^~432~^4.^4^0.^~1~^~A~^^^1^^^^^^^~03/01/2009~
-~15087~^~435~^4.^0^^~4~^~NC~^^^^^^^^^^~03/01/2009~
-~15087~^~601~^79.^12^1.^~1~^~A~^^^1^70.^84.^11^75.^81.^~2, 3~^~05/01/2011~
-~15088~^~208~^208.^0^^~4~^~NC~^^^^^^^^^^~09/01/1987~
-~15088~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2001~
-~15088~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2001~
-~15088~^~268~^871.^0^^~4~^~NC~^^^^^^^^^^~06/01/2013~
-~15088~^~301~^382.^22^14.^~1~^^^^^^^^^^^~09/01/1987~
-~15088~^~304~^39.^2^^~1~^^^^^^^^^^^~09/01/1987~
-~15088~^~305~^490.^22^15.^~1~^^^^^^^^^^^~09/01/1987~
-~15088~^~306~^397.^1^^~1~^^^^^^^^^^^~09/01/1987~
-~15088~^~307~^307.^0^^~4~^~O~^^^^^^^^^^~06/01/2013~
-~15088~^~318~^108.^0^^~4~^~NC~^^^^^^^^^^~03/01/2009~
-~15088~^~319~^32.^0^^~4~^~RA~^^^^^^^^^^~02/01/2003~
-~15088~^~320~^32.^0^^~4~^~NC~^^^^^^^^^^~03/01/2009~
-~15088~^~321~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~
-~15088~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~
-~15088~^~324~^193.^0^^~4~^~RA~^^^^^^^^^^~03/01/2009~
-~15088~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~
-~15088~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~
-~15088~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~
-~15088~^~417~^10.^0^^~4~^~RA~^^^^^^^^^^~03/01/2009~
-~15088~^~431~^0.^0^^~4~^~RA~^^^^^^^^^^~03/01/2009~
-~15088~^~432~^10.^0^^~4~^~RA~^^^^^^^^^^~03/01/2009~
-~15088~^~435~^10.^0^^~4~^~NC~^^^^^^^^^^~03/01/2009~
-~15088~^~601~^142.^4^7.^~1~^^^^^^^^^^^~09/01/1987~
-~15089~^~208~^185.^0^^~4~^~RA~^^^^^^^^^^~03/01/2009~
-~15089~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2001~
-~15089~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2001~
-~15089~^~268~^774.^0^^~4~^~RA~^^^^^^^^^^~03/01/2009~
-~15089~^~301~^240.^3^36.^~1~^^^^^^^^^^^~09/01/1987~
-~15089~^~304~^34.^1^^~1~^^^^^^^^^^^~09/01/1987~
-~15089~^~305~^366.^3^54.^~1~^^^^^^^^^^^~09/01/1987~
-~15089~^~306~^341.^1^^~1~^^^^^^^^^^^~09/01/1987~
-~15089~^~307~^414.^1^^~1~^^^^^^^^^^^~09/01/1987~
-~15089~^~318~^151.^0^^~4~^~NC~^^^^^^^^^^~03/01/2009~
-~15089~^~319~^32.^0^^~4~^~RA~^^^^^^^^^^~02/01/2003~
-~15089~^~320~^34.^0^^~4~^~NC~^^^^^^^^^^~03/01/2009~
-~15089~^~321~^26.^0^^~4~^~RA~^^^^^^^^^^~03/01/2009~
-~15089~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2009~
-~15089~^~324~^193.^0^^~4~^~RA~^^^^^^^^^^~03/01/2009~
-~15089~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2009~
-~15089~^~337~^1398.^0^^~4~^~RA~^^^^^^^^^^~03/01/2009~
-~15089~^~338~^2.^0^^~4~^~RA~^^^^^^^^^^~03/01/2009~
-~15089~^~417~^24.^2^^~1~^^^^^^^^^^^~09/01/1987~
-~15089~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~
-~15089~^~432~^24.^2^^~1~^^^^^^^^^^^~03/01/2009~
-~15089~^~435~^24.^0^^~4~^~NC~^^^^^^^^^^~03/01/2009~
-~15089~^~601~^61.^2^^~1~^^^^^^^^^^^~09/01/1987~
-~15090~^~208~^105.^0^^~4~^~NC~^^^^^^^^^^~09/01/1987~
-~15090~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~
-~15090~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~
-~15090~^~268~^440.^0^^~4~^~NC~^^^^^^^^^^~07/01/2013~
-~15090~^~301~^40.^1^^~1~^^^^^^^^^^^~09/01/1987~
-~15090~^~304~^23.^1^^~1~^^^^^^^^^^^~09/01/1987~
-~15090~^~305~^185.^0^^~4~^^^^^^^^^^^~09/01/1987~
-~15090~^~306~^287.^1^^~1~^^^^^^^^^^^~09/01/1987~
-~15090~^~307~^42.^2^^~1~^^^^^^^^^^^~09/01/1987~
-~15090~^~318~^90.^0^^~4~^~NC~^^^^^^^^^^~03/01/2009~
-~15090~^~319~^27.^0^^~4~^~T~^^^^^^^^^^~03/01/2009~
-~15090~^~320~^27.^0^^~4~^~NC~^^^^^^^^^^~03/01/2009~
-~15090~^~321~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~
-~15090~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~
-~15090~^~324~^47.^0^^~4~^~BFSN~^~15015~^^^^^^^^^~03/01/2009~
-~15090~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~
-~15090~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~
-~15090~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~
-~15090~^~417~^15.^0^^~4~^^^^^^^^^^^~09/01/1987~
-~15090~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~
-~15090~^~432~^15.^0^^~4~^^^^^^^^^^^~03/01/2009~
-~15090~^~435~^15.^0^^~4~^~NC~^^^^^^^^^^~03/01/2009~
-~15090~^~601~^52.^0^^~4~^^^^^^^^^^^~09/01/1987~
-~15091~^~208~^97.^0^^~4~^~NC~^^^^^^^^^^~09/01/1987~
-~15091~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~
-~15091~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~
-~15091~^~268~^406.^0^^~4~^^^^^^^^^^^~03/01/2009~
-~15091~^~301~^10.^1^^~1~^^^^^^^^^^^~09/01/1987~
-~15091~^~304~^41.^1^^~1~^^^^^^^^^^^~09/01/1987~
-~15091~^~305~^194.^1^^~1~^^^^^^^^^^^~09/01/1987~
-~15091~^~306~^256.^1^^~1~^^^^^^^^^^^~09/01/1987~
-~15091~^~307~^68.^1^^~1~^^^^^^^^^^^~09/01/1987~
-~15091~^~318~^154.^0^^~4~^~NC~^^^^^^^^^^~03/01/2009~
-~15091~^~319~^46.^0^^~4~^~BFSN~^~15036~^^^^^^^^^~03/01/2009~
-~15091~^~320~^46.^0^^~4~^~NC~^^^^^^^^^^~03/01/2009~
-~15091~^~321~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~
-~15091~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~
-~15091~^~324~^226.^0^^~4~^~BFSN~^~15036~^^^^^^^^^~03/01/2009~
-~15091~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~
-~15091~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~
-~15091~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~
-~15091~^~417~^5.^0^^~4~^^^^^^^^^^^~09/01/1987~
-~15091~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~
-~15091~^~432~^5.^0^^~4~^^^^^^^^^^^~03/01/2009~
-~15091~^~435~^5.^0^^~4~^~NC~^^^^^^^^^^~03/01/2009~
-~15091~^~601~^41.^2^^~1~^^^^^^^^^^^~09/01/1987~
-~15092~^~208~^124.^0^^~4~^~NC~^^^^^^^^^^~09/01/1987~
-~15092~^~268~^519.^0^^~4~^^^^^^^^^^^
-~15092~^~301~^13.^0^^~1~^^^^^^^^^^^~09/01/1987~
-~15092~^~304~^53.^0^^~1~^^^^^^^^^^^~09/01/1987~
-~15092~^~305~^248.^0^^~1~^^^^^^^^^^^~09/01/1987~
-~15092~^~306~^328.^0^^~1~^^^^^^^^^^^~09/01/1987~
-~15092~^~307~^87.^0^^~1~^^^^^^^^^^^~09/01/1987~
-~15092~^~318~^213.^0^^~1~^^^^^^^^^^^~09/01/1987~
-~15092~^~319~^64.^0^^~1~^^^^^^^^^^^~06/01/2002~
-~15092~^~320~^64.^0^^~1~^^^^^^^^^^^~06/01/2002~
-~15092~^~417~^6.^0^^~4~^^^^^^^^^^^~09/01/1987~
-~15092~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~
-~15092~^~432~^6.^0^^~4~^^^^^^^^^^^~09/01/1987~
-~15092~^~435~^6.^0^^~4~^~NC~^^^^^^^^^^~01/01/2001~
-~15092~^~601~^53.^0^^~1~^^^^^^^^^^^~09/01/1987~
-~15093~^~208~^104.^0^^~4~^~NC~^^^^^^^^^^~09/01/1987~
-~15093~^~268~^435.^0^^~4~^^^^^^^^^^^
-~15093~^~301~^17.^6^3.^~1~^^^^^^^^^^^~09/01/1987~
-~15093~^~304~^31.^6^0.^~1~^^^^^^^^^^^~09/01/1987~
-~15093~^~305~^250.^6^14.^~1~^^^^^^^^^^^~09/01/1987~
-~15093~^~306~^341.^8^^~1~^^^^^^^^^^^~09/01/1987~
-~15093~^~307~^58.^8^^~1~^^^^^^^^^^^~09/01/1987~
-~15093~^~318~^100.^0^^~4~^^^^^^^^^^^~09/01/1987~
-~15093~^~319~^30.^0^^~4~^^^^^^^^^^^~06/01/2002~
-~15093~^~320~^30.^0^^~4~^^^^^^^^^^^~06/01/2002~
-~15093~^~417~^5.^0^^~4~^^^^^^^^^^^~09/01/1987~
-~15093~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~
-~15093~^~432~^5.^0^^~4~^^^^^^^^^^^~09/01/1987~
-~15093~^~435~^5.^0^^~4~^~NC~^^^^^^^^^^~01/01/2001~
-~15093~^~601~^83.^0^^~4~^^^^^^^^^^^~09/01/1987~
-~15094~^~208~^197.^0^^~4~^~NC~^^^^^^^^^^~09/01/1987~
-~15094~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~
-~15094~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~
-~15094~^~268~^824.^0^^~4~^^^^^^^^^^^~03/01/2009~
-~15094~^~301~^47.^1^^~1~^^^^^^^^^^^~09/01/1987~
-~15094~^~304~^30.^1^^~1~^^^^^^^^^^^~09/01/1987~
-~15094~^~305~^272.^1^^~1~^^^^^^^^^^^~09/01/1987~
-~15094~^~306~^384.^2^^~1~^^^^^^^^^^^~09/01/1987~
-~15094~^~307~^51.^2^^~1~^^^^^^^^^^^~09/01/1987~
-~15094~^~318~^106.^0^^~4~^~NC~^^^^^^^^^^~03/01/2009~
-~15094~^~319~^32.^0^^~4~^~BFSN~^~15039~^^^^^^^^^~03/01/2009~
-~15094~^~320~^32.^0^^~4~^~NC~^^^^^^^^^^~03/01/2009~
-~15094~^~321~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~
-~15094~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~
-~15094~^~324~^190.^0^^~4~^~BFSN~^~15039~^^^^^^^^^~03/01/2009~
-~15094~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~
-~15094~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~
-~15094~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~
-~15094~^~417~^15.^0^^~4~^^^^^^^^^^^~09/01/1987~
-~15094~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~
-~15094~^~432~^15.^0^^~4~^^^^^^^^^^^~03/01/2009~
-~15094~^~435~^15.^0^^~4~^~NC~^^^^^^^^^^~03/01/2009~
-~15094~^~601~^75.^0^^~4~^^^^^^^^^^^~09/01/1987~
-~15095~^~208~^130.^0^^~4~^~NC~^^^^^^^^^^~09/01/1987~
-~15095~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~
-~15095~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~
-~15095~^~268~^544.^0^^~4~^^^^^^^^^^^~03/01/2009~
-~15095~^~301~^34.^4^1.^~1~^^^^^^^^^^^~09/01/1987~
-~15095~^~304~^49.^2^^~1~^^^^^^^^^^^~09/01/1987~
-~15095~^~305~^210.^3^^~1~^^^^^^^^^^^~09/01/1987~
-~15095~^~306~^160.^2^^~1~^^^^^^^^^^^~09/01/1987~
-~15095~^~307~^79.^2^^~1~^^^^^^^^^^^~09/01/1987~
-~15095~^~318~^233.^0^^~4~^~NC~^^^^^^^^^^~03/01/2009~
-~15095~^~319~^70.^0^^~4~^~T~^^^^^^^^^^~03/01/2009~
-~15095~^~320~^70.^0^^~4~^~NC~^^^^^^^^^^~03/01/2009~
-~15095~^~321~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~
-~15095~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~
-~15095~^~324~^24.^0^^~4~^~NR~^^^^^^^^^^~03/01/2009~
-~15095~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~
-~15095~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~
-~15095~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~
-~15095~^~417~^3.^0^^~4~^^^^^^^^^^^~09/01/1987~
-~15095~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~
-~15095~^~432~^3.^0^^~4~^^^^^^^^^^^~03/01/2009~
-~15095~^~435~^3.^0^^~4~^~NC~^^^^^^^^^^~03/01/2009~
-~15095~^~601~^51.^5^^~1~^^^^^^^^^^^~09/01/1987~
-~15096~^~208~^228.^0^^~4~^~NC~^^^^^^^^^^~09/01/1987~
-~15096~^~268~^954.^0^^~4~^^^^^^^^^^^
-~15096~^~301~^50.^0^^~1~^^^^^^^^^^^~09/01/1987~
-~15096~^~304~^43.^0^^~1~^^^^^^^^^^^~09/01/1987~
-~15096~^~305~^194.^0^^~1~^^^^^^^^^^^~09/01/1987~
-~15096~^~306~^155.^0^^~1~^^^^^^^^^^^~09/01/1987~
-~15096~^~307~^122.^0^^~1~^^^^^^^^^^^~09/01/1987~
-~15096~^~318~^180.^0^^~1~^^^^^^^^^^^~09/01/1987~
-~15096~^~319~^54.^0^^~1~^^^^^^^^^^^~06/01/2002~
-~15096~^~320~^54.^0^^~1~^^^^^^^^^^^~06/01/2002~
-~15096~^~417~^15.^0^^~4~^~RA~^^^^^^^^^^~11/01/1997~
-~15096~^~431~^10.^0^^~4~^~NC~^^^^^^^^^^~05/01/2000~
-~15096~^~432~^5.^0^^~4~^^^^^^^^^^^~09/01/1987~
-~15096~^~435~^22.^0^^~4~^~NC~^^^^^^^^^^~01/01/2001~
-~15096~^~601~^59.^0^^~1~^^^^^^^^^^^~09/01/1987~
-~15097~^~208~^108.^0^^~4~^~NC~^^^^^^^^^^~09/01/1987~
-~15097~^~268~^452.^0^^~4~^^^^^^^^^^^
-~15097~^~301~^21.^3^7.^~1~^^^^^^^^^^^~09/01/1987~
-~15097~^~304~^32.^3^1.^~1~^^^^^^^^^^^~09/01/1987~
-~15097~^~305~^313.^3^25.^~1~^^^^^^^^^^^~09/01/1987~
-~15097~^~306~^404.^4^63.^~1~^^^^^^^^^^^~09/01/1987~
-~15097~^~307~^71.^4^11.^~1~^^^^^^^^^^^~09/01/1987~
-~15097~^~318~^100.^0^^~4~^^^^^^^^^^^~09/01/1987~
-~15097~^~319~^30.^0^^~4~^^^^^^^^^^^~06/01/2002~
-~15097~^~320~^30.^0^^~4~^^^^^^^^^^^~06/01/2002~
-~15097~^~417~^15.^0^^~4~^^^^^^^^^^^~09/01/1987~
-~15097~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~
-~15097~^~432~^15.^0^^~4~^^^^^^^^^^^~09/01/1987~
-~15097~^~435~^15.^0^^~4~^~NC~^^^^^^^^^^~01/01/2001~
-~15097~^~601~^50.^0^^~4~^^^^^^^^^^^~09/01/1987~
-~15098~^~208~^126.^0^^~4~^~NC~^^^^^^^^^^~09/01/1987~
-~15098~^~268~^527.^0^^~4~^^^^^^^^^^^
-~15098~^~301~^37.^1^^~1~^^^^^^^^^^^~09/01/1987~
-~15098~^~304~^35.^1^^~1~^^^^^^^^^^^~09/01/1987~
-~15098~^~305~^350.^1^^~1~^^^^^^^^^^^~09/01/1987~
-~15098~^~306~^512.^1^^~1~^^^^^^^^^^^~09/01/1987~
-~15098~^~307~^73.^1^^~1~^^^^^^^^^^^~09/01/1987~
-~15098~^~318~^115.^0^^~4~^^^^^^^^^^^~09/01/1987~
-~15098~^~319~^35.^0^^~4~^^^^^^^^^^^~06/01/2002~
-~15098~^~320~^35.^0^^~4~^^^^^^^^^^^~06/01/2002~
-~15098~^~417~^17.^0^^~4~^^^^^^^^^^^~09/01/1987~
-~15098~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~
-~15098~^~432~^17.^0^^~4~^^^^^^^^^^^~09/01/1987~
-~15098~^~435~^17.^0^^~4~^~NC~^^^^^^^^^^~01/01/2001~
-~15098~^~601~^64.^0^^~4~^^^^^^^^^^^~09/01/1987~
-~15099~^~208~^97.^0^^~4~^~NC~^^^^^^^^^^~09/01/1987~
-~15099~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~
-~15099~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~
-~15099~^~268~^406.^0^^~4~^^^^^^^^^^^~03/01/2009~
-~15099~^~301~^60.^1^^~1~^^^^^^^^^^^~09/01/1987~
-~15099~^~304~^30.^1^^~1~^^^^^^^^^^^~09/01/1987~
-~15099~^~305~^230.^1^^~1~^^^^^^^^^^^~09/01/1987~
-~15099~^~306~^290.^1^^~1~^^^^^^^^^^^~09/01/1987~
-~15099~^~307~^60.^1^^~1~^^^^^^^^^^^~09/01/1987~
-~15099~^~318~^50.^0^^~4~^~NC~^^^^^^^^^^~03/01/2009~
-~15099~^~319~^15.^0^^~4~^~T~^^^^^^^^^^~03/01/2009~
-~15099~^~320~^15.^0^^~4~^~NC~^^^^^^^^^^~03/01/2009~
-~15099~^~321~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~
-~15099~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~
-~15099~^~324~^31.^0^^~4~^~NR~^^^^^^^^^^~03/01/2009~
-~15099~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~
-~15099~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~
-~15099~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~
-~15099~^~417~^4.^0^^~4~^^^^^^^^^^^~09/01/1987~
-~15099~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~
-~15099~^~432~^4.^0^^~4~^^^^^^^^^^^~03/01/2009~
-~15099~^~435~^4.^0^^~4~^~NC~^^^^^^^^^^~03/01/2009~
-~15099~^~601~^70.^1^^~1~^^^^^^^^^^^~09/01/1987~
-~15100~^~208~^124.^0^^~4~^~NC~^^^^^^^^^^~09/01/1987~
-~15100~^~268~^519.^0^^~4~^^^^^^^^^^^
-~15100~^~301~^77.^0^^~1~^^^^^^^^^^^~09/01/1987~
-~15100~^~304~^38.^0^^~1~^^^^^^^^^^^~09/01/1987~
-~15100~^~305~^295.^0^^~1~^^^^^^^^^^^~09/01/1987~
-~15100~^~306~^372.^0^^~1~^^^^^^^^^^^~09/01/1987~
-~15100~^~307~^77.^0^^~1~^^^^^^^^^^^~09/01/1987~
-~15100~^~318~^58.^0^^~4~^^^^^^^^^^^~09/01/1987~
-~15100~^~319~^17.^0^^~4~^^^^^^^^^^^~06/01/2002~
-~15100~^~320~^17.^0^^~4~^^^^^^^^^^^~06/01/2002~
-~15100~^~417~^5.^0^^~4~^^^^^^^^^^^~09/01/1987~
-~15100~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~
-~15100~^~432~^5.^0^^~4~^^^^^^^^^^^~09/01/1987~
-~15100~^~435~^5.^0^^~4~^~NC~^^^^^^^^^^~01/01/2001~
-~15100~^~601~^90.^0^^~1~^^^^^^^^^^^~09/01/1987~
-~15101~^~208~^100.^0^^~4~^~NC~^^^^^^^^^^~09/01/1987~
-~15101~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~
-~15101~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~
-~15101~^~268~^418.^0^^~4~^^^^^^^^^^^~03/01/2009~
-~15101~^~301~^32.^22^^~1~^^^^^^^^^^^~09/01/1987~
-~15101~^~304~^32.^6^0.^~1~^^^^^^^^^^^~09/01/1987~
-~15101~^~305~^198.^28^^~1~^^^^^^^^^^^~09/01/1987~
-~15101~^~306~^417.^16^^~1~^^^^^^^^^^^~09/01/1987~
-~15101~^~307~^64.^19^^~1~^^^^^^^^^^^~09/01/1987~
-~15101~^~318~^106.^0^^~4~^~NC~^^^^^^^^^^~03/01/2009~
-~15101~^~319~^32.^0^^~4~^~BFSN~^~15046~^^^^^^^^^~03/01/2009~
-~15101~^~320~^32.^0^^~4~^~NC~^^^^^^^^^^~03/01/2009~
-~15101~^~321~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~
-~15101~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~
-~15101~^~324~^408.^0^^~4~^~BFSN~^~15046~^^^^^^^^^~03/01/2009~
-~15101~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~
-~15101~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~
-~15101~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~
-~15101~^~417~^5.^0^^~4~^^^^^^^^^^^~09/01/1987~
-~15101~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~
-~15101~^~432~^5.^0^^~4~^^^^^^^^^^^~03/01/2009~
-~15101~^~435~^5.^0^^~4~^~NC~^^^^^^^^^^~03/01/2009~
-~15101~^~601~^37.^0^^~4~^^^^^^^^^^^~09/01/1987~
-~15102~^~208~^128.^0^^~4~^~NC~^^^^^^^^^^~09/01/1987~
-~15102~^~268~^536.^0^^~4~^^^^^^^^^^^
-~15102~^~301~^40.^0^^~1~^^^^^^^^^^^~09/01/1987~
-~15102~^~304~^37.^2^^~1~^^^^^^^^^^^~09/01/1987~
-~15102~^~305~^201.^2^^~1~^^^^^^^^^^^~09/01/1987~
-~15102~^~306~^522.^2^^~1~^^^^^^^^^^^~09/01/1987~
-~15102~^~307~^57.^2^^~1~^^^^^^^^^^^~09/01/1987~
-~15102~^~318~^115.^0^^~4~^^^^^^^^^^^~09/01/1987~
-~15102~^~319~^35.^0^^~4~^^^^^^^^^^^~06/01/2002~
-~15102~^~320~^35.^0^^~4~^^^^^^^^^^^~06/01/2002~
-~15102~^~417~^6.^0^^~4~^^^^^^^^^^^~09/01/1987~
-~15102~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~
-~15102~^~432~^6.^0^^~4~^^^^^^^^^^^~09/01/1987~
-~15102~^~435~^6.^0^^~4~^~NC~^^^^^^^^^^~01/01/2001~
-~15102~^~601~^47.^0^^~4~^^^^^^^^^^^~09/01/1987~
-~15103~^~208~^123.^0^^~4~^~NC~^^^^^^^^^^~09/01/1987~
-~15103~^~268~^515.^0^^~4~^^^^^^^^^^^
-~15103~^~301~^14.^1^^~1~^^^^^^^^^^^~09/01/1987~
-~15103~^~304~^42.^1^^~1~^^^^^^^^^^^~09/01/1987~
-~15103~^~305~^186.^1^^~1~^^^^^^^^^^^~09/01/1987~
-~15103~^~306~^496.^1^^~1~^^^^^^^^^^^~09/01/1987~
-~15103~^~307~^29.^1^^~1~^^^^^^^^^^^~09/01/1987~
-~15103~^~318~^100.^0^^~4~^^^^^^^^^^^~09/01/1987~
-~15103~^~319~^30.^0^^~4~^^^^^^^^^^^~06/01/2002~
-~15103~^~320~^30.^0^^~4~^^^^^^^^^^^~06/01/2002~
-~15103~^~417~^5.^0^^~4~^^^^^^^^^^^~09/01/1987~
-~15103~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~
-~15103~^~432~^5.^0^^~4~^^^^^^^^^^^~09/01/1987~
-~15103~^~435~^5.^0^^~4~^~NC~^^^^^^^^^^~01/01/2001~
-~15103~^~601~^60.^0^^~4~^^^^^^^^^^^~09/01/1987~
-~15104~^~208~^105.^0^^~4~^~NC~^^^^^^^^^^~09/01/1987~
-~15104~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~
-~15104~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~
-~15104~^~268~^439.^0^^~4~^^^^^^^^^^^~03/01/2009~
-~15104~^~301~^13.^0^^~4~^^^^^^^^^^^~09/01/1987~
-~15104~^~304~^35.^0^^~4~^^^^^^^^^^^~09/01/1987~
-~15104~^~305~^211.^0^^~4~^^^^^^^^^^^~09/01/1987~
-~15104~^~306~^284.^1^^~1~^^^^^^^^^^^~09/01/1987~
-~15104~^~307~^54.^0^^~4~^^^^^^^^^^^~09/01/1987~
-~15104~^~318~^700.^0^^~4~^~NC~^^^^^^^^^^~03/01/2009~
-~15104~^~319~^210.^0^^~4~^~T~^^^^^^^^^^~03/01/2009~
-~15104~^~320~^210.^0^^~4~^~NC~^^^^^^^^^^~03/01/2009~
-~15104~^~321~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~
-~15104~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~
-~15104~^~324~^412.^0^^~4~^~BFSN~^~15130~^^^^^^^^^~03/01/2009~
-~15104~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~
-~15104~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~
-~15104~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~
-~15104~^~417~^15.^0^^~4~^^^^^^^^^^^~09/01/1987~
-~15104~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~
-~15104~^~432~^15.^0^^~4~^^^^^^^^^^^~03/01/2009~
-~15104~^~435~^15.^0^^~4~^~NC~^^^^^^^^^^~03/01/2009~
-~15104~^~601~^60.^0^^~4~^^^^^^^^^^^~09/01/1987~
-~15105~^~208~^135.^0^^~4~^~NC~^^^^^^^^^^~09/01/1987~
-~15105~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~
-~15105~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~
-~15105~^~268~^565.^0^^~4~^^^^^^^^^^^~03/01/2009~
-~15105~^~301~^17.^0^^~4~^^^^^^^^^^^~09/01/1987~
-~15105~^~304~^45.^0^^~4~^^^^^^^^^^^~09/01/1987~
-~15105~^~305~^271.^0^^~4~^^^^^^^^^^^~09/01/1987~
-~15105~^~306~^364.^0^^~1~^^^^^^^^^^^~09/01/1987~
-~15105~^~307~^69.^0^^~4~^^^^^^^^^^^~09/01/1987~
-~15105~^~318~^875.^0^^~4~^~NC~^^^^^^^^^^~03/01/2009~
-~15105~^~319~^263.^0^^~4~^~BFYN~^~15104~^^^^^^^^^~02/01/2003~
-~15105~^~320~^263.^0^^~4~^~NC~^^^^^^^^^^~03/01/2009~
-~15105~^~321~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~
-~15105~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~
-~15105~^~324~^515.^0^^~4~^~BFYN~^~15104~^^^^^^^^^~03/01/2009~
-~15105~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~
-~15105~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~
-~15105~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~
-~15105~^~417~^17.^0^^~4~^^^^^^^^^^^~09/01/1987~
-~15105~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~
-~15105~^~432~^17.^0^^~4~^^^^^^^^^^^~03/01/2009~
-~15105~^~435~^17.^0^^~4~^~NC~^^^^^^^^^^~03/01/2009~
-~15105~^~601~^77.^0^^~4~^^^^^^^^^^^~09/01/1987~
-~15106~^~208~^173.^0^^~4~^~NC~^^^^^^^^^^~03/01/2009~
-~15106~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~
-~15106~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~
-~15106~^~268~^723.^0^^~4~^~NC~^^^^^^^^^^~03/01/2009~
-~15106~^~301~^17.^0^^~4~^^^^^^^^^^^~09/01/1987~
-~15106~^~304~^47.^0^^~4~^^^^^^^^^^^~09/01/1987~
-~15106~^~305~^281.^0^^~4~^^^^^^^^^^^~09/01/1987~
-~15106~^~306~^379.^0^^~4~^^^^^^^^^^^~09/01/1987~
-~15106~^~307~^739.^0^^~4~^^^^^^^^^^^~09/01/1987~
-~15106~^~318~^933.^0^^~4~^~NC~^^^^^^^^^^~03/01/2009~
-~15106~^~319~^280.^0^^~4~^~T~^^^^^^^^^^~03/01/2009~
-~15106~^~320~^280.^0^^~4~^~NC~^^^^^^^^^^~03/01/2009~
-~15106~^~321~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~
-~15106~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~
-~15106~^~324~^642.^0^^~4~^~BFSN~^~15105~^^^^^^^^^~03/01/2009~
-~15106~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~
-~15106~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~
-~15106~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~
-~15106~^~417~^20.^0^^~4~^^^^^^^^^^^~09/01/1987~
-~15106~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~
-~15106~^~432~^20.^0^^~4~^^^^^^^^^^^~03/01/2009~
-~15106~^~435~^20.^0^^~4~^~NC~^^^^^^^^^^~03/01/2009~
-~15106~^~601~^80.^0^^~4~^^^^^^^^^^^~09/01/1987~
-~15107~^~208~^92.^0^^~4~^~NC~^^^^^^^^^^~09/01/1987~
-~15107~^~268~^385.^0^^~4~^^^^^^^^^^^
-~15107~^~301~^70.^1^^~1~^^^^^^^^^^^~09/01/1987~
-~15107~^~304~^30.^1^^~1~^^^^^^^^^^^~09/01/1987~
-~15107~^~305~^210.^1^^~1~^^^^^^^^^^^~09/01/1987~
-~15107~^~306~^380.^1^^~1~^^^^^^^^^^^~09/01/1987~
-~15107~^~307~^40.^1^^~1~^^^^^^^^^^^~09/01/1987~
-~15107~^~318~^170.^0^^~4~^^^^^^^^^^^~09/01/1987~
-~15107~^~319~^51.^0^^~4~^^^^^^^^^^^~06/01/2002~
-~15107~^~320~^51.^0^^~4~^^^^^^^^^^^~06/01/2002~
-~15107~^~417~^15.^0^^~4~^^^^^^^^^^^~09/01/1987~
-~15107~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~
-~15107~^~432~^15.^0^^~4~^^^^^^^^^^^~09/01/1987~
-~15107~^~435~^15.^0^^~4~^~NC~^^^^^^^^^^~01/01/2001~
-~15107~^~601~^41.^5^5.^~1~^^^^^^^^^^^~09/01/1987~
-~15108~^~208~^89.^0^^~4~^~NC~^^^^^^^^^^~09/01/1987~
-~15108~^~268~^372.^0^^~4~^^^^^^^^^^^
-~15108~^~301~^80.^1^^~1~^^^^^^^^^^^~09/01/1987~
-~15108~^~304~^30.^1^^~1~^^^^^^^^^^^~09/01/1987~
-~15108~^~305~^180.^1^^~1~^^^^^^^^^^^~09/01/1987~
-~15108~^~306~^350.^1^^~1~^^^^^^^^^^^~09/01/1987~
-~15108~^~307~^80.^1^^~1~^^^^^^^^^^^~09/01/1987~
-~15108~^~318~^50.^0^^~4~^^^^^^^^^^^~09/01/1987~
-~15108~^~319~^15.^0^^~4~^^^^^^^^^^^~06/01/2002~
-~15108~^~320~^15.^0^^~4~^^^^^^^^^^^~06/01/2002~
-~15108~^~417~^15.^0^^~4~^^^^^^^^^^^~09/01/1987~
-~15108~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~
-~15108~^~432~^15.^0^^~4~^^^^^^^^^^^~09/01/1987~
-~15108~^~435~^15.^0^^~4~^~NC~^^^^^^^^^^~01/01/2001~
-~15108~^~601~^67.^1^^~1~^^^^^^^^^^^~09/01/1987~
-~15109~^~208~^99.^0^^~4~^~NC~^^^^^^^^^^~09/01/1987~
-~15109~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~
-~15109~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~
-~15109~^~268~^414.^0^^~4~^^^^^^^^^^^
-~15109~^~301~^9.^3^2.^~1~^^^^^^^^^^^~09/01/1987~
-~15109~^~304~^43.^0^^~4~^^^^^^^^^^^~09/01/1987~
-~15109~^~305~^282.^0^^~4~^^^^^^^^^^^~09/01/1987~
-~15109~^~306~^112.^2^^~1~^^^^^^^^^^^~09/01/1987~
-~15109~^~307~^143.^3^16.^~1~^^^^^^^^^^^~09/01/1987~
-~15109~^~318~^67.^0^^~4~^~NC~^^^^^^^^^^~02/01/2003~
-~15109~^~319~^20.^0^^~4~^~NR~^^^^^^^^^^~02/01/2003~
-~15109~^~320~^20.^0^^~4~^~NC~^^^^^^^^^^~02/01/2003~
-~15109~^~321~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~
-~15109~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~
-~15109~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~
-~15109~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~
-~15109~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~
-~15109~^~417~^2.^0^^~4~^^^^^^^^^^^~09/01/1987~
-~15109~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~
-~15109~^~432~^2.^0^^~4~^^^^^^^^^^^~02/01/2003~
-~15109~^~435~^2.^0^^~4~^~NC~^^^^^^^^^^~04/01/2003~
-~15109~^~601~^30.^3^1.^~1~^^^^^^^^^^^~09/01/1987~
-~15110~^~208~^144.^0^^~4~^~NC~^^^^^^^^^^~07/01/2010~
-~15110~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~
-~15110~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~
-~15110~^~268~^602.^0^^~4~^~NC~^^^^^^^^^^~07/01/2010~
-~15110~^~301~^5.^11^0.^~1~^~A~^^^1^3.^8.^10^3.^6.^~2, 3~^~07/01/2010~
-~15110~^~304~^29.^11^1.^~1~^~A~^^^1^26.^39.^10^26.^32.^~2, 3~^~07/01/2010~
-~15110~^~305~^255.^11^4.^~1~^~A~^^^1^231.^280.^10^245.^263.^~2, 3~^~07/01/2010~
-~15110~^~306~^418.^11^14.^~1~^~A~^^^1^321.^480.^10^386.^449.^~2, 3~^~07/01/2010~
-~15110~^~307~^81.^11^14.^~1~^~A~^^^1^36.^192.^10^48.^113.^~2, 3~^~07/01/2010~
-~15110~^~318~^120.^0^^~4~^~NC~^^^^^^^^^^~07/01/2010~
-~15110~^~319~^36.^0^^~4~^~T~^^^^^^^^^^~03/01/2009~
-~15110~^~320~^36.^0^^~4~^~NC~^^^^^^^^^^~07/01/2010~
-~15110~^~321~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~
-~15110~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~
-~15110~^~324~^558.^11^161.^~1~^~A~^^^1^107.^1961.^10^198.^917.^~2, 3~^~07/01/2010~
-~15110~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~
-~15110~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~
-~15110~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~
-~15110~^~417~^2.^0^^~4~^^^^^^^^^^^~09/01/1987~
-~15110~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~
-~15110~^~432~^2.^0^^~4~^^^^^^^^^^^~07/01/2010~
-~15110~^~435~^2.^0^^~4~^~NC~^^^^^^^^^^~07/01/2010~
-~15110~^~601~^66.^4^2.^~1~^~A~^^^1^59.^71.^3^56.^74.^~2, 3~^~07/01/2010~
-~15111~^~208~^172.^0^^~4~^~NC~^^^^^^^^^^~08/01/2010~
-~15111~^~262~^0.^0^^~4~^~RA~^^^^^^^^^^~08/01/2010~
-~15111~^~263~^0.^0^^~4~^~RA~^^^^^^^^^^~08/01/2010~
-~15111~^~268~^718.^0^^~4~^~RA~^^^^^^^^^^~08/01/2010~
-~15111~^~301~^6.^0^^~4~^~RA~^^^^^^^^^^~08/01/2010~
-~15111~^~304~^35.^0^^~4~^~RA~^^^^^^^^^^~08/01/2010~
-~15111~^~305~^304.^0^^~4~^~RA~^^^^^^^^^^~08/01/2010~
-~15111~^~306~^499.^0^^~4~^~RA~^^^^^^^^^^~08/01/2010~
-~15111~^~307~^97.^0^^~4~^~RA~^^^^^^^^^^~08/01/2010~
-~15111~^~318~^129.^0^^~4~^~RA~^^^^^^^^^^~08/01/2010~
-~15111~^~319~^43.^0^^~4~^~RA~^^^^^^^^^^~08/01/2010~
-~15111~^~320~^43.^0^^~4~^~RA~^^^^^^^^^^~08/01/2010~
-~15111~^~321~^0.^0^^~4~^~RA~^^^^^^^^^^~08/01/2010~
-~15111~^~322~^0.^0^^~4~^~RA~^^^^^^^^^^~08/01/2010~
-~15111~^~324~^666.^0^^~4~^~RA~^^^^^^^^^^~08/01/2010~
-~15111~^~334~^0.^0^^~4~^~RA~^^^^^^^^^^~08/01/2010~
-~15111~^~337~^0.^0^^~4~^~RA~^^^^^^^^^^~08/01/2010~
-~15111~^~338~^0.^0^^~4~^~RA~^^^^^^^^^^~08/01/2010~
-~15111~^~417~^2.^0^^~4~^~RA~^^^^^^^^^^~08/01/2010~
-~15111~^~431~^0.^0^^~4~^~RA~^^^^^^^^^^~08/01/2010~
-~15111~^~432~^2.^0^^~4~^~RA~^^^^^^^^^^~08/01/2010~
-~15111~^~435~^2.^0^^~4~^~NC~^^^^^^^^^^~08/01/2010~
-~15111~^~601~^78.^0^^~4~^~RA~^^^^^^^^^^~08/01/2010~
-~15112~^~208~^96.^0^^~4~^~NC~^^^^^^^^^^~09/01/1987~
-~15112~^~268~^402.^0^^~4~^^^^^^^^^^^
-~15112~^~301~^26.^2^^~1~^^^^^^^^^^^~09/01/1987~
-~15112~^~304~^28.^2^^~1~^^^^^^^^^^^~09/01/1987~
-~15112~^~305~^187.^2^^~1~^^^^^^^^^^^~09/01/1987~
-~15112~^~306~^433.^2^^~1~^^^^^^^^^^^~09/01/1987~
-~15112~^~307~^53.^2^^~1~^^^^^^^^^^^~09/01/1987~
-~15112~^~318~^60.^0^^~4~^^^^^^^^^^^~09/01/1987~
-~15112~^~319~^18.^0^^~4~^^^^^^^^^^^~06/01/2002~
-~15112~^~320~^18.^0^^~4~^^^^^^^^^^^~06/01/2002~
-~15112~^~417~^15.^0^^~4~^^^^^^^^^^^~09/01/1987~
-~15112~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~
-~15112~^~432~^15.^0^^~4~^^^^^^^^^^^~09/01/1987~
-~15112~^~435~^15.^0^^~4~^~NC~^^^^^^^^^^~01/01/2001~
-~15112~^~601~^50.^0^^~4~^^^^^^^^^^^~09/01/1987~
-~15113~^~208~^147.^0^^~4~^~NC~^^^^^^^^^^~09/01/1987~
-~15113~^~268~^615.^0^^~4~^^^^^^^^^^^
-~15113~^~301~^26.^1^^~1~^^^^^^^^^^^~09/01/1987~
-~15113~^~304~^33.^1^^~1~^^^^^^^^^^^~09/01/1987~
-~15113~^~305~^236.^1^^~1~^^^^^^^^^^^~09/01/1987~
-~15113~^~306~^512.^1^^~1~^^^^^^^^^^^~09/01/1987~
-~15113~^~307~^59.^1^^~1~^^^^^^^^^^^~09/01/1987~
-~15113~^~318~^69.^0^^~4~^^^^^^^^^^^~09/01/1987~
-~15113~^~319~^21.^0^^~4~^^^^^^^^^^^~06/01/2002~
-~15113~^~320~^21.^0^^~4~^^^^^^^^^^^~06/01/2002~
-~15113~^~417~^17.^0^^~4~^^^^^^^^^^^~09/01/1987~
-~15113~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~
-~15113~^~432~^17.^0^^~4~^^^^^^^^^^^~09/01/1987~
-~15113~^~435~^17.^0^^~4~^~NC~^^^^^^^^^^~01/01/2001~
-~15113~^~601~^64.^0^^~4~^^^^^^^^^^^~09/01/1987~
-~15114~^~208~^148.^0^^~4~^~NC~^^^^^^^^^^~09/01/1987~
-~15114~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~
-~15114~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~
-~15114~^~268~^619.^0^^~4~^^^^^^^^^^^~03/01/2009~
-~15114~^~301~^43.^15^^~1~^^^^^^^^^^^~09/01/1987~
-~15114~^~304~^22.^19^1.^~1~^^^^^^^^^^^~09/01/1987~
-~15114~^~305~^245.^3^^~1~^^^^^^^^^^^~09/01/1987~
-~15114~^~306~^361.^20^11.^~1~^^^^^^^^^^^~09/01/1987~
-~15114~^~307~^52.^25^3.^~1~^^^^^^^^^^^~09/01/1987~
-~15114~^~318~^57.^0^^~4~^~NC~^^^^^^^^^^~03/01/2009~
-~15114~^~319~^17.^0^^~4~^~T~^^^^^^^^^^~03/01/2009~
-~15114~^~320~^17.^0^^~4~^~NC~^^^^^^^^^^~03/01/2009~
-~15114~^~321~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~
-~15114~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~
-~15114~^~324~^155.^0^^~4~^~NR~^^^^^^^^^^~03/01/2009~
-~15114~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~
-~15114~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~
-~15114~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~
-~15114~^~417~^13.^1^^~1~^^^^^^^^^^^~02/01/1995~
-~15114~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~
-~15114~^~432~^13.^1^^~1~^^^^^^^^^^^~03/01/2009~
-~15114~^~435~^13.^0^^~4~^~NC~^^^^^^^^^^~03/01/2009~
-~15114~^~601~^58.^6^^~1~^^^^^^^^^^^~09/01/1987~
-~15115~^~208~^119.^0^^~4~^~NC~^^^^^^^^^^~09/01/1987~
-~15115~^~268~^498.^0^^~4~^^^^^^^^^^^
-~15115~^~301~^67.^2^^~1~^^^^^^^^^^^~09/01/1987~
-~15115~^~304~^31.^22^0.^~1~^^^^^^^^^^^~09/01/1987~
-~15115~^~305~^271.^5^8.^~1~^^^^^^^^^^^~09/01/1987~
-~15115~^~306~^481.^22^7.^~1~^^^^^^^^^^^~09/01/1987~
-~15115~^~307~^31.^22^2.^~1~^^^^^^^^^^^~09/01/1987~
-~15115~^~318~^62.^22^7.^~1~^^^^^^^^^^^~09/01/1987~
-~15115~^~319~^19.^22^2.^~1~^^^^^^^^^^^~06/01/2002~
-~15115~^~320~^19.^22^2.^~1~^^^^^^^^^^^~06/01/2002~
-~15115~^~417~^12.^3^2.^~1~^^^^^^^^^^^~09/01/1987~
-~15115~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~
-~15115~^~432~^12.^3^2.^~1~^^^^^^^^^^^~09/01/1987~
-~15115~^~435~^12.^0^^~4~^~NC~^^^^^^^^^^~01/01/2001~
-~15115~^~601~^59.^7^2.^~1~^^^^^^^^^^^~09/01/1987~
-~15116~^~208~^150.^0^^~4~^~NC~^^^^^^^^^^~09/01/1987~
-~15116~^~268~^628.^0^^~4~^^^^^^^^^^^
-~15116~^~301~^86.^0^^~4~^^^^^^^^^^^~09/01/1987~
-~15116~^~304~^31.^4^0.^~1~^^^^^^^^^^^~09/01/1987~
-~15116~^~305~^269.^4^9.^~1~^^^^^^^^^^^~09/01/1987~
-~15116~^~306~^448.^4^6.^~1~^^^^^^^^^^^~09/01/1987~
-~15116~^~307~^56.^4^2.^~1~^^^^^^^^^^^~09/01/1987~
-~15116~^~318~^50.^4^0.^~1~^^^^^^^^^^^~09/01/1987~
-~15116~^~319~^15.^4^0.^~1~^^^^^^^^^^^~06/01/2002~
-~15116~^~320~^15.^4^0.^~1~^^^^^^^^^^^~06/01/2002~
-~15116~^~417~^19.^1^^~1~^^^^^^^^^^^~09/01/1987~
-~15116~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~
-~15116~^~432~^19.^1^^~1~^^^^^^^^^^^~09/01/1987~
-~15116~^~435~^19.^0^^~4~^~NC~^^^^^^^^^^~01/01/2001~
-~15116~^~601~^69.^4^1.^~1~^^^^^^^^^^^~09/01/1987~
-~15117~^~208~^144.^0^^~4~^~NC~^^^^^^^^^^~09/01/1987~
-~15117~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~
-~15117~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~
-~15117~^~268~^602.^0^^~4~^^^^^^^^^^^~03/01/2009~
-~15117~^~301~^8.^0^^~4~^^^^^^^^^^^~09/01/1987~
-~15117~^~304~^50.^0^^~4~^^^^^^^^^^^~09/01/1987~
-~15117~^~305~^254.^0^^~4~^^^^^^^^^^^~09/01/1987~
-~15117~^~306~^252.^4^41.^~1~^^^^^^^^^^^~09/01/1987~
-~15117~^~307~^39.^1^^~1~^^^^^^^^^^^~09/01/1987~
-~15117~^~318~^2183.^0^^~4~^~NC~^^^^^^^^^^~03/01/2009~
-~15117~^~319~^655.^0^^~4~^~T~^^^^^^^^^^~03/01/2009~
-~15117~^~320~^655.^0^^~4~^~NC~^^^^^^^^^^~03/01/2009~
-~15117~^~321~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~
-~15117~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~
-~15117~^~324~^227.^0^^~4~^~BFFN~^~15127~^^^^^^^^^~03/01/2009~
-~15117~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~
-~15117~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~
-~15117~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~
-~15117~^~417~^2.^0^^~4~^^^^^^^^^^^~09/01/1987~
-~15117~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~
-~15117~^~432~^2.^0^^~4~^^^^^^^^^^^~03/01/2009~
-~15117~^~435~^2.^0^^~4~^~NC~^^^^^^^^^^~03/01/2009~
-~15117~^~601~^38.^3^2.^~1~^^^^^^^^^^^~09/01/1987~
-~15118~^~208~^184.^0^^~4~^~NC~^^^^^^^^^^~09/01/1987~
-~15118~^~268~^770.^0^^~4~^^^^^^^^^^^
-~15118~^~301~^10.^0^^~4~^^^^^^^^^^^~09/01/1987~
-~15118~^~304~^64.^0^^~4~^^^^^^^^^^^~09/01/1987~
-~15118~^~305~^326.^0^^~4~^^^^^^^^^^^~09/01/1987~
-~15118~^~306~^323.^0^^~1~^^^^^^^^^^^~09/01/1987~
-~15118~^~307~^50.^0^^~1~^^^^^^^^^^^~09/01/1987~
-~15118~^~318~^2520.^0^^~1~^^^^^^^^^^^~09/01/1987~
-~15118~^~319~^757.^0^^~1~^^^^^^^^^^^~06/01/2002~
-~15118~^~320~^757.^0^^~1~^^^^^^^^^^^~06/01/2002~
-~15118~^~417~^2.^0^^~4~^^^^^^^^^^^~09/01/1987~
-~15118~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~
-~15118~^~432~^2.^0^^~4~^^^^^^^^^^^~09/01/1987~
-~15118~^~435~^2.^0^^~4~^~NC~^^^^^^^^^^~01/01/2001~
-~15118~^~601~^49.^0^^~1~^^^^^^^^^^^~09/01/1987~
-~15119~^~208~^198.^0^^~4~^~NC~^^^^^^^^^^~03/01/2009~
-~15119~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2001~
-~15119~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2001~
-~15119~^~268~^830.^0^^~4~^~NC~^^^^^^^^^^~03/01/2009~
-~15119~^~301~^13.^9^2.^~1~^^^^^^^^^^^~09/01/1987~
-~15119~^~304~^31.^8^1.^~1~^^^^^^^^^^^~09/01/1987~
-~15119~^~305~^311.^9^18.^~1~^^^^^^^^^^^~09/01/1987~
-~15119~^~306~^207.^0^^~1~^^^^^^^^^^^~09/01/1987~
-~15119~^~307~^416.^0^^~4~^~O~^^^^^^^^^^~06/01/2013~
-~15119~^~318~^77.^0^^~4~^~NC~^^^^^^^^^^~03/01/2009~
-~15119~^~319~^23.^0^^~4~^~T~^^^^^^^^^^~03/01/2009~
-~15119~^~320~^23.^0^^~4~^~NC~^^^^^^^^^^~03/01/2009~
-~15119~^~321~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~
-~15119~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~
-~15119~^~324~^269.^0^^~4~^~BFNN~^~15117~^^^^^^^^^~03/01/2009~
-~15119~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~
-~15119~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~
-~15119~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~
-~15119~^~417~^5.^3^1.^~1~^^^^^^^^^^^~09/01/1987~
-~15119~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~
-~15119~^~432~^5.^3^1.^~1~^^^^^^^^^^^~03/01/2009~
-~15119~^~435~^5.^0^^~4~^~NC~^^^^^^^^^^~03/01/2009~
-~15119~^~601~^18.^1^^~1~^^^^^^^^^^^~09/01/1987~
-~15121~^~208~^86.^0^^~4~^~NC~^^^^^^^^^^~06/01/2012~
-~15121~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~
-~15121~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~
-~15121~^~268~^361.^0^^~4~^~NC~^^^^^^^^^^~06/01/2012~
-~15121~^~301~^17.^24^0.^~1~^~A~^^^1^10.^22.^11^16.^18.^~2, 3~^~06/01/2012~
-~15121~^~304~^23.^24^0.^~1~^~A~^^^1^19.^27.^12^21.^23.^~2, 3~^~06/01/2012~
-~15121~^~305~^139.^24^0.^~1~^~A~^^^1^116.^151.^18^137.^140.^~2, 3~^~06/01/2012~
-~15121~^~306~^179.^24^1.^~1~^~A~^^^1^156.^197.^15^175.^183.^~2, 3~^~06/01/2012~
-~15121~^~307~^247.^24^10.^~1~^~A~^^^1^152.^350.^10^222.^270.^~2, 3~^~06/01/2012~
-~15121~^~318~^57.^0^^~4~^~NC~^^^^^^^^^^~03/01/2009~
-~15121~^~319~^17.^0^^~4~^~T~^^^^^^^^^^~03/01/2009~
-~15121~^~320~^17.^0^^~4~^~NC~^^^^^^^^^^~03/01/2009~
-~15121~^~321~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~
-~15121~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~
-~15121~^~324~^47.^4^^~1~^~A~^^^1^29.^54.^^^^~2, 3~^~06/01/2012~
-~15121~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~
-~15121~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~
-~15121~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~
-~15121~^~417~^4.^7^0.^~1~^^^^^^^^^^^~09/01/1987~
-~15121~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~
-~15121~^~432~^4.^7^0.^~1~^^^^^^^^^^^~03/01/2009~
-~15121~^~435~^4.^0^^~4~^~NC~^^^^^^^^^^~03/01/2009~
-~15121~^~601~^36.^4^^~1~^~A~^^^1^31.^38.^^^^~2, 3~^~06/01/2012~
-~15123~^~208~^103.^0^^~4~^~NC~^^^^^^^^^^~09/01/1987~
-~15123~^~268~^431.^0^^~4~^^^^^^^^^^^
-~15123~^~301~^29.^3^5.^~1~^^^^^^^^^^^~09/01/1987~
-~15123~^~304~^34.^3^4.^~1~^^^^^^^^^^^~09/01/1987~
-~15123~^~305~^222.^8^6.^~1~^^^^^^^^^^^~09/01/1987~
-~15123~^~306~^407.^1^^~1~^^^^^^^^^^^~09/01/1987~
-~15123~^~307~^37.^4^5.^~1~^^^^^^^^^^^~09/01/1987~
-~15123~^~318~^52.^3^22.^~1~^^^^^^^^^^^~09/01/1987~
-~15123~^~319~^16.^3^6.^~1~^^^^^^^^^^^~06/01/2002~
-~15123~^~320~^16.^3^6.^~1~^^^^^^^^^^^~06/01/2002~
-~15123~^~417~^9.^0^^~4~^^^^^^^^^^^~09/01/1987~
-~15123~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~
-~15123~^~432~^9.^0^^~4~^^^^^^^^^^^~09/01/1987~
-~15123~^~435~^9.^0^^~4~^~NC~^^^^^^^^^^~01/01/2001~
-~15123~^~601~^47.^2^^~1~^^^^^^^^^^^~09/01/1987~
-~15124~^~208~^186.^0^^~4~^~NC~^^^^^^^^^^~03/01/2006~
-~15124~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~
-~15124~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~
-~15124~^~268~^778.^0^^~4~^~NC~^^^^^^^^^^~03/01/2006~
-~15124~^~301~^4.^0^^~1~^^^^^^^^^^^~09/01/1987~
-~15124~^~304~^34.^0^^~1~^^^^^^^^^^^~09/01/1987~
-~15124~^~305~^267.^0^^~1~^^^^^^^^^^^~09/01/1987~
-~15124~^~306~^333.^0^^~1~^^^^^^^^^^^~09/01/1987~
-~15124~^~307~^396.^0^^~1~^^^^^^^^^^^~09/01/1987~
-~15124~^~318~^16.^0^^~4~^~NC~^^^^^^^^^^~03/01/2006~
-~15124~^~319~^5.^0^^~4~^~RA~^^^^^^^^^^~02/01/2003~
-~15124~^~320~^5.^0^^~4~^~NC~^^^^^^^^^^~03/01/2006~
-~15124~^~321~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~
-~15124~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~
-~15124~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~
-~15124~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~
-~15124~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~
-~15124~^~417~^5.^3^0.^~1~^^^^^^^^^^^~09/01/1987~
-~15124~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~
-~15124~^~432~^5.^3^0.^~1~^^^^^^^^^^^~03/01/2006~
-~15124~^~435~^5.^0^^~4~^~NC~^^^^^^^^^^~03/01/2006~
-~15124~^~601~^31.^6^3.^~1~^^^^^^^^^^^~09/01/1987~
-~15126~^~208~^128.^0^^~4~^~NC~^^^^^^^^^^~08/01/1992~
-~15126~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~
-~15126~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~
-~15126~^~268~^536.^0^^~4~^^^^^^^^^^^~03/01/2009~
-~15126~^~301~^14.^2^^~1~^^^^^^^^^^^~08/01/1992~
-~15126~^~304~^33.^5^1.^~1~^^^^^^^^^^^~08/01/1992~
-~15126~^~305~^217.^2^^~1~^^^^^^^^^^^~08/01/1992~
-~15126~^~306~^237.^6^35.^~1~^^^^^^^^^^^~08/01/1992~
-~15126~^~307~^377.^7^40.^~1~^^^^^^^^^^^~08/01/1992~
-~15126~^~318~^20.^0^^~4~^~NC~^^^^^^^^^^~03/01/2009~
-~15126~^~319~^6.^0^^~4~^~T~^^^^^^^^^^~03/01/2009~
-~15126~^~320~^6.^0^^~4~^~NC~^^^^^^^^^^~03/01/2009~
-~15126~^~321~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~
-~15126~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~
-~15126~^~324~^80.^0^^~4~^~NR~^^^^^^^^^^~03/01/2009~
-~15126~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~
-~15126~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~
-~15126~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~
-~15126~^~417~^2.^3^0.^~1~^^^^^^^^^^^~08/01/1992~
-~15126~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~
-~15126~^~432~^2.^3^0.^~1~^^^^^^^^^^^~03/01/2009~
-~15126~^~435~^2.^0^^~4~^~NC~^^^^^^^^^^~03/01/2009~
-~15126~^~601~^42.^0^^~1~^^^^^^^^^^^~08/01/1992~
-~15127~^~208~^109.^0^^~4~^~NC~^^^^^^^^^^~07/01/2010~
-~15127~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~
-~15127~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~
-~15127~^~268~^454.^0^^~4~^~NC~^^^^^^^^^^~07/01/2010~
-~15127~^~301~^4.^11^0.^~1~^~A~^^^1^3.^4.^10^3.^3.^~2, 3~^~07/01/2010~
-~15127~^~304~^35.^11^0.^~1~^~A~^^^1^27.^38.^10^32.^36.^~2, 3~^~07/01/2010~
-~15127~^~305~^278.^11^4.^~1~^~A~^^^1^248.^297.^10^269.^287.^~2, 3~^~07/01/2010~
-~15127~^~306~^441.^11^9.^~1~^~A~^^^1^396.^491.^10^421.^461.^~2, 3~^~07/01/2010~
-~15127~^~307~^45.^11^5.^~1~^~A~^^^1^26.^83.^10^32.^56.^~2, 3~^~07/01/2010~
-~15127~^~318~^60.^0^^~4~^~NC~^^^^^^^^^^~07/01/2010~
-~15127~^~319~^18.^0^^~4~^~T~^^^^^^^^^^~03/01/2009~
-~15127~^~320~^18.^0^^~4~^~NC~^^^^^^^^^^~07/01/2010~
-~15127~^~321~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~
-~15127~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~
-~15127~^~324~^69.^4^4.^~1~^~A~^^^1^59.^78.^3^53.^83.^~2, 3~^~07/01/2010~
-~15127~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~
-~15127~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~
-~15127~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~
-~15127~^~417~^2.^0^^~4~^^^^^^^^^^^~09/01/1987~
-~15127~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~
-~15127~^~432~^2.^0^^~4~^^^^^^^^^^^~07/01/2010~
-~15127~^~435~^2.^0^^~4~^~NC~^^^^^^^^^^~07/01/2010~
-~15127~^~601~^39.^4^0.^~1~^~A~^^^1^38.^40.^3^38.^40.^~2, 3~^~07/01/2010~
-~15128~^~208~^187.^0^^~4~^~NC~^^^^^^^^^^~09/01/1987~
-~15128~^~268~^782.^0^^~4~^^^^^^^^^^^
-~15128~^~301~^17.^0^^~1~^^^^^^^^^^^~09/01/1987~
-~15128~^~304~^19.^0^^~4~^^^^^^^^^^^~09/01/1987~
-~15128~^~305~^178.^0^^~1~^^^^^^^^^^^~09/01/1987~
-~15128~^~306~^178.^0^^~4~^^^^^^^^^^^~09/01/1987~
-~15128~^~307~^402.^0^^~4~^^^^^^^^^^^~09/01/1987~
-~15128~^~318~^97.^0^^~1~^^^^^^^^^^^~09/01/1987~
-~15128~^~319~^22.^0^^~4~^~NC~^^^^^^^^^^~06/01/2002~
-~15128~^~320~^24.^0^^~4~^~NC~^^^^^^^^^^~06/01/2002~
-~15128~^~417~^8.^0^^~4~^~RA~^^^^^^^^^^~11/01/1997~
-~15128~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~
-~15128~^~432~^8.^0^^~4~^~RA~^^^^^^^^^^~11/01/1997~
-~15128~^~435~^8.^0^^~4~^~NC~^^^^^^^^^^~01/01/2001~
-~15128~^~601~^13.^0^^~1~^^^^^^^^^^^~09/01/1987~
-~15129~^~208~^95.^0^^~4~^~NC~^^^^^^^^^^~09/01/1987~
-~15129~^~268~^397.^0^^~4~^^^^^^^^^^^
-~15129~^~301~^18.^1^^~1~^^^^^^^^^^^~09/01/1987~
-~15129~^~304~^51.^1^^~1~^^^^^^^^^^^~09/01/1987~
-~15129~^~305~^129.^1^^~1~^^^^^^^^^^^~09/01/1987~
-~15129~^~306~^238.^2^^~1~^^^^^^^^^^^~09/01/1987~
-~15129~^~307~^150.^1^^~1~^^^^^^^^^^^~09/01/1987~
-~15129~^~318~^35.^2^^~1~^^^^^^^^^^^~09/01/1987~
-~15129~^~319~^11.^2^^~1~^^^^^^^^^^^~06/01/2002~
-~15129~^~320~^11.^2^^~1~^^^^^^^^^^^~06/01/2002~
-~15129~^~417~^8.^0^^~4~^^^^^^^^^^^~09/01/1987~
-~15129~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~
-~15129~^~432~^8.^0^^~4~^^^^^^^^^^^~09/01/1987~
-~15129~^~435~^8.^0^^~4~^~NC~^^^^^^^^^^~01/01/2001~
-~15129~^~601~^48.^0^^~4~^^^^^^^^^^^~09/01/1987~
-~15130~^~208~^134.^0^^~4~^~NC~^^^^^^^^^^~09/01/1987~
-~15130~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~
-~15130~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~
-~15130~^~268~^561.^0^^~4~^^^^^^^^^^^~03/01/2009~
-~15130~^~301~^26.^0^^~4~^^^^^^^^^^^~09/01/1987~
-~15130~^~304~^33.^1^^~1~^^^^^^^^^^^~09/01/1987~
-~15130~^~305~^270.^0^^~4~^^^^^^^^^^^~09/01/1987~
-~15130~^~306~^317.^1^^~1~^^^^^^^^^^^~09/01/1987~
-~15130~^~307~^51.^17^1.^~1~^^^^^^^^^^^~09/01/1987~
-~15130~^~318~^120.^0^^~4~^~NC~^^^^^^^^^^~03/01/2009~
-~15130~^~319~^36.^0^^~4~^~T~^^^^^^^^^^~03/01/2009~
-~15130~^~320~^36.^0^^~4~^~NC~^^^^^^^^^^~03/01/2009~
-~15130~^~321~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~
-~15130~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~
-~15130~^~324~^478.^0^^~4~^~NR~^^^^^^^^^^~03/01/2009~
-~15130~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~
-~15130~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~
-~15130~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~
-~15130~^~417~^15.^0^^~4~^^^^^^^^^^^~09/01/1987~
-~15130~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~
-~15130~^~432~^15.^0^^~4~^^^^^^^^^^^~03/01/2009~
-~15130~^~435~^15.^0^^~4~^~NC~^^^^^^^^^^~03/01/2009~
-~15130~^~601~^60.^24^1.^~1~^^^^^^^^^^^~09/01/1987~
-~15131~^~208~^108.^0^^~4~^~NC~^^^^^^^^^^~09/01/1987~
-~15131~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~
-~15131~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~
-~15131~^~268~^452.^0^^~4~^^^^^^^^^^^~03/01/2009~
-~15131~^~301~^18.^2^^~1~^^^^^^^^^^^~09/01/1987~
-~15131~^~304~^23.^2^^~1~^^^^^^^^^^^~09/01/1987~
-~15131~^~305~^132.^2^^~1~^^^^^^^^^^^~09/01/1987~
-~15131~^~306~^423.^2^^~1~^^^^^^^^^^^~09/01/1987~
-~15131~^~307~^1019.^2^^~1~^^^^^^^^^^^~09/01/1987~
-~15131~^~318~^190.^0^^~4~^~NC~^^^^^^^^^^~03/01/2009~
-~15131~^~319~^57.^0^^~4~^~T~^^^^^^^^^^~03/01/2009~
-~15131~^~320~^57.^0^^~4~^~NC~^^^^^^^^^^~03/01/2009~
-~15131~^~321~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~
-~15131~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~
-~15131~^~324~^512.^0^^~4~^~BFSN~^~15130~^^^^^^^^^~03/01/2009~
-~15131~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~
-~15131~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~
-~15131~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~
-~15131~^~417~^7.^2^^~1~^^^^^^^^^^^~09/01/1987~
-~15131~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~
-~15131~^~432~^7.^2^^~1~^^^^^^^^^^^~03/01/2009~
-~15131~^~435~^7.^0^^~4~^~NC~^^^^^^^^^^~03/01/2009~
-~15131~^~601~^33.^2^^~1~^^^^^^^^^^^~09/01/1987~
-~15132~^~208~^90.^0^^~4~^~NC~^^^^^^^^^^~09/01/1987~
-~15132~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~
-~15132~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~
-~15132~^~268~^377.^0^^~4~^^^^^^^^^^^~03/01/2009~
-~15132~^~301~^48.^12^^~1~^^^^^^^^^^^~09/01/1987~
-~15132~^~304~^21.^2^^~1~^^^^^^^^^^^~09/01/1987~
-~15132~^~305~^222.^13^11.^~1~^^^^^^^^^^^~09/01/1987~
-~15132~^~306~^249.^32^10.^~1~^^^^^^^^^^^~09/01/1987~
-~15132~^~307~^72.^34^^~1~^^^^^^^^^^^~09/01/1987~
-~15132~^~318~^100.^0^^~4~^~NC~^^^^^^^^^^~03/01/2009~
-~15132~^~319~^30.^0^^~4~^~T~^^^^^^^^^^~03/01/2009~
-~15132~^~320~^30.^0^^~4~^~NC~^^^^^^^^^^~03/01/2009~
-~15132~^~321~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~
-~15132~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~
-~15132~^~324~^57.^0^^~4~^~NR~^^^^^^^^^^~03/01/2009~
-~15132~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~
-~15132~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~
-~15132~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~
-~15132~^~417~^13.^2^^~1~^^^^^^^^^^^~09/01/1987~
-~15132~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~
-~15132~^~432~^13.^2^^~1~^^^^^^^^^^^~03/01/2009~
-~15132~^~435~^13.^0^^~4~^~NC~^^^^^^^^^^~03/01/2009~
-~15132~^~601~^67.^11^2.^~1~^^^^^^^^^^^~09/01/1987~
-~15133~^~208~^116.^0^^~4~^~NC~^^^^^^^^^^~03/01/2009~
-~15133~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~
-~15133~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~
-~15133~^~268~^483.^0^^~4~^~NC~^^^^^^^^^^~03/01/2009~
-~15133~^~301~^62.^0^^~1~^^^^^^^^^^^~09/01/1987~
-~15133~^~304~^27.^0^^~1~^^^^^^^^^^^~09/01/1987~
-~15133~^~305~^285.^0^^~1~^^^^^^^^^^^~09/01/1987~
-~15133~^~306~^434.^11^9.^~1~^^^^^^^^^^^~09/01/1987~
-~15133~^~307~^132.^11^9.^~1~^^^^^^^^^^^~09/01/1987~
-~15133~^~318~^128.^0^^~4~^~NC~^^^^^^^^^^~03/01/2009~
-~15133~^~319~^38.^0^^~4~^~BFSN~^~15132~^^^^^^^^^~03/01/2009~
-~15133~^~320~^38.^0^^~4~^~NC~^^^^^^^^^^~03/01/2009~
-~15133~^~321~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~
-~15133~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~
-~15133~^~324~^73.^0^^~4~^~BFSN~^~15132~^^^^^^^^^~03/01/2009~
-~15133~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~
-~15133~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~
-~15133~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~
-~15133~^~417~^15.^0^^~1~^^^^^^^^^^^~09/01/1987~
-~15133~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~
-~15133~^~432~^15.^0^^~1~^^^^^^^^^^^~03/01/2009~
-~15133~^~435~^15.^0^^~4~^~NC~^^^^^^^^^^~03/01/2009~
-~15133~^~601~^84.^11^3.^~1~^^^^^^^^^^^~09/01/1987~
-~15134~^~208~^96.^0^^~4~^~NC~^^^^^^^^^^~09/01/1987~
-~15134~^~268~^402.^0^^~4~^^^^^^^^^^^
-~15134~^~301~^6.^0^^~4~^^^^^^^^^^^~09/01/1987~
-~15134~^~304~^30.^0^^~4~^^^^^^^^^^^~09/01/1987~
-~15134~^~305~^200.^0^^~4~^^^^^^^^^^^~09/01/1987~
-~15134~^~306~^300.^0^^~4~^^^^^^^^^^^~09/01/1987~
-~15134~^~307~^85.^0^^~4~^^^^^^^^^^^~09/01/1987~
-~15134~^~318~^375.^2^^~1~^^^^^^^^^^^~09/01/1987~
-~15134~^~319~^113.^2^^~1~^^^^^^^^^^^~06/01/2002~
-~15134~^~320~^113.^2^^~1~^^^^^^^^^^^~06/01/2002~
-~15134~^~417~^5.^0^^~4~^^^^^^^^^^^~09/01/1987~
-~15134~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~
-~15134~^~432~^5.^0^^~4~^^^^^^^^^^^~09/01/1987~
-~15134~^~435~^5.^0^^~4~^~NC~^^^^^^^^^^~01/01/2001~
-~15134~^~601~^46.^0^^~4~^^^^^^^^^^^~09/01/1987~
-~15135~^~208~^146.^0^^~4~^~NC~^^^^^^^^^^~09/01/1987~
-~15135~^~268~^611.^0^^~4~^^^^^^^^^^^
-~15135~^~301~^23.^0^^~4~^^^^^^^^^^^~09/01/1987~
-~15135~^~304~^30.^0^^~4~^^^^^^^^^^^~09/01/1987~
-~15135~^~305~^157.^1^^~1~^^^^^^^^^^^~09/01/1987~
-~15135~^~306~^420.^0^^~4~^^^^^^^^^^^~09/01/1987~
-~15135~^~307~^39.^1^^~1~^^^^^^^^^^^~09/01/1987~
-~15135~^~318~^95.^1^^~1~^^^^^^^^^^^~09/01/1987~
-~15135~^~319~^29.^1^^~1~^^^^^^^^^^^~06/01/2002~
-~15135~^~320~^29.^1^^~1~^^^^^^^^^^^~06/01/2002~
-~15135~^~417~^4.^3^1.^~1~^^^^^^^^^^^~09/01/1987~
-~15135~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~
-~15135~^~432~^4.^3^1.^~1~^^^^^^^^^^^~09/01/1987~
-~15135~^~435~^4.^0^^~4~^~NC~^^^^^^^^^^~05/01/2003~
-~15135~^~601~^55.^0^^~4~^^^^^^^^^^^~09/01/1987~
-~15136~^~208~^84.^0^^~4~^~NC~^^^^^^^^^^~09/01/1987~
-~15136~^~268~^351.^0^^~4~^^^^^^^^^^^
-~15136~^~301~^46.^36^2.^~1~^^^^^^^^^^^~09/01/1987~
-~15136~^~304~^49.^0^^~4~^^^^^^^^^^^~09/01/1987~
-~15136~^~305~^219.^43^7.^~1~^^^^^^^^^^^~09/01/1987~
-~15136~^~306~^204.^3^5.^~1~^^^^^^^^^^^~09/01/1987~
-~15136~^~307~^836.^3^40.^~1~^^^^^^^^^^^~09/01/1987~
-~15136~^~318~^24.^1^^~1~^^^^^^^^^^^~09/01/1987~
-~15136~^~319~^7.^1^^~1~^^^^^^^^^^^~06/01/2002~
-~15136~^~320~^7.^1^^~1~^^^^^^^^^^^~06/01/2002~
-~15136~^~417~^44.^0^^~4~^^^^^^^^^^^~09/01/1987~
-~15136~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~
-~15136~^~432~^44.^0^^~4~^^^^^^^^^^^~09/01/1987~
-~15136~^~435~^44.^0^^~4~^~NC~^^^^^^^^^^~01/01/2001~
-~15136~^~601~^42.^3^0.^~1~^^^^^^^^^^^~09/01/1987~
-~15137~^~208~^97.^0^^~4~^~NC~^^^^^^^^^^~09/01/1987~
-~15137~^~268~^406.^0^^~4~^^^^^^^^^^^
-~15137~^~301~^59.^0^^~1~^^^^^^^^^^^~09/01/1987~
-~15137~^~304~^63.^0^^~4~^^^^^^^^^^^~09/01/1987~
-~15137~^~305~^280.^0^^~1~^^^^^^^^^^^~09/01/1987~
-~15137~^~306~^262.^0^^~1~^^^^^^^^^^^~09/01/1987~
-~15137~^~307~^1072.^0^^~1~^^^^^^^^^^^~09/01/1987~
-~15137~^~318~^29.^0^^~1~^^^^^^^^^^^~09/01/1987~
-~15137~^~319~^9.^0^^~1~^^^^^^^^^^^~06/01/2002~
-~15137~^~320~^9.^0^^~1~^^^^^^^^^^^~06/01/2002~
-~15137~^~417~^51.^0^^~4~^^^^^^^^^^^~09/01/1987~
-~15137~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~
-~15137~^~432~^51.^0^^~4~^^^^^^^^^^^~09/01/1987~
-~15137~^~435~^51.^0^^~4~^~NC~^^^^^^^^^^~01/01/2001~
-~15137~^~601~^53.^0^^~1~^^^^^^^^^^^~09/01/1987~
-~15138~^~208~^95.^0^^~4~^~NC~^^^^^^^^^^~07/01/2015~
-~15138~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~
-~15138~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~
-~15138~^~268~^396.^0^^~4~^~NC~^^^^^^^^^^~07/01/2015~
-~15138~^~301~^13.^3^4.^~1~^^^^^^^^^^^~09/01/1987~
-~15138~^~304~^43.^0^^~4~^^^^^^^^^^^~09/01/1987~
-~15138~^~305~^282.^0^^~4~^^^^^^^^^^^~09/01/1987~
-~15138~^~306~^90.^3^2.^~1~^^^^^^^^^^^~09/01/1987~
-~15138~^~307~^529.^0^^~4~^~NR~^^^^^^^^^^~06/01/2013~
-~15138~^~318~^0.^0^^~1~^~AS~^^^^^^^^^^~12/01/2006~
-~15138~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~12/01/2006~
-~15138~^~320~^0.^0^^~1~^~AS~^^^^^^^^^^~12/01/2006~
-~15138~^~321~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~
-~15138~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~
-~15138~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2009~
-~15138~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~
-~15138~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~
-~15138~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~
-~15138~^~417~^0.^2^^~1~^~A~^^^1^^^^^^^~12/01/2006~
-~15138~^~431~^0.^2^^~1~^~A~^^^1^^^^^^^~04/01/2006~
-~15138~^~432~^0.^0^^~1~^~AS~^^^^^^^^^^~12/01/2006~
-~15138~^~435~^0.^0^^~4~^~NC~^^^^^^^^^^~03/01/2009~
-~15138~^~601~^20.^3^1.^~1~^^^^^^^^^^^~09/01/1987~
-~15139~^~208~^87.^0^^~4~^~NC~^^^^^^^^^^~09/01/1987~
-~15139~^~268~^364.^0^^~4~^^^^^^^^^^^
-~15139~^~301~^89.^30^7.^~1~^^^^^^^^^^^~09/01/1987~
-~15139~^~304~^34.^17^1.^~1~^^^^^^^^^^^~09/01/1987~
-~15139~^~305~^229.^37^10.^~1~^^^^^^^^^^^~09/01/1987~
-~15139~^~306~^329.^15^17.^~1~^^^^^^^^^^^~09/01/1987~
-~15139~^~307~^293.^15^19.^~1~^^^^^^^^^^^~09/01/1987~
-~15139~^~318~^5.^0^^~4~^^^^^^^^^^^~09/01/1987~
-~15139~^~319~^2.^0^^~4~^^^^^^^^^^^~06/01/2002~
-~15139~^~320~^2.^0^^~4~^^^^^^^^^^^~06/01/2002~
-~15139~^~417~^44.^0^^~4~^^^^^^^^^^^~09/01/1987~
-~15139~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~
-~15139~^~432~^44.^0^^~4~^^^^^^^^^^^~09/01/1987~
-~15139~^~435~^44.^0^^~4~^~NC~^^^^^^^^^^~01/01/2001~
-~15139~^~601~^78.^6^8.^~1~^^^^^^^^^^^~09/01/1987~
-~15140~^~208~^83.^0^^~4~^~NC~^^^^^^^^^^~07/01/2010~
-~15140~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~
-~15140~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~
-~15140~^~268~^347.^0^^~4~^~NC~^^^^^^^^^^~07/01/2010~
-~15140~^~301~^91.^3^10.^~1~^~A~^^^1^70.^104.^2^44.^137.^~2, 3~^~07/01/2010~
-~15140~^~304~^36.^3^4.^~1~^~A~^^^1^27.^41.^2^15.^56.^~2, 3~^~07/01/2010~
-~15140~^~305~^234.^3^45.^~1~^~A~^^^1^145.^295.^2^38.^429.^~2, 3~^~07/01/2010~
-~15140~^~306~^259.^3^36.^~1~^~A~^^^1^185.^296.^2^100.^417.^~2, 3~^~07/01/2010~
-~15140~^~307~^395.^3^55.^~1~^~A~^^^1^315.^502.^2^154.^634.^~2, 3~^~07/01/2010~
-~15140~^~318~^2.^0^^~1~^~AS~^^^^^^^^^^~07/01/2010~
-~15140~^~319~^1.^1^^~1~^~A~^^^^^^^^^^~07/01/2010~
-~15140~^~320~^1.^0^^~1~^~AS~^^^^^^^^^^~07/01/2010~
-~15140~^~321~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~
-~15140~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~
-~15140~^~324~^0.^3^0.^~1~^~A~^^^1^0.^0.^2^0.^0.^~1, 2, 3~^~07/01/2010~
-~15140~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~
-~15140~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~
-~15140~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~
-~15140~^~417~^51.^0^^~4~^^^^^^^^^^^~09/01/1987~
-~15140~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~
-~15140~^~432~^51.^0^^~4~^^^^^^^^^^^~07/01/2010~
-~15140~^~435~^51.^0^^~4~^~NC~^^^^^^^^^^~07/01/2010~
-~15140~^~601~^97.^3^18.^~1~^~A~^^^1^61.^120.^2^18.^176.^~2, 3~^~07/01/2010~
-~15141~^~208~^83.^0^^~4~^~RA~^^^^^^^^^^~07/01/2010~
-~15141~^~262~^0.^0^^~4~^~RA~^^^^^^^^^^~07/01/2010~
-~15141~^~263~^0.^0^^~4~^~RA~^^^^^^^^^^~07/01/2010~
-~15141~^~268~^347.^0^^~4~^~RA~^^^^^^^^^^~07/01/2010~
-~15141~^~301~^91.^0^^~4~^~RA~^^^^^^^^^^~07/01/2010~
-~15141~^~304~^36.^0^^~4~^~RA~^^^^^^^^^^~07/01/2010~
-~15141~^~305~^234.^0^^~4~^~RA~^^^^^^^^^^~07/01/2010~
-~15141~^~306~^259.^0^^~4~^~RA~^^^^^^^^^^~07/01/2010~
-~15141~^~307~^563.^0^^~4~^~NR~^^^^^^^^^^~06/01/2013~
-~15141~^~318~^2.^0^^~4~^~RA~^^^^^^^^^^~07/01/2010~
-~15141~^~319~^1.^0^^~4~^~RA~^^^^^^^^^^~07/01/2010~
-~15141~^~320~^1.^0^^~4~^~RA~^^^^^^^^^^~07/01/2010~
-~15141~^~321~^0.^0^^~4~^~RA~^^^^^^^^^^~07/01/2010~
-~15141~^~322~^0.^0^^~4~^~RA~^^^^^^^^^^~07/01/2010~
-~15141~^~324~^0.^0^^~4~^~RA~^^^^^^^^^^~07/01/2010~
-~15141~^~334~^0.^0^^~4~^~RA~^^^^^^^^^^~07/01/2010~
-~15141~^~337~^0.^0^^~4~^~RA~^^^^^^^^^^~07/01/2010~
-~15141~^~338~^0.^0^^~4~^~RA~^^^^^^^^^^~07/01/2010~
-~15141~^~417~^51.^0^^~4~^~RA~^^^^^^^^^^~07/01/2010~
-~15141~^~431~^0.^0^^~4~^~RA~^^^^^^^^^^~07/01/2010~
-~15141~^~432~^51.^0^^~4~^~RA~^^^^^^^^^^~07/01/2010~
-~15141~^~435~^51.^0^^~4~^~NC~^^^^^^^^^^~07/01/2010~
-~15141~^~601~^97.^0^^~4~^~RA~^^^^^^^^^^~07/01/2010~
-~15142~^~208~^155.^0^^~4~^~NC~^^^^^^^^^^~09/01/1987~
-~15142~^~268~^649.^0^^~4~^^^^^^^^^^^
-~15142~^~301~^105.^0^^~1~^^^^^^^^^^^~09/01/1987~
-~15142~^~304~^33.^0^^~1~^^^^^^^^^^^~09/01/1987~
-~15142~^~305~^213.^0^^~1~^^^^^^^^^^^~09/01/1987~
-~15142~^~306~^324.^0^^~1~^^^^^^^^^^^~09/01/1987~
-~15142~^~307~^330.^0^^~1~^^^^^^^^^^^~09/01/1987~
-~15142~^~318~^252.^0^^~4~^^^^^^^^^^^~09/01/1987~
-~15142~^~319~^53.^0^^~4~^~NC~^^^^^^^^^^~06/01/2002~
-~15142~^~320~^57.^0^^~4~^~NC~^^^^^^^^^^~06/01/2002~
-~15142~^~417~^53.^0^^~4~^~RA~^^^^^^^^^^~11/01/1997~
-~15142~^~431~^12.^0^^~4~^~NC~^^^^^^^^^^~05/01/2000~
-~15142~^~432~^42.^0^^~4~^^^^^^^^^^^~09/01/1987~
-~15142~^~435~^61.^0^^~4~^~NC~^^^^^^^^^^~01/01/2001~
-~15142~^~601~^150.^0^^~4~^^^^^^^^^^^~09/01/1987~
-~15143~^~208~^86.^0^^~4~^~NC~^^^^^^^^^^~09/01/1987~
-~15143~^~268~^360.^0^^~4~^^^^^^^^^^^
-~15143~^~301~^46.^8^9.^~1~^^^^^^^^^^^~09/01/1987~
-~15143~^~304~^45.^8^5.^~1~^^^^^^^^^^^~09/01/1987~
-~15143~^~305~^182.^12^9.^~1~^^^^^^^^^^^~09/01/1987~
-~15143~^~306~^354.^8^9.^~1~^^^^^^^^^^^~09/01/1987~
-~15143~^~307~^295.^8^39.^~1~^^^^^^^^^^^~09/01/1987~
-~15143~^~318~^90.^0^^~4~^^^^^^^^^^^~09/01/1987~
-~15143~^~319~^27.^0^^~4~^^^^^^^^^^^~06/01/2002~
-~15143~^~320~^27.^0^^~4~^^^^^^^^^^^~06/01/2002~
-~15143~^~417~^44.^0^^~4~^^^^^^^^^^^~09/01/1987~
-~15143~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~
-~15143~^~432~^44.^0^^~4~^^^^^^^^^^^~09/01/1987~
-~15143~^~435~^44.^0^^~4~^~NC~^^^^^^^^^^~01/01/2001~
-~15143~^~601~^59.^5^3.^~1~^^^^^^^^^^^~09/01/1987~
-~15144~^~208~^90.^0^^~4~^~NC~^^^^^^^^^^~09/01/1987~
-~15144~^~268~^377.^0^^~4~^^^^^^^^^^^
-~15144~^~301~^26.^4^6.^~1~^^^^^^^^^^^~09/01/1987~
-~15144~^~304~^49.^0^^~4~^^^^^^^^^^^~09/01/1987~
-~15144~^~305~^133.^4^34.^~1~^^^^^^^^^^^~09/01/1987~
-~15144~^~306~^173.^4^23.^~1~^^^^^^^^^^^~09/01/1987~
-~15144~^~307~^539.^4^67.^~1~^^^^^^^^^^^~09/01/1987~
-~15144~^~318~^150.^0^^~4~^^^^^^^^^^^~09/01/1987~
-~15144~^~319~^45.^0^^~4~^^^^^^^^^^^~06/01/2002~
-~15144~^~320~^45.^0^^~4~^^^^^^^^^^^~06/01/2002~
-~15144~^~417~^44.^0^^~4~^^^^^^^^^^^~09/01/1987~
-~15144~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~
-~15144~^~432~^44.^0^^~4~^^^^^^^^^^^~09/01/1987~
-~15144~^~435~^44.^0^^~4~^~NC~^^^^^^^^^^~01/01/2001~
-~15144~^~601~^55.^1^^~1~^^^^^^^^^^^~09/01/1987~
-~15145~^~208~^77.^0^^~4~^~NC~^^^^^^^^^^~09/01/1987~
-~15145~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~
-~15145~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~
-~15145~^~268~^322.^0^^~4~^^^^^^^^^^^~03/01/2009~
-~15145~^~301~^27.^17^6.^~1~^^^^^^^^^^^~09/01/1987~
-~15145~^~304~^27.^16^1.^~1~^^^^^^^^^^^~09/01/1987~
-~15145~^~305~^256.^20^13.^~1~^^^^^^^^^^^~09/01/1987~
-~15145~^~306~^302.^5^17.^~1~^^^^^^^^^^^~09/01/1987~
-~15145~^~307~^58.^11^3.^~1~^^^^^^^^^^^~09/01/1987~
-~15145~^~318~^53.^0^^~4~^~NC~^^^^^^^^^^~03/01/2009~
-~15145~^~319~^16.^0^^~4~^~T~^^^^^^^^^^~03/01/2009~
-~15145~^~320~^16.^0^^~4~^~NC~^^^^^^^^^^~03/01/2009~
-~15145~^~321~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~
-~15145~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~
-~15145~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2009~
-~15145~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~
-~15145~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~
-~15145~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~
-~15145~^~417~^37.^5^14.^~1~^^^^^^^^^^^~09/01/1987~
-~15145~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~
-~15145~^~432~^37.^5^14.^~1~^^^^^^^^^^^~03/01/2009~
-~15145~^~435~^37.^0^^~4~^~NC~^^^^^^^^^^~03/01/2009~
-~15145~^~601~^114.^5^7.^~1~^^^^^^^^^^^~09/01/1987~
-~15146~^~208~^82.^0^^~4~^~NC~^^^^^^^^^^~04/01/1997~
-~15146~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~
-~15146~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~
-~15146~^~268~^343.^0^^~4~^^^^^^^^^^^~03/01/2009~
-~15146~^~301~^60.^4^11.^~1~^^^^^^^^^^^~09/01/1987~
-~15146~^~304~^33.^4^1.^~1~^^^^^^^^^^^~09/01/1987~
-~15146~^~305~^270.^4^28.^~1~^^^^^^^^^^^~09/01/1987~
-~15146~^~306~^296.^4^41.^~1~^^^^^^^^^^^~09/01/1987~
-~15146~^~307~^94.^4^4.^~1~^^^^^^^^^^^~09/01/1987~
-~15146~^~318~^50.^0^^~4~^~NC~^^^^^^^^^^~03/01/2009~
-~15146~^~319~^15.^0^^~4~^~T~^^^^^^^^^^~03/01/2009~
-~15146~^~320~^15.^0^^~4~^~NC~^^^^^^^^^^~03/01/2009~
-~15146~^~321~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~
-~15146~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~
-~15146~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2009~
-~15146~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~
-~15146~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~
-~15146~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~
-~15146~^~417~^44.^4^18.^~1~^^^^^^^^^^^~09/01/1987~
-~15146~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~
-~15146~^~432~^44.^4^18.^~1~^^^^^^^^^^^~03/01/2009~
-~15146~^~435~^44.^0^^~4~^~NC~^^^^^^^^^^~03/01/2009~
-~15146~^~601~^133.^4^4.^~1~^^^^^^^^^^^~09/01/1987~
-~15147~^~208~^77.^0^^~4~^~NC~^^^^^^^^^^~08/01/2010~
-~15147~^~262~^0.^0^^~4~^~RA~^^^^^^^^^^~08/01/2010~
-~15147~^~263~^0.^0^^~4~^~RA~^^^^^^^^^^~08/01/2010~
-~15147~^~268~^324.^0^^~4~^~RA~^^^^^^^^^^~08/01/2010~
-~15147~^~301~^84.^0^^~4~^~RA~^^^^^^^^^^~08/01/2010~
-~15147~^~304~^38.^0^^~4~^~RA~^^^^^^^^^^~08/01/2010~
-~15147~^~305~^161.^0^^~4~^~RA~^^^^^^^^^^~08/01/2010~
-~15147~^~306~^200.^0^^~4~^~RA~^^^^^^^^^^~08/01/2010~
-~15147~^~307~^423.^0^^~4~^~RA~^^^^^^^^^^~08/01/2010~
-~15147~^~318~^4.^0^^~4~^~RA~^^^^^^^^^^~08/01/2010~
-~15147~^~319~^1.^0^^~4~^~RA~^^^^^^^^^^~08/01/2010~
-~15147~^~320~^1.^0^^~4~^~RA~^^^^^^^^^^~08/01/2010~
-~15147~^~321~^0.^0^^~4~^~RA~^^^^^^^^^^~08/01/2010~
-~15147~^~322~^0.^0^^~4~^~RA~^^^^^^^^^^~08/01/2010~
-~15147~^~324~^1.^0^^~4~^~RA~^^^^^^^^^^~08/01/2010~
-~15147~^~334~^0.^0^^~4~^~RA~^^^^^^^^^^~08/01/2010~
-~15147~^~337~^0.^0^^~4~^~RA~^^^^^^^^^^~08/01/2010~
-~15147~^~338~^0.^0^^~4~^~RA~^^^^^^^^^^~08/01/2010~
-~15147~^~417~^10.^0^^~4~^~RA~^^^^^^^^^^~08/01/2010~
-~15147~^~431~^0.^0^^~4~^~RA~^^^^^^^^^^~08/01/2010~
-~15147~^~432~^10.^0^^~4~^~RA~^^^^^^^^^^~08/01/2010~
-~15147~^~435~^10.^0^^~4~^~NC~^^^^^^^^^^~08/01/2010~
-~15147~^~601~^127.^0^^~4~^~RA~^^^^^^^^^^~08/01/2010~
-~15148~^~208~^89.^0^^~4~^~NC~^^^^^^^^^^~07/01/2010~
-~15148~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~
-~15148~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~
-~15148~^~268~^372.^0^^~4~^~NC~^^^^^^^^^^~07/01/2010~
-~15148~^~301~^96.^3^7.^~1~^~A~^^^1^84.^109.^2^64.^127.^~2, 3~^~07/01/2010~
-~15148~^~304~^43.^3^3.^~1~^~A~^^^1^38.^48.^2^30.^56.^~2, 3~^~07/01/2010~
-~15148~^~305~^185.^3^10.^~1~^~A~^^^1^173.^206.^2^138.^230.^~2, 3~^~07/01/2010~
-~15148~^~306~^230.^3^4.^~1~^~A~^^^1^222.^235.^2^212.^247.^~2, 3~^~07/01/2010~
-~15148~^~307~^486.^3^31.^~1~^~A~^^^1^425.^526.^2^352.^620.^~2, 3~^~07/01/2010~
-~15148~^~318~^4.^0^^~1~^~AS~^^^^^^^^^^~07/01/2010~
-~15148~^~319~^1.^1^^~1~^~A~^^^^^^^^^^~07/01/2010~
-~15148~^~320~^1.^0^^~1~^~AS~^^^^^^^^^^~07/01/2010~
-~15148~^~321~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~
-~15148~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~
-~15148~^~324~^1.^2^^~1~^~A~^^^1^0.^1.^1^^^~1~^~07/01/2010~
-~15148~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~
-~15148~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~
-~15148~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~
-~15148~^~417~^11.^2^^~1~^^^^^^^^^^^~09/01/1987~
-~15148~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~
-~15148~^~432~^11.^2^^~1~^^^^^^^^^^^~07/01/2010~
-~15148~^~435~^11.^0^^~4~^~NC~^^^^^^^^^^~07/01/2010~
-~15148~^~601~^146.^3^8.^~1~^~A~^^^1^135.^162.^2^110.^181.^~2, 3~^~07/01/2010~
-~15149~^~208~^71.^0^^~4~^~NC~^^^^^^^^^^~07/01/2010~
-~15149~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2001~
-~15149~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2001~
-~15149~^~268~^297.^0^^~4~^~NC~^^^^^^^^^^~07/01/2010~
-~15149~^~301~^54.^4^9.^~1~^~A~^^^1^38.^73.^3^25.^83.^~2, 3~^~07/01/2010~
-~15149~^~304~^22.^4^1.^~1~^~A~^^^1^20.^26.^3^18.^26.^~2, 3~^~07/01/2010~
-~15149~^~305~^244.^4^17.^~1~^~A~^^^1^215.^287.^3^188.^298.^~2, 3~^~07/01/2010~
-~15149~^~306~^113.^4^15.^~1~^~A~^^^1^95.^159.^3^63.^162.^~2, 3~^~07/01/2010~
-~15149~^~307~^566.^4^29.^~1~^~A~^^^1^508.^642.^3^472.^658.^~2, 3~^~07/01/2010~
-~15149~^~318~^180.^0^^~4~^~NC~^^^^^^^^^^~07/01/2010~
-~15149~^~319~^54.^0^^~4~^~T~^^^^^^^^^^~03/01/2009~
-~15149~^~320~^54.^0^^~4~^~NC~^^^^^^^^^^~07/01/2010~
-~15149~^~321~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~
-~15149~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~
-~15149~^~324~^2.^5^1.^~1~^~A~^^^1^0.^6.^4^-1.^5.^~1, 2, 3~^~07/01/2010~
-~15149~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~
-~15149~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~
-~15149~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~
-~15149~^~417~^19.^4^1.^~1~^~A~^^^1^16.^23.^3^14.^24.^~2, 3~^~07/01/2010~
-~15149~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~
-~15149~^~432~^19.^4^1.^~1~^~AS~^^^1^16.^23.^3^14.^24.^~2, 3~^~07/01/2010~
-~15149~^~435~^19.^0^^~4~^~NC~^^^^^^^^^^~07/01/2010~
-~15149~^~601~^126.^4^4.^~1~^~A~^^^1^114.^137.^3^110.^141.^~2, 3~^~07/01/2010~
-~15150~^~208~^242.^0^^~4~^~NC~^^^^^^^^^^~08/01/2010~
-~15150~^~262~^0.^0^^~4~^~RA~^^^^^^^^^^~08/01/2010~
-~15150~^~263~^0.^0^^~4~^~RA~^^^^^^^^^^~08/01/2010~
-~15150~^~268~^1013.^0^^~4~^~NC~^^^^^^^^^^~08/01/2010~
-~15150~^~301~^67.^0^^~1~^^^^^^^^^^^~09/01/1987~
-~15150~^~304~^40.^0^^~1~^^^^^^^^^^^~09/01/1987~
-~15150~^~305~^218.^0^^~1~^^^^^^^^^^^~09/01/1987~
-~15150~^~306~^225.^11^13.^~1~^^^^^^^^^^^~09/01/1987~
-~15150~^~307~^344.^11^33.^~1~^^^^^^^^^^^~09/01/1987~
-~15150~^~318~^189.^0^^~4~^^^^^^^^^^^~09/01/1987~
-~15150~^~320~^56.^0^^~4~^~NR~^^^^^^^^^^~05/01/2011~
-~15150~^~324~^5.^0^^~4~^~RA~^^^^^^^^^^~08/01/2010~
-~15150~^~417~^33.^0^^~4~^~RA~^^^^^^^^^^~08/01/2010~
-~15150~^~431~^9.^0^^~4~^~RA~^^^^^^^^^^~08/01/2010~
-~15150~^~432~^23.^0^^~4~^~RA~^^^^^^^^^^~08/01/2010~
-~15150~^~435~^39.^0^^~4~^~NC~^^^^^^^^^^~08/01/2010~
-~15150~^~601~^138.^0^^~4~^~RA~^^^^^^^^^^~08/01/2010~
-~15151~^~208~^119.^0^^~4~^~NC~^^^^^^^^^^~07/01/2010~
-~15151~^~262~^0.^0^^~4~^~RA~^^^^^^^^^^~07/01/2010~
-~15151~^~263~^0.^0^^~4~^~RA~^^^^^^^^^^~07/01/2010~
-~15151~^~268~^497.^0^^~4~^~NC~^^^^^^^^^^~07/01/2010~
-~15151~^~301~^91.^0^^~4~^~RA~^^^^^^^^^^~07/01/2010~
-~15151~^~304~^37.^0^^~4~^~RA~^^^^^^^^^^~07/01/2010~
-~15151~^~305~^306.^0^^~4~^~RA~^^^^^^^^^^~07/01/2010~
-~15151~^~306~^170.^0^^~4~^~RA~^^^^^^^^^^~07/01/2010~
-~15151~^~307~^947.^0^^~4~^~RA~^^^^^^^^^^~07/01/2010~
-~15151~^~318~^301.^0^^~4~^~NC~^^^^^^^^^^~06/01/2011~
-~15151~^~319~^90.^0^^~4~^~RA~^^^^^^^^^^~07/01/2010~
-~15151~^~320~^90.^0^^~4~^~RA~^^^^^^^^^^~07/01/2010~
-~15151~^~321~^0.^0^^~4~^~RA~^^^^^^^^^^~07/01/2010~
-~15151~^~322~^0.^0^^~4~^~RA~^^^^^^^^^^~07/01/2010~
-~15151~^~324~^4.^0^^~4~^~RA~^^^^^^^^^^~07/01/2010~
-~15151~^~334~^0.^0^^~4~^~RA~^^^^^^^^^^~07/01/2010~
-~15151~^~337~^0.^0^^~4~^~RA~^^^^^^^^^^~07/01/2010~
-~15151~^~338~^0.^0^^~4~^~RA~^^^^^^^^^^~07/01/2010~
-~15151~^~417~^24.^0^^~4~^~RA~^^^^^^^^^^~07/01/2010~
-~15151~^~431~^0.^0^^~4~^~RA~^^^^^^^^^^~07/01/2010~
-~15151~^~432~^24.^0^^~4~^~RA~^^^^^^^^^^~07/01/2010~
-~15151~^~435~^24.^0^^~4~^~NC~^^^^^^^^^^~07/01/2010~
-~15151~^~601~^211.^0^^~4~^~RA~^^^^^^^^^^~07/01/2010~
-~15152~^~208~^100.^0^^~4~^~NC~^^^^^^^^^^~03/01/2009~
-~15152~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2001~
-~15152~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2001~
-~15152~^~268~^416.^0^^~4~^~NC~^^^^^^^^^^~03/01/2009~
-~15152~^~301~^145.^1^^~1~^~A~^^^^^^^^^^~03/01/2005~
-~15152~^~304~^33.^1^^~1~^~A~^^^^^^^^^^~03/01/2005~
-~15152~^~305~^195.^1^^~1~^~A~^^^^^^^^^^~03/01/2005~
-~15152~^~306~^80.^1^^~1~^~A~^^^^^^^^^^~03/01/2005~
-~15152~^~307~^870.^0^^~4~^~O~^^^^^^^^^^~06/01/2013~
-~15152~^~318~^0.^0^^~1~^~AS~^^^^^^^^^^~03/01/2005~
-~15152~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2009~
-~15152~^~320~^0.^0^^~1~^~AS~^^^^^^^^^^~03/01/2006~
-~15152~^~321~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~
-~15152~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~
-~15152~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2009~
-~15152~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~
-~15152~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~
-~15152~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~
-~15152~^~417~^9.^1^^~1~^~A~^^^^^^^^^^~03/01/2005~
-~15152~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~
-~15152~^~432~^9.^1^^~1~^~A~^^^^^^^^^^~03/01/2009~
-~15152~^~435~^9.^0^^~4~^~NC~^^^^^^^^^^~03/01/2009~
-~15152~^~601~^252.^1^^~1~^~A~^^^^^^^^^^~03/01/2005~
-~15153~^~208~^101.^0^^~4~^~NC~^^^^^^^^^^~09/01/1987~
-~15153~^~268~^423.^0^^~4~^^^^^^^^^^^
-~15153~^~301~^19.^3^5.^~1~^^^^^^^^^^^~09/01/1987~
-~15153~^~304~^43.^0^^~4~^^^^^^^^^^^~09/01/1987~
-~15153~^~305~^282.^0^^~4~^^^^^^^^^^^~09/01/1987~
-~15153~^~306~^89.^3^1.^~1~^^^^^^^^^^^~09/01/1987~
-~15153~^~307~^705.^3^24.^~1~^^^^^^^^^^^~09/01/1987~
-~15153~^~318~^66.^0^^~4~^^^^^^^^^^^~09/01/1987~
-~15153~^~319~^20.^0^^~4~^^^^^^^^^^^~06/01/2002~
-~15153~^~320~^20.^0^^~4~^^^^^^^^^^^~06/01/2002~
-~15153~^~417~^2.^0^^~4~^^^^^^^^^^^~09/01/1987~
-~15153~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~
-~15153~^~432~^2.^0^^~4~^^^^^^^^^^^~09/01/1987~
-~15153~^~435~^2.^0^^~4~^~NC~^^^^^^^^^^~01/01/2001~
-~15153~^~601~^36.^3^3.^~1~^^^^^^^^^^^~09/01/1987~
-~15154~^~208~^112.^0^^~4~^~NC~^^^^^^^^^^~09/01/1987~
-~15154~^~268~^469.^0^^~4~^^^^^^^^^^^
-~15154~^~301~^49.^20^10.^~1~^^^^^^^^^^^~09/01/1987~
-~15154~^~304~^40.^0^^~4~^^^^^^^^^^^~09/01/1987~
-~15154~^~305~^238.^21^31.^~1~^^^^^^^^^^^~09/01/1987~
-~15154~^~306~^180.^0^^~4~^^^^^^^^^^^~09/01/1987~
-~15154~^~307~^177.^0^^~4~^^^^^^^^^^^~09/01/1987~
-~15154~^~318~^17.^0^^~4~^^^^^^^^^^^~09/01/1987~
-~15154~^~319~^5.^0^^~4~^^^^^^^^^^^~06/01/2002~
-~15154~^~320~^5.^0^^~4~^^^^^^^^^^^~06/01/2002~
-~15154~^~417~^1.^0^^~4~^^^^^^^^^^^~09/01/1987~
-~15154~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~
-~15154~^~432~^1.^0^^~4~^^^^^^^^^^^~09/01/1987~
-~15154~^~435~^1.^0^^~4~^~NC~^^^^^^^^^^~01/01/2001~
-~15154~^~601~^70.^1^^~1~^^^^^^^^^^^~09/01/1987~
-~15155~^~208~^105.^0^^~4~^~NC~^^^^^^^^^^~09/01/1987~
-~15155~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~
-~15155~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~
-~15155~^~268~^439.^0^^~4~^^^^^^^^^^^~03/01/2009~
-~15155~^~301~^31.^6^11.^~1~^^^^^^^^^^^~09/01/1987~
-~15155~^~304~^48.^6^21.^~1~^^^^^^^^^^^~09/01/1987~
-~15155~^~305~^190.^0^^~4~^^^^^^^^^^^~09/01/1987~
-~15155~^~306~^250.^0^^~4~^^^^^^^^^^^~09/01/1987~
-~15155~^~307~^301.^6^27.^~1~^^^^^^^^^^^~09/01/1987~
-~15155~^~318~^7.^0^^~4~^~NC~^^^^^^^^^^~03/01/2009~
-~15155~^~319~^2.^0^^~4~^~T~^^^^^^^^^^~03/01/2009~
-~15155~^~320~^2.^0^^~4~^~NC~^^^^^^^^^^~03/01/2009~
-~15155~^~321~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~
-~15155~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~
-~15155~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2009~
-~15155~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~
-~15155~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~
-~15155~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~
-~15155~^~417~^5.^1^^~1~^^^^^^^^^^^~09/01/1987~
-~15155~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~
-~15155~^~432~^5.^1^^~1~^^^^^^^^^^^~03/01/2009~
-~15155~^~435~^5.^0^^~4~^~NC~^^^^^^^^^^~03/01/2009~
-~15155~^~601~^85.^1^^~1~^^^^^^^^^^^~09/01/1987~
-~15156~^~208~^189.^0^^~4~^~NC~^^^^^^^^^^~09/01/1987~
-~15156~^~268~^791.^0^^~4~^^^^^^^^^^^
-~15156~^~301~^37.^0^^~1~^^^^^^^^^^^~09/01/1987~
-~15156~^~304~^56.^0^^~1~^^^^^^^^^^^~09/01/1987~
-~15156~^~305~^217.^0^^~4~^^^^^^^^^^^~09/01/1987~
-~15156~^~306~^284.^0^^~4~^^^^^^^^^^^~09/01/1987~
-~15156~^~307~^591.^0^^~1~^^^^^^^^^^^~09/01/1987~
-~15156~^~318~^5.^0^^~4~^^^^^^^^^^^~09/01/1987~
-~15156~^~319~^2.^0^^~4~^^^^^^^^^^^~06/01/2002~
-~15156~^~320~^2.^0^^~4~^^^^^^^^^^^~06/01/2002~
-~15156~^~417~^14.^0^^~4~^~RA~^^^^^^^^^^~11/01/1997~
-~15156~^~431~^9.^0^^~4~^~NC~^^^^^^^^^^~05/01/2000~
-~15156~^~432~^5.^0^^~1~^^^^^^^^^^^~09/01/1987~
-~15156~^~435~^20.^0^^~4~^~NC~^^^^^^^^^^~01/01/2001~
-~15156~^~601~^94.^0^^~1~^^^^^^^^^^^~09/01/1987~
-~15157~^~208~^86.^0^^~4~^~NC~^^^^^^^^^^~07/01/2010~
-~15157~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2001~
-~15157~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2001~
-~15157~^~268~^360.^0^^~4~^~NC~^^^^^^^^^^~07/01/2010~
-~15157~^~301~^39.^4^1.^~1~^~A~^^^1^36.^41.^3^34.^43.^~2, 3~^~07/01/2010~
-~15157~^~304~^19.^4^1.^~1~^~A~^^^1^17.^24.^3^14.^24.^~2, 3~^~07/01/2010~
-~15157~^~305~^198.^4^8.^~1~^~A~^^^1^174.^211.^3^171.^224.^~2, 3~^~07/01/2010~
-~15157~^~306~^46.^4^3.^~1~^~A~^^^1^36.^51.^3^34.^57.^~2, 3~^~07/01/2010~
-~15157~^~307~^601.^4^2.^~1~^~A~^^^1^594.^607.^3^592.^609.^~2, 3~^~07/01/2010~
-~15157~^~318~^300.^0^^~4~^~NC~^^^^^^^^^^~07/01/2010~
-~15157~^~319~^90.^0^^~4~^~T~^^^^^^^^^^~03/01/2009~
-~15157~^~320~^90.^0^^~4~^~NC~^^^^^^^^^^~07/01/2010~
-~15157~^~321~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~
-~15157~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~
-~15157~^~324~^1.^4^0.^~1~^~A~^^^1^0.^4.^3^-1.^4.^~1, 2, 3~^~07/01/2010~
-~15157~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~
-~15157~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~
-~15157~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~
-~15157~^~417~^5.^4^1.^~1~^~A~^^^1^0.^6.^3^0.^9.^~1, 2, 3~^~07/01/2010~
-~15157~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~
-~15157~^~432~^5.^4^1.^~1~^~AS~^^^1^0.^6.^3^0.^9.^~1, 2, 3~^~07/01/2010~
-~15157~^~435~^5.^0^^~4~^~NC~^^^^^^^^^^~07/01/2010~
-~15157~^~601~^30.^4^1.^~1~^~A~^^^1^27.^35.^3^24.^35.^~2, 3~^~07/01/2010~
-~15158~^~208~^202.^0^^~4~^~NC~^^^^^^^^^^~09/01/1987~
-~15158~^~268~^845.^0^^~4~^^^^^^^^^^^
-~15158~^~301~^63.^0^^~1~^^^^^^^^^^^~09/01/1987~
-~15158~^~304~^14.^0^^~1~^^^^^^^^^^^~09/01/1987~
-~15158~^~305~^188.^0^^~1~^^^^^^^^^^^~09/01/1987~
-~15158~^~306~^326.^0^^~1~^^^^^^^^^^^~09/01/1987~
-~15158~^~307~^364.^0^^~1~^^^^^^^^^^^~09/01/1987~
-~15158~^~318~^302.^0^^~1~^^^^^^^^^^^~09/01/1987~
-~15158~^~319~^91.^0^^~1~^^^^^^^^^^^~06/01/2002~
-~15158~^~320~^91.^0^^~1~^^^^^^^^^^^~06/01/2002~
-~15158~^~417~^36.^0^^~4~^~RA~^^^^^^^^^^~11/01/1997~
-~15158~^~431~^18.^0^^~4~^~NC~^^^^^^^^^^~05/01/2000~
-~15158~^~432~^18.^0^^~4~^^^^^^^^^^^~09/01/1987~
-~15158~^~435~^48.^0^^~4~^~NC~^^^^^^^^^^~01/01/2001~
-~15158~^~601~^61.^0^^~1~^^^^^^^^^^^~09/01/1987~
-~15159~^~208~^148.^0^^~4~^~NC~^^^^^^^^^^~09/01/1987~
-~15159~^~268~^618.^0^^~4~^~NC~^^^^^^^^^^~09/01/2011~
-~15159~^~301~^92.^0^^~1~^^^^^^^^^^^~09/01/1987~
-~15159~^~304~^18.^0^^~1~^^^^^^^^^^^~09/01/1987~
-~15159~^~305~^338.^0^^~1~^^^^^^^^^^^~09/01/1987~
-~15159~^~306~^628.^0^^~1~^^^^^^^^^^^~09/01/1987~
-~15159~^~307~^1202.^0^^~4~^~O~^^^^^^^^^^~09/01/2011~
-~15159~^~318~^570.^0^^~1~^^^^^^^^^^^~09/01/1987~
-~15159~^~320~^171.^0^^~4~^~NR~^^^^^^^^^^~08/01/2012~
-~15159~^~417~^29.^0^^~4~^^^^^^^^^^^~09/01/1987~
-~15159~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~
-~15159~^~432~^29.^0^^~4~^^^^^^^^^^^~09/01/1987~
-~15159~^~435~^29.^0^^~4~^~NC~^^^^^^^^^^~01/01/2001~
-~15159~^~601~^67.^0^^~1~^^^^^^^^^^^~09/01/1987~
-~15160~^~208~^142.^0^^~4~^~NC~^^^^^^^^^^~07/01/2010~
-~15160~^~262~^0.^0^^~4~^~RA~^^^^^^^^^^~07/01/2010~
-~15160~^~263~^0.^0^^~4~^~RA~^^^^^^^^^^~07/01/2010~
-~15160~^~268~^595.^0^^~4~^~RA~^^^^^^^^^^~07/01/2010~
-~15160~^~301~^65.^0^^~4~^~RA~^^^^^^^^^^~07/01/2010~
-~15160~^~304~^32.^0^^~4~^~RA~^^^^^^^^^^~07/01/2010~
-~15160~^~305~^327.^0^^~4~^~RA~^^^^^^^^^^~07/01/2010~
-~15160~^~306~^628.^0^^~1~^^^^^^^^^^^~09/01/1987~
-~15160~^~307~^112.^0^^~1~^^^^^^^^^^^~09/01/1987~
-~15160~^~318~^496.^0^^~4~^~RA~^^^^^^^^^^~07/01/2010~
-~15160~^~319~^149.^0^^~4~^~RA~^^^^^^^^^^~07/01/2010~
-~15160~^~320~^149.^0^^~4~^~RA~^^^^^^^^^^~07/01/2010~
-~15160~^~321~^0.^0^^~4~^~RA~^^^^^^^^^^~07/01/2010~
-~15160~^~322~^0.^0^^~4~^~RA~^^^^^^^^^^~07/01/2010~
-~15160~^~324~^2.^0^^~4~^~RA~^^^^^^^^^^~07/01/2010~
-~15160~^~334~^0.^0^^~4~^~RA~^^^^^^^^^^~07/01/2010~
-~15160~^~337~^0.^0^^~4~^~RA~^^^^^^^^^^~07/01/2010~
-~15160~^~338~^0.^0^^~4~^~RA~^^^^^^^^^^~07/01/2010~
-~15160~^~417~^7.^0^^~4~^~RA~^^^^^^^^^^~07/01/2010~
-~15160~^~431~^0.^0^^~4~^~RA~^^^^^^^^^^~07/01/2010~
-~15160~^~432~^7.^0^^~4~^~RA~^^^^^^^^^^~07/01/2010~
-~15160~^~435~^7.^0^^~4~^~NC~^^^^^^^^^^~07/01/2010~
-~15160~^~601~^50.^0^^~4~^~RA~^^^^^^^^^^~07/01/2010~
-~15162~^~208~^2.^0^^~4~^~NC~^^^^^^^^^^~09/01/1987~
-~15162~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~
-~15162~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~
-~15162~^~268~^8.^0^^~4~^^^^^^^^^^^~03/01/2009~
-~15162~^~301~^13.^1^^~1~^^^^^^^^^^^~09/01/1987~
-~15162~^~304~^11.^1^^~1~^^^^^^^^^^^~09/01/1987~
-~15162~^~305~^114.^0^^~4~^^^^^^^^^^^~09/01/1987~
-~15162~^~306~^149.^0^^~4~^^^^^^^^^^^~09/01/1987~
-~15162~^~307~^215.^1^^~1~^^^^^^^^^^^~09/01/1987~
-~15162~^~318~^30.^0^^~4~^~NC~^^^^^^^^^^~03/01/2009~
-~15162~^~319~^9.^0^^~4~^~T~^^^^^^^^^^~03/01/2009~
-~15162~^~320~^9.^0^^~4~^~NC~^^^^^^^^^^~03/01/2009~
-~15162~^~321~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~
-~15162~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~
-~15162~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2009~
-~15162~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~
-~15162~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~
-~15162~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~
-~15162~^~417~^2.^0^^~4~^^^^^^^^^^^~09/01/1987~
-~15162~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~
-~15162~^~432~^2.^0^^~4~^^^^^^^^^^^~03/01/2009~
-~15162~^~435~^2.^0^^~4~^~NC~^^^^^^^^^^~03/01/2009~
-~15162~^~601~^3.^0^^~4~^^^^^^^^^^^~09/01/1987~
-~15163~^~208~^79.^0^^~4~^~NC~^^^^^^^^^^~09/01/1987~
-~15163~^~268~^331.^0^^~4~^^^^^^^^^^^
-~15163~^~301~^90.^13^^~1~^^^^^^^^^^^~09/01/1987~
-~15163~^~304~^30.^0^^~4~^^^^^^^^^^^~09/01/1987~
-~15163~^~305~^387.^13^^~1~^^^^^^^^^^^~09/01/1987~
-~15163~^~306~^354.^2^^~1~^^^^^^^^^^^~09/01/1987~
-~15163~^~307~^372.^1^^~1~^^^^^^^^^^^~09/01/1987~
-~15163~^~318~^375.^0^^~4~^^^^^^^^^^^~09/01/1987~
-~15163~^~319~^113.^0^^~4~^^^^^^^^^^^~06/01/2002~
-~15163~^~320~^113.^0^^~4~^^^^^^^^^^^~06/01/2002~
-~15163~^~417~^16.^0^^~4~^^^^^^^^^^^~09/01/1987~
-~15163~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~
-~15163~^~432~^16.^0^^~4~^^^^^^^^^^^~09/01/1987~
-~15163~^~435~^16.^0^^~4~^~NC~^^^^^^^^^^~01/01/2001~
-~15163~^~601~^112.^1^^~1~^^^^^^^^^^^~09/01/1987~
-~15164~^~208~^86.^0^^~4~^~NC~^^^^^^^^^^~09/01/1987~
-~15164~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~
-~15164~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~
-~15164~^~268~^360.^0^^~4~^^^^^^^^^^^~03/01/2009~
-~15164~^~301~^26.^6^2.^~1~^^^^^^^^^^^~09/01/1987~
-~15164~^~304~^34.^6^0.^~1~^^^^^^^^^^^~09/01/1987~
-~15164~^~305~^197.^9^1.^~1~^^^^^^^^^^^~09/01/1987~
-~15164~^~306~^320.^6^6.^~1~^^^^^^^^^^^~09/01/1987~
-~15164~^~307~^286.^6^2.^~1~^^^^^^^^^^^~09/01/1987~
-~15164~^~318~^160.^0^^~4~^~NC~^^^^^^^^^^~03/01/2009~
-~15164~^~319~^48.^0^^~4~^~T~^^^^^^^^^^~03/01/2009~
-~15164~^~320~^48.^0^^~4~^~NC~^^^^^^^^^^~03/01/2009~
-~15164~^~321~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~
-~15164~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~
-~15164~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2009~
-~15164~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~
-~15164~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~
-~15164~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~
-~15164~^~417~^42.^0^^~4~^^^^^^^^^^^~09/01/1987~
-~15164~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~
-~15164~^~432~^42.^0^^~4~^^^^^^^^^^^~03/01/2009~
-~15164~^~435~^42.^0^^~4~^~NC~^^^^^^^^^^~03/01/2009~
-~15164~^~601~^28.^6^2.^~1~^^^^^^^^^^^~09/01/1987~
-~15165~^~208~^172.^0^^~4~^~NC~^^^^^^^^^^~09/01/1987~
-~15165~^~268~^720.^0^^~4~^^^^^^^^^^^
-~15165~^~301~^33.^18^1.^~1~^^^^^^^^^^^~09/01/1987~
-~15165~^~304~^37.^18^1.^~1~^^^^^^^^^^^~09/01/1987~
-~15165~^~305~^285.^27^3.^~1~^^^^^^^^^^^~09/01/1987~
-~15165~^~306~^268.^18^10.^~1~^^^^^^^^^^^~09/01/1987~
-~15165~^~307~^369.^18^18.^~1~^^^^^^^^^^^~09/01/1987~
-~15165~^~318~^304.^0^^~4~^^^^^^^^^^^~09/01/1987~
-~15165~^~319~^91.^0^^~4~^^^^^^^^^^^~06/01/2002~
-~15165~^~320~^91.^0^^~4~^^^^^^^^^^^~06/01/2002~
-~15165~^~417~^76.^0^^~4~^^^^^^^^^^^~09/01/1987~
-~15165~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~
-~15165~^~432~^76.^0^^~4~^^^^^^^^^^^~09/01/1987~
-~15165~^~435~^76.^0^^~4~^~NC~^^^^^^^^^^~01/01/2001~
-~15165~^~601~^56.^0^^~1~^^^^^^^^^^^~09/01/1987~
-~15166~^~208~^82.^0^^~4~^~NC~^^^^^^^^^^~09/01/1987~
-~15166~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~
-~15166~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~
-~15166~^~268~^343.^0^^~4~^^^^^^^^^^^~03/01/2009~
-~15166~^~301~^53.^13^11.^~1~^^^^^^^^^^^~09/01/1987~
-~15166~^~304~^30.^0^^~4~^^^^^^^^^^^~09/01/1987~
-~15166~^~305~^186.^15^16.^~1~^^^^^^^^^^^~09/01/1987~
-~15166~^~306~^350.^0^^~4~^^^^^^^^^^^~09/01/1987~
-~15166~^~307~^230.^0^^~4~^^^^^^^^^^^~09/01/1987~
-~15166~^~318~^150.^0^^~4~^~NC~^^^^^^^^^^~03/01/2009~
-~15166~^~319~^45.^0^^~4~^~T~^^^^^^^^^^~03/01/2009~
-~15166~^~320~^45.^0^^~4~^~NC~^^^^^^^^^^~03/01/2009~
-~15166~^~321~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~
-~15166~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~
-~15166~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2009~
-~15166~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~
-~15166~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~
-~15166~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~
-~15166~^~417~^16.^0^^~4~^^^^^^^^^^^~09/01/1987~
-~15166~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~
-~15166~^~432~^16.^0^^~4~^^^^^^^^^^^~03/01/2009~
-~15166~^~435~^16.^0^^~4~^~NC~^^^^^^^^^^~03/01/2009~
-~15166~^~601~^48.^1^^~1~^^^^^^^^^^^~09/01/1987~
-~15167~^~208~^51.^0^^~4~^~NC~^^^^^^^^^^~08/01/2010~
-~15167~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2001~
-~15167~^~263~^0.^0^^~4~^~RA~^^^^^^^^^^~08/01/2010~
-~15167~^~268~^213.^0^^~4~^~RA~^^^^^^^^^^~08/01/2010~
-~15167~^~301~^59.^0^^~4~^~RA~^^^^^^^^^^~08/01/2010~
-~15167~^~304~^18.^0^^~4~^~RA~^^^^^^^^^^~08/01/2010~
-~15167~^~305~^97.^0^^~4~^~RA~^^^^^^^^^^~08/01/2010~
-~15167~^~306~^156.^3^36.^~1~^^^^^^^^^^^~09/01/1987~
-~15167~^~307~^85.^0^^~4~^~RA~^^^^^^^^^^~08/01/2010~
-~15167~^~318~^44.^0^^~4~^~RA~^^^^^^^^^^~08/01/2010~
-~15167~^~319~^13.^0^^~4~^~RA~^^^^^^^^^^~08/01/2010~
-~15167~^~320~^13.^0^^~4~^~RA~^^^^^^^^^^~08/01/2010~
-~15167~^~321~^0.^0^^~4~^~RA~^^^^^^^^^^~08/01/2010~
-~15167~^~322~^0.^0^^~4~^~RA~^^^^^^^^^^~08/01/2010~
-~15167~^~324~^1.^0^^~4~^~RA~^^^^^^^^^^~08/01/2010~
-~15167~^~334~^0.^0^^~4~^~RA~^^^^^^^^^^~08/01/2010~
-~15167~^~337~^0.^0^^~4~^~RA~^^^^^^^^^^~08/01/2010~
-~15167~^~338~^0.^0^^~4~^~RA~^^^^^^^^^^~08/01/2010~
-~15167~^~417~^7.^0^^~4~^~RA~^^^^^^^^^^~08/01/2010~
-~15167~^~431~^0.^0^^~4~^~RA~^^^^^^^^^^~08/01/2010~
-~15167~^~432~^7.^0^^~4~^~RA~^^^^^^^^^^~08/01/2010~
-~15167~^~435~^7.^0^^~4~^~NC~^^^^^^^^^^~08/01/2010~
-~15167~^~601~^40.^0^^~4~^~RA~^^^^^^^^^^~08/01/2010~
-~15168~^~208~^199.^0^^~4~^~NC~^^^^^^^^^^~08/01/2010~
-~15168~^~268~^832.^0^^~4~^~NC~^^^^^^^^^^~08/01/2010~
-~15168~^~301~^62.^0^^~1~^^^^^^^^^^^~09/01/1987~
-~15168~^~304~^58.^0^^~1~^^^^^^^^^^^~09/01/1987~
-~15168~^~305~^159.^0^^~1~^^^^^^^^^^^~09/01/1987~
-~15168~^~306~^244.^0^^~1~^^^^^^^^^^^~09/01/1987~
-~15168~^~307~^417.^0^^~1~^^^^^^^^^^^~09/01/1987~
-~15168~^~318~^302.^0^^~4~^^^^^^^^^^^~09/01/1987~
-~15168~^~320~^90.^0^^~4~^~NR~^^^^^^^^^^~05/01/2011~
-~15168~^~417~^31.^0^^~4~^~RA~^^^^^^^^^^~11/01/1997~
-~15168~^~431~^17.^0^^~4~^~NC~^^^^^^^^^^~05/01/2000~
-~15168~^~432~^14.^0^^~1~^^^^^^^^^^^~09/01/1987~
-~15168~^~435~^43.^0^^~4~^~NC~^^^^^^^^^^~08/01/2010~
-~15168~^~601~^71.^0^^~4~^~O~^^^^^^^^^^~08/01/2010~
-~15169~^~208~^102.^0^^~4~^~NC~^^^^^^^^^^~07/01/2010~
-~15169~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~07/01/2010~
-~15169~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~07/01/2010~
-~15169~^~268~^427.^0^^~4~^~NC~^^^^^^^^^^~07/01/2010~
-~15169~^~301~^116.^3^72.^~1~^~A~^^^1^37.^261.^2^-196.^428.^~2, 3~^~07/01/2010~
-~15169~^~304~^35.^3^6.^~1~^~A~^^^1^24.^47.^2^5.^63.^~2, 3~^~07/01/2010~
-~15169~^~305~^194.^3^15.^~1~^~A~^^^1^169.^223.^2^125.^261.^~2, 3~^~07/01/2010~
-~15169~^~306~^139.^3^3.^~1~^~A~^^^1^135.^146.^2^124.^153.^~2, 3~^~07/01/2010~
-~15169~^~307~^166.^3^46.^~1~^~A~^^^1^89.^251.^2^-35.^368.^~2, 3~^~07/01/2010~
-~15169~^~318~^88.^0^^~1~^~AS~^^^^^^^^^^~07/01/2010~
-~15169~^~319~^26.^1^^~1~^~A~^^^^^^^^^^~07/01/2010~
-~15169~^~320~^26.^0^^~1~^~AS~^^^^^^^^^^~07/01/2010~
-~15169~^~321~^0.^0^^~7~^~Z~^^^^^^^^^^~07/01/2010~
-~15169~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~07/01/2010~
-~15169~^~324~^2.^3^0.^~1~^~A~^^^1^1.^3.^2^-1.^4.^~2, 3~^~07/01/2010~
-~15169~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~07/01/2010~
-~15169~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~07/01/2010~
-~15169~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~07/01/2010~
-~15169~^~417~^14.^0^^~1~^^^^^^^^^^^~09/01/1987~
-~15169~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~
-~15169~^~432~^14.^0^^~1~^^^^^^^^^^^~07/01/2010~
-~15169~^~435~^14.^0^^~4~^~NC~^^^^^^^^^^~07/01/2010~
-~15169~^~601~^79.^3^7.^~1~^~A~^^^1^65.^92.^2^45.^112.^~2, 3~^~07/01/2010~
-~15170~^~208~^68.^0^^~4~^~NC~^^^^^^^^^^~08/01/2010~
-~15170~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~
-~15170~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~
-~15170~^~268~^287.^0^^~4~^~NC~^^^^^^^^^^~08/01/2010~
-~15170~^~301~^45.^0^^~1~^^^^^^^^^^^~09/01/1987~
-~15170~^~304~^54.^0^^~1~^^^^^^^^^^^~09/01/1987~
-~15170~^~305~^139.^0^^~1~^^^^^^^^^^^~09/01/1987~
-~15170~^~306~^229.^0^^~1~^^^^^^^^^^^~09/01/1987~
-~15170~^~307~^112.^0^^~1~^^^^^^^^^^^~09/01/1987~
-~15170~^~318~^300.^0^^~4~^~NC~^^^^^^^^^^~08/01/2010~
-~15170~^~319~^90.^0^^~4~^~T~^^^^^^^^^^~03/01/2009~
-~15170~^~320~^90.^0^^~4~^~NC~^^^^^^^^^^~08/01/2010~
-~15170~^~321~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~
-~15170~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~
-~15170~^~324~^1.^0^^~4~^~BFZN~^~15167~^^^^^^^^^~08/01/2010~
-~15170~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~
-~15170~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~
-~15170~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~
-~15170~^~417~^9.^0^^~1~^^^^^^^^^^^~09/01/1987~
-~15170~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~
-~15170~^~432~^9.^0^^~1~^^^^^^^^^^^~08/01/2010~
-~15170~^~435~^9.^0^^~4~^~NC~^^^^^^^^^^~08/01/2010~
-~15170~^~601~^55.^0^^~1~^^^^^^^^^^^~09/01/1987~
-~15171~^~208~^81.^0^^~4~^~NC~^^^^^^^^^^~09/01/1987~
-~15171~^~268~^339.^0^^~4~^^^^^^^^^^^
-~15171~^~301~^8.^2^^~1~^^^^^^^^^^^~09/01/1987~
-~15171~^~304~^22.^2^^~1~^^^^^^^^^^^~09/01/1987~
-~15171~^~305~^162.^2^^~1~^^^^^^^^^^^~09/01/1987~
-~15171~^~306~^168.^2^^~1~^^^^^^^^^^^~09/01/1987~
-~15171~^~307~^106.^2^^~1~^^^^^^^^^^^~09/01/1987~
-~15171~^~318~^270.^0^^~4~^^^^^^^^^^^~09/01/1987~
-~15171~^~319~^81.^0^^~4~^^^^^^^^^^^~06/01/2002~
-~15171~^~320~^81.^0^^~4~^^^^^^^^^^^~06/01/2002~
-~15171~^~417~^10.^0^^~4~^^^^^^^^^^^~09/01/1987~
-~15171~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~
-~15171~^~432~^10.^0^^~4~^^^^^^^^^^^~09/01/1987~
-~15171~^~435~^10.^0^^~4~^~NC~^^^^^^^^^^~01/01/2001~
-~15171~^~601~^50.^0^^~4~^^^^^^^^^^^~09/01/1987~
-~15172~^~208~^69.^0^^~4~^~NC~^^^^^^^^^^~07/01/2010~
-~15172~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~
-~15172~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~
-~15172~^~268~^289.^0^^~4~^~NC~^^^^^^^^^^~07/01/2010~
-~15172~^~301~^6.^12^0.^~1~^~A~^^^1^3.^15.^11^3.^7.^~2, 3~^~07/01/2010~
-~15172~^~304~^22.^12^2.^~1~^~A~^^^1^10.^37.^11^16.^27.^~2, 3~^~07/01/2010~
-~15172~^~305~^334.^12^22.^~1~^~A~^^^1^230.^468.^11^284.^383.^~2, 3~^~07/01/2010~
-~15172~^~306~^205.^12^27.^~1~^~A~^^^1^86.^361.^11^143.^266.^~2, 3~^~07/01/2010~
-~15172~^~307~^392.^12^47.^~1~^~A~^^^1^193.^774.^11^286.^496.^~2, 3~^~07/01/2010~
-~15172~^~318~^3.^0^^~1~^~AS~^^^^^^^^^^~07/01/2010~
-~15172~^~319~^1.^1^^~1~^~A~^^^^^^^^^^~07/01/2010~
-~15172~^~320~^1.^0^^~1~^~AS~^^^^^^^^^^~07/01/2010~
-~15172~^~321~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~
-~15172~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~
-~15172~^~324~^1.^4^0.^~1~^~A~^^^1^0.^2.^3^0.^2.^~1, 2, 3~^~07/01/2010~
-~15172~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~
-~15172~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~
-~15172~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~
-~15172~^~417~^16.^0^^~4~^^^^^^^^^^^~09/01/1987~
-~15172~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~
-~15172~^~432~^16.^0^^~4~^^^^^^^^^^^~07/01/2010~
-~15172~^~435~^16.^0^^~4~^~NC~^^^^^^^^^^~07/01/2010~
-~15172~^~601~^24.^4^1.^~1~^~A~^^^1^21.^27.^3^19.^28.^~2, 3~^~07/01/2010~
-~15173~^~208~^216.^0^^~4~^~NC~^^^^^^^^^^~08/01/2010~
-~15173~^~268~^902.^0^^~4~^~NC~^^^^^^^^^^~08/01/2010~
-~15173~^~301~^42.^0^^~1~^^^^^^^^^^^~09/01/1987~
-~15173~^~304~^59.^0^^~1~^^^^^^^^^^^~09/01/1987~
-~15173~^~305~^236.^0^^~1~^^^^^^^^^^^~09/01/1987~
-~15173~^~306~^333.^0^^~1~^^^^^^^^^^^~09/01/1987~
-~15173~^~307~^464.^0^^~1~^^^^^^^^^^^~09/01/1987~
-~15173~^~318~^75.^0^^~4~^^^^^^^^^^^~09/01/1987~
-~15173~^~320~^22.^0^^~4~^~NR~^^^^^^^^^^~05/01/2011~
-~15173~^~417~^37.^0^^~4~^~RA~^^^^^^^^^^~11/01/1997~
-~15173~^~431~^19.^0^^~4~^~NC~^^^^^^^^^^~05/01/2000~
-~15173~^~432~^18.^0^^~4~^^^^^^^^^^^~09/01/1987~
-~15173~^~435~^50.^0^^~4~^~NC~^^^^^^^^^^~08/01/2010~
-~15173~^~601~^54.^0^^~4~^~O~^^^^^^^^^^~08/01/2010~
-~15174~^~208~^99.^0^^~4~^~NC~^^^^^^^^^^~09/01/1987~
-~15174~^~268~^414.^0^^~4~^^^^^^^^^^^
-~15174~^~301~^8.^3^0.^~1~^^^^^^^^^^^~09/01/1987~
-~15174~^~304~^43.^0^^~4~^^^^^^^^^^^~09/01/1987~
-~15174~^~305~^282.^0^^~4~^^^^^^^^^^^~09/01/1987~
-~15174~^~306~^103.^3^10.^~1~^^^^^^^^^^^~09/01/1987~
-~15174~^~307~^795.^3^23.^~1~^^^^^^^^^^^~09/01/1987~
-~15174~^~318~^66.^0^^~4~^^^^^^^^^^^~09/01/1987~
-~15174~^~319~^20.^0^^~4~^^^^^^^^^^^~06/01/2002~
-~15174~^~320~^20.^0^^~4~^^^^^^^^^^^~06/01/2002~
-~15174~^~417~^2.^0^^~4~^^^^^^^^^^^~09/01/1987~
-~15174~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~
-~15174~^~432~^2.^0^^~4~^^^^^^^^^^^~09/01/1987~
-~15174~^~435~^2.^0^^~4~^~NC~^^^^^^^^^^~01/01/2001~
-~15174~^~601~^22.^3^12.^~1~^^^^^^^^^^^~09/01/1987~
-~15175~^~208~^92.^0^^~4~^~NC~^^^^^^^^^^~09/01/1987~
-~15175~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~
-~15175~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~
-~15175~^~268~^385.^0^^~4~^^^^^^^^^^^~03/01/2009~
-~15175~^~301~^32.^2^^~1~^^^^^^^^^^^~09/01/1987~
-~15175~^~304~^33.^1^^~1~^^^^^^^^^^^~09/01/1987~
-~15175~^~305~^221.^2^^~1~^^^^^^^^^^^~09/01/1987~
-~15175~^~306~^246.^2^^~1~^^^^^^^^^^^~09/01/1987~
-~15175~^~307~^44.^1^^~1~^^^^^^^^^^^~09/01/1987~
-~15175~^~318~^33.^0^^~4~^~NC~^^^^^^^^^^~03/01/2009~
-~15175~^~319~^10.^0^^~4~^~T~^^^^^^^^^^~03/01/2009~
-~15175~^~320~^10.^0^^~4~^~NC~^^^^^^^^^^~03/01/2009~
-~15175~^~321~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~
-~15175~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~
-~15175~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2009~
-~15175~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~
-~15175~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~
-~15175~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~
-~15175~^~417~^5.^0^^~4~^^^^^^^^^^^~09/01/1987~
-~15175~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~
-~15175~^~432~^5.^0^^~4~^^^^^^^^^^^~03/01/2009~
-~15175~^~435~^5.^0^^~4~^~NC~^^^^^^^^^^~03/01/2009~
-~15175~^~601~^233.^7^16.^~1~^^^^^^^^^^^~09/01/1987~
-~15176~^~208~^175.^0^^~4~^~NC~^^^^^^^^^^~09/01/1987~
-~15176~^~268~^732.^0^^~4~^^^^^^^^^^^
-~15176~^~301~^39.^0^^~1~^^^^^^^^^^^~09/01/1987~
-~15176~^~304~^38.^0^^~1~^^^^^^^^^^^~09/01/1987~
-~15176~^~305~^251.^0^^~1~^^^^^^^^^^^~09/01/1987~
-~15176~^~306~^279.^0^^~1~^^^^^^^^^^^~09/01/1987~
-~15176~^~307~^306.^0^^~1~^^^^^^^^^^^~09/01/1987~
-~15176~^~318~^35.^0^^~4~^^^^^^^^^^^~09/01/1987~
-~15176~^~319~^11.^0^^~4~^^^^^^^^^^^~06/01/2002~
-~15176~^~320~^11.^0^^~4~^^^^^^^^^^^~06/01/2002~
-~15176~^~417~^14.^0^^~4~^~RA~^^^^^^^^^^~11/01/1997~
-~15176~^~431~^9.^0^^~4~^~NC~^^^^^^^^^^~05/01/2000~
-~15176~^~432~^5.^0^^~4~^^^^^^^^^^^~09/01/1987~
-~15176~^~435~^20.^0^^~4~^~NC~^^^^^^^^^^~01/01/2001~
-~15176~^~601~^260.^0^^~1~^^^^^^^^^^^~09/01/1987~
-~15177~^~208~^137.^0^^~4~^~NC~^^^^^^^^^^~09/01/1987~
-~15177~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~
-~15177~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~
-~15177~^~268~^573.^0^^~4~^^^^^^^^^^^~03/01/2009~
-~15177~^~301~^57.^2^^~1~^^^^^^^^^^^~09/01/1987~
-~15177~^~304~^86.^2^^~1~^^^^^^^^^^^~09/01/1987~
-~15177~^~305~^141.^2^^~1~^^^^^^^^^^^~09/01/1987~
-~15177~^~306~^347.^2^^~1~^^^^^^^^^^^~09/01/1987~
-~15177~^~307~^206.^2^^~1~^^^^^^^^^^^~09/01/1987~
-~15177~^~318~^87.^0^^~4~^~NC~^^^^^^^^^^~03/01/2009~
-~15177~^~319~^26.^0^^~4~^~T~^^^^^^^^^^~03/01/2009~
-~15177~^~320~^26.^0^^~4~^~NC~^^^^^^^^^^~03/01/2009~
-~15177~^~321~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~
-~15177~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~
-~15177~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2009~
-~15177~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~
-~15177~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~
-~15177~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~
-~15177~^~417~^6.^2^^~1~^^^^^^^^^^^~09/01/1987~
-~15177~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~
-~15177~^~432~^6.^2^^~1~^^^^^^^^^^^~03/01/2009~
-~15177~^~435~^6.^0^^~4~^~NC~^^^^^^^^^^~03/01/2009~
-~15177~^~601~^65.^2^^~1~^^^^^^^^^^^~09/01/1987~
-~15178~^~208~^275.^0^^~4~^~NC~^^^^^^^^^^~09/01/1987~
-~15178~^~268~^1151.^0^^~4~^^^^^^^^^^^
-~15178~^~301~^113.^0^^~1~^^^^^^^^^^^~09/01/1987~
-~15178~^~304~^172.^0^^~1~^^^^^^^^^^^~09/01/1987~
-~15178~^~305~^282.^0^^~1~^^^^^^^^^^^~09/01/1987~
-~15178~^~306~^694.^0^^~1~^^^^^^^^^^^~09/01/1987~
-~15178~^~307~^412.^0^^~1~^^^^^^^^^^^~09/01/1987~
-~15178~^~318~^162.^0^^~1~^^^^^^^^^^^~09/01/1987~
-~15178~^~319~^49.^0^^~1~^^^^^^^^^^^~06/01/2002~
-~15178~^~320~^49.^0^^~1~^^^^^^^^^^^~06/01/2002~
-~15178~^~417~^11.^0^^~1~^^^^^^^^^^^~09/01/1987~
-~15178~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~
-~15178~^~432~^11.^0^^~1~^^^^^^^^^^^~09/01/1987~
-~15178~^~435~^11.^0^^~4~^~NC~^^^^^^^^^^~01/01/2001~
-~15178~^~601~^130.^0^^~1~^^^^^^^^^^^~09/01/1987~
-~15179~^~208~^117.^0^^~4~^~NC~^^^^^^^^^^~09/01/1987~
-~15179~^~268~^490.^0^^~4~^^^^^^^^^^^
-~15179~^~301~^11.^2^^~1~^^^^^^^^^^^~09/01/1987~
-~15179~^~304~^18.^2^^~1~^^^^^^^^^^^~09/01/1987~
-~15179~^~305~^164.^2^^~1~^^^^^^^^^^^~09/01/1987~
-~15179~^~306~^175.^2^^~1~^^^^^^^^^^^~09/01/1987~
-~15179~^~307~^2000.^0^^~1~^^^^^^^^^^^~09/01/1987~
-~15179~^~318~^88.^2^^~1~^^^^^^^^^^^~09/01/1987~
-~15179~^~319~^26.^2^^~1~^^^^^^^^^^^~06/01/2002~
-~15179~^~320~^26.^2^^~1~^^^^^^^^^^^~06/01/2002~
-~15179~^~417~^2.^2^^~1~^^^^^^^^^^^~09/01/1987~
-~15179~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~
-~15179~^~432~^2.^2^^~1~^^^^^^^^^^^~09/01/1987~
-~15179~^~435~^2.^0^^~4~^~NC~^^^^^^^^^^~01/01/2001~
-~15179~^~601~^23.^2^^~1~^^^^^^^^^^^~09/01/1987~
-~15180~^~208~^141.^0^^~4~^~NC~^^^^^^^^^^~09/01/1987~
-~15180~^~268~^590.^0^^~4~^^^^^^^^^^^
-~15180~^~301~^249.^6^1.^~1~^^^^^^^^^^^~09/01/1987~
-~15180~^~304~^30.^0^^~4~^^^^^^^^^^^~09/01/1987~
-~15180~^~305~^354.^6^2.^~1~^^^^^^^^^^^~09/01/1987~
-~15180~^~306~^300.^0^^~4~^^^^^^^^^^^~09/01/1987~
-~15180~^~307~^75.^0^^~1~^^^^^^^^^^^~09/01/1987~
-~15180~^~318~^61.^6^1.^~1~^^^^^^^^^^^~09/01/1987~
-~15180~^~319~^18.^6^0.^~1~^^^^^^^^^^^~06/01/2002~
-~15180~^~320~^18.^6^0.^~1~^^^^^^^^^^^~06/01/2002~
-~15180~^~417~^20.^0^^~4~^^^^^^^^^^^~09/01/1987~
-~15180~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~
-~15180~^~432~^20.^0^^~4~^^^^^^^^^^^~09/01/1987~
-~15180~^~435~^20.^0^^~4~^~NC~^^^^^^^^^^~01/01/2001~
-~15180~^~601~^39.^1^^~1~^^^^^^^^^^^~09/01/1987~
-~15181~^~208~^139.^0^^~4~^~NC~^^^^^^^^^^~09/01/1987~
-~15181~^~268~^582.^0^^~4~^^^^^^^^^^^
-~15181~^~301~^213.^25^12.^~1~^^^^^^^^^^^~09/01/1987~
-~15181~^~304~^34.^25^0.^~1~^^^^^^^^^^^~09/01/1987~
-~15181~^~305~^329.^25^7.^~1~^^^^^^^^^^^~09/01/1987~
-~15181~^~306~^326.^25^7.^~1~^^^^^^^^^^^~09/01/1987~
-~15181~^~307~^75.^0^^~4~^^^^^^^^^^^~09/01/1987~
-~15181~^~318~^55.^14^3.^~1~^^^^^^^^^^^~09/01/1987~
-~15181~^~319~^17.^14^1.^~1~^^^^^^^^^^^~06/01/2002~
-~15181~^~320~^17.^14^1.^~1~^^^^^^^^^^^~06/01/2002~
-~15181~^~417~^15.^3^0.^~1~^^^^^^^^^^^~09/01/1987~
-~15181~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~
-~15181~^~432~^15.^3^0.^~1~^^^^^^^^^^^~09/01/1987~
-~15181~^~435~^15.^0^^~4~^~NC~^^^^^^^^^^~01/01/2001~
-~15181~^~601~^55.^0^^~4~^^^^^^^^^^^~09/01/1987~
-~15182~^~208~^153.^0^^~4~^~NC~^^^^^^^^^^~09/01/1987~
-~15182~^~268~^640.^0^^~4~^^^^^^^^^^^
-~15182~^~301~^239.^26^6.^~1~^^^^^^^^^^^~09/01/1987~
-~15182~^~304~^29.^20^^~1~^^^^^^^^^^^~09/01/1987~
-~15182~^~305~^326.^43^4.^~1~^^^^^^^^^^^~09/01/1987~
-~15182~^~306~^377.^23^^~1~^^^^^^^^^^^~09/01/1987~
-~15182~^~307~^75.^0^^~1~^^^^^^^^^^^~09/01/1987~
-~15182~^~318~^176.^32^10.^~1~^^^^^^^^^^^~09/01/1987~
-~15182~^~319~^53.^32^3.^~1~^^^^^^^^^^^~06/01/2002~
-~15182~^~320~^53.^32^3.^~1~^^^^^^^^^^^~06/01/2002~
-~15182~^~417~^10.^3^1.^~1~^^^^^^^^^^^~09/01/1987~
-~15182~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~
-~15182~^~432~^10.^3^1.^~1~^^^^^^^^^^^~09/01/1987~
-~15182~^~435~^10.^0^^~4~^~NC~^^^^^^^^^^~01/01/2001~
-~15182~^~601~^44.^3^11.^~1~^^^^^^^^^^^~09/01/1987~
-~15183~^~208~^198.^0^^~4~^~NC~^^^^^^^^^^~03/01/2006~
-~15183~^~268~^830.^0^^~4~^~NC~^^^^^^^^^^~03/01/2006~
-~15183~^~301~^13.^9^2.^~1~^^^^^^^^^^^~09/01/1987~
-~15183~^~304~^31.^8^1.^~1~^^^^^^^^^^^~09/01/1987~
-~15183~^~305~^311.^9^18.^~1~^^^^^^^^^^^~09/01/1987~
-~15183~^~306~^207.^0^^~1~^^^^^^^^^^^~09/01/1987~
-~15183~^~307~^50.^0^^~1~^^^^^^^^^^^~09/01/1987~
-~15183~^~318~^78.^6^1.^~1~^^^^^^^^^^^~09/01/1987~
-~15183~^~417~^5.^3^1.^~1~^^^^^^^^^^^~09/01/1987~
-~15183~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~
-~15183~^~432~^5.^3^1.^~1~^^^^^^^^^^^~03/01/2006~
-~15183~^~435~^5.^0^^~4~^~NC~^^^^^^^^^^~03/01/2006~
-~15183~^~601~^18.^1^^~1~^^^^^^^^^^^~09/01/1987~
-~15184~^~208~^116.^0^^~4~^~NC~^^^^^^^^^^~03/01/2006~
-~15184~^~268~^487.^0^^~4~^~NC~^^^^^^^^^^~03/01/2006~
-~15184~^~301~^11.^0^^~1~^~A~^^^^^^^^^^~03/01/1997~
-~15184~^~304~^27.^0^^~1~^~A~^^^^^^^^^^~03/01/1997~
-~15184~^~305~^163.^0^^~1~^~A~^^^^^^^^^^~03/01/1997~
-~15184~^~306~^237.^0^^~1~^~A~^^^^^^^^^^~03/01/1997~
-~15184~^~307~^50.^0^^~4~^~CAZN~^^^^^^^^^^~03/01/2006~
-~15184~^~318~^56.^0^^~1~^~A~^^^^^^^^^^~03/01/1997~
-~15184~^~417~^4.^0^^~1~^~A~^^^^^^^^^^~03/01/1997~
-~15184~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~
-~15184~^~432~^4.^0^^~1~^~A~^^^^^^^^^^~03/01/2006~
-~15184~^~435~^4.^0^^~4~^~NC~^^^^^^^^^^~03/01/2006~
-~15184~^~601~^30.^0^^~1~^~A~^^^^^^^^^^~03/01/1997~
-~15185~^~208~^186.^0^^~4~^~NC~^^^^^^^^^^~03/01/2006~
-~15185~^~268~^778.^0^^~4~^~NC~^^^^^^^^^^~03/01/2006~
-~15185~^~301~^4.^0^^~1~^^^^^^^^^^^~09/01/1987~
-~15185~^~304~^34.^0^^~1~^^^^^^^^^^^~09/01/1987~
-~15185~^~305~^267.^0^^~1~^^^^^^^^^^^~09/01/1987~
-~15185~^~306~^333.^0^^~1~^^^^^^^^^^^~09/01/1987~
-~15185~^~307~^50.^0^^~1~^^^^^^^^^^^~09/01/1987~
-~15185~^~318~^80.^0^^~4~^^^^^^^^^^^~09/01/1987~
-~15185~^~417~^5.^3^0.^~1~^^^^^^^^^^^~09/01/1987~
-~15185~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~
-~15185~^~432~^5.^3^0.^~1~^^^^^^^^^^^~03/01/2006~
-~15185~^~435~^5.^0^^~4~^~NC~^^^^^^^^^^~03/01/2006~
-~15185~^~601~^31.^6^3.^~1~^^^^^^^^^^^~09/01/1987~
-~15186~^~208~^128.^0^^~4~^^^^^^^^^^^~08/01/1992~
-~15186~^~268~^536.^0^^~4~^^^^^^^^^^^
-~15186~^~301~^14.^2^^~1~^^^^^^^^^^^~08/01/1992~
-~15186~^~304~^33.^5^1.^~1~^^^^^^^^^^^~08/01/1992~
-~15186~^~305~^217.^2^^~1~^^^^^^^^^^^~08/01/1992~
-~15186~^~306~^237.^6^35.^~1~^^^^^^^^^^^~08/01/1992~
-~15186~^~307~^50.^0^^~4~^^^^^^^^^^^~08/01/1992~
-~15186~^~318~^19.^2^^~1~^^^^^^^^^^^~08/01/1992~
-~15186~^~319~^6.^2^^~1~^^^^^^^^^^^~06/01/2002~
-~15186~^~320~^6.^2^^~1~^^^^^^^^^^^~06/01/2002~
-~15186~^~417~^2.^3^0.^~1~^^^^^^^^^^^~08/01/1992~
-~15186~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~
-~15186~^~432~^2.^3^0.^~1~^^^^^^^^^^^~08/01/1992~
-~15186~^~435~^2.^0^^~4~^~NC~^^^^^^^^^^~01/01/2001~
-~15186~^~601~^42.^0^^~1~^^^^^^^^^^^~08/01/1992~
-~15187~^~208~^146.^0^^~4~^~NC~^^^^^^^^^^~09/01/1987~
-~15187~^~268~^611.^0^^~4~^^^^^^^^^^^
-~15187~^~301~^103.^0^^~1~^^^^^^^^^^^~09/01/1987~
-~15187~^~304~^38.^0^^~1~^^^^^^^^^^^~09/01/1987~
-~15187~^~305~^256.^0^^~1~^^^^^^^^^^^~09/01/1987~
-~15187~^~306~^456.^0^^~1~^^^^^^^^^^^~09/01/1987~
-~15187~^~307~^90.^0^^~1~^^^^^^^^^^^~09/01/1987~
-~15187~^~318~^115.^0^^~1~^^^^^^^^^^^~09/01/1987~
-~15187~^~319~^35.^0^^~1~^^^^^^^^^^^~06/01/2002~
-~15187~^~320~^35.^0^^~1~^^^^^^^^^^^~06/01/2002~
-~15187~^~417~^17.^0^^~1~^^^^^^^^^^^~09/01/1987~
-~15187~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~
-~15187~^~432~^17.^0^^~1~^^^^^^^^^^^~09/01/1987~
-~15187~^~435~^17.^0^^~4~^~NC~^^^^^^^^^^~01/01/2001~
-~15187~^~601~^87.^0^^~1~^^^^^^^^^^^~09/01/1987~
-~15188~^~208~^124.^0^^~4~^~NC~^^^^^^^^^^~09/01/1987~
-~15188~^~268~^519.^0^^~4~^^^^^^^^^^^
-~15188~^~301~^19.^0^^~1~^^^^^^^^^^^~09/01/1987~
-~15188~^~304~^51.^0^^~1~^^^^^^^^^^^~09/01/1987~
-~15188~^~305~^254.^0^^~1~^^^^^^^^^^^~09/01/1987~
-~15188~^~306~^328.^0^^~1~^^^^^^^^^^^~09/01/1987~
-~15188~^~307~^88.^0^^~1~^^^^^^^^^^^~09/01/1987~
-~15188~^~318~^104.^0^^~1~^^^^^^^^^^^~09/01/1987~
-~15188~^~319~^31.^0^^~1~^^^^^^^^^^^~06/01/2002~
-~15188~^~320~^31.^0^^~1~^^^^^^^^^^^~06/01/2002~
-~15188~^~417~^10.^0^^~1~^^^^^^^^^^^~09/01/1987~
-~15188~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~
-~15188~^~432~^10.^0^^~1~^^^^^^^^^^^~09/01/1987~
-~15188~^~435~^10.^0^^~4~^~NC~^^^^^^^^^^~01/01/2001~
-~15188~^~601~^103.^0^^~1~^^^^^^^^^^^~09/01/1987~
-~15189~^~208~^159.^0^^~4~^~NC~^^^^^^^^^^~09/01/1987~
-~15189~^~268~^665.^0^^~4~^^^^^^^^^^^
-~15189~^~301~^9.^0^^~1~^^^^^^^^^^^~09/01/1987~
-~15189~^~304~^42.^0^^~1~^^^^^^^^^^^~09/01/1987~
-~15189~^~305~^291.^0^^~1~^^^^^^^^^^^~09/01/1987~
-~15189~^~306~^477.^0^^~1~^^^^^^^^^^^~09/01/1987~
-~15189~^~307~^77.^0^^~1~^^^^^^^^^^^~09/01/1987~
-~15189~^~318~^459.^0^^~1~^^^^^^^^^^^~09/01/1987~
-~15189~^~319~^138.^0^^~1~^^^^^^^^^^^~06/01/2002~
-~15189~^~320~^138.^0^^~1~^^^^^^^^^^^~06/01/2002~
-~15189~^~417~^2.^0^^~1~^^^^^^^^^^^~09/01/1987~
-~15189~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~
-~15189~^~432~^2.^0^^~1~^^^^^^^^^^^~09/01/1987~
-~15189~^~435~^2.^0^^~4~^~NC~^^^^^^^^^^~01/01/2001~
-~15189~^~601~^76.^0^^~1~^^^^^^^^^^^~09/01/1987~
-~15190~^~208~^115.^0^^~4~^~NC~^^^^^^^^^^~09/01/1987~
-~15190~^~268~^481.^0^^~4~^^^^^^^^^^^
-~15190~^~301~^64.^0^^~1~^^^^^^^^^^^~09/01/1987~
-~15190~^~304~^41.^0^^~1~^^^^^^^^^^^~09/01/1987~
-~15190~^~305~^256.^0^^~1~^^^^^^^^^^^~09/01/1987~
-~15190~^~306~^518.^0^^~1~^^^^^^^^^^^~09/01/1987~
-~15190~^~307~^124.^0^^~1~^^^^^^^^^^^~09/01/1987~
-~15190~^~318~^17.^0^^~1~^^^^^^^^^^^~09/01/1987~
-~15190~^~319~^5.^0^^~1~^^^^^^^^^^^~06/01/2002~
-~15190~^~320~^5.^0^^~1~^^^^^^^^^^^~06/01/2002~
-~15190~^~417~^1.^0^^~1~^^^^^^^^^^^~09/01/1987~
-~15190~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~
-~15190~^~432~^1.^0^^~1~^^^^^^^^^^^~09/01/1987~
-~15190~^~435~^1.^0^^~4~^~NC~^^^^^^^^^^~01/01/2001~
-~15190~^~601~^77.^0^^~1~^^^^^^^^^^^~09/01/1987~
-~15191~^~208~^187.^0^^~4~^~NC~^^^^^^^^^^~09/01/1987~
-~15191~^~268~^782.^0^^~4~^^^^^^^^^^^
-~15191~^~301~^28.^0^^~1~^^^^^^^^^^^~09/01/1987~
-~15191~^~304~^32.^0^^~1~^^^^^^^^^^^~09/01/1987~
-~15191~^~305~^308.^0^^~1~^^^^^^^^^^^~09/01/1987~
-~15191~^~306~^481.^0^^~1~^^^^^^^^^^^~09/01/1987~
-~15191~^~307~^114.^0^^~1~^^^^^^^^^^^~09/01/1987~
-~15191~^~318~^109.^0^^~1~^^^^^^^^^^^~09/01/1987~
-~15191~^~319~^33.^0^^~1~^^^^^^^^^^^~06/01/2002~
-~15191~^~320~^33.^0^^~1~^^^^^^^^^^^~06/01/2002~
-~15191~^~417~^17.^0^^~1~^^^^^^^^^^^~09/01/1987~
-~15191~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~
-~15191~^~432~^17.^0^^~1~^^^^^^^^^^^~09/01/1987~
-~15191~^~435~^17.^0^^~4~^~NC~^^^^^^^^^^~01/01/2001~
-~15191~^~601~^83.^0^^~1~^^^^^^^^^^^~09/01/1987~
-~15192~^~208~^85.^0^^~4~^~NC~^^^^^^^^^^~07/01/2010~
-~15192~^~262~^0.^0^^~4~^~RA~^^^^^^^^^^~07/01/2010~
-~15192~^~263~^0.^0^^~4~^~RA~^^^^^^^^^^~07/01/2010~
-~15192~^~268~^354.^0^^~4~^~RA~^^^^^^^^^^~07/01/2010~
-~15192~^~301~^10.^0^^~4~^~RA~^^^^^^^^^^~07/01/2010~
-~15192~^~304~^24.^0^^~4~^~RA~^^^^^^^^^^~07/01/2010~
-~15192~^~305~^345.^0^^~4~^~RA~^^^^^^^^^^~07/01/2010~
-~15192~^~306~^289.^0^^~4~^~RA~^^^^^^^^^^~07/01/2010~
-~15192~^~307~^372.^0^^~4~^~RA~^^^^^^^^^^~07/01/2010~
-~15192~^~318~^7.^0^^~4~^~RA~^^^^^^^^^^~07/01/2010~
-~15192~^~319~^2.^0^^~4~^~RA~^^^^^^^^^^~07/01/2010~
-~15192~^~320~^2.^0^^~4~^~RA~^^^^^^^^^^~07/01/2010~
-~15192~^~321~^0.^0^^~4~^~RA~^^^^^^^^^^~07/01/2010~
-~15192~^~322~^0.^0^^~4~^~RA~^^^^^^^^^^~07/01/2010~
-~15192~^~324~^24.^0^^~4~^~RA~^^^^^^^^^^~07/01/2010~
-~15192~^~334~^0.^0^^~4~^~RA~^^^^^^^^^^~07/01/2010~
-~15192~^~337~^0.^0^^~4~^~RA~^^^^^^^^^^~07/01/2010~
-~15192~^~338~^0.^0^^~4~^~RA~^^^^^^^^^^~07/01/2010~
-~15192~^~417~^8.^0^^~4~^~RA~^^^^^^^^^^~07/01/2010~
-~15192~^~431~^0.^0^^~4~^~RA~^^^^^^^^^^~07/01/2010~
-~15192~^~432~^8.^0^^~4~^~RA~^^^^^^^^^^~07/01/2010~
-~15192~^~435~^8.^0^^~4~^~NC~^^^^^^^^^^~07/01/2010~
-~15192~^~601~^57.^0^^~4~^~RA~^^^^^^^^^^~07/01/2010~
-~15193~^~208~^112.^0^^~4~^~NC~^^^^^^^^^^~09/01/1987~
-~15193~^~268~^469.^0^^~4~^^^^^^^^^^^
-~15193~^~301~^13.^0^^~1~^^^^^^^^^^^~09/01/1987~
-~15193~^~304~^40.^0^^~1~^^^^^^^^^^^~09/01/1987~
-~15193~^~305~^262.^0^^~1~^^^^^^^^^^^~09/01/1987~
-~15193~^~306~^503.^0^^~1~^^^^^^^^^^^~09/01/1987~
-~15193~^~307~^40.^0^^~1~^^^^^^^^^^^~09/01/1987~
-~15193~^~318~^69.^0^^~1~^^^^^^^^^^^~09/01/1987~
-~15193~^~319~^21.^0^^~1~^^^^^^^^^^^~06/01/2002~
-~15193~^~320~^21.^0^^~1~^^^^^^^^^^^~06/01/2002~
-~15193~^~417~^2.^0^^~1~^^^^^^^^^^^~09/01/1987~
-~15193~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~
-~15193~^~432~^2.^0^^~1~^^^^^^^^^^^~09/01/1987~
-~15193~^~435~^2.^0^^~4~^~NC~^^^^^^^^^^~01/01/2001~
-~15193~^~601~^53.^0^^~1~^^^^^^^^^^^~09/01/1987~
-~15194~^~208~^109.^0^^~4~^~NC~^^^^^^^^^^~09/01/1987~
-~15194~^~268~^456.^0^^~4~^^^^^^^^^^^
-~15194~^~301~^19.^0^^~1~^^^^^^^^^^^~09/01/1987~
-~15194~^~304~^38.^0^^~1~^^^^^^^^^^^~09/01/1987~
-~15194~^~305~^183.^0^^~1~^^^^^^^^^^^~09/01/1987~
-~15194~^~306~^533.^0^^~1~^^^^^^^^^^^~09/01/1987~
-~15194~^~307~^113.^0^^~1~^^^^^^^^^^^~09/01/1987~
-~15194~^~318~^208.^0^^~1~^^^^^^^^^^^~09/01/1987~
-~15194~^~319~^62.^0^^~1~^^^^^^^^^^^~06/01/2002~
-~15194~^~320~^62.^0^^~1~^^^^^^^^^^^~06/01/2002~
-~15194~^~417~^6.^0^^~1~^^^^^^^^^^^~09/01/1987~
-~15194~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~
-~15194~^~432~^6.^0^^~1~^^^^^^^^^^^~09/01/1987~
-~15194~^~435~^6.^0^^~4~^~NC~^^^^^^^^^^~01/01/2001~
-~15194~^~601~^94.^0^^~1~^^^^^^^^^^^~09/01/1987~
-~15195~^~208~^153.^0^^~4~^~NC~^^^^^^^^^^~09/01/1987~
-~15195~^~268~^640.^0^^~4~^^^^^^^^^^^
-~15195~^~301~^77.^0^^~1~^^^^^^^^^^^~09/01/1987~
-~15195~^~304~^38.^0^^~1~^^^^^^^^^^^~09/01/1987~
-~15195~^~305~^231.^0^^~1~^^^^^^^^^^^~09/01/1987~
-~15195~^~306~^353.^0^^~1~^^^^^^^^^^^~09/01/1987~
-~15195~^~307~^96.^0^^~1~^^^^^^^^^^^~09/01/1987~
-~15195~^~318~^196.^0^^~1~^^^^^^^^^^^~09/01/1987~
-~15195~^~319~^59.^0^^~1~^^^^^^^^^^^~06/01/2002~
-~15195~^~320~^59.^0^^~1~^^^^^^^^^^^~06/01/2002~
-~15195~^~417~^17.^0^^~1~^^^^^^^^^^^~09/01/1987~
-~15195~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~
-~15195~^~432~^17.^0^^~1~^^^^^^^^^^^~09/01/1987~
-~15195~^~435~^17.^0^^~4~^~NC~^^^^^^^^^^~01/01/2001~
-~15195~^~601~^82.^0^^~1~^^^^^^^^^^^~09/01/1987~
-~15196~^~208~^239.^0^^~4~^~NC~^^^^^^^^^^~09/01/1987~
-~15196~^~268~^1000.^0^^~4~^^^^^^^^^^^
-~15196~^~301~^4.^0^^~1~^^^^^^^^^^^~09/01/1987~
-~15196~^~304~^33.^0^^~1~^^^^^^^^^^^~09/01/1987~
-~15196~^~305~^210.^0^^~1~^^^^^^^^^^^~09/01/1987~
-~15196~^~306~^344.^0^^~1~^^^^^^^^^^^~09/01/1987~
-~15196~^~307~^103.^0^^~1~^^^^^^^^^^^~09/01/1987~
-~15196~^~318~^60.^0^^~1~^^^^^^^^^^^~09/01/1987~
-~15196~^~319~^18.^0^^~1~^^^^^^^^^^^~06/01/2002~
-~15196~^~320~^18.^0^^~1~^^^^^^^^^^^~06/01/2002~
-~15196~^~417~^1.^0^^~1~^^^^^^^^^^^~09/01/1987~
-~15196~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~
-~15196~^~432~^1.^0^^~1~^^^^^^^^^^^~09/01/1987~
-~15196~^~435~^1.^0^^~4~^~NC~^^^^^^^^^^~01/01/2001~
-~15196~^~601~^59.^0^^~1~^^^^^^^^^^^~09/01/1987~
-~15197~^~208~^250.^0^^~4~^~NC~^^^^^^^^^^~09/01/1987~
-~15197~^~268~^1046.^0^^~4~^^^^^^^^^^^
-~15197~^~301~^106.^0^^~1~^^^^^^^^^^^~09/01/1987~
-~15197~^~304~^41.^0^^~1~^^^^^^^^^^^~09/01/1987~
-~15197~^~305~^292.^0^^~1~^^^^^^^^^^^~09/01/1987~
-~15197~^~306~^542.^0^^~1~^^^^^^^^^^^~09/01/1987~
-~15197~^~307~^95.^0^^~1~^^^^^^^^^^^~09/01/1987~
-~15197~^~318~^116.^0^^~1~^^^^^^^^^^^~09/01/1987~
-~15197~^~319~^35.^0^^~1~^^^^^^^^^^^~06/01/2002~
-~15197~^~320~^35.^0^^~1~^^^^^^^^^^^~06/01/2002~
-~15197~^~417~^6.^0^^~1~^^^^^^^^^^^~09/01/1987~
-~15197~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~
-~15197~^~432~^6.^0^^~1~^^^^^^^^^^^~09/01/1987~
-~15197~^~435~^6.^0^^~4~^~NC~^^^^^^^^^^~01/01/2001~
-~15197~^~601~^99.^0^^~1~^^^^^^^^^^^~09/01/1987~
-~15198~^~208~^111.^0^^~4~^~NC~^^^^^^^^^^~09/01/1987~
-~15198~^~268~^464.^0^^~4~^^^^^^^^^^^
-~15198~^~301~^44.^0^^~1~^^^^^^^^^^^~09/01/1987~
-~15198~^~304~^81.^0^^~1~^^^^^^^^^^^~09/01/1987~
-~15198~^~305~^254.^0^^~1~^^^^^^^^^^^~09/01/1987~
-~15198~^~306~^486.^0^^~1~^^^^^^^^^^^~09/01/1987~
-~15198~^~307~^173.^0^^~1~^^^^^^^^^^^~09/01/1987~
-~15198~^~318~^115.^0^^~1~^^^^^^^^^^^~09/01/1987~
-~15198~^~319~^35.^0^^~1~^^^^^^^^^^^~06/01/2002~
-~15198~^~320~^35.^0^^~1~^^^^^^^^^^^~06/01/2002~
-~15198~^~417~^8.^0^^~1~^^^^^^^^^^^~09/01/1987~
-~15198~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~
-~15198~^~432~^8.^0^^~1~^^^^^^^^^^^~09/01/1987~
-~15198~^~435~^8.^0^^~4~^~NC~^^^^^^^^^^~01/01/2001~
-~15198~^~601~^51.^0^^~1~^^^^^^^^^^^~09/01/1987~
-~15199~^~208~^109.^0^^~4~^~NC~^^^^^^^^^^~09/01/1987~
-~15199~^~268~^456.^0^^~4~^^^^^^^^^^^
-~15199~^~301~^18.^0^^~1~^^^^^^^^^^^~09/01/1987~
-~15199~^~304~^33.^0^^~1~^^^^^^^^^^^~09/01/1987~
-~15199~^~305~^258.^0^^~1~^^^^^^^^^^^~09/01/1987~
-~15199~^~306~^560.^0^^~1~^^^^^^^^^^^~09/01/1987~
-~15199~^~307~^76.^0^^~1~^^^^^^^^^^^~09/01/1987~
-~15199~^~318~^58.^0^^~1~^^^^^^^^^^^~09/01/1987~
-~15199~^~319~^17.^0^^~1~^^^^^^^^^^^~06/01/2002~
-~15199~^~320~^17.^0^^~1~^^^^^^^^^^^~06/01/2002~
-~15199~^~417~^10.^0^^~1~^^^^^^^^^^^~09/01/1987~
-~15199~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~
-~15199~^~432~^10.^0^^~1~^^^^^^^^^^^~09/01/1987~
-~15199~^~435~^10.^0^^~4~^~NC~^^^^^^^^^^~01/01/2001~
-~15199~^~601~^67.^0^^~1~^^^^^^^^^^^~09/01/1987~
-~15200~^~208~^134.^0^^~4~^~NC~^^^^^^^^^^~09/01/1987~
-~15200~^~268~^561.^0^^~4~^^^^^^^^^^^
-~15200~^~301~^40.^0^^~1~^^^^^^^^^^^~09/01/1987~
-~15200~^~304~^41.^0^^~1~^^^^^^^^^^^~09/01/1987~
-~15200~^~305~^318.^0^^~1~^^^^^^^^^^^~09/01/1987~
-~15200~^~306~^558.^0^^~1~^^^^^^^^^^^~09/01/1987~
-~15200~^~307~^203.^0^^~1~^^^^^^^^^^^~09/01/1987~
-~15200~^~318~^839.^0^^~1~^^^^^^^^^^^~09/01/1987~
-~15200~^~319~^252.^0^^~1~^^^^^^^^^^^~06/01/2002~
-~15200~^~320~^252.^0^^~1~^^^^^^^^^^^~06/01/2002~
-~15200~^~417~^9.^0^^~1~^^^^^^^^^^^~09/01/1987~
-~15200~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~
-~15200~^~432~^9.^0^^~1~^^^^^^^^^^^~09/01/1987~
-~15200~^~435~^9.^0^^~4~^~NC~^^^^^^^^^^~01/01/2001~
-~15200~^~601~^68.^0^^~1~^^^^^^^^^^^~09/01/1987~
-~15201~^~208~^201.^0^^~4~^~NC~^^^^^^^^^^~09/01/1987~
-~15201~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~
-~15201~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~
-~15201~^~268~^841.^0^^~4~^^^^^^^^^^^~03/01/2009~
-~15201~^~301~^29.^0^^~1~^^^^^^^^^^^~09/01/1987~
-~15201~^~304~^36.^0^^~1~^^^^^^^^^^^~09/01/1987~
-~15201~^~305~^160.^0^^~1~^^^^^^^^^^^~09/01/1987~
-~15201~^~306~^521.^0^^~1~^^^^^^^^^^^~09/01/1987~
-~15201~^~307~^110.^0^^~1~^^^^^^^^^^^~09/01/1987~
-~15201~^~318~^77.^0^^~4~^~NC~^^^^^^^^^^~03/01/2009~
-~15201~^~319~^23.^0^^~4~^~BFYN~^~15050~^^^^^^^^^~03/01/2009~
-~15201~^~320~^23.^0^^~4~^~NC~^^^^^^^^^^~03/01/2009~
-~15201~^~321~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~
-~15201~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~
-~15201~^~324~^457.^0^^~4~^~BFYN~^~15050~^^^^^^^^^~03/01/2009~
-~15201~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~
-~15201~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~
-~15201~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~
-~15201~^~417~^2.^0^^~1~^^^^^^^^^^^~09/01/1987~
-~15201~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~
-~15201~^~432~^2.^0^^~1~^^^^^^^^^^^~03/01/2009~
-~15201~^~435~^2.^0^^~4~^~NC~^^^^^^^^^^~03/01/2009~
-~15201~^~601~^60.^0^^~1~^^^^^^^^^^^~09/01/1987~
-~15202~^~208~^190.^0^^~4~^~NC~^^^^^^^^^^~09/01/1987~
-~15202~^~268~^795.^0^^~4~^^^^^^^^^^^
-~15202~^~301~^65.^0^^~1~^^^^^^^^^^^~09/01/1987~
-~15202~^~304~^38.^0^^~1~^^^^^^^^^^^~09/01/1987~
-~15202~^~305~^208.^0^^~1~^^^^^^^^^^^~09/01/1987~
-~15202~^~306~^374.^0^^~1~^^^^^^^^^^^~09/01/1987~
-~15202~^~307~^92.^0^^~1~^^^^^^^^^^^~09/01/1987~
-~15202~^~318~^109.^0^^~1~^^^^^^^^^^^~09/01/1987~
-~15202~^~319~^33.^0^^~1~^^^^^^^^^^^~06/01/2002~
-~15202~^~320~^33.^0^^~1~^^^^^^^^^^^~06/01/2002~
-~15202~^~417~^18.^0^^~1~^^^^^^^^^^^~09/01/1987~
-~15202~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~
-~15202~^~432~^18.^0^^~1~^^^^^^^^^^^~09/01/1987~
-~15202~^~435~^18.^0^^~4~^~NC~^^^^^^^^^^~01/01/2001~
-~15202~^~601~^67.^0^^~1~^^^^^^^^^^^~09/01/1987~
-~15203~^~208~^97.^0^^~4~^~NC~^^^^^^^^^^~09/01/1987~
-~15203~^~268~^406.^0^^~4~^^^^^^^^^^^
-~15203~^~301~^10.^0^^~1~^^^^^^^^^^^~09/01/1987~
-~15203~^~304~^27.^0^^~1~^^^^^^^^^^^~09/01/1987~
-~15203~^~305~^256.^0^^~1~^^^^^^^^^^^~09/01/1987~
-~15203~^~306~^513.^0^^~1~^^^^^^^^^^^~09/01/1987~
-~15203~^~307~^23.^0^^~1~^^^^^^^^^^^~09/01/1987~
-~15203~^~318~^46.^0^^~1~^^^^^^^^^^^~09/01/1987~
-~15203~^~319~^14.^0^^~1~^^^^^^^^^^^~06/01/2002~
-~15203~^~320~^14.^0^^~1~^^^^^^^^^^^~06/01/2002~
-~15203~^~417~^8.^0^^~1~^^^^^^^^^^^~09/01/1987~
-~15203~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~
-~15203~^~432~^8.^0^^~1~^^^^^^^^^^^~09/01/1987~
-~15203~^~435~^8.^0^^~4~^~NC~^^^^^^^^^^~01/01/2001~
-~15203~^~601~^32.^0^^~1~^^^^^^^^^^^~09/01/1987~
-~15204~^~208~^119.^0^^~4~^~NC~^^^^^^^^^^~09/01/1987~
-~15204~^~268~^498.^0^^~4~^^^^^^^^^^^
-~15204~^~301~^141.^0^^~1~^^^^^^^^^^^~09/01/1987~
-~15204~^~304~^38.^0^^~1~^^^^^^^^^^^~09/01/1987~
-~15204~^~305~^269.^0^^~1~^^^^^^^^^^^~09/01/1987~
-~15204~^~306~^499.^0^^~1~^^^^^^^^^^^~09/01/1987~
-~15204~^~307~^65.^0^^~1~^^^^^^^^^^^~09/01/1987~
-~15204~^~318~^81.^0^^~1~^^^^^^^^^^^~09/01/1987~
-~15204~^~319~^24.^0^^~1~^^^^^^^^^^^~06/01/2002~
-~15204~^~320~^24.^0^^~1~^^^^^^^^^^^~06/01/2002~
-~15204~^~417~^17.^0^^~1~^^^^^^^^^^^~09/01/1987~
-~15204~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~
-~15204~^~432~^17.^0^^~1~^^^^^^^^^^^~09/01/1987~
-~15204~^~435~^17.^0^^~4~^~NC~^^^^^^^^^^~01/01/2001~
-~15204~^~601~^110.^0^^~1~^^^^^^^^^^^~09/01/1987~
-~15205~^~208~^118.^0^^~4~^~NC~^^^^^^^^^^~09/01/1987~
-~15205~^~268~^494.^0^^~4~^^^^^^^^^^^
-~15205~^~301~^77.^0^^~1~^^^^^^^^^^^~09/01/1987~
-~15205~^~304~^86.^0^^~1~^^^^^^^^^^^~09/01/1987~
-~15205~^~305~^283.^0^^~1~^^^^^^^^^^^~09/01/1987~
-~15205~^~306~^456.^0^^~1~^^^^^^^^^^^~09/01/1987~
-~15205~^~307~^110.^0^^~1~^^^^^^^^^^^~09/01/1987~
-~15205~^~318~^40.^0^^~1~^^^^^^^^^^^~09/01/1987~
-~15205~^~319~^12.^0^^~1~^^^^^^^^^^^~06/01/2002~
-~15205~^~320~^12.^0^^~1~^^^^^^^^^^^~06/01/2002~
-~15205~^~417~^3.^0^^~1~^^^^^^^^^^^~09/01/1987~
-~15205~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~
-~15205~^~432~^3.^0^^~1~^^^^^^^^^^^~09/01/1987~
-~15205~^~435~^3.^0^^~4~^~NC~^^^^^^^^^^~01/01/2001~
-~15205~^~601~^91.^0^^~1~^^^^^^^^^^^~09/01/1987~
-~15206~^~208~^102.^0^^~4~^~NC~^^^^^^^^^^~09/01/1987~
-~15206~^~268~^427.^0^^~4~^^^^^^^^^^^
-~15206~^~301~^13.^0^^~1~^^^^^^^^^^^~09/01/1987~
-~15206~^~304~^17.^0^^~1~^^^^^^^^^^^~09/01/1987~
-~15206~^~305~^256.^0^^~1~^^^^^^^^^^^~09/01/1987~
-~15206~^~306~^513.^0^^~1~^^^^^^^^^^^~09/01/1987~
-~15206~^~307~^78.^0^^~1~^^^^^^^^^^^~09/01/1987~
-~15206~^~318~^46.^0^^~1~^^^^^^^^^^^~09/01/1987~
-~15206~^~319~^14.^0^^~1~^^^^^^^^^^^~06/01/2002~
-~15206~^~320~^14.^0^^~1~^^^^^^^^^^^~06/01/2002~
-~15206~^~417~^8.^0^^~1~^^^^^^^^^^^~09/01/1987~
-~15206~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~
-~15206~^~432~^8.^0^^~1~^^^^^^^^^^^~09/01/1987~
-~15206~^~435~^8.^0^^~4~^~NC~^^^^^^^^^^~01/01/2001~
-~15206~^~601~^67.^0^^~1~^^^^^^^^^^^~09/01/1987~
-~15207~^~208~^204.^0^^~4~^~NC~^^^^^^^^^^~09/01/1987~
-~15207~^~268~^854.^0^^~4~^^^^^^^^^^^
-~15207~^~301~^28.^0^^~1~^^^^^^^^^^^~09/01/1987~
-~15207~^~304~^26.^0^^~1~^^^^^^^^^^^~09/01/1987~
-~15207~^~305~^515.^0^^~1~^^^^^^^^^^^~09/01/1987~
-~15207~^~306~^283.^0^^~1~^^^^^^^^^^^~09/01/1987~
-~15207~^~307~^117.^0^^~1~^^^^^^^^^^^~09/01/1987~
-~15207~^~318~^303.^0^^~1~^^^^^^^^^^^~09/01/1987~
-~15207~^~319~^91.^0^^~1~^^^^^^^^^^^~06/01/2002~
-~15207~^~320~^91.^0^^~1~^^^^^^^^^^^~06/01/2002~
-~15207~^~417~^92.^0^^~1~^^^^^^^^^^^~09/01/1987~
-~15207~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~
-~15207~^~432~^92.^0^^~1~^^^^^^^^^^^~09/01/1987~
-~15207~^~435~^92.^0^^~4~^~NC~^^^^^^^^^^~01/01/2001~
-~15207~^~601~^479.^0^^~1~^^^^^^^^^^^~09/01/1987~
-~15208~^~208~^250.^0^^~4~^~NC~^^^^^^^^^^~09/01/1987~
-~15208~^~268~^1046.^0^^~4~^^^^^^^^^^^
-~15208~^~301~^45.^0^^~1~^^^^^^^^^^^~09/01/1987~
-~15208~^~304~^71.^0^^~1~^^^^^^^^^^^~09/01/1987~
-~15208~^~305~^215.^0^^~1~^^^^^^^^^^^~09/01/1987~
-~15208~^~306~^459.^0^^~1~^^^^^^^^^^^~09/01/1987~
-~15208~^~307~^72.^0^^~1~^^^^^^^^^^^~09/01/1987~
-~15208~^~318~^338.^0^^~1~^^^^^^^^^^^~09/01/1987~
-~15208~^~319~^102.^0^^~1~^^^^^^^^^^^~06/01/2002~
-~15208~^~320~^102.^0^^~1~^^^^^^^^^^^~06/01/2002~
-~15208~^~417~^17.^0^^~1~^^^^^^^^^^^~09/01/1987~
-~15208~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~
-~15208~^~432~^17.^0^^~1~^^^^^^^^^^^~09/01/1987~
-~15208~^~435~^17.^0^^~4~^~NC~^^^^^^^^^^~01/01/2001~
-~15208~^~601~^63.^0^^~1~^^^^^^^^^^^~09/01/1987~
-~15209~^~208~^182.^0^^~4~^~NC~^^^^^^^^^^~09/01/1987~
-~15209~^~268~^761.^0^^~4~^^^^^^^^^^^
-~15209~^~301~^15.^0^^~1~^^^^^^^^^^^~09/01/1987~
-~15209~^~304~^37.^0^^~1~^^^^^^^^^^^~09/01/1987~
-~15209~^~305~^256.^0^^~1~^^^^^^^^^^^~09/01/1987~
-~15209~^~306~^628.^0^^~1~^^^^^^^^^^^~09/01/1987~
-~15209~^~307~^56.^0^^~1~^^^^^^^^^^^~09/01/1987~
-~15209~^~318~^44.^0^^~1~^^^^^^^^^^^~09/01/1987~
-~15209~^~319~^13.^0^^~1~^^^^^^^^^^^~06/01/2002~
-~15209~^~320~^13.^0^^~1~^^^^^^^^^^^~06/01/2002~
-~15209~^~417~^29.^0^^~1~^^^^^^^^^^^~09/01/1987~
-~15209~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~
-~15209~^~432~^29.^0^^~1~^^^^^^^^^^^~09/01/1987~
-~15209~^~435~^29.^0^^~4~^~NC~^^^^^^^^^^~01/01/2001~
-~15209~^~601~^71.^0^^~1~^^^^^^^^^^^~09/01/1987~
-~15210~^~208~^231.^0^^~4~^~NC~^^^^^^^^^^~09/01/1987~
-~15210~^~268~^967.^0^^~4~^^^^^^^^^^^
-~15210~^~301~^28.^0^^~1~^^^^^^^^^^^~09/01/1987~
-~15210~^~304~^122.^0^^~1~^^^^^^^^^^^~09/01/1987~
-~15210~^~305~^371.^0^^~1~^^^^^^^^^^^~09/01/1987~
-~15210~^~306~^505.^0^^~1~^^^^^^^^^^^~09/01/1987~
-~15210~^~307~^60.^0^^~1~^^^^^^^^^^^~09/01/1987~
-~15210~^~318~^496.^0^^~1~^^^^^^^^^^^~09/01/1987~
-~15210~^~319~^149.^0^^~1~^^^^^^^^^^^~06/01/2002~
-~15210~^~320~^149.^0^^~1~^^^^^^^^^^^~06/01/2002~
-~15210~^~417~^35.^0^^~1~^^^^^^^^^^^~09/01/1987~
-~15210~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~
-~15210~^~432~^35.^0^^~1~^^^^^^^^^^^~09/01/1987~
-~15210~^~435~^35.^0^^~4~^~NC~^^^^^^^^^^~01/01/2001~
-~15210~^~601~^85.^0^^~1~^^^^^^^^^^^~09/01/1987~
-~15211~^~208~^154.^0^^~4~^~NC~^^^^^^^^^^~09/01/1987~
-~15211~^~268~^644.^0^^~4~^^^^^^^^^^^
-~15211~^~301~^14.^0^^~1~^^^^^^^^^^^~09/01/1987~
-~15211~^~304~^28.^0^^~1~^^^^^^^^^^^~09/01/1987~
-~15211~^~305~^363.^0^^~1~^^^^^^^^^^^~09/01/1987~
-~15211~^~306~^550.^0^^~1~^^^^^^^^^^^~09/01/1987~
-~15211~^~307~^64.^0^^~1~^^^^^^^^^^^~09/01/1987~
-~15211~^~318~^114.^0^^~1~^^^^^^^^^^^~09/01/1987~
-~15211~^~319~^34.^0^^~1~^^^^^^^^^^^~06/01/2002~
-~15211~^~320~^34.^0^^~1~^^^^^^^^^^^~06/01/2002~
-~15211~^~417~^5.^0^^~1~^^^^^^^^^^^~09/01/1987~
-~15211~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~
-~15211~^~432~^5.^0^^~1~^^^^^^^^^^^~09/01/1987~
-~15211~^~435~^5.^0^^~4~^~NC~^^^^^^^^^^~01/01/2001~
-~15211~^~601~^95.^0^^~1~^^^^^^^^^^^~09/01/1987~
-~15212~^~208~^153.^0^^~4~^~NC~^^^^^^^^^^~07/01/2010~
-~15212~^~262~^0.^0^^~4~^~RA~^^^^^^^^^^~07/01/2010~
-~15212~^~263~^0.^0^^~4~^~RA~^^^^^^^^^^~07/01/2010~
-~15212~^~268~^638.^0^^~4~^~RA~^^^^^^^^^^~07/01/2010~
-~15212~^~301~^8.^0^^~4~^~RA~^^^^^^^^^^~07/01/2010~
-~15212~^~304~^32.^0^^~4~^~RA~^^^^^^^^^^~07/01/2010~
-~15212~^~305~^313.^0^^~4~^~RA~^^^^^^^^^^~07/01/2010~
-~15212~^~306~^439.^0^^~4~^~RA~^^^^^^^^^^~07/01/2010~
-~15212~^~307~^90.^0^^~4~^~RA~^^^^^^^^^^~07/01/2010~
-~15212~^~318~^126.^0^^~4~^~RA~^^^^^^^^^^~07/01/2010~
-~15212~^~319~^42.^0^^~4~^~RA~^^^^^^^^^^~07/01/2010~
-~15212~^~320~^42.^0^^~4~^~RA~^^^^^^^^^^~07/01/2010~
-~15212~^~321~^0.^0^^~4~^~RA~^^^^^^^^^^~07/01/2010~
-~15212~^~322~^0.^0^^~4~^~RA~^^^^^^^^^^~07/01/2010~
-~15212~^~324~^522.^0^^~4~^~RA~^^^^^^^^^^~07/01/2010~
-~15212~^~334~^0.^0^^~4~^~RA~^^^^^^^^^^~07/01/2010~
-~15212~^~337~^0.^0^^~4~^~RA~^^^^^^^^^^~07/01/2010~
-~15212~^~338~^0.^0^^~4~^~RA~^^^^^^^^^^~07/01/2010~
-~15212~^~417~^5.^0^^~4~^~RA~^^^^^^^^^^~07/01/2010~
-~15212~^~431~^0.^0^^~4~^~RA~^^^^^^^^^^~07/01/2010~
-~15212~^~432~^5.^0^^~4~^~RA~^^^^^^^^^^~07/01/2010~
-~15212~^~435~^5.^0^^~4~^~NC~^^^^^^^^^^~07/01/2010~
-~15212~^~601~^55.^0^^~4~^~RA~^^^^^^^^^^~07/01/2010~
-~15213~^~208~^135.^0^^~4~^~NC~^^^^^^^^^^~09/01/1987~
-~15213~^~268~^565.^0^^~4~^^^^^^^^^^^
-~15213~^~301~^51.^0^^~1~^^^^^^^^^^^~09/01/1987~
-~15213~^~304~^29.^0^^~1~^^^^^^^^^^^~09/01/1987~
-~15213~^~305~^237.^0^^~1~^^^^^^^^^^^~09/01/1987~
-~15213~^~306~^368.^0^^~1~^^^^^^^^^^^~09/01/1987~
-~15213~^~307~^54.^0^^~1~^^^^^^^^^^^~09/01/1987~
-~15213~^~318~^104.^0^^~1~^^^^^^^^^^^~09/01/1987~
-~15213~^~319~^31.^0^^~1~^^^^^^^^^^^~06/01/2002~
-~15213~^~320~^31.^0^^~1~^^^^^^^^^^^~06/01/2002~
-~15213~^~417~^17.^0^^~1~^^^^^^^^^^^~09/01/1987~
-~15213~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~
-~15213~^~432~^17.^0^^~1~^^^^^^^^^^^~09/01/1987~
-~15213~^~435~^17.^0^^~4~^~NC~^^^^^^^^^^~01/01/2001~
-~15213~^~601~^67.^0^^~1~^^^^^^^^^^^~09/01/1987~
-~15214~^~208~^133.^0^^~4~^~NC~^^^^^^^^^^~09/01/1987~
-~15214~^~268~^556.^0^^~4~^^^^^^^^^^^
-~15214~^~301~^22.^0^^~1~^^^^^^^^^^^~09/01/1987~
-~15214~^~304~^40.^0^^~1~^^^^^^^^^^^~09/01/1987~
-~15214~^~305~^321.^0^^~1~^^^^^^^^^^^~09/01/1987~
-~15214~^~306~^437.^0^^~1~^^^^^^^^^^^~09/01/1987~
-~15214~^~307~^74.^0^^~1~^^^^^^^^^^^~09/01/1987~
-~15214~^~318~^115.^0^^~1~^^^^^^^^^^^~09/01/1987~
-~15214~^~319~^35.^0^^~1~^^^^^^^^^^^~06/01/2002~
-~15214~^~320~^35.^0^^~1~^^^^^^^^^^^~06/01/2002~
-~15214~^~417~^6.^0^^~1~^^^^^^^^^^^~09/01/1987~
-~15214~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~
-~15214~^~432~^6.^0^^~1~^^^^^^^^^^^~09/01/1987~
-~15214~^~435~^6.^0^^~4~^~NC~^^^^^^^^^^~01/01/2001~
-~15214~^~601~^106.^0^^~1~^^^^^^^^^^^~09/01/1987~
-~15215~^~208~^252.^0^^~4~^~NC~^^^^^^^^^^~09/01/1987~
-~15215~^~268~^1054.^0^^~4~^^^^^^^^^^^
-~15215~^~301~^60.^0^^~1~^^^^^^^^^^^~09/01/1987~
-~15215~^~304~^38.^0^^~1~^^^^^^^^^^^~09/01/1987~
-~15215~^~305~^349.^0^^~1~^^^^^^^^^^^~09/01/1987~
-~15215~^~306~^492.^0^^~1~^^^^^^^^^^^~09/01/1987~
-~15215~^~307~^65.^0^^~1~^^^^^^^^^^^~09/01/1987~
-~15215~^~318~^120.^0^^~1~^^^^^^^^^^^~09/01/1987~
-~15215~^~319~^36.^0^^~1~^^^^^^^^^^^~06/01/2002~
-~15215~^~320~^36.^0^^~1~^^^^^^^^^^^~06/01/2002~
-~15215~^~417~^17.^0^^~1~^^^^^^^^^^^~09/01/1987~
-~15215~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~
-~15215~^~432~^17.^0^^~1~^^^^^^^^^^^~09/01/1987~
-~15215~^~435~^17.^0^^~4~^~NC~^^^^^^^^^^~01/01/2001~
-~15215~^~601~^96.^0^^~1~^^^^^^^^^^^~09/01/1987~
-~15216~^~208~^158.^0^^~4~^~NC~^^^^^^^^^^~09/01/1987~
-~15216~^~268~^661.^0^^~4~^^^^^^^^^^^
-~15216~^~301~^18.^0^^~1~^^^^^^^^^^^~09/01/1987~
-~15216~^~304~^54.^0^^~1~^^^^^^^^^^^~09/01/1987~
-~15216~^~305~^238.^0^^~1~^^^^^^^^^^^~09/01/1987~
-~15216~^~306~^636.^0^^~1~^^^^^^^^^^^~09/01/1987~
-~15216~^~307~^37.^0^^~1~^^^^^^^^^^^~09/01/1987~
-~15216~^~318~^115.^0^^~1~^^^^^^^^^^^~09/01/1987~
-~15216~^~319~^35.^0^^~1~^^^^^^^^^^^~06/01/2002~
-~15216~^~320~^35.^0^^~1~^^^^^^^^^^^~06/01/2002~
-~15216~^~417~^6.^0^^~1~^^^^^^^^^^^~09/01/1987~
-~15216~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~
-~15216~^~432~^6.^0^^~1~^^^^^^^^^^^~09/01/1987~
-~15216~^~435~^6.^0^^~4~^~NC~^^^^^^^^^^~01/01/2001~
-~15216~^~601~^77.^0^^~1~^^^^^^^^^^^~09/01/1987~
-~15217~^~208~^119.^0^^~4~^~NC~^^^^^^^^^^~09/01/1987~
-~15217~^~268~^498.^0^^~4~^^^^^^^^^^^
-~15217~^~301~^90.^0^^~1~^^^^^^^^^^^~09/01/1987~
-~15217~^~304~^38.^0^^~1~^^^^^^^^^^^~09/01/1987~
-~15217~^~305~^269.^0^^~1~^^^^^^^^^^^~09/01/1987~
-~15217~^~306~^487.^0^^~1~^^^^^^^^^^^~09/01/1987~
-~15217~^~307~^51.^0^^~1~^^^^^^^^^^^~09/01/1987~
-~15217~^~318~^196.^0^^~1~^^^^^^^^^^^~09/01/1987~
-~15217~^~319~^59.^0^^~1~^^^^^^^^^^^~06/01/2002~
-~15217~^~320~^59.^0^^~1~^^^^^^^^^^^~06/01/2002~
-~15217~^~417~^17.^0^^~1~^^^^^^^^^^^~09/01/1987~
-~15217~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~
-~15217~^~432~^17.^0^^~1~^^^^^^^^^^^~09/01/1987~
-~15217~^~435~^17.^0^^~4~^~NC~^^^^^^^^^^~01/01/2001~
-~15217~^~601~^53.^0^^~1~^^^^^^^^^^^~09/01/1987~
-~15218~^~208~^114.^0^^~4~^~NC~^^^^^^^^^^~09/01/1987~
-~15218~^~268~^477.^0^^~4~^^^^^^^^^^^
-~15218~^~301~^103.^0^^~1~^^^^^^^^^^^~09/01/1987~
-~15218~^~304~^38.^0^^~1~^^^^^^^^^^^~09/01/1987~
-~15218~^~305~^231.^0^^~1~^^^^^^^^^^^~09/01/1987~
-~15218~^~306~^449.^0^^~1~^^^^^^^^^^^~09/01/1987~
-~15218~^~307~^103.^0^^~1~^^^^^^^^^^^~09/01/1987~
-~15218~^~318~^58.^0^^~1~^^^^^^^^^^^~09/01/1987~
-~15218~^~319~^17.^0^^~1~^^^^^^^^^^^~06/01/2002~
-~15218~^~320~^17.^0^^~1~^^^^^^^^^^^~06/01/2002~
-~15218~^~417~^17.^0^^~1~^^^^^^^^^^^~09/01/1987~
-~15218~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~
-~15218~^~432~^17.^0^^~1~^^^^^^^^^^^~09/01/1987~
-~15218~^~435~^17.^0^^~4~^~NC~^^^^^^^^^^~01/01/2001~
-~15218~^~601~^86.^0^^~1~^^^^^^^^^^^~09/01/1987~
-~15219~^~208~^190.^0^^~4~^~NC~^^^^^^^^^^~09/01/1987~
-~15219~^~268~^795.^0^^~4~^^^^^^^^^^^
-~15219~^~301~^55.^0^^~1~^^^^^^^^^^^~09/01/1987~
-~15219~^~304~^28.^0^^~1~^^^^^^^^^^^~09/01/1987~
-~15219~^~305~^314.^0^^~1~^^^^^^^^^^^~09/01/1987~
-~15219~^~306~^463.^0^^~1~^^^^^^^^^^^~09/01/1987~
-~15219~^~307~^67.^0^^~1~^^^^^^^^^^^~09/01/1987~
-~15219~^~318~^63.^0^^~1~^^^^^^^^^^^~09/01/1987~
-~15219~^~319~^19.^0^^~1~^^^^^^^^^^^~06/01/2002~
-~15219~^~320~^19.^0^^~1~^^^^^^^^^^^~06/01/2002~
-~15219~^~417~^15.^0^^~1~^^^^^^^^^^^~09/01/1987~
-~15219~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~
-~15219~^~432~^15.^0^^~1~^^^^^^^^^^^~09/01/1987~
-~15219~^~435~^15.^0^^~4~^~NC~^^^^^^^^^^~01/01/2001~
-~15219~^~601~^74.^0^^~1~^^^^^^^^^^^~09/01/1987~
-~15220~^~208~^132.^0^^~4~^~NC~^^^^^^^^^^~09/01/1987~
-~15220~^~268~^552.^0^^~4~^^^^^^^^^^^
-~15220~^~301~^37.^0^^~1~^^^^^^^^^^^~09/01/1987~
-~15220~^~304~^44.^0^^~1~^^^^^^^^^^^~09/01/1987~
-~15220~^~305~^285.^0^^~1~^^^^^^^^^^^~09/01/1987~
-~15220~^~306~^522.^0^^~1~^^^^^^^^^^^~09/01/1987~
-~15220~^~307~^47.^0^^~1~^^^^^^^^^^^~09/01/1987~
-~15220~^~318~^60.^0^^~1~^^^^^^^^^^^~09/01/1987~
-~15220~^~319~^18.^0^^~1~^^^^^^^^^^^~06/01/2002~
-~15220~^~320~^18.^0^^~1~^^^^^^^^^^^~06/01/2002~
-~15220~^~417~^10.^0^^~1~^^^^^^^^^^^~09/01/1987~
-~15220~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~
-~15220~^~432~^10.^0^^~1~^^^^^^^^^^^~09/01/1987~
-~15220~^~435~^10.^0^^~4~^~NC~^^^^^^^^^^~01/01/2001~
-~15220~^~601~^60.^0^^~1~^^^^^^^^^^^~09/01/1987~
-~15221~^~208~^130.^0^^~4~^~NC~^^^^^^^^^^~08/01/2010~
-~15221~^~262~^0.^0^^~4~^~RA~^^^^^^^^^^~08/01/2010~
-~15221~^~263~^0.^0^^~4~^~RA~^^^^^^^^^^~08/01/2010~
-~15221~^~268~^543.^0^^~4~^~RA~^^^^^^^^^^~08/01/2010~
-~15221~^~301~^4.^0^^~4~^~RA~^^^^^^^^^^~08/01/2010~
-~15221~^~304~^42.^0^^~4~^~RA~^^^^^^^^^^~08/01/2010~
-~15221~^~305~^333.^0^^~4~^~RA~^^^^^^^^^^~08/01/2010~
-~15221~^~306~^527.^0^^~4~^~RA~^^^^^^^^^^~08/01/2010~
-~15221~^~307~^54.^0^^~4~^~RA~^^^^^^^^^^~08/01/2010~
-~15221~^~318~^65.^0^^~4~^~RA~^^^^^^^^^^~08/01/2010~
-~15221~^~319~^22.^0^^~4~^~RA~^^^^^^^^^^~08/01/2010~
-~15221~^~320~^22.^0^^~4~^~RA~^^^^^^^^^^~08/01/2010~
-~15221~^~321~^0.^0^^~4~^~RA~^^^^^^^^^^~08/01/2010~
-~15221~^~322~^0.^0^^~4~^~RA~^^^^^^^^^^~08/01/2010~
-~15221~^~324~^82.^0^^~4~^~RA~^^^^^^^^^^~08/01/2010~
-~15221~^~334~^0.^0^^~4~^~RA~^^^^^^^^^^~08/01/2010~
-~15221~^~337~^0.^0^^~4~^~RA~^^^^^^^^^^~08/01/2010~
-~15221~^~338~^0.^0^^~4~^~RA~^^^^^^^^^^~08/01/2010~
-~15221~^~417~^2.^0^^~4~^~RA~^^^^^^^^^^~08/01/2010~
-~15221~^~431~^0.^0^^~4~^~RA~^^^^^^^^^^~08/01/2010~
-~15221~^~432~^2.^0^^~4~^~RA~^^^^^^^^^^~08/01/2010~
-~15221~^~435~^2.^0^^~4~^~NC~^^^^^^^^^^~08/01/2010~
-~15221~^~601~^47.^0^^~4~^~RA~^^^^^^^^^^~08/01/2010~
-~15222~^~208~^122.^0^^~4~^~NC~^^^^^^^^^^~09/01/1987~
-~15222~^~268~^510.^0^^~4~^^^^^^^^^^^
-~15222~^~301~^23.^0^^~1~^^^^^^^^^^^~09/01/1987~
-~15222~^~304~^65.^0^^~1~^^^^^^^^^^^~09/01/1987~
-~15222~^~305~^165.^0^^~1~^^^^^^^^^^^~09/01/1987~
-~15222~^~306~^305.^0^^~1~^^^^^^^^^^^~09/01/1987~
-~15222~^~307~^192.^0^^~1~^^^^^^^^^^^~09/01/1987~
-~15222~^~318~^40.^0^^~1~^^^^^^^^^^^~09/01/1987~
-~15222~^~319~^12.^0^^~1~^^^^^^^^^^^~06/01/2002~
-~15222~^~320~^12.^0^^~1~^^^^^^^^^^^~06/01/2002~
-~15222~^~417~^9.^0^^~1~^^^^^^^^^^^~09/01/1987~
-~15222~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~
-~15222~^~432~^9.^0^^~1~^^^^^^^^^^^~09/01/1987~
-~15222~^~435~^9.^0^^~4~^~NC~^^^^^^^^^^~01/01/2001~
-~15222~^~601~^62.^0^^~1~^^^^^^^^^^^~09/01/1987~
-~15223~^~208~^172.^0^^~4~^~NC~^^^^^^^^^^~09/01/1987~
-~15223~^~268~^720.^0^^~4~^^^^^^^^^^^
-~15223~^~301~^33.^0^^~1~^^^^^^^^^^^~09/01/1987~
-~15223~^~304~^42.^0^^~1~^^^^^^^^^^^~09/01/1987~
-~15223~^~305~^346.^0^^~1~^^^^^^^^^^^~09/01/1987~
-~15223~^~306~^406.^0^^~1~^^^^^^^^^^^~09/01/1987~
-~15223~^~307~^65.^0^^~1~^^^^^^^^^^^~09/01/1987~
-~15223~^~318~^131.^0^^~1~^^^^^^^^^^^~09/01/1987~
-~15223~^~319~^39.^0^^~1~^^^^^^^^^^^~06/01/2002~
-~15223~^~320~^39.^0^^~1~^^^^^^^^^^^~06/01/2002~
-~15223~^~417~^17.^0^^~1~^^^^^^^^^^^~09/01/1987~
-~15223~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~
-~15223~^~432~^17.^0^^~1~^^^^^^^^^^^~09/01/1987~
-~15223~^~435~^17.^0^^~4~^~NC~^^^^^^^^^^~01/01/2001~
-~15223~^~601~^77.^0^^~1~^^^^^^^^^^^~09/01/1987~
-~15224~^~208~^123.^0^^~4~^~NC~^^^^^^^^^^~09/01/1987~
-~15224~^~268~^515.^0^^~4~^^^^^^^^^^^
-~15224~^~301~^8.^0^^~1~^^^^^^^^^^^~09/01/1987~
-~15224~^~304~^38.^0^^~1~^^^^^^^^^^^~09/01/1987~
-~15224~^~305~^256.^0^^~1~^^^^^^^^^^^~09/01/1987~
-~15224~^~306~^385.^0^^~1~^^^^^^^^^^^~09/01/1987~
-~15224~^~307~^109.^0^^~1~^^^^^^^^^^^~09/01/1987~
-~15224~^~318~^433.^0^^~1~^^^^^^^^^^^~09/01/1987~
-~15224~^~319~^130.^0^^~1~^^^^^^^^^^^~06/01/2002~
-~15224~^~320~^130.^0^^~1~^^^^^^^^^^^~06/01/2002~
-~15224~^~417~^6.^0^^~1~^^^^^^^^^^^~09/01/1987~
-~15224~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~
-~15224~^~432~^6.^0^^~1~^^^^^^^^^^^~09/01/1987~
-~15224~^~435~^6.^0^^~4~^~NC~^^^^^^^^^^~01/01/2001~
-~15224~^~601~^59.^0^^~1~^^^^^^^^^^^~09/01/1987~
-~15225~^~208~^187.^0^^~4~^~NC~^^^^^^^^^^~09/01/1987~
-~15225~^~268~^782.^0^^~4~^^^^^^^^^^^
-~15225~^~301~^29.^0^^~1~^^^^^^^^^^^~09/01/1987~
-~15225~^~304~^38.^0^^~1~^^^^^^^^^^^~09/01/1987~
-~15225~^~305~^201.^0^^~1~^^^^^^^^^^^~09/01/1987~
-~15225~^~306~^538.^0^^~1~^^^^^^^^^^^~09/01/1987~
-~15225~^~307~^50.^0^^~1~^^^^^^^^^^^~09/01/1987~
-~15225~^~318~^104.^0^^~1~^^^^^^^^^^^~09/01/1987~
-~15225~^~319~^31.^0^^~1~^^^^^^^^^^^~06/01/2002~
-~15225~^~320~^31.^0^^~1~^^^^^^^^^^^~06/01/2002~
-~15225~^~417~^4.^0^^~1~^^^^^^^^^^^~09/01/1987~
-~15225~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~
-~15225~^~432~^4.^0^^~1~^^^^^^^^^^^~09/01/1987~
-~15225~^~435~^4.^0^^~4~^~NC~^^^^^^^^^^~01/01/2001~
-~15225~^~601~^71.^0^^~1~^^^^^^^^^^^~09/01/1987~
-~15226~^~208~^110.^0^^~4~^~NC~^^^^^^^^^^~09/01/1987~
-~15226~^~268~^460.^0^^~4~^^^^^^^^^^^
-~15226~^~301~^59.^0^^~1~^^^^^^^^^^^~09/01/1987~
-~15226~^~304~^58.^0^^~1~^^^^^^^^^^^~09/01/1987~
-~15226~^~305~^175.^0^^~1~^^^^^^^^^^^~09/01/1987~
-~15226~^~306~^408.^0^^~1~^^^^^^^^^^^~09/01/1987~
-~15226~^~307~^378.^0^^~1~^^^^^^^^^^^~09/01/1987~
-~15226~^~318~^104.^0^^~1~^^^^^^^^^^^~09/01/1987~
-~15226~^~319~^31.^0^^~1~^^^^^^^^^^^~06/01/2002~
-~15226~^~320~^31.^0^^~1~^^^^^^^^^^^~06/01/2002~
-~15226~^~417~^42.^0^^~1~^^^^^^^^^^^~09/01/1987~
-~15226~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~
-~15226~^~432~^42.^0^^~1~^^^^^^^^^^^~09/01/1987~
-~15226~^~435~^42.^0^^~4~^~NC~^^^^^^^^^^~01/01/2001~
-~15226~^~601~^76.^0^^~1~^^^^^^^^^^^~09/01/1987~
-~15227~^~208~^115.^0^^~4~^~NC~^^^^^^^^^^~09/01/1987~
-~15227~^~268~^481.^0^^~4~^^^^^^^^^^^
-~15227~^~301~^33.^0^^~1~^^^^^^^^^^^~09/01/1987~
-~15227~^~304~^63.^0^^~1~^^^^^^^^^^^~09/01/1987~
-~15227~^~305~^128.^0^^~1~^^^^^^^^^^^~09/01/1987~
-~15227~^~306~^200.^0^^~1~^^^^^^^^^^^~09/01/1987~
-~15227~^~307~^691.^0^^~1~^^^^^^^^^^^~09/01/1987~
-~15227~^~318~^173.^0^^~1~^^^^^^^^^^^~09/01/1987~
-~15227~^~319~^52.^0^^~1~^^^^^^^^^^^~06/01/2002~
-~15227~^~320~^52.^0^^~1~^^^^^^^^^^^~06/01/2002~
-~15227~^~417~^42.^0^^~1~^^^^^^^^^^^~09/01/1987~
-~15227~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~
-~15227~^~432~^42.^0^^~1~^^^^^^^^^^^~09/01/1987~
-~15227~^~435~^42.^0^^~4~^~NC~^^^^^^^^^^~01/01/2001~
-~15227~^~601~^71.^0^^~1~^^^^^^^^^^^~09/01/1987~
-~15228~^~208~^143.^0^^~4~^~NC~^^^^^^^^^^~09/01/1987~
-~15228~^~268~^598.^0^^~4~^^^^^^^^^^^
-~15228~^~301~^63.^0^^~1~^^^^^^^^^^^~09/01/1987~
-~15228~^~304~^51.^0^^~1~^^^^^^^^^^^~09/01/1987~
-~15228~^~305~^229.^0^^~1~^^^^^^^^^^^~09/01/1987~
-~15228~^~306~^208.^0^^~1~^^^^^^^^^^^~09/01/1987~
-~15228~^~307~^227.^0^^~1~^^^^^^^^^^^~09/01/1987~
-~15228~^~318~^20.^0^^~1~^^^^^^^^^^^~09/01/1987~
-~15228~^~319~^6.^0^^~1~^^^^^^^^^^^~06/01/2002~
-~15228~^~320~^6.^0^^~1~^^^^^^^^^^^~06/01/2002~
-~15228~^~417~^1.^0^^~1~^^^^^^^^^^^~09/01/1987~
-~15228~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~
-~15228~^~432~^1.^0^^~1~^^^^^^^^^^^~09/01/1987~
-~15228~^~435~^1.^0^^~4~^~NC~^^^^^^^^^^~01/01/2001~
-~15228~^~601~^90.^0^^~1~^^^^^^^^^^^~09/01/1987~
-~15229~^~208~^158.^0^^~4~^~NC~^^^^^^^^^^~09/01/1987~
-~15229~^~268~^661.^0^^~4~^^^^^^^^^^^
-~15229~^~301~^180.^0^^~1~^^^^^^^^^^^~09/01/1987~
-~15229~^~304~^60.^0^^~1~^^^^^^^^^^^~09/01/1987~
-~15229~^~305~^580.^0^^~1~^^^^^^^^^^^~09/01/1987~
-~15229~^~306~^637.^0^^~1~^^^^^^^^^^^~09/01/1987~
-~15229~^~307~^744.^0^^~1~^^^^^^^^^^^~09/01/1987~
-~15229~^~318~^675.^0^^~1~^^^^^^^^^^^~09/01/1987~
-~15229~^~319~^203.^0^^~1~^^^^^^^^^^^~06/01/2002~
-~15229~^~320~^203.^0^^~1~^^^^^^^^^^^~06/01/2002~
-~15229~^~417~^24.^0^^~1~^^^^^^^^^^^~09/01/1987~
-~15229~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~
-~15229~^~432~^24.^0^^~1~^^^^^^^^^^^~09/01/1987~
-~15229~^~435~^24.^0^^~4~^~NC~^^^^^^^^^^~01/01/2001~
-~15229~^~601~^224.^0^^~1~^^^^^^^^^^^~09/01/1987~
-~15230~^~208~^164.^0^^~4~^~NC~^^^^^^^^^^~09/01/1987~
-~15230~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~
-~15230~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~
-~15230~^~268~^686.^0^^~4~^^^^^^^^^^^~03/01/2009~
-~15230~^~301~^106.^0^^~1~^^^^^^^^^^^~09/01/1987~
-~15230~^~304~^60.^0^^~1~^^^^^^^^^^^~09/01/1987~
-~15230~^~305~^279.^0^^~1~^^^^^^^^^^^~09/01/1987~
-~15230~^~306~^630.^0^^~1~^^^^^^^^^^^~09/01/1987~
-~15230~^~307~^460.^0^^~1~^^^^^^^^^^^~09/01/1987~
-~15230~^~318~^300.^0^^~4~^~NC~^^^^^^^^^^~03/01/2009~
-~15230~^~319~^90.^0^^~4~^~BFYN~^~15166~^^^^^^^^^~02/01/2003~
-~15230~^~320~^90.^0^^~4~^~NC~^^^^^^^^^^~03/01/2009~
-~15230~^~321~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~
-~15230~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~
-~15230~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2009~
-~15230~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~
-~15230~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~
-~15230~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~
-~15230~^~417~^24.^0^^~1~^^^^^^^^^^^~09/01/1987~
-~15230~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~
-~15230~^~432~^24.^0^^~1~^^^^^^^^^^^~03/01/2009~
-~15230~^~435~^24.^0^^~4~^~NC~^^^^^^^^^^~03/01/2009~
-~15230~^~601~^96.^0^^~1~^^^^^^^^^^^~09/01/1987~
-~15231~^~208~^163.^0^^~4~^~NC~^^^^^^^^^^~09/01/1987~
-~15231~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~
-~15231~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~
-~15231~^~268~^682.^0^^~4~^^^^^^^^^^^
-~15231~^~301~^16.^0^^~1~^^^^^^^^^^^~09/01/1987~
-~15231~^~304~^44.^0^^~1~^^^^^^^^^^^~09/01/1987~
-~15231~^~305~^243.^0^^~1~^^^^^^^^^^^~09/01/1987~
-~15231~^~306~^302.^0^^~1~^^^^^^^^^^^~09/01/1987~
-~15231~^~307~^212.^0^^~1~^^^^^^^^^^^~09/01/1987~
-~15231~^~318~^487.^0^^~4~^~NC~^^^^^^^^^^~02/01/2003~
-~15231~^~319~^146.^0^^~4~^~NC~^^^^^^^^^^~02/01/2003~
-~15231~^~320~^146.^0^^~4~^~NC~^^^^^^^^^^~02/01/2003~
-~15231~^~321~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~
-~15231~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~
-~15231~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~
-~15231~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~
-~15231~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~
-~15231~^~417~^15.^0^^~1~^^^^^^^^^^^~09/01/1987~
-~15231~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~
-~15231~^~432~^15.^0^^~1~^^^^^^^^^^^~02/01/2003~
-~15231~^~435~^15.^0^^~4~^~NC~^^^^^^^^^^~04/01/2003~
-~15231~^~601~^100.^0^^~1~^^^^^^^^^^^~09/01/1987~
-~15232~^~208~^105.^0^^~4~^~NC~^^^^^^^^^^~03/01/2005~
-~15232~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2005~
-~15232~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2005~
-~15232~^~268~^439.^0^^~4~^~NC~^^^^^^^^^^~03/01/2005~
-~15232~^~301~^11.^2^^~1~^~A~^^^1^^^^^^^~02/01/2005~
-~15232~^~304~^18.^2^^~1~^~A~^^^1^^^^^^^~02/01/2005~
-~15232~^~305~^102.^2^^~1~^~A~^^^1^^^^^^^~02/01/2005~
-~15232~^~306~^181.^2^^~1~^~A~^^^1^^^^^^^~02/01/2005~
-~15232~^~307~^69.^2^^~1~^~A~^^^1^^^^^^^~02/01/2005~
-~15232~^~318~^80.^0^^~4~^~NC~^^^^^^^^^^~03/01/2005~
-~15232~^~319~^24.^0^^~4~^~T~^^^^^^^^^^~03/01/2005~
-~15232~^~320~^24.^0^^~4~^~NC~^^^^^^^^^^~03/01/2005~
-~15232~^~321~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2005~
-~15232~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2005~
-~15232~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2005~
-~15232~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2005~
-~15232~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2005~
-~15232~^~417~^5.^2^^~1~^~A~^^^1^^^^^^^~02/01/2005~
-~15232~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~
-~15232~^~432~^5.^2^^~1~^~A~^^^^^^^^^^~03/01/2005~
-~15232~^~435~^5.^0^^~4~^~NC~^^^^^^^^^^~03/01/2005~
-~15232~^~601~^80.^2^^~1~^~A~^^^1^^^^^^^~02/01/2005~
-~15233~^~208~^105.^0^^~4~^~NC~^^^^^^^^^^~09/01/1987~
-~15233~^~268~^439.^0^^~4~^^^^^^^^^^^
-~15233~^~301~^11.^4^1.^~1~^^^^^^^^^^^~09/01/1987~
-~15233~^~304~^28.^4^0.^~1~^^^^^^^^^^^~09/01/1987~
-~15233~^~305~^304.^3^33.^~1~^^^^^^^^^^^~09/01/1987~
-~15233~^~306~^419.^4^15.^~1~^^^^^^^^^^^~09/01/1987~
-~15233~^~307~^50.^4^4.^~1~^^^^^^^^^^^~09/01/1987~
-~15233~^~318~^50.^4^0.^~1~^^^^^^^^^^^~09/01/1987~
-~15233~^~319~^15.^4^0.^~1~^^^^^^^^^^^~06/01/2002~
-~15233~^~320~^15.^4^0.^~1~^^^^^^^^^^^~06/01/2002~
-~15233~^~417~^10.^2^^~1~^^^^^^^^^^^~09/01/1987~
-~15233~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~
-~15233~^~432~^10.^2^^~1~^^^^^^^^^^^~09/01/1987~
-~15233~^~435~^10.^0^^~4~^~NC~^^^^^^^^^^~01/01/2001~
-~15233~^~601~^72.^4^1.^~1~^^^^^^^^^^^~09/01/1987~
-~15234~^~208~^119.^0^^~4~^~NC~^^^^^^^^^^~07/01/2010~
-~15234~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~
-~15234~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~
-~15234~^~268~^496.^0^^~4~^~NC~^^^^^^^^^^~07/01/2010~
-~15234~^~301~^8.^12^0.^~1~^~A~^^^1^6.^10.^11^7.^8.^~2, 3~^~07/01/2010~
-~15234~^~304~^19.^12^0.^~1~^~A~^^^1^17.^21.^11^17.^19.^~2, 3~^~07/01/2010~
-~15234~^~305~^204.^12^10.^~1~^~A~^^^1^161.^280.^11^181.^227.^~2, 3~^~07/01/2010~
-~15234~^~306~^302.^12^13.^~1~^~A~^^^1^197.^362.^11^272.^331.^~2, 3~^~07/01/2010~
-~15234~^~307~^98.^12^22.^~1~^~A~^^^1^37.^276.^11^48.^148.^~2, 3~^~07/01/2010~
-~15234~^~318~^1.^0^^~1~^~AS~^^^^^^^^^^~07/01/2010~
-~15234~^~319~^0.^1^^~1~^~A~^^^^^^^^^^~07/01/2010~
-~15234~^~320~^0.^0^^~1~^~AS~^^^^^^^^^^~07/01/2010~
-~15234~^~321~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~
-~15234~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~
-~15234~^~324~^9.^4^3.^~1~^~A~^^^1^1.^15.^3^-1.^18.^~2, 3~^~07/01/2010~
-~15234~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~
-~15234~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~
-~15234~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~
-~15234~^~417~^10.^3^0.^~1~^^^^^^^^^^^~09/01/1987~
-~15234~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~
-~15234~^~432~^10.^3^0.^~1~^^^^^^^^^^^~07/01/2010~
-~15234~^~435~^10.^0^^~4~^~NC~^^^^^^^^^^~07/01/2010~
-~15234~^~601~^55.^4^2.^~1~^~A~^^^1^49.^60.^3^47.^62.^~2, 3~^~07/01/2010~
-~15235~^~208~^144.^0^^~4~^~NC~^^^^^^^^^^~07/01/2010~
-~15235~^~262~^0.^0^^~4~^~RA~^^^^^^^^^^~07/01/2010~
-~15235~^~263~^0.^0^^~4~^~RA~^^^^^^^^^^~07/01/2010~
-~15235~^~268~^601.^0^^~4~^~RA~^^^^^^^^^^~07/01/2010~
-~15235~^~301~^9.^0^^~4~^~RA~^^^^^^^^^^~07/01/2010~
-~15235~^~304~^23.^0^^~4~^~RA~^^^^^^^^^^~07/01/2010~
-~15235~^~305~^247.^0^^~4~^~RA~^^^^^^^^^^~07/01/2010~
-~15235~^~306~^366.^0^^~4~^~RA~^^^^^^^^^^~07/01/2010~
-~15235~^~307~^119.^0^^~4~^~RA~^^^^^^^^^^~07/01/2010~
-~15235~^~318~^2.^0^^~4~^~RA~^^^^^^^^^^~07/01/2010~
-~15235~^~319~^1.^0^^~4~^~RA~^^^^^^^^^^~07/01/2010~
-~15235~^~320~^1.^0^^~4~^~RA~^^^^^^^^^^~07/01/2010~
-~15235~^~321~^0.^0^^~4~^~RA~^^^^^^^^^^~07/01/2010~
-~15235~^~322~^0.^0^^~4~^~RA~^^^^^^^^^^~07/01/2010~
-~15235~^~324~^10.^0^^~4~^~RA~^^^^^^^^^^~07/01/2010~
-~15235~^~334~^0.^0^^~4~^~RA~^^^^^^^^^^~07/01/2010~
-~15235~^~337~^0.^0^^~4~^~RA~^^^^^^^^^^~07/01/2010~
-~15235~^~338~^0.^0^^~4~^~RA~^^^^^^^^^^~07/01/2010~
-~15235~^~417~^12.^0^^~4~^~RA~^^^^^^^^^^~07/01/2010~
-~15235~^~431~^0.^0^^~4~^~RA~^^^^^^^^^^~07/01/2010~
-~15235~^~432~^12.^0^^~4~^~RA~^^^^^^^^^^~07/01/2010~
-~15235~^~435~^12.^0^^~4~^~NC~^^^^^^^^^^~07/01/2010~
-~15235~^~601~^66.^0^^~4~^~RA~^^^^^^^^^^~07/01/2010~
-~15236~^~208~^208.^0^^~4~^~NC~^^^^^^^^^^~05/01/2008~
-~15236~^~262~^0.^0^^~4~^~BFZN~^~15085~^^^^^^^^^~08/01/2015~
-~15236~^~263~^0.^0^^~4~^~BFZN~^~15085~^^^^^^^^^~08/01/2015~
-~15236~^~268~^871.^0^^~4~^~NC~^^^^^^^^^^~05/01/2008~
-~15236~^~301~^9.^4^0.^~1~^~A~^^^1^^^^^^^~05/01/2008~
-~15236~^~304~^27.^4^0.^~1~^~A~^^^1^^^^^^^~05/01/2008~
-~15236~^~305~^240.^4^4.^~1~^~A~^^^1^^^^^^^~05/01/2008~
-~15236~^~306~^363.^4^5.^~1~^~A~^^^1^^^^^^^~05/01/2008~
-~15236~^~307~^59.^4^11.^~1~^~A~^^^1^^^^^^^~05/01/2008~
-~15236~^~318~^193.^0^^~4~^~NC~^^^^^^^^^^~08/01/2015~
-~15236~^~319~^58.^0^^~4~^~BFZN~^~15085~^^^^^^^^^~08/01/2015~
-~15236~^~320~^58.^0^^~4~^~NC~^^^^^^^^^^~08/01/2015~
-~15236~^~321~^0.^0^^~4~^~BFZN~^~15085~^^^^^^^^^~08/01/2015~
-~15236~^~322~^0.^0^^~4~^~BFZN~^~15085~^^^^^^^^^~08/01/2015~
-~15236~^~324~^441.^0^^~4~^~NR~^^^^^^^^^^~08/01/2015~
-~15236~^~334~^0.^0^^~4~^~BFZN~^~15085~^^^^^^^^^~08/01/2015~
-~15236~^~337~^0.^0^^~4~^~BFZN~^~15085~^^^^^^^^^~08/01/2015~
-~15236~^~338~^0.^0^^~4~^~BFZN~^~15085~^^^^^^^^^~08/01/2015~
-~15236~^~417~^26.^1^^~1~^^^^^^^^^^^~09/01/1987~
-~15236~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~
-~15236~^~432~^26.^1^^~1~^^^^^^^^^^^~05/01/2008~
-~15236~^~435~^26.^0^^~4~^~NC~^^^^^^^^^^~05/01/2008~
-~15236~^~601~^55.^4^1.^~1~^~A~^^^1^^^^^^^~05/01/2008~
-~15237~^~208~^206.^0^^~4~^~NC~^^^^^^^^^^~12/01/2006~
-~15237~^~262~^0.^0^^~4~^~BFZN~^~15086~^^^^^^^^^~08/01/2015~
-~15237~^~263~^0.^0^^~4~^~BFZN~^~15086~^^^^^^^^^~08/01/2015~
-~15237~^~268~^861.^0^^~4~^~NC~^^^^^^^^^^~12/01/2006~
-~15237~^~301~^15.^0^^~4~^^^^^^^^^^^~01/01/1994~
-~15237~^~304~^30.^2^^~1~^^^^^^^^^^^~09/01/1987~
-~15237~^~305~^252.^2^^~1~^^^^^^^^^^^~09/01/1987~
-~15237~^~306~^384.^2^^~1~^^^^^^^^^^^~09/01/1987~
-~15237~^~307~^61.^2^^~1~^^^^^^^^^^^~09/01/1987~
-~15237~^~318~^230.^0^^~4~^~NC~^^^^^^^^^^~08/01/2015~
-~15237~^~319~^69.^0^^~4~^~BFZN~^~15086~^^^^^^^^^~08/01/2015~
-~15237~^~320~^69.^0^^~4~^~NC~^^^^^^^^^^~08/01/2015~
-~15237~^~321~^0.^0^^~4~^~BFZN~^~15086~^^^^^^^^^~08/01/2015~
-~15237~^~322~^0.^0^^~4~^~BFZN~^~15086~^^^^^^^^^~08/01/2015~
-~15237~^~324~^526.^0^^~4~^~NR~^^^^^^^^^^~08/01/2015~
-~15237~^~334~^0.^0^^~4~^~BFZN~^~15086~^^^^^^^^^~08/01/2015~
-~15237~^~337~^0.^0^^~4~^~BFZN~^~15086~^^^^^^^^^~08/01/2015~
-~15237~^~338~^0.^0^^~4~^~BFZN~^~15086~^^^^^^^^^~08/01/2015~
-~15237~^~417~^34.^1^^~1~^^^^^^^^^^^~09/01/1987~
-~15237~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~
-~15237~^~432~^34.^1^^~1~^^^^^^^^^^^~12/01/2006~
-~15237~^~435~^34.^0^^~4~^~NC~^^^^^^^^^^~12/01/2006~
-~15237~^~601~^63.^2^^~1~^^^^^^^^^^^~09/01/1987~
-~15238~^~208~^160.^0^^~4~^~NC~^^^^^^^^^^~09/01/1987~
-~15238~^~268~^669.^0^^~4~^^^^^^^^^^^
-~15238~^~301~^12.^2^^~1~^^^^^^^^^^^~09/01/1987~
-~15238~^~304~^31.^3^1.^~1~^^^^^^^^^^^~09/01/1987~
-~15238~^~305~^292.^3^20.^~1~^^^^^^^^^^^~09/01/1987~
-~15238~^~306~^450.^3^19.^~1~^^^^^^^^^^^~09/01/1987~
-~15238~^~307~^47.^3^4.^~1~^^^^^^^^^^^~09/01/1987~
-~15238~^~318~^188.^3^22.^~1~^^^^^^^^^^^~09/01/1987~
-~15238~^~319~^56.^3^6.^~1~^^^^^^^^^^^~06/01/2002~
-~15238~^~320~^56.^3^6.^~1~^^^^^^^^^^^~06/01/2002~
-~15238~^~417~^13.^3^2.^~1~^^^^^^^^^^^~09/01/1987~
-~15238~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~
-~15238~^~432~^13.^3^2.^~1~^^^^^^^^^^^~09/01/1987~
-~15238~^~435~^13.^0^^~4~^~NC~^^^^^^^^^^~01/01/2001~
-~15238~^~601~^51.^3^0.^~1~^^^^^^^^^^^~09/01/1987~
-~15239~^~208~^178.^0^^~4~^~NC~^^^^^^^^^^~09/01/1987~
-~15239~^~268~^745.^0^^~4~^^^^^^^^^^^
-~15239~^~301~^12.^2^^~1~^^^^^^^^^^^~09/01/1987~
-~15239~^~304~^34.^3^0.^~1~^^^^^^^^^^^~09/01/1987~
-~15239~^~305~^332.^3^31.^~1~^^^^^^^^^^^~09/01/1987~
-~15239~^~306~^460.^3^13.^~1~^^^^^^^^^^^~09/01/1987~
-~15239~^~307~^52.^3^1.^~1~^^^^^^^^^^^~09/01/1987~
-~15239~^~318~^197.^3^24.^~1~^^^^^^^^^^^~09/01/1987~
-~15239~^~319~^59.^3^7.^~1~^^^^^^^^^^^~06/01/2002~
-~15239~^~320~^59.^3^7.^~1~^^^^^^^^^^^~06/01/2002~
-~15239~^~417~^14.^3^4.^~1~^^^^^^^^^^^~09/01/1987~
-~15239~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~
-~15239~^~432~^14.^3^4.^~1~^^^^^^^^^^^~09/01/1987~
-~15239~^~435~^14.^0^^~4~^~NC~^^^^^^^^^^~01/01/2001~
-~15239~^~601~^63.^3^4.^~1~^^^^^^^^^^^~09/01/1987~
-~15240~^~208~^141.^0^^~4~^~NC~^^^^^^^^^^~07/01/2010~
-~15240~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~
-~15240~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~
-~15240~^~268~^589.^0^^~4~^~NC~^^^^^^^^^^~07/01/2010~
-~15240~^~301~^25.^8^3.^~1~^~A~^^^1^19.^45.^7^17.^31.^~2, 3~^~07/01/2010~
-~15240~^~304~^25.^8^0.^~1~^~A~^^^1^20.^27.^7^23.^26.^~2, 3~^~07/01/2010~
-~15240~^~305~^226.^8^6.^~1~^~A~^^^1^188.^251.^7^210.^241.^~2, 3~^~07/01/2010~
-~15240~^~306~^377.^8^15.^~1~^~A~^^^1^284.^422.^7^340.^412.^~2, 3~^~07/01/2010~
-~15240~^~307~^51.^8^3.^~1~^~A~^^^1^35.^63.^7^44.^58.^~2, 3~^~07/01/2010~
-~15240~^~318~^280.^0^^~4~^~NC~^^^^^^^^^^~07/01/2010~
-~15240~^~319~^84.^0^^~4~^~T~^^^^^^^^^^~03/01/2009~
-~15240~^~320~^84.^0^^~4~^~NC~^^^^^^^^^^~07/01/2010~
-~15240~^~321~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~
-~15240~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~
-~15240~^~324~^635.^8^48.^~1~^~A~^^^1^417.^780.^7^520.^750.^~2, 3~^~07/01/2010~
-~15240~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~
-~15240~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~
-~15240~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~
-~15240~^~417~^11.^3^0.^~1~^^^^^^^^^^^~09/01/1987~
-~15240~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~
-~15240~^~432~^11.^3^0.^~1~^^^^^^^^^^^~07/01/2010~
-~15240~^~435~^11.^0^^~4~^~NC~^^^^^^^^^^~07/01/2010~
-~15240~^~601~^59.^3^1.^~1~^~A~^^^1^57.^61.^2^53.^63.^~2, 3~^~07/01/2010~
-~15241~^~208~^168.^0^^~4~^~NC~^^^^^^^^^^~07/01/2010~
-~15241~^~262~^0.^0^^~4~^~RA~^^^^^^^^^^~07/01/2010~
-~15241~^~263~^0.^0^^~4~^~RA~^^^^^^^^^^~07/01/2010~
-~15241~^~268~^704.^0^^~4~^~RA~^^^^^^^^^^~07/01/2010~
-~15241~^~301~^30.^0^^~4~^~RA~^^^^^^^^^^~07/01/2010~
-~15241~^~304~^30.^0^^~4~^~RA~^^^^^^^^^^~07/01/2010~
-~15241~^~305~^270.^0^^~4~^~RA~^^^^^^^^^^~07/01/2010~
-~15241~^~306~^450.^0^^~4~^~RA~^^^^^^^^^^~07/01/2010~
-~15241~^~307~^61.^0^^~4~^~RA~^^^^^^^^^^~07/01/2010~
-~15241~^~318~^301.^0^^~4~^~RA~^^^^^^^^^^~07/01/2010~
-~15241~^~319~^100.^0^^~4~^~RA~^^^^^^^^^^~07/01/2010~
-~15241~^~320~^100.^0^^~4~^~RA~^^^^^^^^^^~07/01/2010~
-~15241~^~321~^0.^0^^~4~^~RA~^^^^^^^^^^~07/01/2010~
-~15241~^~322~^0.^0^^~4~^~RA~^^^^^^^^^^~07/01/2010~
-~15241~^~324~^759.^0^^~4~^~RA~^^^^^^^^^^~07/01/2010~
-~15241~^~334~^0.^0^^~4~^~RA~^^^^^^^^^^~07/01/2010~
-~15241~^~337~^0.^0^^~4~^~RA~^^^^^^^^^^~07/01/2010~
-~15241~^~338~^0.^0^^~4~^~RA~^^^^^^^^^^~07/01/2010~
-~15241~^~417~^12.^0^^~4~^~RA~^^^^^^^^^^~07/01/2010~
-~15241~^~431~^0.^0^^~4~^~RA~^^^^^^^^^^~07/01/2010~
-~15241~^~432~^12.^0^^~4~^~RA~^^^^^^^^^^~07/01/2010~
-~15241~^~435~^12.^0^^~4~^~NC~^^^^^^^^^^~07/01/2010~
-~15241~^~601~^70.^0^^~4~^~RA~^^^^^^^^^^~07/01/2010~
-~15242~^~208~^72.^0^^~4~^~NC~^^^^^^^^^^~09/01/1987~
-~15242~^~268~^301.^0^^~4~^^^^^^^^^^^
-~15242~^~301~^25.^4^1.^~1~^^^^^^^^^^^~09/01/1987~
-~15242~^~304~^30.^4^1.^~1~^^^^^^^^^^^~09/01/1987~
-~15242~^~305~^218.^4^4.^~1~^^^^^^^^^^^~09/01/1987~
-~15242~^~306~^261.^4^8.^~1~^^^^^^^^^^^~09/01/1987~
-~15242~^~307~^62.^4^2.^~1~^^^^^^^^^^^~09/01/1987~
-~15242~^~318~^50.^4^0.^~1~^^^^^^^^^^^~09/01/1987~
-~15242~^~319~^15.^4^0.^~1~^^^^^^^^^^^~06/01/2002~
-~15242~^~320~^15.^4^0.^~1~^^^^^^^^^^^~06/01/2002~
-~15242~^~417~^30.^3^0.^~1~^^^^^^^^^^^~09/01/1987~
-~15242~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~
-~15242~^~432~^30.^3^0.^~1~^^^^^^^^^^^~09/01/1987~
-~15242~^~435~^30.^0^^~4~^~NC~^^^^^^^^^^~01/01/2001~
-~15242~^~601~^107.^4^3.^~1~^^^^^^^^^^^~09/01/1987~
-~15243~^~208~^87.^0^^~4~^~NC~^^^^^^^^^^~09/01/1987~
-~15243~^~268~^364.^0^^~4~^^^^^^^^^^^
-~15243~^~301~^51.^4^7.^~1~^^^^^^^^^^^~09/01/1987~
-~15243~^~304~^33.^4^1.^~1~^^^^^^^^^^^~09/01/1987~
-~15243~^~305~^241.^4^11.^~1~^^^^^^^^^^^~09/01/1987~
-~15243~^~306~^238.^4^4.^~1~^^^^^^^^^^^~09/01/1987~
-~15243~^~307~^97.^4^6.^~1~^^^^^^^^^^^~09/01/1987~
-~15243~^~318~^50.^4^0.^~1~^^^^^^^^^^^~09/01/1987~
-~15243~^~319~^15.^4^0.^~1~^^^^^^^^^^^~06/01/2002~
-~15243~^~320~^15.^4^0.^~1~^^^^^^^^^^^~06/01/2002~
-~15243~^~417~^11.^3^0.^~1~^^^^^^^^^^^~09/01/1987~
-~15243~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~
-~15243~^~432~^11.^3^0.^~1~^^^^^^^^^^^~09/01/1987~
-~15243~^~435~^11.^0^^~4~^~NC~^^^^^^^^^^~01/01/2001~
-~15243~^~601~^137.^4^3.^~1~^^^^^^^^^^^~09/01/1987~
-~15244~^~208~^79.^0^^~4~^~NC~^^^^^^^^^^~08/01/2010~
-~15244~^~262~^0.^0^^~4~^~RA~^^^^^^^^^^~08/01/2010~
-~15244~^~263~^0.^0^^~4~^~RA~^^^^^^^^^^~08/01/2010~
-~15244~^~268~^331.^0^^~4~^~RA~^^^^^^^^^^~08/01/2010~
-~15244~^~301~^92.^0^^~4~^~RA~^^^^^^^^^^~08/01/2010~
-~15244~^~304~^28.^0^^~4~^~RA~^^^^^^^^^^~08/01/2010~
-~15244~^~305~^150.^0^^~4~^~RA~^^^^^^^^^^~08/01/2010~
-~15244~^~306~^242.^0^^~4~^~RA~^^^^^^^^^^~08/01/2010~
-~15244~^~307~^132.^0^^~4~^~RA~^^^^^^^^^^~08/01/2010~
-~15244~^~318~^58.^0^^~4~^~RA~^^^^^^^^^^~08/01/2010~
-~15244~^~319~^20.^0^^~4~^~RA~^^^^^^^^^^~08/01/2010~
-~15244~^~320~^20.^0^^~4~^~RA~^^^^^^^^^^~08/01/2010~
-~15244~^~321~^0.^0^^~4~^~RA~^^^^^^^^^^~08/01/2010~
-~15244~^~322~^0.^0^^~4~^~RA~^^^^^^^^^^~08/01/2010~
-~15244~^~324~^1.^0^^~4~^~RA~^^^^^^^^^^~08/01/2010~
-~15244~^~334~^0.^0^^~4~^~RA~^^^^^^^^^^~08/01/2010~
-~15244~^~337~^0.^0^^~4~^~RA~^^^^^^^^^^~08/01/2010~
-~15244~^~338~^0.^0^^~4~^~RA~^^^^^^^^^^~08/01/2010~
-~15244~^~417~^10.^0^^~4~^~RA~^^^^^^^^^^~08/01/2010~
-~15244~^~431~^0.^0^^~4~^~RA~^^^^^^^^^^~08/01/2010~
-~15244~^~432~^10.^0^^~4~^~RA~^^^^^^^^^^~08/01/2010~
-~15244~^~435~^10.^0^^~4~^~NC~^^^^^^^^^^~08/01/2010~
-~15244~^~601~^62.^0^^~4~^~RA~^^^^^^^^^^~08/01/2010~
-~15245~^~208~^59.^0^^~4~^~NC~^^^^^^^^^^~09/01/1987~
-~15245~^~268~^247.^0^^~4~^^^^^^^^^^^
-~15245~^~301~^44.^0^^~4~^~BFZN~^^^^^^^^^^~04/01/1996~
-~15245~^~304~^33.^4^2.^~1~^^^^^^^^^^^~09/01/1987~
-~15245~^~305~^93.^4^10.^~1~^^^^^^^^^^^~09/01/1987~
-~15245~^~306~^124.^4^15.^~1~^^^^^^^^^^^~09/01/1987~
-~15245~^~307~^178.^4^8.^~1~^^^^^^^^^^^~09/01/1987~
-~15245~^~318~^25.^4^14.^~1~^^^^^^^^^^^~09/01/1987~
-~15245~^~319~^8.^4^4.^~1~^^^^^^^^^^^~06/01/2002~
-~15245~^~320~^8.^4^4.^~1~^^^^^^^^^^^~06/01/2002~
-~15245~^~417~^18.^4^4.^~1~^^^^^^^^^^^~09/01/1987~
-~15245~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~
-~15245~^~432~^18.^4^4.^~1~^^^^^^^^^^^~09/01/1987~
-~15245~^~435~^18.^0^^~4~^~NC~^^^^^^^^^^~01/01/2001~
-~15245~^~601~^25.^4^1.^~1~^^^^^^^^^^^~09/01/1987~
-~15246~^~208~^79.^0^^~4~^~NC~^^^^^^^^^^~09/01/1987~
-~15246~^~268~^331.^0^^~4~^^^^^^^^^^^
-~15246~^~301~^56.^0^^~4~^^^^^^^^^^^~01/01/1994~
-~15246~^~304~^33.^4^2.^~1~^^^^^^^^^^^~09/01/1987~
-~15246~^~305~^115.^4^16.^~1~^^^^^^^^^^^~09/01/1987~
-~15246~^~306~^152.^4^20.^~1~^^^^^^^^^^^~09/01/1987~
-~15246~^~307~^163.^4^8.^~1~^^^^^^^^^^^~09/01/1987~
-~15246~^~318~^63.^4^31.^~1~^^^^^^^^^^^~09/01/1987~
-~15246~^~319~^19.^4^9.^~1~^^^^^^^^^^^~06/01/2002~
-~15246~^~320~^19.^4^9.^~1~^^^^^^^^^^^~06/01/2002~
-~15246~^~417~^24.^4^3.^~1~^^^^^^^^^^^~09/01/1987~
-~15246~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~
-~15246~^~432~^24.^4^3.^~1~^^^^^^^^^^^~09/01/1987~
-~15246~^~435~^24.^0^^~4~^~NC~^^^^^^^^^^~01/01/2001~
-~15246~^~601~^38.^4^3.^~1~^^^^^^^^^^^~09/01/1987~
-~15247~^~208~^139.^0^^~4~^~NC~^^^^^^^^^^~09/01/1987~
-~15247~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~
-~15247~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~
-~15247~^~268~^582.^0^^~4~^^^^^^^^^^^~03/01/2009~
-~15247~^~301~^45.^0^^~4~^~BFSN~^^^^^^^^^^~05/01/1995~
-~15247~^~304~^33.^2^^~1~^^^^^^^^^^^~09/01/1987~
-~15247~^~305~^322.^2^^~1~^^^^^^^^^^^~09/01/1987~
-~15247~^~306~^434.^2^^~1~^^^^^^^^^^^~09/01/1987~
-~15247~^~307~^58.^2^^~1~^^^^^^^^^^^~09/01/1987~
-~15247~^~318~^169.^0^^~4~^~NC~^^^^^^^^^^~03/01/2009~
-~15247~^~319~^51.^0^^~4~^~BFYN~^~15081~^^^^^^^^^~03/01/2009~
-~15247~^~320~^51.^0^^~4~^~NC~^^^^^^^^^^~03/01/2009~
-~15247~^~321~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~
-~15247~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~
-~15247~^~324~^451.^0^^~4~^~BFYN~^~15081~^^^^^^^^^~03/01/2009~
-~15247~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~
-~15247~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~
-~15247~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~
-~15247~^~417~^13.^2^^~1~^^^^^^^^^^^~09/01/1987~
-~15247~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~
-~15247~^~432~^13.^2^^~1~^^^^^^^^^^^~03/01/2009~
-~15247~^~435~^13.^0^^~4~^~NC~^^^^^^^^^^~03/01/2009~
-~15247~^~601~^55.^2^^~1~^^^^^^^^^^^~09/01/1987~
-~15250~^~208~^130.^0^^~4~^^^^^^^^^^^~03/01/2009~
-~15250~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~
-~15250~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~
-~15250~^~268~^544.^0^^~4~^^^^^^^^^^^~03/01/2009~
-~15250~^~301~^98.^0^^~4~^^^^^^^^^^^~03/01/2009~
-~15250~^~304~^238.^0^^~4~^^^^^^^^^^^~03/01/2009~
-~15250~^~305~^217.^0^^~4~^^^^^^^^^^^~03/01/2009~
-~15250~^~306~^163.^0^^~4~^^^^^^^^^^^~03/01/2009~
-~15250~^~307~^153.^0^^~4~^^^^^^^^^^^~03/01/2009~
-~15250~^~318~^23.^0^^~4~^~NC~^^^^^^^^^^~03/01/2009~
-~15250~^~319~^7.^0^^~4~^~T~^^^^^^^^^^~03/01/2009~
-~15250~^~320~^7.^0^^~4~^~NC~^^^^^^^^^^~03/01/2009~
-~15250~^~321~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~
-~15250~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~
-~15250~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2009~
-~15250~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~
-~15250~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~
-~15250~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~
-~15250~^~417~^179.^0^^~4~^^^^^^^^^^^~03/01/2009~
-~15250~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~
-~15250~^~432~^179.^0^^~4~^~NR~^^^^^^^^^^~02/01/2003~
-~15250~^~435~^179.^0^^~4~^~NC~^^^^^^^^^^~03/01/2009~
-~15250~^~601~^65.^0^^~4~^^^^^^^^^^^~03/01/2009~
-~15251~^~208~^212.^0^^~4~^~NC~^^^^^^^^^^~06/01/1995~
-~15251~^~268~^887.^0^^~4~^^^^^^^^^^^
-~15251~^~301~^8.^1^^~1~^~A~^^^^^^^^^^~04/01/1996~
-~15251~^~304~^20.^1^^~1~^~A~^^^^^^^^^^~06/01/1995~
-~15251~^~305~^176.^1^^~1~^~A~^^^^^^^^^^~04/01/1996~
-~15251~^~306~^165.^1^^~1~^~A~^^^^^^^^^^~04/01/1996~
-~15251~^~307~^173.^1^^~1~^~A~^^^^^^^^^^~04/01/1996~
-~15251~^~417~^9.^0^^~4~^~RA~^^^^^^^^^^~12/01/1997~
-~15251~^~431~^3.^0^^~4~^~NC~^^^^^^^^^^~05/01/2000~
-~15251~^~432~^6.^0^^~4~^^^^^^^^^^^~06/01/1995~
-~15251~^~435~^11.^0^^~4~^~NC~^^^^^^^^^^~01/01/2001~
-~15251~^~601~^26.^1^^~1~^~A~^^^^^^^^^^~04/01/1996~
-~15252~^~208~^189.^0^^~4~^~NC~^^^^^^^^^^~04/01/1996~
-~15252~^~268~^791.^0^^~4~^^^^^^^^^^^
-~15252~^~301~^9.^1^^~1~^~A~^^^^^^^^^^~04/01/1996~
-~15252~^~304~^20.^1^^~1~^~A~^^^^^^^^^^~04/01/1996~
-~15252~^~305~^173.^1^^~1~^~A~^^^^^^^^^^~04/01/1996~
-~15252~^~306~^161.^1^^~1~^~A~^^^^^^^^^^~04/01/1996~
-~15252~^~307~^167.^1^^~1~^~A~^^^^^^^^^^~04/01/1996~
-~15252~^~417~^9.^0^^~4~^~RA~^^^^^^^^^^~12/01/1997~
-~15252~^~431~^3.^0^^~4~^~NC~^^^^^^^^^^~05/01/2000~
-~15252~^~432~^6.^0^^~4~^^^^^^^^^^^~04/01/1996~
-~15252~^~435~^11.^0^^~4~^~NC~^^^^^^^^^^~01/01/2001~
-~15252~^~601~^27.^1^^~1~^~A~^^^^^^^^^^~04/01/1996~
-~15253~^~208~^153.^0^^~4~^~NC~^^^^^^^^^^~05/01/2011~
-~15253~^~262~^0.^0^^~4~^~BFSN~^~15087~^^^^^^^^^~05/01/2011~
-~15253~^~263~^0.^0^^~4~^~BFSN~^~15087~^^^^^^^^^~05/01/2011~
-~15253~^~268~^639.^0^^~4~^~NC~^^^^^^^^^^~05/01/2011~
-~15253~^~301~^198.^12^6.^~1~^~A~^^^1^167.^247.^11^182.^212.^~2, 3~^~05/01/2011~
-~15253~^~304~^30.^12^0.^~1~^~A~^^^1^27.^34.^11^28.^31.^~2, 3~^~05/01/2011~
-~15253~^~305~^321.^12^4.^~1~^~A~^^^1^298.^358.^11^309.^331.^~2, 3~^~05/01/2011~
-~15253~^~306~^329.^12^5.^~1~^~A~^^^1^303.^355.^11^318.^340.^~2, 3~^~05/01/2011~
-~15253~^~307~^433.^12^18.^~1~^~A~^^^1^348.^543.^11^391.^474.^~2, 3~^~05/01/2011~
-~15253~^~318~^129.^0^^~4~^~NC~^^^^^^^^^^~05/01/2011~
-~15253~^~319~^39.^12^2.^~1~^~A~^^^1^25.^58.^11^32.^45.^~2, 3~^~05/01/2011~
-~15253~^~320~^39.^0^^~1~^~AS~^^^^^^^^^^~05/01/2011~
-~15253~^~321~^0.^0^^~4~^~BFSN~^~15087~^^^^^^^^^~05/01/2011~
-~15253~^~322~^0.^0^^~4~^~BFSN~^~15087~^^^^^^^^^~05/01/2011~
-~15253~^~324~^761.^0^^~4~^~BFSN~^~15087~^^^^^^^^^~05/01/2011~
-~15253~^~334~^0.^0^^~4~^~BFSN~^~15087~^^^^^^^^^~05/01/2011~
-~15253~^~337~^0.^0^^~4~^~BFSN~^~15087~^^^^^^^^^~05/01/2011~
-~15253~^~338~^0.^0^^~4~^~BFSN~^~15087~^^^^^^^^^~05/01/2011~
-~15253~^~431~^0.^0^^~4~^~BFSN~^~15087~^^^^^^^^^~05/01/2011~
-~15253~^~432~^3.^0^^~4~^~BFSN~^~15087~^^^^^^^^^~05/01/2011~
-~15253~^~435~^3.^0^^~4~^~NC~^~15087~^^^^^^^^^~05/01/2011~
-~15253~^~601~^67.^12^0.^~1~^~A~^^^1^63.^72.^11^64.^68.^~2, 3~^~05/01/2011~
-~15260~^~208~^138.^0^^~4~^~NC~^^^^^^^^^^~05/01/2011~
-~15260~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2005~
-~15260~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2005~
-~15260~^~268~^576.^0^^~4~^~NC~^^^^^^^^^^~05/01/2011~
-~15260~^~301~^283.^17^6.^~1~^~A~^^^1^228.^317.^16^269.^295.^~2, 3~^~05/01/2011~
-~15260~^~304~^32.^17^0.^~1~^~A~^^^1^30.^35.^16^31.^32.^~2, 3~^~05/01/2011~
-~15260~^~305~^379.^17^3.^~1~^~A~^^^1^345.^406.^16^370.^387.^~2, 3~^~05/01/2011~
-~15260~^~306~^333.^17^3.^~1~^~A~^^^1^311.^355.^16^326.^340.^~2, 3~^~05/01/2011~
-~15260~^~307~^381.^17^7.^~1~^~A~^^^1^293.^428.^16^364.^398.^~2, 3~^~05/01/2011~
-~15260~^~318~^65.^0^^~1~^~AS~^^^^^^^^^^~05/01/2011~
-~15260~^~319~^20.^17^5.^~1~^~A~^^^1^5.^77.^16^8.^30.^~2, 3~^~05/01/2011~
-~15260~^~320~^20.^0^^~1~^~AS~^^^^^^^^^^~05/01/2011~
-~15260~^~321~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2005~
-~15260~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2005~
-~15260~^~324~^580.^3^33.^~1~^~A~^^^1^514.^616.^2^437.^723.^~2, 3~^~05/01/2011~
-~15260~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2005~
-~15260~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2005~
-~15260~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2005~
-~15260~^~417~^4.^13^0.^~1~^~A~^^^1^^^^^^^~02/01/2005~
-~15260~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2005~
-~15260~^~432~^4.^13^0.^~1~^~A~^^^1^^^^^^^~12/01/2006~
-~15260~^~435~^4.^0^^~4~^~NC~^^^^^^^^^^~03/01/2009~
-~15260~^~601~^83.^17^1.^~1~^~A~^^^1^74.^90.^16^80.^85.^~2, 3~^~05/01/2011~
-~15261~^~208~^96.^0^^~4~^~NC~^^^^^^^^^^~03/01/2009~
-~15261~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2005~
-~15261~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2005~
-~15261~^~268~^400.^0^^~4~^~NC~^^^^^^^^^^~03/01/2009~
-~15261~^~301~^10.^3^0.^~1~^~A~^^^1^^^^^^^~02/01/2005~
-~15261~^~304~^27.^3^0.^~1~^~A~^^^1^^^^^^^~02/01/2005~
-~15261~^~305~^170.^3^2.^~1~^~A~^^^1^^^^^^^~02/01/2005~
-~15261~^~306~^302.^3^7.^~1~^~A~^^^1^^^^^^^~02/01/2005~
-~15261~^~307~^52.^3^2.^~1~^~A~^^^1^^^^^^^~02/01/2005~
-~15261~^~318~^0.^0^^~1~^~AS~^^^^^^^^^^~03/01/2005~
-~15261~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2007~
-~15261~^~320~^0.^0^^~1~^~AS~^^^^^^^^^^~03/01/2005~
-~15261~^~321~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2005~
-~15261~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2005~
-~15261~^~324~^124.^0^^~4~^~BFSN~^~15060~^^^^^^^^^~03/01/2009~
-~15261~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2005~
-~15261~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2005~
-~15261~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2005~
-~15261~^~417~^24.^2^^~1~^~A~^^^1^^^^^^^~02/01/2005~
-~15261~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2005~
-~15261~^~432~^24.^2^^~1~^~A~^^^^^^^^^^~03/01/2009~
-~15261~^~435~^24.^0^^~4~^~NC~^^^^^^^^^^~03/01/2009~
-~15261~^~601~^50.^3^1.^~1~^~A~^^^1^^^^^^^~02/01/2005~
-~15262~^~208~^128.^0^^~4~^~NC~^^^^^^^^^^~03/01/2005~
-~15262~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2005~
-~15262~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2005~
-~15262~^~268~^538.^0^^~4~^~NC~^^^^^^^^^^~03/01/2005~
-~15262~^~301~^14.^2^^~1~^~A~^^^1^^^^^^^~03/01/2005~
-~15262~^~304~^34.^1^^~1~^~A~^^^^^^^^^^~03/01/2005~
-~15262~^~305~^204.^2^^~1~^~A~^^^1^^^^^^^~03/01/2005~
-~15262~^~306~^380.^2^^~1~^~A~^^^1^^^^^^^~03/01/2005~
-~15262~^~307~^56.^2^^~1~^~A~^^^1^^^^^^^~03/01/2005~
-~15262~^~318~^0.^0^^~1~^~AS~^^^^^^^^^^~03/01/2005~
-~15262~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2005~
-~15262~^~320~^0.^0^^~1~^~AS~^^^^^^^^^^~03/01/2005~
-~15262~^~321~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2005~
-~15262~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2005~
-~15262~^~324~^150.^0^^~4~^~RA~^^^^^^^^^^~03/01/2011~
-~15262~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2005~
-~15262~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2005~
-~15262~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2005~
-~15262~^~417~^6.^2^^~1~^~A~^^^1^^^^^^^~03/01/2005~
-~15262~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2005~
-~15262~^~432~^6.^2^^~1~^~A~^^^^^^^^^^~03/01/2005~
-~15262~^~435~^6.^0^^~4~^~NC~^^^^^^^^^^~03/01/2005~
-~15262~^~601~^57.^2^^~1~^~A~^^^1^^^^^^^~03/01/2005~
-~15264~^~208~^158.^0^^~4~^~NC~^^^^^^^^^^~05/01/2011~
-~15264~^~262~^0.^0^^~4~^~BFSN~^~15087~^^^^^^^^^~05/01/2011~
-~15264~^~263~^0.^0^^~4~^~BFSN~^~15087~^^^^^^^^^~05/01/2011~
-~15264~^~268~^662.^0^^~4~^~NC~^^^^^^^^^^~05/01/2011~
-~15264~^~301~^37.^12^2.^~1~^~A~^^^1^23.^53.^11^30.^42.^~2, 3~^~05/01/2011~
-~15264~^~304~^24.^12^0.^~1~^~A~^^^1^20.^29.^11^22.^25.^~2, 3~^~05/01/2011~
-~15264~^~305~^236.^12^3.^~1~^~A~^^^1^219.^264.^11^227.^244.^~2, 3~^~05/01/2011~
-~15264~^~306~^312.^12^5.^~1~^~A~^^^1^286.^351.^11^301.^323.^~2, 3~^~05/01/2011~
-~15264~^~307~^386.^12^15.^~1~^~A~^^^1^332.^511.^11^352.^419.^~2, 3~^~05/01/2011~
-~15264~^~318~^187.^0^^~1~^~AS~^^^^^^^^^^~05/01/2011~
-~15264~^~319~^56.^12^2.^~1~^~A~^^^1^42.^69.^11^50.^61.^~2, 3~^~05/01/2011~
-~15264~^~320~^56.^0^^~1~^~AS~^^^^^^^^^^~05/01/2011~
-~15264~^~321~^0.^0^^~4~^~BFSN~^~15087~^^^^^^^^^~05/01/2011~
-~15264~^~322~^0.^0^^~4~^~BFSN~^~15087~^^^^^^^^^~05/01/2011~
-~15264~^~324~^859.^3^102.^~1~^~A~^^^1^736.^1062.^2^420.^1297.^~2, 3~^~05/01/2011~
-~15264~^~334~^0.^0^^~4~^~BFSN~^~15087~^^^^^^^^^~05/01/2011~
-~15264~^~337~^0.^0^^~4~^~BFSN~^~15087~^^^^^^^^^~05/01/2011~
-~15264~^~338~^0.^0^^~4~^~BFSN~^~15087~^^^^^^^^^~05/01/2011~
-~15264~^~417~^4.^0^^~4~^~BFSN~^~15087~^^^^^^^^^~05/01/2011~
-~15264~^~431~^0.^0^^~4~^~BFSN~^~15087~^^^^^^^^^~05/01/2011~
-~15264~^~432~^4.^0^^~4~^~BFSN~^~15087~^^^^^^^^^~05/01/2011~
-~15264~^~435~^4.^0^^~4~^~NC~^~15087~^^^^^^^^^~05/01/2011~
-~15264~^~601~^66.^12^0.^~1~^~A~^^^1^61.^72.^11^64.^68.^~2, 3~^~05/01/2011~
-~15265~^~208~^136.^0^^~4~^~NC~^^^^^^^^^^~05/01/2011~
-~15265~^~262~^0.^0^^~4~^~BFSN~^~15260~^^^^^^^^^~05/01/2011~
-~15265~^~263~^0.^0^^~4~^~BFSN~^~15260~^^^^^^^^^~05/01/2011~
-~15265~^~268~^570.^0^^~4~^~NC~^^^^^^^^^^~05/01/2011~
-~15265~^~301~^60.^17^3.^~1~^~A~^^^1^27.^86.^16^52.^67.^~2, 3~^~05/01/2011~
-~15265~^~304~^24.^17^0.^~1~^~A~^^^1^19.^27.^16^23.^25.^~2, 3~^~05/01/2011~
-~15265~^~305~^253.^17^3.^~1~^~A~^^^1^223.^277.^16^244.^260.^~2, 3~^~05/01/2011~
-~15265~^~306~^326.^17^4.^~1~^~A~^^^1^298.^354.^16^317.^335.^~2, 3~^~05/01/2011~
-~15265~^~307~^378.^17^7.^~1~^~A~^^^1^302.^427.^16^362.^392.^~2, 3~^~05/01/2011~
-~15265~^~318~^66.^0^^~4~^~NC~^^^^^^^^^^~05/01/2011~
-~15265~^~319~^20.^0^^~4~^~BFSN~^~15260~^^^^^^^^^~05/01/2011~
-~15265~^~320~^20.^0^^~4~^~BFSN~^~15260~^^^^^^^^^~05/01/2011~
-~15265~^~321~^0.^0^^~4~^~BFSN~^~15260~^^^^^^^^^~05/01/2011~
-~15265~^~322~^0.^0^^~4~^~BFSN~^~15260~^^^^^^^^^~05/01/2011~
-~15265~^~324~^563.^3^28.^~1~^~A~^^^1^531.^620.^2^438.^686.^~2, 3~^~05/01/2011~
-~15265~^~334~^0.^0^^~4~^~BFSN~^~15260~^^^^^^^^^~05/01/2011~
-~15265~^~337~^0.^0^^~4~^~BFSN~^~15260~^^^^^^^^^~05/01/2011~
-~15265~^~338~^0.^0^^~4~^~BFSN~^~15260~^^^^^^^^^~05/01/2011~
-~15265~^~417~^4.^0^^~4~^~BFSN~^~15260~^^^^^^^^^~05/01/2011~
-~15265~^~431~^0.^0^^~4~^~BFSN~^~15260~^^^^^^^^^~05/01/2011~
-~15265~^~432~^4.^0^^~4~^~BFSN~^~15260~^^^^^^^^^~05/01/2011~
-~15265~^~435~^4.^0^^~4~^~NC~^~15260~^^^^^^^^^~05/01/2011~
-~15265~^~601~^83.^0^^~4~^~BFSN~^~15260~^^^^^^^^^~05/01/2011~
-~15266~^~208~^76.^0^^~4~^~NC~^~~^~~^^^^^^^~~^~02/01/2017~
-~15266~^~268~^318.^0^^~4~^~NC~^~~^~~^^^^^^^~~^~02/01/2017~
-~15266~^~301~^12.^3^^~1~^~A~^^^1^11.^13.^^^^~2~^~08/01/2012~
-~15266~^~304~^34.^3^^~1~^~A~^^^1^30.^40.^^^^~2~^~08/01/2012~
-~15266~^~305~^190.^3^^~1~^~A~^^^1^187.^191.^^^^~2~^~08/01/2012~
-~15266~^~306~^331.^3^^~1~^~A~^^^1^316.^349.^^^^~2~^~08/01/2012~
-~15266~^~307~^159.^3^^~1~^~A~^^^1^146.^182.^^^^~2~^~08/01/2012~
-~15266~^~601~^61.^3^^~1~^~A~^^^1^58.^65.^^^^~2~^~08/01/2012~
-~15267~^~208~^86.^0^^~4~^~NC~^~~^~~^^^^^^^~~^~10/01/2017~
-~15267~^~268~^362.^0^^~4~^~NC~^~~^~~^^^^^^^~~^~10/01/2017~
-~15267~^~301~^13.^3^^~1~^~A~^^^1^12.^16.^^^^~2~^~08/01/2012~
-~15267~^~304~^37.^3^^~1~^~A~^^^1^31.^44.^^^^~2~^~08/01/2012~
-~15267~^~305~^206.^3^^~1~^~A~^^^1^205.^206.^^^^~2~^~08/01/2012~
-~15267~^~306~^364.^3^^~1~^~A~^^^1^358.^373.^^^^~2~^~08/01/2012~
-~15267~^~307~^166.^3^^~1~^~A~^^^1^146.^193.^^^^~2~^~08/01/2012~
-~15267~^~601~^74.^3^^~1~^~A~^^^1^73.^76.^^^^~2~^~08/01/2012~
-~15269~^~208~^84.^0^^~4~^~NC~^^^^^^^^^^~08/01/2012~
-~15269~^~268~^351.^0^^~4~^~NC~^^^^^^^^^^~08/01/2012~
-~15269~^~301~^17.^3^^~1~^~A~^^^1^10.^25.^^^^~2~^~08/01/2012~
-~15269~^~304~^35.^3^^~1~^~A~^^^1^26.^45.^^^^~2~^~08/01/2012~
-~15269~^~305~^205.^3^^~1~^~A~^^^1^185.^221.^^^^~2~^~08/01/2012~
-~15269~^~306~^372.^3^^~1~^~A~^^^1^328.^401.^^^^~2~^~08/01/2012~
-~15269~^~307~^134.^3^^~1~^~A~^^^1^92.^210.^^^^~2~^~08/01/2012~
-~15269~^~601~^61.^3^^~1~^~A~^^^1^57.^68.^^^^~2~^~08/01/2012~
-~15270~^~208~^85.^0^^~4~^~NC~^^^^^^^^^^~08/01/2012~
-~15270~^~268~^356.^0^^~4~^~NC~^^^^^^^^^^~08/01/2012~
-~15270~^~301~^64.^3^^~1~^~A~^^^1^60.^66.^^^^~2~^~08/01/2012~
-~15270~^~304~^35.^3^^~1~^~A~^^^1^35.^35.^^^^~2~^~08/01/2012~
-~15270~^~305~^214.^3^^~1~^~A~^^^1^209.^218.^^^^~2~^~08/01/2012~
-~15270~^~306~^264.^3^^~1~^~A~^^^1^250.^280.^^^^~2~^~08/01/2012~
-~15270~^~307~^119.^3^^~1~^~A~^^^1^115.^123.^^^^~2~^~08/01/2012~
-~15270~^~601~^161.^3^^~1~^~A~^^^1^156.^165.^^^^~2~^~08/01/2012~
-~15271~^~208~^99.^0^^~4~^~NC~^^^^^^^^^^~08/01/2012~
-~15271~^~268~^415.^0^^~4~^~NC~^^^^^^^^^^~08/01/2012~
-~15271~^~301~^70.^3^^~1~^~A~^^^1^64.^75.^^^^~2~^~08/01/2012~
-~15271~^~304~^39.^3^^~1~^~A~^^^1^38.^39.^^^^~2~^~08/01/2012~
-~15271~^~305~^237.^3^^~1~^~A~^^^1^234.^241.^^^^~2~^~08/01/2012~
-~15271~^~306~^259.^3^^~1~^~A~^^^1^247.^265.^^^^~2~^~08/01/2012~
-~15271~^~307~^111.^3^^~1~^~A~^^^1^107.^114.^^^^~2~^~08/01/2012~
-~15271~^~601~^189.^3^^~1~^~A~^^^1^177.^197.^^^^~2~^~08/01/2012~
-~15274~^~208~^110.^0^^~4~^~NC~^^^^^^^^^^~08/01/2013~
-~15274~^~268~^458.^0^^~4~^~NC~^^^^^^^^^^~08/01/2013~
-~15274~^~301~^25.^3^7.^~1~^~A~^^^1^12.^36.^2^-4.^55.^~2, 3~^~08/01/2013~
-~15274~^~304~^28.^3^0.^~1~^~A~^^^1^26.^30.^2^23.^31.^~2, 3~^~08/01/2013~
-~15274~^~305~^246.^3^6.^~1~^~A~^^^1^234.^253.^2^220.^271.^~2, 3~^~08/01/2013~
-~15274~^~306~^417.^3^9.^~1~^~A~^^^1^407.^436.^2^376.^457.^~2, 3~^~08/01/2013~
-~15274~^~307~^45.^3^1.^~1~^~A~^^^1^43.^48.^2^38.^51.^~2, 3~^~08/01/2013~
-~15274~^~601~^60.^3^1.^~1~^~A~^^^1^57.^64.^2^51.^68.^~2, 3~^~08/01/2013~
-~16001~^~208~^329.^0^^~4~^~NC~^^^^^^^^^^~12/01/1986~
-~16001~^~268~^1377.^0^^~4~^^^^^^^^^^^
-~16001~^~301~^66.^2^^~1~^^^^^^^^^^^~12/01/1986~
-~16001~^~304~^127.^2^^~1~^^^^^^^^^^^~12/01/1986~
-~16001~^~305~^381.^3^^~1~^^^^^^^^^^^~12/01/1986~
-~16001~^~306~^1254.^1^^~1~^^^^^^^^^^^~12/01/1986~
-~16001~^~307~^5.^1^^~1~^^^^^^^^^^^~12/01/1986~
-~16001~^~318~^17.^2^^~1~^^^^^^^^^^^~12/01/1986~
-~16001~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2002~
-~16001~^~320~^1.^2^^~1~^^^^^^^^^^^~06/01/2002~
-~16001~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~
-~16001~^~417~^622.^0^^~4~^^^^^^^^^^^~12/01/1986~
-~16001~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~
-~16001~^~432~^622.^0^^~4~^^^^^^^^^^^~12/01/1986~
-~16001~^~435~^622.^0^^~4~^~NC~^^^^^^^^^^~01/01/2001~
-~16001~^~601~^0.^0^^~1~^^^^^^^^^^^~12/01/1986~
-~16001~^~636~^76.^0^^~1~^^^^^^^^^^^~12/01/1986~
-~16002~^~208~^128.^0^^~4~^~NC~^^^^^^^^^^~12/01/1986~
-~16002~^~268~^536.^0^^~4~^^^^^^^^^^^
-~16002~^~301~^28.^1^^~1~^^^^^^^^^^^~12/01/1986~
-~16002~^~304~^52.^1^^~1~^^^^^^^^^^^~12/01/1986~
-~16002~^~305~^168.^1^^~1~^^^^^^^^^^^~12/01/1986~
-~16002~^~306~^532.^1^^~1~^^^^^^^^^^^~12/01/1986~
-~16002~^~307~^8.^1^^~1~^^^^^^^^^^^~12/01/1986~
-~16002~^~318~^6.^0^^~1~^^^^^^^^^^^~12/01/1986~
-~16002~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2002~
-~16002~^~320~^0.^0^^~1~^^^^^^^^^^^~06/01/2002~
-~16002~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~
-~16002~^~417~^121.^0^^~4~^^^^^^^^^^^~12/01/1986~
-~16002~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~
-~16002~^~432~^121.^0^^~4~^^^^^^^^^^^~12/01/1986~
-~16002~^~435~^121.^0^^~4~^~NC~^^^^^^^^^^~01/01/2001~
-~16002~^~601~^0.^0^^~1~^^^^^^^^^^^~12/01/1986~
-~16003~^~208~^237.^0^^~4~^~NC~^^^^^^^^^^~12/01/1986~
-~16003~^~268~^992.^0^^~4~^^^^^^^^^^^
-~16003~^~301~^22.^1^^~1~^^^^^^^^^^^~12/01/1986~
-~16003~^~304~^31.^1^^~1~^^^^^^^^^^^~12/01/1986~
-~16003~^~305~^74.^1^^~1~^^^^^^^^^^^~12/01/1986~
-~16003~^~306~^119.^1^^~1~^^^^^^^^^^^~12/01/1986~
-~16003~^~307~^218.^1^^~1~^^^^^^^^^^^~12/01/1986~
-~16003~^~318~^5.^0^^~4~^^^^^^^^^^^~12/01/1986~
-~16003~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2002~
-~16003~^~320~^0.^0^^~4~^^^^^^^^^^^~06/01/2002~
-~16003~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~
-~16003~^~417~^107.^0^^~4~^^^^^^^^^^^~12/01/1986~
-~16003~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~
-~16003~^~432~^107.^0^^~4~^^^^^^^^^^^~12/01/1986~
-~16003~^~435~^107.^0^^~4~^~NC~^^^^^^^^^^~01/01/2001~
-~16003~^~601~^0.^0^^~1~^^^^^^^^^^^~12/01/1986~
-~16004~^~208~^260.^0^^~4~^~NC~^^^^^^^^^^~12/01/1986~
-~16004~^~268~^1088.^0^^~4~^^^^^^^^^^^
-~16004~^~301~^27.^1^^~1~^^^^^^^^^^^~12/01/1986~
-~16004~^~304~^18.^1^^~1~^^^^^^^^^^^~12/01/1986~
-~16004~^~305~^40.^1^^~1~^^^^^^^^^^^~12/01/1986~
-~16004~^~306~^45.^1^^~1~^^^^^^^^^^^~12/01/1986~
-~16004~^~307~^83.^1^^~1~^^^^^^^^^^^~12/01/1986~
-~16004~^~318~^1.^0^^~1~^^^^^^^^^^^~12/01/1986~
-~16004~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2002~
-~16004~^~320~^0.^0^^~1~^^^^^^^^^^^~06/01/2002~
-~16004~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~
-~16004~^~417~^8.^0^^~1~^^^^^^^^^^^~12/01/1986~
-~16004~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~
-~16004~^~432~^8.^0^^~1~^^^^^^^^^^^~12/01/1986~
-~16004~^~435~^8.^0^^~4~^~NC~^^^^^^^^^^~01/01/2001~
-~16004~^~601~^0.^0^^~1~^^^^^^^^^^^~12/01/1986~
-~16005~^~208~^155.^0^^~4~^~NC~^^^^^^^^^^~07/01/2008~
-~16005~^~268~^649.^0^^~4~^~NC~^^^^^^^^^^~07/01/2008~
-~16005~^~301~^61.^0^^~1~^^^^^^^^^^^~12/01/1986~
-~16005~^~304~^43.^0^^~1~^^^^^^^^^^^~12/01/1986~
-~16005~^~305~^109.^0^^~1~^^^^^^^^^^^~12/01/1986~
-~16005~^~306~^358.^0^^~1~^^^^^^^^^^^~12/01/1986~
-~16005~^~307~^422.^0^^~1~^^^^^^^^^^^~12/01/1986~
-~16005~^~318~^0.^0^^~1~^^^^^^^^^^^~12/01/1986~
-~16005~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2002~
-~16005~^~320~^0.^0^^~1~^~AS~^^^^^^^^^^~07/01/2008~
-~16005~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~
-~16005~^~417~^48.^0^^~1~^^^^^^^^^^^~12/01/1986~
-~16005~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~
-~16005~^~432~^48.^0^^~1~^^^^^^^^^^^~12/01/1986~
-~16005~^~435~^48.^0^^~4~^~NC~^^^^^^^^^^~07/01/2008~
-~16005~^~601~^5.^0^^~1~^^^^^^^^^^^~12/01/1986~
-~16006~^~208~^94.^0^^~4~^~NC~^^^^^^^^^^~03/01/2006~
-~16006~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~
-~16006~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~
-~16006~^~268~^393.^0^^~4~^~NC~^^^^^^^^^^~03/01/2006~
-~16006~^~301~^34.^5^2.^~6~^~JA~^^^2^31.^50.^4^27.^40.^~2, 3~^~12/01/2005~
-~16006~^~304~^27.^5^1.^~6~^~JA~^^^2^23.^32.^4^22.^30.^~2, 3~^~12/01/2005~
-~16006~^~305~^74.^5^4.^~6~^~JA~^^^2^67.^104.^4^61.^87.^~2, 3~^~12/01/2005~
-~16006~^~306~^224.^5^11.^~6~^~JA~^^^2^199.^296.^4^192.^254.^~2, 3~^~12/01/2005~
-~16006~^~307~^343.^5^13.^~6~^~JA~^^^2^292.^397.^4^305.^381.^~2, 3~^~12/01/2005~
-~16006~^~318~^108.^0^^~1~^~AS~^^^^^^^^^^~03/01/2006~
-~16006~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2002~
-~16006~^~320~^5.^0^^~1~^~AS~^^^^^^^^^^~03/01/2006~
-~16006~^~321~^65.^5^6.^~1~^~A~^^^1^54.^85.^4^47.^82.^~2, 3~^~05/01/2004~
-~16006~^~322~^0.^5^0.^~1~^~A~^^^1^0.^0.^^^^~1, 2, 3~^~05/01/2004~
-~16006~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~
-~16006~^~334~^0.^5^0.^~1~^~A~^^^1^0.^0.^^^^~1, 2, 3~^~05/01/2004~
-~16006~^~337~^511.^5^45.^~1~^~A~^^^1^432.^687.^4^386.^636.^~2, 3~^~05/01/2004~
-~16006~^~338~^16.^5^6.^~1~^~A~^^^1^3.^36.^4^-1.^33.^~1, 2, 3~^~03/01/2006~
-~16006~^~417~^12.^7^0.^~6~^~JA~^^^2^4.^24.^4^9.^13.^~2, 3~^~05/01/2004~
-~16006~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~
-~16006~^~432~^12.^7^0.^~6~^~JA~^^^2^4.^24.^4^9.^13.^^~03/01/2006~
-~16006~^~435~^12.^0^^~4~^~NC~^^^^^^^^^^~03/01/2006~
-~16006~^~601~^0.^0^^~1~^^^^^^^^^^^~12/01/1986~
-~16007~^~208~^121.^0^^~4~^~NC~^^^^^^^^^^~12/01/1986~
-~16007~^~268~^506.^0^^~4~^^^^^^^^^^^
-~16007~^~301~^45.^10^1.^~1~^^^^^^^^^^^~12/01/1986~
-~16007~^~304~^25.^1^^~1~^^^^^^^^^^^~12/01/1986~
-~16007~^~305~^81.^1^^~1~^^^^^^^^^^^~12/01/1986~
-~16007~^~306~^320.^1^^~1~^^^^^^^^^^^~12/01/1986~
-~16007~^~307~^475.^4^3.^~1~^^^^^^^^^^^~12/01/1986~
-~16007~^~318~^213.^10^18.^~1~^^^^^^^^^^^~12/01/1986~
-~16007~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2002~
-~16007~^~320~^11.^10^0.^~1~^^^^^^^^^^^~06/01/2002~
-~16007~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~
-~16007~^~417~^43.^0^^~1~^^^^^^^^^^^~12/01/1986~
-~16007~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~
-~16007~^~432~^43.^0^^~1~^^^^^^^^^^^~12/01/1986~
-~16007~^~435~^43.^0^^~4~^~NC~^^^^^^^^^^~01/01/2001~
-~16007~^~601~^22.^0^^~1~^^^^^^^^^^^~12/01/1986~
-~16008~^~208~^142.^0^^~4~^~NC~^^^^^^^^^^~04/01/2007~
-~16008~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~
-~16008~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~
-~16008~^~268~^596.^0^^~4~^~NC~^^^^^^^^^^~04/01/2007~
-~16008~^~301~^48.^29^0.^~1~^^^^^^^^^^^~12/01/1986~
-~16008~^~304~^28.^4^0.^~1~^^^^^^^^^^^~12/01/1986~
-~16008~^~305~^104.^4^4.^~1~^^^^^^^^^^^~12/01/1986~
-~16008~^~306~^235.^21^9.^~1~^^^^^^^^^^^~12/01/1986~
-~16008~^~307~^430.^29^6.^~1~^^^^^^^^^^^~12/01/1986~
-~16008~^~318~^87.^0^^~4~^~NC~^^^^^^^^^^~04/01/2007~
-~16008~^~319~^0.^0^^~4~^~RF~^^^^^^^^^^~02/01/2003~
-~16008~^~320~^4.^0^^~4~^~NC~^^^^^^^^^^~04/01/2007~
-~16008~^~321~^52.^0^^~4~^~RF~^^^^^^^^^^~02/01/2003~
-~16008~^~322~^0.^0^^~4~^~RF~^^^^^^^^^^~02/01/2003~
-~16008~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~
-~16008~^~334~^0.^0^^~4~^~RF~^^^^^^^^^^~02/01/2003~
-~16008~^~337~^409.^0^^~4~^~RF~^^^^^^^^^^~02/01/2003~
-~16008~^~338~^13.^0^^~4~^~RF~^^^^^^^^^^~04/01/2007~
-~16008~^~417~^30.^2^^~1~^^^^^^^^^^^~12/01/1986~
-~16008~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~
-~16008~^~432~^30.^2^^~1~^^^^^^^^^^^~04/01/2007~
-~16008~^~435~^30.^0^^~4~^~NC~^^^^^^^^^^~04/01/2007~
-~16008~^~601~^6.^0^^~1~^^^^^^^^^^^~12/01/1986~
-~16009~^~208~^106.^0^^~4~^~NC~^^^^^^^^^^~01/01/2006~
-~16009~^~268~^443.^0^^~4~^~NC~^^^^^^^^^^~01/01/2006~
-~16009~^~301~^53.^67^1.^~1~^^^^^^^^^^^~12/01/1986~
-~16009~^~304~^34.^11^1.^~1~^^^^^^^^^^^~12/01/1986~
-~16009~^~305~^108.^11^^~1~^^^^^^^^^^^~12/01/1986~
-~16009~^~306~^309.^54^^~1~^^^^^^^^^^^~12/01/1986~
-~16009~^~307~^414.^70^6.^~1~^^^^^^^^^^^~12/01/1986~
-~16009~^~318~^0.^0^^~1~^~AS~^^^^^^^^^^~01/01/2006~
-~16009~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2002~
-~16009~^~320~^0.^0^^~1~^~AS~^^^^^^^^^^~01/01/2006~
-~16009~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~
-~16009~^~417~^36.^3^9.^~1~^^^^^^^^^^^~12/01/1986~
-~16009~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~
-~16009~^~432~^36.^3^9.^~1~^^^^^^^^^^^~01/01/2006~
-~16009~^~435~^36.^0^^~4~^~NC~^^^^^^^^^^~01/01/2006~
-~16009~^~601~^7.^0^^~1~^^^^^^^^^^^~12/01/1986~
-~16010~^~208~^105.^0^^~4~^~NC~^^^^^^^^^^~08/01/2014~
-~16010~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~
-~16010~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~
-~16010~^~268~^441.^0^^~4~^~NC~^^^^^^^^^^~08/01/2014~
-~16010~^~301~^39.^18^0.^~1~^~A~^^^1^32.^49.^3^36.^41.^~2, 3~^~08/01/2014~
-~16010~^~304~^30.^18^0.^~1~^~A~^^^1^26.^42.^6^28.^30.^~2, 3~^~08/01/2014~
-~16010~^~305~^88.^18^0.^~1~^~A~^^^1^75.^111.^7^85.^89.^~2, 3~^~08/01/2014~
-~16010~^~306~^231.^18^3.^~1~^~A~^^^1^178.^319.^4^220.^241.^~2, 3~^~08/01/2014~
-~16010~^~307~^391.^18^5.^~1~^~A~^^^1^253.^481.^4^377.^405.^~2, 3~^~08/01/2014~
-~16010~^~318~^17.^0^^~1~^~AS~^^^^^^^^^^~08/01/2014~
-~16010~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2002~
-~16010~^~320~^1.^0^^~1~^~AS~^^^^^^^^^^~06/01/2012~
-~16010~^~321~^9.^9^0.^~1~^~A~^^^1^1.^31.^3^6.^11.^~2, 3~^~08/01/2014~
-~16010~^~322~^0.^9^0.^~1~^~A~^^^1^0.^2.^3^0.^0.^~1, 2, 3~^~11/01/2004~
-~16010~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~
-~16010~^~334~^2.^9^0.^~1~^~A~^^^1^0.^14.^2^0.^5.^~1, 2, 3~^~08/01/2014~
-~16010~^~337~^83.^9^27.^~1~^~A~^^^1^0.^751.^2^-37.^202.^~1, 2, 3~^~08/01/2014~
-~16010~^~338~^9.^9^2.^~1~^~A~^^^1^1.^27.^3^0.^17.^~1, 2, 3~^~07/01/2014~
-~16010~^~417~^8.^0^^~1~^~A~^^^^^^^^^^~11/01/2004~
-~16010~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~
-~16010~^~432~^8.^0^^~1~^~A~^^^^^^^^^^~03/01/2006~
-~16010~^~435~^8.^0^^~4~^~NC~^^^^^^^^^^~03/01/2006~
-~16010~^~601~^7.^0^^~4~^~T~^^^^^^^^^^~08/01/2014~
-~16011~^~208~^94.^0^^~4~^~NC~^^^^^^^^^^~02/01/2008~
-~16011~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~
-~16011~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~
-~16011~^~268~^394.^0^^~4~^~NC~^^^^^^^^^^~02/01/2008~
-~16011~^~301~^56.^225^0.^~6~^~JA~^^^2^17.^56.^3^55.^55.^~2, 3~^~04/01/2004~
-~16011~^~304~^34.^83^0.^~6~^~JA~^^^2^24.^35.^3^34.^34.^~2, 3~^~04/01/2004~
-~16011~^~305~^116.^186^0.^~6~^~JA~^^^2^55.^117.^3^115.^116.^~2, 3~^~04/01/2004~
-~16011~^~306~^295.^86^0.^~6~^~JA~^^^2^177.^300.^3^294.^295.^~2, 3~^~04/01/2004~
-~16011~^~307~^437.^223^0.^~6~^~JA~^^^2^265.^440.^3^436.^437.^~2, 3~^~04/01/2004~
-~16011~^~318~^84.^0^^~1~^~AS~^^^^^^^^^^~02/01/2008~
-~16011~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2002~
-~16011~^~320~^4.^0^^~1~^~AS~^^^^^^^^^^~02/01/2008~
-~16011~^~321~^50.^4^6.^~1~^~A~^^^1^34.^65.^3^29.^71.^~2, 3~^~04/01/2004~
-~16011~^~322~^0.^4^0.^~1~^~A~^^^1^0.^0.^^^^~1, 2, 3~^~04/01/2004~
-~16011~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~
-~16011~^~334~^0.^4^0.^~1~^~A~^^^1^0.^0.^^^^~1, 2, 3~^~04/01/2004~
-~16011~^~337~^322.^4^69.^~1~^~A~^^^1^172.^508.^3^99.^543.^~2, 3~^~04/01/2004~
-~16011~^~338~^14.^4^4.^~1~^~A~^^^1^3.^22.^3^1.^26.^~1, 2, 3~^~02/01/2008~
-~16011~^~417~^15.^8^0.^~6~^~JA~^^^2^6.^23.^3^14.^15.^~2, 3~^~04/01/2004~
-~16011~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~
-~16011~^~432~^15.^8^0.^~6~^~JA~^^^2^6.^23.^3^14.^15.^^~02/01/2008~
-~16011~^~435~^15.^0^^~4~^~NC~^^^^^^^^^^~02/01/2008~
-~16011~^~601~^7.^0^^~1~^^^^^^^^^^^~12/01/1986~
-~16014~^~208~^341.^0^^~4~^~NC~^^^^^^^^^^~04/01/2007~
-~16014~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~
-~16014~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~
-~16014~^~268~^1425.^0^^~4~^~NC~^^^^^^^^^^~04/01/2007~
-~16014~^~301~^123.^11^11.^~1~^^^^^^^^^^^~12/01/1986~
-~16014~^~304~^171.^26^2.^~1~^^^^^^^^^^^~12/01/1986~
-~16014~^~305~^352.^11^13.^~1~^^^^^^^^^^^~12/01/1986~
-~16014~^~306~^1483.^9^^~1~^^^^^^^^^^^~12/01/1986~
-~16014~^~307~^5.^4^0.^~1~^^^^^^^^^^^~12/01/1986~
-~16014~^~318~^17.^1^^~1~^^^^^^^^^^^~01/01/2011~
-~16014~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2002~
-~16014~^~320~^0.^0^^~4~^~NC~^^^^^^^^^^~04/01/2007~
-~16014~^~321~^0.^0^^~4~^~BFSN~^~16042~^^^^^^^^^~02/01/2003~
-~16014~^~322~^0.^0^^~4~^~BFSN~^~16042~^^^^^^^^^~02/01/2003~
-~16014~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~
-~16014~^~334~^0.^0^^~4~^~BFSN~^~16042~^^^^^^^^^~02/01/2003~
-~16014~^~337~^0.^0^^~4~^~BFSN~^~16042~^^^^^^^^^~02/01/2003~
-~16014~^~338~^0.^0^^~4~^~BFSN~^~16042~^^^^^^^^^~02/01/2003~
-~16014~^~417~^444.^8^33.^~1~^^^^^^^^^^^~12/01/1986~
-~16014~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~
-~16014~^~432~^444.^8^33.^~1~^^^^^^^^^^^~04/01/2007~
-~16014~^~435~^444.^0^^~4~^~NC~^^^^^^^^^^~04/01/2007~
-~16014~^~601~^0.^0^^~1~^^^^^^^^^^^~12/01/1986~
-~16015~^~208~^132.^0^^~4~^~NC~^^^^^^^^^^~12/01/1986~
-~16015~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~11/01/2014~
-~16015~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~11/01/2014~
-~16015~^~268~^552.^0^^~4~^^^^^^^^^^^
-~16015~^~301~^27.^14^2.^~1~^^^^^^^^^^^~12/01/1986~
-~16015~^~304~^70.^14^4.^~1~^^^^^^^^^^^~12/01/1986~
-~16015~^~305~^140.^8^3.^~1~^^^^^^^^^^^~12/01/1986~
-~16015~^~306~^355.^14^25.^~1~^^^^^^^^^^^~12/01/1986~
-~16015~^~307~^1.^4^0.^~1~^^^^^^^^^^^~12/01/1986~
-~16015~^~318~^6.^0^^~1~^^^^^^^^^^^~12/01/1986~
-~16015~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2002~
-~16015~^~320~^0.^0^^~1~^~AS~^^^^^^^^^^~06/01/2002~
-~16015~^~321~^0.^0^^~7~^~Z~^^^^^^^^^^~11/01/2014~
-~16015~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~11/01/2014~
-~16015~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~
-~16015~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~11/01/2014~
-~16015~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~11/01/2014~
-~16015~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~11/01/2014~
-~16015~^~417~^149.^8^11.^~1~^^^^^^^^^^^~12/01/1986~
-~16015~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~
-~16015~^~432~^149.^8^11.^~1~^^^^^^^^^^^~12/01/1986~
-~16015~^~435~^149.^0^^~4~^~NC~^^^^^^^^^^~01/01/2001~
-~16015~^~601~^0.^0^^~1~^^^^^^^^^^^~12/01/1986~
-~16016~^~208~^339.^0^^~4~^~NC~^^^^^^^^^^~02/01/2003~
-~16016~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~
-~16016~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~
-~16016~^~268~^1417.^0^^~4~^~NC~^^^^^^^^^^~07/01/2016~
-~16016~^~301~^160.^1^^~1~^^^^^^^^^^^~12/01/1986~
-~16016~^~304~^160.^1^^~1~^^^^^^^^^^^~12/01/1986~
-~16016~^~305~^440.^1^^~1~^^^^^^^^^^^~12/01/1986~
-~16016~^~306~^1500.^1^^~1~^^^^^^^^^^^~12/01/1986~
-~16016~^~307~^9.^1^^~1~^^^^^^^^^^^~12/01/1986~
-~16016~^~318~^17.^0^^~1~^^^^^^^^^^^~01/01/2011~
-~16016~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2002~
-~16016~^~320~^0.^0^^~4~^~NC~^^^^^^^^^^~02/01/2003~
-~16016~^~321~^0.^0^^~4~^~BFSN~^~16042~^^^^^^^^^~02/01/2003~
-~16016~^~322~^0.^0^^~4~^~BFSN~^~16042~^^^^^^^^^~02/01/2003~
-~16016~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~
-~16016~^~334~^0.^0^^~4~^~BFSN~^~16042~^^^^^^^^^~02/01/2003~
-~16016~^~337~^0.^0^^~4~^~BFSN~^~16042~^^^^^^^^^~02/01/2003~
-~16016~^~338~^0.^0^^~4~^~BFSN~^~16042~^^^^^^^^^~02/01/2003~
-~16016~^~417~^444.^0^^~1~^^^^^^^^^^^~12/01/1986~
-~16016~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~
-~16016~^~432~^444.^0^^~1~^^^^^^^^^^^~02/01/2003~
-~16016~^~435~^444.^0^^~4~^~NC~^^^^^^^^^^~02/01/2003~
-~16016~^~601~^0.^0^^~1~^^^^^^^^^^^~12/01/1986~
-~16017~^~208~^130.^0^^~4~^~NC~^^^^^^^^^^~04/01/2007~
-~16017~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~
-~16017~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~
-~16017~^~268~^544.^0^^~4~^^^^^^^^^^^~04/01/2007~
-~16017~^~301~^55.^0^^~1~^^^^^^^^^^^~12/01/1986~
-~16017~^~304~^49.^0^^~1~^^^^^^^^^^^~12/01/1986~
-~16017~^~305~^152.^0^^~1~^^^^^^^^^^^~12/01/1986~
-~16017~^~306~^433.^0^^~1~^^^^^^^^^^^~12/01/1986~
-~16017~^~307~^3.^0^^~1~^^^^^^^^^^^~12/01/1986~
-~16017~^~318~^6.^0^^~1~^^^^^^^^^^^~01/01/2011~
-~16017~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2002~
-~16017~^~320~^0.^0^^~1~^~AS~^^^^^^^^^^~01/01/2011~
-~16017~^~321~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2011~
-~16017~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2011~
-~16017~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~
-~16017~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2011~
-~16017~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2011~
-~16017~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2011~
-~16017~^~417~^86.^0^^~1~^^^^^^^^^^^~12/01/1986~
-~16017~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~
-~16017~^~432~^86.^0^^~1~^^^^^^^^^^^~04/01/2007~
-~16017~^~435~^86.^0^^~4~^~NC~^^^^^^^^^^~04/01/2007~
-~16017~^~601~^0.^0^^~1~^^^^^^^^^^^~12/01/1986~
-~16018~^~208~^91.^0^^~4~^~NC~^^^^^^^^^^~12/01/1986~
-~16018~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2013~
-~16018~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2013~
-~16018~^~268~^380.^0^^~4~^~NC~^^^^^^^^^^~01/01/2013~
-~16018~^~301~^35.^1^^~1~^^^^^^^^^^^~12/01/1986~
-~16018~^~304~^35.^0^^~1~^^^^^^^^^^^~12/01/1986~
-~16018~^~305~^108.^0^^~1~^^^^^^^^^^^~12/01/1986~
-~16018~^~306~^308.^0^^~1~^^^^^^^^^^^~12/01/1986~
-~16018~^~307~^384.^0^^~1~^^^^^^^^^^^~12/01/1986~
-~16018~^~318~^4.^0^^~1~^^^^^^^^^^^~12/01/1986~
-~16018~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2002~
-~16018~^~320~^0.^0^^~4~^~NC~^^^^^^^^^^~01/01/2013~
-~16018~^~321~^0.^0^^~4~^~BFSN~^~16017~^^^^^^^^^~01/01/2013~
-~16018~^~322~^0.^0^^~4~^~BFSN~^~16017~^^^^^^^^^~01/01/2013~
-~16018~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~
-~16018~^~334~^0.^0^^~4~^~BFSN~^~16017~^^^^^^^^^~01/01/2013~
-~16018~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2013~
-~16018~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2013~
-~16018~^~417~^61.^0^^~1~^^^^^^^^^^^~12/01/1986~
-~16018~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~
-~16018~^~432~^61.^0^^~1~^^^^^^^^^^^~12/01/1986~
-~16018~^~435~^61.^0^^~4~^~NC~^^^^^^^^^^~01/01/2001~
-~16018~^~601~^0.^0^^~1~^^^^^^^^^^^~12/01/1986~
-~16019~^~208~^335.^0^^~4~^~NC~^^^^^^^^^^~12/01/1986~
-~16019~^~268~^1402.^0^^~4~^^^^^^^^^^^
-~16019~^~301~^127.^8^2.^~1~^^^^^^^^^^^~12/01/1986~
-~16019~^~304~^156.^8^3.^~1~^^^^^^^^^^^~12/01/1986~
-~16019~^~305~^372.^8^14.^~1~^^^^^^^^^^^~12/01/1986~
-~16019~^~306~^1332.^8^33.^~1~^^^^^^^^^^^~12/01/1986~
-~16019~^~307~^6.^4^0.^~1~^^^^^^^^^^^~12/01/1986~
-~16019~^~318~^2.^8^1.^~1~^^^^^^^^^^^~12/01/1986~
-~16019~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2002~
-~16019~^~320~^0.^8^0.^~1~^^^^^^^^^^^~06/01/2002~
-~16019~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~
-~16019~^~417~^604.^8^28.^~1~^^^^^^^^^^^~12/01/1986~
-~16019~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~
-~16019~^~432~^604.^8^28.^~1~^^^^^^^^^^^~12/01/1986~
-~16019~^~435~^604.^0^^~4~^~NC~^^^^^^^^^^~01/01/2001~
-~16019~^~601~^0.^0^^~1~^^^^^^^^^^^~12/01/1986~
-~16020~^~208~^136.^0^^~4~^~NC~^^^^^^^^^^~12/01/1986~
-~16020~^~268~^569.^0^^~4~^^^^^^^^^^^
-~16020~^~301~^50.^8^1.^~1~^^^^^^^^^^^~12/01/1986~
-~16020~^~304~^50.^8^0.^~1~^^^^^^^^^^^~12/01/1986~
-~16020~^~305~^135.^8^3.^~1~^^^^^^^^^^^~12/01/1986~
-~16020~^~306~^387.^8^8.^~1~^^^^^^^^^^^~12/01/1986~
-~16020~^~307~^1.^4^0.^~1~^^^^^^^^^^^~12/01/1986~
-~16020~^~318~^0.^8^0.^~1~^^^^^^^^^^^~12/01/1986~
-~16020~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2002~
-~16020~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~
-~16020~^~417~^207.^8^7.^~1~^^^^^^^^^^^~12/01/1986~
-~16020~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~
-~16020~^~432~^207.^8^7.^~1~^^^^^^^^^^^~12/01/1986~
-~16020~^~435~^207.^0^^~4~^~NC~^^^^^^^^^^~01/01/2001~
-~16020~^~601~^0.^0^^~1~^^^^^^^^^^^~12/01/1986~
-~16021~^~208~^83.^0^^~4~^~NC~^^^^^^^^^^~12/01/1986~
-~16021~^~268~^347.^0^^~4~^^^^^^^^^^^
-~16021~^~301~^34.^7^^~1~^^^^^^^^^^^~12/01/1986~
-~16021~^~304~^32.^0^^~1~^^^^^^^^^^^~12/01/1986~
-~16021~^~305~^86.^0^^~1~^^^^^^^^^^^~12/01/1986~
-~16021~^~306~^260.^6^24.^~1~^^^^^^^^^^^~12/01/1986~
-~16021~^~307~^332.^7^^~1~^^^^^^^^^^^~12/01/1986~
-~16021~^~318~^0.^0^^~1~^^^^^^^^^^^~12/01/1986~
-~16021~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2002~
-~16021~^~320~^0.^0^^~1~^^^^^^^^^^^~06/01/2002~
-~16021~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~
-~16021~^~417~^77.^0^^~1~^^^^^^^^^^^~12/01/1986~
-~16021~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~
-~16021~^~432~^77.^0^^~1~^^^^^^^^^^^~12/01/1986~
-~16021~^~435~^77.^0^^~4~^~NC~^^^^^^^^^^~01/01/2001~
-~16021~^~601~^0.^0^^~1~^^^^^^^^^^^~12/01/1986~
-~16022~^~208~^343.^0^^~4~^~NC~^^^^^^^^^^~12/01/1986~
-~16022~^~268~^1435.^0^^~4~^^^^^^^^^^^
-~16022~^~301~^186.^2^^~1~^^^^^^^^^^^~12/01/1986~
-~16022~^~304~^188.^2^^~1~^^^^^^^^^^^~12/01/1986~
-~16022~^~305~^304.^2^^~1~^^^^^^^^^^^~12/01/1986~
-~16022~^~306~^1316.^2^^~1~^^^^^^^^^^^~12/01/1986~
-~16022~^~307~^18.^1^^~1~^^^^^^^^^^^~12/01/1986~
-~16022~^~318~^8.^0^^~1~^^^^^^^^^^^~12/01/1986~
-~16022~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2002~
-~16022~^~320~^0.^0^^~1~^^^^^^^^^^^~06/01/2002~
-~16022~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~
-~16022~^~417~^399.^0^^~1~^^^^^^^^^^^~12/01/1986~
-~16022~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~
-~16022~^~432~^399.^0^^~1~^^^^^^^^^^^~12/01/1986~
-~16022~^~435~^399.^0^^~4~^~NC~^^^^^^^^^^~01/01/2001~
-~16022~^~601~^0.^0^^~1~^^^^^^^^^^^~12/01/1986~
-~16023~^~208~^129.^0^^~4~^~NC~^^^^^^^^^^~12/01/1986~
-~16023~^~268~^540.^0^^~4~^^^^^^^^^^^
-~16023~^~301~^63.^0^^~1~^^^^^^^^^^^~12/01/1986~
-~16023~^~304~^56.^0^^~1~^^^^^^^^^^^~12/01/1986~
-~16023~^~305~^102.^0^^~1~^^^^^^^^^^^~12/01/1986~
-~16023~^~306~^370.^0^^~1~^^^^^^^^^^^~12/01/1986~
-~16023~^~307~^6.^0^^~1~^^^^^^^^^^^~12/01/1986~
-~16023~^~318~^3.^0^^~1~^^^^^^^^^^^~12/01/1986~
-~16023~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2002~
-~16023~^~320~^0.^0^^~1~^^^^^^^^^^^~06/01/2002~
-~16023~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~
-~16023~^~417~^75.^0^^~1~^^^^^^^^^^^~12/01/1986~
-~16023~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~
-~16023~^~432~^75.^0^^~1~^^^^^^^^^^^~12/01/1986~
-~16023~^~435~^75.^0^^~4~^~NC~^^^^^^^^^^~01/01/2001~
-~16023~^~601~^0.^0^^~1~^^^^^^^^^^^~12/01/1986~
-~16024~^~208~^339.^0^^~4~^~NC~^^^^^^^^^^~02/01/2003~
-~16024~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~
-~16024~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~
-~16024~^~268~^1419.^0^^~4~^~NC~^^^^^^^^^^~02/01/2003~
-~16024~^~301~^175.^36^2.^~1~^^^^^^^^^^^~12/01/1986~
-~16024~^~304~^189.^36^3.^~1~^^^^^^^^^^^~12/01/1986~
-~16024~^~305~^447.^35^6.^~1~^^^^^^^^^^^~12/01/1986~
-~16024~^~306~^1387.^36^50.^~1~^^^^^^^^^^^~12/01/1986~
-~16024~^~307~^14.^31^2.^~1~^^^^^^^^^^^~12/01/1986~
-~16024~^~318~^0.^0^^~4~^~NC~^^^^^^^^^^~02/01/2003~
-~16024~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2002~
-~16024~^~320~^0.^0^^~4~^~NC~^^^^^^^^^^~02/01/2003~
-~16024~^~321~^0.^0^^~4~^~BFSN~^~16042~^^^^^^^^^~02/01/2003~
-~16024~^~322~^0.^0^^~4~^~BFSN~^~16042~^^^^^^^^^~02/01/2003~
-~16024~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~
-~16024~^~334~^0.^0^^~4~^~BFSN~^~16042~^^^^^^^^^~02/01/2003~
-~16024~^~337~^0.^0^^~4~^~BFSN~^~16042~^^^^^^^^^~02/01/2003~
-~16024~^~338~^0.^0^^~4~^~BFSN~^~16042~^^^^^^^^^~02/01/2003~
-~16024~^~417~^482.^32^14.^~1~^^^^^^^^^^^~12/01/1986~
-~16024~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~
-~16024~^~432~^482.^32^14.^~1~^^^^^^^^^^^~02/01/2003~
-~16024~^~435~^482.^0^^~4~^~NC~^^^^^^^^^^~02/01/2003~
-~16024~^~601~^0.^0^^~1~^^^^^^^^^^^~12/01/1986~
-~16025~^~208~^118.^0^^~4~^~NC~^^^^^^^^^^~12/01/1986~
-~16025~^~268~^494.^0^^~4~^^^^^^^^^^^
-~16025~^~301~^68.^20^1.^~1~^^^^^^^^^^^~12/01/1986~
-~16025~^~304~^50.^20^1.^~1~^^^^^^^^^^^~12/01/1986~
-~16025~^~305~^165.^20^4.^~1~^^^^^^^^^^^~12/01/1986~
-~16025~^~306~^391.^20^10.^~1~^^^^^^^^^^^~12/01/1986~
-~16025~^~307~^2.^16^0.^~1~^^^^^^^^^^^~12/01/1986~
-~16025~^~318~^1.^0^^~1~^^^^^^^^^^^~12/01/1986~
-~16025~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2002~
-~16025~^~320~^0.^0^^~1~^^^^^^^^^^^~06/01/2002~
-~16025~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~
-~16025~^~417~^102.^13^18.^~1~^^^^^^^^^^^~12/01/1986~
-~16025~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~
-~16025~^~432~^102.^13^18.^~1~^^^^^^^^^^^~12/01/1986~
-~16025~^~435~^102.^0^^~4~^~NC~^^^^^^^^^^~01/01/2001~
-~16025~^~601~^0.^0^^~1~^^^^^^^^^^^~12/01/1986~
-~16026~^~208~^114.^0^^~4~^~NC~^^^^^^^^^^~03/01/2006~
-~16026~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2013~
-~16026~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2013~
-~16026~^~268~^479.^0^^~4~^~NC~^^^^^^^^^^~03/01/2006~
-~16026~^~301~^53.^0^^~1~^^^^^^^^^^^~12/01/1986~
-~16026~^~304~^51.^0^^~1~^^^^^^^^^^^~12/01/1986~
-~16026~^~305~^136.^0^^~1~^^^^^^^^^^^~12/01/1986~
-~16026~^~306~^351.^0^^~1~^^^^^^^^^^^~12/01/1986~
-~16026~^~307~^370.^0^^~4~^~BFSN~^~16044~^^^^^^^^^~08/01/2014~
-~16026~^~318~^1.^0^^~1~^^^^^^^^^^^~01/01/2013~
-~16026~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2002~
-~16026~^~320~^0.^0^^~4~^~NC~^^^^^^^^^^~01/01/2013~
-~16026~^~321~^0.^0^^~4~^~BFSN~^~16044~^^^^^^^^^~01/01/2013~
-~16026~^~322~^0.^0^^~4~^~BFSN~^~16044~^^^^^^^^^~01/01/2013~
-~16026~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~
-~16026~^~334~^0.^0^^~4~^~BFSN~^~16044~^^^^^^^^^~01/01/2013~
-~16026~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2013~
-~16026~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2013~
-~16026~^~417~^81.^0^^~1~^^^^^^^^^^^~12/01/1986~
-~16026~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~
-~16026~^~432~^81.^0^^~1~^^^^^^^^^^^~03/01/2006~
-~16026~^~435~^81.^0^^~4~^~NC~^^^^^^^^^^~03/01/2006~
-~16026~^~601~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2013~
-~16027~^~208~^333.^0^^~4~^~NC~^^^^^^^^^^~02/01/2003~
-~16027~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~
-~16027~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~
-~16027~^~268~^1393.^0^^~4~^~NC~^^^^^^^^^^~02/01/2003~
-~16027~^~301~^143.^71^^~1~^^^^^^^^^^^~12/01/1986~
-~16027~^~304~^140.^69^^~1~^^^^^^^^^^^~12/01/1986~
-~16027~^~305~^407.^66^^~1~^^^^^^^^^^^~12/01/1986~
-~16027~^~306~^1406.^67^^~1~^^^^^^^^^^^~12/01/1986~
-~16027~^~307~^24.^55^^~1~^^^^^^^^^^^~12/01/1986~
-~16027~^~318~^0.^0^^~4~^~NC~^^^^^^^^^^~05/01/2003~
-~16027~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2002~
-~16027~^~320~^0.^0^^~4~^~NC~^^^^^^^^^^~05/01/2003~
-~16027~^~321~^0.^0^^~4~^~BFSN~^~16042~^^^^^^^^^~02/01/2003~
-~16027~^~322~^0.^0^^~4~^~BFSN~^~16042~^^^^^^^^^~02/01/2003~
-~16027~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~
-~16027~^~334~^0.^0^^~4~^~BFSN~^~16042~^^^^^^^^^~02/01/2003~
-~16027~^~337~^0.^0^^~4~^~BFSN~^~16042~^^^^^^^^^~02/01/2003~
-~16027~^~338~^0.^0^^~4~^~BFSN~^~16042~^^^^^^^^^~02/01/2003~
-~16027~^~417~^394.^32^13.^~1~^^^^^^^^^^^~12/01/1986~
-~16027~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~
-~16027~^~432~^394.^32^13.^~1~^^^^^^^^^^^~02/01/2003~
-~16027~^~435~^394.^0^^~4~^~NC~^^^^^^^^^^~05/01/2003~
-~16027~^~601~^0.^0^^~1~^^^^^^^^^^^~12/01/1986~
-~16027~^~636~^127.^0^^~1~^^^^^^^^^^^~12/01/1986~
-~16028~^~208~^127.^0^^~4~^~NC~^^^^^^^^^^~03/01/2006~
-~16028~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~
-~16028~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~
-~16028~^~268~^532.^0^^~4~^~NC~^^^^^^^^^^~03/01/2006~
-~16028~^~301~^35.^53^0.^~6~^~JA~^^^10^20.^49.^52^33.^37.^~4~^~02/01/2003~
-~16028~^~304~^42.^54^0.^~6~^~JA~^^^10^29.^57.^53^40.^44.^~4~^~02/01/2003~
-~16028~^~305~^138.^53^3.^~6~^~JA~^^^10^89.^202.^52^132.^144.^~4~^~02/01/2003~
-~16028~^~306~^405.^54^9.^~6~^~JA~^^^10^284.^580.^53^385.^423.^~4~^~02/01/2003~
-~16028~^~307~^1.^50^0.^~6~^~JA~^^^10^0.^38.^49^0.^2.^~4~^~02/01/2003~
-~16028~^~318~^0.^0^^~4~^~NC~^^^^^^^^^^~03/01/2006~
-~16028~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2002~
-~16028~^~320~^0.^0^^~4~^~NC~^^^^^^^^^^~03/01/2006~
-~16028~^~321~^0.^0^^~4~^~BFSN~^~16043~^^^^^^^^^~02/01/2003~
-~16028~^~322~^0.^0^^~4~^~BFSN~^~16043~^^^^^^^^^~02/01/2003~
-~16028~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~
-~16028~^~334~^0.^0^^~4~^~BFSN~^~16043~^^^^^^^^^~02/01/2003~
-~16028~^~337~^0.^0^^~4~^~BFSN~^~16043~^^^^^^^^^~02/01/2003~
-~16028~^~338~^0.^0^^~4~^~BFSN~^~16043~^^^^^^^^^~02/01/2003~
-~16028~^~417~^130.^8^3.^~1~^^^^^^^^^^^~12/01/1986~
-~16028~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~
-~16028~^~432~^130.^8^3.^~1~^^^^^^^^^^^~03/01/2006~
-~16028~^~435~^130.^0^^~4~^~NC~^^^^^^^^^^~03/01/2006~
-~16028~^~601~^0.^0^^~1~^^^^^^^^^^^~12/01/1986~
-~16029~^~208~^84.^0^^~4~^~NC~^^^^^^^^^^~06/01/2014~
-~16029~^~268~^353.^0^^~4~^~NC~^^^^^^^^^^~06/01/2014~
-~16029~^~301~^34.^44^6.^~6~^~JA~^^^2^27.^40.^1^-49.^116.^~4~^~04/01/2004~
-~16029~^~304~^27.^2^^~6~^~JA~^^^2^24.^31.^1^^^^~04/01/2004~
-~16029~^~305~^90.^2^^~6~^~JA~^^^2^75.^105.^1^^^^~04/01/2004~
-~16029~^~306~^237.^41^20.^~6~^~JA~^^^2^216.^257.^1^-23.^496.^~4~^~04/01/2004~
-~16029~^~307~^296.^42^51.^~6~^~JA~^^^2^245.^347.^1^-352.^944.^~4~^~04/01/2004~
-~16029~^~318~^0.^0^^~1~^^^^^^^^^^^~05/01/2007~
-~16029~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2002~
-~16029~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~
-~16029~^~417~^36.^1^^~6~^~JA~^^^2^23.^49.^1^^^^~04/01/2004~
-~16029~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~
-~16029~^~432~^36.^1^^~6~^~JA~^^^^^^^^^^~03/01/2006~
-~16029~^~435~^36.^0^^~4~^~NC~^^^^^^^^^^~06/01/2008~
-~16029~^~601~^0.^0^^~1~^^^^^^^^^^^~12/01/1986~
-~16030~^~208~^330.^0^^~4~^~NC~^^^^^^^^^^~12/01/1986~
-~16030~^~268~^1381.^0^^~4~^^^^^^^^^^^
-~16030~^~301~^195.^2^^~1~^^^^^^^^^^^~12/01/1986~
-~16030~^~304~^160.^2^^~1~^^^^^^^^^^^~12/01/1986~
-~16030~^~305~^405.^2^^~1~^^^^^^^^^^^~12/01/1986~
-~16030~^~306~^1490.^2^^~1~^^^^^^^^^^^~12/01/1986~
-~16030~^~307~^11.^2^^~1~^^^^^^^^^^^~12/01/1986~
-~16030~^~318~^8.^0^^~1~^^^^^^^^^^^~12/01/1986~
-~16030~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2002~
-~16030~^~320~^0.^0^^~1~^^^^^^^^^^^~06/01/2002~
-~16030~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~
-~16030~^~417~^394.^0^^~1~^^^^^^^^^^^~12/01/1986~
-~16030~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~
-~16030~^~432~^394.^0^^~1~^^^^^^^^^^^~12/01/1986~
-~16030~^~435~^394.^0^^~4~^~NC~^^^^^^^^^^~01/01/2001~
-~16030~^~601~^0.^0^^~1~^^^^^^^^^^^~12/01/1986~
-~16031~^~208~^124.^0^^~4~^~NC~^^^^^^^^^^~12/01/1986~
-~16031~^~268~^519.^0^^~4~^^^^^^^^^^^
-~16031~^~301~^66.^0^^~1~^^^^^^^^^^^~12/01/1986~
-~16031~^~304~^48.^0^^~1~^^^^^^^^^^^~12/01/1986~
-~16031~^~305~^137.^0^^~1~^^^^^^^^^^^~12/01/1986~
-~16031~^~306~^419.^0^^~1~^^^^^^^^^^^~12/01/1986~
-~16031~^~307~^4.^0^^~1~^^^^^^^^^^^~12/01/1986~
-~16031~^~318~^3.^0^^~1~^^^^^^^^^^^~12/01/1986~
-~16031~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2002~
-~16031~^~320~^0.^0^^~1~^^^^^^^^^^^~06/01/2002~
-~16031~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~
-~16031~^~417~^74.^0^^~1~^^^^^^^^^^^~12/01/1986~
-~16031~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~
-~16031~^~432~^74.^0^^~1~^^^^^^^^^^^~12/01/1986~
-~16031~^~435~^74.^0^^~4~^~NC~^^^^^^^^^^~01/01/2001~
-~16031~^~601~^0.^0^^~1~^^^^^^^^^^^~12/01/1986~
-~16032~^~208~^337.^0^^~4~^~NC~^^^^^^^^^^~04/01/2007~
-~16032~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~
-~16032~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~
-~16032~^~268~^1408.^0^^~4~^~NC~^^^^^^^^^^~04/01/2007~
-~16032~^~301~^83.^50^4.^~1~^^^^^^^^^^^~12/01/1986~
-~16032~^~304~^138.^49^4.^~1~^^^^^^^^^^^~12/01/1986~
-~16032~^~305~^406.^50^11.^~1~^^^^^^^^^^^~12/01/1986~
-~16032~^~306~^1359.^51^24.^~1~^^^^^^^^^^^~12/01/1986~
-~16032~^~307~^12.^44^2.^~1~^^^^^^^^^^^~12/01/1986~
-~16032~^~318~^0.^0^^~4~^~NC~^^^^^^^^^^~04/01/2007~
-~16032~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2002~
-~16032~^~320~^0.^0^^~4~^~NC~^^^^^^^^^^~04/01/2007~
-~16032~^~321~^0.^0^^~4~^~BFSN~^~16042~^^^^^^^^^~02/01/2003~
-~16032~^~322~^0.^0^^~4~^~BFSN~^~16042~^^^^^^^^^~02/01/2003~
-~16032~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~
-~16032~^~334~^0.^0^^~4~^~BFSN~^~16042~^^^^^^^^^~02/01/2003~
-~16032~^~337~^0.^0^^~4~^~BFSN~^~16042~^^^^^^^^^~02/01/2003~
-~16032~^~338~^0.^0^^~4~^~BFSN~^~16042~^^^^^^^^^~02/01/2003~
-~16032~^~417~^394.^32^13.^~1~^^^^^^^^^^^~12/01/1986~
-~16032~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~
-~16032~^~432~^394.^32^13.^~1~^^^^^^^^^^^~04/01/2007~
-~16032~^~435~^394.^0^^~4~^~NC~^^^^^^^^^^~04/01/2007~
-~16032~^~601~^0.^0^^~1~^^^^^^^^^^^~12/01/1986~
-~16033~^~208~^127.^0^^~4~^~NC~^^^^^^^^^^~04/01/2007~
-~16033~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~
-~16033~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~
-~16033~^~268~^532.^0^^~4~^~NC~^^^^^^^^^^~04/01/2007~
-~16033~^~301~^28.^30^1.^~1~^^^^^^^^^^^~12/01/1986~
-~16033~^~304~^45.^29^0.^~1~^^^^^^^^^^^~12/01/1986~
-~16033~^~305~^142.^30^5.^~1~^^^^^^^^^^^~12/01/1986~
-~16033~^~306~^403.^31^11.^~1~^^^^^^^^^^^~12/01/1986~
-~16033~^~307~^2.^21^0.^~1~^^^^^^^^^^^~12/01/1986~
-~16033~^~318~^0.^0^^~4~^~NC~^^^^^^^^^^~04/01/2007~
-~16033~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2002~
-~16033~^~320~^0.^0^^~4~^~NC~^^^^^^^^^^~04/01/2007~
-~16033~^~321~^0.^0^^~4~^~BFSN~^~16028~^^^^^^^^^~02/01/2003~
-~16033~^~322~^0.^0^^~4~^~BFSN~^~16028~^^^^^^^^^~02/01/2003~
-~16033~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~
-~16033~^~334~^0.^0^^~4~^~BFSN~^~16028~^^^^^^^^^~02/01/2003~
-~16033~^~337~^0.^0^^~4~^~BFSN~^~16028~^^^^^^^^^~02/01/2003~
-~16033~^~338~^0.^0^^~4~^~BFSN~^~16028~^^^^^^^^^~02/01/2003~
-~16033~^~417~^130.^8^3.^~1~^^^^^^^^^^^~12/01/1986~
-~16033~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~
-~16033~^~432~^130.^8^3.^~1~^^^^^^^^^^^~04/01/2007~
-~16033~^~435~^130.^0^^~4~^~NC~^^^^^^^^^^~04/01/2007~
-~16033~^~601~^0.^0^^~1~^^^^^^^^^^^~12/01/1986~
-~16034~^~208~^81.^0^^~4~^~NC~^^^^^^^^^^~04/01/2011~
-~16034~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~
-~16034~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~
-~16034~^~268~^341.^0^^~4~^~NC~^^^^^^^^^^~04/01/2011~
-~16034~^~301~^29.^48^0.^~6~^~JA~^^^3^27.^55.^3^28.^30.^~2, 3~^~04/01/2011~
-~16034~^~304~^30.^6^0.^~6~^~JA~^^^3^24.^33.^3^26.^32.^~2, 3~^~04/01/2011~
-~16034~^~305~^106.^6^1.^~6~^~JA~^^^3^75.^118.^3^100.^111.^~2, 3~^~04/01/2011~
-~16034~^~306~^260.^45^15.^~6~^~JA~^^^3^216.^306.^39^228.^290.^~2, 3~^~04/01/2011~
-~16034~^~307~^256.^5^27.^~1~^~A~^^^2^202.^339.^3^169.^341.^~2, 3~^~04/01/2011~
-~16034~^~318~^0.^0^^~1~^^^^^^^^^^^~04/01/2011~
-~16034~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2002~
-~16034~^~320~^0.^0^^~4~^~NC~^^^^^^^^^^~05/01/2007~
-~16034~^~321~^0.^0^^~4~^~BFSN~^~16028~^^^^^^^^^~02/01/2003~
-~16034~^~322~^0.^0^^~4~^~BFSN~^~16028~^^^^^^^^^~02/01/2003~
-~16034~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~
-~16034~^~334~^0.^0^^~4~^~BFSN~^~16028~^^^^^^^^^~02/01/2003~
-~16034~^~337~^0.^0^^~4~^~BFSN~^~16028~^^^^^^^^^~02/01/2003~
-~16034~^~338~^0.^0^^~4~^~BFSN~^~16028~^^^^^^^^^~02/01/2003~
-~16034~^~417~^23.^1^^~6~^~JA~^^^2^23.^49.^^^^^~06/01/2014~
-~16034~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~
-~16034~^~432~^23.^1^^~6~^~JA~^^^^^^^^^^~06/01/2014~
-~16034~^~435~^23.^0^^~4~^~NC~^^^^^^^^^^~06/01/2014~
-~16034~^~601~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2011~
-~16035~^~208~^329.^0^^~4~^~NC~^^^^^^^^^^~12/01/1986~
-~16035~^~268~^1377.^0^^~4~^^^^^^^^^^^
-~16035~^~301~^131.^2^^~1~^^^^^^^^^^^~12/01/1986~
-~16035~^~304~^138.^0^^~1~^^^^^^^^^^^~12/01/1986~
-~16035~^~305~^406.^0^^~1~^^^^^^^^^^^~12/01/1986~
-~16035~^~306~^1346.^2^^~1~^^^^^^^^^^^~12/01/1986~
-~16035~^~307~^13.^1^^~1~^^^^^^^^^^^~12/01/1986~
-~16035~^~318~^8.^0^^~1~^^^^^^^^^^^~12/01/1986~
-~16035~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2002~
-~16035~^~320~^0.^0^^~1~^^^^^^^^^^^~06/01/2002~
-~16035~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~
-~16035~^~417~^393.^0^^~1~^^^^^^^^^^^~12/01/1986~
-~16035~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~
-~16035~^~432~^393.^0^^~1~^^^^^^^^^^^~12/01/1986~
-~16035~^~435~^393.^0^^~4~^~NC~^^^^^^^^^^~01/01/2001~
-~16035~^~601~^0.^0^^~1~^^^^^^^^^^^~12/01/1986~
-~16036~^~208~^123.^0^^~4~^~NC~^^^^^^^^^^~12/01/1986~
-~16036~^~268~^515.^0^^~4~^^^^^^^^^^^
-~16036~^~301~^44.^0^^~1~^^^^^^^^^^^~12/01/1986~
-~16036~^~304~^42.^0^^~1~^^^^^^^^^^^~12/01/1986~
-~16036~^~305~^142.^0^^~1~^^^^^^^^^^^~12/01/1986~
-~16036~^~306~^378.^0^^~1~^^^^^^^^^^^~12/01/1986~
-~16036~^~307~^5.^0^^~1~^^^^^^^^^^^~12/01/1986~
-~16036~^~318~^3.^0^^~1~^^^^^^^^^^^~12/01/1986~
-~16036~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2002~
-~16036~^~320~^0.^0^^~1~^^^^^^^^^^^~06/01/2002~
-~16036~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~
-~16036~^~417~^74.^0^^~1~^^^^^^^^^^^~12/01/1986~
-~16036~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~
-~16036~^~432~^74.^0^^~1~^^^^^^^^^^^~12/01/1986~
-~16036~^~435~^74.^0^^~4~^~NC~^^^^^^^^^^~01/01/2001~
-~16036~^~601~^0.^0^^~1~^^^^^^^^^^^~12/01/1986~
-~16037~^~208~^337.^0^^~4~^~NC~^^^^^^^^^^~11/01/2006~
-~16037~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~
-~16037~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~
-~16037~^~268~^1411.^0^^~4~^~NC~^^^^^^^^^^~11/01/2006~
-~16037~^~301~^147.^13^2.^~11~^~JO~^^^2^106.^163.^11^140.^153.^~2, 3~^~04/01/2004~
-~16037~^~304~^175.^13^1.^~11~^~JO~^^^2^103.^190.^11^171.^179.^~2, 3~^~04/01/2004~
-~16037~^~305~^407.^13^6.^~11~^~JO~^^^2^264.^452.^11^392.^422.^~2, 3~^~04/01/2004~
-~16037~^~306~^1185.^13^10.^~11~^~JO~^^^2^867.^1279.^11^1162.^1207.^~2, 3~^~04/01/2004~
-~16037~^~307~^5.^9^0.^~11~^~JO~^^^2^4.^10.^7^3.^7.^~2, 3~^~04/01/2004~
-~16037~^~318~^0.^0^^~4~^~NC~^^^^^^^^^^~11/01/2006~
-~16037~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2002~
-~16037~^~320~^0.^0^^~4~^~NC~^^^^^^^^^^~11/01/2006~
-~16037~^~321~^0.^0^^~4~^~BFSN~^~16042~^^^^^^^^^~02/01/2003~
-~16037~^~322~^0.^0^^~4~^~BFSN~^~16042~^^^^^^^^^~02/01/2003~
-~16037~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~
-~16037~^~334~^0.^0^^~4~^~BFSN~^~16042~^^^^^^^^^~02/01/2003~
-~16037~^~337~^0.^0^^~4~^~BFSN~^~16042~^^^^^^^^^~02/01/2003~
-~16037~^~338~^0.^0^^~4~^~BFSN~^~16042~^^^^^^^^^~02/01/2003~
-~16037~^~417~^364.^17^11.^~11~^~JO~^^^2^80.^487.^15^340.^388.^~2, 3~^~04/01/2004~
-~16037~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~
-~16037~^~432~^364.^17^11.^~11~^~JO~^^^2^80.^487.^15^340.^388.^^~11/01/2006~
-~16037~^~435~^364.^0^^~4~^~NC~^^^^^^^^^^~11/01/2006~
-~16038~^~208~^140.^0^^~4~^~NC~^^^^^^^^^^~11/01/2006~
-~16038~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2004~
-~16038~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2004~
-~16038~^~268~^585.^0^^~4~^~NC~^^^^^^^^^^~11/01/2006~
-~16038~^~301~^69.^44^2.^~11~^~JO~^^^5^36.^117.^32^64.^74.^~2, 3~^~04/01/2004~
-~16038~^~304~^53.^45^0.^~11~^~JO~^^^5^31.^71.^34^51.^55.^~2, 3~^~04/01/2004~
-~16038~^~305~^144.^44^3.^~11~^~JO~^^^5^95.^199.^35^137.^150.^~2, 3~^~04/01/2004~
-~16038~^~306~^389.^45^10.^~11~^~JO~^^^5^247.^580.^33^367.^411.^~2, 3~^~04/01/2004~
-~16038~^~307~^0.^37^0.^~11~^~JO~^^^5^0.^3.^30^0.^0.^~2, 3~^~04/01/2004~
-~16038~^~318~^0.^0^^~4~^~NC~^^^^^^^^^^~11/01/2006~
-~16038~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2002~
-~16038~^~320~^0.^0^^~4~^~NC~^^^^^^^^^^~11/01/2006~
-~16038~^~321~^0.^0^^~4~^~BFSY~^~16037~^^^^^^^^^~04/01/2004~
-~16038~^~322~^0.^0^^~4~^~BFSY~^~16037~^^^^^^^^^~04/01/2004~
-~16038~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~
-~16038~^~334~^0.^0^^~4~^~BFSY~^~16037~^^^^^^^^^~04/01/2004~
-~16038~^~337~^0.^0^^~4~^~BFSY~^~16037~^^^^^^^^^~04/01/2004~
-~16038~^~338~^0.^0^^~4~^~BFSY~^~16037~^^^^^^^^^~04/01/2004~
-~16038~^~417~^140.^8^6.^~1~^~A~^^^1^114.^163.^7^125.^154.^~2, 3~^~03/01/2015~
-~16038~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~
-~16038~^~432~^140.^8^6.^~1~^~A~^^^1^114.^163.^7^125.^154.^^~03/01/2015~
-~16038~^~435~^140.^0^^~4~^~NC~^^^^^^^^^^~11/01/2006~
-~16039~^~208~^113.^0^^~4~^~NC~^^^^^^^^^^~03/01/2006~
-~16039~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~
-~16039~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~
-~16039~^~268~^473.^0^^~4~^^^^^^^^^^^~03/01/2006~
-~16039~^~301~^47.^0^^~1~^^^^^^^^^^^~12/01/1986~
-~16039~^~304~^47.^0^^~1~^^^^^^^^^^^~12/01/1986~
-~16039~^~305~^134.^0^^~1~^^^^^^^^^^^~12/01/1986~
-~16039~^~306~^288.^0^^~1~^^^^^^^^^^^~12/01/1986~
-~16039~^~307~^336.^0^^~8~^~LC~^^^^^^^^^^~05/01/2015~
-~16039~^~318~^1.^0^^~1~^^^^^^^^^^^~05/01/2015~
-~16039~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2002~
-~16039~^~320~^0.^0^^~4~^~NC~^^^^^^^^^^~03/01/2006~
-~16039~^~321~^0.^0^^~4~^~BFSN~^~16043~^^^^^^^^^~02/01/2003~
-~16039~^~322~^0.^0^^~4~^~BFSN~^~16043~^^^^^^^^^~02/01/2003~
-~16039~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~
-~16039~^~334~^0.^0^^~4~^~BFSN~^~16043~^^^^^^^^^~02/01/2003~
-~16039~^~337~^0.^0^^~4~^~BFSN~^~16043~^^^^^^^^^~02/01/2003~
-~16039~^~338~^0.^0^^~4~^~BFSN~^~16043~^^^^^^^^^~02/01/2003~
-~16039~^~417~^62.^0^^~1~^^^^^^^^^^^~12/01/1986~
-~16039~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~
-~16039~^~432~^62.^0^^~1~^^^^^^^^^^^~03/01/2006~
-~16039~^~435~^62.^0^^~4~^~NC~^^^^^^^^^^~03/01/2006~
-~16039~^~601~^0.^0^^~1~^^^^^^^^^^^~12/01/1986~
-~16040~^~208~^343.^0^^~4~^~NC~^^^^^^^^^^~04/01/2007~
-~16040~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~
-~16040~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~
-~16040~^~268~^1435.^0^^~4~^^^^^^^^^^^~04/01/2007~
-~16040~^~301~^130.^14^4.^~1~^^^^^^^^^^^~12/01/1986~
-~16040~^~304~^182.^10^4.^~1~^^^^^^^^^^^~12/01/1986~
-~16040~^~305~^415.^10^23.^~1~^^^^^^^^^^^~12/01/1986~
-~16040~^~306~^1464.^14^23.^~1~^^^^^^^^^^^~12/01/1986~
-~16040~^~307~^8.^6^1.^~1~^^^^^^^^^^^~12/01/1986~
-~16040~^~318~^0.^0^^~4~^~NC~^^^^^^^^^^~04/01/2007~
-~16040~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2002~
-~16040~^~320~^0.^0^^~4~^~NC~^^^^^^^^^^~04/01/2007~
-~16040~^~321~^0.^0^^~4~^~BFSN~^~16042~^^^^^^^^^~02/01/2003~
-~16040~^~322~^0.^0^^~4~^~BFSN~^~16042~^^^^^^^^^~02/01/2003~
-~16040~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~
-~16040~^~334~^0.^0^^~4~^~BFSN~^~16042~^^^^^^^^^~02/01/2003~
-~16040~^~337~^0.^0^^~4~^~BFSN~^~16042~^^^^^^^^^~02/01/2003~
-~16040~^~338~^0.^0^^~4~^~BFSN~^~16042~^^^^^^^^^~02/01/2003~
-~16040~^~417~^463.^9^32.^~1~^^^^^^^^^^^~12/01/1986~
-~16040~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~
-~16040~^~432~^463.^9^32.^~1~^^^^^^^^^^^~04/01/2007~
-~16040~^~435~^463.^0^^~4~^~NC~^^^^^^^^^^~04/01/2007~
-~16040~^~601~^0.^0^^~1~^^^^^^^^^^^~12/01/1986~
-~16041~^~208~^149.^0^^~4~^~NC~^^^^^^^^^^~04/01/2007~
-~16041~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~
-~16041~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~
-~16041~^~268~^623.^0^^~4~^^^^^^^^^^^~04/01/2007~
-~16041~^~301~^52.^9^2.^~1~^^^^^^^^^^^~12/01/1986~
-~16041~^~304~^65.^9^1.^~1~^^^^^^^^^^^~12/01/1986~
-~16041~^~305~^165.^9^7.^~1~^^^^^^^^^^^~12/01/1986~
-~16041~^~306~^508.^9^15.^~1~^^^^^^^^^^^~12/01/1986~
-~16041~^~307~^2.^5^0.^~1~^^^^^^^^^^^~12/01/1986~
-~16041~^~318~^0.^0^^~4~^~NC~^^^^^^^^^^~04/01/2007~
-~16041~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2002~
-~16041~^~320~^0.^0^^~4~^~NC~^^^^^^^^^^~04/01/2007~
-~16041~^~321~^0.^0^^~4~^~BFSN~^~16043~^^^^^^^^^~02/01/2003~
-~16041~^~322~^0.^0^^~4~^~BFSN~^~16043~^^^^^^^^^~02/01/2003~
-~16041~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~
-~16041~^~334~^0.^0^^~4~^~BFSN~^~16043~^^^^^^^^^~02/01/2003~
-~16041~^~337~^0.^0^^~4~^~BFSN~^~16043~^^^^^^^^^~02/01/2003~
-~16041~^~338~^0.^0^^~4~^~BFSN~^~16043~^^^^^^^^^~02/01/2003~
-~16041~^~417~^168.^8^13.^~1~^^^^^^^^^^^~12/01/1986~
-~16041~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~
-~16041~^~432~^168.^8^13.^~1~^^^^^^^^^^^~04/01/2007~
-~16041~^~435~^168.^0^^~4~^~NC~^^^^^^^^^^~04/01/2007~
-~16041~^~601~^0.^0^^~1~^^^^^^^^^^^~12/01/1986~
-~16042~^~208~^347.^0^^~4~^~NC~^^^^^^^^^^~11/01/2006~
-~16042~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2003~
-~16042~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2003~
-~16042~^~268~^1452.^0^^~4~^~NC~^^^^^^^^^^~11/01/2006~
-~16042~^~301~^113.^16^2.^~11~^~JO~^^^2^98.^127.^13^107.^117.^~2, 3~^~04/01/2004~
-~16042~^~304~^176.^16^1.^~11~^~JO~^^^2^161.^188.^13^172.^180.^~2, 3~^~04/01/2004~
-~16042~^~305~^411.^16^6.^~11~^~JO~^^^2^373.^462.^14^397.^425.^~2, 3~^~04/01/2004~
-~16042~^~306~^1393.^16^10.^~11~^~JO~^^^2^1317.^1470.^14^1369.^1416.^~2, 3~^~04/01/2004~
-~16042~^~307~^12.^12^1.^~11~^~JO~^^^2^6.^22.^10^10.^14.^~2, 3~^~04/01/2004~
-~16042~^~318~^0.^0^^~1~^~AS~^^^^^^^^^^~11/01/2006~
-~16042~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2002~
-~16042~^~320~^0.^0^^~1~^~AS~^^^^^^^^^^~11/01/2006~
-~16042~^~321~^0.^2^^~1~^~A~^^^1^0.^0.^^^^~1~^~01/01/2003~
-~16042~^~322~^0.^2^^~1~^~A~^^^1^0.^0.^^^^~1~^~01/01/2003~
-~16042~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~
-~16042~^~334~^0.^2^^~1~^~A~^^^1^0.^0.^^^^~1~^~01/01/2003~
-~16042~^~337~^0.^2^^~1~^~A~^^^1^0.^0.^^^^~1~^~01/01/2003~
-~16042~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2003~
-~16042~^~417~^525.^12^23.^~1~^~A~^^^1^421.^666.^11^473.^575.^~2, 3~^~11/01/2006~
-~16042~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~
-~16042~^~432~^525.^12^23.^~1~^~A~^^^1^421.^666.^11^473.^575.^^~11/01/2006~
-~16042~^~435~^525.^0^^~4~^~NC~^^^^^^^^^^~11/01/2006~
-~16042~^~601~^0.^0^^~1~^^^^^^^^^^^~12/01/1986~
-~16043~^~208~^143.^0^^~4~^~NC~^^^^^^^^^^~03/01/2006~
-~16043~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2003~
-~16043~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2003~
-~16043~^~268~^600.^0^^~4~^~NC~^^^^^^^^^^~03/01/2006~
-~16043~^~301~^46.^65^0.^~11~^~JO~^^^12^32.^67.^44^44.^48.^~2, 3~^~04/01/2004~
-~16043~^~304~^50.^66^0.^~11~^~JO~^^^12^35.^71.^44^48.^51.^~2, 3~^~04/01/2004~
-~16043~^~305~^147.^65^2.^~11~^~JO~^^^12^107.^205.^42^141.^151.^~2, 3~^~04/01/2004~
-~16043~^~306~^436.^66^8.^~11~^~JO~^^^12^264.^650.^41^417.^454.^~2, 3~^~04/01/2004~
-~16043~^~307~^1.^58^0.^~11~^~JO~^^^12^0.^13.^12^0.^1.^~2, 3~^~04/01/2004~
-~16043~^~318~^0.^0^^~1~^~AS~^^^^^^^^^^~03/01/2006~
-~16043~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2002~
-~16043~^~320~^0.^0^^~1~^~AS~^^^^^^^^^^~03/01/2006~
-~16043~^~321~^0.^2^^~1~^~A~^^^1^0.^0.^^^^~1~^~01/01/2003~
-~16043~^~322~^0.^2^^~1~^~A~^^^1^0.^0.^^^^~1~^~01/01/2003~
-~16043~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~
-~16043~^~334~^0.^2^^~1~^~A~^^^1^0.^0.^^^^~1~^~01/01/2003~
-~16043~^~337~^0.^2^^~1~^~A~^^^1^0.^0.^^^^~1~^~01/01/2003~
-~16043~^~338~^0.^0^^~4~^~NR~^^^^^^^^^^~01/01/2003~
-~16043~^~417~^172.^8^7.^~1~^^^^1^145.^204.^7^154.^189.^~2, 3~^~03/01/2006~
-~16043~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~
-~16043~^~432~^172.^8^7.^~1~^^^^1^145.^204.^7^154.^189.^^~03/01/2006~
-~16043~^~435~^172.^0^^~4~^~NC~^^^^^^^^^^~03/01/2006~
-~16043~^~601~^0.^0^^~1~^^^^^^^^^^^~03/01/2006~
-~16044~^~208~^82.^0^^~4~^~NC~^^^^^^^^^^~01/01/2013~
-~16044~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2003~
-~16044~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2003~
-~16044~^~268~^345.^0^^~4~^~NC~^^^^^^^^^^~01/01/2013~
-~16044~^~301~^47.^27^3.^~6~^~JA~^^^4^25.^119.^12^40.^53.^~2, 3~^~04/01/2011~
-~16044~^~304~^33.^4^2.^~1~^~A~^^^1^27.^39.^3^24.^41.^~2, 3~^~04/01/2011~
-~16044~^~305~^92.^4^4.^~1~^~A~^^^1^77.^99.^3^76.^107.^~2, 3~^~12/01/1986~
-~16044~^~306~^276.^12^17.^~6~^~JA~^^^2^160.^351.^9^237.^314.^~2, 3~^~04/01/2011~
-~16044~^~307~^268.^4^19.^~1~^~A~^^^1^234.^307.^3^205.^331.^~2, 3~^~04/01/2011~
-~16044~^~318~^0.^0^^~1~^~AS~^^^^^^^^^^~05/01/2013~
-~16044~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2002~
-~16044~^~320~^0.^0^^~1~^~AS~^^^^^^^^^^~05/01/2013~
-~16044~^~321~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2013~
-~16044~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2013~
-~16044~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~
-~16044~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2013~
-~16044~^~417~^24.^0^^~1~^~A~^^^^^^^^^^~04/01/2011~
-~16044~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~
-~16044~^~432~^24.^0^^~1~^~A~^^^^^^^^^^~04/01/2011~
-~16044~^~435~^24.^0^^~4~^~NC~^^^^^^^^^^~04/01/2011~
-~16044~^~601~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2013~
-~16045~^~208~^336.^0^^~4~^~NC~^^^^^^^^^^~12/01/1986~
-~16045~^~268~^1406.^0^^~4~^^^^^^^^^^^
-~16045~^~301~^173.^14^9.^~1~^^^^^^^^^^^~12/01/1986~
-~16045~^~304~^183.^12^5.^~1~^^^^^^^^^^^~12/01/1986~
-~16045~^~305~^445.^12^28.^~1~^^^^^^^^^^^~12/01/1986~
-~16045~^~306~^1542.^14^45.^~1~^^^^^^^^^^^~12/01/1986~
-~16045~^~307~^12.^8^2.^~1~^^^^^^^^^^^~12/01/1986~
-~16045~^~318~^0.^0^^~1~^^^^^^^^^^^~12/01/1986~
-~16045~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2002~
-~16045~^~320~^0.^0^^~1~^^^^^^^^^^^~06/01/2002~
-~16045~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~
-~16045~^~417~^386.^12^18.^~1~^^^^^^^^^^^~12/01/1986~
-~16045~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~
-~16045~^~432~^386.^12^18.^~1~^^^^^^^^^^^~12/01/1986~
-~16045~^~435~^386.^0^^~4~^~NC~^^^^^^^^^^~01/01/2001~
-~16045~^~601~^0.^0^^~1~^^^^^^^^^^^~12/01/1986~
-~16046~^~208~^142.^0^^~4~^~NC~^^^^^^^^^^~12/01/1986~
-~16046~^~268~^594.^0^^~4~^^^^^^^^^^^
-~16046~^~301~^73.^9^4.^~1~^^^^^^^^^^^~12/01/1986~
-~16046~^~304~^68.^8^2.^~1~^^^^^^^^^^^~12/01/1986~
-~16046~^~305~^169.^9^12.^~1~^^^^^^^^^^^~12/01/1986~
-~16046~^~306~^463.^9^18.^~1~^^^^^^^^^^^~12/01/1986~
-~16046~^~307~^2.^5^0.^~1~^^^^^^^^^^^~12/01/1986~
-~16046~^~318~^0.^0^^~1~^^^^^^^^^^^~12/01/1986~
-~16046~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2002~
-~16046~^~320~^0.^0^^~1~^^^^^^^^^^^~06/01/2002~
-~16046~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~
-~16046~^~417~^137.^8^7.^~1~^^^^^^^^^^^~12/01/1986~
-~16046~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~
-~16046~^~432~^137.^8^7.^~1~^^^^^^^^^^^~12/01/1986~
-~16046~^~435~^137.^0^^~4~^~NC~^^^^^^^^^^~01/01/2001~
-~16046~^~601~^0.^0^^~1~^^^^^^^^^^^~12/01/1986~
-~16047~^~208~^345.^0^^~4~^~NC~^^^^^^^^^^~12/01/1986~
-~16047~^~268~^1443.^0^^~4~^^^^^^^^^^^
-~16047~^~301~^166.^1^^~1~^^^^^^^^^^^~12/01/1986~
-~16047~^~304~^222.^1^^~1~^^^^^^^^^^^~12/01/1986~
-~16047~^~305~^488.^1^^~1~^^^^^^^^^^^~12/01/1986~
-~16047~^~306~^1042.^1^^~1~^^^^^^^^^^^~12/01/1986~
-~16047~^~307~^12.^0^^~1~^^^^^^^^^^^~12/01/1986~
-~16047~^~318~^6.^1^^~1~^^^^^^^^^^^~12/01/1986~
-~16047~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2002~
-~16047~^~320~^0.^1^^~1~^^^^^^^^^^^~06/01/2002~
-~16047~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~
-~16047~^~417~^389.^0^^~1~^^^^^^^^^^^~12/01/1986~
-~16047~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~
-~16047~^~432~^389.^0^^~1~^^^^^^^^^^^~12/01/1986~
-~16047~^~435~^389.^0^^~4~^~NC~^^^^^^^^^^~01/01/2001~
-~16047~^~601~^0.^0^^~1~^^^^^^^^^^^~12/01/1986~
-~16048~^~208~^144.^0^^~4~^~NC~^^^^^^^^^^~12/01/1986~
-~16048~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~11/01/2014~
-~16048~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~11/01/2014~
-~16048~^~268~^601.^0^^~4~^~NC~^^^^^^^^^^~11/01/2014~
-~16048~^~301~^62.^0^^~1~^^^^^^^^^^^~12/01/1986~
-~16048~^~304~^74.^0^^~1~^^^^^^^^^^^~12/01/1986~
-~16048~^~305~^183.^0^^~1~^^^^^^^^^^^~12/01/1986~
-~16048~^~306~^325.^0^^~1~^^^^^^^^^^^~12/01/1986~
-~16048~^~307~^5.^0^^~1~^^^^^^^^^^^~12/01/1986~
-~16048~^~318~^2.^0^^~1~^^^^^^^^^^^~12/01/1986~
-~16048~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2002~
-~16048~^~320~^0.^0^^~1~^~AS~^^^^^^^^^^~06/01/2002~
-~16048~^~321~^0.^0^^~7~^~Z~^^^^^^^^^^~11/01/2014~
-~16048~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~11/01/2014~
-~16048~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~
-~16048~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~11/01/2014~
-~16048~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~11/01/2014~
-~16048~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~11/01/2014~
-~16048~^~417~^81.^0^^~1~^^^^^^^^^^^~12/01/1986~
-~16048~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~
-~16048~^~432~^81.^0^^~1~^^^^^^^^^^^~12/01/1986~
-~16048~^~435~^81.^0^^~4~^~NC~^^^^^^^^^^~01/01/2001~
-~16048~^~601~^0.^0^^~1~^^^^^^^^^^^~12/01/1986~
-~16049~^~208~^333.^0^^~4~^~NC~^^^^^^^^^^~04/01/2007~
-~16049~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~
-~16049~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~
-~16049~^~268~^1393.^0^^~4~^^^^^^^^^^^~04/01/2007~
-~16049~^~301~^240.^5^47.^~1~^^^^^^^^^^^~12/01/1986~
-~16049~^~304~^190.^3^^~1~^^^^^^^^^^^~12/01/1986~
-~16049~^~305~^301.^3^^~1~^^^^^^^^^^^~12/01/1986~
-~16049~^~306~^1795.^5^253.^~1~^^^^^^^^^^^~12/01/1986~
-~16049~^~307~^16.^1^^~1~^^^^^^^^^^^~12/01/1986~
-~16049~^~318~^0.^0^^~4~^~NC~^^^^^^^^^^~04/01/2007~
-~16049~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2002~
-~16049~^~320~^0.^0^^~4~^~NC~^^^^^^^^^^~04/01/2007~
-~16049~^~321~^0.^0^^~4~^~BFSN~^~16042~^^^^^^^^^~02/01/2003~
-~16049~^~322~^0.^0^^~4~^~BFSN~^~16042~^^^^^^^^^~02/01/2003~
-~16049~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~
-~16049~^~334~^0.^0^^~4~^~BFSN~^~16042~^^^^^^^^^~02/01/2003~
-~16049~^~337~^0.^0^^~4~^~BFSN~^~16042~^^^^^^^^^~02/01/2003~
-~16049~^~338~^0.^0^^~4~^~BFSN~^~16042~^^^^^^^^^~02/01/2003~
-~16049~^~417~^388.^0^^~1~^^^^^^^^^^^~12/01/1986~
-~16049~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~
-~16049~^~432~^388.^0^^~1~^^^^^^^^^^^~04/01/2007~
-~16049~^~435~^388.^0^^~4~^~NC~^^^^^^^^^^~04/01/2007~
-~16049~^~601~^0.^0^^~1~^^^^^^^^^^^~12/01/1986~
-~16050~^~208~^139.^0^^~4~^~NC~^^^^^^^^^^~04/01/2007~
-~16050~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~
-~16050~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~
-~16050~^~268~^581.^0^^~4~^~NC~^^^^^^^^^^~04/01/2007~
-~16050~^~301~^90.^0^^~1~^^^^^^^^^^^~12/01/1986~
-~16050~^~304~^63.^0^^~1~^^^^^^^^^^^~12/01/1986~
-~16050~^~305~^113.^0^^~1~^^^^^^^^^^^~12/01/1986~
-~16050~^~306~^561.^0^^~1~^^^^^^^^^^^~12/01/1986~
-~16050~^~307~^6.^0^^~1~^^^^^^^^^^^~12/01/1986~
-~16050~^~318~^0.^0^^~4~^~NC~^^^^^^^^^^~04/01/2007~
-~16050~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2002~
-~16050~^~320~^0.^0^^~4~^~NC~^^^^^^^^^^~04/01/2007~
-~16050~^~321~^0.^0^^~4~^~BFSN~^~16043~^^^^^^^^^~02/01/2003~
-~16050~^~322~^0.^0^^~4~^~BFSN~^~16043~^^^^^^^^^~02/01/2003~
-~16050~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~
-~16050~^~334~^0.^0^^~4~^~BFSN~^~16043~^^^^^^^^^~02/01/2003~
-~16050~^~337~^0.^0^^~4~^~BFSN~^~16043~^^^^^^^^^~02/01/2003~
-~16050~^~338~^0.^0^^~4~^~BFSN~^~16043~^^^^^^^^^~02/01/2003~
-~16050~^~417~^81.^0^^~1~^^^^^^^^^^^~12/01/1986~
-~16050~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~
-~16050~^~432~^81.^0^^~1~^^^^^^^^^^^~04/01/2007~
-~16050~^~435~^81.^0^^~4~^~NC~^^^^^^^^^^~04/01/2007~
-~16050~^~601~^0.^0^^~1~^^^^^^^^^^^~12/01/1986~
-~16051~^~208~^114.^0^^~4~^~NC~^^^^^^^^^^~05/01/2006~
-~16051~^~268~^477.^0^^~4~^~NC~^^^^^^^^^^~05/01/2006~
-~16051~^~301~^73.^0^^~1~^^^^^^^^^^^~12/01/1986~
-~16051~^~304~^51.^0^^~1~^^^^^^^^^^^~12/01/1986~
-~16051~^~305~^91.^0^^~1~^^^^^^^^^^^~12/01/1986~
-~16051~^~306~^454.^0^^~1~^^^^^^^^^^^~12/01/1986~
-~16051~^~307~^340.^0^^~4~^~BFSN~^~16039~^^^^^^^^^~05/01/2015~
-~16051~^~318~^0.^0^^~1~^^^^^^^^^^^~05/01/2015~
-~16051~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2002~
-~16051~^~320~^0.^0^^~4~^~NC~^^^^^^^^^^~05/01/2006~
-~16051~^~321~^0.^0^^~4~^~BFSN~^~16039~^^^^^^^^^~05/01/2006~
-~16051~^~322~^0.^0^^~4~^~BFSN~^~16039~^^^^^^^^^~05/01/2006~
-~16051~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~
-~16051~^~334~^0.^0^^~4~^~BFSN~^~16039~^^^^^^^^^~05/01/2006~
-~16051~^~337~^0.^0^^~4~^~BFSN~^~16039~^^^^^^^^^~05/01/2006~
-~16051~^~338~^0.^0^^~4~^~BFSN~^~16039~^^^^^^^^^~05/01/2006~
-~16051~^~417~^65.^0^^~1~^^^^^^^^^^^~12/01/1986~
-~16051~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~
-~16051~^~432~^65.^0^^~1~^^^^^^^^^^^~05/01/2006~
-~16051~^~435~^65.^0^^~4~^~NC~^^^^^^^^^^~05/01/2006~
-~16051~^~601~^0.^0^^~1~^^^^^^^^^^^~12/01/1986~
-~16052~^~208~^341.^0^^~4~^~NC~^^^^^^^^^^~04/01/2007~
-~16052~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~
-~16052~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~
-~16052~^~268~^1425.^0^^~4~^~NC~^^^^^^^^^^~04/01/2007~
-~16052~^~301~^103.^31^^~1~^^^^^^^^^^^~01/01/2005~
-~16052~^~304~^192.^10^^~1~^^^^^^^^^^^~01/01/2005~
-~16052~^~305~^421.^29^^~1~^^^^^^^^^^^~01/01/2005~
-~16052~^~306~^1062.^8^61.^~1~^^^^^^^^^^^~01/01/2005~
-~16052~^~307~^13.^5^^~1~^^^^^^^^^^^~01/01/2005~
-~16052~^~318~^53.^0^^~4~^~NC~^^^^^^^^^^~04/01/2007~
-~16052~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2002~
-~16052~^~320~^3.^0^^~4~^~NC~^^^^^^^^^^~04/01/2007~
-~16052~^~321~^32.^0^^~4~^~O~^^^^^^^^^^~02/01/2003~
-~16052~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~
-~16052~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~
-~16052~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~
-~16052~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~
-~16052~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~
-~16052~^~417~^423.^8^33.^~1~^^^^^^^^^^^~01/01/2005~
-~16052~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~
-~16052~^~432~^423.^8^33.^~1~^^^^^^^^^^^~04/01/2007~
-~16052~^~435~^423.^0^^~4~^~NC~^^^^^^^^^^~04/01/2007~
-~16052~^~601~^0.^0^^~1~^^^^^^^^^^^~12/01/1986~
-~16052~^~636~^124.^0^^~1~^^^^^^^^^^^~12/01/1986~
-~16053~^~208~^110.^0^^~4~^~NC~^^^^^^^^^^~04/01/2007~
-~16053~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~
-~16053~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~
-~16053~^~268~^460.^0^^~4~^^^^^^^^^^^~04/01/2007~
-~16053~^~301~^36.^8^1.^~1~^^^^^^^^^^^~12/01/1986~
-~16053~^~304~^43.^8^2.^~1~^^^^^^^^^^^~12/01/1986~
-~16053~^~305~^125.^8^9.^~1~^^^^^^^^^^^~12/01/1986~
-~16053~^~306~^268.^8^27.^~1~^^^^^^^^^^^~12/01/1986~
-~16053~^~307~^5.^4^0.^~1~^^^^^^^^^^^~12/01/1986~
-~16053~^~318~^15.^0^^~4~^~NC~^^^^^^^^^^~04/01/2007~
-~16053~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2002~
-~16053~^~320~^1.^0^^~4~^~NC~^^^^^^^^^^~04/01/2007~
-~16053~^~321~^9.^0^^~4~^~O~^^^^^^^^^^~02/01/2003~
-~16053~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~
-~16053~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~
-~16053~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~
-~16053~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~
-~16053~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~
-~16053~^~417~^104.^8^6.^~1~^^^^^^^^^^^~12/01/1986~
-~16053~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~
-~16053~^~432~^104.^8^6.^~1~^^^^^^^^^^^~04/01/2007~
-~16053~^~435~^104.^0^^~4~^~NC~^^^^^^^^^^~04/01/2007~
-~16053~^~601~^0.^0^^~1~^^^^^^^^^^^~12/01/1986~
-~16054~^~208~^71.^0^^~4~^~NC~^^^^^^^^^^~12/01/1986~
-~16054~^~268~^297.^0^^~4~^^^^^^^^^^^
-~16054~^~301~^26.^1^^~1~^^^^^^^^^^^~12/01/1986~
-~16054~^~304~^32.^0^^~1~^^^^^^^^^^^~12/01/1986~
-~16054~^~305~^79.^0^^~1~^^^^^^^^^^^~12/01/1986~
-~16054~^~306~^242.^0^^~1~^^^^^^^^^^^~12/01/1986~
-~16054~^~307~^453.^1^^~1~^^^^^^^^^^^~12/01/1986~
-~16054~^~318~^10.^1^^~1~^^^^^^^^^^^~12/01/1986~
-~16054~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2002~
-~16054~^~320~^1.^1^^~1~^^^^^^^^^^^~06/01/2002~
-~16054~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~
-~16054~^~417~^33.^0^^~1~^^^^^^^^^^^~12/01/1986~
-~16054~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~
-~16054~^~432~^33.^0^^~1~^^^^^^^^^^^~12/01/1986~
-~16054~^~435~^33.^0^^~4~^~NC~^^^^^^^^^^~01/01/2001~
-~16054~^~601~^0.^0^^~1~^^^^^^^^^^^~12/01/1986~
-~16055~^~208~^222.^0^^~4~^~NC~^^^^^^^^^^~12/01/2006~
-~16055~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~
-~16055~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~
-~16055~^~268~^929.^0^^~4~^^^^^^^^^^^~12/01/2006~
-~16055~^~301~^348.^10^129.^~1~^^^^^^^^^^^~12/01/1986~
-~16055~^~304~^54.^6^84.^~1~^^^^^^^^^^^~12/01/1986~
-~16055~^~305~^79.^4^53.^~1~^^^^^^^^^^^~12/01/1986~
-~16055~^~306~^827.^6^113.^~1~^^^^^^^^^^^~12/01/1986~
-~16055~^~307~^35.^2^^~1~^^^^^^^^^^^~12/01/1986~
-~16055~^~318~^14.^0^^~4~^~NC~^^^^^^^^^^~03/01/2008~
-~16055~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2002~
-~16055~^~320~^1.^0^^~4~^~NC~^^^^^^^^^^~03/01/2008~
-~16055~^~321~^8.^0^^~4~^~O~^^^^^^^^^^~02/01/2003~
-~16055~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~
-~16055~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~
-~16055~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~
-~16055~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~
-~16055~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~
-~16055~^~417~^29.^1^^~1~^^^^^^^^^^^~12/01/1986~
-~16055~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~
-~16055~^~432~^29.^1^^~1~^^^^^^^^^^^~12/01/2006~
-~16055~^~435~^29.^0^^~4~^~NC~^^^^^^^^^^~03/01/2008~
-~16055~^~601~^0.^0^^~1~^^^^^^^^^^^~12/01/1986~
-~16056~^~208~^378.^0^^~4~^~NC~^^^^^^^^^^~04/01/2014~
-~16056~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~
-~16056~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~
-~16056~^~268~^1581.^0^^~4~^~NC~^^^^^^^^^^~04/01/2014~
-~16056~^~301~^57.^35^2.^~1~^~A~^^^2^20.^88.^26^52.^61.^~2, 3~^~04/01/2014~
-~16056~^~304~^79.^35^1.^~1~^~A~^^^2^53.^107.^31^75.^82.^~2, 3~^~04/01/2014~
-~16056~^~305~^252.^19^13.^~1~^~A~^^^1^164.^329.^18^223.^280.^~2, 3~^~04/01/2014~
-~16056~^~306~^718.^34^18.^~1~^~A~^^^2^582.^1086.^20^678.^757.^~2, 3~^~04/01/2014~
-~16056~^~307~^24.^35^3.^~1~^^^^^^^^^^^~12/01/1986~
-~16056~^~318~^67.^0^^~4~^~NC~^^^^^^^^^^~04/01/2007~
-~16056~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2002~
-~16056~^~320~^3.^0^^~4~^~NC~^^^^^^^^^^~04/01/2007~
-~16056~^~321~^40.^0^^~4~^~O~^^^^^^^^^^~02/01/2003~
-~16056~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~
-~16056~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~
-~16056~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~
-~16056~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~
-~16056~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~
-~16056~^~417~^557.^16^27.^~1~^^^^^^^^^^^~12/01/1986~
-~16056~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~
-~16056~^~432~^557.^16^27.^~1~^^^^^^^^^^^~04/01/2007~
-~16056~^~435~^557.^0^^~4~^~NC~^^^^^^^^^^~04/01/2007~
-~16056~^~601~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2014~
-~16057~^~208~^164.^0^^~4~^~NC~^^^^^^^^^^~04/01/2007~
-~16057~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~
-~16057~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~
-~16057~^~268~^686.^0^^~4~^~NC~^^^^^^^^^^~04/01/2007~
-~16057~^~301~^49.^21^1.^~1~^^^^^^^^^^^~12/01/1986~
-~16057~^~304~^48.^21^1.^~1~^^^^^^^^^^^~12/01/1986~
-~16057~^~305~^168.^21^7.^~1~^^^^^^^^^^^~12/01/1986~
-~16057~^~306~^291.^21^10.^~1~^^^^^^^^^^^~12/01/1986~
-~16057~^~307~^7.^17^0.^~1~^^^^^^^^^^^~12/01/1986~
-~16057~^~318~^27.^0^^~4~^~NC~^^^^^^^^^^~04/01/2007~
-~16057~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2002~
-~16057~^~320~^1.^0^^~4~^~NC~^^^^^^^^^^~04/01/2007~
-~16057~^~321~^16.^0^^~4~^~O~^^^^^^^^^^~02/01/2003~
-~16057~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~
-~16057~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~
-~16057~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~
-~16057~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~
-~16057~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~
-~16057~^~417~^172.^8^9.^~1~^^^^^^^^^^^~12/01/1986~
-~16057~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~
-~16057~^~432~^172.^8^9.^~1~^^^^^^^^^^^~04/01/2007~
-~16057~^~435~^172.^0^^~4~^~NC~^^^^^^^^^^~04/01/2007~
-~16057~^~601~^0.^0^^~1~^^^^^^^^^^^~12/01/1986~
-~16058~^~208~^88.^0^^~4~^~NC~^^^^^^^^^^~05/01/2011~
-~16058~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2011~
-~16058~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2011~
-~16058~^~268~^369.^0^^~4~^~NC~^^^^^^^^^^~05/01/2011~
-~16058~^~301~^35.^4^3.^~1~^~A~^^^1^24.^41.^3^22.^46.^~2, 3~^~05/01/2011~
-~16058~^~304~^27.^4^0.^~1~^~A~^^^1^26.^27.^3^25.^27.^~2, 3~^~05/01/2011~
-~16058~^~305~^80.^4^2.^~1~^~A~^^^1^73.^87.^3^70.^89.^~2, 3~^~05/01/2011~
-~16058~^~306~^144.^4^11.^~1~^~A~^^^1^121.^175.^3^107.^180.^~2, 3~^~05/01/2011~
-~16058~^~307~^278.^4^22.^~1~^~A~^^^1^240.^340.^3^205.^350.^~2, 3~^~05/01/2011~
-~16058~^~318~^15.^0^^~4~^~NC~^^^^^^^^^^~05/01/2011~
-~16058~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2002~
-~16058~^~320~^1.^0^^~4~^~NC~^^^^^^^^^^~08/01/2008~
-~16058~^~321~^9.^0^^~4~^~BFSN~^~16057~^^^^^^^^^~05/01/2011~
-~16058~^~322~^0.^0^^~4~^~BFSN~^~16057~^^^^^^^^^~08/01/2008~
-~16058~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~
-~16058~^~334~^0.^0^^~4~^~BFSN~^~16057~^^^^^^^^^~08/01/2008~
-~16058~^~337~^0.^0^^~4~^~BFSN~^~16057~^^^^^^^^^~08/01/2008~
-~16058~^~338~^0.^0^^~4~^~BFSN~^~16057~^^^^^^^^^~08/01/2008~
-~16058~^~417~^25.^0^^~1~^~A~^^^^^^^^^^~05/01/2011~
-~16058~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~
-~16058~^~432~^25.^4^1.^~1~^~A~^^^1^20.^29.^3^18.^31.^~2, 3~^~05/01/2011~
-~16058~^~435~^25.^0^^~4~^~NC~^^^^^^^^^^~05/01/2011~
-~16058~^~601~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2011~
-~16059~^~208~^103.^0^^~4~^~NC~^^^^^^^^^^~05/01/2015~
-~16059~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~
-~16059~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~
-~16059~^~268~^433.^0^^~4~^~NC~^^^^^^^^^^~05/01/2015~
-~16059~^~301~^47.^17^^~1~^^^^^^^^^^^~12/01/1986~
-~16059~^~304~^45.^1^^~1~^^^^^^^^^^^~12/01/1986~
-~16059~^~305~^154.^1^^~1~^^^^^^^^^^^~12/01/1986~
-~16059~^~306~^365.^17^^~1~^^^^^^^^^^^~12/01/1986~
-~16059~^~307~^423.^0^^~8~^~LC~^^^^^^^^^^~05/01/2015~
-~16059~^~318~^337.^16^^~1~^^^^^^^^^^^~05/01/2015~
-~16059~^~319~^0.^0^^~4~^~FLC~^^^^^^^^^^~03/01/2003~
-~16059~^~320~^17.^0^^~4~^~NC~^^^^^^^^^^~04/01/2007~
-~16059~^~321~^180.^0^^~4~^~FLC~^^^^^^^^^^~04/01/2007~
-~16059~^~322~^0.^0^^~4~^~FLC~^^^^^^^^^^~04/01/2007~
-~16059~^~324~^0.^0^^~4~^~FLC~^^^^^^^^^^~05/01/2015~
-~16059~^~334~^43.^0^^~4~^~FLC~^^^^^^^^^^~04/01/2007~
-~16059~^~337~^1069.^0^^~4~^~FLC~^^^^^^^^^^~04/01/2007~
-~16059~^~338~^107.^0^^~4~^~FLC~^^^^^^^^^^~04/01/2007~
-~16059~^~417~^23.^0^^~1~^^^^^^^^^^^~12/01/1986~
-~16059~^~431~^0.^0^^~4~^~FLC~^^^^^^^^^^~05/01/2015~
-~16059~^~432~^23.^0^^~1~^^^^^^^^^^^~04/01/2007~
-~16059~^~435~^23.^0^^~4~^~NC~^^^^^^^^^^~04/01/2007~
-~16059~^~601~^17.^0^^~1~^^^^^^^^^^^~12/01/1986~
-~16060~^~208~^343.^0^^~4~^~NC~^^^^^^^^^^~12/01/1986~
-~16060~^~268~^1435.^0^^~4~^^^^^^^^^^^
-~16060~^~301~^85.^4^15.^~1~^^^^^^^^^^^~12/01/1986~
-~16060~^~304~^333.^4^92.^~1~^^^^^^^^^^^~12/01/1986~
-~16060~^~305~^438.^4^55.^~1~^^^^^^^^^^^~12/01/1986~
-~16060~^~306~^1375.^4^152.^~1~^^^^^^^^^^^~12/01/1986~
-~16060~^~307~^58.^3^36.^~1~^^^^^^^^^^^~12/01/1986~
-~16060~^~318~^33.^1^^~1~^^^^^^^^^^^~12/01/1986~
-~16060~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2002~
-~16060~^~320~^2.^1^^~1~^^^^^^^^^^^~06/01/2002~
-~16060~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~
-~16060~^~417~^639.^0^^~1~^^^^^^^^^^^~12/01/1986~
-~16060~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~
-~16060~^~432~^639.^0^^~1~^^^^^^^^^^^~12/01/1986~
-~16060~^~435~^639.^0^^~4~^~NC~^^^^^^^^^^~01/01/2001~
-~16060~^~601~^0.^0^^~1~^^^^^^^^^^^~12/01/1986~
-~16061~^~208~^117.^0^^~4~^~NC~^^^^^^^^^^~12/01/1986~
-~16061~^~268~^490.^0^^~4~^^^^^^^^^^^
-~16061~^~301~^26.^0^^~1~^^^^^^^^^^^~12/01/1986~
-~16061~^~304~^96.^0^^~1~^^^^^^^^^^^~12/01/1986~
-~16061~^~305~^142.^0^^~1~^^^^^^^^^^^~12/01/1986~
-~16061~^~306~^375.^0^^~1~^^^^^^^^^^^~12/01/1986~
-~16061~^~307~^19.^0^^~1~^^^^^^^^^^^~12/01/1986~
-~16061~^~318~^10.^0^^~1~^^^^^^^^^^^~12/01/1986~
-~16061~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2002~
-~16061~^~320~^1.^0^^~1~^^^^^^^^^^^~06/01/2002~
-~16061~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~
-~16061~^~417~^142.^0^^~1~^^^^^^^^^^^~12/01/1986~
-~16061~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~
-~16061~^~432~^142.^0^^~1~^^^^^^^^^^^~12/01/1986~
-~16061~^~435~^142.^0^^~4~^~NC~^^^^^^^^^^~01/01/2001~
-~16061~^~601~^0.^0^^~1~^^^^^^^^^^^~12/01/1986~
-~16062~^~208~^336.^0^^~4~^~NC~^^^^^^^^^^~04/01/2007~
-~16062~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~
-~16062~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~
-~16062~^~268~^1406.^0^^~4~^^^^^^^^^^^~04/01/2007~
-~16062~^~301~^110.^47^11.^~1~^^^^^^^^^^^~12/01/1986~
-~16062~^~304~^184.^45^7.^~1~^^^^^^^^^^^~12/01/1986~
-~16062~^~305~^424.^46^11.^~1~^^^^^^^^^^^~12/01/1986~
-~16062~^~306~^1112.^44^40.^~1~^^^^^^^^^^^~12/01/1986~
-~16062~^~307~^16.^39^1.^~1~^^^^^^^^^^^~12/01/1986~
-~16062~^~318~^50.^0^^~4~^~NC~^^^^^^^^^^~04/01/2007~
-~16062~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2002~
-~16062~^~320~^3.^0^^~4~^~NC~^^^^^^^^^^~04/01/2007~
-~16062~^~321~^30.^0^^~4~^~O~^^^^^^^^^^~02/01/2003~
-~16062~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~
-~16062~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~
-~16062~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~
-~16062~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~
-~16062~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~
-~16062~^~417~^633.^17^41.^~1~^^^^^^^^^^^~12/01/1986~
-~16062~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~
-~16062~^~432~^633.^17^41.^~1~^^^^^^^^^^^~04/01/2007~
-~16062~^~435~^633.^0^^~4~^~NC~^^^^^^^^^^~04/01/2007~
-~16062~^~601~^0.^0^^~1~^^^^^^^^^^^~12/01/1986~
-~16063~^~208~^116.^0^^~4~^~NC~^^^^^^^^^^~04/01/2007~
-~16063~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~
-~16063~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~
-~16063~^~268~^484.^0^^~4~^~NC~^^^^^^^^^^~04/01/2007~
-~16063~^~301~^24.^28^0.^~1~^^^^^^^^^^^~12/01/1986~
-~16063~^~304~^53.^29^1.^~1~^^^^^^^^^^^~12/01/1986~
-~16063~^~305~^156.^28^4.^~1~^^^^^^^^^^^~12/01/1986~
-~16063~^~306~^278.^29^7.^~1~^^^^^^^^^^^~12/01/1986~
-~16063~^~307~^4.^24^0.^~1~^^^^^^^^^^^~12/01/1986~
-~16063~^~318~^15.^0^^~4~^~NC~^^^^^^^^^^~04/01/2007~
-~16063~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2002~
-~16063~^~320~^1.^0^^~4~^~NC~^^^^^^^^^^~04/01/2007~
-~16063~^~321~^9.^0^^~4~^~O~^^^^^^^^^^~02/01/2003~
-~16063~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~
-~16063~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~
-~16063~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~
-~16063~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~
-~16063~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~
-~16063~^~417~^208.^8^19.^~1~^^^^^^^^^^^~12/01/1986~
-~16063~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~
-~16063~^~432~^208.^8^19.^~1~^^^^^^^^^^^~04/01/2007~
-~16063~^~435~^208.^0^^~4~^~NC~^^^^^^^^^^~04/01/2007~
-~16063~^~601~^0.^0^^~1~^^^^^^^^^^^~12/01/1986~
-~16064~^~208~^77.^0^^~4~^~NC~^^^^^^^^^^~12/01/1986~
-~16064~^~268~^322.^0^^~4~^^^^^^^^^^^
-~16064~^~301~^20.^6^^~1~^^^^^^^^^^^~12/01/1986~
-~16064~^~304~^28.^2^^~1~^^^^^^^^^^^~12/01/1986~
-~16064~^~305~^70.^2^^~1~^^^^^^^^^^^~12/01/1986~
-~16064~^~306~^172.^3^18.^~1~^^^^^^^^^^^~12/01/1986~
-~16064~^~307~^293.^3^13.^~8~^~LC~^^^^^^^^^^~04/01/2013~
-~16064~^~318~^13.^4^^~1~^^^^^^^^^^^~12/01/1986~
-~16064~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2002~
-~16064~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~
-~16064~^~417~^51.^0^^~1~^^^^^^^^^^^~12/01/1986~
-~16064~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~
-~16064~^~432~^51.^0^^~1~^^^^^^^^^^^~12/01/1986~
-~16064~^~435~^51.^0^^~4~^~NC~^^^^^^^^^^~01/01/2001~
-~16064~^~601~^0.^0^^~1~^^^^^^^^^^^~12/01/1986~
-~16065~^~208~^83.^0^^~4~^~NC~^^^^^^^^^^~12/01/1986~
-~16065~^~268~^347.^0^^~4~^^^^^^^^^^^
-~16065~^~301~^17.^33^0.^~1~^^^^^^^^^^^~12/01/1986~
-~16065~^~304~^43.^30^0.^~1~^^^^^^^^^^^~12/01/1986~
-~16065~^~305~^96.^30^2.^~1~^^^^^^^^^^^~12/01/1986~
-~16065~^~306~^178.^31^5.^~1~^^^^^^^^^^^~12/01/1986~
-~16065~^~307~^350.^33^12.^~1~^^^^^^^^^^^~12/01/1986~
-~16065~^~318~^0.^30^0.^~1~^^^^^^^^^^^~12/01/1986~
-~16065~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2002~
-~16065~^~320~^0.^30^0.^~1~^^^^^^^^^^^~06/01/2002~
-~16065~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~
-~16065~^~417~^51.^0^^~4~^^^^^^^^^^^~12/01/1986~
-~16065~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~
-~16065~^~432~^51.^0^^~4~^^^^^^^^^^^~12/01/1986~
-~16065~^~435~^51.^0^^~4~^~NC~^^^^^^^^^^~01/01/2001~
-~16065~^~601~^7.^0^^~1~^^^^^^^^^^^~12/01/1986~
-~16067~^~208~^344.^0^^~4~^~NC~^^^^^^^^^^~12/01/1986~
-~16067~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~11/01/2011~
-~16067~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~11/01/2011~
-~16067~^~268~^1441.^0^^~4~^~NC~^^^^^^^^^^~05/01/2011~
-~16067~^~301~^130.^4^29.^~1~^^^^^^^^^^^~12/01/1986~
-~16067~^~304~^283.^3^115.^~1~^^^^^^^^^^^~12/01/1986~
-~16067~^~305~^372.^4^63.^~1~^^^^^^^^^^^~12/01/1986~
-~16067~^~306~^1235.^3^150.^~1~^^^^^^^^^^^~12/01/1986~
-~16067~^~307~^21.^3^2.^~1~^^^^^^^^^^^~12/01/1986~
-~16067~^~318~^0.^0^^~4~^^^^^^^^^^^~12/01/1986~
-~16067~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2002~
-~16067~^~320~^0.^0^^~1~^~AS~^^^^^^^^^^~06/01/2002~
-~16067~^~321~^0.^0^^~7~^~Z~^^^^^^^^^^~11/01/2011~
-~16067~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~11/01/2011~
-~16067~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~
-~16067~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~11/01/2011~
-~16067~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~11/01/2011~
-~16067~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~11/01/2011~
-~16067~^~417~^23.^0^^~4~^^^^^^^^^^^~12/01/1986~
-~16067~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~
-~16067~^~432~^23.^0^^~4~^^^^^^^^^^^~12/01/1986~
-~16067~^~435~^23.^0^^~4~^~NC~^^^^^^^^^^~01/01/2001~
-~16067~^~601~^0.^0^^~7~^~Z~^^^^^^^^^^~11/01/2011~
-~16068~^~208~^117.^0^^~4~^~NC~^^^^^^^^^^~12/01/1986~
-~16068~^~268~^491.^0^^~4~^~NC~^^^^^^^^^^~05/01/2011~
-~16068~^~301~^40.^0^^~1~^^^^^^^^^^^~12/01/1986~
-~16068~^~304~^82.^0^^~1~^^^^^^^^^^^~12/01/1986~
-~16068~^~305~^120.^0^^~1~^^^^^^^^^^^~12/01/1986~
-~16068~^~306~^337.^0^^~1~^^^^^^^^^^^~12/01/1986~
-~16068~^~307~^7.^0^^~1~^^^^^^^^^^^~12/01/1986~
-~16068~^~318~^0.^0^^~4~^^^^^^^^^^^~12/01/1986~
-~16068~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2002~
-~16068~^~320~^0.^0^^~4~^^^^^^^^^^^~06/01/2002~
-~16068~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~
-~16068~^~417~^4.^0^^~4~^^^^^^^^^^^~12/01/1986~
-~16068~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~
-~16068~^~432~^4.^0^^~4~^^^^^^^^^^^~12/01/1986~
-~16068~^~435~^4.^0^^~4~^~NC~^^^^^^^^^^~01/01/2001~
-~16068~^~601~^0.^0^^~1~^^^^^^^^^^^~12/01/1986~
-~16069~^~208~^352.^0^^~4~^~NC~^^^^^^^^^^~04/01/2014~
-~16069~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~
-~16069~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~
-~16069~^~268~^1473.^0^^~4~^~NC~^^^^^^^^^^~04/01/2014~
-~16069~^~301~^35.^38^1.^~1~^~A~^^^2^17.^58.^35^32.^37.^~2, 3~^~04/01/2014~
-~16069~^~304~^47.^38^1.^~1~^~A~^^^2^18.^82.^30^43.^50.^~2, 3~^~04/01/2014~
-~16069~^~305~^281.^28^8.^~1~^~A~^^^1^207.^403.^27^264.^297.^~2, 3~^~04/01/2014~
-~16069~^~306~^677.^38^10.^~1~^~A~^^^2^528.^894.^34^655.^698.^~2, 3~^~04/01/2014~
-~16069~^~307~^6.^4^1.^~1~^~A~^^^1^2.^9.^3^1.^10.^~2, 3~^~03/01/2010~
-~16069~^~318~^39.^0^^~4~^~NC~^^^^^^^^^^~03/01/2010~
-~16069~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2002~
-~16069~^~320~^2.^0^^~4~^~NC~^^^^^^^^^^~03/01/2010~
-~16069~^~321~^23.^0^^~4~^~O~^^^^^^^^^^~02/01/2003~
-~16069~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~
-~16069~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~
-~16069~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~
-~16069~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~
-~16069~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~
-~16069~^~417~^479.^8^24.^~1~^~A~^^^1^380.^596.^7^419.^537.^~2, 3~^~03/01/2010~
-~16069~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~
-~16069~^~432~^479.^8^24.^~1~^~A~^^^1^380.^596.^7^419.^537.^^~03/01/2010~
-~16069~^~435~^479.^0^^~4~^~NC~^^^^^^^^^^~03/01/2010~
-~16069~^~601~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2005~
-~16070~^~208~^116.^0^^~4~^~NC~^^^^^^^^^^~04/01/2007~
-~16070~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~
-~16070~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~
-~16070~^~268~^487.^0^^~4~^~NC~^^^^^^^^^^~04/01/2007~
-~16070~^~301~^19.^20^0.^~1~^^^^^^^^^^^~12/01/1986~
-~16070~^~304~^36.^20^1.^~1~^^^^^^^^^^^~12/01/1986~
-~16070~^~305~^180.^20^11.^~1~^^^^^^^^^^^~12/01/1986~
-~16070~^~306~^369.^20^25.^~1~^^^^^^^^^^^~12/01/1986~
-~16070~^~307~^2.^16^0.^~1~^^^^^^^^^^^~12/01/1986~
-~16070~^~318~^8.^0^^~4~^~NC~^^^^^^^^^^~04/01/2007~
-~16070~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2002~
-~16070~^~320~^0.^0^^~4~^~NC~^^^^^^^^^^~04/01/2007~
-~16070~^~321~^5.^0^^~4~^~O~^^^^^^^^^^~02/01/2003~
-~16070~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~
-~16070~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~
-~16070~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~
-~16070~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~
-~16070~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~
-~16070~^~417~^181.^8^6.^~1~^^^^^^^^^^^~12/01/1986~
-~16070~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~
-~16070~^~432~^181.^8^6.^~1~^^^^^^^^^^^~04/01/2007~
-~16070~^~435~^181.^0^^~4~^~NC~^^^^^^^^^^~04/01/2007~
-~16070~^~601~^0.^0^^~1~^^^^^^^^^^^~12/01/1986~
-~16071~^~208~^338.^0^^~4~^~NC~^^^^^^^^^^~04/01/2007~
-~16071~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~
-~16071~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~
-~16071~^~268~^1414.^0^^~4~^^^^^^^^^^^~04/01/2007~
-~16071~^~301~^81.^48^3.^~1~^^^^^^^^^^^~12/01/1986~
-~16071~^~304~^224.^45^^~1~^^^^^^^^^^^~12/01/1986~
-~16071~^~305~^385.^47^9.^~1~^^^^^^^^^^^~12/01/1986~
-~16071~^~306~^1724.^46^^~1~^^^^^^^^^^^~12/01/1986~
-~16071~^~307~^18.^41^^~1~^^^^^^^^^^^~12/01/1986~
-~16071~^~318~^0.^0^^~1~^~AS~^^^^^^^^^^~04/01/2007~
-~16071~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2002~
-~16071~^~320~^0.^0^^~1~^~AS~^^^^^^^^^^~04/01/2007~
-~16071~^~321~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~
-~16071~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~
-~16071~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~
-~16071~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~
-~16071~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~
-~16071~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~
-~16071~^~417~^395.^16^13.^~1~^^^^^^^^^^^~12/01/1986~
-~16071~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~
-~16071~^~432~^395.^16^13.^~1~^^^^^^^^^^^~04/01/2007~
-~16071~^~435~^395.^0^^~4~^~NC~^^^^^^^^^^~04/01/2007~
-~16071~^~601~^0.^0^^~1~^^^^^^^^^^^~12/01/1986~
-~16072~^~208~^115.^0^^~4~^~NC~^^^^^^^^^^~04/01/2007~
-~16072~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~
-~16072~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~
-~16072~^~268~^482.^0^^~4~^~NC~^^^^^^^^^^~04/01/2007~
-~16072~^~301~^17.^29^0.^~1~^^^^^^^^^^^~12/01/1986~
-~16072~^~304~^43.^30^1.^~1~^^^^^^^^^^^~12/01/1986~
-~16072~^~305~^111.^29^3.^~1~^^^^^^^^^^^~12/01/1986~
-~16072~^~306~^508.^30^14.^~1~^^^^^^^^^^^~12/01/1986~
-~16072~^~307~^2.^23^0.^~1~^^^^^^^^^^^~12/01/1986~
-~16072~^~318~^0.^0^^~1~^~AS~^^^^^^^^^^~04/01/2007~
-~16072~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2002~
-~16072~^~320~^0.^0^^~1~^~AS~^^^^^^^^^^~04/01/2007~
-~16072~^~321~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~
-~16072~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~
-~16072~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~
-~16072~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~
-~16072~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~
-~16072~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2003~
-~16072~^~417~^83.^8^6.^~1~^^^^^^^^^^^~12/01/1986~
-~16072~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~
-~16072~^~432~^83.^8^6.^~1~^^^^^^^^^^^~04/01/2007~
-~16072~^~435~^83.^0^^~4~^~NC~^^^^^^^^^^~04/01/2007~
-~16072~^~601~^0.^0^^~1~^^^^^^^^^^^~12/01/1986~
-~16073~^~208~^79.^0^^~4~^~NC~^^^^^^^^^^~12/01/1986~
-~16073~^~268~^331.^0^^~4~^^^^^^^^^^^
-~16073~^~301~^21.^13^^~1~^^^^^^^^^^^~12/01/1986~
-~16073~^~304~^39.^1^^~1~^^^^^^^^^^^~12/01/1986~
-~16073~^~305~^74.^1^^~1~^^^^^^^^^^^~12/01/1986~
-~16073~^~306~^220.^6^15.^~1~^^^^^^^^^^^~12/01/1986~
-~16073~^~307~^336.^6^9.^~1~^^^^^^^^^^^~12/01/1986~
-~16073~^~318~^0.^0^^~1~^^^^^^^^^^^~12/01/1986~
-~16073~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2002~
-~16073~^~320~^0.^0^^~1~^^^^^^^^^^^~06/01/2002~
-~16073~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~
-~16073~^~417~^50.^0^^~1~^^^^^^^^^^^~12/01/1986~
-~16073~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~
-~16073~^~432~^50.^0^^~1~^^^^^^^^^^^~12/01/1986~
-~16073~^~435~^50.^0^^~4~^~NC~^^^^^^^^^^~01/01/2001~
-~16073~^~601~^0.^0^^~1~^^^^^^^^^^^~12/01/1986~
-~16074~^~208~^335.^0^^~4~^~NC~^^^^^^^^^^~05/01/2003~
-~16074~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~
-~16074~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~
-~16074~^~268~^1402.^0^^~4~^~NC~^^^^^^^^^^~05/01/2003~
-~16074~^~301~^81.^25^2.^~1~^^^^^^^^^^^~12/01/1986~
-~16074~^~304~^188.^25^6.^~1~^^^^^^^^^^^~12/01/1986~
-~16074~^~305~^370.^25^6.^~1~^^^^^^^^^^^~12/01/1986~
-~16074~^~306~^1403.^25^53.^~1~^^^^^^^^^^^~12/01/1986~
-~16074~^~307~^13.^21^3.^~1~^^^^^^^^^^^~12/01/1986~
-~16074~^~318~^0.^0^^~4~^~NC~^^^^^^^^^^~05/01/2003~
-~16074~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2002~
-~16074~^~320~^0.^0^^~4~^~NC~^^^^^^^^^^~05/01/2003~
-~16074~^~321~^0.^0^^~4~^~BFSN~^~16071~^^^^^^^^^~02/01/2003~
-~16074~^~322~^0.^0^^~4~^~BFSN~^~16071~^^^^^^^^^~02/01/2003~
-~16074~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~
-~16074~^~334~^0.^0^^~4~^~BFSN~^~16071~^^^^^^^^^~02/01/2003~
-~16074~^~337~^0.^0^^~4~^~BFSN~^~16071~^^^^^^^^^~02/01/2003~
-~16074~^~338~^0.^0^^~4~^~BFSN~^~16071~^^^^^^^^^~02/01/2003~
-~16074~^~417~^400.^16^20.^~1~^^^^^^^^^^^~12/01/1986~
-~16074~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~
-~16074~^~432~^400.^16^20.^~1~^^^^^^^^^^^~05/01/2003~
-~16074~^~435~^400.^0^^~4~^~NC~^^^^^^^^^^~05/01/2003~
-~16074~^~601~^0.^0^^~1~^^^^^^^^^^^~12/01/1986~
-~16075~^~208~^126.^0^^~4~^~NC~^^^^^^^^^^~12/01/1986~
-~16075~^~268~^527.^0^^~4~^^^^^^^^^^^
-~16075~^~301~^29.^21^0.^~1~^^^^^^^^^^^~12/01/1986~
-~16075~^~304~^53.^21^3.^~1~^^^^^^^^^^^~12/01/1986~
-~16075~^~305~^127.^21^1.^~1~^^^^^^^^^^^~12/01/1986~
-~16075~^~306~^401.^21^21.^~1~^^^^^^^^^^^~12/01/1986~
-~16075~^~307~^3.^17^0.^~1~^^^^^^^^^^^~12/01/1986~
-~16075~^~318~^0.^8^0.^~1~^^^^^^^^^^^~12/01/1986~
-~16075~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2002~
-~16075~^~320~^0.^8^0.^~1~^^^^^^^^^^^~06/01/2002~
-~16075~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~
-~16075~^~417~^150.^8^6.^~1~^^^^^^^^^^^~12/01/1986~
-~16075~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~
-~16075~^~432~^150.^8^6.^~1~^^^^^^^^^^^~12/01/1986~
-~16075~^~435~^150.^0^^~4~^~NC~^^^^^^^^^^~01/01/2001~
-~16075~^~601~^0.^0^^~1~^^^^^^^^^^^~12/01/1986~
-~16076~^~208~^371.^0^^~4~^~NC~^^^^^^^^^^~12/01/1986~
-~16076~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~11/01/2011~
-~16076~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~11/01/2011~
-~16076~^~268~^1554.^0^^~4~^~NC~^^^^^^^^^^~11/01/2011~
-~16076~^~301~^176.^5^^~1~^^^^^^^^^^^~12/01/1986~
-~16076~^~304~^198.^4^^~1~^^^^^^^^^^^~12/01/1986~
-~16076~^~305~^440.^1^^~1~^^^^^^^^^^^~12/01/1986~
-~16076~^~306~^1013.^4^^~1~^^^^^^^^^^^~12/01/1986~
-~16076~^~307~^15.^4^^~1~^^^^^^^^^^^~12/01/1986~
-~16076~^~318~^0.^0^^~1~^~AS~^^^^^^^^^^~07/01/2012~
-~16076~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2002~
-~16076~^~320~^0.^0^^~1~^~AS~^^^^^^^^^^~11/01/2011~
-~16076~^~321~^0.^0^^~7~^~Z~^^^^^^^^^^~11/01/2011~
-~16076~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~11/01/2011~
-~16076~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~
-~16076~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~11/01/2011~
-~16076~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~11/01/2011~
-~16076~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~11/01/2011~
-~16076~^~417~^355.^0^^~4~^^^^^^^^^^^~12/01/1986~
-~16076~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~
-~16076~^~432~^355.^0^^~4~^^^^^^^^^^^~12/01/1986~
-~16076~^~435~^355.^0^^~4~^~NC~^^^^^^^^^^~01/01/2001~
-~16076~^~601~^0.^0^^~7~^~Z~^^^^^^^^^^~11/01/2011~
-~16077~^~208~^119.^0^^~4~^~NC~^^^^^^^^^^~05/01/2007~
-~16077~^~268~^497.^0^^~4~^~NC~^^^^^^^^^^~05/01/2007~
-~16077~^~301~^51.^0^^~1~^^^^^^^^^^^~12/01/1986~
-~16077~^~304~^54.^0^^~1~^^^^^^^^^^^~12/01/1986~
-~16077~^~305~^128.^0^^~1~^^^^^^^^^^^~12/01/1986~
-~16077~^~306~^245.^0^^~1~^^^^^^^^^^^~12/01/1986~
-~16077~^~307~^4.^0^^~1~^^^^^^^^^^^~12/01/1986~
-~16077~^~318~^7.^0^^~4~^^^^^^^^^^^~05/01/2007~
-~16077~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2002~
-~16077~^~320~^0.^0^^~1~^~AS~^^^^^^^^^^~05/01/2007~
-~16077~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~
-~16077~^~417~^59.^0^^~4~^^^^^^^^^^^~12/01/1986~
-~16077~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~
-~16077~^~432~^59.^0^^~4~^^^^^^^^^^^~05/01/2007~
-~16077~^~435~^59.^0^^~4~^~NC~^^^^^^^^^^~05/01/2007~
-~16077~^~601~^0.^0^^~1~^^^^^^^^^^^~12/01/1986~
-~16078~^~208~^343.^0^^~4~^~NC~^^^^^^^^^^~12/01/1986~
-~16078~^~268~^1435.^0^^~4~^^^^^^^^^^^
-~16078~^~301~^150.^5^14.^~1~^^^^^^^^^^^~12/01/1986~
-~16078~^~304~^381.^5^67.^~1~^^^^^^^^^^^~12/01/1986~
-~16078~^~305~^489.^5^52.^~1~^^^^^^^^^^^~12/01/1986~
-~16078~^~306~^1191.^2^^~1~^^^^^^^^^^^~12/01/1986~
-~16078~^~307~^30.^1^^~1~^^^^^^^^^^^~12/01/1986~
-~16078~^~318~^32.^1^^~1~^^^^^^^^^^^~12/01/1986~
-~16078~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2002~
-~16078~^~320~^2.^1^^~1~^^^^^^^^^^^~06/01/2002~
-~16078~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~
-~16078~^~417~^649.^0^^~4~^^^^^^^^^^^~12/01/1986~
-~16078~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~
-~16078~^~432~^649.^0^^~4~^^^^^^^^^^^~12/01/1986~
-~16078~^~435~^649.^0^^~4~^~NC~^^^^^^^^^^~01/01/2001~
-~16078~^~601~^0.^0^^~1~^^^^^^^^^^^~12/01/1986~
-~16079~^~208~^117.^0^^~4~^~NC~^^^^^^^^^^~12/01/1986~
-~16079~^~268~^490.^0^^~4~^^^^^^^^^^^
-~16079~^~301~^3.^0^^~1~^^^^^^^^^^^~12/01/1986~
-~16079~^~304~^104.^0^^~1~^^^^^^^^^^^~12/01/1986~
-~16079~^~305~^150.^0^^~1~^^^^^^^^^^^~12/01/1986~
-~16079~^~306~^304.^0^^~1~^^^^^^^^^^^~12/01/1986~
-~16079~^~307~^10.^0^^~1~^^^^^^^^^^^~12/01/1986~
-~16079~^~318~^10.^0^^~1~^^^^^^^^^^^~12/01/1986~
-~16079~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2002~
-~16079~^~320~^1.^0^^~1~^^^^^^^^^^^~06/01/2002~
-~16079~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~
-~16079~^~417~^143.^0^^~4~^^^^^^^^^^^~12/01/1986~
-~16079~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~
-~16079~^~432~^143.^0^^~4~^^^^^^^^^^^~12/01/1986~
-~16079~^~435~^143.^0^^~4~^~NC~^^^^^^^^^^~01/01/2001~
-~16079~^~601~^0.^0^^~1~^^^^^^^^^^^~12/01/1986~
-~16080~^~208~^347.^0^^~4~^~NC~^^^^^^^^^^~04/01/2007~
-~16080~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~
-~16080~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~
-~16080~^~268~^1452.^0^^~4~^^^^^^^^^^^~04/01/2007~
-~16080~^~301~^132.^49^13.^~1~^^^^^^^^^^^~12/01/1986~
-~16080~^~304~^189.^29^11.^~1~^^^^^^^^^^^~12/01/1986~
-~16080~^~305~^367.^48^7.^~1~^^^^^^^^^^^~12/01/1986~
-~16080~^~306~^1246.^18^42.^~1~^^^^^^^^^^^~12/01/1986~
-~16080~^~307~^15.^12^2.^~1~^^^^^^^^^^^~12/01/1986~
-~16080~^~318~^114.^0^^~4~^~NC~^^^^^^^^^^~04/01/2007~
-~16080~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2002~
-~16080~^~320~^6.^0^^~4~^~NC~^^^^^^^^^^~04/01/2007~
-~16080~^~321~^68.^0^^~4~^~O~^^^^^^^^^^~02/01/2003~
-~16080~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~
-~16080~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~
-~16080~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~
-~16080~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~
-~16080~^~338~^0.^0^^~4~^~NR~^^^^^^^^^^~02/01/2003~
-~16080~^~417~^625.^8^42.^~1~^^^^^^^^^^^~12/01/1986~
-~16080~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~
-~16080~^~432~^625.^8^42.^~1~^^^^^^^^^^^~04/01/2007~
-~16080~^~435~^625.^0^^~4~^~NC~^^^^^^^^^^~04/01/2007~
-~16080~^~601~^0.^0^^~1~^^^^^^^^^^^~12/01/1986~
-~16080~^~636~^23.^0^^~1~^^^^^^^^^^^~12/01/1986~
-~16081~^~208~^105.^0^^~4~^~NC~^^^^^^^^^^~04/01/2007~
-~16081~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~
-~16081~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~
-~16081~^~268~^441.^0^^~4~^~NC~^^^^^^^^^^~04/01/2007~
-~16081~^~301~^27.^9^0.^~1~^^^^^^^^^^^~12/01/1986~
-~16081~^~304~^48.^9^1.^~1~^^^^^^^^^^^~12/01/1986~
-~16081~^~305~^99.^9^1.^~1~^^^^^^^^^^^~12/01/1986~
-~16081~^~306~^266.^9^6.^~1~^^^^^^^^^^^~12/01/1986~
-~16081~^~307~^2.^5^0.^~1~^^^^^^^^^^^~12/01/1986~
-~16081~^~318~^24.^0^^~4~^~NC~^^^^^^^^^^~04/01/2007~
-~16081~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2002~
-~16081~^~320~^1.^0^^~4~^~NC~^^^^^^^^^^~04/01/2007~
-~16081~^~321~^14.^0^^~4~^~O~^^^^^^^^^^~02/01/2003~
-~16081~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~
-~16081~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~
-~16081~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~
-~16081~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~
-~16081~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~
-~16081~^~417~^159.^8^11.^~1~^^^^^^^^^^^~12/01/1986~
-~16081~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~
-~16081~^~432~^159.^8^11.^~1~^^^^^^^^^^^~04/01/2007~
-~16081~^~435~^159.^0^^~4~^~NC~^^^^^^^^^^~04/01/2007~
-~16081~^~601~^0.^0^^~1~^^^^^^^^^^^~12/01/1986~
-~16082~^~208~^351.^0^^~4~^~NC~^^^^^^^^^^~04/01/2007~
-~16082~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~
-~16082~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~
-~16082~^~268~^1470.^0^^~4~^~NC~^^^^^^^^^^~04/01/2007~
-~16082~^~301~^25.^3^^~1~^^^^^^^^^^^~12/01/1986~
-~16082~^~304~^3.^2^^~1~^^^^^^^^^^^~12/01/1986~
-~16082~^~305~^32.^3^^~1~^^^^^^^^^^^~12/01/1986~
-~16082~^~306~^10.^3^5.^~1~^^^^^^^^^^^~12/01/1986~
-~16082~^~307~^10.^3^5.^~1~^^^^^^^^^^^~12/01/1986~
-~16082~^~318~^0.^0^^~1~^~AS~^^^^^^^^^^~04/01/2007~
-~16082~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2002~
-~16082~^~320~^0.^0^^~1~^~AS~^^^^^^^^^^~04/01/2007~
-~16082~^~321~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~
-~16082~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~
-~16082~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~
-~16082~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~
-~16082~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~
-~16082~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~
-~16082~^~417~^2.^0^^~4~^^^^^^^^^^^~12/01/1986~
-~16082~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~
-~16082~^~432~^2.^0^^~4~^^^^^^^^^^^~04/01/2007~
-~16082~^~435~^2.^0^^~4~^~NC~^^^^^^^^^^~04/01/2007~
-~16082~^~601~^0.^0^^~1~^^^^^^^^^^^~12/01/1986~
-~16083~^~208~^341.^0^^~4~^~NC~^^^^^^^^^^~12/01/1996~
-~16083~^~268~^1427.^0^^~4~^^^^^^^^^^^
-~16083~^~301~^138.^9^21.^~1~^~A~^^^^^^^^^^~12/01/1996~
-~16083~^~304~^267.^6^46.^~1~^~A~^^^^^^^^^^~12/01/1996~
-~16083~^~305~^379.^9^83.^~1~^~A~^^^^^^^^^^~12/01/1996~
-~16083~^~306~^983.^5^38.^~1~^~A~^^^^^^^^^^~12/01/1996~
-~16083~^~307~^38.^4^7.^~1~^~A~^^^^^^^^^^~12/01/1996~
-~16083~^~318~^23.^2^^~1~^~A~^^^^^^^^^^~04/01/2001~
-~16083~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2002~
-~16083~^~320~^1.^2^^~1~^~A~^^^^^^^^^^~06/01/2002~
-~16083~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~
-~16083~^~417~^216.^2^^~1~^~A~^^^^^^^^^^~12/01/1996~
-~16083~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~
-~16083~^~432~^216.^2^^~1~^~A~^^^^^^^^^^~12/01/1996~
-~16083~^~435~^216.^0^^~4~^~NC~^^^^^^^^^^~04/01/2001~
-~16083~^~601~^0.^0^^~7~^~Z~^^^^^^^^^^~12/01/1986~
-~16084~^~208~^105.^0^^~4~^~NC~^^^^^^^^^^~04/01/2007~
-~16084~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~
-~16084~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~
-~16084~^~268~^439.^0^^~4~^^^^^^^^^^^~04/01/2007~
-~16084~^~301~^53.^0^^~1~^^^^^^^^^^^~12/01/1986~
-~16084~^~304~^63.^0^^~1~^^^^^^^^^^^~12/01/1986~
-~16084~^~305~^156.^0^^~1~^^^^^^^^^^^~12/01/1986~
-~16084~^~306~^231.^0^^~1~^^^^^^^^^^^~12/01/1986~
-~16084~^~307~^7.^0^^~1~^^^^^^^^^^^~12/01/1986~
-~16084~^~318~^31.^0^^~4~^~NC~^^^^^^^^^^~04/01/2007~
-~16084~^~319~^0.^0^^~4~^~BNA~^~16081~^^^^^^^^^~02/01/2003~
-~16084~^~320~^2.^0^^~4~^~NC~^^^^^^^^^^~04/01/2007~
-~16084~^~321~^19.^0^^~4~^~BNA~^~16081~^^^^^^^^^~02/01/2003~
-~16084~^~322~^0.^0^^~4~^~BNA~^~16081~^^^^^^^^^~02/01/2003~
-~16084~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~
-~16084~^~334~^0.^0^^~4~^~BNA~^~16081~^^^^^^^^^~02/01/2003~
-~16084~^~337~^0.^0^^~4~^~BFSN~^~16081~^^^^^^^^^~02/01/2003~
-~16084~^~338~^0.^0^^~4~^~BFSN~^~16081~^^^^^^^^^~02/01/2003~
-~16084~^~417~^94.^0^^~1~^^^^^^^^^^^~12/01/1986~
-~16084~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~
-~16084~^~432~^94.^0^^~1~^^^^^^^^^^^~04/01/2007~
-~16084~^~435~^94.^0^^~4~^~NC~^^^^^^^^^^~04/01/2007~
-~16084~^~601~^0.^0^^~1~^^^^^^^^^^^~12/01/1986~
-~16085~^~208~^364.^0^^~4~^~NC~^^^^^^^^^^~03/01/2016~
-~16085~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~
-~16085~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~
-~16085~^~268~^1521.^0^^~4~^~NC~^^^^^^^^^^~03/01/2016~
-~16085~^~301~^46.^85^1.^~1~^~A~^^^3^17.^127.^71^42.^49.^~2, 3~^~03/01/2016~
-~16085~^~304~^63.^85^1.^~1~^~A~^^^3^18.^129.^66^60.^64.^~2, 3~^~03/01/2016~
-~16085~^~305~^334.^72^4.^~1~^~A~^^^2^260.^467.^57^326.^342.^~2, 3~^~03/01/2016~
-~16085~^~306~^852.^85^9.^~1~^~A~^^^3^558.^1090.^72^832.^871.^~2, 3~^~03/01/2016~
-~16085~^~307~^5.^18^0.^~1~^~A~^^^1^4.^17.^17^3.^6.^~1, 2, 3~^~03/01/2016~
-~16085~^~318~^149.^0^^~4~^~NC~^^^^^^^^^^~04/01/2007~
-~16085~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2002~
-~16085~^~320~^7.^0^^~4~^~NC~^^^^^^^^^^~04/01/2007~
-~16085~^~321~^89.^0^^~4~^~O~^^^^^^^^^^~02/01/2003~
-~16085~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~
-~16085~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~
-~16085~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~
-~16085~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~
-~16085~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~
-~16085~^~417~^15.^9^1.^~1~^~A~^^^1^9.^21.^8^11.^19.^~2, 3~^~03/01/2016~
-~16085~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~
-~16085~^~432~^15.^9^1.^~1~^~A~^^^1^9.^21.^8^11.^19.^^~03/01/2016~
-~16085~^~435~^15.^0^^~4~^~NC~^^^^^^^^^^~03/01/2016~
-~16085~^~601~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2014~
-~16086~^~208~^118.^0^^~4~^~NC~^^^^^^^^^^~04/01/2007~
-~16086~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~
-~16086~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~
-~16086~^~268~^494.^0^^~4~^~NC~^^^^^^^^^^~04/01/2007~
-~16086~^~301~^14.^20^0.^~1~^^^^^^^^^^^~12/01/1986~
-~16086~^~304~^36.^20^1.^~1~^^^^^^^^^^^~12/01/1986~
-~16086~^~305~^99.^20^5.^~1~^^^^^^^^^^^~12/01/1986~
-~16086~^~306~^362.^20^27.^~1~^^^^^^^^^^^~12/01/1986~
-~16086~^~307~^2.^16^0.^~1~^^^^^^^^^^^~12/01/1986~
-~16086~^~318~^7.^0^^~4~^~NC~^^^^^^^^^^~04/01/2007~
-~16086~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2002~
-~16086~^~320~^0.^0^^~4~^~NC~^^^^^^^^^^~04/01/2007~
-~16086~^~321~^4.^0^^~4~^~O~^^^^^^^^^^~02/01/2003~
-~16086~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~
-~16086~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~
-~16086~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~
-~16086~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~
-~16086~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~
-~16086~^~417~^65.^13^14.^~1~^^^^^^^^^^^~12/01/1986~
-~16086~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~
-~16086~^~432~^65.^13^14.^~1~^^^^^^^^^^^~04/01/2007~
-~16086~^~435~^65.^0^^~4~^~NC~^^^^^^^^^^~04/01/2007~
-~16086~^~601~^0.^0^^~1~^^^^^^^^^^^~12/01/1986~
-~16087~^~208~^567.^0^^~4~^~NC~^^^^^^^^^^~05/01/2014~
-~16087~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~
-~16087~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~
-~16087~^~268~^2374.^0^^~4~^~NC~^^^^^^^^^^~05/01/2014~
-~16087~^~301~^92.^45^^~1~^~A~^^^^^^^^^^~05/01/2014~
-~16087~^~304~^168.^45^^~1~^~A~^^^^^^^^^^~05/01/2014~
-~16087~^~305~^376.^45^^~1~^~A~^^^^^^^^^^~05/01/2014~
-~16087~^~306~^705.^47^^~1~^~A~^^^^^^^^^^~05/01/2014~
-~16087~^~307~^18.^35^^~1~^~A~^^^^^^^^^^~05/01/2014~
-~16087~^~318~^0.^0^^~4~^~NC~^^^^^^^^^^~05/01/2014~
-~16087~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2002~
-~16087~^~320~^0.^0^^~4~^~NC~^^^^^^^^^^~03/01/2006~
-~16087~^~321~^0.^0^^~4~^~BFSN~^~16090~^^^^^^^^^~02/01/2003~
-~16087~^~322~^0.^0^^~4~^~BFSN~^~16090~^^^^^^^^^~02/01/2003~
-~16087~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~
-~16087~^~334~^0.^0^^~4~^~BFSN~^~16090~^^^^^^^^^~02/01/2003~
-~16087~^~337~^0.^0^^~4~^~BFSN~^~16090~^^^^^^^^^~02/01/2003~
-~16087~^~338~^0.^0^^~4~^~BFSN~^~16090~^^^^^^^^^~04/01/2014~
-~16087~^~417~^240.^8^15.^~1~^~A~^~16090~^^^^^^^^^~05/01/2014~
-~16087~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~
-~16087~^~432~^240.^8^15.^~1~^~A~^^^^^^^^^^~05/01/2014~
-~16087~^~435~^240.^0^^~4~^~NC~^^^^^^^^^^~05/01/2014~
-~16087~^~601~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2014~
-~16088~^~208~^318.^0^^~4~^~NC~^^^^^^^^^^~02/01/2007~
-~16088~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~
-~16088~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~
-~16088~^~268~^1331.^0^^~4~^^^^^^^^^^^~02/01/2007~
-~16088~^~301~^55.^1^^~1~^^^^^^^^^^^~12/01/1986~
-~16088~^~304~^102.^1^^~1~^^^^^^^^^^^~12/01/1986~
-~16088~^~305~^198.^1^^~1~^^^^^^^^^^^~12/01/1986~
-~16088~^~306~^180.^1^^~1~^^^^^^^^^^^~12/01/1986~
-~16088~^~307~^751.^1^^~1~^^^^^^^^^^^~12/01/1986~
-~16088~^~318~^0.^0^^~4~^~NC~^^^^^^^^^^~02/01/2007~
-~16088~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2002~
-~16088~^~320~^0.^0^^~4~^~NC~^^^^^^^^^^~02/01/2007~
-~16088~^~321~^0.^0^^~4~^~BFSY~^~16089~^^^^^^^^^~02/01/2007~
-~16088~^~322~^0.^0^^~4~^~BFSY~^~16089~^^^^^^^^^~02/01/2007~
-~16088~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~
-~16088~^~334~^0.^0^^~4~^~BFSY~^~16089~^^^^^^^^^~02/01/2007~
-~16088~^~337~^0.^0^^~4~^~BFSY~^~16089~^^^^^^^^^~02/01/2007~
-~16088~^~338~^0.^0^^~4~^~BFSY~^~16089~^^^^^^^^^~02/01/2007~
-~16088~^~417~^75.^0^^~1~^^^^^^^^^^^~12/01/1986~
-~16088~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~
-~16088~^~432~^75.^0^^~1~^^^^^^^^^^^~02/01/2007~
-~16088~^~435~^75.^0^^~4~^~NC~^^^^^^^^^^~02/01/2007~
-~16088~^~601~^0.^0^^~1~^^^^^^^^^^^~12/01/1986~
-~16089~^~208~^599.^0^^~4~^~NC~^^^^^^^^^^~02/01/2007~
-~16089~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2003~
-~16089~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~
-~16089~^~268~^2506.^0^^~4~^~NC~^^^^^^^^^^~02/01/2007~
-~16089~^~301~^61.^4^3.^~1~^~A~^^^1^52.^67.^3^49.^71.^~2, 3~^~02/01/2003~
-~16089~^~304~^176.^4^3.^~1~^~A~^^^1^170.^186.^3^164.^187.^~2, 3~^~02/01/2003~
-~16089~^~305~^397.^4^5.^~1~^~A~^^^1^390.^414.^3^377.^415.^~2, 3~^~02/01/2003~
-~16089~^~306~^726.^4^6.^~1~^~A~^^^1^714.^737.^3^706.^744.^~2, 3~^~02/01/2003~
-~16089~^~307~^320.^4^29.^~1~^~A~^^^1^245.^377.^3^227.^412.^~2, 3~^~07/01/2012~
-~16089~^~318~^0.^0^^~1~^~AS~^^^^^^^^^^~02/01/2007~
-~16089~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2002~
-~16089~^~320~^0.^0^^~1~^~AS~^^^^^^^^^^~02/01/2007~
-~16089~^~321~^0.^0^^~7~^~Z~^^^^^^^^^^~11/01/2011~
-~16089~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~11/01/2011~
-~16089~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~
-~16089~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~11/01/2011~
-~16089~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~11/01/2011~
-~16089~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~11/01/2011~
-~16089~^~417~^120.^4^7.^~1~^~A~^^^1^99.^136.^3^94.^145.^~2, 3~^~02/01/2003~
-~16089~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~
-~16089~^~432~^120.^4^7.^~1~^~A~^^^1^99.^136.^3^94.^145.^^~02/01/2007~
-~16089~^~435~^120.^0^^~4~^~NC~^^^^^^^^^^~02/01/2007~
-~16089~^~601~^0.^0^^~7~^~Z~^^^^^^^^^^~12/01/1986~
-~16090~^~208~^587.^0^^~4~^~NC~^^^^^^^^^^~04/01/2014~
-~16090~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~
-~16090~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~
-~16090~^~268~^2455.^0^^~4~^~NC~^^^^^^^^^^~04/01/2014~
-~16090~^~301~^58.^17^1.^~1~^~A~^^^1^34.^75.^9^54.^61.^~2, 3~^~04/01/2014~
-~16090~^~304~^178.^17^1.^~1~^~A~^^^1^162.^188.^10^174.^181.^~2, 3~^~04/01/2014~
-~16090~^~305~^363.^17^2.^~1~^~A~^^^1^331.^375.^15^358.^367.^~2, 3~^~04/01/2014~
-~16090~^~306~^634.^17^5.^~1~^~A~^^^1^603.^686.^10^622.^644.^~2, 3~^~04/01/2014~
-~16090~^~307~^410.^14^17.^~1~^~A~^^^1^310.^681.^12^372.^448.^~2, 3~^~04/01/2014~
-~16090~^~318~^0.^0^^~1~^~AS~^^^^^^^^^^~04/01/2013~
-~16090~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2002~
-~16090~^~320~^0.^0^^~1~^~AS~^^^^^^^^^^~04/01/2014~
-~16090~^~321~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2014~
-~16090~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2014~
-~16090~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~
-~16090~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2014~
-~16090~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2014~
-~16090~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2014~
-~16090~^~417~^97.^8^2.^~1~^~A~^^^1^77.^109.^6^91.^102.^~2, 3~^~04/01/2014~
-~16090~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~
-~16090~^~432~^97.^8^2.^~1~^~A~^^^1^77.^109.^6^91.^102.^^~04/01/2014~
-~16090~^~435~^97.^0^^~4~^~NC~^^^^^^^^^^~04/01/2014~
-~16090~^~601~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2014~
-~16091~^~208~^570.^0^^~4~^~NC~^^^^^^^^^^~05/01/2014~
-~16091~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2014~
-~16091~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2014~
-~16091~^~268~^2386.^0^^~4~^~NC~^^^^^^^^^^~05/01/2014~
-~16091~^~301~^106.^5^8.^~1~^^^^^^^^^^^~12/01/1986~
-~16091~^~304~^188.^5^9.^~1~^^^^^^^^^^^~12/01/1986~
-~16091~^~305~^388.^5^13.^~1~^^^^^^^^^^^~12/01/1986~
-~16091~^~306~^744.^7^37.^~1~^^^^^^^^^^^~12/01/1986~
-~16091~^~307~^22.^7^2.^~1~^^^^^^^^^^^~12/01/1986~
-~16091~^~318~^0.^0^^~1~^^^^^^^^^^^~12/01/1986~
-~16091~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2002~
-~16091~^~320~^0.^0^^~4~^~NC~^^^^^^^^^^~05/01/2014~
-~16091~^~321~^0.^0^^~4~^~BFSN~^~16389~^^^^^^^^^~05/01/2014~
-~16091~^~322~^0.^0^^~4~^~BFSN~^~16389~^^^^^^^^^~05/01/2014~
-~16091~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~
-~16091~^~334~^0.^0^^~4~^~BFSN~^~16389~^^^^^^^^^~05/01/2014~
-~16091~^~337~^0.^0^^~4~^~BFSN~^~16389~^^^^^^^^^~05/01/2014~
-~16091~^~338~^0.^0^^~4~^~BFSN~^~16389~^^^^^^^^^~05/01/2014~
-~16091~^~417~^240.^0^^~1~^^^^^^^^^^^~12/01/1986~
-~16091~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~
-~16091~^~432~^240.^0^^~1~^^^^^^^^^^^~12/01/1986~
-~16091~^~435~^240.^0^^~4~^~NC~^^^^^^^^^^~01/01/2001~
-~16091~^~601~^0.^0^^~1~^^^^^^^^^^^~12/01/1986~
-~16092~^~208~^579.^0^^~4~^~NC~^^^^^^^^^^~12/01/1986~
-~16092~^~268~^2423.^0^^~4~^^^^^^^^^^^~05/01/2005~
-~16092~^~301~^100.^0^^~1~^^^^^^^^^^^~12/01/1986~
-~16092~^~304~^168.^0^^~1~^^^^^^^^^^^~12/01/1986~
-~16092~^~305~^387.^0^^~1~^^^^^^^^^^^~12/01/1986~
-~16092~^~306~^776.^2^^~1~^^^^^^^^^^^~12/01/1986~
-~16092~^~307~^433.^2^^~1~^^^^^^^^^^^~12/01/1986~
-~16092~^~318~^0.^0^^~1~^~AS~^^^^^^^^^^~05/01/2005~
-~16092~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2002~
-~16092~^~320~^0.^0^^~1~^~AS~^^^^^^^^^^~05/01/2005~
-~16092~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~
-~16092~^~417~^126.^0^^~1~^^^^^^^^^^^~12/01/1986~
-~16092~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~
-~16092~^~432~^126.^0^^~1~^^^^^^^^^^^~12/01/1986~
-~16092~^~435~^126.^0^^~4~^~NC~^^^^^^^^^^~05/01/2005~
-~16092~^~601~^0.^0^^~1~^^^^^^^^^^^~12/01/1986~
-~16093~^~208~^570.^0^^~4~^~NC~^^^^^^^^^^~12/01/1986~
-~16093~^~268~^2385.^0^^~4~^^^^^^^^^^^
-~16093~^~301~^62.^3^2.^~1~^^^^^^^^^^^~12/01/1986~
-~16093~^~304~^184.^1^^~1~^^^^^^^^^^^~12/01/1986~
-~16093~^~305~^336.^3^29.^~1~^^^^^^^^^^^~12/01/1986~
-~16093~^~306~^332.^1^^~1~^^^^^^^^^^^~12/01/1986~
-~16093~^~307~^1.^1^^~1~^^^^^^^^^^^~12/01/1986~
-~16093~^~318~^0.^1^^~1~^^^^^^^^^^^~12/01/1986~
-~16093~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2002~
-~16093~^~320~^0.^1^^~1~^^^^^^^^^^^~06/01/2002~
-~16093~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~
-~16093~^~417~^246.^0^^~1~^^^^^^^^^^^~12/01/1986~
-~16093~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~
-~16093~^~432~^246.^0^^~1~^^^^^^^^^^^~12/01/1986~
-~16093~^~435~^246.^0^^~4~^~NC~^^^^^^^^^^~01/01/2001~
-~16093~^~601~^0.^0^^~1~^^^^^^^^^^^~12/01/1986~
-~16094~^~208~^589.^0^^~4~^~NC~^^^^^^^^^^~12/01/1986~
-~16094~^~268~^2464.^0^^~4~^^^^^^^^^^^
-~16094~^~301~^54.^1^^~1~^^^^^^^^^^^~12/01/1986~
-~16094~^~304~^160.^0^^~1~^^^^^^^^^^^~12/01/1986~
-~16094~^~305~^319.^1^^~1~^^^^^^^^^^^~12/01/1986~
-~16094~^~306~^612.^4^74.^~1~^^^^^^^^^^^~12/01/1986~
-~16094~^~307~^772.^4^115.^~1~^^^^^^^^^^^~12/01/1986~
-~16094~^~318~^0.^0^^~1~^^^^^^^^^^^~12/01/1986~
-~16094~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2002~
-~16094~^~320~^0.^0^^~1~^^^^^^^^^^^~06/01/2002~
-~16094~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~
-~16094~^~417~^126.^0^^~1~^^^^^^^^^^^~12/01/1986~
-~16094~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~
-~16094~^~432~^126.^0^^~1~^^^^^^^^^^^~12/01/1986~
-~16094~^~435~^126.^0^^~4~^~NC~^^^^^^^^^^~01/01/2001~
-~16094~^~601~^0.^0^^~1~^^^^^^^^^^^~12/01/1986~
-~16095~^~208~^563.^0^^~4~^~NC~^^^^^^^^^^~05/01/2014~
-~16095~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~
-~16095~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~
-~16095~^~268~^2356.^0^^~4~^^^^^^^^^^^~05/01/2014~
-~16095~^~301~^89.^15^4.^~1~^^^^^^^^^^^~12/01/1986~
-~16095~^~304~^171.^15^2.^~1~^^^^^^^^^^^~12/01/1986~
-~16095~^~305~^380.^15^18.^~1~^^^^^^^^^^^~12/01/1986~
-~16095~^~306~^690.^15^38.^~1~^^^^^^^^^^^~12/01/1986~
-~16095~^~307~^10.^15^1.^~1~^^^^^^^^^^^~12/01/1986~
-~16095~^~318~^0.^0^^~1~^^^^^^^^^^^~04/01/2014~
-~16095~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2002~
-~16095~^~320~^0.^0^^~4~^~NC~^^^^^^^^^^~02/01/2003~
-~16095~^~321~^0.^0^^~4~^~BFSN~^~16089~^^^^^^^^^~02/01/2003~
-~16095~^~322~^0.^0^^~4~^~BFSN~^~16089~^^^^^^^^^~02/01/2003~
-~16095~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~
-~16095~^~334~^0.^0^^~4~^~BFSN~^~16089~^^^^^^^^^~02/01/2003~
-~16095~^~337~^0.^0^^~4~^~BFSN~^~16089~^^^^^^^^^~02/01/2003~
-~16095~^~338~^0.^0^^~4~^~BFSN~^~16089~^^^^^^^^^~02/01/2003~
-~16095~^~417~^239.^0^^~1~^^^^^^^^^^^~12/01/1986~
-~16095~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~
-~16095~^~432~^239.^0^^~1~^^^^^^^^^^^~02/01/2003~
-~16095~^~435~^239.^0^^~4~^~NC~^^^^^^^^^^~02/01/2003~
-~16095~^~601~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2014~
-~16096~^~208~^578.^0^^~4~^~NC~^^^^^^^^^^~12/01/1986~
-~16096~^~268~^2418.^0^^~4~^^^^^^^^^^^~05/01/2005~
-~16096~^~301~^86.^8^0.^~1~^^^^^^^^^^^~12/01/1986~
-~16096~^~304~^188.^8^1.^~1~^^^^^^^^^^^~12/01/1986~
-~16096~^~305~^506.^8^0.^~1~^^^^^^^^^^^~12/01/1986~
-~16096~^~306~^652.^8^0.^~1~^^^^^^^^^^^~12/01/1986~
-~16096~^~307~^433.^0^^~1~^^^^^^^^^^^~12/01/1986~
-~16096~^~318~^0.^0^^~1~^~AS~^^^^^^^^^^~05/01/2005~
-~16096~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2002~
-~16096~^~320~^0.^0^^~1~^~AS~^^^^^^^^^^~05/01/2005~
-~16096~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~
-~16096~^~417~^125.^0^^~1~^^^^^^^^^^^~12/01/1986~
-~16096~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~
-~16096~^~432~^125.^0^^~1~^^^^^^^^^^^~12/01/1986~
-~16096~^~435~^125.^0^^~4~^~NC~^^^^^^^^^^~05/01/2005~
-~16096~^~601~^0.^0^^~1~^^^^^^^^^^^~12/01/1986~
-~16097~^~208~^589.^0^^~4~^~NC~^^^^^^^^^^~03/01/2006~
-~16097~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~
-~16097~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~
-~16097~^~268~^2464.^0^^~4~^^^^^^^^^^^~03/01/2006~
-~16097~^~301~^45.^11^2.^~6~^~JA~^^^2^41.^70.^3^38.^52.^~2, 3~^~03/01/2004~
-~16097~^~304~^160.^196^0.^~6~^~JA~^^^2^159.^204.^3^159.^159.^~2, 3~^~03/01/2004~
-~16097~^~305~^319.^196^0.^~6~^~JA~^^^2^317.^430.^3^317.^319.^~2, 3~^~03/01/2004~
-~16097~^~306~^745.^190^0.^~6~^~JA~^^^2^603.^747.^3^743.^745.^~2, 3~^~03/01/2004~
-~16097~^~307~^486.^274^0.^~6~^~JA~^^^2^393.^640.^3^483.^488.^~2, 3~^~03/01/2004~
-~16097~^~318~^0.^0^^~1~^^^^^^^^^^^~05/01/2011~
-~16097~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2002~
-~16097~^~320~^0.^0^^~4~^~NC~^^^^^^^^^^~03/01/2006~
-~16097~^~321~^0.^0^^~4~^~BFSN~^~16098~^^^^^^^^^~03/01/2006~
-~16097~^~322~^0.^0^^~4~^~BFSN~^~16098~^^^^^^^^^~03/01/2006~
-~16097~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~
-~16097~^~334~^0.^0^^~4~^~BFSN~^~16098~^^^^^^^^^~03/01/2006~
-~16097~^~337~^0.^0^^~4~^~BFSN~^~16098~^^^^^^^^^~03/01/2006~
-~16097~^~338~^0.^0^^~4~^~BFSN~^~16098~^^^^^^^^^~03/01/2006~
-~16097~^~417~^92.^2^^~1~^^^^^^^^^^^~12/01/1986~
-~16097~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~
-~16097~^~432~^92.^2^^~1~^^^^^^^^^^^~03/01/2006~
-~16097~^~435~^92.^0^^~4~^~NC~^^^^^^^^^^~03/01/2006~
-~16097~^~601~^0.^0^^~1~^^^^^^^^^^^~05/01/2011~
-~16097~^~638~^11.^4^0.^~1~^~A~^^^1^11.^11.^3^10.^11.^~2, 3~^~05/01/2011~
-~16097~^~639~^15.^4^0.^~1~^~A~^^^1^14.^15.^3^14.^15.^~2, 3~^~05/01/2011~
-~16097~^~641~^77.^4^1.^~1~^~A~^^^1^73.^79.^3^73.^81.^~2, 3~^~05/01/2011~
-~16098~^~208~^598.^0^^~4~^~NC~^^^^^^^^^^~08/01/2014~
-~16098~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~
-~16098~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~
-~16098~^~268~^2501.^0^^~4~^~NC~^^^^^^^^^^~08/01/2014~
-~16098~^~301~^49.^18^0.^~1~^~A~^^^1^43.^55.^9^47.^50.^~2, 3~^~08/01/2014~
-~16098~^~304~^168.^18^1.^~1~^~A~^^^1^155.^182.^8^165.^170.^~2, 3~^~08/01/2014~
-~16098~^~305~^335.^18^1.^~1~^~A~^^^1^313.^357.^9^330.^339.^~2, 3~^~08/01/2014~
-~16098~^~306~^558.^18^2.^~1~^~A~^^^1^533.^592.^14^553.^563.^~2, 3~^~07/01/2014~
-~16098~^~307~^426.^18^3.^~1~^~A~^^^1^409.^482.^8^417.^435.^~2, 3~^~07/01/2014~
-~16098~^~318~^0.^0^^~1~^~AS~^^^^^^^^^^~11/01/2006~
-~16098~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2002~
-~16098~^~320~^0.^0^^~1~^~AS~^^^^^^^^^^~11/01/2006~
-~16098~^~321~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~
-~16098~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~
-~16098~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~
-~16098~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~
-~16098~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~
-~16098~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~
-~16098~^~417~^87.^9^1.^~1~^~A~^^^1^78.^93.^5^83.^89.^~2, 3~^~08/01/2014~
-~16098~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~
-~16098~^~432~^87.^9^1.^~1~^~A~^^^1^78.^93.^5^83.^89.^^~08/01/2014~
-~16098~^~435~^87.^0^^~4~^~NC~^^^^^^^^^^~08/01/2014~
-~16098~^~601~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2014~
-~16099~^~208~^327.^0^^~4~^~NC~^^^^^^^^^^~04/01/2007~
-~16099~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~
-~16099~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~
-~16099~^~268~^1368.^0^^~4~^^^^^^^^^^^~05/01/2007~
-~16099~^~301~^140.^1^^~1~^^^^^^^^^^^~12/01/1986~
-~16099~^~304~^370.^1^^~1~^^^^^^^^^^^~12/01/1986~
-~16099~^~305~^760.^1^^~1~^^^^^^^^^^^~12/01/1986~
-~16099~^~306~^1290.^1^^~1~^^^^^^^^^^^~12/01/1986~
-~16099~^~307~^180.^1^^~1~^^^^^^^^^^^~12/01/1986~
-~16099~^~318~^0.^0^^~4~^~NC~^^^^^^^^^^~05/01/2007~
-~16099~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2002~
-~16099~^~320~^0.^0^^~4~^~NC~^^^^^^^^^^~05/01/2007~
-~16099~^~321~^0.^0^^~4~^~BFNN~^~16087~^^^^^^^^^~02/01/2003~
-~16099~^~322~^0.^0^^~4~^~BFNN~^~16087~^^^^^^^^^~02/01/2003~
-~16099~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~
-~16099~^~334~^0.^0^^~4~^~BFNN~^~16087~^^^^^^^^^~02/01/2003~
-~16099~^~337~^0.^0^^~4~^~BFNN~^~16087~^^^^^^^^^~02/01/2003~
-~16099~^~338~^0.^0^^~4~^~BFNN~^~16087~^^^^^^^^^~02/01/2003~
-~16099~^~417~^248.^0^^~1~^^^^^^^^^^^~12/01/1986~
-~16099~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~
-~16099~^~432~^248.^0^^~1~^^^^^^^^^^^~05/01/2007~
-~16099~^~435~^248.^0^^~4~^~NC~^^^^^^^^^^~05/01/2007~
-~16099~^~601~^0.^0^^~1~^^^^^^^^^^^~12/01/1986~
-~16100~^~208~^428.^0^^~4~^~NC~^^^^^^^^^^~02/01/2003~
-~16100~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~
-~16100~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~
-~16100~^~268~^1790.^0^^~4~^~NC~^^^^^^^^^^~02/01/2003~
-~16100~^~301~^130.^8^7.^~1~^^^^^^^^^^^~12/01/1986~
-~16100~^~304~^48.^8^9.^~1~^^^^^^^^^^^~12/01/1986~
-~16100~^~305~^508.^0^^~4~^^^^^^^^^^^~12/01/1986~
-~16100~^~306~^1358.^8^70.^~1~^^^^^^^^^^^~12/01/1986~
-~16100~^~307~^1.^7^0.^~1~^^^^^^^^^^^~12/01/1986~
-~16100~^~318~^0.^0^^~1~^~AS~^^^^^^^^^^~02/01/2003~
-~16100~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2002~
-~16100~^~320~^0.^0^^~1~^~AS~^^^^^^^^^^~02/01/2003~
-~16100~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~
-~16100~^~417~^133.^0^^~4~^^^^^^^^^^^~12/01/1986~
-~16100~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~
-~16100~^~432~^133.^0^^~4~^^^^^^^^^^^~12/01/1986~
-~16100~^~435~^133.^0^^~4~^~NC~^^^^^^^^^^~02/01/2003~
-~16100~^~601~^0.^0^^~1~^^^^^^^^^^^~12/01/1986~
-~16101~^~208~^343.^0^^~4~^~NC~^^^^^^^^^^~12/01/1986~
-~16101~^~268~^1435.^0^^~4~^^^^^^^^^^^
-~16101~^~301~^130.^18^7.^~1~^^^^^^^^^^^~12/01/1986~
-~16101~^~304~^183.^14^17.^~1~^^^^^^^^^^^~12/01/1986~
-~16101~^~305~^367.^18^30.^~1~^^^^^^^^^^^~12/01/1986~
-~16101~^~306~^1392.^9^23.^~1~^^^^^^^^^^^~12/01/1986~
-~16101~^~307~^17.^4^1.^~1~^^^^^^^^^^^~12/01/1986~
-~16101~^~318~^28.^8^2.^~1~^^^^^^^^^^^~12/01/1986~
-~16101~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2002~
-~16101~^~320~^1.^8^0.^~1~^^^^^^^^^^^~06/01/2002~
-~16101~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~
-~16101~^~417~^456.^8^15.^~1~^^^^^^^^^^^~12/01/1986~
-~16101~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~
-~16101~^~432~^456.^8^15.^~1~^^^^^^^^^^^~12/01/1986~
-~16101~^~435~^456.^0^^~4~^~NC~^^^^^^^^^^~01/01/2001~
-~16101~^~601~^0.^0^^~1~^^^^^^^^^^^~12/01/1986~
-~16102~^~208~^121.^0^^~4~^~NC~^^^^^^^^^^~12/01/1986~
-~16102~^~268~^506.^0^^~4~^^^^^^^^^^^
-~16102~^~301~^43.^8^1.^~1~^^^^^^^^^^^~12/01/1986~
-~16102~^~304~^46.^8^2.^~1~^^^^^^^^^^^~12/01/1986~
-~16102~^~305~^119.^8^3.^~1~^^^^^^^^^^^~12/01/1986~
-~16102~^~306~^384.^8^15.^~1~^^^^^^^^^^^~12/01/1986~
-~16102~^~307~^5.^4^0.^~1~^^^^^^^^^^^~12/01/1986~
-~16102~^~318~^3.^8^0.^~1~^^^^^^^^^^^~12/01/1986~
-~16102~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2002~
-~16102~^~320~^0.^8^0.^~1~^^^^^^^^^^^~06/01/2002~
-~16102~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~
-~16102~^~417~^111.^8^4.^~1~^^^^^^^^^^^~12/01/1986~
-~16102~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~
-~16102~^~432~^111.^8^4.^~1~^^^^^^^^^^^~12/01/1986~
-~16102~^~435~^111.^0^^~4~^~NC~^^^^^^^^^^~01/01/2001~
-~16102~^~601~^0.^0^^~1~^^^^^^^^^^^~12/01/1986~
-~16103~^~208~^90.^0^^~4~^~NC~^^^^^^^^^^~08/01/2014~
-~16103~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2003~
-~16103~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2003~
-~16103~^~268~^379.^0^^~4~^~NC~^^^^^^^^^^~04/01/2014~
-~16103~^~301~^29.^17^0.^~1~^~A~^^^1^24.^41.^7^27.^29.^~2, 3~^~04/01/2014~
-~16103~^~304~^35.^17^0.^~1~^~A~^^^1^29.^44.^8^34.^36.^~2, 3~^~08/01/2014~
-~16103~^~305~^92.^17^1.^~1~^~A~^^^1^80.^114.^9^88.^96.^~2, 3~^~08/01/2014~
-~16103~^~306~^319.^17^5.^~1~^~A~^^^1^249.^414.^8^306.^332.^~2, 3~^~08/01/2014~
-~16103~^~307~^370.^17^8.^~1~^~A~^^^1^256.^425.^9^351.^388.^~2, 3~^~04/01/2014~
-~16103~^~318~^0.^0^^~4~^~NC~^^^^^^^^^^~08/01/2014~
-~16103~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2002~
-~16103~^~320~^0.^0^^~4~^~NC~^^^^^^^^^^~08/01/2014~
-~16103~^~321~^0.^0^^~4~^~BFSN~^~16044~^^^^^^^^^~08/01/2014~
-~16103~^~322~^0.^0^^~4~^~BFSN~^~16044~^^^^^^^^^~08/01/2014~
-~16103~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~
-~16103~^~334~^0.^0^^~4~^~BFSN~^~16044~^^^^^^^^^~08/01/2014~
-~16103~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2003~
-~16103~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2003~
-~16103~^~417~^11.^4^1.^~1~^^^^^^^^^^^~03/01/2008~
-~16103~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~
-~16103~^~432~^11.^4^1.^~1~^^^^^^^^^^^~03/01/2008~
-~16103~^~435~^11.^0^^~4~^~NC~^^^^^^^^^^~03/01/2008~
-~16103~^~601~^0.^0^^~7~^~Z~^^^^^^^^^^~08/01/2014~
-~16104~^~208~^309.^0^^~4~^~NC~^^^^^^^^^^~07/01/2015~
-~16104~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~
-~16104~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~
-~16104~^~268~^1294.^0^^~4~^~NC~^^^^^^^^^^~07/01/2015~
-~16104~^~301~^23.^2^^~1~^^^^^^^^^^^~12/01/1986~
-~16104~^~304~^19.^2^^~1~^^^^^^^^^^^~12/01/1986~
-~16104~^~305~^70.^2^^~1~^^^^^^^^^^^~12/01/1986~
-~16104~^~306~^170.^2^^~1~^^^^^^^^^^^~12/01/1986~
-~16104~^~307~^1465.^2^^~1~^^^^^^^^^^^~12/01/1986~
-~16104~^~318~^88.^0^^~4~^~NC~^^^^^^^^^^~04/01/2007~
-~16104~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2002~
-~16104~^~320~^4.^0^^~4~^~NC~^^^^^^^^^^~04/01/2007~
-~16104~^~321~^53.^0^^~4~^~O~^^^^^^^^^^~02/01/2003~
-~16104~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~
-~16104~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~
-~16104~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~
-~16104~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~
-~16104~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~
-~16104~^~417~^42.^2^^~1~^^^^^^^^^^^~12/01/1986~
-~16104~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~
-~16104~^~432~^42.^2^^~1~^^^^^^^^^^^~04/01/2007~
-~16104~^~435~^42.^0^^~4~^~NC~^^^^^^^^^^~04/01/2007~
-~16104~^~601~^0.^0^^~1~^^^^^^^^^^^~12/01/1986~
-~16106~^~208~^311.^0^^~4~^~NC~^^^^^^^^^^~07/01/2015~
-~16106~^~268~^1301.^0^^~4~^~NC~^^^^^^^^^^~07/01/2015~
-~16106~^~301~^204.^2^^~1~^^^^^^^^^^^~12/01/1986~
-~16106~^~304~^216.^14^4.^~1~^^^^^^^^^^^~12/01/1986~
-~16106~^~305~^639.^0^^~4~^^^^^^^^^^^~12/01/1986~
-~16106~^~306~^1902.^0^^~4~^^^^^^^^^^^~12/01/1986~
-~16106~^~307~^10.^0^^~1~^^^^^^^^^^^~12/01/1986~
-~16106~^~318~^32.^14^3.^~1~^^^^^^^^^^^~12/01/1986~
-~16106~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2002~
-~16106~^~320~^2.^14^0.^~1~^^^^^^^^^^^~06/01/2002~
-~16106~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~
-~16106~^~417~^198.^0^^~4~^^^^^^^^^^^~12/01/1986~
-~16106~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~
-~16106~^~432~^198.^0^^~4~^^^^^^^^^^^~12/01/1986~
-~16106~^~435~^198.^0^^~4~^~NC~^^^^^^^^^^~01/01/2001~
-~16106~^~601~^0.^0^^~1~^^^^^^^^^^^~12/01/1986~
-~16107~^~208~^255.^0^^~4~^~NC~^^^^^^^^^^~07/01/2015~
-~16107~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~
-~16107~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~
-~16107~^~268~^1069.^0^^~4~^~NC~^^^^^^^^^^~07/01/2015~
-~16107~^~301~^63.^2^^~1~^^^^^^^^^^^~12/01/1986~
-~16107~^~304~^36.^2^^~1~^^^^^^^^^^^~12/01/1986~
-~16107~^~305~^225.^2^^~1~^^^^^^^^^^^~12/01/1986~
-~16107~^~306~^231.^2^^~1~^^^^^^^^^^^~12/01/1986~
-~16107~^~307~^888.^2^^~1~^^^^^^^^^^^~12/01/1986~
-~16107~^~318~^0.^0^^~4~^~NC~^^^^^^^^^^~04/01/2007~
-~16107~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2002~
-~16107~^~320~^0.^0^^~4~^~NC~^^^^^^^^^^~04/01/2007~
-~16107~^~321~^0.^0^^~4~^~O~^^^^^^^^^^~02/01/2003~
-~16107~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~
-~16107~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~
-~16107~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~
-~16107~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~
-~16107~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~
-~16107~^~417~^26.^2^^~1~^^^^^^^^^^^~12/01/1986~
-~16107~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~
-~16107~^~432~^26.^2^^~1~^^^^^^^^^^^~04/01/2007~
-~16107~^~435~^26.^0^^~4~^~NC~^^^^^^^^^^~04/01/2007~
-~16107~^~601~^0.^0^^~1~^^^^^^^^^^^~12/01/1986~
-~16108~^~208~^446.^0^^~4~^~NC~^^^^^^^^^^~11/01/2006~
-~16108~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~11/01/2006~
-~16108~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~11/01/2006~
-~16108~^~268~^1866.^0^^~4~^~NC~^^^^^^^^^^~11/01/2006~
-~16108~^~301~^277.^71^5.^~1~^^^^^^^^^^^~12/01/1986~
-~16108~^~304~^280.^49^9.^~1~^^^^^^^^^^^~12/01/1986~
-~16108~^~305~^704.^82^11.^~1~^^^^^^^^^^^~12/01/1986~
-~16108~^~306~^1797.^56^28.^~1~^^^^^^^^^^^~12/01/1986~
-~16108~^~307~^2.^5^1.^~1~^^^^^^^^^^^~12/01/1986~
-~16108~^~318~^22.^0^^~4~^~NC~^^^^^^^^^^~09/01/2007~
-~16108~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2002~
-~16108~^~320~^1.^0^^~4~^~NC~^^^^^^^^^^~09/01/2007~
-~16108~^~321~^13.^0^^~4~^~BFSN~^~16109~^^^^^^^^^~11/01/2006~
-~16108~^~322~^0.^0^^~4~^~BFSN~^~16109~^^^^^^^^^~11/01/2006~
-~16108~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~
-~16108~^~334~^0.^0^^~4~^~BFSN~^~16109~^^^^^^^^^~11/01/2006~
-~16108~^~337~^0.^0^^~4~^~BFSN~^~16109~^^^^^^^^^~11/01/2006~
-~16108~^~338~^0.^0^^~4~^~BFSN~^~16109~^^^^^^^^^~11/01/2006~
-~16108~^~417~^375.^0^^~1~^^^^^^^^^^^~12/01/1986~
-~16108~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~
-~16108~^~432~^375.^0^^~1~^^^^^^^^^^^~11/01/2006~
-~16108~^~435~^375.^0^^~4~^~NC~^^^^^^^^^^~09/01/2007~
-~16108~^~601~^0.^0^^~1~^^^^^^^^^^^~12/01/1986~
-~16108~^~636~^161.^0^^~1~^^^^^^^^^^^~12/01/1986~
-~16109~^~208~^172.^0^^~4~^~NC~^^^^^^^^^^~07/01/2015~
-~16109~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~
-~16109~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~
-~16109~^~268~^721.^0^^~4~^~NC~^^^^^^^^^^~07/01/2015~
-~16109~^~301~^102.^0^^~1~^^^^^^^^^^^~12/01/1986~
-~16109~^~304~^86.^0^^~1~^^^^^^^^^^^~12/01/1986~
-~16109~^~305~^245.^0^^~1~^^^^^^^^^^^~12/01/1986~
-~16109~^~306~^515.^0^^~1~^^^^^^^^^^^~12/01/1986~
-~16109~^~307~^1.^0^^~1~^^^^^^^^^^^~12/01/1986~
-~16109~^~318~^9.^0^^~4~^~NC~^^^^^^^^^^~04/01/2007~
-~16109~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2002~
-~16109~^~320~^0.^0^^~4~^~NC~^^^^^^^^^^~04/01/2007~
-~16109~^~321~^5.^0^^~4~^~O~^^^^^^^^^^~02/01/2003~
-~16109~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~
-~16109~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~
-~16109~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~
-~16109~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~
-~16109~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~
-~16109~^~417~^54.^4^2.^~1~^^^^^^^^^^^~12/01/1986~
-~16109~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~
-~16109~^~432~^54.^4^2.^~1~^^^^^^^^^^^~04/01/2007~
-~16109~^~435~^54.^0^^~4~^~NC~^^^^^^^^^^~04/01/2007~
-~16109~^~601~^0.^0^^~1~^^^^^^^^^^^~12/01/1986~
-~16110~^~208~^469.^0^^~4~^~NC~^^^^^^^^^^~07/01/2015~
-~16110~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~
-~16110~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~
-~16110~^~268~^1964.^0^^~4~^~NC~^^^^^^^^^^~07/01/2015~
-~16110~^~301~^138.^1^^~1~^^^^^^^^^^^~12/01/1986~
-~16110~^~304~^145.^1^^~1~^^^^^^^^^^^~12/01/1986~
-~16110~^~305~^363.^1^^~1~^^^^^^^^^^^~12/01/1986~
-~16110~^~306~^1470.^1^^~1~^^^^^^^^^^^~12/01/1986~
-~16110~^~307~^163.^1^^~1~^^^^^^^^^^^~12/01/1986~
-~16110~^~318~^200.^0^^~4~^~NC~^^^^^^^^^^~04/01/2007~
-~16110~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2002~
-~16110~^~320~^10.^0^^~4~^~NC~^^^^^^^^^^~04/01/2007~
-~16110~^~321~^120.^0^^~4~^~O~^^^^^^^^^^~02/01/2003~
-~16110~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~
-~16110~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~
-~16110~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~
-~16110~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~
-~16110~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~
-~16110~^~417~^211.^1^^~1~^^^^^^^^^^^~12/01/1986~
-~16110~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~
-~16110~^~432~^211.^1^^~1~^^^^^^^^^^^~04/01/2007~
-~16110~^~435~^211.^0^^~4~^~NC~^^^^^^^^^^~04/01/2007~
-~16110~^~601~^0.^0^^~1~^^^^^^^^^^^~12/01/1986~
-~16111~^~208~^449.^0^^~4~^~NC~^^^^^^^^^^~07/01/2015~
-~16111~^~268~^1880.^0^^~4~^~NC~^^^^^^^^^^~07/01/2015~
-~16111~^~301~^140.^0^^~4~^~BFSN~^^^^^^^^^^~11/01/1997~
-~16111~^~304~^228.^0^^~1~^^^^^^^^^^^~12/01/1986~
-~16111~^~305~^649.^0^^~1~^^^^^^^^^^^~12/01/1986~
-~16111~^~306~^1364.^0^^~1~^^^^^^^^^^^~12/01/1986~
-~16111~^~307~^2.^0^^~1~^^^^^^^^^^^~12/01/1986~
-~16111~^~318~^0.^0^^~1~^~AS~^^^^^^^^^^~05/01/2003~
-~16111~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2002~
-~16111~^~320~^0.^0^^~1~^~AS~^^^^^^^^^^~05/01/2003~
-~16111~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~
-~16111~^~417~^205.^3^9.^~1~^^^^^^^^^^^~12/01/1986~
-~16111~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~
-~16111~^~432~^205.^3^9.^~1~^^^^^^^^^^^~12/01/1986~
-~16111~^~435~^205.^0^^~4~^~NC~^^^^^^^^^^~05/01/2003~
-~16111~^~601~^0.^0^^~1~^^^^^^^^^^^~12/01/1986~
-~16112~^~208~^198.^0^^~4~^~NC~^^^^^^^^^^~07/01/2015~
-~16112~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~
-~16112~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~
-~16112~^~268~^828.^0^^~4~^~NC~^^^^^^^^^^~07/01/2015~
-~16112~^~301~^57.^5^0.^~6~^~JA~^^^2^43.^66.^1^49.^65.^~2, 3~^~12/01/2003~
-~16112~^~304~^48.^8^6.^~6~^~JA~^^^2^42.^68.^5^30.^66.^~2, 3~^~12/01/2003~
-~16112~^~305~^159.^5^0.^~6~^~JA~^^^2^153.^170.^1^149.^168.^~2, 3~^~12/01/2003~
-~16112~^~306~^210.^12^18.^~6~^~JA~^^^2^164.^454.^9^169.^251.^~2, 3~^~12/01/2003~
-~16112~^~307~^3728.^12^303.^~6~^~JA~^^^2^3647.^4249.^9^3042.^4413.^~2, 3~^~12/01/2003~
-~16112~^~318~^87.^0^^~4~^~NC~^^^^^^^^^^~04/01/2007~
-~16112~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2002~
-~16112~^~320~^4.^0^^~4~^~NC~^^^^^^^^^^~04/01/2007~
-~16112~^~321~^52.^0^^~4~^~O~^^^^^^^^^^~02/01/2003~
-~16112~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~
-~16112~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~
-~16112~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~
-~16112~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~
-~16112~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~
-~16112~^~417~^19.^3^2.^~6~^~JA~^^^2^8.^33.^1^-9.^46.^~2, 3~^~12/01/2003~
-~16112~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~
-~16112~^~432~^19.^3^2.^~6~^~JA~^^^2^8.^33.^1^-9.^46.^^~04/01/2007~
-~16112~^~435~^19.^0^^~4~^~NC~^^^^^^^^^^~04/01/2007~
-~16112~^~601~^0.^0^^~1~^^^^^^^^^^^~12/01/1986~
-~16113~^~208~^211.^0^^~4~^~NC~^^^^^^^^^^~07/01/2015~
-~16113~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~
-~16113~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~
-~16113~^~268~^883.^0^^~4~^~NC~^^^^^^^^^^~07/01/2015~
-~16113~^~301~^217.^1^^~1~^^^^^^^^^^^~12/01/1986~
-~16113~^~304~^115.^2^^~1~^^^^^^^^^^^~12/01/1986~
-~16113~^~305~^174.^1^^~1~^^^^^^^^^^^~12/01/1986~
-~16113~^~306~^729.^1^^~1~^^^^^^^^^^^~12/01/1986~
-~16113~^~307~^7.^1^^~1~^^^^^^^^^^^~12/01/1986~
-~16113~^~318~^0.^0^^~1~^~AS~^^^^^^^^^^~04/01/2007~
-~16113~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2002~
-~16113~^~320~^0.^0^^~1~^~AS~^^^^^^^^^^~04/01/2007~
-~16113~^~321~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~
-~16113~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~
-~16113~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~
-~16113~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~
-~16113~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~
-~16113~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~
-~16113~^~417~^8.^0^^~4~^^^^^^^^^^^~12/01/1986~
-~16113~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~
-~16113~^~432~^8.^0^^~4~^^^^^^^^^^^~04/01/2007~
-~16113~^~435~^8.^0^^~4~^~NC~^^^^^^^^^^~04/01/2007~
-~16113~^~601~^0.^0^^~1~^^^^^^^^^^^~12/01/1986~
-~16114~^~208~^192.^0^^~4~^~NC~^^^^^^^^^^~07/01/2015~
-~16114~^~268~^803.^0^^~4~^~NC~^^^^^^^^^^~07/01/2015~
-~16114~^~301~^111.^1^^~1~^~A~^^^^^^^^^^~10/01/2000~
-~16114~^~304~^81.^1^^~1~^~A~^^^^^^^^^^~10/01/2000~
-~16114~^~305~^266.^1^^~1~^~A~^^^^^^^^^^~10/01/2000~
-~16114~^~306~^412.^1^^~1~^~A~^^^^^^^^^^~10/01/2000~
-~16114~^~307~^9.^1^^~1~^~A~^^^^^^^^^^~10/01/2000~
-~16114~^~318~^0.^0^^~1~^~AS~^^^^^^^^^^~12/01/2003~
-~16114~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2002~
-~16114~^~320~^0.^0^^~1~^~AS~^^^^^^^^^^~12/01/2003~
-~16114~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~
-~16114~^~417~^24.^1^^~1~^~A~^^^^^^^^^^~10/01/2000~
-~16114~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2001~
-~16114~^~432~^24.^1^^~1~^~A~^^^^^^^^^^~12/01/2003~
-~16114~^~435~^24.^0^^~4~^~NC~^^^^^^^^^^~12/01/2003~
-~16114~^~601~^0.^0^^~7~^~Z~^^^^^^^^^^~12/01/2003~
-~16115~^~208~^434.^0^^~4~^~NC~^^^^^^^^^^~07/01/2015~
-~16115~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~
-~16115~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~
-~16115~^~268~^1816.^0^^~4~^~NC~^^^^^^^^^^~07/01/2015~
-~16115~^~301~^206.^4^^~1~^^^^^^^^^^^~12/01/1986~
-~16115~^~304~^429.^2^^~1~^^^^^^^^^^^~12/01/1986~
-~16115~^~305~^494.^1^^~1~^^^^^^^^^^^~12/01/1986~
-~16115~^~306~^2515.^2^^~1~^^^^^^^^^^^~12/01/1986~
-~16115~^~307~^13.^2^^~1~^^^^^^^^^^^~12/01/1986~
-~16115~^~318~^120.^0^^~4~^~NC~^^^^^^^^^^~04/01/2007~
-~16115~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2002~
-~16115~^~320~^6.^0^^~4~^~NC~^^^^^^^^^^~04/01/2007~
-~16115~^~321~^72.^0^^~4~^~O~^^^^^^^^^^~02/01/2003~
-~16115~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~
-~16115~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~
-~16115~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~
-~16115~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~
-~16115~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~
-~16115~^~417~^345.^1^^~1~^^^^^^^^^^^~12/01/1986~
-~16115~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~
-~16115~^~432~^345.^1^^~1~^^^^^^^^^^^~04/01/2007~
-~16115~^~435~^345.^0^^~4~^~NC~^^^^^^^^^^~04/01/2007~
-~16115~^~601~^0.^0^^~1~^^^^^^^^^^^~12/01/1986~
-~16116~^~208~^439.^0^^~4~^~NC~^^^^^^^^^^~07/01/2015~
-~16116~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~
-~16116~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~
-~16116~^~268~^1836.^0^^~4~^~NC~^^^^^^^^^^~07/01/2015~
-~16116~^~301~^188.^0^^~1~^^^^^^^^^^^~12/01/1986~
-~16116~^~304~^369.^0^^~1~^^^^^^^^^^^~12/01/1986~
-~16116~^~305~^476.^0^^~1~^^^^^^^^^^^~12/01/1986~
-~16116~^~306~^2041.^0^^~1~^^^^^^^^^^^~12/01/1986~
-~16116~^~307~^12.^0^^~1~^^^^^^^^^^^~12/01/1986~
-~16116~^~318~^122.^0^^~4~^~NC~^^^^^^^^^^~04/01/2003~
-~16116~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2002~
-~16116~^~320~^6.^0^^~4~^~NC~^^^^^^^^^^~04/01/2003~
-~16116~^~321~^73.^0^^~4~^~BFSN~^~16115~^^^^^^^^^~02/01/2003~
-~16116~^~322~^0.^0^^~4~^~BFSN~^~16115~^^^^^^^^^~02/01/2003~
-~16116~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~
-~16116~^~334~^0.^0^^~4~^~BFSN~^~16115~^^^^^^^^^~02/01/2003~
-~16116~^~337~^0.^0^^~4~^~BFSN~^~16115~^^^^^^^^^~02/01/2003~
-~16116~^~338~^0.^0^^~4~^~BFSN~^~16115~^^^^^^^^^~02/01/2003~
-~16116~^~417~^227.^0^^~1~^^^^^^^^^^^~12/01/1986~
-~16116~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~
-~16116~^~432~^227.^0^^~1~^^^^^^^^^^^~04/01/2003~
-~16116~^~435~^227.^0^^~4~^~NC~^^^^^^^^^^~04/01/2003~
-~16116~^~601~^0.^0^^~1~^^^^^^^^^^^~12/01/1986~
-~16117~^~208~^327.^0^^~4~^~NC~^^^^^^^^^^~07/01/2015~
-~16117~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~
-~16117~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~
-~16117~^~268~^1367.^0^^~4~^~NC~^^^^^^^^^^~07/01/2015~
-~16117~^~301~^241.^17^27.^~1~^^^^^^^^^^^~01/01/2008~
-~16117~^~304~^290.^13^32.^~1~^^^^^^^^^^^~01/01/2008~
-~16117~^~305~^674.^11^^~1~^^^^^^^^^^^~01/01/2008~
-~16117~^~306~^2384.^13^243.^~1~^^^^^^^^^^^~01/01/2008~
-~16117~^~307~^20.^13^2.^~1~^^^^^^^^^^^~01/01/2008~
-~16117~^~318~^40.^0^^~4~^~NC~^^^^^^^^^^~01/01/2008~
-~16117~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2002~
-~16117~^~320~^2.^0^^~4~^~NC~^^^^^^^^^^~01/01/2008~
-~16117~^~321~^24.^0^^~4~^~O~^^^^^^^^^^~02/01/2003~
-~16117~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~
-~16117~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~
-~16117~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~
-~16117~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~
-~16117~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~
-~16117~^~417~^305.^7^^~1~^^^^^^^^^^^~12/01/1986~
-~16117~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~
-~16117~^~432~^305.^7^^~1~^^^^^^^^^^^~01/01/2008~
-~16117~^~435~^305.^0^^~4~^~NC~^^^^^^^^^^~01/01/2008~
-~16117~^~601~^0.^0^^~1~^^^^^^^^^^^~12/01/1986~
-~16118~^~208~^372.^0^^~4~^~NC~^^^^^^^^^^~07/01/2015~
-~16118~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~
-~16118~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~
-~16118~^~268~^1557.^0^^~4~^~NC~^^^^^^^^^^~07/01/2015~
-~16118~^~301~^285.^2^^~1~^~A~^^^1^270.^300.^1^^^^~01/01/2008~
-~16118~^~304~^285.^2^^~1~^~A~^^^1^270.^300.^1^^^^~01/01/2008~
-~16118~^~305~^675.^2^^~1~^~A~^^^1^660.^690.^1^^^^~01/01/2008~
-~16118~^~306~^2090.^2^^~1~^~A~^^^1^2040.^2140.^1^^^^~01/01/2008~
-~16118~^~307~^9.^2^^~1~^~A~^^^1^9.^9.^1^^^^~01/01/2008~
-~16118~^~318~^40.^0^^~4~^~NC~^^^^^^^^^^~01/01/2008~
-~16118~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2002~
-~16118~^~320~^2.^0^^~4~^~NC~^^^^^^^^^^~01/01/2008~
-~16118~^~321~^24.^0^^~4~^~O~^^^^^^^^^^~02/01/2003~
-~16118~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~
-~16118~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~
-~16118~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2003~
-~16118~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~
-~16118~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~
-~16118~^~417~^289.^0^^~4~^~BFNN~^~16117~^^^^^^^^^~01/01/2008~
-~16118~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~
-~16118~^~432~^289.^0^^~4~^~BFNN~^^^^^^^^^^~01/01/2008~
-~16118~^~435~^289.^0^^~4~^~NC~^^^^^^^^^^~01/01/2008~
-~16118~^~601~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2008~
-~16119~^~208~^337.^0^^~4~^~NC~^^^^^^^^^^~07/01/2015~
-~16119~^~268~^1409.^0^^~4~^~NC~^^^^^^^^^^~07/01/2015~
-~16119~^~301~^244.^10^38.^~1~^^^^^^^^^^^~12/01/1986~
-~16119~^~304~^306.^7^8.^~1~^^^^^^^^^^^~12/01/1986~
-~16119~^~305~^701.^8^16.^~1~^^^^^^^^^^^~12/01/1986~
-~16119~^~306~^2490.^7^79.^~1~^^^^^^^^^^^~12/01/1986~
-~16119~^~307~^3.^7^2.^~1~^^^^^^^^^^^~12/01/1986~
-~16119~^~318~^40.^0^^~1~^^^^^^^^^^^~12/01/1986~
-~16119~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2002~
-~16119~^~320~^2.^0^^~1~^^^^^^^^^^^~06/01/2002~
-~16119~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~
-~16119~^~417~^303.^0^^~1~^^^^^^^^^^^~12/01/1986~
-~16119~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~
-~16119~^~432~^303.^0^^~1~^^^^^^^^^^^~12/01/1986~
-~16119~^~435~^303.^0^^~4~^~NC~^^^^^^^^^^~01/01/2001~
-~16119~^~601~^0.^0^^~1~^^^^^^^^^^^~12/01/1986~
-~16120~^~208~^54.^0^^~4~^~NC~^^^^^^^^^^~08/01/2007~
-~16120~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2003~
-~16120~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2003~
-~16120~^~268~^226.^0^^~4~^~NC~^^^^^^^^^^~08/01/2007~
-~16120~^~301~^25.^14^6.^~6~^~JA~^^^2^16.^38.^3^5.^45.^~4~^~08/01/2007~
-~16120~^~304~^25.^9^0.^~6~^~JA~^^^2^25.^25.^1^22.^27.^~4~^~08/01/2007~
-~16120~^~305~^52.^10^2.^~6~^~JA~^^^2^51.^55.^1^19.^84.^~4~^~08/01/2007~
-~16120~^~306~^118.^14^22.^~6~^~JA~^^^2^58.^152.^3^44.^190.^~4~^~08/01/2007~
-~16120~^~307~^51.^14^4.^~6~^~JA~^^^2^39.^59.^3^36.^65.^~4~^~08/01/2007~
-~16120~^~318~^3.^0^^~4~^~NC~^^^^^^^^^^~08/01/2007~
-~16120~^~319~^0.^0^^~4~^~BFSN~^~16109~^^^^^^^^^~08/01/2007~
-~16120~^~320~^0.^0^^~4~^~NC~^^^^^^^^^^~08/01/2007~
-~16120~^~321~^2.^0^^~4~^~BFSN~^~16109~^^^^^^^^^~08/01/2007~
-~16120~^~322~^0.^0^^~4~^~BFSN~^~16109~^^^^^^^^^~08/01/2007~
-~16120~^~324~^0.^7^0.^~12~^~MA~^^^1^0.^0.^2^0.^0.^~4~^~08/01/2007~
-~16120~^~334~^0.^0^^~4~^~BFSN~^~16109~^^^^^^^^^~08/01/2007~
-~16120~^~337~^0.^0^^~4~^~BFSN~^~16109~^^^^^^^^^~08/01/2007~
-~16120~^~338~^0.^0^^~4~^~BFSN~^~16109~^^^^^^^^^~08/01/2007~
-~16120~^~417~^18.^12^3.^~6~^~JA~^^^2^10.^22.^2^1.^33.^~4~^~08/01/2007~
-~16120~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2004~
-~16120~^~432~^18.^12^3.^~6~^~JA~^^^2^10.^22.^2^1.^33.^^~08/01/2007~
-~16120~^~435~^18.^0^^~4~^~NC~^^^^^^^^^^~08/01/2007~
-~16120~^~601~^0.^7^0.^~12~^~MA~^^^1^0.^0.^2^0.^0.^~4~^~08/01/2007~
-~16121~^~208~^328.^0^^~4~^~NC~^^^^^^^^^^~07/01/2015~
-~16121~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~
-~16121~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~
-~16121~^~268~^1373.^0^^~4~^~NC~^^^^^^^^^^~07/01/2015~
-~16121~^~301~^363.^5^3.^~1~^^^^^^^^^^^~12/01/1986~
-~16121~^~304~^315.^5^7.^~1~^^^^^^^^^^^~12/01/1986~
-~16121~^~305~^839.^5^15.^~1~^^^^^^^^^^^~12/01/1986~
-~16121~^~306~^2202.^5^70.^~1~^^^^^^^^^^^~12/01/1986~
-~16121~^~307~^3.^2^^~1~^^^^^^^^^^^~12/01/1986~
-~16121~^~318~^0.^0^^~1~^~AS~^^^^^^^^^^~02/01/2003~
-~16121~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2002~
-~16121~^~320~^0.^0^^~1~^~AS~^^^^^^^^^^~02/01/2003~
-~16121~^~321~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~
-~16121~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~
-~16121~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~
-~16121~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~
-~16121~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~
-~16121~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~
-~16121~^~417~^340.^5^23.^~1~^^^^^^^^^^^~12/01/1986~
-~16121~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~
-~16121~^~432~^340.^5^23.^~1~^^^^^^^^^^^~12/01/1986~
-~16121~^~435~^340.^0^^~4~^~NC~^^^^^^^^^^~02/01/2003~
-~16121~^~601~^0.^0^^~1~^^^^^^^^^^^~12/01/1986~
-~16122~^~208~^335.^0^^~4~^~NC~^^^^^^^^^^~07/01/2015~
-~16122~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~
-~16122~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~
-~16122~^~268~^1401.^0^^~4~^~NC~^^^^^^^^^^~07/01/2015~
-~16122~^~301~^178.^176^6.^~1~^^^^^^^^^^^~12/01/1986~
-~16122~^~304~^39.^155^1.^~1~^^^^^^^^^^^~12/01/1986~
-~16122~^~305~^776.^163^7.^~1~^^^^^^^^^^^~12/01/1986~
-~16122~^~306~^81.^102^1.^~1~^^^^^^^^^^^~12/01/1986~
-~16122~^~307~^1005.^592^6.^~1~^^^^^^^^^^^~12/01/1986~
-~16122~^~318~^0.^0^^~1~^~AS~^^^^^^^^^^~04/01/2007~
-~16122~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2002~
-~16122~^~320~^0.^0^^~1~^~AS~^^^^^^^^^^~04/01/2007~
-~16122~^~321~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~
-~16122~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~
-~16122~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~
-~16122~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~
-~16122~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~
-~16122~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~
-~16122~^~417~^176.^112^3.^~1~^^^^^^^^^^^~12/01/1986~
-~16122~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~
-~16122~^~432~^176.^112^3.^~1~^^^^^^^^^^^~04/01/2007~
-~16122~^~435~^176.^0^^~4~^~NC~^^^^^^^^^^~04/01/2007~
-~16122~^~601~^0.^0^^~1~^^^^^^^^^^^~12/01/1986~
-~16123~^~208~^53.^0^^~4~^~NC~^^^^^^^^^^~07/01/2007~
-~16123~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2006~
-~16123~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2006~
-~16123~^~268~^222.^0^^~4~^~NC~^^^^^^^^^^~06/01/2012~
-~16123~^~301~^33.^6^0.^~1~^~A~^^^1^32.^34.^5^32.^33.^~2, 3~^~06/01/2012~
-~16123~^~304~^74.^6^0.^~1~^~A~^^^1^73.^74.^5^73.^74.^~2, 3~^~06/01/2012~
-~16123~^~305~^166.^6^0.^~1~^~A~^^^1^163.^168.^5^163.^167.^~2, 3~^~06/01/2012~
-~16123~^~306~^435.^6^3.^~1~^~A~^^^1^426.^449.^5^425.^445.^~2, 3~^~06/01/2012~
-~16123~^~307~^5493.^6^42.^~1~^~A~^^^1^5390.^5660.^5^5383.^5603.^~2, 3~^~06/01/2012~
-~16123~^~318~^0.^0^^~1~^~AS~^^^^^^^^^^~07/01/2007~
-~16123~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2002~
-~16123~^~320~^0.^0^^~1~^~AS~^^^^^^^^^^~07/01/2007~
-~16123~^~321~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~
-~16123~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~
-~16123~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~
-~16123~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~
-~16123~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~
-~16123~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~
-~16123~^~417~^14.^5^3.^~6~^~JA~^^^2^9.^16.^3^1.^26.^~2, 3~^~12/01/2003~
-~16123~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~07/01/2007~
-~16123~^~432~^14.^5^3.^~6~^~JA~^^^2^9.^16.^3^1.^26.^^~07/01/2007~
-~16123~^~435~^14.^0^^~4~^~NC~^^^^^^^^^^~07/01/2007~
-~16123~^~601~^0.^1^^~6~^~JA~^^^2^0.^0.^^^^^~12/01/2003~
-~16124~^~208~^60.^0^^~4~^~NC~^^^^^^^^^^~02/01/2003~
-~16124~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~
-~16124~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~
-~16124~^~268~^251.^0^^~4~^^^^^^^^^^^~04/01/2007~
-~16124~^~301~^20.^0^^~1~^^^^^^^^^^^~12/01/1986~
-~16124~^~304~^40.^0^^~1~^^^^^^^^^^^~12/01/1986~
-~16124~^~305~^130.^0^^~1~^^^^^^^^^^^~12/01/1986~
-~16124~^~306~^212.^0^^~1~^^^^^^^^^^^~12/01/1986~
-~16124~^~307~^5586.^0^^~1~^^^^^^^^^^^~12/01/1986~
-~16124~^~318~^0.^0^^~1~^~AS~^^^^^^^^^^~04/01/2007~
-~16124~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2002~
-~16124~^~320~^0.^0^^~1~^~AS~^^^^^^^^^^~04/01/2007~
-~16124~^~321~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~
-~16124~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~
-~16124~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~
-~16124~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~
-~16124~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~
-~16124~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~
-~16124~^~417~^18.^0^^~1~^^^^^^^^^^^~12/01/1986~
-~16124~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~
-~16124~^~432~^18.^0^^~1~^^^^^^^^^^^~04/01/2007~
-~16124~^~435~^18.^0^^~4~^~NC~^^^^^^^^^^~04/01/2007~
-~16124~^~601~^0.^0^^~1~^^^^^^^^^^^~12/01/1986~
-~16125~^~208~^60.^0^^~4~^~NC~^^^^^^^^^^~06/01/2012~
-~16125~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~
-~16125~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~
-~16125~^~268~^253.^0^^~4~^~NC~^^^^^^^^^^~04/01/2013~
-~16125~^~301~^17.^6^0.^~1~^~A~^^^1^16.^18.^5^16.^17.^~2, 3~^~06/01/2012~
-~16125~^~304~^29.^6^0.^~1~^~A~^^^1^28.^30.^5^27.^29.^~2, 3~^~06/01/2012~
-~16125~^~305~^94.^6^2.^~1~^~A~^^^1^87.^103.^5^88.^99.^~2, 3~^~06/01/2012~
-~16125~^~306~^447.^6^5.^~1~^~A~^^^1^427.^464.^5^431.^461.^~2, 3~^~06/01/2012~
-~16125~^~307~^6820.^6^35.^~1~^~A~^^^1^6650.^6900.^5^6727.^6912.^~2, 3~^~06/01/2012~
-~16125~^~318~^0.^0^^~1~^^^^^^^^^^^~04/01/2007~
-~16125~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2002~
-~16125~^~320~^0.^0^^~1~^~AS~^^^^^^^^^^~04/01/2007~
-~16125~^~321~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~
-~16125~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~
-~16125~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~
-~16125~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~
-~16125~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~
-~16125~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~
-~16125~^~417~^13.^0^^~1~^^^^^^^^^^^~12/01/1986~
-~16125~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~
-~16125~^~432~^13.^0^^~1~^^^^^^^^^^^~04/01/2007~
-~16125~^~435~^13.^0^^~4~^~NC~^^^^^^^^^^~04/01/2007~
-~16125~^~601~^0.^0^^~1~^^^^^^^^^^^~12/01/1986~
-~16126~^~208~^78.^0^^~4~^~NC~^^^^^^^^^^~08/01/2015~
-~16126~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2006~
-~16126~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2006~
-~16126~^~268~^326.^0^^~4~^~NC~^^^^^^^^^^~08/01/2015~
-~16126~^~301~^201.^7^26.^~1~^~A~^^^2^127.^306.^4^127.^273.^~2, 3~^~12/01/2003~
-~16126~^~304~^37.^5^1.^~1~^~A~^^^2^32.^46.^4^31.^42.^~2, 3~^~12/01/2003~
-~16126~^~305~^121.^6^5.^~1~^~A~^^^2^92.^147.^4^104.^137.^~2, 3~^~12/01/2003~
-~16126~^~306~^148.^7^8.^~1~^~A~^^^2^99.^176.^4^123.^172.^~2, 3~^~12/01/2003~
-~16126~^~307~^12.^7^3.^~1~^~A~^^^2^3.^30.^4^1.^22.^~2, 3~^~12/01/2003~
-~16126~^~318~^0.^0^^~1~^~AS~^^^^^^^^^^~09/01/2015~
-~16126~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2002~
-~16126~^~320~^0.^0^^~1~^~AS~^^^^^^^^^^~03/01/2006~
-~16126~^~321~^0.^2^^~1~^~A~^^^^^^^^^^~07/01/2003~
-~16126~^~322~^0.^2^^~1~^~A~^^^^^^^^^^~07/01/2003~
-~16126~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~
-~16126~^~334~^0.^2^^~1~^~A~^^^^^^^^^^~07/01/2003~
-~16126~^~337~^0.^0^^~4~^~BFSN~^~16127~^^^^^^^^^~03/01/2006~
-~16126~^~338~^0.^0^^~4~^~BFSN~^~16127~^^^^^^^^^~12/01/2003~
-~16126~^~417~^19.^6^3.^~1~^~A~^^^2^8.^33.^4^9.^28.^~2, 3~^~12/01/2003~
-~16126~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~
-~16126~^~432~^19.^6^3.^~1~^~A~^^^2^8.^33.^4^9.^28.^^~03/01/2006~
-~16126~^~435~^19.^0^^~4~^~NC~^^^^^^^^^^~03/01/2006~
-~16126~^~601~^0.^0^^~1~^^^^^^^^^^^~12/01/1986~
-~16127~^~208~^61.^0^^~4~^~NC~^^^^^^^^^^~03/01/2006~
-~16127~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~
-~16127~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~
-~16127~^~268~^253.^0^^~4~^~NC~^^^^^^^^^^~07/01/2015~
-~16127~^~301~^111.^5^8.^~1~^~A~^^^^^^^^^^~11/01/1997~
-~16127~^~304~^27.^4^2.^~1~^~A~^^^^^^^^^^~11/01/1997~
-~16127~^~305~^92.^4^6.^~1~^~A~^^^^^^^^^^~11/01/1997~
-~16127~^~306~^120.^5^20.^~1~^~A~^^^^^^^^^^~11/01/1997~
-~16127~^~307~^8.^5^1.^~1~^~A~^^^^^^^^^^~11/01/1997~
-~16127~^~318~^7.^0^^~4~^~NC~^^^^^^^^^^~03/01/2006~
-~16127~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2002~
-~16127~^~320~^0.^0^^~4~^~NC~^^^^^^^^^^~03/01/2006~
-~16127~^~321~^4.^0^^~4~^~O~^^^^^^^^^^~02/01/2003~
-~16127~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~
-~16127~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~
-~16127~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~
-~16127~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2003~
-~16127~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~
-~16127~^~417~^44.^4^1.^~1~^~A~^^^^^^^^^^~11/01/1997~
-~16127~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~
-~16127~^~432~^44.^4^1.^~1~^~A~^^^^^^^^^^~03/01/2006~
-~16127~^~435~^44.^0^^~4~^~NC~^^^^^^^^^^~03/01/2006~
-~16127~^~601~^0.^0^^~7~^~Z~^^^^^^^^^^~12/01/1986~
-~16128~^~208~^477.^0^^~4~^~NC~^^^^^^^^^^~07/01/2015~
-~16128~^~268~^1995.^0^^~4~^~NC~^^^^^^^^^^~07/01/2015~
-~16128~^~301~^364.^1^^~1~^^^^^^^^^^^~12/01/1986~
-~16128~^~304~^59.^1^^~1~^^^^^^^^^^^~12/01/1986~
-~16128~^~305~^483.^1^^~1~^^^^^^^^^^^~12/01/1986~
-~16128~^~306~^20.^1^^~1~^^^^^^^^^^^~12/01/1986~
-~16128~^~307~^6.^1^^~1~^^^^^^^^^^^~12/01/1986~
-~16128~^~318~^518.^0^^~1~^^^^^^^^^^^~12/01/1986~
-~16128~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2002~
-~16128~^~320~^26.^0^^~1~^^^^^^^^^^^~06/01/2002~
-~16128~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~
-~16128~^~417~^92.^0^^~1~^^^^^^^^^^^~12/01/1986~
-~16128~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~
-~16128~^~432~^92.^0^^~1~^^^^^^^^^^^~12/01/1986~
-~16128~^~435~^92.^0^^~4~^~NC~^^^^^^^^^^~01/01/2001~
-~16128~^~601~^0.^0^^~1~^^^^^^^^^^^~12/01/1986~
-~16129~^~208~^270.^0^^~4~^~NC~^^^^^^^^^^~07/01/2015~
-~16129~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~
-~16129~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~
-~16129~^~268~^1131.^0^^~4~^~NC~^^^^^^^^^^~07/01/2015~
-~16129~^~301~^372.^2^^~1~^^^^^^^^^^^~12/01/1986~
-~16129~^~304~^60.^1^^~1~^^^^^^^^^^^~12/01/1986~
-~16129~^~305~^287.^2^^~1~^^^^^^^^^^^~12/01/1986~
-~16129~^~306~^146.^1^^~1~^^^^^^^^^^^~12/01/1986~
-~16129~^~307~^16.^1^^~1~^^^^^^^^^^^~12/01/1986~
-~16129~^~318~^27.^0^^~4~^~NC~^^^^^^^^^^~04/01/2007~
-~16129~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2002~
-~16129~^~320~^1.^0^^~4~^~NC~^^^^^^^^^^~04/01/2007~
-~16129~^~321~^16.^0^^~4~^~BFSN~^~16127~^^^^^^^^^~02/01/2003~
-~16129~^~322~^0.^0^^~4~^~BFSN~^~16127~^^^^^^^^^~02/01/2003~
-~16129~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~
-~16129~^~334~^0.^0^^~4~^~BFSN~^~16127~^^^^^^^^^~02/01/2003~
-~16129~^~337~^0.^0^^~4~^~BFSN~^~16127~^^^^^^^^^~02/01/2003~
-~16129~^~338~^0.^0^^~4~^~BFSN~^~16127~^^^^^^^^^~02/01/2003~
-~16129~^~417~^27.^0^^~1~^^^^^^^^^^^~12/01/1986~
-~16129~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~
-~16129~^~432~^27.^0^^~1~^^^^^^^^^^^~04/01/2007~
-~16129~^~435~^27.^0^^~4~^~NC~^^^^^^^^^^~04/01/2007~
-~16129~^~601~^0.^0^^~1~^^^^^^^^^^^~12/01/1986~
-~16130~^~208~^76.^0^^~4~^~NC~^^^^^^^^^^~07/01/2015~
-~16130~^~268~^320.^0^^~4~^~NC~^^^^^^^^^^~07/01/2015~
-~16130~^~301~^80.^1^^~1~^^^^^^^^^^^~12/01/1986~
-~16130~^~304~^26.^1^^~1~^^^^^^^^^^^~12/01/1986~
-~16130~^~305~^60.^1^^~1~^^^^^^^^^^^~12/01/1986~
-~16130~^~306~^213.^1^^~1~^^^^^^^^^^^~12/01/1986~
-~16130~^~307~^9.^1^^~1~^^^^^^^^^^^~12/01/1986~
-~16130~^~318~^0.^1^^~1~^^^^^^^^^^^~12/01/1986~
-~16130~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2002~
-~16130~^~320~^0.^1^^~1~^^^^^^^^^^^~06/01/2002~
-~16130~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~
-~16130~^~417~^26.^0^^~4~^^^^^^^^^^^~12/01/1986~
-~16130~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~
-~16130~^~432~^26.^0^^~4~^^^^^^^^^^^~12/01/1986~
-~16130~^~435~^26.^0^^~4~^~NC~^^^^^^^^^^~01/01/2001~
-~16130~^~601~^0.^0^^~1~^^^^^^^^^^^~12/01/1986~
-~16132~^~208~^116.^0^^~4~^~NC~^^^^^^^^^^~12/01/1986~
-~16132~^~268~^484.^0^^~4~^~NC~^^^^^^^^^^~07/01/2015~
-~16132~^~301~^46.^1^^~1~^^^^^^^^^^^~12/01/1986~
-~16132~^~304~^52.^1^^~1~^^^^^^^^^^^~12/01/1986~
-~16132~^~305~^73.^1^^~1~^^^^^^^^^^^~12/01/1986~
-~16132~^~306~^75.^1^^~1~^^^^^^^^^^^~12/01/1986~
-~16132~^~307~^2873.^1^^~1~^^^^^^^^^^^~12/01/1986~
-~16132~^~318~^0.^0^^~1~^~AS~^^^^^^^^^^~05/01/2005~
-~16132~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2002~
-~16132~^~320~^0.^0^^~1~^~AS~^^^^^^^^^^~05/01/2005~
-~16132~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~
-~16132~^~417~^29.^0^^~4~^^^^^^^^^^^~12/01/1986~
-~16132~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~
-~16132~^~432~^29.^0^^~4~^^^^^^^^^^^~12/01/1986~
-~16132~^~435~^29.^0^^~4~^~NC~^^^^^^^^^^~05/01/2005~
-~16132~^~601~^0.^0^^~1~^^^^^^^^^^^~12/01/1986~
-~16133~^~208~^347.^0^^~4~^~NC~^^^^^^^^^^~12/01/1986~
-~16133~^~268~^1452.^0^^~4~^^^^^^^^^^^
-~16133~^~301~^138.^4^12.^~1~^^^^^^^^^^^~12/01/1986~
-~16133~^~304~^338.^4^23.^~1~^^^^^^^^^^^~12/01/1986~
-~16133~^~305~^559.^4^24.^~1~^^^^^^^^^^^~12/01/1986~
-~16133~^~306~^1157.^0^^~1~^^^^^^^^^^^~12/01/1986~
-~16133~^~307~^17.^0^^~1~^^^^^^^^^^^~12/01/1986~
-~16133~^~318~^52.^0^^~1~^^^^^^^^^^^~12/01/1986~
-~16133~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2002~
-~16133~^~320~^3.^0^^~1~^^^^^^^^^^^~06/01/2002~
-~16133~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~
-~16133~^~417~^658.^0^^~1~^^^^^^^^^^^~12/01/1986~
-~16133~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~
-~16133~^~432~^658.^0^^~1~^^^^^^^^^^^~12/01/1986~
-~16133~^~435~^658.^0^^~4~^~NC~^^^^^^^^^^~01/01/2001~
-~16133~^~601~^0.^0^^~1~^^^^^^^^^^^~12/01/1986~
-~16134~^~208~^118.^0^^~4~^~NC~^^^^^^^^^^~12/01/1986~
-~16134~^~268~^494.^0^^~4~^^^^^^^^^^^~05/01/2005~
-~16134~^~301~^42.^0^^~1~^^^^^^^^^^^~12/01/1986~
-~16134~^~304~^98.^0^^~1~^^^^^^^^^^^~12/01/1986~
-~16134~^~305~^181.^0^^~1~^^^^^^^^^^^~12/01/1986~
-~16134~^~306~^315.^0^^~1~^^^^^^^^^^^~12/01/1986~
-~16134~^~307~^5.^0^^~1~^^^^^^^^^^^~12/01/1986~
-~16134~^~318~^0.^0^^~1~^~AS~^^^^^^^^^^~05/01/2005~
-~16134~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2002~
-~16134~^~320~^0.^0^^~1~^~AS~^^^^^^^^^^~05/01/2005~
-~16134~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~
-~16134~^~417~^146.^0^^~1~^^^^^^^^^^^~12/01/1986~
-~16134~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~
-~16134~^~432~^146.^0^^~1~^^^^^^^^^^^~12/01/1986~
-~16134~^~435~^146.^0^^~4~^~NC~^^^^^^^^^^~05/01/2005~
-~16134~^~601~^0.^0^^~1~^^^^^^^^^^^~12/01/1986~
-~16135~^~208~^409.^0^^~4~^~NC~^^^^^^^^^^~12/01/1986~
-~16135~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~11/01/2011~
-~16135~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~11/01/2011~
-~16135~^~268~^1711.^0^^~4~^^^^^^^^^^^
-~16135~^~301~^440.^48^24.^~1~^^^^^^^^^^^~12/01/1986~
-~16135~^~304~^179.^43^5.^~1~^^^^^^^^^^^~12/01/1986~
-~16135~^~305~^451.^48^12.^~1~^^^^^^^^^^^~12/01/1986~
-~16135~^~306~^977.^30^45.^~1~^^^^^^^^^^^~12/01/1986~
-~16135~^~307~^38.^30^1.^~1~^^^^^^^^^^^~12/01/1986~
-~16135~^~318~^0.^0^^~1~^^^^^^^^^^^~12/01/1986~
-~16135~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2002~
-~16135~^~320~^0.^0^^~1~^~AS~^^^^^^^^^^~06/01/2002~
-~16135~^~321~^0.^0^^~7~^~Z~^^^^^^^^^^~11/01/2011~
-~16135~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~11/01/2011~
-~16135~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~
-~16135~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~11/01/2011~
-~16135~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~11/01/2011~
-~16135~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~11/01/2011~
-~16135~^~417~^45.^0^^~1~^^^^^^^^^^^~12/01/1986~
-~16135~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~
-~16135~^~432~^45.^0^^~1~^^^^^^^^^^^~12/01/1986~
-~16135~^~435~^45.^0^^~4~^~NC~^^^^^^^^^^~01/01/2001~
-~16135~^~601~^0.^0^^~7~^~Z~^^^^^^^^^^~11/01/2011~
-~16136~^~208~^147.^0^^~4~^~NC~^^^^^^^^^^~12/01/1986~
-~16136~^~268~^615.^0^^~4~^^^^^^^^^^^~02/01/2010~
-~16136~^~301~^142.^0^^~1~^^^^^^^^^^^~12/01/1986~
-~16136~^~304~^54.^0^^~1~^^^^^^^^^^^~12/01/1986~
-~16136~^~305~^153.^0^^~1~^^^^^^^^^^^~12/01/1986~
-~16136~^~306~^280.^0^^~1~^^^^^^^^^^^~12/01/1986~
-~16136~^~307~^13.^0^^~1~^^^^^^^^^^^~12/01/1986~
-~16136~^~318~^0.^0^^~1~^^^^^^^^^^^~12/01/1986~
-~16136~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2002~
-~16136~^~320~^0.^0^^~1~^^^^^^^^^^^~06/01/2002~
-~16136~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~
-~16136~^~417~^10.^0^^~1~^^^^^^^^^^^~12/01/1986~
-~16136~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~
-~16136~^~432~^10.^0^^~1~^^^^^^^^^^^~12/01/1986~
-~16136~^~435~^10.^0^^~4~^~NC~^^^^^^^^^^~02/01/2010~
-~16136~^~601~^0.^0^^~1~^^^^^^^^^^^~12/01/1986~
-~16137~^~208~^177.^0^^~4~^~NC~^^^^^^^^^^~04/01/2007~
-~16137~^~262~^0.^0^^~4~^~RA~^^^^^^^^^^~02/01/2003~
-~16137~^~263~^0.^0^^~4~^~RA~^^^^^^^^^^~02/01/2003~
-~16137~^~268~^742.^0^^~4~^~NC~^^^^^^^^^^~04/01/2007~
-~16137~^~301~^49.^0^^~4~^~RA~^^^^^^^^^^~04/01/2007~
-~16137~^~304~^29.^0^^~4~^~RA~^^^^^^^^^^~04/01/2007~
-~16137~^~305~^110.^0^^~4~^~RA~^^^^^^^^^^~02/01/2003~
-~16137~^~306~^173.^0^^~4~^~RA~^^^^^^^^^^~04/01/2007~
-~16137~^~307~^242.^0^^~4~^~RA~^^^^^^^^^^~04/01/2007~
-~16137~^~318~^5.^0^^~4~^~NC~^^^^^^^^^^~04/01/2007~
-~16137~^~319~^0.^0^^~4~^~RA~^^^^^^^^^^~02/01/2003~
-~16137~^~320~^0.^0^^~4~^~NC~^^^^^^^^^^~04/01/2007~
-~16137~^~321~^2.^0^^~4~^~RA~^^^^^^^^^^~04/01/2007~
-~16137~^~322~^0.^0^^~4~^~RA~^^^^^^^^^^~02/01/2003~
-~16137~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~
-~16137~^~334~^2.^0^^~4~^~RA~^^^^^^^^^^~02/01/2003~
-~16137~^~337~^0.^0^^~4~^~RA~^^^^^^^^^^~02/01/2003~
-~16137~^~338~^1.^0^^~4~^~RA~^^^^^^^^^^~04/01/2007~
-~16137~^~417~^59.^0^^~4~^~RA~^^^^^^^^^^~02/01/2003~
-~16137~^~431~^0.^0^^~4~^~RA~^^^^^^^^^^~02/01/2003~
-~16137~^~432~^59.^0^^~4~^~RA~^^^^^^^^^^~02/01/2003~
-~16137~^~435~^59.^0^^~4~^~NC~^^^^^^^^^^~04/01/2007~
-~16137~^~601~^0.^0^^~4~^~RA~^^^^^^^^^^~02/01/2003~
-~16137~^~636~^11.^0^^~4~^~RA~^^^^^^^^^^~02/01/2003~
-~16138~^~208~^333.^0^^~4~^~NC~^^^^^^^^^^~12/01/1986~
-~16138~^~268~^1393.^0^^~4~^^^^^^^^^^^
-~16138~^~301~^54.^0^^~1~^^^^^^^^^^^~12/01/1986~
-~16138~^~304~^82.^0^^~1~^^^^^^^^^^^~12/01/1986~
-~16138~^~305~^192.^0^^~1~^^^^^^^^^^^~12/01/1986~
-~16138~^~306~^585.^0^^~1~^^^^^^^^^^^~12/01/1986~
-~16138~^~307~^294.^0^^~1~^^^^^^^^^^^~12/01/1986~
-~16138~^~318~^13.^0^^~1~^^^^^^^^^^^~12/01/1986~
-~16138~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2002~
-~16138~^~320~^1.^0^^~1~^^^^^^^^^^^~06/01/2002~
-~16138~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~
-~16138~^~417~^93.^0^^~4~^~RA~^^^^^^^^^^~10/01/1997~
-~16138~^~431~^15.^0^^~4~^~NC~^^^^^^^^^^~05/01/2000~
-~16138~^~432~^78.^0^^~1~^^^^^^^^^^^~12/01/1986~
-~16138~^~435~^104.^0^^~4~^~NC~^^^^^^^^^^~01/01/2001~
-~16138~^~601~^0.^0^^~1~^^^^^^^^^^^~12/01/1986~
-~16139~^~208~^43.^0^^~4~^~NC~^^^^^^^^^^~08/01/2007~
-~16139~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2004~
-~16139~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2004~
-~16139~^~268~^181.^0^^~4~^~NC~^^^^^^^^^^~08/01/2007~
-~16139~^~301~^123.^15^0.^~12~^~MA~^^^1^123.^123.^5^123.^123.^~4~^~08/01/2007~
-~16139~^~304~^15.^8^6.^~12~^~MA~^^^1^0.^16.^4^-4.^34.^~4~^~08/01/2007~
-~16139~^~305~^43.^7^39.^~12~^~MA~^^^1^0.^103.^3^-81.^168.^~4~^~08/01/2007~
-~16139~^~306~^122.^15^6.^~12~^~MA~^^^1^111.^132.^5^106.^138.^~4~^~08/01/2007~
-~16139~^~307~^47.^15^12.^~12~^~MA~^^^1^31.^68.^5^14.^80.^~4~^~08/01/2007~
-~16139~^~318~^185.^0^^~4~^~NC~^^^^^^^^^^~02/01/2009~
-~16139~^~319~^55.^0^^~4~^~O~^^^^^^^^^^~08/01/2007~
-~16139~^~320~^55.^0^^~4~^~NC~^^^^^^^^^^~02/01/2009~
-~16139~^~321~^2.^0^^~4~^~BFZN~^~16120~^^^^^^^^^~08/01/2007~
-~16139~^~322~^0.^0^^~4~^~BFZN~^~16120~^^^^^^^^^~08/01/2007~
-~16139~^~324~^43.^15^6.^~12~^~MA~^^^1^33.^56.^5^26.^60.^~4~^~08/01/2007~
-~16139~^~334~^0.^0^^~4~^~BFZN~^~16120~^^^^^^^^^~08/01/2007~
-~16139~^~337~^0.^0^^~4~^~BFZN~^~16120~^^^^^^^^^~08/01/2007~
-~16139~^~338~^0.^0^^~4~^~BFZN~^~16120~^^^^^^^^^~08/01/2007~
-~16139~^~417~^9.^15^9.^~12~^~MA~^^^1^7.^37.^5^-16.^34.^~4~^~08/01/2007~
-~16139~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2007~
-~16139~^~432~^9.^15^9.^~12~^~MA~^^^1^7.^37.^5^-16.^34.^^~08/01/2007~
-~16139~^~435~^9.^0^^~4~^~NC~^^^^^^^^^^~05/01/2009~
-~16139~^~601~^0.^15^0.^~12~^~MA~^^^1^0.^0.^5^0.^0.^~4~^~08/01/2007~
-~16144~^~208~^358.^0^^~4~^~NC~^^^^^^^^^^~04/01/2014~
-~16144~^~268~^1498.^0^^~4~^~NC~^^^^^^^^^^~04/01/2014~
-~16144~^~301~^48.^12^2.^~1~^~A~^^^2^26.^71.^10^41.^53.^~2, 3~^~04/01/2014~
-~16144~^~304~^59.^12^1.^~1~^~A~^^^2^41.^77.^9^55.^63.^~2, 3~^~04/01/2014~
-~16144~^~305~^294.^2^^~1~^~A~^^^^^^^^^^~12/01/1996~
-~16144~^~306~^668.^12^22.^~1~^~A~^^^2^554.^916.^8^614.^720.^~2, 3~^~04/01/2014~
-~16144~^~307~^7.^2^^~1~^~A~^^^^^^^^^^~12/01/1996~
-~16144~^~318~^58.^2^^~1~^~A~^^^^^^^^^^~07/01/2003~
-~16144~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2002~
-~16144~^~320~^3.^0^^~1~^~AS~^^^^^^^^^^~07/01/2003~
-~16144~^~321~^35.^2^^~1~^~A~^^^^^^^^^^~07/01/2003~
-~16144~^~322~^0.^2^^~1~^~A~^^^^^^^^^^~07/01/2003~
-~16144~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~
-~16144~^~334~^0.^2^^~1~^~A~^^^^^^^^^^~07/01/2003~
-~16144~^~417~^204.^2^^~1~^~A~^^^^^^^^^^~12/01/1996~
-~16144~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~
-~16144~^~432~^204.^2^^~1~^~A~^^^^^^^^^^~07/01/2003~
-~16144~^~435~^204.^0^^~4~^~NC~^^^^^^^^^^~07/01/2003~
-~16144~^~601~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/1997~
-~16144~^~636~^57.^1^^~1~^~A~^^^^^^^^^^~01/01/1997~
-~16144~^~638~^4.^1^^~1~^~A~^^^^^^^^^^~01/01/1997~
-~16144~^~639~^6.^1^^~1~^~A~^^^^^^^^^^~01/01/1997~
-~16144~^~641~^47.^1^^~1~^~A~^^^^^^^^^^~01/01/1997~
-~16145~^~208~^124.^0^^~4~^~NC~^^^^^^^^^^~04/01/2011~
-~16145~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2011~
-~16145~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2011~
-~16145~^~268~^519.^0^^~4~^~NC~^^^^^^^^^^~04/01/2011~
-~16145~^~301~^57.^4^4.^~1~^~A~^^^1^44.^63.^3^43.^69.^~2, 3~^~04/01/2011~
-~16145~^~304~^30.^4^0.^~1~^~A~^^^1^28.^32.^3^27.^32.^~2, 3~^~04/01/2011~
-~16145~^~305~^121.^4^3.^~1~^~A~^^^1^109.^126.^3^108.^132.^~2, 3~^~04/01/2011~
-~16145~^~306~^277.^4^6.^~1~^~A~^^^1^259.^287.^3^257.^295.^~2, 3~^~04/01/2011~
-~16145~^~307~^231.^4^28.^~1~^~A~^^^1^179.^298.^3^140.^320.^~2, 3~^~04/01/2011~
-~16145~^~321~^0.^0^^~4~^~BFSN~^~16034~^^^^^^^^^~04/01/2011~
-~16145~^~322~^0.^0^^~4~^~BFSN~^~16034~^^^^^^^^^~04/01/2011~
-~16145~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2011~
-~16145~^~334~^0.^0^^~4~^~BFSN~^~16034~^^^^^^^^^~04/01/2011~
-~16145~^~337~^0.^0^^~4~^~BFSN~^~16034~^^^^^^^^^~04/01/2011~
-~16145~^~338~^0.^0^^~4~^~BFSN~^~16034~^^^^^^^^^~04/01/2011~
-~16145~^~417~^28.^0^^~1~^~A~^^^^^^^^^^~04/01/2011~
-~16145~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2011~
-~16145~^~432~^28.^0^^~1~^~A~^^^^^^^^^^~04/01/2011~
-~16145~^~435~^28.^0^^~4~^~NC~^^^^^^^^^^~04/01/2011~
-~16145~^~601~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2011~
-~16146~^~208~^114.^0^^~4~^~NC~^^^^^^^^^^~04/01/2011~
-~16146~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2011~
-~16146~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2011~
-~16146~^~268~^475.^0^^~4~^~NC~^^^^^^^^^^~04/01/2011~
-~16146~^~301~^63.^4^8.^~1~^~A~^^^1^40.^77.^3^34.^90.^~2, 3~^~04/01/2011~
-~16146~^~304~^32.^4^2.^~1~^~A~^^^1^27.^36.^3^25.^38.^~2, 3~^~04/01/2011~
-~16146~^~305~^101.^4^6.^~1~^~A~^^^1^81.^108.^3^80.^122.^~2, 3~^~04/01/2011~
-~16146~^~306~^274.^4^18.^~1~^~A~^^^1^220.^301.^3^215.^331.^~2, 3~^~04/01/2011~
-~16146~^~307~^239.^4^15.^~1~^~A~^^^1^211.^278.^3^189.^287.^~2, 3~^~04/01/2011~
-~16146~^~321~^0.^0^^~4~^~BFSN~^~16044~^^^^^^^^^~04/01/2011~
-~16146~^~322~^0.^0^^~4~^~BFSN~^~16044~^^^^^^^^^~04/01/2011~
-~16146~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2011~
-~16146~^~334~^0.^0^^~4~^~BFSN~^~16044~^^^^^^^^^~04/01/2011~
-~16146~^~337~^0.^0^^~4~^~BFSN~^~16044~^^^^^^^^^~04/01/2011~
-~16146~^~338~^0.^0^^~4~^~BFSN~^~16044~^^^^^^^^^~04/01/2011~
-~16146~^~417~^24.^0^^~1~^~A~^^^^^^^^^^~04/01/2011~
-~16146~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2011~
-~16146~^~432~^24.^0^^~1~^~A~^^^^^^^^^^~04/01/2011~
-~16146~^~435~^24.^0^^~4~^~NC~^^^^^^^^^^~04/01/2011~
-~16146~^~601~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2011~
-~16147~^~208~^177.^0^^~4~^~NC~^^^^^^^^^^~04/01/2007~
-~16147~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2005~
-~16147~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2005~
-~16147~^~268~^739.^0^^~4~^~NC~^^^^^^^^^^~04/01/2007~
-~16147~^~301~^136.^4^19.^~1~^~A~^^^1^103.^190.^3^74.^197.^~2, 3~^~02/01/2005~
-~16147~^~304~^56.^4^8.^~1~^~A~^^^1^41.^79.^3^29.^81.^~2, 3~^~02/01/2005~
-~16147~^~305~^206.^4^22.^~1~^~A~^^^1^169.^268.^3^133.^277.^~2, 3~^~02/01/2005~
-~16147~^~306~^333.^4^65.^~1~^~A~^^^1^225.^499.^3^125.^539.^~2, 3~^~02/01/2005~
-~16147~^~307~^569.^4^59.^~1~^~A~^^^1^450.^731.^3^380.^756.^~2, 3~^~02/01/2005~
-~16147~^~318~^16.^0^^~4~^~NC~^^^^^^^^^^~08/01/2007~
-~16147~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2007~
-~16147~^~320~^1.^0^^~4~^~NC~^^^^^^^^^^~08/01/2007~
-~16147~^~321~^10.^0^^~4~^~BFSN~^~16117~^^^^^^^^^~04/01/2007~
-~16147~^~322~^0.^0^^~4~^~BFSN~^~16117~^^^^^^^^^~04/01/2007~
-~16147~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~
-~16147~^~334~^0.^0^^~4~^~BFSN~^~16117~^^^^^^^^^~04/01/2007~
-~16147~^~337~^0.^0^^~4~^~BFSN~^~16117~^^^^^^^^^~04/01/2007~
-~16147~^~338~^0.^0^^~4~^~BFSN~^~16117~^^^^^^^^^~04/01/2007~
-~16147~^~417~^124.^0^^~4~^~BFSN~^~16117~^^^^^^^^^~04/01/2007~
-~16147~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2007~
-~16147~^~432~^124.^0^^~4~^~BFSN~^^^^^^^^^^~04/01/2007~
-~16147~^~435~^124.^0^^~4~^~NC~^^^^^^^^^^~08/01/2007~
-~16147~^~601~^5.^4^2.^~1~^~A~^^^1^1.^10.^3^-1.^11.^~2, 3~^~02/01/2005~
-~16149~^~208~^650.^0^^~4~^~NC~^^^^^^^^^^~04/01/2007~
-~16149~^~262~^0.^0^^~4~^~BFFN~^~16097~^^^^^^^^^~04/01/2007~
-~16149~^~263~^0.^0^^~4~^~BFFN~^~16097~^^^^^^^^^~04/01/2007~
-~16149~^~268~^2720.^0^^~4~^~NC~^^^^^^^^^^~04/01/2007~
-~16149~^~301~^72.^2^^~9~^~MC~^^^1^71.^73.^1^^^^~05/01/2006~
-~16149~^~304~^164.^2^^~9~^~MC~^^^1^163.^165.^1^^^^~05/01/2006~
-~16149~^~305~^350.^0^^~4~^~BFFN~^~16097~^^^^^^^^^~05/01/2006~
-~16149~^~306~^818.^0^^~4~^~BFFN~^~16097~^^^^^^^^^~05/01/2006~
-~16149~^~307~^292.^0^^~8~^~LC~^^^^^^^^^^~05/01/2015~
-~16149~^~318~^0.^2^^~9~^~MC~^^^1^0.^0.^^^^^~05/01/2015~
-~16149~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2006~
-~16149~^~320~^0.^0^^~4~^~NC~^^^^^^^^^^~04/01/2007~
-~16149~^~321~^0.^0^^~4~^~BFFN~^~16097~^^^^^^^^^~04/01/2007~
-~16149~^~322~^0.^0^^~4~^~BFFN~^~16097~^^^^^^^^^~04/01/2007~
-~16149~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2009~
-~16149~^~334~^0.^0^^~4~^~BFFN~^~16097~^^^^^^^^^~04/01/2007~
-~16149~^~337~^0.^0^^~4~^~BFFN~^~16097~^^^^^^^^^~04/01/2007~
-~16149~^~338~^0.^0^^~4~^~BFFN~^~16097~^^^^^^^^^~04/01/2007~
-~16149~^~417~^144.^2^^~9~^~MC~^^^1^144.^144.^1^^^^~05/01/2006~
-~16149~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2006~
-~16149~^~432~^144.^2^^~9~^~MC~^^^^^^^^^^~04/01/2007~
-~16149~^~435~^144.^0^^~4~^~NC~^^^^^^^^^^~04/01/2007~
-~16149~^~601~^0.^2^^~9~^~MC~^^^1^0.^0.^^^^^~05/01/2006~
-~16150~^~208~^520.^0^^~4~^~NC~^^^^^^^^^^~04/01/2007~
-~16150~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~
-~16150~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~
-~16150~^~268~^2174.^0^^~4~^~NC~^^^^^^^^^^~04/01/2007~
-~16150~^~301~^35.^0^^~1~^^^^^^^^^^^~04/01/2007~
-~16150~^~304~^170.^0^^~1~^^^^^^^^^^^~04/01/2007~
-~16150~^~305~^369.^0^^~4~^^^^^^^^^^^~04/01/2007~
-~16150~^~306~^669.^0^^~4~^^^^^^^^^^^~04/01/2007~
-~16150~^~307~^540.^0^^~1~^^^^^^^^^^^~04/01/2007~
-~16150~^~318~^0.^0^^~4~^~NC~^^^^^^^^^^~04/01/2007~
-~16150~^~319~^0.^0^^~4~^~BFSN~^~16098~^^^^^^^^^~04/01/2007~
-~16150~^~320~^0.^0^^~4~^~NC~^^^^^^^^^^~02/01/2010~
-~16150~^~321~^0.^0^^~4~^~BFSN~^~16098~^^^^^^^^^~02/01/2003~
-~16150~^~322~^0.^0^^~4~^~BFSN~^~16098~^^^^^^^^^~02/01/2003~
-~16150~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~
-~16150~^~334~^0.^0^^~4~^~BFSN~^~16098~^^^^^^^^^~02/01/2003~
-~16150~^~337~^0.^0^^~4~^~BFSN~^~16098~^^^^^^^^^~02/01/2003~
-~16150~^~338~^0.^0^^~4~^~BFSN~^~16098~^^^^^^^^^~02/01/2003~
-~16150~^~417~^60.^0^^~1~^^^^^^^^^^^~04/01/2007~
-~16150~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~
-~16150~^~432~^60.^0^^~1~^^^^^^^^^^^~04/01/2007~
-~16150~^~435~^60.^0^^~4~^~NC~^^^^^^^^^^~02/01/2010~
-~16150~^~601~^0.^0^^~7~^^^^^^^^^^^~04/01/2007~
-~16155~^~208~^591.^0^^~4~^~NC~^^^^^^^^^^~05/01/2007~
-~16155~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~
-~16155~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~
-~16155~^~268~^2472.^0^^~4~^~NC~^^^^^^^^^^~05/01/2007~
-~16155~^~301~^43.^0^^~4~^~BFSN~^~16098~^^^^^^^^^~05/01/2007~
-~16155~^~304~^355.^0^^~9~^~MC~^^^^^^^^^^~10/01/1996~
-~16155~^~305~^368.^0^^~9~^~MC~^^^^^^^^^^~10/01/1996~
-~16155~^~306~^667.^0^^~9~^~MC~^^^^^^^^^^~10/01/1996~
-~16155~^~307~^420.^0^^~9~^~MC~^^^^^^^^^^~10/01/1996~
-~16155~^~318~^3907.^0^^~4~^~NC~^^^^^^^^^^~02/01/2010~
-~16155~^~319~^1172.^0^^~8~^~LC~^^^^^^^^^^~05/01/2007~
-~16155~^~320~^1172.^0^^~4~^~NC~^^^^^^^^^^~02/01/2010~
-~16155~^~321~^0.^0^^~4~^~BFSN~^~16098~^^^^^^^^^~02/01/2004~
-~16155~^~322~^0.^0^^~4~^~BFSN~^~16098~^^^^^^^^^~02/01/2004~
-~16155~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~
-~16155~^~334~^0.^0^^~4~^~BFSN~^~16098~^^^^^^^^^~02/01/2004~
-~16155~^~337~^0.^0^^~4~^~BFSN~^~16098~^^^^^^^^^~02/01/2004~
-~16155~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~
-~16155~^~417~^373.^0^^~9~^~MC~^^^^^^^^^^~05/01/2007~
-~16155~^~431~^239.^0^^~8~^~LC~^^^^^^^^^^~05/01/2007~
-~16155~^~432~^134.^0^^~4~^~NC~^^^^^^^^^^~05/01/2007~
-~16155~^~435~^540.^0^^~4~^~NC~^^^^^^^^^^~02/01/2010~
-~16155~^~601~^0.^0^^~7~^~Z~^^^^^^^^^^~10/01/1996~
-~16155~^~636~^102.^0^^~4~^~BFFN~^^^^^^^^^^~10/01/1996~
-~16156~^~208~^593.^0^^~4~^~NC~^^^^^^^^^^~11/01/2006~
-~16156~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~
-~16156~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~
-~16156~^~268~^2482.^0^^~4~^~NC~^^^^^^^^^^~11/01/2006~
-~16156~^~301~^45.^0^^~4~^~BFSN~^~16097~^^^^^^^^^~11/01/2006~
-~16156~^~304~^370.^0^^~9~^~MC~^^^^^^^^^^~10/01/1996~
-~16156~^~305~^316.^0^^~4~^~BFSN~^^^^^^^^^^~10/01/1996~
-~16156~^~306~^744.^0^^~4~^~BFSN~^^^^^^^^^^~10/01/1996~
-~16156~^~307~^366.^0^^~9~^~MC~^^^^^^^^^^~10/01/1996~
-~16156~^~318~^3907.^0^^~4~^~NC~^^^^^^^^^^~02/01/2010~
-~16156~^~319~^1172.^0^^~8~^~LC~^^^^^^^^^^~11/01/2006~
-~16156~^~320~^1172.^0^^~4~^~NC~^^^^^^^^^^~02/01/2010~
-~16156~^~321~^0.^0^^~4~^~BFSN~^~16097~^^^^^^^^^~02/01/2003~
-~16156~^~322~^0.^0^^~4~^~BFSN~^~16097~^^^^^^^^^~02/01/2003~
-~16156~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~
-~16156~^~334~^0.^0^^~4~^~BFSN~^~16097~^^^^^^^^^~02/01/2003~
-~16156~^~337~^0.^0^^~4~^~BFSN~^~16097~^^^^^^^^^~02/01/2003~
-~16156~^~338~^0.^0^^~4~^~BFSN~^~16097~^^^^^^^^^~02/01/2003~
-~16156~^~417~^313.^0^^~8~^~LC~^^^^^^^^^^~11/01/2006~
-~16156~^~431~^221.^0^^~8~^~LC~^^^^^^^^^^~11/01/2006~
-~16156~^~432~^92.^0^^~4~^~BFSN~^~16097~^^^^^^^^^~11/01/2006~
-~16156~^~435~^467.^0^^~4~^~NC~^^^^^^^^^^~02/01/2010~
-~16156~^~601~^0.^0^^~7~^~Z~^^^^^^^^^^~10/01/1996~
-~16156~^~636~^47.^0^^~4~^~BFFN~^^^^^^^^^^~10/01/1996~
-~16157~^~208~^387.^0^^~4~^~NC~^^^^^^^^^^~02/01/2003~
-~16157~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~
-~16157~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~
-~16157~^~268~^1619.^0^^~4~^~NC~^^^^^^^^^^~02/01/2003~
-~16157~^~301~^45.^2^^~1~^~A~^^^^^^^^^^~12/01/1996~
-~16157~^~304~^166.^2^^~1~^~A~^^^^^^^^^^~12/01/1996~
-~16157~^~305~^318.^2^^~1~^~A~^^^^^^^^^^~12/01/1996~
-~16157~^~306~^846.^2^^~1~^~A~^^^^^^^^^^~12/01/1996~
-~16157~^~307~^64.^2^^~1~^~A~^^^^^^^^^^~12/01/1996~
-~16157~^~318~^41.^0^^~4~^~NC~^^^^^^^^^^~02/01/2003~
-~16157~^~319~^0.^0^^~4~^~BNA~^~16056~^^^^^^^^^~02/01/2003~
-~16157~^~320~^2.^0^^~4~^~NC~^^^^^^^^^^~02/01/2003~
-~16157~^~321~^25.^0^^~4~^~BNA~^~16056~^^^^^^^^^~02/01/2003~
-~16157~^~322~^0.^0^^~4~^~BNA~^~16056~^^^^^^^^^~02/01/2003~
-~16157~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~
-~16157~^~334~^0.^0^^~4~^~BNA~^~16056~^^^^^^^^^~02/01/2003~
-~16157~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~
-~16157~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~
-~16157~^~417~^437.^2^^~1~^~A~^^^^^^^^^^~12/01/1996~
-~16157~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~
-~16157~^~432~^437.^2^^~1~^~A~^^^^^^^^^^~02/01/2003~
-~16157~^~435~^437.^0^^~4~^~NC~^^^^^^^^^^~02/01/2003~
-~16157~^~601~^0.^0^^~7~^~Z~^^^^^^^^^^~12/01/1996~
-~16157~^~636~^39.^0^^~4~^~BFFN~^^^^^^^^^^~12/01/1996~
-~16158~^~208~^237.^0^^~4~^~NC~^^^^^^^^^^~12/01/2016~
-~16158~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~12/01/2016~
-~16158~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~12/01/2016~
-~16158~^~268~^992.^0^^~4~^~NC~^^^^^^^^^^~12/01/2016~
-~16158~^~301~^47.^11^1.^~1~^~A~^^^1^26.^57.^5^42.^50.^~2, 3~^~12/01/2016~
-~16158~^~304~^75.^11^1.^~1~^~A~^^^1^57.^82.^5^69.^79.^~2, 3~^~12/01/2016~
-~16158~^~305~^181.^11^1.^~1~^~A~^^^1^134.^190.^6^176.^184.^~2, 3~^~12/01/2016~
-~16158~^~306~^312.^11^2.^~1~^~A~^^^1^231.^327.^5^306.^318.^~2, 3~^~12/01/2016~
-~16158~^~307~^426.^11^8.^~1~^~A~^^^1^387.^489.^5^404.^447.^~2, 3~^~12/01/2016~
-~16158~^~318~^23.^0^^~1~^~AS~^^^^^^^^^^~12/01/2016~
-~16158~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~12/01/2016~
-~16158~^~320~^1.^0^^~1~^~AS~^^^^^^^^^^~12/01/2016~
-~16158~^~321~^12.^1^^~1~^~A~^^^^^^^^^^~12/01/2016~
-~16158~^~322~^0.^1^^~1~^~A~^^^^^^^^^~1~^~12/01/2016~
-~16158~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~
-~16158~^~334~^3.^1^^~1~^~A~^^^^^^^^^^~12/01/2016~
-~16158~^~337~^0.^1^^~1~^~A~^^^^^^^^^~1~^~12/01/2016~
-~16158~^~338~^258.^1^^~1~^~A~^^^^^^^^^^~12/01/2016~
-~16158~^~417~^48.^6^0.^~1~^~A~^^^1^13.^53.^2^43.^51.^~2, 3~^~12/01/2016~
-~16158~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~
-~16158~^~432~^48.^6^0.^~1~^~A~^^^1^13.^53.^2^43.^51.^^~12/01/2016~
-~16158~^~435~^48.^0^^~4~^~NC~^^^^^^^^^^~12/01/2016~
-~16158~^~601~^0.^0^^~7~^~Z~^^^^^^^^^^~12/01/1996~
-~16159~^~208~^83.^0^^~4~^~NC~^^^^^^^^^^~07/01/2015~
-~16159~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~07/01/2015~
-~16159~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~07/01/2015~
-~16159~^~268~^349.^0^^~4~^~NC~^^^^^^^^^^~07/01/2015~
-~16159~^~301~^282.^2^^~1~^~A~^^^1^273.^291.^1^^^^~07/01/2015~
-~16159~^~304~^35.^2^^~1~^~A~^^^1^34.^37.^1^^^^~07/01/2015~
-~16159~^~305~^111.^2^^~1~^~A~^^^1^100.^122.^1^^^^~07/01/2015~
-~16159~^~306~^130.^2^^~1~^~A~^^^1^123.^137.^1^^^^~07/01/2015~
-~16159~^~307~^4.^2^^~1~^~A~^^^1^4.^4.^1^^^^~07/01/2015~
-~16159~^~318~^0.^0^^~1~^~AS~^^^^^^^^^^~12/01/2003~
-~16159~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2002~
-~16159~^~320~^0.^0^^~1~^~AS~^^^^^^^^^^~12/01/2003~
-~16159~^~321~^0.^0^^~7~^~Z~^^^^^^^^^^~07/01/2015~
-~16159~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~07/01/2015~
-~16159~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~
-~16159~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~07/01/2015~
-~16159~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~07/01/2015~
-~16159~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~07/01/2015~
-~16159~^~417~^9.^2^^~1~^~A~^^^1^8.^10.^1^^^^~07/01/2015~
-~16159~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~
-~16159~^~432~^9.^2^^~1~^~A~^~16126~^^^^^^^^^~07/01/2015~
-~16159~^~435~^9.^0^^~4~^~NC~^^^^^^^^^^~07/01/2015~
-~16159~^~601~^0.^0^^~7~^~Z~^^^^^^^^^^~11/01/1997~
-~16160~^~208~^145.^0^^~4~^~NC~^^^^^^^^^^~07/01/2015~
-~16160~^~268~^609.^0^^~4~^~NC~^^^^^^^^^^~07/01/2015~
-~16160~^~301~^345.^1^^~1~^~A~^^^^^^^^^^~11/01/1997~
-~16160~^~304~^53.^1^^~1~^~A~^^^^^^^^^^~11/01/1997~
-~16160~^~305~^231.^1^^~1~^~A~^^^^^^^^^^~11/01/1997~
-~16160~^~306~^146.^1^^~1~^~A~^^^^^^^^^^~11/01/1997~
-~16160~^~307~^2.^1^^~1~^~A~^^^^^^^^^^~11/01/1997~
-~16160~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~
-~16160~^~417~^22.^1^^~1~^~A~^^^^^^^^^^~11/01/1997~
-~16160~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~
-~16160~^~432~^22.^1^^~1~^~A~^^^^^^^^^^~11/01/1997~
-~16160~^~435~^22.^0^^~4~^~NC~^^^^^^^^^^~01/01/2001~
-~16160~^~601~^0.^0^^~7~^~Z~^^^^^^^^^^~11/01/1997~
-~16161~^~208~^55.^0^^~4~^~NC~^^^^^^^^^^~05/01/2007~
-~16161~^~268~^231.^0^^~4~^~NC~^^^^^^^^^^~05/01/2007~
-~16161~^~301~^31.^0^^~9~^~MC~^^^^^^^^^^~02/01/1998~
-~16161~^~304~^29.^0^^~9~^~MC~^^^^^^^^^^~02/01/1998~
-~16161~^~305~^62.^0^^~9~^~MC~^^^^^^^^^^~02/01/1998~
-~16161~^~306~^180.^0^^~9~^~MC~^^^^^^^^^^~02/01/1998~
-~16161~^~307~^5.^0^^~9~^~MC~^^^^^^^^^^~02/01/1998~
-~16161~^~318~^0.^0^^~1~^~AS~^^^^^^^^^^~05/01/2007~
-~16161~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2002~
-~16161~^~320~^0.^0^^~1~^~AS~^^^^^^^^^^~05/01/2007~
-~16161~^~601~^0.^0^^~9~^~MC~^^^^^^^^^^~02/01/1998~
-~16162~^~208~^62.^0^^~9~^~MC~^^^^^^^^^^~02/01/1998~
-~16162~^~268~^259.^0^^~9~^^^^^^^^^^^
-~16162~^~301~^32.^0^^~9~^~MC~^^^^^^^^^^~02/01/1998~
-~16162~^~304~^27.^0^^~9~^~MC~^^^^^^^^^^~02/01/1998~
-~16162~^~305~^90.^0^^~9~^~MC~^^^^^^^^^^~02/01/1998~
-~16162~^~306~^194.^0^^~9~^~MC~^^^^^^^^^^~02/01/1998~
-~16162~^~307~^36.^0^^~9~^~MC~^^^^^^^^^^~02/01/1998~
-~16162~^~318~^0.^0^^~9~^~MC~^^^^^^^^^^~02/01/1998~
-~16162~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2002~
-~16162~^~320~^0.^0^^~9~^~MC~^^^^^^^^^^~06/01/2002~
-~16162~^~601~^0.^0^^~9~^~MC~^^^^^^^^^^~02/01/1998~
-~16163~^~208~^55.^0^^~9~^~MC~^^^^^^^^^^~02/01/1998~
-~16163~^~268~^230.^0^^~9~^^^^^^^^^^^
-~16163~^~301~^31.^0^^~9~^~MC~^^^^^^^^^^~02/01/1998~
-~16163~^~304~^27.^0^^~9~^~MC~^^^^^^^^^^~02/01/1998~
-~16163~^~305~^100.^0^^~9~^~MC~^^^^^^^^^^~02/01/1998~
-~16163~^~306~^154.^0^^~9~^~MC~^^^^^^^^^^~02/01/1998~
-~16163~^~307~^63.^0^^~9~^~MC~^^^^^^^^^^~02/01/1998~
-~16163~^~318~^0.^0^^~9~^~MC~^^^^^^^^^^~02/01/1998~
-~16163~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2002~
-~16163~^~320~^0.^0^^~9~^~MC~^^^^^^^^^^~06/01/2002~
-~16163~^~601~^0.^0^^~9~^~MC~^^^^^^^^^^~02/01/1998~
-~16164~^~208~^37.^0^^~9~^~MC~^^^^^^^^^^~02/01/1998~
-~16164~^~268~^155.^0^^~9~^^^^^^^^^^^~02/01/2010~
-~16164~^~301~^36.^0^^~9~^~MC~^^^^^^^^^^~02/01/1998~
-~16164~^~304~^10.^0^^~9~^~MC~^^^^^^^^^^~02/01/1998~
-~16164~^~305~^81.^0^^~9~^~MC~^^^^^^^^^^~02/01/1998~
-~16164~^~306~^63.^0^^~9~^~MC~^^^^^^^^^^~02/01/1998~
-~16164~^~307~^85.^0^^~9~^~MC~^^^^^^^^^^~02/01/1998~
-~16164~^~318~^0.^0^^~9~^~MC~^^^^^^^^^^~02/01/1998~
-~16164~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2002~
-~16164~^~320~^0.^0^^~9~^~MC~^^^^^^^^^^~06/01/2002~
-~16164~^~601~^0.^0^^~9~^~MC~^^^^^^^^^^~02/01/1998~
-~16165~^~208~^38.^0^^~9~^~MC~^^^^^^^^^^~02/01/1998~
-~16165~^~268~^159.^0^^~9~^^^^^^^^^^^
-~16165~^~301~^43.^0^^~9~^~MC~^^^^^^^^^^~02/01/1998~
-~16165~^~304~^10.^0^^~9~^~MC~^^^^^^^^^^~02/01/1998~
-~16165~^~305~^83.^0^^~9~^~MC~^^^^^^^^^^~02/01/1998~
-~16165~^~306~^57.^0^^~9~^~MC~^^^^^^^^^^~02/01/1998~
-~16165~^~307~^98.^0^^~9~^~MC~^^^^^^^^^^~02/01/1998~
-~16165~^~318~^0.^0^^~9~^~MC~^^^^^^^^^^~02/01/1998~
-~16165~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2002~
-~16165~^~320~^0.^0^^~9~^~MC~^^^^^^^^^^~06/01/2002~
-~16165~^~601~^0.^0^^~9~^~MC~^^^^^^^^^^~02/01/1998~
-~16166~^~208~^63.^0^^~4~^~NC~^^^^^^^^^^~08/01/2007~
-~16166~^~262~^2.^0^^~4~^~BFZN~^~01102~^^^^^^^^^~08/01/2007~
-~16166~^~263~^23.^0^^~4~^~BFZN~^~01102~^^^^^^^^^~08/01/2007~
-~16166~^~268~^262.^0^^~4~^~NC~^^^^^^^^^^~08/01/2007~
-~16166~^~301~^25.^0^^~4~^~BFZN~^~16120~^^^^^^^^^~08/01/2007~
-~16166~^~304~^15.^4^5.^~12~^~MA~^^^1^4.^16.^2^-8.^38.^~4~^~08/01/2007~
-~16166~^~305~^51.^4^26.^~12~^~MA~^^^1^41.^103.^2^-61.^164.^~4~^~08/01/2007~
-~16166~^~306~^143.^9^25.^~12~^~MA~^^^1^119.^202.^5^78.^207.^~4~^~08/01/2007~
-~16166~^~307~^53.^9^11.^~12~^~MA~^^^1^37.^74.^5^23.^82.^~4~^~08/01/2007~
-~16166~^~318~^3.^0^^~4~^~NC~^^^^^^^^^^~08/01/2007~
-~16166~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~08/01/2007~
-~16166~^~320~^0.^0^^~4~^~NC~^^^^^^^^^^~08/01/2007~
-~16166~^~321~^2.^0^^~4~^~BFZN~^~16120~^^^^^^^^^~08/01/2007~
-~16166~^~322~^0.^0^^~4~^~BFZN~^~16120~^^^^^^^^^~08/01/2007~
-~16166~^~324~^0.^0^^~4~^~BFZN~^~16120~^^^^^^^^^~08/01/2007~
-~16166~^~334~^0.^0^^~4~^~BFZN~^~16120~^^^^^^^^^~08/01/2007~
-~16166~^~337~^0.^0^^~4~^~BFZN~^~16120~^^^^^^^^^~08/01/2007~
-~16166~^~338~^0.^0^^~4~^~BFZN~^~16120~^^^^^^^^^~08/01/2007~
-~16166~^~417~^11.^9^5.^~12~^~MA~^^^1^7.^25.^5^-2.^23.^~4~^~08/01/2007~
-~16166~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2003~
-~16166~^~432~^11.^9^5.^~12~^~MA~^^^1^7.^25.^5^-2.^23.^^~08/01/2007~
-~16166~^~435~^11.^0^^~4~^~NC~^^^^^^^^^^~08/01/2007~
-~16166~^~601~^0.^9^0.^~12~^~MA~^^^1^0.^0.^5^0.^0.^~4~^~08/01/2007~
-~16167~^~208~^588.^0^^~4~^~NC~^^^^^^^^^^~11/01/2009~
-~16167~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~07/01/2004~
-~16167~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~07/01/2004~
-~16167~^~268~^2462.^0^^~4~^~NC~^^^^^^^^^^~11/01/2009~
-~16167~^~301~^54.^5^3.^~1~^~A~^^^1^44.^64.^4^43.^64.^~2, 3~^~02/01/2004~
-~16167~^~304~^179.^5^10.^~1~^~A~^^^1^157.^206.^4^149.^207.^~2, 3~^~02/01/2004~
-~16167~^~305~^335.^5^14.^~1~^~A~^^^1^305.^372.^4^295.^375.^~2, 3~^~02/01/2004~
-~16167~^~306~^592.^5^30.^~1~^~A~^^^1^523.^683.^4^507.^676.^~2, 3~^~02/01/2004~
-~16167~^~307~^476.^5^38.^~1~^~A~^^^1^365.^566.^4^369.^582.^~2, 3~^~02/01/2004~
-~16167~^~318~^0.^0^^~4~^~BFSN~^~16098~^^^^^^^^^~11/01/2009~
-~16167~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~07/01/2004~
-~16167~^~320~^0.^0^^~4~^~NC~^^^^^^^^^^~11/01/2009~
-~16167~^~321~^0.^0^^~4~^~BFSN~^~16098~^^^^^^^^^~11/01/2009~
-~16167~^~322~^0.^0^^~4~^~BFSN~^~16098~^^^^^^^^^~11/01/2009~
-~16167~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~
-~16167~^~334~^0.^0^^~4~^~BFSN~^~16098~^^^^^^^^^~11/01/2009~
-~16167~^~337~^0.^0^^~4~^~BFSN~^~16098~^^^^^^^^^~11/01/2009~
-~16167~^~338~^0.^0^^~4~^~BFSN~^~16098~^^^^^^^^^~11/01/2009~
-~16167~^~417~^35.^5^9.^~1~^~A~^^^1^13.^65.^4^9.^61.^~2, 3~^~02/01/2004~
-~16167~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~07/01/2004~
-~16167~^~432~^35.^5^9.^~1~^~A~^^^1^13.^65.^4^9.^61.^^~11/01/2009~
-~16167~^~435~^35.^0^^~4~^~NC~^^^^^^^^^^~11/01/2009~
-~16167~^~601~^0.^0^^~7~^~Z~^^^^^^^^^^~07/01/2004~
-~16168~^~208~^63.^0^^~4~^~NC~^^^^^^^^^^~08/01/2007~
-~16168~^~262~^2.^0^^~4~^~BFZN~^~01102~^^^^^^^^^~08/01/2007~
-~16168~^~263~^23.^0^^~4~^~BFZN~^~01102~^^^^^^^^^~08/01/2007~
-~16168~^~268~^262.^0^^~4~^~NC~^^^^^^^^^^~08/01/2007~
-~16168~^~301~^126.^9^13.^~12~^~MA~^^^1^82.^129.^5^90.^161.^~4~^~08/01/2007~
-~16168~^~304~^15.^4^5.^~12~^~MA~^^^1^4.^16.^2^-8.^38.^~4~^~08/01/2007~
-~16168~^~305~^51.^4^26.^~12~^~MA~^^^1^41.^103.^2^-61.^164.^~4~^~08/01/2007~
-~16168~^~306~^143.^9^25.^~12~^~MA~^^^1^119.^202.^5^78.^207.^~4~^~08/01/2007~
-~16168~^~307~^53.^9^11.^~12~^~MA~^^^1^37.^74.^5^23.^82.^~4~^~08/01/2007~
-~16168~^~318~^235.^0^^~4~^~NC~^^^^^^^^^^~06/01/2009~
-~16168~^~319~^70.^0^^~4~^~O~^^^^^^^^^^~08/01/2007~
-~16168~^~320~^70.^0^^~4~^~NC~^^^^^^^^^^~06/01/2009~
-~16168~^~321~^2.^0^^~4~^~BFZN~^~16120~^^^^^^^^^~08/01/2007~
-~16168~^~322~^0.^0^^~4~^~BFZN~^~16120~^^^^^^^^^~08/01/2007~
-~16168~^~324~^40.^9^11.^~12~^~MA~^^^1^16.^58.^5^10.^69.^~4~^~08/01/2007~
-~16168~^~334~^0.^0^^~4~^~BFZN~^~16120~^^^^^^^^^~08/01/2007~
-~16168~^~337~^0.^0^^~4~^~BFZN~^~16120~^^^^^^^^^~08/01/2007~
-~16168~^~338~^0.^0^^~4~^~BFZN~^~16120~^^^^^^^^^~08/01/2007~
-~16168~^~417~^11.^9^5.^~12~^~MA~^^^1^7.^25.^5^-2.^23.^~4~^~08/01/2007~
-~16168~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2007~
-~16168~^~432~^11.^9^5.^~12~^~MA~^^^1^7.^25.^5^-2.^23.^^~08/01/2007~
-~16168~^~435~^11.^0^^~4~^~NC~^^^^^^^^^^~06/01/2009~
-~16168~^~601~^0.^9^0.^~12~^~MA~^^^1^0.^0.^5^0.^0.^~4~^~08/01/2007~
-~16171~^~208~^83.^0^^~4~^~NC~^^^^^^^^^^~03/01/2008~
-~16171~^~268~^347.^0^^~4~^~NC~^^^^^^^^^^~03/01/2008~
-~16171~^~301~^35.^2^^~1~^~A~^^^1^33.^36.^1^^^^~03/01/2008~
-~16171~^~304~^38.^2^^~1~^~A~^^^1^37.^39.^1^^^^~03/01/2008~
-~16171~^~305~^114.^2^^~1~^~A~^^^1^111.^116.^1^^^^~03/01/2008~
-~16171~^~306~^344.^2^^~1~^~A~^^^1^310.^377.^1^^^^~03/01/2008~
-~16171~^~307~^430.^2^^~1~^~A~^^^1^390.^469.^1^^^^~03/01/2008~
-~16172~^~208~^79.^0^^~4~^~NC~^^^^^^^^^^~05/01/2009~
-~16172~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2009~
-~16172~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2009~
-~16172~^~268~^332.^0^^~4~^~NC~^^^^^^^^^^~05/01/2009~
-~16172~^~301~^34.^2^^~1~^~A~^^^1^34.^34.^^^^^~03/01/2008~
-~16172~^~304~^38.^2^^~1~^~A~^^^1^38.^39.^1^^^^~03/01/2008~
-~16172~^~305~^111.^2^^~1~^~A~^^^1^110.^111.^1^^^^~03/01/2008~
-~16172~^~306~^344.^2^^~1~^~A~^^^1^319.^368.^1^^^^~03/01/2008~
-~16172~^~307~^350.^0^^~8~^~LC~^^^^^^^^^^~07/01/2017~
-~16172~^~318~^0.^0^^~4~^~NC~^^^^^^^^^^~05/01/2009~
-~16172~^~319~^0.^0^^~4~^~BFSN~^~16044~^^^^^^^^^~05/01/2009~
-~16172~^~320~^0.^0^^~4~^~NC~^^^^^^^^^^~08/01/2009~
-~16172~^~321~^0.^0^^~4~^~BFSN~^~16044~^^^^^^^^^~05/01/2009~
-~16172~^~322~^0.^0^^~4~^~BFSN~^~16044~^^^^^^^^^~05/01/2009~
-~16172~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~08/01/2009~
-~16172~^~334~^0.^0^^~4~^~BFSN~^~16044~^^^^^^^^^~05/01/2009~
-~16172~^~337~^0.^0^^~4~^~BFSN~^~16044~^^^^^^^^^~05/01/2009~
-~16172~^~338~^0.^0^^~4~^~BFSN~^~16044~^^^^^^^^^~05/01/2009~
-~16172~^~417~^57.^0^^~4~^~BFSN~^~16044~^^^^^^^^^~05/01/2009~
-~16172~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2009~
-~16172~^~432~^57.^0^^~4~^~BFSN~^^^^^^^^^^~05/01/2009~
-~16172~^~435~^57.^0^^~4~^~NC~^^^^^^^^^^~08/01/2009~
-~16172~^~601~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2009~
-~16173~^~208~^144.^0^^~4~^~NC~^^^^^^^^^^~05/01/2009~
-~16173~^~268~^604.^0^^~4~^~NC~^^^^^^^^^^~05/01/2009~
-~16173~^~301~^33.^2^^~1~^~A~^^^1^32.^34.^1^^^^~06/01/2008~
-~16173~^~304~^36.^2^^~1~^~A~^^^1^32.^40.^1^^^^~06/01/2008~
-~16173~^~305~^91.^2^^~1~^~A~^^^1^85.^97.^1^^^^~06/01/2008~
-~16173~^~306~^310.^2^^~1~^~A~^^^1^300.^320.^1^^^^~06/01/2008~
-~16173~^~307~^375.^2^^~1~^~A~^^^1^360.^390.^1^^^^~06/01/2008~
-~16173~^~417~^5.^2^^~1~^~A~^^^1^2.^7.^1^^^^~06/01/2008~
-~16173~^~432~^5.^2^^~1~^~A~^^^1^2.^7.^1^^^^~06/01/2008~
-~16174~^~208~^195.^0^^~4~^~NC~^^^^^^^^^^~07/01/2015~
-~16174~^~268~^817.^0^^~4~^~NC~^^^^^^^^^^~07/01/2015~
-~16174~^~301~^96.^1^^~1~^~A~^^^^^^^^^^~10/01/2000~
-~16174~^~304~^77.^1^^~1~^~A~^^^^^^^^^^~10/01/2000~
-~16174~^~305~^253.^1^^~1~^~A~^^^^^^^^^^~10/01/2000~
-~16174~^~306~^401.^1^^~1~^~A~^^^^^^^^^^~10/01/2000~
-~16174~^~307~^14.^1^^~1~^~A~^^^^^^^^^^~10/01/2000~
-~16174~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~
-~16174~^~417~^21.^1^^~1~^~A~^^^^^^^^^^~10/01/2000~
-~16174~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2005~
-~16174~^~432~^21.^1^^~1~^~A~^^^^^^^^^^~03/01/2001~
-~16174~^~435~^21.^0^^~4~^~NC~^^^^^^^^^^~05/01/2005~
-~16210~^~208~^54.^0^^~4~^~NC~^^^^^^^^^^~04/01/2011~
-~16210~^~268~^225.^0^^~4~^~NC~^^^^^^^^^^~04/01/2011~
-~16210~^~301~^184.^1^^~9~^~MC~^^^^^^^^^^~02/01/2007~
-~16210~^~305~^181.^1^^~9~^~MC~^^^^^^^^^^~02/01/2007~
-~16210~^~307~^34.^1^^~9~^~MC~^^^^^^^^^^~02/01/2007~
-~16210~^~318~^1902.^1^^~9~^~MC~^^^^^^^^^^~02/01/2007~
-~16210~^~320~^95.^0^^~4~^~NR~^^^^^^^^^^~04/01/2011~
-~16210~^~324~^157.^1^^~9~^~MC~^^^^^^^^^^~02/01/2007~
-~16210~^~601~^0.^1^^~9~^~MC~^^^^^^^^^^~03/01/2007~
-~16211~^~208~^118.^0^^~4~^~NC~^^^^^^^^^^~04/01/2011~
-~16211~^~268~^492.^0^^~4~^~NC~^^^^^^^^^^~04/01/2011~
-~16211~^~301~^188.^1^^~9~^~MC~^^^^^^^^^^~02/01/2007~
-~16211~^~307~^6.^1^^~9~^~MC~^^^^^^^^^^~02/01/2007~
-~16211~^~601~^0.^1^^~9~^~MC~^^^^^^^^^^~03/01/2007~
-~16212~^~208~^98.^1^^~9~^~MC~^^^^^^^^^^~03/01/2007~
-~16212~^~268~^412.^0^^~9~^~MC~^^^^^^^^^^~04/01/2011~
-~16212~^~301~^77.^1^^~9~^~MC~^^^^^^^^^^~02/01/2007~
-~16212~^~307~^4.^1^^~9~^~MC~^^^^^^^^^^~02/01/2007~
-~16212~^~318~^37.^1^^~9~^~MC~^^^^^^^^^^~02/01/2007~
-~16212~^~320~^2.^0^^~4~^~NR~^^^^^^^^^^~04/01/2011~
-~16212~^~601~^0.^1^^~9~^~MC~^^^^^^^^^^~03/01/2007~
-~16213~^~208~^84.^0^^~4~^~NC~^^^^^^^^^^~04/01/2011~
-~16213~^~268~^353.^0^^~4~^~NC~^^^^^^^^^^~04/01/2011~
-~16213~^~301~^125.^1^^~9~^~MC~^^^^^^^^^^~02/01/2007~
-~16213~^~307~^4.^1^^~9~^~MC~^^^^^^^^^^~02/01/2007~
-~16213~^~601~^0.^1^^~9~^~MC~^^^^^^^^^^~03/01/2007~
-~16214~^~208~^47.^0^^~4~^~NC~^^^^^^^^^^~04/01/2011~
-~16214~^~268~^198.^0^^~4~^~NC~^^^^^^^^^^~04/01/2011~
-~16214~^~301~^75.^1^^~9~^~MC~^^^^^^^^^^~02/01/2007~
-~16214~^~307~^2.^1^^~9~^~MC~^^^^^^^^^^~02/01/2007~
-~16214~^~601~^0.^1^^~9~^~MC~^^^^^^^^^^~03/01/2007~
-~16215~^~208~^44.^1^^~9~^~MC~^^^^^^^^^^~03/01/2007~
-~16215~^~268~^184.^0^^~9~^~MC~^^^^^^^^^^~03/01/2007~
-~16215~^~301~^127.^1^^~9~^~MC~^^^^^^^^^^~02/01/2007~
-~16215~^~304~^16.^1^^~9~^~MC~^^^^^^^^^^~02/01/2007~
-~16215~^~306~^131.^1^^~9~^~MC~^^^^^^^^^^~02/01/2007~
-~16215~^~307~^66.^1^^~9~^~MC~^^^^^^^^^^~02/01/2007~
-~16215~^~318~^129.^1^^~9~^~MC~^^^^^^^^^^~02/01/2007~
-~16215~^~324~^35.^1^^~9~^~MC~^^^^^^^^^^~02/01/2007~
-~16215~^~417~^18.^1^^~9~^~MC~^^^^^^^^^^~02/01/2007~
-~16215~^~432~^18.^1^^~9~^~MC~^^^^^^^^^^~03/01/2007~
-~16215~^~601~^0.^1^^~9~^~MC~^^^^^^^^^~1~^~03/01/2007~
-~16216~^~208~^47.^1^^~9~^~MC~^^^^^^^^^^~03/01/2007~
-~16216~^~268~^197.^0^^~9~^~MC~^^^^^^^^^^~03/01/2007~
-~16216~^~301~^17.^1^^~9~^~MC~^^^^^^^^^^~02/01/2007~
-~16216~^~306~^156.^1^^~9~^~MC~^^^^^^^^^^~02/01/2007~
-~16216~^~307~^66.^1^^~9~^~MC~^^^^^^^^^^~02/01/2007~
-~16216~^~417~^17.^1^^~9~^~MC~^^^^^^^^^^~02/01/2007~
-~16216~^~432~^17.^1^^~9~^~MC~^^^^^^^^^^~03/01/2007~
-~16216~^~601~^0.^1^^~9~^~MC~^^^^^^^^^~1~^~03/01/2007~
-~16219~^~208~^30.^1^^~9~^~MC~^^^^^^^^^^~03/01/2007~
-~16219~^~268~^126.^0^^~9~^~MC~^^^^^^^^^^~03/01/2007~
-~16219~^~301~^123.^1^^~9~^~MC~^^^^^^^^^^~02/01/2007~
-~16219~^~304~^10.^1^^~9~^~MC~^^^^^^^^^^~02/01/2007~
-~16219~^~306~^82.^1^^~9~^~MC~^^^^^^^^^^~02/01/2007~
-~16219~^~307~^49.^1^^~9~^~MC~^^^^^^^^^^~02/01/2007~
-~16219~^~318~^124.^1^^~9~^~MC~^^^^^^^^^^~02/01/2007~
-~16219~^~324~^33.^1^^~9~^~MC~^^^^^^^^^^~02/01/2007~
-~16219~^~417~^10.^1^^~9~^~MC~^^^^^^^^^^~02/01/2007~
-~16219~^~432~^10.^1^^~9~^~MC~^^^^^^^^^^~03/01/2007~
-~16219~^~601~^0.^1^^~9~^~MC~^^^^^^^^^~1~^~03/01/2007~
-~16222~^~208~^33.^0^^~4~^~NC~^^^^^^^^^^~08/01/2007~
-~16222~^~268~^138.^0^^~4~^~NC~^^^^^^^^^^~08/01/2007~
-~16222~^~301~^124.^6^26.^~12~^~MA~^^^1^82.^165.^4^51.^195.^~4~^~08/01/2007~
-~16222~^~304~^16.^4^0.^~12~^~MA~^^^1^16.^16.^2^16.^16.^~4~^~06/01/2007~
-~16222~^~305~^32.^4^37.^~12~^~MA~^^^1^25.^103.^2^-128.^193.^~4~^~06/01/2007~
-~16222~^~306~^120.^6^16.^~12~^~MA~^^^1^86.^123.^4^73.^165.^~4~^~08/01/2007~
-~16222~^~307~^37.^6^9.^~12~^~MA~^^^1^29.^53.^4^9.^64.^~4~^~08/01/2007~
-~16222~^~318~^207.^6^120.^~12~^~MA~^^^1^206.^514.^4^-126.^540.^~4~^~08/01/2007~
-~16222~^~324~^49.^6^3.^~12~^~MA~^^^1^41.^49.^4^39.^57.^~4~^~08/01/2007~
-~16222~^~601~^0.^6^0.^~12~^~MA~^^^1^0.^0.^4^0.^0.^~4~^~08/01/2007~
-~16223~^~208~^45.^4^4.^~12~^~MA~^^^1^41.^53.^3^29.^60.^~4~^~06/01/2007~
-~16223~^~268~^189.^0^^~12~^~MA~^^^^^^^^^^~06/01/2007~
-~16223~^~301~^140.^4^24.^~12~^~MA~^^^1^82.^144.^3^61.^217.^~4~^~06/01/2007~
-~16223~^~306~^141.^4^29.^~12~^~MA~^^^1^103.^181.^3^45.^236.^~4~^~06/01/2007~
-~16223~^~307~^50.^4^5.^~12~^~MA~^^^1^41.^56.^3^31.^68.^~4~^~06/01/2007~
-~16223~^~318~^393.^4^165.^~12~^~MA~^^^1^206.^617.^3^-133.^920.^~4~^~06/01/2007~
-~16223~^~324~^47.^4^11.^~12~^~MA~^^^1^16.^49.^3^8.^85.^~4~^~06/01/2007~
-~16223~^~417~^32.^3^8.^~12~^~MA~^^^1^16.^33.^2^-6.^69.^~4~^~06/01/2007~
-~16223~^~432~^32.^3^8.^~12~^~MA~^^^1^16.^33.^2^-6.^69.^^~06/01/2007~
-~16223~^~601~^0.^4^0.^~12~^~MA~^^^1^0.^0.^3^0.^0.^~4~^~06/01/2007~
-~16225~^~208~^30.^6^2.^~12~^~MA~^^^1^25.^31.^3^23.^36.^~4~^~10/01/2008~
-~16225~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~10/01/2008~
-~16225~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~10/01/2008~
-~16225~^~268~^126.^6^^~12~^~MA~^^^^^^^^^^~08/01/2009~
-~16225~^~301~^123.^6^0.^~12~^~MA~^^^1^123.^123.^3^123.^123.^~4~^~06/01/2007~
-~16225~^~304~^15.^6^3.^~12~^~MA~^^^1^7.^16.^3^4.^25.^~4~^~06/01/2007~
-~16225~^~305~^87.^4^13.^~12~^~MA~^^^1^62.^103.^2^28.^145.^~4~^~06/01/2007~
-~16225~^~306~^117.^6^21.^~12~^~MA~^^^1^66.^123.^3^48.^184.^~4~^~06/01/2007~
-~16225~^~307~^48.^6^13.^~12~^~MA~^^^1^39.^78.^3^4.^92.^~4~^~06/01/2007~
-~16225~^~318~^204.^0^^~4~^~NC~^^^^^^^^^^~05/01/2009~
-~16225~^~319~^61.^0^^~4~^~O~^^^^^^^^^^~10/01/2008~
-~16225~^~320~^61.^0^^~4~^~NC~^^^^^^^^^^~05/01/2009~
-~16225~^~321~^1.^0^^~4~^~BFFN~^~16139~^^^^^^^^^~10/01/2008~
-~16225~^~322~^0.^0^^~4~^~BFFN~^~16139~^^^^^^^^^~10/01/2008~
-~16225~^~324~^47.^6^5.^~12~^~MA~^^^1^33.^49.^3^30.^63.^~4~^~06/01/2007~
-~16225~^~334~^0.^0^^~4~^~BFFN~^~16139~^^^^^^^^^~10/01/2008~
-~16225~^~337~^0.^0^^~4~^~BFFN~^~16139~^^^^^^^^^~10/01/2008~
-~16225~^~338~^0.^0^^~4~^~BFFN~^~16139~^^^^^^^^^~10/01/2008~
-~16225~^~417~^9.^5^1.^~12~^~MA~^^^1^7.^10.^2^3.^15.^~4~^~06/01/2007~
-~16225~^~431~^0.^0^^~4~^~BFFN~^~16139~^^^^^^^^^~10/01/2008~
-~16225~^~432~^9.^5^1.^~12~^~MA~^^^1^7.^10.^2^3.^15.^^~10/01/2008~
-~16225~^~435~^9.^0^^~4~^~NC~^~16139~^^^^^^^^^~05/01/2009~
-~16225~^~601~^0.^6^0.^~12~^~MA~^^^1^0.^0.^3^0.^0.^~4~^~10/01/2008~
-~16227~^~208~^47.^4^4.^~12~^~MA~^^^1^37.^49.^3^32.^60.^~4~^~10/01/2008~
-~16227~^~262~^2.^0^^~4~^~BFSN~^~16168~^^^^^^^^^~04/01/2009~
-~16227~^~263~^19.^0^^~4~^~BFSN~^~16168~^^^^^^^^^~04/01/2009~
-~16227~^~268~^197.^4^^~12~^~MA~^^^^^^^^^^~08/01/2009~
-~16227~^~301~^123.^4^0.^~12~^~MA~^^^1^123.^123.^3^123.^123.^~4~^~06/01/2007~
-~16227~^~304~^15.^4^3.^~12~^~MA~^^^1^7.^16.^3^4.^25.^~4~^~06/01/2007~
-~16227~^~305~^87.^3^13.^~12~^~MA~^^^1^62.^103.^2^28.^145.^~4~^~06/01/2007~
-~16227~^~306~^144.^4^48.^~12~^~MA~^^^1^66.^202.^3^-9.^297.^~4~^~06/01/2007~
-~16227~^~307~^46.^4^16.^~12~^~MA~^^^1^31.^78.^3^-5.^96.^~4~^~06/01/2007~
-~16227~^~318~^206.^0^^~4~^~NC~^^^^^^^^^^~04/01/2009~
-~16227~^~319~^61.^0^^~4~^~O~^^^^^^^^^^~10/01/2008~
-~16227~^~320~^61.^0^^~4~^~NC~^^^^^^^^^^~04/01/2009~
-~16227~^~321~^2.^0^^~4~^~BFSN~^~16139~^^^^^^^^^~10/01/2008~
-~16227~^~322~^0.^0^^~4~^~BFSN~^~16139~^^^^^^^^^~10/01/2008~
-~16227~^~324~^47.^4^5.^~12~^~MA~^^^1^33.^49.^3^30.^63.^~4~^~06/01/2007~
-~16227~^~334~^0.^0^^~4~^~BFSN~^~16139~^^^^^^^^^~10/01/2008~
-~16227~^~337~^0.^0^^~4~^~BFSN~^~16139~^^^^^^^^^~10/01/2008~
-~16227~^~338~^0.^0^^~4~^~BFSN~^~16139~^^^^^^^^^~10/01/2008~
-~16227~^~417~^9.^3^1.^~12~^~MA~^^^1^7.^10.^2^3.^15.^~4~^~06/01/2007~
-~16227~^~431~^0.^0^^~4~^~BFSN~^~16139~^^^^^^^^^~10/01/2008~
-~16227~^~432~^9.^3^1.^~12~^~MA~^^^1^7.^10.^2^3.^15.^^~04/01/2009~
-~16227~^~435~^9.^0^^~4~^~NC~^~16139~^^^^^^^^^~05/01/2009~
-~16227~^~601~^0.^4^0.^~12~^~MA~^^^1^0.^0.^3^0.^0.^~4~^~10/01/2008~
-~16228~^~208~^34.^2^^~4~^~NC~^^^1^21.^29.^1^^^^~06/01/2007~
-~16228~^~268~^140.^0^^~4~^~NC~^^^^^^^^^^~06/01/2007~
-~16228~^~301~^123.^2^^~12~^~MA~^^^1^123.^123.^1^^^^~06/01/2007~
-~16228~^~304~^13.^2^^~12~^~MA~^^^1^7.^25.^1^^^^~06/01/2007~
-~16228~^~305~^103.^2^^~12~^~MA~^^^1^103.^103.^1^^^^~06/01/2007~
-~16228~^~306~^117.^2^^~12~^~MA~^^^1^115.^119.^1^^^^~06/01/2007~
-~16228~^~307~^63.^2^^~12~^~MA~^^^1^51.^70.^1^^^^~06/01/2007~
-~16228~^~318~^206.^2^^~12~^~MA~^^^1^206.^206.^1^^^^~06/01/2007~
-~16228~^~324~^41.^2^^~12~^~MA~^^^1^41.^41.^1^^^^~06/01/2007~
-~16228~^~417~^7.^1^^~12~^~MA~^^^^^^^^^^~06/01/2007~
-~16228~^~432~^7.^1^^~12~^~MA~^^^^^^^^^^~06/01/2007~
-~16228~^~601~^0.^2^^~12~^~MA~^^^1^0.^0.^1^^^^~06/01/2007~
-~16229~^~208~^43.^2^^~12~^~MA~^^^1^37.^49.^1^^^^~05/01/2009~
-~16229~^~268~^180.^2^^~12~^~MA~^^^^^^^^^^~08/01/2009~
-~16229~^~301~^82.^2^^~12~^~MA~^^^1^82.^82.^^^^^~06/01/2007~
-~16229~^~305~^62.^2^^~12~^~MA~^^^1^62.^62.^^^^^~06/01/2007~
-~16229~^~306~^64.^2^^~12~^~MA~^^^1^62.^66.^1^^^^~06/01/2007~
-~16229~^~307~^37.^2^^~12~^~MA~^^^1^37.^37.^^^^^~06/01/2007~
-~16229~^~318~^206.^2^^~12~^~MA~^^^1^206.^206.^^^^^~06/01/2007~
-~16229~^~320~^62.^2^^~12~^~MA~^^^1^62.^62.^^^^^~05/01/2009~
-~16229~^~324~^41.^2^^~12~^~MA~^^^1^41.^41.^^^^^~05/01/2009~
-~16229~^~601~^0.^2^^~12~^~MA~^^^1^0.^0.^^^^^~05/01/2009~
-~16230~^~208~^28.^4^1.^~12~^~MA~^^^1^25.^33.^2^20.^36.^~2, 3~^~10/01/2008~
-~16230~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~10/01/2008~
-~16230~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~10/01/2008~
-~16230~^~268~^117.^4^^~12~^~MA~^^^^^^^^^^~08/01/2009~
-~16230~^~301~^116.^4^0.^~12~^~MA~^^^1^103.^123.^^^^~2, 3~^~08/01/2007~
-~16230~^~304~^10.^4^0.^~12~^~MA~^^^1^7.^16.^^^^~2, 3~^~08/01/2007~
-~16230~^~305~^87.^4^0.^~12~^~MA~^^^1^62.^103.^^^^~2, 3~^~08/01/2007~
-~16230~^~306~^105.^4^0.^~12~^~MA~^^^1^86.^115.^1^95.^114.^~2, 3~^~08/01/2007~
-~16230~^~307~^57.^4^0.^~12~^~MA~^^^1^43.^66.^^^^~2, 3~^~08/01/2007~
-~16230~^~318~^206.^4^0.^~12~^~MA~^^^1^206.^206.^^^^~2, 3~^~10/01/2008~
-~16230~^~319~^61.^0^^~4~^~O~^^^^^^^^^^~10/01/2008~
-~16230~^~320~^61.^0^^~4~^~NC~^^^^^^^^^^~10/01/2008~
-~16230~^~321~^1.^0^^~4~^~BFSN~^~16139~^^^^^^^^^~10/01/2008~
-~16230~^~322~^0.^0^^~4~^~BFSN~^~16139~^^^^^^^^^~10/01/2008~
-~16230~^~324~^41.^4^0.^~12~^~MA~^^^1^41.^41.^^^^~2, 3~^~06/01/2007~
-~16230~^~334~^0.^0^^~4~^~BFSN~^~16139~^^^^^^^^^~10/01/2008~
-~16230~^~337~^0.^0^^~4~^~BFSN~^~16139~^^^^^^^^^~10/01/2008~
-~16230~^~338~^0.^0^^~4~^~BFSN~^~16139~^^^^^^^^^~10/01/2008~
-~16230~^~417~^7.^2^^~12~^~MA~^^^1^7.^7.^1^^^^~06/01/2007~
-~16230~^~431~^0.^0^^~4~^~BFSN~^~16139~^^^^^^^^^~10/01/2008~
-~16230~^~432~^7.^2^^~12~^~MA~^^^^^^^^^^~10/01/2008~
-~16230~^~435~^7.^0^^~4~^~NC~^~16139~^^^^^^^^^~05/01/2009~
-~16230~^~601~^0.^4^0.^~12~^~MA~^^^1^0.^0.^^^^~2, 3~^~08/01/2007~
-~16231~^~208~^44.^0^^~4~^~NC~^^^^^^^^^^~04/01/2009~
-~16231~^~262~^2.^0^^~4~^~BFZN~^~16227~^^^^^^^^^~04/01/2009~
-~16231~^~263~^19.^0^^~4~^~BFZN~^~16227~^^^^^^^^^~04/01/2009~
-~16231~^~268~^184.^0^^~4~^~NC~^^^^^^^^^^~04/01/2009~
-~16231~^~301~^116.^4^0.^~12~^~MA~^^^1^103.^123.^^^^~2, 3~^~04/01/2009~
-~16231~^~304~^10.^4^0.^~12~^~MA~^^^1^7.^16.^^^^~2, 3~^~04/01/2009~
-~16231~^~305~^87.^4^0.^~12~^~MA~^^^1^62.^103.^^^^~2, 3~^~04/01/2009~
-~16231~^~306~^105.^4^0.^~12~^~MA~^^^1^86.^115.^1^95.^114.^~2, 3~^~04/01/2009~
-~16231~^~307~^57.^4^0.^~12~^~MA~^^^1^43.^66.^^^^~2, 3~^~04/01/2009~
-~16231~^~318~^206.^0^^~4~^~NC~^^^^^^^^^^~04/01/2009~
-~16231~^~319~^61.^0^^~4~^~BFZN~^~16227~^^^^^^^^^~04/01/2009~
-~16231~^~320~^61.^0^^~4~^~NC~^~16227~^^^^^^^^^~04/01/2009~
-~16231~^~321~^2.^0^^~4~^~BFZN~^~16227~^^^^^^^^^~04/01/2009~
-~16231~^~322~^0.^0^^~4~^~BFZN~^~16227~^^^^^^^^^~04/01/2009~
-~16231~^~324~^41.^4^0.^~12~^~MA~^^^1^41.^41.^^^^~2, 3~^~04/01/2009~
-~16231~^~334~^0.^0^^~4~^~BFZN~^~16227~^^^^^^^^^~04/01/2009~
-~16231~^~337~^0.^0^^~4~^~BFZN~^~16227~^^^^^^^^^~04/01/2009~
-~16231~^~338~^0.^0^^~4~^~BFZN~^~16227~^^^^^^^^^~04/01/2009~
-~16231~^~417~^7.^2^^~12~^~MA~^^^1^7.^7.^1^^^^~04/01/2009~
-~16231~^~431~^0.^0^^~4~^~BFZN~^~16227~^^^^^^^^^~04/01/2009~
-~16231~^~432~^7.^2^^~12~^~MA~^~16227~^^^^^^^^^~04/01/2009~
-~16231~^~435~^7.^0^^~4~^~NC~^~16227~^^^^^^^^^~05/01/2009~
-~16231~^~601~^0.^4^0.^~12~^~MA~^^^1^0.^0.^^^^~2, 3~^~04/01/2009~
-~16235~^~208~^41.^1^^~8~^~LC~^^^^^^^^^^~03/01/2008~
-~16235~^~268~^172.^1^^~8~^~LC~^^^^^^^^^^~08/01/2009~
-~16235~^~301~^123.^1^^~8~^~LC~^^^^^^^^^^~03/01/2008~
-~16235~^~304~^16.^1^^~8~^~LC~^^^^^^^^^^~03/01/2008~
-~16235~^~306~^123.^1^^~8~^~LC~^^^^^^^^^^~03/01/2008~
-~16235~^~307~^49.^1^^~8~^~LC~^^^^^^^^^^~03/01/2008~
-~16235~^~318~^206.^1^^~8~^~LC~^^^^^^^^^^~03/01/2008~
-~16235~^~324~^49.^1^^~8~^~LC~^^^^^^^^^^~03/01/2008~
-~16235~^~417~^10.^1^^~8~^~LC~^^^^^^^^^^~03/01/2008~
-~16235~^~432~^10.^1^^~8~^~LC~^^^^^^^^^^~03/01/2008~
-~16235~^~601~^0.^1^^~8~^~LC~^^^^^^^^^^~03/01/2008~
-~16236~^~208~^41.^1^^~8~^~LC~^^^^^^^^^^~03/01/2008~
-~16236~^~268~^172.^1^^~8~^~LC~^^^^^^^^^^~08/01/2009~
-~16236~^~301~^123.^1^^~8~^~LC~^^^^^^^^^^~03/01/2008~
-~16236~^~304~^16.^1^^~8~^~LC~^^^^^^^^^^~03/01/2008~
-~16236~^~306~^123.^1^^~8~^~LC~^^^^^^^^^^~03/01/2008~
-~16236~^~307~^39.^1^^~8~^~LC~^^^^^^^^^^~03/01/2008~
-~16236~^~318~^206.^1^^~8~^~LC~^^^^^^^^^^~03/01/2008~
-~16236~^~324~^49.^1^^~8~^~LC~^^^^^^^^^^~03/01/2008~
-~16236~^~417~^10.^1^^~8~^~LC~^^^^^^^^^^~03/01/2008~
-~16236~^~432~^10.^1^^~8~^~LC~^^^^^^^^^^~04/01/2008~
-~16236~^~601~^0.^1^^~8~^~LC~^^^^^^^^^^~04/01/2008~
-~16237~^~208~^58.^1^^~8~^~LC~^^^^^^^^^^~03/01/2008~
-~16237~^~268~^243.^1^^~8~^~LC~^^^^^^^^^^~08/01/2009~
-~16237~^~301~^123.^1^^~8~^~LC~^^^^^^^^^^~03/01/2008~
-~16237~^~304~^16.^1^^~8~^~LC~^^^^^^^^^^~03/01/2008~
-~16237~^~306~^144.^1^^~8~^~LC~^^^^^^^^^^~03/01/2008~
-~16237~^~307~^41.^1^^~8~^~LC~^^^^^^^^^^~03/01/2008~
-~16237~^~318~^206.^1^^~8~^~LC~^^^^^^^^^^~03/01/2008~
-~16237~^~324~^49.^1^^~8~^~LC~^^^^^^^^^^~03/01/2008~
-~16237~^~417~^10.^1^^~8~^~LC~^^^^^^^^^^~03/01/2008~
-~16237~^~432~^10.^1^^~8~^~LC~^^^^^^^^^^~04/01/2008~
-~16237~^~601~^0.^1^^~8~^~LC~^^^^^^^^^^~04/01/2008~
-~16238~^~208~^29.^1^^~8~^~LC~^^^^^^^^^^~03/01/2008~
-~16238~^~268~^121.^1^^~8~^~LC~^^^^^^^^^^~08/01/2009~
-~16238~^~301~^123.^1^^~8~^~LC~^^^^^^^^^^~03/01/2008~
-~16238~^~304~^16.^1^^~8~^~LC~^^^^^^^^^^~03/01/2008~
-~16238~^~306~^123.^1^^~8~^~LC~^^^^^^^^^^~03/01/2008~
-~16238~^~307~^49.^1^^~8~^~LC~^^^^^^^^^^~03/01/2008~
-~16238~^~318~^206.^1^^~8~^~LC~^^^^^^^^^^~03/01/2008~
-~16238~^~324~^49.^1^^~8~^~LC~^^^^^^^^^^~03/01/2008~
-~16238~^~417~^10.^1^^~8~^~LC~^^^^^^^^^^~03/01/2008~
-~16238~^~432~^10.^1^^~8~^~LC~^^^^^^^^^^~03/01/2008~
-~16238~^~601~^0.^1^^~8~^~LC~^^^^^^^^^^~03/01/2008~
-~16239~^~208~^33.^1^^~8~^~LC~^^^^^^^^^^~03/01/2008~
-~16239~^~268~^138.^1^^~8~^~LC~^^^^^^^^^^~08/01/2009~
-~16239~^~301~^123.^1^^~8~^~LC~^^^^^^^^^^~03/01/2008~
-~16239~^~304~^16.^1^^~8~^~LC~^^^^^^^^^^~03/01/2008~
-~16239~^~306~^123.^1^^~8~^~LC~^^^^^^^^^^~03/01/2008~
-~16239~^~307~^39.^1^^~8~^~LC~^^^^^^^^^^~03/01/2008~
-~16239~^~318~^206.^1^^~8~^~LC~^^^^^^^^^^~03/01/2008~
-~16239~^~324~^49.^1^^~8~^~LC~^^^^^^^^^^~03/01/2008~
-~16239~^~417~^10.^1^^~8~^~LC~^^^^^^^^^^~03/01/2008~
-~16239~^~432~^10.^1^^~8~^~LC~^^^^^^^^^^~04/01/2008~
-~16239~^~601~^0.^1^^~8~^~LC~^^^^^^^^^^~04/01/2008~
-~16240~^~208~^49.^1^^~8~^~LC~^^^^^^^^^^~03/01/2008~
-~16240~^~268~^205.^1^^~8~^~LC~^^^^^^^^^^~08/01/2009~
-~16240~^~301~^123.^1^^~8~^~LC~^^^^^^^^^^~04/01/2008~
-~16240~^~304~^16.^1^^~8~^~LC~^^^^^^^^^^~03/01/2008~
-~16240~^~306~^144.^1^^~8~^~LC~^^^^^^^^^^~03/01/2008~
-~16240~^~307~^41.^1^^~8~^~LC~^^^^^^^^^^~03/01/2008~
-~16240~^~318~^206.^1^^~8~^~LC~^^^^^^^^^^~03/01/2008~
-~16240~^~324~^49.^1^^~8~^~LC~^^^^^^^^^^~03/01/2008~
-~16240~^~417~^10.^1^^~8~^~LC~^^^^^^^^^^~03/01/2008~
-~16240~^~432~^10.^1^^~8~^~LC~^^^^^^^^^^~04/01/2008~
-~16240~^~601~^0.^1^^~8~^~LC~^^^^^^^^^^~04/01/2008~
-~16241~^~208~^45.^1^^~8~^~LC~^^^^^^^^^^~03/01/2008~
-~16241~^~268~^188.^1^^~8~^~LC~^^^^^^^^^^~08/01/2009~
-~16241~^~301~^144.^1^^~8~^~LC~^^^^^^^^^^~04/01/2008~
-~16241~^~304~^16.^1^^~8~^~LC~^^^^^^^^^^~03/01/2008~
-~16241~^~306~^144.^1^^~8~^~LC~^^^^^^^^^^~03/01/2008~
-~16241~^~307~^49.^1^^~8~^~LC~^^^^^^^^^^~03/01/2008~
-~16241~^~318~^412.^1^^~8~^~LC~^^^^^^^^^^~03/01/2008~
-~16241~^~324~^49.^1^^~8~^~LC~^^^^^^^^^^~03/01/2008~
-~16241~^~417~^10.^1^^~8~^~LC~^^^^^^^^^^~03/01/2008~
-~16241~^~432~^10.^1^^~8~^~LC~^^^^^^^^^^~04/01/2008~
-~16241~^~601~^0.^1^^~8~^~LC~^^^^^^^^^^~04/01/2008~
-~16242~^~208~^41.^1^^~8~^~LC~^^^^^^^^^^~03/01/2008~
-~16242~^~268~^172.^1^^~8~^~LC~^^^^^^^^^^~08/01/2009~
-~16242~^~301~^165.^1^^~8~^~LC~^^^^^^^^^^~04/01/2008~
-~16242~^~304~^16.^1^^~8~^~LC~^^^^^^^^^^~03/01/2008~
-~16242~^~306~^123.^1^^~8~^~LC~^^^^^^^^^^~03/01/2008~
-~16242~^~307~^39.^1^^~8~^~LC~^^^^^^^^^^~03/01/2008~
-~16242~^~318~^206.^1^^~8~^~LC~^^^^^^^^^^~03/01/2008~
-~16242~^~324~^49.^1^^~8~^~LC~^^^^^^^^^^~03/01/2008~
-~16242~^~417~^10.^1^^~8~^~LC~^^^^^^^^^^~03/01/2008~
-~16242~^~432~^10.^1^^~8~^~LC~^^^^^^^^^^~04/01/2008~
-~16242~^~601~^0.^1^^~8~^~LC~^^^^^^^^^^~04/01/2008~
-~16243~^~208~^41.^1^^~8~^~LC~^^^^^^^^^^~03/01/2008~
-~16243~^~268~^172.^1^^~8~^~LC~^^^^^^^^^^~08/01/2009~
-~16243~^~301~^123.^1^^~8~^~LC~^^^^^^^^^^~03/01/2008~
-~16243~^~304~^16.^1^^~8~^~LC~^^^^^^^^^^~03/01/2008~
-~16243~^~306~^123.^1^^~8~^~LC~^^^^^^^^^^~03/01/2008~
-~16243~^~307~^39.^1^^~8~^~LC~^^^^^^^^^^~03/01/2008~
-~16243~^~318~^206.^1^^~8~^~LC~^^^^^^^^^^~03/01/2008~
-~16243~^~324~^49.^1^^~8~^~LC~^^^^^^^^^^~03/01/2008~
-~16243~^~417~^10.^1^^~8~^~LC~^^^^^^^^^^~03/01/2008~
-~16243~^~432~^10.^1^^~8~^~LC~^^^^^^^^^^~03/01/2008~
-~16243~^~601~^0.^1^^~8~^~LC~^^^^^^^^^^~03/01/2008~
-~16244~^~208~^33.^1^^~8~^~LC~^^^^^^^^^^~03/01/2008~
-~16244~^~268~^138.^1^^~8~^~LC~^^^^^^^^^^~08/01/2009~
-~16244~^~301~^123.^1^^~8~^~LC~^^^^^^^^^^~04/01/2008~
-~16244~^~304~^16.^1^^~8~^~LC~^^^^^^^^^^~03/01/2008~
-~16244~^~306~^123.^1^^~8~^~LC~^^^^^^^^^^~03/01/2008~
-~16244~^~307~^35.^1^^~8~^~LC~^^^^^^^^^^~03/01/2008~
-~16244~^~318~^206.^1^^~8~^~LC~^^^^^^^^^^~03/01/2008~
-~16244~^~324~^0.^1^^~8~^~LC~^^^^^^^^^^~04/01/2008~
-~16244~^~417~^10.^1^^~8~^~LC~^^^^^^^^^^~03/01/2008~
-~16244~^~432~^10.^1^^~8~^~LC~^^^^^^^^^^~04/01/2008~
-~16244~^~601~^0.^1^^~8~^~LC~^^^^^^^^^^~04/01/2008~
-~16245~^~208~^53.^1^^~8~^~LC~^^^^^^^^^^~03/01/2008~
-~16245~^~268~^222.^1^^~8~^~LC~^^^^^^^^^^~08/01/2009~
-~16245~^~301~^144.^1^^~8~^~LC~^^^^^^^^^^~04/01/2008~
-~16245~^~304~^16.^1^^~8~^~LC~^^^^^^^^^^~03/01/2008~
-~16245~^~306~^123.^1^^~8~^~LC~^^^^^^^^^^~03/01/2008~
-~16245~^~307~^58.^1^^~8~^~LC~^^^^^^^^^^~03/01/2008~
-~16245~^~318~^412.^1^^~8~^~LC~^^^^^^^^^^~03/01/2008~
-~16245~^~324~^49.^1^^~8~^~LC~^^^^^^^^^^~04/01/2008~
-~16245~^~417~^10.^1^^~8~^~LC~^^^^^^^^^^~03/01/2008~
-~16245~^~432~^10.^1^^~8~^~LC~^^^^^^^^^^~04/01/2008~
-~16245~^~601~^0.^1^^~8~^~LC~^^^^^^^^^^~04/01/2008~
-~16246~^~208~^74.^1^^~8~^~LC~^^^^^^^^^^~03/01/2008~
-~16246~^~268~^310.^1^^~8~^~LC~^^^^^^^^^^~08/01/2009~
-~16246~^~301~^16.^1^^~8~^~LC~^^^^^^^^^^~04/01/2008~
-~16246~^~304~^0.^1^^~8~^~LC~^^^^^^^^^^~04/01/2008~
-~16246~^~306~^123.^1^^~8~^~LC~^^^^^^^^^^~03/01/2008~
-~16246~^~307~^61.^1^^~8~^~LC~^^^^^^^^^^~03/01/2008~
-~16246~^~318~^0.^1^^~8~^~LC~^^^^^^^^^^~04/01/2008~
-~16246~^~324~^0.^1^^~8~^~LC~^^^^^^^^^^~04/01/2008~
-~16246~^~417~^0.^1^^~8~^~LC~^^^^^^^^^^~04/01/2008~
-~16246~^~432~^0.^1^^~8~^~LC~^^^^^^^^^^~04/01/2008~
-~16246~^~601~^0.^1^^~8~^~LC~^^^^^^^^^^~04/01/2008~
-~16247~^~208~^53.^1^^~8~^~LC~^^^^^^^^^^~03/01/2008~
-~16247~^~268~^222.^1^^~8~^~LC~^^^^^^^^^^~08/01/2009~
-~16247~^~301~^123.^1^^~8~^~LC~^^^^^^^^^^~03/01/2008~
-~16247~^~304~^0.^1^^~8~^~LC~^^^^^^^^^^~03/01/2008~
-~16247~^~306~^123.^1^^~8~^~LC~^^^^^^^^^^~03/01/2008~
-~16247~^~307~^41.^1^^~8~^~LC~^^^^^^^^^^~03/01/2008~
-~16247~^~318~^123.^1^^~8~^~LC~^^^^^^^^^^~03/01/2008~
-~16247~^~324~^33.^1^^~8~^~LC~^^^^^^^^^^~03/01/2008~
-~16247~^~417~^7.^1^^~8~^~LC~^^^^^^^^^^~03/01/2008~
-~16247~^~432~^7.^1^^~8~^~LC~^^^^^^^^^^~03/01/2008~
-~16247~^~601~^0.^1^^~8~^~LC~^^^^^^^^^^~03/01/2008~
-~16248~^~208~^58.^1^^~8~^~LC~^^^^^^^^^^~03/01/2008~
-~16248~^~268~^243.^1^^~8~^~LC~^^^^^^^^^^~08/01/2009~
-~16248~^~301~^123.^1^^~8~^~LC~^^^^^^^^^^~03/01/2008~
-~16248~^~304~^0.^1^^~8~^~LC~^^^^^^^^^^~03/01/2008~
-~16248~^~306~^123.^1^^~8~^~LC~^^^^^^^^^^~03/01/2008~
-~16248~^~307~^41.^1^^~8~^~LC~^^^^^^^^^^~03/01/2008~
-~16248~^~318~^123.^1^^~8~^~LC~^^^^^^^^^^~03/01/2008~
-~16248~^~417~^7.^1^^~8~^~LC~^^^^^^^^^^~03/01/2008~
-~16248~^~432~^7.^1^^~8~^~LC~^^^^^^^^^^~03/01/2008~
-~16248~^~601~^0.^1^^~8~^~LC~^^^^^^^^^^~03/01/2008~
-~16249~^~208~^62.^1^^~8~^~LC~^^^^^^^^^^~03/01/2008~
-~16249~^~268~^259.^1^^~8~^~LC~^^^^^^^^^^~08/01/2009~
-~16249~^~301~^123.^1^^~8~^~LC~^^^^^^^^^^~04/01/2008~
-~16249~^~304~^0.^1^^~8~^~LC~^^^^^^^^^^~04/01/2008~
-~16249~^~306~^132.^1^^~8~^~LC~^^^^^^^^^^~03/01/2008~
-~16249~^~307~^41.^1^^~8~^~LC~^^^^^^^^^^~03/01/2008~
-~16249~^~318~^123.^1^^~8~^~LC~^^^^^^^^^^~03/01/2008~
-~16249~^~417~^7.^1^^~8~^~LC~^^^^^^^^^^~03/01/2008~
-~16249~^~432~^7.^1^^~8~^~LC~^^^^^^^^^^~04/01/2008~
-~16249~^~601~^0.^1^^~8~^~LC~^^^^^^^^^^~04/01/2008~
-~16250~^~208~^79.^1^^~8~^~LC~^^^^^^^^^^~03/01/2008~
-~16250~^~268~^331.^1^^~8~^~LC~^^^^^^^^^^~08/01/2009~
-~16250~^~301~^132.^1^^~8~^~LC~^^^^^^^^^^~03/01/2008~
-~16250~^~307~^13.^1^^~8~^~LC~^^^^^^^^^^~03/01/2008~
-~16250~^~324~^53.^1^^~8~^~LC~^^^^^^^^^^~03/01/2008~
-~16250~^~601~^0.^1^^~8~^~LC~^^^^^^^^^^~03/01/2008~
-~16251~^~208~^88.^1^^~8~^~LC~^^^^^^^^^^~03/01/2008~
-~16251~^~268~^368.^1^^~8~^~LC~^^^^^^^^^^~08/01/2009~
-~16251~^~301~^176.^1^^~8~^~LC~^^^^^^^^^^~04/01/2008~
-~16251~^~307~^12.^1^^~8~^~LC~^^^^^^^^^^~03/01/2008~
-~16251~^~318~^0.^1^^~8~^~LC~^^^^^^^^^^~04/01/2008~
-~16251~^~601~^0.^1^^~8~^~LC~^^^^^^^^^^~04/01/2008~
-~16252~^~208~^66.^1^^~8~^~LC~^^^^^^^^^^~03/01/2008~
-~16252~^~268~^276.^1^^~8~^~LC~^^^^^^^^^^~08/01/2009~
-~16252~^~301~^132.^1^^~8~^~LC~^^^^^^^^^^~03/01/2008~
-~16252~^~307~^13.^1^^~8~^~LC~^^^^^^^^^^~03/01/2008~
-~16252~^~318~^0.^1^^~8~^~LC~^^^^^^^^^^~03/01/2008~
-~16252~^~324~^53.^1^^~8~^~LC~^^^^^^^^^^~03/01/2008~
-~16252~^~601~^0.^1^^~8~^~LC~^^^^^^^^^^~03/01/2008~
-~16253~^~208~^94.^1^^~8~^~LC~^^^^^^^^^^~03/01/2008~
-~16253~^~268~^393.^1^^~8~^~LC~^^^^^^^^^^~08/01/2009~
-~16253~^~301~^176.^1^^~8~^~LC~^^^^^^^^^^~03/01/2008~
-~16253~^~307~^15.^1^^~8~^~LC~^^^^^^^^^^~03/01/2008~
-~16253~^~318~^0.^1^^~8~^~LC~^^^^^^^^^^~03/01/2008~
-~16253~^~601~^0.^1^^~8~^~LC~^^^^^^^^^^~03/01/2008~
-~16254~^~208~^88.^1^^~8~^~LC~^^^^^^^^^^~03/01/2008~
-~16254~^~268~^368.^1^^~8~^~LC~^^^^^^^^^^~08/01/2009~
-~16254~^~301~^176.^1^^~8~^~LC~^^^^^^^^^^~03/01/2008~
-~16254~^~307~^15.^1^^~8~^~LC~^^^^^^^^^^~03/01/2008~
-~16254~^~318~^0.^1^^~8~^~LC~^^^^^^^^^^~03/01/2008~
-~16254~^~601~^0.^1^^~8~^~LC~^^^^^^^^^^~03/01/2008~
-~16255~^~208~^94.^1^^~8~^~LC~^^^^^^^^^^~03/01/2008~
-~16255~^~268~^393.^1^^~8~^~LC~^^^^^^^^^^~08/01/2009~
-~16255~^~301~^176.^1^^~8~^~LC~^^^^^^^^^^~03/01/2008~
-~16255~^~307~^15.^1^^~8~^~LC~^^^^^^^^^^~03/01/2008~
-~16255~^~318~^0.^1^^~8~^~LC~^^^^^^^^^^~03/01/2008~
-~16255~^~601~^0.^1^^~8~^~LC~^^^^^^^^^^~03/01/2008~
-~16256~^~208~^88.^1^^~8~^~LC~^^^^^^^^^^~03/01/2008~
-~16256~^~268~^368.^1^^~8~^~LC~^^^^^^^^^^~08/01/2009~
-~16256~^~301~^176.^1^^~8~^~LC~^^^^^^^^^^~03/01/2008~
-~16256~^~307~^12.^1^^~8~^~LC~^^^^^^^^^^~03/01/2008~
-~16256~^~318~^0.^1^^~8~^~LC~^^^^^^^^^^~03/01/2008~
-~16256~^~601~^0.^1^^~8~^~LC~^^^^^^^^^^~03/01/2008~
-~16257~^~208~^88.^1^^~8~^~LC~^^^^^^^^^^~03/01/2008~
-~16257~^~268~^368.^1^^~8~^~LC~^^^^^^^^^^~08/01/2009~
-~16257~^~301~^176.^1^^~8~^~LC~^^^^^^^^^^~03/01/2008~
-~16257~^~307~^15.^1^^~8~^~LC~^^^^^^^^^^~03/01/2008~
-~16257~^~318~^0.^1^^~8~^~LC~^^^^^^^^^^~03/01/2008~
-~16257~^~601~^0.^1^^~8~^~LC~^^^^^^^^^^~03/01/2008~
-~16258~^~208~^88.^1^^~8~^~LC~^^^^^^^^^^~03/01/2008~
-~16258~^~268~^368.^1^^~8~^~LC~^^^^^^^^^^~08/01/2009~
-~16258~^~301~^176.^1^^~8~^~LC~^^^^^^^^^^~03/01/2008~
-~16258~^~307~^15.^1^^~8~^~LC~^^^^^^^^^^~03/01/2008~
-~16258~^~318~^0.^1^^~8~^~LC~^^^^^^^^^^~03/01/2008~
-~16258~^~601~^0.^1^^~8~^~LC~^^^^^^^^^^~03/01/2008~
-~16259~^~208~^88.^1^^~8~^~LC~^^^^^^^^^^~03/01/2008~
-~16259~^~268~^368.^1^^~8~^~LC~^^^^^^^^^^~08/01/2009~
-~16259~^~301~^176.^1^^~8~^~LC~^^^^^^^^^^~03/01/2008~
-~16259~^~307~^15.^1^^~8~^~LC~^^^^^^^^^^~03/01/2008~
-~16259~^~318~^0.^1^^~8~^~LC~^^^^^^^^^^~03/01/2008~
-~16259~^~601~^0.^1^^~8~^~LC~^^^^^^^^^^~03/01/2008~
-~16260~^~208~^100.^1^^~8~^~LC~^^^^^^^^^^~03/01/2008~
-~16260~^~268~^418.^1^^~8~^~LC~^^^^^^^^^^~08/01/2009~
-~16260~^~301~^0.^1^^~8~^~LC~^^^^^^^^^^~03/01/2008~
-~16260~^~307~^67.^1^^~8~^~LC~^^^^^^^^^^~03/01/2008~
-~16260~^~318~^0.^1^^~8~^~LC~^^^^^^^^^^~03/01/2008~
-~16260~^~601~^0.^1^^~8~^~LC~^^^^^^^^^^~03/01/2008~
-~16261~^~208~^133.^1^^~8~^~LC~^^^^^^^^^^~03/01/2008~
-~16261~^~268~^556.^1^^~8~^~LC~^^^^^^^^^^~08/01/2009~
-~16261~^~301~^0.^1^^~8~^~LC~^^^^^^^^^^~03/01/2008~
-~16261~^~307~^67.^1^^~8~^~LC~^^^^^^^^^^~03/01/2008~
-~16261~^~318~^0.^1^^~8~^~LC~^^^^^^^^^^~03/01/2008~
-~16261~^~601~^0.^1^^~8~^~LC~^^^^^^^^^^~03/01/2008~
-~16262~^~208~^133.^1^^~8~^~LC~^^^^^^^^^^~03/01/2008~
-~16262~^~268~^556.^1^^~8~^~LC~^^^^^^^^^^~08/01/2009~
-~16262~^~301~^0.^1^^~8~^~LC~^^^^^^^^^^~04/01/2008~
-~16262~^~307~^67.^1^^~8~^~LC~^^^^^^^^^^~03/01/2008~
-~16262~^~318~^0.^1^^~8~^~LC~^^^^^^^^^^~03/01/2008~
-~16262~^~601~^0.^1^^~8~^~LC~^^^^^^^^^^~03/01/2008~
-~16271~^~208~^70.^0^^~4~^~NC~^^^^^^^^^^~07/01/2015~
-~16271~^~268~^291.^0^^~4~^~NC~^^^^^^^^^^~07/01/2015~
-~16271~^~301~^130.^1^^~9~^~MC~^^^^^^^^^^~04/01/2011~
-~16271~^~307~^4.^1^^~9~^~MC~^^^^^^^^^^~04/01/2011~
-~16271~^~601~^0.^1^^~9~^~MC~^^^^^^^^^^~04/01/2011~
-~16272~^~208~^43.^0^^~4~^~NC~^^^^^^^^^^~07/01/2015~
-~16272~^~268~^179.^0^^~4~^~NC~^^^^^^^^^^~07/01/2015~
-~16272~^~301~^394.^1^^~9~^~MC~^^^^^^^^^^~04/01/2011~
-~16272~^~305~^203.^1^^~9~^~MC~^^^^^^^^^^~04/01/2011~
-~16272~^~307~^79.^1^^~9~^~MC~^^^^^^^^^^~04/01/2011~
-~16272~^~318~^1913.^1^^~9~^~MC~^^^^^^^^^^~04/01/2011~
-~16272~^~320~^96.^0^^~4~^~NR~^^^^^^^^^^~04/01/2011~
-~16272~^~324~^153.^1^^~9~^~MC~^^^^^^^^^^~04/01/2011~
-~16272~^~601~^0.^1^^~9~^~MC~^^^^^^^^^^~04/01/2011~
-~16273~^~208~^92.^0^^~4~^~NC~^^^^^^^^^^~07/01/2015~
-~16273~^~268~^385.^0^^~4~^~NC~^^^^^^^^^^~07/01/2015~
-~16273~^~301~^246.^1^^~9~^~MC~^^^^^^^^^^~04/01/2011~
-~16273~^~305~^129.^1^^~9~^~MC~^^^^^^^^^^~04/01/2011~
-~16273~^~307~^7.^1^^~9~^~MC~^^^^^^^^^^~04/01/2011~
-~16273~^~324~^101.^1^^~9~^~MC~^^^^^^^^^^~04/01/2011~
-~16273~^~601~^0.^1^^~9~^~MC~^^^^^^^^^^~04/01/2011~
-~16274~^~208~^74.^0^^~4~^~NC~^^^^^^^^^^~04/01/2011~
-~16274~^~268~^310.^0^^~4~^~NC~^^^^^^^^^^~04/01/2011~
-~16274~^~301~^237.^1^^~9~^~MC~^^^^^^^^^^~04/01/2011~
-~16274~^~305~^121.^1^^~9~^~MC~^^^^^^^^^^~04/01/2011~
-~16274~^~307~^4.^1^^~9~^~MC~^^^^^^^^^^~04/01/2011~
-~16274~^~324~^101.^1^^~9~^~MC~^^^^^^^^^^~04/01/2011~
-~16274~^~601~^0.^1^^~9~^~MC~^^^^^^^^^^~04/01/2011~
-~16275~^~208~^115.^0^^~4~^~NC~^^^^^^^^^^~07/01/2015~
-~16275~^~268~^480.^0^^~4~^~NC~^^^^^^^^^^~07/01/2015~
-~16275~^~301~^239.^1^^~9~^~MC~^^^^^^^^^^~04/01/2011~
-~16275~^~307~^28.^1^^~9~^~MC~^^^^^^^^^^~04/01/2011~
-~16275~^~324~^98.^1^^~9~^~MC~^^^^^^^^^^~04/01/2011~
-~16275~^~601~^0.^1^^~9~^~MC~^^^^^^^^^^~04/01/2011~
-~16276~^~208~^88.^0^^~4~^~NC~^^^^^^^^^^~04/01/2011~
-~16276~^~268~^367.^0^^~4~^~NC~^^^^^^^^^^~04/01/2011~
-~16276~^~301~^176.^1^^~9~^~MC~^^^^^^^^^^~04/01/2011~
-~16276~^~307~^26.^1^^~9~^~MC~^^^^^^^^^^~04/01/2011~
-~16276~^~601~^0.^1^^~9~^~MC~^^^^^^^^^^~04/01/2011~
-~16277~^~208~^80.^0^^~4~^~NC~^^^^^^^^^^~04/01/2011~
-~16277~^~268~^336.^0^^~4~^~NC~^^^^^^^^^^~04/01/2011~
-~16277~^~301~^180.^1^^~9~^~MC~^^^^^^^^^^~04/01/2011~
-~16277~^~307~^23.^1^^~9~^~MC~^^^^^^^^^^~04/01/2011~
-~16277~^~601~^0.^1^^~9~^~MC~^^^^^^^^^^~04/01/2011~
-~16278~^~208~^43.^0^^~4~^~NC~^^^^^^^^^^~04/01/2011~
-~16278~^~268~^181.^0^^~4~^~NC~^^^^^^^^^^~04/01/2011~
-~16278~^~301~^66.^1^^~9~^~MC~^^^^^^^^^^~04/01/2011~
-~16278~^~307~^2.^1^^~9~^~MC~^^^^^^^^^^~04/01/2011~
-~16278~^~601~^0.^1^^~9~^~MC~^^^^^^^^^^~04/01/2011~
-~16279~^~208~^59.^0^^~4~^~NC~^^^^^^^^^^~07/01/2015~
-~16279~^~268~^245.^0^^~4~^~NC~^^^^^^^^^^~07/01/2015~
-~16279~^~301~^78.^1^^~9~^~MC~^^^^^^^^^^~05/01/2011~
-~16279~^~307~^34.^1^^~9~^~MC~^^^^^^^^^^~05/01/2011~
-~16279~^~318~^34.^1^^~9~^~MC~^^^^^^^^^^~05/01/2011~
-~16279~^~601~^0.^1^^~9~^~MC~^^^^^^^^^^~05/01/2011~
-~16281~^~208~^85.^0^^~4~^~NC~^^^^^^^^^^~07/01/2015~
-~16281~^~268~^357.^0^^~4~^~NC~^^^^^^^^^^~07/01/2015~
-~16281~^~301~^149.^1^^~9~^~MC~^^^^^^^^^^~05/01/2011~
-~16281~^~307~^33.^1^^~9~^~MC~^^^^^^^^^^~05/01/2011~
-~16281~^~318~^0.^1^^~9~^~MC~^^^^^^^^^^~05/01/2011~
-~16281~^~601~^0.^1^^~9~^~MC~^^^^^^^^^^~05/01/2011~
-~16302~^~208~^128.^0^^~4~^~NC~^^^^^^^^^^~12/01/1986~
-~16302~^~268~^536.^0^^~4~^^^^^^^^^^^
-~16302~^~301~^28.^1^^~1~^^^^^^^^^^^~12/01/1986~
-~16302~^~304~^52.^1^^~1~^^^^^^^^^^^~12/01/1986~
-~16302~^~305~^168.^1^^~1~^^^^^^^^^^^~12/01/1986~
-~16302~^~306~^532.^1^^~1~^^^^^^^^^^^~12/01/1986~
-~16302~^~307~^244.^0^^~1~^^^^^^^^^^^~12/01/1986~
-~16302~^~318~^6.^0^^~1~^^^^^^^^^^^~12/01/1986~
-~16302~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2002~
-~16302~^~320~^0.^0^^~1~^^^^^^^^^^^~06/01/2002~
-~16302~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~
-~16302~^~417~^121.^0^^~4~^^^^^^^^^^^~12/01/1986~
-~16302~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~
-~16302~^~432~^121.^0^^~4~^^^^^^^^^^^~12/01/1986~
-~16302~^~435~^121.^0^^~4~^~NC~^^^^^^^^^^~01/01/2001~
-~16302~^~601~^0.^0^^~1~^^^^^^^^^^^~12/01/1986~
-~16315~^~208~^132.^0^^~4~^~NC~^^^^^^^^^^~12/01/1986~
-~16315~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~11/01/2014~
-~16315~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~11/01/2014~
-~16315~^~268~^552.^0^^~4~^^^^^^^^^^^
-~16315~^~301~^27.^14^2.^~1~^^^^^^^^^^^~12/01/1986~
-~16315~^~304~^70.^14^4.^~1~^^^^^^^^^^^~12/01/1986~
-~16315~^~305~^140.^8^3.^~1~^^^^^^^^^^^~12/01/1986~
-~16315~^~306~^355.^14^25.^~1~^^^^^^^^^^^~12/01/1986~
-~16315~^~307~^237.^0^^~1~^^^^^^^^^^^~12/01/1986~
-~16315~^~318~^6.^0^^~1~^^^^^^^^^^^~12/01/1986~
-~16315~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2002~
-~16315~^~320~^0.^0^^~1~^~AS~^^^^^^^^^^~06/01/2002~
-~16315~^~321~^0.^0^^~7~^~Z~^^^^^^^^^^~11/01/2014~
-~16315~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~11/01/2014~
-~16315~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~
-~16315~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~11/01/2014~
-~16315~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~11/01/2014~
-~16315~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~11/01/2014~
-~16315~^~417~^149.^8^11.^~1~^^^^^^^^^^^~12/01/1986~
-~16315~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~
-~16315~^~432~^149.^8^11.^~1~^^^^^^^^^^^~12/01/1986~
-~16315~^~435~^149.^0^^~4~^~NC~^^^^^^^^^^~01/01/2001~
-~16315~^~601~^0.^0^^~1~^^^^^^^^^^^~12/01/1986~
-~16316~^~208~^91.^0^^~4~^~NC~^^^^^^^^^^~02/01/2013~
-~16316~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2013~
-~16316~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2013~
-~16316~^~268~^380.^0^^~4~^~NC~^^^^^^^^^^~02/01/2013~
-~16316~^~301~^35.^1^^~1~^^^^^^^^^^^~02/01/2013~
-~16316~^~304~^35.^0^^~1~^^^^^^^^^^^~02/01/2013~
-~16316~^~305~^108.^0^^~1~^^^^^^^^^^^~02/01/2013~
-~16316~^~306~^308.^0^^~1~^^^^^^^^^^^~02/01/2013~
-~16316~^~307~^138.^5^19.^~8~^~LC~^^^^122.^130.^^^^^~02/01/2013~
-~16316~^~318~^4.^0^^~1~^^^^^^^^^^^~02/01/2013~
-~16316~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2013~
-~16316~^~320~^0.^0^^~4~^~NC~^^^^^^^^^^~02/01/2013~
-~16316~^~321~^0.^0^^~4~^~BFSN~^~16017~^^^^^^^^^~02/01/2013~
-~16316~^~322~^0.^0^^~4~^~BFSN~^~16017~^^^^^^^^^~02/01/2013~
-~16316~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2013~
-~16316~^~334~^0.^0^^~4~^~BFSN~^~16017~^^^^^^^^^~02/01/2013~
-~16316~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2013~
-~16316~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2013~
-~16316~^~417~^61.^0^^~1~^^^^^^^^^^^~02/01/2013~
-~16316~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2013~
-~16316~^~432~^61.^0^^~1~^^^^^^^^^^^~02/01/2013~
-~16316~^~435~^61.^0^^~4~^~NC~^^^^^^^^^^~02/01/2013~
-~16316~^~601~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2013~
-~16317~^~208~^130.^0^^~4~^~NC~^^^^^^^^^^~12/01/1986~
-~16317~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2011~
-~16317~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2011~
-~16317~^~268~^544.^0^^~4~^^^^^^^^^^^~04/01/2007~
-~16317~^~301~^55.^0^^~1~^^^^^^^^^^^~12/01/1986~
-~16317~^~304~^49.^0^^~1~^^^^^^^^^^^~12/01/1986~
-~16317~^~305~^152.^0^^~1~^^^^^^^^^^^~12/01/1986~
-~16317~^~306~^433.^0^^~1~^^^^^^^^^^^~12/01/1986~
-~16317~^~307~^239.^0^^~1~^^^^^^^^^^^~12/01/1986~
-~16317~^~318~^6.^0^^~1~^^^^^^^^^^^~01/01/2011~
-~16317~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2002~
-~16317~^~320~^0.^0^^~1~^~AS~^^^^^^^^^^~01/01/2011~
-~16317~^~321~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2011~
-~16317~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2011~
-~16317~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~
-~16317~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2011~
-~16317~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2011~
-~16317~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2011~
-~16317~^~417~^86.^0^^~1~^^^^^^^^^^^~12/01/1986~
-~16317~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~
-~16317~^~432~^86.^0^^~1~^^^^^^^^^^^~04/01/2007~
-~16317~^~435~^86.^0^^~4~^~NC~^^^^^^^^^^~04/01/2007~
-~16317~^~601~^0.^0^^~1~^^^^^^^^^^^~12/01/1986~
-~16320~^~208~^136.^0^^~4~^~NC~^^^^^^^^^^~12/01/1986~
-~16320~^~268~^569.^0^^~4~^^^^^^^^^^^
-~16320~^~301~^50.^8^1.^~1~^^^^^^^^^^^~12/01/1986~
-~16320~^~304~^50.^8^0.^~1~^^^^^^^^^^^~12/01/1986~
-~16320~^~305~^135.^8^3.^~1~^^^^^^^^^^^~12/01/1986~
-~16320~^~306~^387.^8^8.^~1~^^^^^^^^^^^~12/01/1986~
-~16320~^~307~^237.^0^^~1~^^^^^^^^^^^~12/01/1986~
-~16320~^~318~^0.^8^0.^~1~^^^^^^^^^^^~12/01/1986~
-~16320~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2002~
-~16320~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~
-~16320~^~417~^207.^8^7.^~1~^^^^^^^^^^^~12/01/1986~
-~16320~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~
-~16320~^~432~^207.^8^7.^~1~^^^^^^^^^^^~12/01/1986~
-~16320~^~435~^207.^0^^~4~^~NC~^^^^^^^^^^~01/01/2001~
-~16320~^~601~^0.^0^^~1~^^^^^^^^^^^~12/01/1986~
-~16323~^~208~^129.^0^^~4~^~NC~^^^^^^^^^^~12/01/1986~
-~16323~^~268~^540.^0^^~4~^^^^^^^^^^^
-~16323~^~301~^63.^0^^~1~^^^^^^^^^^^~12/01/1986~
-~16323~^~304~^56.^0^^~1~^^^^^^^^^^^~12/01/1986~
-~16323~^~305~^102.^0^^~1~^^^^^^^^^^^~12/01/1986~
-~16323~^~306~^370.^0^^~1~^^^^^^^^^^^~12/01/1986~
-~16323~^~307~^242.^0^^~1~^^^^^^^^^^^~12/01/1986~
-~16323~^~318~^3.^0^^~1~^^^^^^^^^^^~12/01/1986~
-~16323~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2002~
-~16323~^~320~^0.^0^^~1~^^^^^^^^^^^~06/01/2002~
-~16323~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~
-~16323~^~417~^75.^0^^~1~^^^^^^^^^^^~12/01/1986~
-~16323~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~
-~16323~^~432~^75.^0^^~1~^^^^^^^^^^^~12/01/1986~
-~16323~^~435~^75.^0^^~4~^~NC~^^^^^^^^^^~01/01/2001~
-~16323~^~601~^0.^0^^~1~^^^^^^^^^^^~12/01/1986~
-~16325~^~208~^118.^0^^~4~^~NC~^^^^^^^^^^~12/01/1986~
-~16325~^~268~^494.^0^^~4~^^^^^^^^^^^
-~16325~^~301~^68.^20^1.^~1~^^^^^^^^^^^~12/01/1986~
-~16325~^~304~^50.^20^1.^~1~^^^^^^^^^^^~12/01/1986~
-~16325~^~305~^165.^20^4.^~1~^^^^^^^^^^^~12/01/1986~
-~16325~^~306~^391.^20^10.^~1~^^^^^^^^^^^~12/01/1986~
-~16325~^~307~^238.^0^^~1~^^^^^^^^^^^~12/01/1986~
-~16325~^~318~^1.^0^^~1~^^^^^^^^^^^~12/01/1986~
-~16325~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2002~
-~16325~^~320~^0.^0^^~1~^^^^^^^^^^^~06/01/2002~
-~16325~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~
-~16325~^~417~^102.^13^18.^~1~^^^^^^^^^^^~12/01/1986~
-~16325~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~
-~16325~^~432~^102.^13^18.^~1~^^^^^^^^^^^~12/01/1986~
-~16325~^~435~^102.^0^^~4~^~NC~^^^^^^^^^^~01/01/2001~
-~16325~^~601~^0.^0^^~1~^^^^^^^^^^^~12/01/1986~
-~16326~^~208~^114.^0^^~4~^~NC~^^^^^^^^^^~01/01/2013~
-~16326~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2013~
-~16326~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2013~
-~16326~^~268~^479.^0^^~4~^~NC~^^^^^^^^^^~01/01/2013~
-~16326~^~301~^53.^0^^~1~^^^^^^^^^^^~01/01/2013~
-~16326~^~304~^51.^0^^~1~^^^^^^^^^^^~01/01/2013~
-~16326~^~305~^136.^0^^~1~^^^^^^^^^^^~01/01/2013~
-~16326~^~306~^351.^0^^~1~^^^^^^^^^^^~01/01/2013~
-~16326~^~307~^177.^0^^~8~^~LC~^^^^^^^^^^~01/01/2013~
-~16326~^~318~^1.^0^^~1~^^^^^^^^^^^~01/01/2013~
-~16326~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2013~
-~16326~^~320~^0.^0^^~4~^~NC~^^^^^^^^^^~01/01/2013~
-~16326~^~321~^0.^0^^~4~^~BFSN~^~16044~^^^^^^^^^~01/01/2013~
-~16326~^~322~^0.^0^^~4~^~BFSN~^~16044~^^^^^^^^^~01/01/2013~
-~16326~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2013~
-~16326~^~334~^0.^0^^~4~^~BFSN~^~16044~^^^^^^^^^~01/01/2013~
-~16326~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2013~
-~16326~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2013~
-~16326~^~417~^81.^0^^~1~^^^^^^^^^^^~01/01/2013~
-~16326~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2013~
-~16326~^~432~^81.^0^^~1~^^^^^^^^^^^~01/01/2013~
-~16326~^~435~^81.^0^^~4~^~NC~^^^^^^^^^^~01/01/2013~
-~16326~^~601~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2013~
-~16328~^~208~^127.^0^^~4~^~NC~^^^^^^^^^^~02/01/2003~
-~16328~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~
-~16328~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~
-~16328~^~268~^532.^0^^~4~^~NC~^^^^^^^^^^~02/01/2003~
-~16328~^~301~^28.^30^1.^~1~^^^^^^^^^^^~12/01/1986~
-~16328~^~304~^45.^29^0.^~1~^^^^^^^^^^^~12/01/1986~
-~16328~^~305~^142.^30^5.^~1~^^^^^^^^^^^~12/01/1986~
-~16328~^~306~^403.^31^11.^~1~^^^^^^^^^^^~12/01/1986~
-~16328~^~307~^238.^0^^~1~^^^^^^^^^^^~12/01/1986~
-~16328~^~318~^0.^0^^~4~^~NC~^^^^^^^^^^~02/01/2003~
-~16328~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2002~
-~16328~^~320~^0.^0^^~4~^~NC~^^^^^^^^^^~02/01/2003~
-~16328~^~321~^0.^0^^~4~^~BFSN~^~16043~^^^^^^^^^~02/01/2003~
-~16328~^~322~^0.^0^^~4~^~BFSN~^~16043~^^^^^^^^^~02/01/2003~
-~16328~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~
-~16328~^~334~^0.^0^^~4~^~BFSN~^~16043~^^^^^^^^^~02/01/2003~
-~16328~^~337~^0.^0^^~4~^~BFSN~^~16043~^^^^^^^^^~02/01/2003~
-~16328~^~338~^0.^0^^~4~^~BFSN~^~16043~^^^^^^^^^~02/01/2003~
-~16328~^~417~^130.^8^3.^~1~^^^^^^^^^^^~12/01/1986~
-~16328~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~
-~16328~^~432~^130.^8^3.^~1~^^^^^^^^^^^~02/01/2003~
-~16328~^~435~^130.^0^^~4~^~NC~^^^^^^^^^^~02/01/2003~
-~16328~^~601~^0.^0^^~1~^^^^^^^^^^^~12/01/1986~
-~16331~^~208~^124.^0^^~4~^~NC~^^^^^^^^^^~12/01/1986~
-~16331~^~268~^519.^0^^~4~^^^^^^^^^^^~05/01/2005~
-~16331~^~301~^66.^0^^~1~^^^^^^^^^^^~12/01/1986~
-~16331~^~304~^48.^0^^~1~^^^^^^^^^^^~12/01/1986~
-~16331~^~305~^137.^0^^~1~^^^^^^^^^^^~12/01/1986~
-~16331~^~306~^419.^0^^~1~^^^^^^^^^^^~12/01/1986~
-~16331~^~307~^240.^0^^~1~^^^^^^^^^^^~12/01/1986~
-~16331~^~318~^0.^0^^~1~^~AS~^^^^^^^^^^~05/01/2005~
-~16331~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2002~
-~16331~^~320~^0.^0^^~1~^~AS~^^^^^^^^^^~05/01/2005~
-~16331~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~
-~16331~^~417~^74.^0^^~1~^^^^^^^^^^^~12/01/1986~
-~16331~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~
-~16331~^~432~^74.^0^^~1~^^^^^^^^^^^~12/01/1986~
-~16331~^~435~^74.^0^^~4~^~NC~^^^^^^^^^^~05/01/2005~
-~16331~^~601~^0.^0^^~1~^^^^^^^^^^^~12/01/1986~
-~16333~^~208~^127.^0^^~4~^~NC~^^^^^^^^^^~04/01/2007~
-~16333~^~268~^532.^0^^~4~^~NC~^^^^^^^^^^~04/01/2007~
-~16333~^~301~^28.^30^1.^~1~^^^^^^^^^^^~12/01/1986~
-~16333~^~304~^45.^29^0.^~1~^^^^^^^^^^^~12/01/1986~
-~16333~^~305~^142.^30^5.^~1~^^^^^^^^^^^~12/01/1986~
-~16333~^~306~^403.^31^11.^~1~^^^^^^^^^^^~12/01/1986~
-~16333~^~307~^238.^0^^~1~^^^^^^^^^^^~12/01/1986~
-~16333~^~318~^0.^0^^~4~^~NC~^^^^^^^^^^~04/01/2007~
-~16333~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2002~
-~16333~^~320~^0.^0^^~4~^~NC~^^^^^^^^^^~04/01/2007~
-~16333~^~321~^0.^0^^~4~^~BFSN~^~16028~^^^^^^^^^~04/01/2007~
-~16333~^~322~^0.^0^^~4~^~BFSN~^~16028~^^^^^^^^^~04/01/2007~
-~16333~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~
-~16333~^~334~^0.^0^^~4~^~BFSN~^~16028~^^^^^^^^^~04/01/2007~
-~16333~^~337~^0.^0^^~4~^~BFSN~^~16028~^^^^^^^^^~04/01/2007~
-~16333~^~338~^0.^0^^~4~^~BFSN~^~16028~^^^^^^^^^~04/01/2007~
-~16333~^~417~^130.^8^3.^~1~^^^^^^^^^^^~12/01/1986~
-~16333~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~
-~16333~^~432~^130.^8^3.^~1~^^^^^^^^^^^~04/01/2007~
-~16333~^~435~^130.^0^^~4~^~NC~^^^^^^^^^^~04/01/2007~
-~16333~^~601~^0.^0^^~1~^^^^^^^^^^^~12/01/1986~
-~16335~^~208~^121.^0^^~4~^~NC~^^^^^^^^^^~04/01/2011~
-~16335~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2011~
-~16335~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2011~
-~16335~^~268~^505.^0^^~4~^~NC~^^^^^^^^^^~04/01/2011~
-~16335~^~301~^58.^4^4.^~1~^~A~^^^1^46.^68.^3^43.^72.^~2, 3~^~04/01/2011~
-~16335~^~304~^29.^4^0.^~1~^~A~^^^1^28.^30.^3^26.^30.^~2, 3~^~04/01/2011~
-~16335~^~305~^118.^4^5.^~1~^~A~^^^1^103.^129.^3^100.^135.^~2, 3~^~04/01/2011~
-~16335~^~306~^250.^4^6.^~1~^~A~^^^1^233.^262.^3^230.^268.^~2, 3~^~04/01/2011~
-~16335~^~307~^208.^4^26.^~1~^~A~^^^1^164.^274.^3^123.^292.^~2, 3~^~04/01/2011~
-~16335~^~318~^0.^0^^~4~^~NC~^^^^^^^^^^~04/01/2011~
-~16335~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2011~
-~16335~^~320~^0.^0^^~4~^~NC~^^^^^^^^^^~04/01/2011~
-~16335~^~321~^0.^0^^~4~^~BFSN~^~16034~^^^^^^^^^~04/01/2011~
-~16335~^~322~^0.^0^^~4~^~BFSN~^~16034~^^^^^^^^^~04/01/2011~
-~16335~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2011~
-~16335~^~334~^0.^0^^~4~^~BFSN~^~16034~^^^^^^^^^~04/01/2011~
-~16335~^~337~^0.^0^^~4~^~BFSN~^~16034~^^^^^^^^^~04/01/2011~
-~16335~^~338~^0.^0^^~4~^~BFSN~^~16034~^^^^^^^^^~04/01/2011~
-~16335~^~417~^23.^0^^~1~^~A~^^^^^^^^^^~04/01/2011~
-~16335~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2011~
-~16335~^~432~^23.^0^^~1~^~A~^^^^^^^^^^~04/01/2011~
-~16335~^~435~^23.^0^^~4~^~NC~^^^^^^^^^^~04/01/2011~
-~16335~^~601~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2011~
-~16336~^~208~^123.^0^^~4~^~NC~^^^^^^^^^^~12/01/1986~
-~16336~^~268~^515.^0^^~4~^^^^^^^^^^^
-~16336~^~301~^44.^0^^~1~^^^^^^^^^^^~12/01/1986~
-~16336~^~304~^42.^0^^~1~^^^^^^^^^^^~12/01/1986~
-~16336~^~305~^142.^0^^~1~^^^^^^^^^^^~12/01/1986~
-~16336~^~306~^378.^0^^~1~^^^^^^^^^^^~12/01/1986~
-~16336~^~307~^241.^0^^~1~^^^^^^^^^^^~12/01/1986~
-~16336~^~318~^3.^0^^~1~^^^^^^^^^^^~12/01/1986~
-~16336~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2002~
-~16336~^~320~^0.^0^^~1~^^^^^^^^^^^~06/01/2002~
-~16336~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~
-~16336~^~417~^74.^0^^~1~^^^^^^^^^^^~12/01/1986~
-~16336~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~
-~16336~^~432~^74.^0^^~1~^^^^^^^^^^^~12/01/1986~
-~16336~^~435~^74.^0^^~4~^~NC~^^^^^^^^^^~01/01/2001~
-~16336~^~601~^0.^0^^~1~^^^^^^^^^^^~12/01/1986~
-~16337~^~208~^81.^0^^~4~^~NC~^^^^^^^^^^~01/01/2013~
-~16337~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2013~
-~16337~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2013~
-~16337~^~268~^341.^0^^~4~^~NC~^^^^^^^^^^~01/01/2013~
-~16337~^~301~^29.^48^0.^~6~^~JA~^^^3^27.^55.^3^28.^30.^~2, 3~^~01/01/2013~
-~16337~^~304~^30.^6^0.^~6~^~JA~^^^3^24.^33.^3^26.^32.^~2, 3~^~01/01/2013~
-~16337~^~305~^106.^6^1.^~6~^~JA~^^^3^75.^118.^3^100.^111.^~2, 3~^~01/01/2013~
-~16337~^~306~^260.^45^15.^~6~^~JA~^^^3^216.^306.^39^228.^290.^~2, 3~^~01/01/2013~
-~16337~^~307~^117.^4^18.^~8~^~LC~^^^4^88.^169.^^^^^~01/01/2013~
-~16337~^~318~^0.^0^^~1~^^^^^^^^^^^~01/01/2013~
-~16337~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2013~
-~16337~^~320~^0.^0^^~1~^~AS~^^^^^^^^^^~01/01/2013~
-~16337~^~321~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2013~
-~16337~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2013~
-~16337~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2013~
-~16337~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2013~
-~16337~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2013~
-~16337~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2013~
-~16337~^~417~^26.^0^^~1~^~AS~^^^^^^^^^^~01/01/2013~
-~16337~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2013~
-~16337~^~432~^26.^0^^~1~^~AS~^^^^^^^^^^~01/01/2013~
-~16337~^~435~^26.^0^^~4~^~NC~^^^^^^^^^^~01/01/2013~
-~16337~^~601~^0.^0^^~1~^^^^^^^^^^^~01/01/2013~
-~16338~^~208~^140.^0^^~4~^~NC~^^^^^^^^^^~11/01/2006~
-~16338~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2014~
-~16338~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2014~
-~16338~^~268~^585.^0^^~4~^~NC~^^^^^^^^^^~11/01/2006~
-~16338~^~301~^69.^44^2.^~11~^~JO~^^^5^36.^117.^32^64.^74.^~2, 3~^~04/01/2004~
-~16338~^~304~^53.^45^0.^~11~^~JO~^^^5^31.^71.^34^51.^55.^~2, 3~^~04/01/2004~
-~16338~^~305~^144.^44^3.^~11~^~JO~^^^5^95.^199.^35^137.^150.^~2, 3~^~04/01/2004~
-~16338~^~306~^389.^45^10.^~11~^~JO~^^^5^247.^580.^33^367.^411.^~2, 3~^~04/01/2004~
-~16338~^~307~^237.^0^^~1~^^^^^^^^^^^~12/01/1986~
-~16338~^~318~^0.^0^^~4~^~NC~^^^^^^^^^^~11/01/2006~
-~16338~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2002~
-~16338~^~320~^0.^0^^~4~^~NC~^^^^^^^^^^~11/01/2006~
-~16338~^~321~^0.^0^^~4~^~BFSY~^~16037~^^^^^^^^^~11/01/2006~
-~16338~^~322~^0.^0^^~4~^~BFSY~^~16037~^^^^^^^^^~11/01/2006~
-~16338~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~
-~16338~^~334~^0.^0^^~4~^~BFSY~^~16037~^^^^^^^^^~11/01/2006~
-~16338~^~337~^0.^0^^~4~^~BFSY~^~16037~^^^^^^^^^~11/01/2006~
-~16338~^~338~^0.^0^^~4~^~BFSY~^~16037~^^^^^^^^^~11/01/2006~
-~16338~^~417~^140.^8^6.^~1~^~A~^^^1^114.^163.^7^125.^154.^~2, 3~^~10/01/2014~
-~16338~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~
-~16338~^~432~^140.^8^6.^~1~^~A~^^^1^114.^163.^7^125.^154.^^~10/01/2014~
-~16338~^~435~^140.^0^^~4~^~NC~^^^^^^^^^^~11/01/2006~
-~16338~^~601~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2014~
-~16341~^~208~^149.^0^^~4~^~NC~^^^^^^^^^^~04/01/2007~
-~16341~^~268~^623.^0^^~4~^^^^^^^^^^^~04/01/2007~
-~16341~^~301~^52.^9^2.^~1~^^^^^^^^^^^~12/01/1986~
-~16341~^~304~^65.^9^1.^~1~^^^^^^^^^^^~12/01/1986~
-~16341~^~305~^165.^9^7.^~1~^^^^^^^^^^^~12/01/1986~
-~16341~^~306~^508.^9^15.^~1~^^^^^^^^^^^~12/01/1986~
-~16341~^~307~^238.^0^^~1~^^^^^^^^^^^~12/01/1986~
-~16341~^~318~^0.^0^^~4~^~NC~^^^^^^^^^^~04/01/2007~
-~16341~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2002~
-~16341~^~320~^0.^0^^~4~^~NC~^^^^^^^^^^~04/01/2007~
-~16341~^~321~^0.^0^^~4~^~BFSN~^~16043~^^^^^^^^^~04/01/2007~
-~16341~^~322~^0.^0^^~4~^~BFSN~^~16043~^^^^^^^^^~04/01/2007~
-~16341~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~
-~16341~^~334~^0.^0^^~4~^~BFSN~^~16043~^^^^^^^^^~04/01/2007~
-~16341~^~337~^0.^0^^~4~^~BFSN~^~16043~^^^^^^^^^~04/01/2007~
-~16341~^~338~^0.^0^^~4~^~BFSN~^~16043~^^^^^^^^^~04/01/2007~
-~16341~^~417~^168.^8^13.^~1~^^^^^^^^^^^~12/01/1986~
-~16341~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~
-~16341~^~432~^168.^8^13.^~1~^^^^^^^^^^^~04/01/2007~
-~16341~^~435~^168.^0^^~4~^~NC~^^^^^^^^^^~04/01/2007~
-~16341~^~601~^0.^0^^~1~^^^^^^^^^^^~12/01/1986~
-~16343~^~208~^143.^0^^~4~^~NC~^^^^^^^^^^~06/01/2005~
-~16343~^~268~^600.^0^^~4~^~NC~^^^^^^^^^^~06/01/2005~
-~16343~^~301~^46.^65^0.^~11~^~JO~^^^12^32.^67.^44^44.^48.^~2, 3~^~04/01/2004~
-~16343~^~304~^50.^66^0.^~11~^~JO~^^^12^35.^71.^44^48.^51.^~2, 3~^~04/01/2004~
-~16343~^~305~^147.^65^2.^~11~^~JO~^^^12^107.^205.^42^141.^151.^~2, 3~^~04/01/2004~
-~16343~^~306~^436.^66^8.^~11~^~JO~^^^12^264.^650.^41^417.^454.^~2, 3~^~04/01/2004~
-~16343~^~307~^238.^0^^~1~^^^^^^^^^^^~04/01/2004~
-~16343~^~318~^0.^0^^~1~^~AS~^^^^^^^^^^~06/01/2005~
-~16343~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2002~
-~16343~^~320~^0.^0^^~1~^~AS~^^^^^^^^^^~06/01/2005~
-~16343~^~321~^0.^2^^~1~^~A~^^^1^0.^0.^^^^~1~^~04/01/2004~
-~16343~^~322~^0.^2^^~1~^~A~^^^1^0.^0.^^^^~1~^~04/01/2004~
-~16343~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~
-~16343~^~334~^0.^2^^~1~^~A~^^^1^0.^0.^^^^~1~^~04/01/2004~
-~16343~^~337~^0.^2^^~1~^~A~^^^1^0.^0.^^^^~1~^~04/01/2004~
-~16343~^~338~^0.^0^^~4~^~BFZN~^~16043~^^^^^^^^^~06/01/2005~
-~16343~^~417~^172.^8^7.^~1~^^^^1^145.^204.^7^154.^189.^~2, 3~^~06/01/2005~
-~16343~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~
-~16343~^~432~^172.^8^7.^~1~^^^^1^145.^204.^7^154.^189.^^~06/01/2005~
-~16343~^~435~^172.^0^^~4~^~NC~^^^^^^^^^^~06/01/2005~
-~16343~^~601~^0.^0^^~1~^^^^^^^^^^^~04/01/2004~
-~16345~^~208~^117.^0^^~4~^~NC~^^^^^^^^^^~04/01/2011~
-~16345~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2011~
-~16345~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2011~
-~16345~^~268~^490.^0^^~4~^~NC~^^^^^^^^^^~04/01/2011~
-~16345~^~301~^64.^4^7.^~1~^~A~^^^1^46.^79.^3^39.^88.^~2, 3~^~04/01/2011~
-~16345~^~304~^30.^4^2.^~1~^~A~^^^1^25.^34.^3^23.^37.^~2, 3~^~04/01/2011~
-~16345~^~305~^96.^4^6.^~1~^~A~^^^1^78.^105.^3^75.^116.^~2, 3~^~04/01/2011~
-~16345~^~306~^234.^4^20.^~1~^~A~^^^1^173.^257.^3^168.^298.^~2, 3~^~04/01/2011~
-~16345~^~307~^212.^4^13.^~1~^~A~^^^1^184.^246.^3^168.^255.^~2, 3~^~04/01/2011~
-~16345~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2011~
-~16345~^~417~^21.^0^^~1~^~A~^^^^^^^^^^~04/01/2011~
-~16345~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2011~
-~16345~^~432~^21.^0^^~1~^~A~^^^^^^^^^^~04/01/2011~
-~16345~^~435~^21.^0^^~4~^~NC~^^^^^^^^^^~04/01/2011~
-~16345~^~601~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2011~
-~16346~^~208~^142.^0^^~4~^~NC~^^^^^^^^^^~12/01/1986~
-~16346~^~268~^594.^0^^~4~^^^^^^^^^^^
-~16346~^~301~^73.^9^4.^~1~^^^^^^^^^^^~12/01/1986~
-~16346~^~304~^68.^8^2.^~1~^^^^^^^^^^^~12/01/1986~
-~16346~^~305~^169.^9^12.^~1~^^^^^^^^^^^~12/01/1986~
-~16346~^~306~^463.^9^18.^~1~^^^^^^^^^^^~12/01/1986~
-~16346~^~307~^238.^0^^~1~^^^^^^^^^^^~12/01/1986~
-~16346~^~318~^0.^0^^~1~^^^^^^^^^^^~12/01/1986~
-~16346~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2002~
-~16346~^~320~^0.^0^^~1~^^^^^^^^^^^~06/01/2002~
-~16346~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~
-~16346~^~417~^137.^8^7.^~1~^^^^^^^^^^^~12/01/1986~
-~16346~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~
-~16346~^~432~^137.^8^7.^~1~^^^^^^^^^^^~12/01/1986~
-~16346~^~435~^137.^0^^~4~^~NC~^^^^^^^^^^~01/01/2001~
-~16346~^~601~^0.^0^^~1~^^^^^^^^^^^~12/01/1986~
-~16347~^~208~^82.^0^^~4~^~NC~^^^^^^^^^^~01/01/2013~
-~16347~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2013~
-~16347~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2013~
-~16347~^~268~^345.^0^^~4~^~NC~^^^^^^^^^^~01/01/2013~
-~16347~^~301~^47.^27^3.^~6~^~JA~^^^4^25.^119.^12^40.^53.^~2, 3~^~01/01/2013~
-~16347~^~304~^33.^4^2.^~1~^~A~^^^1^27.^39.^3^24.^41.^~2, 3~^~01/01/2013~
-~16347~^~305~^92.^4^4.^~1~^~A~^^^1^77.^99.^3^76.^107.^~2, 3~^~01/01/2013~
-~16347~^~306~^276.^12^17.^~6~^~JA~^^^2^160.^351.^9^237.^314.^~2, 3~^~01/01/2013~
-~16347~^~307~^146.^0^^~8~^~LC~^^^^^^^^^^~01/01/2013~
-~16347~^~318~^0.^0^^~4~^~NC~^^^^^^^^^^~05/01/2013~
-~16347~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2013~
-~16347~^~320~^0.^0^^~4~^~NC~^^^^^^^^^^~01/01/2013~
-~16347~^~321~^0.^0^^~4~^~BFSN~^~16043~^^^^^^^^^~01/01/2013~
-~16347~^~322~^0.^0^^~4~^~BFSN~^~16043~^^^^^^^^^~01/01/2013~
-~16347~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2013~
-~16347~^~334~^0.^0^^~4~^~BFSN~^~16043~^^^^^^^^^~01/01/2013~
-~16347~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2013~
-~16347~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2013~
-~16347~^~417~^24.^0^^~1~^~A~^^^^^^^^^^~01/01/2013~
-~16347~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2013~
-~16347~^~432~^24.^0^^~1~^~A~^^^^^^^^^^~01/01/2013~
-~16347~^~435~^24.^0^^~4~^~NC~^^^^^^^^^^~01/01/2013~
-~16347~^~601~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2013~
-~16348~^~208~^144.^0^^~4~^~NC~^^^^^^^^^^~12/01/1986~
-~16348~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~11/01/2014~
-~16348~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~11/01/2014~
-~16348~^~268~^601.^0^^~4~^~NC~^^^^^^^^^^~11/01/2014~
-~16348~^~301~^62.^0^^~1~^^^^^^^^^^^~12/01/1986~
-~16348~^~304~^74.^0^^~1~^^^^^^^^^^^~12/01/1986~
-~16348~^~305~^183.^0^^~1~^^^^^^^^^^^~12/01/1986~
-~16348~^~306~^325.^0^^~1~^^^^^^^^^^^~12/01/1986~
-~16348~^~307~^241.^0^^~1~^^^^^^^^^^^~12/01/1986~
-~16348~^~318~^2.^0^^~1~^^^^^^^^^^^~12/01/1986~
-~16348~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2002~
-~16348~^~320~^0.^0^^~1~^~AS~^^^^^^^^^^~06/01/2002~
-~16348~^~321~^0.^0^^~7~^~Z~^^^^^^^^^^~11/01/2014~
-~16348~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~11/01/2014~
-~16348~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~
-~16348~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~11/01/2014~
-~16348~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~11/01/2014~
-~16348~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~11/01/2014~
-~16348~^~417~^81.^0^^~1~^^^^^^^^^^^~12/01/1986~
-~16348~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~
-~16348~^~432~^81.^0^^~1~^^^^^^^^^^^~12/01/1986~
-~16348~^~435~^81.^0^^~4~^~NC~^^^^^^^^^^~01/01/2001~
-~16348~^~601~^0.^0^^~1~^^^^^^^^^^^~12/01/1986~
-~16350~^~208~^139.^0^^~4~^~NC~^^^^^^^^^^~04/01/2007~
-~16350~^~268~^581.^0^^~4~^~NC~^^^^^^^^^^~04/01/2007~
-~16350~^~301~^90.^0^^~1~^^^^^^^^^^^~12/01/1986~
-~16350~^~304~^63.^0^^~1~^^^^^^^^^^^~12/01/1986~
-~16350~^~305~^113.^0^^~1~^^^^^^^^^^^~12/01/1986~
-~16350~^~306~^561.^0^^~1~^^^^^^^^^^^~12/01/1986~
-~16350~^~307~^242.^0^^~1~^^^^^^^^^^^~12/01/1986~
-~16350~^~318~^0.^0^^~4~^~NC~^^^^^^^^^^~04/01/2007~
-~16350~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2002~
-~16350~^~320~^0.^0^^~4~^~NC~^^^^^^^^^^~04/01/2007~
-~16350~^~321~^0.^0^^~4~^~BFSN~^~16043~^^^^^^^^^~04/01/2007~
-~16350~^~322~^0.^0^^~4~^~BFSN~^~16043~^^^^^^^^^~04/01/2007~
-~16350~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~
-~16350~^~334~^0.^0^^~4~^~BFSN~^~16043~^^^^^^^^^~04/01/2007~
-~16350~^~337~^0.^0^^~4~^~BFSN~^~16043~^^^^^^^^^~04/01/2007~
-~16350~^~338~^0.^0^^~4~^~BFSN~^~16043~^^^^^^^^^~04/01/2007~
-~16350~^~417~^81.^0^^~1~^^^^^^^^^^^~12/01/1986~
-~16350~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~
-~16350~^~432~^81.^0^^~1~^^^^^^^^^^^~04/01/2007~
-~16350~^~435~^81.^0^^~4~^~NC~^^^^^^^^^^~04/01/2007~
-~16350~^~601~^0.^0^^~1~^^^^^^^^^^^~12/01/1986~
-~16353~^~208~^110.^0^^~4~^~NC~^^^^^^^^^^~04/01/2007~
-~16353~^~268~^460.^0^^~4~^^^^^^^^^^^~04/01/2007~
-~16353~^~301~^36.^8^1.^~1~^^^^^^^^^^^~12/01/1986~
-~16353~^~304~^43.^8^2.^~1~^^^^^^^^^^^~12/01/1986~
-~16353~^~305~^125.^8^9.^~1~^^^^^^^^^^^~12/01/1986~
-~16353~^~306~^268.^8^27.^~1~^^^^^^^^^^^~12/01/1986~
-~16353~^~307~^241.^0^^~1~^^^^^^^^^^^~12/01/1986~
-~16353~^~318~^15.^0^^~4~^~NC~^^^^^^^^^^~04/01/2007~
-~16353~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2002~
-~16353~^~320~^1.^0^^~4~^~NC~^^^^^^^^^^~04/01/2007~
-~16353~^~321~^9.^0^^~4~^~O~^^^^^^^^^^~02/01/2003~
-~16353~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~
-~16353~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~
-~16353~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~
-~16353~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~
-~16353~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~
-~16353~^~417~^104.^8^6.^~1~^^^^^^^^^^^~12/01/1986~
-~16353~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~
-~16353~^~432~^104.^8^6.^~1~^^^^^^^^^^^~04/01/2007~
-~16353~^~435~^104.^0^^~4~^~NC~^^^^^^^^^^~04/01/2007~
-~16353~^~601~^0.^0^^~1~^^^^^^^^^^^~12/01/1986~
-~16357~^~208~^164.^0^^~4~^~NC~^^^^^^^^^^~04/01/2007~
-~16357~^~268~^686.^0^^~4~^~NC~^^^^^^^^^^~04/01/2007~
-~16357~^~301~^49.^21^1.^~1~^^^^^^^^^^^~12/01/1986~
-~16357~^~304~^48.^21^1.^~1~^^^^^^^^^^^~12/01/1986~
-~16357~^~305~^168.^21^7.^~1~^^^^^^^^^^^~12/01/1986~
-~16357~^~306~^291.^21^10.^~1~^^^^^^^^^^^~12/01/1986~
-~16357~^~307~^243.^0^^~1~^^^^^^^^^^^~12/01/1986~
-~16357~^~318~^27.^0^^~4~^~NC~^^^^^^^^^^~04/01/2007~
-~16357~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2002~
-~16357~^~320~^1.^0^^~4~^~NC~^^^^^^^^^^~04/01/2007~
-~16357~^~321~^16.^0^^~4~^~BFZN~^~16057~^^^^^^^^^~02/01/2003~
-~16357~^~322~^0.^0^^~4~^~BFZN~^~16057~^^^^^^^^^~02/01/2003~
-~16357~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~
-~16357~^~334~^0.^0^^~4~^~BFZN~^~16057~^^^^^^^^^~02/01/2003~
-~16357~^~337~^0.^0^^~4~^~BFZN~^~16057~^^^^^^^^^~02/01/2003~
-~16357~^~338~^0.^0^^~4~^~BFZN~^~16057~^^^^^^^^^~02/01/2003~
-~16357~^~417~^172.^8^9.^~1~^^^^^^^^^^^~12/01/1986~
-~16357~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~
-~16357~^~432~^172.^8^9.^~1~^^^^^^^^^^^~04/01/2007~
-~16357~^~435~^172.^0^^~4~^~NC~^^^^^^^^^^~04/01/2007~
-~16357~^~601~^0.^0^^~1~^^^^^^^^^^^~12/01/1986~
-~16358~^~208~^139.^0^^~4~^~NC~^^^^^^^^^^~05/01/2011~
-~16358~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2011~
-~16358~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2011~
-~16358~^~268~^583.^0^^~4~^~NC~^^^^^^^^^^~05/01/2011~
-~16358~^~301~^45.^4^5.^~1~^~A~^^^1^29.^52.^3^28.^61.^~2, 3~^~05/01/2011~
-~16358~^~304~^26.^4^0.^~1~^~A~^^^1^24.^28.^3^23.^28.^~2, 3~^~05/01/2011~
-~16358~^~305~^85.^4^4.^~1~^~A~^^^1^74.^95.^3^70.^98.^~2, 3~^~05/01/2011~
-~16358~^~306~^126.^4^7.^~1~^~A~^^^1^108.^145.^3^101.^150.^~2, 3~^~05/01/2011~
-~16358~^~307~^246.^4^20.^~1~^~A~^^^1^215.^303.^3^181.^311.^~2, 3~^~05/01/2011~
-~16358~^~318~^23.^0^^~4~^~NC~^^^^^^^^^^~05/01/2011~
-~16358~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2011~
-~16358~^~320~^1.^0^^~4~^~NC~^^^^^^^^^^~05/01/2011~
-~16358~^~321~^14.^0^^~4~^~BFSN~^~16057~^^^^^^^^^~05/01/2011~
-~16358~^~322~^0.^0^^~4~^~BFSN~^~16057~^^^^^^^^^~05/01/2011~
-~16358~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2011~
-~16358~^~334~^0.^0^^~4~^~BFSN~^~16057~^^^^^^^^^~05/01/2011~
-~16358~^~337~^0.^0^^~4~^~BFSN~^~16057~^^^^^^^^^~05/01/2011~
-~16358~^~338~^0.^0^^~4~^~BFSN~^~16057~^^^^^^^^^~05/01/2011~
-~16358~^~417~^48.^0^^~1~^~A~^^^^^^^^^^~05/01/2011~
-~16358~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2011~
-~16358~^~432~^48.^0^^~1~^~A~^^^^^^^^^^~05/01/2011~
-~16358~^~435~^48.^0^^~4~^~NC~^^^^^^^^^^~05/01/2011~
-~16358~^~601~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2011~
-~16359~^~208~^138.^0^^~4~^~NC~^^^^^^^^^^~05/01/2011~
-~16359~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2011~
-~16359~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2011~
-~16359~^~268~^578.^0^^~4~^~NC~^^^^^^^^^^~05/01/2011~
-~16359~^~301~^43.^4^4.^~1~^~A~^^^1^28.^48.^3^27.^58.^~2, 3~^~05/01/2011~
-~16359~^~304~^24.^4^1.^~1~^~A~^^^1^21.^28.^3^19.^28.^~2, 3~^~05/01/2011~
-~16359~^~305~^80.^4^5.^~1~^~A~^^^1^69.^95.^3^62.^97.^~2, 3~^~05/01/2011~
-~16359~^~306~^109.^4^8.^~1~^~A~^^^1^94.^132.^3^83.^134.^~2, 3~^~05/01/2011~
-~16359~^~307~^212.^4^17.^~1~^~A~^^^1^185.^259.^3^157.^267.^~2, 3~^~05/01/2011~
-~16359~^~318~^22.^0^^~4~^~NC~^^^^^^^^^^~05/01/2011~
-~16359~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2011~
-~16359~^~320~^1.^0^^~4~^~NC~^^^^^^^^^^~05/01/2011~
-~16359~^~321~^13.^0^^~4~^~BFSN~^~16057~^^^^^^^^^~05/01/2011~
-~16359~^~322~^0.^0^^~4~^~BFSN~^~16057~^^^^^^^^^~05/01/2011~
-~16359~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2011~
-~16359~^~334~^0.^0^^~4~^~BFSN~^~16057~^^^^^^^^^~05/01/2011~
-~16359~^~337~^0.^0^^~4~^~BFSN~^~16057~^^^^^^^^^~05/01/2011~
-~16359~^~338~^0.^0^^~4~^~BFSN~^~16057~^^^^^^^^^~05/01/2011~
-~16359~^~417~^41.^0^^~1~^~A~^^^^^^^^^^~05/01/2011~
-~16359~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2011~
-~16359~^~432~^41.^0^^~1~^~A~^^^^^^^^^^~05/01/2011~
-~16359~^~435~^41.^0^^~4~^~NC~^^^^^^^^^^~05/01/2011~
-~16359~^~601~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2011~
-~16360~^~208~^88.^0^^~4~^~NC~^^^^^^^^^^~01/01/2013~
-~16360~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2013~
-~16360~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2013~
-~16360~^~268~^369.^0^^~4~^~NC~^^^^^^^^^^~01/01/2013~
-~16360~^~301~^35.^4^3.^~1~^~A~^^^1^24.^41.^3^22.^46.^~2, 3~^~01/01/2013~
-~16360~^~304~^27.^4^0.^~1~^~A~^^^1^26.^27.^3^25.^27.^~2, 3~^~01/01/2013~
-~16360~^~305~^80.^4^2.^~1~^~A~^^^1^73.^87.^3^70.^89.^~2, 3~^~01/01/2013~
-~16360~^~306~^144.^4^11.^~1~^~A~^^^1^121.^175.^3^107.^180.^~2, 3~^~01/01/2013~
-~16360~^~307~^132.^5^17.^~8~^~LC~^^^^122.^130.^^^^^~01/01/2013~
-~16360~^~318~^15.^0^^~4~^~NC~^^^^^^^^^^~01/01/2013~
-~16360~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2013~
-~16360~^~320~^1.^0^^~4~^~NC~^^^^^^^^^^~01/01/2013~
-~16360~^~321~^9.^0^^~4~^~BFSN~^~16057~^^^^^^^^^~01/01/2013~
-~16360~^~322~^0.^0^^~4~^~BFSN~^~16057~^^^^^^^^^~01/01/2013~
-~16360~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2013~
-~16360~^~334~^0.^0^^~4~^~BFSN~^~16057~^^^^^^^^^~01/01/2013~
-~16360~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2013~
-~16360~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2013~
-~16360~^~417~^25.^4^1.^~1~^~A~^^^1^20.^29.^3^18.^31.^~2, 3~^~01/01/2013~
-~16360~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2013~
-~16360~^~432~^25.^4^1.^~1~^~A~^^^1^20.^29.^3^18.^31.^~2, 3~^~01/01/2013~
-~16360~^~435~^25.^0^^~4~^~NC~^^^^^^^^^^~01/01/2013~
-~16360~^~601~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2013~
-~16361~^~208~^117.^0^^~4~^~NC~^^^^^^^^^^~12/01/1986~
-~16361~^~268~^490.^0^^~4~^^^^^^^^^^^
-~16361~^~301~^26.^0^^~1~^^^^^^^^^^^~12/01/1986~
-~16361~^~304~^96.^0^^~1~^^^^^^^^^^^~12/01/1986~
-~16361~^~305~^142.^0^^~1~^^^^^^^^^^^~12/01/1986~
-~16361~^~306~^375.^0^^~1~^^^^^^^^^^^~12/01/1986~
-~16361~^~307~^255.^0^^~1~^^^^^^^^^^^~12/01/1986~
-~16361~^~318~^10.^0^^~1~^^^^^^^^^^^~12/01/1986~
-~16361~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2002~
-~16361~^~320~^1.^0^^~1~^^^^^^^^^^^~06/01/2002~
-~16361~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~
-~16361~^~417~^142.^0^^~1~^^^^^^^^^^^~12/01/1986~
-~16361~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~
-~16361~^~432~^142.^0^^~1~^^^^^^^^^^^~12/01/1986~
-~16361~^~435~^142.^0^^~4~^~NC~^^^^^^^^^^~01/01/2001~
-~16361~^~601~^0.^0^^~1~^^^^^^^^^^^~12/01/1986~
-~16363~^~208~^116.^0^^~4~^~NC~^^^^^^^^^^~04/01/2007~
-~16363~^~268~^484.^0^^~4~^~NC~^^^^^^^^^^~04/01/2007~
-~16363~^~301~^24.^28^0.^~1~^^^^^^^^^^^~12/01/1986~
-~16363~^~304~^53.^29^1.^~1~^^^^^^^^^^^~12/01/1986~
-~16363~^~305~^156.^28^4.^~1~^^^^^^^^^^^~12/01/1986~
-~16363~^~306~^278.^29^7.^~1~^^^^^^^^^^^~12/01/1986~
-~16363~^~307~^240.^0^^~1~^^^^^^^^^^^~12/01/1986~
-~16363~^~318~^15.^0^^~4~^~NC~^^^^^^^^^^~04/01/2007~
-~16363~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2002~
-~16363~^~320~^1.^0^^~4~^~NC~^^^^^^^^^^~04/01/2007~
-~16363~^~321~^9.^0^^~4~^~BFZN~^~16063~^^^^^^^^^~02/01/2003~
-~16363~^~322~^0.^0^^~4~^~BFZN~^~16063~^^^^^^^^^~02/01/2003~
-~16363~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~
-~16363~^~334~^0.^0^^~4~^~BFZN~^~16063~^^^^^^^^^~02/01/2003~
-~16363~^~337~^0.^0^^~4~^~BFZN~^~16063~^^^^^^^^^~02/01/2003~
-~16363~^~338~^0.^0^^~4~^~BFZN~^~16063~^^^^^^^^^~02/01/2003~
-~16363~^~417~^208.^8^19.^~1~^^^^^^^^^^^~12/01/1986~
-~16363~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~
-~16363~^~432~^208.^8^19.^~1~^^^^^^^^^^^~04/01/2007~
-~16363~^~435~^208.^0^^~4~^~NC~^^^^^^^^^^~04/01/2007~
-~16363~^~601~^0.^0^^~1~^^^^^^^^^^^~12/01/1986~
-~16368~^~208~^117.^0^^~4~^~NC~^^^^^^^^^^~12/01/1986~
-~16368~^~268~^490.^0^^~4~^^^^^^^^^^^
-~16368~^~301~^40.^0^^~1~^^^^^^^^^^^~12/01/1986~
-~16368~^~304~^82.^0^^~1~^^^^^^^^^^^~12/01/1986~
-~16368~^~305~^120.^0^^~1~^^^^^^^^^^^~12/01/1986~
-~16368~^~306~^337.^0^^~1~^^^^^^^^^^^~12/01/1986~
-~16368~^~307~^243.^0^^~1~^^^^^^^^^^^~12/01/1986~
-~16368~^~318~^0.^0^^~4~^^^^^^^^^^^~12/01/1986~
-~16368~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2002~
-~16368~^~320~^0.^0^^~4~^^^^^^^^^^^~06/01/2002~
-~16368~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~
-~16368~^~417~^4.^0^^~4~^^^^^^^^^^^~12/01/1986~
-~16368~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~
-~16368~^~432~^4.^0^^~4~^^^^^^^^^^^~12/01/1986~
-~16368~^~435~^4.^0^^~4~^~NC~^^^^^^^^^^~01/01/2001~
-~16368~^~601~^0.^0^^~1~^^^^^^^^^^^~12/01/1986~
-~16370~^~208~^114.^0^^~4~^~NC~^^^^^^^^^^~04/01/2007~
-~16370~^~268~^477.^0^^~4~^~NC~^^^^^^^^^^~04/01/2007~
-~16370~^~301~^19.^20^0.^~1~^^^^^^^^^^^~12/01/1986~
-~16370~^~304~^36.^20^1.^~1~^^^^^^^^^^^~12/01/1986~
-~16370~^~305~^180.^20^11.^~1~^^^^^^^^^^^~12/01/1986~
-~16370~^~306~^369.^20^25.^~1~^^^^^^^^^^^~12/01/1986~
-~16370~^~307~^238.^0^^~1~^^^^^^^^^^^~12/01/1986~
-~16370~^~318~^8.^0^^~4~^~NC~^^^^^^^^^^~04/01/2007~
-~16370~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2002~
-~16370~^~320~^0.^0^^~4~^~NC~^^^^^^^^^^~04/01/2007~
-~16370~^~321~^5.^0^^~4~^~BFZN~^~16070~^^^^^^^^^~02/01/2003~
-~16370~^~322~^0.^0^^~4~^~BFZN~^~16070~^^^^^^^^^~02/01/2003~
-~16370~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~
-~16370~^~334~^0.^0^^~4~^~BFZN~^~16070~^^^^^^^^^~02/01/2003~
-~16370~^~337~^0.^0^^~4~^~BFZN~^~16070~^^^^^^^^^~02/01/2003~
-~16370~^~338~^0.^0^^~4~^~BFZN~^~16070~^^^^^^^^^~02/01/2003~
-~16370~^~417~^181.^8^6.^~1~^^^^^^^^^^^~12/01/1986~
-~16370~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~
-~16370~^~432~^181.^8^6.^~1~^^^^^^^^^^^~04/01/2007~
-~16370~^~435~^181.^0^^~4~^~NC~^^^^^^^^^^~04/01/2007~
-~16370~^~601~^0.^0^^~1~^^^^^^^^^^^~12/01/1986~
-~16372~^~208~^115.^0^^~4~^~NC~^^^^^^^^^^~04/01/2007~
-~16372~^~268~^482.^0^^~4~^~NC~^^^^^^^^^^~04/01/2007~
-~16372~^~301~^17.^29^0.^~1~^^^^^^^^^^^~12/01/1986~
-~16372~^~304~^43.^30^1.^~1~^^^^^^^^^^^~12/01/1986~
-~16372~^~305~^111.^29^3.^~1~^^^^^^^^^^^~12/01/1986~
-~16372~^~306~^508.^30^14.^~1~^^^^^^^^^^^~12/01/1986~
-~16372~^~307~^238.^0^^~1~^^^^^^^^^^^~12/01/1986~
-~16372~^~318~^0.^0^^~4~^~NC~^^^^^^^^^^~04/01/2007~
-~16372~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2002~
-~16372~^~320~^0.^0^^~4~^~NC~^^^^^^^^^^~04/01/2007~
-~16372~^~321~^0.^0^^~4~^~BFZN~^~16072~^^^^^^^^^~02/01/2003~
-~16372~^~322~^0.^0^^~4~^~BFZN~^~16072~^^^^^^^^^~02/01/2003~
-~16372~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~
-~16372~^~334~^0.^0^^~4~^~BFZN~^~16072~^^^^^^^^^~02/01/2003~
-~16372~^~337~^0.^0^^~4~^~BFZN~^~16072~^^^^^^^^^~02/01/2003~
-~16372~^~338~^0.^0^^~4~^~BFZN~^~16072~^^^^^^^^^~02/01/2003~
-~16372~^~417~^83.^8^6.^~1~^^^^^^^^^^^~12/01/1986~
-~16372~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~
-~16372~^~432~^83.^8^6.^~1~^^^^^^^^^^^~04/01/2007~
-~16372~^~435~^83.^0^^~4~^~NC~^^^^^^^^^^~04/01/2007~
-~16372~^~601~^0.^0^^~1~^^^^^^^^^^^~12/01/1986~
-~16375~^~208~^126.^0^^~4~^~NC~^^^^^^^^^^~12/01/1986~
-~16375~^~268~^527.^0^^~4~^^^^^^^^^^^
-~16375~^~301~^29.^21^0.^~1~^^^^^^^^^^^~12/01/1986~
-~16375~^~304~^53.^21^3.^~1~^^^^^^^^^^^~12/01/1986~
-~16375~^~305~^127.^21^1.^~1~^^^^^^^^^^^~12/01/1986~
-~16375~^~306~^401.^21^21.^~1~^^^^^^^^^^^~12/01/1986~
-~16375~^~307~^239.^0^^~1~^^^^^^^^^^^~12/01/1986~
-~16375~^~318~^0.^8^0.^~1~^^^^^^^^^^^~12/01/1986~
-~16375~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2002~
-~16375~^~320~^0.^8^0.^~1~^^^^^^^^^^^~06/01/2002~
-~16375~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~
-~16375~^~417~^150.^8^6.^~1~^^^^^^^^^^^~12/01/1986~
-~16375~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~
-~16375~^~432~^150.^8^6.^~1~^^^^^^^^^^^~12/01/1986~
-~16375~^~435~^150.^0^^~4~^~NC~^^^^^^^^^^~01/01/2001~
-~16375~^~601~^0.^0^^~1~^^^^^^^^^^^~12/01/1986~
-~16377~^~208~^116.^0^^~4~^~NC~^^^^^^^^^^~05/01/2006~
-~16377~^~268~^487.^0^^~4~^~NC~^^^^^^^^^^~05/01/2006~
-~16377~^~301~^51.^0^^~1~^^^^^^^^^^^~12/01/1986~
-~16377~^~304~^54.^0^^~1~^^^^^^^^^^^~12/01/1986~
-~16377~^~305~^128.^0^^~1~^^^^^^^^^^^~12/01/1986~
-~16377~^~306~^245.^0^^~1~^^^^^^^^^^^~12/01/1986~
-~16377~^~307~^240.^0^^~1~^^^^^^^^^^^~12/01/1986~
-~16377~^~318~^0.^0^^~1~^~AS~^^^^^^^^^^~05/01/2006~
-~16377~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2002~
-~16377~^~320~^0.^0^^~1~^~AS~^^^^^^^^^^~05/01/2006~
-~16377~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~
-~16377~^~417~^59.^0^^~4~^^^^^^^^^^^~12/01/1986~
-~16377~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~
-~16377~^~432~^59.^0^^~4~^^^^^^^^^^^~12/01/1986~
-~16377~^~435~^59.^0^^~4~^~NC~^^^^^^^^^^~05/01/2006~
-~16377~^~601~^0.^0^^~1~^^^^^^^^^^^~12/01/1986~
-~16379~^~208~^117.^0^^~4~^~NC~^^^^^^^^^^~12/01/1986~
-~16379~^~268~^490.^0^^~4~^^^^^^^^^^^
-~16379~^~301~^3.^0^^~1~^^^^^^^^^^^~12/01/1986~
-~16379~^~304~^104.^0^^~1~^^^^^^^^^^^~12/01/1986~
-~16379~^~305~^150.^0^^~1~^^^^^^^^^^^~12/01/1986~
-~16379~^~306~^304.^0^^~1~^^^^^^^^^^^~12/01/1986~
-~16379~^~307~^246.^0^^~1~^^^^^^^^^^^~12/01/1986~
-~16379~^~318~^10.^0^^~1~^^^^^^^^^^^~12/01/1986~
-~16379~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2002~
-~16379~^~320~^1.^0^^~1~^^^^^^^^^^^~06/01/2002~
-~16379~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~
-~16379~^~417~^143.^0^^~4~^^^^^^^^^^^~12/01/1986~
-~16379~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~
-~16379~^~432~^143.^0^^~4~^^^^^^^^^^^~12/01/1986~
-~16379~^~435~^143.^0^^~4~^~NC~^^^^^^^^^^~01/01/2001~
-~16379~^~601~^0.^0^^~1~^^^^^^^^^^^~12/01/1986~
-~16381~^~208~^105.^0^^~4~^~NC~^^^^^^^^^^~04/01/2007~
-~16381~^~268~^441.^0^^~4~^~NC~^^^^^^^^^^~04/01/2007~
-~16381~^~301~^27.^9^0.^~1~^^^^^^^^^^^~12/01/1986~
-~16381~^~304~^48.^9^1.^~1~^^^^^^^^^^^~12/01/1986~
-~16381~^~305~^99.^9^1.^~1~^^^^^^^^^^^~12/01/1986~
-~16381~^~306~^266.^9^6.^~1~^^^^^^^^^^^~12/01/1986~
-~16381~^~307~^238.^0^^~1~^^^^^^^^^^^~12/01/1986~
-~16381~^~318~^24.^0^^~4~^~NC~^^^^^^^^^^~04/01/2007~
-~16381~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2002~
-~16381~^~320~^1.^0^^~4~^~NC~^^^^^^^^^^~04/01/2007~
-~16381~^~321~^14.^0^^~4~^~BFZN~^~16081~^^^^^^^^^~02/01/2003~
-~16381~^~322~^0.^0^^~4~^~BFZN~^~16081~^^^^^^^^^~02/01/2003~
-~16381~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~
-~16381~^~334~^0.^0^^~4~^~BFZN~^~16081~^^^^^^^^^~02/01/2003~
-~16381~^~337~^0.^0^^~4~^~BFZN~^~16081~^^^^^^^^^~02/01/2003~
-~16381~^~338~^0.^0^^~4~^~BFZN~^~16081~^^^^^^^^^~02/01/2003~
-~16381~^~417~^159.^8^11.^~1~^^^^^^^^^^^~12/01/1986~
-~16381~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~
-~16381~^~432~^159.^8^11.^~1~^^^^^^^^^^^~04/01/2007~
-~16381~^~435~^159.^0^^~4~^~NC~^^^^^^^^^^~04/01/2007~
-~16381~^~601~^0.^0^^~1~^^^^^^^^^^^~12/01/1986~
-~16384~^~208~^105.^0^^~4~^~NC~^^^^^^^^^^~04/01/2007~
-~16384~^~268~^439.^0^^~4~^^^^^^^^^^^~04/01/2007~
-~16384~^~301~^53.^0^^~1~^^^^^^^^^^^~12/01/1986~
-~16384~^~304~^63.^0^^~1~^^^^^^^^^^^~12/01/1986~
-~16384~^~305~^156.^0^^~1~^^^^^^^^^^^~12/01/1986~
-~16384~^~306~^231.^0^^~1~^^^^^^^^^^^~12/01/1986~
-~16384~^~307~^243.^0^^~1~^^^^^^^^^^^~12/01/1986~
-~16384~^~318~^31.^0^^~4~^~NC~^^^^^^^^^^~04/01/2007~
-~16384~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2002~
-~16384~^~320~^2.^0^^~4~^~NC~^^^^^^^^^^~04/01/2007~
-~16384~^~321~^19.^0^^~4~^~BFZN~^~16084~^^^^^^^^^~02/01/2003~
-~16384~^~322~^0.^0^^~4~^~BFZN~^~16084~^^^^^^^^^~02/01/2003~
-~16384~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~
-~16384~^~334~^0.^0^^~4~^~BFZN~^~16084~^^^^^^^^^~02/01/2003~
-~16384~^~337~^0.^0^^~4~^~BFZN~^~16084~^^^^^^^^^~02/01/2003~
-~16384~^~338~^0.^0^^~4~^~BFZN~^~16084~^^^^^^^^^~02/01/2003~
-~16384~^~417~^94.^0^^~1~^^^^^^^^^^^~12/01/1986~
-~16384~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~
-~16384~^~432~^94.^0^^~1~^^^^^^^^^^^~04/01/2007~
-~16384~^~435~^94.^0^^~4~^~NC~^^^^^^^^^^~04/01/2007~
-~16384~^~601~^0.^0^^~1~^^^^^^^^^^^~12/01/1986~
-~16386~^~208~^116.^0^^~4~^~NC~^^^^^^^^^^~04/01/2007~
-~16386~^~268~^484.^0^^~4~^~NC~^^^^^^^^^^~04/01/2007~
-~16386~^~301~^14.^20^0.^~1~^^^^^^^^^^^~12/01/1986~
-~16386~^~304~^36.^20^1.^~1~^^^^^^^^^^^~12/01/1986~
-~16386~^~305~^99.^20^5.^~1~^^^^^^^^^^^~12/01/1986~
-~16386~^~306~^362.^20^27.^~1~^^^^^^^^^^^~12/01/1986~
-~16386~^~307~^238.^0^^~1~^^^^^^^^^^^~12/01/1986~
-~16386~^~318~^7.^0^^~4~^~NC~^^^^^^^^^^~04/01/2007~
-~16386~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2002~
-~16386~^~320~^0.^0^^~4~^~NC~^^^^^^^^^^~04/01/2007~
-~16386~^~321~^4.^0^^~4~^~BFSN~^~16086~^^^^^^^^^~02/01/2003~
-~16386~^~322~^0.^0^^~4~^~BFSN~^~16086~^^^^^^^^^~02/01/2003~
-~16386~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~
-~16386~^~334~^0.^0^^~4~^~BFSN~^~16086~^^^^^^^^^~02/01/2003~
-~16386~^~337~^0.^0^^~4~^~BFSN~^~16086~^^^^^^^^^~02/01/2003~
-~16386~^~338~^0.^0^^~4~^~BFSN~^~16086~^^^^^^^^^~02/01/2003~
-~16386~^~417~^65.^13^14.^~1~^^^^^^^^^^^~12/01/1986~
-~16386~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~
-~16386~^~432~^65.^13^14.^~1~^^^^^^^^^^^~04/01/2007~
-~16386~^~435~^65.^0^^~4~^~NC~^^^^^^^^^^~04/01/2007~
-~16386~^~601~^0.^0^^~1~^^^^^^^^^^^~12/01/1986~
-~16389~^~208~^599.^0^^~4~^~NC~^^^^^^^^^^~10/01/2011~
-~16389~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~
-~16389~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~
-~16389~^~268~^2506.^0^^~4~^~NC~^^^^^^^^^^~10/01/2011~
-~16389~^~301~^61.^4^3.^~1~^~A~^^^1^52.^67.^3^49.^71.^~2, 3~^~10/01/2011~
-~16389~^~304~^176.^4^3.^~1~^~A~^^^1^170.^186.^3^164.^187.^~2, 3~^~10/01/2011~
-~16389~^~305~^397.^4^5.^~1~^~A~^^^1^390.^414.^3^377.^415.^~2, 3~^~10/01/2011~
-~16389~^~306~^726.^4^6.^~1~^~A~^^^1^714.^737.^3^706.^744.^~2, 3~^~10/01/2011~
-~16389~^~307~^6.^0^^~1~^^^^^^^^^^^~12/01/1986~
-~16389~^~318~^0.^0^^~1~^~AS~^^^^^^^^^^~10/01/2011~
-~16389~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2002~
-~16389~^~320~^0.^0^^~1~^~AS~^^^^^^^^^^~10/01/2011~
-~16389~^~321~^0.^0^^~7~^~Z~^^^^^^^^^^~10/01/2011~
-~16389~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~10/01/2011~
-~16389~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~
-~16389~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~10/01/2011~
-~16389~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~10/01/2011~
-~16389~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~10/01/2011~
-~16389~^~417~^120.^4^7.^~1~^~A~^^^1^99.^136.^3^94.^145.^~2, 3~^~10/01/2011~
-~16389~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~
-~16389~^~432~^120.^4^7.^~1~^~A~^^^1^99.^136.^3^94.^145.^^~10/01/2011~
-~16389~^~435~^120.^0^^~4~^~NC~^^^^^^^^^^~10/01/2011~
-~16389~^~601~^0.^0^^~1~^^^^^^^^^^^~12/01/1986~
-~16390~^~208~^587.^0^^~4~^~NC~^^^^^^^^^^~04/01/2014~
-~16390~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~
-~16390~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~
-~16390~^~268~^2455.^0^^~4~^~NC~^^^^^^^^^^~04/01/2014~
-~16390~^~301~^58.^17^1.^~1~^~A~^^^1^34.^75.^9^54.^61.^~2, 3~^~04/01/2014~
-~16390~^~304~^178.^17^1.^~1~^~A~^^^1^162.^188.^10^174.^181.^~2, 3~^~04/01/2014~
-~16390~^~305~^363.^17^2.^~1~^~A~^^^1^331.^375.^15^358.^367.^~2, 3~^~04/01/2014~
-~16390~^~306~^634.^17^5.^~1~^~A~^^^1^603.^686.^10^622.^644.^~2, 3~^~04/01/2014~
-~16390~^~307~^6.^0^^~1~^^^^^^^^^^^~12/01/1986~
-~16390~^~318~^0.^0^^~1~^~AS~^^^^^^^^^^~04/01/2014~
-~16390~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2002~
-~16390~^~320~^0.^0^^~1~^~AS~^^^^^^^^^^~04/01/2014~
-~16390~^~321~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2014~
-~16390~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2014~
-~16390~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~
-~16390~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2014~
-~16390~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2014~
-~16390~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2014~
-~16390~^~417~^97.^8^2.^~1~^~A~^^^1^77.^109.^6^91.^102.^~2, 3~^~04/01/2014~
-~16390~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~
-~16390~^~432~^97.^8^2.^~1~^~A~^^^1^77.^109.^6^91.^102.^^~04/01/2014~
-~16390~^~435~^97.^0^^~4~^~NC~^^^^^^^^^^~04/01/2014~
-~16390~^~601~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2014~
-~16392~^~208~^579.^0^^~4~^~NC~^^^^^^^^^^~12/01/1986~
-~16392~^~268~^2423.^0^^~4~^^^^^^^^^^^
-~16392~^~301~^100.^0^^~1~^^^^^^^^^^^~12/01/1986~
-~16392~^~304~^168.^0^^~1~^^^^^^^^^^^~12/01/1986~
-~16392~^~305~^387.^0^^~1~^^^^^^^^^^^~12/01/1986~
-~16392~^~306~^776.^2^^~1~^^^^^^^^^^^~12/01/1986~
-~16392~^~307~^6.^0^^~1~^^^^^^^^^^^~12/01/1986~
-~16392~^~318~^0.^0^^~1~^^^^^^^^^^^~12/01/1986~
-~16392~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2002~
-~16392~^~320~^0.^0^^~1~^^^^^^^^^^^~06/01/2002~
-~16392~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~
-~16392~^~417~^126.^0^^~1~^^^^^^^^^^^~12/01/1986~
-~16392~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~
-~16392~^~432~^126.^0^^~1~^^^^^^^^^^^~12/01/1986~
-~16392~^~435~^126.^0^^~4~^~NC~^^^^^^^^^^~01/01/2001~
-~16392~^~601~^0.^0^^~1~^^^^^^^^^^^~12/01/1986~
-~16394~^~208~^589.^0^^~4~^~NC~^^^^^^^^^^~12/01/1986~
-~16394~^~268~^2464.^0^^~4~^^^^^^^^^^^
-~16394~^~301~^54.^1^^~1~^^^^^^^^^^^~12/01/1986~
-~16394~^~304~^160.^0^^~1~^^^^^^^^^^^~12/01/1986~
-~16394~^~305~^319.^1^^~1~^^^^^^^^^^^~12/01/1986~
-~16394~^~306~^612.^4^74.^~1~^^^^^^^^^^^~12/01/1986~
-~16394~^~307~^6.^0^^~1~^^^^^^^^^^^~12/01/1986~
-~16394~^~318~^0.^0^^~1~^^^^^^^^^^^~12/01/1986~
-~16394~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2002~
-~16394~^~320~^0.^0^^~1~^^^^^^^^^^^~06/01/2002~
-~16394~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~
-~16394~^~417~^126.^0^^~1~^^^^^^^^^^^~12/01/1986~
-~16394~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~
-~16394~^~432~^126.^0^^~1~^^^^^^^^^^^~12/01/1986~
-~16394~^~435~^126.^0^^~4~^~NC~^^^^^^^^^^~01/01/2001~
-~16394~^~601~^0.^0^^~1~^^^^^^^^^^^~12/01/1986~
-~16396~^~208~^578.^0^^~4~^~NC~^^^^^^^^^^~12/01/1986~
-~16396~^~268~^2418.^0^^~4~^^^^^^^^^^^
-~16396~^~301~^86.^8^0.^~1~^^^^^^^^^^^~12/01/1986~
-~16396~^~304~^188.^8^1.^~1~^^^^^^^^^^^~12/01/1986~
-~16396~^~305~^506.^8^0.^~1~^^^^^^^^^^^~12/01/1986~
-~16396~^~306~^652.^8^0.^~1~^^^^^^^^^^^~12/01/1986~
-~16396~^~307~^6.^0^^~1~^^^^^^^^^^^~12/01/1986~
-~16396~^~318~^0.^0^^~1~^^^^^^^^^^^~12/01/1986~
-~16396~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2002~
-~16396~^~320~^0.^0^^~1~^^^^^^^^^^^~06/01/2002~
-~16396~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~
-~16396~^~417~^125.^0^^~1~^^^^^^^^^^^~12/01/1986~
-~16396~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~
-~16396~^~432~^125.^0^^~1~^^^^^^^^^^^~12/01/1986~
-~16396~^~435~^125.^0^^~4~^~NC~^^^^^^^^^^~01/01/2001~
-~16396~^~601~^0.^0^^~1~^^^^^^^^^^^~12/01/1986~
-~16397~^~208~^589.^0^^~4~^~NC~^^^^^^^^^^~03/01/2006~
-~16397~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~
-~16397~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~
-~16397~^~268~^2464.^0^^~4~^^^^^^^^^^^~03/01/2006~
-~16397~^~301~^45.^11^2.^~6~^~JA~^^^2^41.^70.^3^38.^52.^~2, 3~^~03/01/2004~
-~16397~^~304~^160.^196^0.^~6~^~JA~^^^2^159.^204.^3^159.^159.^~2, 3~^~03/01/2004~
-~16397~^~305~^319.^196^0.^~6~^~JA~^^^2^317.^430.^3^317.^319.^~2, 3~^~03/01/2004~
-~16397~^~306~^745.^190^0.^~6~^~JA~^^^2^603.^747.^3^743.^745.^~2, 3~^~03/01/2004~
-~16397~^~307~^17.^0^^~1~^~A~^^^^^^^^^^~12/01/1986~
-~16397~^~318~^0.^0^^~1~^^^^^^^^^^^~05/01/2011~
-~16397~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2002~
-~16397~^~320~^0.^0^^~4~^~NC~^^^^^^^^^^~03/01/2006~
-~16397~^~321~^0.^0^^~4~^~BFSN~^~16097~^^^^^^^^^~02/01/2003~
-~16397~^~322~^0.^0^^~4~^~BFSN~^~16097~^^^^^^^^^~02/01/2003~
-~16397~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~
-~16397~^~334~^0.^0^^~4~^~BFSN~^~16097~^^^^^^^^^~02/01/2003~
-~16397~^~337~^0.^0^^~4~^~BFSN~^~16097~^^^^^^^^^~02/01/2003~
-~16397~^~338~^0.^0^^~4~^~BFSN~^~16097~^^^^^^^^^~02/01/2003~
-~16397~^~417~^92.^2^^~1~^^^^^^^^^^^~12/01/1986~
-~16397~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~
-~16397~^~432~^92.^2^^~1~^^^^^^^^^^^~03/01/2006~
-~16397~^~435~^92.^0^^~4~^~NC~^^^^^^^^^^~03/01/2006~
-~16397~^~601~^0.^0^^~1~^^^^^^^^^^^~12/01/1986~
-~16397~^~638~^11.^4^0.^~1~^~A~^^^1^11.^11.^3^10.^11.^~2, 3~^~05/01/2011~
-~16397~^~639~^15.^4^0.^~1~^~A~^^^1^14.^15.^3^14.^15.^~2, 3~^~05/01/2011~
-~16397~^~641~^77.^4^1.^~1~^~A~^^^1^73.^79.^3^73.^81.^~2, 3~^~05/01/2011~
-~16398~^~208~^598.^0^^~4~^~NC~^^^^^^^^^^~08/01/2014~
-~16398~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~
-~16398~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~
-~16398~^~268~^2501.^0^^~4~^~NC~^^^^^^^^^^~08/01/2014~
-~16398~^~301~^49.^18^0.^~1~^~A~^^^1^43.^55.^9^47.^50.^~2, 3~^~08/01/2014~
-~16398~^~304~^168.^18^1.^~1~^~A~^^^1^155.^182.^8^165.^170.^~2, 3~^~08/01/2014~
-~16398~^~305~^335.^18^1.^~1~^~A~^^^1^313.^357.^9^330.^339.^~2, 3~^~08/01/2014~
-~16398~^~306~^558.^18^2.^~1~^~A~^^^1^533.^592.^14^553.^563.^~2, 3~^~08/01/2014~
-~16398~^~307~^17.^0^^~4~^~O~^^^^^^^^^^~03/01/2014~
-~16398~^~318~^0.^0^^~1~^~AS~^^^^^^^^^^~03/01/2014~
-~16398~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2002~
-~16398~^~320~^0.^0^^~1~^~AS~^^^^^^^^^^~03/01/2014~
-~16398~^~321~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2014~
-~16398~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2014~
-~16398~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~
-~16398~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2014~
-~16398~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2014~
-~16398~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2014~
-~16398~^~417~^87.^9^1.^~1~^~A~^^^1^78.^93.^5^83.^89.^~2, 3~^~08/01/2014~
-~16398~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~
-~16398~^~432~^87.^9^1.^~1~^~A~^^^1^78.^93.^5^83.^89.^^~08/01/2014~
-~16398~^~435~^87.^0^^~4~^~NC~^^^^^^^^^^~08/01/2014~
-~16398~^~601~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2014~
-~16399~^~208~^608.^0^^~4~^~NC~^^^^^^^^^^~12/01/2006~
-~16399~^~268~^2542.^0^^~4~^~NC~^^^^^^^^^^~12/01/2006~
-~16399~^~301~^45.^4^2.^~1~^~A~^^^1^^^^^^^~12/01/2006~
-~16399~^~304~^191.^4^2.^~1~^~A~^^^1^^^^^^^~12/01/2006~
-~16399~^~305~^426.^4^6.^~1~^~A~^^^1^^^^^^^~12/01/2006~
-~16399~^~306~^780.^4^10.^~1~^~A~^^^1^^^^^^^~12/01/2006~
-~16399~^~307~^356.^4^1.^~1~^~A~^^^1^^^^^^^~12/01/2006~
-~16402~^~208~^121.^0^^~4~^~NC~^^^^^^^^^^~12/01/1986~
-~16402~^~268~^506.^0^^~4~^^^^^^^^^^^
-~16402~^~301~^43.^8^1.^~1~^^^^^^^^^^^~12/01/1986~
-~16402~^~304~^46.^8^2.^~1~^^^^^^^^^^^~12/01/1986~
-~16402~^~305~^119.^8^3.^~1~^^^^^^^^^^^~12/01/1986~
-~16402~^~306~^384.^8^15.^~1~^^^^^^^^^^^~12/01/1986~
-~16402~^~307~^241.^0^^~1~^^^^^^^^^^^~12/01/1986~
-~16402~^~318~^3.^8^0.^~1~^^^^^^^^^^^~12/01/1986~
-~16402~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2002~
-~16402~^~320~^0.^8^0.^~1~^^^^^^^^^^^~06/01/2002~
-~16402~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~
-~16402~^~417~^111.^8^4.^~1~^^^^^^^^^^^~12/01/1986~
-~16402~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~
-~16402~^~432~^111.^8^4.^~1~^^^^^^^^^^^~12/01/1986~
-~16402~^~435~^111.^0^^~4~^~NC~^^^^^^^^^^~01/01/2001~
-~16402~^~601~^0.^0^^~1~^^^^^^^^^^^~12/01/1986~
-~16403~^~208~^89.^0^^~4~^~NC~^^^^^^^^^^~08/01/2014~
-~16403~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2013~
-~16403~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2013~
-~16403~^~268~^373.^0^^~4~^~NC~^^^^^^^^^^~08/01/2014~
-~16403~^~301~^29.^17^0.^~1~^~A~^^^1^24.^41.^7^27.^29.^~2, 3~^~08/01/2014~
-~16403~^~304~^35.^17^0.^~1~^~A~^^^1^29.^44.^8^34.^36.^~2, 3~^~08/01/2014~
-~16403~^~305~^92.^17^1.^~1~^~A~^^^1^80.^114.^9^88.^96.^~2, 3~^~08/01/2014~
-~16403~^~306~^319.^17^5.^~1~^~A~^^^1^249.^414.^8^306.^332.^~2, 3~^~08/01/2014~
-~16403~^~307~^138.^0^^~8~^~LC~^^^^^^^^^^~03/01/2013~
-~16403~^~318~^0.^0^^~4~^~NC~^^^^^^^^^^~02/01/2013~
-~16403~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2013~
-~16403~^~320~^0.^0^^~4~^~NC~^^^^^^^^^^~02/01/2013~
-~16403~^~321~^0.^0^^~4~^~BFSN~^~16044~^^^^^^^^^~02/01/2013~
-~16403~^~322~^0.^0^^~4~^~BFSN~^~16044~^^^^^^^^^~02/01/2013~
-~16403~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2013~
-~16403~^~334~^0.^0^^~4~^~BFSN~^~16044~^^^^^^^^^~02/01/2013~
-~16403~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2013~
-~16403~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2013~
-~16403~^~417~^26.^0^^~4~^~BFSN~^~16044~^^^^^^^^^~02/01/2013~
-~16403~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2013~
-~16403~^~432~^26.^0^^~4~^~BFSN~^^^^^^^^^^~02/01/2013~
-~16403~^~435~^26.^0^^~4~^~NC~^^^^^^^^^^~02/01/2013~
-~16403~^~601~^0.^0^^~7~^~Z~^^^^^^^^^^~08/01/2014~
-~16409~^~208~^172.^0^^~4~^~NC~^^^^^^^^^^~07/01/2015~
-~16409~^~268~^721.^0^^~4~^~NC~^^^^^^^^^^~07/01/2015~
-~16409~^~301~^102.^0^^~1~^^^^^^^^^^^~12/01/1986~
-~16409~^~304~^86.^0^^~1~^^^^^^^^^^^~12/01/1986~
-~16409~^~305~^245.^0^^~1~^^^^^^^^^^^~12/01/1986~
-~16409~^~306~^515.^0^^~1~^^^^^^^^^^^~12/01/1986~
-~16409~^~307~^237.^0^^~1~^^^^^^^^^^^~12/01/1986~
-~16409~^~318~^9.^0^^~4~^~NC~^^^^^^^^^^~05/01/2003~
-~16409~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2002~
-~16409~^~320~^0.^0^^~4~^~NC~^^^^^^^^^^~05/01/2003~
-~16409~^~321~^5.^0^^~4~^~BFZN~^~16109~^^^^^^^^^~02/01/2003~
-~16409~^~322~^0.^0^^~4~^~BFZN~^~16109~^^^^^^^^^~02/01/2003~
-~16409~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~
-~16409~^~334~^0.^0^^~4~^~BFZN~^~16109~^^^^^^^^^~02/01/2003~
-~16409~^~337~^0.^0^^~4~^~BFZN~^~16109~^^^^^^^^^~02/01/2003~
-~16409~^~338~^0.^0^^~4~^~BFZN~^~16109~^^^^^^^^^~02/01/2003~
-~16409~^~417~^54.^4^2.^~1~^^^^^^^^^^^~12/01/1986~
-~16409~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~
-~16409~^~432~^54.^4^2.^~1~^^^^^^^^^^^~05/01/2003~
-~16409~^~435~^54.^0^^~4~^~NC~^^^^^^^^^^~05/01/2003~
-~16409~^~601~^0.^0^^~1~^^^^^^^^^^^~12/01/1986~
-~16410~^~208~^469.^0^^~4~^~NC~^^^^^^^^^^~07/01/2015~
-~16410~^~268~^1964.^0^^~4~^~NC~^^^^^^^^^^~07/01/2015~
-~16410~^~301~^138.^1^^~1~^^^^^^^^^^^~12/01/1986~
-~16410~^~304~^145.^1^^~1~^^^^^^^^^^^~12/01/1986~
-~16410~^~305~^363.^1^^~1~^^^^^^^^^^^~12/01/1986~
-~16410~^~306~^1470.^1^^~1~^^^^^^^^^^^~12/01/1986~
-~16410~^~307~^4.^0^^~4~^~BFZN~^^^^^^^^^^~06/01/1996~
-~16410~^~318~^0.^0^^~1~^~AS~^^^^^^^^^^~05/01/2005~
-~16410~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2002~
-~16410~^~320~^0.^0^^~1~^~AS~^^^^^^^^^^~05/01/2005~
-~16410~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~
-~16410~^~417~^211.^1^^~1~^^^^^^^^^^^~12/01/1986~
-~16410~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~
-~16410~^~432~^211.^1^^~1~^^^^^^^^^^^~12/01/1986~
-~16410~^~435~^211.^0^^~4~^~NC~^^^^^^^^^^~05/01/2005~
-~16410~^~601~^0.^0^^~1~^^^^^^^^^^^~12/01/1986~
-~16420~^~208~^328.^0^^~4~^~NC~^^^^^^^^^^~07/01/2015~
-~16420~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~
-~16420~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~
-~16420~^~268~^1373.^0^^~4~^~NC~^^^^^^^^^^~07/01/2015~
-~16420~^~301~^363.^5^3.^~1~^^^^^^^^^^^~12/01/1986~
-~16420~^~304~^140.^0^^~1~^^^^^^^^^^^~12/01/1986~
-~16420~^~305~^839.^5^15.^~1~^^^^^^^^^^^~12/01/1986~
-~16420~^~306~^450.^0^^~1~^^^^^^^^^^^~12/01/1986~
-~16420~^~307~^900.^0^^~1~^^^^^^^^^^^~12/01/1986~
-~16420~^~318~^0.^0^^~1~^~AS~^^^^^^^^^^~02/01/2003~
-~16420~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2002~
-~16420~^~320~^0.^0^^~1~^~AS~^^^^^^^^^^~02/01/2003~
-~16420~^~321~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~
-~16420~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~
-~16420~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~
-~16420~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~
-~16420~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~
-~16420~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~
-~16420~^~417~^340.^5^23.^~1~^^^^^^^^^^^~12/01/1986~
-~16420~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~
-~16420~^~432~^340.^5^23.^~1~^^^^^^^^^^^~12/01/1986~
-~16420~^~435~^340.^0^^~4~^~NC~^^^^^^^^^^~02/01/2003~
-~16420~^~601~^0.^0^^~1~^^^^^^^^^^^~12/01/1986~
-~16422~^~208~^321.^0^^~4~^~NC~^^^^^^^^^^~07/01/2015~
-~16422~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~
-~16422~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~
-~16422~^~268~^1345.^0^^~4~^~NC~^^^^^^^^^^~07/01/2015~
-~16422~^~301~^178.^176^6.^~1~^^^^^^^^^^^~12/01/1986~
-~16422~^~304~^39.^155^1.^~1~^^^^^^^^^^^~12/01/1986~
-~16422~^~305~^776.^163^7.^~1~^^^^^^^^^^^~12/01/1986~
-~16422~^~306~^1590.^0^^~1~^^^^^^^^^^^~12/01/1986~
-~16422~^~307~^50.^0^^~1~^^^^^^^^^^^~12/01/1986~
-~16422~^~318~^0.^0^^~4~^^^^^^^^^^^~04/01/2003~
-~16422~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2002~
-~16422~^~320~^0.^0^^~4~^~NC~^^^^^^^^^^~04/01/2003~
-~16422~^~321~^0.^0^^~4~^~BFSN~^~16122~^^^^^^^^^~02/01/2003~
-~16422~^~322~^0.^0^^~4~^~BFSN~^~16122~^^^^^^^^^~02/01/2003~
-~16422~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~
-~16422~^~334~^0.^0^^~4~^~BFSN~^~16122~^^^^^^^^^~02/01/2003~
-~16422~^~337~^0.^0^^~4~^~BFSN~^~16122~^^^^^^^^^~02/01/2003~
-~16422~^~338~^0.^0^^~4~^~BFSN~^~16122~^^^^^^^^^~02/01/2003~
-~16422~^~417~^176.^112^3.^~1~^^^^^^^^^^^~12/01/1986~
-~16422~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~
-~16422~^~432~^176.^112^3.^~1~^^^^^^^^^^^~02/01/2003~
-~16422~^~435~^176.^0^^~4~^~NC~^^^^^^^^^^~04/01/2003~
-~16422~^~601~^0.^0^^~1~^^^^^^^^^^^~12/01/1986~
-~16424~^~208~^57.^0^^~4~^~NC~^^^^^^^^^^~04/01/2013~
-~16424~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~
-~16424~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~
-~16424~^~268~^237.^0^^~4~^~NC~^^^^^^^^^^~04/01/2013~
-~16424~^~301~^30.^6^0.^~1~^~A~^^^1^29.^31.^5^29.^31.^~2, 3~^~04/01/2013~
-~16424~^~304~^69.^6^0.^~1~^~A~^^^1^68.^70.^5^68.^70.^~2, 3~^~04/01/2013~
-~16424~^~305~^166.^6^0.^~1~^~A~^^^1^164.^168.^5^164.^167.^~2, 3~^~04/01/2013~
-~16424~^~306~^352.^6^4.^~1~^~A~^^^1^338.^368.^5^338.^364.^~2, 3~^~04/01/2013~
-~16424~^~307~^3598.^6^10.^~1~^~A~^^^1^3570.^3630.^5^3570.^3626.^~2, 3~^~04/01/2013~
-~16424~^~318~^0.^0^^~1~^~AS~^^^^^^^^^^~04/01/2007~
-~16424~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2002~
-~16424~^~320~^0.^0^^~1~^~AS~^^^^^^^^^^~03/01/2008~
-~16424~^~321~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~
-~16424~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~
-~16424~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~
-~16424~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~
-~16424~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~
-~16424~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~
-~16424~^~417~^44.^1^^~1~^~A~^^^^^^^^^^~04/01/2013~
-~16424~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~
-~16424~^~432~^44.^1^^~1~^~A~^^^^^^^^^^~04/01/2013~
-~16424~^~435~^44.^0^^~4~^~NC~^^^^^^^^^^~04/01/2013~
-~16424~^~601~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2013~
-~16425~^~208~^90.^0^^~4~^~NC~^^^^^^^^^^~04/01/2013~
-~16425~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2013~
-~16425~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2013~
-~16425~^~268~^375.^0^^~4~^~NC~^^^^^^^^^^~04/01/2013~
-~16425~^~301~^11.^4^^~1~^~A~^^^1^9.^12.^^^^~2~^~04/01/2013~
-~16425~^~304~^34.^4^^~1~^~A~^^^1^31.^37.^^^^~2~^~04/01/2013~
-~16425~^~305~^89.^4^^~1~^~A~^^^1^86.^93.^^^^~2~^~04/01/2013~
-~16425~^~306~^3098.^4^^~1~^~A~^^^1^2590.^3350.^^^^~2~^~04/01/2013~
-~16425~^~307~^2890.^4^^~1~^~A~^^^1^2360.^3150.^^^^~2~^~04/01/2013~
-~16425~^~318~^0.^0^^~1~^~AS~^^^^^^^^^^~04/01/2013~
-~16425~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2013~
-~16425~^~320~^0.^0^^~1~^~AS~^^^^^^^^^^~04/01/2013~
-~16425~^~321~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2013~
-~16425~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2013~
-~16425~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2013~
-~16425~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2013~
-~16425~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2013~
-~16425~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2013~
-~16425~^~417~^4.^1^^~1~^~A~^^^^^^^^^~1~^~04/01/2013~
-~16425~^~432~^4.^1^^~1~^~A~^^^^^^^^^^~04/01/2013~
-~16425~^~601~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2013~
-~16426~^~208~^144.^0^^~4~^~NC~^^^^^^^^^^~07/01/2015~
-~16426~^~268~^603.^0^^~4~^~NC~^^^^^^^^^^~07/01/2015~
-~16426~^~301~^683.^0^^~1~^^^^^^^^^^^~12/01/1986~
-~16426~^~304~^58.^0^^~1~^^^^^^^^^^^~12/01/1986~
-~16426~^~305~^190.^0^^~1~^^^^^^^^^^^~12/01/1986~
-~16426~^~306~^237.^0^^~1~^^^^^^^^^^^~12/01/1986~
-~16426~^~307~^14.^0^^~1~^^^^^^^^^^^~12/01/1986~
-~16426~^~318~^166.^0^^~1~^^^^^^^^^^^~05/01/2007~
-~16426~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~
-~16426~^~417~^29.^0^^~1~^^^^^^^^^^^~12/01/1986~
-~16426~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~
-~16426~^~432~^29.^0^^~1~^^^^^^^^^^^~05/01/2007~
-~16426~^~435~^29.^0^^~4~^~NC~^^^^^^^^^^~08/01/2008~
-~16426~^~601~^0.^0^^~1~^^^^^^^^^^^~12/01/1986~
-~16427~^~208~^76.^0^^~4~^~NC~^^^^^^^^^^~12/01/1986~
-~16427~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~07/01/2015~
-~16427~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~07/01/2015~
-~16427~^~268~^317.^0^^~4~^~NC~^^^^^^^^^^~07/01/2015~
-~16427~^~301~^350.^0^^~1~^^^^^^^^^^^~12/01/1986~
-~16427~^~304~^30.^0^^~1~^^^^^^^^^^^~12/01/1986~
-~16427~^~305~^97.^3^14.^~1~^^^^^^^^^^^~12/01/1986~
-~16427~^~306~^121.^4^26.^~1~^^^^^^^^^^^~12/01/1986~
-~16427~^~307~^7.^4^3.^~1~^^^^^^^^^^^~12/01/1986~
-~16427~^~318~^85.^1^^~1~^^^^^^^^^^^~12/01/1986~
-~16427~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~
-~16427~^~417~^15.^2^^~1~^^^^^^^^^^^~12/01/1986~
-~16427~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~
-~16427~^~432~^15.^2^^~1~^^^^^^^^^^^~12/01/1986~
-~16427~^~435~^15.^0^^~4~^~NC~^^^^^^^^^^~01/01/2001~
-~16427~^~601~^0.^0^^~1~^^^^^^^^^^^~12/01/1986~
-~16428~^~208~^470.^0^^~4~^~NC~^^^^^^^^^^~07/01/2015~
-~16428~^~268~^1965.^0^^~4~^~NC~^^^^^^^^^^~07/01/2015~
-~16428~^~301~^2134.^0^^~1~^^^^^^^^^^^~12/01/1986~
-~16428~^~304~^181.^0^^~1~^^^^^^^^^^^~12/01/1986~
-~16428~^~305~^483.^1^^~1~^^^^^^^^^^^~12/01/1986~
-~16428~^~306~^20.^1^^~1~^^^^^^^^^^^~12/01/1986~
-~16428~^~307~^6.^1^^~1~^^^^^^^^^^^~12/01/1986~
-~16428~^~318~^0.^0^^~1~^~AS~^^^^^^^^^^~06/01/2005~
-~16428~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2002~
-~16428~^~320~^0.^0^^~1~^~AS~^^^^^^^^^^~06/01/2005~
-~16428~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~
-~16428~^~417~^92.^0^^~1~^^^^^^^^^^^~12/01/1986~
-~16428~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~
-~16428~^~432~^92.^0^^~1~^^^^^^^^^^^~12/01/1986~
-~16428~^~435~^92.^0^^~4~^~NC~^^^^^^^^^^~06/01/2005~
-~16428~^~601~^0.^0^^~1~^^^^^^^^^^^~12/01/1986~
-~16429~^~208~^270.^0^^~4~^~NC~^^^^^^^^^^~07/01/2015~
-~16429~^~268~^1131.^0^^~4~^~NC~^^^^^^^^^^~07/01/2015~
-~16429~^~301~^961.^0^^~1~^^^^^^^^^^^~12/01/1986~
-~16429~^~304~^95.^0^^~1~^^^^^^^^^^^~12/01/1986~
-~16429~^~305~^287.^2^^~1~^^^^^^^^^^^~12/01/1986~
-~16429~^~306~^146.^1^^~1~^^^^^^^^^^^~12/01/1986~
-~16429~^~307~^16.^1^^~1~^^^^^^^^^^^~12/01/1986~
-~16429~^~318~^0.^1^^~1~^^^^^^^^^^^~12/01/1986~
-~16429~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2002~
-~16429~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~
-~16429~^~417~^27.^0^^~1~^^^^^^^^^^^~12/01/1986~
-~16429~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~
-~16429~^~432~^27.^0^^~1~^^^^^^^^^^^~12/01/1986~
-~16429~^~435~^27.^0^^~4~^~NC~^^^^^^^^^^~01/01/2001~
-~16429~^~601~^0.^0^^~1~^^^^^^^^^^^~12/01/1986~
-~16432~^~208~^116.^0^^~4~^~NC~^^^^^^^^^^~05/01/2005~
-~16432~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~09/01/2015~
-~16432~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~09/01/2015~
-~16432~^~268~^485.^0^^~4~^^^^^^^^^^^~09/01/2015~
-~16432~^~301~^1229.^0^^~1~^^^^^^^^^^^~12/01/1986~
-~16432~^~304~^58.^0^^~1~^^^^^^^^^^^~12/01/1986~
-~16432~^~305~^73.^1^^~1~^^^^^^^^^^^~12/01/1986~
-~16432~^~306~^75.^1^^~1~^^^^^^^^^^^~12/01/1986~
-~16432~^~307~^2873.^1^^~1~^^^^^^^^^^^~12/01/1986~
-~16432~^~318~^0.^0^^~7~^~Z~^^^^^^^^^^~09/01/2015~
-~16432~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2002~
-~16432~^~320~^0.^0^^~7~^~Z~^^^^^^^^^^~09/01/2015~
-~16432~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~
-~16432~^~417~^29.^0^^~4~^^^^^^^^^^^~12/01/1986~
-~16432~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~
-~16432~^~432~^29.^0^^~4~^^^^^^^^^^^~12/01/1986~
-~16432~^~435~^29.^0^^~4~^~NC~^^^^^^^^^^~05/01/2005~
-~16432~^~601~^0.^0^^~1~^^^^^^^^^^^~12/01/1986~
-~16434~^~208~^118.^0^^~4~^~NC~^^^^^^^^^^~12/01/1986~
-~16434~^~268~^494.^0^^~4~^^^^^^^^^^^~02/01/2010~
-~16434~^~301~^42.^0^^~1~^^^^^^^^^^^~12/01/1986~
-~16434~^~304~^98.^0^^~1~^^^^^^^^^^^~12/01/1986~
-~16434~^~305~^181.^0^^~1~^^^^^^^^^^^~12/01/1986~
-~16434~^~306~^315.^0^^~1~^^^^^^^^^^^~12/01/1986~
-~16434~^~307~^241.^0^^~1~^^^^^^^^^^^~12/01/1986~
-~16434~^~318~^16.^0^^~1~^^^^^^^^^^^~12/01/1986~
-~16434~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2002~
-~16434~^~320~^1.^0^^~1~^^^^^^^^^^^~06/01/2002~
-~16434~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~
-~16434~^~417~^146.^0^^~1~^^^^^^^^^^^~12/01/1986~
-~16434~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~
-~16434~^~432~^146.^0^^~1~^^^^^^^^^^^~12/01/1986~
-~16434~^~435~^146.^0^^~4~^~NC~^^^^^^^^^^~02/01/2010~
-~16434~^~601~^0.^0^^~1~^^^^^^^^^^^~12/01/1986~
-~16436~^~208~^147.^0^^~4~^~NC~^^^^^^^^^^~12/01/1986~
-~16436~^~268~^615.^0^^~4~^^^^^^^^^^^~02/01/2010~
-~16436~^~301~^142.^0^^~1~^^^^^^^^^^^~12/01/1986~
-~16436~^~304~^54.^0^^~1~^^^^^^^^^^^~12/01/1986~
-~16436~^~305~^153.^0^^~1~^^^^^^^^^^^~12/01/1986~
-~16436~^~306~^280.^0^^~1~^^^^^^^^^^^~12/01/1986~
-~16436~^~307~^249.^0^^~1~^^^^^^^^^^^~12/01/1986~
-~16436~^~318~^0.^0^^~1~^^^^^^^^^^^~12/01/1986~
-~16436~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2002~
-~16436~^~320~^0.^0^^~1~^^^^^^^^^^^~06/01/2002~
-~16436~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~
-~16436~^~417~^10.^0^^~1~^^^^^^^^^^^~12/01/1986~
-~16436~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~
-~16436~^~432~^10.^0^^~1~^^^^^^^^^^^~12/01/1986~
-~16436~^~435~^10.^0^^~4~^~NC~^^^^^^^^^^~02/01/2010~
-~16436~^~601~^0.^0^^~1~^^^^^^^^^^^~12/01/1986~
-~17000~^~208~^134.^0^^~4~^~NC~^^^^^^^^^^~05/01/2012~
-~17000~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2012~
-~17000~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2012~
-~17000~^~268~^561.^0^^~4~^~NC~^^^^^^^^^^~05/01/2012~
-~17000~^~301~^10.^1^^~1~^~A~^^^^^^^^^^~05/01/2012~
-~17000~^~307~^83.^1^^~1~^~A~^^^^^^^^^^~05/01/2012~
-~17000~^~318~^0.^0^^~1~^~AS~^^^^^^^^^^~05/01/2012~
-~17000~^~319~^0.^1^^~1~^~A~^^^^^^^^^~1~^~05/01/2012~
-~17000~^~320~^0.^0^^~1~^~AS~^^^^^^^^^^~05/01/2012~
-~17000~^~321~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2012~
-~17000~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2012~
-~17000~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2012~
-~17000~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2012~
-~17000~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2012~
-~17000~^~601~^58.^1^^~1~^~A~^^^^^^^^^^~05/01/2012~
-~17001~^~208~^267.^0^^~4~^~NC~^^^^^^^^^^~04/01/1989~
-~17001~^~268~^1117.^0^^~4~^^^^^^^^^^^
-~17001~^~301~^12.^0^^~1~^^^^^^^^^^^~04/01/1989~
-~17001~^~304~^22.^0^^~1~^^^^^^^^^^^~04/01/1989~
-~17001~^~305~^160.^0^^~1~^^^^^^^^^^^~04/01/1989~
-~17001~^~306~^230.^0^^~1~^^^^^^^^^^^~04/01/1989~
-~17001~^~307~^58.^0^^~1~^^^^^^^^^^^~04/01/1989~
-~17001~^~318~^0.^0^^~4~^^^^^^^^^^^~04/01/1989~
-~17001~^~319~^0.^0^^~4~^^^^^^^^^^^~06/01/2002~
-~17001~^~320~^0.^0^^~4~^^^^^^^^^^^~06/01/2002~
-~17001~^~417~^18.^0^^~1~^^^^^^^^^^^~04/01/1989~
-~17001~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~
-~17001~^~432~^18.^0^^~1~^^^^^^^^^^^~04/01/1989~
-~17001~^~435~^18.^0^^~4~^~NC~^^^^^^^^^^~01/01/2001~
-~17001~^~601~^72.^0^^~1~^^^^^^^^^^^~04/01/1989~
-~17002~^~208~^294.^0^^~4~^~NC~^^^^^^^^^^~04/01/1989~
-~17002~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~12/01/2002~
-~17002~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~
-~17002~^~268~^1230.^0^^~4~^^^^^^^^^^^~12/01/2006~
-~17002~^~301~^17.^0^^~1~^^^^^^^^^^^~04/01/1989~
-~17002~^~304~^23.^0^^~1~^^^^^^^^^^^~04/01/1989~
-~17002~^~305~^188.^0^^~1~^^^^^^^^^^^~04/01/1989~
-~17002~^~306~^310.^0^^~1~^^^^^^^^^^^~04/01/1989~
-~17002~^~307~^72.^0^^~1~^^^^^^^^^^^~04/01/1989~
-~17002~^~318~^0.^0^^~4~^^^^^^^^^^^~04/01/1989~
-~17002~^~319~^0.^0^^~4~^~NR~^^^^^^^^^^~12/01/2002~
-~17002~^~320~^0.^0^^~4~^~NC~^^^^^^^^^^~12/01/2006~
-~17002~^~321~^0.^0^^~7~^~Z~^^^^^^^^^^~12/01/2002~
-~17002~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~12/01/2002~
-~17002~^~324~^2.^40^^~1~^~A~^^^^^^^^^^~02/01/2009~
-~17002~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~12/01/2002~
-~17002~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~12/01/2002~
-~17002~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~12/01/2002~
-~17002~^~417~^18.^0^^~1~^^^^^^^^^^^~04/01/1989~
-~17002~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~
-~17002~^~432~^18.^0^^~1~^^^^^^^^^^^~12/01/2006~
-~17002~^~435~^18.^0^^~4~^~NC~^^^^^^^^^^~02/01/2009~
-~17002~^~601~^97.^0^^~1~^^^^^^^^^^^~04/01/1989~
-~17003~^~208~^134.^0^^~4~^~NC~^^^^^^^^^^~04/01/1989~
-~17003~^~268~^561.^0^^~4~^^^^^^^^^^^
-~17003~^~301~^10.^32^0.^~1~^^^^^^^^^^^~04/01/1989~
-~17003~^~304~^26.^32^0.^~1~^^^^^^^^^^^~04/01/1989~
-~17003~^~305~^189.^16^3.^~1~^^^^^^^^^^^~04/01/1989~
-~17003~^~306~^280.^32^13.^~1~^^^^^^^^^^^~04/01/1989~
-~17003~^~307~^66.^32^2.^~1~^^^^^^^^^^^~04/01/1989~
-~17003~^~318~^0.^0^^~4~^^^^^^^^^^^~04/01/1989~
-~17003~^~319~^0.^0^^~4~^^^^^^^^^^^~06/01/2002~
-~17003~^~320~^0.^0^^~4~^^^^^^^^^^^~06/01/2002~
-~17003~^~417~^23.^16^1.^~1~^^^^^^^^^^^~04/01/1989~
-~17003~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~
-~17003~^~432~^23.^16^1.^~1~^^^^^^^^^^^~04/01/1989~
-~17003~^~435~^23.^0^^~4~^~NC~^^^^^^^^^^~01/01/2001~
-~17003~^~601~^65.^16^1.^~1~^^^^^^^^^^^~04/01/1989~
-~17004~^~208~^206.^0^^~4~^~NC~^^^^^^^^^^~04/01/1989~
-~17004~^~268~^862.^0^^~4~^^^^^^^^^^^
-~17004~^~301~^15.^16^0.^~1~^^^^^^^^^^^~04/01/1989~
-~17004~^~304~^26.^16^0.^~1~^^^^^^^^^^^~04/01/1989~
-~17004~^~305~^210.^16^3.^~1~^^^^^^^^^^^~04/01/1989~
-~17004~^~306~^344.^16^3.^~1~^^^^^^^^^^^~04/01/1989~
-~17004~^~307~^76.^16^0.^~1~^^^^^^^^^^^~04/01/1989~
-~17004~^~318~^0.^0^^~4~^^^^^^^^^^^~04/01/1989~
-~17004~^~319~^0.^0^^~4~^^^^^^^^^^^~06/01/2002~
-~17004~^~320~^0.^0^^~4~^^^^^^^^^^^~06/01/2002~
-~17004~^~417~^23.^16^0.^~1~^^^^^^^^^^^~04/01/1989~
-~17004~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~
-~17004~^~432~^23.^16^0.^~1~^^^^^^^^^^^~04/01/1989~
-~17004~^~435~^23.^0^^~4~^~NC~^^^^^^^^^^~01/01/2001~
-~17004~^~601~^92.^16^2.^~1~^^^^^^^^^^^~04/01/1989~
-~17005~^~208~^665.^0^^~4~^~NC~^^^^^^^^^^~04/01/1989~
-~17005~^~268~^2782.^0^^~4~^^^^^^^^^^^
-~17005~^~301~^19.^30^1.^~1~^^^^^^^^^^^~04/01/1989~
-~17005~^~304~^9.^30^0.^~1~^^^^^^^^^^^~04/01/1989~
-~17005~^~305~^73.^14^3.^~1~^^^^^^^^^^^~04/01/1989~
-~17005~^~306~^82.^30^7.^~1~^^^^^^^^^^^~04/01/1989~
-~17005~^~307~^31.^30^2.^~1~^^^^^^^^^^^~04/01/1989~
-~17005~^~318~^0.^0^^~4~^^^^^^^^^^^~04/01/1989~
-~17005~^~319~^0.^0^^~4~^^^^^^^^^^^~06/01/2002~
-~17005~^~320~^0.^0^^~4~^^^^^^^^^^^~06/01/2002~
-~17005~^~417~^3.^7^0.^~1~^^^^^^^^^^^~04/01/1989~
-~17005~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~
-~17005~^~432~^3.^7^0.^~1~^^^^^^^^^^^~04/01/1989~
-~17005~^~435~^3.^0^^~4~^~NC~^^^^^^^^^^~01/01/2001~
-~17005~^~601~^90.^14^4.^~1~^^^^^^^^^^^~04/01/1989~
-~17006~^~208~^586.^0^^~4~^~NC~^^^^^^^^^^~04/01/1989~
-~17006~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~12/01/2002~
-~17006~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~12/01/2002~
-~17006~^~268~^2452.^0^^~4~^^^^^^^^^^^~12/01/2006~
-~17006~^~301~^23.^14^1.^~1~^^^^^^^^^^^~04/01/1989~
-~17006~^~304~^13.^14^0.^~1~^^^^^^^^^^^~04/01/1989~
-~17006~^~305~^114.^14^5.^~1~^^^^^^^^^^^~04/01/1989~
-~17006~^~306~^194.^14^10.^~1~^^^^^^^^^^^~04/01/1989~
-~17006~^~307~^58.^14^2.^~1~^^^^^^^^^^^~04/01/1989~
-~17006~^~318~^0.^0^^~4~^^^^^^^^^^^~04/01/1989~
-~17006~^~319~^0.^0^^~4~^~NR~^^^^^^^^^^~12/01/2002~
-~17006~^~320~^0.^0^^~4~^~NC~^^^^^^^^^^~12/01/2006~
-~17006~^~321~^0.^0^^~7~^~Z~^^^^^^^^^^~12/01/2002~
-~17006~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~12/01/2002~
-~17006~^~324~^2.^40^^~1~^~A~^^^^^^^^^^~02/01/2009~
-~17006~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~12/01/2002~
-~17006~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~12/01/2002~
-~17006~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~12/01/2002~
-~17006~^~417~^3.^7^0.^~1~^^^^^^^^^^^~04/01/1989~
-~17006~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~
-~17006~^~432~^3.^7^0.^~1~^^^^^^^^^^^~12/01/2006~
-~17006~^~435~^3.^0^^~4~^~NC~^^^^^^^^^^~02/01/2009~
-~17006~^~601~^114.^14^3.^~1~^^^^^^^^^^^~04/01/1989~
-~17007~^~208~^201.^0^^~4~^~NC~^^^^^^^^^^~04/01/1989~
-~17007~^~268~^841.^0^^~4~^^^^^^^^^^^
-~17007~^~301~^11.^0^^~1~^^^^^^^^^^^~04/01/1989~
-~17007~^~304~^22.^0^^~1~^^^^^^^^^^^~04/01/1989~
-~17007~^~305~^170.^0^^~1~^^^^^^^^^^^~04/01/1989~
-~17007~^~306~^214.^0^^~1~^^^^^^^^^^^~04/01/1989~
-~17007~^~307~^72.^0^^~1~^^^^^^^^^^^~04/01/1989~
-~17007~^~318~^0.^0^^~4~^^^^^^^^^^^~04/01/1989~
-~17007~^~319~^0.^0^^~4~^^^^^^^^^^^~06/01/2002~
-~17007~^~320~^0.^0^^~4~^^^^^^^^^^^~06/01/2002~
-~17007~^~417~^19.^0^^~1~^^^^^^^^^^^~04/01/1989~
-~17007~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~
-~17007~^~432~^19.^0^^~1~^^^^^^^^^^^~04/01/1989~
-~17007~^~435~^19.^0^^~4~^~NC~^^^^^^^^^^~01/01/2001~
-~17007~^~601~^72.^0^^~1~^^^^^^^^^^^~04/01/1989~
-~17008~^~208~^243.^0^^~4~^~NC~^^^^^^^^^^~04/01/1989~
-~17008~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~12/01/2002~
-~17008~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~12/01/2002~
-~17008~^~268~^1017.^0^^~4~^^^^^^^^^^^~12/01/2006~
-~17008~^~301~^20.^0^^~1~^^^^^^^^^^^~04/01/1989~
-~17008~^~304~^22.^0^^~1~^^^^^^^^^^^~04/01/1989~
-~17008~^~305~^166.^0^^~1~^^^^^^^^^^^~04/01/1989~
-~17008~^~306~^257.^0^^~1~^^^^^^^^^^^~04/01/1989~
-~17008~^~307~^72.^0^^~1~^^^^^^^^^^^~04/01/1989~
-~17008~^~318~^0.^0^^~4~^^^^^^^^^^^~04/01/1989~
-~17008~^~319~^0.^0^^~4~^~NR~^^^^^^^^^^~12/01/2002~
-~17008~^~320~^0.^0^^~4~^~NC~^^^^^^^^^^~12/01/2006~
-~17008~^~321~^0.^0^^~7~^~Z~^^^^^^^^^^~12/01/2002~
-~17008~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~12/01/2002~
-~17008~^~324~^2.^40^^~1~^~A~^^^^^^^^^^~02/01/2009~
-~17008~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~12/01/2002~
-~17008~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~12/01/2002~
-~17008~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~12/01/2002~
-~17008~^~417~^17.^0^^~1~^^^^^^^^^^^~04/01/1989~
-~17008~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~
-~17008~^~432~^17.^0^^~1~^^^^^^^^^^^~12/01/2006~
-~17008~^~435~^17.^0^^~4~^~NC~^^^^^^^^^^~02/01/2009~
-~17008~^~601~^106.^0^^~1~^^^^^^^^^^^~04/01/1989~
-~17009~^~208~^120.^0^^~4~^~NC~^^^^^^^^^^~04/01/1989~
-~17009~^~268~^502.^0^^~4~^^^^^^^^^^^
-~17009~^~301~^9.^24^0.^~1~^^^^^^^^^^^~04/01/1989~
-~17009~^~304~^25.^24^1.^~1~^^^^^^^^^^^~04/01/1989~
-~17009~^~305~^187.^8^4.^~1~^^^^^^^^^^^~04/01/1989~
-~17009~^~306~^237.^24^18.^~1~^^^^^^^^^^^~04/01/1989~
-~17009~^~307~^79.^24^5.^~1~^^^^^^^^^^^~04/01/1989~
-~17009~^~318~^0.^0^^~4~^^^^^^^^^^^~04/01/1989~
-~17009~^~319~^0.^0^^~4~^^^^^^^^^^^~06/01/2002~
-~17009~^~320~^0.^0^^~4~^^^^^^^^^^^~06/01/2002~
-~17009~^~417~^22.^8^1.^~1~^^^^^^^^^^^~04/01/1989~
-~17009~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~
-~17009~^~432~^22.^8^1.^~1~^^^^^^^^^^^~04/01/1989~
-~17009~^~435~^22.^0^^~4~^~NC~^^^^^^^^^^~01/01/2001~
-~17009~^~601~^69.^8^2.^~1~^^^^^^^^^^^~04/01/1989~
-~17010~^~208~^187.^0^^~4~^~NC~^^^^^^^^^^~04/01/1989~
-~17010~^~268~^782.^0^^~4~^^^^^^^^^^^
-~17010~^~301~^20.^8^2.^~1~^^^^^^^^^^^~04/01/1989~
-~17010~^~304~^23.^8^0.^~1~^^^^^^^^^^^~04/01/1989~
-~17010~^~305~^175.^8^4.^~1~^^^^^^^^^^^~04/01/1989~
-~17010~^~306~^267.^8^20.^~1~^^^^^^^^^^^~04/01/1989~
-~17010~^~307~^74.^8^1.^~1~^^^^^^^^^^^~04/01/1989~
-~17010~^~318~^0.^0^^~4~^^^^^^^^^^^~04/01/1989~
-~17010~^~319~^0.^0^^~4~^^^^^^^^^^^~06/01/2002~
-~17010~^~320~^0.^0^^~4~^^^^^^^^^^^~06/01/2002~
-~17010~^~417~^19.^8^0.^~1~^^^^^^^^^^^~04/01/1989~
-~17010~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~
-~17010~^~432~^19.^8^0.^~1~^^^^^^^^^^^~04/01/1989~
-~17010~^~435~^19.^0^^~4~^~NC~^^^^^^^^^^~01/01/2001~
-~17010~^~601~^104.^8^5.^~1~^^^^^^^^^^^~04/01/1989~
-~17011~^~208~^230.^0^^~4~^~NC~^^^^^^^^^^~04/01/1989~
-~17011~^~268~^962.^0^^~4~^^^^^^^^^^^
-~17011~^~301~^9.^0^^~1~^^^^^^^^^^^~04/01/1989~
-~17011~^~304~^23.^0^^~1~^^^^^^^^^^^~04/01/1989~
-~17011~^~305~^170.^0^^~1~^^^^^^^^^^^~04/01/1989~
-~17011~^~306~^249.^0^^~1~^^^^^^^^^^^~04/01/1989~
-~17011~^~307~^56.^0^^~1~^^^^^^^^^^^~04/01/1989~
-~17011~^~318~^0.^0^^~4~^^^^^^^^^^^~04/01/1989~
-~17011~^~319~^0.^0^^~4~^^^^^^^^^^^~06/01/2002~
-~17011~^~320~^0.^0^^~4~^^^^^^^^^^^~06/01/2002~
-~17011~^~417~^19.^0^^~1~^^^^^^^^^^^~04/01/1989~
-~17011~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~
-~17011~^~432~^19.^0^^~1~^^^^^^^^^^^~04/01/1989~
-~17011~^~435~^19.^0^^~4~^~NC~^^^^^^^^^^~01/01/2001~
-~17011~^~601~^69.^0^^~1~^^^^^^^^^^^~04/01/1989~
-~17012~^~208~^258.^0^^~4~^~NC~^^^^^^^^^^~04/01/1989~
-~17012~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~12/01/2002~
-~17012~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~12/01/2002~
-~17012~^~268~^1079.^0^^~4~^^^^^^^^^^^~12/01/2006~
-~17012~^~301~^11.^0^^~1~^^^^^^^^^^^~04/01/1989~
-~17012~^~304~^24.^0^^~1~^^^^^^^^^^^~04/01/1989~
-~17012~^~305~^191.^0^^~1~^^^^^^^^^^^~04/01/1989~
-~17012~^~306~^313.^0^^~1~^^^^^^^^^^^~04/01/1989~
-~17012~^~307~^66.^0^^~1~^^^^^^^^^^^~04/01/1989~
-~17012~^~318~^0.^0^^~4~^^^^^^^^^^^~04/01/1989~
-~17012~^~319~^0.^0^^~4~^~NR~^^^^^^^^^^~12/01/2002~
-~17012~^~320~^0.^0^^~4~^~NC~^^^^^^^^^^~12/01/2006~
-~17012~^~321~^0.^0^^~7~^~Z~^^^^^^^^^^~12/01/2002~
-~17012~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~12/01/2002~
-~17012~^~324~^2.^40^^~1~^~A~^^^^^^^^^^~02/01/2009~
-~17012~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~12/01/2002~
-~17012~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~12/01/2002~
-~17012~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~12/01/2002~
-~17012~^~417~^20.^0^^~1~^^^^^^^^^^^~04/01/1989~
-~17012~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~
-~17012~^~432~^20.^0^^~1~^^^^^^^^^^^~12/01/2006~
-~17012~^~435~^20.^0^^~4~^~NC~^^^^^^^^^^~02/01/2009~
-~17012~^~601~^93.^0^^~1~^^^^^^^^^^^~04/01/1989~
-~17013~^~208~^128.^0^^~4~^~NC~^^^^^^^^^^~04/01/1989~
-~17013~^~268~^536.^0^^~4~^^^^^^^^^^^
-~17013~^~301~^6.^32^0.^~1~^^^^^^^^^^^~04/01/1989~
-~17013~^~304~^27.^32^0.^~1~^^^^^^^^^^^~04/01/1989~
-~17013~^~305~^193.^16^3.^~1~^^^^^^^^^^^~04/01/1989~
-~17013~^~306~^289.^32^13.^~1~^^^^^^^^^^^~04/01/1989~
-~17013~^~307~^62.^32^2.^~1~^^^^^^^^^^^~04/01/1989~
-~17013~^~318~^0.^0^^~4~^^^^^^^^^^^~04/01/1989~
-~17013~^~319~^0.^0^^~4~^^^^^^^^^^^~06/01/2002~
-~17013~^~320~^0.^0^^~4~^^^^^^^^^^^~06/01/2002~
-~17013~^~417~^23.^16^1.^~1~^^^^^^^^^^^~04/01/1989~
-~17013~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~
-~17013~^~432~^23.^16^1.^~1~^^^^^^^^^^^~04/01/1989~
-~17013~^~435~^23.^0^^~4~^~NC~^^^^^^^^^^~01/01/2001~
-~17013~^~601~^64.^16^1.^~1~^^^^^^^^^^^~04/01/1989~
-~17014~^~208~^191.^0^^~4~^~NC~^^^^^^^^^^~04/01/1989~
-~17014~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~12/01/2002~
-~17014~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~12/01/2002~
-~17014~^~268~^799.^0^^~4~^^^^^^^^^^^~12/01/2006~
-~17014~^~301~^8.^16^0.^~1~^^^^^^^^^^^~04/01/1989~
-~17014~^~304~^26.^16^0.^~1~^^^^^^^^^^^~04/01/1989~
-~17014~^~305~^206.^16^3.^~1~^^^^^^^^^^^~04/01/1989~
-~17014~^~306~^338.^16^4.^~1~^^^^^^^^^^^~04/01/1989~
-~17014~^~307~^68.^16^0.^~1~^^^^^^^^^^^~04/01/1989~
-~17014~^~318~^0.^0^^~4~^^^^^^^^^^^~04/01/1989~
-~17014~^~319~^0.^0^^~4~^~NR~^^^^^^^^^^~12/01/2002~
-~17014~^~320~^0.^0^^~4~^~NC~^^^^^^^^^^~12/01/2006~
-~17014~^~321~^0.^0^^~7~^~Z~^^^^^^^^^^~12/01/2002~
-~17014~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~12/01/2002~
-~17014~^~324~^2.^40^^~1~^~A~^^^^^^^^^^~02/01/2009~
-~17014~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~12/01/2002~
-~17014~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~12/01/2002~
-~17014~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~12/01/2002~
-~17014~^~417~^23.^16^1.^~1~^^^^^^^^^^^~04/01/1989~
-~17014~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~
-~17014~^~432~^23.^16^1.^~1~^^^^^^^^^^^~12/01/2006~
-~17014~^~435~^23.^0^^~4~^~NC~^^^^^^^^^^~02/01/2009~
-~17014~^~601~^89.^16^2.^~1~^^^^^^^^^^^~04/01/1989~
-~17015~^~208~^201.^0^^~4~^~NC~^^^^^^^^^^~04/01/1989~
-~17015~^~268~^841.^0^^~4~^^^^^^^^^^^
-~17015~^~301~^8.^0^^~1~^^^^^^^^^^^~04/01/1989~
-~17015~^~304~^24.^0^^~1~^^^^^^^^^^^~04/01/1989~
-~17015~^~305~^178.^0^^~1~^^^^^^^^^^^~04/01/1989~
-~17015~^~306~^261.^0^^~1~^^^^^^^^^^^~04/01/1989~
-~17015~^~307~^57.^0^^~1~^^^^^^^^^^^~04/01/1989~
-~17015~^~318~^0.^0^^~4~^^^^^^^^^^^~04/01/1989~
-~17015~^~319~^0.^0^^~4~^^^^^^^^^^^~06/01/2002~
-~17015~^~320~^0.^0^^~4~^^^^^^^^^^^~06/01/2002~
-~17015~^~417~^20.^0^^~1~^^^^^^^^^^^~04/01/1989~
-~17015~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~
-~17015~^~432~^20.^0^^~1~^^^^^^^^^^^~04/01/1989~
-~17015~^~435~^20.^0^^~4~^~NC~^^^^^^^^^^~01/01/2001~
-~17015~^~601~^67.^0^^~1~^^^^^^^^^^^~04/01/1989~
-~17016~^~208~^225.^0^^~4~^~NC~^^^^^^^^^^~04/01/1989~
-~17016~^~268~^941.^0^^~4~^^^^^^^^^^^
-~17016~^~301~^10.^0^^~1~^^^^^^^^^^^~04/01/1989~
-~17016~^~304~^25.^0^^~1~^^^^^^^^^^^~04/01/1989~
-~17016~^~305~^198.^0^^~1~^^^^^^^^^^^~04/01/1989~
-~17016~^~306~^326.^0^^~1~^^^^^^^^^^^~04/01/1989~
-~17016~^~307~^65.^0^^~1~^^^^^^^^^^^~04/01/1989~
-~17016~^~318~^0.^0^^~4~^^^^^^^^^^^~04/01/1989~
-~17016~^~319~^0.^0^^~4~^^^^^^^^^^^~06/01/2002~
-~17016~^~320~^0.^0^^~4~^^^^^^^^^^^~06/01/2002~
-~17016~^~417~^22.^0^^~1~^^^^^^^^^^^~04/01/1989~
-~17016~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~
-~17016~^~432~^22.^0^^~1~^^^^^^^^^^^~04/01/1989~
-~17016~^~435~^22.^0^^~4~^~NC~^^^^^^^^^^~01/01/2001~
-~17016~^~601~^90.^0^^~1~^^^^^^^^^^^~04/01/1989~
-~17017~^~208~^125.^0^^~4~^~NC~^^^^^^^^^^~04/01/1989~
-~17017~^~268~^523.^0^^~4~^^^^^^^^^^^
-~17017~^~301~^6.^32^0.^~1~^^^^^^^^^^^~04/01/1989~
-~17017~^~304~^27.^32^0.^~1~^^^^^^^^^^^~04/01/1989~
-~17017~^~305~^195.^16^3.^~1~^^^^^^^^^^^~04/01/1989~
-~17017~^~306~^290.^32^13.^~1~^^^^^^^^^^^~04/01/1989~
-~17017~^~307~^61.^32^2.^~1~^^^^^^^^^^^~04/01/1989~
-~17017~^~318~^0.^0^^~4~^^^^^^^^^^^~04/01/1989~
-~17017~^~319~^0.^0^^~4~^^^^^^^^^^^~06/01/2002~
-~17017~^~320~^0.^0^^~4~^^^^^^^^^^^~06/01/2002~
-~17017~^~417~^23.^16^1.^~1~^^^^^^^^^^^~04/01/1989~
-~17017~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~
-~17017~^~432~^23.^16^1.^~1~^^^^^^^^^^^~04/01/1989~
-~17017~^~435~^23.^0^^~4~^~NC~^^^^^^^^^^~01/01/2001~
-~17017~^~601~^64.^16^1.^~1~^^^^^^^^^^^~04/01/1989~
-~17018~^~208~^180.^0^^~4~^~NC~^^^^^^^^^^~04/01/1989~
-~17018~^~268~^753.^0^^~4~^^^^^^^^^^^
-~17018~^~301~^8.^16^0.^~1~^^^^^^^^^^^~04/01/1989~
-~17018~^~304~^26.^16^0.^~1~^^^^^^^^^^^~04/01/1989~
-~17018~^~305~^208.^16^4.^~1~^^^^^^^^^^^~04/01/1989~
-~17018~^~306~^342.^16^4.^~1~^^^^^^^^^^^~04/01/1989~
-~17018~^~307~^66.^16^1.^~1~^^^^^^^^^^^~04/01/1989~
-~17018~^~318~^0.^0^^~4~^^^^^^^^^^^~04/01/1989~
-~17018~^~319~^0.^0^^~4~^^^^^^^^^^^~06/01/2002~
-~17018~^~320~^0.^0^^~4~^^^^^^^^^^^~06/01/2002~
-~17018~^~417~^24.^16^1.^~1~^^^^^^^^^^^~04/01/1989~
-~17018~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~
-~17018~^~432~^24.^16^1.^~1~^^^^^^^^^^^~04/01/1989~
-~17018~^~435~^24.^0^^~4~^~NC~^^^^^^^^^^~01/01/2001~
-~17018~^~601~^87.^16^3.^~1~^^^^^^^^^^^~04/01/1989~
-~17019~^~208~^272.^0^^~4~^~NC~^^^^^^^^^^~04/01/1989~
-~17019~^~268~^1138.^0^^~4~^^^^^^^^^^^
-~17019~^~301~^10.^0^^~1~^^^^^^^^^^^~04/01/1989~
-~17019~^~304~^22.^0^^~1~^^^^^^^^^^^~04/01/1989~
-~17019~^~305~^159.^0^^~1~^^^^^^^^^^^~04/01/1989~
-~17019~^~306~^231.^0^^~1~^^^^^^^^^^^~04/01/1989~
-~17019~^~307~^56.^0^^~1~^^^^^^^^^^^~04/01/1989~
-~17019~^~318~^0.^0^^~4~^^^^^^^^^^^~04/01/1989~
-~17019~^~319~^0.^0^^~4~^^^^^^^^^^^~06/01/2002~
-~17019~^~320~^0.^0^^~4~^^^^^^^^^^^~06/01/2002~
-~17019~^~417~^18.^0^^~1~^^^^^^^^^^^~04/01/1989~
-~17019~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~
-~17019~^~432~^18.^0^^~1~^^^^^^^^^^^~04/01/1989~
-~17019~^~435~^18.^0^^~4~^~NC~^^^^^^^^^^~01/01/2001~
-~17019~^~601~^72.^0^^~1~^^^^^^^^^^^~04/01/1989~
-~17020~^~208~^292.^0^^~4~^~NC~^^^^^^^^^^~04/01/1989~
-~17020~^~268~^1222.^0^^~4~^^^^^^^^^^^
-~17020~^~301~^11.^0^^~1~^^^^^^^^^^^~04/01/1989~
-~17020~^~304~^22.^0^^~1~^^^^^^^^^^^~04/01/1989~
-~17020~^~305~^183.^0^^~1~^^^^^^^^^^^~04/01/1989~
-~17020~^~306~^301.^0^^~1~^^^^^^^^^^^~04/01/1989~
-~17020~^~307~^68.^0^^~1~^^^^^^^^^^^~04/01/1989~
-~17020~^~318~^0.^0^^~4~^^^^^^^^^^^~04/01/1989~
-~17020~^~319~^0.^0^^~4~^^^^^^^^^^^~06/01/2002~
-~17020~^~320~^0.^0^^~4~^^^^^^^^^^^~06/01/2002~
-~17020~^~417~^17.^0^^~1~^^^^^^^^^^^~04/01/1989~
-~17020~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~
-~17020~^~432~^17.^0^^~1~^^^^^^^^^^^~04/01/1989~
-~17020~^~435~^17.^0^^~4~^~NC~^^^^^^^^^^~01/01/2001~
-~17020~^~601~^97.^0^^~1~^^^^^^^^^^^~04/01/1989~
-~17021~^~208~^134.^0^^~4~^~NC~^^^^^^^^^^~04/01/1989~
-~17021~^~268~^561.^0^^~4~^^^^^^^^^^^
-~17021~^~301~^7.^32^0.^~1~^^^^^^^^^^^~04/01/1989~
-~17021~^~304~^27.^32^1.^~1~^^^^^^^^^^^~04/01/1989~
-~17021~^~305~^189.^16^4.^~1~^^^^^^^^^^^~04/01/1989~
-~17021~^~306~^284.^32^14.^~1~^^^^^^^^^^^~04/01/1989~
-~17021~^~307~^64.^32^2.^~1~^^^^^^^^^^^~04/01/1989~
-~17021~^~318~^0.^0^^~4~^^^^^^^^^^^~04/01/1989~
-~17021~^~319~^0.^0^^~4~^^^^^^^^^^^~06/01/2002~
-~17021~^~320~^0.^0^^~4~^^^^^^^^^^^~06/01/2002~
-~17021~^~417~^24.^16^1.^~1~^^^^^^^^^^^~04/01/1989~
-~17021~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~
-~17021~^~432~^24.^16^1.^~1~^^^^^^^^^^^~04/01/1989~
-~17021~^~435~^24.^0^^~4~^~NC~^^^^^^^^^^~01/01/2001~
-~17021~^~601~^66.^16^1.^~1~^^^^^^^^^^^~04/01/1989~
-~17022~^~208~^204.^0^^~4~^~NC~^^^^^^^^^^~04/01/1989~
-~17022~^~268~^854.^0^^~4~^^^^^^^^^^^
-~17022~^~301~^8.^16^0.^~1~^^^^^^^^^^^~04/01/1989~
-~17022~^~304~^25.^16^0.^~1~^^^^^^^^^^^~04/01/1989~
-~17022~^~305~^203.^16^3.^~1~^^^^^^^^^^^~04/01/1989~
-~17022~^~306~^333.^16^4.^~1~^^^^^^^^^^^~04/01/1989~
-~17022~^~307~^71.^16^0.^~1~^^^^^^^^^^^~04/01/1989~
-~17022~^~318~^0.^0^^~4~^^^^^^^^^^^~04/01/1989~
-~17022~^~319~^0.^0^^~4~^^^^^^^^^^^~06/01/2002~
-~17022~^~320~^0.^0^^~4~^^^^^^^^^^^~06/01/2002~
-~17022~^~417~^21.^16^1.^~1~^^^^^^^^^^^~04/01/1989~
-~17022~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~
-~17022~^~432~^21.^16^1.^~1~^^^^^^^^^^^~04/01/1989~
-~17022~^~435~^21.^0^^~4~^~NC~^^^^^^^^^^~01/01/2001~
-~17022~^~601~^92.^16^3.^~1~^^^^^^^^^^^~04/01/1989~
-~17023~^~208~^310.^0^^~4~^~NC~^^^^^^^^^^~04/01/1989~
-~17023~^~268~^1297.^0^^~4~^^^^^^^^^^^
-~17023~^~301~^15.^0^^~1~^^^^^^^^^^^~04/01/1989~
-~17023~^~304~^21.^0^^~1~^^^^^^^^^^^~04/01/1989~
-~17023~^~305~^152.^0^^~1~^^^^^^^^^^^~04/01/1989~
-~17023~^~306~^214.^0^^~1~^^^^^^^^^^^~04/01/1989~
-~17023~^~307~^56.^0^^~1~^^^^^^^^^^^~04/01/1989~
-~17023~^~318~^0.^0^^~4~^^^^^^^^^^^~04/01/1989~
-~17023~^~319~^0.^0^^~4~^^^^^^^^^^^~06/01/2002~
-~17023~^~320~^0.^0^^~4~^^^^^^^^^^^~06/01/2002~
-~17023~^~417~^17.^0^^~1~^^^^^^^^^^^~04/01/1989~
-~17023~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~
-~17023~^~432~^17.^0^^~1~^^^^^^^^^^^~04/01/1989~
-~17023~^~435~^17.^0^^~4~^~NC~^^^^^^^^^^~01/01/2001~
-~17023~^~601~^74.^0^^~1~^^^^^^^^^^^~04/01/1989~
-~17024~^~208~^316.^0^^~4~^~NC~^^^^^^^^^^~04/01/1989~
-~17024~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~12/01/2002~
-~17024~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~12/01/2002~
-~17024~^~268~^1322.^0^^~4~^^^^^^^^^^^~12/01/2006~
-~17024~^~301~^20.^0^^~1~^^^^^^^^^^^~04/01/1989~
-~17024~^~304~^24.^0^^~1~^^^^^^^^^^^~04/01/1989~
-~17024~^~305~^196.^0^^~1~^^^^^^^^^^^~04/01/1989~
-~17024~^~306~^327.^0^^~1~^^^^^^^^^^^~04/01/1989~
-~17024~^~307~^77.^0^^~1~^^^^^^^^^^^~04/01/1989~
-~17024~^~318~^0.^0^^~4~^^^^^^^^^^^~04/01/1989~
-~17024~^~319~^0.^0^^~4~^~NR~^^^^^^^^^^~12/01/2002~
-~17024~^~320~^0.^0^^~4~^~NC~^^^^^^^^^^~12/01/2006~
-~17024~^~321~^0.^0^^~7~^~Z~^^^^^^^^^^~12/01/2002~
-~17024~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~12/01/2002~
-~17024~^~324~^2.^40^^~1~^~A~^^^^^^^^^^~02/01/2009~
-~17024~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~12/01/2002~
-~17024~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~12/01/2002~
-~17024~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~12/01/2002~
-~17024~^~417~^18.^0^^~1~^^^^^^^^^^^~04/01/1989~
-~17024~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~
-~17024~^~432~^18.^0^^~1~^^^^^^^^^^^~12/01/2006~
-~17024~^~435~^18.^0^^~4~^~NC~^^^^^^^^^^~02/01/2009~
-~17024~^~601~^100.^0^^~1~^^^^^^^^^^^~04/01/1989~
-~17025~^~208~^309.^0^^~4~^~NC~^^^^^^^^^^~04/01/1989~
-~17025~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~12/01/2002~
-~17025~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~12/01/2002~
-~17025~^~268~^1293.^0^^~4~^^^^^^^^^^^~12/01/2006~
-~17025~^~301~^18.^0^^~1~^^^^^^^^^^^~04/01/1989~
-~17025~^~304~^23.^0^^~1~^^^^^^^^^^^~04/01/1989~
-~17025~^~305~^180.^0^^~1~^^^^^^^^^^^~04/01/1989~
-~17025~^~306~^246.^0^^~1~^^^^^^^^^^^~04/01/1989~
-~17025~^~307~^64.^0^^~1~^^^^^^^^^^^~04/01/1989~
-~17025~^~318~^0.^0^^~4~^^^^^^^^^^^~04/01/1989~
-~17025~^~319~^0.^0^^~4~^~NR~^^^^^^^^^^~12/01/2002~
-~17025~^~320~^0.^0^^~4~^~NC~^^^^^^^^^^~12/01/2006~
-~17025~^~321~^0.^0^^~7~^~Z~^^^^^^^^^^~12/01/2002~
-~17025~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~12/01/2002~
-~17025~^~324~^2.^40^^~1~^~A~^^^^^^^^^^~02/01/2009~
-~17025~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~12/01/2002~
-~17025~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~12/01/2002~
-~17025~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~12/01/2002~
-~17025~^~417~^19.^0^^~1~^^^^^^^^^^^~04/01/1989~
-~17025~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~
-~17025~^~432~^19.^0^^~1~^^^^^^^^^^^~12/01/2006~
-~17025~^~435~^19.^0^^~4~^~NC~^^^^^^^^^^~02/01/2009~
-~17025~^~601~^95.^0^^~1~^^^^^^^^^^^~04/01/1989~
-~17026~^~208~^143.^0^^~4~^~NC~^^^^^^^^^^~04/01/1989~
-~17026~^~268~^598.^0^^~4~^^^^^^^^^^^
-~17026~^~301~^12.^32^0.^~1~^^^^^^^^^^^~04/01/1989~
-~17026~^~304~^27.^32^0.^~1~^^^^^^^^^^^~04/01/1989~
-~17026~^~305~^190.^16^3.^~1~^^^^^^^^^^^~04/01/1989~
-~17026~^~306~^276.^32^14.^~1~^^^^^^^^^^^~04/01/1989~
-~17026~^~307~^68.^32^2.^~1~^^^^^^^^^^^~04/01/1989~
-~17026~^~318~^0.^0^^~4~^^^^^^^^^^^~04/01/1989~
-~17026~^~319~^0.^0^^~4~^^^^^^^^^^^~06/01/2002~
-~17026~^~320~^0.^0^^~4~^^^^^^^^^^^~06/01/2002~
-~17026~^~417~^24.^16^1.^~1~^^^^^^^^^^^~04/01/1989~
-~17026~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~
-~17026~^~432~^24.^16^1.^~1~^^^^^^^^^^^~04/01/1989~
-~17026~^~435~^24.^0^^~4~^~NC~^^^^^^^^^^~01/01/2001~
-~17026~^~601~^66.^16^1.^~1~^^^^^^^^^^^~04/01/1989~
-~17027~^~208~^216.^0^^~4~^~NC~^^^^^^^^^^~04/01/1989~
-~17027~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~12/01/2002~
-~17027~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~12/01/2002~
-~17027~^~268~^904.^0^^~4~^^^^^^^^^^^~12/01/2006~
-~17027~^~301~^19.^16^1.^~1~^^^^^^^^^^^~04/01/1989~
-~17027~^~304~^28.^16^0.^~1~^^^^^^^^^^^~04/01/1989~
-~17027~^~305~^226.^16^5.^~1~^^^^^^^^^^^~04/01/1989~
-~17027~^~306~^376.^16^8.^~1~^^^^^^^^^^^~04/01/1989~
-~17027~^~307~^84.^16^1.^~1~^^^^^^^^^^^~04/01/1989~
-~17027~^~318~^0.^0^^~4~^^^^^^^^^^^~04/01/1989~
-~17027~^~319~^0.^0^^~4~^~NR~^^^^^^^^^^~12/01/2002~
-~17027~^~320~^0.^0^^~4~^~NC~^^^^^^^^^^~12/01/2006~
-~17027~^~321~^0.^0^^~7~^~Z~^^^^^^^^^^~12/01/2002~
-~17027~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~12/01/2002~
-~17027~^~324~^2.^40^^~1~^~A~^^^^^^^^^^~02/01/2009~
-~17027~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~12/01/2002~
-~17027~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~12/01/2002~
-~17027~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~12/01/2002~
-~17027~^~417~^24.^16^1.^~1~^^^^^^^^^^^~04/01/1989~
-~17027~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~
-~17027~^~432~^24.^16^1.^~1~^^^^^^^^^^^~12/01/2006~
-~17027~^~435~^24.^0^^~4~^~NC~^^^^^^^^^^~02/01/2009~
-~17027~^~601~^95.^16^3.^~1~^^^^^^^^^^^~04/01/1989~
-~17028~^~208~^202.^0^^~4~^~NC~^^^^^^^^^^~04/01/1989~
-~17028~^~268~^845.^0^^~4~^^^^^^^^^^^
-~17028~^~301~^17.^0^^~1~^^^^^^^^^^^~04/01/1989~
-~17028~^~304~^27.^0^^~1~^^^^^^^^^^^~04/01/1989~
-~17028~^~305~^206.^0^^~1~^^^^^^^^^^^~04/01/1989~
-~17028~^~306~^267.^0^^~1~^^^^^^^^^^^~04/01/1989~
-~17028~^~307~^66.^0^^~1~^^^^^^^^^^^~04/01/1989~
-~17028~^~318~^0.^0^^~4~^^^^^^^^^^^~04/01/1989~
-~17028~^~319~^0.^0^^~4~^^^^^^^^^^^~06/01/2002~
-~17028~^~320~^0.^0^^~4~^^^^^^^^^^^~06/01/2002~
-~17028~^~417~^25.^0^^~1~^^^^^^^^^^^~04/01/1989~
-~17028~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~
-~17028~^~432~^25.^0^^~1~^^^^^^^^^^^~04/01/1989~
-~17028~^~435~^25.^0^^~4~^~NC~^^^^^^^^^^~01/01/2001~
-~17028~^~601~^87.^0^^~1~^^^^^^^^^^^~04/01/1989~
-~17029~^~208~^372.^0^^~4~^~NC~^^^^^^^^^^~04/01/1989~
-~17029~^~268~^1556.^0^^~4~^^^^^^^^^^^
-~17029~^~301~^15.^0^^~1~^^^^^^^^^^^~04/01/1989~
-~17029~^~304~^18.^0^^~1~^^^^^^^^^^^~04/01/1989~
-~17029~^~305~^137.^0^^~1~^^^^^^^^^^^~04/01/1989~
-~17029~^~306~^190.^0^^~1~^^^^^^^^^^^~04/01/1989~
-~17029~^~307~^56.^0^^~1~^^^^^^^^^^^~04/01/1989~
-~17029~^~318~^0.^0^^~4~^^^^^^^^^^^~04/01/1989~
-~17029~^~319~^0.^0^^~4~^^^^^^^^^^^~06/01/2002~
-~17029~^~320~^0.^0^^~4~^^^^^^^^^^^~06/01/2002~
-~17029~^~417~^14.^0^^~1~^^^^^^^^^^^~04/01/1989~
-~17029~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~
-~17029~^~432~^14.^0^^~1~^^^^^^^^^^^~04/01/1989~
-~17029~^~435~^14.^0^^~4~^~NC~^^^^^^^^^^~01/01/2001~
-~17029~^~601~^76.^0^^~1~^^^^^^^^^^^~04/01/1989~
-~17030~^~208~^361.^0^^~4~^~NC~^^^^^^^^^^~04/01/1989~
-~17030~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~12/01/2002~
-~17030~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~12/01/2002~
-~17030~^~268~^1510.^0^^~4~^^^^^^^^^^^~12/01/2006~
-~17030~^~301~^19.^0^^~1~^^^^^^^^^^^~04/01/1989~
-~17030~^~304~^23.^0^^~1~^^^^^^^^^^^~04/01/1989~
-~17030~^~305~^178.^0^^~1~^^^^^^^^^^^~04/01/1989~
-~17030~^~306~^270.^0^^~1~^^^^^^^^^^^~04/01/1989~
-~17030~^~307~^76.^0^^~1~^^^^^^^^^^^~04/01/1989~
-~17030~^~318~^0.^0^^~4~^^^^^^^^^^^~04/01/1989~
-~17030~^~319~^0.^0^^~4~^~NR~^^^^^^^^^^~12/01/2002~
-~17030~^~320~^0.^0^^~4~^~NC~^^^^^^^^^^~12/01/2006~
-~17030~^~321~^0.^0^^~7~^~Z~^^^^^^^^^^~12/01/2002~
-~17030~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~12/01/2002~
-~17030~^~324~^2.^40^^~1~^~A~^^^^^^^^^^~02/01/2009~
-~17030~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~12/01/2002~
-~17030~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~12/01/2002~
-~17030~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~12/01/2002~
-~17030~^~417~^14.^0^^~1~^^^^^^^^^^^~04/01/1989~
-~17030~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~
-~17030~^~432~^14.^0^^~1~^^^^^^^^^^^~12/01/2006~
-~17030~^~435~^14.^0^^~4~^~NC~^^^^^^^^^^~02/01/2009~
-~17030~^~601~^99.^0^^~1~^^^^^^^^^^^~04/01/1989~
-~17031~^~208~^359.^0^^~4~^~NC~^^^^^^^^^^~04/01/1989~
-~17031~^~268~^1502.^0^^~4~^^^^^^^^^^^
-~17031~^~301~^22.^0^^~1~^^^^^^^^^^^~04/01/1989~
-~17031~^~304~^20.^0^^~1~^^^^^^^^^^^~04/01/1989~
-~17031~^~305~^166.^0^^~1~^^^^^^^^^^^~04/01/1989~
-~17031~^~306~^271.^0^^~1~^^^^^^^^^^^~04/01/1989~
-~17031~^~307~^73.^0^^~1~^^^^^^^^^^^~04/01/1989~
-~17031~^~318~^0.^0^^~4~^^^^^^^^^^^~04/01/1989~
-~17031~^~319~^0.^0^^~4~^^^^^^^^^^^~06/01/2002~
-~17031~^~320~^0.^0^^~4~^^^^^^^^^^^~06/01/2002~
-~17031~^~417~^15.^0^^~1~^^^^^^^^^^^~04/01/1989~
-~17031~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~
-~17031~^~432~^15.^0^^~1~^^^^^^^^^^^~04/01/1989~
-~17031~^~435~^15.^0^^~4~^~NC~^^^^^^^^^^~01/01/2001~
-~17031~^~601~^97.^0^^~1~^^^^^^^^^^^~04/01/1989~
-~17032~^~208~^169.^0^^~4~^~NC~^^^^^^^^^^~04/01/1989~
-~17032~^~268~^707.^0^^~4~^^^^^^^^^^^
-~17032~^~301~^12.^32^0.^~1~^^^^^^^^^^^~04/01/1989~
-~17032~^~304~^25.^32^0.^~1~^^^^^^^^^^^~04/01/1989~
-~17032~^~305~^181.^16^3.^~1~^^^^^^^^^^^~04/01/1989~
-~17032~^~306~^265.^32^12.^~1~^^^^^^^^^^^~04/01/1989~
-~17032~^~307~^72.^32^3.^~1~^^^^^^^^^^^~04/01/1989~
-~17032~^~318~^0.^0^^~4~^^^^^^^^^^^~04/01/1989~
-~17032~^~319~^0.^0^^~4~^^^^^^^^^^^~06/01/2002~
-~17032~^~320~^0.^0^^~4~^^^^^^^^^^^~06/01/2002~
-~17032~^~417~^21.^16^1.^~1~^^^^^^^^^^^~04/01/1989~
-~17032~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~
-~17032~^~432~^21.^16^1.^~1~^^^^^^^^^^^~04/01/1989~
-~17032~^~435~^21.^0^^~4~^~NC~^^^^^^^^^^~01/01/2001~
-~17032~^~601~^66.^16^1.^~1~^^^^^^^^^^^~04/01/1989~
-~17033~^~208~^235.^0^^~4~^~NC~^^^^^^^^^^~04/01/1989~
-~17033~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~12/01/2002~
-~17033~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~12/01/2002~
-~17033~^~268~^983.^0^^~4~^^^^^^^^^^^~12/01/2006~
-~17033~^~301~^16.^0^^~1~^^^^^^^^^^^~04/01/1989~
-~17033~^~304~^29.^0^^~1~^^^^^^^^^^^~04/01/1989~
-~17033~^~305~^213.^0^^~1~^^^^^^^^^^^~04/01/1989~
-~17033~^~306~^313.^0^^~1~^^^^^^^^^^^~04/01/1989~
-~17033~^~307~^85.^0^^~1~^^^^^^^^^^^~04/01/1989~
-~17033~^~318~^0.^0^^~4~^^^^^^^^^^^~04/01/1989~
-~17033~^~319~^0.^0^^~4~^~NR~^^^^^^^^^^~12/01/2002~
-~17033~^~320~^0.^0^^~4~^~NC~^^^^^^^^^^~12/01/2006~
-~17033~^~321~^0.^0^^~7~^~Z~^^^^^^^^^^~12/01/2002~
-~17033~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~12/01/2002~
-~17033~^~324~^2.^40^^~1~^~A~^^^^^^^^^^~02/01/2009~
-~17033~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~12/01/2002~
-~17033~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~12/01/2002~
-~17033~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~12/01/2002~
-~17033~^~417~^21.^0^^~1~^^^^^^^^^^^~04/01/1989~
-~17033~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~
-~17033~^~432~^21.^0^^~1~^^^^^^^^^^^~12/01/2006~
-~17033~^~435~^21.^0^^~4~^~NC~^^^^^^^^^^~02/01/2009~
-~17033~^~601~^91.^0^^~1~^^^^^^^^^^^~04/01/1989~
-~17034~^~208~^232.^0^^~4~^~NC~^^^^^^^^^^~04/01/1989~
-~17034~^~268~^971.^0^^~4~^^^^^^^^^^^
-~17034~^~301~^21.^16^1.^~1~^^^^^^^^^^^~04/01/1989~
-~17034~^~304~^23.^16^0.^~1~^^^^^^^^^^^~04/01/1989~
-~17034~^~305~^195.^16^3.^~1~^^^^^^^^^^^~04/01/1989~
-~17034~^~306~^315.^16^4.^~1~^^^^^^^^^^^~04/01/1989~
-~17034~^~307~^81.^16^1.^~1~^^^^^^^^^^^~04/01/1989~
-~17034~^~318~^0.^0^^~4~^^^^^^^^^^^~04/01/1989~
-~17034~^~319~^0.^0^^~4~^^^^^^^^^^^~06/01/2002~
-~17034~^~320~^0.^0^^~4~^^^^^^^^^^^~06/01/2002~
-~17034~^~417~^22.^15^1.^~1~^^^^^^^^^^^~04/01/1989~
-~17034~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~
-~17034~^~432~^22.^15^1.^~1~^^^^^^^^^^^~04/01/1989~
-~17034~^~435~^22.^0^^~4~^~NC~^^^^^^^^^^~01/01/2001~
-~17034~^~601~^88.^16^2.^~1~^^^^^^^^^^^~04/01/1989~
-~17035~^~208~^264.^0^^~4~^~NC~^^^^^^^^^^~04/01/1989~
-~17035~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~12/01/2002~
-~17035~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~12/01/2002~
-~17035~^~268~^1105.^0^^~4~^^^^^^^^^^^~12/01/2006~
-~17035~^~301~^16.^0^^~1~^^^^^^^^^^^~04/01/1989~
-~17035~^~304~^21.^0^^~1~^^^^^^^^^^^~04/01/1989~
-~17035~^~305~^158.^0^^~1~^^^^^^^^^^^~04/01/1989~
-~17035~^~306~^230.^0^^~1~^^^^^^^^^^^~04/01/1989~
-~17035~^~307~^61.^0^^~1~^^^^^^^^^^^~04/01/1989~
-~17035~^~318~^0.^0^^~4~^^^^^^^^^^^~04/01/1989~
-~17035~^~319~^0.^0^^~4~^~NR~^^^^^^^^^^~12/01/2002~
-~17035~^~320~^0.^0^^~4~^~NC~^^^^^^^^^^~12/01/2006~
-~17035~^~321~^0.^0^^~7~^~Z~^^^^^^^^^^~12/01/2002~
-~17035~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~12/01/2002~
-~17035~^~324~^2.^40^^~1~^~A~^^^^^^^^^^~02/01/2009~
-~17035~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~12/01/2002~
-~17035~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~12/01/2002~
-~17035~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~12/01/2002~
-~17035~^~417~^19.^0^^~1~^^^^^^^^^^^~04/01/1989~
-~17035~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~
-~17035~^~432~^19.^0^^~1~^^^^^^^^^^^~12/01/2006~
-~17035~^~435~^19.^0^^~4~^~NC~^^^^^^^^^^~02/01/2009~
-~17035~^~601~^72.^0^^~1~^^^^^^^^^^^~04/01/1989~
-~17036~^~208~^344.^0^^~4~^~NC~^^^^^^^^^^~04/01/1989~
-~17036~^~268~^1439.^0^^~4~^^^^^^^^^^^
-~17036~^~301~^25.^0^^~1~^^^^^^^^^^^~04/01/1989~
-~17036~^~304~^24.^0^^~1~^^^^^^^^^^^~04/01/1989~
-~17036~^~305~^186.^0^^~1~^^^^^^^^^^^~04/01/1989~
-~17036~^~306~^248.^0^^~1~^^^^^^^^^^^~04/01/1989~
-~17036~^~307~^75.^0^^~1~^^^^^^^^^^^~04/01/1989~
-~17036~^~318~^0.^0^^~4~^^^^^^^^^^^~04/01/1989~
-~17036~^~319~^0.^0^^~4~^^^^^^^^^^^~06/01/2002~
-~17036~^~320~^0.^0^^~4~^^^^^^^^^^^~06/01/2002~
-~17036~^~417~^17.^0^^~1~^^^^^^^^^^^~04/01/1989~
-~17036~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~
-~17036~^~432~^17.^0^^~1~^^^^^^^^^^^~04/01/1989~
-~17036~^~435~^17.^0^^~4~^~NC~^^^^^^^^^^~01/01/2001~
-~17036~^~601~^116.^0^^~1~^^^^^^^^^^^~04/01/1989~
-~17037~^~208~^278.^0^^~4~^~NC~^^^^^^^^^^~04/01/1989~
-~17037~^~268~^1163.^0^^~4~^^^^^^^^^^^
-~17037~^~301~^21.^0^^~1~^^^^^^^^^^^~04/01/1989~
-~17037~^~304~^26.^0^^~1~^^^^^^^^^^^~04/01/1989~
-~17037~^~305~^198.^0^^~1~^^^^^^^^^^^~04/01/1989~
-~17037~^~306~^301.^0^^~1~^^^^^^^^^^^~04/01/1989~
-~17037~^~307~^78.^0^^~1~^^^^^^^^^^^~04/01/1989~
-~17037~^~318~^0.^0^^~4~^^^^^^^^^^^~04/01/1989~
-~17037~^~319~^0.^0^^~4~^^^^^^^^^^^~06/01/2002~
-~17037~^~320~^0.^0^^~4~^^^^^^^^^^^~06/01/2002~
-~17037~^~417~^19.^0^^~1~^^^^^^^^^^^~04/01/1989~
-~17037~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~
-~17037~^~432~^19.^0^^~1~^^^^^^^^^^^~04/01/1989~
-~17037~^~435~^19.^0^^~4~^~NC~^^^^^^^^^^~01/01/2001~
-~17037~^~601~^97.^0^^~1~^^^^^^^^^^^~04/01/1989~
-~17038~^~208~^276.^0^^~4~^~NC~^^^^^^^^^^~04/01/1989~
-~17038~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~12/01/2002~
-~17038~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~12/01/2002~
-~17038~^~268~^1155.^0^^~4~^^^^^^^^^^^~12/01/2006~
-~17038~^~301~^20.^0^^~1~^^^^^^^^^^^~04/01/1989~
-~17038~^~304~^23.^0^^~1~^^^^^^^^^^^~04/01/1989~
-~17038~^~305~^184.^0^^~1~^^^^^^^^^^^~04/01/1989~
-~17038~^~306~^251.^0^^~1~^^^^^^^^^^^~04/01/1989~
-~17038~^~307~^66.^0^^~1~^^^^^^^^^^^~04/01/1989~
-~17038~^~318~^0.^0^^~4~^^^^^^^^^^^~04/01/1989~
-~17038~^~319~^0.^0^^~4~^~NR~^^^^^^^^^^~12/01/2002~
-~17038~^~320~^0.^0^^~4~^~NC~^^^^^^^^^^~12/01/2006~
-~17038~^~321~^0.^0^^~7~^~Z~^^^^^^^^^^~12/01/2002~
-~17038~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~12/01/2002~
-~17038~^~324~^2.^40^^~1~^~A~^^^^^^^^^^~02/01/2009~
-~17038~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~12/01/2002~
-~17038~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~12/01/2002~
-~17038~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~12/01/2002~
-~17038~^~417~^21.^0^^~1~^^^^^^^^^^^~04/01/1989~
-~17038~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~
-~17038~^~432~^21.^0^^~1~^^^^^^^^^^^~12/01/2006~
-~17038~^~435~^21.^0^^~4~^~NC~^^^^^^^^^^~02/01/2009~
-~17038~^~601~^92.^0^^~1~^^^^^^^^^^^~04/01/1989~
-~17039~^~208~^144.^0^^~4~^~NC~^^^^^^^^^^~04/01/1989~
-~17039~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~12/01/2002~
-~17039~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~12/01/2002~
-~17039~^~268~^602.^0^^~4~^^^^^^^^^^^~12/01/2006~
-~17039~^~301~^15.^32^0.^~1~^^^^^^^^^^^~04/01/1989~
-~17039~^~304~^24.^32^0.^~1~^^^^^^^^^^^~04/01/1989~
-~17039~^~305~^184.^16^3.^~1~^^^^^^^^^^^~04/01/1989~
-~17039~^~306~^274.^32^12.^~1~^^^^^^^^^^^~04/01/1989~
-~17039~^~307~^70.^32^3.^~1~^^^^^^^^^^^~04/01/1989~
-~17039~^~318~^0.^0^^~4~^^^^^^^^^^^~04/01/1989~
-~17039~^~319~^0.^0^^~4~^~NR~^^^^^^^^^^~12/01/2002~
-~17039~^~320~^0.^0^^~4~^~NC~^^^^^^^^^^~12/01/2006~
-~17039~^~321~^0.^0^^~7~^~Z~^^^^^^^^^^~12/01/2002~
-~17039~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~12/01/2002~
-~17039~^~324~^2.^40^^~1~^~A~^^^^^^^^^^~02/01/2009~
-~17039~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~12/01/2002~
-~17039~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~12/01/2002~
-~17039~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~12/01/2002~
-~17039~^~417~^23.^16^1.^~1~^^^^^^^^^^^~04/01/1989~
-~17039~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~
-~17039~^~432~^23.^16^1.^~1~^^^^^^^^^^^~12/01/2006~
-~17039~^~435~^23.^0^^~4~^~NC~^^^^^^^^^^~02/01/2009~
-~17039~^~601~^66.^16^1.^~1~^^^^^^^^^^^~04/01/1989~
-~17040~^~208~^283.^0^^~4~^~NC~^^^^^^^^^^~04/01/1989~
-~17040~^~268~^1184.^0^^~4~^^^^^^^^^^^
-~17040~^~301~^26.^0^^~1~^^^^^^^^^^^~04/01/1989~
-~17040~^~304~^27.^0^^~1~^^^^^^^^^^^~04/01/1989~
-~17040~^~305~^204.^0^^~1~^^^^^^^^^^^~04/01/1989~
-~17040~^~306~^261.^0^^~1~^^^^^^^^^^^~04/01/1989~
-~17040~^~307~^79.^0^^~1~^^^^^^^^^^^~04/01/1989~
-~17040~^~318~^0.^0^^~4~^^^^^^^^^^^~04/01/1989~
-~17040~^~319~^0.^0^^~4~^^^^^^^^^^^~06/01/2002~
-~17040~^~320~^0.^0^^~4~^^^^^^^^^^^~06/01/2002~
-~17040~^~417~^21.^0^^~1~^^^^^^^^^^^~04/01/1989~
-~17040~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~
-~17040~^~432~^21.^0^^~1~^^^^^^^^^^^~04/01/1989~
-~17040~^~435~^21.^0^^~4~^~NC~^^^^^^^^^^~01/01/2001~
-~17040~^~601~^117.^0^^~1~^^^^^^^^^^^~04/01/1989~
-~17041~^~208~^210.^0^^~4~^~NC~^^^^^^^^^^~04/01/1989~
-~17041~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~12/01/2002~
-~17041~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~12/01/2002~
-~17041~^~268~^879.^0^^~4~^^^^^^^^^^^~12/01/2006~
-~17041~^~301~^21.^0^^~1~^^^^^^^^^^^~04/01/1989~
-~17041~^~304~^29.^0^^~1~^^^^^^^^^^^~04/01/1989~
-~17041~^~305~^217.^0^^~1~^^^^^^^^^^^~04/01/1989~
-~17041~^~306~^324.^0^^~1~^^^^^^^^^^^~04/01/1989~
-~17041~^~307~^83.^0^^~1~^^^^^^^^^^^~04/01/1989~
-~17041~^~318~^0.^0^^~4~^^^^^^^^^^^~04/01/1989~
-~17041~^~319~^0.^0^^~4~^~NR~^^^^^^^^^^~12/01/2002~
-~17041~^~320~^0.^0^^~4~^~NC~^^^^^^^^^^~12/01/2006~
-~17041~^~321~^0.^0^^~7~^~Z~^^^^^^^^^^~12/01/2002~
-~17041~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~12/01/2002~
-~17041~^~324~^2.^40^^~1~^~A~^^^^^^^^^^~02/01/2009~
-~17041~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~12/01/2002~
-~17041~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~12/01/2002~
-~17041~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~12/01/2002~
-~17041~^~417~^23.^0^^~1~^^^^^^^^^^^~04/01/1989~
-~17041~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~
-~17041~^~432~^23.^0^^~1~^^^^^^^^^^^~12/01/2006~
-~17041~^~435~^23.^0^^~4~^~NC~^^^^^^^^^^~02/01/2009~
-~17041~^~601~^93.^0^^~1~^^^^^^^^^^^~04/01/1989~
-~17042~^~208~^204.^0^^~4~^~NC~^^^^^^^^^^~04/01/1989~
-~17042~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~12/01/2002~
-~17042~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~12/01/2002~
-~17042~^~268~^854.^0^^~4~^^^^^^^^^^^~12/01/2006~
-~17042~^~301~^19.^0^^~1~^^^^^^^^^^^~04/01/1989~
-~17042~^~304~^25.^0^^~1~^^^^^^^^^^^~04/01/1989~
-~17042~^~305~^200.^0^^~1~^^^^^^^^^^^~04/01/1989~
-~17042~^~306~^265.^0^^~1~^^^^^^^^^^^~04/01/1989~
-~17042~^~307~^68.^0^^~1~^^^^^^^^^^^~04/01/1989~
-~17042~^~318~^0.^0^^~4~^^^^^^^^^^^~04/01/1989~
-~17042~^~319~^0.^0^^~4~^~NR~^^^^^^^^^^~12/01/2002~
-~17042~^~320~^0.^0^^~4~^~NC~^^^^^^^^^^~12/01/2006~
-~17042~^~321~^0.^0^^~7~^~Z~^^^^^^^^^^~12/01/2002~
-~17042~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~12/01/2002~
-~17042~^~324~^2.^40^^~1~^~A~^^^^^^^^^^~02/01/2009~
-~17042~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~12/01/2002~
-~17042~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~12/01/2002~
-~17042~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~12/01/2002~
-~17042~^~417~^25.^0^^~1~^^^^^^^^^^^~04/01/1989~
-~17042~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~
-~17042~^~432~^25.^0^^~1~^^^^^^^^^^^~12/01/2006~
-~17042~^~435~^25.^0^^~4~^~NC~^^^^^^^^^^~02/01/2009~
-~17042~^~601~^87.^0^^~1~^^^^^^^^^^^~04/01/1989~
-~17043~^~208~^260.^0^^~4~^~NC~^^^^^^^^^^~04/01/1989~
-~17043~^~268~^1088.^0^^~4~^^^^^^^^^^^
-~17043~^~301~^14.^0^^~1~^^^^^^^^^^^~04/01/1989~
-~17043~^~304~^21.^0^^~1~^^^^^^^^^^^~04/01/1989~
-~17043~^~305~^159.^0^^~1~^^^^^^^^^^^~04/01/1989~
-~17043~^~306~^238.^0^^~1~^^^^^^^^^^^~04/01/1989~
-~17043~^~307~^60.^0^^~1~^^^^^^^^^^^~04/01/1989~
-~17043~^~318~^0.^0^^~4~^^^^^^^^^^^~04/01/1989~
-~17043~^~319~^0.^0^^~4~^^^^^^^^^^^~06/01/2002~
-~17043~^~320~^0.^0^^~4~^^^^^^^^^^^~06/01/2002~
-~17043~^~417~^19.^0^^~1~^^^^^^^^^^^~04/01/1989~
-~17043~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~
-~17043~^~432~^19.^0^^~1~^^^^^^^^^^^~04/01/1989~
-~17043~^~435~^19.^0^^~4~^~NC~^^^^^^^^^^~01/01/2001~
-~17043~^~601~^71.^0^^~1~^^^^^^^^^^^~04/01/1989~
-~17044~^~208~^346.^0^^~4~^~NC~^^^^^^^^^^~04/01/1989~
-~17044~^~268~^1448.^0^^~4~^^^^^^^^^^^
-~17044~^~301~^25.^0^^~1~^^^^^^^^^^^~04/01/1989~
-~17044~^~304~^26.^0^^~1~^^^^^^^^^^^~04/01/1989~
-~17044~^~305~^206.^0^^~1~^^^^^^^^^^^~04/01/1989~
-~17044~^~306~^306.^0^^~1~^^^^^^^^^^^~04/01/1989~
-~17044~^~307~^72.^0^^~1~^^^^^^^^^^^~04/01/1989~
-~17044~^~318~^0.^0^^~4~^^^^^^^^^^^~04/01/1989~
-~17044~^~319~^0.^0^^~4~^^^^^^^^^^^~06/01/2002~
-~17044~^~320~^0.^0^^~4~^^^^^^^^^^^~06/01/2002~
-~17044~^~417~^18.^0^^~1~^^^^^^^^^^^~04/01/1989~
-~17044~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~
-~17044~^~432~^18.^0^^~1~^^^^^^^^^^^~04/01/1989~
-~17044~^~435~^18.^0^^~4~^~NC~^^^^^^^^^^~01/01/2001~
-~17044~^~601~^120.^0^^~1~^^^^^^^^^^^~04/01/1989~
-~17045~^~208~^281.^0^^~4~^~NC~^^^^^^^^^^~04/01/1989~
-~17045~^~268~^1176.^0^^~4~^^^^^^^^^^^
-~17045~^~301~^18.^0^^~1~^^^^^^^^^^^~04/01/1989~
-~17045~^~304~^26.^0^^~1~^^^^^^^^^^^~04/01/1989~
-~17045~^~305~^197.^0^^~1~^^^^^^^^^^^~04/01/1989~
-~17045~^~306~^309.^0^^~1~^^^^^^^^^^^~04/01/1989~
-~17045~^~307~^77.^0^^~1~^^^^^^^^^^^~04/01/1989~
-~17045~^~318~^0.^0^^~4~^^^^^^^^^^^~04/01/1989~
-~17045~^~319~^0.^0^^~4~^^^^^^^^^^^~06/01/2002~
-~17045~^~320~^0.^0^^~4~^^^^^^^^^^^~06/01/2002~
-~17045~^~417~^18.^0^^~1~^^^^^^^^^^^~04/01/1989~
-~17045~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~
-~17045~^~432~^18.^0^^~1~^^^^^^^^^^^~04/01/1989~
-~17045~^~435~^18.^0^^~4~^~NC~^^^^^^^^^^~01/01/2001~
-~17045~^~601~^96.^0^^~1~^^^^^^^^^^^~04/01/1989~
-~17046~^~208~^279.^0^^~4~^~NC~^^^^^^^^^^~04/01/1989~
-~17046~^~268~^1167.^0^^~4~^^^^^^^^^^^
-~17046~^~301~^18.^0^^~1~^^^^^^^^^^^~04/01/1989~
-~17046~^~304~^23.^0^^~1~^^^^^^^^^^^~04/01/1989~
-~17046~^~305~^183.^0^^~1~^^^^^^^^^^^~04/01/1989~
-~17046~^~306~^259.^0^^~1~^^^^^^^^^^^~04/01/1989~
-~17046~^~307~^65.^0^^~1~^^^^^^^^^^^~04/01/1989~
-~17046~^~318~^0.^0^^~4~^^^^^^^^^^^~04/01/1989~
-~17046~^~319~^0.^0^^~4~^^^^^^^^^^^~06/01/2002~
-~17046~^~320~^0.^0^^~4~^^^^^^^^^^^~06/01/2002~
-~17046~^~417~^20.^0^^~1~^^^^^^^^^^^~04/01/1989~
-~17046~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~
-~17046~^~432~^20.^0^^~1~^^^^^^^^^^^~04/01/1989~
-~17046~^~435~^20.^0^^~4~^~NC~^^^^^^^^^^~01/01/2001~
-~17046~^~601~^92.^0^^~1~^^^^^^^^^^^~04/01/1989~
-~17047~^~208~^132.^0^^~4~^~NC~^^^^^^^^^^~04/01/1989~
-~17047~^~268~^552.^0^^~4~^^^^^^^^^^^
-~17047~^~301~^12.^32^0.^~1~^^^^^^^^^^^~04/01/1989~
-~17047~^~304~^25.^32^0.^~1~^^^^^^^^^^^~04/01/1989~
-~17047~^~305~^186.^16^2.^~1~^^^^^^^^^^^~04/01/1989~
-~17047~^~306~^287.^32^13.^~1~^^^^^^^^^^^~04/01/1989~
-~17047~^~307~^69.^32^3.^~1~^^^^^^^^^^^~04/01/1989~
-~17047~^~318~^0.^0^^~4~^^^^^^^^^^^~04/01/1989~
-~17047~^~319~^0.^0^^~4~^^^^^^^^^^^~06/01/2002~
-~17047~^~320~^0.^0^^~4~^^^^^^^^^^^~06/01/2002~
-~17047~^~417~^24.^16^1.^~1~^^^^^^^^^^^~04/01/1989~
-~17047~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~
-~17047~^~432~^24.^16^1.^~1~^^^^^^^^^^^~04/01/1989~
-~17047~^~435~^24.^0^^~4~^~NC~^^^^^^^^^^~01/01/2001~
-~17047~^~601~^64.^16^1.^~1~^^^^^^^^^^^~04/01/1989~
-~17048~^~208~^279.^0^^~4~^~NC~^^^^^^^^^^~04/01/1989~
-~17048~^~268~^1167.^0^^~4~^^^^^^^^^^^
-~17048~^~301~^26.^16^1.^~1~^^^^^^^^^^^~04/01/1989~
-~17048~^~304~^29.^16^0.^~1~^^^^^^^^^^^~04/01/1989~
-~17048~^~305~^232.^16^5.^~1~^^^^^^^^^^^~04/01/1989~
-~17048~^~306~^338.^16^8.^~1~^^^^^^^^^^^~04/01/1989~
-~17048~^~307~^76.^16^1.^~1~^^^^^^^^^^^~04/01/1989~
-~17048~^~318~^0.^0^^~4~^^^^^^^^^^^~04/01/1989~
-~17048~^~319~^0.^0^^~4~^^^^^^^^^^^~06/01/2002~
-~17048~^~320~^0.^0^^~4~^^^^^^^^^^^~06/01/2002~
-~17048~^~417~^22.^16^1.^~1~^^^^^^^^^^^~04/01/1989~
-~17048~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~
-~17048~^~432~^22.^16^1.^~1~^^^^^^^^^^^~04/01/1989~
-~17048~^~435~^22.^0^^~4~^~NC~^^^^^^^^^^~01/01/2001~
-~17048~^~601~^121.^16^3.^~1~^^^^^^^^^^^~04/01/1989~
-~17049~^~208~^200.^0^^~4~^~NC~^^^^^^^^^^~04/01/1989~
-~17049~^~268~^837.^0^^~4~^^^^^^^^^^^
-~17049~^~301~^17.^0^^~1~^^^^^^^^^^^~04/01/1989~
-~17049~^~304~^30.^0^^~1~^^^^^^^^^^^~04/01/1989~
-~17049~^~305~^219.^0^^~1~^^^^^^^^^^^~04/01/1989~
-~17049~^~306~^340.^0^^~1~^^^^^^^^^^^~04/01/1989~
-~17049~^~307~^82.^0^^~1~^^^^^^^^^^^~04/01/1989~
-~17049~^~318~^0.^0^^~4~^^^^^^^^^^^~04/01/1989~
-~17049~^~319~^0.^0^^~4~^^^^^^^^^^^~06/01/2002~
-~17049~^~320~^0.^0^^~4~^^^^^^^^^^^~06/01/2002~
-~17049~^~417~^23.^0^^~1~^^^^^^^^^^^~04/01/1989~
-~17049~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~
-~17049~^~432~^23.^0^^~1~^^^^^^^^^^^~04/01/1989~
-~17049~^~435~^23.^0^^~4~^~NC~^^^^^^^^^^~01/01/2001~
-~17049~^~601~^92.^0^^~1~^^^^^^^^^^^~04/01/1989~
-~17050~^~208~^192.^0^^~4~^~NC~^^^^^^^^^^~04/01/1989~
-~17050~^~268~^803.^0^^~4~^^^^^^^^^^^
-~17050~^~301~^16.^0^^~1~^^^^^^^^^^^~04/01/1989~
-~17050~^~304~^26.^0^^~1~^^^^^^^^^^^~04/01/1989~
-~17050~^~305~^202.^0^^~1~^^^^^^^^^^^~04/01/1989~
-~17050~^~306~^277.^0^^~1~^^^^^^^^^^^~04/01/1989~
-~17050~^~307~^67.^0^^~1~^^^^^^^^^^^~04/01/1989~
-~17050~^~318~^0.^0^^~4~^^^^^^^^^^^~04/01/1989~
-~17050~^~319~^0.^0^^~4~^^^^^^^^^^^~06/01/2002~
-~17050~^~320~^0.^0^^~4~^^^^^^^^^^^~06/01/2002~
-~17050~^~417~^25.^0^^~1~^^^^^^^^^^^~04/01/1989~
-~17050~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~
-~17050~^~432~^25.^0^^~1~^^^^^^^^^^^~04/01/1989~
-~17050~^~435~^25.^0^^~4~^~NC~^^^^^^^^^^~01/01/2001~
-~17050~^~601~^86.^0^^~1~^^^^^^^^^^^~04/01/1989~
-~17051~^~208~^259.^0^^~4~^~NC~^^^^^^^^^^~04/01/1989~
-~17051~^~268~^1084.^0^^~4~^^^^^^^^^^^
-~17051~^~301~^17.^0^^~1~^^^^^^^^^^^~04/01/1989~
-~17051~^~304~^21.^0^^~1~^^^^^^^^^^^~04/01/1989~
-~17051~^~305~^160.^0^^~1~^^^^^^^^^^^~04/01/1989~
-~17051~^~306~^229.^0^^~1~^^^^^^^^^^^~04/01/1989~
-~17051~^~307~^62.^0^^~1~^^^^^^^^^^^~04/01/1989~
-~17051~^~318~^0.^0^^~4~^^^^^^^^^^^~04/01/1989~
-~17051~^~319~^0.^0^^~4~^^^^^^^^^^^~06/01/2002~
-~17051~^~320~^0.^0^^~4~^^^^^^^^^^^~06/01/2002~
-~17051~^~417~^19.^0^^~1~^^^^^^^^^^^~04/01/1989~
-~17051~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~
-~17051~^~432~^19.^0^^~1~^^^^^^^^^^^~04/01/1989~
-~17051~^~435~^19.^0^^~4~^~NC~^^^^^^^^^^~01/01/2001~
-~17051~^~601~^72.^0^^~1~^^^^^^^^^^^~04/01/1989~
-~17052~^~208~^345.^0^^~4~^~NC~^^^^^^^^^^~04/01/1989~
-~17052~^~268~^1443.^0^^~4~^^^^^^^^^^^
-~17052~^~301~^27.^0^^~1~^^^^^^^^^^^~04/01/1989~
-~17052~^~304~^24.^0^^~1~^^^^^^^^^^^~04/01/1989~
-~17052~^~305~^185.^0^^~1~^^^^^^^^^^^~04/01/1989~
-~17052~^~306~^243.^0^^~1~^^^^^^^^^^^~04/01/1989~
-~17052~^~307~^75.^0^^~1~^^^^^^^^^^^~04/01/1989~
-~17052~^~318~^0.^0^^~4~^^^^^^^^^^^~04/01/1989~
-~17052~^~319~^0.^0^^~4~^^^^^^^^^^^~06/01/2002~
-~17052~^~320~^0.^0^^~4~^^^^^^^^^^^~06/01/2002~
-~17052~^~417~^18.^0^^~1~^^^^^^^^^^^~04/01/1989~
-~17052~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~
-~17052~^~432~^18.^0^^~1~^^^^^^^^^^^~04/01/1989~
-~17052~^~435~^18.^0^^~4~^~NC~^^^^^^^^^^~01/01/2001~
-~17052~^~601~^116.^0^^~1~^^^^^^^^^^^~04/01/1989~
-~17053~^~208~^278.^0^^~4~^~NC~^^^^^^^^^^~04/01/1989~
-~17053~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~12/01/2002~
-~17053~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~12/01/2002~
-~17053~^~268~^1163.^0^^~4~^^^^^^^^^^^~12/01/2006~
-~17053~^~301~^24.^0^^~1~^^^^^^^^^^^~04/01/1989~
-~17053~^~304~^24.^0^^~1~^^^^^^^^^^^~04/01/1989~
-~17053~^~305~^198.^0^^~1~^^^^^^^^^^^~04/01/1989~
-~17053~^~306~^336.^0^^~1~^^^^^^^^^^^~04/01/1989~
-~17053~^~307~^82.^0^^~1~^^^^^^^^^^^~04/01/1989~
-~17053~^~318~^0.^0^^~4~^^^^^^^^^^^~04/01/1989~
-~17053~^~319~^0.^0^^~4~^~NR~^^^^^^^^^^~12/01/2002~
-~17053~^~320~^0.^0^^~4~^~NC~^^^^^^^^^^~12/01/2006~
-~17053~^~321~^0.^0^^~7~^~Z~^^^^^^^^^^~12/01/2002~
-~17053~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~12/01/2002~
-~17053~^~324~^2.^40^^~1~^~A~^^^^^^^^^^~02/01/2009~
-~17053~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~12/01/2002~
-~17053~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~12/01/2002~
-~17053~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~12/01/2002~
-~17053~^~417~^18.^0^^~1~^^^^^^^^^^^~04/01/1989~
-~17053~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~
-~17053~^~432~^18.^0^^~1~^^^^^^^^^^^~12/01/2006~
-~17053~^~435~^18.^0^^~4~^~NC~^^^^^^^^^^~02/01/2009~
-~17053~^~601~^95.^0^^~1~^^^^^^^^^^^~04/01/1989~
-~17054~^~208~^281.^0^^~4~^~NC~^^^^^^^^^^~04/01/1989~
-~17054~^~268~^1176.^0^^~4~^^^^^^^^^^^
-~17054~^~301~^21.^0^^~1~^^^^^^^^^^^~04/01/1989~
-~17054~^~304~^22.^0^^~1~^^^^^^^^^^^~04/01/1989~
-~17054~^~305~^183.^0^^~1~^^^^^^^^^^^~04/01/1989~
-~17054~^~306~^246.^0^^~1~^^^^^^^^^^^~04/01/1989~
-~17054~^~307~^66.^0^^~1~^^^^^^^^^^^~04/01/1989~
-~17054~^~318~^0.^0^^~4~^^^^^^^^^^^~04/01/1989~
-~17054~^~319~^0.^0^^~4~^^^^^^^^^^^~06/01/2002~
-~17054~^~320~^0.^0^^~4~^^^^^^^^^^^~06/01/2002~
-~17054~^~417~^21.^0^^~1~^^^^^^^^^^^~04/01/1989~
-~17054~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~
-~17054~^~432~^21.^0^^~1~^^^^^^^^^^^~04/01/1989~
-~17054~^~435~^21.^0^^~4~^~NC~^^^^^^^^^^~01/01/2001~
-~17054~^~601~^92.^0^^~1~^^^^^^^^^^^~04/01/1989~
-~17055~^~208~^151.^0^^~4~^~NC~^^^^^^^^^^~04/01/1989~
-~17055~^~268~^632.^0^^~4~^^^^^^^^^^^
-~17055~^~301~^16.^32^0.^~1~^^^^^^^^^^^~04/01/1989~
-~17055~^~304~^24.^32^0.^~1~^^^^^^^^^^^~04/01/1989~
-~17055~^~305~^183.^16^3.^~1~^^^^^^^^^^^~04/01/1989~
-~17055~^~306~^268.^32^12.^~1~^^^^^^^^^^^~04/01/1989~
-~17055~^~307~^70.^32^3.^~1~^^^^^^^^^^^~04/01/1989~
-~17055~^~318~^0.^0^^~4~^^^^^^^^^^^~04/01/1989~
-~17055~^~319~^0.^0^^~4~^^^^^^^^^^^~06/01/2002~
-~17055~^~320~^0.^0^^~4~^^^^^^^^^^^~06/01/2002~
-~17055~^~417~^23.^16^1.^~1~^^^^^^^^^^^~04/01/1989~
-~17055~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~
-~17055~^~432~^23.^16^1.^~1~^^^^^^^^^^^~04/01/1989~
-~17055~^~435~^23.^0^^~4~^~NC~^^^^^^^^^^~01/01/2001~
-~17055~^~601~^67.^16^1.^~1~^^^^^^^^^^^~04/01/1989~
-~17056~^~208~^288.^0^^~4~^~NC~^^^^^^^^^^~04/01/1989~
-~17056~^~268~^1205.^0^^~4~^^^^^^^^^^^
-~17056~^~301~^28.^0^^~1~^^^^^^^^^^^~04/01/1989~
-~17056~^~304~^26.^0^^~1~^^^^^^^^^^^~04/01/1989~
-~17056~^~305~^202.^0^^~1~^^^^^^^^^^^~04/01/1989~
-~17056~^~306~^254.^0^^~1~^^^^^^^^^^^~04/01/1989~
-~17056~^~307~^79.^0^^~1~^^^^^^^^^^^~04/01/1989~
-~17056~^~318~^0.^0^^~4~^^^^^^^^^^^~04/01/1989~
-~17056~^~319~^0.^0^^~4~^^^^^^^^^^^~06/01/2002~
-~17056~^~320~^0.^0^^~4~^^^^^^^^^^^~06/01/2002~
-~17056~^~417~^21.^0^^~1~^^^^^^^^^^^~04/01/1989~
-~17056~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~
-~17056~^~432~^21.^0^^~1~^^^^^^^^^^^~04/01/1989~
-~17056~^~435~^21.^0^^~4~^~NC~^^^^^^^^^^~01/01/2001~
-~17056~^~601~^117.^0^^~1~^^^^^^^^^^^~04/01/1989~
-~17057~^~208~^211.^0^^~4~^~NC~^^^^^^^^^^~04/01/1989~
-~17057~^~268~^883.^0^^~4~^^^^^^^^^^^
-~17057~^~301~^24.^16^1.^~1~^^^^^^^^^^^~04/01/1989~
-~17057~^~304~^26.^16^0.^~1~^^^^^^^^^^^~04/01/1989~
-~17057~^~305~^216.^16^5.^~1~^^^^^^^^^^^~04/01/1989~
-~17057~^~306~^368.^16^4.^~1~^^^^^^^^^^^~04/01/1989~
-~17057~^~307~^88.^16^2.^~1~^^^^^^^^^^^~04/01/1989~
-~17057~^~318~^0.^0^^~4~^^^^^^^^^^^~04/01/1989~
-~17057~^~319~^0.^0^^~4~^^^^^^^^^^^~06/01/2002~
-~17057~^~320~^0.^0^^~4~^^^^^^^^^^^~06/01/2002~
-~17057~^~417~^21.^15^1.^~1~^^^^^^^^^^^~04/01/1989~
-~17057~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~
-~17057~^~432~^21.^15^1.^~1~^^^^^^^^^^^~04/01/1989~
-~17057~^~435~^21.^0^^~4~^~NC~^^^^^^^^^^~01/01/2001~
-~17057~^~601~^91.^16^2.^~1~^^^^^^^^^^^~04/01/1989~
-~17058~^~208~^209.^0^^~4~^~NC~^^^^^^^^^^~04/01/1989~
-~17058~^~268~^874.^0^^~4~^^^^^^^^^^^
-~17058~^~301~^21.^0^^~1~^^^^^^^^^^^~04/01/1989~
-~17058~^~304~^25.^0^^~1~^^^^^^^^^^^~04/01/1989~
-~17058~^~305~^199.^0^^~1~^^^^^^^^^^^~04/01/1989~
-~17058~^~306~^258.^0^^~1~^^^^^^^^^^^~04/01/1989~
-~17058~^~307~^68.^0^^~1~^^^^^^^^^^^~04/01/1989~
-~17058~^~318~^0.^0^^~4~^^^^^^^^^^^~04/01/1989~
-~17058~^~319~^0.^0^^~4~^^^^^^^^^^^~06/01/2002~
-~17058~^~320~^0.^0^^~4~^^^^^^^^^^^~06/01/2002~
-~17058~^~417~^25.^0^^~1~^^^^^^^^^^^~04/01/1989~
-~17058~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~
-~17058~^~432~^25.^0^^~1~^^^^^^^^^^^~04/01/1989~
-~17058~^~435~^25.^0^^~4~^~NC~^^^^^^^^^^~01/01/2001~
-~17058~^~601~^87.^0^^~1~^^^^^^^^^^^~04/01/1989~
-~17059~^~208~^134.^0^^~4~^~NC~^^^^^^^^^^~04/01/1989~
-~17059~^~268~^561.^0^^~4~^^^^^^^^^^^
-~17059~^~301~^9.^32^0.^~1~^^^^^^^^^^^~04/01/1989~
-~17059~^~304~^26.^32^0.^~1~^^^^^^^^^^^~04/01/1989~
-~17059~^~305~^189.^16^3.^~1~^^^^^^^^^^^~04/01/1989~
-~17059~^~306~^284.^32^13.^~1~^^^^^^^^^^^~04/01/1989~
-~17059~^~307~^65.^32^2.^~1~^^^^^^^^^^^~04/01/1989~
-~17059~^~318~^0.^0^^~4~^^^^^^^^^^^~04/01/1989~
-~17059~^~319~^0.^0^^~4~^^^^^^^^^^^~06/01/2002~
-~17059~^~320~^0.^0^^~4~^^^^^^^^^^^~06/01/2002~
-~17059~^~417~^23.^16^1.^~1~^^^^^^^^^^^~04/01/1989~
-~17059~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~
-~17059~^~432~^23.^16^1.^~1~^^^^^^^^^^^~04/01/1989~
-~17059~^~435~^23.^0^^~4~^~NC~^^^^^^^^^^~01/01/2001~
-~17059~^~601~^65.^16^1.^~1~^^^^^^^^^^^~04/01/1989~
-~17060~^~208~^223.^0^^~4~^~NC~^^^^^^^^^^~04/01/1989~
-~17060~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~12/01/2002~
-~17060~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~12/01/2002~
-~17060~^~268~^933.^0^^~4~^^^^^^^^^^^~12/01/2006~
-~17060~^~301~^15.^0^^~1~^^^^^^^^^^^~04/01/1989~
-~17060~^~304~^28.^0^^~1~^^^^^^^^^^^~04/01/1989~
-~17060~^~305~^205.^0^^~1~^^^^^^^^^^^~04/01/1989~
-~17060~^~306~^260.^0^^~1~^^^^^^^^^^^~04/01/1989~
-~17060~^~307~^70.^0^^~1~^^^^^^^^^^^~04/01/1989~
-~17060~^~318~^0.^0^^~4~^^^^^^^^^^^~04/01/1989~
-~17060~^~319~^0.^0^^~4~^~NR~^^^^^^^^^^~12/01/2002~
-~17060~^~320~^0.^0^^~4~^~NC~^^^^^^^^^^~12/01/2006~
-~17060~^~321~^0.^0^^~7~^~Z~^^^^^^^^^^~12/01/2002~
-~17060~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~12/01/2002~
-~17060~^~324~^2.^40^^~1~^~A~^^^^^^^^^^~02/01/2009~
-~17060~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~12/01/2002~
-~17060~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~12/01/2002~
-~17060~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~12/01/2002~
-~17060~^~417~^21.^0^^~1~^^^^^^^^^^^~04/01/1989~
-~17060~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~
-~17060~^~432~^21.^0^^~1~^^^^^^^^^^^~12/01/2006~
-~17060~^~435~^21.^0^^~4~^~NC~^^^^^^^^^^~02/01/2009~
-~17060~^~601~^108.^0^^~1~^^^^^^^^^^^~04/01/1989~
-~17061~^~208~^186.^0^^~4~^~NC~^^^^^^^^^^~04/01/1989~
-~17061~^~268~^778.^0^^~4~^^^^^^^^^^^
-~17061~^~301~^13.^0^^~1~^^^^^^^^^^^~04/01/1989~
-~17061~^~304~^31.^0^^~1~^^^^^^^^^^^~04/01/1989~
-~17061~^~305~^224.^0^^~1~^^^^^^^^^^^~04/01/1989~
-~17061~^~306~^335.^0^^~1~^^^^^^^^^^^~04/01/1989~
-~17061~^~307~^76.^0^^~1~^^^^^^^^^^^~04/01/1989~
-~17061~^~318~^0.^0^^~4~^^^^^^^^^^^~04/01/1989~
-~17061~^~319~^0.^0^^~4~^^^^^^^^^^^~06/01/2002~
-~17061~^~320~^0.^0^^~4~^^^^^^^^^^^~06/01/2002~
-~17061~^~417~^23.^0^^~1~^^^^^^^^^^^~04/01/1989~
-~17061~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~
-~17061~^~432~^23.^0^^~1~^^^^^^^^^^^~04/01/1989~
-~17061~^~435~^23.^0^^~4~^~NC~^^^^^^^^^^~01/01/2001~
-~17061~^~601~^90.^0^^~1~^^^^^^^^^^^~04/01/1989~
-~17062~^~208~^277.^0^^~4~^~NC~^^^^^^^^^^~04/01/1989~
-~17062~^~268~^1159.^0^^~4~^^^^^^^^^^^
-~17062~^~301~^13.^0^^~1~^^^^^^^^^^^~04/01/1989~
-~17062~^~304~^15.^0^^~1~^^^^^^^^^^^~04/01/1989~
-~17062~^~305~^168.^0^^~1~^^^^^^^^^^^~04/01/1989~
-~17062~^~306~^136.^0^^~1~^^^^^^^^^^^~04/01/1989~
-~17062~^~307~^39.^0^^~1~^^^^^^^^^^^~04/01/1989~
-~17062~^~318~^0.^0^^~4~^^^^^^^^^^^~04/01/1989~
-~17062~^~319~^0.^0^^~4~^^^^^^^^^^^~06/01/2002~
-~17062~^~320~^0.^0^^~4~^^^^^^^^^^^~06/01/2002~
-~17062~^~417~^1.^0^^~1~^^^^^^^^^^^~04/01/1989~
-~17062~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~
-~17062~^~432~^1.^0^^~1~^^^^^^^^^^^~04/01/1989~
-~17062~^~435~^1.^0^^~4~^~NC~^^^^^^^^^^~01/01/2001~
-~17062~^~601~^78.^0^^~1~^^^^^^^^^^^~04/01/1989~
-~17063~^~208~^305.^0^^~4~^~NC~^^^^^^^^^^~04/01/1989~
-~17063~^~268~^1276.^0^^~4~^^^^^^^^^^^
-~17063~^~301~^17.^0^^~1~^^^^^^^^^^^~04/01/1989~
-~17063~^~304~^19.^0^^~1~^^^^^^^^^^^~04/01/1989~
-~17063~^~305~^217.^0^^~1~^^^^^^^^^^^~04/01/1989~
-~17063~^~306~^162.^0^^~1~^^^^^^^^^^^~04/01/1989~
-~17063~^~307~^46.^0^^~1~^^^^^^^^^^^~04/01/1989~
-~17063~^~318~^0.^0^^~4~^^^^^^^^^^^~04/01/1989~
-~17063~^~319~^0.^0^^~4~^^^^^^^^^^^~06/01/2002~
-~17063~^~320~^0.^0^^~4~^^^^^^^^^^^~06/01/2002~
-~17063~^~417~^1.^0^^~1~^^^^^^^^^^^~04/01/1989~
-~17063~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~
-~17063~^~432~^1.^0^^~1~^^^^^^^^^^^~04/01/1989~
-~17063~^~435~^1.^0^^~4~^~NC~^^^^^^^^^^~01/01/2001~
-~17063~^~601~^109.^0^^~1~^^^^^^^^^^^~04/01/1989~
-~17064~^~208~^128.^0^^~4~^~NC~^^^^^^^^^^~04/01/1989~
-~17064~^~268~^536.^0^^~4~^^^^^^^^^^^
-~17064~^~301~^8.^9^1.^~1~^^^^^^^^^^^~04/01/1989~
-~17064~^~304~^19.^9^0.^~1~^^^^^^^^^^^~04/01/1989~
-~17064~^~305~^202.^9^12.^~1~^^^^^^^^^^^~04/01/1989~
-~17064~^~306~^171.^9^6.^~1~^^^^^^^^^^^~04/01/1989~
-~17064~^~307~^46.^9^2.^~1~^^^^^^^^^^^~04/01/1989~
-~17064~^~318~^0.^0^^~4~^^^^^^^^^^^~04/01/1989~
-~17064~^~319~^0.^0^^~4~^^^^^^^^^^^~06/01/2002~
-~17064~^~320~^0.^0^^~4~^^^^^^^^^^^~06/01/2002~
-~17064~^~417~^0.^9^0.^~1~^^^^^^^^^^^~04/01/1989~
-~17064~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~
-~17064~^~432~^0.^9^0.^~1~^^^^^^^^^^^~04/01/1989~
-~17064~^~435~^0.^0^^~4~^~NC~^^^^^^^^^^~01/01/2001~
-~17064~^~601~^74.^9^1.^~1~^^^^^^^^^^^~04/01/1989~
-~17065~^~208~^206.^0^^~4~^~NC~^^^^^^^^^^~04/01/1989~
-~17065~^~268~^862.^0^^~4~^^^^^^^^^^^
-~17065~^~301~^13.^0^^~1~^^^^^^^^^^^~04/01/1989~
-~17065~^~304~^22.^0^^~1~^^^^^^^^^^^~04/01/1989~
-~17065~^~305~^246.^0^^~1~^^^^^^^^^^^~04/01/1989~
-~17065~^~306~^188.^0^^~1~^^^^^^^^^^^~04/01/1989~
-~17065~^~307~^50.^0^^~1~^^^^^^^^^^^~04/01/1989~
-~17065~^~318~^0.^0^^~4~^^^^^^^^^^^~04/01/1989~
-~17065~^~319~^0.^0^^~4~^^^^^^^^^^^~06/01/2002~
-~17065~^~320~^0.^0^^~4~^^^^^^^^^^^~06/01/2002~
-~17065~^~417~^0.^0^^~1~^^^^^^^^^^^~04/01/1989~
-~17065~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~
-~17065~^~432~^0.^0^^~1~^^^^^^^^^^^~04/01/1989~
-~17065~^~435~^0.^0^^~4~^~NC~^^^^^^^^^^~01/01/2001~
-~17065~^~601~^109.^0^^~1~^^^^^^^^^^^~04/01/1989~
-~17066~^~208~^640.^0^^~4~^~NC~^^^^^^^^^^~04/01/1989~
-~17066~^~268~^2678.^0^^~4~^^^^^^^^^^^
-~17066~^~301~^23.^9^1.^~1~^^^^^^^^^^^~04/01/1989~
-~17066~^~304~^6.^9^0.^~1~^^^^^^^^^^^~04/01/1989~
-~17066~^~305~^86.^9^5.^~1~^^^^^^^^^^^~04/01/1989~
-~17066~^~306~^51.^9^3.^~1~^^^^^^^^^^^~04/01/1989~
-~17066~^~307~^22.^9^0.^~1~^^^^^^^^^^^~04/01/1989~
-~17066~^~318~^0.^0^^~4~^^^^^^^^^^^~04/01/1989~
-~17066~^~319~^0.^0^^~4~^^^^^^^^^^^~06/01/2002~
-~17066~^~320~^0.^0^^~4~^^^^^^^^^^^~06/01/2002~
-~17066~^~417~^3.^0^^~1~^^^^^^^^^^^~04/01/1989~
-~17066~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~
-~17066~^~432~^3.^0^^~1~^^^^^^^^^^^~04/01/1989~
-~17066~^~435~^3.^0^^~4~^~NC~^^^^^^^^^^~01/01/2001~
-~17066~^~601~^87.^1^^~1~^^^^^^^^^^^~04/01/1989~
-~17067~^~208~^586.^0^^~4~^~NC~^^^^^^^^^^~04/01/1989~
-~17067~^~268~^2452.^0^^~4~^^^^^^^^^^^
-~17067~^~301~^27.^1^^~1~^^^^^^^^^^^~04/01/1989~
-~17067~^~304~^11.^1^^~1~^^^^^^^^^^^~04/01/1989~
-~17067~^~305~^135.^1^^~1~^^^^^^^^^^^~04/01/1989~
-~17067~^~306~^87.^1^^~1~^^^^^^^^^^^~04/01/1989~
-~17067~^~307~^35.^1^^~1~^^^^^^^^^^^~04/01/1989~
-~17067~^~318~^0.^0^^~4~^^^^^^^^^^^~04/01/1989~
-~17067~^~319~^0.^0^^~4~^^^^^^^^^^^~06/01/2002~
-~17067~^~320~^0.^0^^~4~^^^^^^^^^^^~06/01/2002~
-~17067~^~417~^3.^1^^~1~^^^^^^^^^^^~04/01/1989~
-~17067~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~
-~17067~^~432~^3.^1^^~1~^^^^^^^^^^^~04/01/1989~
-~17067~^~435~^3.^0^^~4~^~NC~^^^^^^^^^^~01/01/2001~
-~17067~^~601~^109.^1^^~1~^^^^^^^^^^^~04/01/1989~
-~17068~^~208~^183.^0^^~4~^~NC~^^^^^^^^^^~03/01/2014~
-~17068~^~262~^0.^0^^~4~^~PIK~^^^^^^^^^^~03/01/2014~
-~17068~^~263~^0.^0^^~4~^~PIK~^^^^^^^^^^~03/01/2014~
-~17068~^~268~^766.^0^^~4~^~NC~^^^^^^^^^^~03/01/2014~
-~17068~^~301~^7.^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~
-~17068~^~304~^19.^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~
-~17068~^~305~^157.^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~
-~17068~^~306~^286.^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~
-~17068~^~307~^76.^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~
-~17068~^~318~^26.^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~
-~17068~^~319~^8.^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~
-~17068~^~320~^8.^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~
-~17068~^~321~^0.^0^^~4~^~PIK~^^^^^^^^^^~03/01/2014~
-~17068~^~322~^0.^0^^~4~^~PIK~^^^^^^^^^^~03/01/2014~
-~17068~^~324~^1.^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~
-~17068~^~334~^0.^0^^~4~^~PIK~^^^^^^^^^^~03/01/2014~
-~17068~^~337~^0.^0^^~4~^~PIK~^^^^^^^^^^~03/01/2014~
-~17068~^~338~^0.^0^^~4~^~PIK~^^^^^^^^^^~03/01/2014~
-~17068~^~431~^0.^0^^~4~^~PIK~^^^^^^^^^^~03/01/2014~
-~17068~^~601~^66.^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~
-~17069~^~208~^256.^0^^~4~^~PIK~^^^^^^^^^^~06/01/2014~
-~17069~^~262~^0.^0^^~4~^~PIK~^^^^^^^^^^~03/01/2014~
-~17069~^~263~^0.^0^^~4~^~PIK~^^^^^^^^^^~03/01/2014~
-~17069~^~268~^1073.^0^^~4~^~PIK~^^^^^^^^^^~06/01/2014~
-~17069~^~301~^11.^0^^~1~^~PAK~^^^^^^^^^^~06/01/2014~
-~17069~^~304~^21.^0^^~1~^~PAK~^^^^^^^^^^~06/01/2014~
-~17069~^~305~^165.^0^^~1~^~PAK~^^^^^^^^^^~06/01/2014~
-~17069~^~306~^250.^0^^~1~^~PAK~^^^^^^^^^^~06/01/2014~
-~17069~^~307~^74.^0^^~1~^~PAK~^^^^^^^^^^~06/01/2014~
-~17069~^~318~^27.^0^^~1~^~PAK~^^^^^^^^^^~06/01/2014~
-~17069~^~319~^8.^0^^~1~^~PAK~^^^^^^^^^^~06/01/2014~
-~17069~^~320~^8.^0^^~1~^~PAK~^^^^^^^^^^~06/01/2014~
-~17069~^~321~^0.^0^^~4~^~PIK~^^^^^^^^^^~03/01/2014~
-~17069~^~322~^0.^0^^~4~^~PIK~^^^^^^^^^^~03/01/2014~
-~17069~^~324~^2.^0^^~1~^~PAK~^^^^^^^^^^~06/01/2014~
-~17069~^~334~^0.^0^^~4~^~PIK~^^^^^^^^^^~03/01/2014~
-~17069~^~337~^0.^0^^~4~^~PIK~^^^^^^^^^^~03/01/2014~
-~17069~^~338~^0.^0^^~4~^~PIK~^^^^^^^^^^~03/01/2014~
-~17069~^~431~^0.^0^^~4~^~PIK~^^^^^^^^^^~03/01/2014~
-~17069~^~601~^110.^0^^~1~^~PAK~^^^^^^^^^^~06/01/2014~
-~17070~^~208~^122.^0^^~4~^~NC~^^^^^^^^^^~03/01/2014~
-~17070~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2014~
-~17070~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2014~
-~17070~^~268~^511.^0^^~4~^~NC~^^^^^^^^^^~03/01/2014~
-~17070~^~301~^7.^1^^~1~^~A~^^^^^^^^^^~04/01/1989~
-~17070~^~304~^20.^1^^~1~^~A~^^^^^^^^^^~03/01/2014~
-~17070~^~305~^170.^1^^~1~^~A~^^^^^^^^^^~03/01/2014~
-~17070~^~306~^309.^1^^~1~^~A~^^^^^^^^^^~03/01/2014~
-~17070~^~307~^82.^1^^~1~^~A~^^^^^^^^^^~03/01/2014~
-~17070~^~318~^10.^0^^~1~^~AS~^^^^^^^^^^~03/01/2014~
-~17070~^~319~^3.^1^^~1~^~A~^^^^^^^^^^~03/01/2014~
-~17070~^~320~^3.^0^^~1~^~AS~^^^^^^^^^^~03/01/2014~
-~17070~^~321~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2014~
-~17070~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2014~
-~17070~^~324~^1.^1^^~1~^~A~^^^^^^^^^^~03/01/2014~
-~17070~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2014~
-~17070~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2014~
-~17070~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2014~
-~17070~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~
-~17070~^~601~^65.^1^^~1~^~A~^^^^^^^^^^~03/01/2014~
-~17071~^~208~^209.^0^^~4~^~NC~^^^^^^^^^^~03/01/2014~
-~17071~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2014~
-~17071~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2014~
-~17071~^~268~^874.^0^^~4~^~NC~^^^^^^^^^^~03/01/2014~
-~17071~^~301~^11.^1^^~1~^~A~^^^^^^^^^^~03/01/2014~
-~17071~^~304~^23.^1^^~1~^~A~^^^^^^^^^^~03/01/2014~
-~17071~^~305~^173.^1^^~1~^~A~^^^^^^^^^^~03/01/2014~
-~17071~^~306~^258.^1^^~1~^~A~^^^^^^^^^^~03/01/2014~
-~17071~^~307~^77.^1^^~1~^~A~^^^^^^^^^^~03/01/2014~
-~17071~^~318~^10.^0^^~1~^~AS~^^^^^^^^^^~03/01/2014~
-~17071~^~319~^3.^1^^~1~^~A~^^^^^^^^^^~03/01/2014~
-~17071~^~320~^3.^0^^~1~^~AS~^^^^^^^^^^~03/01/2014~
-~17071~^~321~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2014~
-~17071~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2014~
-~17071~^~324~^2.^1^^~1~^~A~^^^^^^^^^^~03/01/2014~
-~17071~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2014~
-~17071~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2014~
-~17071~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2014~
-~17071~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~
-~17071~^~601~^115.^1^^~1~^~A~^^^^^^^^^^~03/01/2014~
-~17072~^~208~^206.^0^^~4~^~NC~^^^^^^^^^^~03/01/2014~
-~17072~^~262~^0.^0^^~4~^~PIK~^^^^^^^^^^~03/01/2014~
-~17072~^~263~^0.^0^^~4~^~PIK~^^^^^^^^^^~03/01/2014~
-~17072~^~268~^861.^0^^~4~^~NC~^^^^^^^^^^~03/01/2014~
-~17072~^~301~^10.^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~
-~17072~^~304~^21.^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~
-~17072~^~305~^177.^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~
-~17072~^~306~^315.^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~
-~17072~^~307~^59.^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~
-~17072~^~318~^29.^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~
-~17072~^~319~^9.^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~
-~17072~^~320~^9.^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~
-~17072~^~321~^0.^0^^~4~^~PIK~^^^^^^^^^^~03/01/2014~
-~17072~^~322~^0.^0^^~4~^~PIK~^^^^^^^^^^~03/01/2014~
-~17072~^~324~^2.^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~
-~17072~^~334~^0.^0^^~4~^~PIK~^^^^^^^^^^~03/01/2014~
-~17072~^~337~^0.^0^^~4~^~PIK~^^^^^^^^^^~03/01/2014~
-~17072~^~338~^0.^0^^~4~^~PIK~^^^^^^^^^^~03/01/2014~
-~17072~^~431~^0.^0^^~4~^~PIK~^^^^^^^^^^~03/01/2014~
-~17072~^~601~^67.^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~
-~17073~^~208~^246.^0^^~4~^~NC~^^^^^^^^^^~04/01/1989~
-~17073~^~268~^1029.^0^^~4~^^^^^^^^^^^
-~17073~^~301~^10.^0^^~1~^^^^^^^^^^^~04/01/1989~
-~17073~^~304~^20.^0^^~1~^^^^^^^^^^^~04/01/1989~
-~17073~^~305~^218.^0^^~1~^^^^^^^^^^^~04/01/1989~
-~17073~^~306~^167.^0^^~1~^^^^^^^^^^^~04/01/1989~
-~17073~^~307~^43.^0^^~1~^^^^^^^^^^^~04/01/1989~
-~17073~^~318~^0.^0^^~4~^^^^^^^^^^^~04/01/1989~
-~17073~^~319~^0.^0^^~4~^^^^^^^^^^^~06/01/2002~
-~17073~^~320~^0.^0^^~4~^^^^^^^^^^^~06/01/2002~
-~17073~^~417~^1.^0^^~1~^^^^^^^^^^^~04/01/1989~
-~17073~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~
-~17073~^~432~^1.^0^^~1~^^^^^^^^^^^~04/01/1989~
-~17073~^~435~^1.^0^^~4~^~NC~^^^^^^^^^^~01/01/2001~
-~17073~^~601~^101.^0^^~1~^^^^^^^^^^^~04/01/1989~
-~17074~^~208~^126.^0^^~4~^~NC~^^^^^^^^^^~03/01/2014~
-~17074~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2014~
-~17074~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2014~
-~17074~^~268~^528.^0^^~4~^~NC~^^^^^^^^^^~03/01/2014~
-~17074~^~301~^11.^1^^~1~^~A~^^^^^^^^^^~03/01/2014~
-~17074~^~304~^24.^1^^~1~^~A~^^^^^^^^^^~03/01/2014~
-~17074~^~305~^198.^1^^~1~^~A~^^^^^^^^^^~03/01/2014~
-~17074~^~306~^350.^1^^~1~^~A~^^^^^^^^^^~03/01/2014~
-~17074~^~307~^64.^1^^~1~^~A~^^^^^^^^^^~03/01/2014~
-~17074~^~318~^9.^0^^~1~^~AS~^^^^^^^^^^~03/01/2014~
-~17074~^~319~^3.^1^^~1~^~A~^^^^^^^^^^~03/01/2014~
-~17074~^~320~^3.^0^^~1~^~AS~^^^^^^^^^^~03/01/2014~
-~17074~^~321~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2014~
-~17074~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2014~
-~17074~^~324~^1.^1^^~1~^~A~^^^^^^^^^^~03/01/2014~
-~17074~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2014~
-~17074~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2014~
-~17074~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2014~
-~17074~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~
-~17074~^~601~^66.^1^^~1~^~A~^^^^^^^^^^~03/01/2014~
-~17075~^~208~^181.^0^^~4~^~NC~^^^^^^^^^^~04/01/1989~
-~17075~^~268~^757.^0^^~4~^^^^^^^^^^^
-~17075~^~301~^7.^0^^~1~^^^^^^^^^^^~04/01/1989~
-~17075~^~304~^21.^0^^~1~^^^^^^^^^^^~04/01/1989~
-~17075~^~305~^234.^0^^~1~^^^^^^^^^^^~04/01/1989~
-~17075~^~306~^183.^0^^~1~^^^^^^^^^^^~04/01/1989~
-~17075~^~307~^45.^0^^~1~^^^^^^^^^^^~04/01/1989~
-~17075~^~318~^0.^0^^~4~^^^^^^^^^^^~04/01/1989~
-~17075~^~319~^0.^0^^~4~^^^^^^^^^^^~06/01/2002~
-~17075~^~320~^0.^0^^~4~^^^^^^^^^^^~06/01/2002~
-~17075~^~417~^0.^0^^~1~^^^^^^^^^^^~04/01/1989~
-~17075~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~
-~17075~^~432~^0.^0^^~1~^^^^^^^^^^^~04/01/1989~
-~17075~^~435~^0.^0^^~4~^~NC~^^^^^^^^^^~01/01/2001~
-~17075~^~601~^100.^0^^~1~^^^^^^^^^^^~04/01/1989~
-~17076~^~208~^298.^0^^~4~^~NC~^^^^^^^^^^~03/01/2014~
-~17076~^~262~^0.^0^^~4~^~PIK~^^^^^^^^^^~03/01/2014~
-~17076~^~263~^0.^0^^~4~^~PIK~^^^^^^^^^^~03/01/2014~
-~17076~^~268~^1248.^0^^~4~^~NC~^^^^^^^^^^~03/01/2014~
-~17076~^~301~^14.^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~
-~17076~^~304~^18.^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~
-~17076~^~305~^149.^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~
-~17076~^~306~^262.^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~
-~17076~^~307~^63.^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~
-~17076~^~318~^54.^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~
-~17076~^~319~^16.^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~
-~17076~^~320~^16.^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~
-~17076~^~321~^0.^0^^~4~^~PIK~^^^^^^^^^^~03/01/2014~
-~17076~^~322~^0.^0^^~4~^~PIK~^^^^^^^^^^~03/01/2014~
-~17076~^~324~^3.^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~
-~17076~^~334~^0.^0^^~4~^~PIK~^^^^^^^^^^~03/01/2014~
-~17076~^~337~^0.^0^^~4~^~PIK~^^^^^^^^^^~03/01/2014~
-~17076~^~338~^0.^0^^~4~^~PIK~^^^^^^^^^^~03/01/2014~
-~17076~^~431~^0.^0^^~4~^~PIK~^^^^^^^^^^~03/01/2014~
-~17076~^~601~^69.^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~
-~17077~^~208~^315.^0^^~4~^~NC~^^^^^^^^^^~04/01/1989~
-~17077~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~12/01/2002~
-~17077~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~12/01/2002~
-~17077~^~268~^1318.^0^^~4~^^^^^^^^^^^~12/01/2006~
-~17077~^~301~^23.^0^^~1~^^^^^^^^^^^~04/01/1989~
-~17077~^~304~^19.^0^^~1~^^^^^^^^^^^~04/01/1989~
-~17077~^~305~^208.^0^^~1~^^^^^^^^^^^~04/01/1989~
-~17077~^~306~^159.^0^^~1~^^^^^^^^^^^~04/01/1989~
-~17077~^~307~^49.^0^^~1~^^^^^^^^^^^~04/01/1989~
-~17077~^~318~^0.^0^^~4~^^^^^^^^^^^~04/01/1989~
-~17077~^~319~^0.^0^^~4~^~NR~^^^^^^^^^^~12/01/2002~
-~17077~^~320~^0.^0^^~4~^~NC~^^^^^^^^^^~12/01/2006~
-~17077~^~321~^0.^0^^~7~^~Z~^^^^^^^^^^~12/01/2002~
-~17077~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~12/01/2002~
-~17077~^~324~^2.^40^^~1~^~A~^^^^^^^^^^~02/01/2009~
-~17077~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~12/01/2002~
-~17077~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~12/01/2002~
-~17077~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~12/01/2002~
-~17077~^~417~^1.^0^^~1~^^^^^^^^^^^~04/01/1989~
-~17077~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~
-~17077~^~432~^1.^0^^~1~^^^^^^^^^^^~12/01/2006~
-~17077~^~435~^1.^0^^~4~^~NC~^^^^^^^^^^~02/01/2009~
-~17077~^~601~^112.^0^^~1~^^^^^^^^^^^~04/01/1989~
-~17078~^~208~^142.^0^^~4~^~NC~^^^^^^^^^^~03/01/2014~
-~17078~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2014~
-~17078~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2014~
-~17078~^~268~^594.^0^^~4~^~NC~^^^^^^^^^^~03/01/2014~
-~17078~^~301~^18.^1^^~1~^~A~^^^^^^^^^^~03/01/2014~
-~17078~^~304~^23.^1^^~1~^~A~^^^^^^^^^^~03/01/2014~
-~17078~^~305~^189.^1^^~1~^~A~^^^^^^^^^^~03/01/2014~
-~17078~^~306~^327.^1^^~1~^~A~^^^^^^^^^^~03/01/2014~
-~17078~^~307~^77.^1^^~1~^~A~^^^^^^^^^^~03/01/2014~
-~17078~^~318~^16.^0^^~1~^~AS~^^^^^^^^^^~03/01/2014~
-~17078~^~319~^5.^1^^~1~^~A~^^^^^^^^^^~03/01/2014~
-~17078~^~320~^5.^0^^~1~^~AS~^^^^^^^^^^~03/01/2014~
-~17078~^~321~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2014~
-~17078~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2014~
-~17078~^~324~^2.^1^^~1~^~A~^^^^^^^^^^~03/01/2014~
-~17078~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2014~
-~17078~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2014~
-~17078~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2014~
-~17078~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~
-~17078~^~601~^66.^1^^~1~^~A~^^^^^^^^^^~03/01/2014~
-~17079~^~208~^199.^0^^~4~^~NC~^^^^^^^^^^~04/01/1989~
-~17079~^~268~^833.^0^^~4~^^^^^^^^^^^
-~17079~^~301~^21.^0^^~1~^^^^^^^^^^^~04/01/1989~
-~17079~^~304~^22.^0^^~1~^^^^^^^^^^^~04/01/1989~
-~17079~^~305~^240.^0^^~1~^^^^^^^^^^^~04/01/1989~
-~17079~^~306~^189.^0^^~1~^^^^^^^^^^^~04/01/1989~
-~17079~^~307~^55.^0^^~1~^^^^^^^^^^^~04/01/1989~
-~17079~^~318~^0.^0^^~4~^^^^^^^^^^^~04/01/1989~
-~17079~^~319~^0.^0^^~4~^^^^^^^^^^^~06/01/2002~
-~17079~^~320~^0.^0^^~4~^^^^^^^^^^^~06/01/2002~
-~17079~^~417~^0.^0^^~1~^^^^^^^^^^^~04/01/1989~
-~17079~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~
-~17079~^~432~^0.^0^^~1~^^^^^^^^^^^~04/01/1989~
-~17079~^~435~^0.^0^^~4~^~NC~^^^^^^^^^^~01/01/2001~
-~17079~^~601~^114.^0^^~1~^^^^^^^^^^^~04/01/1989~
-~17080~^~208~^240.^0^^~4~^~NC~^^^^^^^^^^~03/01/2014~
-~17080~^~262~^0.^0^^~4~^~PIK~^^^^^^^^^^~03/01/2014~
-~17080~^~263~^0.^0^^~4~^~PIK~^^^^^^^^^^~03/01/2014~
-~17080~^~268~^1003.^0^^~4~^~NC~^^^^^^^^^^~03/01/2014~
-~17080~^~301~^10.^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~
-~17080~^~304~^20.^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~
-~17080~^~305~^165.^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~
-~17080~^~306~^277.^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~
-~17080~^~307~^61.^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~
-~17080~^~318~^37.^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~
-~17080~^~319~^11.^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~
-~17080~^~320~^11.^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~
-~17080~^~321~^0.^0^^~4~^~PIK~^^^^^^^^^^~03/01/2014~
-~17080~^~322~^0.^0^^~4~^~PIK~^^^^^^^^^^~03/01/2014~
-~17080~^~324~^2.^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~
-~17080~^~334~^0.^0^^~4~^~PIK~^^^^^^^^^^~03/01/2014~
-~17080~^~337~^0.^0^^~4~^~PIK~^^^^^^^^^^~03/01/2014~
-~17080~^~338~^0.^0^^~4~^~PIK~^^^^^^^^^^~03/01/2014~
-~17080~^~431~^0.^0^^~4~^~PIK~^^^^^^^^^^~03/01/2014~
-~17080~^~601~^66.^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~
-~17081~^~208~^253.^0^^~4~^~NC~^^^^^^^^^^~04/01/2014~
-~17081~^~262~^0.^0^^~4~^~PIK~^^^^^^^^^^~04/01/2014~
-~17081~^~263~^0.^0^^~4~^~PIK~^^^^^^^^^^~04/01/2014~
-~17081~^~268~^1058.^0^^~4~^~NC~^^^^^^^^^^~04/01/2014~
-~17081~^~301~^20.^0^^~1~^~PAK~^^^^^^^^^^~04/01/2014~
-~17081~^~304~^22.^0^^~1~^~PAK~^^^^^^^^^^~04/01/2014~
-~17081~^~305~^195.^0^^~1~^~PAK~^^^^^^^^^^~04/01/2014~
-~17081~^~306~^304.^0^^~1~^~PAK~^^^^^^^^^^~04/01/2014~
-~17081~^~307~^69.^0^^~1~^~PAK~^^^^^^^^^^~04/01/2014~
-~17081~^~318~^33.^0^^~1~^~PAK~^^^^^^^^^^~04/01/2014~
-~17081~^~319~^10.^0^^~1~^~PAK~^^^^^^^^^^~04/01/2014~
-~17081~^~320~^10.^0^^~1~^~PAK~^^^^^^^^^^~04/01/2014~
-~17081~^~321~^0.^0^^~4~^~PIK~^^^^^^^^^^~04/01/2014~
-~17081~^~322~^0.^0^^~4~^~PIK~^^^^^^^^^^~04/01/2014~
-~17081~^~324~^2.^0^^~1~^~PAK~^^^^^^^^^^~02/01/2009~
-~17081~^~334~^0.^0^^~4~^~PIK~^^^^^^^^^^~04/01/2014~
-~17081~^~337~^0.^0^^~4~^~PIK~^^^^^^^^^^~04/01/2014~
-~17081~^~338~^0.^0^^~4~^~PIK~^^^^^^^^^^~04/01/2014~
-~17081~^~417~^0.^0^^~1~^~PAK~^^^^^^^^^^~04/01/2014~
-~17081~^~431~^0.^0^^~4~^~PIK~^^^^^^^^^^~04/01/2014~
-~17081~^~432~^0.^0^^~1~^~PAK~^^^^^^^^^^~04/01/2014~
-~17081~^~435~^0.^0^^~4~^~NC~^^^^^^^^^^~04/01/2014~
-~17081~^~601~^76.^0^^~1~^~PAK~^^^^^^^^^^~04/01/2014~
-~17082~^~208~^160.^0^^~4~^~NC~^^^^^^^^^^~03/01/2014~
-~17082~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2014~
-~17082~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2014~
-~17082~^~268~^670.^0^^~4~^~NC~^^^^^^^^^^~03/01/2014~
-~17082~^~301~^12.^1^^~1~^~A~^^^^^^^^^^~03/01/2014~
-~17082~^~304~^22.^1^^~1~^~A~^^^^^^^^^^~03/01/2014~
-~17082~^~305~^185.^1^^~1~^~A~^^^^^^^^^^~03/01/2014~
-~17082~^~306~^309.^1^^~1~^~A~^^^^^^^^^^~03/01/2014~
-~17082~^~307~^67.^1^^~1~^~A~^^^^^^^^^^~03/01/2014~
-~17082~^~318~^17.^0^^~1~^~AS~^^^^^^^^^^~03/01/2014~
-~17082~^~319~^5.^1^^~1~^~A~^^^^^^^^^^~03/01/2014~
-~17082~^~320~^5.^0^^~1~^~AS~^^^^^^^^^^~03/01/2014~
-~17082~^~321~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2014~
-~17082~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2014~
-~17082~^~324~^1.^1^^~1~^~A~^^^^^^^^^^~03/01/2014~
-~17082~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2014~
-~17082~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2014~
-~17082~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2014~
-~17082~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~
-~17082~^~601~^64.^1^^~1~^~A~^^^^^^^^^^~03/01/2014~
-~17083~^~208~^193.^0^^~4~^~NC~^^^^^^^^^^~03/01/2014~
-~17083~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~12/01/2002~
-~17083~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~12/01/2002~
-~17083~^~268~^809.^0^^~4~^~NC~^^^^^^^^^^~03/01/2014~
-~17083~^~301~^22.^1^^~1~^~A~^^^^^^^^^^~03/01/2014~
-~17083~^~304~^24.^1^^~1~^~A~^^^^^^^^^^~03/01/2014~
-~17083~^~305~^209.^1^^~1~^~A~^^^^^^^^^^~03/01/2014~
-~17083~^~306~^323.^1^^~1~^~A~^^^^^^^^^^~03/01/2014~
-~17083~^~307~^72.^1^^~1~^~A~^^^^^^^^^^~03/01/2014~
-~17083~^~318~^14.^0^^~1~^~AS~^^^^^^^^^^~03/01/2014~
-~17083~^~319~^4.^1^^~1~^~A~^^^^^^^^^^~03/01/2014~
-~17083~^~320~^4.^0^^~1~^~AS~^^^^^^^^^^~03/01/2014~
-~17083~^~321~^0.^0^^~7~^~Z~^^^^^^^^^^~12/01/2002~
-~17083~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~12/01/2002~
-~17083~^~324~^1.^1^^~1~^~A~^^^^^^^^^^~03/01/2014~
-~17083~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~12/01/2002~
-~17083~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~12/01/2002~
-~17083~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~12/01/2002~
-~17083~^~417~^0.^0^^~1~^^^^^^^^^^^~04/01/1989~
-~17083~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~
-~17083~^~432~^0.^0^^~1~^^^^^^^^^^^~05/01/2007~
-~17083~^~435~^0.^0^^~4~^~NC~^^^^^^^^^^~02/01/2009~
-~17083~^~601~^76.^1^^~1~^~A~^^^^^^^^^^~03/01/2014~
-~17084~^~208~^272.^0^^~4~^~NC~^^^^^^^^^^~04/01/1989~
-~17084~^~262~^0.^0^^~4~^~PIK~^^^^^^^^^^~03/01/2014~
-~17084~^~263~^0.^0^^~4~^~PIK~^^^^^^^^^^~03/01/2014~
-~17084~^~268~^1136.^0^^~4~^~NC~^^^^^^^^^^~03/01/2014~
-~17084~^~301~^10.^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~
-~17084~^~304~^17.^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~
-~17084~^~305~^147.^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~
-~17084~^~306~^261.^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~
-~17084~^~307~^64.^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~
-~17084~^~318~^46.^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~
-~17084~^~319~^14.^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~
-~17084~^~320~^14.^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~
-~17084~^~321~^0.^0^^~4~^~PIK~^^^^^^^^^^~03/01/2014~
-~17084~^~322~^0.^0^^~4~^~PIK~^^^^^^^^^^~03/01/2014~
-~17084~^~324~^7.^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~
-~17084~^~334~^0.^0^^~4~^~PIK~^^^^^^^^^^~03/01/2014~
-~17084~^~337~^0.^0^^~4~^~PIK~^^^^^^^^^^~03/01/2014~
-~17084~^~338~^0.^0^^~4~^~PIK~^^^^^^^^^^~03/01/2014~
-~17084~^~431~^0.^0^^~4~^~PIK~^^^^^^^^^^~03/01/2014~
-~17084~^~601~^60.^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~
-~17085~^~208~^357.^0^^~4~^~NC~^^^^^^^^^^~04/01/1989~
-~17085~^~268~^1494.^0^^~4~^^^^^^^^^^^
-~17085~^~301~^27.^0^^~1~^^^^^^^^^^^~04/01/1989~
-~17085~^~304~^18.^0^^~1~^^^^^^^^^^^~04/01/1989~
-~17085~^~305~^196.^0^^~1~^^^^^^^^^^^~04/01/1989~
-~17085~^~306~^147.^0^^~1~^^^^^^^^^^^~04/01/1989~
-~17085~^~307~^51.^0^^~1~^^^^^^^^^^^~04/01/1989~
-~17085~^~318~^0.^0^^~4~^^^^^^^^^^^~04/01/1989~
-~17085~^~319~^0.^0^^~4~^^^^^^^^^^^~06/01/2002~
-~17085~^~320~^0.^0^^~4~^^^^^^^^^^^~06/01/2002~
-~17085~^~417~^1.^0^^~1~^^^^^^^^^^^~04/01/1989~
-~17085~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~
-~17085~^~432~^1.^0^^~1~^^^^^^^^^^^~04/01/1989~
-~17085~^~435~^1.^0^^~4~^~NC~^^^^^^^^^^~01/01/2001~
-~17085~^~601~^123.^0^^~1~^^^^^^^^^^^~04/01/1989~
-~17086~^~208~^154.^0^^~4~^~NC~^^^^^^^^^^~03/01/2014~
-~17086~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2014~
-~17086~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2014~
-~17086~^~268~^643.^0^^~4~^~NC~^^^^^^^^^^~03/01/2014~
-~17086~^~301~^12.^1^^~1~^~A~^^^^^^^^^^~03/01/2014~
-~17086~^~304~^20.^1^^~1~^~A~^^^^^^^^^^~03/01/2014~
-~17086~^~305~^175.^1^^~1~^~A~^^^^^^^^^^~03/01/2014~
-~17086~^~306~^307.^1^^~1~^~A~^^^^^^^^^^~03/01/2014~
-~17086~^~307~^73.^1^^~1~^~A~^^^^^^^^^^~03/01/2014~
-~17086~^~318~^14.^0^^~1~^~AS~^^^^^^^^^^~03/01/2014~
-~17086~^~319~^4.^1^^~1~^~A~^^^^^^^^^^~03/01/2014~
-~17086~^~320~^4.^0^^~1~^~AS~^^^^^^^^^^~03/01/2014~
-~17086~^~321~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2014~
-~17086~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2014~
-~17086~^~324~^7.^1^^~1~^~A~^^^^^^^^^^~03/01/2014~
-~17086~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2014~
-~17086~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2014~
-~17086~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2014~
-~17086~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~
-~17086~^~601~^56.^1^^~1~^~A~^^^^^^^^^^~03/01/2014~
-~17087~^~208~^285.^0^^~4~^~NC~^^^^^^^^^^~04/01/1989~
-~17087~^~268~^1192.^0^^~4~^^^^^^^^^^^
-~17087~^~301~^27.^0^^~1~^^^^^^^^^^^~04/01/1989~
-~17087~^~304~^20.^0^^~1~^^^^^^^^^^^~04/01/1989~
-~17087~^~305~^215.^0^^~1~^^^^^^^^^^^~04/01/1989~
-~17087~^~306~^166.^0^^~1~^^^^^^^^^^^~04/01/1989~
-~17087~^~307~^56.^0^^~1~^^^^^^^^^^^~04/01/1989~
-~17087~^~318~^0.^0^^~4~^^^^^^^^^^^~04/01/1989~
-~17087~^~319~^0.^0^^~4~^^^^^^^^^^^~06/01/2002~
-~17087~^~320~^0.^0^^~4~^^^^^^^^^^^~06/01/2002~
-~17087~^~417~^0.^0^^~1~^^^^^^^^^^^~04/01/1989~
-~17087~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~
-~17087~^~432~^0.^0^^~1~^^^^^^^^^^^~04/01/1989~
-~17087~^~435~^0.^0^^~4~^~NC~^^^^^^^^^^~01/01/2001~
-~17087~^~601~^127.^0^^~1~^^^^^^^^^^^~04/01/1989~
-~17088~^~208~^144.^0^^~4~^~NC~^^^^^^^^^^~04/01/1989~
-~17088~^~268~^602.^0^^~4~^^^^^^^^^^^
-~17088~^~301~^15.^0^^~1~^^^^^^^^^^^~04/01/1989~
-~17088~^~304~^24.^0^^~1~^^^^^^^^^^^~04/01/1989~
-~17088~^~305~^203.^0^^~1~^^^^^^^^^^^~04/01/1989~
-~17088~^~306~^315.^0^^~1~^^^^^^^^^^^~04/01/1989~
-~17088~^~307~^82.^0^^~1~^^^^^^^^^^^~04/01/1989~
-~17088~^~318~^0.^0^^~4~^^^^^^^^^^^~04/01/1989~
-~17088~^~319~^0.^0^^~4~^^^^^^^^^^^~06/01/2002~
-~17088~^~320~^0.^0^^~4~^^^^^^^^^^^~06/01/2002~
-~17088~^~417~^13.^0^^~1~^^^^^^^^^^^~04/01/1989~
-~17088~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~
-~17088~^~432~^13.^0^^~1~^^^^^^^^^^^~04/01/1989~
-~17088~^~435~^13.^0^^~4~^~NC~^^^^^^^^^^~01/01/2001~
-~17088~^~601~^82.^0^^~1~^^^^^^^^^^^~04/01/1989~
-~17089~^~208~^231.^0^^~4~^~NC~^^^^^^^^^^~04/01/1989~
-~17089~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~12/01/2002~
-~17089~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~12/01/2002~
-~17089~^~268~^967.^0^^~4~^^^^^^^^^^^~02/01/2009~
-~17089~^~301~^22.^0^^~1~^^^^^^^^^^^~04/01/1989~
-~17089~^~304~^26.^0^^~1~^^^^^^^^^^^~04/01/1989~
-~17089~^~305~^239.^0^^~1~^^^^^^^^^^^~04/01/1989~
-~17089~^~306~^325.^0^^~1~^^^^^^^^^^^~04/01/1989~
-~17089~^~307~^87.^0^^~1~^^^^^^^^^^^~04/01/1989~
-~17089~^~318~^0.^0^^~4~^^^^^^^^^^^~04/01/1989~
-~17089~^~319~^0.^0^^~4~^~NR~^^^^^^^^^^~12/01/2002~
-~17089~^~320~^0.^0^^~4~^~NC~^^^^^^^^^^~02/01/2009~
-~17089~^~321~^0.^0^^~7~^~Z~^^^^^^^^^^~12/01/2002~
-~17089~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~12/01/2002~
-~17089~^~324~^0.^0^^~13~^~AI~^^^^^^^^^^~02/01/2009~
-~17089~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~12/01/2002~
-~17089~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~12/01/2002~
-~17089~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~12/01/2002~
-~17089~^~417~^15.^0^^~1~^^^^^^^^^^^~04/01/1989~
-~17089~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~
-~17089~^~432~^15.^0^^~1~^^^^^^^^^^^~02/01/2009~
-~17089~^~435~^15.^0^^~4~^~NC~^^^^^^^^^^~02/01/2009~
-~17089~^~601~^114.^0^^~1~^^^^^^^^^^^~04/01/1989~
-~17090~^~208~^112.^0^^~4~^~NC~^^^^^^^^^^~04/01/1989~
-~17090~^~268~^469.^0^^~4~^^^^^^^^^^^
-~17090~^~301~^15.^12^0.^~1~^^^^^^^^^^^~04/01/1989~
-~17090~^~304~^25.^12^0.^~1~^^^^^^^^^^^~04/01/1989~
-~17090~^~305~^211.^12^4.^~1~^^^^^^^^^^^~04/01/1989~
-~17090~^~306~^328.^12^5.^~1~^^^^^^^^^^^~04/01/1989~
-~17090~^~307~^86.^12^3.^~1~^^^^^^^^^^^~04/01/1989~
-~17090~^~318~^0.^0^^~4~^^^^^^^^^^^~04/01/1989~
-~17090~^~319~^0.^0^^~4~^^^^^^^^^^^~06/01/2002~
-~17090~^~320~^0.^0^^~4~^^^^^^^^^^^~06/01/2002~
-~17090~^~417~^13.^12^2.^~1~^^^^^^^^^^^~04/01/1989~
-~17090~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~
-~17090~^~432~^13.^12^2.^~1~^^^^^^^^^^^~04/01/1989~
-~17090~^~435~^13.^0^^~4~^~NC~^^^^^^^^^^~01/01/2001~
-~17090~^~601~^83.^12^4.^~1~^^^^^^^^^^^~04/01/1989~
-~17091~^~208~^196.^0^^~4~^~NC~^^^^^^^^^^~04/01/1989~
-~17091~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~12/01/2002~
-~17091~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~12/01/2002~
-~17091~^~268~^820.^0^^~4~^^^^^^^^^^^~02/01/2009~
-~17091~^~301~^24.^12^2.^~1~^^^^^^^^^^^~04/01/1989~
-~17091~^~304~^28.^12^0.^~1~^^^^^^^^^^^~04/01/1989~
-~17091~^~305~^250.^12^5.^~1~^^^^^^^^^^^~04/01/1989~
-~17091~^~306~^338.^12^2.^~1~^^^^^^^^^^^~04/01/1989~
-~17091~^~307~^89.^12^3.^~1~^^^^^^^^^^^~04/01/1989~
-~17091~^~318~^0.^0^^~4~^^^^^^^^^^^~04/01/1989~
-~17091~^~319~^0.^0^^~4~^~NR~^^^^^^^^^^~12/01/2002~
-~17091~^~320~^0.^0^^~4~^~NC~^^^^^^^^^^~02/01/2009~
-~17091~^~321~^0.^0^^~7~^~Z~^^^^^^^^^^~12/01/2002~
-~17091~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~12/01/2002~
-~17091~^~324~^0.^0^^~13~^~AI~^^^^^^^^^^~02/01/2009~
-~17091~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~12/01/2002~
-~17091~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~12/01/2002~
-~17091~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~12/01/2002~
-~17091~^~417~^16.^12^2.^~1~^^^^^^^^^^^~04/01/1989~
-~17091~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~
-~17091~^~432~^16.^12^2.^~1~^^^^^^^^^^^~02/01/2009~
-~17091~^~435~^16.^0^^~4~^~NC~^^^^^^^^^^~02/01/2009~
-~17091~^~601~^118.^7^0.^~1~^^^^^^^^^^^~04/01/1989~
-~17092~^~208~^638.^0^^~4~^~NC~^^^^^^^^^^~04/01/1989~
-~17092~^~268~^2669.^0^^~4~^^^^^^^^^^^
-~17092~^~301~^7.^0^^~1~^^^^^^^^^^^~04/01/1989~
-~17092~^~304~^5.^0^^~1~^^^^^^^^^^^~04/01/1989~
-~17092~^~305~^73.^0^^~1~^^^^^^^^^^^~04/01/1989~
-~17092~^~306~^107.^0^^~1~^^^^^^^^^^^~04/01/1989~
-~17092~^~307~^26.^0^^~1~^^^^^^^^^^^~04/01/1989~
-~17092~^~318~^0.^0^^~4~^^^^^^^^^^^~04/01/1989~
-~17092~^~319~^0.^0^^~4~^^^^^^^^^^^~06/01/2002~
-~17092~^~320~^0.^0^^~4~^^^^^^^^^^^~06/01/2002~
-~17092~^~417~^4.^0^^~1~^^^^^^^^^^^~04/01/1989~
-~17092~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~
-~17092~^~432~^4.^0^^~1~^^^^^^^^^^^~04/01/1989~
-~17092~^~435~^4.^0^^~4~^~NC~^^^^^^^^^^~01/01/2001~
-~17092~^~601~^73.^5^3.^~1~^^^^^^^^^^^~04/01/1989~
-~17093~^~208~^642.^0^^~4~^~NC~^^^^^^^^^^~04/01/1989~
-~17093~^~268~^2686.^0^^~4~^^^^^^^^^^^
-~17093~^~301~^4.^0^^~1~^^^^^^^^^^^~04/01/1989~
-~17093~^~304~^10.^8^0.^~1~^^^^^^^^^^^~04/01/1989~
-~17093~^~305~^116.^8^8.^~1~^^^^^^^^^^^~04/01/1989~
-~17093~^~306~^173.^0^^~1~^^^^^^^^^^^~04/01/1989~
-~17093~^~307~^57.^0^^~1~^^^^^^^^^^^~04/01/1989~
-~17093~^~318~^0.^0^^~4~^^^^^^^^^^^~04/01/1989~
-~17093~^~319~^0.^0^^~4~^^^^^^^^^^^~06/01/2002~
-~17093~^~320~^0.^0^^~4~^^^^^^^^^^^~06/01/2002~
-~17093~^~417~^5.^0^^~1~^^^^^^^^^^^~04/01/1989~
-~17093~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~
-~17093~^~432~^5.^0^^~1~^^^^^^^^^^^~04/01/1989~
-~17093~^~435~^5.^0^^~4~^~NC~^^^^^^^^^^~01/01/2001~
-~17093~^~601~^73.^2^^~1~^^^^^^^^^^^~04/01/1989~
-~17094~^~208~^117.^0^^~4~^~NC~^^^^^^^^^^~04/01/1989~
-~17094~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2001~
-~17094~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2001~
-~17094~^~268~^490.^0^^~4~^^^^^^^^^^^~02/01/2009~
-~17094~^~301~^5.^0^^~1~^^^^^^^^^^^~04/01/1989~
-~17094~^~304~^26.^0^^~1~^^^^^^^^^^^~04/01/1989~
-~17094~^~305~^220.^0^^~1~^^^^^^^^^^^~04/01/1989~
-~17094~^~306~^367.^0^^~1~^^^^^^^^^^^~04/01/1989~
-~17094~^~307~^63.^0^^~1~^^^^^^^^^^^~04/01/1989~
-~17094~^~318~^0.^0^^~4~^^^^^^^^^^^~04/01/1989~
-~17094~^~319~^0.^0^^~4~^~NR~^^^^^^^^^^~12/01/2002~
-~17094~^~320~^0.^0^^~4~^~NC~^^^^^^^^^^~02/01/2009~
-~17094~^~321~^0.^0^^~7~^~Z~^^^^^^^^^^~12/01/2002~
-~17094~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~12/01/2002~
-~17094~^~324~^0.^0^^~13~^~AI~^^^^^^^^^^~02/01/2009~
-~17094~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~12/01/2002~
-~17094~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~12/01/2002~
-~17094~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~12/01/2002~
-~17094~^~417~^14.^0^^~1~^^^^^^^^^^^~04/01/1989~
-~17094~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~
-~17094~^~432~^14.^0^^~1~^^^^^^^^^^^~02/01/2009~
-~17094~^~435~^14.^0^^~4~^~NC~^^^^^^^^^^~02/01/2009~
-~17094~^~601~^78.^0^^~1~^^^^^^^^^^^~04/01/1989~
-~17095~^~208~^211.^0^^~4~^~NC~^^^^^^^^^^~04/01/1989~
-~17095~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~12/01/2002~
-~17095~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~12/01/2002~
-~17095~^~268~^883.^0^^~4~^^^^^^^^^^^~02/01/2009~
-~17095~^~301~^8.^0^^~1~^^^^^^^^^^^~04/01/1989~
-~17095~^~304~^29.^0^^~1~^^^^^^^^^^^~04/01/1989~
-~17095~^~305~^249.^0^^~1~^^^^^^^^^^^~04/01/1989~
-~17095~^~306~^383.^0^^~1~^^^^^^^^^^^~04/01/1989~
-~17095~^~307~^67.^0^^~1~^^^^^^^^^^^~04/01/1989~
-~17095~^~318~^0.^0^^~4~^^^^^^^^^^^~04/01/1989~
-~17095~^~319~^0.^0^^~4~^~NR~^^^^^^^^^^~12/01/2002~
-~17095~^~320~^0.^0^^~4~^~NC~^^^^^^^^^^~02/01/2009~
-~17095~^~321~^0.^0^^~7~^~Z~^^^^^^^^^^~12/01/2002~
-~17095~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~12/01/2002~
-~17095~^~324~^0.^0^^~13~^~AI~^^^^^^^^^^~02/01/2009~
-~17095~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~12/01/2002~
-~17095~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~12/01/2002~
-~17095~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~12/01/2002~
-~17095~^~417~^18.^0^^~1~^^^^^^^^^^^~04/01/1989~
-~17095~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~
-~17095~^~432~^18.^0^^~1~^^^^^^^^^^^~02/01/2009~
-~17095~^~435~^18.^0^^~4~^~NC~^^^^^^^^^^~02/01/2009~
-~17095~^~601~^134.^0^^~1~^^^^^^^^^^^~04/01/1989~
-~17096~^~208~^238.^0^^~4~^~NC~^^^^^^^^^^~05/01/2009~
-~17096~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2003~
-~17096~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2003~
-~17096~^~268~^994.^0^^~4~^~NC~^^^^^^^^^^~05/01/2009~
-~17096~^~301~^39.^0^^~1~^^^^^^^^^^^~04/01/1989~
-~17096~^~304~^31.^0^^~1~^^^^^^^^^^^~04/01/1989~
-~17096~^~305~^250.^0^^~1~^^^^^^^^^^^~04/01/1989~
-~17096~^~306~^371.^0^^~1~^^^^^^^^^^^~04/01/1989~
-~17096~^~307~^454.^0^^~1~^^^^^^^^^^^~04/01/1989~
-~17096~^~318~^34.^0^^~1~^^^^^^^^^^^~12/01/2005~
-~17096~^~319~^10.^0^^~4~^~NR~^^^^^^^^^^~01/01/2003~
-~17096~^~320~^10.^0^^~4~^~NC~^^^^^^^^^^~02/01/2009~
-~17096~^~321~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2003~
-~17096~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2003~
-~17096~^~324~^0.^0^^~13~^~AI~^^^^^^^^^^~02/01/2009~
-~17096~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2003~
-~17096~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2003~
-~17096~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2003~
-~17096~^~417~^27.^0^^~4~^~RA~^^^^^^^^^^~10/01/1997~
-~17096~^~431~^8.^0^^~4~^~NC~^^^^^^^^^^~05/01/2000~
-~17096~^~432~^19.^0^^~1~^^^^^^^^^^^~04/01/1989~
-~17096~^~435~^33.^0^^~4~^~NC~^^^^^^^^^^~05/01/2009~
-~17096~^~601~^112.^0^^~1~^^^^^^^^^^^~04/01/1989~
-~17096~^~636~^3.^0^^~1~^^^^^^^^^^^~04/01/1989~
-~17097~^~208~^211.^0^^~4~^~NC~^^^^^^^^^^~04/01/1989~
-~17097~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~12/01/2002~
-~17097~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~12/01/2002~
-~17097~^~268~^883.^0^^~4~^^^^^^^^^^^~02/01/2009~
-~17097~^~301~^6.^0^^~1~^^^^^^^^^^^~04/01/1989~
-~17097~^~304~^31.^0^^~1~^^^^^^^^^^^~04/01/1989~
-~17097~^~305~^279.^0^^~1~^^^^^^^^^^^~04/01/1989~
-~17097~^~306~^425.^0^^~1~^^^^^^^^^^^~04/01/1989~
-~17097~^~307~^76.^0^^~1~^^^^^^^^^^^~04/01/1989~
-~17097~^~318~^0.^0^^~4~^^^^^^^^^^^~04/01/1989~
-~17097~^~319~^0.^0^^~4~^~NR~^^^^^^^^^^~12/01/2002~
-~17097~^~320~^0.^0^^~4~^~NC~^^^^^^^^^^~02/01/2009~
-~17097~^~321~^0.^0^^~7~^~Z~^^^^^^^^^^~12/01/2002~
-~17097~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~12/01/2002~
-~17097~^~324~^0.^0^^~13~^~AI~^^^^^^^^^^~02/01/2009~
-~17097~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~12/01/2002~
-~17097~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~12/01/2002~
-~17097~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~12/01/2002~
-~17097~^~417~^15.^0^^~1~^^^^^^^^^^^~04/01/1989~
-~17097~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~
-~17097~^~432~^15.^0^^~1~^^^^^^^^^^^~02/01/2009~
-~17097~^~435~^15.^0^^~4~^~NC~^^^^^^^^^^~02/01/2009~
-~17097~^~601~^105.^0^^~1~^^^^^^^^^^^~04/01/1989~
-~17098~^~208~^160.^0^^~4~^~NC~^^^^^^^^^^~04/01/1989~
-~17098~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~12/01/2002~
-~17098~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~12/01/2002~
-~17098~^~268~^669.^0^^~4~^^^^^^^^^^^~02/01/2009~
-~17098~^~301~^6.^0^^~1~^^^^^^^^^^^~04/01/1989~
-~17098~^~304~^28.^0^^~1~^^^^^^^^^^^~04/01/1989~
-~17098~^~305~^234.^0^^~1~^^^^^^^^^^^~04/01/1989~
-~17098~^~306~^389.^0^^~1~^^^^^^^^^^^~04/01/1989~
-~17098~^~307~^68.^0^^~1~^^^^^^^^^^^~04/01/1989~
-~17098~^~318~^0.^0^^~4~^^^^^^^^^^^~04/01/1989~
-~17098~^~319~^0.^0^^~4~^~NR~^^^^^^^^^^~12/01/2002~
-~17098~^~320~^0.^0^^~4~^~NC~^^^^^^^^^^~02/01/2009~
-~17098~^~321~^0.^0^^~7~^~Z~^^^^^^^^^^~12/01/2002~
-~17098~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~12/01/2002~
-~17098~^~324~^0.^0^^~13~^~AI~^^^^^^^^^^~02/01/2009~
-~17098~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~12/01/2002~
-~17098~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~12/01/2002~
-~17098~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~12/01/2002~
-~17098~^~417~^16.^0^^~1~^^^^^^^^^^^~04/01/1989~
-~17098~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~
-~17098~^~432~^16.^0^^~1~^^^^^^^^^^^~02/01/2009~
-~17098~^~435~^16.^0^^~4~^~NC~^^^^^^^^^^~02/01/2009~
-~17098~^~601~^103.^0^^~1~^^^^^^^^^^^~04/01/1989~
-~17099~^~208~^107.^0^^~4~^~NC~^^^^^^^^^^~04/01/1989~
-~17099~^~268~^448.^0^^~4~^^^^^^^^^^^
-~17099~^~301~^5.^11^0.^~1~^^^^^^^^^^^~04/01/1989~
-~17099~^~304~^27.^12^0.^~1~^^^^^^^^^^^~04/01/1989~
-~17099~^~305~^223.^12^6.^~1~^^^^^^^^^^^~04/01/1989~
-~17099~^~306~^372.^12^8.^~1~^^^^^^^^^^^~04/01/1989~
-~17099~^~307~^64.^12^2.^~1~^^^^^^^^^^^~04/01/1989~
-~17099~^~318~^0.^0^^~4~^^^^^^^^^^^~04/01/1989~
-~17099~^~319~^0.^0^^~4~^^^^^^^^^^^~08/01/2002~
-~17099~^~320~^0.^0^^~4~^~NC~^^^^^^^^^^~08/01/2002~
-~17099~^~417~^14.^12^3.^~1~^^^^^^^^^^^~04/01/1989~
-~17099~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~
-~17099~^~432~^14.^12^3.^~1~^^^^^^^^^^^~08/01/2002~
-~17099~^~435~^14.^0^^~4~^~NC~^^^^^^^^^^~08/01/2002~
-~17099~^~601~^78.^12^5.^~1~^^^^^^^^^^^~04/01/1989~
-~17100~^~208~^203.^0^^~4~^~NC~^^^^^^^^^^~04/01/1989~
-~17100~^~268~^849.^0^^~4~^^^^^^^^^^^
-~17100~^~301~^9.^0^^~1~^^^^^^^^^^^~04/01/1989~
-~17100~^~304~^30.^0^^~1~^^^^^^^^^^^~04/01/1989~
-~17100~^~305~^252.^0^^~1~^^^^^^^^^^^~04/01/1989~
-~17100~^~306~^387.^0^^~1~^^^^^^^^^^^~04/01/1989~
-~17100~^~307~^67.^0^^~1~^^^^^^^^^^^~04/01/1989~
-~17100~^~318~^0.^0^^~4~^^^^^^^^^^^~04/01/1989~
-~17100~^~319~^0.^0^^~4~^^^^^^^^^^^~06/01/2002~
-~17100~^~320~^0.^0^^~4~^^^^^^^^^^^~06/01/2002~
-~17100~^~417~^18.^0^^~1~^^^^^^^^^^^~04/01/1989~
-~17100~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~
-~17100~^~432~^18.^0^^~1~^^^^^^^^^^^~04/01/1989~
-~17100~^~435~^18.^0^^~4~^~NC~^^^^^^^^^^~01/01/2001~
-~17100~^~601~^135.^0^^~1~^^^^^^^^^^^~04/01/1989~
-~17101~^~208~^216.^0^^~4~^~NC~^^^^^^^^^^~02/01/2009~
-~17101~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2003~
-~17101~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2003~
-~17101~^~268~^904.^0^^~4~^~NC~^^^^^^^^^^~05/01/2009~
-~17101~^~301~^39.^0^^~1~^^^^^^^^^^^~04/01/1989~
-~17101~^~304~^32.^0^^~1~^^^^^^^^^^^~04/01/1989~
-~17101~^~305~^258.^0^^~1~^^^^^^^^^^^~04/01/1989~
-~17101~^~306~^383.^0^^~1~^^^^^^^^^^^~04/01/1989~
-~17101~^~307~^455.^0^^~1~^^^^^^^^^^^~04/01/1989~
-~17101~^~318~^34.^0^^~1~^^^^^^^^^^^~12/01/2005~
-~17101~^~319~^10.^0^^~4~^~NR~^^^^^^^^^^~01/01/2003~
-~17101~^~320~^10.^0^^~4~^~NC~^^^^^^^^^^~02/01/2009~
-~17101~^~321~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2003~
-~17101~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2003~
-~17101~^~324~^0.^0^^~13~^~AI~^^^^^^^^^^~02/01/2009~
-~17101~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2003~
-~17101~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2003~
-~17101~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2003~
-~17101~^~417~^28.^0^^~4~^~RA~^^^^^^^^^^~10/01/1997~
-~17101~^~431~^8.^0^^~4~^~NC~^^^^^^^^^^~05/01/2000~
-~17101~^~432~^20.^0^^~1~^^^^^^^^^^^~04/01/1989~
-~17101~^~435~^34.^0^^~4~^~NC~^^^^^^^^^^~05/01/2009~
-~17101~^~601~^113.^0^^~1~^^^^^^^^^^^~04/01/1989~
-~17101~^~636~^3.^0^^~1~^^^^^^^^^^^~04/01/1989~
-~17102~^~208~^183.^0^^~4~^~NC~^^^^^^^^^^~04/01/1989~
-~17102~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~12/01/2002~
-~17102~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~12/01/2002~
-~17102~^~268~^766.^0^^~4~^^^^^^^^^^^~02/01/2009~
-~17102~^~301~^7.^11^0.^~1~^^^^^^^^^^^~04/01/1989~
-~17102~^~304~^32.^12^0.^~1~^^^^^^^^^^^~04/01/1989~
-~17102~^~305~^290.^12^6.^~1~^^^^^^^^^^^~04/01/1989~
-~17102~^~306~^442.^12^8.^~1~^^^^^^^^^^^~04/01/1989~
-~17102~^~307~^77.^12^2.^~1~^^^^^^^^^^^~04/01/1989~
-~17102~^~318~^0.^0^^~4~^^^^^^^^^^^~04/01/1989~
-~17102~^~319~^0.^0^^~4~^~NR~^^^^^^^^^^~12/01/2002~
-~17102~^~320~^0.^0^^~4~^~NC~^^^^^^^^^^~02/01/2009~
-~17102~^~321~^0.^0^^~7~^~Z~^^^^^^^^^^~12/01/2002~
-~17102~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~12/01/2002~
-~17102~^~324~^0.^0^^~13~^~AI~^^^^^^^^^^~02/01/2009~
-~17102~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~12/01/2002~
-~17102~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~12/01/2002~
-~17102~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~12/01/2002~
-~17102~^~417~^16.^12^2.^~1~^^^^^^^^^^^~04/01/1989~
-~17102~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~
-~17102~^~432~^16.^12^2.^~1~^^^^^^^^^^^~02/01/2009~
-~17102~^~435~^16.^0^^~4~^~NC~^^^^^^^^^^~02/01/2009~
-~17102~^~601~^107.^22^4.^~1~^^^^^^^^^^^~04/01/1989~
-~17103~^~208~^150.^0^^~4~^~NC~^^^^^^^^^^~04/01/1989~
-~17103~^~268~^628.^0^^~4~^^^^^^^^^^^
-~17103~^~301~^6.^0^^~1~^^^^^^^^^^^~04/01/1989~
-~17103~^~304~^28.^0^^~1~^^^^^^^^^^^~04/01/1989~
-~17103~^~305~^236.^0^^~1~^^^^^^^^^^^~04/01/1989~
-~17103~^~306~^393.^0^^~1~^^^^^^^^^^^~04/01/1989~
-~17103~^~307~^68.^0^^~1~^^^^^^^^^^^~04/01/1989~
-~17103~^~318~^0.^0^^~4~^^^^^^^^^^^~04/01/1989~
-~17103~^~319~^0.^0^^~4~^^^^^^^^^^^~06/01/2002~
-~17103~^~320~^0.^0^^~4~^^^^^^^^^^^~06/01/2002~
-~17103~^~417~^16.^0^^~1~^^^^^^^^^^^~04/01/1989~
-~17103~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~
-~17103~^~432~^16.^0^^~1~^^^^^^^^^^^~04/01/1989~
-~17103~^~435~^16.^0^^~4~^~NC~^^^^^^^^^^~01/01/2001~
-~17103~^~601~^103.^0^^~1~^^^^^^^^^^^~04/01/1989~
-~17104~^~208~^177.^0^^~4~^~NC~^^^^^^^^^^~08/01/2015~
-~17104~^~262~^0.^0^^~4~^~PIK~^^^^^^^^^^~04/01/2015~
-~17104~^~263~^0.^0^^~4~^~PIK~^^^^^^^^^^~04/01/2015~
-~17104~^~268~^740.^0^^~4~^~NC~^^^^^^^^^^~08/01/2015~
-~17104~^~301~^14.^0^^~1~^~PAK~^^^^^^^^^^~05/01/2014~
-~17104~^~304~^43.^0^^~1~^~PAK~^^^^^^^^^^~05/01/2014~
-~17104~^~305~^222.^0^^~1~^~PAK~^^^^^^^^^^~05/01/2014~
-~17104~^~306~^241.^0^^~1~^~PAK~^^^^^^^^^^~05/01/2014~
-~17104~^~307~^98.^0^^~1~^~PAK~^^^^^^^^^^~05/01/2014~
-~17104~^~318~^0.^0^^~1~^~PAK~^^^^^^^^^^~05/01/2014~
-~17104~^~319~^0.^0^^~4~^~PIK~^^^^^^^^^^~04/01/2015~
-~17104~^~320~^0.^0^^~4~^~NC~^^^^^^^^^^~08/01/2015~
-~17104~^~321~^0.^0^^~4~^~PIK~^^^^^^^^^^~04/01/2015~
-~17104~^~322~^0.^0^^~4~^~PIK~^^^^^^^^^^~04/01/2015~
-~17104~^~324~^69.^0^^~1~^~PAK~^^^^^^^^^^~05/01/2014~
-~17104~^~334~^0.^0^^~4~^~PIK~^^^^^^^^^^~04/01/2015~
-~17104~^~337~^0.^0^^~4~^~PIK~^^^^^^^^^^~04/01/2015~
-~17104~^~338~^0.^0^^~4~^~PIK~^^^^^^^^^^~04/01/2015~
-~17104~^~417~^3.^0^^~4~^~PIK~^^^^^^^^^^~04/01/2015~
-~17104~^~431~^0.^0^^~4~^~PIK~^^^^^^^^^^~04/01/2015~
-~17104~^~432~^3.^0^^~4~^~PIK~^^^^^^^^^^~04/01/2015~
-~17104~^~435~^3.^0^^~4~^~NC~^^^^^^^^^^~05/01/2014~
-~17104~^~601~^59.^0^^~1~^~PAK~^^^^^^^^^^~05/01/2014~
-~17105~^~208~^284.^0^^~4~^~NC~^^^^^^^^^^~04/01/1989~
-~17105~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~12/01/2002~
-~17105~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~12/01/2002~
-~17105~^~268~^1188.^0^^~4~^^^^^^^^^^^~02/01/2009~
-~17105~^~301~^28.^0^^~1~^^^^^^^^^^^~04/01/1989~
-~17105~^~304~^24.^0^^~1~^^^^^^^^^^^~04/01/1989~
-~17105~^~305~^220.^0^^~1~^^^^^^^^^^^~04/01/1989~
-~17105~^~306~^280.^0^^~1~^^^^^^^^^^^~04/01/1989~
-~17105~^~307~^80.^0^^~1~^^^^^^^^^^^~04/01/1989~
-~17105~^~318~^0.^0^^~4~^^^^^^^^^^^~04/01/1989~
-~17105~^~319~^0.^0^^~4~^~NR~^^^^^^^^^^~12/01/2002~
-~17105~^~320~^0.^0^^~4~^~NC~^^^^^^^^^^~02/01/2009~
-~17105~^~321~^0.^0^^~7~^~Z~^^^^^^^^^^~12/01/2002~
-~17105~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~12/01/2002~
-~17105~^~324~^0.^0^^~13~^~AI~^^^^^^^^^^~02/01/2009~
-~17105~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~12/01/2002~
-~17105~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~12/01/2002~
-~17105~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~12/01/2002~
-~17105~^~417~^14.^0^^~1~^^^^^^^^^^^~04/01/1989~
-~17105~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~
-~17105~^~432~^14.^0^^~1~^^^^^^^^^^^~02/01/2009~
-~17105~^~435~^14.^0^^~4~^~NC~^^^^^^^^^^~02/01/2009~
-~17105~^~601~^118.^0^^~1~^^^^^^^^^^^~04/01/1989~
-~17106~^~208~^217.^0^^~4~^~NC~^^^^^^^^^^~04/01/1989~
-~17106~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~12/01/2002~
-~17106~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~12/01/2002~
-~17106~^~268~^908.^0^^~4~^^^^^^^^^^^~02/01/2009~
-~17106~^~301~^19.^0^^~1~^^^^^^^^^^^~04/01/1989~
-~17106~^~304~^25.^0^^~1~^^^^^^^^^^^~04/01/1989~
-~17106~^~305~^212.^0^^~1~^^^^^^^^^^^~04/01/1989~
-~17106~^~306~^325.^0^^~1~^^^^^^^^^^^~04/01/1989~
-~17106~^~307~^93.^0^^~1~^^^^^^^^^^^~04/01/1989~
-~17106~^~318~^0.^0^^~4~^^^^^^^^^^^~04/01/1989~
-~17106~^~319~^0.^0^^~4~^~NR~^^^^^^^^^^~12/01/2002~
-~17106~^~320~^0.^0^^~4~^~NC~^^^^^^^^^^~02/01/2009~
-~17106~^~321~^0.^0^^~7~^~Z~^^^^^^^^^^~12/01/2002~
-~17106~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~12/01/2002~
-~17106~^~324~^0.^0^^~13~^~AI~^^^^^^^^^^~02/01/2009~
-~17106~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~12/01/2002~
-~17106~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~12/01/2002~
-~17106~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~12/01/2002~
-~17106~^~417~^15.^0^^~1~^^^^^^^^^^^~04/01/1989~
-~17106~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~
-~17106~^~432~^15.^0^^~1~^^^^^^^^^^^~02/01/2009~
-~17106~^~435~^15.^0^^~4~^~NC~^^^^^^^^^^~02/01/2009~
-~17106~^~601~^103.^0^^~1~^^^^^^^^^^^~04/01/1989~
-~17107~^~208~^114.^0^^~4~^~NC~^^^^^^^^^^~04/01/2014~
-~17107~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2014~
-~17107~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2014~
-~17107~^~268~^475.^0^^~4~^~NC~^^^^^^^^^^~04/01/2014~
-~17107~^~301~^11.^6^^~1~^~A~^^^1^8.^13.^^^^~2~^~04/01/2014~
-~17107~^~304~^47.^6^^~1~^~A~^^^1^33.^98.^^^^~2~^~04/01/2014~
-~17107~^~305~^237.^6^^~1~^~A~^^^1^200.^306.^^^^~2~^~04/01/2014~
-~17107~^~306~^260.^6^^~1~^~A~^^^1^234.^302.^^^^~2~^~04/01/2014~
-~17107~^~307~^99.^6^^~1~^~A~^^^1^89.^114.^^^^~2~^~04/01/2014~
-~17107~^~318~^0.^0^^~1~^~AS~^^^^^^^^^^~04/01/2014~
-~17107~^~319~^0.^0^^~4~^~BFSN~^~17091~^^^^^^^^^~06/01/2002~
-~17107~^~320~^0.^0^^~4~^~NC~^^^^^^^^^^~03/01/2016~
-~17107~^~321~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2014~
-~17107~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2014~
-~17107~^~324~^48.^1^^~1~^~A~^^^^^^^^^^~04/01/2014~
-~17107~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2014~
-~17107~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2014~
-~17107~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2014~
-~17107~^~417~^3.^0^^~4~^~BFPN~^^^^^^^^^^~04/01/2014~
-~17107~^~431~^0.^0^^~4~^~BFPN~^^^^^^^^^^~04/01/2014~
-~17107~^~432~^3.^0^^~4~^~BFPN~^^^^^^^^^^~04/01/2014~
-~17107~^~435~^3.^0^^~4~^~NC~^^^^^^^^^^~04/01/2014~
-~17107~^~601~^55.^6^^~1~^~A~^^^1^49.^58.^^^^~2~^~04/01/2014~
-~17108~^~208~^226.^0^^~4~^~NC~^^^^^^^^^^~04/01/1989~
-~17108~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~12/01/2002~
-~17108~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~12/01/2002~
-~17108~^~268~^946.^0^^~4~^^^^^^^^^^^~02/01/2009~
-~17108~^~301~^32.^12^3.^~1~^^^^^^^^^^^~04/01/1989~
-~17108~^~304~^27.^12^0.^~1~^^^^^^^^^^^~04/01/1989~
-~17108~^~305~^237.^12^5.^~1~^^^^^^^^^^^~04/01/1989~
-~17108~^~306~^297.^12^4.^~1~^^^^^^^^^^^~04/01/1989~
-~17108~^~307~^84.^12^2.^~1~^^^^^^^^^^^~04/01/1989~
-~17108~^~318~^0.^0^^~4~^^^^^^^^^^^~04/01/1989~
-~17108~^~319~^0.^0^^~4~^~NR~^^^^^^^^^^~12/01/2002~
-~17108~^~320~^0.^0^^~4~^~NC~^^^^^^^^^^~02/01/2009~
-~17108~^~321~^0.^0^^~7~^~Z~^^^^^^^^^^~12/01/2002~
-~17108~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~12/01/2002~
-~17108~^~324~^0.^0^^~13~^~AI~^^^^^^^^^^~02/01/2009~
-~17108~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~12/01/2002~
-~17108~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~12/01/2002~
-~17108~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~12/01/2002~
-~17108~^~417~^15.^12^2.^~1~^^^^^^^^^^^~04/01/1989~
-~17108~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~
-~17108~^~432~^15.^12^2.^~1~^^^^^^^^^^^~02/01/2009~
-~17108~^~435~^15.^0^^~4~^~NC~^^^^^^^^^^~02/01/2009~
-~17108~^~601~^125.^22^10.^~1~^^^^^^^^^^^~04/01/1989~
-~17109~^~208~^175.^0^^~4~^~NC~^^^^^^^^^^~04/01/1989~
-~17109~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~12/01/2002~
-~17109~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~12/01/2002~
-~17109~^~268~^732.^0^^~4~^^^^^^^^^^^~02/01/2009~
-~17109~^~301~^21.^0^^~1~^^^^^^^^^^^~04/01/1989~
-~17109~^~304~^26.^0^^~1~^^^^^^^^^^^~04/01/1989~
-~17109~^~305~^222.^0^^~1~^^^^^^^^^^^~04/01/1989~
-~17109~^~306~^340.^0^^~1~^^^^^^^^^^^~04/01/1989~
-~17109~^~307~^96.^0^^~1~^^^^^^^^^^^~04/01/1989~
-~17109~^~318~^0.^0^^~4~^^^^^^^^^^^~04/01/1989~
-~17109~^~319~^0.^0^^~4~^~NR~^^^^^^^^^^~12/01/2002~
-~17109~^~320~^0.^0^^~4~^~NC~^^^^^^^^^^~02/01/2009~
-~17109~^~321~^0.^0^^~7~^~Z~^^^^^^^^^^~12/01/2002~
-~17109~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~12/01/2002~
-~17109~^~324~^0.^0^^~13~^~AI~^^^^^^^^^^~02/01/2009~
-~17109~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~12/01/2002~
-~17109~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~12/01/2002~
-~17109~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~12/01/2002~
-~17109~^~417~^16.^0^^~1~^^^^^^^^^^^~04/01/1989~
-~17109~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~
-~17109~^~432~^16.^0^^~1~^^^^^^^^^^^~02/01/2009~
-~17109~^~435~^16.^0^^~4~^~NC~^^^^^^^^^^~02/01/2009~
-~17109~^~601~^106.^0^^~1~^^^^^^^^^^^~04/01/1989~
-~17110~^~208~^162.^0^^~4~^~NC~^^^^^^^^^^~04/01/1989~
-~17110~^~268~^678.^0^^~4~^^^^^^^^^^^
-~17110~^~301~^13.^0^^~1~^^^^^^^^^^^~04/01/1989~
-~17110~^~304~^22.^0^^~1~^^^^^^^^^^^~04/01/1989~
-~17110~^~305~^184.^0^^~1~^^^^^^^^^^^~04/01/1989~
-~17110~^~306~^290.^0^^~1~^^^^^^^^^^^~04/01/1989~
-~17110~^~307~^89.^0^^~1~^^^^^^^^^^^~04/01/1989~
-~17110~^~318~^0.^0^^~4~^^^^^^^^^^^~04/01/1989~
-~17110~^~319~^0.^0^^~4~^^^^^^^^^^^~06/01/2002~
-~17110~^~320~^0.^0^^~4~^^^^^^^^^^^~06/01/2002~
-~17110~^~417~^12.^0^^~1~^^^^^^^^^^^~04/01/1989~
-~17110~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~
-~17110~^~432~^12.^0^^~1~^^^^^^^^^^^~04/01/1989~
-~17110~^~435~^12.^0^^~4~^~NC~^^^^^^^^^^~01/01/2001~
-~17110~^~601~^82.^0^^~1~^^^^^^^^^^^~04/01/1989~
-~17111~^~208~^251.^0^^~4~^~NC~^^^^^^^^^^~04/01/1989~
-~17111~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~12/01/2002~
-~17111~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~12/01/2002~
-~17111~^~268~^1050.^0^^~4~^^^^^^^^^^^~02/01/2009~
-~17111~^~301~^22.^0^^~1~^^^^^^^^^^^~04/01/1989~
-~17111~^~304~^25.^0^^~1~^^^^^^^^^^^~04/01/1989~
-~17111~^~305~^210.^0^^~1~^^^^^^^^^^^~04/01/1989~
-~17111~^~306~^306.^0^^~1~^^^^^^^^^^^~04/01/1989~
-~17111~^~307~^95.^0^^~1~^^^^^^^^^^^~04/01/1989~
-~17111~^~318~^0.^0^^~4~^^^^^^^^^^^~04/01/1989~
-~17111~^~319~^0.^0^^~4~^~NR~^^^^^^^^^^~12/01/2002~
-~17111~^~320~^0.^0^^~4~^~NC~^^^^^^^^^^~02/01/2009~
-~17111~^~321~^0.^0^^~7~^~Z~^^^^^^^^^^~12/01/2002~
-~17111~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~12/01/2002~
-~17111~^~324~^0.^0^^~13~^~AI~^^^^^^^^^^~02/01/2009~
-~17111~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~12/01/2002~
-~17111~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~12/01/2002~
-~17111~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~12/01/2002~
-~17111~^~417~^16.^0^^~1~^^^^^^^^^^^~04/01/1989~
-~17111~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~
-~17111~^~432~^16.^0^^~1~^^^^^^^^^^^~02/01/2009~
-~17111~^~435~^16.^0^^~4~^~NC~^^^^^^^^^^~02/01/2009~
-~17111~^~601~^139.^0^^~1~^^^^^^^^^^^~04/01/1989~
-~17112~^~208~^228.^0^^~4~^~NC~^^^^^^^^^^~04/01/1989~
-~17112~^~268~^954.^0^^~4~^^^^^^^^^^^
-~17112~^~301~^11.^0^^~1~^^^^^^^^^^^~04/01/1989~
-~17112~^~304~^22.^0^^~1~^^^^^^^^^^^~04/01/1989~
-~17112~^~305~^197.^0^^~1~^^^^^^^^^^^~04/01/1989~
-~17112~^~306~^295.^0^^~1~^^^^^^^^^^^~04/01/1989~
-~17112~^~307~^92.^0^^~1~^^^^^^^^^^^~04/01/1989~
-~17112~^~318~^0.^0^^~4~^^^^^^^^^^^~04/01/1989~
-~17112~^~319~^0.^0^^~4~^^^^^^^^^^^~06/01/2002~
-~17112~^~320~^0.^0^^~4~^^^^^^^^^^^~06/01/2002~
-~17112~^~417~^13.^0^^~1~^^^^^^^^^^^~04/01/1989~
-~17112~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~
-~17112~^~432~^13.^0^^~1~^^^^^^^^^^^~04/01/1989~
-~17112~^~435~^13.^0^^~4~^~NC~^^^^^^^^^^~01/01/2001~
-~17112~^~601~^110.^0^^~1~^^^^^^^^^^^~04/01/1989~
-~17113~^~208~^120.^0^^~4~^~NC~^^^^^^^^^^~04/01/1989~
-~17113~^~268~^502.^0^^~4~^^^^^^^^^^^
-~17113~^~301~^14.^12^2.^~1~^^^^^^^^^^^~04/01/1989~
-~17113~^~304~^23.^12^0.^~1~^^^^^^^^^^^~04/01/1989~
-~17113~^~305~^194.^12^4.^~1~^^^^^^^^^^^~04/01/1989~
-~17113~^~306~^306.^12^3.^~1~^^^^^^^^^^^~04/01/1989~
-~17113~^~307~^95.^12^3.^~1~^^^^^^^^^^^~04/01/1989~
-~17113~^~318~^0.^0^^~4~^^^^^^^^^^^~04/01/1989~
-~17113~^~319~^0.^0^^~4~^^^^^^^^^^^~06/01/2002~
-~17113~^~320~^0.^0^^~4~^^^^^^^^^^^~06/01/2002~
-~17113~^~417~^13.^12^2.^~1~^^^^^^^^^^^~04/01/1989~
-~17113~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~
-~17113~^~432~^13.^12^2.^~1~^^^^^^^^^^^~04/01/1989~
-~17113~^~435~^13.^0^^~4~^~NC~^^^^^^^^^^~01/01/2001~
-~17113~^~601~^83.^12^4.^~1~^^^^^^^^^^^~04/01/1989~
-~17114~^~208~^218.^0^^~4~^~NC~^^^^^^^^^^~04/01/1989~
-~17114~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~12/01/2002~
-~17114~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~12/01/2002~
-~17114~^~268~^912.^0^^~4~^^^^^^^^^^^~02/01/2009~
-~17114~^~301~^24.^0^^~1~^^^^^^^^^^^~04/01/1989~
-~17114~^~304~^26.^0^^~1~^^^^^^^^^^^~04/01/1989~
-~17114~^~305~^218.^0^^~1~^^^^^^^^^^^~04/01/1989~
-~17114~^~306~^318.^0^^~1~^^^^^^^^^^^~04/01/1989~
-~17114~^~307~^99.^0^^~1~^^^^^^^^^^^~04/01/1989~
-~17114~^~318~^0.^0^^~4~^^^^^^^^^^^~04/01/1989~
-~17114~^~319~^0.^0^^~4~^~NR~^^^^^^^^^^~12/01/2002~
-~17114~^~320~^0.^0^^~4~^~NC~^^^^^^^^^^~02/01/2009~
-~17114~^~321~^0.^0^^~7~^~Z~^^^^^^^^^^~12/01/2002~
-~17114~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~12/01/2002~
-~17114~^~324~^0.^0^^~13~^~AI~^^^^^^^^^^~02/01/2009~
-~17114~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~12/01/2002~
-~17114~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~12/01/2002~
-~17114~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~12/01/2002~
-~17114~^~417~^16.^0^^~1~^^^^^^^^^^^~04/01/1989~
-~17114~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~
-~17114~^~432~^16.^0^^~1~^^^^^^^^^^^~02/01/2009~
-~17114~^~435~^16.^0^^~4~^~NC~^^^^^^^^^^~02/01/2009~
-~17114~^~601~^144.^0^^~1~^^^^^^^^^^^~04/01/1989~
-~17115~^~208~^177.^0^^~4~^~NC~^^^^^^^^^^~04/01/1989~
-~17115~^~268~^741.^0^^~4~^^^^^^^^^^^
-~17115~^~301~^12.^11^0.^~1~^^^^^^^^^^^~04/01/1989~
-~17115~^~304~^24.^12^0.^~1~^^^^^^^^^^^~04/01/1989~
-~17115~^~305~^207.^12^5.^~1~^^^^^^^^^^^~04/01/1989~
-~17115~^~306~^311.^12^4.^~1~^^^^^^^^^^^~04/01/1989~
-~17115~^~307~^97.^12^2.^~1~^^^^^^^^^^^~04/01/1989~
-~17115~^~318~^0.^0^^~4~^^^^^^^^^^^~04/01/1989~
-~17115~^~319~^0.^0^^~4~^^^^^^^^^^^~06/01/2002~
-~17115~^~320~^0.^0^^~4~^^^^^^^^^^^~06/01/2002~
-~17115~^~417~^14.^12^2.^~1~^^^^^^^^^^^~04/01/1989~
-~17115~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~
-~17115~^~432~^14.^12^2.^~1~^^^^^^^^^^^~04/01/1989~
-~17115~^~435~^14.^0^^~4~^~NC~^^^^^^^^^^~01/01/2001~
-~17115~^~601~^115.^22^4.^~1~^^^^^^^^^^^~04/01/1989~
-~17116~^~208~^130.^0^^~4~^~NC~^^^^^^^^^^~04/01/1989~
-~17116~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~12/01/2002~
-~17116~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~12/01/2002~
-~17116~^~268~^544.^0^^~4~^^^^^^^^^^^~02/01/2009~
-~17116~^~301~^22.^0^^~1~^^^^^^^^^^^~04/01/1989~
-~17116~^~304~^23.^0^^~1~^^^^^^^^^^^~04/01/1989~
-~17116~^~305~^203.^0^^~1~^^^^^^^^^^^~04/01/1989~
-~17116~^~306~^302.^0^^~1~^^^^^^^^^^^~04/01/1989~
-~17116~^~307~^91.^0^^~1~^^^^^^^^^^^~04/01/1989~
-~17116~^~318~^0.^0^^~4~^^^^^^^^^^^~04/01/1989~
-~17116~^~319~^0.^0^^~4~^~NR~^^^^^^^^^^~12/01/2002~
-~17116~^~320~^0.^0^^~4~^~NC~^^^^^^^^^^~02/01/2009~
-~17116~^~321~^0.^0^^~7~^~Z~^^^^^^^^^^~12/01/2002~
-~17116~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~12/01/2002~
-~17116~^~324~^0.^0^^~13~^~AI~^^^^^^^^^^~02/01/2009~
-~17116~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~12/01/2002~
-~17116~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~12/01/2002~
-~17116~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~12/01/2002~
-~17116~^~417~^12.^0^^~1~^^^^^^^^^^^~04/01/1989~
-~17116~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~
-~17116~^~432~^12.^0^^~1~^^^^^^^^^^^~02/01/2009~
-~17116~^~435~^12.^0^^~4~^~NC~^^^^^^^^^^~02/01/2009~
-~17116~^~601~^87.^0^^~1~^^^^^^^^^^^~04/01/1989~
-~17117~^~208~^228.^0^^~4~^~NC~^^^^^^^^^^~04/01/1989~
-~17117~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~12/01/2002~
-~17117~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~12/01/2002~
-~17117~^~268~^954.^0^^~4~^^^^^^^^^^^~02/01/2009~
-~17117~^~301~^35.^0^^~1~^^^^^^^^^^^~04/01/1989~
-~17117~^~304~^27.^0^^~1~^^^^^^^^^^^~04/01/1989~
-~17117~^~305~^250.^0^^~1~^^^^^^^^^^^~04/01/1989~
-~17117~^~306~^309.^0^^~1~^^^^^^^^^^^~04/01/1989~
-~17117~^~307~^95.^0^^~1~^^^^^^^^^^^~04/01/1989~
-~17117~^~318~^0.^0^^~4~^^^^^^^^^^^~04/01/1989~
-~17117~^~319~^0.^0^^~4~^~NR~^^^^^^^^^^~12/01/2002~
-~17117~^~320~^0.^0^^~4~^~NC~^^^^^^^^^^~02/01/2009~
-~17117~^~321~^0.^0^^~7~^~Z~^^^^^^^^^^~12/01/2002~
-~17117~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~12/01/2002~
-~17117~^~324~^0.^0^^~13~^~AI~^^^^^^^^^^~02/01/2009~
-~17117~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~12/01/2002~
-~17117~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~12/01/2002~
-~17117~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~12/01/2002~
-~17117~^~417~^15.^0^^~1~^^^^^^^^^^^~04/01/1989~
-~17117~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~
-~17117~^~432~^15.^0^^~1~^^^^^^^^^^^~02/01/2009~
-~17117~^~435~^15.^0^^~4~^~NC~^^^^^^^^^^~02/01/2009~
-~17117~^~601~^126.^0^^~1~^^^^^^^^^^^~04/01/1989~
-~17118~^~208~^184.^0^^~4~^~NC~^^^^^^^^^^~04/01/1989~
-~17118~^~268~^770.^0^^~4~^^^^^^^^^^^
-~17118~^~301~^27.^0^^~1~^^^^^^^^^^^~04/01/1989~
-~17118~^~304~^25.^0^^~1~^^^^^^^^^^^~04/01/1989~
-~17118~^~305~^215.^0^^~1~^^^^^^^^^^^~04/01/1989~
-~17118~^~306~^322.^0^^~1~^^^^^^^^^^^~04/01/1989~
-~17118~^~307~^96.^0^^~1~^^^^^^^^^^^~04/01/1989~
-~17118~^~318~^0.^0^^~4~^^^^^^^^^^^~04/01/1989~
-~17118~^~319~^0.^0^^~4~^^^^^^^^^^^~06/01/2002~
-~17118~^~320~^0.^0^^~4~^^^^^^^^^^^~06/01/2002~
-~17118~^~417~^12.^0^^~1~^^^^^^^^^^^~04/01/1989~
-~17118~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~
-~17118~^~432~^12.^0^^~1~^^^^^^^^^^^~04/01/1989~
-~17118~^~435~^12.^0^^~4~^~NC~^^^^^^^^^^~01/01/2001~
-~17118~^~601~^113.^0^^~1~^^^^^^^^^^^~04/01/1989~
-~17119~^~208~^112.^0^^~4~^~NC~^^^^^^^^^^~04/01/1989~
-~17119~^~268~^469.^0^^~4~^^^^^^^^^^^
-~17119~^~301~^22.^18^2.^~1~^^^^^^^^^^^~04/01/1989~
-~17119~^~304~^24.^18^0.^~1~^^^^^^^^^^^~04/01/1989~
-~17119~^~305~^208.^18^4.^~1~^^^^^^^^^^^~04/01/1989~
-~17119~^~306~^311.^18^5.^~1~^^^^^^^^^^^~04/01/1989~
-~17119~^~307~^92.^18^3.^~1~^^^^^^^^^^^~04/01/1989~
-~17119~^~318~^0.^0^^~4~^^^^^^^^^^^~04/01/1989~
-~17119~^~319~^0.^0^^~4~^^^^^^^^^^^~06/01/2002~
-~17119~^~320~^0.^0^^~4~^^^^^^^^^^^~06/01/2002~
-~17119~^~417~^11.^18^2.^~1~^^^^^^^^^^^~04/01/1989~
-~17119~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~
-~17119~^~432~^11.^18^2.^~1~^^^^^^^^^^^~04/01/1989~
-~17119~^~435~^11.^0^^~4~^~NC~^^^^^^^^^^~01/01/2001~
-~17119~^~601~^86.^18^4.^~1~^^^^^^^^^^^~04/01/1989~
-~17120~^~208~^199.^0^^~4~^~NC~^^^^^^^^^^~04/01/1989~
-~17120~^~268~^833.^0^^~4~^^^^^^^^^^^
-~17120~^~301~^37.^12^3.^~1~^^^^^^^^^^^~04/01/1989~
-~17120~^~304~^28.^12^0.^~1~^^^^^^^^^^^~04/01/1989~
-~17120~^~305~^260.^12^7.^~1~^^^^^^^^^^^~04/01/1989~
-~17120~^~306~^319.^12^3.^~1~^^^^^^^^^^^~04/01/1989~
-~17120~^~307~^97.^12^4.^~1~^^^^^^^^^^^~04/01/1989~
-~17120~^~318~^0.^0^^~4~^^^^^^^^^^^~04/01/1989~
-~17120~^~319~^0.^0^^~4~^^^^^^^^^^^~06/01/2002~
-~17120~^~320~^0.^0^^~4~^^^^^^^^^^^~06/01/2002~
-~17120~^~417~^16.^12^3.^~1~^^^^^^^^^^^~04/01/1989~
-~17120~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~
-~17120~^~432~^16.^12^3.^~1~^^^^^^^^^^^~04/01/1989~
-~17120~^~435~^16.^0^^~4~^~NC~^^^^^^^^^^~01/01/2001~
-~17120~^~601~^130.^22^7.^~1~^^^^^^^^^^^~04/01/1989~
-~17121~^~208~^170.^0^^~4~^~NC~^^^^^^^^^^~04/01/1989~
-~17121~^~268~^711.^0^^~4~^^^^^^^^^^^
-~17121~^~301~^27.^0^^~1~^^^^^^^^^^^~04/01/1989~
-~17121~^~304~^25.^0^^~1~^^^^^^^^^^^~04/01/1989~
-~17121~^~305~^218.^0^^~1~^^^^^^^^^^^~04/01/1989~
-~17121~^~306~^327.^0^^~1~^^^^^^^^^^^~04/01/1989~
-~17121~^~307~^97.^0^^~1~^^^^^^^^^^^~04/01/1989~
-~17121~^~318~^0.^0^^~4~^^^^^^^^^^^~04/01/1989~
-~17121~^~319~^0.^0^^~4~^^^^^^^^^^^~06/01/2002~
-~17121~^~320~^0.^0^^~4~^^^^^^^^^^^~06/01/2002~
-~17121~^~417~^13.^0^^~1~^^^^^^^^^^^~04/01/1989~
-~17121~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~
-~17121~^~432~^13.^0^^~1~^^^^^^^^^^^~04/01/1989~
-~17121~^~435~^13.^0^^~4~^~NC~^^^^^^^^^^~01/01/2001~
-~17121~^~601~^114.^0^^~1~^^^^^^^^^^^~04/01/1989~
-~17122~^~208~^132.^0^^~4~^~NC~^^^^^^^^^^~04/01/1989~
-~17122~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~12/01/2002~
-~17122~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~12/01/2002~
-~17122~^~268~^552.^0^^~4~^^^^^^^^^^^~02/01/2009~
-~17122~^~301~^21.^0^^~1~^^^^^^^^^^^~04/01/1989~
-~17122~^~304~^25.^0^^~1~^^^^^^^^^^^~04/01/1989~
-~17122~^~305~^208.^0^^~1~^^^^^^^^^^^~04/01/1989~
-~17122~^~306~^327.^0^^~1~^^^^^^^^^^^~04/01/1989~
-~17122~^~307~^83.^0^^~1~^^^^^^^^^^^~04/01/1989~
-~17122~^~318~^0.^0^^~4~^^^^^^^^^^^~04/01/1989~
-~17122~^~319~^0.^0^^~4~^~NR~^^^^^^^^^^~12/01/2002~
-~17122~^~320~^0.^0^^~4~^~NC~^^^^^^^^^^~02/01/2009~
-~17122~^~321~^0.^0^^~7~^~Z~^^^^^^^^^^~12/01/2002~
-~17122~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~12/01/2002~
-~17122~^~324~^0.^0^^~13~^~AI~^^^^^^^^^^~02/01/2009~
-~17122~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~12/01/2002~
-~17122~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~12/01/2002~
-~17122~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~12/01/2002~
-~17122~^~417~^15.^0^^~1~^^^^^^^^^^^~04/01/1989~
-~17122~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~
-~17122~^~432~^15.^0^^~1~^^^^^^^^^^^~02/01/2009~
-~17122~^~435~^15.^0^^~4~^~NC~^^^^^^^^^^~02/01/2009~
-~17122~^~601~^82.^0^^~1~^^^^^^^^^^^~04/01/1989~
-~17123~^~208~^236.^0^^~4~^~NC~^^^^^^^^^^~04/01/1989~
-~17123~^~268~^987.^0^^~4~^^^^^^^^^^^
-~17123~^~301~^28.^0^^~1~^^^^^^^^^^^~04/01/1989~
-~17123~^~304~^29.^0^^~1~^^^^^^^^^^^~04/01/1989~
-~17123~^~305~^263.^0^^~1~^^^^^^^^^^^~04/01/1989~
-~17123~^~306~^333.^0^^~1~^^^^^^^^^^^~04/01/1989~
-~17123~^~307~^87.^0^^~1~^^^^^^^^^^^~04/01/1989~
-~17123~^~318~^0.^0^^~4~^^^^^^^^^^^~04/01/1989~
-~17123~^~319~^0.^0^^~4~^^^^^^^^^^^~06/01/2002~
-~17123~^~320~^0.^0^^~4~^^^^^^^^^^^~06/01/2002~
-~17123~^~417~^18.^0^^~1~^^^^^^^^^^^~04/01/1989~
-~17123~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~
-~17123~^~432~^18.^0^^~1~^^^^^^^^^^^~04/01/1989~
-~17123~^~435~^18.^0^^~4~^~NC~^^^^^^^^^^~01/01/2001~
-~17123~^~601~^148.^0^^~1~^^^^^^^^^^^~04/01/1989~
-~17124~^~208~^183.^0^^~4~^~NC~^^^^^^^^^^~04/01/1989~
-~17124~^~268~^766.^0^^~4~^^^^^^^^^^^
-~17124~^~301~^26.^0^^~1~^^^^^^^^^^^~04/01/1989~
-~17124~^~304~^26.^0^^~1~^^^^^^^^^^^~04/01/1989~
-~17124~^~305~^221.^0^^~1~^^^^^^^^^^^~04/01/1989~
-~17124~^~306~^348.^0^^~1~^^^^^^^^^^^~04/01/1989~
-~17124~^~307~^90.^0^^~1~^^^^^^^^^^^~04/01/1989~
-~17124~^~318~^0.^0^^~4~^^^^^^^^^^^~04/01/1989~
-~17124~^~319~^0.^0^^~4~^^^^^^^^^^^~06/01/2002~
-~17124~^~320~^0.^0^^~4~^^^^^^^^^^^~06/01/2002~
-~17124~^~417~^17.^0^^~1~^^^^^^^^^^^~04/01/1989~
-~17124~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~
-~17124~^~432~^17.^0^^~1~^^^^^^^^^^^~04/01/1989~
-~17124~^~435~^17.^0^^~4~^~NC~^^^^^^^^^^~01/01/2001~
-~17124~^~601~^108.^0^^~1~^^^^^^^^^^^~04/01/1989~
-~17125~^~208~^105.^0^^~4~^~NC~^^^^^^^^^^~04/01/1989~
-~17125~^~268~^439.^0^^~4~^^^^^^^^^^^
-~17125~^~301~^22.^12^3.^~1~^^^^^^^^^^^~04/01/1989~
-~17125~^~304~^26.^12^0.^~1~^^^^^^^^^^^~04/01/1989~
-~17125~^~305~^215.^12^4.^~1~^^^^^^^^^^^~04/01/1989~
-~17125~^~306~^339.^12^8.^~1~^^^^^^^^^^^~04/01/1989~
-~17125~^~307~^86.^12^3.^~1~^^^^^^^^^^^~04/01/1989~
-~17125~^~318~^0.^0^^~4~^^^^^^^^^^^~04/01/1989~
-~17125~^~319~^0.^0^^~4~^^^^^^^^^^^~06/01/2002~
-~17125~^~320~^0.^0^^~4~^^^^^^^^^^^~06/01/2002~
-~17125~^~417~^16.^12^3.^~1~^^^^^^^^^^^~04/01/1989~
-~17125~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~
-~17125~^~432~^16.^12^3.^~1~^^^^^^^^^^^~04/01/1989~
-~17125~^~435~^16.^0^^~4~^~NC~^^^^^^^^^^~01/01/2001~
-~17125~^~601~^83.^12^4.^~1~^^^^^^^^^^^~04/01/1989~
-~17126~^~208~^201.^0^^~4~^~NC~^^^^^^^^^^~04/01/1989~
-~17126~^~268~^841.^0^^~4~^^^^^^^^^^^
-~17126~^~301~^30.^12^3.^~1~^^^^^^^^^^^~04/01/1989~
-~17126~^~304~^30.^12^0.^~1~^^^^^^^^^^^~04/01/1989~
-~17126~^~305~^276.^12^7.^~1~^^^^^^^^^^^~04/01/1989~
-~17126~^~306~^347.^12^6.^~1~^^^^^^^^^^^~04/01/1989~
-~17126~^~307~^90.^12^3.^~1~^^^^^^^^^^^~04/01/1989~
-~17126~^~318~^0.^0^^~4~^^^^^^^^^^^~04/01/1989~
-~17126~^~319~^0.^0^^~4~^^^^^^^^^^^~06/01/2002~
-~17126~^~320~^0.^0^^~4~^^^^^^^^^^^~06/01/2002~
-~17126~^~417~^19.^11^4.^~1~^^^^^^^^^^^~04/01/1989~
-~17126~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~
-~17126~^~432~^19.^11^4.^~1~^^^^^^^^^^^~04/01/1989~
-~17126~^~435~^19.^0^^~4~^~NC~^^^^^^^^^^~01/01/2001~
-~17126~^~601~^155.^12^12.^~1~^^^^^^^^^^^~04/01/1989~
-~17127~^~208~^164.^0^^~4~^~NC~^^^^^^^^^^~04/01/1989~
-~17127~^~268~^686.^0^^~4~^^^^^^^^^^^
-~17127~^~301~^27.^0^^~1~^^^^^^^^^^^~04/01/1989~
-~17127~^~304~^27.^0^^~1~^^^^^^^^^^^~04/01/1989~
-~17127~^~305~^226.^0^^~1~^^^^^^^^^^^~04/01/1989~
-~17127~^~306~^356.^0^^~1~^^^^^^^^^^^~04/01/1989~
-~17127~^~307~^91.^0^^~1~^^^^^^^^^^^~04/01/1989~
-~17127~^~318~^0.^0^^~4~^^^^^^^^^^^~04/01/1989~
-~17127~^~319~^0.^0^^~4~^^^^^^^^^^^~06/01/2002~
-~17127~^~320~^0.^0^^~4~^^^^^^^^^^^~06/01/2002~
-~17127~^~417~^17.^0^^~1~^^^^^^^^^^^~04/01/1989~
-~17127~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~
-~17127~^~432~^17.^0^^~1~^^^^^^^^^^^~04/01/1989~
-~17127~^~435~^17.^0^^~4~^~NC~^^^^^^^^^^~01/01/2001~
-~17127~^~601~^109.^0^^~1~^^^^^^^^^^^~04/01/1989~
-~17128~^~208~^148.^0^^~4~^~PIK~^^^^^^^^^^~04/01/2015~
-~17128~^~262~^0.^0^^~4~^~PIK~^^^^^^^^^^~04/01/2015~
-~17128~^~263~^0.^0^^~4~^~PIK~^^^^^^^^^^~04/01/2015~
-~17128~^~268~^620.^0^^~4~^~PIK~^^^^^^^^^^~04/01/2015~
-~17128~^~301~^23.^0^^~1~^~PAK~^^^^^^^^^^~04/01/1989~
-~17128~^~304~^32.^0^^~1~^~PAK~^^^^^^^^^^~05/01/2014~
-~17128~^~305~^202.^0^^~1~^~PAK~^^^^^^^^^^~05/01/2014~
-~17128~^~306~^198.^0^^~1~^~PAK~^^^^^^^^^^~05/01/2014~
-~17128~^~307~^91.^0^^~1~^~PAK~^^^^^^^^^^~05/01/2014~
-~17128~^~318~^0.^0^^~1~^~PAK~^^^^^^^^^^~05/01/2014~
-~17128~^~319~^0.^0^^~4~^~PIK~^^^^^^^^^^~04/01/2015~
-~17128~^~320~^0.^0^^~4~^~NC~^^^^^^^^^^~03/01/2016~
-~17128~^~321~^0.^0^^~4~^~PIK~^^^^^^^^^^~04/01/2015~
-~17128~^~322~^0.^0^^~4~^~PIK~^^^^^^^^^^~04/01/2015~
-~17128~^~324~^60.^0^^~4~^~PIK~^^^^^^^^^^~04/01/2015~
-~17128~^~334~^0.^0^^~4~^~PIK~^^^^^^^^^^~04/01/2015~
-~17128~^~337~^0.^0^^~4~^~PIK~^^^^^^^^^^~04/01/2015~
-~17128~^~338~^0.^0^^~4~^~PIK~^^^^^^^^^^~04/01/2015~
-~17128~^~417~^3.^0^^~4~^~PIK~^^^^^^^^^^~04/01/2015~
-~17128~^~431~^0.^0^^~4~^~PIK~^^^^^^^^^^~04/01/2015~
-~17128~^~432~^3.^0^^~4~^~PIK~^^^^^^^^^^~04/01/2015~
-~17128~^~435~^3.^0^^~4~^~NC~^^^^^^^^^^~05/01/2014~
-~17128~^~601~^62.^0^^~1~^~PAK~^^^^^^^^^^~05/01/2014~
-~17129~^~208~^225.^0^^~4~^~NC~^^^^^^^^^^~04/01/1989~
-~17129~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~12/01/2002~
-~17129~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~12/01/2002~
-~17129~^~268~^941.^0^^~4~^^^^^^^^^^^~02/01/2009~
-~17129~^~301~^38.^0^^~1~^^^^^^^^^^^~04/01/1989~
-~17129~^~304~^26.^0^^~1~^^^^^^^^^^^~04/01/1989~
-~17129~^~305~^244.^0^^~1~^^^^^^^^^^^~04/01/1989~
-~17129~^~306~^297.^0^^~1~^^^^^^^^^^^~04/01/1989~
-~17129~^~307~^98.^0^^~1~^^^^^^^^^^^~04/01/1989~
-~17129~^~318~^0.^0^^~4~^^^^^^^^^^^~04/01/1989~
-~17129~^~319~^0.^0^^~4~^~NR~^^^^^^^^^^~12/01/2002~
-~17129~^~320~^0.^0^^~4~^~NC~^^^^^^^^^^~02/01/2009~
-~17129~^~321~^0.^0^^~7~^~Z~^^^^^^^^^^~12/01/2002~
-~17129~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~12/01/2002~
-~17129~^~324~^0.^0^^~13~^~AI~^^^^^^^^^^~02/01/2009~
-~17129~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~12/01/2002~
-~17129~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~12/01/2002~
-~17129~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~12/01/2002~
-~17129~^~417~^15.^0^^~1~^^^^^^^^^^^~04/01/1989~
-~17129~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~
-~17129~^~432~^15.^0^^~1~^^^^^^^^^^^~02/01/2009~
-~17129~^~435~^15.^0^^~4~^~NC~^^^^^^^^^^~02/01/2009~
-~17129~^~601~^153.^0^^~1~^^^^^^^^^^^~04/01/1989~
-~17130~^~208~^186.^0^^~4~^~NC~^^^^^^^^^^~04/01/1989~
-~17130~^~268~^778.^0^^~4~^^^^^^^^^^^
-~17130~^~301~^28.^0^^~1~^^^^^^^^^^^~04/01/1989~
-~17130~^~304~^24.^0^^~1~^^^^^^^^^^^~04/01/1989~
-~17130~^~305~^212.^0^^~1~^^^^^^^^^^^~04/01/1989~
-~17130~^~306~^306.^0^^~1~^^^^^^^^^^^~04/01/1989~
-~17130~^~307~^100.^0^^~1~^^^^^^^^^^^~04/01/1989~
-~17130~^~318~^0.^0^^~4~^^^^^^^^^^^~04/01/1989~
-~17130~^~319~^0.^0^^~4~^^^^^^^^^^^~06/01/2002~
-~17130~^~320~^0.^0^^~4~^^^^^^^^^^^~06/01/2002~
-~17130~^~417~^11.^0^^~1~^^^^^^^^^^^~04/01/1989~
-~17130~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~
-~17130~^~432~^11.^0^^~1~^^^^^^^^^^^~04/01/1989~
-~17130~^~435~^11.^0^^~4~^~NC~^^^^^^^^^^~01/01/2001~
-~17130~^~601~^117.^0^^~1~^^^^^^^^^^^~04/01/1989~
-~17131~^~208~^110.^0^^~4~^~NC~^^^^^^^^^^~04/01/2014~
-~17131~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2014~
-~17131~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2014~
-~17131~^~268~^459.^0^^~4~^~NC~^^^^^^^^^^~04/01/2014~
-~17131~^~301~^23.^6^^~1~^~A~^^^1^11.^47.^^^^~2~^~04/01/1989~
-~17131~^~304~^33.^6^^~1~^~A~^^^1^28.^41.^^^^~2~^~04/01/2014~
-~17131~^~305~^209.^6^^~1~^~A~^^^1^165.^288.^^^^~2~^~04/01/2014~
-~17131~^~306~^203.^6^^~1~^~A~^^^1^156.^288.^^^^~2~^~04/01/2014~
-~17131~^~307~^92.^6^^~1~^~A~^^^1^86.^102.^^^^~2~^~04/01/2014~
-~17131~^~318~^0.^0^^~1~^~AS~^^^^^^^^^^~04/01/2014~
-~17131~^~319~^0.^0^^~4~^~BFSN~^~17091~^^^^^^^^^~06/01/2002~
-~17131~^~320~^0.^0^^~4~^~NC~^^^^^^^^^^~03/01/2016~
-~17131~^~321~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2014~
-~17131~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2014~
-~17131~^~324~^47.^0^^~4~^~BFFN~^~17107~^^^^^^^^^~04/01/2014~
-~17131~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2014~
-~17131~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2014~
-~17131~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2014~
-~17131~^~417~^3.^0^^~4~^~BFPN~^^^^^^^^^^~04/01/2014~
-~17131~^~431~^0.^0^^~4~^~BFPN~^^^^^^^^^^~04/01/2014~
-~17131~^~432~^3.^0^^~4~^~BFPN~^^^^^^^^^^~04/01/2014~
-~17131~^~435~^3.^0^^~4~^~NC~^^^^^^^^^^~04/01/2014~
-~17131~^~601~^60.^6^^~1~^~A~^^^1^53.^67.^^^^~2~^~04/01/2014~
-~17132~^~208~^198.^0^^~4~^~NC~^^^^^^^^^^~04/01/1989~
-~17132~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~12/01/2002~
-~17132~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~12/01/2002~
-~17132~^~268~^828.^0^^~4~^^^^^^^^^^^~02/01/2009~
-~17132~^~301~^40.^12^3.^~1~^^^^^^^^^^^~04/01/1989~
-~17132~^~304~^28.^12^0.^~1~^^^^^^^^^^^~04/01/1989~
-~17132~^~305~^252.^12^7.^~1~^^^^^^^^^^^~04/01/1989~
-~17132~^~306~^305.^12^4.^~1~^^^^^^^^^^^~04/01/1989~
-~17132~^~307~^101.^12^4.^~1~^^^^^^^^^^^~04/01/1989~
-~17132~^~318~^0.^0^^~4~^^^^^^^^^^^~04/01/1989~
-~17132~^~319~^0.^0^^~4~^~NR~^^^^^^^^^^~12/01/2002~
-~17132~^~320~^0.^0^^~4~^~NC~^^^^^^^^^^~02/01/2009~
-~17132~^~321~^0.^0^^~7~^~Z~^^^^^^^^^^~12/01/2002~
-~17132~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~12/01/2002~
-~17132~^~324~^0.^0^^~13~^~AI~^^^^^^^^^^~02/01/2009~
-~17132~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~12/01/2002~
-~17132~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~12/01/2002~
-~17132~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~12/01/2002~
-~17132~^~417~^15.^12^3.^~1~^^^^^^^^^^^~04/01/1989~
-~17132~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~
-~17132~^~432~^15.^12^3.^~1~^^^^^^^^^^^~02/01/2009~
-~17132~^~435~^15.^0^^~4~^~NC~^^^^^^^^^^~02/01/2009~
-~17132~^~601~^158.^12^13.^~1~^^^^^^^^^^^~04/01/1989~
-~17133~^~208~^171.^0^^~4~^~NC~^^^^^^^^^^~04/01/1989~
-~17133~^~268~^715.^0^^~4~^^^^^^^^^^^
-~17133~^~301~^28.^0^^~1~^^^^^^^^^^^~04/01/1989~
-~17133~^~304~^24.^0^^~1~^^^^^^^^^^^~04/01/1989~
-~17133~^~305~^215.^0^^~1~^^^^^^^^^^^~04/01/1989~
-~17133~^~306~^310.^0^^~1~^^^^^^^^^^^~04/01/1989~
-~17133~^~307~^102.^0^^~1~^^^^^^^^^^^~04/01/1989~
-~17133~^~318~^0.^0^^~4~^^^^^^^^^^^~04/01/1989~
-~17133~^~319~^0.^0^^~4~^^^^^^^^^^^~06/01/2002~
-~17133~^~320~^0.^0^^~4~^^^^^^^^^^^~06/01/2002~
-~17133~^~417~^11.^0^^~1~^^^^^^^^^^^~04/01/1989~
-~17133~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~
-~17133~^~432~^11.^0^^~1~^^^^^^^^^^^~04/01/1989~
-~17133~^~435~^11.^0^^~4~^~NC~^^^^^^^^^^~01/01/2001~
-~17133~^~601~^119.^0^^~1~^^^^^^^^^^^~04/01/1989~
-~17134~^~208~^152.^0^^~4~^~NC~^^^^^^^^^^~04/01/1989~
-~17134~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~12/01/2002~
-~17134~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~12/01/2002~
-~17134~^~268~^636.^0^^~4~^^^^^^^^^^^~02/01/2009~
-~17134~^~301~^11.^0^^~1~^^^^^^^^^^^~04/01/1989~
-~17134~^~304~^24.^0^^~1~^^^^^^^^^^^~04/01/1989~
-~17134~^~305~^209.^0^^~1~^^^^^^^^^^^~04/01/1989~
-~17134~^~306~^329.^0^^~1~^^^^^^^^^^^~04/01/1989~
-~17134~^~307~^76.^0^^~1~^^^^^^^^^^^~04/01/1989~
-~17134~^~318~^0.^0^^~4~^^^^^^^^^^^~04/01/1989~
-~17134~^~319~^0.^0^^~4~^~NR~^^^^^^^^^^~12/01/2002~
-~17134~^~320~^0.^0^^~4~^~NC~^^^^^^^^^^~02/01/2009~
-~17134~^~321~^0.^0^^~7~^~Z~^^^^^^^^^^~12/01/2002~
-~17134~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~12/01/2002~
-~17134~^~324~^0.^0^^~13~^~AI~^^^^^^^^^^~02/01/2009~
-~17134~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~12/01/2002~
-~17134~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~12/01/2002~
-~17134~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~12/01/2002~
-~17134~^~417~^13.^0^^~1~^^^^^^^^^^^~04/01/1989~
-~17134~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~
-~17134~^~432~^13.^0^^~1~^^^^^^^^^^^~02/01/2009~
-~17134~^~435~^13.^0^^~4~^~NC~^^^^^^^^^^~02/01/2009~
-~17134~^~601~^78.^0^^~1~^^^^^^^^^^^~04/01/1989~
-~17135~^~208~^252.^0^^~4~^~NC~^^^^^^^^^^~04/01/1989~
-~17135~^~268~^1054.^0^^~4~^^^^^^^^^^^
-~17135~^~301~^17.^0^^~1~^^^^^^^^^^^~04/01/1989~
-~17135~^~304~^27.^0^^~1~^^^^^^^^^^^~04/01/1989~
-~17135~^~305~^243.^0^^~1~^^^^^^^^^^^~04/01/1989~
-~17135~^~306~^321.^0^^~1~^^^^^^^^^^^~04/01/1989~
-~17135~^~307~^79.^0^^~1~^^^^^^^^^^^~04/01/1989~
-~17135~^~318~^0.^0^^~4~^^^^^^^^^^^~04/01/1989~
-~17135~^~319~^0.^0^^~4~^^^^^^^^^^^~06/01/2002~
-~17135~^~320~^0.^0^^~4~^^^^^^^^^^^~06/01/2002~
-~17135~^~417~^15.^0^^~1~^^^^^^^^^^^~04/01/1989~
-~17135~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~
-~17135~^~432~^15.^0^^~1~^^^^^^^^^^^~04/01/1989~
-~17135~^~435~^15.^0^^~4~^~NC~^^^^^^^^^^~01/01/2001~
-~17135~^~601~^108.^0^^~1~^^^^^^^^^^^~04/01/1989~
-~17136~^~208~^202.^0^^~4~^~NC~^^^^^^^^^^~04/01/1989~
-~17136~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~12/01/2002~
-~17136~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~12/01/2002~
-~17136~^~268~^845.^0^^~4~^^^^^^^^^^^~02/01/2009~
-~17136~^~301~^13.^0^^~1~^^^^^^^^^^^~04/01/1989~
-~17136~^~304~^26.^0^^~1~^^^^^^^^^^^~04/01/1989~
-~17136~^~305~^223.^0^^~1~^^^^^^^^^^^~04/01/1989~
-~17136~^~306~^351.^0^^~1~^^^^^^^^^^^~04/01/1989~
-~17136~^~307~^83.^0^^~1~^^^^^^^^^^^~04/01/1989~
-~17136~^~318~^0.^0^^~4~^^^^^^^^^^^~04/01/1989~
-~17136~^~319~^0.^0^^~4~^~NR~^^^^^^^^^^~12/01/2002~
-~17136~^~320~^0.^0^^~4~^~NC~^^^^^^^^^^~02/01/2009~
-~17136~^~321~^0.^0^^~7~^~Z~^^^^^^^^^^~12/01/2002~
-~17136~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~12/01/2002~
-~17136~^~324~^0.^0^^~13~^~AI~^^^^^^^^^^~02/01/2009~
-~17136~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~12/01/2002~
-~17136~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~12/01/2002~
-~17136~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~12/01/2002~
-~17136~^~417~^15.^0^^~1~^^^^^^^^^^^~04/01/1989~
-~17136~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~
-~17136~^~432~^15.^0^^~1~^^^^^^^^^^^~02/01/2009~
-~17136~^~435~^15.^0^^~4~^~NC~^^^^^^^^^^~02/01/2009~
-~17136~^~601~^102.^0^^~1~^^^^^^^^^^^~04/01/1989~
-~17137~^~208~^110.^0^^~4~^~NC~^^^^^^^^^^~04/01/1989~
-~17137~^~268~^460.^0^^~4~^^^^^^^^^^^
-~17137~^~301~^11.^12^1.^~1~^^^^^^^^^^^~04/01/1989~
-~17137~^~304~^26.^12^0.^~1~^^^^^^^^^^^~04/01/1989~
-~17137~^~305~^220.^12^5.^~1~^^^^^^^^^^^~04/01/1989~
-~17137~^~306~^348.^12^4.^~1~^^^^^^^^^^^~04/01/1989~
-~17137~^~307~^80.^12^4.^~1~^^^^^^^^^^^~04/01/1989~
-~17137~^~318~^0.^0^^~4~^^^^^^^^^^^~04/01/1989~
-~17137~^~319~^0.^0^^~4~^^^^^^^^^^^~06/01/2002~
-~17137~^~320~^0.^0^^~4~^^^^^^^^^^^~06/01/2002~
-~17137~^~417~^14.^12^2.^~1~^^^^^^^^^^^~04/01/1989~
-~17137~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~
-~17137~^~432~^14.^12^2.^~1~^^^^^^^^^^^~04/01/1989~
-~17137~^~435~^14.^0^^~4~^~NC~^^^^^^^^^^~01/01/2001~
-~17137~^~601~^79.^12^4.^~1~^^^^^^^^^^^~04/01/1989~
-~17138~^~208~^204.^0^^~4~^~NC~^^^^^^^^^^~04/01/1989~
-~17138~^~268~^854.^0^^~4~^^^^^^^^^^^
-~17138~^~301~^19.^11^2.^~1~^^^^^^^^^^^~04/01/1989~
-~17138~^~304~^29.^11^0.^~1~^^^^^^^^^^^~04/01/1989~
-~17138~^~305~^259.^11^7.^~1~^^^^^^^^^^^~04/01/1989~
-~17138~^~306~^339.^11^6.^~1~^^^^^^^^^^^~04/01/1989~
-~17138~^~307~^81.^11^4.^~1~^^^^^^^^^^^~04/01/1989~
-~17138~^~318~^0.^0^^~4~^^^^^^^^^^^~04/01/1989~
-~17138~^~319~^0.^0^^~4~^^^^^^^^^^^~06/01/2002~
-~17138~^~320~^0.^0^^~4~^^^^^^^^^^^~06/01/2002~
-~17138~^~417~^16.^11^2.^~1~^^^^^^^^^^^~04/01/1989~
-~17138~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~
-~17138~^~432~^16.^11^2.^~1~^^^^^^^^^^^~04/01/1989~
-~17138~^~435~^16.^0^^~4~^~NC~^^^^^^^^^^~01/01/2001~
-~17138~^~601~^113.^18^9.^~1~^^^^^^^^^^^~04/01/1989~
-~17139~^~208~^168.^0^^~4~^~NC~^^^^^^^^^^~04/01/1989~
-~17139~^~268~^703.^0^^~4~^^^^^^^^^^^
-~17139~^~301~^14.^0^^~1~^^^^^^^^^^^~04/01/1989~
-~17139~^~304~^27.^0^^~1~^^^^^^^^^^^~04/01/1989~
-~17139~^~305~^231.^0^^~1~^^^^^^^^^^^~04/01/1989~
-~17139~^~306~^365.^0^^~1~^^^^^^^^^^^~04/01/1989~
-~17139~^~307~^85.^0^^~1~^^^^^^^^^^^~04/01/1989~
-~17139~^~318~^0.^0^^~4~^^^^^^^^^^^~04/01/1989~
-~17139~^~319~^0.^0^^~4~^^^^^^^^^^^~06/01/2002~
-~17139~^~320~^0.^0^^~4~^^^^^^^^^^^~06/01/2002~
-~17139~^~417~^16.^0^^~1~^^^^^^^^^^^~04/01/1989~
-~17139~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~
-~17139~^~432~^16.^0^^~1~^^^^^^^^^^^~04/01/1989~
-~17139~^~435~^16.^0^^~4~^~NC~^^^^^^^^^^~01/01/2001~
-~17139~^~601~^104.^0^^~1~^^^^^^^^^^^~04/01/1989~
-~17140~^~208~^109.^0^^~4~^~NC~^^^^^^^^^^~04/01/1989~
-~17140~^~268~^456.^0^^~4~^^^^^^^^^^^
-~17140~^~301~^17.^12^1.^~1~^^^^^^^^^^^~04/01/1989~
-~17140~^~304~^25.^12^0.^~1~^^^^^^^^^^^~04/01/1989~
-~17140~^~305~^213.^12^4.^~1~^^^^^^^^^^^~04/01/1989~
-~17140~^~306~^331.^12^6.^~1~^^^^^^^^^^^~04/01/1989~
-~17140~^~307~^83.^12^2.^~1~^^^^^^^^^^^~04/01/1989~
-~17140~^~318~^0.^0^^~4~^^^^^^^^^^^~04/01/1989~
-~17140~^~319~^0.^0^^~4~^^^^^^^^^^^~06/01/2002~
-~17140~^~320~^0.^0^^~4~^^^^^^^^^^^~06/01/2002~
-~17140~^~417~^13.^12^2.^~1~^^^^^^^^^^^~04/01/1989~
-~17140~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~
-~17140~^~432~^13.^12^2.^~1~^^^^^^^^^^^~04/01/1989~
-~17140~^~435~^13.^0^^~4~^~NC~^^^^^^^^^^~01/01/2001~
-~17140~^~601~^84.^12^4.^~1~^^^^^^^^^^^~04/01/1989~
-~17141~^~208~^188.^0^^~4~^~NC~^^^^^^^^^^~04/01/1989~
-~17141~^~268~^787.^0^^~4~^^^^^^^^^^^
-~17141~^~301~^29.^0^^~1~^^^^^^^^^^^~04/01/1989~
-~17141~^~304~^28.^0^^~1~^^^^^^^^^^^~04/01/1989~
-~17141~^~305~^239.^0^^~1~^^^^^^^^^^^~04/01/1989~
-~17141~^~306~^342.^0^^~1~^^^^^^^^^^^~04/01/1989~
-~17141~^~307~^93.^0^^~1~^^^^^^^^^^^~04/01/1989~
-~17141~^~318~^0.^0^^~4~^^^^^^^^^^^~04/01/1989~
-~17141~^~319~^0.^0^^~4~^^^^^^^^^^^~06/01/2002~
-~17141~^~320~^0.^0^^~4~^^^^^^^^^^^~06/01/2002~
-~17141~^~417~^16.^0^^~1~^^^^^^^^^^^~04/01/1989~
-~17141~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~
-~17141~^~432~^16.^0^^~1~^^^^^^^^^^^~04/01/1989~
-~17141~^~435~^16.^0^^~4~^~NC~^^^^^^^^^^~01/01/2001~
-~17141~^~601~^145.^0^^~1~^^^^^^^^^^^~04/01/1989~
-~17142~^~208~^197.^0^^~4~^~NC~^^^^^^^^^^~04/01/2014~
-~17142~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2014~
-~17142~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2014~
-~17142~^~268~^825.^0^^~4~^~NC~^^^^^^^^^^~04/01/2014~
-~17142~^~301~^12.^6^^~1~^~A~^^^1^6.^20.^^^^~2~^~04/01/2014~
-~17142~^~304~^31.^6^^~1~^~A~^^^1^23.^38.^^^^~2~^~04/01/2014~
-~17142~^~305~^197.^6^^~1~^~A~^^^1^133.^258.^^^^~2~^~04/01/2014~
-~17142~^~306~^198.^6^^~1~^~A~^^^1^135.^264.^^^^~2~^~04/01/2014~
-~17142~^~307~^103.^6^^~1~^~A~^^^1^73.^120.^^^^~2~^~04/01/2014~
-~17142~^~318~^0.^0^^~1~^~AS~^^^^^^^^^^~04/01/2014~
-~17142~^~319~^0.^0^^~4~^~BFSN~^~17091~^^^^^^^^^~04/01/2014~
-~17142~^~320~^0.^0^^~1~^~AS~^^^^^^^^^^~04/01/2014~
-~17142~^~321~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2014~
-~17142~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2014~
-~17142~^~324~^51.^1^^~1~^~A~^^^^^^^^^^~04/01/2014~
-~17142~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2014~
-~17142~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2014~
-~17142~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2014~
-~17142~^~417~^3.^0^^~4~^~BFPN~^^^^^^^^^^~04/01/2014~
-~17142~^~431~^0.^0^^~4~^~BFPN~^^^^^^^^^^~04/01/2014~
-~17142~^~432~^3.^0^^~4~^~BFPN~^^^^^^^^^^~04/01/2014~
-~17142~^~435~^3.^0^^~4~^~NC~^^^^^^^^^^~04/01/2014~
-~17142~^~601~^49.^6^^~1~^~A~^^^1^44.^53.^^^^~2~^~04/01/2014~
-~17143~^~208~^172.^0^^~4~^~NC~^^^^^^^^^^~04/01/1989~
-~17143~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~12/01/2002~
-~17143~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~12/01/2002~
-~17143~^~268~^720.^0^^~4~^^^^^^^^^^^~02/01/2009~
-~17143~^~301~^17.^0^^~1~^^^^^^^^^^^~04/01/1989~
-~17143~^~304~^24.^0^^~1~^^^^^^^^^^^~04/01/1989~
-~17143~^~305~^217.^0^^~1~^^^^^^^^^^^~04/01/1989~
-~17143~^~306~^337.^0^^~1~^^^^^^^^^^^~04/01/1989~
-~17143~^~307~^83.^0^^~1~^^^^^^^^^^^~04/01/1989~
-~17143~^~318~^0.^0^^~7~^^^^^^^^^^^
-~17143~^~319~^0.^0^^~4~^~NR~^^^^^^^^^^~12/01/2002~
-~17143~^~320~^0.^0^^~4~^~NC~^^^^^^^^^^~02/01/2009~
-~17143~^~321~^0.^0^^~7~^~Z~^^^^^^^^^^~12/01/2002~
-~17143~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~12/01/2002~
-~17143~^~324~^0.^0^^~13~^~AI~^^^^^^^^^^~02/01/2009~
-~17143~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~12/01/2002~
-~17143~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~12/01/2002~
-~17143~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~12/01/2002~
-~17143~^~417~^11.^0^^~1~^^^^^^^^^^^~04/01/1989~
-~17143~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~
-~17143~^~432~^11.^0^^~1~^^^^^^^^^^^~02/01/2009~
-~17143~^~435~^11.^0^^~4~^~NC~^^^^^^^^^^~02/01/2009~
-~17143~^~601~^103.^0^^~1~^^^^^^^^^^^~04/01/1989~
-~17144~^~208~^114.^0^^~4~^~NC~^^^^^^^^^^~04/01/1989~
-~17144~^~268~^477.^0^^~4~^^^^^^^^^^^
-~17144~^~301~^3.^22^0.^~1~^^^^^^^^^^^~04/01/1989~
-~17144~^~304~^27.^22^0.^~1~^^^^^^^^^^^~04/01/1989~
-~17144~^~305~^188.^22^1.^~1~^^^^^^^^^^^~04/01/1989~
-~17144~^~306~^353.^22^3.^~1~^^^^^^^^^^^~04/01/1989~
-~17144~^~307~^51.^22^1.^~1~^^^^^^^^^^^~04/01/1989~
-~17144~^~318~^0.^0^^~4~^^^^^^^^^^^~04/01/1989~
-~17144~^~319~^0.^0^^~4~^^^^^^^^^^^~06/01/2002~
-~17144~^~320~^0.^0^^~4~^^^^^^^^^^^~06/01/2002~
-~17144~^~601~^95.^36^6.^~1~^^^^^^^^^^^~04/01/1989~
-~17145~^~208~^150.^0^^~4~^~NC~^^^^^^^^^^~04/01/1989~
-~17145~^~268~^628.^0^^~4~^^^^^^^^^^^
-~17145~^~301~^4.^0^^~1~^^^^^^^^^^^~04/01/1989~
-~17145~^~304~^28.^0^^~1~^^^^^^^^^^^~04/01/1989~
-~17145~^~305~^210.^0^^~1~^^^^^^^^^^^~04/01/1989~
-~17145~^~306~^372.^0^^~1~^^^^^^^^^^^~04/01/1989~
-~17145~^~307~^54.^0^^~1~^^^^^^^^^^^~04/01/1989~
-~17145~^~318~^0.^0^^~4~^^^^^^^^^^^~04/01/1989~
-~17145~^~417~^9.^0^^~4~^~BFPN~^~17340~^^^^^^^^^~08/01/2002~
-~17145~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~08/01/2002~
-~17145~^~432~^9.^0^^~4~^~BFPN~^^^^^^^^^^~08/01/2002~
-~17145~^~435~^9.^0^^~4~^~NC~^^^^^^^^^^~08/01/2002~
-~17145~^~601~^126.^0^^~1~^^^^^^^^^^^~04/01/1989~
-~17146~^~208~^161.^0^^~4~^~NC~^^^^^^^^^^~04/01/1989~
-~17146~^~268~^674.^0^^~4~^^^^^^^^^^^
-~17146~^~301~^3.^1^^~1~^^^^^^^^^^^~04/01/1989~
-~17146~^~305~^151.^2^^~1~^^^^^^^^^^^~04/01/1989~
-~17146~^~318~^0.^0^^~4~^^^^^^^^^^^~04/01/1989~
-~17146~^~319~^0.^0^^~4~^^^^^^^^^^^~06/01/2002~
-~17146~^~320~^0.^0^^~4~^^^^^^^^^^^~06/01/2002~
-~17147~^~208~^259.^0^^~4~^~NC~^^^^^^^^^^~04/01/1989~
-~17147~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2003~
-~17147~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2003~
-~17147~^~268~^1084.^0^^~4~^^^^^^^^^^^~02/01/2009~
-~17147~^~301~^5.^0^^~1~^^^^^^^^^^^~04/01/1989~
-~17147~^~304~^23.^0^^~4~^^^^^^^^^^^~11/01/1993~
-~17147~^~305~^170.^0^^~1~^^^^^^^^^^^~04/01/1989~
-~17147~^~306~^263.^0^^~4~^^^^^^^^^^^~11/01/1993~
-~17147~^~307~^71.^0^^~4~^^^^^^^^^^^~11/01/1993~
-~17147~^~318~^0.^0^^~4~^^^^^^^^^^^~04/01/1989~
-~17147~^~319~^0.^0^^~4~^~NR~^^^^^^^^^^~01/01/2003~
-~17147~^~320~^0.^0^^~4~^~NC~^^^^^^^^^^~02/01/2009~
-~17147~^~321~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2003~
-~17147~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2003~
-~17147~^~324~^0.^1^^~13~^~AI~^^^^^^^^^^~02/01/2009~
-~17147~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2003~
-~17147~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2003~
-~17147~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2003~
-~17147~^~417~^6.^0^^~4~^^^^^^^^^^^~11/01/1993~
-~17147~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~
-~17147~^~432~^6.^0^^~4~^^^^^^^^^^^~02/01/2009~
-~17147~^~435~^6.^0^^~4~^~NC~^^^^^^^^^^~02/01/2009~
-~17147~^~601~^98.^0^^~4~^^^^^^^^^^^~11/01/1993~
-~17148~^~208~^179.^0^^~4~^~NC~^^^^^^^^^^~02/01/2009~
-~17148~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2008~
-~17148~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2008~
-~17148~^~268~^751.^0^^~4~^~NC~^^^^^^^^^^~02/01/2009~
-~17148~^~301~^14.^0^^~4~^~BFNN~^~17331~^^^^^^^^^~03/01/2008~
-~17148~^~304~^23.^0^^~4~^~BFNN~^~17331~^^^^^^^^^~03/01/2008~
-~17148~^~305~^213.^0^^~4~^~BFNN~^~17331~^^^^^^^^^~03/01/2008~
-~17148~^~306~^353.^0^^~4~^~BFNN~^~17331~^^^^^^^^^~03/01/2008~
-~17148~^~307~^76.^0^^~4~^~BFNN~^~17331~^^^^^^^^^~03/01/2008~
-~17148~^~318~^0.^0^^~1~^~AS~^^^^^^^^^^~03/01/2008~
-~17148~^~319~^0.^0^^~4~^~BFSN~^~17331~^^^^^^^^^~03/01/2008~
-~17148~^~320~^0.^0^^~4~^~BFSN~^~17331~^^^^^^^^^~03/01/2008~
-~17148~^~321~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2008~
-~17148~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2008~
-~17148~^~324~^0.^2^^~13~^~AI~^^^^^^^^^^~02/01/2009~
-~17148~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2008~
-~17148~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2008~
-~17148~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2008~
-~17148~^~417~^16.^0^^~4~^~BFPN~^~17331~^^^^^^^^^~03/01/2008~
-~17148~^~431~^0.^0^^~4~^~BFPN~^~17331~^^^^^^^^^~03/01/2008~
-~17148~^~432~^16.^0^^~4~^~BFPN~^~17331~^^^^^^^^^~03/01/2008~
-~17148~^~435~^16.^0^^~4~^~NC~^~17331~^^^^^^^^^~02/01/2009~
-~17148~^~601~^71.^0^^~4~^~BFSN~^~17331~^^^^^^^^^~03/01/2008~
-~17149~^~208~^146.^0^^~4~^~NC~^^^^^^^^^^~02/01/2009~
-~17149~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2008~
-~17149~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2008~
-~17149~^~268~^611.^0^^~4~^~NC~^^^^^^^^^^~02/01/2009~
-~17149~^~301~^11.^0^^~4~^~BFNN~^~17330~^^^^^^^^^~03/01/2008~
-~17149~^~304~^21.^0^^~4~^~BFNN~^~17330~^^^^^^^^^~03/01/2008~
-~17149~^~305~^194.^0^^~4~^~BFNN~^~17330~^^^^^^^^^~03/01/2008~
-~17149~^~306~^328.^0^^~4~^~BFNN~^~17330~^^^^^^^^^~03/01/2008~
-~17149~^~307~^70.^0^^~4~^~BFNN~^~17330~^^^^^^^^^~03/01/2008~
-~17149~^~318~^0.^0^^~1~^~AS~^^^^^^^^^^~03/01/2008~
-~17149~^~319~^0.^0^^~4~^~BFSN~^~17330~^^^^^^^^^~03/01/2008~
-~17149~^~320~^0.^0^^~1~^~AS~^^^^^^^^^^~03/01/2008~
-~17149~^~321~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2008~
-~17149~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2008~
-~17149~^~324~^0.^2^^~13~^~AI~^^^^^^^^^^~02/01/2009~
-~17149~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2008~
-~17149~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2008~
-~17149~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2008~
-~17149~^~417~^12.^0^^~4~^~BFPN~^~17330~^^^^^^^^^~03/01/2008~
-~17149~^~431~^0.^0^^~4~^~BFPN~^~17330~^^^^^^^^^~03/01/2008~
-~17149~^~432~^12.^0^^~4~^~BFPN~^~17330~^^^^^^^^^~03/01/2008~
-~17149~^~435~^12.^0^^~4~^~NC~^~17330~^^^^^^^^^~02/01/2009~
-~17149~^~601~^55.^0^^~4~^~BFSN~^~17330~^^^^^^^^^~03/01/2008~
-~17150~^~208~^146.^0^^~4~^~NC~^^^^^^^^^^~04/01/1989~
-~17150~^~268~^611.^0^^~4~^^^^^^^^^^^
-~17150~^~301~^15.^1^^~1~^^^^^^^^^^^~04/01/1989~
-~17150~^~304~^25.^1^^~1~^^^^^^^^^^^~04/01/1989~
-~17150~^~305~^237.^3^26.^~1~^^^^^^^^^^^~04/01/1989~
-~17150~^~306~^348.^1^^~1~^^^^^^^^^^^~04/01/1989~
-~17150~^~307~^51.^1^^~1~^^^^^^^^^^^~04/01/1989~
-~17150~^~318~^0.^0^^~4~^^^^^^^^^^^~04/01/1989~
-~17150~^~319~^0.^0^^~4~^^^^^^^^^^^~06/01/2002~
-~17150~^~320~^0.^0^^~4~^^^^^^^^^^^~06/01/2002~
-~17151~^~208~^212.^0^^~4~^~NC~^^^^^^^^^^~04/01/1989~
-~17151~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2003~
-~17151~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2003~
-~17151~^~268~^887.^0^^~4~^^^^^^^^^^^~02/01/2009~
-~17151~^~301~^22.^0^^~1~^^^^^^^^^^^~04/01/1989~
-~17151~^~304~^29.^0^^~1~^^^^^^^^^^^~04/01/1989~
-~17151~^~305~^292.^0^^~1~^^^^^^^^^^^~04/01/1989~
-~17151~^~306~^403.^0^^~1~^^^^^^^^^^^~04/01/1989~
-~17151~^~307~^59.^0^^~1~^^^^^^^^^^^~04/01/1989~
-~17151~^~318~^0.^0^^~4~^^^^^^^^^^^~04/01/1989~
-~17151~^~319~^0.^0^^~4~^~NR~^^^^^^^^^^~01/01/2003~
-~17151~^~320~^0.^0^^~4~^~NC~^^^^^^^^^^~02/01/2009~
-~17151~^~321~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2003~
-~17151~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2003~
-~17151~^~324~^0.^1^^~13~^~AI~^^^^^^^^^^~02/01/2009~
-~17151~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2003~
-~17151~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2003~
-~17151~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2003~
-~17151~^~417~^11.^0^^~1~^^^^^^^^^^^~04/01/1989~
-~17151~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~
-~17151~^~432~^11.^0^^~1~^^^^^^^^^^^~02/01/2009~
-~17151~^~435~^11.^0^^~4~^~NC~^^^^^^^^^^~02/01/2009~
-~17151~^~601~^117.^0^^~4~^^^^^^^^^^^~02/01/1995~
-~17152~^~208~^143.^0^^~4~^~NC~^^^^^^^^^^~04/01/1989~
-~17152~^~268~^598.^0^^~4~^^^^^^^^^^^
-~17152~^~301~^18.^4^5.^~1~^^^^^^^^^^^~04/01/1989~
-~17152~^~305~^224.^5^15.^~1~^^^^^^^^^^^~04/01/1989~
-~17152~^~306~^436.^5^7.^~1~^^^^^^^^^^^~04/01/1989~
-~17152~^~307~^78.^5^5.^~1~^^^^^^^^^^^~04/01/1989~
-~17152~^~318~^0.^0^^~4~^^^^^^^^^^^~04/01/1989~
-~17152~^~319~^0.^0^^~4~^^^^^^^^^^^~06/01/2002~
-~17152~^~320~^0.^0^^~4~^^^^^^^^^^^~06/01/2002~
-~17152~^~417~^15.^3^3.^~1~^^^^^^^^^^^~04/01/1989~
-~17152~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~
-~17152~^~432~^15.^3^3.^~1~^^^^^^^^^^^~04/01/1989~
-~17152~^~435~^15.^0^^~4~^~NC~^^^^^^^^^^~01/01/2001~
-~17152~^~601~^44.^7^5.^~1~^^^^^^^^^^^~04/01/1989~
-~17153~^~208~^188.^0^^~4~^~NC~^^^^^^^^^^~04/01/1989~
-~17153~^~268~^787.^0^^~4~^^^^^^^^^^^
-~17153~^~301~^24.^0^^~1~^^^^^^^^^^^~04/01/1989~
-~17153~^~305~^250.^0^^~1~^^^^^^^^^^^~04/01/1989~
-~17153~^~306~^459.^0^^~1~^^^^^^^^^^^~04/01/1989~
-~17153~^~307~^82.^0^^~1~^^^^^^^^^^^~04/01/1989~
-~17153~^~318~^0.^0^^~4~^^^^^^^^^^^~04/01/1989~
-~17153~^~319~^0.^0^^~4~^^^^^^^^^^^~06/01/2002~
-~17153~^~320~^0.^0^^~4~^^^^^^^^^^^~06/01/2002~
-~17153~^~417~^18.^0^^~1~^^^^^^^^^^^~04/01/1989~
-~17153~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~
-~17153~^~432~^18.^0^^~1~^^^^^^^^^^^~04/01/1989~
-~17153~^~435~^18.^0^^~4~^~NC~^^^^^^^^^^~01/01/2001~
-~17153~^~601~^58.^0^^~1~^^^^^^^^^^^~04/01/1989~
-~17154~^~208~^509.^0^^~4~^~NC~^^^^^^^^^^~05/01/2012~
-~17154~^~268~^2130.^0^^~4~^~NC~^^^^^^^^^^~05/01/2012~
-~17154~^~301~^2.^1^^~1~^~A~^^^^^^^^^^~05/01/2012~
-~17154~^~307~^44.^1^^~1~^~A~^^^^^^^^^^~05/01/2012~
-~17154~^~318~^141.^0^^~1~^~AS~^^^^^^^^^^~05/01/2012~
-~17154~^~319~^42.^1^^~1~^~A~^^^^^^^^^^~05/01/2012~
-~17154~^~320~^42.^0^^~1~^~AS~^^^^^^^^^^~05/01/2012~
-~17154~^~601~^66.^1^^~1~^~A~^^^^^^^^^^~05/01/2012~
-~17155~^~208~^201.^0^^~4~^~PIK~^^^^^^^^^^~05/01/2012~
-~17155~^~262~^0.^0^^~4~^~PIK~^^^^^^^^^^~05/01/2012~
-~17155~^~263~^0.^0^^~4~^~PIK~^^^^^^^^^^~05/01/2012~
-~17155~^~268~^841.^0^^~4~^~PIK~^^^^^^^^^^~05/01/2012~
-~17155~^~301~^9.^0^^~1~^~PAK~^^^^^^^^^^~05/01/2012~
-~17155~^~307~^76.^0^^~1~^~PAK~^^^^^^^^^^~05/01/2012~
-~17155~^~318~^25.^0^^~4~^~NC~^^^^^^^^^^~03/01/2016~
-~17155~^~319~^8.^0^^~1~^~PAK~^^^^^^^^^^~05/01/2012~
-~17155~^~320~^8.^0^^~4~^~NC~^^^^^^^^^^~03/01/2016~
-~17155~^~321~^0.^0^^~4~^~PIK~^^^^^^^^^^~05/01/2012~
-~17155~^~322~^0.^0^^~4~^~PIK~^^^^^^^^^^~05/01/2012~
-~17155~^~334~^0.^0^^~4~^~PIK~^^^^^^^^^^~05/01/2012~
-~17155~^~337~^0.^0^^~4~^~PIK~^^^^^^^^^^~05/01/2012~
-~17155~^~338~^0.^0^^~4~^~PIK~^^^^^^^^^^~05/01/2012~
-~17155~^~601~^60.^0^^~1~^~PAK~^^^^^^^^^^~05/01/2012~
-~17156~^~208~^109.^0^^~4~^~NC~^^^^^^^^^^~04/01/1989~
-~17156~^~268~^456.^0^^~4~^^^^^^^^^^^
-~17156~^~301~^6.^23^0.^~1~^^^^^^^^^^^~04/01/1989~
-~17156~^~304~^25.^30^0.^~1~^^^^^^^^^^^~04/01/1989~
-~17156~^~305~^187.^30^2.^~1~^^^^^^^^^^^~04/01/1989~
-~17156~^~306~^343.^30^5.^~1~^^^^^^^^^^^~04/01/1989~
-~17156~^~307~^54.^30^0.^~1~^^^^^^^^^^^~04/01/1989~
-~17156~^~318~^0.^0^^~4~^^^^^^^^^^^~04/01/1989~
-~17156~^~319~^0.^0^^~4~^^^^^^^^^^^~06/01/2002~
-~17156~^~320~^0.^0^^~4~^^^^^^^^^^^~06/01/2002~
-~17156~^~601~^62.^50^2.^~1~^^^^^^^^^^^~04/01/1989~
-~17157~^~208~^143.^0^^~4~^~NC~^^^^^^^^^^~04/01/1989~
-~17157~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2002~
-~17157~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2002~
-~17157~^~268~^598.^0^^~4~^^^^^^^^^^^~02/01/2009~
-~17157~^~301~^8.^0^^~1~^^^^^^^^^^^~04/01/1989~
-~17157~^~304~^26.^0^^~1~^^^^^^^^^^^~04/01/1989~
-~17157~^~305~^209.^0^^~1~^^^^^^^^^^^~04/01/1989~
-~17157~^~306~^361.^0^^~1~^^^^^^^^^^^~04/01/1989~
-~17157~^~307~^57.^0^^~1~^^^^^^^^^^^~04/01/1989~
-~17157~^~318~^0.^0^^~4~^^^^^^^^^^^~04/01/1989~
-~17157~^~319~^0.^0^^~4~^~NR~^^^^^^^^^^~01/01/2003~
-~17157~^~320~^0.^0^^~4~^~NC~^^^^^^^^^^~02/01/2009~
-~17157~^~321~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2003~
-~17157~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2003~
-~17157~^~324~^0.^2^^~13~^~AI~^^^^^^^^^^~02/01/2009~
-~17157~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2003~
-~17157~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2003~
-~17157~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2003~
-~17157~^~417~^8.^0^^~4~^^^^^^^^^^^~12/01/1994~
-~17157~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~
-~17157~^~432~^8.^0^^~4~^^^^^^^^^^^~02/01/2009~
-~17157~^~435~^8.^0^^~4~^~NC~^^^^^^^^^^~02/01/2009~
-~17157~^~601~^82.^0^^~1~^^^^^^^^^^^~04/01/1989~
-~17158~^~208~^122.^0^^~4~^~NC~^^^^^^^^^^~04/01/1989~
-~17158~^~268~^510.^0^^~4~^^^^^^^^^^^
-~17158~^~301~^12.^1^^~1~^^^^^^^^^^^~04/01/1989~
-~17158~^~305~^120.^1^^~1~^^^^^^^^^^^~04/01/1989~
-~17158~^~318~^0.^0^^~4~^^^^^^^^^^^~04/01/1989~
-~17158~^~319~^0.^0^^~4~^^^^^^^^^^^~06/01/2002~
-~17158~^~320~^0.^0^^~4~^^^^^^^^^^^~06/01/2002~
-~17159~^~208~^160.^0^^~4~^~NC~^^^^^^^^^^~04/01/1989~
-~17159~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2003~
-~17159~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2003~
-~17159~^~268~^669.^0^^~4~^^^^^^^^^^^~02/01/2009~
-~17159~^~301~^16.^0^^~1~^^^^^^^^^^^~04/01/1989~
-~17159~^~304~^27.^0^^~4~^^^^^^^^^^^~07/01/1994~
-~17159~^~305~^134.^0^^~1~^^^^^^^^^^^~04/01/1989~
-~17159~^~306~^396.^0^^~4~^^^^^^^^^^^~07/01/1994~
-~17159~^~307~^60.^0^^~4~^^^^^^^^^^^~07/01/1994~
-~17159~^~318~^0.^0^^~4~^^^^^^^^^^^~04/01/1989~
-~17159~^~319~^0.^0^^~4~^~NR~^^^^^^^^^^~01/01/2003~
-~17159~^~320~^0.^0^^~4~^~NC~^^^^^^^^^^~02/01/2009~
-~17159~^~321~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2003~
-~17159~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2003~
-~17159~^~324~^0.^1^^~13~^~AI~^^^^^^^^^^~02/01/2009~
-~17159~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2003~
-~17159~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2003~
-~17159~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2003~
-~17159~^~417~^6.^0^^~4~^^^^^^^^^^^~07/01/1994~
-~17159~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~
-~17159~^~432~^6.^0^^~4~^^^^^^^^^^^~02/01/2009~
-~17159~^~435~^6.^0^^~4~^~NC~^^^^^^^^^^~02/01/2009~
-~17159~^~601~^77.^0^^~4~^^^^^^^^^^^~07/01/1994~
-~17160~^~208~^99.^0^^~4~^~NC~^^^^^^^^^^~04/01/1989~
-~17160~^~268~^414.^0^^~4~^^^^^^^^^^^
-~17160~^~301~^12.^147^0.^~1~^^^^^^^^^^^~04/01/1989~
-~17160~^~304~^32.^143^0.^~1~^^^^^^^^^^^~04/01/1989~
-~17160~^~305~^197.^137^0.^~1~^^^^^^^^^^^~04/01/1989~
-~17160~^~306~^297.^128^2.^~1~^^^^^^^^^^^~04/01/1989~
-~17160~^~307~^53.^128^0.^~1~^^^^^^^^^^^~04/01/1989~
-~17160~^~318~^0.^0^^~4~^^^^^^^^^^^~04/01/1989~
-~17160~^~319~^0.^0^^~4~^^^^^^^^^^^~06/01/2002~
-~17160~^~320~^0.^0^^~4~^^^^^^^^^^^~06/01/2002~
-~17160~^~417~^8.^1^^~1~^^^^^^^^^^^~04/01/1989~
-~17160~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~
-~17160~^~432~^8.^1^^~1~^^^^^^^^^^^~04/01/1989~
-~17160~^~435~^8.^0^^~4~^~NC~^^^^^^^^^^~01/01/2001~
-~17160~^~601~^46.^5^3.^~1~^^^^^^^^^^^~04/01/1989~
-~17161~^~208~^131.^0^^~4~^~NC~^^^^^^^^^^~04/01/1989~
-~17161~^~268~^548.^0^^~4~^^^^^^^^^^^
-~17161~^~301~^15.^0^^~1~^^^^^^^^^^^~04/01/1989~
-~17161~^~304~^33.^0^^~1~^^^^^^^^^^^~04/01/1989~
-~17161~^~305~^220.^0^^~1~^^^^^^^^^^^~04/01/1989~
-~17161~^~306~^313.^0^^~1~^^^^^^^^^^^~04/01/1989~
-~17161~^~307~^56.^0^^~1~^^^^^^^^^^^~04/01/1989~
-~17161~^~318~^0.^0^^~4~^^^^^^^^^^^~04/01/1989~
-~17161~^~319~^0.^0^^~4~^^^^^^^^^^^~06/01/2002~
-~17161~^~320~^0.^0^^~4~^^^^^^^^^^^~06/01/2002~
-~17161~^~417~^9.^0^^~1~^^^^^^^^^^^~04/01/1989~
-~17161~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~
-~17161~^~432~^9.^0^^~1~^^^^^^^^^^^~04/01/1989~
-~17161~^~435~^9.^0^^~4~^~NC~^^^^^^^^^^~01/01/2001~
-~17161~^~601~^61.^0^^~1~^^^^^^^^^^^~04/01/1989~
-~17162~^~208~^127.^0^^~4~^~NC~^^^^^^^^^^~04/01/1989~
-~17162~^~268~^531.^0^^~4~^^^^^^^^^^^
-~17162~^~301~^17.^11^2.^~1~^^^^^^^^^^^~04/01/1989~
-~17162~^~304~^26.^9^1.^~1~^^^^^^^^^^^~04/01/1989~
-~17162~^~305~^208.^8^21.^~1~^^^^^^^^^^^~04/01/1989~
-~17162~^~306~^295.^10^22.^~1~^^^^^^^^^^^~04/01/1989~
-~17162~^~307~^57.^9^2.^~1~^^^^^^^^^^^~04/01/1989~
-~17162~^~318~^0.^0^^~4~^^^^^^^^^^^~04/01/1989~
-~17162~^~319~^0.^0^^~4~^^^^^^^^^^^~06/01/2002~
-~17162~^~320~^0.^0^^~4~^^^^^^^^^^^~06/01/2002~
-~17162~^~417~^4.^1^^~1~^^^^^^^^^^^~04/01/1989~
-~17162~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~
-~17162~^~432~^4.^1^^~1~^^^^^^^^^^^~04/01/1989~
-~17162~^~435~^4.^0^^~4~^~NC~^^^^^^^^^^~01/01/2001~
-~17162~^~601~^83.^1^^~1~^^^^^^^^^^^~04/01/1989~
-~17163~^~208~^167.^0^^~4~^~NC~^^^^^^^^^^~04/01/1989~
-~17163~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2003~
-~17163~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2003~
-~17163~^~268~^699.^0^^~4~^^^^^^^^^^^~02/01/2009~
-~17163~^~301~^22.^0^^~1~^^^^^^^^^^^~04/01/1989~
-~17163~^~304~^27.^0^^~1~^^^^^^^^^^^~04/01/1989~
-~17163~^~305~^233.^0^^~1~^^^^^^^^^^^~04/01/1989~
-~17163~^~306~^310.^0^^~1~^^^^^^^^^^^~04/01/1989~
-~17163~^~307~^60.^0^^~1~^^^^^^^^^^^~04/01/1989~
-~17163~^~318~^0.^0^^~4~^^^^^^^^^^^~04/01/1989~
-~17163~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2003~
-~17163~^~320~^0.^0^^~1~^~AS~^^^^^^^^^^~02/01/2009~
-~17163~^~321~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2003~
-~17163~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2003~
-~17163~^~324~^0.^2^^~13~^~AI~^^^^^^^^^^~02/01/2009~
-~17163~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2003~
-~17163~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2003~
-~17163~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2003~
-~17163~^~417~^5.^0^^~1~^^^^^^^^^^^~04/01/1989~
-~17163~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~
-~17163~^~432~^5.^0^^~1~^^^^^^^^^^^~02/01/2009~
-~17163~^~435~^5.^0^^~4~^~NC~^^^^^^^^^^~02/01/2009~
-~17163~^~601~^109.^0^^~1~^^^^^^^^^^^~04/01/1989~
-~17164~^~208~^120.^0^^~4~^~NC~^^^^^^^^^^~04/01/1989~
-~17164~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2003~
-~17164~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2003~
-~17164~^~268~^502.^0^^~4~^^^^^^^^^^^
-~17164~^~301~^5.^20^0.^~1~^^^^^^^^^^^~04/01/1989~
-~17164~^~304~^23.^14^0.^~1~^^^^^^^^^^^~04/01/1989~
-~17164~^~305~^202.^19^4.^~1~^^^^^^^^^^^~04/01/1989~
-~17164~^~306~^318.^19^14.^~1~^^^^^^^^^^^~04/01/1989~
-~17164~^~307~^51.^19^2.^~1~^^^^^^^^^^^~04/01/1989~
-~17164~^~318~^0.^0^^~4~^^^^^^^^^^^~04/01/1989~
-~17164~^~319~^0.^0^^~4~^~NR~^^^^^^^^^^~01/01/2003~
-~17164~^~320~^0.^0^^~1~^~AS~^^^^^^^^^^~01/01/2003~
-~17164~^~321~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2003~
-~17164~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2003~
-~17164~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2003~
-~17164~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2003~
-~17164~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2003~
-~17164~^~417~^4.^0^^~4~^^^^^^^^^^^~04/01/1989~
-~17164~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~
-~17164~^~432~^4.^0^^~4~^^^^^^^^^^^~01/01/2003~
-~17164~^~435~^4.^0^^~4~^~NC~^^^^^^^^^^~03/01/2003~
-~17164~^~601~^85.^43^5.^~1~^^^^^^^^^^^~04/01/1989~
-~17165~^~208~^158.^0^^~4~^~NC~^^^^^^^^^^~04/01/1989~
-~17165~^~268~^661.^0^^~4~^^^^^^^^^^^
-~17165~^~301~^7.^0^^~1~^^^^^^^^^^^~04/01/1989~
-~17165~^~304~^24.^0^^~1~^^^^^^^^^^^~04/01/1989~
-~17165~^~305~^226.^0^^~1~^^^^^^^^^^^~04/01/1989~
-~17165~^~306~^335.^0^^~1~^^^^^^^^^^^~04/01/1989~
-~17165~^~307~^54.^0^^~1~^^^^^^^^^^^~04/01/1989~
-~17165~^~318~^0.^0^^~4~^^^^^^^^^^^~04/01/1989~
-~17165~^~319~^0.^0^^~4~^^^^^^^^^^^~06/01/2002~
-~17165~^~320~^0.^0^^~4~^^^^^^^^^^^~06/01/2002~
-~17165~^~601~^112.^0^^~1~^^^^^^^^^^^~04/01/1989~
-~17166~^~208~^111.^0^^~4~^~NC~^^^^^^^^^^~04/01/1989~
-~17166~^~268~^464.^0^^~4~^^^^^^^^^^^
-~17166~^~301~^4.^21^0.^~1~^^^^^^^^^^^~04/01/1989~
-~17166~^~304~^23.^21^0.^~1~^^^^^^^^^^^~04/01/1989~
-~17166~^~305~^161.^21^1.^~1~^^^^^^^^^^^~04/01/1989~
-~17166~^~306~^312.^21^5.^~1~^^^^^^^^^^^~04/01/1989~
-~17166~^~307~^58.^21^1.^~1~^^^^^^^^^^^~04/01/1989~
-~17166~^~318~^0.^0^^~4~^^^^^^^^^^^~04/01/1989~
-~17166~^~319~^0.^0^^~4~^^^^^^^^^^^~06/01/2002~
-~17166~^~320~^0.^0^^~4~^^^^^^^^^^^~06/01/2002~
-~17166~^~601~^55.^29^3.^~1~^^^^^^^^^^^~04/01/1989~
-~17167~^~208~^146.^0^^~4~^~NC~^^^^^^^^^^~04/01/1989~
-~17167~^~268~^611.^0^^~4~^^^^^^^^^^^
-~17167~^~301~^5.^0^^~1~^^^^^^^^^^^~04/01/1989~
-~17167~^~304~^24.^0^^~1~^^^^^^^^^^^~04/01/1989~
-~17167~^~305~^180.^0^^~1~^^^^^^^^^^^~04/01/1989~
-~17167~^~306~^328.^0^^~1~^^^^^^^^^^^~04/01/1989~
-~17167~^~307~^61.^0^^~1~^^^^^^^^^^^~04/01/1989~
-~17167~^~318~^0.^0^^~4~^^^^^^^^^^^~04/01/1989~
-~17167~^~417~^9.^0^^~4~^~BFPN~^~17340~^^^^^^^^^~08/01/2002~
-~17167~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~08/01/2002~
-~17167~^~432~^9.^0^^~4~^~BFPN~^~17340~^^^^^^^^^~08/01/2002~
-~17167~^~435~^9.^0^^~4~^~NC~^^^^^^^^^^~12/01/2002~
-~17167~^~601~^73.^0^^~1~^^^^^^^^^^^~04/01/1989~
-~17168~^~208~^109.^0^^~4~^~NC~^^^^^^^^^^~04/01/1989~
-~17168~^~268~^456.^0^^~4~^^^^^^^^^^^
-~17168~^~301~^13.^14^1.^~1~^^^^^^^^^^^~04/01/1989~
-~17168~^~305~^180.^14^11.^~1~^^^^^^^^^^^~04/01/1989~
-~17168~^~306~^385.^7^8.^~1~^^^^^^^^^^^~04/01/1989~
-~17168~^~307~^82.^7^5.^~1~^^^^^^^^^^^~04/01/1989~
-~17168~^~318~^0.^0^^~4~^^^^^^^^^^^~04/01/1989~
-~17168~^~319~^0.^0^^~4~^^^^^^^^^^^~06/01/2002~
-~17168~^~320~^0.^0^^~4~^^^^^^^^^^^~06/01/2002~
-~17168~^~417~^5.^1^^~1~^^^^^^^^^^^~04/01/1989~
-~17168~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~
-~17168~^~432~^5.^1^^~1~^^^^^^^^^^^~04/01/1989~
-~17168~^~435~^5.^0^^~4~^~NC~^^^^^^^^^^~01/01/2001~
-~17168~^~601~^57.^7^1.^~1~^^^^^^^^^^^~04/01/1989~
-~17169~^~208~^143.^0^^~4~^~NC~^^^^^^^^^^~02/01/2009~
-~17169~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2003~
-~17169~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2003~
-~17169~^~268~^599.^0^^~4~^~NC~^^^^^^^^^^~02/01/2009~
-~17169~^~301~^17.^0^^~1~^^^^^^^^^^^~04/01/1989~
-~17169~^~304~^0.^0^^~1~^^^^^^^^^^^~05/01/1990~
-~17169~^~305~^201.^0^^~1~^^^^^^^^^^^~04/01/1989~
-~17169~^~306~^405.^0^^~1~^^^^^^^^^^^~04/01/1989~
-~17169~^~307~^86.^0^^~1~^^^^^^^^^^^~04/01/1989~
-~17169~^~318~^0.^0^^~4~^^^^^^^^^^^~04/01/1989~
-~17169~^~319~^0.^0^^~4~^~NR~^^^^^^^^^^~01/01/2003~
-~17169~^~320~^0.^0^^~4~^~NC~^^^^^^^^^^~02/01/2009~
-~17169~^~321~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2003~
-~17169~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2003~
-~17169~^~324~^0.^2^^~13~^~AI~^^^^^^^^^^~02/01/2009~
-~17169~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2003~
-~17169~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2003~
-~17169~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2003~
-~17169~^~417~^5.^0^^~1~^^^^^^^^^^^~04/01/1989~
-~17169~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~
-~17169~^~432~^5.^0^^~1~^^^^^^^^^^^~02/01/2009~
-~17169~^~435~^5.^0^^~4~^~NC~^^^^^^^^^^~02/01/2009~
-~17169~^~601~^75.^0^^~1~^^^^^^^^^^^~04/01/1989~
-~17170~^~208~^133.^0^^~4~^~NC~^^^^^^^^^^~04/01/1989~
-~17170~^~268~^556.^0^^~4~^^^^^^^^^^^
-~17170~^~301~^6.^25^0.^~1~^^^^^^^^^^^~04/01/1989~
-~17170~^~304~^24.^46^0.^~1~^^^^^^^^^^^~04/01/1989~
-~17170~^~305~^221.^23^9.^~1~^^^^^^^^^^^~04/01/1989~
-~17170~^~306~^360.^45^6.^~1~^^^^^^^^^^^~04/01/1989~
-~17170~^~307~^53.^36^1.^~1~^^^^^^^^^^^~04/01/1989~
-~17170~^~318~^0.^0^^~4~^^^^^^^^^^^~04/01/1989~
-~17170~^~319~^0.^0^^~4~^^^^^^^^^^^~06/01/2002~
-~17170~^~320~^0.^0^^~4~^^^^^^^^^^^~06/01/2002~
-~17170~^~601~^52.^13^2.^~1~^^^^^^^^^^^~04/01/1989~
-~17171~^~208~^175.^0^^~4~^~NC~^^^^^^^^^^~04/01/1989~
-~17171~^~268~^732.^0^^~4~^^^^^^^^^^^
-~17171~^~301~^8.^0^^~1~^^^^^^^^^^^~04/01/1989~
-~17171~^~304~^25.^0^^~1~^^^^^^^^^^^~04/01/1989~
-~17171~^~305~^247.^0^^~1~^^^^^^^^^^^~04/01/1989~
-~17171~^~306~^379.^0^^~1~^^^^^^^^^^^~04/01/1989~
-~17171~^~307~^55.^0^^~1~^^^^^^^^^^^~04/01/1989~
-~17171~^~318~^0.^0^^~4~^^^^^^^^^^^~04/01/1989~
-~17171~^~319~^0.^0^^~4~^^^^^^^^^^^~06/01/2002~
-~17171~^~320~^0.^0^^~4~^^^^^^^^^^^~06/01/2002~
-~17171~^~601~^68.^0^^~1~^^^^^^^^^^^~04/01/1989~
-~17172~^~208~^102.^0^^~4~^~NC~^^^^^^^^^^~04/01/1989~
-~17172~^~268~^427.^0^^~4~^^^^^^^^^^^
-~17172~^~301~^5.^29^0.^~1~^^^^^^^^^^^~04/01/1989~
-~17172~^~304~^23.^27^0.^~1~^^^^^^^^^^^~04/01/1989~
-~17172~^~305~^158.^30^4.^~1~^^^^^^^^^^^~04/01/1989~
-~17172~^~306~^317.^27^3.^~1~^^^^^^^^^^^~04/01/1989~
-~17172~^~307~^65.^27^1.^~1~^^^^^^^^^^^~04/01/1989~
-~17172~^~318~^0.^0^^~4~^^^^^^^^^^^~04/01/1989~
-~17172~^~319~^0.^0^^~4~^^^^^^^^^^^~06/01/2002~
-~17172~^~320~^0.^0^^~4~^^^^^^^^^^^~06/01/2002~
-~17172~^~601~^59.^33^3.^~1~^^^^^^^^^^^~04/01/1989~
-~17173~^~208~^134.^0^^~4~^~NC~^^^^^^^^^^~04/01/1989~
-~17173~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2003~
-~17173~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2003~
-~17173~^~268~^561.^0^^~4~^^^^^^^^^^^~02/01/2009~
-~17173~^~301~^6.^0^^~1~^^^^^^^^^^^~04/01/1989~
-~17173~^~304~^24.^0^^~1~^^^^^^^^^^^~04/01/1989~
-~17173~^~305~^176.^0^^~1~^^^^^^^^^^^~04/01/1989~
-~17173~^~306~^334.^0^^~1~^^^^^^^^^^^~04/01/1989~
-~17173~^~307~^69.^0^^~1~^^^^^^^^^^^~04/01/1989~
-~17173~^~318~^0.^0^^~4~^^^^^^^^^^^~04/01/1989~
-~17173~^~319~^0.^0^^~4~^~NR~^^^^^^^^^^~01/01/2003~
-~17173~^~320~^0.^0^^~1~^~AS~^^^^^^^^^^~01/01/2003~
-~17173~^~321~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2003~
-~17173~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2003~
-~17173~^~324~^0.^2^^~13~^~AI~^^^^^^^^^^~02/01/2009~
-~17173~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2003~
-~17173~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2003~
-~17173~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2003~
-~17173~^~417~^4.^0^^~4~^^^^^^^^^^^~11/01/1993~
-~17173~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~
-~17173~^~432~^4.^0^^~4~^^^^^^^^^^^~02/01/2009~
-~17173~^~435~^4.^0^^~4~^~NC~^^^^^^^^^^~02/01/2009~
-~17173~^~601~^78.^0^^~1~^^^^^^^^^^^~04/01/1989~
-~17174~^~208~^162.^0^^~4~^~NC~^^^^^^^^^^~04/01/1989~
-~17174~^~268~^678.^0^^~4~^^^^^^^^^^^
-~17174~^~301~^25.^1^^~1~^^^^^^^^^^^~04/01/1989~
-~17174~^~304~^22.^1^^~1~^^^^^^^^^^^~04/01/1989~
-~17174~^~305~^220.^1^^~1~^^^^^^^^^^^~04/01/1989~
-~17174~^~306~^276.^1^^~1~^^^^^^^^^^^~04/01/1989~
-~17174~^~307~^82.^1^^~1~^^^^^^^^^^^~04/01/1989~
-~17174~^~318~^0.^0^^~4~^^^^^^^^^^^~04/01/1989~
-~17174~^~319~^0.^0^^~4~^^^^^^^^^^^~06/01/2002~
-~17174~^~320~^0.^0^^~4~^^^^^^^^^^^~06/01/2002~
-~17175~^~208~^234.^0^^~4~^~NC~^^^^^^^^^^~04/01/1989~
-~17175~^~268~^979.^0^^~4~^^^^^^^^^^^
-~17175~^~301~^36.^0^^~1~^^^^^^^^^^^~04/01/1989~
-~17175~^~304~^26.^0^^~1~^^^^^^^^^^^~04/01/1989~
-~17175~^~305~^271.^0^^~1~^^^^^^^^^^^~04/01/1989~
-~17175~^~306~^320.^0^^~1~^^^^^^^^^^^~04/01/1989~
-~17175~^~307~^95.^0^^~1~^^^^^^^^^^^~04/01/1989~
-~17175~^~318~^0.^0^^~4~^^^^^^^^^^^~04/01/1989~
-~17175~^~319~^0.^0^^~4~^^^^^^^^^^^~06/01/2002~
-~17175~^~320~^0.^0^^~4~^^^^^^^^^^^~06/01/2002~
-~17175~^~417~^11.^0^^~1~^^^^^^^^^^^~04/01/1989~
-~17175~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~
-~17175~^~432~^11.^0^^~1~^^^^^^^^^^^~04/01/1989~
-~17175~^~435~^11.^0^^~4~^~NC~^^^^^^^^^^~01/01/2001~
-~17175~^~601~^121.^0^^~1~^^^^^^^^^^^~04/01/1989~
-~17176~^~208~^221.^0^^~4~^~NC~^^^^^^^^^^~04/01/1989~
-~17176~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2003~
-~17176~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2003~
-~17176~^~268~^925.^0^^~4~^^^^^^^^^^^~02/01/2009~
-~17176~^~301~^17.^0^^~4~^^^^^^^^^^^~04/01/1989~
-~17176~^~304~^34.^0^^~4~^^^^^^^^^^^~04/01/1989~
-~17176~^~305~^278.^0^^~4~^^^^^^^^^^^~04/01/1989~
-~17176~^~306~^438.^0^^~4~^^^^^^^^^^^~04/01/1989~
-~17176~^~307~^58.^0^^~4~^^^^^^^^^^^~04/01/1989~
-~17176~^~318~^0.^0^^~4~^^^^^^^^^^^~01/01/2003~
-~17176~^~319~^0.^0^^~4~^~NR~^^^^^^^^^^~01/01/2003~
-~17176~^~320~^0.^0^^~4~^~NC~^^^^^^^^^^~02/01/2009~
-~17176~^~321~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2003~
-~17176~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2003~
-~17176~^~324~^0.^1^^~13~^~AI~^^^^^^^^^^~02/01/2009~
-~17176~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2003~
-~17176~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2003~
-~17176~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2003~
-~17176~^~417~^10.^0^^~4~^^^^^^^^^^^~03/01/1992~
-~17176~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~
-~17176~^~432~^10.^0^^~4~^^^^^^^^^^^~02/01/2009~
-~17176~^~435~^10.^0^^~4~^~NC~^^^^^^^^^^~02/01/2009~
-~17176~^~601~^129.^0^^~4~^^^^^^^^^^^~04/01/1989~
-~17177~^~208~^136.^0^^~4~^~NC~^^^^^^^^^^~04/01/1989~
-~17177~^~268~^569.^0^^~4~^^^^^^^^^^^
-~17177~^~301~^13.^23^0.^~1~^^^^^^^^^^^~04/01/1989~
-~17177~^~304~^19.^26^1.^~1~^^^^^^^^^^^~04/01/1989~
-~17177~^~305~^213.^3^12.^~1~^^^^^^^^^^^~04/01/1989~
-~17177~^~306~^330.^3^25.^~1~^^^^^^^^^^^~04/01/1989~
-~17177~^~307~^41.^21^1.^~1~^^^^^^^^^^^~04/01/1989~
-~17177~^~318~^0.^0^^~4~^^^^^^^^^^^~04/01/1989~
-~17177~^~319~^0.^0^^~4~^^^^^^^^^^^~06/01/2002~
-~17177~^~320~^0.^0^^~4~^^^^^^^^^^^~06/01/2002~
-~17177~^~417~^8.^2^^~1~^^^^^^^^^^^~04/01/1989~
-~17177~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~
-~17177~^~432~^8.^2^^~1~^^^^^^^^^^^~04/01/1989~
-~17177~^~435~^8.^0^^~4~^~NC~^^^^^^^^^^~01/01/2001~
-~17177~^~601~^57.^77^1.^~1~^^^^^^^^^^^~04/01/1989~
-~17178~^~208~^197.^0^^~4~^~NC~^^^^^^^^^^~04/01/1989~
-~17178~^~268~^824.^0^^~4~^^^^^^^^^^^
-~17178~^~301~^19.^0^^~1~^^^^^^^^^^^~04/01/1989~
-~17178~^~304~^21.^0^^~1~^^^^^^^^^^^~04/01/1989~
-~17178~^~305~^263.^0^^~1~^^^^^^^^^^^~04/01/1989~
-~17178~^~306~^383.^0^^~1~^^^^^^^^^^^~04/01/1989~
-~17178~^~307~^47.^0^^~1~^^^^^^^^^^^~04/01/1989~
-~17178~^~318~^0.^0^^~4~^^^^^^^^^^^~04/01/1989~
-~17178~^~319~^0.^0^^~4~^^^^^^^^^^^~06/01/2002~
-~17178~^~320~^0.^0^^~4~^^^^^^^^^^^~06/01/2002~
-~17178~^~417~^11.^0^^~1~^^^^^^^^^^^~04/01/1989~
-~17178~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~
-~17178~^~432~^11.^0^^~1~^^^^^^^^^^^~04/01/1989~
-~17178~^~435~^11.^0^^~4~^~NC~^^^^^^^^^^~01/01/2001~
-~17178~^~601~^82.^0^^~1~^^^^^^^^^^^~04/01/1989~
-~17179~^~208~^206.^0^^~4~^~NC~^^^^^^^^^^~04/01/1989~
-~17179~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2003~
-~17179~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2003~
-~17179~^~268~^862.^0^^~4~^^^^^^^^^^^~02/01/2009~
-~17179~^~301~^20.^0^^~1~^^^^^^^^^^^~04/01/1989~
-~17179~^~304~^20.^0^^~1~^^^^^^^^^^^~04/01/1989~
-~17179~^~305~^226.^0^^~1~^^^^^^^^^^^~04/01/1989~
-~17179~^~306~^300.^0^^~1~^^^^^^^^^^^~04/01/1989~
-~17179~^~307~^37.^0^^~1~^^^^^^^^^^^~04/01/1989~
-~17179~^~318~^0.^0^^~4~^^^^^^^^^^^~04/01/1989~
-~17179~^~319~^0.^0^^~4~^~NR~^^^^^^^^^^~01/01/2003~
-~17179~^~320~^0.^0^^~4~^~NC~^^^^^^^^^^~02/01/2009~
-~17179~^~321~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2003~
-~17179~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2003~
-~17179~^~324~^0.^1^^~13~^~AI~^^^^^^^^^^~02/01/2009~
-~17179~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2003~
-~17179~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2003~
-~17179~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2003~
-~17179~^~417~^9.^0^^~1~^^^^^^^^^^^~04/01/1989~
-~17179~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~
-~17179~^~432~^9.^0^^~1~^^^^^^^^^^^~02/01/2009~
-~17179~^~435~^9.^0^^~4~^~NC~^^^^^^^^^^~02/01/2009~
-~17179~^~601~^86.^0^^~1~^^^^^^^^^^^~04/01/1989~
-~17180~^~208~^114.^0^^~4~^~NC~^^^^^^^^^^~04/01/1989~
-~17180~^~268~^477.^0^^~4~^^^^^^^^^^^
-~17180~^~301~^12.^1^^~1~^^^^^^^^^^^~04/01/1989~
-~17180~^~304~^29.^1^^~1~^^^^^^^^^^^~04/01/1989~
-~17180~^~305~^226.^1^^~1~^^^^^^^^^^^~04/01/1989~
-~17180~^~306~^378.^98^6.^~1~^^^^^^^^^^^~04/01/1989~
-~17180~^~307~^50.^98^0.^~1~^^^^^^^^^^^~04/01/1989~
-~17180~^~318~^0.^0^^~4~^^^^^^^^^^^~04/01/1989~
-~17180~^~319~^0.^0^^~4~^^^^^^^^^^^~06/01/2002~
-~17180~^~320~^0.^0^^~4~^^^^^^^^^^^~06/01/2002~
-~17180~^~601~^81.^40^1.^~1~^^^^^^^^^^^~04/01/1989~
-~17181~^~208~^173.^0^^~4~^~NC~^^^^^^^^^^~04/01/1989~
-~17181~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2003~
-~17181~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2003~
-~17181~^~268~^724.^0^^~4~^^^^^^^^^^^~02/01/2009~
-~17181~^~301~^18.^0^^~1~^^^^^^^^^^^~04/01/1989~
-~17181~^~304~^31.^0^^~1~^^^^^^^^^^^~04/01/1989~
-~17181~^~305~^240.^0^^~1~^^^^^^^^^^^~04/01/1989~
-~17181~^~306~^343.^0^^~1~^^^^^^^^^^^~04/01/1989~
-~17181~^~307~^45.^0^^~1~^^^^^^^^^^^~04/01/1989~
-~17181~^~318~^0.^0^^~4~^^^^^^^^^^^~04/01/1989~
-~17181~^~319~^0.^0^^~4~^~NR~^^^^^^^^^^~01/01/2003~
-~17181~^~320~^0.^0^^~4~^~NC~^^^^^^^^^^~02/01/2009~
-~17181~^~321~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2003~
-~17181~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2003~
-~17181~^~324~^0.^1^^~13~^~AI~^^^^^^^^^^~02/01/2009~
-~17181~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2003~
-~17181~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2003~
-~17181~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2003~
-~17181~^~417~^8.^0^^~4~^^^^^^^^^^^~11/01/1993~
-~17181~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~
-~17181~^~432~^8.^0^^~4~^^^^^^^^^^^~02/01/2009~
-~17181~^~435~^8.^0^^~4~^~NC~^^^^^^^^^^~02/01/2009~
-~17181~^~601~^123.^0^^~1~^^^^^^^^^^^~04/01/1989~
-~17182~^~208~^255.^0^^~4~^~NC~^^^^^^^^^^~01/01/2009~
-~17182~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2003~
-~17182~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2003~
-~17182~^~268~^1067.^0^^~4~^^^^^^^^^^^~02/01/2009~
-~17182~^~301~^14.^0^^~4~^^^^^^^^^^^~01/01/1994~
-~17182~^~304~^30.^0^^~4~^^^^^^^^^^^~01/01/1994~
-~17182~^~305~^261.^0^^~4~^^^^^^^^^^^~01/01/1994~
-~17182~^~306~^398.^0^^~4~^^^^^^^^^^^~01/01/1994~
-~17182~^~307~^79.^0^^~4~^^^^^^^^^^^~01/01/1994~
-~17182~^~318~^0.^0^^~4~^^^^^^^^^^^~04/01/1989~
-~17182~^~319~^0.^0^^~4~^~NR~^^^^^^^^^^~01/01/2003~
-~17182~^~320~^0.^0^^~4~^~NC~^^^^^^^^^^~02/01/2009~
-~17182~^~321~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2003~
-~17182~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2003~
-~17182~^~324~^0.^1^^~13~^~AI~^^^^^^^^^^~02/01/2009~
-~17182~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2003~
-~17182~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2003~
-~17182~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2003~
-~17182~^~417~^11.^0^^~4~^^^^^^^^^^^~01/01/1994~
-~17182~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~
-~17182~^~432~^11.^0^^~4~^^^^^^^^^^^~02/01/2009~
-~17182~^~435~^11.^0^^~4~^~NC~^^^^^^^^^^~02/01/2009~
-~17182~^~601~^97.^0^^~4~^^^^^^^^^^^~01/01/1994~
-~17183~^~208~^120.^0^^~4~^~NC~^^^^^^^^^^~04/01/1989~
-~17183~^~268~^502.^0^^~4~^^^^^^^^^^^
-~17183~^~301~^2.^1^^~1~^^^^^^^^^^^~04/01/1989~
-~17183~^~304~^24.^1^^~1~^^^^^^^^^^^~04/01/1989~
-~17183~^~305~^172.^2^^~1~^^^^^^^^^^^~04/01/1989~
-~17183~^~306~^304.^1^^~1~^^^^^^^^^^^~04/01/1989~
-~17183~^~307~^103.^1^^~1~^^^^^^^^^^^~04/01/1989~
-~17183~^~318~^0.^0^^~4~^^^^^^^^^^^~04/01/1989~
-~17183~^~319~^0.^0^^~4~^^^^^^^^^^^~06/01/2002~
-~17183~^~320~^0.^0^^~4~^^^^^^^^^^^~06/01/2002~
-~17183~^~601~^83.^15^5.^~1~^^^^^^^^^^^~04/01/1989~
-~17184~^~208~^173.^0^^~4~^~NC~^^^^^^^^^^~04/01/1989~
-~17184~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2003~
-~17184~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2003~
-~17184~^~268~^724.^0^^~4~^^^^^^^^^^^~02/01/2009~
-~17184~^~301~^3.^0^^~1~^^^^^^^^^^^~04/01/1989~
-~17184~^~304~^28.^0^^~1~^^^^^^^^^^^~04/01/1989~
-~17184~^~305~^211.^0^^~1~^^^^^^^^^^^~04/01/1989~
-~17184~^~306~^352.^0^^~1~^^^^^^^^^^^~04/01/1989~
-~17184~^~307~^119.^0^^~1~^^^^^^^^^^^~04/01/1989~
-~17184~^~318~^0.^0^^~4~^^^^^^^^^^^~04/01/1989~
-~17184~^~319~^0.^0^^~4~^~NR~^^^^^^^^^^~01/01/2003~
-~17184~^~320~^0.^0^^~4~^~NC~^^^^^^^^^^~02/01/2009~
-~17184~^~321~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2003~
-~17184~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2003~
-~17184~^~324~^0.^1^^~13~^~AI~^^^^^^^^^^~02/01/2009~
-~17184~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2003~
-~17184~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2003~
-~17184~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2003~
-~17184~^~417~^9.^0^^~4~^^^^^^^^^^^~02/01/1995~
-~17184~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~
-~17184~^~432~^9.^0^^~4~^^^^^^^^^^^~02/01/2009~
-~17184~^~435~^9.^0^^~4~^~NC~^^^^^^^^^^~02/01/2009~
-~17184~^~601~^121.^0^^~1~^^^^^^^^^^^~04/01/1989~
-~17185~^~208~^122.^0^^~4~^~NC~^^^^^^^^^^~04/01/1989~
-~17185~^~268~^510.^0^^~4~^^^^^^^^^^^
-~17185~^~301~^9.^2^^~1~^^^^^^^^^^^~04/01/1989~
-~17185~^~304~^12.^2^^~1~^^^^^^^^^^^~04/01/1989~
-~17185~^~305~^270.^1^^~1~^^^^^^^^^^^~04/01/1989~
-~17185~^~306~^296.^5^25.^~1~^^^^^^^^^^^~04/01/1989~
-~17185~^~307~^112.^6^6.^~1~^^^^^^^^^^^~04/01/1989~
-~17185~^~318~^0.^9^^~1~^^^^^^^^^^^~04/01/1989~
-~17185~^~319~^0.^9^0.^~1~^^^^^^^^^^^~06/01/2002~
-~17185~^~320~^0.^9^0.^~1~^^^^^^^^^^^~06/01/2002~
-~17185~^~417~^3.^1^^~1~^^^^^^^^^^^~04/01/1989~
-~17185~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~
-~17185~^~432~^3.^1^^~1~^^^^^^^^^^^~04/01/1989~
-~17185~^~435~^3.^0^^~4~^~NC~^^^^^^^^^^~01/01/2001~
-~17185~^~601~^1352.^1^^~1~^^^^^^^^^^^~04/01/1989~
-~17186~^~208~^145.^0^^~4~^~NC~^^^^^^^^^^~04/01/1989~
-~17186~^~268~^607.^0^^~4~^^^^^^^^^^^
-~17186~^~301~^12.^2^^~1~^^^^^^^^^^^~04/01/1989~
-~17186~^~304~^14.^3^1.^~1~^^^^^^^^^^^~04/01/1989~
-~17186~^~305~^337.^2^^~1~^^^^^^^^^^^~04/01/1989~
-~17186~^~306~^205.^3^39.^~1~^^^^^^^^^^^~04/01/1989~
-~17186~^~307~^134.^3^39.^~1~^^^^^^^^^^^~04/01/1989~
-~17186~^~318~^0.^1^^~4~^^^^^^^^^^^~04/01/1989~
-~17186~^~319~^0.^1^^~4~^^^^^^^^^^^~06/01/2002~
-~17186~^~320~^0.^1^^~4~^^^^^^^^^^^~06/01/2002~
-~17186~^~417~^5.^2^^~1~^^^^^^^^^^^~04/01/1989~
-~17186~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~
-~17186~^~432~^5.^2^^~1~^^^^^^^^^^^~04/01/1989~
-~17186~^~435~^5.^0^^~4~^~NC~^^^^^^^^^^~01/01/2001~
-~17186~^~601~^2043.^2^^~1~^^^^^^^^^^^~04/01/1989~
-~17187~^~208~^273.^0^^~4~^~NC~^^^^^^^^^^~04/01/1989~
-~17187~^~268~^1142.^0^^~4~^^^^^^^^^^^
-~17187~^~301~^21.^1^^~1~^^^^^^^^^^^~04/01/1989~
-~17187~^~304~^22.^1^^~1~^^^^^^^^^^^~04/01/1989~
-~17187~^~305~^495.^1^^~1~^^^^^^^^^^^~04/01/1989~
-~17187~^~306~^358.^1^^~1~^^^^^^^^^^^~04/01/1989~
-~17187~^~307~^157.^1^^~1~^^^^^^^^^^^~04/01/1989~
-~17187~^~318~^0.^1^^~4~^^^^^^^^^^^~04/01/1989~
-~17187~^~319~^0.^1^^~4~^^^^^^^^^^^~06/01/2002~
-~17187~^~320~^0.^1^^~4~^^^^^^^^^^^~06/01/2002~
-~17187~^~417~^7.^1^^~1~^^^^^^^^^^^~04/01/1989~
-~17187~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~
-~17187~^~432~^7.^1^^~1~^^^^^^^^^^^~04/01/1989~
-~17187~^~435~^7.^0^^~4~^~NC~^^^^^^^^^^~01/01/2001~
-~17187~^~601~^2504.^1^^~1~^^^^^^^^^^^~04/01/1989~
-~17188~^~208~^118.^0^^~4~^~NC~^^^^^^^^^^~04/01/1989~
-~17188~^~268~^494.^0^^~4~^^^^^^^^^^^
-~17188~^~301~^10.^2^^~1~^^^^^^^^^^^~04/01/1989~
-~17188~^~304~^14.^2^^~1~^^^^^^^^^^^~04/01/1989~
-~17188~^~305~^274.^2^^~1~^^^^^^^^^^^~04/01/1989~
-~17188~^~306~^315.^6^22.^~1~^^^^^^^^^^^~04/01/1989~
-~17188~^~307~^127.^6^1.^~1~^^^^^^^^^^^~04/01/1989~
-~17188~^~318~^0.^8^^~1~^^^^^^^^^^^~04/01/1989~
-~17188~^~319~^0.^8^0.^~1~^^^^^^^^^^^~06/01/2002~
-~17188~^~320~^0.^8^0.^~1~^^^^^^^^^^^~06/01/2002~
-~17188~^~417~^3.^1^^~1~^^^^^^^^^^^~04/01/1989~
-~17188~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~
-~17188~^~432~^3.^1^^~1~^^^^^^^^^^^~04/01/1989~
-~17188~^~435~^3.^0^^~4~^~NC~^^^^^^^^^^~01/01/2001~
-~17188~^~601~^1590.^2^^~1~^^^^^^^^^^^~04/01/1989~
-~17189~^~208~^136.^0^^~4~^~NC~^^^^^^^^^^~04/01/1989~
-~17189~^~268~^569.^0^^~4~^^^^^^^^^^^
-~17189~^~301~^16.^1^^~1~^^^^^^^^^^^~04/01/1989~
-~17189~^~304~^16.^2^^~1~^^^^^^^^^^^~04/01/1989~
-~17189~^~305~^385.^2^^~1~^^^^^^^^^^^~04/01/1989~
-~17189~^~306~^214.^2^^~1~^^^^^^^^^^^~04/01/1989~
-~17189~^~307~^156.^2^^~1~^^^^^^^^^^^~04/01/1989~
-~17189~^~318~^0.^0^^~4~^^^^^^^^^^^~04/01/1989~
-~17189~^~319~^0.^0^^~4~^^^^^^^^^^^~06/01/2002~
-~17189~^~320~^0.^0^^~4~^^^^^^^^^^^~06/01/2002~
-~17189~^~417~^3.^2^^~1~^^^^^^^^^^^~04/01/1989~
-~17189~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~
-~17189~^~432~^3.^2^^~1~^^^^^^^^^^^~04/01/1989~
-~17189~^~435~^3.^0^^~4~^~NC~^^^^^^^^^^~01/01/2001~
-~17189~^~601~^3100.^1^^~1~^^^^^^^^^^^~04/01/1989~
-~17190~^~208~^213.^0^^~4~^~NC~^^^^^^^^^^~04/01/1989~
-~17190~^~268~^891.^0^^~4~^^^^^^^^^^^
-~17190~^~301~^10.^1^^~1~^^^^^^^^^^^~04/01/1989~
-~17190~^~304~^18.^1^^~1~^^^^^^^^^^^~04/01/1989~
-~17190~^~305~^434.^1^^~1~^^^^^^^^^^^~04/01/1989~
-~17190~^~306~^472.^1^^~1~^^^^^^^^^^^~04/01/1989~
-~17190~^~307~^176.^1^^~1~^^^^^^^^^^^~04/01/1989~
-~17190~^~318~^0.^0^^~4~^^^^^^^^^^^~04/01/1989~
-~17190~^~319~^0.^0^^~4~^^^^^^^^^^^~06/01/2002~
-~17190~^~320~^0.^0^^~4~^^^^^^^^^^^~06/01/2002~
-~17190~^~417~^6.^1^^~1~^^^^^^^^^^^~04/01/1989~
-~17190~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~
-~17190~^~432~^6.^1^^~1~^^^^^^^^^^^~04/01/1989~
-~17190~^~435~^6.^0^^~4~^~NC~^^^^^^^^^^~01/01/2001~
-~17190~^~601~^2120.^1^^~1~^^^^^^^^^^^~04/01/1989~
-~17191~^~208~^122.^0^^~4~^~NC~^^^^^^^^^^~04/01/1989~
-~17191~^~268~^510.^0^^~4~^^^^^^^^^^^
-~17191~^~301~^6.^7^0.^~1~^^^^^^^^^^^~04/01/1989~
-~17191~^~304~^17.^7^0.^~1~^^^^^^^^^^^~04/01/1989~
-~17191~^~305~^175.^6^9.^~1~^^^^^^^^^^^~04/01/1989~
-~17191~^~306~^316.^87^3.^~1~^^^^^^^^^^^~04/01/1989~
-~17191~^~307~^89.^83^0.^~1~^^^^^^^^^^^~04/01/1989~
-~17191~^~318~^0.^9^^~1~^^^^^^^^^^^~04/01/1989~
-~17191~^~319~^0.^9^0.^~1~^^^^^^^^^^^~06/01/2002~
-~17191~^~320~^0.^9^0.^~1~^^^^^^^^^^^~06/01/2002~
-~17191~^~417~^2.^2^^~1~^^^^^^^^^^^~04/01/1989~
-~17191~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~
-~17191~^~432~^2.^2^^~1~^^^^^^^^^^^~04/01/1989~
-~17191~^~435~^2.^0^^~4~^~NC~^^^^^^^^^^~01/01/2001~
-~17191~^~601~^135.^2^^~1~^^^^^^^^^^^~04/01/1989~
-~17192~^~208~^185.^0^^~4~^~NC~^^^^^^^^^^~04/01/1989~
-~17192~^~268~^774.^0^^~4~^^^^^^^^^^^
-~17192~^~301~^14.^1^^~1~^^^^^^^^^^^~04/01/1989~
-~17192~^~304~^24.^1^^~1~^^^^^^^^^^^~04/01/1989~
-~17192~^~305~^254.^1^^~1~^^^^^^^^^^^~04/01/1989~
-~17192~^~306~^188.^1^^~1~^^^^^^^^^^^~04/01/1989~
-~17192~^~307~^63.^1^^~1~^^^^^^^^^^^~04/01/1989~
-~17192~^~318~^0.^0^^~4~^^^^^^^^^^^~04/01/1989~
-~17192~^~319~^0.^0^^~4~^^^^^^^^^^^~06/01/2002~
-~17192~^~320~^0.^0^^~4~^^^^^^^^^^^~06/01/2002~
-~17192~^~417~^2.^1^^~1~^^^^^^^^^^^~04/01/1989~
-~17192~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~
-~17192~^~432~^2.^1^^~1~^^^^^^^^^^^~04/01/1989~
-~17192~^~435~^2.^0^^~4~^~NC~^^^^^^^^^^~01/01/2001~
-~17192~^~601~^249.^1^^~1~^^^^^^^^^^^~04/01/1989~
-~17193~^~208~^110.^0^^~4~^~NC~^^^^^^^^^^~04/01/1989~
-~17193~^~268~^460.^0^^~4~^^^^^^^^^^^
-~17193~^~301~^5.^3^1.^~1~^^^^^^^^^^^~04/01/1989~
-~17193~^~304~^18.^3^1.^~1~^^^^^^^^^^^~04/01/1989~
-~17193~^~305~^211.^2^^~1~^^^^^^^^^^^~04/01/1989~
-~17193~^~306~^261.^3^35.^~1~^^^^^^^^^^^~04/01/1989~
-~17193~^~307~^77.^3^16.^~1~^^^^^^^^^^^~04/01/1989~
-~17193~^~318~^0.^9^^~1~^^^^^^^^^^^~04/01/1989~
-~17193~^~319~^0.^9^0.^~1~^^^^^^^^^^^~06/01/2002~
-~17193~^~320~^0.^9^0.^~1~^^^^^^^^^^^~06/01/2002~
-~17193~^~417~^2.^0^^~1~^^^^^^^^^^^~04/01/1989~
-~17193~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~
-~17193~^~432~^2.^0^^~1~^^^^^^^^^^^~04/01/1989~
-~17193~^~435~^2.^0^^~4~^~NC~^^^^^^^^^^~01/01/2001~
-~17193~^~601~^104.^1^^~1~^^^^^^^^^^^~04/01/1989~
-~17194~^~208~^186.^0^^~4~^~NC~^^^^^^^^^^~04/01/1989~
-~17194~^~268~^778.^0^^~4~^^^^^^^^^^^
-~17194~^~301~^8.^0^^~1~^^^^^^^^^^^~04/01/1989~
-~17194~^~304~^18.^0^^~1~^^^^^^^^^^^~04/01/1989~
-~17194~^~305~^250.^0^^~1~^^^^^^^^^^^~04/01/1989~
-~17194~^~306~^199.^0^^~1~^^^^^^^^^^^~04/01/1989~
-~17194~^~307~^58.^0^^~1~^^^^^^^^^^^~04/01/1989~
-~17194~^~318~^0.^0^^~4~^^^^^^^^^^^~04/01/1989~
-~17194~^~319~^0.^0^^~4~^^^^^^^^^^^~06/01/2002~
-~17194~^~320~^0.^0^^~4~^^^^^^^^^^^~06/01/2002~
-~17194~^~417~^2.^0^^~1~^^^^^^^^^^^~04/01/1989~
-~17194~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~
-~17194~^~432~^2.^0^^~1~^^^^^^^^^^^~04/01/1989~
-~17194~^~435~^2.^0^^~4~^~NC~^^^^^^^^^^~01/01/2001~
-~17194~^~601~^176.^0^^~1~^^^^^^^^^^^~04/01/1989~
-~17195~^~208~^97.^0^^~4~^~NC~^^^^^^^^^^~04/01/1989~
-~17195~^~268~^406.^0^^~4~^^^^^^^^^^^
-~17195~^~301~^13.^8^1.^~1~^^^^^^^^^^^~04/01/1989~
-~17195~^~304~^17.^7^0.^~1~^^^^^^^^^^^~04/01/1989~
-~17195~^~305~^246.^6^6.^~1~^^^^^^^^^^^~04/01/1989~
-~17195~^~306~^277.^77^1.^~1~^^^^^^^^^^^~04/01/1989~
-~17195~^~307~^156.^75^1.^~1~^^^^^^^^^^^~04/01/1989~
-~17195~^~318~^316.^18^23.^~1~^^^^^^^^^^^~04/01/1989~
-~17195~^~319~^95.^18^7.^~1~^^^^^^^^^^^~06/01/2002~
-~17195~^~320~^95.^18^7.^~1~^^^^^^^^^^^~06/01/2002~
-~17195~^~417~^28.^3^1.^~1~^^^^^^^^^^^~04/01/1989~
-~17195~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~
-~17195~^~432~^28.^3^1.^~1~^^^^^^^^^^^~04/01/1989~
-~17195~^~435~^28.^0^^~4~^~NC~^^^^^^^^^^~01/01/2001~
-~17195~^~601~^337.^8^24.^~1~^^^^^^^^^^^~04/01/1989~
-~17196~^~208~^137.^0^^~4~^~NC~^^^^^^^^^^~04/01/1989~
-~17196~^~268~^573.^0^^~4~^^^^^^^^^^^
-~17196~^~301~^18.^2^^~1~^^^^^^^^^^^~04/01/1989~
-~17196~^~304~^20.^2^^~1~^^^^^^^^^^^~04/01/1989~
-~17196~^~305~^290.^1^^~1~^^^^^^^^^^^~04/01/1989~
-~17196~^~306~^178.^2^^~1~^^^^^^^^^^^~04/01/1989~
-~17196~^~307~^151.^2^^~1~^^^^^^^^^^^~04/01/1989~
-~17196~^~318~^455.^2^^~1~^^^^^^^^^^^~04/01/1989~
-~17196~^~319~^137.^2^^~1~^^^^^^^^^^^~06/01/2002~
-~17196~^~320~^137.^2^^~1~^^^^^^^^^^^~06/01/2002~
-~17196~^~417~^81.^1^^~1~^^^^^^^^^^^~04/01/1989~
-~17196~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~
-~17196~^~432~^81.^1^^~1~^^^^^^^^^^^~04/01/1989~
-~17196~^~435~^81.^0^^~4~^~NC~^^^^^^^^^^~01/01/2001~
-~17196~^~601~^565.^2^^~1~^^^^^^^^^^^~04/01/1989~
-~17197~^~208~^99.^0^^~4~^~NC~^^^^^^^^^^~04/01/1989~
-~17197~^~268~^414.^0^^~4~^^^^^^^^^^^
-~17197~^~301~^11.^4^0.^~1~^^^^^^^^^^^~04/01/1989~
-~17197~^~304~^16.^2^^~1~^^^^^^^^^^^~04/01/1989~
-~17197~^~305~^241.^1^^~1~^^^^^^^^^^^~04/01/1989~
-~17197~^~306~^272.^2^^~1~^^^^^^^^^^^~04/01/1989~
-~17197~^~307~^178.^2^^~1~^^^^^^^^^^^~04/01/1989~
-~17197~^~318~^308.^5^50.^~1~^^^^^^^^^^^~04/01/1989~
-~17197~^~319~^92.^5^15.^~1~^^^^^^^^^^^~06/01/2002~
-~17197~^~320~^92.^5^15.^~1~^^^^^^^^^^^~06/01/2002~
-~17197~^~417~^21.^4^^~1~^^^^^^^^^^^~04/01/1989~
-~17197~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~
-~17197~^~432~^21.^4^^~1~^^^^^^^^^^^~04/01/1989~
-~17197~^~435~^21.^0^^~4~^~NC~^^^^^^^^^^~01/01/2001~
-~17197~^~601~^364.^3^46.^~1~^^^^^^^^^^^~04/01/1989~
-~17198~^~208~^163.^0^^~4~^~NC~^^^^^^^^^^~04/01/1989~
-~17198~^~268~^682.^0^^~4~^^^^^^^^^^^
-~17198~^~301~^29.^1^^~1~^^^^^^^^^^^~04/01/1989~
-~17198~^~304~^24.^1^^~1~^^^^^^^^^^^~04/01/1989~
-~17198~^~305~^372.^1^^~1~^^^^^^^^^^^~04/01/1989~
-~17198~^~306~^159.^1^^~1~^^^^^^^^^^^~04/01/1989~
-~17198~^~307~^110.^1^^~1~^^^^^^^^^^^~04/01/1989~
-~17198~^~318~^669.^1^^~1~^^^^^^^^^^^~04/01/1989~
-~17198~^~319~^201.^1^^~1~^^^^^^^^^^^~06/01/2002~
-~17198~^~320~^201.^1^^~1~^^^^^^^^^^^~06/01/2002~
-~17198~^~417~^21.^1^^~1~^^^^^^^^^^^~04/01/1989~
-~17198~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~
-~17198~^~432~^21.^1^^~1~^^^^^^^^^^^~04/01/1989~
-~17198~^~435~^21.^0^^~4~^~NC~^^^^^^^^^^~01/01/2001~
-~17198~^~601~^791.^1^^~1~^^^^^^^^^^^~04/01/1989~
-~17199~^~208~^139.^0^^~4~^~NC~^^^^^^^^^^~04/01/1989~
-~17199~^~268~^582.^0^^~4~^^^^^^^^^^^
-~17199~^~301~^7.^1^^~1~^^^^^^^^^^^~04/01/1989~
-~17199~^~304~^19.^1^^~1~^^^^^^^^^^^~04/01/1989~
-~17199~^~305~^364.^1^^~1~^^^^^^^^^^^~04/01/1989~
-~17199~^~306~^313.^1^^~1~^^^^^^^^^^^~04/01/1989~
-~17199~^~307~^70.^1^^~1~^^^^^^^^^^^~04/01/1989~
-~17199~^~318~^24612.^2^^~1~^^^^^^^^^^^~04/01/1989~
-~17199~^~319~^7391.^2^^~1~^^^^^^^^^^^~06/01/2002~
-~17199~^~320~^7391.^2^^~1~^^^^^^^^^^^~06/01/2002~
-~17199~^~417~^230.^4^19.^~1~^^^^^^^^^^^~04/01/1989~
-~17199~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~
-~17199~^~432~^230.^4^19.^~1~^^^^^^^^^^^~04/01/1989~
-~17199~^~435~^230.^0^^~4~^~NC~^^^^^^^^^^~01/01/2001~
-~17199~^~601~^371.^4^43.^~1~^^^^^^^^^^^~04/01/1989~
-~17200~^~208~^220.^0^^~4~^~NC~^^^^^^^^^^~04/01/1989~
-~17200~^~268~^920.^0^^~4~^^^^^^^^^^^
-~17200~^~301~^8.^1^^~1~^^^^^^^^^^^~04/01/1989~
-~17200~^~304~^22.^1^^~1~^^^^^^^^^^^~04/01/1989~
-~17200~^~305~^420.^1^^~1~^^^^^^^^^^^~04/01/1989~
-~17200~^~306~^221.^1^^~1~^^^^^^^^^^^~04/01/1989~
-~17200~^~307~^56.^1^^~1~^^^^^^^^^^^~04/01/1989~
-~17200~^~318~^24945.^1^^~1~^^^^^^^^^^^~04/01/1989~
-~17200~^~319~^7491.^1^^~1~^^^^^^^^^^^~06/01/2002~
-~17200~^~320~^7491.^1^^~1~^^^^^^^^^^^~06/01/2002~
-~17200~^~417~^73.^1^^~1~^^^^^^^^^^^~04/01/1989~
-~17200~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~
-~17200~^~432~^73.^1^^~1~^^^^^^^^^^^~04/01/1989~
-~17200~^~435~^73.^0^^~4~^~NC~^^^^^^^^^^~01/01/2001~
-~17200~^~601~^501.^1^^~1~^^^^^^^^^^^~04/01/1989~
-~17201~^~208~^238.^0^^~4~^~NC~^^^^^^^^^^~04/01/1989~
-~17201~^~268~^996.^0^^~4~^^^^^^^^^^^
-~17201~^~301~^9.^3^1.^~1~^^^^^^^^^^^~04/01/1989~
-~17201~^~304~^23.^3^0.^~1~^^^^^^^^^^^~04/01/1989~
-~17201~^~305~^427.^2^^~1~^^^^^^^^^^^~04/01/1989~
-~17201~^~306~^352.^3^26.^~1~^^^^^^^^^^^~04/01/1989~
-~17201~^~307~^124.^3^33.^~1~^^^^^^^^^^^~04/01/1989~
-~17201~^~318~^25998.^1^^~1~^^^^^^^^^^^~04/01/1989~
-~17201~^~319~^7777.^0^^~4~^~NC~^^^^^^^^^^~06/01/2002~
-~17201~^~320~^7782.^0^^~4~^~NC~^^^^^^^^^^~06/01/2002~
-~17201~^~417~^400.^2^^~1~^^^^^^^^^^^~04/01/1989~
-~17201~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~
-~17201~^~432~^400.^2^^~1~^^^^^^^^^^^~04/01/1989~
-~17201~^~435~^400.^0^^~4~^~NC~^^^^^^^^^^~01/01/2001~
-~17201~^~601~^493.^2^^~1~^^^^^^^^^^^~04/01/1989~
-~17202~^~208~^140.^0^^~4~^~NC~^^^^^^^^^^~03/01/2006~
-~17202~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2003~
-~17202~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2003~
-~17202~^~268~^586.^0^^~4~^~NC~^^^^^^^^^^~03/01/2006~
-~17202~^~301~^5.^2^^~1~^~A~^^^1^5.^6.^1^^^^~02/01/2003~
-~17202~^~304~^20.^2^^~1~^~A~^^^1^19.^20.^1^^^^~02/01/2003~
-~17202~^~305~^379.^2^^~1~^~A~^^^1^338.^419.^1^^^^~02/01/2003~
-~17202~^~306~^308.^2^^~1~^~A~^^^1^299.^317.^1^^^^~02/01/2003~
-~17202~^~307~^77.^2^^~1~^~A~^^^1^73.^81.^1^^^^~02/01/2003~
-~17202~^~318~^39056.^2^^~1~^~AS~^^^^^^^^^^~02/01/2003~
-~17202~^~319~^11705.^2^^~1~^~A~^^^1^2410.^21000.^1^^^^~02/01/2003~
-~17202~^~320~^11707.^2^^~1~^~AS~^^^^^^^^^^~02/01/2003~
-~17202~^~321~^11.^2^^~1~^~A~^^^1^11.^11.^^^^~1~^~02/01/2003~
-~17202~^~322~^13.^2^^~1~^~A~^^^1^11.^15.^1^^^~1~^~02/01/2003~
-~17202~^~334~^11.^2^^~1~^~A~^^^1^11.^11.^^^^~1~^~02/01/2003~
-~17202~^~337~^0.^2^^~1~^~A~^^^1^0.^0.^^^^~1~^~02/01/2003~
-~17202~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2006~
-~17202~^~417~^125.^2^^~1~^~A~^^^1^120.^130.^1^^^^~02/01/2003~
-~17202~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2003~
-~17202~^~432~^125.^2^^~1~^~A~^^^^^^^^^^~03/01/2006~
-~17202~^~435~^125.^0^^~4~^~NC~^^^^^^^^^^~03/01/2006~
-~17202~^~601~^334.^2^^~1~^~A~^^^1^317.^350.^1^^^^~02/01/2003~
-~17203~^~208~^192.^0^^~4~^~NC~^^^^^^^^^^~03/01/2006~
-~17203~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2003~
-~17203~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2003~
-~17203~^~268~^805.^0^^~4~^~NC~^^^^^^^^^^~03/01/2006~
-~17203~^~301~^6.^2^^~1~^~A~^^^1^6.^7.^1^^^^~02/01/2003~
-~17203~^~304~^20.^2^^~1~^~A~^^^1^16.^24.^1^^^^~02/01/2003~
-~17203~^~305~^460.^2^^~1~^~A~^^^1^449.^470.^1^^^^~02/01/2003~
-~17203~^~306~^329.^2^^~1~^~A~^^^1^323.^334.^1^^^^~02/01/2003~
-~17203~^~307~^78.^2^^~1~^~A~^^^1^77.^79.^1^^^^~02/01/2003~
-~17203~^~318~^70564.^2^^~1~^~AS~^^^^^^^^^^~01/01/2003~
-~17203~^~319~^21140.^2^^~1~^~A~^^^1^5680.^36600.^1^^^^~02/01/2003~
-~17203~^~320~^21145.^2^^~1~^~AS~^^^^^^^^^^~01/01/2003~
-~17203~^~321~^47.^2^^~1~^~A~^^^1^44.^50.^1^^^^~02/01/2003~
-~17203~^~322~^11.^2^^~1~^~A~^^^1^11.^11.^^^^~1~^~02/01/2003~
-~17203~^~334~^11.^2^^~1~^~A~^^^1^11.^11.^^^^~1~^~02/01/2003~
-~17203~^~337~^0.^2^^~1~^~A~^^^1^0.^0.^^^^~1~^~02/01/2003~
-~17203~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2006~
-~17203~^~417~^331.^2^^~1~^~A~^^^1^284.^377.^1^^^^~02/01/2003~
-~17203~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2003~
-~17203~^~432~^331.^2^^~1~^~A~^^^^^^^^^^~03/01/2006~
-~17203~^~435~^331.^0^^~4~^~NC~^^^^^^^^^^~03/01/2006~
-~17203~^~601~^511.^2^^~1~^~A~^^^1^489.^532.^1^^^^~02/01/2003~
-~17204~^~208~^193.^0^^~4~^~NC~^^^^^^^^^^~03/01/2006~
-~17204~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2003~
-~17204~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2003~
-~17204~^~268~^807.^0^^~4~^~NC~^^^^^^^^^^~03/01/2006~
-~17204~^~301~^7.^2^^~1~^~A~^^^1^6.^8.^1^^^^~02/01/2003~
-~17204~^~304~^23.^2^^~1~^~A~^^^1^22.^24.^1^^^^~02/01/2003~
-~17204~^~305~^483.^2^^~1~^~A~^^^1^460.^506.^1^^^^~02/01/2003~
-~17204~^~306~^353.^2^^~1~^~A~^^^1^345.^360.^1^^^^~02/01/2003~
-~17204~^~307~^85.^2^^~1~^~A~^^^1^85.^86.^1^^^^~02/01/2003~
-~17204~^~318~^66989.^2^^~1~^~AS~^^^^^^^^^^~01/01/2003~
-~17204~^~319~^20070.^2^^~1~^~A~^^^1^4740.^35400.^1^^^^~02/01/2003~
-~17204~^~320~^20074.^2^^~1~^~AS~^^^^^^^^^^~01/01/2003~
-~17204~^~321~^40.^2^^~1~^~A~^^^1^31.^49.^1^^^^~02/01/2003~
-~17204~^~322~^11.^2^^~1~^~A~^^^1^11.^11.^^^^~1~^~02/01/2003~
-~17204~^~334~^16.^2^^~1~^~A~^^^1^11.^20.^1^^^~1~^~02/01/2003~
-~17204~^~337~^0.^2^^~1~^~A~^^^1^0.^0.^^^^~1~^~02/01/2003~
-~17204~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2006~
-~17204~^~417~^350.^2^^~1~^~A~^^^2^320.^380.^^^^^~02/01/2003~
-~17204~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2003~
-~17204~^~432~^350.^2^^~1~^~A~^^^^^^^^^^~03/01/2006~
-~17204~^~435~^350.^0^^~4~^~NC~^^^^^^^^^^~03/01/2006~
-~17204~^~601~^485.^2^^~1~^~A~^^^1^436.^534.^1^^^^~02/01/2003~
-~17205~^~208~^95.^0^^~4~^~NC~^^^^^^^^^^~04/01/1989~
-~17205~^~268~^397.^0^^~4~^^^^^^^^^^^
-~17205~^~301~^10.^0^^~1~^^^^^^^^^^^~04/01/1989~
-~17205~^~304~^14.^0^^~1~^^^^^^^^^^^~04/01/1989~
-~17205~^~305~^219.^0^^~1~^^^^^^^^^^^~04/01/1989~
-~17205~^~306~^238.^4^4.^~1~^^^^^^^^^^^~04/01/1989~
-~17205~^~307~^157.^4^1.^~1~^^^^^^^^^^^~04/01/1989~
-~17205~^~318~^89.^8^10.^~1~^^^^^^^^^^^~04/01/1989~
-~17205~^~319~^27.^8^3.^~1~^^^^^^^^^^^~06/01/2002~
-~17205~^~320~^27.^8^3.^~1~^^^^^^^^^^^~06/01/2002~
-~17205~^~417~^12.^0^^~1~^^^^^^^^^^^~04/01/1989~
-~17205~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~
-~17205~^~432~^12.^0^^~1~^^^^^^^^^^^~04/01/1989~
-~17205~^~435~^12.^0^^~4~^~NC~^^^^^^^^^^~01/01/2001~
-~17206~^~208~^113.^0^^~4~^~NC~^^^^^^^^^^~04/01/1989~
-~17206~^~268~^473.^0^^~4~^^^^^^^^^^^
-~17206~^~301~^12.^0^^~1~^^^^^^^^^^^~04/01/1989~
-~17206~^~304~^11.^0^^~1~^^^^^^^^^^^~04/01/1989~
-~17206~^~305~^188.^0^^~1~^^^^^^^^^^^~04/01/1989~
-~17206~^~306~^127.^0^^~1~^^^^^^^^^^^~04/01/1989~
-~17206~^~307~^84.^0^^~1~^^^^^^^^^^^~04/01/1989~
-~17206~^~318~^106.^0^^~1~^^^^^^^^^^^~04/01/1989~
-~17206~^~319~^32.^0^^~1~^^^^^^^^^^^~06/01/2002~
-~17206~^~320~^32.^0^^~1~^^^^^^^^^^^~06/01/2002~
-~17206~^~417~^8.^0^^~1~^^^^^^^^^^^~04/01/1989~
-~17206~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~
-~17206~^~432~^8.^0^^~1~^^^^^^^^^^^~04/01/1989~
-~17206~^~435~^8.^0^^~4~^~NC~^^^^^^^^^^~01/01/2001~
-~17206~^~601~^284.^0^^~1~^^^^^^^^^^^~04/01/1989~
-~17207~^~208~^90.^0^^~4~^~NC~^^^^^^^^^^~04/01/1989~
-~17207~^~268~^377.^0^^~4~^^^^^^^^^^^
-~17207~^~301~^7.^5^0.^~1~^^^^^^^^^^^~04/01/1989~
-~17207~^~304~^12.^1^^~1~^^^^^^^^^^^~04/01/1989~
-~17207~^~305~^288.^1^^~1~^^^^^^^^^^^~04/01/1989~
-~17207~^~306~^274.^1^^~1~^^^^^^^^^^^~04/01/1989~
-~17207~^~307~^108.^1^^~1~^^^^^^^^^^^~04/01/1989~
-~17207~^~318~^0.^0^^~1~^^^^^^^^^^^~04/01/1989~
-~17207~^~319~^0.^0^^~1~^^^^^^^^^^^~06/01/2002~
-~17207~^~320~^0.^0^^~1~^^^^^^^^^^^~06/01/2002~
-~17207~^~417~^11.^0^^~1~^^^^^^^^^^^~04/01/1989~
-~17207~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~
-~17207~^~432~^11.^0^^~1~^^^^^^^^^^^~04/01/1989~
-~17207~^~435~^11.^0^^~4~^~NC~^^^^^^^^^^~01/01/2001~
-~17207~^~601~^229.^0^^~1~^^^^^^^^^^^~04/01/1989~
-~17208~^~208~^104.^0^^~4~^~NC~^^^^^^^^^^~04/01/1989~
-~17208~^~268~^435.^0^^~4~^^^^^^^^^^^
-~17208~^~301~^7.^0^^~1~^^^^^^^^^^^~04/01/1989~
-~17208~^~304~^8.^0^^~1~^^^^^^^^^^^~04/01/1989~
-~17208~^~305~^232.^0^^~1~^^^^^^^^^^^~04/01/1989~
-~17208~^~306~^142.^0^^~1~^^^^^^^^^^^~04/01/1989~
-~17208~^~307~^56.^0^^~1~^^^^^^^^^^^~04/01/1989~
-~17208~^~318~^0.^0^^~1~^^^^^^^^^^^~04/01/1989~
-~17208~^~319~^0.^0^^~1~^^^^^^^^^^^~06/01/2002~
-~17208~^~320~^0.^0^^~1~^^^^^^^^^^^~06/01/2002~
-~17208~^~417~^8.^0^^~1~^^^^^^^^^^^~04/01/1989~
-~17208~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~
-~17208~^~432~^8.^0^^~1~^^^^^^^^^^^~04/01/1989~
-~17208~^~435~^8.^0^^~4~^~NC~^^^^^^^^^^~01/01/2001~
-~17208~^~601~^263.^0^^~1~^^^^^^^^^^^~04/01/1989~
-~17209~^~208~^276.^0^^~4~^~NC~^^^^^^^^^^~04/01/1989~
-~17209~^~268~^1155.^0^^~4~^^^^^^^^^^^
-~17209~^~301~^162.^5^23.^~1~^^^^^^^^^^^~04/01/1989~
-~17209~^~304~^18.^0^^~1~^^^^^^^^^^^~04/01/1989~
-~17209~^~305~^337.^0^^~1~^^^^^^^^^^^~04/01/1989~
-~17209~^~306~^288.^0^^~1~^^^^^^^^^^^~04/01/1989~
-~17209~^~307~^59.^0^^~1~^^^^^^^^^^^~04/01/1989~
-~17209~^~318~^0.^0^^~1~^^^^^^^^^^^~04/01/1989~
-~17209~^~319~^0.^0^^~1~^^^^^^^^^^^~06/01/2002~
-~17209~^~320~^0.^0^^~1~^^^^^^^^^^^~06/01/2002~
-~17209~^~417~^5.^0^^~1~^^^^^^^^^^^~04/01/1989~
-~17209~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~
-~17209~^~432~^5.^0^^~1~^^^^^^^^^^^~04/01/1989~
-~17209~^~435~^5.^0^^~4~^~NC~^^^^^^^^^^~01/01/2001~
-~17209~^~601~^213.^0^^~1~^^^^^^^^^^^~04/01/1989~
-~17210~^~208~^152.^0^^~4~^~NC~^^^^^^^^^^~04/01/1989~
-~17210~^~268~^636.^0^^~4~^^^^^^^^^^^
-~17210~^~301~^8.^1^^~1~^^^^^^^^^^^~04/01/1989~
-~17210~^~304~^21.^1^^~1~^^^^^^^^^^^~04/01/1989~
-~17210~^~305~^400.^1^^~1~^^^^^^^^^^^~04/01/1989~
-~17210~^~306~^420.^1^^~1~^^^^^^^^^^^~04/01/1989~
-~17210~^~307~^75.^1^^~1~^^^^^^^^^^^~04/01/1989~
-~17210~^~318~^0.^8^0.^~1~^^^^^^^^^^^~04/01/1989~
-~17210~^~319~^0.^8^0.^~1~^^^^^^^^^^^~06/01/2002~
-~17210~^~320~^0.^8^0.^~1~^^^^^^^^^^^~06/01/2002~
-~17210~^~417~^13.^1^^~1~^^^^^^^^^^^~04/01/1989~
-~17210~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~
-~17210~^~432~^13.^1^^~1~^^^^^^^^^^^~04/01/1989~
-~17210~^~435~^13.^0^^~4~^~NC~^^^^^^^^^^~01/01/2001~
-~17210~^~601~^260.^1^^~1~^^^^^^^^^^^~04/01/1989~
-~17211~^~208~^234.^0^^~4~^~NC~^^^^^^^^^^~04/01/1989~
-~17211~^~268~^979.^0^^~4~^^^^^^^^^^^
-~17211~^~301~^12.^0^^~1~^^^^^^^^^^^~04/01/1989~
-~17211~^~304~^19.^0^^~1~^^^^^^^^^^^~04/01/1989~
-~17211~^~305~^431.^0^^~1~^^^^^^^^^^^~04/01/1989~
-~17211~^~306~^291.^0^^~1~^^^^^^^^^^^~04/01/1989~
-~17211~^~307~^52.^0^^~1~^^^^^^^^^^^~04/01/1989~
-~17211~^~318~^0.^0^^~1~^^^^^^^^^^^~04/01/1989~
-~17211~^~319~^0.^0^^~1~^^^^^^^^^^^~06/01/2002~
-~17211~^~320~^0.^0^^~1~^^^^^^^^^^^~06/01/2002~
-~17211~^~417~^13.^0^^~1~^^^^^^^^^^^~04/01/1989~
-~17211~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~
-~17211~^~432~^13.^0^^~1~^^^^^^^^^^^~04/01/1989~
-~17211~^~435~^13.^0^^~4~^~NC~^^^^^^^^^^~01/01/2001~
-~17211~^~601~^400.^0^^~1~^^^^^^^^^^^~04/01/1989~
-~17212~^~208~^182.^0^^~4~^~NC~^^^^^^^^^^~04/01/1989~
-~17212~^~268~^761.^0^^~4~^^^^^^^^^^^
-~17212~^~301~^19.^0^^~1~^^^^^^^^^^^~04/01/1989~
-~17212~^~304~^18.^0^^~1~^^^^^^^^^^^~04/01/1989~
-~17212~^~305~^329.^0^^~1~^^^^^^^^^^^~04/01/1989~
-~17212~^~306~^278.^0^^~1~^^^^^^^^^^^~04/01/1989~
-~17212~^~307~^67.^0^^~1~^^^^^^^^^^^~04/01/1989~
-~17212~^~318~^0.^8^0.^~1~^^^^^^^^^^^~04/01/1989~
-~17212~^~319~^0.^8^0.^~1~^^^^^^^^^^^~06/01/2002~
-~17212~^~320~^0.^8^0.^~1~^^^^^^^^^^^~06/01/2002~
-~17212~^~417~^3.^0^^~1~^^^^^^^^^^^~04/01/1989~
-~17212~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~
-~17212~^~432~^3.^0^^~1~^^^^^^^^^^^~04/01/1989~
-~17212~^~435~^3.^0^^~4~^~NC~^^^^^^^^^^~01/01/2001~
-~17212~^~601~^173.^0^^~1~^^^^^^^^^^^~04/01/1989~
-~17213~^~208~^256.^0^^~4~^~NC~^^^^^^^^^^~04/01/1989~
-~17213~^~268~^1071.^0^^~4~^^^^^^^^^^^
-~17213~^~301~^18.^0^^~1~^^^^^^^^^^^~04/01/1989~
-~17213~^~304~^24.^0^^~1~^^^^^^^^^^^~04/01/1989~
-~17213~^~305~^512.^0^^~1~^^^^^^^^^^^~04/01/1989~
-~17213~^~306~^278.^0^^~1~^^^^^^^^^^^~04/01/1989~
-~17213~^~307~^68.^0^^~1~^^^^^^^^^^^~04/01/1989~
-~17213~^~318~^0.^8^0.^~1~^^^^^^^^^^^~04/01/1989~
-~17213~^~319~^0.^8^0.^~1~^^^^^^^^^^^~06/01/2002~
-~17213~^~320~^0.^8^0.^~1~^^^^^^^^^^^~06/01/2002~
-~17213~^~417~^3.^0^^~1~^^^^^^^^^^^~04/01/1989~
-~17213~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~
-~17213~^~432~^3.^0^^~1~^^^^^^^^^^^~04/01/1989~
-~17213~^~435~^3.^0^^~4~^~NC~^^^^^^^^^^~01/01/2001~
-~17214~^~208~^101.^0^^~4~^~NC~^^^^^^^^^^~04/01/1989~
-~17214~^~268~^423.^0^^~4~^^^^^^^^^^^
-~17214~^~301~^9.^0^^~1~^^^^^^^^^^^~04/01/1989~
-~17214~^~304~^21.^0^^~1~^^^^^^^^^^^~04/01/1989~
-~17214~^~305~^280.^0^^~1~^^^^^^^^^^^~04/01/1989~
-~17214~^~306~^358.^4^5.^~1~^^^^^^^^^^^~04/01/1989~
-~17214~^~307~^84.^4^1.^~1~^^^^^^^^^^^~04/01/1989~
-~17214~^~318~^0.^8^0.^~1~^^^^^^^^^^^~04/01/1989~
-~17214~^~319~^0.^8^0.^~1~^^^^^^^^^^^~06/01/2002~
-~17214~^~320~^0.^8^0.^~1~^^^^^^^^^^^~06/01/2002~
-~17214~^~417~^4.^0^^~1~^^^^^^^^^^^~04/01/1989~
-~17214~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~
-~17214~^~432~^4.^0^^~1~^^^^^^^^^^^~04/01/1989~
-~17214~^~435~^4.^0^^~4~^~NC~^^^^^^^^^^~01/01/2001~
-~17214~^~601~^250.^3^15.^~1~^^^^^^^^^^^~04/01/1989~
-~17215~^~208~^156.^0^^~4~^~NC~^^^^^^^^^^~04/01/1989~
-~17215~^~268~^653.^0^^~4~^^^^^^^^^^^
-~17215~^~301~^13.^0^^~1~^^^^^^^^^^^~04/01/1989~
-~17215~^~304~^21.^0^^~1~^^^^^^^^^^^~04/01/1989~
-~17215~^~305~^341.^0^^~1~^^^^^^^^^^^~04/01/1989~
-~17215~^~306~^248.^0^^~1~^^^^^^^^^^^~04/01/1989~
-~17215~^~307~^58.^0^^~1~^^^^^^^^^^^~04/01/1989~
-~17215~^~318~^0.^0^^~1~^^^^^^^^^^^~04/01/1989~
-~17215~^~319~^0.^0^^~1~^^^^^^^^^^^~06/01/2002~
-~17215~^~320~^0.^0^^~1~^^^^^^^^^^^~06/01/2002~
-~17215~^~417~^4.^0^^~1~^^^^^^^^^^^~04/01/1989~
-~17215~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~
-~17215~^~432~^4.^0^^~1~^^^^^^^^^^^~04/01/1989~
-~17215~^~435~^4.^0^^~4~^~NC~^^^^^^^^^^~01/01/2001~
-~17215~^~601~^385.^0^^~1~^^^^^^^^^^^~04/01/1989~
-~17216~^~208~^98.^0^^~4~^~NC~^^^^^^^^^^~04/01/1989~
-~17216~^~268~^410.^0^^~4~^^^^^^^^^^^
-~17216~^~301~^6.^5^0.^~1~^^^^^^^^^^^~04/01/1989~
-~17216~^~304~^17.^1^^~1~^^^^^^^^^^^~04/01/1989~
-~17216~^~305~^339.^1^^~1~^^^^^^^^^^^~04/01/1989~
-~17216~^~306~^362.^1^^~1~^^^^^^^^^^^~04/01/1989~
-~17216~^~307~^97.^1^^~1~^^^^^^^^^^^~04/01/1989~
-~17216~^~318~^0.^8^0.^~1~^^^^^^^^^^^~04/01/1989~
-~17216~^~319~^0.^8^0.^~1~^^^^^^^^^^^~06/01/2002~
-~17216~^~320~^0.^8^0.^~1~^^^^^^^^^^^~06/01/2002~
-~17216~^~417~^4.^0^^~1~^^^^^^^^^^^~04/01/1989~
-~17216~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~
-~17216~^~432~^4.^0^^~1~^^^^^^^^^^^~04/01/1989~
-~17216~^~435~^4.^0^^~4~^~NC~^^^^^^^^^^~01/01/2001~
-~17216~^~601~^340.^1^^~1~^^^^^^^^^^^~04/01/1989~
-~17217~^~208~^129.^0^^~4~^~NC~^^^^^^^^^^~04/01/1989~
-~17217~^~268~^540.^0^^~4~^^^^^^^^^^^
-~17217~^~301~^7.^0^^~1~^^^^^^^^^^^~04/01/1989~
-~17217~^~304~^14.^0^^~1~^^^^^^^^^^^~04/01/1989~
-~17217~^~305~^312.^0^^~1~^^^^^^^^^^^~04/01/1989~
-~17217~^~306~^215.^0^^~1~^^^^^^^^^^^~04/01/1989~
-~17217~^~307~^58.^0^^~1~^^^^^^^^^^^~04/01/1989~
-~17217~^~318~^0.^0^^~1~^^^^^^^^^^^~04/01/1989~
-~17217~^~319~^0.^0^^~1~^^^^^^^^^^^~06/01/2002~
-~17217~^~320~^0.^0^^~1~^^^^^^^^^^^~06/01/2002~
-~17217~^~417~^4.^0^^~1~^^^^^^^^^^^~04/01/1989~
-~17217~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~
-~17217~^~432~^4.^0^^~1~^^^^^^^^^^^~04/01/1989~
-~17217~^~435~^4.^0^^~4~^~NC~^^^^^^^^^^~01/01/2001~
-~17217~^~601~^447.^0^^~1~^^^^^^^^^^^~04/01/1989~
-~17218~^~208~^101.^0^^~4~^~NC~^^^^^^^^^^~03/01/2004~
-~17218~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~
-~17218~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~
-~17218~^~268~^423.^0^^~4~^~NC~^^^^^^^^^^~03/01/2004~
-~17218~^~301~^3.^1^^~1~^~A~^^^^^^^^^^~02/01/2003~
-~17218~^~304~^23.^1^^~1~^~A~^^^^^^^^^^~02/01/2003~
-~17218~^~305~^533.^1^^~1~^~A~^^^^^^^^^^~02/01/2003~
-~17218~^~306~^488.^1^^~1~^~A~^^^^^^^^^^~02/01/2003~
-~17218~^~307~^67.^1^^~1~^~A~^^^^^^^^^^~02/01/2003~
-~17218~^~318~^0.^0^^~1~^~AS~^^^^^^^^^^~02/01/2003~
-~17218~^~319~^0.^1^^~1~^~A~^^^^^^^^^~1~^~02/01/2003~
-~17218~^~320~^0.^0^^~1~^~AS~^^^^^^^^^^~02/01/2003~
-~17218~^~321~^0.^1^^~1~^~A~^^^^^^^^^~1~^~02/01/2003~
-~17218~^~322~^0.^1^^~1~^~A~^^^^^^^^^~1~^~02/01/2003~
-~17218~^~334~^0.^1^^~1~^~A~^^^^^^^^^~1~^~02/01/2003~
-~17218~^~337~^0.^1^^~1~^~A~^^^^^^^^^~1~^~02/01/2003~
-~17218~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~
-~17218~^~417~^22.^1^^~1~^~A~^^^^^^^^^^~04/01/2003~
-~17218~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~
-~17218~^~432~^22.^1^^~1~^~A~^^^^^^^^^^~04/01/2003~
-~17218~^~435~^22.^0^^~4~^~NC~^^^^^^^^^^~03/01/2004~
-~17218~^~601~^250.^1^^~1~^~A~^^^^^^^^^^~02/01/2003~
-~17219~^~208~^125.^0^^~4~^~NC~^^^^^^^^^^~05/01/2009~
-~17219~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~
-~17219~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~
-~17219~^~268~^522.^0^^~4~^~NC~^^^^^^^^^^~05/01/2009~
-~17219~^~301~^4.^1^^~1~^~A~^^^^^^^^^^~02/01/2003~
-~17219~^~304~^24.^1^^~1~^~A~^^^^^^^^^^~02/01/2003~
-~17219~^~305~^627.^1^^~1~^~A~^^^^^^^^^^~02/01/2003~
-~17219~^~306~^435.^1^^~1~^~A~^^^^^^^^^^~02/01/2003~
-~17219~^~307~^59.^1^^~1~^~A~^^^^^^^^^^~02/01/2003~
-~17219~^~318~^0.^0^^~1~^~AS~^^^^^^^^^^~02/01/2003~
-~17219~^~319~^0.^1^^~1~^~A~^^^^^^^^^~1~^~02/01/2003~
-~17219~^~320~^0.^0^^~1~^~AS~^^^^^^^^^^~02/01/2003~
-~17219~^~321~^0.^1^^~1~^~A~^^^^^^^^^~1~^~02/01/2003~
-~17219~^~322~^0.^1^^~1~^~A~^^^^^^^^^~1~^~02/01/2003~
-~17219~^~324~^0.^0^^~13~^~AI~^^^^^^^^^^~02/01/2009~
-~17219~^~334~^0.^1^^~1~^~A~^^^^^^^^^~1~^~02/01/2003~
-~17219~^~337~^0.^1^^~1~^~A~^^^^^^^^^~1~^~02/01/2003~
-~17219~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~
-~17219~^~417~^20.^1^^~1~^~A~^^^^^^^^^^~04/01/2003~
-~17219~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~
-~17219~^~432~^20.^1^^~1~^~A~^^^^^^^^^^~02/01/2009~
-~17219~^~435~^20.^0^^~4~^~NC~^^^^^^^^^^~05/01/2009~
-~17219~^~601~^350.^1^^~1~^~A~^^^^^^^^^^~02/01/2003~
-~17220~^~208~^222.^0^^~4~^~NC~^^^^^^^^^^~04/01/1989~
-~17220~^~268~^929.^0^^~4~^^^^^^^^^^^
-~17220~^~301~^9.^7^1.^~1~^^^^^^^^^^^~04/01/1989~
-~17220~^~304~^21.^7^2.^~1~^^^^^^^^^^^~04/01/1989~
-~17220~^~305~^184.^6^14.^~1~^^^^^^^^^^^~04/01/1989~
-~17220~^~306~^257.^7^17.^~1~^^^^^^^^^^^~04/01/1989~
-~17220~^~307~^78.^2^^~1~^^^^^^^^^^^~04/01/1989~
-~17220~^~318~^0.^9^0.^~1~^^^^^^^^^^^~04/01/1989~
-~17220~^~319~^0.^9^0.^~1~^^^^^^^^^^^~06/01/2002~
-~17220~^~320~^0.^9^0.^~1~^^^^^^^^^^^~06/01/2002~
-~17220~^~417~^4.^2^^~1~^^^^^^^^^^^~04/01/1989~
-~17220~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~
-~17220~^~432~^4.^2^^~1~^^^^^^^^^^^~04/01/1989~
-~17220~^~435~^4.^0^^~4~^~NC~^^^^^^^^^^~01/01/2001~
-~17220~^~601~^156.^2^^~1~^^^^^^^^^^^~04/01/1989~
-~17221~^~208~^275.^0^^~4~^~NC~^^^^^^^^^^~04/01/1989~
-~17221~^~268~^1151.^0^^~4~^^^^^^^^^^^
-~17221~^~301~^10.^2^^~1~^^^^^^^^^^^~04/01/1989~
-~17221~^~304~^16.^2^^~1~^^^^^^^^^^^~04/01/1989~
-~17221~^~305~^134.^1^^~1~^^^^^^^^^^^~04/01/1989~
-~17221~^~306~^158.^2^^~1~^^^^^^^^^^^~04/01/1989~
-~17221~^~307~^67.^2^^~1~^^^^^^^^^^^~04/01/1989~
-~17221~^~318~^0.^0^^~1~^^^^^^^^^^^~04/01/1989~
-~17221~^~319~^0.^0^^~1~^^^^^^^^^^^~06/01/2002~
-~17221~^~320~^0.^0^^~1~^^^^^^^^^^^~06/01/2002~
-~17221~^~417~^3.^1^^~1~^^^^^^^^^^^~04/01/1989~
-~17221~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~
-~17221~^~432~^3.^1^^~1~^^^^^^^^^^^~04/01/1989~
-~17221~^~435~^3.^0^^~4~^~NC~^^^^^^^^^^~01/01/2001~
-~17221~^~601~^189.^2^^~1~^^^^^^^^^^^~04/01/1989~
-~17222~^~208~^131.^0^^~4~^~NC~^^^^^^^^^^~04/01/1989~
-~17222~^~268~^548.^0^^~4~^^^^^^^^^^^
-~17222~^~301~^7.^1^^~1~^^^^^^^^^^^~04/01/1989~
-~17222~^~304~^17.^1^^~1~^^^^^^^^^^^~04/01/1989~
-~17222~^~305~^159.^1^^~1~^^^^^^^^^^^~04/01/1989~
-~17222~^~306~^271.^1^^~1~^^^^^^^^^^^~04/01/1989~
-~17222~^~307~^82.^1^^~1~^^^^^^^^^^^~04/01/1989~
-~17222~^~318~^1.^10^1.^~1~^^^^^^^^^^^~04/01/1989~
-~17222~^~319~^0.^10^0.^~1~^^^^^^^^^^^~06/01/2002~
-~17222~^~320~^0.^10^0.^~1~^^^^^^^^^^^~06/01/2002~
-~17222~^~417~^5.^1^^~1~^^^^^^^^^^^~04/01/1989~
-~17222~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~
-~17222~^~432~^5.^1^^~1~^^^^^^^^^^^~04/01/1989~
-~17222~^~435~^5.^0^^~4~^~NC~^^^^^^^^^^~01/01/2001~
-~17222~^~601~^62.^0^^~1~^^^^^^^^^^^~04/01/1989~
-~17223~^~208~^202.^0^^~4~^~NC~^^^^^^^^^^~04/01/1989~
-~17223~^~268~^845.^0^^~4~^^^^^^^^^^^
-~17223~^~301~^9.^1^^~1~^^^^^^^^^^^~04/01/1989~
-~17223~^~304~^18.^1^^~1~^^^^^^^^^^^~04/01/1989~
-~17223~^~305~^166.^1^^~1~^^^^^^^^^^^~04/01/1989~
-~17223~^~306~^162.^1^^~1~^^^^^^^^^^^~04/01/1989~
-~17223~^~307~^64.^1^^~1~^^^^^^^^^^^~04/01/1989~
-~17223~^~318~^0.^0^^~1~^^^^^^^^^^^~04/01/1989~
-~17223~^~319~^0.^0^^~1~^^^^^^^^^^^~06/01/2002~
-~17223~^~320~^0.^0^^~1~^^^^^^^^^^^~06/01/2002~
-~17223~^~417~^9.^1^^~1~^^^^^^^^^^^~04/01/1989~
-~17223~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~
-~17223~^~432~^9.^1^^~1~^^^^^^^^^^^~04/01/1989~
-~17223~^~435~^9.^0^^~4~^~NC~^^^^^^^^^^~01/01/2001~
-~17223~^~601~^238.^0^^~1~^^^^^^^^^^^~04/01/1989~
-~17224~^~208~^282.^0^^~4~^~NC~^^^^^^^^^^~04/01/1989~
-~17224~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2003~
-~17224~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2003~
-~17224~^~268~^1180.^0^^~4~^^^^^^^^^^^~11/01/2006~
-~17224~^~301~^16.^0^^~1~^^^^^^^^^^^~04/01/1989~
-~17224~^~304~^21.^0^^~1~^^^^^^^^^^^~04/01/1989~
-~17224~^~305~^157.^0^^~1~^^^^^^^^^^^~04/01/1989~
-~17224~^~306~^222.^0^^~1~^^^^^^^^^^^~04/01/1989~
-~17224~^~307~^59.^0^^~1~^^^^^^^^^^^~04/01/1989~
-~17224~^~318~^0.^0^^~4~^^^^^^^^^^^~04/01/1989~
-~17224~^~319~^0.^0^^~4~^~NR~^^^^^^^^^^~01/01/2003~
-~17224~^~320~^0.^0^^~4~^~NC~^^^^^^^^^^~11/01/2006~
-~17224~^~321~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2003~
-~17224~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2003~
-~17224~^~324~^2.^40^^~1~^~A~^^^^^^^^^^~02/01/2009~
-~17224~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2003~
-~17224~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2003~
-~17224~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2003~
-~17224~^~417~^18.^0^^~1~^^^^^^^^^^^~04/01/1989~
-~17224~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~
-~17224~^~432~^18.^0^^~1~^^^^^^^^^^^~11/01/2006~
-~17224~^~435~^18.^0^^~4~^~NC~^^^^^^^^^^~02/01/2009~
-~17224~^~601~^73.^0^^~1~^^^^^^^^^^^~04/01/1989~
-~17225~^~208~^283.^0^^~4~^~NC~^^^^^^^^^^~04/01/1989~
-~17225~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2003~
-~17225~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2003~
-~17225~^~268~^1184.^0^^~4~^^^^^^^^^^^~11/01/2006~
-~17225~^~301~^22.^0^^~1~^^^^^^^^^^^~04/01/1989~
-~17225~^~304~^24.^0^^~1~^^^^^^^^^^^~04/01/1989~
-~17225~^~305~^201.^0^^~1~^^^^^^^^^^^~04/01/1989~
-~17225~^~306~^339.^0^^~1~^^^^^^^^^^^~04/01/1989~
-~17225~^~307~^81.^0^^~1~^^^^^^^^^^^~04/01/1989~
-~17225~^~318~^0.^0^^~4~^^^^^^^^^^^~04/01/1989~
-~17225~^~319~^0.^0^^~4~^~NR~^^^^^^^^^^~01/01/2003~
-~17225~^~320~^0.^0^^~4~^~NC~^^^^^^^^^^~11/01/2006~
-~17225~^~321~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2003~
-~17225~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2003~
-~17225~^~324~^2.^40^^~1~^~A~^^^^^^^^^^~02/01/2009~
-~17225~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2003~
-~17225~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2003~
-~17225~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2003~
-~17225~^~417~^19.^0^^~1~^^^^^^^^^^^~04/01/1989~
-~17225~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~
-~17225~^~432~^19.^0^^~1~^^^^^^^^^^^~11/01/2006~
-~17225~^~435~^19.^0^^~4~^~NC~^^^^^^^^^^~02/01/2009~
-~17225~^~601~^97.^0^^~1~^^^^^^^^^^^~04/01/1989~
-~17226~^~208~^243.^0^^~4~^~NC~^^^^^^^^^^~12/01/1995~
-~17226~^~268~^1017.^0^^~4~^^^^^^^^^^^
-~17226~^~301~^12.^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~
-~17226~^~304~^22.^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~
-~17226~^~305~^166.^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~
-~17226~^~306~^239.^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~
-~17226~^~307~^59.^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~
-~17226~^~318~^0.^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~
-~17226~^~319~^0.^0^^~4~^~PAE~^^^^^^^^^^~06/01/2002~
-~17226~^~320~^0.^0^^~4~^~PAE~^^^^^^^^^^~06/01/2002~
-~17226~^~417~^19.^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~
-~17226~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~
-~17226~^~432~^19.^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~
-~17226~^~435~^19.^0^^~4~^~NC~^^^^^^^^^^~01/01/2001~
-~17226~^~601~^70.^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~
-~17227~^~208~^271.^0^^~4~^~NC~^^^^^^^^^^~12/01/1995~
-~17227~^~268~^1134.^0^^~4~^^^^^^^^^^^~02/01/2006~
-~17227~^~301~^16.^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~
-~17227~^~304~^24.^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~
-~17227~^~305~^193.^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~
-~17227~^~306~^318.^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~
-~17227~^~307~^72.^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~
-~17227~^~318~^0.^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~
-~17227~^~417~^19.^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~
-~17227~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~
-~17227~^~432~^19.^0^^~4~^~PAE~^^^^^^^^^^~02/01/2006~
-~17227~^~435~^19.^0^^~4~^~NC~^^^^^^^^^^~02/01/2006~
-~17227~^~601~^96.^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~
-~17228~^~208~^201.^0^^~4~^~NC~^^^^^^^^^^~12/01/1995~
-~17228~^~268~^841.^0^^~4~^^^^^^^^^^^
-~17228~^~301~^11.^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~
-~17228~^~304~^22.^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~
-~17228~^~305~^170.^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~
-~17228~^~306~^214.^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~
-~17228~^~307~^72.^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~
-~17228~^~318~^0.^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~
-~17228~^~319~^0.^0^^~4~^~PAE~^^^^^^^^^^~06/01/2002~
-~17228~^~320~^0.^0^^~4~^~PAE~^^^^^^^^^^~06/01/2002~
-~17228~^~417~^19.^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~
-~17228~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~
-~17228~^~432~^19.^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~
-~17228~^~435~^19.^0^^~4~^~NC~^^^^^^^^^^~01/01/2001~
-~17228~^~601~^72.^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~
-~17229~^~208~^243.^0^^~4~^~NC~^^^^^^^^^^~12/01/1995~
-~17229~^~268~^1017.^0^^~4~^^^^^^^^^^^
-~17229~^~301~^20.^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~
-~17229~^~304~^22.^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~
-~17229~^~305~^166.^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~
-~17229~^~306~^257.^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~
-~17229~^~307~^72.^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~
-~17229~^~318~^0.^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~
-~17229~^~319~^0.^0^^~4~^~PAE~^^^^^^^^^^~06/01/2002~
-~17229~^~320~^0.^0^^~4~^~PAE~^^^^^^^^^^~06/01/2002~
-~17229~^~417~^17.^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~
-~17229~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~
-~17229~^~432~^17.^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~
-~17229~^~435~^17.^0^^~4~^~NC~^^^^^^^^^^~01/01/2001~
-~17229~^~601~^106.^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~
-~17230~^~208~^209.^0^^~4~^~NC~^^^^^^^^^^~12/01/1995~
-~17230~^~268~^874.^0^^~4~^^^^^^^^^^^
-~17230~^~301~^8.^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~
-~17230~^~304~^24.^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~
-~17230~^~305~^175.^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~
-~17230~^~306~^258.^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~
-~17230~^~307~^57.^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~
-~17230~^~318~^0.^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~
-~17230~^~319~^0.^0^^~4~^~PAE~^^^^^^^^^^~06/01/2002~
-~17230~^~320~^0.^0^^~4~^~PAE~^^^^^^^^^^~06/01/2002~
-~17230~^~417~^20.^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~
-~17230~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~
-~17230~^~432~^20.^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~
-~17230~^~435~^20.^0^^~4~^~NC~^^^^^^^^^^~01/01/2001~
-~17230~^~601~^68.^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~
-~17231~^~208~^242.^0^^~4~^~NC~^^^^^^^^^^~12/01/1995~
-~17231~^~268~^1013.^0^^~4~^^^^^^^^^^^
-~17231~^~301~^10.^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~
-~17231~^~304~^24.^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~
-~17231~^~305~^194.^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~
-~17231~^~306~^319.^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~
-~17231~^~307~^67.^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~
-~17231~^~318~^0.^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~
-~17231~^~319~^0.^0^^~4~^~PAE~^^^^^^^^^^~06/01/2002~
-~17231~^~320~^0.^0^^~4~^~PAE~^^^^^^^^^^~06/01/2002~
-~17231~^~417~^20.^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~
-~17231~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~
-~17231~^~432~^20.^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~
-~17231~^~435~^20.^0^^~4~^~NC~^^^^^^^^^^~01/01/2001~
-~17231~^~601~^92.^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~
-~17232~^~208~^185.^0^^~4~^~NC~^^^^^^^^^^~12/01/1995~
-~17232~^~268~^774.^0^^~4~^^^^^^^^^^^
-~17232~^~301~^7.^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~
-~17232~^~304~^25.^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~
-~17232~^~305~^182.^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~
-~17232~^~306~^267.^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~
-~17232~^~307~^58.^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~
-~17232~^~318~^0.^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~
-~17232~^~319~^0.^0^^~4~^~PAE~^^^^^^^^^^~06/01/2002~
-~17232~^~320~^0.^0^^~4~^~PAE~^^^^^^^^^^~06/01/2002~
-~17232~^~417~^21.^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~
-~17232~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~
-~17232~^~432~^21.^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~
-~17232~^~435~^21.^0^^~4~^~NC~^^^^^^^^^^~01/01/2001~
-~17232~^~601~^67.^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~
-~17233~^~208~^217.^0^^~4~^~NC~^^^^^^^^^^~12/01/1995~
-~17233~^~268~^908.^0^^~4~^^^^^^^^^^^
-~17233~^~301~^9.^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~
-~17233~^~304~^25.^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~
-~17233~^~305~^200.^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~
-~17233~^~306~^329.^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~
-~17233~^~307~^65.^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~
-~17233~^~318~^0.^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~
-~17233~^~319~^0.^0^^~4~^~PAE~^^^^^^^^^^~06/01/2002~
-~17233~^~320~^0.^0^^~4~^~PAE~^^^^^^^^^^~06/01/2002~
-~17233~^~417~^23.^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~
-~17233~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~
-~17233~^~432~^23.^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~
-~17233~^~435~^23.^0^^~4~^~NC~^^^^^^^^^^~01/01/2001~
-~17233~^~601~^90.^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~
-~17234~^~208~^261.^0^^~4~^~NC~^^^^^^^^^^~12/01/1995~
-~17234~^~268~^1092.^0^^~4~^^^^^^^^^^^
-~17234~^~301~^10.^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~
-~17234~^~304~^23.^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~
-~17234~^~305~^161.^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~
-~17234~^~306~^235.^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~
-~17234~^~307~^56.^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~
-~17234~^~318~^0.^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~
-~17234~^~319~^0.^0^^~4~^~PAE~^^^^^^^^^^~06/01/2002~
-~17234~^~320~^0.^0^^~4~^~PAE~^^^^^^^^^^~06/01/2002~
-~17234~^~417~^19.^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~
-~17234~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~
-~17234~^~432~^19.^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~
-~17234~^~435~^19.^0^^~4~^~NC~^^^^^^^^^^~01/01/2001~
-~17234~^~601~^71.^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~
-~17235~^~208~^284.^0^^~4~^~NC~^^^^^^^^^^~12/01/1995~
-~17235~^~268~^1188.^0^^~4~^^^^^^^^^^^
-~17235~^~301~^11.^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~
-~17235~^~304~^23.^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~
-~17235~^~305~^185.^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~
-~17235~^~306~^304.^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~
-~17235~^~307~^68.^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~
-~17235~^~318~^0.^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~
-~17235~^~319~^0.^0^^~4~^~PAE~^^^^^^^^^^~06/01/2002~
-~17235~^~320~^0.^0^^~4~^~PAE~^^^^^^^^^^~06/01/2002~
-~17235~^~417~^17.^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~
-~17235~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~
-~17235~^~432~^17.^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~
-~17235~^~435~^17.^0^^~4~^~NC~^^^^^^^^^^~01/01/2001~
-~17235~^~601~^96.^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~
-~17236~^~208~^279.^0^^~4~^~NC~^^^^^^^^^^~12/01/1995~
-~17236~^~268~^1167.^0^^~4~^^^^^^^^^^^
-~17236~^~301~^14.^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~
-~17236~^~304~^22.^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~
-~17236~^~305~^159.^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~
-~17236~^~306~^226.^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~
-~17236~^~307~^59.^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~
-~17236~^~318~^0.^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~
-~17236~^~319~^0.^0^^~4~^~PAE~^^^^^^^^^^~06/01/2002~
-~17236~^~320~^0.^0^^~4~^~PAE~^^^^^^^^^^~06/01/2002~
-~17236~^~417~^18.^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~
-~17236~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~
-~17236~^~432~^18.^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~
-~17236~^~435~^18.^0^^~4~^~NC~^^^^^^^^^^~01/01/2001~
-~17236~^~601~^72.^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~
-~17237~^~208~^297.^0^^~4~^~NC~^^^^^^^^^^~12/01/1995~
-~17237~^~268~^1243.^0^^~4~^^^^^^^^^^^
-~17237~^~301~^20.^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~
-~17237~^~304~^25.^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~
-~17237~^~305~^201.^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~
-~17237~^~306~^336.^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~
-~17237~^~307~^78.^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~
-~17237~^~318~^0.^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~
-~17237~^~319~^0.^0^^~4~^~PAE~^^^^^^^^^^~06/01/2002~
-~17237~^~320~^0.^0^^~4~^~PAE~^^^^^^^^^^~06/01/2002~
-~17237~^~417~^19.^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~
-~17237~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~
-~17237~^~432~^19.^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~
-~17237~^~435~^19.^0^^~4~^~NC~^^^^^^^^^^~01/01/2001~
-~17237~^~601~^99.^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~
-~17238~^~208~^290.^0^^~4~^~NC~^^^^^^^^^^~12/01/1995~
-~17238~^~268~^1213.^0^^~4~^^^^^^^^^^^
-~17238~^~301~^18.^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~
-~17238~^~304~^24.^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~
-~17238~^~305~^185.^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~
-~17238~^~306~^250.^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~
-~17238~^~307~^64.^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~
-~17238~^~318~^0.^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~
-~17238~^~319~^0.^0^^~4~^~PAE~^^^^^^^^^^~06/01/2002~
-~17238~^~320~^0.^0^^~4~^~PAE~^^^^^^^^^^~06/01/2002~
-~17238~^~417~^20.^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~
-~17238~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~
-~17238~^~432~^20.^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~
-~17238~^~435~^20.^0^^~4~^~NC~^^^^^^^^^^~01/01/2001~
-~17238~^~601~^93.^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~
-~17239~^~208~^342.^0^^~4~^~NC~^^^^^^^^^^~12/01/1995~
-~17239~^~268~^1431.^0^^~4~^^^^^^^^^^^
-~17239~^~301~^14.^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~
-~17239~^~304~^19.^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~
-~17239~^~305~^143.^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~
-~17239~^~306~^201.^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~
-~17239~^~307~^58.^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~
-~17239~^~318~^0.^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~
-~17239~^~319~^0.^0^^~4~^~PAE~^^^^^^^^^^~06/01/2002~
-~17239~^~320~^0.^0^^~4~^~PAE~^^^^^^^^^^~06/01/2002~
-~17239~^~417~^15.^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~
-~17239~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~
-~17239~^~432~^15.^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~
-~17239~^~435~^15.^0^^~4~^~NC~^^^^^^^^^^~01/01/2001~
-~17239~^~601~^74.^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~
-~17240~^~208~^340.^0^^~4~^~NC~^^^^^^^^^^~12/01/1995~
-~17240~^~268~^1423.^0^^~4~^^^^^^^^^^^
-~17240~^~301~^18.^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~
-~17240~^~304~^24.^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~
-~17240~^~305~^184.^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~
-~17240~^~306~^277.^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~
-~17240~^~307~^77.^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~
-~17240~^~318~^0.^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~
-~17240~^~319~^0.^0^^~4~^~PAE~^^^^^^^^^^~06/01/2002~
-~17240~^~320~^0.^0^^~4~^~PAE~^^^^^^^^^^~06/01/2002~
-~17240~^~417~^15.^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~
-~17240~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~
-~17240~^~432~^15.^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~
-~17240~^~435~^15.^0^^~4~^~NC~^^^^^^^^^^~01/01/2001~
-~17240~^~601~^98.^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~
-~17241~^~208~^341.^0^^~4~^~NC~^^^^^^^^^^~12/01/1995~
-~17241~^~268~^1427.^0^^~4~^^^^^^^^^^^
-~17241~^~301~^22.^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~
-~17241~^~304~^20.^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~
-~17241~^~305~^170.^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~
-~17241~^~306~^277.^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~
-~17241~^~307~^74.^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~
-~17241~^~318~^0.^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~
-~17241~^~319~^0.^0^^~4~^~PAE~^^^^^^^^^^~06/01/2002~
-~17241~^~320~^0.^0^^~4~^~PAE~^^^^^^^^^^~06/01/2002~
-~17241~^~417~^16.^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~
-~17241~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~
-~17241~^~432~^16.^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~
-~17241~^~435~^16.^0^^~4~^~NC~^^^^^^^^^^~01/01/2001~
-~17241~^~601~^96.^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~
-~17242~^~208~^244.^0^^~4~^~NC~^^^^^^^^^^~12/01/1995~
-~17242~^~268~^1021.^0^^~4~^^^^^^^^^^^
-~17242~^~301~^16.^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~
-~17242~^~304~^21.^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~
-~17242~^~305~^163.^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~
-~17242~^~306~^237.^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~
-~17242~^~307~^63.^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~
-~17242~^~318~^0.^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~
-~17242~^~319~^0.^0^^~4~^~PAE~^^^^^^^^^^~06/01/2002~
-~17242~^~320~^0.^0^^~4~^~PAE~^^^^^^^^^^~06/01/2002~
-~17242~^~417~^19.^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~
-~17242~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~
-~17242~^~432~^19.^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~
-~17242~^~435~^19.^0^^~4~^~NC~^^^^^^^^^^~01/01/2001~
-~17242~^~601~^71.^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~
-~17243~^~208~^338.^0^^~4~^~NC~^^^^^^^^^^~12/01/1995~
-~17243~^~268~^1414.^0^^~4~^^^^^^^^^^^
-~17243~^~301~^27.^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~
-~17243~^~304~^25.^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~
-~17243~^~305~^193.^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~
-~17243~^~306~^261.^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~
-~17243~^~307~^74.^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~
-~17243~^~318~^0.^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~
-~17243~^~319~^0.^0^^~4~^~PAE~^^^^^^^^^^~06/01/2002~
-~17243~^~320~^0.^0^^~4~^~PAE~^^^^^^^^^^~06/01/2002~
-~17243~^~417~^18.^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~
-~17243~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~
-~17243~^~432~^18.^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~
-~17243~^~435~^18.^0^^~4~^~NC~^^^^^^^^^^~01/01/2001~
-~17243~^~601~^117.^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~
-~17244~^~208~^268.^0^^~4~^~NC~^^^^^^^^^^~12/01/1995~
-~17244~^~268~^1121.^0^^~4~^^^^^^^^^^^
-~17244~^~301~^23.^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~
-~17244~^~304~^25.^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~
-~17244~^~305~^201.^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~
-~17244~^~306~^335.^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~
-~17244~^~307~^82.^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~
-~17244~^~318~^0.^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~
-~17244~^~319~^0.^0^^~4~^~PAE~^^^^^^^^^^~06/01/2002~
-~17244~^~320~^0.^0^^~4~^~PAE~^^^^^^^^^^~06/01/2002~
-~17244~^~417~^18.^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~
-~17244~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~
-~17244~^~432~^18.^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~
-~17244~^~435~^18.^0^^~4~^~NC~^^^^^^^^^^~01/01/2001~
-~17244~^~601~^95.^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~
-~17245~^~208~^269.^0^^~4~^~NC~^^^^^^^^^^~12/01/1995~
-~17245~^~268~^1125.^0^^~4~^^^^^^^^^^^
-~17245~^~301~^20.^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~
-~17245~^~304~^23.^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~
-~17245~^~305~^185.^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~
-~17245~^~306~^251.^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~
-~17245~^~307~^66.^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~
-~17245~^~318~^0.^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~
-~17245~^~319~^0.^0^^~4~^~PAE~^^^^^^^^^^~06/01/2002~
-~17245~^~320~^0.^0^^~4~^~PAE~^^^^^^^^^^~06/01/2002~
-~17245~^~417~^21.^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~
-~17245~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~
-~17245~^~432~^21.^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~
-~17245~^~435~^21.^0^^~4~^~NC~^^^^^^^^^^~01/01/2001~
-~17245~^~601~^91.^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~
-~17246~^~208~^244.^0^^~4~^~NC~^^^^^^^^^^~12/01/1995~
-~17246~^~268~^1021.^0^^~4~^^^^^^^^^^^
-~17246~^~301~^14.^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~
-~17246~^~304~^22.^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~
-~17246~^~305~^162.^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~
-~17246~^~306~^244.^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~
-~17246~^~307~^61.^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~
-~17246~^~318~^0.^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~
-~17246~^~319~^0.^0^^~4~^~PAE~^^^^^^^^^^~06/01/2002~
-~17246~^~320~^0.^0^^~4~^~PAE~^^^^^^^^^^~06/01/2002~
-~17246~^~417~^19.^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~
-~17246~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~
-~17246~^~432~^19.^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~
-~17246~^~435~^19.^0^^~4~^~NC~^^^^^^^^^^~01/01/2001~
-~17246~^~601~^70.^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~
-~17247~^~208~^337.^0^^~4~^~NC~^^^^^^^^^^~12/01/1995~
-~17247~^~268~^1410.^0^^~4~^^^^^^^^^^^
-~17247~^~301~^25.^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~
-~17247~^~304~^26.^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~
-~17247~^~305~^210.^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~
-~17247~^~306~^311.^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~
-~17247~^~307~^72.^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~
-~17247~^~318~^0.^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~
-~17247~^~319~^0.^0^^~4~^~PAE~^^^^^^^^^^~06/01/2002~
-~17247~^~320~^0.^0^^~4~^~PAE~^^^^^^^^^^~06/01/2002~
-~17247~^~417~^19.^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~
-~17247~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~
-~17247~^~432~^19.^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~
-~17247~^~435~^19.^0^^~4~^~NC~^^^^^^^^^^~01/01/2001~
-~17247~^~601~^120.^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~
-~17248~^~208~^269.^0^^~4~^~NC~^^^^^^^^^^~12/01/1995~
-~17248~^~268~^1125.^0^^~4~^^^^^^^^^^^
-~17248~^~301~^18.^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~
-~17248~^~304~^27.^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~
-~17248~^~305~^200.^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~
-~17248~^~306~^314.^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~
-~17248~^~307~^78.^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~
-~17248~^~318~^0.^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~
-~17248~^~319~^0.^0^^~4~^~PAE~^^^^^^^^^^~06/01/2002~
-~17248~^~320~^0.^0^^~4~^~PAE~^^^^^^^^^^~06/01/2002~
-~17248~^~417~^19.^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~
-~17248~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~
-~17248~^~432~^19.^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~
-~17248~^~435~^19.^0^^~4~^~NC~^^^^^^^^^^~01/01/2001~
-~17248~^~601~^96.^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~
-~17249~^~208~^267.^0^^~4~^~NC~^^^^^^^^^^~12/01/1995~
-~17249~^~268~^1117.^0^^~4~^^^^^^^^^^^
-~17249~^~301~^17.^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~
-~17249~^~304~^23.^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~
-~17249~^~305~^185.^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~
-~17249~^~306~^262.^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~
-~17249~^~307~^65.^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~
-~17249~^~318~^0.^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~
-~17249~^~319~^0.^0^^~4~^~PAE~^^^^^^^^^^~06/01/2002~
-~17249~^~320~^0.^0^^~4~^~PAE~^^^^^^^^^^~06/01/2002~
-~17249~^~417~^21.^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~
-~17249~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~
-~17249~^~432~^21.^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~
-~17249~^~435~^21.^0^^~4~^~NC~^^^^^^^^^^~01/01/2001~
-~17249~^~601~^91.^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~
-~17250~^~208~^244.^0^^~4~^~NC~^^^^^^^^^^~12/01/1995~
-~17250~^~268~^1021.^0^^~4~^^^^^^^^^^^
-~17250~^~301~^17.^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~
-~17250~^~304~^21.^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~
-~17250~^~305~^163.^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~
-~17250~^~306~^234.^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~
-~17250~^~307~^63.^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~
-~17250~^~318~^0.^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~
-~17250~^~319~^0.^0^^~4~^~PAE~^^^^^^^^^^~06/01/2002~
-~17250~^~320~^0.^0^^~4~^~PAE~^^^^^^^^^^~06/01/2002~
-~17250~^~417~^20.^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~
-~17250~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~
-~17250~^~432~^20.^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~
-~17250~^~435~^20.^0^^~4~^~NC~^^^^^^^^^^~01/01/2001~
-~17250~^~601~^71.^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~
-~17251~^~208~^339.^0^^~4~^~NC~^^^^^^^^^^~12/01/1995~
-~17251~^~268~^1418.^0^^~4~^^^^^^^^^^^
-~17251~^~301~^27.^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~
-~17251~^~304~^24.^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~
-~17251~^~305~^187.^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~
-~17251~^~306~^244.^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~
-~17251~^~307~^75.^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~
-~17251~^~318~^0.^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~
-~17251~^~319~^0.^0^^~4~^~PAE~^^^^^^^^^^~06/01/2002~
-~17251~^~320~^0.^0^^~4~^~PAE~^^^^^^^^^^~06/01/2002~
-~17251~^~417~^18.^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~
-~17251~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~
-~17251~^~432~^18.^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~
-~17251~^~435~^18.^0^^~4~^~NC~^^^^^^^^^^~01/01/2001~
-~17251~^~601~^116.^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~
-~17252~^~208~^267.^0^^~4~^~NC~^^^^^^^^^^~12/01/1995~
-~17252~^~268~^1117.^0^^~4~^^^^^^^^^^^
-~17252~^~301~^24.^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~
-~17252~^~304~^24.^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~
-~17252~^~305~^201.^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~
-~17252~^~306~^341.^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~
-~17252~^~307~^83.^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~
-~17252~^~318~^0.^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~
-~17252~^~319~^0.^0^^~4~^~PAE~^^^^^^^^^^~06/01/2002~
-~17252~^~320~^0.^0^^~4~^~PAE~^^^^^^^^^^~06/01/2002~
-~17252~^~417~^18.^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~
-~17252~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~
-~17252~^~432~^18.^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~
-~17252~^~435~^18.^0^^~4~^~NC~^^^^^^^^^^~01/01/2001~
-~17252~^~601~^95.^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~
-~17253~^~208~^270.^0^^~4~^~NC~^^^^^^^^^^~12/01/1995~
-~17253~^~268~^1130.^0^^~4~^^^^^^^^^^^
-~17253~^~301~^21.^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~
-~17253~^~304~^23.^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~
-~17253~^~305~^185.^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~
-~17253~^~306~^248.^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~
-~17253~^~307~^67.^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~
-~17253~^~318~^0.^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~
-~17253~^~319~^0.^0^^~4~^~PAE~^^^^^^^^^^~06/01/2002~
-~17253~^~320~^0.^0^^~4~^~PAE~^^^^^^^^^^~06/01/2002~
-~17253~^~417~^21.^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~
-~17253~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~
-~17253~^~432~^21.^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~
-~17253~^~435~^21.^0^^~4~^~NC~^^^^^^^^^^~01/01/2001~
-~17253~^~601~^92.^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~
-~17254~^~208~^232.^0^^~4~^~NC~^^^^^^^^^^~12/01/1995~
-~17254~^~268~^971.^0^^~4~^^^^^^^^^^^
-~17254~^~301~^11.^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~
-~17254~^~304~^16.^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~
-~17254~^~305~^179.^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~
-~17254~^~306~^147.^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~
-~17254~^~307~^41.^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~
-~17254~^~318~^0.^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~
-~17254~^~319~^0.^0^^~4~^~PAE~^^^^^^^^^^~06/01/2002~
-~17254~^~320~^0.^0^^~4~^~PAE~^^^^^^^^^^~06/01/2002~
-~17254~^~417~^1.^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~
-~17254~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~
-~17254~^~432~^1.^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~
-~17254~^~435~^1.^0^^~4~^~NC~^^^^^^^^^^~01/01/2001~
-~17254~^~601~^77.^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~
-~17255~^~208~^270.^0^^~4~^~NC~^^^^^^^^^^~12/01/1995~
-~17255~^~268~^1130.^0^^~4~^^^^^^^^^^^
-~17255~^~301~^15.^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~
-~17255~^~304~^19.^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~
-~17255~^~305~^211.^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~
-~17255~^~306~^161.^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~
-~17255~^~307~^46.^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~
-~17255~^~318~^0.^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~
-~17255~^~319~^0.^0^^~4~^~PAE~^^^^^^^^^^~06/01/2002~
-~17255~^~320~^0.^0^^~4~^~PAE~^^^^^^^^^^~06/01/2002~
-~17255~^~417~^1.^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~
-~17255~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~
-~17255~^~432~^1.^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~
-~17255~^~435~^1.^0^^~4~^~NC~^^^^^^^^^^~01/01/2001~
-~17255~^~601~^106.^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~
-~17256~^~208~^223.^0^^~4~^~NC~^^^^^^^^^^~12/01/1995~
-~17256~^~268~^933.^0^^~4~^^^^^^^^^^^
-~17256~^~301~^10.^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~
-~17256~^~304~^15.^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~
-~17256~^~305~^170.^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~
-~17256~^~306~^131.^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~
-~17256~^~307~^45.^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~
-~17256~^~318~^0.^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~
-~17256~^~319~^0.^0^^~4~^~PAE~^^^^^^^^^^~06/01/2002~
-~17256~^~320~^0.^0^^~4~^~PAE~^^^^^^^^^^~06/01/2002~
-~17256~^~417~^1.^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~
-~17256~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~
-~17256~^~432~^1.^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~
-~17256~^~435~^1.^0^^~4~^~NC~^^^^^^^^^^~01/01/2001~
-~17256~^~601~^71.^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~
-~17257~^~208~^258.^0^^~4~^~NC~^^^^^^^^^^~12/01/1995~
-~17257~^~268~^1079.^0^^~4~^^^^^^^^^^^
-~17257~^~301~^14.^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~
-~17257~^~304~^15.^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~
-~17257~^~305~^175.^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~
-~17257~^~306~^118.^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~
-~17257~^~307~^47.^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~
-~17257~^~318~^0.^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~
-~17257~^~319~^0.^0^^~4~^~PAE~^^^^^^^^^^~06/01/2002~
-~17257~^~320~^0.^0^^~4~^~PAE~^^^^^^^^^^~06/01/2002~
-~17257~^~417~^1.^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~
-~17257~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~
-~17257~^~432~^1.^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~
-~17257~^~435~^1.^0^^~4~^~NC~^^^^^^^^^^~01/01/2001~
-~17257~^~601~^102.^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~
-~17258~^~208~^201.^0^^~4~^~NC~^^^^^^^^^^~12/01/1995~
-~17258~^~268~^841.^0^^~4~^^^^^^^^^^^
-~17258~^~301~^7.^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~
-~17258~^~304~^18.^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~
-~17258~^~305~^189.^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~
-~17258~^~306~^160.^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~
-~17258~^~307~^41.^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~
-~17258~^~318~^0.^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~
-~17258~^~319~^0.^0^^~4~^~PAE~^^^^^^^^^^~06/01/2002~
-~17258~^~320~^0.^0^^~4~^~PAE~^^^^^^^^^^~06/01/2002~
-~17258~^~417~^1.^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~
-~17258~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~
-~17258~^~432~^1.^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~
-~17258~^~435~^1.^0^^~4~^~NC~^^^^^^^^^^~01/01/2001~
-~17258~^~601~^75.^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~
-~17259~^~208~^234.^0^^~4~^~NC~^^^^^^^^^^~12/01/1995~
-~17259~^~268~^979.^0^^~4~^~PAE~^^^^^^^^^^
-~17259~^~301~^9.^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~
-~17259~^~304~^20.^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~
-~17259~^~305~^221.^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~
-~17259~^~306~^170.^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~
-~17259~^~307~^44.^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~
-~17259~^~318~^0.^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~
-~17259~^~319~^0.^0^^~4~^~PAE~^^^^^^^^^^~06/01/2002~
-~17259~^~320~^0.^0^^~4~^~PAE~^^^^^^^^^^~06/01/2002~
-~17259~^~417~^1.^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~
-~17259~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~
-~17259~^~432~^1.^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~
-~17259~^~435~^1.^0^^~4~^~NC~^^^^^^^^^^~01/01/2001~
-~17259~^~601~^101.^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~
-~17260~^~208~^273.^0^^~4~^~NC~^^^^^^^^^^~12/01/1995~
-~17260~^~268~^1142.^0^^~4~^^^^^^^^^^^
-~17260~^~301~^17.^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~
-~17260~^~304~^15.^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~
-~17260~^~305~^170.^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~
-~17260~^~306~^128.^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~
-~17260~^~307~^39.^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~
-~17260~^~318~^0.^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~
-~17260~^~319~^0.^0^^~4~^~PAE~^^^^^^^^^^~06/01/2002~
-~17260~^~320~^0.^0^^~4~^~PAE~^^^^^^^^^^~06/01/2002~
-~17260~^~417~^1.^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~
-~17260~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~
-~17260~^~432~^1.^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~
-~17260~^~435~^1.^0^^~4~^~NC~^^^^^^^^^^~01/01/2001~
-~17260~^~601~^82.^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~
-~17261~^~208~^296.^0^^~4~^~NC~^^^^^^^^^^~12/01/1995~
-~17261~^~268~^1238.^0^^~4~^^^^^^^^^^^
-~17261~^~301~^23.^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~
-~17261~^~304~^20.^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~
-~17261~^~305~^213.^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~
-~17261~^~306~^164.^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~
-~17261~^~307~^50.^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~
-~17261~^~318~^0.^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~
-~17261~^~319~^0.^0^^~4~^~PAE~^^^^^^^^^^~06/01/2002~
-~17261~^~320~^0.^0^^~4~^~PAE~^^^^^^^^^^~06/01/2002~
-~17261~^~417~^1.^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~
-~17261~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~
-~17261~^~432~^1.^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~
-~17261~^~435~^1.^0^^~4~^~NC~^^^^^^^^^^~01/01/2001~
-~17261~^~601~^113.^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~
-~17262~^~208~^311.^0^^~4~^~NC~^^^^^^^^^^~12/01/1995~
-~17262~^~268~^1301.^0^^~4~^^^^^^^^^^^
-~17262~^~301~^15.^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~
-~17262~^~304~^13.^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~
-~17262~^~305~^153.^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~
-~17262~^~306~^120.^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~
-~17262~^~307~^42.^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~
-~17262~^~318~^0.^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~
-~17262~^~319~^0.^0^^~4~^~PAE~^^^^^^^^^^~06/01/2002~
-~17262~^~320~^0.^0^^~4~^~PAE~^^^^^^^^^^~06/01/2002~
-~17262~^~417~^1.^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~
-~17262~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~
-~17262~^~432~^1.^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~
-~17262~^~435~^1.^0^^~4~^~NC~^^^^^^^^^^~01/01/2001~
-~17262~^~601~^80.^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~
-~17263~^~208~^317.^0^^~4~^~NC~^^^^^^^^^^~12/01/1995~
-~17263~^~268~^1326.^0^^~4~^^^^^^^^^^^
-~17263~^~301~^18.^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~
-~17263~^~304~^15.^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~
-~17263~^~305~^173.^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~
-~17263~^~306~^128.^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~
-~17263~^~307~^44.^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~
-~17263~^~318~^0.^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~
-~17263~^~319~^0.^0^^~4~^~PAE~^^^^^^^^^^~06/01/2002~
-~17263~^~320~^0.^0^^~4~^~PAE~^^^^^^^^^^~06/01/2002~
-~17263~^~417~^1.^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~
-~17263~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~
-~17263~^~432~^1.^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~
-~17263~^~435~^1.^0^^~4~^~NC~^^^^^^^^^^~01/01/2001~
-~17263~^~601~^99.^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~
-~17264~^~208~^251.^0^^~4~^~NC~^^^^^^^^^^~12/01/1995~
-~17264~^~268~^1050.^0^^~4~^^^^^^^^^^^
-~17264~^~301~^17.^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~
-~17264~^~304~^15.^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~
-~17264~^~305~^168.^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~
-~17264~^~306~^137.^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~
-~17264~^~307~^42.^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~
-~17264~^~318~^0.^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~
-~17264~^~319~^0.^0^^~4~^~PAE~^^^^^^^^^^~06/01/2002~
-~17264~^~320~^0.^0^^~4~^~PAE~^^^^^^^^^^~06/01/2002~
-~17264~^~417~^1.^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~
-~17264~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~
-~17264~^~432~^1.^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~
-~17264~^~435~^1.^0^^~4~^~NC~^^^^^^^^^^~01/01/2001~
-~17264~^~601~^74.^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~
-~17265~^~208~^342.^0^^~4~^~NC~^^^^^^^^^^~12/01/1995~
-~17265~^~268~^1431.^0^^~4~^^^^^^^^^^^
-~17265~^~301~^27.^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~
-~17265~^~304~^18.^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~
-~17265~^~305~^200.^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~
-~17265~^~306~^151.^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~
-~17265~^~307~^52.^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~
-~17265~^~318~^0.^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~
-~17265~^~319~^0.^0^^~4~^~PAE~^^^^^^^^^^~06/01/2002~
-~17265~^~320~^0.^0^^~4~^~PAE~^^^^^^^^^^~06/01/2002~
-~17265~^~417~^1.^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~
-~17265~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~
-~17265~^~432~^1.^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~
-~17265~^~435~^1.^0^^~4~^~NC~^^^^^^^^^^~01/01/2001~
-~17265~^~601~^123.^0^^~4~^~PAE~^^^^^^^^^^~12/01/1995~
-~17267~^~208~^113.^0^^~4~^~NC~^^^^^^^^^^~02/01/1999~
-~17267~^~268~^473.^0^^~4~^^^^^^^^^^^
-~17267~^~301~^5.^92^0.^~1~^~A~^^^^^^^^^^~11/01/1998~
-~17267~^~304~^24.^96^0.^~1~^~A~^^^^^^^^^^~11/01/1998~
-~17267~^~305~^203.^96^1.^~1~^~A~^^^^^^^^^^~11/01/1998~
-~17267~^~306~^335.^92^2.^~1~^~A~^^^^^^^^^^~11/01/1998~
-~17267~^~307~^51.^93^0.^~1~^~A~^^^^^^^^^^~11/01/1998~
-~17267~^~318~^3.^100^0.^~1~^~A~^^^^^^^^^^~11/01/1998~
-~17267~^~319~^1.^100^0.^~1~^~A~^^^^^^^^^^~11/01/1998~
-~17267~^~320~^1.^100^^~1~^~AS~^^^^^^^^^^~04/01/2002~
-~17267~^~601~^71.^100^0.^~1~^~A~^^^^^^^^^^~11/01/1998~
-~17268~^~208~^116.^0^^~4~^~NC~^^^^^^^^^^~02/01/1999~
-~17268~^~268~^485.^0^^~4~^^^^^^^^^^^
-~17268~^~301~^6.^93^0.^~1~^~A~^^^^^^^^^^~11/01/1998~
-~17268~^~304~^24.^96^0.^~1~^~A~^^^^^^^^^^~11/01/1998~
-~17268~^~305~^198.^96^1.^~1~^~A~^^^^^^^^^^~11/01/1998~
-~17268~^~306~^344.^93^2.^~1~^~A~^^^^^^^^^^~11/01/1998~
-~17268~^~307~^48.^93^0.^~1~^~A~^^^^^^^^^^~11/01/1998~
-~17268~^~318~^3.^100^0.^~1~^~A~^^^^^^^^^^~11/01/1998~
-~17268~^~319~^1.^100^0.^~1~^~A~^^^^^^^^^^~11/01/1998~
-~17268~^~320~^1.^100^^~1~^~AS~^^^^^^^^^^~04/01/2002~
-~17268~^~601~^62.^100^0.^~1~^~A~^^^^^^^^^^~11/01/1998~
-~17269~^~208~^109.^0^^~4~^~NC~^^^^^^^^^^~02/01/1999~
-~17269~^~268~^456.^0^^~4~^^^^^^^^^^^
-~17269~^~301~^4.^95^0.^~1~^~A~^^^^^^^^^^~11/01/1998~
-~17269~^~304~^24.^95^0.^~1~^~A~^^^^^^^^^^~11/01/1998~
-~17269~^~305~^189.^95^2.^~1~^~A~^^^^^^^^^^~11/01/1998~
-~17269~^~306~^322.^91^3.^~1~^~A~^^^^^^^^^^~11/01/1998~
-~17269~^~307~^59.^92^0.^~1~^~A~^^^^^^^^^^~11/01/1998~
-~17269~^~318~^2.^100^0.^~1~^~A~^^^^^^^^^^~11/01/1998~
-~17269~^~319~^1.^100^0.^~1~^~A~^^^^^^^^^^~11/01/1998~
-~17269~^~320~^1.^100^^~1~^~AS~^^^^^^^^^^~04/01/2002~
-~17269~^~601~^66.^100^0.^~1~^~A~^^^^^^^^^^~11/01/1998~
-~17270~^~208~^521.^0^^~4~^~NC~^^^^^^^^^^~04/01/1997~
-~17270~^~268~^2180.^0^^~4~^^^^^^^^^^^
-~17270~^~301~^6.^2^^~1~^~A~^^^^^^^^^^~04/01/1997~
-~17270~^~304~^10.^2^^~1~^~A~^^^^^^^^^^~04/01/1997~
-~17270~^~305~^102.^2^^~1~^~A~^^^^^^^^^^~04/01/1997~
-~17270~^~306~^181.^2^^~1~^~A~^^^^^^^^^^~04/01/1997~
-~17270~^~307~^49.^2^^~1~^~A~^^^^^^^^^^~04/01/1997~
-~17270~^~417~^5.^0^^~4~^~BFPN~^^^^^^^^^^~04/01/1997~
-~17270~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~
-~17270~^~432~^5.^0^^~4~^~BFPN~^^^^^^^^^^~04/01/1997~
-~17270~^~435~^5.^0^^~4~^~NC~^^^^^^^^^^~01/01/2001~
-~17270~^~601~^95.^2^^~1~^~A~^^^^^^^^^^~04/01/1997~
-~17271~^~208~^208.^0^^~4~^~NC~^^^^^^^^^^~04/01/1997~
-~17271~^~268~^870.^0^^~4~^^^^^^^^^^^
-~17271~^~301~^7.^2^^~1~^~A~^^^^^^^^^^~04/01/1997~
-~17271~^~304~^18.^2^^~1~^~A~^^^^^^^^^^~04/01/1997~
-~17271~^~305~^172.^2^^~1~^~A~^^^^^^^^^^~04/01/1997~
-~17271~^~306~^286.^2^^~1~^~A~^^^^^^^^^^~04/01/1997~
-~17271~^~307~^71.^2^^~1~^~A~^^^^^^^^^^~04/01/1997~
-~17271~^~601~^71.^2^^~1~^~A~^^^^^^^^^^~04/01/1997~
-~17272~^~208~^266.^0^^~4~^~NC~^^^^^^^^^^~05/01/1997~
-~17272~^~268~^1113.^0^^~4~^^^^^^^^^^^
-~17272~^~301~^9.^0^^~1~^~PAK~^^^^^^^^^^~05/01/1997~
-~17272~^~304~^20.^0^^~1~^~PAK~^^^^^^^^^^~05/01/1997~
-~17272~^~305~^191.^0^^~1~^~PAK~^^^^^^^^^^~05/01/1997~
-~17272~^~306~^272.^0^^~1~^~PAK~^^^^^^^^^^~05/01/1997~
-~17272~^~307~^65.^0^^~1~^~PAK~^^^^^^^^^^~05/01/1997~
-~17272~^~417~^13.^0^^~1~^~PAK~^^^^^^^^^^~05/01/1997~
-~17272~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~
-~17272~^~432~^13.^0^^~1~^~PAK~^^^^^^^^^^~05/01/1997~
-~17272~^~435~^13.^0^^~4~^~NC~^^^^^^^^^^~04/01/2002~
-~17272~^~601~^113.^0^^~1~^~PAK~^^^^^^^^^^~05/01/1997~
-~17273~^~208~^282.^0^^~4~^~NC~^^^^^^^^^^~05/01/1997~
-~17273~^~268~^1180.^0^^~4~^^^^^^^^^^^
-~17273~^~301~^8.^0^^~1~^~PAK~^^^^^^^^^^~05/01/1997~
-~17273~^~304~^19.^0^^~1~^~PAK~^^^^^^^^^^~05/01/1997~
-~17273~^~305~^186.^0^^~1~^~PAK~^^^^^^^^^^~05/01/1997~
-~17273~^~306~^266.^0^^~1~^~PAK~^^^^^^^^^^~05/01/1997~
-~17273~^~307~^64.^0^^~1~^~PAK~^^^^^^^^^^~05/01/1997~
-~17273~^~417~^13.^0^^~1~^~PAK~^^^^^^^^^^~05/01/1997~
-~17273~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~
-~17273~^~432~^13.^0^^~1~^~PAK~^^^^^^^^^^~05/01/1997~
-~17273~^~435~^13.^0^^~4~^~NC~^^^^^^^^^^~03/01/2003~
-~17273~^~601~^112.^0^^~1~^~PAK~^^^^^^^^^^~05/01/1997~
-~17274~^~208~^248.^0^^~4~^~NC~^^^^^^^^^^~05/01/1997~
-~17274~^~268~^1038.^0^^~4~^^^^^^^^^^^
-~17274~^~301~^9.^0^^~1~^~PAK~^^^^^^^^^^~05/01/1997~
-~17274~^~304~^21.^0^^~1~^~PAK~^^^^^^^^^^~05/01/1997~
-~17274~^~305~^197.^0^^~1~^~PAK~^^^^^^^^^^~05/01/1997~
-~17274~^~306~^278.^0^^~1~^~PAK~^^^^^^^^^^~05/01/1997~
-~17274~^~307~^66.^0^^~1~^~PAK~^^^^^^^^^^~05/01/1997~
-~17274~^~417~^14.^0^^~1~^~PAK~^^^^^^^^^^~05/01/1997~
-~17274~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~
-~17274~^~432~^14.^0^^~1~^~PAK~^^^^^^^^^^~05/01/1997~
-~17274~^~435~^14.^0^^~4~^~NC~^^^^^^^^^^~03/01/2003~
-~17274~^~601~^114.^0^^~1~^~PAK~^^^^^^^^^^~05/01/1997~
-~17275~^~208~^218.^0^^~4~^~NC~^^^^^^^^^^~04/01/1997~
-~17275~^~268~^912.^0^^~4~^^^^^^^^^^^
-~17275~^~301~^9.^2^^~1~^~A~^^^^^^^^^^~04/01/1997~
-~17275~^~304~^22.^2^^~1~^~A~^^^^^^^^^^~04/01/1997~
-~17275~^~305~^208.^2^^~1~^~A~^^^^^^^^^^~04/01/1997~
-~17275~^~306~^289.^2^^~1~^~A~^^^^^^^^^^~04/01/1997~
-~17275~^~307~^68.^2^^~1~^~A~^^^^^^^^^^~04/01/1997~
-~17275~^~417~^15.^0^^~4~^~BFPN~^^^^^^^^^^~04/01/1997~
-~17275~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~
-~17275~^~432~^15.^0^^~4~^~BFPN~^^^^^^^^^^~04/01/1997~
-~17275~^~435~^15.^0^^~4~^~NC~^^^^^^^^^^~01/01/2001~
-~17275~^~601~^116.^2^^~1~^~A~^^^^^^^^^^~04/01/1997~
-~17276~^~208~^113.^0^^~4~^~NC~^^^^^^^^^^~03/01/2001~
-~17276~^~268~^473.^0^^~4~^^^^^^^^^^^~03/01/2001~
-~17276~^~301~^20.^0^^~1~^~PAK~^^^^^^^^^^~05/01/1997~
-~17276~^~304~^21.^0^^~1~^~PAK~^^^^^^^^^^~05/01/1997~
-~17276~^~305~^191.^0^^~1~^~PAK~^^^^^^^^^^~05/01/1997~
-~17276~^~306~^314.^0^^~1~^~PAK~^^^^^^^^^^~05/01/1997~
-~17276~^~307~^84.^0^^~1~^~PAK~^^^^^^^^^^~05/01/1997~
-~17276~^~417~^15.^0^^~1~^~PAK~^^^^^^^^^^~05/01/1997~
-~17276~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~
-~17276~^~432~^15.^0^^~1~^~PAK~^^^^^^^^^^~05/01/1997~
-~17276~^~435~^15.^0^^~4~^~NC~^^^^^^^^^^~03/01/2001~
-~17276~^~601~^75.^0^^~1~^~PAK~^^^^^^^^^^~05/01/1997~
-~17277~^~208~^191.^0^^~4~^~NC~^^^^^^^^^^~05/01/1997~
-~17277~^~268~^799.^0^^~4~^^^^^^^^^^^
-~17277~^~301~^33.^0^^~1~^~PAK~^^^^^^^^^^~05/01/1997~
-~17277~^~304~^25.^0^^~1~^~PAK~^^^^^^^^^^~05/01/1997~
-~17277~^~305~^225.^0^^~1~^~PAK~^^^^^^^^^^~05/01/1997~
-~17277~^~306~^305.^0^^~1~^~PAK~^^^^^^^^^^~05/01/1997~
-~17277~^~307~^93.^0^^~1~^~PAK~^^^^^^^^^^~05/01/1997~
-~17277~^~417~^17.^0^^~1~^~PAK~^^^^^^^^^^~05/01/1997~
-~17277~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~
-~17277~^~432~^17.^0^^~1~^~PAK~^^^^^^^^^^~05/01/1997~
-~17277~^~435~^17.^0^^~4~^~NC~^^^^^^^^^^~01/01/2001~
-~17277~^~601~^124.^0^^~1~^~PAK~^^^^^^^^^^~05/01/1997~
-~17278~^~208~^108.^0^^~4~^~NC~^^^^^^^^^^~04/01/1997~
-~17278~^~268~^452.^0^^~4~^^^^^^^^^^^
-~17278~^~301~^20.^2^^~1~^~A~^^^^^^^^^^~04/01/1997~
-~17278~^~304~^21.^2^^~1~^~A~^^^^^^^^^^~04/01/1997~
-~17278~^~305~^192.^2^^~1~^~A~^^^^^^^^^^~04/01/1997~
-~17278~^~306~^316.^2^^~1~^~A~^^^^^^^^^^~04/01/1997~
-~17278~^~307~^85.^2^^~1~^~A~^^^^^^^^^^~04/01/1997~
-~17278~^~417~^15.^0^^~4~^~BFPN~^^^^^^^^^^~04/01/1997~
-~17278~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~
-~17278~^~432~^15.^0^^~4~^~BFPN~^^^^^^^^^^~04/01/1997~
-~17278~^~435~^15.^0^^~4~^~NC~^^^^^^^^^^~01/01/2001~
-~17278~^~601~^75.^3^0.^~1~^~A~^^^^^^^^^^~04/01/1997~
-~17279~^~208~^177.^0^^~4~^~NC~^^^^^^^^^^~04/01/1997~
-~17279~^~268~^741.^0^^~4~^^^^^^^^^^^
-~17279~^~301~^34.^2^^~1~^~A~^^^^^^^^^^~04/01/1997~
-~17279~^~304~^25.^2^^~1~^~A~^^^^^^^^^^~04/01/1997~
-~17279~^~305~^228.^2^^~1~^~A~^^^^^^^^^^~04/01/1997~
-~17279~^~306~^309.^2^^~1~^~A~^^^^^^^^^^~04/01/1997~
-~17279~^~307~^94.^2^^~1~^~A~^^^^^^^^^^~04/01/1997~
-~17279~^~318~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/1997~
-~17279~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2002~
-~17279~^~320~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2002~
-~17279~^~417~^17.^0^^~4~^~BFPN~^^^^^^^^^^~04/01/1997~
-~17279~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~
-~17279~^~432~^17.^0^^~4~^~BFPN~^^^^^^^^^^~04/01/1997~
-~17279~^~435~^17.^0^^~4~^~NC~^^^^^^^^^^~01/01/2001~
-~17279~^~601~^126.^2^^~1~^~A~^^^^^^^^^^~04/01/1997~
-~17280~^~208~^229.^0^^~9~^~MC~^^^^^^^^^^~11/01/1998~
-~17280~^~268~^958.^0^^~9~^^^^^^^^^^^
-~17280~^~301~^13.^0^^~1~^~PAK~^^^^^^^^^^~11/01/1998~
-~17280~^~304~^20.^0^^~1~^~PAK~^^^^^^^^^^~11/01/1998~
-~17280~^~305~^168.^0^^~1~^~PAK~^^^^^^^^^^~11/01/1998~
-~17280~^~306~^284.^0^^~1~^~PAK~^^^^^^^^^^~11/01/1998~
-~17280~^~307~^74.^0^^~1~^~PAK~^^^^^^^^^^~11/01/1998~
-~17280~^~601~^66.^0^^~1~^~PAK~^^^^^^^^^^~11/01/1998~
-~17281~^~208~^256.^0^^~9~^~MC~^^^^^^^^^^~11/01/1998~
-~17281~^~268~^1071.^0^^~9~^^^^^^^^^^^
-~17281~^~301~^17.^0^^~1~^~PAK~^^^^^^^^^^~11/01/1998~
-~17281~^~304~^22.^0^^~1~^~PAK~^^^^^^^^^^~11/01/1998~
-~17281~^~305~^195.^0^^~1~^~PAK~^^^^^^^^^^~11/01/1998~
-~17281~^~306~^301.^0^^~1~^~PAK~^^^^^^^^^^~11/01/1998~
-~17281~^~307~^76.^0^^~1~^~PAK~^^^^^^^^^^~11/01/1998~
-~17281~^~601~^87.^0^^~1~^~PAK~^^^^^^^^^^~11/01/1998~
-~17282~^~208~^142.^0^^~9~^~MC~^^^^^^^^^^~11/01/1998~
-~17282~^~268~^594.^0^^~9~^^^^^^^^^^^
-~17282~^~301~^12.^0^^~1~^~PAK~^^^^^^^^^^~11/01/1998~
-~17282~^~304~^22.^0^^~1~^~PAK~^^^^^^^^^^~11/01/1998~
-~17282~^~305~^188.^0^^~1~^~PAK~^^^^^^^^^^~11/01/1998~
-~17282~^~306~^320.^0^^~1~^~PAK~^^^^^^^^^^~11/01/1998~
-~17282~^~307~^83.^0^^~1~^~PAK~^^^^^^^^^^~11/01/1998~
-~17282~^~601~^64.^0^^~1~^~PAK~^^^^^^^^^^~11/01/1998~
-~17283~^~208~^201.^0^^~9~^~MC~^^^^^^^^^^~11/01/1998~
-~17283~^~268~^841.^0^^~9~^^^^^^^^^^^
-~17283~^~301~^16.^0^^~1~^~PAK~^^^^^^^^^^~11/01/1998~
-~17283~^~304~^24.^0^^~1~^~PAK~^^^^^^^^^^~11/01/1998~
-~17283~^~305~^207.^0^^~1~^~PAK~^^^^^^^^^^~11/01/1998~
-~17283~^~306~^318.^0^^~1~^~PAK~^^^^^^^^^^~11/01/1998~
-~17283~^~307~^80.^0^^~1~^~PAK~^^^^^^^^^^~11/01/1998~
-~17283~^~601~^87.^0^^~1~^~PAK~^^^^^^^^^^~11/01/1998~
-~17284~^~208~^648.^0^^~9~^~MC~^^^^^^^^^^~11/01/1998~
-~17284~^~268~^2711.^0^^~9~^^^^^^^^^^^
-~17284~^~301~^19.^6^2.^~1~^~A~^^^^^^^^^^~11/01/1998~
-~17284~^~304~^7.^6^0.^~1~^~A~^^^^^^^^^^~11/01/1998~
-~17284~^~305~^71.^6^3.^~1~^~A~^^^^^^^^^^~11/01/1998~
-~17284~^~306~^112.^6^4.^~1~^~A~^^^^^^^^^^~11/01/1998~
-~17284~^~307~^33.^6^1.^~1~^~A~^^^^^^^^^^~11/01/1998~
-~17284~^~601~^77.^6^3.^~1~^~A~^^^^^^^^^^~11/01/1998~
-~17285~^~208~^639.^0^^~9~^~MC~^^^^^^^^^^~11/01/1998~
-~17285~^~268~^2674.^0^^~9~^^^^^^^^^^^
-~17285~^~301~^27.^6^1.^~1~^~A~^^^^^^^^^^~11/01/1998~
-~17285~^~304~^12.^6^0.^~1~^~A~^^^^^^^^^^~11/01/1998~
-~17285~^~305~^114.^6^2.^~1~^~A~^^^^^^^^^^~11/01/1998~
-~17285~^~306~^179.^6^6.^~1~^~A~^^^^^^^^^^~11/01/1998~
-~17285~^~307~^51.^6^2.^~1~^~A~^^^^^^^^^^~11/01/1998~
-~17285~^~601~^83.^6^3.^~1~^~A~^^^^^^^^^^~11/01/1998~
-~17286~^~208~^195.^0^^~9~^~MC~^^^^^^^^^^~11/01/1998~
-~17286~^~268~^816.^0^^~9~^^^^^^^^^^^
-~17286~^~301~^12.^0^^~1~^~PAK~^^^^^^^^^^~11/01/1998~
-~17286~^~304~^19.^0^^~1~^~PAK~^^^^^^^^^^~11/01/1998~
-~17286~^~305~^158.^0^^~1~^~PAK~^^^^^^^^^^~11/01/1998~
-~17286~^~306~^270.^0^^~1~^~PAK~^^^^^^^^^^~11/01/1998~
-~17286~^~307~^96.^0^^~1~^~PAK~^^^^^^^^^^~11/01/1998~
-~17286~^~601~^67.^0^^~1~^~PAK~^^^^^^^^^^~11/01/1998~
-~17287~^~208~^236.^0^^~9~^~MC~^^^^^^^^^^~11/01/1998~
-~17287~^~268~^987.^0^^~9~^^^^^^^^^^^
-~17287~^~301~^16.^0^^~1~^~PAK~^^^^^^^^^^~11/01/1998~
-~17287~^~304~^21.^0^^~1~^~PAK~^^^^^^^^^^~11/01/1998~
-~17287~^~305~^167.^0^^~1~^~PAK~^^^^^^^^^^~11/01/1998~
-~17287~^~306~^244.^0^^~1~^~PAK~^^^^^^^^^^~11/01/1998~
-~17287~^~307~^93.^0^^~1~^~PAK~^^^^^^^^^^~11/01/1998~
-~17287~^~601~^91.^0^^~1~^~PAK~^^^^^^^^^^~11/01/1998~
-~17288~^~208~^123.^0^^~9~^~MC~^^^^^^^^^^~11/01/1998~
-~17288~^~268~^515.^0^^~9~^^^^^^^^^^^
-~17288~^~301~^11.^3^2.^~1~^~A~^^^^^^^^^^~11/01/1998~
-~17288~^~304~^20.^3^0.^~1~^~A~^^^^^^^^^^~11/01/1998~
-~17288~^~305~^171.^3^6.^~1~^~A~^^^^^^^^^^~11/01/1998~
-~17288~^~306~^295.^3^4.^~1~^~A~^^^^^^^^^^~11/01/1998~
-~17288~^~307~^106.^3^7.^~1~^~A~^^^^^^^^^^~11/01/1998~
-~17288~^~601~^66.^3^0.^~1~^~A~^^^^^^^^^^~11/01/1998~
-~17289~^~208~^165.^0^^~9~^~MC~^^^^^^^^^^~01/01/1999~
-~17289~^~268~^690.^0^^~9~^^^^^^^^^^^
-~17289~^~301~^14.^3^2.^~1~^~A~^^^^^^^^^^~11/01/1998~
-~17289~^~304~^22.^3^0.^~1~^~A~^^^^^^^^^^~11/01/1998~
-~17289~^~305~^177.^3^4.^~1~^~A~^^^^^^^^^^~11/01/1998~
-~17289~^~306~^255.^3^9.^~1~^~A~^^^^^^^^^^~11/01/1998~
-~17289~^~307~^100.^3^4.^~1~^~A~^^^^^^^^^^~11/01/1998~
-~17289~^~601~^92.^3^4.^~1~^~A~^^^^^^^^^^~11/01/1998~
-~17290~^~208~^215.^0^^~9~^~MC~^^^^^^^^^^~11/01/1998~
-~17290~^~268~^900.^0^^~9~^^^^^^^^^^^
-~17290~^~301~^10.^0^^~1~^~PAK~^^^^^^^^^^~11/01/1998~
-~17290~^~304~^20.^0^^~1~^~PAK~^^^^^^^^^^~11/01/1998~
-~17290~^~305~^173.^0^^~1~^~PAK~^^^^^^^^^^~11/01/1998~
-~17290~^~306~^295.^0^^~1~^~PAK~^^^^^^^^^^~11/01/1998~
-~17290~^~307~^73.^0^^~1~^~PAK~^^^^^^^^^^~11/01/1998~
-~17290~^~601~^66.^0^^~1~^~PAK~^^^^^^^^^^~11/01/1998~
-~17291~^~208~^244.^0^^~9~^~MC~^^^^^^^^^^~11/01/1998~
-~17291~^~268~^1021.^0^^~9~^^^^^^^^^^^
-~17291~^~301~^11.^0^^~1~^~PAK~^^^^^^^^^^~11/01/1998~
-~17291~^~304~^23.^0^^~1~^~PAK~^^^^^^^^^^~11/01/1998~
-~17291~^~305~^202.^0^^~1~^~PAK~^^^^^^^^^^~11/01/1998~
-~17291~^~306~^309.^0^^~1~^~PAK~^^^^^^^^^^~11/01/1998~
-~17291~^~307~^70.^0^^~1~^~PAK~^^^^^^^^^^~11/01/1998~
-~17291~^~601~^88.^0^^~1~^~PAK~^^^^^^^^^^~11/01/1998~
-~17292~^~208~^135.^0^^~9~^~MC~^^^^^^^^^^~01/01/1999~
-~17292~^~268~^565.^0^^~9~^^^^^^^^^^^
-~17292~^~301~^8.^0^^~1~^~PAK~^^^^^^^^^^~11/01/1998~
-~17292~^~304~^23.^0^^~1~^~PAK~^^^^^^^^^^~11/01/1998~
-~17292~^~305~^192.^0^^~1~^~PAK~^^^^^^^^^^~11/01/1998~
-~17292~^~306~^329.^0^^~1~^~PAK~^^^^^^^^^^~11/01/1998~
-~17292~^~307~^81.^0^^~1~^~PAK~^^^^^^^^^^~11/01/1998~
-~17292~^~601~^64.^0^^~1~^~PAK~^^^^^^^^^^~11/01/1998~
-~17293~^~208~^190.^0^^~9~^~MC~^^^^^^^^^^~11/01/1998~
-~17293~^~268~^795.^0^^~9~^^^^^^^^^^^
-~17293~^~301~^9.^0^^~1~^~PAK~^^^^^^^^^^~11/01/1998~
-~17293~^~304~^25.^0^^~1~^~PAK~^^^^^^^^^^~11/01/1998~
-~17293~^~305~^214.^0^^~1~^~PAK~^^^^^^^^^^~11/01/1998~
-~17293~^~306~^326.^0^^~1~^~PAK~^^^^^^^^^^~11/01/1998~
-~17293~^~307~^72.^0^^~1~^~PAK~^^^^^^^^^^~11/01/1998~
-~17293~^~601~^89.^0^^~1~^~PAK~^^^^^^^^^^~11/01/1998~
-~17294~^~208~^201.^0^^~9~^~MC~^^^^^^^^^^~11/01/1998~
-~17294~^~268~^841.^0^^~9~^^^^^^^^^^^
-~17294~^~301~^9.^0^^~1~^~PAK~^^^^^^^^^^~11/01/1998~
-~17294~^~304~^20.^0^^~1~^~PAK~^^^^^^^^^^~11/01/1998~
-~17294~^~305~^176.^0^^~1~^~PAK~^^^^^^^^^^~11/01/1998~
-~17294~^~306~^301.^0^^~1~^~PAK~^^^^^^^^^^~11/01/1998~
-~17294~^~307~^75.^0^^~1~^~PAK~^^^^^^^^^^~11/01/1998~
-~17294~^~601~^66.^0^^~1~^~PAK~^^^^^^^^^^~11/01/1998~
-~17295~^~208~^231.^0^^~9~^~MC~^^^^^^^^^^~11/01/1998~
-~17295~^~268~^967.^0^^~9~^^^^^^^^^^^
-~17295~^~301~^10.^0^^~1~^~PAK~^^^^^^^^^^~11/01/1998~
-~17295~^~304~^23.^0^^~1~^~PAK~^^^^^^^^^^~11/01/1998~
-~17295~^~305~^203.^0^^~1~^~PAK~^^^^^^^^^^~11/01/1998~
-~17295~^~306~^313.^0^^~1~^~PAK~^^^^^^^^^^~11/01/1998~
-~17295~^~307~^67.^0^^~1~^~PAK~^^^^^^^^^^~11/01/1998~
-~17295~^~601~^83.^0^^~1~^~PAK~^^^^^^^^^^~11/01/1998~
-~17296~^~208~^133.^0^^~9~^~MC~^^^^^^^^^^~11/01/1998~
-~17296~^~268~^556.^0^^~9~^^^^^^^^^^^
-~17296~^~301~^7.^2^^~1~^~A~^^^^^^^^^^~11/01/1998~
-~17296~^~304~^22.^2^^~1~^~A~^^^^^^^^^^~11/01/1998~
-~17296~^~305~^191.^2^^~1~^~A~^^^^^^^^^^~11/01/1998~
-~17296~^~306~^329.^2^^~1~^~A~^^^^^^^^^^~11/01/1998~
-~17296~^~307~^81.^2^^~1~^~A~^^^^^^^^^^~11/01/1998~
-~17296~^~601~^64.^2^^~1~^~A~^^^^^^^^^^~11/01/1998~
-~17297~^~208~^182.^0^^~9~^~MC~^^^^^^^^^^~11/01/1998~
-~17297~^~268~^761.^0^^~9~^^^^^^^^^^^
-~17297~^~301~^8.^2^^~1~^~A~^^^^^^^^^^~11/01/1998~
-~17297~^~304~^25.^2^^~1~^~A~^^^^^^^^^^~11/01/1998~
-~17297~^~305~^213.^2^^~1~^~A~^^^^^^^^^^~11/01/1998~
-~17297~^~306~^329.^2^^~1~^~A~^^^^^^^^^^~11/01/1998~
-~17297~^~307~^69.^2^^~1~^~A~^^^^^^^^^^~11/01/1998~
-~17297~^~601~^83.^2^^~1~^~A~^^^^^^^^^^~11/01/1998~
-~17298~^~208~^254.^0^^~9~^~MC~^^^^^^^^^^~11/01/1998~
-~17298~^~268~^1063.^0^^~9~^^^^^^^^^^^
-~17298~^~301~^12.^0^^~1~^~PAK~^^^^^^^^^^~11/01/1998~
-~17298~^~304~^20.^0^^~1~^~PAK~^^^^^^^^^^~11/01/1998~
-~17298~^~305~^167.^0^^~1~^~PAK~^^^^^^^^^^~11/01/1998~
-~17298~^~306~^279.^0^^~1~^~PAK~^^^^^^^^^^~11/01/1998~
-~17298~^~307~^70.^0^^~1~^~PAK~^^^^^^^^^^~11/01/1998~
-~17298~^~601~^66.^0^^~1~^~PAK~^^^^^^^^^^~11/01/1998~
-~17299~^~208~^281.^0^^~9~^~MC~^^^^^^^^^^~11/01/1998~
-~17299~^~268~^1176.^0^^~9~^^^^^^^^^^^
-~17299~^~301~^15.^0^^~1~^~PAK~^^^^^^^^^^~11/01/1998~
-~17299~^~304~^23.^0^^~1~^~PAK~^^^^^^^^^^~11/01/1998~
-~17299~^~305~^199.^0^^~1~^~PAK~^^^^^^^^^^~11/01/1998~
-~17299~^~306~^297.^0^^~1~^~PAK~^^^^^^^^^^~11/01/1998~
-~17299~^~307~^78.^0^^~1~^~PAK~^^^^^^^^^^~11/01/1998~
-~17299~^~601~^102.^0^^~1~^~PAK~^^^^^^^^^^~11/01/1998~
-~17300~^~208~^138.^0^^~9~^~MC~^^^^^^^^^^~11/01/1998~
-~17300~^~268~^577.^0^^~9~^^^^^^^^^^^
-~17300~^~301~^10.^2^^~1~^~A~^^^^^^^^^^~11/01/1998~
-~17300~^~304~^23.^2^^~1~^~A~^^^^^^^^^^~11/01/1998~
-~17300~^~305~^195.^2^^~1~^~A~^^^^^^^^^^~11/01/1998~
-~17300~^~306~^328.^2^^~1~^~A~^^^^^^^^^^~11/01/1998~
-~17300~^~307~^80.^2^^~1~^~A~^^^^^^^^^^~11/01/1998~
-~17300~^~601~^63.^2^^~1~^~A~^^^^^^^^^^~11/01/1998~
-~17301~^~208~^215.^0^^~9~^~MC~^^^^^^^^^^~01/01/1999~
-~17301~^~268~^900.^0^^~9~^^^^^^^^^^^
-~17301~^~301~^13.^2^^~1~^~A~^^^^^^^^^^~11/01/1998~
-~17301~^~304~^25.^2^^~1~^~A~^^^^^^^^^^~11/01/1998~
-~17301~^~305~^214.^2^^~1~^~A~^^^^^^^^^^~11/01/1998~
-~17301~^~306~^318.^2^^~1~^~A~^^^^^^^^^^~11/01/1998~
-~17301~^~307~^83.^2^^~1~^~A~^^^^^^^^^^~11/01/1998~
-~17301~^~601~^105.^2^^~1~^~A~^^^^^^^^^^~11/01/1998~
-~17302~^~208~^208.^0^^~9~^~MC~^^^^^^^^^^~11/01/1998~
-~17302~^~268~^870.^0^^~9~^^^^^^^^^^^
-~17302~^~301~^11.^0^^~1~^~PAK~^^^^^^^^^^~11/01/1998~
-~17302~^~304~^22.^0^^~1~^~PAK~^^^^^^^^^^~11/01/1998~
-~17302~^~305~^192.^0^^~1~^~PAK~^^^^^^^^^^~11/01/1998~
-~17302~^~306~^308.^0^^~1~^~PAK~^^^^^^^^^^~11/01/1998~
-~17302~^~307~^59.^0^^~1~^~PAK~^^^^^^^^^^~11/01/1998~
-~17302~^~601~^66.^0^^~1~^~PAK~^^^^^^^^^^~11/01/1998~
-~17303~^~208~^235.^0^^~9~^~MC~^^^^^^^^^^~11/01/1998~
-~17303~^~268~^983.^0^^~9~^^^^^^^^^^^
-~17303~^~301~^14.^0^^~1~^~PAK~^^^^^^^^^^~11/01/1998~
-~17303~^~304~^25.^0^^~1~^~PAK~^^^^^^^^^^~11/01/1998~
-~17303~^~305~^224.^0^^~1~^~PAK~^^^^^^^^^^~11/01/1998~
-~17303~^~306~^336.^0^^~1~^~PAK~^^^^^^^^^^~11/01/1998~
-~17303~^~307~^64.^0^^~1~^~PAK~^^^^^^^^^^~11/01/1998~
-~17303~^~601~^85.^0^^~1~^~PAK~^^^^^^^^^^~11/01/1998~
-~17304~^~208~^132.^0^^~9~^~MC~^^^^^^^^^^~01/01/1999~
-~17304~^~268~^552.^0^^~9~^^^^^^^^^^^
-~17304~^~301~^9.^3^0.^~1~^~A~^^^^^^^^^^~11/01/1998~
-~17304~^~304~^25.^3^0.^~1~^~A~^^^^^^^^^^~11/01/1998~
-~17304~^~305~^214.^3^4.^~1~^~A~^^^^^^^^^^~11/01/1998~
-~17304~^~306~^342.^3^4.^~1~^~A~^^^^^^^^^^~11/01/1998~
-~17304~^~307~^64.^3^4.^~1~^~A~^^^^^^^^^^~11/01/1998~
-~17304~^~601~^64.^3^1.^~1~^~A~^^^^^^^^^^~11/01/1998~
-~17305~^~208~^188.^0^^~9~^~MC~^^^^^^^^^^~11/01/1998~
-~17305~^~268~^787.^0^^~9~^^^^^^^^^^^
-~17305~^~301~^13.^3^1.^~1~^~A~^^^^^^^^^^~11/01/1998~
-~17305~^~304~^26.^3^0.^~1~^~A~^^^^^^^^^^~11/01/1998~
-~17305~^~305~^237.^3^5.^~1~^~A~^^^^^^^^^^~11/01/1998~
-~17305~^~306~^354.^3^5.^~1~^~A~^^^^^^^^^^~11/01/1998~
-~17305~^~307~^66.^3^4.^~1~^~A~^^^^^^^^^^~11/01/1998~
-~17305~^~601~^85.^3^3.^~1~^~A~^^^^^^^^^^~11/01/1998~
-~17306~^~208~^195.^0^^~9~^~MC~^^^^^^^^^^~11/01/1998~
-~17306~^~268~^816.^0^^~9~^^^^^^^^^^^
-~17306~^~301~^10.^0^^~1~^~PAK~^^^^^^^^^^~11/01/1998~
-~17306~^~304~^23.^0^^~1~^~PAK~^^^^^^^^^^~11/01/1998~
-~17306~^~305~^199.^0^^~1~^~PAK~^^^^^^^^^^~11/01/1998~
-~17306~^~306~^318.^0^^~1~^~PAK~^^^^^^^^^^~11/01/1998~
-~17306~^~307~^61.^0^^~1~^~PAK~^^^^^^^^^^~11/01/1998~
-~17306~^~601~^65.^0^^~1~^~PAK~^^^^^^^^^^~11/01/1998~
-~17307~^~208~^215.^0^^~9~^~MC~^^^^^^^^^^~11/01/1998~
-~17307~^~268~^900.^0^^~9~^^^^^^^^^^^
-~17307~^~301~^14.^0^^~1~^~PAK~^^^^^^^^^^~11/01/1998~
-~17307~^~304~^25.^0^^~1~^~PAK~^^^^^^^^^^~11/01/1998~
-~17307~^~305~^228.^0^^~1~^~PAK~^^^^^^^^^^~11/01/1998~
-~17307~^~306~^342.^0^^~1~^~PAK~^^^^^^^^^^~11/01/1998~
-~17307~^~307~^65.^0^^~1~^~PAK~^^^^^^^^^^~11/01/1998~
-~17307~^~601~^85.^0^^~1~^~PAK~^^^^^^^^^^~11/01/1998~
-~17308~^~208~^143.^0^^~9~^~MC~^^^^^^^^^^~11/01/1998~
-~17308~^~268~^598.^0^^~9~^^^^^^^^^^^
-~17308~^~301~^9.^3^0.^~1~^~A~^^^^^^^^^^~11/01/1998~
-~17308~^~304~^25.^3^0.^~1~^~A~^^^^^^^^^^~11/01/1998~
-~17308~^~305~^214.^3^4.^~1~^~A~^^^^^^^^^^~11/01/1998~
-~17308~^~306~^342.^3^4.^~1~^~A~^^^^^^^^^^~11/01/1998~
-~17308~^~307~^64.^3^4.^~1~^~A~^^^^^^^^^^~11/01/1998~
-~17308~^~601~^64.^3^1.^~1~^~A~^^^^^^^^^^~11/01/1998~
-~17309~^~208~^183.^0^^~9~^~MC~^^^^^^^^^^~11/01/1998~
-~17309~^~268~^766.^0^^~9~^^^^^^^^^^^
-~17309~^~301~^13.^3^1.^~1~^~A~^^^^^^^^^^~11/01/1998~
-~17309~^~304~^26.^3^0.^~1~^~A~^^^^^^^^^^~11/01/1998~
-~17309~^~305~^237.^3^5.^~1~^~A~^^^^^^^^^^~11/01/1998~
-~17309~^~306~^354.^3^5.^~1~^~A~^^^^^^^^^^~11/01/1998~
-~17309~^~307~^66.^3^4.^~1~^~A~^^^^^^^^^^~11/01/1998~
-~17309~^~601~^85.^3^3.^~1~^~A~^^^^^^^^^^~11/01/1998~
-~17310~^~208~^203.^0^^~9~^~MC~^^^^^^^^^^~11/01/1998~
-~17310~^~268~^849.^0^^~9~^^^^^^^^^^^
-~17310~^~301~^15.^0^^~1~^~PAK~^^^^^^^^^^~11/01/1998~
-~17310~^~304~^22.^0^^~1~^~PAK~^^^^^^^^^^~11/01/1998~
-~17310~^~305~^185.^0^^~1~^~PAK~^^^^^^^^^^~11/01/1998~
-~17310~^~306~^302.^0^^~1~^~PAK~^^^^^^^^^^~11/01/1998~
-~17310~^~307~^70.^0^^~1~^~PAK~^^^^^^^^^^~11/01/1998~
-~17310~^~601~^66.^0^^~1~^~PAK~^^^^^^^^^^~11/01/1998~
-~17311~^~208~^219.^0^^~9~^~MC~^^^^^^^^^^~11/01/1998~
-~17311~^~268~^916.^0^^~9~^^^^^^^^^^^
-~17311~^~301~^21.^0^^~1~^~PAK~^^^^^^^^^^~11/01/1998~
-~17311~^~304~^25.^0^^~1~^~PAK~^^^^^^^^^^~11/01/1998~
-~17311~^~305~^214.^0^^~1~^~PAK~^^^^^^^^^^~11/01/1998~
-~17311~^~306~^331.^0^^~1~^~PAK~^^^^^^^^^^~11/01/1998~
-~17311~^~307~^78.^0^^~1~^~PAK~^^^^^^^^^^~11/01/1998~
-~17311~^~601~^82.^0^^~1~^~PAK~^^^^^^^^^^~11/01/1998~
-~17312~^~208~^146.^0^^~9~^~MC~^^^^^^^^^^~11/01/1998~
-~17312~^~268~^611.^0^^~9~^^^^^^^^^^^
-~17312~^~301~^15.^6^1.^~1~^~A~^^^^^^^^^^~11/01/1998~
-~17312~^~304~^24.^6^0.^~1~^~A~^^^^^^^^^^~11/01/1998~
-~17312~^~305~^199.^6^3.^~1~^~A~^^^^^^^^^^~11/01/1998~
-~17312~^~306~^327.^6^1.^~1~^~A~^^^^^^^^^^~11/01/1998~
-~17312~^~307~^75.^6^3.^~1~^~A~^^^^^^^^^^~11/01/1998~
-~17312~^~601~^64.^6^0.^~1~^~A~^^^^^^^^^^~11/01/1998~
-~17313~^~208~^192.^0^^~9~^~MC~^^^^^^^^^^~11/01/1998~
-~17313~^~268~^803.^0^^~9~^^^^^^^^^^^
-~17313~^~301~^21.^6^1.^~1~^~A~^^^^^^^^^^~11/01/1998~
-~17313~^~304~^26.^6^0.^~1~^~A~^^^^^^^^^^~11/01/1998~
-~17313~^~305~^220.^6^4.^~1~^~A~^^^^^^^^^^~11/01/1998~
-~17313~^~306~^340.^6^3.^~1~^~A~^^^^^^^^^^~11/01/1998~
-~17313~^~307~^80.^6^1.^~1~^~A~^^^^^^^^^^~11/01/1998~
-~17313~^~601~^81.^6^0.^~1~^~A~^^^^^^^^^^~11/01/1998~
-~17314~^~208~^237.^0^^~4~^~PIK~^^^^^^^^^^~11/01/2014~
-~17314~^~262~^0.^0^^~4~^~PIK~^^^^^^^^^^~11/01/2014~
-~17314~^~263~^0.^0^^~4~^~PIK~^^^^^^^^^^~11/01/2014~
-~17314~^~268~^992.^0^^~4~^~PIK~^^^^^^^^^^~11/01/2014~
-~17314~^~301~^7.^0^^~1~^~PAK~^^^^^^^^^^~11/01/2014~
-~17314~^~304~^28.^0^^~1~^~PAK~^^^^^^^^^^~11/01/2014~
-~17314~^~305~^132.^0^^~1~^~PAK~^^^^^^^^^^~11/01/2014~
-~17314~^~306~^189.^0^^~1~^~PAK~^^^^^^^^^^~11/01/2014~
-~17314~^~307~^69.^0^^~1~^~PAK~^^^^^^^^^^~11/01/2014~
-~17314~^~318~^12.^0^^~4~^~PIK~^^^^^^^^^^~11/01/2014~
-~17314~^~319~^4.^0^^~4~^~PIK~^^^^^^^^^^~11/01/2014~
-~17314~^~320~^4.^0^^~4~^~PIK~^^^^^^^^^^~11/01/2014~
-~17314~^~321~^0.^0^^~4~^~PIK~^^^^^^^^^^~11/01/2014~
-~17314~^~322~^0.^0^^~4~^~PIK~^^^^^^^^^^~11/01/2014~
-~17314~^~324~^0.^0^^~1~^~PAK~^^^^^^^^^^~11/01/2014~
-~17314~^~334~^0.^0^^~4~^~PIK~^^^^^^^^^^~11/01/2014~
-~17314~^~337~^0.^0^^~4~^~PIK~^^^^^^^^^^~11/01/2014~
-~17314~^~338~^0.^0^^~4~^~PIK~^^^^^^^^^^~11/01/2014~
-~17314~^~601~^69.^0^^~1~^~PAK~^^^^^^^^^^~11/01/2014~
-~17315~^~208~^305.^0^^~4~^~NC~^^^^^^^^^^~11/01/2014~
-~17315~^~262~^0.^0^^~4~^~PIK~^^^^^^^^^^~11/01/2014~
-~17315~^~263~^0.^0^^~4~^~PIK~^^^^^^^^^^~11/01/2014~
-~17315~^~268~^1275.^0^^~4~^~NC~^^^^^^^^^^~11/01/2014~
-~17315~^~301~^11.^0^^~1~^~PAK~^^^^^^^^^^~11/01/2014~
-~17315~^~304~^24.^0^^~1~^~PAK~^^^^^^^^^^~11/01/2014~
-~17315~^~305~^199.^0^^~1~^~PAK~^^^^^^^^^^~11/01/2014~
-~17315~^~306~^292.^0^^~1~^~PAK~^^^^^^^^^^~11/01/2014~
-~17315~^~307~^79.^0^^~1~^~PAK~^^^^^^^^^^~11/01/2014~
-~17315~^~318~^11.^0^^~4~^~PIK~^^^^^^^^^^~11/01/2014~
-~17315~^~319~^3.^0^^~4~^~PIK~^^^^^^^^^^~11/01/2014~
-~17315~^~320~^3.^0^^~4~^~PIK~^^^^^^^^^^~11/01/2014~
-~17315~^~321~^0.^0^^~4~^~PIK~^^^^^^^^^^~11/01/2014~
-~17315~^~322~^0.^0^^~4~^~PIK~^^^^^^^^^^~11/01/2014~
-~17315~^~324~^0.^0^^~4~^~PIK~^^^^^^^^^^~12/01/2014~
-~17315~^~334~^0.^0^^~4~^~PIK~^^^^^^^^^^~11/01/2014~
-~17315~^~337~^0.^0^^~4~^~PIK~^^^^^^^^^^~11/01/2014~
-~17315~^~338~^0.^0^^~4~^~PIK~^^^^^^^^^^~11/01/2014~
-~17315~^~601~^91.^0^^~1~^~PAK~^^^^^^^^^^~11/01/2014~
-~17316~^~208~^147.^0^^~4~^~NC~^^^^^^^^^^~11/01/2014~
-~17316~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~11/01/2014~
-~17316~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~11/01/2014~
-~17316~^~268~^613.^0^^~4~^~NC~^^^^^^^^^^~11/01/2014~
-~17316~^~301~^7.^1^^~1~^~A~^^^^^^^^^^~11/01/2014~
-~17316~^~304~^36.^1^^~1~^~A~^^^^^^^^^^~11/01/2014~
-~17316~^~305~^150.^1^^~1~^~A~^^^^^^^^^^~11/01/2014~
-~17316~^~306~^209.^1^^~1~^~A~^^^^^^^^^^~11/01/2014~
-~17316~^~307~^71.^1^^~1~^~A~^^^^^^^^^^~11/01/2014~
-~17316~^~318~^17.^0^^~4~^~NC~^^^^^^^^^^~11/01/2014~
-~17316~^~319~^5.^0^^~4~^~BFSN~^~17397~^^^^^^^^^~11/01/2014~
-~17316~^~320~^5.^0^^~4~^~NC~^^^^^^^^^^~11/01/2014~
-~17316~^~321~^0.^0^^~7~^~Z~^^^^^^^^^^~11/01/2014~
-~17316~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~11/01/2014~
-~17316~^~324~^0.^1^^~1~^~A~^^^^^^^^^~1~^~11/01/2014~
-~17316~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~11/01/2014~
-~17316~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~11/01/2014~
-~17316~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~11/01/2014~
-~17316~^~601~^66.^1^^~1~^~A~^^^^^^^^^^~11/01/1998~
-~17317~^~208~^234.^0^^~4~^~NC~^^^^^^^^^^~11/01/2014~
-~17317~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~11/01/2014~
-~17317~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~11/01/2014~
-~17317~^~268~^978.^0^^~4~^~NC~^^^^^^^^^^~11/01/2014~
-~17317~^~301~^11.^1^^~1~^~A~^^^^^^^^^^~11/01/2014~
-~17317~^~304~^26.^1^^~1~^~A~^^^^^^^^^^~11/01/2014~
-~17317~^~305~^216.^1^^~1~^~A~^^^^^^^^^^~11/01/2014~
-~17317~^~306~^320.^1^^~1~^~A~^^^^^^^^^^~11/01/2014~
-~17317~^~307~^85.^1^^~1~^~A~^^^^^^^^^^~11/01/2014~
-~17317~^~318~^15.^0^^~4~^~NC~^^^^^^^^^^~11/01/2014~
-~17317~^~319~^4.^0^^~4~^~BFSN~^~17396~^^^^^^^^^~11/01/2014~
-~17317~^~320~^4.^0^^~4~^~NC~^^^^^^^^^^~11/01/2014~
-~17317~^~321~^0.^0^^~7~^~Z~^^^^^^^^^^~11/01/2014~
-~17317~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~11/01/2014~
-~17317~^~324~^0.^0^^~4~^~BFYN~^~17316~^^^^^^^^^~12/01/2014~
-~17317~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~11/01/2014~
-~17317~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~11/01/2014~
-~17317~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~11/01/2014~
-~17317~^~601~^92.^1^^~1~^~A~^^^^^^^^^^~11/01/2014~
-~17318~^~208~^256.^0^^~9~^~MC~^^^^^^^^^^~11/01/1998~
-~17318~^~268~^1071.^0^^~9~^^^^^^^^^^^
-~17318~^~301~^18.^0^^~1~^~PAK~^^^^^^^^^^~11/01/1998~
-~17318~^~304~^18.^0^^~1~^~PAK~^^^^^^^^^^~11/01/1998~
-~17318~^~305~^156.^0^^~1~^~PAK~^^^^^^^^^^~11/01/1998~
-~17318~^~306~^267.^0^^~1~^~PAK~^^^^^^^^^^~11/01/1998~
-~17318~^~307~^76.^0^^~1~^~PAK~^^^^^^^^^^~11/01/1998~
-~17318~^~601~^66.^0^^~1~^~PAK~^^^^^^^^^^~11/01/1998~
-~17319~^~208~^296.^0^^~9~^~MC~^^^^^^^^^^~11/01/1998~
-~17319~^~268~^1238.^0^^~9~^^^^^^^^^^^
-~17319~^~301~^28.^0^^~1~^~PAK~^^^^^^^^^^~11/01/1998~
-~17319~^~304~^21.^0^^~1~^~PAK~^^^^^^^^^^~11/01/1998~
-~17319~^~305~^183.^0^^~1~^~PAK~^^^^^^^^^^~11/01/1998~
-~17319~^~306~^288.^0^^~1~^~PAK~^^^^^^^^^^~11/01/1998~
-~17319~^~307~^85.^0^^~1~^~PAK~^^^^^^^^^^~11/01/1998~
-~17319~^~601~^89.^0^^~1~^~PAK~^^^^^^^^^^~11/01/1998~
-~17320~^~208~^155.^0^^~9~^~MC~^^^^^^^^^^~11/01/1998~
-~17320~^~268~^649.^0^^~9~^^^^^^^^^^^
-~17320~^~301~^18.^0^^~1~^~PAK~^^^^^^^^^^~11/01/1998~
-~17320~^~304~^21.^0^^~1~^~PAK~^^^^^^^^^^~11/01/1998~
-~17320~^~305~^178.^0^^~1~^~PAK~^^^^^^^^^^~11/01/1998~
-~17320~^~306~^306.^0^^~1~^~PAK~^^^^^^^^^^~11/01/1998~
-~17320~^~307~^88.^0^^~1~^~PAK~^^^^^^^^^^~11/01/1998~
-~17320~^~601~^64.^0^^~1~^~PAK~^^^^^^^^^^~11/01/1998~
-~17321~^~208~^233.^0^^~9~^~MC~^^^^^^^^^^~11/01/1998~
-~17321~^~268~^975.^0^^~9~^^^^^^^^^^^
-~17321~^~301~^28.^0^^~1~^~PAK~^^^^^^^^^^~11/01/1998~
-~17321~^~304~^22.^0^^~1~^~PAK~^^^^^^^^^^~11/01/1998~
-~17321~^~305~^195.^0^^~1~^~PAK~^^^^^^^^^^~11/01/1998~
-~17321~^~306~^308.^0^^~1~^~PAK~^^^^^^^^^^~11/01/1998~
-~17321~^~307~^91.^0^^~1~^~PAK~^^^^^^^^^^~11/01/1998~
-~17321~^~601~^91.^0^^~1~^~PAK~^^^^^^^^^^~11/01/1998~
-~17322~^~208~^243.^0^^~9~^~MC~^^^^^^^^^^~11/01/1998~
-~17322~^~268~^1017.^0^^~9~^^^^^^^^^^^
-~17322~^~301~^16.^0^^~1~^~PAK~^^^^^^^^^^~11/01/1998~
-~17322~^~304~^19.^0^^~1~^~PAK~^^^^^^^^^^~11/01/1998~
-~17322~^~305~^168.^0^^~1~^~PAK~^^^^^^^^^^~11/01/1998~
-~17322~^~306~^281.^0^^~1~^~PAK~^^^^^^^^^^~11/01/1998~
-~17322~^~307~^72.^0^^~1~^~PAK~^^^^^^^^^^~11/01/1998~
-~17322~^~601~^65.^0^^~1~^~PAK~^^^^^^^^^^~11/01/1998~
-~17323~^~208~^311.^0^^~9~^~MC~^^^^^^^^^^~11/01/1998~
-~17323~^~268~^1301.^0^^~9~^^^^^^^^^^^
-~17323~^~301~^27.^0^^~1~^~PAK~^^^^^^^^^^~11/01/1998~
-~17323~^~304~^23.^0^^~1~^~PAK~^^^^^^^^^^~11/01/1998~
-~17323~^~305~^201.^0^^~1~^~PAK~^^^^^^^^^^~11/01/1998~
-~17323~^~306~^268.^0^^~1~^~PAK~^^^^^^^^^^~11/01/1998~
-~17323~^~307~^73.^0^^~1~^~PAK~^^^^^^^^^^~11/01/1998~
-~17323~^~601~^106.^0^^~1~^~PAK~^^^^^^^^^^~10/01/1998~
-~17324~^~208~^137.^0^^~9~^~MC~^^^^^^^^^^~11/01/1998~
-~17324~^~268~^573.^0^^~9~^^^^^^^^^^^
-~17324~^~301~^15.^3^1.^~1~^~A~^^^^^^^^^^~11/01/1998~
-~17324~^~304~^22.^3^0.^~1~^~A~^^^^^^^^^^~11/01/1998~
-~17324~^~305~^193.^3^1.^~1~^~A~^^^^^^^^^^~11/01/1998~
-~17324~^~306~^325.^3^2.^~1~^~A~^^^^^^^^^^~11/01/1998~
-~17324~^~307~^83.^3^0.^~1~^~A~^^^^^^^^^^~11/01/1998~
-~17324~^~601~^62.^3^1.^~1~^~A~^^^^^^^^^^~11/01/1998~
-~17325~^~208~^238.^0^^~9~^~MC~^^^^^^^^^^~11/01/1998~
-~17325~^~268~^996.^0^^~9~^^^^^^^^^^^
-~17325~^~301~^27.^3^1.^~1~^~A~^^^^^^^^^^~11/01/1998~
-~17325~^~304~^25.^3^0.^~1~^~A~^^^^^^^^^^~11/01/1998~
-~17325~^~305~^221.^3^1.^~1~^~A~^^^^^^^^^^~11/01/1998~
-~17325~^~306~^287.^3^0.^~1~^~A~^^^^^^^^^^~11/01/1998~
-~17325~^~307~^78.^3^0.^~1~^~A~^^^^^^^^^^~11/01/1998~
-~17325~^~601~^111.^3^1.^~1~^~A~^^^^^^^^^^~11/01/1998~
-~17326~^~208~^262.^0^^~9~^~MC~^^^^^^^^^^~11/01/1998~
-~17326~^~268~^1096.^0^^~9~^^^^^^^^^^^
-~17326~^~301~^19.^0^^~1~^~PAK~^^^^^^^^^^~11/01/1998~
-~17326~^~304~^17.^0^^~1~^~PAK~^^^^^^^^^^~11/01/1998~
-~17326~^~305~^150.^0^^~1~^~PAK~^^^^^^^^^^~11/01/1998~
-~17326~^~306~^260.^0^^~1~^~PAK~^^^^^^^^^^~11/01/1998~
-~17326~^~307~^78.^0^^~1~^~PAK~^^^^^^^^^^~11/01/1998~
-~17326~^~601~^67.^0^^~1~^~PAK~^^^^^^^^^^~11/01/1998~
-~17327~^~208~^291.^0^^~9~^~MC~^^^^^^^^^^~11/01/1998~
-~17327~^~268~^1218.^0^^~9~^^^^^^^^^^^
-~17327~^~301~^28.^0^^~1~^~PAK~^^^^^^^^^^~11/01/1998~
-~17327~^~304~^20.^0^^~1~^~PAK~^^^^^^^^^^~11/01/1998~
-~17327~^~305~^177.^0^^~1~^~PAK~^^^^^^^^^^~11/01/1998~
-~17327~^~306~^295.^0^^~1~^~PAK~^^^^^^^^^^~11/01/1998~
-~17327~^~307~^88.^0^^~1~^~PAK~^^^^^^^^^^~11/01/1998~
-~17327~^~601~^84.^0^^~1~^~PAK~^^^^^^^^^^~11/01/1998~
-~17328~^~208~^164.^0^^~9~^~MC~^^^^^^^^^^~01/01/1999~
-~17328~^~268~^686.^0^^~9~^^^^^^^^^^^
-~17328~^~301~^19.^3^0.^~1~^~A~^^^^^^^^^^~11/01/1998~
-~17328~^~304~^20.^3^0.^~1~^~A~^^^^^^^^^^~11/01/1998~
-~17328~^~305~^170.^3^2.^~1~^~A~^^^^^^^^^^~11/01/1998~
-~17328~^~306~^298.^3^2.^~1~^~A~^^^^^^^^^^~11/01/1998~
-~17328~^~307~^90.^3^1.^~1~^~A~^^^^^^^^^^~11/01/1998~
-~17328~^~601~^64.^3^0.^~1~^~A~^^^^^^^^^^~11/01/1998~
-~17329~^~208~^231.^0^^~9~^~MC~^^^^^^^^^^~01/01/1999~
-~17329~^~268~^967.^0^^~9~^^^^^^^^^^^
-~17329~^~301~^28.^3^1.^~1~^~A~^^^^^^^^^^~11/01/1998~
-~17329~^~304~^21.^3^0.^~1~^~A~^^^^^^^^^^~11/01/1998~
-~17329~^~305~^188.^3^1.^~1~^~A~^^^^^^^^^^~11/01/1998~
-~17329~^~306~^315.^3^4.^~1~^~A~^^^^^^^^^^~11/01/1998~
-~17329~^~307~^94.^3^2.^~1~^~A~^^^^^^^^^^~11/01/1998~
-~17329~^~601~^85.^3^0.^~1~^~A~^^^^^^^^^^~11/01/1998~
-~17330~^~208~^223.^0^^~4~^~NC~^^^^^^^^^^~03/01/2008~
-~17330~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~09/01/2001~
-~17330~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~09/01/2001~
-~17330~^~268~^935.^0^^~4~^~NC~^^^^^^^^^^~03/01/2008~
-~17330~^~301~^11.^3^0.^~1~^~A~^^^1^10.^12.^2^7.^13.^~4~^~09/01/2001~
-~17330~^~304~^19.^3^0.^~1~^~A~^^^1^18.^20.^2^17.^21.^~4~^~09/01/2001~
-~17330~^~305~^181.^3^5.^~1~^~A~^^^1^170.^189.^2^156.^206.^~4~^~09/01/2001~
-~17330~^~306~^307.^3^11.^~1~^~A~^^^1^285.^324.^2^257.^355.^~4~^~09/01/2001~
-~17330~^~307~^66.^3^2.^~1~^~A~^^^1^61.^70.^2^54.^76.^~4~^~09/01/2001~
-~17330~^~318~^0.^0^^~1~^~AS~^^^^^^^^^^~01/01/2002~
-~17330~^~319~^0.^1^^~1~^~A~^^^^^^^^^~1~^~09/01/2001~
-~17330~^~320~^0.^0^^~1~^~AS~^^^^^^^^^^~01/01/2002~
-~17330~^~321~^0.^0^^~7~^~Z~^^^^^^^^^^~09/01/2001~
-~17330~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~09/01/2001~
-~17330~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~09/01/2001~
-~17330~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~09/01/2001~
-~17330~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~09/01/2001~
-~17330~^~417~^11.^1^^~1~^~A~^^^^^^^^^^~09/01/2001~
-~17330~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2002~
-~17330~^~432~^11.^1^^~1~^~A~^^^^^^^^^^~03/01/2008~
-~17330~^~435~^11.^0^^~4~^~NC~^^^^^^^^^^~03/01/2008~
-~17330~^~601~^70.^6^2.^~1~^~A~^^^1^66.^82.^5^63.^76.^~4~^~09/01/2001~
-~17331~^~208~^238.^0^^~4~^~NC~^^^^^^^^^^~03/01/2008~
-~17331~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~09/01/2001~
-~17331~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~09/01/2001~
-~17331~^~268~^996.^0^^~4~^~NC~^^^^^^^^^^~03/01/2008~
-~17331~^~301~^13.^3^1.^~1~^~A~^^^1^12.^16.^2^7.^18.^~4~^~09/01/2001~
-~17331~^~304~^22.^3^1.^~1~^~A~^^^1^20.^24.^2^17.^26.^~4~^~09/01/2001~
-~17331~^~305~^205.^3^11.^~1~^~A~^^^1^184.^224.^2^155.^255.^~4~^~09/01/2001~
-~17331~^~306~^341.^3^17.^~1~^~A~^^^1^306.^366.^2^263.^417.^~4~^~09/01/2001~
-~17331~^~307~^73.^3^3.^~1~^~A~^^^1^67.^77.^2^59.^86.^~4~^~09/01/2001~
-~17331~^~318~^0.^0^^~1~^~AS~^^^^^^^^^^~03/01/2008~
-~17331~^~319~^0.^1^^~1~^~A~^^^^^^^^^~1~^~09/01/2001~
-~17331~^~320~^0.^0^^~1~^~AS~^^^^^^^^^^~03/01/2008~
-~17331~^~321~^0.^0^^~7~^~Z~^^^^^^^^^^~09/01/2001~
-~17331~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~09/01/2001~
-~17331~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~09/01/2001~
-~17331~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~09/01/2001~
-~17331~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~09/01/2001~
-~17331~^~417~^15.^1^^~1~^~A~^^^^^^^^^^~09/01/2001~
-~17331~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2002~
-~17331~^~432~^15.^1^^~1~^~A~^^^^^^^^^^~03/01/2008~
-~17331~^~435~^15.^0^^~4~^~NC~^^^^^^^^^^~03/01/2008~
-~17331~^~601~^83.^6^1.^~1~^~A~^^^1^77.^88.^5^78.^86.^~4~^~09/01/2001~
-~17332~^~208~^171.^0^^~4~^~NC~^^^^^^^^^^~03/01/2002~
-~17332~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~11/01/2001~
-~17332~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2002~
-~17332~^~268~^714.^0^^~4~^~NC~^^^^^^^^^^~03/01/2002~
-~17332~^~301~^5.^3^0.^~1~^~A~^^^1^4.^7.^2^1.^9.^~4~^~11/01/2001~
-~17332~^~304~^27.^3^0.^~1~^~A~^^^1^26.^29.^2^23.^31.^~4~^~11/01/2001~
-~17332~^~305~^253.^3^12.^~1~^~A~^^^1^234.^277.^2^197.^307.^~4~^~11/01/2001~
-~17332~^~306~^387.^3^12.^~1~^~A~^^^1^363.^404.^2^333.^440.^~4~^~11/01/2001~
-~17332~^~307~^53.^3^3.^~1~^~A~^^^1^49.^61.^2^36.^69.^~4~^~11/01/2001~
-~17332~^~318~^0.^0^^~4~^~BFSN~^~17331~^^^^^^^^^~02/01/2002~
-~17332~^~319~^0.^0^^~4~^~BFSN~^~17331~^^^^^^^^^~02/01/2002~
-~17332~^~320~^0.^0^^~4~^~NC~^^^^^^^^^^~03/01/2002~
-~17332~^~321~^0.^0^^~7~^~Z~^^^^^^^^^^~11/01/2001~
-~17332~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~11/01/2001~
-~17332~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~11/01/2001~
-~17332~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~11/01/2001~
-~17332~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~11/01/2001~
-~17332~^~417~^18.^0^^~4~^~BFPN~^~17331~^^^^^^^^^~02/01/2002~
-~17332~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2002~
-~17332~^~432~^18.^0^^~4~^~BFPN~^~17331~^^^^^^^^^~02/01/2002~
-~17332~^~435~^18.^0^^~4~^~NC~^^^^^^^^^^~05/01/2002~
-~17332~^~601~^86.^6^1.^~1~^~A~^^^1^83.^91.^5^83.^88.^~4~^~11/01/2001~
-~17333~^~208~^193.^0^^~4~^~NC~^^^^^^^^^^~03/01/2002~
-~17333~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~11/01/2001~
-~17333~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~11/01/2001~
-~17333~^~268~^809.^0^^~4~^~NC~^^^^^^^^^^~03/01/2002~
-~17333~^~301~^7.^3^0.^~1~^~A~^^^1^6.^8.^2^4.^9.^~4~^~11/01/2001~
-~17333~^~304~^26.^3^0.^~1~^~A~^^^1^25.^28.^2^22.^29.^~4~^~11/01/2001~
-~17333~^~305~^239.^3^4.^~1~^~A~^^^1^234.^249.^2^218.^260.^~4~^~11/01/2001~
-~17333~^~306~^316.^3^6.^~1~^~A~^^^1^307.^329.^2^286.^344.^~4~^~11/01/2001~
-~17333~^~307~^57.^3^4.^~1~^~A~^^^1^52.^65.^2^38.^75.^~4~^~11/01/2001~
-~17333~^~318~^0.^0^^~4~^~BFSN~^~17331~^^^^^^^^^~02/01/2002~
-~17333~^~319~^0.^0^^~4~^~BFSN~^~17331~^^^^^^^^^~02/01/2002~
-~17333~^~320~^0.^0^^~4~^~NC~^^^^^^^^^^~03/01/2002~
-~17333~^~321~^0.^0^^~7~^~Z~^^^^^^^^^^~11/01/2001~
-~17333~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~11/01/2001~
-~17333~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~11/01/2001~
-~17333~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~11/01/2001~
-~17333~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~11/01/2001~
-~17333~^~417~^21.^0^^~4~^~BFPN~^~17331~^^^^^^^^^~02/01/2002~
-~17333~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2002~
-~17333~^~432~^21.^0^^~4~^~BFPN~^~17331~^^^^^^^^^~02/01/2002~
-~17333~^~435~^21.^0^^~4~^~NC~^^^^^^^^^^~05/01/2002~
-~17333~^~601~^111.^6^3.^~1~^~A~^^^1^100.^123.^5^102.^118.^~4~^~11/01/2001~
-~17334~^~208~^119.^0^^~4~^~NC~^^^^^^^^^^~03/01/2002~
-~17334~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~11/01/2001~
-~17334~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~11/01/2001~
-~17334~^~268~^496.^0^^~4~^~NC~^^^^^^^^^^~03/01/2002~
-~17334~^~301~^5.^3^0.^~1~^~A~^^^1^4.^7.^2^1.^9.^~4~^~11/01/2001~
-~17334~^~304~^24.^3^0.^~1~^~A~^^^1^23.^25.^2^21.^26.^~4~^~11/01/2001~
-~17334~^~305~^213.^3^4.^~1~^~A~^^^1^205.^220.^2^194.^232.^~4~^~11/01/2001~
-~17334~^~306~^353.^3^5.^~1~^~A~^^^1^343.^359.^2^331.^374.^~4~^~11/01/2001~
-~17334~^~307~^62.^3^1.^~1~^~A~^^^1^60.^65.^2^55.^68.^~4~^~11/01/2001~
-~17334~^~318~^0.^0^^~4~^~BFSN~^~17330~^^^^^^^^^~02/01/2002~
-~17334~^~319~^0.^0^^~4~^~BFSN~^~17330~^^^^^^^^^~02/01/2002~
-~17334~^~320~^0.^0^^~4~^~NC~^^^^^^^^^^~03/01/2002~
-~17334~^~321~^0.^0^^~7~^~Z~^^^^^^^^^^~11/01/2001~
-~17334~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~11/01/2001~
-~17334~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~11/01/2001~
-~17334~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~11/01/2001~
-~17334~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~11/01/2001~
-~17334~^~417~^13.^0^^~4~^~BFPN~^~17330~^^^^^^^^^~02/01/2002~
-~17334~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2002~
-~17334~^~432~^13.^0^^~4~^~BFPN~^~17330~^^^^^^^^^~02/01/2002~
-~17334~^~435~^13.^0^^~4~^~NC~^^^^^^^^^^~05/01/2002~
-~17334~^~601~^64.^6^0.^~1~^~A~^^^1^61.^66.^5^62.^66.^~4~^~11/01/2001~
-~17335~^~208~^177.^0^^~4~^~NC~^^^^^^^^^^~03/01/2002~
-~17335~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~11/01/2001~
-~17335~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~11/01/2001~
-~17335~^~268~^740.^0^^~4~^~NC~^^^^^^^^^^~03/01/2002~
-~17335~^~301~^7.^3^0.^~1~^~A~^^^1^6.^7.^2^4.^8.^~4~^~11/01/2001~
-~17335~^~304~^26.^3^1.^~1~^~A~^^^1^24.^28.^2^21.^30.^~4~^~11/01/2001~
-~17335~^~305~^238.^3^5.^~1~^~A~^^^1^227.^245.^2^214.^261.^~4~^~11/01/2001~
-~17335~^~306~^371.^3^8.^~1~^~A~^^^1^357.^385.^2^336.^405.^~4~^~11/01/2001~
-~17335~^~307~^52.^3^4.^~1~^~A~^^^1^44.^58.^2^34.^70.^~4~^~11/01/2001~
-~17335~^~318~^0.^0^^~4~^~BFSN~^~17331~^^^^^^^^^~02/01/2002~
-~17335~^~319~^0.^0^^~4~^~BFSN~^~17331~^^^^^^^^^~02/01/2002~
-~17335~^~320~^0.^0^^~4~^~NC~^^^^^^^^^^~03/01/2002~
-~17335~^~321~^0.^0^^~7~^~Z~^^^^^^^^^^~11/01/2001~
-~17335~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~11/01/2001~
-~17335~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~11/01/2001~
-~17335~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~11/01/2001~
-~17335~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~11/01/2001~
-~17335~^~417~^18.^0^^~4~^~BFPN~^~17330~^^^^^^^^^~02/01/2002~
-~17335~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2002~
-~17335~^~432~^18.^0^^~4~^~BFPN~^~17330~^^^^^^^^^~02/01/2002~
-~17335~^~435~^18.^0^^~4~^~NC~^^^^^^^^^^~05/01/2002~
-~17335~^~601~^79.^6^1.^~1~^~A~^^^1^73.^84.^5^73.^83.^~4~^~11/01/2001~
-~17336~^~208~^174.^0^^~4~^~NC~^^^^^^^^^^~03/01/2003~
-~17336~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~11/01/2001~
-~17336~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~11/01/2001~
-~17336~^~268~^726.^0^^~4~^~NC~^^^^^^^^^^~03/01/2003~
-~17336~^~301~^5.^3^0.^~1~^~A~^^^1^5.^5.^2^4.^5.^~4~^~03/01/2003~
-~17336~^~304~^28.^3^1.^~1~^~A~^^^1^26.^30.^2^22.^32.^~4~^~03/01/2003~
-~17336~^~305~^257.^3^10.^~1~^~A~^^^1^249.^279.^2^210.^302.^~4~^~03/01/2003~
-~17336~^~306~^382.^3^14.^~1~^~A~^^^1^371.^411.^2^321.^442.^~4~^~03/01/2003~
-~17336~^~307~^41.^3^3.^~1~^~A~^^^1^38.^47.^2^27.^54.^~4~^~03/01/2003~
-~17336~^~318~^0.^0^^~4~^~BFSN~^~17331~^^^^^^^^^~03/01/2003~
-~17336~^~319~^0.^0^^~4~^~BFSN~^~17331~^^^^^^^^^~03/01/2003~
-~17336~^~320~^0.^0^^~4~^~NC~^^^^^^^^^^~03/01/2003~
-~17336~^~321~^0.^0^^~7~^~Z~^^^^^^^^^^~11/01/2001~
-~17336~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~11/01/2001~
-~17336~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~11/01/2001~
-~17336~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~11/01/2001~
-~17336~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~11/01/2001~
-~17336~^~417~^19.^0^^~4~^~BFPN~^~17331~^^^^^^^^^~03/01/2003~
-~17336~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2002~
-~17336~^~432~^19.^0^^~4~^~BFPN~^~17331~^^^^^^^^^~03/01/2003~
-~17336~^~435~^19.^0^^~4~^~NC~^^^^^^^^^^~03/01/2003~
-~17336~^~601~^85.^6^2.^~1~^~A~^^^1^75.^90.^5^78.^92.^~4~^~03/01/2003~
-~17337~^~208~^122.^0^^~4~^~NC~^^^^^^^^^^~03/01/2002~
-~17337~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~11/01/2001~
-~17337~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~11/01/2001~
-~17337~^~268~^508.^0^^~4~^~NC~^^^^^^^^^^~03/01/2002~
-~17337~^~301~^5.^3^0.^~1~^~A~^^^1^4.^5.^2^3.^5.^~4~^~11/01/2001~
-~17337~^~304~^27.^3^0.^~1~^~A~^^^1^26.^27.^2^25.^27.^~4~^~11/01/2001~
-~17337~^~305~^237.^3^1.^~1~^~A~^^^1^234.^240.^2^229.^244.^~4~^~11/01/2001~
-~17337~^~306~^390.^3^2.^~1~^~A~^^^1^385.^395.^2^377.^402.^~4~^~11/01/2001~
-~17337~^~307~^47.^3^1.^~1~^~A~^^^1^45.^48.^2^42.^51.^~4~^~11/01/2001~
-~17337~^~318~^0.^0^^~4~^~BFSN~^~17330~^^^^^^^^^~02/01/2002~
-~17337~^~319~^0.^0^^~4~^~BFSN~^~17330~^^^^^^^^^~02/01/2002~
-~17337~^~320~^0.^0^^~4~^~NC~^^^^^^^^^^~03/01/2002~
-~17337~^~321~^0.^0^^~7~^~Z~^^^^^^^^^^~11/01/2001~
-~17337~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~11/01/2001~
-~17337~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~11/01/2001~
-~17337~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~11/01/2001~
-~17337~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~11/01/2001~
-~17337~^~417~^14.^0^^~4~^~BFPN~^~17330~^^^^^^^^^~02/01/2002~
-~17337~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2002~
-~17337~^~432~^14.^0^^~4~^~BFPN~^~17330~^^^^^^^^^~02/01/2002~
-~17337~^~435~^14.^0^^~4~^~NC~^^^^^^^^^^~05/01/2002~
-~17337~^~601~^65.^6^1.^~1~^~A~^^^1^60.^67.^5^62.^67.^~4~^~11/01/2001~
-~17338~^~208~^172.^0^^~4~^~NC~^^^^^^^^^^~03/01/2002~
-~17338~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~09/01/2001~
-~17338~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~09/01/2001~
-~17338~^~268~^722.^0^^~4~^~NC~^^^^^^^^^^~03/01/2002~
-~17338~^~301~^12.^3^2.^~1~^~A~^^^1^8.^17.^2^-1.^24.^~4~^~02/01/2002~
-~17338~^~304~^22.^3^0.^~1~^~A~^^^1^21.^22.^2^20.^23.^~4~^~02/01/2002~
-~17338~^~305~^195.^3^1.^~1~^~A~^^^1^193.^199.^2^187.^203.^~4~^~02/01/2002~
-~17338~^~306~^322.^3^2.^~1~^~A~^^^1^317.^325.^2^311.^332.^~4~^~02/01/2002~
-~17338~^~307~^79.^3^3.^~1~^~A~^^^1^74.^85.^2^66.^92.^~4~^~02/01/2002~
-~17338~^~318~^0.^0^^~1~^~AS~^^^^^^^^^^~02/01/2002~
-~17338~^~319~^0.^1^^~1~^~A~^^^^^^^^^^~09/01/2001~
-~17338~^~320~^0.^0^^~1~^~AS~^^^^^^^^^^~02/01/2002~
-~17338~^~321~^0.^0^^~7~^~Z~^^^^^^^^^^~09/01/2001~
-~17338~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~09/01/2001~
-~17338~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~09/01/2001~
-~17338~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~09/01/2001~
-~17338~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~09/01/2001~
-~17338~^~417~^7.^1^^~1~^~A~^^^^^^^^^^~09/01/2001~
-~17338~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2002~
-~17338~^~432~^7.^1^^~1~^~A~^^^^^^^^^^~03/01/2002~
-~17338~^~435~^7.^0^^~4~^~NC~^^^^^^^^^^~12/01/2002~
-~17338~^~601~^66.^0^^~4~^~BFYN~^~17339~^^^^^^^^^~02/01/2002~
-~17339~^~208~^193.^0^^~4~^~NC~^^^^^^^^^^~03/01/2002~
-~17339~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~09/01/2001~
-~17339~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~09/01/2001~
-~17339~^~268~^806.^0^^~4~^~NC~^^^^^^^^^^~03/01/2002~
-~17339~^~301~^10.^3^1.^~1~^~A~^^^1^7.^11.^2^4.^14.^~4~^~02/01/2002~
-~17339~^~304~^24.^3^0.^~1~^~A~^^^1^23.^25.^2^21.^25.^~4~^~02/01/2002~
-~17339~^~305~^221.^3^3.^~1~^~A~^^^1^215.^228.^2^205.^237.^~4~^~02/01/2002~
-~17339~^~306~^354.^3^2.^~1~^~A~^^^1^349.^359.^2^341.^366.^~4~^~02/01/2002~
-~17339~^~307~^85.^3^4.^~1~^~A~^^^1^79.^95.^2^65.^105.^~4~^~02/01/2002~
-~17339~^~318~^0.^1^^~1~^~A~^^^^^^^^^~1~^~02/01/2002~
-~17339~^~319~^0.^1^^~1~^~A~^^^^^^^^^~1~^~03/01/2002~
-~17339~^~320~^0.^0^^~1~^~AS~^^^^^^^^^^~03/01/2002~
-~17339~^~321~^0.^0^^~7~^~Z~^^^^^^^^^^~09/01/2001~
-~17339~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~09/01/2001~
-~17339~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~09/01/2001~
-~17339~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~09/01/2001~
-~17339~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~09/01/2001~
-~17339~^~417~^8.^1^^~1~^~A~^^^^^^^^^^~09/01/2001~
-~17339~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2002~
-~17339~^~432~^8.^1^^~1~^~A~^^^^^^^^^^~03/01/2002~
-~17339~^~435~^8.^0^^~4~^~NC~^^^^^^^^^^~12/01/2002~
-~17339~^~601~^78.^2^^~1~^~A~^^^1^70.^86.^1^^^^~02/01/2002~
-~17340~^~208~^167.^0^^~4~^~NC~^^^^^^^^^^~03/01/2002~
-~17340~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~10/01/2001~
-~17340~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~10/01/2001~
-~17340~^~268~^699.^0^^~4~^~NC~^^^^^^^^^^~03/01/2002~
-~17340~^~301~^5.^2^^~1~^~A~^^^1^5.^5.^1^^^^~10/01/2001~
-~17340~^~304~^28.^2^^~1~^~A~^^^1^28.^28.^1^^^^~10/01/2001~
-~17340~^~305~^256.^2^^~1~^~A~^^^1^252.^259.^1^^^^~10/01/2001~
-~17340~^~306~^404.^2^^~1~^~A~^^^1^402.^406.^1^^^^~10/01/2001~
-~17340~^~307~^54.^2^^~1~^~A~^^^1^47.^62.^1^^^^~10/01/2001~
-~17340~^~318~^0.^0^^~4~^~NC~^^^^^^^^^^~03/01/2002~
-~17340~^~319~^0.^0^^~4~^~BFSN~^~17339~^^^^^^^^^~03/01/2002~
-~17340~^~320~^0.^0^^~4~^~NC~^^^^^^^^^^~03/01/2002~
-~17340~^~321~^0.^0^^~7~^~Z~^^^^^^^^^^~10/01/2001~
-~17340~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~10/01/2001~
-~17340~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~10/01/2001~
-~17340~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~10/01/2001~
-~17340~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~10/01/2001~
-~17340~^~417~^9.^0^^~4~^~BFPN~^~17339~^^^^^^^^^~02/01/2002~
-~17340~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2002~
-~17340~^~432~^9.^0^^~4~^~BFPN~^~17339~^^^^^^^^^~02/01/2002~
-~17340~^~435~^9.^0^^~4~^~NC~^^^^^^^^^^~12/01/2002~
-~17340~^~601~^75.^3^4.^~1~^~A~^^^1^70.^83.^2^56.^92.^~4~^~10/01/2001~
-~17341~^~208~^156.^0^^~4~^~NC~^^^^^^^^^^~03/01/2002~
-~17341~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~10/01/2001~
-~17341~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~10/01/2001~
-~17341~^~268~^652.^0^^~4~^~NC~^^^^^^^^^^~03/01/2002~
-~17341~^~301~^5.^2^^~1~^~A~^^^1^5.^5.^1^^^^~10/01/2001~
-~17341~^~304~^28.^2^^~1~^~A~^^^1^28.^29.^1^^^^~10/01/2001~
-~17341~^~305~^266.^2^^~1~^~A~^^^1^263.^269.^1^^^^~10/01/2001~
-~17341~^~306~^392.^2^^~1~^~A~^^^1^387.^397.^1^^^^~10/01/2001~
-~17341~^~307~^51.^2^^~1~^~A~^^^1^46.^55.^1^^^^~10/01/2001~
-~17341~^~318~^0.^0^^~4~^~NC~^^^^^^^^^^~03/01/2002~
-~17341~^~319~^0.^0^^~4~^~BFSN~^~17339~^^^^^^^^^~03/01/2002~
-~17341~^~320~^0.^0^^~4~^~NC~^^^^^^^^^^~03/01/2002~
-~17341~^~321~^0.^0^^~7~^~Z~^^^^^^^^^^~10/01/2001~
-~17341~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~10/01/2001~
-~17341~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~10/01/2001~
-~17341~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~10/01/2001~
-~17341~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~10/01/2001~
-~17341~^~417~^9.^0^^~4~^~BFPN~^~17339~^^^^^^^^^~02/01/2002~
-~17341~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2002~
-~17341~^~432~^9.^0^^~4~^~BFPN~^~17339~^^^^^^^^^~02/01/2002~
-~17341~^~435~^9.^0^^~4~^~NC~^^^^^^^^^^~12/01/2002~
-~17341~^~601~^78.^3^1.^~1~^~A~^^^1^76.^81.^2^71.^84.^~4~^~10/01/2001~
-~17342~^~208~^162.^0^^~4~^~NC~^^^^^^^^^^~03/01/2002~
-~17342~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~10/01/2001~
-~17342~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~10/01/2001~
-~17342~^~268~^678.^0^^~4~^~NC~^^^^^^^^^^~03/01/2002~
-~17342~^~301~^5.^2^^~1~^~A~^^^1^4.^6.^1^^^^~10/01/2001~
-~17342~^~304~^29.^2^^~1~^~A~^^^1^29.^30.^1^^^^~10/01/2001~
-~17342~^~305~^285.^2^^~1~^~A~^^^1^281.^288.^1^^^^~10/01/2001~
-~17342~^~306~^392.^2^^~1~^~A~^^^1^371.^413.^1^^^^~10/01/2001~
-~17342~^~307~^50.^2^^~1~^~A~^^^1^46.^54.^1^^^^~10/01/2001~
-~17342~^~318~^0.^0^^~4~^~BFSN~^~17339~^^^^^^^^^~03/01/2002~
-~17342~^~319~^0.^0^^~4~^~BFSN~^~17339~^^^^^^^^^~03/01/2002~
-~17342~^~320~^0.^0^^~4~^~NC~^^^^^^^^^^~03/01/2002~
-~17342~^~321~^0.^0^^~7~^~Z~^^^^^^^^^^~10/01/2001~
-~17342~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~10/01/2001~
-~17342~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~10/01/2001~
-~17342~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~10/01/2001~
-~17342~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~10/01/2001~
-~17342~^~417~^9.^0^^~4~^~BFPN~^~17339~^^^^^^^^^~02/01/2002~
-~17342~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2002~
-~17342~^~432~^9.^0^^~4~^~BFPN~^~17339~^^^^^^^^^~02/01/2002~
-~17342~^~435~^9.^0^^~4~^~NC~^^^^^^^^^^~12/01/2002~
-~17342~^~601~^72.^1^^~1~^~A~^^^^^^^^^^~10/01/2001~
-~17343~^~208~^157.^0^^~4~^~NC~^^^^^^^^^^~02/01/2009~
-~17343~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~09/01/2001~
-~17343~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~09/01/2001~
-~17343~^~268~^658.^0^^~4~^~NC~^^^^^^^^^^~02/01/2009~
-~17343~^~301~^11.^3^1.^~1~^~A~^^^1^10.^14.^2^5.^17.^~4~^~02/01/2002~
-~17343~^~304~^21.^3^0.^~1~^~A~^^^1^21.^22.^2^19.^23.^~4~^~02/01/2002~
-~17343~^~305~^201.^3^3.^~1~^~A~^^^1^196.^209.^2^184.^218.^~4~^~02/01/2002~
-~17343~^~306~^330.^3^5.^~1~^~A~^^^1^323.^341.^2^305.^354.^~4~^~02/01/2002~
-~17343~^~307~^75.^3^2.^~1~^~A~^^^1^71.^81.^2^62.^87.^~4~^~02/01/2002~
-~17343~^~318~^0.^1^^~1~^~A~^^^^^^^^^~1~^~02/01/2002~
-~17343~^~319~^0.^1^^~1~^~A~^^^^^^^^^~1~^~02/01/2002~
-~17343~^~320~^0.^0^^~1~^~AS~^^^^^^^^^^~12/01/2001~
-~17343~^~321~^0.^0^^~7~^~Z~^^^^^^^^^^~09/01/2001~
-~17343~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~09/01/2001~
-~17343~^~324~^0.^2^^~13~^~AI~^^^^^^^^^^~02/01/2009~
-~17343~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~09/01/2001~
-~17343~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~09/01/2001~
-~17343~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~09/01/2001~
-~17343~^~417~^4.^1^^~1~^~A~^^^^^^^^^~1~^~02/01/2002~
-~17343~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2002~
-~17343~^~432~^4.^1^^~1~^~A~^^^^^^^^^^~02/01/2009~
-~17343~^~435~^4.^0^^~4~^~NC~^^^^^^^^^^~02/01/2009~
-~17343~^~601~^80.^0^^~4~^~BFYN~^~17344~^^^^^^^^^~02/01/2002~
-~17344~^~208~^187.^0^^~4~^~NC~^^^^^^^^^^~02/01/2009~
-~17344~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~09/01/2001~
-~17344~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~09/01/2001~
-~17344~^~268~^783.^0^^~4~^~NC~^^^^^^^^^^~02/01/2009~
-~17344~^~301~^14.^3^1.^~1~^~A~^^^1^11.^17.^2^6.^20.^~4~^~02/01/2002~
-~17344~^~304~^24.^3^0.^~1~^~A~^^^1^23.^24.^2^22.^25.^~4~^~02/01/2002~
-~17344~^~305~^228.^3^2.^~1~^~A~^^^1^222.^231.^2^215.^239.^~4~^~02/01/2002~
-~17344~^~306~^364.^3^3.^~1~^~A~^^^1^356.^369.^2^346.^380.^~4~^~02/01/2002~
-~17344~^~307~^78.^3^2.^~1~^~A~^^^1^75.^82.^2^69.^87.^~4~^~02/01/2002~
-~17344~^~318~^0.^1^^~1~^~A~^^^^^^^^^~1~^~02/01/2002~
-~17344~^~319~^0.^1^^~1~^~A~^^^^^^^^^~1~^~02/01/2002~
-~17344~^~320~^0.^0^^~1~^~AS~^^^^^^^^^^~02/01/2003~
-~17344~^~321~^0.^0^^~7~^~Z~^^^^^^^^^^~09/01/2001~
-~17344~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~09/01/2001~
-~17344~^~324~^0.^2^^~13~^~AI~^^^^^^^^^^~02/01/2009~
-~17344~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~09/01/2001~
-~17344~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~09/01/2001~
-~17344~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~09/01/2001~
-~17344~^~417~^8.^1^^~1~^~A~^^^^^^^^^^~02/01/2002~
-~17344~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2002~
-~17344~^~432~^8.^1^^~1~^~A~^^^^^^^^^^~02/01/2009~
-~17344~^~435~^8.^0^^~4~^~NC~^^^^^^^^^^~02/01/2009~
-~17344~^~601~^98.^6^0.^~1~^~A~^^^1^94.^101.^5^95.^100.^~4~^~02/01/2002~
-~17345~^~208~^150.^0^^~4~^~NC~^^^^^^^^^^~02/01/2009~
-~17345~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~10/01/2001~
-~17345~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~10/01/2001~
-~17345~^~268~^629.^0^^~4~^~NC~^^^^^^^^^^~02/01/2009~
-~17345~^~301~^6.^3^1.^~1~^~A~^^^1^5.^9.^2^0.^11.^~4~^~02/01/2002~
-~17345~^~304~^30.^3^0.^~1~^~A~^^^1^29.^31.^2^28.^31.^~4~^~02/01/2002~
-~17345~^~305~^277.^3^7.^~1~^~A~^^^1^264.^289.^2^245.^308.^~4~^~02/01/2002~
-~17345~^~306~^398.^3^11.^~1~^~A~^^^1^377.^416.^2^348.^446.^~4~^~02/01/2002~
-~17345~^~307~^57.^3^4.^~1~^~A~^^^1^48.^61.^2^38.^75.^~4~^~02/01/2002~
-~17345~^~318~^0.^0^^~4~^~NC~^^^^^^^^^^~02/01/2009~
-~17345~^~319~^0.^0^^~4~^~BFSN~^~17344~^^^^^^^^^~03/01/2002~
-~17345~^~320~^0.^0^^~4~^~NC~^^^^^^^^^^~02/01/2009~
-~17345~^~321~^0.^0^^~7~^~Z~^^^^^^^^^^~10/01/2001~
-~17345~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~10/01/2001~
-~17345~^~324~^0.^2^^~13~^~AI~^^^^^^^^^^~02/01/2009~
-~17345~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~10/01/2001~
-~17345~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~10/01/2001~
-~17345~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~10/01/2001~
-~17345~^~417~^9.^0^^~4~^~BFPN~^~17344~^^^^^^^^^~02/01/2002~
-~17345~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2002~
-~17345~^~432~^9.^0^^~4~^~BFPN~^~17344~^^^^^^^^^~02/01/2002~
-~17345~^~435~^9.^0^^~4~^~NC~^^^^^^^^^^~02/01/2009~
-~17345~^~601~^79.^6^1.^~1~^~A~^^^1^73.^84.^5^74.^82.^~4~^~02/01/2002~
-~17346~^~208~^191.^0^^~4~^~NC~^^^^^^^^^^~02/01/2009~
-~17346~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~10/01/2001~
-~17346~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~10/01/2001~
-~17346~^~268~^797.^0^^~4~^~NC~^^^^^^^^^^~02/01/2009~
-~17346~^~301~^6.^3^0.^~1~^~A~^^^1^6.^8.^2^3.^9.^~4~^~03/01/2002~
-~17346~^~304~^28.^3^0.^~1~^~A~^^^1^27.^29.^2^25.^30.^~4~^~03/01/2002~
-~17346~^~305~^261.^3^6.^~1~^~A~^^^1^249.^272.^2^232.^289.^~4~^~03/01/2002~
-~17346~^~306~^313.^3^5.^~1~^~A~^^^1^303.^321.^2^290.^335.^~4~^~03/01/2002~
-~17346~^~307~^52.^3^1.^~1~^~A~^^^1^50.^54.^2^47.^56.^~4~^~03/01/2002~
-~17346~^~318~^0.^0^^~4~^~NC~^^^^^^^^^^~02/01/2009~
-~17346~^~319~^0.^0^^~4~^~BFSN~^~17344~^^^^^^^^^~03/01/2002~
-~17346~^~320~^0.^0^^~4~^~NC~^^^^^^^^^^~02/01/2009~
-~17346~^~321~^0.^0^^~7~^~Z~^^^^^^^^^^~10/01/2001~
-~17346~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~10/01/2001~
-~17346~^~324~^0.^2^^~13~^~AI~^^^^^^^^^^~02/01/2009~
-~17346~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~10/01/2001~
-~17346~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~10/01/2001~
-~17346~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~10/01/2001~
-~17346~^~417~^11.^0^^~4~^~BFPN~^~17344~^^^^^^^^^~02/01/2002~
-~17346~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2002~
-~17346~^~432~^11.^0^^~4~^~BFPN~^~17344~^^^^^^^^^~02/01/2002~
-~17346~^~435~^11.^0^^~4~^~NC~^^^^^^^^^^~02/01/2009~
-~17346~^~601~^113.^6^2.^~1~^~A~^^^1^103.^118.^5^107.^118.^~4~^~03/01/2002~
-~17347~^~208~^149.^0^^~4~^~NC~^^^^^^^^^^~03/01/2002~
-~17347~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~10/01/2001~
-~17347~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~10/01/2001~
-~17347~^~268~^623.^0^^~4~^~NC~^^^^^^^^^^~03/01/2002~
-~17347~^~301~^5.^3^0.^~1~^~A~^^^1^5.^6.^2^3.^6.^~4~^~02/01/2002~
-~17347~^~304~^33.^3^0.^~1~^~A~^^^1^32.^34.^2^29.^35.^~4~^~02/01/2002~
-~17347~^~305~^299.^3^6.^~1~^~A~^^^1^288.^309.^2^273.^325.^~4~^~02/01/2002~
-~17347~^~306~^434.^3^14.^~1~^~A~^^^1^418.^464.^2^370.^498.^~4~^~02/01/2002~
-~17347~^~307~^57.^3^2.^~1~^~A~^^^1^53.^61.^2^46.^66.^~4~^~02/01/2002~
-~17347~^~318~^0.^0^^~4~^~NC~^^^^^^^^^^~03/01/2002~
-~17347~^~319~^0.^0^^~4~^~BFSN~^~17344~^^^^^^^^^~03/01/2002~
-~17347~^~320~^0.^0^^~4~^~NC~^^^^^^^^^^~03/01/2002~
-~17347~^~321~^0.^0^^~7~^~Z~^^^^^^^^^^~10/01/2001~
-~17347~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~10/01/2001~
-~17347~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~10/01/2001~
-~17347~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~10/01/2001~
-~17347~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~10/01/2001~
-~17347~^~417~^9.^0^^~4~^~BFPN~^~17344~^^^^^^^^^~02/01/2002~
-~17347~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2002~
-~17347~^~432~^9.^0^^~4~^~BFPN~^~17344~^^^^^^^^^~02/01/2002~
-~17347~^~435~^9.^0^^~4~^~NC~^^^^^^^^^^~12/01/2002~
-~17347~^~601~^88.^6^3.^~1~^~A~^^^1^77.^98.^5^79.^96.^~4~^~02/01/2002~
-~17348~^~208~^152.^0^^~4~^~NC~^^^^^^^^^^~03/01/2002~
-~17348~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~10/01/2001~
-~17348~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~10/01/2001~
-~17348~^~268~^635.^0^^~4~^~NC~^^^^^^^^^^~03/01/2002~
-~17348~^~301~^4.^3^0.^~1~^~A~^^^1^4.^5.^2^3.^5.^~4~^~02/01/2002~
-~17348~^~304~^30.^3^0.^~1~^~A~^^^1^29.^31.^2^26.^32.^~4~^~02/01/2002~
-~17348~^~305~^272.^3^4.^~1~^~A~^^^1^263.^279.^2^251.^291.^~4~^~02/01/2002~
-~17348~^~306~^377.^3^16.^~1~^~A~^^^1^346.^404.^2^304.^449.^~4~^~02/01/2002~
-~17348~^~307~^45.^3^3.^~1~^~A~^^^1^40.^51.^2^31.^58.^~4~^~02/01/2002~
-~17348~^~318~^0.^0^^~4~^~NC~^^^^^^^^^^~03/01/2002~
-~17348~^~319~^0.^0^^~4~^~BFSN~^~17344~^^^^^^^^^~03/01/2002~
-~17348~^~320~^0.^0^^~4~^~NC~^^^^^^^^^^~03/01/2002~
-~17348~^~321~^0.^0^^~7~^~Z~^^^^^^^^^^~10/01/2001~
-~17348~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~10/01/2001~
-~17348~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~10/01/2001~
-~17348~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~10/01/2001~
-~17348~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~10/01/2001~
-~17348~^~417~^10.^0^^~4~^~BFPN~^~17344~^^^^^^^^^~02/01/2002~
-~17348~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2002~
-~17348~^~432~^10.^0^^~4~^~BFPN~^~17344~^^^^^^^^^~02/01/2002~
-~17348~^~435~^10.^0^^~4~^~NC~^^^^^^^^^^~05/01/2003~
-~17348~^~601~^85.^6^2.^~1~^~A~^^^1^78.^92.^5^79.^90.^~4~^~02/01/2002~
-~17349~^~208~^123.^0^^~4~^~NC~^^^^^^^^^^~05/01/2012~
-~17349~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2012~
-~17349~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2012~
-~17349~^~268~^513.^0^^~4~^~NC~^^^^^^^^^^~05/01/2012~
-~17349~^~301~^16.^1^^~1~^~A~^^^^^^^^^^~05/01/2012~
-~17349~^~307~^112.^1^^~1~^~A~^^^^^^^^^^~05/01/2012~
-~17349~^~318~^0.^0^^~1~^~AS~^^^^^^^^^^~05/01/2012~
-~17349~^~319~^0.^1^^~1~^~A~^^^^^^^^^~1~^~05/01/2012~
-~17349~^~320~^0.^0^^~1~^~AS~^^^^^^^^^^~05/01/2012~
-~17349~^~321~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2012~
-~17349~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2012~
-~17349~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2012~
-~17349~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2012~
-~17349~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2012~
-~17349~^~601~^65.^1^^~1~^~A~^^^^^^^^^^~05/01/2012~
-~17350~^~208~^145.^0^^~4~^~PIK~^^^^^^^^^^~05/01/2012~
-~17350~^~262~^0.^0^^~4~^~PIK~^^^^^^^^^^~05/01/2012~
-~17350~^~263~^0.^0^^~4~^~PIK~^^^^^^^^^^~05/01/2012~
-~17350~^~268~^607.^0^^~4~^~PIK~^^^^^^^^^^~05/01/2012~
-~17350~^~301~^15.^0^^~1~^~PAK~^^^^^^^^^^~05/01/2012~
-~17350~^~307~^108.^0^^~1~^~PAK~^^^^^^^^^^~05/01/2012~
-~17350~^~318~^8.^0^^~4~^~NC~^^^^^^^^^^~03/01/2016~
-~17350~^~319~^2.^0^^~1~^~PAK~^^^^^^^^^^~05/01/2012~
-~17350~^~320~^2.^0^^~4~^~NC~^^^^^^^^^^~03/01/2016~
-~17350~^~321~^0.^0^^~4~^~PIK~^^^^^^^^^^~05/01/2012~
-~17350~^~322~^0.^0^^~4~^~PIK~^^^^^^^^^^~05/01/2012~
-~17350~^~334~^0.^0^^~4~^~PIK~^^^^^^^^^^~05/01/2012~
-~17350~^~337~^0.^0^^~4~^~PIK~^^^^^^^^^^~05/01/2012~
-~17350~^~338~^0.^0^^~4~^~PIK~^^^^^^^^^^~05/01/2012~
-~17350~^~601~^65.^0^^~1~^~PAK~^^^^^^^^^^~05/01/2012~
-~17351~^~208~^122.^0^^~4~^~NC~^^^^^^^^^^~05/01/2012~
-~17351~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2012~
-~17351~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2012~
-~17351~^~268~^509.^0^^~4~^~NC~^^^^^^^^^^~05/01/2012~
-~17351~^~301~^17.^1^^~1~^~A~^^^^^^^^^^~05/01/2012~
-~17351~^~307~^98.^1^^~1~^~A~^^^^^^^^^^~05/01/2012~
-~17351~^~318~^0.^0^^~1~^~AS~^^^^^^^^^^~05/01/2012~
-~17351~^~319~^0.^1^^~1~^~A~^^^^^^^^^~1~^~05/01/2012~
-~17351~^~320~^0.^0^^~1~^~AS~^^^^^^^^^^~05/01/2012~
-~17351~^~321~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2012~
-~17351~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2012~
-~17351~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2012~
-~17351~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2012~
-~17351~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2012~
-~17351~^~601~^59.^1^^~1~^~A~^^^^^^^^^^~05/01/2012~
-~17352~^~208~^144.^0^^~4~^~PIK~^^^^^^^^^^~05/01/2012~
-~17352~^~262~^0.^0^^~4~^~PIK~^^^^^^^^^^~05/01/2012~
-~17352~^~263~^0.^0^^~4~^~PIK~^^^^^^^^^^~05/01/2012~
-~17352~^~268~^602.^0^^~4~^~PIK~^^^^^^^^^^~05/01/2012~
-~17352~^~301~^16.^0^^~1~^~PAK~^^^^^^^^^^~05/01/2012~
-~17352~^~307~^95.^0^^~1~^~PAK~^^^^^^^^^^~05/01/2012~
-~17352~^~318~^8.^0^^~1~^~PAK~^^^^^^^^^^~10/01/2012~
-~17352~^~319~^2.^0^^~1~^~PAK~^^^^^^^^^^~05/01/2012~
-~17352~^~320~^2.^0^^~1~^~PAK~^^^^^^^^^^~10/01/2012~
-~17352~^~321~^0.^0^^~4~^~PIK~^^^^^^^^^^~05/01/2012~
-~17352~^~322~^0.^0^^~4~^~PIK~^^^^^^^^^^~05/01/2012~
-~17352~^~334~^0.^0^^~4~^~PIK~^^^^^^^^^^~05/01/2012~
-~17352~^~337~^0.^0^^~4~^~PIK~^^^^^^^^^^~05/01/2012~
-~17352~^~338~^0.^0^^~4~^~PIK~^^^^^^^^^^~05/01/2012~
-~17352~^~601~^60.^0^^~1~^~PAK~^^^^^^^^^^~05/01/2012~
-~17353~^~208~^255.^0^^~4~^~NC~^^^^^^^^^^~05/01/2012~
-~17353~^~268~^1067.^0^^~4~^~NC~^^^^^^^^^^~05/01/2012~
-~17353~^~301~^9.^1^^~1~^~A~^^^^^^^^^^~05/01/2012~
-~17353~^~307~^77.^1^^~1~^~A~^^^^^^^^^^~05/01/2012~
-~17353~^~601~^73.^1^^~1~^~A~^^^^^^^^^^~05/01/2012~
-~17354~^~208~^596.^0^^~4~^~NC~^^^^^^^^^^~02/01/2014~
-~17354~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2014~
-~17354~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2014~
-~17354~^~268~^2494.^0^^~4~^~NC~^^^^^^^^^^~02/01/2014~
-~17354~^~301~^6.^1^^~1~^~A~^^^^^^^^^^~02/01/2014~
-~17354~^~304~^12.^1^^~1~^~A~^^^^^^^^^^~02/01/2014~
-~17354~^~305~^118.^1^^~1~^~A~^^^^^^^^^^~02/01/2014~
-~17354~^~306~^198.^1^^~1~^~A~^^^^^^^^^^~02/01/2014~
-~17354~^~307~^52.^1^^~1~^~A~^^^^^^^^^^~02/01/2014~
-~17354~^~318~^113.^0^^~1~^~AS~^^^^^^^^^^~02/01/2014~
-~17354~^~319~^34.^1^^~1~^~A~^^^^^^^^^^~02/01/2014~
-~17354~^~320~^34.^0^^~1~^~AS~^^^^^^^^^^~02/01/2014~
-~17354~^~321~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2014~
-~17354~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2014~
-~17354~^~324~^9.^1^^~1~^~A~^^^^^^^^^^~02/01/2014~
-~17354~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2014~
-~17354~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2014~
-~17354~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2014~
-~17354~^~601~^82.^1^^~1~^~A~^^^^^^^^^^~02/01/2014~
-~17355~^~208~^640.^0^^~4~^~NC~^^^^^^^^^^~02/01/2014~
-~17355~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2014~
-~17355~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2014~
-~17355~^~268~^2679.^0^^~4~^~NC~^^^^^^^^^^~02/01/2014~
-~17355~^~301~^5.^1^^~1~^~A~^^^^^^^^^^~02/01/2014~
-~17355~^~304~^6.^1^^~1~^~A~^^^^^^^^^^~02/01/2014~
-~17355~^~305~^61.^1^^~1~^~A~^^^^^^^^^^~02/01/2014~
-~17355~^~306~^119.^1^^~1~^~A~^^^^^^^^^^~02/01/2014~
-~17355~^~307~^34.^1^^~1~^~A~^^^^^^^^^^~02/01/2014~
-~17355~^~318~^153.^0^^~1~^~AS~^^^^^^^^^^~02/01/2014~
-~17355~^~319~^46.^1^^~1~^~A~^^^^^^^^^^~02/01/2014~
-~17355~^~320~^46.^0^^~1~^~AS~^^^^^^^^^^~02/01/2014~
-~17355~^~321~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2014~
-~17355~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2014~
-~17355~^~324~^10.^1^^~1~^~A~^^^^^^^^^^~02/01/2014~
-~17355~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2014~
-~17355~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2014~
-~17355~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2014~
-~17355~^~601~^75.^1^^~1~^~A~^^^^^^^^^^~02/01/2014~
-~17356~^~208~^703.^0^^~4~^~NC~^^^^^^^^^^~02/01/2014~
-~17356~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2014~
-~17356~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2014~
-~17356~^~268~^2942.^0^^~4~^~NC~^^^^^^^^^^~02/01/2014~
-~17356~^~301~^3.^1^^~1~^~A~^^^^^^^^^^~02/01/2014~
-~17356~^~304~^5.^1^^~1~^~A~^^^^^^^^^^~02/01/2014~
-~17356~^~305~^45.^1^^~1~^~A~^^^^^^^^^^~02/01/2014~
-~17356~^~306~^93.^1^^~1~^~A~^^^^^^^^^^~02/01/2014~
-~17356~^~307~^28.^1^^~1~^~A~^^^^^^^^^^~02/01/2014~
-~17356~^~318~^146.^0^^~1~^~AS~^^^^^^^^^^~02/01/2014~
-~17356~^~319~^44.^1^^~1~^~A~^^^^^^^^^^~02/01/2014~
-~17356~^~320~^44.^0^^~1~^~AS~^^^^^^^^^^~02/01/2014~
-~17356~^~321~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2014~
-~17356~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2014~
-~17356~^~324~^4.^1^^~1~^~A~^^^^^^^^^~1~^~02/01/2014~
-~17356~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2014~
-~17356~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2014~
-~17356~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2014~
-~17356~^~601~^78.^1^^~1~^~A~^^^^^^^^^^~02/01/2014~
-~17357~^~208~^154.^0^^~4~^~NC~^^^^^^^^^^~02/01/2014~
-~17357~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2014~
-~17357~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2014~
-~17357~^~268~^646.^0^^~4~^~NC~^^^^^^^^^^~02/01/2014~
-~17357~^~301~^6.^1^^~1~^~A~^^^^^^^^^^~02/01/2014~
-~17357~^~304~^15.^1^^~1~^~A~^^^^^^^^^^~02/01/2014~
-~17357~^~305~^384.^1^^~1~^~A~^^^^^^^^^^~02/01/2014~
-~17357~^~306~^258.^1^^~1~^~A~^^^^^^^^^^~02/01/2014~
-~17357~^~307~^101.^1^^~1~^~A~^^^^^^^^^^~02/01/2014~
-~17357~^~318~^8.^0^^~1~^~AS~^^^^^^^^^^~02/01/2014~
-~17357~^~319~^2.^1^^~1~^~A~^^^^^^^^^^~02/01/2014~
-~17357~^~320~^2.^0^^~1~^~AS~^^^^^^^^^^~02/01/2014~
-~17357~^~321~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2014~
-~17357~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2014~
-~17357~^~324~^0.^1^^~1~^~A~^^^^^^^^^~1~^~02/01/2014~
-~17357~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2014~
-~17357~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2014~
-~17357~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2014~
-~17357~^~601~^2559.^1^^~1~^~A~^^^^^^^^^^~02/01/2014~
-~17358~^~208~^118.^0^^~4~^~NC~^^^^^^^^^^~02/01/2014~
-~17358~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2014~
-~17358~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2014~
-~17358~^~268~^492.^0^^~4~^~NC~^^^^^^^^^^~02/01/2014~
-~17358~^~301~^4.^1^^~1~^~A~^^^^^^^^^^~02/01/2014~
-~17358~^~304~^14.^1^^~1~^~A~^^^^^^^^^^~02/01/2014~
-~17358~^~305~^327.^1^^~1~^~A~^^^^^^^^^^~02/01/2014~
-~17358~^~306~^307.^1^^~1~^~A~^^^^^^^^^^~02/01/2014~
-~17358~^~307~^117.^1^^~1~^~A~^^^^^^^^^^~02/01/2014~
-~17358~^~318~^10.^0^^~1~^~AS~^^^^^^^^^^~02/01/2014~
-~17358~^~319~^3.^1^^~1~^~A~^^^^^^^^^^~02/01/2014~
-~17358~^~320~^3.^0^^~1~^~AS~^^^^^^^^^^~02/01/2014~
-~17358~^~321~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2014~
-~17358~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2014~
-~17358~^~324~^0.^1^^~1~^~A~^^^^^^^^^~1~^~02/01/2014~
-~17358~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2014~
-~17358~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2014~
-~17358~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2014~
-~17358~^~601~^2100.^1^^~1~^~A~^^^^^^^^^^~02/01/2014~
-~17359~^~208~^270.^0^^~4~^~NC~^^^^^^^^^^~02/01/2014~
-~17359~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2014~
-~17359~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2014~
-~17359~^~268~^1131.^0^^~4~^~NC~^^^^^^^^^^~02/01/2014~
-~17359~^~301~^25.^1^^~1~^~A~^^^^^^^^^^~02/01/2014~
-~17359~^~304~^20.^1^^~1~^~A~^^^^^^^^^^~02/01/2014~
-~17359~^~305~^152.^1^^~1~^~A~^^^^^^^^^^~02/01/2014~
-~17359~^~306~^183.^1^^~1~^~A~^^^^^^^^^^~02/01/2014~
-~17359~^~307~^86.^1^^~1~^~A~^^^^^^^^^^~02/01/2014~
-~17359~^~318~^16.^0^^~1~^~AS~^^^^^^^^^^~02/01/2014~
-~17359~^~319~^5.^1^^~1~^~A~^^^^^^^^^^~02/01/2014~
-~17359~^~320~^5.^0^^~1~^~AS~^^^^^^^^^^~02/01/2014~
-~17359~^~321~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2014~
-~17359~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2014~
-~17359~^~324~^1.^1^^~1~^~A~^^^^^^^^^^~02/01/2014~
-~17359~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2014~
-~17359~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2014~
-~17359~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2014~
-~17359~^~601~^102.^1^^~1~^~A~^^^^^^^^^^~02/01/2014~
-~17360~^~208~^149.^0^^~4~^~NC~^^^^^^^^^^~02/01/2014~
-~17360~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2014~
-~17360~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2014~
-~17360~^~268~^624.^0^^~4~^~NC~^^^^^^^^^^~02/01/2014~
-~17360~^~301~^13.^1^^~1~^~A~^^^^^^^^^^~02/01/2014~
-~17360~^~304~^21.^1^^~1~^~A~^^^^^^^^^^~02/01/2014~
-~17360~^~305~^180.^1^^~1~^~A~^^^^^^^^^^~02/01/2014~
-~17360~^~306~^293.^1^^~1~^~A~^^^^^^^^^^~02/01/2014~
-~17360~^~307~^107.^1^^~1~^~A~^^^^^^^^^^~02/01/2014~
-~17360~^~318~^31.^0^^~1~^~AS~^^^^^^^^^^~02/01/2014~
-~17360~^~319~^9.^1^^~1~^~A~^^^^^^^^^^~02/01/2014~
-~17360~^~320~^9.^0^^~1~^~AS~^^^^^^^^^^~02/01/2014~
-~17360~^~321~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2014~
-~17360~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2014~
-~17360~^~324~^1.^1^^~1~^~A~^^^^^^^^^^~02/01/2014~
-~17360~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2014~
-~17360~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2014~
-~17360~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2014~
-~17360~^~601~^65.^1^^~1~^~A~^^^^^^^^^^~02/01/2014~
-~17361~^~208~^142.^0^^~4~^~NC~^^^^^^^^^^~02/01/2014~
-~17361~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2014~
-~17361~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2014~
-~17361~^~268~^595.^0^^~4~^~NC~^^^^^^^^^^~02/01/2014~
-~17361~^~301~^4.^1^^~1~^~A~^^^^^^^^^^~02/01/2014~
-~17361~^~304~^25.^1^^~1~^~A~^^^^^^^^^^~02/01/2014~
-~17361~^~305~^205.^1^^~1~^~A~^^^^^^^^^^~02/01/2014~
-~17361~^~306~^339.^1^^~1~^~A~^^^^^^^^^^~02/01/2014~
-~17361~^~307~^61.^1^^~1~^~A~^^^^^^^^^^~02/01/2014~
-~17361~^~318~^17.^0^^~1~^~AS~^^^^^^^^^^~02/01/2014~
-~17361~^~319~^5.^1^^~1~^~A~^^^^^^^^^^~02/01/2014~
-~17361~^~320~^5.^0^^~1~^~AS~^^^^^^^^^^~02/01/2014~
-~17361~^~321~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2014~
-~17361~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2014~
-~17361~^~324~^1.^1^^~1~^~A~^^^^^^^^^^~02/01/2014~
-~17361~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2014~
-~17361~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2014~
-~17361~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2014~
-~17361~^~601~^74.^1^^~1~^~A~^^^^^^^^^^~02/01/2014~
-~17362~^~208~^674.^0^^~4~^~NC~^^^^^^^^^^~02/01/2014~
-~17362~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2014~
-~17362~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2014~
-~17362~^~268~^2820.^0^^~4~^~NC~^^^^^^^^^^~02/01/2014~
-~17362~^~301~^6.^1^^~1~^~A~^^^^^^^^^^~02/01/2014~
-~17362~^~304~^9.^1^^~1~^~A~^^^^^^^^^^~02/01/2014~
-~17362~^~305~^84.^1^^~1~^~A~^^^^^^^^^^~02/01/2014~
-~17362~^~306~^164.^1^^~1~^~A~^^^^^^^^^^~02/01/2014~
-~17362~^~307~^43.^1^^~1~^~A~^^^^^^^^^^~02/01/2014~
-~17362~^~318~^201.^0^^~1~^~AS~^^^^^^^^^^~02/01/2014~
-~17362~^~319~^60.^1^^~1~^~A~^^^^^^^^^^~02/01/2014~
-~17362~^~320~^60.^0^^~1~^~AS~^^^^^^^^^^~02/01/2014~
-~17362~^~321~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2014~
-~17362~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2014~
-~17362~^~324~^4.^1^^~1~^~A~^^^^^^^^^~1~^~02/01/2014~
-~17362~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2014~
-~17362~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2014~
-~17362~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2014~
-~17362~^~601~^66.^1^^~1~^~A~^^^^^^^^^^~02/01/2014~
-~17363~^~208~^121.^0^^~4~^~NC~^^^^^^^^^^~02/01/2014~
-~17363~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2014~
-~17363~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2014~
-~17363~^~268~^507.^0^^~4~^~NC~^^^^^^^^^^~02/01/2014~
-~17363~^~301~^4.^1^^~1~^~A~^^^^^^^^^^~02/01/2014~
-~17363~^~304~^24.^1^^~1~^~A~^^^^^^^^^^~02/01/2014~
-~17363~^~305~^201.^1^^~1~^~A~^^^^^^^^^^~02/01/2014~
-~17363~^~306~^346.^1^^~1~^~A~^^^^^^^^^^~02/01/2014~
-~17363~^~307~^62.^1^^~1~^~A~^^^^^^^^^^~02/01/2014~
-~17363~^~318~^15.^0^^~1~^~AS~^^^^^^^^^^~02/01/2014~
-~17363~^~319~^5.^1^^~1~^~A~^^^^^^^^^^~02/01/2014~
-~17363~^~320~^5.^0^^~1~^~AS~^^^^^^^^^^~02/01/2014~
-~17363~^~321~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2014~
-~17363~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2014~
-~17363~^~324~^1.^1^^~1~^~A~^^^^^^^^^^~02/01/2014~
-~17363~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2014~
-~17363~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2014~
-~17363~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2014~
-~17363~^~601~^65.^1^^~1~^~A~^^^^^^^^^^~02/01/2014~
-~17364~^~208~^112.^0^^~4~^~NC~^^^^^^^^^^~03/01/2014~
-~17364~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2014~
-~17364~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2014~
-~17364~^~268~^468.^0^^~4~^~NC~^^^^^^^^^^~03/01/2014~
-~17364~^~301~^9.^1^^~1~^~A~^^^^^^^^^^~03/01/2014~
-~17364~^~304~^19.^1^^~1~^~A~^^^^^^^^^^~03/01/2014~
-~17364~^~305~^312.^1^^~1~^~A~^^^^^^^^^^~03/01/2014~
-~17364~^~306~^271.^1^^~1~^~A~^^^^^^^^^^~03/01/2014~
-~17364~^~307~^199.^1^^~1~^~A~^^^^^^^^^^~03/01/2014~
-~17364~^~318~^284.^0^^~1~^~AS~^^^^^^^^^^~03/01/2014~
-~17364~^~319~^85.^1^^~1~^~A~^^^^^^^^^^~03/01/2014~
-~17364~^~320~^85.^0^^~1~^~AS~^^^^^^^^^^~03/01/2014~
-~17364~^~321~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2014~
-~17364~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2014~
-~17364~^~324~^8.^1^^~1~^~A~^^^^^^^^^^~03/01/2014~
-~17364~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2014~
-~17364~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2014~
-~17364~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2014~
-~17364~^~601~^508.^1^^~1~^~A~^^^^^^^^^^~03/01/2014~
-~17365~^~208~^234.^0^^~4~^~NC~^^^^^^^^^^~03/01/2014~
-~17365~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2014~
-~17365~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2014~
-~17365~^~268~^979.^0^^~4~^~NC~^^^^^^^^^^~03/01/2014~
-~17365~^~301~^9.^1^^~1~^~A~^^^^^^^^^^~03/01/2014~
-~17365~^~304~^18.^1^^~1~^~A~^^^^^^^^^^~03/01/2014~
-~17365~^~305~^137.^1^^~1~^~A~^^^^^^^^^^~03/01/2014~
-~17365~^~306~^186.^1^^~1~^~A~^^^^^^^^^^~03/01/2014~
-~17365~^~307~^54.^1^^~1~^~A~^^^^^^^^^^~03/01/2014~
-~17365~^~318~^32.^0^^~1~^~AS~^^^^^^^^^^~03/01/2014~
-~17365~^~319~^10.^1^^~1~^~A~^^^^^^^^^^~03/01/2014~
-~17365~^~320~^10.^0^^~1~^~AS~^^^^^^^^^^~03/01/2014~
-~17365~^~321~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2014~
-~17365~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2014~
-~17365~^~324~^1.^1^^~1~^~A~^^^^^^^^^^~03/01/2014~
-~17365~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2014~
-~17365~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2014~
-~17365~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2014~
-~17365~^~601~^78.^1^^~1~^~A~^^^^^^^^^^~03/01/2014~
-~17366~^~208~^180.^0^^~4~^~NC~^^^^^^^^^^~03/01/2014~
-~17366~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2014~
-~17366~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2014~
-~17366~^~268~^752.^0^^~4~^~NC~^^^^^^^^^^~03/01/2014~
-~17366~^~301~^7.^1^^~1~^~A~^^^^^^^^^^~03/01/2014~
-~17366~^~304~^19.^1^^~1~^~A~^^^^^^^^^^~03/01/2014~
-~17366~^~305~^164.^1^^~1~^~A~^^^^^^^^^^~03/01/2014~
-~17366~^~306~^303.^1^^~1~^~A~^^^^^^^^^^~03/01/2014~
-~17366~^~307~^87.^1^^~1~^~A~^^^^^^^^^^~03/01/2014~
-~17366~^~318~^30.^0^^~1~^~AS~^^^^^^^^^^~03/01/2014~
-~17366~^~319~^9.^1^^~1~^~A~^^^^^^^^^^~03/01/2014~
-~17366~^~320~^9.^0^^~1~^~AS~^^^^^^^^^^~03/01/2014~
-~17366~^~321~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2014~
-~17366~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2014~
-~17366~^~324~^1.^1^^~1~^~A~^^^^^^^^^^~03/01/2014~
-~17366~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2014~
-~17366~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2014~
-~17366~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2014~
-~17366~^~601~^58.^1^^~1~^~A~^^^^^^^^^^~03/01/2014~
-~17367~^~208~^84.^0^^~4~^~NC~^^^^^^^^^^~03/01/2014~
-~17367~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2014~
-~17367~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2014~
-~17367~^~268~^351.^0^^~4~^~NC~^^^^^^^^^^~03/01/2014~
-~17367~^~301~^8.^1^^~1~^~A~^^^^^^^^^^~03/01/2014~
-~17367~^~304~^16.^1^^~1~^~A~^^^^^^^^^^~03/01/2014~
-~17367~^~305~^245.^1^^~1~^~A~^^^^^^^^^^~03/01/2014~
-~17367~^~306~^231.^1^^~1~^~A~^^^^^^^^^^~03/01/2014~
-~17367~^~307~^168.^1^^~1~^~A~^^^^^^^^^^~03/01/2014~
-~17367~^~318~^204.^0^^~1~^~AS~^^^^^^^^^^~03/01/2014~
-~17367~^~319~^61.^1^^~1~^~A~^^^^^^^^^^~03/01/2014~
-~17367~^~320~^61.^0^^~1~^~AS~^^^^^^^^^^~03/01/2014~
-~17367~^~321~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2014~
-~17367~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2014~
-~17367~^~324~^5.^1^^~1~^~A~^^^^^^^^^^~03/01/2014~
-~17367~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2014~
-~17367~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2014~
-~17367~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2014~
-~17367~^~601~^369.^1^^~1~^~A~^^^^^^^^^^~03/01/2014~
-~17368~^~208~^168.^0^^~4~^~NC~^^^^^^^^^^~03/01/2014~
-~17368~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2014~
-~17368~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2014~
-~17368~^~268~^704.^0^^~4~^~NC~^^^^^^^^^^~03/01/2014~
-~17368~^~301~^5.^1^^~1~^~A~^^^^^^^^^^~03/01/2014~
-~17368~^~304~^21.^1^^~1~^~A~^^^^^^^^^^~03/01/2014~
-~17368~^~305~^459.^1^^~1~^~A~^^^^^^^^^^~03/01/2014~
-~17368~^~306~^287.^1^^~1~^~A~^^^^^^^^^^~03/01/2014~
-~17368~^~307~^59.^1^^~1~^~A~^^^^^^^^^^~03/01/2014~
-~17368~^~318~^66240.^0^^~1~^~AS~^^^^^^^^^^~03/01/2014~
-~17368~^~319~^19872.^1^^~1~^~A~^^^^^^^^^^~03/01/2014~
-~17368~^~320~^19872.^0^^~1~^~AS~^^^^^^^^^^~03/01/2014~
-~17368~^~321~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2014~
-~17368~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2014~
-~17368~^~324~^0.^1^^~1~^~A~^^^^^^^^^~1~^~03/01/2014~
-~17368~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2014~
-~17368~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2014~
-~17368~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2014~
-~17368~^~601~^566.^1^^~1~^~A~^^^^^^^^^^~03/01/2014~
-~17369~^~208~^136.^0^^~4~^~NC~^^^^^^^^^^~03/01/2014~
-~17369~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2014~
-~17369~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2014~
-~17369~^~268~^569.^0^^~4~^~NC~^^^^^^^^^^~03/01/2014~
-~17369~^~301~^4.^1^^~1~^~A~^^^^^^^^^^~03/01/2014~
-~17369~^~304~^18.^1^^~1~^~A~^^^^^^^^^^~03/01/2014~
-~17369~^~305~^381.^1^^~1~^~A~^^^^^^^^^^~03/01/2014~
-~17369~^~306~^285.^1^^~1~^~A~^^^^^^^^^^~03/01/2014~
-~17369~^~307~^59.^1^^~1~^~A~^^^^^^^^^^~03/01/2014~
-~17369~^~318~^51447.^0^^~1~^~AS~^^^^^^^^^^~03/01/2014~
-~17369~^~319~^15434.^1^^~1~^~A~^^^^^^^^^^~03/01/2014~
-~17369~^~320~^15434.^0^^~1~^~AS~^^^^^^^^^^~03/01/2014~
-~17369~^~321~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2014~
-~17369~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2014~
-~17369~^~324~^0.^1^^~1~^~A~^^^^^^^^^~1~^~03/01/2014~
-~17369~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2014~
-~17369~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2014~
-~17369~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2014~
-~17369~^~601~^386.^1^^~1~^~A~^^^^^^^^^^~03/01/2014~
-~17370~^~208~^192.^0^^~4~^~NC~^^^^^^^^^^~03/01/2014~
-~17370~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2014~
-~17370~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2014~
-~17370~^~268~^805.^0^^~4~^~NC~^^^^^^^^^^~03/01/2014~
-~17370~^~301~^4.^1^^~1~^~A~^^^^^^^^^^~03/01/2014~
-~17370~^~304~^15.^1^^~1~^~A~^^^^^^^^^^~03/01/2014~
-~17370~^~305~^122.^1^^~1~^~A~^^^^^^^^^^~03/01/2014~
-~17370~^~306~^162.^1^^~1~^~A~^^^^^^^^^^~03/01/2014~
-~17370~^~307~^34.^1^^~1~^~A~^^^^^^^^^^~03/01/2014~
-~17370~^~318~^27.^0^^~1~^~AS~^^^^^^^^^^~03/01/2014~
-~17370~^~319~^8.^1^^~1~^~A~^^^^^^^^^^~03/01/2014~
-~17370~^~320~^8.^0^^~1~^~AS~^^^^^^^^^^~03/01/2014~
-~17370~^~321~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2014~
-~17370~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2014~
-~17370~^~324~^2.^1^^~1~^~A~^^^^^^^^^^~03/01/2014~
-~17370~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2014~
-~17370~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2014~
-~17370~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2014~
-~17370~^~601~^71.^1^^~1~^~A~^^^^^^^^^^~03/01/2014~
-~17371~^~208~^193.^0^^~4~^~NC~^^^^^^^^^^~03/01/2014~
-~17371~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2014~
-~17371~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2014~
-~17371~^~268~^807.^0^^~4~^~NC~^^^^^^^^^^~03/01/2014~
-~17371~^~301~^4.^1^^~1~^~A~^^^^^^^^^^~03/01/2014~
-~17371~^~304~^18.^1^^~1~^~A~^^^^^^^^^^~03/01/2014~
-~17371~^~305~^156.^1^^~1~^~A~^^^^^^^^^^~03/01/2014~
-~17371~^~306~^281.^1^^~1~^~A~^^^^^^^^^^~03/01/2014~
-~17371~^~307~^57.^1^^~1~^~A~^^^^^^^^^^~03/01/2014~
-~17371~^~318~^26.^0^^~1~^~AS~^^^^^^^^^^~03/01/2014~
-~17371~^~319~^8.^1^^~1~^~A~^^^^^^^^^^~03/01/2014~
-~17371~^~320~^8.^0^^~1~^~AS~^^^^^^^^^^~03/01/2014~
-~17371~^~321~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2014~
-~17371~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2014~
-~17371~^~324~^1.^1^^~1~^~A~^^^^^^^^^^~03/01/2014~
-~17371~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2014~
-~17371~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2014~
-~17371~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2014~
-~17371~^~601~^63.^1^^~1~^~A~^^^^^^^^^^~03/01/2014~
-~17372~^~208~^161.^0^^~4~^~NC~^^^^^^^^^^~03/01/2014~
-~17372~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2014~
-~17372~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2014~
-~17372~^~268~^673.^0^^~4~^~NC~^^^^^^^^^^~03/01/2014~
-~17372~^~301~^5.^1^^~1~^~A~^^^^^^^^^^~03/01/2014~
-~17372~^~304~^22.^1^^~1~^~A~^^^^^^^^^^~03/01/2014~
-~17372~^~305~^237.^1^^~1~^~A~^^^^^^^^^^~03/01/2014~
-~17372~^~306~^187.^1^^~1~^~A~^^^^^^^^^^~03/01/2014~
-~17372~^~307~^67.^1^^~1~^~A~^^^^^^^^^^~03/01/2014~
-~17372~^~318~^12.^0^^~1~^~AS~^^^^^^^^^^~03/01/2014~
-~17372~^~319~^4.^1^^~1~^~A~^^^^^^^^^^~03/01/2014~
-~17372~^~320~^4.^0^^~1~^~AS~^^^^^^^^^^~03/01/2014~
-~17372~^~321~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2014~
-~17372~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2014~
-~17372~^~324~^2.^1^^~1~^~A~^^^^^^^^^^~03/01/2014~
-~17372~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2014~
-~17372~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2014~
-~17372~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2014~
-~17372~^~601~^186.^1^^~1~^~A~^^^^^^^^^^~03/01/2014~
-~17373~^~208~^105.^0^^~4~^~NC~^^^^^^^^^^~03/01/2014~
-~17373~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2014~
-~17373~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2014~
-~17373~^~268~^441.^0^^~4~^~NC~^^^^^^^^^^~03/01/2014~
-~17373~^~301~^5.^1^^~1~^~A~^^^^^^^^^^~03/01/2014~
-~17373~^~304~^20.^1^^~1~^~A~^^^^^^^^^^~03/01/2014~
-~17373~^~305~^204.^1^^~1~^~A~^^^^^^^^^^~03/01/2014~
-~17373~^~306~^277.^1^^~1~^~A~^^^^^^^^^^~03/01/2014~
-~17373~^~307~^94.^1^^~1~^~A~^^^^^^^^^^~03/01/2014~
-~17373~^~318~^18.^0^^~1~^~AS~^^^^^^^^^^~03/01/2014~
-~17373~^~319~^5.^1^^~1~^~A~^^^^^^^^^^~03/01/2014~
-~17373~^~320~^5.^0^^~1~^~AS~^^^^^^^^^^~03/01/2014~
-~17373~^~321~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2014~
-~17373~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2014~
-~17373~^~324~^1.^1^^~1~^~A~^^^^^^^^^^~03/01/2014~
-~17373~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2014~
-~17373~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2014~
-~17373~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2014~
-~17373~^~601~^119.^1^^~1~^~A~^^^^^^^^^^~03/01/2014~
-~17374~^~208~^144.^0^^~4~^~NC~^^^^^^^^^^~03/01/2014~
-~17374~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2014~
-~17374~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2014~
-~17374~^~268~^602.^0^^~4~^~NC~^^^^^^^^^^~03/01/2014~
-~17374~^~301~^6.^1^^~1~^~A~^^^^^^^^^^~03/01/2014~
-~17374~^~304~^25.^1^^~1~^~A~^^^^^^^^^^~03/01/2014~
-~17374~^~305~^550.^1^^~1~^~A~^^^^^^^^^^~03/01/2014~
-~17374~^~306~^354.^1^^~1~^~A~^^^^^^^^^^~03/01/2014~
-~17374~^~307~^52.^1^^~1~^~A~^^^^^^^^^^~03/01/2014~
-~17374~^~318~^28.^0^^~1~^~AS~^^^^^^^^^^~03/01/2014~
-~17374~^~319~^8.^1^^~1~^~A~^^^^^^^^^^~03/01/2014~
-~17374~^~320~^8.^0^^~1~^~AS~^^^^^^^^^^~03/01/2014~
-~17374~^~321~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2014~
-~17374~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2014~
-~17374~^~324~^6.^1^^~1~^~A~^^^^^^^^^^~03/01/2014~
-~17374~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2014~
-~17374~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2014~
-~17374~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2014~
-~17374~^~601~^462.^1^^~1~^~A~^^^^^^^^^^~03/01/2014~
-~17375~^~208~^72.^0^^~4~^~NC~^^^^^^^^^^~03/01/2014~
-~17375~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2014~
-~17375~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2014~
-~17375~^~268~^303.^0^^~4~^~NC~^^^^^^^^^^~03/01/2014~
-~17375~^~301~^2.^1^^~1~^~A~^^^^^^^^^^~03/01/2014~
-~17375~^~304~^14.^1^^~1~^~A~^^^^^^^^^^~03/01/2014~
-~17375~^~305~^310.^1^^~1~^~A~^^^^^^^^^^~03/01/2014~
-~17375~^~306~^302.^1^^~1~^~A~^^^^^^^^^^~03/01/2014~
-~17375~^~307~^39.^1^^~1~^~A~^^^^^^^^^^~03/01/2014~
-~17375~^~318~^18.^0^^~1~^~AS~^^^^^^^^^^~03/01/2014~
-~17375~^~319~^5.^1^^~1~^~A~^^^^^^^^^^~03/01/2014~
-~17375~^~320~^5.^0^^~1~^~AS~^^^^^^^^^^~03/01/2014~
-~17375~^~321~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2014~
-~17375~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2014~
-~17375~^~324~^4.^1^^~1~^~A~^^^^^^^^^^~03/01/2014~
-~17375~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2014~
-~17375~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2014~
-~17375~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2014~
-~17375~^~601~^160.^1^^~1~^~A~^^^^^^^^^^~03/01/2014~
-~17376~^~208~^125.^0^^~4~^~NC~^^^^^^^^^^~03/01/2014~
-~17376~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2014~
-~17376~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2014~
-~17376~^~268~^524.^0^^~4~^~NC~^^^^^^^^^^~03/01/2014~
-~17376~^~301~^8.^1^^~1~^~A~^^^^^^^^^^~03/01/2014~
-~17376~^~304~^16.^1^^~1~^~A~^^^^^^^^^^~03/01/2014~
-~17376~^~305~^302.^1^^~1~^~A~^^^^^^^^^^~03/01/2014~
-~17376~^~306~^265.^1^^~1~^~A~^^^^^^^^^^~03/01/2014~
-~17376~^~307~^118.^1^^~1~^~A~^^^^^^^^^^~03/01/2014~
-~17376~^~318~^72.^0^^~1~^~AS~^^^^^^^^^^~03/01/2014~
-~17376~^~319~^22.^1^^~1~^~A~^^^^^^^^^^~03/01/2014~
-~17376~^~320~^22.^0^^~1~^~AS~^^^^^^^^^^~03/01/2014~
-~17376~^~321~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2014~
-~17376~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2014~
-~17376~^~324~^1.^1^^~1~^~A~^^^^^^^^^^~03/01/2014~
-~17376~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2014~
-~17376~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2014~
-~17376~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2014~
-~17376~^~601~^523.^1^^~1~^~A~^^^^^^^^^^~03/01/2014~
-~17377~^~208~^68.^0^^~4~^~NC~^^^^^^^^^^~03/01/2014~
-~17377~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2014~
-~17377~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2014~
-~17377~^~268~^283.^0^^~4~^~NC~^^^^^^^^^^~03/01/2014~
-~17377~^~301~^5.^1^^~1~^~A~^^^^^^^^^^~03/01/2014~
-~17377~^~304~^11.^1^^~1~^~A~^^^^^^^^^^~03/01/2014~
-~17377~^~305~^179.^1^^~1~^~A~^^^^^^^^^^~03/01/2014~
-~17377~^~306~^265.^1^^~1~^~A~^^^^^^^^^^~03/01/2014~
-~17377~^~307~^119.^1^^~1~^~A~^^^^^^^^^^~03/01/2014~
-~17377~^~318~^34.^0^^~1~^~AS~^^^^^^^^^^~03/01/2014~
-~17377~^~319~^10.^1^^~1~^~A~^^^^^^^^^^~03/01/2014~
-~17377~^~320~^10.^0^^~1~^~AS~^^^^^^^^^^~03/01/2014~
-~17377~^~321~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2014~
-~17377~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2014~
-~17377~^~324~^0.^1^^~1~^~A~^^^^^^^^^^~03/01/2014~
-~17377~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2014~
-~17377~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2014~
-~17377~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2014~
-~17377~^~601~^393.^1^^~1~^~A~^^^^^^^^^^~03/01/2014~
-~17378~^~208~^272.^0^^~4~^~NC~^^^^^^^^^^~03/01/2014~
-~17378~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2014~
-~17378~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2014~
-~17378~^~268~^1138.^0^^~4~^~NC~^^^^^^^^^^~03/01/2014~
-~17378~^~301~^6.^1^^~1~^~A~^^^^^^^^^^~03/01/2014~
-~17378~^~304~^15.^1^^~1~^~A~^^^^^^^^^^~03/01/2014~
-~17378~^~305~^143.^1^^~1~^~A~^^^^^^^^^^~03/01/2014~
-~17378~^~306~^132.^1^^~1~^~A~^^^^^^^^^^~03/01/2014~
-~17378~^~307~^52.^1^^~1~^~A~^^^^^^^^^^~03/01/2014~
-~17378~^~318~^5.^0^^~1~^~AS~^^^^^^^^^^~03/01/2014~
-~17378~^~319~^1.^1^^~1~^~A~^^^^^^^^^^~03/01/2014~
-~17378~^~320~^1.^0^^~1~^~AS~^^^^^^^^^^~03/01/2014~
-~17378~^~321~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2014~
-~17378~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2014~
-~17378~^~324~^12.^1^^~1~^~A~^^^^^^^^^^~03/01/2014~
-~17378~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2014~
-~17378~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2014~
-~17378~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2014~
-~17378~^~601~^126.^1^^~1~^~A~^^^^^^^^^^~03/01/2014~
-~17379~^~208~^225.^0^^~4~^~NC~^^^^^^^^^^~03/01/2014~
-~17379~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2014~
-~17379~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2014~
-~17379~^~268~^940.^0^^~4~^~NC~^^^^^^^^^^~03/01/2014~
-~17379~^~301~^6.^1^^~1~^~A~^^^^^^^^^^~03/01/2014~
-~17379~^~304~^15.^1^^~1~^~A~^^^^^^^^^^~03/01/2014~
-~17379~^~305~^142.^1^^~1~^~A~^^^^^^^^^^~03/01/2014~
-~17379~^~306~^207.^1^^~1~^~A~^^^^^^^^^^~03/01/2014~
-~17379~^~307~^77.^1^^~1~^~A~^^^^^^^^^^~03/01/2014~
-~17379~^~318~^18.^0^^~1~^~AS~^^^^^^^^^^~03/01/2014~
-~17379~^~319~^5.^1^^~1~^~A~^^^^^^^^^^~03/01/2014~
-~17379~^~320~^5.^0^^~1~^~AS~^^^^^^^^^^~03/01/2014~
-~17379~^~321~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2014~
-~17379~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2014~
-~17379~^~324~^5.^1^^~1~^~A~^^^^^^^^^^~03/01/2014~
-~17379~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2014~
-~17379~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2014~
-~17379~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2014~
-~17379~^~601~^88.^1^^~1~^~A~^^^^^^^^^^~03/01/2014~
-~17380~^~208~^159.^0^^~4~^~NC~^^^^^^^^^^~03/01/2014~
-~17380~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2014~
-~17380~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2014~
-~17380~^~268~^666.^0^^~4~^~NC~^^^^^^^^^^~03/01/2014~
-~17380~^~301~^4.^1^^~1~^~A~^^^^^^^^^^~03/01/2014~
-~17380~^~304~^26.^1^^~1~^~A~^^^^^^^^^^~03/01/2014~
-~17380~^~305~^213.^1^^~1~^~A~^^^^^^^^^^~03/01/2014~
-~17380~^~306~^369.^1^^~1~^~A~^^^^^^^^^^~03/01/2014~
-~17380~^~307~^62.^1^^~1~^~A~^^^^^^^^^^~03/01/2014~
-~17380~^~318~^8.^0^^~1~^~AS~^^^^^^^^^^~03/01/2014~
-~17380~^~319~^2.^1^^~1~^~A~^^^^^^^^^^~03/01/2014~
-~17380~^~320~^2.^0^^~1~^~AS~^^^^^^^^^^~03/01/2014~
-~17380~^~321~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2014~
-~17380~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2014~
-~17380~^~324~^0.^1^^~1~^~A~^^^^^^^^^^~03/01/2014~
-~17380~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2014~
-~17380~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2014~
-~17380~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2014~
-~17380~^~601~^79.^1^^~1~^~A~^^^^^^^^^^~03/01/2014~
-~17381~^~208~^121.^0^^~4~^~NC~^^^^^^^^^^~03/01/2014~
-~17381~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2014~
-~17381~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2014~
-~17381~^~268~^504.^0^^~4~^~NC~^^^^^^^^^^~03/01/2014~
-~17381~^~301~^4.^1^^~1~^~A~^^^^^^^^^^~03/01/2014~
-~17381~^~304~^24.^1^^~1~^~A~^^^^^^^^^^~03/01/2014~
-~17381~^~305~^197.^1^^~1~^~A~^^^^^^^^^^~03/01/2014~
-~17381~^~306~^344.^1^^~1~^~A~^^^^^^^^^^~03/01/2014~
-~17381~^~307~^60.^1^^~1~^~A~^^^^^^^^^^~03/01/2014~
-~17381~^~318~^11.^0^^~1~^~AS~^^^^^^^^^^~03/01/2014~
-~17381~^~319~^3.^1^^~1~^~A~^^^^^^^^^^~03/01/2014~
-~17381~^~320~^3.^0^^~1~^~AS~^^^^^^^^^^~03/01/2014~
-~17381~^~321~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2014~
-~17381~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2014~
-~17381~^~324~^0.^1^^~1~^~A~^^^^^^^^^^~03/01/2014~
-~17381~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2014~
-~17381~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2014~
-~17381~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2014~
-~17381~^~601~^64.^1^^~1~^~A~^^^^^^^^^^~03/01/2014~
-~17382~^~208~^255.^0^^~4~^~NC~^^^^^^^^^^~03/01/2014~
-~17382~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2014~
-~17382~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2014~
-~17382~^~268~^1068.^0^^~4~^~NC~^^^^^^^^^^~03/01/2014~
-~17382~^~301~^40.^1^^~1~^~A~^^^^^^^^^^~03/01/2014~
-~17382~^~304~^22.^1^^~1~^~A~^^^^^^^^^^~03/01/2014~
-~17382~^~305~^175.^1^^~1~^~A~^^^^^^^^^^~03/01/2014~
-~17382~^~306~^213.^1^^~1~^~A~^^^^^^^^^^~03/01/2014~
-~17382~^~307~^59.^1^^~1~^~A~^^^^^^^^^^~03/01/2014~
-~17382~^~318~^26.^0^^~1~^~AS~^^^^^^^^^^~03/01/2014~
-~17382~^~319~^8.^1^^~1~^~A~^^^^^^^^^^~03/01/2014~
-~17382~^~320~^8.^0^^~1~^~AS~^^^^^^^^^^~03/01/2014~
-~17382~^~321~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2014~
-~17382~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2014~
-~17382~^~324~^7.^1^^~1~^~A~^^^^^^^^^^~03/01/2014~
-~17382~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2014~
-~17382~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2014~
-~17382~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2014~
-~17382~^~601~^99.^1^^~1~^~A~^^^^^^^^^^~03/01/2014~
-~17383~^~208~^164.^0^^~4~^~NC~^^^^^^^^^^~03/01/2014~
-~17383~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2014~
-~17383~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2014~
-~17383~^~268~^687.^0^^~4~^~NC~^^^^^^^^^^~03/01/2014~
-~17383~^~301~^27.^1^^~1~^~A~^^^^^^^^^^~03/01/2014~
-~17383~^~304~^21.^1^^~1~^~A~^^^^^^^^^^~03/01/2014~
-~17383~^~305~^189.^1^^~1~^~A~^^^^^^^^^^~03/01/2014~
-~17383~^~306~^321.^1^^~1~^~A~^^^^^^^^^^~03/01/2014~
-~17383~^~307~^82.^1^^~1~^~A~^^^^^^^^^^~03/01/2014~
-~17383~^~318~^21.^0^^~1~^~AS~^^^^^^^^^^~03/01/2014~
-~17383~^~319~^6.^1^^~1~^~A~^^^^^^^^^^~03/01/2014~
-~17383~^~320~^6.^0^^~1~^~AS~^^^^^^^^^^~03/01/2014~
-~17383~^~321~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2014~
-~17383~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2014~
-~17383~^~324~^5.^1^^~1~^~A~^^^^^^^^^^~03/01/2014~
-~17383~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2014~
-~17383~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2014~
-~17383~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2014~
-~17383~^~601~^59.^1^^~1~^~A~^^^^^^^^^^~03/01/2014~
-~17384~^~208~^155.^0^^~4~^~NC~^^^^^^^^^^~03/01/2014~
-~17384~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2014~
-~17384~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2014~
-~17384~^~268~^649.^0^^~4~^~NC~^^^^^^^^^^~03/01/2014~
-~17384~^~301~^5.^1^^~1~^~A~^^^^^^^^^^~03/01/2014~
-~17384~^~304~^31.^1^^~1~^~A~^^^^^^^^^^~03/01/2014~
-~17384~^~305~^268.^1^^~1~^~A~^^^^^^^^^^~03/01/2014~
-~17384~^~306~^433.^1^^~1~^~A~^^^^^^^^^^~03/01/2014~
-~17384~^~307~^59.^1^^~1~^~A~^^^^^^^^^^~03/01/2014~
-~17384~^~318~^5.^0^^~1~^~AS~^^^^^^^^^^~03/01/2014~
-~17384~^~319~^2.^1^^~1~^~A~^^^^^^^^^^~03/01/2014~
-~17384~^~320~^2.^0^^~1~^~AS~^^^^^^^^^^~03/01/2014~
-~17384~^~321~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2014~
-~17384~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2014~
-~17384~^~324~^1.^1^^~1~^~A~^^^^^^^^^^~03/01/2014~
-~17384~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2014~
-~17384~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2014~
-~17384~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2014~
-~17384~^~601~^94.^1^^~1~^~A~^^^^^^^^^^~03/01/2014~
-~17385~^~208~^116.^0^^~4~^~NC~^^^^^^^^^^~04/01/2014~
-~17385~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2014~
-~17385~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2014~
-~17385~^~268~^487.^0^^~4~^~NC~^^^^^^^^^^~04/01/2014~
-~17385~^~301~^4.^1^^~1~^~A~^^^^^^^^^^~04/01/2014~
-~17385~^~304~^26.^1^^~1~^~A~^^^^^^^^^^~04/01/2014~
-~17385~^~305~^222.^1^^~1~^~A~^^^^^^^^^^~04/01/2014~
-~17385~^~306~^381.^1^^~1~^~A~^^^^^^^^^^~04/01/2014~
-~17385~^~307~^49.^1^^~1~^~A~^^^^^^^^^^~04/01/2014~
-~17385~^~318~^5.^0^^~1~^~AS~^^^^^^^^^^~04/01/2014~
-~17385~^~319~^1.^1^^~1~^~A~^^^^^^^^^^~04/01/2014~
-~17385~^~320~^1.^0^^~1~^~AS~^^^^^^^^^^~04/01/2014~
-~17385~^~321~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2014~
-~17385~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2014~
-~17385~^~324~^1.^1^^~1~^~A~^^^^^^^^^^~04/01/2014~
-~17385~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2014~
-~17385~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2014~
-~17385~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2014~
-~17385~^~601~^69.^1^^~1~^~A~^^^^^^^^^^~04/01/2014~
-~17386~^~208~^162.^0^^~4~^~NC~^^^^^^^^^^~03/01/2014~
-~17386~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2014~
-~17386~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2014~
-~17386~^~268~^679.^0^^~4~^~NC~^^^^^^^^^^~03/01/2014~
-~17386~^~301~^8.^1^^~1~^~A~^^^^^^^^^^~03/01/2014~
-~17386~^~304~^24.^1^^~1~^~A~^^^^^^^^^^~03/01/2014~
-~17386~^~305~^205.^1^^~1~^~A~^^^^^^^^^^~03/01/2014~
-~17386~^~306~^345.^1^^~1~^~A~^^^^^^^^^^~03/01/2014~
-~17386~^~307~^76.^1^^~1~^~A~^^^^^^^^^^~03/01/2014~
-~17386~^~318~^16.^0^^~1~^~AS~^^^^^^^^^^~03/01/2014~
-~17386~^~319~^5.^1^^~1~^~A~^^^^^^^^^^~03/01/2014~
-~17386~^~320~^5.^0^^~1~^~AS~^^^^^^^^^^~03/01/2014~
-~17386~^~321~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2014~
-~17386~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2014~
-~17386~^~324~^1.^1^^~1~^~A~^^^^^^^^^^~03/01/2014~
-~17386~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2014~
-~17386~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2014~
-~17386~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2014~
-~17386~^~601~^78.^1^^~1~^~A~^^^^^^^^^^~03/01/2014~
-~17387~^~208~^131.^0^^~4~^~NC~^^^^^^^^^^~03/01/2014~
-~17387~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2014~
-~17387~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2014~
-~17387~^~268~^549.^0^^~4~^~NC~^^^^^^^^^^~03/01/2014~
-~17387~^~301~^7.^1^^~1~^~A~^^^^^^^^^^~03/01/2014~
-~17387~^~304~^24.^1^^~1~^~A~^^^^^^^^^^~03/01/2014~
-~17387~^~305~^193.^1^^~1~^~A~^^^^^^^^^^~03/01/2014~
-~17387~^~306~^356.^1^^~1~^~A~^^^^^^^^^^~03/01/2014~
-~17387~^~307~^75.^1^^~1~^~A~^^^^^^^^^^~03/01/2014~
-~17387~^~318~^15.^0^^~1~^~AS~^^^^^^^^^^~03/01/2014~
-~17387~^~319~^4.^1^^~1~^~A~^^^^^^^^^^~03/01/2014~
-~17387~^~320~^4.^0^^~1~^~AS~^^^^^^^^^^~03/01/2014~
-~17387~^~321~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2014~
-~17387~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2014~
-~17387~^~324~^1.^1^^~1~^~A~^^^^^^^^^^~03/01/2014~
-~17387~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2014~
-~17387~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2014~
-~17387~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2014~
-~17387~^~601~^66.^1^^~1~^~A~^^^^^^^^^^~03/01/2014~
-~17388~^~208~^156.^0^^~4~^~NC~^^^^^^^^^^~03/01/2014~
-~17388~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2014~
-~17388~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2014~
-~17388~^~268~^654.^0^^~4~^~NC~^^^^^^^^^^~03/01/2014~
-~17388~^~301~^6.^1^^~1~^~A~^^^^^^^^^^~03/01/2014~
-~17388~^~304~^28.^1^^~1~^~A~^^^^^^^^^^~03/01/2014~
-~17388~^~305~^234.^1^^~1~^~A~^^^^^^^^^^~03/01/2014~
-~17388~^~306~^355.^1^^~1~^~A~^^^^^^^^^^~03/01/2014~
-~17388~^~307~^57.^1^^~1~^~A~^^^^^^^^^^~03/01/2014~
-~17388~^~318~^3.^0^^~1~^~AS~^^^^^^^^^^~03/01/2014~
-~17388~^~319~^1.^1^^~1~^~A~^^^^^^^^^^~03/01/2014~
-~17388~^~320~^1.^0^^~1~^~AS~^^^^^^^^^^~03/01/2014~
-~17388~^~321~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2014~
-~17388~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2014~
-~17388~^~324~^1.^1^^~1~^~A~^^^^^^^^^^~03/01/2014~
-~17388~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2014~
-~17388~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2014~
-~17388~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2014~
-~17388~^~601~^86.^1^^~1~^~A~^^^^^^^^^^~03/01/2014~
-~17389~^~208~^120.^0^^~4~^~NC~^^^^^^^^^^~03/01/2014~
-~17389~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2014~
-~17389~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2014~
-~17389~^~268~^502.^0^^~4~^~NC~^^^^^^^^^^~03/01/2014~
-~17389~^~301~^4.^1^^~1~^~A~^^^^^^^^^^~03/01/2014~
-~17389~^~304~^26.^1^^~1~^~A~^^^^^^^^^^~03/01/2014~
-~17389~^~305~^217.^1^^~1~^~A~^^^^^^^^^^~03/01/2014~
-~17389~^~306~^368.^1^^~1~^~A~^^^^^^^^^^~03/01/2014~
-~17389~^~307~^60.^1^^~1~^~A~^^^^^^^^^^~03/01/2014~
-~17389~^~318~^6.^0^^~1~^~AS~^^^^^^^^^^~03/01/2014~
-~17389~^~319~^2.^1^^~1~^~A~^^^^^^^^^^~03/01/2014~
-~17389~^~320~^2.^0^^~1~^~AS~^^^^^^^^^^~03/01/2014~
-~17389~^~321~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2014~
-~17389~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2014~
-~17389~^~324~^1.^1^^~1~^~A~^^^^^^^^^^~03/01/2014~
-~17389~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2014~
-~17389~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2014~
-~17389~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2014~
-~17389~^~601~^66.^1^^~1~^~A~^^^^^^^^^^~03/01/2014~
-~17390~^~208~^196.^0^^~4~^~NC~^^^^^^^^^^~03/01/2014~
-~17390~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2014~
-~17390~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2014~
-~17390~^~268~^821.^0^^~4~^~NC~^^^^^^^^^^~03/01/2014~
-~17390~^~301~^8.^1^^~1~^~A~^^^^^^^^^^~03/01/2014~
-~17390~^~304~^23.^1^^~1~^~A~^^^^^^^^^^~03/01/2014~
-~17390~^~305~^180.^1^^~1~^~A~^^^^^^^^^^~03/01/2014~
-~17390~^~306~^258.^1^^~1~^~A~^^^^^^^^^^~03/01/2014~
-~17390~^~307~^72.^1^^~1~^~A~^^^^^^^^^^~03/01/2014~
-~17390~^~318~^8.^0^^~1~^~AS~^^^^^^^^^^~03/01/2014~
-~17390~^~319~^2.^1^^~1~^~A~^^^^^^^^^^~03/01/2014~
-~17390~^~320~^2.^0^^~1~^~AS~^^^^^^^^^^~03/01/2014~
-~17390~^~321~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2014~
-~17390~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2014~
-~17390~^~324~^2.^1^^~1~^~A~^^^^^^^^^^~03/01/2014~
-~17390~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2014~
-~17390~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2014~
-~17390~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2014~
-~17390~^~601~^115.^1^^~1~^~A~^^^^^^^^^^~03/01/2014~
-~17391~^~208~^115.^0^^~4~^~NC~^^^^^^^^^^~03/01/2014~
-~17391~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2014~
-~17391~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2014~
-~17391~^~268~^480.^0^^~4~^~NC~^^^^^^^^^^~03/01/2014~
-~17391~^~301~^5.^1^^~1~^~A~^^^^^^^^^^~03/01/2014~
-~17391~^~304~^22.^1^^~1~^~A~^^^^^^^^^^~03/01/2014~
-~17391~^~305~^185.^1^^~1~^~A~^^^^^^^^^^~03/01/2014~
-~17391~^~306~^327.^1^^~1~^~A~^^^^^^^^^^~03/01/2014~
-~17391~^~307~^82.^1^^~1~^~A~^^^^^^^^^^~03/01/2014~
-~17391~^~318~^7.^0^^~1~^~AS~^^^^^^^^^^~03/01/2014~
-~17391~^~319~^2.^1^^~1~^~A~^^^^^^^^^^~03/01/2014~
-~17391~^~320~^2.^0^^~1~^~AS~^^^^^^^^^^~03/01/2014~
-~17391~^~321~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2014~
-~17391~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2014~
-~17391~^~324~^2.^1^^~1~^~A~^^^^^^^^^^~03/01/2014~
-~17391~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2014~
-~17391~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2014~
-~17391~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2014~
-~17391~^~601~^62.^1^^~1~^~A~^^^^^^^^^^~03/01/2014~
-~17392~^~208~^151.^0^^~4~^~NC~^^^^^^^^^^~03/01/2014~
-~17392~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2014~
-~17392~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2014~
-~17392~^~268~^632.^0^^~4~^~NC~^^^^^^^^^^~03/01/2014~
-~17392~^~301~^23.^1^^~1~^~A~^^^^^^^^^^~03/01/2014~
-~17392~^~304~^20.^1^^~1~^~A~^^^^^^^^^^~03/01/2014~
-~17392~^~305~^175.^1^^~1~^~A~^^^^^^^^^^~03/01/2014~
-~17392~^~306~^323.^1^^~1~^~A~^^^^^^^^^^~03/01/2014~
-~17392~^~307~^81.^1^^~1~^~A~^^^^^^^^^^~03/01/2014~
-~17392~^~318~^17.^0^^~1~^~AS~^^^^^^^^^^~03/01/2014~
-~17392~^~319~^5.^1^^~1~^~A~^^^^^^^^^^~03/01/2014~
-~17392~^~320~^5.^0^^~1~^~AS~^^^^^^^^^^~03/01/2014~
-~17392~^~321~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2014~
-~17392~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2014~
-~17392~^~324~^1.^1^^~1~^~A~^^^^^^^^^^~03/01/2014~
-~17392~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2014~
-~17392~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2014~
-~17392~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2014~
-~17392~^~601~^71.^1^^~1~^~A~^^^^^^^^^^~03/01/2014~
-~17393~^~208~^264.^0^^~4~^~NC~^^^^^^^^^^~03/01/2014~
-~17393~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2014~
-~17393~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2014~
-~17393~^~268~^1104.^0^^~4~^~NC~^^^^^^^^^^~03/01/2014~
-~17393~^~301~^58.^1^^~1~^~A~^^^^^^^^^^~03/01/2014~
-~17393~^~304~^22.^1^^~1~^~A~^^^^^^^^^^~03/01/2014~
-~17393~^~305~^194.^1^^~1~^~A~^^^^^^^^^^~03/01/2014~
-~17393~^~306~^289.^1^^~1~^~A~^^^^^^^^^^~03/01/2014~
-~17393~^~307~^97.^1^^~1~^~A~^^^^^^^^^^~03/01/2014~
-~17393~^~318~^28.^0^^~1~^~AS~^^^^^^^^^^~03/01/2014~
-~17393~^~319~^8.^1^^~1~^~A~^^^^^^^^^^~03/01/2014~
-~17393~^~320~^8.^0^^~1~^~AS~^^^^^^^^^^~03/01/2014~
-~17393~^~321~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2014~
-~17393~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2014~
-~17393~^~324~^1.^1^^~1~^~A~^^^^^^^^^^~03/01/2014~
-~17393~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2014~
-~17393~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2014~
-~17393~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2014~
-~17393~^~601~^121.^1^^~1~^~A~^^^^^^^^^^~03/01/2014~
-~17394~^~208~^199.^0^^~4~^~NC~^^^^^^^^^^~03/01/2014~
-~17394~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2014~
-~17394~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2014~
-~17394~^~268~^831.^0^^~4~^~NC~^^^^^^^^^^~03/01/2014~
-~17394~^~301~^7.^1^^~1~^~A~^^^^^^^^^^~03/01/2014~
-~17394~^~304~^23.^1^^~1~^~A~^^^^^^^^^^~03/01/2014~
-~17394~^~305~^197.^1^^~1~^~A~^^^^^^^^^^~03/01/2014~
-~17394~^~306~^337.^1^^~1~^~A~^^^^^^^^^^~03/01/2014~
-~17394~^~307~^65.^1^^~1~^~A~^^^^^^^^^^~03/01/2014~
-~17394~^~318~^19.^0^^~1~^~AS~^^^^^^^^^^~03/01/2014~
-~17394~^~319~^6.^1^^~1~^~A~^^^^^^^^^^~03/01/2014~
-~17394~^~320~^6.^0^^~1~^~AS~^^^^^^^^^^~03/01/2014~
-~17394~^~321~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2014~
-~17394~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2014~
-~17394~^~324~^2.^1^^~1~^~A~^^^^^^^^^^~03/01/2014~
-~17394~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2014~
-~17394~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2014~
-~17394~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2014~
-~17394~^~601~^79.^1^^~1~^~A~^^^^^^^^^^~03/01/2014~
-~17395~^~208~^143.^0^^~4~^~NC~^^^^^^^^^^~03/01/2014~
-~17395~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2014~
-~17395~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2014~
-~17395~^~268~^597.^0^^~4~^~NC~^^^^^^^^^^~03/01/2014~
-~17395~^~301~^5.^1^^~1~^~A~^^^^^^^^^^~03/01/2014~
-~17395~^~304~^21.^1^^~1~^~A~^^^^^^^^^^~03/01/2014~
-~17395~^~305~^175.^1^^~1~^~A~^^^^^^^^^^~03/01/2014~
-~17395~^~306~^325.^1^^~1~^~A~^^^^^^^^^^~03/01/2014~
-~17395~^~307~^65.^1^^~1~^~A~^^^^^^^^^^~03/01/2014~
-~17395~^~318~^16.^0^^~1~^~AS~^^^^^^^^^^~03/01/2014~
-~17395~^~319~^5.^1^^~1~^~A~^^^^^^^^^^~03/01/2014~
-~17395~^~320~^5.^0^^~1~^~AS~^^^^^^^^^^~03/01/2014~
-~17395~^~321~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2014~
-~17395~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2014~
-~17395~^~324~^2.^1^^~1~^~A~^^^^^^^^^^~03/01/2014~
-~17395~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2014~
-~17395~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2014~
-~17395~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2014~
-~17395~^~601~^58.^1^^~1~^~A~^^^^^^^^^^~03/01/2014~
-~17396~^~208~^173.^0^^~4~^~NC~^^^^^^^^^^~03/01/2014~
-~17396~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2014~
-~17396~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2014~
-~17396~^~268~^724.^0^^~4~^~NC~^^^^^^^^^^~03/01/2014~
-~17396~^~301~^11.^1^^~1~^~A~^^^^^^^^^^~03/01/2014~
-~17396~^~304~^24.^1^^~1~^~A~^^^^^^^^^^~03/01/2014~
-~17396~^~305~^200.^1^^~1~^~A~^^^^^^^^^^~03/01/2014~
-~17396~^~306~^330.^1^^~1~^~A~^^^^^^^^^^~03/01/2014~
-~17396~^~307~^67.^1^^~1~^~A~^^^^^^^^^^~03/01/2014~
-~17396~^~318~^11.^0^^~1~^~AS~^^^^^^^^^^~03/01/2014~
-~17396~^~319~^3.^1^^~1~^~A~^^^^^^^^^^~03/01/2014~
-~17396~^~320~^3.^0^^~1~^~AS~^^^^^^^^^^~03/01/2014~
-~17396~^~321~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2014~
-~17396~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2014~
-~17396~^~324~^5.^1^^~1~^~A~^^^^^^^^^^~03/01/2014~
-~17396~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2014~
-~17396~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2014~
-~17396~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2014~
-~17396~^~601~^72.^1^^~1~^~A~^^^^^^^^^^~03/01/2014~
-~17397~^~208~^147.^0^^~4~^~NC~^^^^^^^^^^~03/01/2014~
-~17397~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2014~
-~17397~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2014~
-~17397~^~268~^613.^0^^~4~^~NC~^^^^^^^^^^~03/01/2014~
-~17397~^~301~^8.^1^^~1~^~A~^^^^^^^^^^~03/01/2014~
-~17397~^~304~^23.^1^^~1~^~A~^^^^^^^^^^~03/01/2014~
-~17397~^~305~^192.^1^^~1~^~A~^^^^^^^^^^~03/01/2014~
-~17397~^~306~^334.^1^^~1~^~A~^^^^^^^^^^~03/01/2014~
-~17397~^~307~^63.^1^^~1~^~A~^^^^^^^^^^~03/01/2014~
-~17397~^~318~^17.^0^^~1~^~AS~^^^^^^^^^^~03/01/2014~
-~17397~^~319~^5.^1^^~1~^~A~^^^^^^^^^^~03/01/2014~
-~17397~^~320~^5.^0^^~1~^~AS~^^^^^^^^^^~03/01/2014~
-~17397~^~321~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2014~
-~17397~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2014~
-~17397~^~324~^4.^1^^~1~^~A~^^^^^^^^^^~03/01/2014~
-~17397~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2014~
-~17397~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2014~
-~17397~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2014~
-~17397~^~601~^62.^1^^~1~^~A~^^^^^^^^^^~03/01/2014~
-~17398~^~208~^208.^0^^~4~^~NC~^^^^^^^^^^~03/01/2014~
-~17398~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2014~
-~17398~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2014~
-~17398~^~268~^869.^0^^~4~^~NC~^^^^^^^^^^~03/01/2014~
-~17398~^~301~^42.^1^^~1~^~A~^^^^^^^^^^~03/01/2014~
-~17398~^~304~^27.^1^^~1~^~A~^^^^^^^^^^~03/01/2014~
-~17398~^~305~^233.^1^^~1~^~A~^^^^^^^^^^~03/01/2014~
-~17398~^~306~^367.^1^^~1~^~A~^^^^^^^^^^~03/01/2014~
-~17398~^~307~^84.^1^^~1~^~A~^^^^^^^^^^~03/01/2014~
-~17398~^~318~^20.^0^^~1~^~AS~^^^^^^^^^^~03/01/2014~
-~17398~^~319~^6.^1^^~1~^~A~^^^^^^^^^^~03/01/2014~
-~17398~^~320~^6.^0^^~1~^~AS~^^^^^^^^^^~03/01/2014~
-~17398~^~321~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2014~
-~17398~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2014~
-~17398~^~324~^2.^1^^~1~^~A~^^^^^^^^^^~03/01/2014~
-~17398~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2014~
-~17398~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2014~
-~17398~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2014~
-~17398~^~601~^85.^1^^~1~^~A~^^^^^^^^^^~03/01/2014~
-~17399~^~208~^192.^0^^~4~^~NC~^^^^^^^^^^~03/01/2014~
-~17399~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2014~
-~17399~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2014~
-~17399~^~268~^801.^0^^~4~^~NC~^^^^^^^^^^~03/01/2014~
-~17399~^~301~^14.^1^^~1~^~A~^^^^^^^^^^~03/01/2014~
-~17399~^~304~^22.^1^^~1~^~A~^^^^^^^^^^~03/01/2014~
-~17399~^~305~^197.^1^^~1~^~A~^^^^^^^^^^~03/01/2014~
-~17399~^~306~^334.^1^^~1~^~A~^^^^^^^^^^~03/01/2014~
-~17399~^~307~^80.^1^^~1~^~A~^^^^^^^^^^~03/01/2014~
-~17399~^~318~^4.^0^^~1~^~AS~^^^^^^^^^^~03/01/2014~
-~17399~^~319~^1.^1^^~1~^~A~^^^^^^^^^^~03/01/2014~
-~17399~^~320~^1.^0^^~1~^~AS~^^^^^^^^^^~03/01/2014~
-~17399~^~321~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2014~
-~17399~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2014~
-~17399~^~324~^5.^1^^~1~^~A~^^^^^^^^^^~03/01/2014~
-~17399~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2014~
-~17399~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2014~
-~17399~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2014~
-~17399~^~601~^71.^1^^~1~^~A~^^^^^^^^^^~03/01/2014~
-~17400~^~208~^162.^0^^~4~^~NC~^^^^^^^^^^~03/01/2014~
-~17400~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2014~
-~17400~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2014~
-~17400~^~268~^679.^0^^~4~^~NC~^^^^^^^^^^~03/01/2014~
-~17400~^~301~^10.^1^^~1~^~A~^^^^^^^^^^~03/01/2014~
-~17400~^~304~^27.^1^^~1~^~A~^^^^^^^^^^~03/01/2014~
-~17400~^~305~^223.^1^^~1~^~A~^^^^^^^^^^~03/01/2014~
-~17400~^~306~^373.^1^^~1~^~A~^^^^^^^^^^~03/01/2014~
-~17400~^~307~^67.^1^^~1~^~A~^^^^^^^^^^~03/01/2014~
-~17400~^~318~^6.^0^^~1~^~AS~^^^^^^^^^^~03/01/2014~
-~17400~^~319~^2.^1^^~1~^~A~^^^^^^^^^^~03/01/2014~
-~17400~^~320~^2.^0^^~1~^~AS~^^^^^^^^^^~03/01/2014~
-~17400~^~321~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2014~
-~17400~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2014~
-~17400~^~324~^1.^1^^~1~^~A~^^^^^^^^^^~03/01/2014~
-~17400~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2014~
-~17400~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2014~
-~17400~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2014~
-~17400~^~601~^78.^1^^~1~^~A~^^^^^^^^^^~03/01/2014~
-~17401~^~208~^376.^0^^~4~^~PIK~^^^^^^^^^^~03/01/2014~
-~17401~^~262~^0.^0^^~4~^~PIK~^^^^^^^^^^~03/01/2014~
-~17401~^~263~^0.^0^^~4~^~PIK~^^^^^^^^^^~03/01/2014~
-~17401~^~268~^1574.^0^^~4~^~PIK~^^^^^^^^^^~03/01/2014~
-~17401~^~301~^8.^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~
-~17401~^~304~^15.^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~
-~17401~^~305~^122.^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~
-~17401~^~306~^182.^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~
-~17401~^~307~^51.^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~
-~17401~^~318~^80.^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~
-~17401~^~319~^24.^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~
-~17401~^~320~^24.^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~
-~17401~^~321~^0.^0^^~4~^~PIK~^^^^^^^^^^~03/01/2014~
-~17401~^~322~^0.^0^^~4~^~PIK~^^^^^^^^^^~03/01/2014~
-~17401~^~324~^3.^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~
-~17401~^~334~^0.^0^^~4~^~PIK~^^^^^^^^^^~03/01/2014~
-~17401~^~337~^0.^0^^~4~^~PIK~^^^^^^^^^^~03/01/2014~
-~17401~^~338~^0.^0^^~4~^~PIK~^^^^^^^^^^~03/01/2014~
-~17401~^~601~^76.^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~
-~17402~^~208~^337.^0^^~4~^~NC~^^^^^^^^^^~03/01/2014~
-~17402~^~262~^0.^0^^~4~^~PIK~^^^^^^^^^^~03/01/2014~
-~17402~^~263~^0.^0^^~4~^~PIK~^^^^^^^^^^~03/01/2014~
-~17402~^~268~^1410.^0^^~4~^~NC~^^^^^^^^^^~03/01/2014~
-~17402~^~301~^6.^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~
-~17402~^~304~^15.^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~
-~17402~^~305~^129.^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~
-~17402~^~306~^240.^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~
-~17402~^~307~^69.^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~
-~17402~^~318~^68.^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~
-~17402~^~319~^20.^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~
-~17402~^~320~^20.^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~
-~17402~^~321~^0.^0^^~4~^~PIK~^^^^^^^^^^~03/01/2014~
-~17402~^~322~^0.^0^^~4~^~PIK~^^^^^^^^^^~03/01/2014~
-~17402~^~324~^3.^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~
-~17402~^~334~^0.^0^^~4~^~PIK~^^^^^^^^^^~03/01/2014~
-~17402~^~337~^0.^0^^~4~^~PIK~^^^^^^^^^^~03/01/2014~
-~17402~^~338~^0.^0^^~4~^~PIK~^^^^^^^^^^~03/01/2014~
-~17402~^~601~^64.^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~
-~17403~^~208~^247.^0^^~4~^~NC~^^^^^^^^^^~03/01/2014~
-~17403~^~262~^0.^0^^~4~^~PIK~^^^^^^^^^^~03/01/2014~
-~17403~^~263~^0.^0^^~4~^~PIK~^^^^^^^^^^~03/01/2014~
-~17403~^~268~^1031.^0^^~4~^~NC~^^^^^^^^^^~03/01/2014~
-~17403~^~301~^8.^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~
-~17403~^~304~^21.^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~
-~17403~^~305~^170.^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~
-~17403~^~306~^249.^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~
-~17403~^~307~^69.^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~
-~17403~^~318~^26.^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~
-~17403~^~319~^8.^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~
-~17403~^~320~^8.^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~
-~17403~^~321~^0.^0^^~4~^~PIK~^^^^^^^^^^~03/01/2014~
-~17403~^~322~^0.^0^^~4~^~PIK~^^^^^^^^^^~03/01/2014~
-~17403~^~324~^2.^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~
-~17403~^~334~^0.^0^^~4~^~PIK~^^^^^^^^^^~03/01/2014~
-~17403~^~337~^0.^0^^~4~^~PIK~^^^^^^^^^^~03/01/2014~
-~17403~^~338~^0.^0^^~4~^~PIK~^^^^^^^^^^~03/01/2014~
-~17403~^~601~^111.^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~
-~17404~^~208~^186.^0^^~4~^~NC~^^^^^^^^^^~03/01/2014~
-~17404~^~262~^0.^0^^~4~^~PIK~^^^^^^^^^^~03/01/2014~
-~17404~^~263~^0.^0^^~4~^~PIK~^^^^^^^^^^~03/01/2014~
-~17404~^~268~^776.^0^^~4~^~NC~^^^^^^^^^^~03/01/2014~
-~17404~^~301~^5.^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~
-~17404~^~304~^20.^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~
-~17404~^~305~^168.^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~
-~17404~^~306~^299.^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~
-~17404~^~307~^76.^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~
-~17404~^~318~^25.^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~
-~17404~^~319~^7.^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~
-~17404~^~320~^7.^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~
-~17404~^~321~^0.^0^^~4~^~PIK~^^^^^^^^^^~03/01/2014~
-~17404~^~322~^0.^0^^~4~^~PIK~^^^^^^^^^^~03/01/2014~
-~17404~^~324~^2.^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~
-~17404~^~334~^0.^0^^~4~^~PIK~^^^^^^^^^^~03/01/2014~
-~17404~^~337~^0.^0^^~4~^~PIK~^^^^^^^^^^~03/01/2014~
-~17404~^~338~^0.^0^^~4~^~PIK~^^^^^^^^^^~03/01/2014~
-~17404~^~601~^64.^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~
-~17405~^~208~^212.^0^^~4~^~NC~^^^^^^^^^^~03/01/2014~
-~17405~^~262~^0.^0^^~4~^~PIK~^^^^^^^^^^~03/01/2014~
-~17405~^~263~^0.^0^^~4~^~PIK~^^^^^^^^^^~03/01/2014~
-~17405~^~268~^887.^0^^~4~^~NC~^^^^^^^^^^~03/01/2014~
-~17405~^~301~^10.^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~
-~17405~^~304~^25.^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~
-~17405~^~305~^210.^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~
-~17405~^~306~^353.^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~
-~17405~^~307~^65.^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~
-~17405~^~318~^22.^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~
-~17405~^~319~^7.^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~
-~17405~^~320~^7.^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~
-~17405~^~321~^0.^0^^~4~^~PIK~^^^^^^^^^^~03/01/2014~
-~17405~^~322~^0.^0^^~4~^~PIK~^^^^^^^^^^~03/01/2014~
-~17405~^~324~^2.^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~
-~17405~^~334~^0.^0^^~4~^~PIK~^^^^^^^^^^~03/01/2014~
-~17405~^~337~^0.^0^^~4~^~PIK~^^^^^^^^^^~03/01/2014~
-~17405~^~338~^0.^0^^~4~^~PIK~^^^^^^^^^^~03/01/2014~
-~17405~^~601~^78.^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~
-~17406~^~208~^332.^0^^~4~^~NC~^^^^^^^^^^~03/01/2014~
-~17406~^~262~^0.^0^^~4~^~PIK~^^^^^^^^^^~03/01/2014~
-~17406~^~263~^0.^0^^~4~^~PIK~^^^^^^^^^^~03/01/2014~
-~17406~^~268~^1387.^0^^~4~^~NC~^^^^^^^^^^~03/01/2014~
-~17406~^~301~^31.^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~
-~17406~^~304~^22.^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~
-~17406~^~305~^194.^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~
-~17406~^~306~^313.^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~
-~17406~^~307~^73.^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~
-~17406~^~318~^63.^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~
-~17406~^~319~^19.^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~
-~17406~^~320~^19.^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~
-~17406~^~321~^0.^0^^~4~^~PIK~^^^^^^^^^^~03/01/2014~
-~17406~^~322~^0.^0^^~4~^~PIK~^^^^^^^^^^~03/01/2014~
-~17406~^~324~^3.^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~
-~17406~^~334~^0.^0^^~4~^~PIK~^^^^^^^^^^~03/01/2014~
-~17406~^~337~^0.^0^^~4~^~PIK~^^^^^^^^^^~03/01/2014~
-~17406~^~338~^0.^0^^~4~^~PIK~^^^^^^^^^^~03/01/2014~
-~17406~^~601~^81.^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~
-~17407~^~208~^274.^0^^~4~^~NC~^^^^^^^^^^~03/01/2014~
-~17407~^~262~^0.^0^^~4~^~PIK~^^^^^^^^^^~03/01/2014~
-~17407~^~263~^0.^0^^~4~^~PIK~^^^^^^^^^^~03/01/2014~
-~17407~^~268~^1145.^0^^~4~^~NC~^^^^^^^^^^~03/01/2014~
-~17407~^~301~^7.^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~
-~17407~^~304~^21.^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~
-~17407~^~305~^179.^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~
-~17407~^~306~^306.^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~
-~17407~^~307~^69.^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~
-~17407~^~318~^52.^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~
-~17407~^~319~^16.^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~
-~17407~^~320~^16.^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~
-~17407~^~321~^0.^0^^~4~^~PIK~^^^^^^^^^^~03/01/2014~
-~17407~^~322~^0.^0^^~4~^~PIK~^^^^^^^^^^~03/01/2014~
-~17407~^~324~^2.^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~
-~17407~^~334~^0.^0^^~4~^~PIK~^^^^^^^^^^~03/01/2014~
-~17407~^~337~^0.^0^^~4~^~PIK~^^^^^^^^^^~03/01/2014~
-~17407~^~338~^0.^0^^~4~^~PIK~^^^^^^^^^^~03/01/2014~
-~17407~^~601~^76.^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~
-~17408~^~208~^273.^0^^~4~^~NC~^^^^^^^^^^~03/01/2014~
-~17408~^~262~^0.^0^^~4~^~PIK~^^^^^^^^^^~03/01/2014~
-~17408~^~263~^0.^0^^~4~^~PIK~^^^^^^^^^^~03/01/2014~
-~17408~^~268~^1143.^0^^~4~^~NC~^^^^^^^^^^~03/01/2014~
-~17408~^~301~^6.^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~
-~17408~^~304~^19.^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~
-~17408~^~305~^156.^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~
-~17408~^~306~^290.^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~
-~17408~^~307~^63.^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~
-~17408~^~318~^49.^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~
-~17408~^~319~^15.^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~
-~17408~^~320~^15.^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~
-~17408~^~321~^0.^0^^~4~^~PIK~^^^^^^^^^^~03/01/2014~
-~17408~^~322~^0.^0^^~4~^~PIK~^^^^^^^^^^~03/01/2014~
-~17408~^~324~^2.^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~
-~17408~^~334~^0.^0^^~4~^~PIK~^^^^^^^^^^~03/01/2014~
-~17408~^~337~^0.^0^^~4~^~PIK~^^^^^^^^^^~03/01/2014~
-~17408~^~338~^0.^0^^~4~^~PIK~^^^^^^^^^^~03/01/2014~
-~17408~^~601~^69.^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~
-~17409~^~208~^157.^0^^~4~^~NC~^^^^^^^^^^~03/01/2014~
-~17409~^~262~^0.^0^^~4~^~PIK~^^^^^^^^^^~03/01/2014~
-~17409~^~263~^0.^0^^~4~^~PIK~^^^^^^^^^^~03/01/2014~
-~17409~^~268~^657.^0^^~4~^~NC~^^^^^^^^^^~03/01/2014~
-~17409~^~301~^6.^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~
-~17409~^~304~^28.^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~
-~17409~^~305~^234.^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~
-~17409~^~306~^355.^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~
-~17409~^~307~^57.^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~
-~17409~^~318~^3.^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~
-~17409~^~319~^1.^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~
-~17409~^~320~^1.^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~
-~17409~^~321~^0.^0^^~4~^~PIK~^^^^^^^^^^~03/01/2014~
-~17409~^~322~^0.^0^^~4~^~PIK~^^^^^^^^^^~03/01/2014~
-~17409~^~324~^1.^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~
-~17409~^~334~^0.^0^^~4~^~PIK~^^^^^^^^^^~03/01/2014~
-~17409~^~337~^0.^0^^~4~^~PIK~^^^^^^^^^^~03/01/2014~
-~17409~^~338~^0.^0^^~4~^~PIK~^^^^^^^^^^~03/01/2014~
-~17409~^~601~^86.^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~
-~17410~^~208~^122.^0^^~4~^~NC~^^^^^^^^^^~03/01/2014~
-~17410~^~262~^0.^0^^~4~^~PIK~^^^^^^^^^^~03/01/2014~
-~17410~^~263~^0.^0^^~4~^~PIK~^^^^^^^^^^~03/01/2014~
-~17410~^~268~^509.^0^^~4~^~NC~^^^^^^^^^^~03/01/2014~
-~17410~^~301~^4.^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~
-~17410~^~304~^26.^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~
-~17410~^~305~^217.^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~
-~17410~^~306~^368.^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~
-~17410~^~307~^60.^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~
-~17410~^~318~^6.^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~
-~17410~^~319~^2.^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~
-~17410~^~320~^2.^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~
-~17410~^~321~^0.^0^^~4~^~PIK~^^^^^^^^^^~03/01/2014~
-~17410~^~322~^0.^0^^~4~^~PIK~^^^^^^^^^^~03/01/2014~
-~17410~^~324~^1.^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~
-~17410~^~334~^0.^0^^~4~^~PIK~^^^^^^^^^^~03/01/2014~
-~17410~^~337~^0.^0^^~4~^~PIK~^^^^^^^^^^~03/01/2014~
-~17410~^~338~^0.^0^^~4~^~PIK~^^^^^^^^^^~03/01/2014~
-~17410~^~601~^66.^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~
-~17411~^~208~^307.^0^^~4~^~NC~^^^^^^^^^^~03/01/2014~
-~17411~^~262~^0.^0^^~4~^~PIK~^^^^^^^^^^~03/01/2014~
-~17411~^~263~^0.^0^^~4~^~PIK~^^^^^^^^^^~03/01/2014~
-~17411~^~268~^1285.^0^^~4~^~NC~^^^^^^^^^^~03/01/2014~
-~17411~^~301~^52.^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~
-~17411~^~304~^21.^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~
-~17411~^~305~^183.^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~
-~17411~^~306~^276.^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~
-~17411~^~307~^91.^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~
-~17411~^~318~^42.^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~
-~17411~^~319~^13.^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~
-~17411~^~320~^13.^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~
-~17411~^~321~^0.^0^^~4~^~PIK~^^^^^^^^^^~03/01/2014~
-~17411~^~322~^0.^0^^~4~^~PIK~^^^^^^^^^^~03/01/2014~
-~17411~^~324~^2.^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~
-~17411~^~334~^0.^0^^~4~^~PIK~^^^^^^^^^^~03/01/2014~
-~17411~^~337~^0.^0^^~4~^~PIK~^^^^^^^^^^~03/01/2014~
-~17411~^~338~^0.^0^^~4~^~PIK~^^^^^^^^^^~03/01/2014~
-~17411~^~601~^116.^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~
-~17412~^~208~^231.^0^^~4~^~NC~^^^^^^^^^^~03/01/2014~
-~17412~^~262~^0.^0^^~4~^~PIK~^^^^^^^^^^~03/01/2014~
-~17412~^~263~^0.^0^^~4~^~PIK~^^^^^^^^^^~03/01/2014~
-~17412~^~268~^968.^0^^~4~^~NC~^^^^^^^^^^~03/01/2014~
-~17412~^~301~^20.^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~
-~17412~^~304~^18.^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~
-~17412~^~305~^156.^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~
-~17412~^~306~^290.^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~
-~17412~^~307~^73.^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~
-~17412~^~318~^38.^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~
-~17412~^~319~^11.^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~
-~17412~^~320~^11.^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~
-~17412~^~321~^0.^0^^~4~^~PIK~^^^^^^^^^^~03/01/2014~
-~17412~^~322~^0.^0^^~4~^~PIK~^^^^^^^^^^~03/01/2014~
-~17412~^~324~^2.^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~
-~17412~^~334~^0.^0^^~4~^~PIK~^^^^^^^^^^~03/01/2014~
-~17412~^~337~^0.^0^^~4~^~PIK~^^^^^^^^^^~03/01/2014~
-~17412~^~338~^0.^0^^~4~^~PIK~^^^^^^^^^^~03/01/2014~
-~17412~^~601~^72.^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~
-~17413~^~208~^287.^0^^~4~^~NC~^^^^^^^^^^~03/01/2014~
-~17413~^~262~^0.^0^^~4~^~PIK~^^^^^^^^^^~03/01/2014~
-~17413~^~263~^0.^0^^~4~^~PIK~^^^^^^^^^^~03/01/2014~
-~17413~^~268~^1201.^0^^~4~^~NC~^^^^^^^^^^~03/01/2014~
-~17413~^~301~^7.^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~
-~17413~^~304~^21.^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~
-~17413~^~305~^178.^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~
-~17413~^~306~^305.^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~
-~17413~^~307~^61.^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~
-~17413~^~318~^46.^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~
-~17413~^~319~^14.^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~
-~17413~^~320~^14.^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~
-~17413~^~321~^0.^0^^~4~^~PIK~^^^^^^^^^^~03/01/2014~
-~17413~^~322~^0.^0^^~4~^~PIK~^^^^^^^^^^~03/01/2014~
-~17413~^~324~^3.^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~
-~17413~^~334~^0.^0^^~4~^~PIK~^^^^^^^^^^~03/01/2014~
-~17413~^~337~^0.^0^^~4~^~PIK~^^^^^^^^^^~03/01/2014~
-~17413~^~338~^0.^0^^~4~^~PIK~^^^^^^^^^^~03/01/2014~
-~17413~^~601~^78.^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~
-~17414~^~208~^252.^0^^~4~^~NC~^^^^^^^^^^~03/01/2014~
-~17414~^~262~^0.^0^^~4~^~PIK~^^^^^^^^^^~03/01/2014~
-~17414~^~263~^0.^0^^~4~^~PIK~^^^^^^^^^^~03/01/2014~
-~17414~^~268~^1053.^0^^~4~^~NC~^^^^^^^^^^~03/01/2014~
-~17414~^~301~^5.^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~
-~17414~^~304~^18.^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~
-~17414~^~305~^150.^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~
-~17414~^~306~^280.^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~
-~17414~^~307~^58.^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~
-~17414~^~318~^44.^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~
-~17414~^~319~^13.^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~
-~17414~^~320~^13.^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~
-~17414~^~321~^0.^0^^~4~^~PIK~^^^^^^^^^^~03/01/2014~
-~17414~^~322~^0.^0^^~4~^~PIK~^^^^^^^^^^~03/01/2014~
-~17414~^~324~^3.^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~
-~17414~^~334~^0.^0^^~4~^~PIK~^^^^^^^^^^~03/01/2014~
-~17414~^~337~^0.^0^^~4~^~PIK~^^^^^^^^^^~03/01/2014~
-~17414~^~338~^0.^0^^~4~^~PIK~^^^^^^^^^^~03/01/2014~
-~17414~^~601~^61.^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~
-~17415~^~208~^322.^0^^~4~^~NC~^^^^^^^^^^~03/01/2014~
-~17415~^~262~^0.^0^^~4~^~PIK~^^^^^^^^^^~03/01/2014~
-~17415~^~263~^0.^0^^~4~^~PIK~^^^^^^^^^^~03/01/2014~
-~17415~^~268~^1348.^0^^~4~^~NC~^^^^^^^^^^~03/01/2014~
-~17415~^~301~^34.^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~
-~17415~^~304~^20.^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~
-~17415~^~305~^162.^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~
-~17415~^~306~^207.^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~
-~17415~^~307~^57.^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~
-~17415~^~318~^49.^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~
-~17415~^~319~^15.^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~
-~17415~^~320~^15.^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~
-~17415~^~321~^0.^0^^~4~^~PIK~^^^^^^^^^^~03/01/2014~
-~17415~^~322~^0.^0^^~4~^~PIK~^^^^^^^^^^~03/01/2014~
-~17415~^~324~^7.^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~
-~17415~^~334~^0.^0^^~4~^~PIK~^^^^^^^^^^~03/01/2014~
-~17415~^~337~^0.^0^^~4~^~PIK~^^^^^^^^^^~03/01/2014~
-~17415~^~338~^0.^0^^~4~^~PIK~^^^^^^^^^^~03/01/2014~
-~17415~^~601~^95.^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~
-~17416~^~208~^275.^0^^~4~^~NC~^^^^^^^^^^~03/01/2014~
-~17416~^~262~^0.^0^^~4~^~PIK~^^^^^^^^^^~03/01/2014~
-~17416~^~263~^0.^0^^~4~^~PIK~^^^^^^^^^^~03/01/2014~
-~17416~^~268~^1149.^0^^~4~^~NC~^^^^^^^^^^~03/01/2014~
-~17416~^~301~^22.^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~
-~17416~^~304~^18.^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~
-~17416~^~305~^160.^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~
-~17416~^~306~^274.^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~
-~17416~^~307~^71.^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~
-~17416~^~318~^50.^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~
-~17416~^~319~^15.^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~
-~17416~^~320~^15.^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~
-~17416~^~321~^0.^0^^~4~^~PIK~^^^^^^^^^^~03/01/2014~
-~17416~^~322~^0.^0^^~4~^~PIK~^^^^^^^^^^~03/01/2014~
-~17416~^~324~^6.^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~
-~17416~^~334~^0.^0^^~4~^~PIK~^^^^^^^^^^~03/01/2014~
-~17416~^~337~^0.^0^^~4~^~PIK~^^^^^^^^^^~03/01/2014~
-~17416~^~338~^0.^0^^~4~^~PIK~^^^^^^^^^^~03/01/2014~
-~17416~^~601~^63.^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~
-~17417~^~208~^294.^0^^~4~^~NC~^^^^^^^^^^~03/01/2014~
-~17417~^~262~^0.^0^^~4~^~PIK~^^^^^^^^^^~03/01/2014~
-~17417~^~263~^0.^0^^~4~^~PIK~^^^^^^^^^^~03/01/2014~
-~17417~^~268~^1231.^0^^~4~^~NC~^^^^^^^^^^~03/01/2014~
-~17417~^~301~^12.^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~
-~17417~^~304~^20.^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~
-~17417~^~305~^176.^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~
-~17417~^~306~^299.^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~
-~17417~^~307~^72.^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~
-~17417~^~318~^35.^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~
-~17417~^~319~^11.^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~
-~17417~^~320~^11.^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~
-~17417~^~321~^0.^0^^~4~^~PIK~^^^^^^^^^^~03/01/2014~
-~17417~^~322~^0.^0^^~4~^~PIK~^^^^^^^^^^~03/01/2014~
-~17417~^~324~^6.^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~
-~17417~^~334~^0.^0^^~4~^~PIK~^^^^^^^^^^~03/01/2014~
-~17417~^~337~^0.^0^^~4~^~PIK~^^^^^^^^^^~03/01/2014~
-~17417~^~338~^0.^0^^~4~^~PIK~^^^^^^^^^^~03/01/2014~
-~17417~^~601~^72.^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~
-~17418~^~208~^157.^0^^~4~^~NC~^^^^^^^^^^~03/01/2014~
-~17418~^~262~^0.^0^^~4~^~PIK~^^^^^^^^^^~03/01/2014~
-~17418~^~263~^0.^0^^~4~^~PIK~^^^^^^^^^^~03/01/2014~
-~17418~^~268~^655.^0^^~4~^~NC~^^^^^^^^^^~03/01/2014~
-~17418~^~301~^5.^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~
-~17418~^~304~^31.^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~
-~17418~^~305~^268.^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~
-~17418~^~306~^432.^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~
-~17418~^~307~^59.^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~
-~17418~^~318~^5.^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~
-~17418~^~319~^2.^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~
-~17418~^~320~^2.^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~
-~17418~^~321~^0.^0^^~4~^~PIK~^^^^^^^^^^~03/01/2014~
-~17418~^~322~^0.^0^^~4~^~PIK~^^^^^^^^^^~03/01/2014~
-~17418~^~324~^1.^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~
-~17418~^~334~^0.^0^^~4~^~PIK~^^^^^^^^^^~03/01/2014~
-~17418~^~337~^0.^0^^~4~^~PIK~^^^^^^^^^^~03/01/2014~
-~17418~^~338~^0.^0^^~4~^~PIK~^^^^^^^^^^~03/01/2014~
-~17418~^~601~^94.^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~
-~17419~^~208~^195.^0^^~4~^~NC~^^^^^^^^^^~03/01/2014~
-~17419~^~262~^0.^0^^~4~^~PIK~^^^^^^^^^^~03/01/2014~
-~17419~^~263~^0.^0^^~4~^~PIK~^^^^^^^^^^~03/01/2014~
-~17419~^~268~^816.^0^^~4~^~NC~^^^^^^^^^^~03/01/2014~
-~17419~^~301~^11.^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~
-~17419~^~304~^23.^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~
-~17419~^~305~^195.^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~
-~17419~^~306~^323.^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~
-~17419~^~307~^67.^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~
-~17419~^~318~^17.^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~
-~17419~^~319~^5.^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~
-~17419~^~320~^5.^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~
-~17419~^~321~^0.^0^^~4~^~PIK~^^^^^^^^^^~03/01/2014~
-~17419~^~322~^0.^0^^~4~^~PIK~^^^^^^^^^^~03/01/2014~
-~17419~^~324~^6.^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~
-~17419~^~334~^0.^0^^~4~^~PIK~^^^^^^^^^^~03/01/2014~
-~17419~^~337~^0.^0^^~4~^~PIK~^^^^^^^^^^~03/01/2014~
-~17419~^~338~^0.^0^^~4~^~PIK~^^^^^^^^^^~03/01/2014~
-~17419~^~601~^72.^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~
-~17420~^~208~^169.^0^^~4~^~NC~^^^^^^^^^^~03/01/2014~
-~17420~^~262~^0.^0^^~4~^~PIK~^^^^^^^^^^~03/01/2014~
-~17420~^~263~^0.^0^^~4~^~PIK~^^^^^^^^^^~03/01/2014~
-~17420~^~268~^709.^0^^~4~^~NC~^^^^^^^^^^~03/01/2014~
-~17420~^~301~^8.^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~
-~17420~^~304~^22.^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~
-~17420~^~305~^186.^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~
-~17420~^~306~^324.^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~
-~17420~^~307~^62.^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~
-~17420~^~318~^23.^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~
-~17420~^~319~^7.^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~
-~17420~^~320~^7.^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~
-~17420~^~321~^0.^0^^~4~^~PIK~^^^^^^^^^^~03/01/2014~
-~17420~^~322~^0.^0^^~4~^~PIK~^^^^^^^^^^~03/01/2014~
-~17420~^~324~^4.^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~
-~17420~^~334~^0.^0^^~4~^~PIK~^^^^^^^^^^~03/01/2014~
-~17420~^~337~^0.^0^^~4~^~PIK~^^^^^^^^^^~03/01/2014~
-~17420~^~338~^0.^0^^~4~^~PIK~^^^^^^^^^^~03/01/2014~
-~17420~^~601~^62.^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~
-~17421~^~208~^208.^0^^~4~^~NC~^^^^^^^^^^~03/01/2014~
-~17421~^~262~^0.^0^^~4~^~PIK~^^^^^^^^^^~03/01/2014~
-~17421~^~263~^0.^0^^~4~^~PIK~^^^^^^^^^^~03/01/2014~
-~17421~^~268~^870.^0^^~4~^~NC~^^^^^^^^^^~03/01/2014~
-~17421~^~301~^4.^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~
-~17421~^~304~^24.^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~
-~17421~^~305~^201.^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~
-~17421~^~306~^349.^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~
-~17421~^~307~^61.^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~
-~17421~^~318~^24.^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~
-~17421~^~319~^7.^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~
-~17421~^~320~^7.^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~
-~17421~^~321~^0.^0^^~4~^~PIK~^^^^^^^^^^~03/01/2014~
-~17421~^~322~^0.^0^^~4~^~PIK~^^^^^^^^^^~03/01/2014~
-~17421~^~324~^1.^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~
-~17421~^~334~^0.^0^^~4~^~PIK~^^^^^^^^^^~03/01/2014~
-~17421~^~337~^0.^0^^~4~^~PIK~^^^^^^^^^^~03/01/2014~
-~17421~^~338~^0.^0^^~4~^~PIK~^^^^^^^^^^~03/01/2014~
-~17421~^~601~^79.^0^^~1~^~PAK~^^^^^^^^^^~03/01/2014~
-~17422~^~208~^121.^0^^~4~^~NC~^^^^^^^^^^~03/01/2014~
-~17422~^~268~^504.^0^^~4~^~NC~^^^^^^^^^^~03/01/2014~
-~17422~^~301~^4.^1^^~1~^~A~^^^^^^^^^^~03/01/2014~
-~17422~^~304~^24.^1^^~1~^~A~^^^^^^^^^^~03/01/2014~
-~17422~^~305~^197.^1^^~1~^~A~^^^^^^^^^^~03/01/2014~
-~17422~^~306~^344.^1^^~1~^~A~^^^^^^^^^^~03/01/2014~
-~17422~^~307~^60.^1^^~1~^~A~^^^^^^^^^^~03/01/2014~
-~17422~^~318~^11.^0^^~1~^~AS~^^^^^^^^^^~03/01/2014~
-~17422~^~319~^3.^1^^~1~^~A~^^^^^^^^^^~03/01/2014~
-~17422~^~320~^3.^0^^~1~^~AS~^^^^^^^^^^~03/01/2014~
-~17422~^~324~^0.^1^^~1~^~A~^^^^^^^^^^~03/01/2014~
-~17422~^~601~^64.^1^^~1~^~A~^^^^^^^^^^~03/01/2014~
-~17423~^~208~^120.^0^^~4~^~NC~^^^^^^^^^^~04/01/2014~
-~17423~^~262~^0.^0^^~4~^~PIK~^^^^^^^^^^~04/01/2014~
-~17423~^~263~^0.^0^^~4~^~PIK~^^^^^^^^^^~04/01/2014~
-~17423~^~268~^501.^0^^~4~^~NC~^^^^^^^^^^~04/01/2014~
-~17423~^~301~^4.^0^^~1~^~PAK~^^^^^^^^^^~04/01/2014~
-~17423~^~304~^26.^0^^~1~^~PAK~^^^^^^^^^^~04/01/2014~
-~17423~^~305~^221.^0^^~1~^~PAK~^^^^^^^^^^~04/01/2014~
-~17423~^~306~^379.^0^^~1~^~PAK~^^^^^^^^^^~04/01/2014~
-~17423~^~307~^49.^0^^~1~^~PAK~^^^^^^^^^^~04/01/2014~
-~17423~^~318~^6.^0^^~1~^~PAK~^^^^^^^^^^~04/01/2014~
-~17423~^~319~^2.^0^^~1~^~PAK~^^^^^^^^^^~04/01/2014~
-~17423~^~320~^2.^0^^~1~^~PAK~^^^^^^^^^^~04/01/2014~
-~17423~^~321~^0.^0^^~4~^~PIK~^^^^^^^^^^~04/01/2014~
-~17423~^~322~^0.^0^^~4~^~PIK~^^^^^^^^^^~04/01/2014~
-~17423~^~324~^1.^0^^~1~^~PAK~^^^^^^^^^^~04/01/2014~
-~17423~^~334~^0.^0^^~4~^~PIK~^^^^^^^^^^~04/01/2014~
-~17423~^~337~^0.^0^^~4~^~PIK~^^^^^^^^^^~04/01/2014~
-~17423~^~338~^0.^0^^~4~^~PIK~^^^^^^^^^^~04/01/2014~
-~17423~^~601~^69.^0^^~1~^~PAK~^^^^^^^^^^~04/01/2014~
-~17424~^~208~^215.^0^^~4~^~NC~^^^^^^^^^^~04/01/2014~
-~17424~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2014~
-~17424~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2014~
-~17424~^~268~^901.^0^^~4~^~NC~^^^^^^^^^^~04/01/2014~
-~17424~^~301~^18.^6^^~1~^~A~^^^1^9.^26.^^^^~2~^~04/01/2014~
-~17424~^~304~^34.^6^^~1~^~A~^^^1^31.^37.^^^^~2~^~04/01/2014~
-~17424~^~305~^231.^6^^~1~^~A~^^^1^207.^247.^^^^~2~^~04/01/2014~
-~17424~^~306~^245.^6^^~1~^~A~^^^1^216.^266.^^^^~2~^~04/01/2014~
-~17424~^~307~^146.^6^^~1~^~A~^^^1^98.^180.^^^^~2~^~04/01/2014~
-~17424~^~318~^0.^0^^~1~^~AS~^^^^^^^^^^~04/01/2014~
-~17424~^~319~^0.^0^^~4~^~BFSN~^~17091~^^^^^^^^^~04/01/2014~
-~17424~^~320~^0.^0^^~1~^~AS~^^^^^^^^^^~04/01/2014~
-~17424~^~321~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2014~
-~17424~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2014~
-~17424~^~324~^55.^1^^~1~^~A~^^^^^^^^^^~04/01/2014~
-~17424~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2014~
-~17424~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2014~
-~17424~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2014~
-~17424~^~417~^6.^0^^~4~^~BFPN~^^^^^^^^^^~04/01/2014~
-~17424~^~431~^0.^0^^~4~^~BFPN~^^^^^^^^^^~04/01/2014~
-~17424~^~432~^6.^0^^~4~^~BFPN~^^^^^^^^^^~04/01/2014~
-~17424~^~435~^6.^0^^~4~^~NC~^^^^^^^^^^~04/01/2014~
-~17424~^~601~^77.^5^^~1~^~A~^^^1^75.^83.^^^^~2~^~04/01/2014~
-~17425~^~208~^151.^0^^~4~^~NC~^^^^^^^^^^~04/01/2014~
-~17425~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2014~
-~17425~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2014~
-~17425~^~268~^633.^0^^~4~^~NC~^^^^^^^^^^~04/01/2014~
-~17425~^~301~^6.^6^^~1~^~A~^^^1^5.^8.^^^^~2~^~04/01/2014~
-~17425~^~304~^38.^6^^~1~^~A~^^^1^35.^41.^^^^~2~^~04/01/2014~
-~17425~^~305~^277.^6^^~1~^~A~^^^1^230.^324.^^^^~2~^~04/01/2014~
-~17425~^~306~^323.^6^^~1~^~A~^^^1^304.^349.^^^^~2~^~04/01/2014~
-~17425~^~307~^88.^6^^~1~^~A~^^^1^79.^100.^^^^~2~^~04/01/2014~
-~17425~^~318~^0.^0^^~1~^~AS~^^^^^^^^^^~04/01/2014~
-~17425~^~319~^0.^0^^~4~^~BFSN~^~17091~^^^^^^^^^~04/01/2014~
-~17425~^~320~^0.^0^^~1~^~AS~^^^^^^^^^^~04/01/2014~
-~17425~^~321~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2014~
-~17425~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2014~
-~17425~^~324~^23.^1^^~1~^~A~^^^^^^^^^^~04/01/2014~
-~17425~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2014~
-~17425~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2014~
-~17425~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2014~
-~17425~^~417~^8.^0^^~4~^~BFPN~^^^^^^^^^^~04/01/2014~
-~17425~^~431~^0.^0^^~4~^~BFPN~^^^^^^^^^^~04/01/2014~
-~17425~^~432~^8.^0^^~4~^~BFPN~^^^^^^^^^^~04/01/2014~
-~17425~^~435~^8.^0^^~4~^~NC~^^^^^^^^^^~04/01/2014~
-~17425~^~601~^72.^6^^~1~^~A~^^^1^69.^76.^^^^~2~^~04/01/2014~
-~17426~^~208~^107.^0^^~4~^~NC~^^^^^^^^^^~04/01/2014~
-~17426~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2014~
-~17426~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2014~
-~17426~^~268~^447.^0^^~4~^~NC~^^^^^^^^^^~04/01/2014~
-~17426~^~301~^4.^6^^~1~^~A~^^^1^3.^5.^^^^~2~^~04/01/2014~
-~17426~^~304~^30.^6^^~1~^~A~^^^1^23.^35.^^^^~2~^~04/01/2014~
-~17426~^~305~^212.^6^^~1~^~A~^^^1^152.^242.^^^^~2~^~04/01/2014~
-~17426~^~306~^273.^6^^~1~^~A~^^^1^198.^298.^^^^~2~^~04/01/2014~
-~17426~^~307~^86.^6^^~1~^~A~^^^1^72.^99.^^^^~2~^~04/01/2014~
-~17426~^~318~^0.^0^^~1~^~AS~^^^^^^^^^^~04/01/2014~
-~17426~^~319~^0.^0^^~4~^~BFSN~^~17091~^^^^^^^^^~04/01/2014~
-~17426~^~320~^0.^0^^~4~^~NC~^^^^^^^^^^~03/01/2016~
-~17426~^~321~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2014~
-~17426~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2014~
-~17426~^~324~^23.^1^^~1~^~A~^^^^^^^^^^~04/01/2014~
-~17426~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2014~
-~17426~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2014~
-~17426~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2014~
-~17426~^~417~^4.^0^^~4~^~BFPN~^^^^^^^^^^~04/01/2014~
-~17426~^~431~^0.^0^^~4~^~BFPN~^^^^^^^^^^~04/01/2014~
-~17426~^~432~^4.^0^^~4~^~BFPN~^^^^^^^^^^~04/01/2014~
-~17426~^~435~^4.^0^^~4~^~NC~^^^^^^^^^^~04/01/2014~
-~17426~^~601~^56.^6^^~1~^~A~^^^1^44.^63.^^^^~2~^~04/01/2014~
-~17427~^~208~^159.^0^^~4~^~NC~^^^^^^^^^^~04/01/2014~
-~17427~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2014~
-~17427~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2014~
-~17427~^~268~^666.^0^^~4~^~NC~^^^^^^^^^^~04/01/2014~
-~17427~^~301~^13.^6^^~1~^~A~^^^1^12.^16.^^^^~2~^~04/01/2014~
-~17427~^~304~^33.^6^^~1~^~A~^^^1^30.^35.^^^^~2~^~04/01/2014~
-~17427~^~305~^214.^6^^~1~^~A~^^^1^185.^231.^^^^~2~^~04/01/2014~
-~17427~^~306~^239.^6^^~1~^~A~^^^1^209.^259.^^^^~2~^~04/01/2014~
-~17427~^~307~^85.^6^^~1~^~A~^^^1^73.^92.^^^^~2~^~04/01/2014~
-~17427~^~318~^0.^0^^~1~^~AS~^^^^^^^^^^~04/01/2014~
-~17427~^~319~^0.^0^^~4~^~BFSN~^~17091~^^^^^^^^^~04/01/2014~
-~17427~^~320~^0.^0^^~1~^~AS~^^^^^^^^^^~04/01/2014~
-~17427~^~321~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2014~
-~17427~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2014~
-~17427~^~324~^32.^1^^~1~^~A~^^^^^^^^^^~04/01/2014~
-~17427~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2014~
-~17427~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2014~
-~17427~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2014~
-~17427~^~417~^7.^0^^~4~^~BFPN~^^^^^^^^^^~04/01/2014~
-~17427~^~431~^0.^0^^~4~^~BFPN~^^^^^^^^^^~04/01/2014~
-~17427~^~432~^7.^0^^~4~^~BFPN~^^^^^^^^^^~04/01/2014~
-~17427~^~435~^7.^0^^~4~^~NC~^^^^^^^^^^~04/01/2014~
-~17427~^~601~^78.^6^^~1~^~A~^^^1^73.^81.^^^^~2~^~04/01/2014~
-~17428~^~208~^94.^0^^~4~^~NC~^^^^^^^^^^~04/01/2014~
-~17428~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2014~
-~17428~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2014~
-~17428~^~268~^392.^0^^~4~^~NC~^^^^^^^^^^~04/01/2014~
-~17428~^~301~^11.^6^^~1~^~A~^^^1^8.^15.^^^^~2~^~04/01/2014~
-~17428~^~304~^33.^6^^~1~^~A~^^^1^29.^35.^^^^~2~^~04/01/2014~
-~17428~^~305~^212.^6^^~1~^~A~^^^1^171.^281.^^^^~2~^~04/01/2014~
-~17428~^~306~^163.^6^^~1~^~A~^^^1^135.^196.^^^^~2~^~04/01/2014~
-~17428~^~307~^109.^6^^~1~^~A~^^^1^98.^115.^^^^~2~^~04/01/2014~
-~17428~^~318~^0.^0^^~1~^~AS~^^^^^^^^^^~04/01/2014~
-~17428~^~319~^0.^0^^~4~^~BFSN~^~17091~^^^^^^^^^~04/01/2014~
-~17428~^~320~^0.^0^^~4~^~NC~^^^^^^^^^^~03/01/2016~
-~17428~^~321~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2014~
-~17428~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2014~
-~17428~^~324~^27.^0^^~4~^~BFFN~^~17107~^^^^^^^^^~04/01/2014~
-~17428~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2014~
-~17428~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2014~
-~17428~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2014~
-~17428~^~417~^3.^0^^~4~^~BFPN~^^^^^^^^^^~04/01/2014~
-~17428~^~431~^0.^0^^~4~^~BFPN~^^^^^^^^^^~04/01/2014~
-~17428~^~432~^3.^0^^~4~^~BFPN~^^^^^^^^^^~04/01/2014~
-~17428~^~435~^3.^0^^~4~^~NC~^^^^^^^^^^~04/01/2014~
-~17428~^~601~^62.^6^^~1~^~A~^^^1^58.^65.^^^^~2~^~04/01/2014~
-~17429~^~208~^157.^0^^~4~^~NC~^^^^^^^^^^~05/01/2014~
-~17429~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2014~
-~17429~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2014~
-~17429~^~268~^657.^0^^~4~^~NC~^^^^^^^^^^~05/01/2014~
-~17429~^~301~^21.^6^^~1~^~A~^^^1^16.^27.^^^^~2~^~04/01/2014~
-~17429~^~304~^34.^6^^~1~^~A~^^^1^28.^38.^^^^~2~^~04/01/2014~
-~17429~^~305~^218.^6^^~1~^~A~^^^1^174.^248.^^^^~2~^~04/01/2014~
-~17429~^~306~^205.^6^^~1~^~A~^^^1^181.^240.^^^^~2~^~04/01/2014~
-~17429~^~307~^90.^6^^~1~^~A~^^^1^72.^132.^^^^~2~^~04/01/2014~
-~17429~^~318~^0.^0^^~1~^~AS~^^^^^^^^^^~04/01/2014~
-~17429~^~319~^0.^0^^~4~^~BFSN~^~17091~^^^^^^^^^~04/01/2014~
-~17429~^~320~^0.^0^^~1~^~AS~^^^^^^^^^^~04/01/2014~
-~17429~^~321~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2014~
-~17429~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2014~
-~17429~^~324~^33.^0^^~4~^~BFFN~^~17427~^^^^^^^^^~04/01/2014~
-~17429~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2014~
-~17429~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2014~
-~17429~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2014~
-~17429~^~417~^5.^0^^~4~^~BFPN~^^^^^^^^^^~04/01/2014~
-~17429~^~431~^0.^0^^~4~^~BFPN~^^^^^^^^^^~04/01/2014~
-~17429~^~432~^5.^0^^~4~^~BFPN~^^^^^^^^^^~04/01/2014~
-~17429~^~435~^5.^0^^~4~^~NC~^^^^^^^^^^~04/01/2014~
-~17429~^~601~^92.^6^^~1~^~A~^^^1^81.^99.^^^^~2~^~04/01/2014~
-~17430~^~208~^159.^0^^~4~^~NC~^^^^^^^^^^~04/01/2014~
-~17430~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2014~
-~17430~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2014~
-~17430~^~268~^666.^0^^~4~^~NC~^^^^^^^^^^~04/01/2014~
-~17430~^~301~^21.^6^^~1~^~A~^^^1^19.^24.^^^^~2~^~04/01/2014~
-~17430~^~304~^34.^6^^~1~^~A~^^^1^15.^46.^^^^~2~^~04/01/2014~
-~17430~^~305~^253.^6^^~1~^~A~^^^1^212.^289.^^^^~2~^~04/01/2014~
-~17430~^~306~^245.^6^^~1~^~A~^^^1^214.^272.^^^^~2~^~04/01/2014~
-~17430~^~307~^113.^6^^~1~^~A~^^^1^88.^149.^^^^~2~^~04/01/2014~
-~17430~^~318~^0.^0^^~1~^~AS~^^^^^^^^^^~04/01/2014~
-~17430~^~319~^0.^0^^~4~^~BFSN~^~17091~^^^^^^^^^~04/01/2014~
-~17430~^~320~^0.^0^^~1~^~AS~^^^^^^^^^^~04/01/2014~
-~17430~^~321~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2014~
-~17430~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2014~
-~17430~^~324~^40.^0^^~4~^~BFFN~^~17427~^^^^^^^^^~04/01/2014~
-~17430~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2014~
-~17430~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2014~
-~17430~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2014~
-~17430~^~417~^7.^0^^~4~^~BFPN~^^^^^^^^^^~04/01/2014~
-~17430~^~431~^0.^0^^~4~^~BFPN~^^^^^^^^^^~04/01/2014~
-~17430~^~432~^7.^0^^~4~^~BFPN~^^^^^^^^^^~04/01/2014~
-~17430~^~435~^7.^0^^~4~^~NC~^^^^^^^^^^~04/01/2014~
-~17430~^~601~^77.^6^^~1~^~A~^^^1^53.^105.^^^^~2~^~04/01/2014~
-~17431~^~208~^503.^0^^~4~^~NC~^^^^^^^^^^~05/01/2014~
-~17431~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2014~
-~17431~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2014~
-~17431~^~268~^2106.^0^^~4~^~NC~^^^^^^^^^^~05/01/2014~
-~17431~^~301~^31.^2^^~1~^~A~^^^1^30.^32.^^^^^~04/01/2014~
-~17431~^~304~^19.^2^^~1~^~A~^^^1^18.^20.^^^^^~04/01/2014~
-~17431~^~305~^133.^2^^~1~^~A~^^^1^124.^141.^^^^^~04/01/2014~
-~17431~^~306~^107.^2^^~1~^~A~^^^1^99.^115.^^^^^~04/01/2014~
-~17431~^~307~^89.^2^^~1~^~A~^^^1^84.^94.^^^^^~04/01/2014~
-~17431~^~318~^0.^0^^~1~^~AS~^^^^^^^^^^~04/01/2014~
-~17431~^~319~^0.^0^^~4~^~BFSN~^~13019~^^^^^^^^^~04/01/2014~
-~17431~^~320~^0.^0^^~4~^~NC~^^^^^^^^^^~03/01/2016~
-~17431~^~321~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2014~
-~17431~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2014~
-~17431~^~324~^220.^1^^~1~^~A~^^^^^^^^^^~04/01/2014~
-~17431~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2014~
-~17431~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2014~
-~17431~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2014~
-~17431~^~417~^0.^0^^~4~^~BFPN~^~13019~^^^^^^^^^~04/01/2014~
-~17431~^~431~^0.^0^^~4~^~BFPN~^~13019~^^^^^^^^^~04/01/2014~
-~17431~^~432~^0.^0^^~4~^~BFPN~^~13019~^^^^^^^^^~04/01/2014~
-~17431~^~435~^0.^0^^~4~^~NC~^~13019~^^^^^^^^^~04/01/2014~
-~17431~^~601~^86.^2^^~1~^~A~^^^1^86.^87.^^^^^~04/01/2014~
-~17432~^~208~^540.^0^^~4~^~NC~^^^^^^^^^^~05/01/2014~
-~17432~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2014~
-~17432~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2014~
-~17432~^~268~^2260.^0^^~4~^~NC~^^^^^^^^^^~05/01/2014~
-~17432~^~301~^58.^2^^~1~^~A~^^^1^54.^61.^^^^^~04/01/2014~
-~17432~^~304~^26.^2^^~1~^~A~^^^1^25.^26.^^^^^~04/01/2014~
-~17432~^~305~^168.^2^^~1~^~A~^^^1^159.^176.^^^^^~04/01/2014~
-~17432~^~306~^152.^2^^~1~^~A~^^^1^145.^159.^^^^^~04/01/2014~
-~17432~^~307~^103.^2^^~1~^~A~^^^1^82.^125.^^^^^~04/01/2014~
-~17432~^~318~^0.^0^^~1~^~AS~^^^^^^^^^^~04/01/2014~
-~17432~^~319~^0.^0^^~4~^~BFSN~^~13019~^^^^^^^^^~04/01/2014~
-~17432~^~320~^0.^0^^~4~^~NC~^^^^^^^^^^~03/01/2016~
-~17432~^~321~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2014~
-~17432~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2014~
-~17432~^~324~^142.^1^^~1~^~A~^^^^^^^^^^~04/01/2014~
-~17432~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2014~
-~17432~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2014~
-~17432~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2014~
-~17432~^~417~^0.^0^^~4~^~BFPN~^~13020~^^^^^^^^^~04/01/2014~
-~17432~^~431~^0.^0^^~4~^~BFPN~^~13020~^^^^^^^^^~04/01/2014~
-~17432~^~432~^0.^0^^~4~^~BFPN~^~13020~^^^^^^^^^~04/01/2014~
-~17432~^~435~^0.^0^^~4~^~NC~^~13020~^^^^^^^^^~04/01/2014~
-~17432~^~601~^85.^2^^~1~^~A~^^^1^83.^87.^^^^^~04/01/2014~
-~17433~^~208~^444.^0^^~4~^~NC~^^^^^^^^^^~05/01/2014~
-~17433~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2014~
-~17433~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2014~
-~17433~^~268~^1857.^0^^~4~^~NC~^^^^^^^^^^~05/01/2014~
-~17433~^~301~^30.^2^^~1~^~A~^^^1^30.^30.^^^^^~04/01/2014~
-~17433~^~304~^23.^2^^~1~^~A~^^^1^21.^26.^^^^^~04/01/2014~
-~17433~^~305~^150.^2^^~1~^~A~^^^1^137.^162.^^^^^~04/01/2014~
-~17433~^~306~^179.^2^^~1~^~A~^^^1^154.^204.^^^^^~04/01/2014~
-~17433~^~307~^89.^2^^~1~^~A~^^^1^82.^96.^^^^^~04/01/2014~
-~17433~^~318~^0.^0^^~1~^~AS~^^^^^^^^^^~04/01/2014~
-~17433~^~319~^0.^0^^~4~^~BFSN~^~13019~^^^^^^^^^~04/01/2014~
-~17433~^~320~^0.^0^^~4~^~NC~^^^^^^^^^^~04/01/2016~
-~17433~^~321~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2014~
-~17433~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2014~
-~17433~^~324~^142.^1^^~1~^~A~^^^^^^^^^^~04/01/2014~
-~17433~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2014~
-~17433~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2014~
-~17433~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2014~
-~17433~^~417~^0.^0^^~4~^~BFPN~^~13019~^^^^^^^^^~04/01/2014~
-~17433~^~431~^0.^0^^~4~^~BFPN~^~13019~^^^^^^^^^~04/01/2014~
-~17433~^~432~^0.^0^^~4~^~BFPN~^~13019~^^^^^^^^^~04/01/2014~
-~17433~^~435~^0.^0^^~4~^~NC~^~13019~^^^^^^^^^~04/01/2014~
-~17433~^~601~^83.^2^^~1~^~A~^^^1^83.^83.^^^^^~04/01/2014~
-~17434~^~208~^505.^0^^~4~^~NC~^^^^^^^^^^~05/01/2014~
-~17434~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2014~
-~17434~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2014~
-~17434~^~268~^2111.^0^^~4~^~NC~^^^^^^^^^^~05/01/2014~
-~17434~^~301~^43.^2^^~1~^~A~^^^1^40.^46.^^^^^~04/01/2014~
-~17434~^~304~^24.^2^^~1~^~A~^^^1^24.^25.^^^^^~04/01/2014~
-~17434~^~305~^152.^2^^~1~^~A~^^^1^146.^158.^^^^^~04/01/2014~
-~17434~^~306~^155.^2^^~1~^~A~^^^1^136.^174.^^^^^~04/01/2014~
-~17434~^~307~^87.^2^^~1~^~A~^^^1^86.^88.^^^^^~04/01/2014~
-~17434~^~318~^0.^0^^~1~^~AS~^^^^^^^^^^~04/01/2014~
-~17434~^~319~^0.^0^^~4~^~BFSN~^~13020~^^^^^^^^^~04/01/2014~
-~17434~^~320~^0.^0^^~4~^~NC~^^^^^^^^^^~03/01/2016~
-~17434~^~321~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2014~
-~17434~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2014~
-~17434~^~324~^181.^1^^~1~^~A~^^^^^^^^^^~04/01/2014~
-~17434~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2014~
-~17434~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2014~
-~17434~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2014~
-~17434~^~417~^0.^0^^~4~^~BFPN~^~13020~^^^^^^^^^~04/01/2014~
-~17434~^~431~^0.^0^^~4~^~BFPN~^~13020~^^^^^^^^^~04/01/2014~
-~17434~^~432~^0.^0^^~4~^~BFPN~^~13020~^^^^^^^^^~04/01/2014~
-~17434~^~435~^0.^0^^~4~^~NC~^~13020~^^^^^^^^^~04/01/2014~
-~17434~^~601~^82.^2^^~1~^~A~^^^1^82.^83.^^^^^~04/01/2014~
-~17435~^~208~^107.^0^^~4~^~PIK~^^^^^^^^^^~04/01/2015~
-~17435~^~262~^0.^0^^~4~^~PIK~^^^^^^^^^^~04/01/2015~
-~17435~^~263~^0.^0^^~4~^~PIK~^^^^^^^^^^~04/01/2015~
-~17435~^~268~^447.^0^^~4~^~PIK~^^^^^^^^^^~04/01/2015~
-~17435~^~301~^12.^0^^~1~^~PAK~^^^^^^^^^^~04/01/2014~
-~17435~^~304~^32.^0^^~1~^~PAK~^^^^^^^^^^~04/01/2014~
-~17435~^~305~^207.^0^^~1~^~PAK~^^^^^^^^^^~05/01/2014~
-~17435~^~306~^162.^0^^~1~^~PAK~^^^^^^^^^^~05/01/2014~
-~17435~^~307~^107.^0^^~1~^~PAK~^^^^^^^^^^~05/01/2014~
-~17435~^~318~^0.^0^^~1~^~PAK~^^^^^^^^^^~04/01/2014~
-~17435~^~319~^0.^0^^~4~^~PIK~^^^^^^^^^^~04/01/2015~
-~17435~^~320~^0.^0^^~4~^~NC~^^^^^^^^^^~03/01/2016~
-~17435~^~321~^0.^0^^~4~^~PIK~^^^^^^^^^^~04/01/2015~
-~17435~^~322~^0.^0^^~4~^~PIK~^^^^^^^^^^~04/01/2015~
-~17435~^~324~^31.^0^^~4~^~PIK~^^^^^^^^^^~04/01/2015~
-~17435~^~334~^0.^0^^~4~^~PIK~^^^^^^^^^^~04/01/2015~
-~17435~^~337~^0.^0^^~4~^~PIK~^^^^^^^^^^~04/01/2015~
-~17435~^~338~^0.^0^^~4~^~PIK~^^^^^^^^^^~04/01/2015~
-~17435~^~417~^3.^0^^~4~^~PIK~^^^^^^^^^^~04/01/2015~
-~17435~^~431~^0.^0^^~4~^~PIK~^^^^^^^^^^~04/01/2015~
-~17435~^~432~^3.^0^^~4~^~PIK~^^^^^^^^^^~04/01/2015~
-~17435~^~435~^3.^0^^~4~^~NC~^^^^^^^^^^~04/01/2014~
-~17435~^~601~^63.^0^^~1~^~PAK~^^^^^^^^^^~04/01/2014~
-~17436~^~208~^182.^0^^~4~^~PIK~^^^^^^^^^^~04/01/2015~
-~17436~^~262~^0.^0^^~4~^~PIK~^^^^^^^^^^~04/01/2015~
-~17436~^~263~^0.^0^^~4~^~PIK~^^^^^^^^^^~04/01/2015~
-~17436~^~268~^762.^0^^~4~^~PIK~^^^^^^^^^^~04/01/2015~
-~17436~^~301~^22.^0^^~1~^~PAK~^^^^^^^^^^~04/01/2014~
-~17436~^~304~^34.^0^^~1~^~PAK~^^^^^^^^^^~04/01/2014~
-~17436~^~305~^214.^0^^~1~^~PAK~^^^^^^^^^^~04/01/2014~
-~17436~^~306~^201.^0^^~1~^~PAK~^^^^^^^^^^~04/01/2014~
-~17436~^~307~^90.^0^^~1~^~PAK~^^^^^^^^^^~04/01/2014~
-~17436~^~318~^0.^0^^~1~^~PAK~^^^^^^^^^^~04/01/2014~
-~17436~^~319~^0.^0^^~4~^~PIK~^^^^^^^^^^~04/01/2015~
-~17436~^~320~^0.^0^^~1~^~PAK~^^^^^^^^^^~04/01/2014~
-~17436~^~321~^0.^0^^~4~^~PIK~^^^^^^^^^^~04/01/2015~
-~17436~^~322~^0.^0^^~4~^~PIK~^^^^^^^^^^~04/01/2015~
-~17436~^~324~^42.^0^^~4~^~PIK~^^^^^^^^^^~04/01/2015~
-~17436~^~334~^0.^0^^~4~^~PIK~^^^^^^^^^^~04/01/2015~
-~17436~^~337~^0.^0^^~4~^~PIK~^^^^^^^^^^~04/01/2015~
-~17436~^~338~^0.^0^^~4~^~PIK~^^^^^^^^^^~04/01/2015~
-~17436~^~417~^4.^0^^~4~^~PIK~^^^^^^^^^^~04/01/2015~
-~17436~^~431~^0.^0^^~4~^~PIK~^^^^^^^^^^~04/01/2015~
-~17436~^~432~^4.^0^^~4~^~PIK~^^^^^^^^^^~04/01/2015~
-~17436~^~435~^4.^0^^~4~^~NC~^^^^^^^^^^~04/01/2014~
-~17436~^~601~^92.^0^^~1~^~PAK~^^^^^^^^^^~04/01/2014~
-~17437~^~208~^198.^0^^~4~^~PIK~^^^^^^^^^^~04/01/2015~
-~17437~^~262~^0.^0^^~4~^~PIK~^^^^^^^^^^~04/01/2015~
-~17437~^~263~^0.^0^^~4~^~PIK~^^^^^^^^^^~04/01/2015~
-~17437~^~268~^829.^0^^~4~^~PIK~^^^^^^^^^^~04/01/2015~
-~17437~^~301~^17.^0^^~1~^~PAK~^^^^^^^^^^~04/01/2014~
-~17437~^~304~^32.^0^^~1~^~PAK~^^^^^^^^^^~04/01/2014~
-~17437~^~305~^208.^0^^~1~^~PAK~^^^^^^^^^^~04/01/2014~
-~17437~^~306~^229.^0^^~1~^~PAK~^^^^^^^^^^~04/01/2014~
-~17437~^~307~^86.^0^^~1~^~PAK~^^^^^^^^^^~04/01/2014~
-~17437~^~318~^0.^0^^~1~^~PAK~^^^^^^^^^^~04/01/2014~
-~17437~^~319~^0.^0^^~4~^~PIK~^^^^^^^^^^~04/01/2015~
-~17437~^~320~^0.^0^^~1~^~PAK~^^^^^^^^^^~04/01/2014~
-~17437~^~321~^0.^0^^~4~^~PIK~^^^^^^^^^^~04/01/2015~
-~17437~^~322~^0.^0^^~4~^~PIK~^^^^^^^^^^~04/01/2015~
-~17437~^~324~^45.^0^^~1~^~PAK~^^^^^^^^^^~04/01/2014~
-~17437~^~334~^0.^0^^~4~^~PIK~^^^^^^^^^^~04/01/2015~
-~17437~^~337~^0.^0^^~4~^~PIK~^^^^^^^^^^~04/01/2015~
-~17437~^~338~^0.^0^^~4~^~PIK~^^^^^^^^^^~04/01/2015~
-~17437~^~417~^6.^0^^~4~^~PIK~^^^^^^^^^^~04/01/2015~
-~17437~^~431~^0.^0^^~4~^~PIK~^^^^^^^^^^~04/01/2015~
-~17437~^~432~^6.^0^^~4~^~PIK~^^^^^^^^^^~04/01/2015~
-~17437~^~435~^6.^0^^~4~^~NC~^^^^^^^^^^~04/01/2014~
-~17437~^~601~^79.^0^^~1~^~PAK~^^^^^^^^^^~04/01/2014~
-~17438~^~208~^199.^0^^~4~^~PIK~^^^^^^^^^^~04/01/2015~
-~17438~^~262~^0.^0^^~4~^~PIK~^^^^^^^^^^~04/01/2015~
-~17438~^~263~^0.^0^^~4~^~PIK~^^^^^^^^^^~04/01/2015~
-~17438~^~268~^831.^0^^~4~^~PIK~^^^^^^^^^^~04/01/2015~
-~17438~^~301~^24.^0^^~1~^~PAK~^^^^^^^^^^~04/01/2014~
-~17438~^~304~^33.^0^^~1~^~PAK~^^^^^^^^^^~04/01/2014~
-~17438~^~305~^242.^0^^~1~^~PAK~^^^^^^^^^^~04/01/2014~
-~17438~^~306~^235.^0^^~1~^~PAK~^^^^^^^^^^~04/01/2014~
-~17438~^~307~^111.^0^^~1~^~PAK~^^^^^^^^^^~04/01/2014~
-~17438~^~318~^0.^0^^~1~^~PAK~^^^^^^^^^^~04/01/2014~
-~17438~^~319~^0.^0^^~4~^~PIK~^^^^^^^^^^~04/01/2015~
-~17438~^~320~^0.^0^^~1~^~PAK~^^^^^^^^^^~04/01/2014~
-~17438~^~321~^0.^0^^~4~^~PIK~^^^^^^^^^^~04/01/2015~
-~17438~^~322~^0.^0^^~4~^~PIK~^^^^^^^^^^~04/01/2015~
-~17438~^~324~^54.^0^^~4~^~PIK~^^^^^^^^^^~04/01/2015~
-~17438~^~334~^0.^0^^~4~^~PIK~^^^^^^^^^^~04/01/2015~
-~17438~^~337~^0.^0^^~4~^~PIK~^^^^^^^^^^~04/01/2015~
-~17438~^~338~^0.^0^^~4~^~PIK~^^^^^^^^^^~04/01/2015~
-~17438~^~417~^6.^0^^~4~^~PIK~^^^^^^^^^^~04/01/2015~
-~17438~^~431~^0.^0^^~4~^~PIK~^^^^^^^^^^~04/01/2015~
-~17438~^~432~^6.^0^^~4~^~PIK~^^^^^^^^^^~04/01/2015~
-~17438~^~435~^6.^0^^~4~^~NC~^^^^^^^^^^~04/01/2014~
-~17438~^~601~^78.^0^^~1~^~PAK~^^^^^^^^^^~04/01/2014~
-~17439~^~208~^190.^0^^~4~^~NC~^^^^^^^^^^~10/01/2014~
-~17439~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~10/01/2014~
-~17439~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~10/01/2014~
-~17439~^~268~^793.^0^^~4~^~NC~^^^^^^^^^^~10/01/2014~
-~17439~^~301~^2.^1^^~1~^~A~^^^^^^^^^^~10/01/2014~
-~17439~^~304~^23.^1^^~1~^~A~^^^^^^^^^^~10/01/2014~
-~17439~^~305~^196.^1^^~1~^~A~^^^^^^^^^^~10/01/2014~
-~17439~^~306~^287.^1^^~1~^~A~^^^^^^^^^^~10/01/2014~
-~17439~^~307~^70.^1^^~1~^~A~^^^^^^^^^^~10/01/2014~
-~17439~^~318~^7.^0^^~4~^~NC~^^^^^^^^^^~10/01/2014~
-~17439~^~319~^2.^0^^~4~^~BFSN~^~17400~^^^^^^^^^~10/01/2014~
-~17439~^~320~^2.^0^^~4~^~NC~^^^^^^^^^^~10/01/2014~
-~17439~^~321~^0.^0^^~7~^~Z~^^^^^^^^^^~10/01/2014~
-~17439~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~10/01/2014~
-~17439~^~324~^0.^1^^~1~^~A~^^^^^^^^^~1~^~10/01/2014~
-~17439~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~10/01/2014~
-~17439~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~10/01/2014~
-~17439~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~10/01/2014~
-~17439~^~601~^107.^1^^~1~^~A~^^^^^^^^^^~10/01/2014~
-~17440~^~208~^174.^0^^~4~^~NC~^^^^^^^^^^~10/01/2014~
-~17440~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~10/01/2014~
-~17440~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~10/01/2014~
-~17440~^~268~^726.^0^^~4~^~NC~^^^^^^^^^^~10/01/2014~
-~17440~^~301~^5.^1^^~1~^~A~^^^^^^^^^^~10/01/2014~
-~17440~^~304~^19.^1^^~1~^~A~^^^^^^^^^^~10/01/2014~
-~17440~^~305~^151.^1^^~1~^~A~^^^^^^^^^^~10/01/2014~
-~17440~^~306~^192.^1^^~1~^~A~^^^^^^^^^^~10/01/2014~
-~17440~^~307~^86.^1^^~1~^~A~^^^^^^^^^^~10/01/2014~
-~17440~^~318~^7.^0^^~4~^~NC~^^^^^^^^^^~10/01/2014~
-~17440~^~319~^2.^0^^~4~^~BFSN~^~17390~^^^^^^^^^~10/01/2014~
-~17440~^~320~^2.^0^^~4~^~NC~^^^^^^^^^^~10/01/2014~
-~17440~^~321~^0.^0^^~7~^~Z~^^^^^^^^^^~10/01/2014~
-~17440~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~10/01/2014~
-~17440~^~324~^0.^1^^~1~^~A~^^^^^^^^^~1~^~10/01/2014~
-~17440~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~10/01/2014~
-~17440~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~10/01/2014~
-~17440~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~10/01/2014~
-~17440~^~601~^111.^1^^~1~^~A~^^^^^^^^^^~10/01/2014~
-~17441~^~208~^122.^0^^~4~^~NC~^^^^^^^^^^~10/01/2014~
-~17441~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~10/01/2014~
-~17441~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~10/01/2014~
-~17441~^~268~^509.^0^^~4~^~NC~^^^^^^^^^^~10/01/2014~
-~17441~^~301~^4.^1^^~1~^~A~^^^^^^^^^^~10/01/2014~
-~17441~^~304~^21.^1^^~1~^~A~^^^^^^^^^^~10/01/2014~
-~17441~^~305~^163.^1^^~1~^~A~^^^^^^^^^^~10/01/2014~
-~17441~^~306~^227.^1^^~1~^~A~^^^^^^^^^^~10/01/2014~
-~17441~^~307~^93.^1^^~1~^~A~^^^^^^^^^^~10/01/2014~
-~17441~^~318~^7.^0^^~4~^~NC~^^^^^^^^^^~10/01/2014~
-~17441~^~319~^2.^0^^~4~^~BFSN~^~17391~^^^^^^^^^~10/01/2014~
-~17441~^~320~^2.^0^^~4~^~NC~^^^^^^^^^^~10/01/2014~
-~17441~^~321~^0.^0^^~7~^~Z~^^^^^^^^^^~10/01/2014~
-~17441~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~10/01/2014~
-~17441~^~324~^0.^1^^~1~^~A~^^^^^^^^^~1~^~10/01/2014~
-~17441~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~10/01/2014~
-~17441~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~10/01/2014~
-~17441~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~10/01/2014~
-~17441~^~601~^54.^1^^~1~^~A~^^^^^^^^^^~10/01/2014~
-~17442~^~208~^184.^0^^~4~^~NC~^^^^^^^^^^~10/01/2014~
-~17442~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~10/01/2014~
-~17442~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~10/01/2014~
-~17442~^~268~^771.^0^^~4~^~NC~^^^^^^^^^^~10/01/2014~
-~17442~^~301~^2.^1^^~1~^~A~^^^^^^^^^^~10/01/2014~
-~17442~^~304~^24.^1^^~1~^~A~^^^^^^^^^^~10/01/2014~
-~17442~^~305~^170.^1^^~1~^~A~^^^^^^^^^^~10/01/2014~
-~17442~^~306~^231.^1^^~1~^~A~^^^^^^^^^^~10/01/2014~
-~17442~^~307~^61.^1^^~1~^~A~^^^^^^^^^^~10/01/2014~
-~17442~^~318~^6.^0^^~4~^~NC~^^^^^^^^^^~10/01/2014~
-~17442~^~319~^2.^0^^~4~^~BFSN~^~17384~^^^^^^^^^~10/01/2014~
-~17442~^~320~^2.^0^^~4~^~NC~^^^^^^^^^^~10/01/2014~
-~17442~^~321~^0.^0^^~7~^~Z~^^^^^^^^^^~10/01/2014~
-~17442~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~10/01/2014~
-~17442~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~10/01/2014~
-~17442~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~10/01/2014~
-~17442~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~10/01/2014~
-~17442~^~601~^111.^1^^~1~^~A~^^^^^^^^^^~10/01/2014~
-~17443~^~208~^136.^0^^~4~^~NC~^^^^^^^^^^~10/01/2014~
-~17443~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~10/01/2014~
-~17443~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~10/01/2014~
-~17443~^~268~^570.^0^^~4~^~NC~^^^^^^^^^^~10/01/2014~
-~17443~^~301~^2.^1^^~1~^~A~^^^^^^^^^^~10/01/2014~
-~17443~^~304~^26.^1^^~1~^~A~^^^^^^^^^^~10/01/2014~
-~17443~^~305~^210.^1^^~1~^~A~^^^^^^^^^^~10/01/2014~
-~17443~^~306~^311.^1^^~1~^~A~^^^^^^^^^^~10/01/2014~
-~17443~^~307~^73.^1^^~1~^~A~^^^^^^^^^^~10/01/2014~
-~17443~^~318~^5.^0^^~4~^~NC~^^^^^^^^^^~10/01/2014~
-~17443~^~319~^2.^0^^~4~^~BFSN~^~17385~^^^^^^^^^~10/01/2014~
-~17443~^~320~^2.^0^^~4~^~NC~^^^^^^^^^^~10/01/2014~
-~17443~^~321~^0.^0^^~7~^~Z~^^^^^^^^^^~10/01/2014~
-~17443~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~10/01/2014~
-~17443~^~324~^0.^1^^~1~^~A~^^^^^^^^^~1~^~10/01/2014~
-~17443~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~10/01/2014~
-~17443~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~10/01/2014~
-~17443~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~10/01/2014~
-~17443~^~601~^76.^1^^~1~^~A~^^^^^^^^^^~10/01/2014~
-~17444~^~208~^136.^0^^~4~^~NC~^^^^^^^^^^~10/01/2014~
-~17444~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~10/01/2014~
-~17444~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~10/01/2014~
-~17444~^~268~^570.^0^^~4~^~NC~^^^^^^^^^^~10/01/2014~
-~17444~^~301~^2.^1^^~1~^~A~^^^^^^^^^^~10/01/2014~
-~17444~^~304~^24.^1^^~1~^~A~^^^^^^^^^^~10/01/2014~
-~17444~^~305~^174.^1^^~1~^~A~^^^^^^^^^^~10/01/2014~
-~17444~^~306~^231.^1^^~1~^~A~^^^^^^^^^^~10/01/2014~
-~17444~^~307~^83.^1^^~1~^~A~^^^^^^^^^^~10/01/2014~
-~17444~^~318~^9.^0^^~4~^~NC~^^^^^^^^^^~10/01/2014~
-~17444~^~319~^3.^0^^~4~^~BFSN~^~17074~^^^^^^^^^~10/01/2014~
-~17444~^~320~^3.^0^^~4~^~NC~^^^^^^^^^^~10/01/2014~
-~17444~^~321~^0.^0^^~7~^~Z~^^^^^^^^^^~10/01/2014~
-~17444~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~10/01/2014~
-~17444~^~324~^0.^1^^~1~^~A~^^^^^^^^^~1~^~10/01/2014~
-~17444~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~10/01/2014~
-~17444~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~10/01/2014~
-~17444~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~10/01/2014~
-~17444~^~601~^61.^1^^~1~^~A~^^^^^^^^^^~10/01/2014~
-~17445~^~208~^215.^0^^~4~^~NC~^^^^^^^^^^~10/01/2014~
-~17445~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~10/01/2014~
-~17445~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~10/01/2014~
-~17445~^~268~^898.^0^^~4~^~NC~^^^^^^^^^^~10/01/2014~
-~17445~^~301~^4.^1^^~1~^~A~^^^^^^^^^^~10/01/2014~
-~17445~^~304~^25.^1^^~1~^~A~^^^^^^^^^^~10/01/2014~
-~17445~^~305~^215.^1^^~1~^~A~^^^^^^^^^^~10/01/2014~
-~17445~^~306~^308.^1^^~1~^~A~^^^^^^^^^^~10/01/2014~
-~17445~^~307~^80.^1^^~1~^~A~^^^^^^^^^^~10/01/2014~
-~17445~^~318~^8.^0^^~4~^~NC~^^^^^^^^^^~10/01/2014~
-~17445~^~319~^2.^0^^~4~^~BFSN~^~17400~^^^^^^^^^~10/01/2014~
-~17445~^~320~^2.^0^^~4~^~NC~^^^^^^^^^^~10/01/2014~
-~17445~^~321~^0.^0^^~7~^~Z~^^^^^^^^^^~10/01/2014~
-~17445~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~10/01/2014~
-~17445~^~324~^0.^1^^~1~^~A~^^^^^^^^^~1~^~10/01/2014~
-~17445~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~10/01/2014~
-~17445~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~10/01/2014~
-~17445~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~10/01/2014~
-~17445~^~601~^117.^1^^~1~^~A~^^^^^^^^^^~10/01/2014~
-~17446~^~208~^131.^0^^~4~^~NC~^^^^^^^^^^~10/01/2014~
-~17446~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~10/01/2014~
-~17446~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~10/01/2014~
-~17446~^~268~^550.^0^^~4~^~NC~^^^^^^^^^^~10/01/2014~
-~17446~^~301~^3.^1^^~1~^~A~^^^^^^^^^^~10/01/2014~
-~17446~^~304~^23.^1^^~1~^~A~^^^^^^^^^^~10/01/2014~
-~17446~^~305~^167.^1^^~1~^~A~^^^^^^^^^^~10/01/2014~
-~17446~^~306~^238.^1^^~1~^~A~^^^^^^^^^^~10/01/2014~
-~17446~^~307~^77.^1^^~1~^~A~^^^^^^^^^^~10/01/2014~
-~17446~^~318~^9.^0^^~4~^~NC~^^^^^^^^^^~10/01/2014~
-~17446~^~319~^3.^0^^~4~^~BFSN~^~17074~^^^^^^^^^~10/01/2014~
-~17446~^~320~^3.^0^^~4~^~NC~^^^^^^^^^^~10/01/2014~
-~17446~^~321~^0.^0^^~7~^~Z~^^^^^^^^^^~10/01/2014~
-~17446~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~10/01/2014~
-~17446~^~324~^0.^1^^~1~^~A~^^^^^^^^^~1~^~10/01/2014~
-~17446~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~10/01/2014~
-~17446~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~10/01/2014~
-~17446~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~10/01/2014~
-~17446~^~601~^76.^1^^~1~^~A~^^^^^^^^^^~10/01/2014~
-~17447~^~208~^175.^0^^~4~^~NC~^^^^^^^^^^~10/01/2014~
-~17447~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~10/01/2014~
-~17447~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~10/01/2014~
-~17447~^~268~^731.^0^^~4~^~NC~^^^^^^^^^^~10/01/2014~
-~17447~^~301~^7.^1^^~1~^~A~^^^^^^^^^^~10/01/2014~
-~17447~^~304~^22.^1^^~1~^~A~^^^^^^^^^^~10/01/2014~
-~17447~^~305~^168.^1^^~1~^~A~^^^^^^^^^^~10/01/2014~
-~17447~^~306~^230.^1^^~1~^~A~^^^^^^^^^^~10/01/2014~
-~17447~^~307~^72.^1^^~1~^~A~^^^^^^^^^^~10/01/2014~
-~17447~^~318~^12.^0^^~4~^~NC~^^^^^^^^^^~10/01/2014~
-~17447~^~319~^3.^0^^~4~^~BFSN~^~17396~^^^^^^^^^~10/01/2014~
-~17447~^~320~^3.^0^^~4~^~NC~^^^^^^^^^^~10/01/2014~
-~17447~^~321~^0.^0^^~7~^~Z~^^^^^^^^^^~10/01/2014~
-~17447~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~10/01/2014~
-~17447~^~324~^0.^1^^~1~^~A~^^^^^^^^^~1~^~10/01/2014~
-~17447~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~10/01/2014~
-~17447~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~10/01/2014~
-~17447~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~10/01/2014~
-~17447~^~601~^97.^1^^~1~^~A~^^^^^^^^^^~10/01/2014~
-~17448~^~208~^244.^0^^~4~^~NC~^^^^^^^^^^~11/01/2014~
-~17448~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~11/01/2014~
-~17448~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~11/01/2014~
-~17448~^~268~^1020.^0^^~4~^~NC~^^^^^^^^^^~11/01/2014~
-~17448~^~301~^6.^1^^~1~^~A~^^^^^^^^^^~11/01/2014~
-~17448~^~304~^22.^1^^~1~^~A~^^^^^^^^^^~11/01/2014~
-~17448~^~305~^174.^1^^~1~^~A~^^^^^^^^^^~11/01/2014~
-~17448~^~306~^237.^1^^~1~^~A~^^^^^^^^^^~11/01/2014~
-~17448~^~307~^67.^1^^~1~^~A~^^^^^^^^^^~11/01/2014~
-~17448~^~318~^14.^0^^~4~^~NC~^^^^^^^^^^~11/01/2014~
-~17448~^~319~^4.^0^^~4~^~BFSN~^~17396~^^^^^^^^^~11/01/2014~
-~17448~^~320~^4.^0^^~4~^~NC~^^^^^^^^^^~11/01/2014~
-~17448~^~321~^0.^0^^~7~^~Z~^^^^^^^^^^~11/01/2014~
-~17448~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~11/01/2014~
-~17448~^~324~^0.^1^^~1~^~A~^^^^^^^^^~1~^~11/01/2014~
-~17448~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~11/01/2014~
-~17448~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~11/01/2014~
-~17448~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~11/01/2014~
-~17448~^~601~^96.^1^^~1~^~A~^^^^^^^^^^~11/01/2014~
-~17449~^~208~^538.^0^^~4~^~NC~^^^^^^^^^^~08/01/2015~
-~17449~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~11/01/2014~
-~17449~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~11/01/2014~
-~17449~^~268~^2252.^0^^~4~^~NC~^^^^^^^^^^~08/01/2015~
-~17449~^~301~^12.^1^^~1~^~A~^^^^^^^^^^~11/01/2014~
-~17449~^~304~^20.^1^^~1~^~A~^^^^^^^^^^~11/01/2014~
-~17449~^~305~^148.^1^^~1~^~A~^^^^^^^^^^~11/01/2014~
-~17449~^~306~^207.^1^^~1~^~A~^^^^^^^^^^~11/01/2014~
-~17449~^~307~^58.^1^^~1~^~A~^^^^^^^^^^~11/01/2014~
-~17449~^~321~^0.^0^^~7~^~Z~^^^^^^^^^^~11/01/2014~
-~17449~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~11/01/2014~
-~17449~^~324~^0.^1^^~1~^~A~^^^^^^^^^~1~^~11/01/2014~
-~17449~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~11/01/2014~
-~17449~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~11/01/2014~
-~17449~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~11/01/2014~
-~17449~^~601~^81.^1^^~1~^~A~^^^^^^^^^^~11/01/2014~
-~17450~^~208~^487.^0^^~4~^~NC~^^^^^^^^^^~11/01/2014~
-~17450~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~11/01/2014~
-~17450~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~11/01/2014~
-~17450~^~268~^2037.^0^^~4~^~NC~^^^^^^^^^^~11/01/2014~
-~17450~^~301~^10.^1^^~1~^~A~^^^^^^^^^^~11/01/2014~
-~17450~^~304~^9.^1^^~1~^~A~^^^^^^^^^^~11/01/2014~
-~17450~^~305~^92.^1^^~1~^~A~^^^^^^^^^^~11/01/2014~
-~17450~^~306~^149.^1^^~1~^~A~^^^^^^^^^^~11/01/2014~
-~17450~^~307~^69.^1^^~1~^~A~^^^^^^^^^^~11/01/2014~
-~17450~^~321~^0.^0^^~7~^~Z~^^^^^^^^^^~11/01/2014~
-~17450~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~11/01/2014~
-~17450~^~324~^0.^1^^~1~^~A~^^^^^^^^^~1~^~11/01/2014~
-~17450~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~11/01/2014~
-~17450~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~11/01/2014~
-~17450~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~11/01/2014~
-~17450~^~601~^71.^1^^~1~^~A~^^^^^^^^^^~11/01/2014~
-~17451~^~208~^554.^0^^~4~^~NC~^^^^^^^^^^~11/01/2014~
-~17451~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~11/01/2014~
-~17451~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~11/01/2014~
-~17451~^~268~^2318.^0^^~4~^~NC~^^^^^^^^^^~11/01/2014~
-~17451~^~301~^8.^1^^~1~^~A~^^^^^^^^^^~11/01/2014~
-~17451~^~304~^12.^1^^~1~^~A~^^^^^^^^^^~11/01/2014~
-~17451~^~305~^112.^1^^~1~^~A~^^^^^^^^^^~11/01/2014~
-~17451~^~306~^164.^1^^~1~^~A~^^^^^^^^^^~11/01/2014~
-~17451~^~307~^53.^1^^~1~^~A~^^^^^^^^^^~11/01/2014~
-~17451~^~321~^0.^0^^~7~^~Z~^^^^^^^^^^~11/01/2014~
-~17451~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~11/01/2014~
-~17451~^~324~^0.^1^^~1~^~A~^^^^^^^^^~1~^~11/01/2014~
-~17451~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~11/01/2014~
-~17451~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~11/01/2014~
-~17451~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~11/01/2014~
-~17451~^~601~^110.^1^^~1~^~A~^^^^^^^^^^~11/01/2014~
-~17452~^~208~^459.^0^^~4~^~NC~^^^^^^^^^^~11/01/2014~
-~17452~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~11/01/2014~
-~17452~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~11/01/2014~
-~17452~^~268~^1919.^0^^~4~^~NC~^^^^^^^^^^~11/01/2014~
-~17452~^~301~^6.^1^^~1~^~A~^^^^^^^^^^~11/01/2014~
-~17452~^~304~^3.^1^^~1~^~A~^^^^^^^^^^~11/01/2014~
-~17452~^~305~^71.^1^^~1~^~A~^^^^^^^^^^~11/01/2014~
-~17452~^~306~^126.^1^^~1~^~A~^^^^^^^^^^~11/01/2014~
-~17452~^~307~^55.^1^^~1~^~A~^^^^^^^^^^~11/01/2014~
-~17452~^~321~^0.^0^^~7~^~Z~^^^^^^^^^^~11/01/2014~
-~17452~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~11/01/2014~
-~17452~^~324~^0.^1^^~1~^~A~^^^^^^^^^~1~^~11/01/2014~
-~17452~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~11/01/2014~
-~17452~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~11/01/2014~
-~17452~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~11/01/2014~
-~17452~^~601~^90.^1^^~1~^~A~^^^^^^^^^^~11/01/2014~
-~17453~^~208~^219.^0^^~4~^~PIK~^^^^^^^^^^~11/01/2014~
-~17453~^~262~^0.^0^^~4~^~PIK~^^^^^^^^^^~11/01/2014~
-~17453~^~263~^0.^0^^~4~^~PIK~^^^^^^^^^^~11/01/2014~
-~17453~^~268~^918.^0^^~4~^~PIK~^^^^^^^^^^~11/01/2014~
-~17453~^~301~^3.^0^^~1~^~PAK~^^^^^^^^^^~11/01/2014~
-~17453~^~304~^23.^0^^~1~^~PAK~^^^^^^^^^^~11/01/2014~
-~17453~^~305~^191.^0^^~1~^~PAK~^^^^^^^^^^~11/01/2014~
-~17453~^~306~^279.^0^^~1~^~PAK~^^^^^^^^^^~11/01/2014~
-~17453~^~307~^69.^0^^~1~^~PAK~^^^^^^^^^^~11/01/2014~
-~17453~^~318~^6.^0^^~4~^~PIK~^^^^^^^^^^~11/01/2014~
-~17453~^~319~^2.^0^^~4~^~PIK~^^^^^^^^^^~11/01/2014~
-~17453~^~320~^2.^0^^~4~^~PIK~^^^^^^^^^^~11/01/2014~
-~17453~^~321~^0.^0^^~4~^~PIK~^^^^^^^^^^~11/01/2014~
-~17453~^~322~^0.^0^^~4~^~PIK~^^^^^^^^^^~11/01/2014~
-~17453~^~324~^0.^0^^~1~^~PAK~^^^^^^^^^^~11/01/2014~
-~17453~^~334~^0.^0^^~4~^~PIK~^^^^^^^^^^~11/01/2014~
-~17453~^~337~^0.^0^^~4~^~PIK~^^^^^^^^^^~11/01/2014~
-~17453~^~338~^0.^0^^~4~^~PIK~^^^^^^^^^^~11/01/2014~
-~17453~^~601~^106.^0^^~1~^~PAK~^^^^^^^^^^~11/01/2014~
-~17454~^~208~^187.^0^^~4~^~PIK~^^^^^^^^^^~11/01/2014~
-~17454~^~262~^0.^0^^~4~^~PIK~^^^^^^^^^^~11/01/2014~
-~17454~^~263~^0.^0^^~4~^~PIK~^^^^^^^^^^~11/01/2014~
-~17454~^~268~^781.^0^^~4~^~PIK~^^^^^^^^^^~11/01/2014~
-~17454~^~301~^3.^0^^~1~^~PAK~^^^^^^^^^^~11/01/2014~
-~17454~^~304~^21.^0^^~1~^~PAK~^^^^^^^^^^~11/01/2014~
-~17454~^~305~^161.^0^^~1~^~PAK~^^^^^^^^^^~11/01/2014~
-~17454~^~306~^218.^0^^~1~^~PAK~^^^^^^^^^^~11/01/2014~
-~17454~^~307~^80.^0^^~1~^~PAK~^^^^^^^^^^~11/01/2014~
-~17454~^~318~^8.^0^^~4~^~PIK~^^^^^^^^^^~11/01/2014~
-~17454~^~319~^2.^0^^~4~^~PIK~^^^^^^^^^^~11/01/2014~
-~17454~^~320~^2.^0^^~4~^~PIK~^^^^^^^^^^~11/01/2014~
-~17454~^~321~^0.^0^^~4~^~PIK~^^^^^^^^^^~11/01/2014~
-~17454~^~322~^0.^0^^~4~^~PIK~^^^^^^^^^^~11/01/2014~
-~17454~^~324~^0.^0^^~1~^~PAK~^^^^^^^^^^~11/01/2014~
-~17454~^~334~^0.^0^^~4~^~PIK~^^^^^^^^^^~11/01/2014~
-~17454~^~337~^0.^0^^~4~^~PIK~^^^^^^^^^^~11/01/2014~
-~17454~^~338~^0.^0^^~4~^~PIK~^^^^^^^^^^~11/01/2014~
-~17454~^~601~^63.^0^^~1~^~PAK~^^^^^^^^^^~11/01/2014~
-~17455~^~208~^204.^0^^~4~^~PIK~^^^^^^^^^^~11/01/2014~
-~17455~^~262~^0.^0^^~4~^~PIK~^^^^^^^^^^~11/01/2014~
-~17455~^~263~^0.^0^^~4~^~PIK~^^^^^^^^^^~11/01/2014~
-~17455~^~268~^855.^0^^~4~^~PIK~^^^^^^^^^^~11/01/2014~
-~17455~^~301~^6.^0^^~1~^~PAK~^^^^^^^^^^~11/01/2014~
-~17455~^~304~^19.^0^^~1~^~PAK~^^^^^^^^^^~11/01/2014~
-~17455~^~305~^150.^0^^~1~^~PAK~^^^^^^^^^^~11/01/2014~
-~17455~^~306~^192.^0^^~1~^~PAK~^^^^^^^^^^~11/01/2014~
-~17455~^~307~^84.^0^^~1~^~PAK~^^^^^^^^^^~11/01/2014~
-~17455~^~318~^7.^0^^~4~^~PIK~^^^^^^^^^^~11/01/2014~
-~17455~^~319~^2.^0^^~4~^~PIK~^^^^^^^^^^~11/01/2014~
-~17455~^~320~^2.^0^^~4~^~PIK~^^^^^^^^^^~11/01/2014~
-~17455~^~321~^0.^0^^~4~^~PIK~^^^^^^^^^^~11/01/2014~
-~17455~^~322~^0.^0^^~4~^~PIK~^^^^^^^^^^~11/01/2014~
-~17455~^~324~^0.^0^^~1~^~PAK~^^^^^^^^^^~11/01/2014~
-~17455~^~334~^0.^0^^~4~^~PIK~^^^^^^^^^^~11/01/2014~
-~17455~^~337~^0.^0^^~4~^~PIK~^^^^^^^^^^~11/01/2014~
-~17455~^~338~^0.^0^^~4~^~PIK~^^^^^^^^^^~11/01/2014~
-~17455~^~601~^110.^0^^~1~^~PAK~^^^^^^^^^^~11/01/2014~
-~17456~^~208~^196.^0^^~4~^~PIK~^^^^^^^^^^~11/01/2014~
-~17456~^~262~^0.^0^^~4~^~PIK~^^^^^^^^^^~11/01/2014~
-~17456~^~263~^0.^0^^~4~^~PIK~^^^^^^^^^^~11/01/2014~
-~17456~^~268~^822.^0^^~4~^~PIK~^^^^^^^^^^~11/01/2014~
-~17456~^~301~^5.^0^^~1~^~PAK~^^^^^^^^^^~11/01/2014~
-~17456~^~304~^18.^0^^~1~^~PAK~^^^^^^^^^^~11/01/2014~
-~17456~^~305~^147.^0^^~1~^~PAK~^^^^^^^^^^~11/01/2014~
-~17456~^~306~^210.^0^^~1~^~PAK~^^^^^^^^^^~11/01/2014~
-~17456~^~307~^87.^0^^~1~^~PAK~^^^^^^^^^^~11/01/2014~
-~17456~^~318~^6.^0^^~4~^~PIK~^^^^^^^^^^~11/01/2014~
-~17456~^~319~^2.^0^^~4~^~PIK~^^^^^^^^^^~11/01/2014~
-~17456~^~320~^2.^0^^~4~^~PIK~^^^^^^^^^^~11/01/2014~
-~17456~^~321~^0.^0^^~4~^~PIK~^^^^^^^^^^~11/01/2014~
-~17456~^~322~^0.^0^^~4~^~PIK~^^^^^^^^^^~11/01/2014~
-~17456~^~324~^0.^0^^~1~^~PAK~^^^^^^^^^^~11/01/2014~
-~17456~^~334~^0.^0^^~4~^~PIK~^^^^^^^^^^~11/01/2014~
-~17456~^~337~^0.^0^^~4~^~PIK~^^^^^^^^^^~11/01/2014~
-~17456~^~338~^0.^0^^~4~^~PIK~^^^^^^^^^^~11/01/2014~
-~17456~^~601~^59.^0^^~1~^~PAK~^^^^^^^^^^~11/01/2014~
-~17457~^~208~^226.^0^^~4~^~PIK~^^^^^^^^^^~08/01/2015~
-~17457~^~262~^0.^0^^~4~^~PIK~^^^^^^^^^^~11/01/2014~
-~17457~^~263~^0.^0^^~4~^~PIK~^^^^^^^^^^~11/01/2014~
-~17457~^~268~^944.^0^^~4~^~PIK~^^^^^^^^^^~08/01/2015~
-~17457~^~301~^4.^0^^~1~^~PAK~^^^^^^^^^^~11/01/2014~
-~17457~^~304~^24.^0^^~1~^~PAK~^^^^^^^^^^~11/01/2014~
-~17457~^~305~^203.^0^^~1~^~PAK~^^^^^^^^^^~11/01/2014~
-~17457~^~306~^291.^0^^~1~^~PAK~^^^^^^^^^^~11/01/2014~
-~17457~^~307~^77.^0^^~1~^~PAK~^^^^^^^^^^~11/01/2014~
-~17457~^~318~^7.^0^^~4~^~PIK~^^^^^^^^^^~11/01/2014~
-~17457~^~319~^2.^0^^~4~^~PIK~^^^^^^^^^^~11/01/2014~
-~17457~^~320~^2.^0^^~4~^~PIK~^^^^^^^^^^~11/01/2014~
-~17457~^~321~^0.^0^^~4~^~PIK~^^^^^^^^^^~11/01/2014~
-~17457~^~322~^0.^0^^~4~^~PIK~^^^^^^^^^^~11/01/2014~
-~17457~^~324~^0.^0^^~1~^~PAK~^^^^^^^^^^~11/01/2014~
-~17457~^~334~^0.^0^^~4~^~PIK~^^^^^^^^^^~11/01/2014~
-~17457~^~337~^0.^0^^~4~^~PIK~^^^^^^^^^^~11/01/2014~
-~17457~^~338~^0.^0^^~4~^~PIK~^^^^^^^^^^~11/01/2014~
-~17457~^~601~^113.^0^^~1~^~PAK~^^^^^^^^^^~11/01/2014~
-~17458~^~208~^175.^0^^~4~^~PIK~^^^^^^^^^^~11/01/2014~
-~17458~^~262~^0.^0^^~4~^~PIK~^^^^^^^^^^~11/01/2014~
-~17458~^~263~^0.^0^^~4~^~PIK~^^^^^^^^^^~11/01/2014~
-~17458~^~268~^734.^0^^~4~^~PIK~^^^^^^^^^^~11/01/2014~
-~17458~^~301~^3.^0^^~1~^~PAK~^^^^^^^^^^~11/01/2014~
-~17458~^~304~^21.^0^^~1~^~PAK~^^^^^^^^^^~11/01/2014~
-~17458~^~305~^156.^0^^~1~^~PAK~^^^^^^^^^^~11/01/2014~
-~17458~^~306~^225.^0^^~1~^~PAK~^^^^^^^^^^~11/01/2014~
-~17458~^~307~^75.^0^^~1~^~PAK~^^^^^^^^^^~11/01/2014~
-~17458~^~318~^8.^0^^~4~^~PIK~^^^^^^^^^^~11/01/2014~
-~17458~^~319~^2.^0^^~4~^~PIK~^^^^^^^^^^~11/01/2014~
-~17458~^~320~^2.^0^^~4~^~PIK~^^^^^^^^^^~11/01/2014~
-~17458~^~321~^0.^0^^~4~^~PIK~^^^^^^^^^^~11/01/2014~
-~17458~^~322~^0.^0^^~4~^~PIK~^^^^^^^^^^~11/01/2014~
-~17458~^~324~^0.^0^^~1~^~PAK~^^^^^^^^^^~11/01/2014~
-~17458~^~334~^0.^0^^~4~^~PIK~^^^^^^^^^^~11/01/2014~
-~17458~^~337~^0.^0^^~4~^~PIK~^^^^^^^^^^~11/01/2014~
-~17458~^~338~^0.^0^^~4~^~PIK~^^^^^^^^^^~11/01/2014~
-~17458~^~601~^76.^0^^~1~^~PAK~^^^^^^^^^^~11/01/2014~
-~17459~^~208~^187.^0^^~4~^~PIK~^^^^^^^^^^~11/01/2014~
-~17459~^~262~^0.^0^^~4~^~PIK~^^^^^^^^^^~11/01/2014~
-~17459~^~263~^0.^0^^~4~^~PIK~^^^^^^^^^^~11/01/2014~
-~17459~^~268~^781.^0^^~4~^~PIK~^^^^^^^^^^~11/01/2014~
-~17459~^~301~^2.^0^^~1~^~PAK~^^^^^^^^^^~11/01/2014~
-~17459~^~304~^24.^0^^~1~^~PAK~^^^^^^^^^^~11/01/2014~
-~17459~^~305~^170.^0^^~1~^~PAK~^^^^^^^^^^~11/01/2014~
-~17459~^~306~^231.^0^^~1~^~PAK~^^^^^^^^^^~11/01/2014~
-~17459~^~307~^61.^0^^~1~^~PAK~^^^^^^^^^^~11/01/2014~
-~17459~^~318~^6.^0^^~4~^~PIK~^^^^^^^^^^~11/01/2014~
-~17459~^~319~^2.^0^^~4~^~PIK~^^^^^^^^^^~11/01/2014~
-~17459~^~320~^2.^0^^~4~^~PIK~^^^^^^^^^^~11/01/2014~
-~17459~^~321~^0.^0^^~4~^~PIK~^^^^^^^^^^~11/01/2014~
-~17459~^~322~^0.^0^^~4~^~PIK~^^^^^^^^^^~11/01/2014~
-~17459~^~324~^0.^0^^~1~^~PAK~^^^^^^^^^^~11/01/2014~
-~17459~^~334~^0.^0^^~4~^~PIK~^^^^^^^^^^~11/01/2014~
-~17459~^~337~^0.^0^^~4~^~PIK~^^^^^^^^^^~11/01/2014~
-~17459~^~338~^0.^0^^~4~^~PIK~^^^^^^^^^^~11/01/2014~
-~17459~^~601~^110.^0^^~1~^~PAK~^^^^^^^^^^~11/01/2014~
-~17460~^~208~^143.^0^^~4~^~NC~^^^^^^^^^^~11/01/2014~
-~17460~^~262~^0.^0^^~4~^~PIK~^^^^^^^^^^~11/01/2014~
-~17460~^~263~^0.^0^^~4~^~PIK~^^^^^^^^^^~11/01/2014~
-~17460~^~268~^597.^0^^~4~^~PIK~^^^^^^^^^^~11/01/2014~
-~17460~^~301~^2.^0^^~1~^~PAK~^^^^^^^^^^~11/01/2014~
-~17460~^~304~^26.^0^^~1~^~PAK~^^^^^^^^^^~11/01/2014~
-~17460~^~305~^208.^0^^~1~^~PAK~^^^^^^^^^^~11/01/2014~
-~17460~^~306~^308.^0^^~1~^~PAK~^^^^^^^^^^~11/01/2014~
-~17460~^~307~^73.^0^^~1~^~PAK~^^^^^^^^^^~11/01/2014~
-~17460~^~318~^5.^0^^~4~^~PIK~^^^^^^^^^^~11/01/2014~
-~17460~^~319~^1.^0^^~4~^~PIK~^^^^^^^^^^~11/01/2014~
-~17460~^~320~^1.^0^^~4~^~PIK~^^^^^^^^^^~11/01/2014~
-~17460~^~321~^0.^0^^~4~^~PIK~^^^^^^^^^^~11/01/2014~
-~17460~^~322~^0.^0^^~4~^~PIK~^^^^^^^^^^~11/01/2014~
-~17460~^~324~^0.^0^^~1~^~PAK~^^^^^^^^^^~11/01/2014~
-~17460~^~334~^0.^0^^~4~^~PIK~^^^^^^^^^^~11/01/2014~
-~17460~^~337~^0.^0^^~4~^~PIK~^^^^^^^^^^~11/01/2014~
-~17460~^~338~^0.^0^^~4~^~PIK~^^^^^^^^^^~11/01/2014~
-~17460~^~601~^76.^0^^~1~^~PAK~^^^^^^^^^^~11/01/2014~
-~17461~^~208~^236.^0^^~4~^~NC~^^^^^^^^^^~11/01/2014~
-~17461~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~11/01/2014~
-~17461~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~11/01/2014~
-~17461~^~268~^988.^0^^~4~^~NC~^^^^^^^^^^~11/01/2014~
-~17461~^~301~^10.^1^^~1~^~A~^^^^^^^^^^~11/01/2014~
-~17461~^~304~^28.^1^^~1~^~A~^^^^^^^^^^~11/01/2014~
-~17461~^~305~^220.^1^^~1~^~A~^^^^^^^^^^~11/01/2014~
-~17461~^~306~^294.^1^^~1~^~A~^^^^^^^^^^~11/01/2014~
-~17461~^~307~^85.^1^^~1~^~A~^^^^^^^^^^~11/01/2014~
-~17461~^~318~^15.^0^^~4~^~NC~^^^^^^^^^^~11/01/2014~
-~17461~^~319~^5.^0^^~4~^~BFSN~^~17396~^^^^^^^^^~11/01/2014~
-~17461~^~320~^5.^0^^~4~^~NC~^^^^^^^^^^~11/01/2014~
-~17461~^~321~^0.^0^^~7~^~Z~^^^^^^^^^^~11/01/2014~
-~17461~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~11/01/2014~
-~17461~^~324~^0.^0^^~4~^~BFYN~^~17316~^^^^^^^^^~12/01/2014~
-~17461~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~11/01/2014~
-~17461~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~11/01/2014~
-~17461~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~11/01/2014~
-~17461~^~601~^103.^1^^~1~^~A~^^^^^^^^^^~11/01/2014~
-~17462~^~208~^193.^0^^~4~^~PIK~^^^^^^^^^^~11/01/2014~
-~17462~^~262~^0.^0^^~4~^~PIK~^^^^^^^^^^~11/01/2014~
-~17462~^~263~^0.^0^^~4~^~PIK~^^^^^^^^^^~11/01/2014~
-~17462~^~268~^809.^0^^~4~^~PIK~^^^^^^^^^^~11/01/2014~
-~17462~^~301~^7.^0^^~1~^~PAK~^^^^^^^^^^~11/01/2014~
-~17462~^~304~^22.^0^^~1~^~PAK~^^^^^^^^^^~11/01/2014~
-~17462~^~305~^166.^0^^~1~^~PAK~^^^^^^^^^^~11/01/2014~
-~17462~^~306~^227.^0^^~1~^~PAK~^^^^^^^^^^~11/01/2014~
-~17462~^~307~^71.^0^^~1~^~PAK~^^^^^^^^^^~11/01/2014~
-~17462~^~318~^11.^0^^~4~^~PIK~^^^^^^^^^^~11/01/2014~
-~17462~^~319~^3.^0^^~4~^~PIK~^^^^^^^^^^~11/01/2014~
-~17462~^~320~^3.^0^^~4~^~PIK~^^^^^^^^^^~11/01/2014~
-~17462~^~321~^0.^0^^~4~^~PIK~^^^^^^^^^^~11/01/2014~
-~17462~^~322~^0.^0^^~4~^~PIK~^^^^^^^^^^~11/01/2014~
-~17462~^~324~^0.^0^^~1~^~PAK~^^^^^^^^^^~11/01/2014~
-~17462~^~334~^0.^0^^~4~^~PIK~^^^^^^^^^^~11/01/2014~
-~17462~^~337~^0.^0^^~4~^~PIK~^^^^^^^^^^~11/01/2014~
-~17462~^~338~^0.^0^^~4~^~PIK~^^^^^^^^^^~11/01/2014~
-~17462~^~601~^97.^0^^~1~^~PAK~^^^^^^^^^^~11/01/2014~
-~17463~^~208~^291.^0^^~4~^~NC~^^^^^^^^^^~11/01/2014~
-~17463~^~262~^0.^0^^~4~^~PIK~^^^^^^^^^^~11/01/2014~
-~17463~^~263~^0.^0^^~4~^~PIK~^^^^^^^^^^~11/01/2014~
-~17463~^~268~^1216.^0^^~4~^~NC~^^^^^^^^^^~11/01/2014~
-~17463~^~301~^7.^0^^~1~^~PAK~^^^^^^^^^^~11/01/2014~
-~17463~^~304~^21.^0^^~1~^~PAK~^^^^^^^^^^~11/01/2014~
-~17463~^~305~^166.^0^^~1~^~PAK~^^^^^^^^^^~11/01/2014~
-~17463~^~306~^228.^0^^~1~^~PAK~^^^^^^^^^^~11/01/2014~
-~17463~^~307~^65.^0^^~1~^~PAK~^^^^^^^^^^~11/01/2014~
-~17463~^~318~^12.^0^^~4~^~PIK~^^^^^^^^^^~11/01/2014~
-~17463~^~319~^4.^0^^~4~^~PIK~^^^^^^^^^^~11/01/2014~
-~17463~^~320~^4.^0^^~4~^~PIK~^^^^^^^^^^~11/01/2014~
-~17463~^~321~^0.^0^^~4~^~PIK~^^^^^^^^^^~11/01/2014~
-~17463~^~322~^0.^0^^~4~^~PIK~^^^^^^^^^^~11/01/2014~
-~17463~^~324~^0.^0^^~1~^~PAK~^^^^^^^^^^~11/01/2014~
-~17463~^~334~^0.^0^^~4~^~PIK~^^^^^^^^^^~11/01/2014~
-~17463~^~337~^0.^0^^~4~^~PIK~^^^^^^^^^^~11/01/2014~
-~17463~^~338~^0.^0^^~4~^~PIK~^^^^^^^^^^~11/01/2014~
-~17463~^~601~^97.^0^^~1~^~PAK~^^^^^^^^^^~11/01/2014~
-~17464~^~208~^276.^0^^~4~^~NC~^^^^^^^^^^~11/01/2014~
-~17464~^~262~^0.^0^^~4~^~PIK~^^^^^^^^^^~11/01/2014~
-~17464~^~263~^0.^0^^~4~^~PIK~^^^^^^^^^^~11/01/2014~
-~17464~^~268~^1156.^0^^~4~^~NC~^^^^^^^^^^~11/01/2014~
-~17464~^~301~^10.^0^^~1~^~PAK~^^^^^^^^^^~11/01/2014~
-~17464~^~304~^26.^0^^~1~^~PAK~^^^^^^^^^^~11/01/2014~
-~17464~^~305~^209.^0^^~1~^~PAK~^^^^^^^^^^~11/01/2014~
-~17464~^~306~^281.^0^^~1~^~PAK~^^^^^^^^^^~11/01/2014~
-~17464~^~307~^82.^0^^~1~^~PAK~^^^^^^^^^^~11/01/2014~
-~17464~^~318~^13.^0^^~4~^~PIK~^^^^^^^^^^~11/01/2014~
-~17464~^~319~^4.^0^^~4~^~PIK~^^^^^^^^^^~11/01/2014~
-~17464~^~320~^4.^0^^~4~^~PIK~^^^^^^^^^^~11/01/2014~
-~17464~^~321~^0.^0^^~4~^~PIK~^^^^^^^^^^~11/01/2014~
-~17464~^~322~^0.^0^^~4~^~PIK~^^^^^^^^^^~11/01/2014~
-~17464~^~324~^0.^0^^~4~^~PIK~^^^^^^^^^^~12/01/2014~
-~17464~^~334~^0.^0^^~4~^~PIK~^^^^^^^^^^~11/01/2014~
-~17464~^~337~^0.^0^^~4~^~PIK~^^^^^^^^^^~11/01/2014~
-~17464~^~338~^0.^0^^~4~^~PIK~^^^^^^^^^^~11/01/2014~
-~17464~^~601~^101.^0^^~1~^~PAK~^^^^^^^^^^~11/01/2014~
-~18001~^~208~^264.^0^^~4~^~NC~^^^^^^^^^^~03/01/2014~
-~18001~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2005~
-~18001~^~263~^0.^0^^~4~^~FLA~^^^^^^^^^^~02/01/2003~
-~18001~^~268~^1103.^0^^~4~^~NC~^^^^^^^^^^~03/01/2014~
-~18001~^~301~^219.^12^68.^~1~^~A~^^^1^99.^1043.^3^0.^437.^~2, 3~^~03/01/2014~
-~18001~^~304~^29.^12^1.^~1~^~A~^^^1^26.^45.^3^25.^33.^~2, 3~^~03/01/2014~
-~18001~^~305~^99.^12^7.^~1~^~A~^^^1^87.^183.^3^74.^122.^~2, 3~^~03/01/2014~
-~18001~^~306~^107.^12^4.^~1~^~A~^^^1^82.^166.^3^90.^123.^~2, 3~^~03/01/2014~
-~18001~^~307~^422.^12^7.^~1~^~A~^^^1^331.^479.^5^401.^442.^~2, 3~^~03/01/2014~
-~18001~^~318~^0.^0^^~4~^~FLA~^^^^^^^^^^~03/01/2014~
-~18001~^~319~^0.^0^^~4~^~FLA~^^^^^^^^^^~03/01/2005~
-~18001~^~320~^0.^0^^~4~^~FLA~^^^^^^^^^^~03/01/2005~
-~18001~^~321~^0.^0^^~4~^~FLA~^^^^^^^^^^~03/01/2005~
-~18001~^~322~^0.^0^^~4~^~FLA~^^^^^^^^^^~03/01/2005~
-~18001~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~
-~18001~^~334~^0.^0^^~4~^~FLA~^^^^^^^^^^~03/01/2005~
-~18001~^~337~^0.^0^^~4~^~FLA~^^^^^^^^^^~02/01/2003~
-~18001~^~338~^0.^0^^~4~^~FLA~^^^^^^^^^^~03/01/2014~
-~18001~^~417~^106.^6^4.^~1~^~A~^^^1^93.^119.^3^89.^121.^~2, 3~^~03/01/2014~
-~18001~^~431~^82.^0^^~4~^~FLA~^^^^^^^^^^~03/01/2014~
-~18001~^~432~^24.^0^^~4~^~FLA~^^^^^^^^^^~03/01/2014~
-~18001~^~435~^163.^0^^~4~^~NC~^^^^^^^^^^~03/01/2014~
-~18001~^~601~^0.^0^^~4~^~FLA~^^^^^^^^^^~03/01/2005~
-~18002~^~208~^287.^0^^~4~^~NC~^^^^^^^^^^~07/01/2015~
-~18002~^~262~^0.^0^^~4~^~RA~^^^^^^^^^^~02/01/2003~
-~18002~^~263~^0.^0^^~4~^~RA~^^^^^^^^^^~02/01/2003~
-~18002~^~268~^1201.^0^^~4~^~NC~^^^^^^^^^^~07/01/2015~
-~18002~^~301~^15.^2^^~1~^~A~^^^1^8.^23.^1^^^^~06/01/2015~
-~18002~^~304~^24.^2^^~1~^~A~^^^1^21.^27.^1^^^^~03/01/2005~
-~18002~^~305~^92.^2^^~1~^~A~^^^1^86.^99.^1^^^^~03/01/2005~
-~18002~^~306~^116.^0^^~4~^~BFSN~^~18001~^^^^^^^^^~07/01/2015~
-~18002~^~307~^457.^0^^~4~^~BFSN~^~18001~^^^^^^^^^~07/01/2015~
-~18002~^~318~^0.^0^^~4~^~RA~^^^^^^^^^^~03/01/2005~
-~18002~^~319~^0.^0^^~4~^~RA~^^^^^^^^^^~02/01/2003~
-~18002~^~320~^0.^0^^~4~^~RA~^^^^^^^^^^~03/01/2005~
-~18002~^~321~^0.^0^^~4~^~RA~^^^^^^^^^^~02/01/2003~
-~18002~^~322~^0.^0^^~4~^~RA~^^^^^^^^^^~02/01/2003~
-~18002~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~
-~18002~^~334~^0.^0^^~4~^~RA~^^^^^^^^^^~02/01/2003~
-~18002~^~337~^0.^0^^~4~^~RA~^^^^^^^^^^~02/01/2003~
-~18002~^~338~^55.^0^^~4~^~RA~^^^^^^^^^^~03/01/2005~
-~18002~^~417~^131.^2^^~1~^~A~^^^1^117.^144.^1^^^^~03/01/2005~
-~18002~^~431~^103.^2^^~1~^~A~^^^1^98.^108.^1^^^^~03/01/2005~
-~18002~^~432~^28.^0^^~1~^~AS~^^^^^^^^^^~03/01/2005~
-~18002~^~435~^203.^0^^~4~^~NC~^^^^^^^^^^~05/01/2009~
-~18002~^~601~^0.^0^^~4~^~RA~^^^^^^^^^^~03/01/2005~
-~18002~^~636~^0.^0^^~4~^~RA~^^^^^^^^^^~03/01/2005~
-~18003~^~208~^278.^0^^~4~^~NC~^^^^^^^^^^~08/01/1992~
-~18003~^~268~^1163.^0^^~4~^^^^^^^^^^^~05/01/2009~
-~18003~^~301~^13.^3^1.^~1~^^^^^^^^^^^~08/01/1992~
-~18003~^~304~^25.^2^^~1~^^^^^^^^^^^~12/01/2001~
-~18003~^~305~^84.^2^^~1~^^^^^^^^^^^~12/01/2001~
-~18003~^~306~^68.^2^^~1~^^^^^^^^^^^~12/01/2001~
-~18003~^~307~^505.^3^28.^~1~^^^^^^^^^^^~08/01/1992~
-~18003~^~318~^109.^1^^~1~^^^^^^^^^^^~08/01/1992~
-~18003~^~319~^33.^0^^~4~^~NC~^^^^^^^^^^~06/01/2002~
-~18003~^~320~^33.^0^^~4~^~NC~^^^^^^^^^^~06/01/2002~
-~18003~^~417~^88.^0^^~4~^~FLA~^^^^^^^^^^~03/01/1998~
-~18003~^~431~^66.^0^^~4~^~NC~^^^^^^^^^^~05/01/2000~
-~18003~^~432~^22.^8^0.^~1~^^^^^^^^^^^~08/01/1992~
-~18003~^~435~^134.^0^^~4~^~NC~^^^^^^^^^^~05/01/2009~
-~18003~^~601~^24.^1^^~1~^^^^^^^^^^^~08/01/1992~
-~18005~^~208~^274.^0^^~4~^~NC~^^^^^^^^^^~07/01/2012~
-~18005~^~262~^0.^0^^~4~^~FLA~^^^^^^^^^^~02/01/2003~
-~18005~^~263~^0.^0^^~4~^~FLA~^^^^^^^^^^~02/01/2003~
-~18005~^~268~^1146.^0^^~4~^^^^^^^^^^^~07/01/2012~
-~18005~^~301~^19.^1^^~1~^^^^^^^^^^^~08/01/1992~
-~18005~^~304~^28.^0^^~4~^~FLA~^^^^^^^^^^~10/01/1997~
-~18005~^~305~^100.^0^^~4~^~FLA~^^^^^^^^^^~10/01/1997~
-~18005~^~306~^148.^0^^~4~^~FLA~^^^^^^^^^^~10/01/1997~
-~18005~^~307~^407.^0^^~4~^~NR~^^^^^^^^^^~07/01/2017~
-~18005~^~318~^73.^1^^~1~^^^^^^^^^^^~08/01/1992~
-~18005~^~319~^21.^0^^~4~^~FLA~^^^^^^^^^^~02/01/2003~
-~18005~^~320~^21.^0^^~4~^~FLA~^^^^^^^^^^~07/01/2012~
-~18005~^~321~^1.^0^^~4~^~FLA~^^^^^^^^^^~02/01/2003~
-~18005~^~322~^0.^0^^~4~^~FLA~^^^^^^^^^^~02/01/2003~
-~18005~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~
-~18005~^~334~^2.^0^^~4~^~FLA~^^^^^^^^^^~02/01/2003~
-~18005~^~337~^0.^0^^~4~^~FLA~^^^^^^^^^^~02/01/2003~
-~18005~^~338~^54.^0^^~4~^~FLA~^^^^^^^^^^~02/01/2003~
-~18005~^~417~^111.^0^^~4~^~FLA~^^^^^^^^^^~07/01/2012~
-~18005~^~431~^90.^0^^~4~^~NR~^^^^^^^^^^~07/01/2012~
-~18005~^~432~^21.^0^^~4~^~NR~^^^^^^^^^^~08/01/1992~
-~18005~^~435~^174.^0^^~4~^~NC~^^^^^^^^^^~07/01/2012~
-~18005~^~601~^0.^1^^~1~^^^^^^^^^^^~08/01/1992~
-~18006~^~208~^294.^0^^~4~^^^^^^^^^^^~08/01/1992~
-~18006~^~262~^0.^0^^~4~^~RA~^^^^^^^^^^~02/01/2003~
-~18006~^~263~^0.^0^^~4~^~RA~^^^^^^^^^^~02/01/2003~
-~18006~^~268~^1230.^0^^~4~^^^^^^^^^^^~04/01/2005~
-~18006~^~301~^20.^0^^~4~^^^^^^^^^^^~08/01/1992~
-~18006~^~304~^23.^0^^~4~^^^^^^^^^^^~08/01/1992~
-~18006~^~305~^83.^0^^~4~^^^^^^^^^^^~08/01/1992~
-~18006~^~306~^163.^0^^~4~^^^^^^^^^^^~08/01/1992~
-~18006~^~307~^370.^0^^~4~^~BFSN~^~18005~^^^^^^^^^~07/01/2012~
-~18006~^~318~^71.^0^^~4~^^^^^^^^^^^~08/01/1992~
-~18006~^~319~^23.^0^^~4~^~RA~^^^^^^^^^^~02/01/2003~
-~18006~^~320~^23.^0^^~4~^~RA~^^^^^^^^^^~04/01/2003~
-~18006~^~321~^1.^0^^~4~^~RA~^^^^^^^^^^~02/01/2003~
-~18006~^~322~^0.^0^^~4~^~RA~^^^^^^^^^^~02/01/2003~
-~18006~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~
-~18006~^~334~^2.^0^^~4~^~RA~^^^^^^^^^^~02/01/2003~
-~18006~^~337~^0.^0^^~4~^~RA~^^^^^^^^^^~02/01/2003~
-~18006~^~338~^56.^0^^~4~^~RA~^^^^^^^^^^~02/01/2003~
-~18006~^~417~^102.^0^^~4~^~RA~^^^^^^^^^^~02/01/2003~
-~18006~^~431~^86.^0^^~4~^~NR~^^^^^^^^^^~04/01/2003~
-~18006~^~432~^16.^0^^~4~^~NC~^^^^^^^^^^~08/01/1992~
-~18006~^~435~^162.^0^^~4~^~NC~^^^^^^^^^^~05/01/2009~
-~18006~^~601~^0.^0^^~4~^^^^^^^^^^^~08/01/1992~
-~18007~^~208~^255.^0^^~4~^~NC~^^^^^^^^^^~08/01/1992~
-~18007~^~262~^0.^0^^~4~^~FLA~^^^^^^^^^^~02/01/2003~
-~18007~^~263~^0.^0^^~4~^~FLA~^^^^^^^^^^~02/01/2003~
-~18007~^~268~^1067.^0^^~4~^^^^^^^^^^^~01/01/2005~
-~18007~^~301~^12.^1^^~1~^^^^^^^^^^^~08/01/1992~
-~18007~^~304~^31.^0^^~4~^~FLA~^^^^^^^^^^~10/01/1997~
-~18007~^~305~^110.^0^^~4~^~FLA~^^^^^^^^^^~10/01/1997~
-~18007~^~306~^115.^0^^~4~^~FLA~^^^^^^^^^^~10/01/1997~
-~18007~^~307~^590.^0^^~8~^~LC~^^^^^^^^^^~05/01/2010~
-~18007~^~318~^4.^1^^~1~^^^^^^^^^^^~08/01/1992~
-~18007~^~319~^1.^0^^~4~^~FLA~^^^^^^^^^^~02/01/2003~
-~18007~^~320~^1.^0^^~4~^~NC~^^^^^^^^^^~02/01/2003~
-~18007~^~321~^1.^0^^~4~^~FLA~^^^^^^^^^^~02/01/2003~
-~18007~^~322~^0.^0^^~4~^~FLA~^^^^^^^^^^~02/01/2003~
-~18007~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~
-~18007~^~334~^0.^0^^~4~^~FLA~^^^^^^^^^^~02/01/2003~
-~18007~^~337~^0.^0^^~4~^~FLA~^^^^^^^^^^~02/01/2003~
-~18007~^~338~^58.^0^^~4~^~FLA~^^^^^^^^^^~02/01/2003~
-~18007~^~417~^98.^0^^~4~^~FLA~^^^^^^^^^^~02/01/2003~
-~18007~^~431~^52.^0^^~4~^^^^^^^^^^^~02/01/2003~
-~18007~^~432~^46.^0^^~4~^^^^^^^^^^^~08/01/1992~
-~18007~^~435~^134.^0^^~4~^~NC~^^^^^^^^^^~05/01/2009~
-~18007~^~601~^0.^1^^~1~^^^^^^^^^^^~08/01/1992~
-~18009~^~208~^338.^0^^~4~^~NC~^^^^^^^^^^~05/01/2013~
-~18009~^~262~^0.^0^^~4~^~FLA~^^^^^^^^^^~02/01/2003~
-~18009~^~263~^0.^0^^~4~^~FLA~^^^^^^^^^^~02/01/2003~
-~18009~^~268~^1414.^0^^~4~^~NC~^^^^^^^^^^~05/01/2013~
-~18009~^~301~^49.^23^6.^~1~^^^^^^^^^^^~08/01/1992~
-~18009~^~304~^17.^20^0.^~1~^^^^^^^^^^^~08/01/1992~
-~18009~^~305~^430.^20^35.^~1~^^^^^^^^^^^~08/01/1992~
-~18009~^~306~^224.^20^24.^~1~^^^^^^^^^^^~08/01/1992~
-~18009~^~307~^942.^0^^~8~^~LC~^^^^^^^^^^~05/01/2013~
-~18009~^~318~^2.^0^^~4~^~FLA~^^^^^^^^^^~08/01/1992~
-~18009~^~319~^0.^0^^~4~^~FLA~^^^^^^^^^^~02/01/2003~
-~18009~^~320~^0.^0^^~4~^~NC~^^^^^^^^^^~01/01/2005~
-~18009~^~321~^0.^0^^~4~^~FLA~^^^^^^^^^^~02/01/2003~
-~18009~^~322~^0.^0^^~4~^~FLA~^^^^^^^^^^~02/01/2003~
-~18009~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~
-~18009~^~334~^0.^0^^~4~^~FLA~^^^^^^^^^^~02/01/2003~
-~18009~^~337~^0.^0^^~4~^~FLA~^^^^^^^^^^~02/01/2003~
-~18009~^~338~^9.^0^^~4~^~FLA~^^^^^^^^^^~02/01/2003~
-~18009~^~417~^70.^0^^~4~^~FLA~^^^^^^^^^^~02/01/2003~
-~18009~^~431~^58.^0^^~4~^~FLA~^^^^^^^^^^~05/01/2013~
-~18009~^~432~^12.^0^^~4~^~NC~^^^^^^^^^^~05/01/2013~
-~18009~^~435~^111.^0^^~4~^~NC~^^^^^^^^^^~05/01/2013~
-~18009~^~601~^1.^0^^~4~^~FLA~^^^^^^^^^^~10/01/1997~
-~18010~^~208~^428.^0^^~4~^~NC~^^^^^^^^^^~10/01/2010~
-~18010~^~262~^0.^0^^~4~^~FLA~^^^^^^^^^^~02/01/2003~
-~18010~^~263~^0.^0^^~4~^~FLA~^^^^^^^^^^~02/01/2003~
-~18010~^~268~^1792.^0^^~4~^~NC~^^^^^^^^^^~04/01/2013~
-~18010~^~301~^179.^4^17.^~1~^^^^^^^^^^^~08/01/1992~
-~18010~^~304~^25.^12^0.^~1~^^^^^^^^^^^~08/01/1992~
-~18010~^~305~^585.^4^45.^~1~^^^^^^^^^^^~08/01/1992~
-~18010~^~306~^163.^4^22.^~1~^^^^^^^^^^^~08/01/1992~
-~18010~^~307~^1276.^4^74.^~1~^^^^^^^^^^^~10/01/2010~
-~18010~^~318~^4.^0^^~4~^^^^^^^^^^^~10/01/2010~
-~18010~^~319~^2.^0^^~4~^~FLA~^^^^^^^^^^~02/01/2003~
-~18010~^~320~^2.^0^^~4~^~NC~^^^^^^^^^^~04/01/2011~
-~18010~^~321~^0.^0^^~4~^~FLA~^^^^^^^^^^~01/01/2007~
-~18010~^~322~^0.^0^^~4~^~FLA~^^^^^^^^^^~02/01/2003~
-~18010~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~
-~18010~^~334~^0.^0^^~4~^~FLA~^^^^^^^^^^~02/01/2003~
-~18010~^~337~^0.^0^^~4~^~FLA~^^^^^^^^^^~02/01/2003~
-~18010~^~338~^2.^0^^~4~^~FLA~^^^^^^^^^^~02/01/2003~
-~18010~^~417~^125.^0^^~4~^~FLA~^^^^^^^^^^~02/01/2003~
-~18010~^~431~^91.^0^^~4~^~FLA~^^^^^^^^^^~04/01/2011~
-~18010~^~432~^34.^0^^~4~^~FLA~^^^^^^^^^^~04/01/2011~
-~18010~^~435~^189.^0^^~4~^~NC~^^^^^^^^^^~04/01/2011~
-~18010~^~601~^2.^0^^~4~^~FLA~^^^^^^^^^^~11/01/1997~
-~18011~^~208~^335.^0^^~4~^~NC~^^^^^^^^^^~08/01/1992~
-~18011~^~268~^1402.^0^^~4~^^^^^^^^^^^
-~18011~^~301~^185.^0^^~1~^^^^^^^^^^^~08/01/1992~
-~18011~^~304~^25.^0^^~1~^^^^^^^^^^^~08/01/1992~
-~18011~^~305~^470.^0^^~1~^^^^^^^^^^^~08/01/1992~
-~18011~^~306~^188.^0^^~1~^^^^^^^^^^^~08/01/1992~
-~18011~^~307~^955.^0^^~1~^^^^^^^^^^^~08/01/1992~
-~18011~^~318~^94.^0^^~4~^^^^^^^^^^^~08/01/1992~
-~18011~^~319~^25.^0^^~4~^~NC~^^^^^^^^^^~06/01/2002~
-~18011~^~320~^26.^0^^~4~^~NC~^^^^^^^^^^~06/01/2002~
-~18011~^~417~^52.^0^^~4~^~RP~^^^^^^^^^^~11/01/1998~
-~18011~^~431~^46.^0^^~4~^~NC~^^^^^^^^^^~05/01/2000~
-~18011~^~432~^6.^0^^~1~^^^^^^^^^^^~08/01/1992~
-~18011~^~435~^84.^0^^~4~^~NC~^^^^^^^^^^~01/01/2001~
-~18011~^~601~^4.^0^^~4~^^^^^^^^^^^~08/01/1992~
-~18012~^~208~^270.^0^^~4~^~NC~^^^^^^^^^^~05/01/2013~
-~18012~^~262~^0.^0^^~4~^~FLA~^^^^^^^^^^~02/01/2003~
-~18012~^~263~^0.^0^^~4~^~FLA~^^^^^^^^^^~02/01/2003~
-~18012~^~268~^1132.^0^^~4~^~NC~^^^^^^^^^^~05/01/2013~
-~18012~^~301~^26.^2^^~9~^~MC~^^^1^25.^27.^1^^^^~04/01/2012~
-~18012~^~304~^15.^23^0.^~1~^^^^^^^^^^^~08/01/1992~
-~18012~^~305~^400.^23^14.^~1~^^^^^^^^^^^~08/01/1992~
-~18012~^~306~^159.^19^32.^~1~^^^^^^^^^^^~08/01/1992~
-~18012~^~307~^828.^0^^~4~^~NR~^^^^^^^^^^~07/01/2015~
-~18012~^~318~^0.^2^^~9~^~MC~^^^1^0.^0.^1^^^^~04/01/2012~
-~18012~^~319~^0.^0^^~4~^~FLA~^^^^^^^^^^~02/01/2003~
-~18012~^~320~^0.^0^^~4~^~NC~^^^^^^^^^^~01/01/2005~
-~18012~^~321~^0.^0^^~7~^~Z~^^^^^^^^^^~12/01/2003~
-~18012~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~12/01/2003~
-~18012~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~
-~18012~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~12/01/2003~
-~18012~^~337~^0.^0^^~4~^~FLA~^^^^^^^^^^~02/01/2003~
-~18012~^~338~^10.^0^^~4~^~FLA~^^^^^^^^^^~02/01/2003~
-~18012~^~417~^85.^0^^~4~^~FLA~^^^^^^^^^^~04/01/2012~
-~18012~^~431~^79.^0^^~4~^~NC~^^^^^^^^^^~04/01/2012~
-~18012~^~432~^6.^0^^~4~^^^^^^^^^^^~08/01/1992~
-~18012~^~435~^140.^0^^~4~^~NC~^^^^^^^^^^~04/01/2012~
-~18012~^~601~^0.^2^^~9~^~MC~^^^1^0.^0.^1^^^^~04/01/2012~
-~18013~^~208~^319.^0^^~4~^~NC~^^^^^^^^^^~07/01/2015~
-~18013~^~262~^0.^0^^~4~^~RK~^^^^^^^^^^~02/01/2003~
-~18013~^~263~^0.^0^^~4~^~RK~^^^^^^^^^^~02/01/2003~
-~18013~^~268~^1337.^0^^~4~^~NC~^^^^^^^^^^~07/01/2015~
-~18013~^~301~^19.^0^^~1~^^^^^^^^^^^~08/01/1992~
-~18013~^~304~^17.^0^^~1~^^^^^^^^^^^~08/01/1992~
-~18013~^~305~^465.^0^^~1~^^^^^^^^^^^~08/01/1992~
-~18013~^~306~^185.^0^^~4~^~BFSN~^~18012~^^^^^^^^^~07/01/2015~
-~18013~^~307~^962.^0^^~4~^~BFSN~^~18012~^^^^^^^^^~07/01/2015~
-~18013~^~318~^0.^0^^~1~^^^^^^^^^^^~08/01/1992~
-~18013~^~319~^0.^0^^~4~^~RK~^^^^^^^^^^~02/01/2003~
-~18013~^~320~^0.^0^^~4~^~NC~^^^^^^^^^^~02/01/2006~
-~18013~^~321~^0.^0^^~4~^~RK~^^^^^^^^^^~02/01/2003~
-~18013~^~322~^0.^0^^~4~^~RK~^^^^^^^^^^~02/01/2003~
-~18013~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~
-~18013~^~334~^0.^0^^~4~^~RK~^^^^^^^^^^~02/01/2003~
-~18013~^~337~^0.^0^^~4~^~RK~^^^^^^^^^^~02/01/2003~
-~18013~^~338~^11.^0^^~4~^~RK~^^^^^^^^^^~02/01/2003~
-~18013~^~417~^83.^0^^~4~^~RK~^^^^^^^^^^~02/01/2003~
-~18013~^~431~^78.^0^^~4~^~RK~^^^^^^^^^^~02/01/2003~
-~18013~^~432~^5.^0^^~4~^^^^^^^^^^^~08/01/1992~
-~18013~^~435~^138.^0^^~4~^~NC~^^^^^^^^^^~03/01/2006~
-~18013~^~601~^0.^0^^~1~^^^^^^^^^^^~08/01/1992~
-~18014~^~208~^307.^0^^~4~^~NC~^^^^^^^^^^~05/01/2013~
-~18014~^~262~^0.^0^^~4~^~FLA~^^^^^^^^^^~11/01/2005~
-~18014~^~263~^0.^0^^~4~^~FLA~^^^^^^^^^^~11/01/2005~
-~18014~^~268~^1285.^0^^~4~^~NC~^^^^^^^^^^~05/01/2013~
-~18014~^~301~^51.^6^4.^~1~^~A~^^^1^34.^65.^5^39.^61.^~2, 3~^~11/01/2005~
-~18014~^~304~^17.^6^0.^~1~^~A~^^^1^16.^18.^5^15.^17.^~2, 3~^~11/01/2005~
-~18014~^~305~^470.^6^7.^~1~^~A~^^^1^453.^496.^5^450.^489.^~2, 3~^~11/01/2005~
-~18014~^~306~^162.^5^11.^~1~^~A~^^^1^133.^193.^4^130.^192.^~2, 3~^~11/01/2005~
-~18014~^~307~^977.^2^^~9~^~MC~^^^1^943.^1011.^1^^^^~04/01/2012~
-~18014~^~318~^8.^0^^~4~^~FLA~^^^^^^^^^^~11/01/2005~
-~18014~^~319~^2.^0^^~4~^~FLA~^^^^^^^^^^~11/01/2005~
-~18014~^~320~^2.^0^^~4~^~FLA~^^^^^^^^^^~11/01/2005~
-~18014~^~321~^0.^0^^~4~^~FLA~^^^^^^^^^^~11/01/2005~
-~18014~^~322~^0.^0^^~4~^~FLA~^^^^^^^^^^~11/01/2005~
-~18014~^~334~^0.^0^^~4~^~FLA~^^^^^^^^^^~11/01/2005~
-~18014~^~337~^0.^0^^~4~^~FLA~^^^^^^^^^^~11/01/2005~
-~18014~^~338~^8.^0^^~4~^~FLA~^^^^^^^^^^~11/01/2005~
-~18014~^~417~^57.^0^^~4~^~FLA~^^^^^^^^^^~11/01/2005~
-~18014~^~431~^46.^0^^~4~^~FLA~^^^^^^^^^^~11/01/2005~
-~18014~^~432~^11.^0^^~4~^~FLA~^^^^^^^^^^~11/01/2005~
-~18014~^~435~^89.^0^^~4~^~NC~^^^^^^^^^^~11/01/2005~
-~18014~^~601~^1.^0^^~4~^~FLA~^^^^^^^^^^~11/01/2005~
-~18015~^~208~^324.^0^^~4~^~NC~^^^^^^^^^^~03/01/2014~
-~18015~^~262~^0.^0^^~4~^~FLA~^^^^^^^^^^~11/01/2005~
-~18015~^~263~^0.^0^^~4~^~FLA~^^^^^^^^^^~11/01/2005~
-~18015~^~268~^1357.^0^^~4~^~NC~^^^^^^^^^^~03/01/2014~
-~18015~^~301~^27.^12^0.^~1~^~A~^^^1^25.^36.^10^25.^28.^~2, 3~^~03/01/2014~
-~18015~^~304~^18.^12^0.^~1~^~A~^^^1^15.^19.^7^16.^18.^~2, 3~^~11/01/2005~
-~18015~^~305~^446.^12^4.^~1~^~A~^^^1^420.^496.^10^435.^455.^~2, 3~^~03/01/2014~
-~18015~^~306~^152.^12^10.^~1~^~A~^^^1^108.^325.^7^126.^176.^~2, 3~^~03/01/2014~
-~18015~^~307~^1002.^12^20.^~1~^~A~^^^1^808.^1130.^9^956.^1048.^~2, 3~^~03/01/2014~
-~18015~^~318~^2.^0^^~1~^~AS~^^^^^^^^^^~03/01/2014~
-~18015~^~319~^0.^2^^~1~^~A~^^^1^0.^0.^^^^^~03/01/2014~
-~18015~^~320~^0.^0^^~1~^~AS~^^^^^^^^^^~03/01/2014~
-~18015~^~321~^0.^0^^~4~^~FLA~^^^^^^^^^^~11/01/2005~
-~18015~^~322~^0.^0^^~4~^~FLA~^^^^^^^^^^~11/01/2005~
-~18015~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~
-~18015~^~334~^0.^0^^~4~^~FLA~^^^^^^^^^^~11/01/2005~
-~18015~^~337~^0.^0^^~4~^~FLA~^^^^^^^^^^~11/01/2005~
-~18015~^~338~^8.^0^^~4~^~FLA~^^^^^^^^^^~03/01/2014~
-~18015~^~417~^63.^6^2.^~1~^~A~^^^1^49.^71.^4^55.^70.^~2, 3~^~03/01/2014~
-~18015~^~431~^53.^0^^~4~^~FLA~^^^^^^^^^^~03/01/2014~
-~18015~^~432~^10.^0^^~4~^~FLA~^^^^^^^^^^~03/01/2014~
-~18015~^~435~^100.^0^^~4~^~NC~^^^^^^^^^^~03/01/2014~
-~18015~^~601~^0.^0^^~4~^~FLA~^^^^^^^^^^~03/01/2014~
-~18016~^~208~^353.^0^^~4~^~NC~^^^^^^^^^^~01/01/2005~
-~18016~^~268~^1477.^0^^~4~^~NC~^^^^^^^^^^~01/01/2005~
-~18016~^~301~^235.^0^^~1~^^^^^^^^^^^~08/01/1992~
-~18016~^~304~^18.^0^^~1~^^^^^^^^^^^~08/01/1992~
-~18016~^~305~^164.^0^^~1~^^^^^^^^^^^~08/01/1992~
-~18016~^~306~^121.^0^^~1~^^^^^^^^^^^~08/01/1992~
-~18016~^~307~^580.^0^^~1~^^^^^^^^^^^~08/01/1992~
-~18016~^~318~^82.^0^^~1~^^^^^^^^^^^~08/01/1992~
-~18016~^~417~^61.^0^^~4~^~RK~^^^^^^^^^^~12/01/1997~
-~18016~^~431~^49.^0^^~4~^~NC~^^^^^^^^^^~05/01/2000~
-~18016~^~432~^12.^0^^~1~^^^^^^^^^^^~08/01/1992~
-~18016~^~435~^95.^0^^~4~^~NC~^^^^^^^^^^~01/01/2005~
-~18016~^~601~^3.^0^^~1~^^^^^^^^^^^~08/01/1992~
-~18016~^~636~^30.^0^^~1~^^^^^^^^^^^~08/01/1992~
-~18017~^~208~^263.^0^^~4~^~NC~^^^^^^^^^^~08/01/1992~
-~18017~^~268~^1100.^0^^~4~^^^^^^^^^^^
-~18017~^~301~^17.^1^^~1~^^^^^^^^^^^~08/01/1992~
-~18017~^~304~^30.^0^^~4~^~FLA~^^^^^^^^^^~11/01/1997~
-~18017~^~305~^236.^0^^~4~^~FLA~^^^^^^^^^^~11/01/1997~
-~18017~^~306~^456.^1^^~1~^^^^^^^^^^^~08/01/1992~
-~18017~^~307~^670.^1^^~1~^^^^^^^^^^^~08/01/1992~
-~18017~^~318~^0.^0^^~1~^^^^^^^^^^^~08/01/1992~
-~18017~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2002~
-~18017~^~320~^0.^0^^~4~^~NC~^^^^^^^^^^~06/01/2002~
-~18017~^~417~^83.^0^^~4~^~FLA~^^^^^^^^^^~11/01/1997~
-~18017~^~431~^71.^0^^~4~^~NC~^^^^^^^^^^~05/01/2000~
-~18017~^~432~^12.^0^^~4~^^^^^^^^^^^~08/01/1992~
-~18017~^~435~^133.^0^^~4~^~NC~^^^^^^^^^^~01/01/2001~
-~18017~^~601~^0.^1^^~1~^^^^^^^^^^^~08/01/1992~
-~18019~^~208~^326.^0^^~4~^~NC~^^^^^^^^^^~08/01/1992~
-~18019~^~262~^0.^0^^~4~^~RK~^^^^^^^^^^~04/01/2002~
-~18019~^~263~^0.^0^^~4~^~RK~^^^^^^^^^^~04/01/2002~
-~18019~^~268~^1364.^0^^~4~^^^^^^^^^^^
-~18019~^~301~^21.^0^^~1~^^^^^^^^^^^~08/01/1992~
-~18019~^~304~^14.^0^^~1~^^^^^^^^^^^~08/01/1992~
-~18019~^~305~^58.^0^^~1~^^^^^^^^^^^~08/01/1992~
-~18019~^~306~^134.^0^^~1~^^^^^^^^^^^~08/01/1992~
-~18019~^~307~^302.^0^^~1~^^^^^^^^^^^~08/01/1992~
-~18019~^~318~^493.^0^^~4~^~NC~^^^^^^^^^^~04/01/2002~
-~18019~^~319~^97.^0^^~4~^~RK~^^^^^^^^^^~04/01/2002~
-~18019~^~320~^106.^0^^~4~^~NC~^^^^^^^^^^~04/01/2002~
-~18019~^~321~^102.^0^^~4~^~RK~^^^^^^^^^^~04/01/2002~
-~18019~^~417~^33.^0^^~4~^~RK~^^^^^^^^^^~12/01/1997~
-~18019~^~431~^22.^0^^~4~^~NC~^^^^^^^^^^~05/01/2000~
-~18019~^~432~^11.^0^^~1~^^^^^^^^^^^~08/01/1992~
-~18019~^~435~^48.^0^^~4~^~NC~^^^^^^^^^^~04/01/2002~
-~18019~^~601~^43.^0^^~1~^^^^^^^^^^^~08/01/1992~
-~18019~^~636~^34.^0^^~1~^^^^^^^^^^^~08/01/1992~
-~18021~^~208~^195.^0^^~4~^~NC~^^^^^^^^^^~01/01/2005~
-~18021~^~262~^0.^0^^~4~^~FLA~^^^^^^^^^^~02/01/2003~
-~18021~^~263~^0.^0^^~4~^~FLA~^^^^^^^^^^~02/01/2003~
-~18021~^~268~^817.^0^^~4~^~NC~^^^^^^^^^^~01/01/2005~
-~18021~^~301~^70.^3^20.^~1~^^^^^^^^^^^~08/01/1992~
-~18021~^~304~^63.^3^13.^~1~^^^^^^^^^^^~08/01/1992~
-~18021~^~305~^112.^2^^~1~^^^^^^^^^^^~08/01/1992~
-~18021~^~306~^318.^3^66.^~1~^^^^^^^^^^^~08/01/1992~
-~18021~^~307~^631.^3^109.^~1~^^^^^^^^^^^~08/01/1992~
-~18021~^~318~^87.^1^^~1~^^^^^^^^^^^~01/01/2005~
-~18021~^~319~^25.^0^^~4~^~FLA~^^^^^^^^^^~02/01/2003~
-~18021~^~320~^25.^0^^~4~^~NC~^^^^^^^^^^~01/01/2005~
-~18021~^~321~^2.^0^^~4~^~FLA~^^^^^^^^^^~02/01/2003~
-~18021~^~322~^1.^0^^~4~^~FLA~^^^^^^^^^^~02/01/2003~
-~18021~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~
-~18021~^~334~^0.^0^^~4~^~FLA~^^^^^^^^^^~02/01/2003~
-~18021~^~337~^0.^0^^~4~^~FLA~^^^^^^^^^^~02/01/2003~
-~18021~^~338~^71.^0^^~4~^~FLA~^^^^^^^^^^~02/01/2003~
-~18021~^~417~^11.^0^^~4~^~FLA~^^^^^^^^^^~03/01/1998~
-~18021~^~431~^4.^0^^~4~^~NC~^^^^^^^^^^~05/01/2000~
-~18021~^~432~^7.^9^0.^~1~^^^^^^^^^^^~08/01/1992~
-~18021~^~435~^14.^0^^~4~^~NC~^^^^^^^^^^~01/01/2007~
-~18021~^~601~^1.^0^^~4~^~FLA~^^^^^^^^^^~10/01/1997~
-~18022~^~208~^418.^0^^~4~^~NC~^^^^^^^^^^~08/01/1992~
-~18022~^~262~^0.^0^^~4~^~FLA~^^^^^^^^^^~02/01/2003~
-~18022~^~263~^0.^0^^~4~^~FLA~^^^^^^^^^^~02/01/2003~
-~18022~^~268~^1749.^0^^~4~^^^^^^^^^^^~01/01/2005~
-~18022~^~301~^57.^29^3.^~1~^^^^^^^^^^^~08/01/1992~
-~18022~^~304~^24.^21^1.^~1~^^^^^^^^^^^~08/01/1992~
-~18022~^~305~^489.^45^11.^~1~^^^^^^^^^^^~08/01/1992~
-~18022~^~306~^113.^43^3.^~1~^^^^^^^^^^^~08/01/1992~
-~18022~^~307~^817.^0^^~8~^~LC~^^^^^^^^^^~05/01/2010~
-~18022~^~318~^115.^0^^~4~^~NC~^^^^^^^^^^~02/01/2003~
-~18022~^~319~^16.^0^^~4~^~FLA~^^^^^^^^^^~02/01/2003~
-~18022~^~320~^19.^0^^~4~^~NC~^^^^^^^^^^~02/01/2003~
-~18022~^~321~^28.^0^^~4~^~FLA~^^^^^^^^^^~02/01/2003~
-~18022~^~322~^18.^0^^~4~^~FLA~^^^^^^^^^^~02/01/2003~
-~18022~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~
-~18022~^~334~^0.^0^^~4~^~FLA~^^^^^^^^^^~02/01/2003~
-~18022~^~337~^0.^0^^~4~^~FLA~^^^^^^^^^^~02/01/2003~
-~18022~^~338~^391.^0^^~4~^~FLA~^^^^^^^^^^~02/01/2003~
-~18022~^~417~^93.^0^^~4~^~FLA~^^^^^^^^^^~05/01/2003~
-~18022~^~431~^82.^0^^~4~^~FLA~^^^^^^^^^^~05/01/2003~
-~18022~^~432~^11.^13^0.^~1~^^^^^^^^^^^~08/01/1992~
-~18022~^~435~^150.^0^^~4~^~NC~^^^^^^^^^^~01/01/2007~
-~18022~^~601~^2.^0^^~4~^~FLA~^^^^^^^^^^~11/01/1997~
-~18023~^~208~^330.^0^^~4~^~NC~^^^^^^^^^^~08/01/2012~
-~18023~^~262~^0.^0^^~4~^~BFZN~^~18022~^^^^^^^^^~06/01/2013~
-~18023~^~263~^0.^0^^~4~^~BFZN~^~18022~^^^^^^^^^~06/01/2013~
-~18023~^~268~^1383.^0^^~4~^~NC~^^^^^^^^^^~07/01/2014~
-~18023~^~301~^135.^12^1.^~1~^~A~^^^1^49.^147.^5^130.^138.^~2, 3~^~07/01/2014~
-~18023~^~304~^17.^12^0.^~1~^~A~^^^1^15.^18.^5^15.^17.^~2, 3~^~08/01/2012~
-~18023~^~305~^391.^12^2.^~1~^~A~^^^1^285.^411.^5^383.^398.^~2, 3~^~07/01/2014~
-~18023~^~306~^133.^12^1.^~1~^~A~^^^1^126.^142.^5^127.^137.^~2, 3~^~08/01/2012~
-~18023~^~307~^599.^12^7.^~1~^~A~^^^1^511.^632.^5^579.^618.^~2, 3~^~08/01/2012~
-~18023~^~318~^168.^0^^~1~^~AS~^^^^^^^^^^~07/01/2014~
-~18023~^~319~^31.^2^^~1~^~A~^^^1^30.^80.^^^^^~08/01/2012~
-~18023~^~320~^35.^0^^~1~^~AS~^^^^^^^^^^~07/01/2014~
-~18023~^~321~^26.^1^^~1~^~A~^^^^^^^^^^~08/01/2012~
-~18023~^~322~^3.^1^^~1~^~A~^^^^^^^^^^~08/01/2012~
-~18023~^~324~^0.^0^^~4~^~BFZN~^~18022~^^^^^^^^^~06/01/2013~
-~18023~^~334~^21.^1^^~1~^~A~^^^^^^^^^^~08/01/2012~
-~18023~^~337~^0.^1^^~1~^~A~^^^^^^^^^~1~^~08/01/2012~
-~18023~^~338~^550.^1^^~1~^~A~^^^^^^^^^^~08/01/2012~
-~18023~^~417~^55.^0^^~4~^~FLA~^^^^^^^^^^~11/01/1998~
-~18023~^~431~^44.^0^^~4~^~NC~^^^^^^^^^^~05/01/2000~
-~18023~^~432~^11.^0^^~1~^^^^^^^^^^^~08/01/1992~
-~18023~^~435~^86.^0^^~4~^~NC~^^^^^^^^^^~02/01/2006~
-~18023~^~601~^57.^6^1.^~1~^~A~^^^1^48.^59.^2^52.^61.^~2, 3~^~08/01/2012~
-~18024~^~208~^266.^0^^~4~^~NC~^^^^^^^^^^~08/01/1992~
-~18024~^~268~^1113.^0^^~4~^^^^^^^^^^^
-~18024~^~301~^249.^0^^~1~^^^^^^^^^^^~08/01/1992~
-~18024~^~304~^25.^0^^~1~^^^^^^^^^^^~08/01/1992~
-~18024~^~305~^169.^0^^~1~^^^^^^^^^^^~08/01/1992~
-~18024~^~306~^147.^0^^~1~^^^^^^^^^^^~08/01/1992~
-~18024~^~307~^658.^0^^~1~^^^^^^^^^^^~08/01/1992~
-~18024~^~318~^277.^0^^~1~^^^^^^^^^^^~08/01/1992~
-~18024~^~417~^77.^0^^~4~^~FLA~^^^^^^^^^^~05/01/2003~
-~18024~^~431~^58.^0^^~4~^~FLA~^^^^^^^^^^~05/01/2003~
-~18024~^~432~^19.^0^^~1~^^^^^^^^^^^~08/01/1992~
-~18024~^~435~^118.^0^^~4~^~NC~^^^^^^^^^^~05/01/2003~
-~18024~^~601~^40.^0^^~1~^^^^^^^^^^^~08/01/1992~
-~18024~^~636~^12.^0^^~1~^^^^^^^^^^^~08/01/1992~
-~18025~^~208~^260.^0^^~4~^~NC~^^^^^^^^^^~08/01/1992~
-~18025~^~268~^1088.^0^^~4~^^^^^^^^^^^
-~18025~^~301~^43.^27^5.^~1~^^^^^^^^^^^~08/01/1992~
-~18025~^~304~^52.^13^2.^~1~^^^^^^^^^^^~08/01/1992~
-~18025~^~305~^153.^13^5.^~1~^^^^^^^^^^^~08/01/1992~
-~18025~^~306~^177.^15^6.^~1~^^^^^^^^^^^~08/01/1992~
-~18025~^~307~^538.^21^11.^~1~^^^^^^^^^^^~08/01/1992~
-~18025~^~318~^0.^0^^~4~^~FLA~^^^^^^^^^^~10/01/1997~
-~18025~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2002~
-~18025~^~320~^0.^0^^~4~^~NC~^^^^^^^^^^~06/01/2002~
-~18025~^~417~^61.^0^^~4~^~FLA~^^^^^^^^^^~03/01/1998~
-~18025~^~431~^22.^0^^~4~^~NC~^^^^^^^^^^~05/01/2000~
-~18025~^~432~^39.^11^3.^~1~^^^^^^^^^^^~08/01/1992~
-~18025~^~435~^76.^0^^~4~^~NC~^^^^^^^^^^~01/01/2001~
-~18025~^~601~^0.^0^^~4~^~FLA~^^^^^^^^^^~10/01/1997~
-~18027~^~208~^287.^0^^~4~^~NC~^^^^^^^^^^~07/01/2012~
-~18027~^~262~^0.^0^^~4~^~FLA~^^^^^^^^^^~02/01/2003~
-~18027~^~263~^0.^0^^~4~^~FLA~^^^^^^^^^^~02/01/2003~
-~18027~^~268~^1201.^0^^~4~^^^^^^^^^^^~07/01/2012~
-~18027~^~301~^93.^0^^~1~^^^^^^^^^^^~08/01/1992~
-~18027~^~304~^19.^0^^~1~^^^^^^^^^^^~08/01/1992~
-~18027~^~305~^106.^0^^~1~^^^^^^^^^^^~08/01/1992~
-~18027~^~306~^115.^0^^~1~^^^^^^^^^^^~08/01/1992~
-~18027~^~307~^380.^0^^~8~^~LC~^^^^^^^^^^~08/01/2012~
-~18027~^~318~^211.^0^^~4~^~FLA~^^^^^^^^^^~01/01/2005~
-~18027~^~319~^63.^0^^~4~^~FLA~^^^^^^^^^^~02/01/2003~
-~18027~^~320~^63.^0^^~4~^~FLA~^^^^^^^^^^~01/01/2005~
-~18027~^~321~^0.^0^^~4~^~FLA~^^^^^^^^^^~02/01/2003~
-~18027~^~322~^0.^0^^~4~^~FLA~^^^^^^^^^^~02/01/2003~
-~18027~^~324~^16.^0^^~4~^~FLA~^^^^^^^^^^~07/01/2012~
-~18027~^~334~^0.^0^^~4~^~FLA~^^^^^^^^^^~02/01/2003~
-~18027~^~337~^0.^0^^~4~^~FLA~^^^^^^^^^^~02/01/2003~
-~18027~^~338~^45.^0^^~4~^~FLA~^^^^^^^^^^~02/01/2003~
-~18027~^~417~^105.^0^^~4~^~CAZN~^^^^^^^^^^~02/01/2003~
-~18027~^~431~^35.^0^^~4~^~NC~^^^^^^^^^^~05/01/2000~
-~18027~^~432~^70.^0^^~1~^^^^^^^^^^^~08/01/1992~
-~18027~^~435~^130.^0^^~4~^~NC~^^^^^^^^^^~03/01/2009~
-~18027~^~601~^51.^0^^~1~^^^^^^^^^^^~08/01/1992~
-~18027~^~636~^7.^0^^~4~^^^^^^^^^^^~08/01/1992~
-~18028~^~208~^315.^0^^~4~^~NC~^^^^^^^^^^~08/01/1992~
-~18028~^~262~^0.^0^^~4~^~RK~^^^^^^^^^^~02/01/2003~
-~18028~^~263~^0.^0^^~4~^~RK~^^^^^^^^^^~02/01/2003~
-~18028~^~268~^1318.^0^^~4~^^^^^^^^^^^~01/01/2005~
-~18028~^~301~^102.^0^^~1~^^^^^^^^^^^~08/01/1992~
-~18028~^~304~^21.^0^^~1~^^^^^^^^^^^~08/01/1992~
-~18028~^~305~^117.^0^^~1~^^^^^^^^^^^~08/01/1992~
-~18028~^~306~^126.^0^^~1~^^^^^^^^^^^~08/01/1992~
-~18028~^~307~^417.^0^^~4~^~BFSN~^~18027~^^^^^^^^^~07/01/2012~
-~18028~^~318~^231.^0^^~4~^~NC~^^^^^^^^^^~02/01/2003~
-~18028~^~319~^69.^0^^~4~^~RK~^^^^^^^^^^~02/01/2003~
-~18028~^~320~^69.^0^^~4~^~NC~^^^^^^^^^^~02/01/2003~
-~18028~^~321~^0.^0^^~4~^~RK~^^^^^^^^^^~02/01/2003~
-~18028~^~322~^0.^0^^~4~^~RK~^^^^^^^^^^~02/01/2003~
-~18028~^~324~^21.^0^^~4~^~RK~^^^^^^^^^^~03/01/2009~
-~18028~^~334~^0.^0^^~4~^~RK~^^^^^^^^^^~02/01/2003~
-~18028~^~337~^0.^0^^~4~^~RK~^^^^^^^^^^~02/01/2003~
-~18028~^~338~^46.^0^^~4~^~RK~^^^^^^^^^^~02/01/2003~
-~18028~^~417~^98.^0^^~4~^~RK~^^^^^^^^^^~07/01/2012~
-~18028~^~431~^44.^0^^~4~^~NR~^^^^^^^^^^~07/01/2012~
-~18028~^~432~^54.^0^^~4~^~NC~^^^^^^^^^^~07/01/2012~
-~18028~^~435~^128.^0^^~4~^~NC~^^^^^^^^^^~07/01/2012~
-~18028~^~601~^56.^0^^~1~^^^^^^^^^^^~08/01/1992~
-~18028~^~636~^8.^0^^~1~^^^^^^^^^^^~08/01/1992~
-~18029~^~208~^272.^0^^~4~^~NC~^^^^^^^^^^~05/01/2014~
-~18029~^~262~^0.^0^^~4~^~FLC~^^^^^^^^^^~11/01/2005~
-~18029~^~263~^0.^0^^~4~^~FLC~^^^^^^^^^^~11/01/2005~
-~18029~^~268~^1139.^0^^~4~^~NC~^^^^^^^^^^~05/01/2014~
-~18029~^~301~^52.^6^16.^~1~^~A~^^^1^15.^102.^5^9.^94.^~2, 3~^~05/01/2014~
-~18029~^~304~^32.^6^1.^~1~^~A~^^^1^25.^38.^5^26.^37.^~2, 3~^~05/01/2014~
-~18029~^~305~^105.^6^5.^~1~^~A~^^^1^92.^131.^5^90.^119.^~2, 3~^~05/01/2014~
-~18029~^~306~^117.^6^3.^~1~^~A~^^^1^103.^124.^5^109.^125.^~2, 3~^~05/01/2014~
-~18029~^~307~^602.^6^28.^~1~^~A~^^^1^486.^674.^5^528.^674.^~2, 3~^~05/01/2014~
-~18029~^~318~^1.^0^^~4~^~NC~^^^^^^^^^^~05/01/2014~
-~18029~^~319~^0.^0^^~4~^~FLC~^^^^^^^^^^~02/01/2003~
-~18029~^~320~^0.^0^^~4~^~FLC~^^^^^^^^^^~11/01/2005~
-~18029~^~321~^0.^0^^~4~^~FLC~^^^^^^^^^^~11/01/2005~
-~18029~^~322~^0.^0^^~4~^~FLC~^^^^^^^^^^~11/01/2005~
-~18029~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~
-~18029~^~334~^0.^0^^~4~^~FLC~^^^^^^^^^^~11/01/2005~
-~18029~^~337~^0.^0^^~4~^~FLC~^^^^^^^^^^~11/01/2005~
-~18029~^~338~^45.^0^^~4~^~FLC~^^^^^^^^^^~05/01/2014~
-~18029~^~417~^123.^3^12.^~1~^~A~^^^1^99.^141.^2^69.^176.^~2, 3~^~05/01/2014~
-~18029~^~431~^67.^0^^~4~^~FLC~^^^^^^^^^^~05/01/2014~
-~18029~^~432~^56.^0^^~4~^~FLC~^^^^^^^^^^~05/01/2014~
-~18029~^~435~^170.^0^^~4~^~NC~^^^^^^^^^^~05/01/2014~
-~18029~^~601~^0.^0^^~4~^~FLC~^^^^^^^^^^~11/01/2005~
-~18030~^~208~^319.^0^^~4~^~NC~^^^^^^^^^^~11/01/2005~
-~18030~^~262~^0.^0^^~4~^~RK~^^^^^^^^^^~02/01/2003~
-~18030~^~263~^0.^0^^~4~^~RK~^^^^^^^^^^~02/01/2003~
-~18030~^~268~^1335.^0^^~4~^~NC~^^^^^^^^^^~11/01/2005~
-~18030~^~301~^47.^2^^~1~^~A~^^^1^35.^60.^1^^^^~11/01/2005~
-~18030~^~304~^31.^2^^~1~^~A~^^^1^31.^31.^1^^^^~11/01/2005~
-~18030~^~305~^126.^2^^~1~^~A~^^^1^125.^126.^1^^^^~11/01/2005~
-~18030~^~306~^140.^2^^~1~^~A~^^^1^139.^141.^1^^^^~11/01/2005~
-~18030~^~307~^720.^2^^~1~^~A~^^^1^718.^722.^1^^^^~11/01/2005~
-~18030~^~318~^0.^0^^~4~^~RK~^^^^^^^^^^~11/01/2005~
-~18030~^~319~^0.^0^^~4~^~RK~^^^^^^^^^^~02/01/2003~
-~18030~^~320~^0.^0^^~4~^~RK~^^^^^^^^^^~11/01/2005~
-~18030~^~321~^0.^0^^~4~^~RK~^^^^^^^^^^~02/01/2003~
-~18030~^~322~^0.^0^^~4~^~RK~^^^^^^^^^^~02/01/2003~
-~18030~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~
-~18030~^~334~^0.^0^^~4~^~RK~^^^^^^^^^^~02/01/2003~
-~18030~^~337~^0.^0^^~4~^~RK~^^^^^^^^^^~02/01/2003~
-~18030~^~338~^13.^0^^~4~^~RK~^^^^^^^^^^~11/01/2005~
-~18030~^~417~^140.^0^^~4~^~RK~^^^^^^^^^^~11/01/2005~
-~18030~^~431~^111.^0^^~4~^~RK~^^^^^^^^^^~11/01/2005~
-~18030~^~432~^29.^0^^~4~^~RK~^^^^^^^^^^~11/01/2005~
-~18030~^~435~^217.^0^^~4~^~NC~^^^^^^^^^^~03/01/2006~
-~18030~^~601~^0.^0^^~4~^~RK~^^^^^^^^^^~11/01/2005~
-~18032~^~208~^290.^0^^~4~^~NC~^^^^^^^^^^~08/01/1992~
-~18032~^~268~^1213.^0^^~4~^^^^^^^^^^^
-~18032~^~301~^81.^0^^~1~^^^^^^^^^^^~08/01/1992~
-~18032~^~304~^23.^0^^~1~^^^^^^^^^^^~08/01/1992~
-~18032~^~305~^114.^0^^~1~^^^^^^^^^^^~08/01/1992~
-~18032~^~306~^266.^0^^~1~^^^^^^^^^^^~08/01/1992~
-~18032~^~307~^398.^0^^~1~^^^^^^^^^^^~08/01/1992~
-~18032~^~318~^194.^0^^~1~^^^^^^^^^^^~08/01/1992~
-~18032~^~319~^45.^0^^~4~^~NC~^^^^^^^^^^~06/01/2002~
-~18032~^~320~^48.^0^^~4~^~NC~^^^^^^^^^^~06/01/2002~
-~18032~^~417~^47.^0^^~4~^~RA~^^^^^^^^^^~11/01/1998~
-~18032~^~431~^37.^0^^~4~^~NC~^^^^^^^^^^~05/01/2000~
-~18032~^~432~^10.^0^^~1~^^^^^^^^^^^~08/01/1992~
-~18032~^~435~^73.^0^^~4~^~NC~^^^^^^^^^^~01/01/2001~
-~18032~^~601~^18.^0^^~1~^^^^^^^^^^^~08/01/1992~
-~18032~^~636~^13.^0^^~1~^^^^^^^^^^^~08/01/1992~
-~18033~^~208~^259.^0^^~4~^~NC~^^^^^^^^^^~01/01/2017~
-~18033~^~262~^0.^0^^~4~^~FLA~^^^^^^^^^^~02/01/2003~
-~18033~^~263~^0.^0^^~4~^~FLA~^^^^^^^^^^~02/01/2003~
-~18033~^~268~^1083.^0^^~4~^~NC~^^^^^^^^^^~01/01/2017~
-~18033~^~301~^105.^6^2.^~1~^~A~^^^1^61.^125.^1^75.^134.^~2, 3~^~01/01/2017~
-~18033~^~304~^26.^6^1.^~1~^~A~^^^1^22.^43.^1^2.^49.^~2, 3~^~01/01/2017~
-~18033~^~305~^95.^6^1.^~1~^~A~^^^1^86.^99.^1^83.^106.^~2, 3~^~01/01/2017~
-~18033~^~306~^124.^6^3.^~1~^~A~^^^1^110.^160.^1^73.^173.^~2, 3~^~01/01/2017~
-~18033~^~307~^618.^6^20.^~1~^~A~^^^1^471.^742.^1^361.^874.^~2, 3~^~01/01/2017~
-~18033~^~318~^1.^0^^~4~^~NC~^^^^^^^^^^~05/01/2015~
-~18033~^~319~^0.^0^^~4~^~FLA~^^^^^^^^^^~02/01/2003~
-~18033~^~320~^0.^0^^~4~^~FLA~^^^^^^^^^^~05/01/2003~
-~18033~^~321~^0.^0^^~4~^~FLA~^^^^^^^^^^~05/01/2003~
-~18033~^~322~^0.^0^^~4~^~FLA~^^^^^^^^^^~05/01/2003~
-~18033~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~
-~18033~^~334~^0.^0^^~4~^~FLA~^^^^^^^^^^~05/01/2003~
-~18033~^~337~^0.^0^^~4~^~FLA~^^^^^^^^^^~02/01/2003~
-~18033~^~338~^48.^0^^~4~^~FLA~^^^^^^^^^^~02/01/2003~
-~18033~^~417~^102.^3^1.^~1~^~A~^^^1^98.^113.^1^88.^115.^~2, 3~^~01/01/2017~
-~18033~^~431~^18.^0^^~4~^~BFPN~^~18064~^^^^^^^^^~01/01/2017~
-~18033~^~432~^102.^3^1.^~1~^~A~^^^1^98.^113.^1^88.^115.^^~01/01/2017~
-~18033~^~435~^132.^0^^~4~^~NC~^^^^^^^^^^~01/01/2017~
-~18033~^~601~^0.^0^^~4~^~FLA~^^^^^^^^^^~01/01/2017~
-~18036~^~208~^288.^0^^~4~^~RK~^^^^^^^^^^~03/01/2007~
-~18036~^~262~^0.^0^^~4~^~RK~^^^^^^^^^^~03/01/2007~
-~18036~^~263~^0.^0^^~4~^~RK~^^^^^^^^^^~03/01/2007~
-~18036~^~268~^1204.^0^^~4~^~RK~^^^^^^^^^^~03/01/2007~
-~18036~^~301~^111.^0^^~4~^~RK~^^^^^^^^^^~03/01/2007~
-~18036~^~304~^85.^0^^~4~^~RK~^^^^^^^^^^~03/01/2007~
-~18036~^~305~^247.^0^^~4~^~RK~^^^^^^^^^^~03/01/2007~
-~18036~^~306~^250.^0^^~4~^~RK~^^^^^^^^^^~03/01/2007~
-~18036~^~307~^414.^0^^~4~^~BFSN~^~28397~^^^^^^^^^~07/01/2012~
-~18036~^~318~^0.^0^^~4~^~RK~^^^^^^^^^^~03/01/2007~
-~18036~^~319~^0.^0^^~4~^~RK~^^^^^^^^^^~03/01/2007~
-~18036~^~320~^0.^0^^~4~^~RK~^^^^^^^^^^~03/01/2007~
-~18036~^~321~^0.^0^^~4~^~RK~^^^^^^^^^^~03/01/2007~
-~18036~^~322~^0.^0^^~4~^~RK~^^^^^^^^^^~03/01/2007~
-~18036~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~
-~18036~^~334~^0.^0^^~4~^~RK~^^^^^^^^^^~03/01/2007~
-~18036~^~337~^0.^0^^~4~^~RK~^^^^^^^^^^~03/01/2007~
-~18036~^~338~^97.^0^^~4~^~RK~^^^^^^^^^^~03/01/2007~
-~18036~^~417~^70.^0^^~4~^~RK~^^^^^^^^^^~03/01/2007~
-~18036~^~431~^0.^0^^~4~^~RK~^^^^^^^^^^~03/01/2007~
-~18036~^~432~^70.^0^^~4~^~RK~^^^^^^^^^^~03/01/2007~
-~18036~^~435~^70.^0^^~4~^~NC~^^^^^^^^^^~03/01/2007~
-~18036~^~601~^0.^0^^~4~^~RK~^^^^^^^^^^~03/01/2007~
-~18037~^~208~^236.^0^^~4~^~NC~^^^^^^^^^^~08/01/1992~
-~18037~^~262~^0.^0^^~4~^~FLC~^^^^^^^^^^~02/01/2003~
-~18037~^~263~^0.^0^^~4~^~FLC~^^^^^^^^^^~02/01/2003~
-~18037~^~268~^987.^0^^~4~^^^^^^^^^^^~02/01/2005~
-~18037~^~301~^65.^3^6.^~1~^^^^^^^^^^^~08/01/1992~
-~18037~^~304~^35.^0^^~4~^~FLA~^^^^^^^^^^~10/01/1997~
-~18037~^~305~^141.^0^^~4~^~FLA~^^^^^^^^^^~10/01/1997~
-~18037~^~306~^147.^0^^~4~^~FLA~^^^^^^^^^^~10/01/1997~
-~18037~^~307~^353.^0^^~8~^~LC~^^^^^^^^^^~08/01/2012~
-~18037~^~318~^5.^0^^~4~^~FLA~^^^^^^^^^^~10/01/1997~
-~18037~^~319~^2.^0^^~4~^~FLC~^^^^^^^^^^~02/01/2003~
-~18037~^~320~^2.^0^^~4~^~NC~^^^^^^^^^^~02/01/2003~
-~18037~^~321~^0.^0^^~4~^~FLC~^^^^^^^^^^~02/01/2003~
-~18037~^~322~^0.^0^^~4~^~FLC~^^^^^^^^^^~02/01/2003~
-~18037~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~
-~18037~^~334~^0.^0^^~4~^~FLC~^^^^^^^^^^~02/01/2003~
-~18037~^~337~^0.^0^^~4~^~FLC~^^^^^^^^^^~02/01/2003~
-~18037~^~338~^46.^0^^~4~^~FLC~^^^^^^^^^^~02/01/2003~
-~18037~^~417~^81.^0^^~4~^~CAZN~^^^^^^^^^^~02/01/2003~
-~18037~^~431~^56.^0^^~4~^~NC~^^^^^^^^^^~05/01/2000~
-~18037~^~432~^25.^0^^~4~^^^^^^^^^^^~08/01/1992~
-~18037~^~435~^120.^0^^~4~^~NC~^^^^^^^^^^~02/01/2007~
-~18037~^~601~^0.^2^^~1~^^^^^^^^^^^~08/01/1992~
-~18038~^~208~^259.^0^^~4~^^^^^^^^^^^~08/01/1992~
-~18038~^~262~^0.^0^^~4~^~RK~^^^^^^^^^^~02/01/2003~
-~18038~^~263~^0.^0^^~4~^~RK~^^^^^^^^^^~02/01/2003~
-~18038~^~268~^1084.^0^^~4~^^^^^^^^^^^~02/01/2005~
-~18038~^~301~^71.^0^^~4~^^^^^^^^^^^~08/01/1992~
-~18038~^~304~^34.^0^^~4~^^^^^^^^^^^~08/01/1992~
-~18038~^~305~^116.^0^^~4~^^^^^^^^^^^~08/01/1992~
-~18038~^~306~^123.^0^^~4~^^^^^^^^^^^~08/01/1992~
-~18038~^~307~^387.^0^^~4~^~BFSN~^~18037~^^^^^^^^^~07/01/2012~
-~18038~^~318~^5.^0^^~4~^^^^^^^^^^^~08/01/1992~
-~18038~^~319~^2.^0^^~4~^~RK~^^^^^^^^^^~02/01/2003~
-~18038~^~320~^2.^0^^~4~^~NC~^^^^^^^^^^~02/01/2003~
-~18038~^~321~^0.^0^^~4~^~RK~^^^^^^^^^^~02/01/2003~
-~18038~^~322~^0.^0^^~4~^~RK~^^^^^^^^^^~02/01/2003~
-~18038~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~
-~18038~^~334~^0.^0^^~4~^~RK~^^^^^^^^^^~02/01/2003~
-~18038~^~337~^0.^0^^~4~^~RK~^^^^^^^^^^~02/01/2003~
-~18038~^~338~^48.^0^^~4~^~RK~^^^^^^^^^^~02/01/2003~
-~18038~^~417~^69.^0^^~4~^~FLA~^^^^^^^^^^~03/01/1998~
-~18038~^~431~^50.^0^^~4~^~NC~^^^^^^^^^^~05/01/2000~
-~18038~^~432~^19.^0^^~4~^^^^^^^^^^^~08/01/1992~
-~18038~^~435~^104.^0^^~4~^~NC~^^^^^^^^^^~02/01/2007~
-~18038~^~601~^0.^0^^~4~^^^^^^^^^^^~08/01/1992~
-~18039~^~208~^269.^0^^~4~^~NC~^^^^^^^^^^~08/01/1992~
-~18039~^~262~^0.^0^^~4~^~FLA~^^^^^^^^^^~02/01/2003~
-~18039~^~263~^0.^0^^~4~^~FLA~^^^^^^^^^^~02/01/2003~
-~18039~^~268~^1125.^0^^~4~^^^^^^^^^^^~02/01/2005~
-~18039~^~301~^66.^23^3.^~1~^^^^^^^^^^^~08/01/1992~
-~18039~^~304~^37.^10^2.^~1~^^^^^^^^^^^~08/01/1992~
-~18039~^~305~^126.^10^5.^~1~^^^^^^^^^^^~08/01/1992~
-~18039~^~306~^142.^12^9.^~1~^^^^^^^^^^^~08/01/1992~
-~18039~^~307~^447.^0^^~8~^~LC~^^^^^^^^^^~08/01/2012~
-~18039~^~318~^16.^0^^~4~^~FLA~^^^^^^^^^^~02/01/2003~
-~18039~^~319~^5.^0^^~4~^~FLA~^^^^^^^^^^~02/01/2003~
-~18039~^~320~^5.^0^^~4~^~NC~^^^^^^^^^^~02/01/2003~
-~18039~^~321~^0.^0^^~4~^~FLA~^^^^^^^^^^~02/01/2003~
-~18039~^~322~^0.^0^^~4~^~FLA~^^^^^^^^^^~02/01/2003~
-~18039~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~
-~18039~^~334~^0.^0^^~4~^~FLA~^^^^^^^^^^~02/01/2003~
-~18039~^~337~^0.^0^^~4~^~FLA~^^^^^^^^^^~02/01/2003~
-~18039~^~338~^72.^0^^~4~^~FLA~^^^^^^^^^^~02/01/2003~
-~18039~^~417~^62.^0^^~4~^~FLA~^^^^^^^^^^~03/01/1998~
-~18039~^~431~^35.^0^^~4~^~NC~^^^^^^^^^^~05/01/2000~
-~18039~^~432~^27.^10^2.^~1~^^^^^^^^^^^~08/01/1992~
-~18039~^~435~^87.^0^^~4~^~NC~^^^^^^^^^^~02/01/2007~
-~18039~^~601~^0.^0^^~4~^~FLA~^^^^^^^^^^~10/01/1997~
-~18040~^~208~^292.^0^^~4~^~NC~^^^^^^^^^^~08/01/1992~
-~18040~^~262~^0.^0^^~4~^~RK~^^^^^^^^^^~02/01/2003~
-~18040~^~263~^0.^0^^~4~^~RK~^^^^^^^^^^~02/01/2003~
-~18040~^~268~^1222.^0^^~4~^^^^^^^^^^^~02/01/2005~
-~18040~^~301~^72.^0^^~1~^^^^^^^^^^^~08/01/1992~
-~18040~^~304~^41.^0^^~1~^^^^^^^^^^^~08/01/1992~
-~18040~^~305~^137.^0^^~1~^^^^^^^^^^^~08/01/1992~
-~18040~^~306~^154.^0^^~1~^^^^^^^^^^^~08/01/1992~
-~18040~^~307~^486.^0^^~4~^~BFSN~^~18039~^^^^^^^^^~08/01/2012~
-~18040~^~318~^15.^0^^~4~^^^^^^^^^^^~08/01/1992~
-~18040~^~319~^5.^0^^~4~^~RK~^^^^^^^^^^~02/01/2003~
-~18040~^~320~^5.^0^^~4~^~NC~^^^^^^^^^^~02/01/2003~
-~18040~^~321~^0.^0^^~4~^~RK~^^^^^^^^^^~02/01/2003~
-~18040~^~322~^0.^0^^~4~^~RK~^^^^^^^^^^~02/01/2003~
-~18040~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~
-~18040~^~334~^0.^0^^~4~^~RK~^^^^^^^^^^~02/01/2003~
-~18040~^~337~^0.^0^^~4~^~RK~^^^^^^^^^^~02/01/2003~
-~18040~^~338~^75.^0^^~4~^~RK~^^^^^^^^^^~02/01/2003~
-~18040~^~417~^53.^0^^~4~^~FLA~^^^^^^^^^^~03/01/1998~
-~18040~^~431~^32.^0^^~4~^~NC~^^^^^^^^^^~05/01/2000~
-~18040~^~432~^21.^0^^~1~^^^^^^^^^^^~08/01/1992~
-~18040~^~435~^75.^0^^~4~^~NC~^^^^^^^^^^~02/01/2007~
-~18040~^~601~^0.^0^^~4~^^^^^^^^^^^~08/01/1992~
-~18041~^~208~^275.^0^^~4~^~NC~^^^^^^^^^^~08/01/1992~
-~18041~^~262~^0.^0^^~4~^~FLA~^^^^^^^^^^~02/01/2003~
-~18041~^~263~^0.^0^^~4~^~FLA~^^^^^^^^^^~02/01/2003~
-~18041~^~268~^1151.^0^^~4~^^^^^^^^^^^~02/01/2005~
-~18041~^~301~^86.^38^2.^~1~^^^^^^^^^^^~08/01/1992~
-~18041~^~304~^26.^13^1.^~1~^^^^^^^^^^^~08/01/1992~
-~18041~^~305~^97.^13^2.^~1~^^^^^^^^^^^~08/01/1992~
-~18041~^~306~^120.^17^6.^~1~^^^^^^^^^^^~08/01/1992~
-~18041~^~307~^536.^24^16.^~1~^^^^^^^^^^^~08/01/1992~
-~18041~^~318~^0.^0^^~1~^^^^^^^^^^^~02/01/2003~
-~18041~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2002~
-~18041~^~320~^0.^0^^~4~^~NC~^^^^^^^^^^~02/01/2003~
-~18041~^~321~^0.^0^^~4~^^^^^^^^^^^~02/01/2003~
-~18041~^~322~^0.^0^^~4~^^^^^^^^^^^~02/01/2003~
-~18041~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~
-~18041~^~334~^0.^0^^~4~^^^^^^^^^^^~02/01/2003~
-~18041~^~337~^0.^0^^~4~^~FLA~^^^^^^^^^^~02/01/2003~
-~18041~^~338~^53.^0^^~4~^~FLA~^^^^^^^^^^~02/01/2003~
-~18041~^~417~^107.^0^^~4~^~FLA~^^^^^^^^^^~02/01/2003~
-~18041~^~431~^83.^0^^~4~^^^^^^^^^^^~02/01/2003~
-~18041~^~432~^24.^10^2.^~1~^^^^^^^^^^^~08/01/1992~
-~18041~^~435~^165.^0^^~4~^~NC~^^^^^^^^^^~02/01/2007~
-~18041~^~601~^0.^2^^~1~^^^^^^^^^^^~08/01/1992~
-~18042~^~208~^262.^0^^~4~^~NC~^^^^^^^^^^~08/01/2015~
-~18042~^~262~^0.^0^^~4~^~FLA~^^^^^^^^^^~02/01/2003~
-~18042~^~263~^0.^0^^~4~^~FLA~^^^^^^^^^^~02/01/2003~
-~18042~^~268~^1096.^0^^~4~^~NC~^^^^^^^^^^~08/01/2015~
-~18042~^~301~^15.^2^^~1~^^^^^^^^^^^~08/01/1992~
-~18042~^~304~^69.^2^^~1~^^^^^^^^^^^~08/01/1992~
-~18042~^~305~^180.^2^^~1~^^^^^^^^^^^~08/01/1992~
-~18042~^~306~^170.^2^^~1~^^^^^^^^^^^~08/01/1992~
-~18042~^~307~^421.^0^^~4~^~NR~^^^^^^^^^^~07/01/2017~
-~18042~^~318~^0.^0^^~4~^~FLA~^^^^^^^^^^~07/01/2017~
-~18042~^~319~^0.^0^^~4~^~FLA~^^^^^^^^^^~02/01/2003~
-~18042~^~320~^0.^0^^~4~^~FLA~^^^^^^^^^^~02/01/2003~
-~18042~^~321~^4.^0^^~4~^~FLA~^^^^^^^^^^~07/01/2012~
-~18042~^~322~^0.^0^^~4~^~FLA~^^^^^^^^^^~02/01/2003~
-~18042~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~
-~18042~^~334~^0.^0^^~4~^~FLA~^^^^^^^^^^~02/01/2003~
-~18042~^~337~^0.^0^^~4~^~FLA~^^^^^^^^^^~02/01/2003~
-~18042~^~338~^53.^0^^~4~^~O~^^^^^^^^^^~02/01/2003~
-~18042~^~417~^35.^0^^~4~^^^^^^^^^^^~01/01/1999~
-~18042~^~431~^0.^0^^~4~^~FLA~^^^^^^^^^^~07/01/2012~
-~18042~^~432~^35.^0^^~4~^~NR~^^^^^^^^^^~07/01/2012~
-~18042~^~435~^35.^0^^~4~^~NC~^^^^^^^^^^~07/01/2012~
-~18042~^~601~^0.^1^^~1~^^^^^^^^^^^~08/01/1992~
-~18043~^~208~^245.^0^^~4~^~NC~^^^^^^^^^^~08/01/1992~
-~18043~^~262~^0.^0^^~4~^~FLA~^^^^^^^^^^~02/01/2003~
-~18043~^~263~^0.^0^^~4~^~FLA~^^^^^^^^^^~02/01/2003~
-~18043~^~268~^1025.^0^^~4~^^^^^^^^^^^~02/01/2005~
-~18043~^~301~^124.^12^7.^~1~^^^^^^^^^^^~08/01/1992~
-~18043~^~304~^65.^0^^~4~^~FLA~^^^^^^^^^^~12/01/1997~
-~18043~^~305~^185.^0^^~4~^~FLA~^^^^^^^^^^~12/01/1997~
-~18043~^~306~^322.^0^^~4~^~FLA~^^^^^^^^^^~12/01/1997~
-~18043~^~307~^404.^0^^~8~^~LC~^^^^^^^^^^~08/01/2012~
-~18043~^~318~^5.^0^^~4~^~FLA~^^^^^^^^^^~02/01/2003~
-~18043~^~319~^0.^0^^~4~^~FLA~^^^^^^^^^^~02/01/2003~
-~18043~^~320~^0.^0^^~4~^~FLA~^^^^^^^^^^~02/01/2003~
-~18043~^~321~^3.^0^^~4~^~FLA~^^^^^^^^^^~02/01/2003~
-~18043~^~322~^0.^0^^~4~^~FLA~^^^^^^^^^^~02/01/2003~
-~18043~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~
-~18043~^~334~^0.^0^^~4~^~FLA~^^^^^^^^^^~02/01/2003~
-~18043~^~337~^0.^0^^~4~^~FLA~^^^^^^^^^^~02/01/2003~
-~18043~^~338~^77.^0^^~4~^~FLA~^^^^^^^^^^~02/01/2003~
-~18043~^~417~^116.^0^^~4~^~FLA~^^^^^^^^^^~02/01/2003~
-~18043~^~431~^81.^0^^~4~^~NR~^^^^^^^^^^~07/01/2012~
-~18043~^~432~^35.^1^^~1~^^^^^^^^^^^~08/01/1992~
-~18043~^~435~^173.^0^^~4~^~NC~^^^^^^^^^^~07/01/2012~
-~18043~^~601~^0.^1^^~1~^^^^^^^^^^^~08/01/1992~
-~18044~^~208~^250.^0^^~4~^^^^^^^^^^^~08/01/1992~
-~18044~^~262~^0.^0^^~4~^~FLA~^^^^^^^^^^~02/01/2003~
-~18044~^~263~^0.^0^^~4~^~FLA~^^^^^^^^^^~02/01/2003~
-~18044~^~268~^1046.^0^^~4~^^^^^^^^^^^~04/01/2005~
-~18044~^~301~^68.^40^3.^~1~^^^^^^^^^^^~08/01/1992~
-~18044~^~304~^54.^13^2.^~1~^^^^^^^^^^^~08/01/1992~
-~18044~^~305~^178.^11^5.^~1~^^^^^^^^^^^~08/01/1992~
-~18044~^~306~^208.^18^7.^~1~^^^^^^^^^^^~08/01/1992~
-~18044~^~307~^596.^0^^~8~^~LC~^^^^^^^^^^~08/01/2012~
-~18044~^~318~^0.^0^^~1~^^^^^^^^^^^~08/01/1992~
-~18044~^~319~^0.^0^^~4~^~FLA~^^^^^^^^^^~02/01/2003~
-~18044~^~320~^0.^0^^~4~^~NC~^^^^^^^^^^~02/01/2003~
-~18044~^~321~^0.^0^^~4~^~FLA~^^^^^^^^^^~02/01/2003~
-~18044~^~322~^0.^0^^~4~^~FLA~^^^^^^^^^^~02/01/2003~
-~18044~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~
-~18044~^~334~^0.^0^^~4~^~FLA~^^^^^^^^^^~02/01/2003~
-~18044~^~337~^0.^0^^~4~^~FLA~^^^^^^^^^^~02/01/2003~
-~18044~^~338~^46.^0^^~4~^~FLA~^^^^^^^^^^~02/01/2003~
-~18044~^~417~^93.^0^^~4~^~FLA~^^^^^^^^^^~02/01/2003~
-~18044~^~431~^59.^0^^~4~^~NR~^^^^^^^^^^~02/01/2003~
-~18044~^~432~^34.^10^2.^~1~^^^^^^^^^^^~08/01/1992~
-~18044~^~435~^134.^0^^~4~^~NC~^^^^^^^^^^~02/01/2007~
-~18044~^~601~^0.^2^^~1~^^^^^^^^^^^~08/01/1992~
-~18047~^~208~^274.^0^^~4~^~NC~^^^^^^^^^^~08/01/1992~
-~18047~^~262~^0.^0^^~4~^~FLA~^^^^^^^^^^~02/01/2003~
-~18047~^~263~^0.^0^^~4~^~FLA~^^^^^^^^^^~02/01/2003~
-~18047~^~268~^1146.^0^^~4~^^^^^^^^^^^~04/01/2005~
-~18047~^~301~^66.^29^5.^~1~^^^^^^^^^^^~08/01/1992~
-~18047~^~304~^26.^13^1.^~1~^^^^^^^^^^^~08/01/1992~
-~18047~^~305~^109.^13^5.^~1~^^^^^^^^^^^~08/01/1992~
-~18047~^~306~^227.^15^11.^~1~^^^^^^^^^^^~08/01/1992~
-~18047~^~307~^347.^0^^~8~^~LC~^^^^^^^^^^~08/01/2012~
-~18047~^~318~^0.^0^^~4~^~FLA~^^^^^^^^^^~10/01/1997~
-~18047~^~319~^0.^0^^~4~^~FLA~^^^^^^^^^^~02/01/2003~
-~18047~^~320~^0.^0^^~4~^~NC~^^^^^^^^^^~02/01/2003~
-~18047~^~321~^0.^0^^~4~^~FLA~^^^^^^^^^^~02/01/2003~
-~18047~^~322~^0.^0^^~4~^~FLA~^^^^^^^^^^~02/01/2003~
-~18047~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~
-~18047~^~334~^0.^0^^~4~^~FLA~^^^^^^^^^^~02/01/2003~
-~18047~^~337~^0.^0^^~4~^~FLA~^^^^^^^^^^~02/01/2003~
-~18047~^~338~^44.^0^^~4~^~FLA~^^^^^^^^^^~02/01/2003~
-~18047~^~417~^106.^0^^~4~^~FLA~^^^^^^^^^^~02/01/2003~
-~18047~^~431~^72.^0^^~4~^~NR~^^^^^^^^^^~02/01/2003~
-~18047~^~432~^34.^11^1.^~1~^^^^^^^^^^^~08/01/1992~
-~18047~^~435~^156.^0^^~4~^~NC~^^^^^^^^^^~02/01/2007~
-~18047~^~601~^0.^2^^~1~^^^^^^^^^^^~08/01/1992~
-~18048~^~208~^297.^0^^~4~^~NC~^^^^^^^^^^~08/01/1992~
-~18048~^~262~^0.^0^^~4~^~RK~^^^^^^^^^^~02/01/2003~
-~18048~^~263~^0.^0^^~4~^~RK~^^^^^^^^^^~02/01/2003~
-~18048~^~268~^1243.^0^^~4~^^^^^^^^^^^~04/01/2005~
-~18048~^~301~^72.^0^^~1~^^^^^^^^^^^~08/01/1992~
-~18048~^~304~^28.^0^^~1~^^^^^^^^^^^~08/01/1992~
-~18048~^~305~^118.^0^^~1~^^^^^^^^^^^~08/01/1992~
-~18048~^~306~^246.^0^^~1~^^^^^^^^^^^~08/01/1992~
-~18048~^~307~^377.^0^^~4~^~BFSN~^~18047~^^^^^^^^^~08/01/2012~
-~18048~^~318~^0.^0^^~4~^~RK~^^^^^^^^^^~02/01/2003~
-~18048~^~319~^0.^0^^~4~^~RK~^^^^^^^^^^~02/01/2003~
-~18048~^~320~^0.^0^^~4~^~NC~^^^^^^^^^^~02/01/2003~
-~18048~^~321~^0.^0^^~4~^~RK~^^^^^^^^^^~02/01/2003~
-~18048~^~322~^0.^0^^~4~^~RK~^^^^^^^^^^~02/01/2003~
-~18048~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~
-~18048~^~334~^0.^0^^~4~^~RK~^^^^^^^^^^~02/01/2003~
-~18048~^~337~^0.^0^^~4~^~RK~^^^^^^^^^^~02/01/2003~
-~18048~^~338~^46.^0^^~4~^~RK~^^^^^^^^^^~02/01/2003~
-~18048~^~417~^98.^0^^~4~^~RK~^^^^^^^^^^~02/01/2003~
-~18048~^~431~^72.^0^^~4~^~NR~^^^^^^^^^^~02/01/2003~
-~18048~^~432~^26.^0^^~4~^~NC~^^^^^^^^^^~08/01/2012~
-~18048~^~435~^148.^0^^~4~^~NC~^^^^^^^^^^~02/01/2007~
-~18048~^~601~^0.^0^^~1~^^^^^^^^^^^~08/01/1992~
-~18049~^~208~^201.^0^^~4~^~NC~^^^^^^^^^^~08/01/1992~
-~18049~^~262~^0.^0^^~4~^~FLA~^^^^^^^^^^~02/01/2003~
-~18049~^~263~^0.^0^^~4~^~FLA~^^^^^^^^^^~02/01/2003~
-~18049~^~268~^841.^0^^~4~^^^^^^^^^^^~04/01/2005~
-~18049~^~301~^57.^2^^~1~^^^^^^^^^^^~08/01/1992~
-~18049~^~304~^55.^0^^~4~^~FLA~^^^^^^^^^^~10/01/1997~
-~18049~^~305~^139.^0^^~4~^~FLA~^^^^^^^^^^~10/01/1997~
-~18049~^~306~^102.^1^^~1~^^^^^^^^^^^~08/01/1992~
-~18049~^~307~^459.^0^^~8~^~LC~^^^^^^^^^^~08/01/2012~
-~18049~^~318~^2.^0^^~4~^~FLA~^^^^^^^^^^~02/01/2003~
-~18049~^~319~^0.^0^^~4~^~FLA~^^^^^^^^^^~02/01/2003~
-~18049~^~320~^0.^0^^~4~^~NC~^^^^^^^^^^~02/01/2003~
-~18049~^~321~^1.^0^^~4~^~FLA~^^^^^^^^^^~02/01/2003~
-~18049~^~322~^0.^0^^~4~^~FLA~^^^^^^^^^^~02/01/2003~
-~18049~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~
-~18049~^~334~^0.^0^^~4~^~FLA~^^^^^^^^^^~02/01/2003~
-~18049~^~337~^0.^0^^~4~^~FLA~^^^^^^^^^^~02/01/2003~
-~18049~^~338~^42.^0^^~4~^~FLA~^^^^^^^^^^~02/01/2003~
-~18049~^~417~^81.^0^^~4~^~FLA~^^^^^^^^^^~02/01/2003~
-~18049~^~431~^47.^0^^~4~^~NR~^^^^^^^^^^~02/01/2003~
-~18049~^~432~^34.^0^^~4~^^^^^^^^^^^~08/01/1992~
-~18049~^~435~^114.^0^^~4~^~NC~^^^^^^^^^^~02/01/2007~
-~18049~^~601~^0.^0^^~4~^^^^^^^^^^^~08/01/1992~
-~18050~^~208~^239.^0^^~4~^^^^^^^^^^^~08/01/1992~
-~18050~^~262~^0.^0^^~4~^~RK~^^^^^^^^^^~02/01/2003~
-~18050~^~263~^0.^0^^~4~^~RK~^^^^^^^^^^~02/01/2003~
-~18050~^~268~^1000.^0^^~4~^^^^^^^^^^^~04/01/2005~
-~18050~^~301~^68.^0^^~4~^^^^^^^^^^^~08/01/1992~
-~18050~^~304~^55.^0^^~4~^^^^^^^^^^^~08/01/1992~
-~18050~^~305~^144.^0^^~4~^^^^^^^^^^^~08/01/1992~
-~18050~^~306~^122.^0^^~4~^^^^^^^^^^^~08/01/1992~
-~18050~^~307~^547.^0^^~4~^~BFSN~^~18049~^^^^^^^^^~08/01/2012~
-~18050~^~318~^1.^0^^~4~^^^^^^^^^^^~08/01/2012~
-~18050~^~319~^0.^0^^~4~^~RK~^^^^^^^^^^~02/01/2003~
-~18050~^~320~^0.^0^^~4~^~RK~^^^^^^^^^^~02/01/2003~
-~18050~^~321~^2.^0^^~4~^~RK~^^^^^^^^^^~02/01/2003~
-~18050~^~322~^0.^0^^~4~^~RK~^^^^^^^^^^~02/01/2003~
-~18050~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~
-~18050~^~334~^0.^0^^~4~^~RK~^^^^^^^^^^~02/01/2003~
-~18050~^~337~^0.^0^^~4~^~RK~^^^^^^^^^^~02/01/2003~
-~18050~^~338~^48.^0^^~4~^~RK~^^^^^^^^^^~02/01/2003~
-~18050~^~417~^82.^0^^~4~^~RK~^^^^^^^^^^~02/01/2003~
-~18050~^~431~^48.^0^^~4~^~RK~^^^^^^^^^^~02/01/2003~
-~18050~^~432~^34.^0^^~4~^~RK~^^^^^^^^^^~02/01/2003~
-~18050~^~435~^115.^0^^~4~^~NC~^^^^^^^^^^~02/01/2007~
-~18050~^~601~^0.^0^^~4~^^^^^^^^^^^~08/01/1992~
-~18051~^~208~^210.^0^^~4~^~NC~^^^^^^^^^^~08/01/1992~
-~18051~^~268~^879.^0^^~4~^^^^^^^^^^^
-~18051~^~301~^115.^2^^~1~^^^^^^^^^^^~08/01/1992~
-~18051~^~304~^24.^0^^~4~^~FLA~^^^^^^^^^^~10/01/1997~
-~18051~^~305~^100.^0^^~4~^~FLA~^^^^^^^^^^~10/01/1997~
-~18051~^~306~^124.^0^^~4~^~FLA~^^^^^^^^^^~10/01/1997~
-~18051~^~307~^388.^2^^~1~^^^^^^^^^^^~08/01/1992~
-~18051~^~318~^6.^0^^~4~^~FLA~^^^^^^^^^^~10/01/1997~
-~18051~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2002~
-~18051~^~320~^0.^0^^~4~^~NC~^^^^^^^^^^~06/01/2002~
-~18051~^~417~^55.^0^^~4~^~FLA~^^^^^^^^^^~03/01/1998~
-~18051~^~431~^21.^0^^~4~^~NC~^^^^^^^^^^~05/01/2000~
-~18051~^~432~^34.^0^^~4~^^^^^^^^^^^~08/01/1992~
-~18051~^~435~^70.^0^^~4~^~NC~^^^^^^^^^^~01/01/2001~
-~18051~^~601~^0.^1^^~1~^^^^^^^^^^^~08/01/1992~
-~18053~^~208~^203.^0^^~4~^~NC~^^^^^^^^^^~08/01/1992~
-~18053~^~262~^0.^0^^~4~^~FLA~^^^^^^^^^^~02/01/2003~
-~18053~^~263~^0.^0^^~4~^~FLA~^^^^^^^^^^~02/01/2003~
-~18053~^~268~^849.^0^^~4~^^^^^^^^^^^~04/01/2005~
-~18053~^~301~^76.^1^^~1~^^^^^^^^^^^~08/01/1992~
-~18053~^~304~^22.^0^^~4~^~FLA~^^^^^^^^^^~12/01/1997~
-~18053~^~305~^78.^0^^~4~^~FLA~^^^^^^^^^^~12/01/1997~
-~18053~^~306~^98.^1^^~1~^^^^^^^^^^^~08/01/1992~
-~18053~^~307~^513.^0^^~8~^~LC~^^^^^^^^^^~05/01/2010~
-~18053~^~318~^4.^0^^~4~^~NC~^^^^^^^^^^~02/01/2003~
-~18053~^~319~^0.^0^^~4~^~FLA~^^^^^^^^^^~02/01/2003~
-~18053~^~320~^0.^0^^~4~^~NC~^^^^^^^^^^~02/01/2003~
-~18053~^~321~^2.^0^^~4~^~FLA~^^^^^^^^^^~02/01/2003~
-~18053~^~322~^0.^0^^~4~^~FLA~^^^^^^^^^^~02/01/2003~
-~18053~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~
-~18053~^~334~^1.^0^^~4~^~FLA~^^^^^^^^^^~02/01/2003~
-~18053~^~337~^0.^0^^~4~^~FLA~^^^^^^^^^^~02/01/2003~
-~18053~^~338~^37.^0^^~4~^~FLA~^^^^^^^^^^~02/01/2003~
-~18053~^~417~^58.^0^^~4~^~FLA~^^^^^^^^^^~02/01/2003~
-~18053~^~431~^35.^0^^~4~^^^^^^^^^^^~02/01/2003~
-~18053~^~432~^23.^0^^~4~^^^^^^^^^^^~08/01/1992~
-~18053~^~435~^83.^0^^~4~^~NC~^^^^^^^^^^~02/01/2007~
-~18053~^~601~^0.^1^^~1~^^^^^^^^^^^~08/01/1992~
-~18055~^~208~^217.^0^^~4~^~NC~^^^^^^^^^^~03/01/2011~
-~18055~^~262~^0.^0^^~4~^~FLA~^^^^^^^^^^~02/01/2003~
-~18055~^~263~^0.^0^^~4~^~FLA~^^^^^^^^^^~02/01/2003~
-~18055~^~268~^907.^0^^~4~^~NC~^^^^^^^^^^~03/01/2011~
-~18055~^~301~^163.^3^2.^~1~^~A~^^^1^138.^183.^1^128.^198.^~2, 3~^~03/01/2011~
-~18055~^~304~^43.^3^1.^~1~^~A~^^^1^35.^54.^1^20.^64.^~2, 3~^~03/01/2011~
-~18055~^~305~^149.^3^2.^~1~^~A~^^^1^127.^175.^1^116.^180.^~2, 3~^~03/01/2011~
-~18055~^~306~^150.^3^2.^~1~^~A~^^^1^141.^164.^1^121.^178.^~2, 3~^~03/01/2011~
-~18055~^~307~^332.^3^7.^~1~^~A~^^^1^272.^405.^1^242.^420.^~2, 3~^~03/01/2011~
-~18055~^~318~^1.^0^^~4~^~NC~^^^^^^^^^^~03/01/2011~
-~18055~^~319~^0.^0^^~4~^~FLA~^^^^^^^^^^~02/01/2003~
-~18055~^~320~^0.^0^^~4~^~NC~^^^^^^^^^^~02/01/2003~
-~18055~^~321~^1.^0^^~4~^~FLA~^^^^^^^^^^~03/01/2011~
-~18055~^~322~^0.^0^^~4~^~FLA~^^^^^^^^^^~02/01/2003~
-~18055~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~
-~18055~^~334~^0.^0^^~4~^~FLA~^^^^^^^^^^~02/01/2003~
-~18055~^~337~^0.^0^^~4~^~FLA~^^^^^^^^^^~02/01/2003~
-~18055~^~338~^41.^0^^~4~^~FLA~^^^^^^^^^^~02/01/2003~
-~18055~^~417~^91.^0^^~4~^~FLA~^^^^^^^^^^~02/01/2003~
-~18055~^~431~^63.^0^^~4~^~NR~^^^^^^^^^^~02/01/2003~
-~18055~^~432~^28.^0^^~4~^^^^^^^^^^^~08/01/1992~
-~18055~^~435~^135.^0^^~4~^~NC~^^^^^^^^^^~01/01/2007~
-~18055~^~601~^0.^0^^~4~^^^^^^^^^^^~08/01/1992~
-~18057~^~208~^207.^0^^~4~^~NC~^^^^^^^^^^~08/01/1992~
-~18057~^~262~^0.^0^^~4~^~FLA~^^^^^^^^^^~02/01/2003~
-~18057~^~263~^0.^0^^~4~^~FLA~^^^^^^^^^^~02/01/2003~
-~18057~^~268~^866.^0^^~4~^^^^^^^^^^^~05/01/2005~
-~18057~^~301~^94.^14^9.^~1~^^^^^^^^^^^~08/01/1992~
-~18057~^~304~^23.^0^^~4~^~FLA~^^^^^^^^^^~12/01/1997~
-~18057~^~305~^121.^0^^~4~^~FLA~^^^^^^^^^^~12/01/1997~
-~18057~^~306~^76.^1^^~1~^^^^^^^^^^^~08/01/1992~
-~18057~^~307~^479.^0^^~8~^~LC~^^^^^^^^^^~08/01/2012~
-~18057~^~318~^3.^0^^~4~^~FLA~^^^^^^^^^^~12/01/1997~
-~18057~^~319~^0.^0^^~4~^~FLA~^^^^^^^^^^~02/01/2003~
-~18057~^~320~^0.^0^^~4~^~NC~^^^^^^^^^^~02/01/2003~
-~18057~^~321~^1.^0^^~4~^~FLA~^^^^^^^^^^~02/01/2003~
-~18057~^~322~^0.^0^^~4~^~FLA~^^^^^^^^^^~02/01/2003~
-~18057~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~
-~18057~^~334~^0.^0^^~4~^~FLA~^^^^^^^^^^~02/01/2003~
-~18057~^~337~^0.^0^^~4~^~FLA~^^^^^^^^^^~02/01/2003~
-~18057~^~338~^32.^0^^~4~^~FLA~^^^^^^^^^^~02/01/2003~
-~18057~^~417~^95.^0^^~4~^~CAZN~^^^^^^^^^^~02/01/2003~
-~18057~^~431~^61.^0^^~4~^~NC~^^^^^^^^^^~05/01/2000~
-~18057~^~432~^34.^0^^~4~^^^^^^^^^^^~08/01/1992~
-~18057~^~435~^138.^0^^~4~^~NC~^^^^^^^^^^~01/01/2007~
-~18057~^~601~^0.^1^^~1~^^^^^^^^^^^~08/01/1992~
-~18059~^~208~^243.^0^^~4~^~NC~^^^^^^^^^^~12/01/2006~
-~18059~^~262~^0.^0^^~4~^~FLC~^^^^^^^^^^~02/01/2003~
-~18059~^~263~^0.^0^^~4~^~FLC~^^^^^^^^^^~02/01/2003~
-~18059~^~268~^1017.^0^^~4~^^^^^^^^^^^~07/01/2012~
-~18059~^~301~^69.^4^30.^~1~^^^^^^^^^^^~08/01/1992~
-~18059~^~304~^80.^0^^~4~^~FLA~^^^^^^^^^^~12/01/1997~
-~18059~^~305~^178.^0^^~4~^~FLA~^^^^^^^^^^~12/01/1997~
-~18059~^~306~^215.^0^^~4~^~FLA~^^^^^^^^^^~12/01/1997~
-~18059~^~307~^269.^0^^~8~^~LC~^^^^^^^^^^~08/01/2012~
-~18059~^~318~^3.^0^^~4~^~FLC~^^^^^^^^^^~07/01/2012~
-~18059~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2002~
-~18059~^~320~^0.^0^^~4~^~NC~^^^^^^^^^^~12/01/2006~
-~18059~^~321~^0.^0^^~4~^~FLC~^^^^^^^^^^~02/01/2003~
-~18059~^~322~^0.^0^^~4~^~FLC~^^^^^^^^^^~02/01/2003~
-~18059~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~
-~18059~^~334~^0.^0^^~4~^~FLC~^^^^^^^^^^~02/01/2003~
-~18059~^~337~^0.^0^^~4~^~FLC~^^^^^^^^^^~02/01/2003~
-~18059~^~338~^49.^0^^~4~^~FLC~^^^^^^^^^^~02/01/2003~
-~18059~^~417~^86.^0^^~4~^~FLC~^^^^^^^^^^~02/01/2003~
-~18059~^~431~^56.^0^^~4~^~NR~^^^^^^^^^^~12/01/2006~
-~18059~^~432~^30.^0^^~4~^^^^^^^^^^^~08/01/1992~
-~18059~^~435~^125.^0^^~4~^~NC~^^^^^^^^^^~01/01/2007~
-~18059~^~601~^0.^2^^~1~^^^^^^^^^^^~08/01/1992~
-~18060~^~208~^259.^0^^~4~^~NC~^^^^^^^^^^~07/01/2012~
-~18060~^~262~^0.^0^^~4~^~FLC~^^^^^^^^^^~02/01/2003~
-~18060~^~263~^0.^0^^~4~^~FLC~^^^^^^^^^^~02/01/2003~
-~18060~^~268~^1084.^0^^~4~^^^^^^^^^^^~07/01/2012~
-~18060~^~301~^73.^103^2.^~1~^^^^^^^^^^^~08/01/1992~
-~18060~^~304~^40.^38^1.^~1~^^^^^^^^^^^~08/01/1992~
-~18060~^~305~^125.^37^3.^~1~^^^^^^^^^^^~08/01/1992~
-~18060~^~306~^166.^53^3.^~1~^^^^^^^^^^^~08/01/1992~
-~18060~^~307~^603.^0^^~8~^~LC~^^^^^^^^^^~08/01/2012~
-~18060~^~318~^7.^0^^~4~^~FLA~^^^^^^^^^^~02/01/2006~
-~18060~^~319~^0.^0^^~4~^~FLC~^^^^^^^^^^~02/01/2003~
-~18060~^~320~^0.^0^^~4~^~NC~^^^^^^^^^^~02/01/2006~
-~18060~^~321~^4.^0^^~4~^~FLC~^^^^^^^^^^~02/01/2003~
-~18060~^~322~^0.^0^^~4~^~FLC~^^^^^^^^^^~02/01/2003~
-~18060~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~
-~18060~^~334~^1.^0^^~4~^~FLC~^^^^^^^^^^~02/01/2003~
-~18060~^~337~^0.^0^^~4~^~FLC~^^^^^^^^^^~02/01/2003~
-~18060~^~338~^54.^0^^~4~^~FLC~^^^^^^^^^^~02/01/2003~
-~18060~^~417~^110.^0^^~4~^~FLC~^^^^^^^^^^~02/01/2003~
-~18060~^~431~^59.^0^^~4~^~NR~^^^^^^^^^^~02/01/2006~
-~18060~^~432~^51.^4^14.^~1~^^^^^^^^^^^~08/01/1992~
-~18060~^~435~^151.^0^^~4~^~NC~^^^^^^^^^^~05/01/2009~
-~18060~^~601~^0.^7^0.^~1~^^^^^^^^^^^~08/01/1992~
-~18061~^~208~^284.^0^^~4~^^^^^^^^^^^~08/01/1992~
-~18061~^~262~^0.^0^^~4~^~RK~^^^^^^^^^^~02/01/2003~
-~18061~^~263~^0.^0^^~4~^~RK~^^^^^^^^^^~02/01/2003~
-~18061~^~268~^1188.^0^^~4~^^^^^^^^^^^~06/01/2005~
-~18061~^~301~^80.^0^^~4~^^^^^^^^^^^~08/01/1992~
-~18061~^~304~^43.^0^^~4~^^^^^^^^^^^~08/01/1992~
-~18061~^~305~^138.^0^^~4~^^^^^^^^^^^~08/01/1992~
-~18061~^~306~^183.^0^^~4~^^^^^^^^^^^~08/01/1992~
-~18061~^~307~^664.^0^^~4~^~BFSN~^~18060~^^^^^^^^^~08/01/2012~
-~18061~^~318~^4.^0^^~4~^^^^^^^^^^^~08/01/2012~
-~18061~^~319~^0.^0^^~4~^~RK~^^^^^^^^^^~02/01/2003~
-~18061~^~320~^0.^0^^~4~^~RK~^^^^^^^^^^~02/01/2003~
-~18061~^~321~^4.^0^^~4~^~RK~^^^^^^^^^^~02/01/2003~
-~18061~^~322~^0.^0^^~4~^~RK~^^^^^^^^^^~02/01/2003~
-~18061~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~
-~18061~^~334~^1.^0^^~4~^~RK~^^^^^^^^^^~02/01/2003~
-~18061~^~337~^0.^0^^~4~^~RK~^^^^^^^^^^~02/01/2003~
-~18061~^~338~^56.^0^^~4~^~RK~^^^^^^^^^^~02/01/2003~
-~18061~^~417~^103.^0^^~4~^~RK~^^^^^^^^^^~02/01/2003~
-~18061~^~431~^64.^0^^~4~^~NR~^^^^^^^^^^~02/01/2003~
-~18061~^~432~^39.^0^^~4~^^^^^^^^^^^~08/01/1992~
-~18061~^~435~^148.^0^^~4~^~NC~^^^^^^^^^^~02/01/2007~
-~18061~^~601~^0.^0^^~4~^^^^^^^^^^^~08/01/1992~
-~18064~^~208~^274.^0^^~4~^~NC~^^^^^^^^^^~04/01/2016~
-~18064~^~262~^0.^0^^~4~^~FLA~^^^^^^^^^^~02/01/2003~
-~18064~^~263~^0.^0^^~4~^~FLA~^^^^^^^^^^~02/01/2003~
-~18064~^~268~^1145.^0^^~4~^~NC~^^^^^^^^^^~04/01/2016~
-~18064~^~301~^125.^9^9.^~1~^~A~^^^1^98.^157.^5^100.^149.^~2, 3~^~04/01/2016~
-~18064~^~304~^41.^9^2.^~1~^~A~^^^1^35.^54.^5^34.^47.^~2, 3~^~04/01/2016~
-~18064~^~305~^129.^9^6.^~1~^~A~^^^1^112.^175.^5^112.^144.^~2, 3~^~04/01/2016~
-~18064~^~306~^141.^9^5.^~1~^~A~^^^1^128.^160.^5^127.^154.^~2, 3~^~04/01/2016~
-~18064~^~307~^473.^9^30.^~1~^~A~^^^1^375.^573.^5^395.^550.^~2, 3~^~04/01/2016~
-~18064~^~318~^2.^0^^~4~^~FLA~^^^^^^^^^^~03/01/2011~
-~18064~^~319~^0.^0^^~4~^~FLA~^^^^^^^^^^~11/01/2006~
-~18064~^~320~^0.^0^^~4~^~FLA~^^^^^^^^^^~11/01/2005~
-~18064~^~321~^1.^0^^~4~^~FLA~^^^^^^^^^^~03/01/2011~
-~18064~^~322~^0.^0^^~4~^~FLA~^^^^^^^^^^~03/01/2011~
-~18064~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~
-~18064~^~334~^0.^0^^~4~^~FLA~^^^^^^^^^^~03/01/2011~
-~18064~^~337~^0.^0^^~4~^~FLA~^^^^^^^^^^~02/01/2003~
-~18064~^~338~^44.^0^^~4~^~FLA~^^^^^^^^^^~11/01/2005~
-~18064~^~417~^85.^0^^~4~^~FLA~^^^^^^^^^^~11/01/2005~
-~18064~^~431~^20.^0^^~4~^~FLA~^^^^^^^^^^~11/01/2006~
-~18064~^~432~^65.^0^^~4~^~FLA~^^^^^^^^^^~11/01/2005~
-~18064~^~435~^99.^0^^~4~^~NC~^^^^^^^^^^~07/01/2007~
-~18064~^~601~^0.^0^^~4~^~FLA~^^^^^^^^^^~11/01/2005~
-~18065~^~208~^313.^0^^~4~^~NC~^^^^^^^^^^~11/01/2005~
-~18065~^~262~^0.^0^^~4~^~RA~^^^^^^^^^^~11/01/2005~
-~18065~^~263~^0.^0^^~4~^~RA~^^^^^^^^^^~11/01/2005~
-~18065~^~268~^1311.^0^^~4~^~NC~^^^^^^^^^^~11/01/2005~
-~18065~^~301~^165.^2^^~1~^~A~^^^1^160.^169.^1^^^^~11/01/2005~
-~18065~^~304~^59.^3^2.^~1~^~A~^^^1^53.^63.^2^46.^71.^~2, 3~^~11/01/2005~
-~18065~^~305~^188.^3^2.^~1~^~A~^^^1^184.^191.^2^179.^196.^~2, 3~^~11/01/2005~
-~18065~^~306~^223.^3^6.^~1~^~A~^^^1^216.^235.^2^196.^249.^~2, 3~^~11/01/2005~
-~18065~^~307~^601.^0^^~4~^~BFSN~^~18064~^^^^^^^^^~08/01/2012~
-~18065~^~318~^0.^0^^~4~^~RA~^^^^^^^^^^~11/01/2005~
-~18065~^~319~^0.^0^^~4~^~RA~^^^^^^^^^^~11/01/2005~
-~18065~^~320~^0.^0^^~4~^~RA~^^^^^^^^^^~11/01/2005~
-~18065~^~321~^0.^0^^~4~^~RA~^^^^^^^^^^~11/01/2005~
-~18065~^~322~^0.^0^^~4~^~RA~^^^^^^^^^^~11/01/2005~
-~18065~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~
-~18065~^~334~^0.^0^^~4~^~RA~^^^^^^^^^^~11/01/2005~
-~18065~^~337~^0.^0^^~4~^~RA~^^^^^^^^^^~11/01/2005~
-~18065~^~338~^50.^0^^~4~^~RA~^^^^^^^^^^~11/01/2005~
-~18065~^~417~^86.^0^^~4~^~RA~^^^^^^^^^^~11/01/2005~
-~18065~^~431~^20.^0^^~4~^~RA~^^^^^^^^^^~11/01/2005~
-~18065~^~432~^65.^0^^~4~^~RA~^^^^^^^^^^~11/01/2005~
-~18065~^~435~^100.^0^^~4~^~NC~^^^^^^^^^^~07/01/2007~
-~18065~^~601~^0.^0^^~4~^~RA~^^^^^^^^^^~11/01/2005~
-~18069~^~208~^266.^0^^~4~^~NC~^^^^^^^^^^~05/01/2014~
-~18069~^~262~^0.^0^^~4~^~FLC~^^^^^^^^^^~12/01/2002~
-~18069~^~263~^0.^0^^~4~^~FLC~^^^^^^^^^^~12/01/2002~
-~18069~^~268~^1113.^0^^~4~^~NC~^^^^^^^^^^~05/01/2014~
-~18069~^~301~^144.^6^20.^~1~^~A~^^^1^87.^212.^5^92.^195.^~2, 3~^~05/01/2014~
-~18069~^~304~^23.^6^0.^~1~^~A~^^^1^22.^26.^5^21.^25.^~2, 3~^~05/01/2014~
-~18069~^~305~^98.^6^4.^~1~^~A~^^^1^85.^117.^5^85.^109.^~2, 3~^~05/01/2014~
-~18069~^~306~^126.^6^5.^~1~^~A~^^^1^107.^144.^5^111.^141.^~2, 3~^~05/01/2014~
-~18069~^~307~^490.^6^15.^~1~^~A~^^^1^417.^526.^5^450.^529.^~2, 3~^~05/01/2014~
-~18069~^~318~^1.^0^^~4~^~FLC~^^^^^^^^^^~03/01/2011~
-~18069~^~319~^0.^0^^~4~^~FLC~^^^^^^^^^^~12/01/2002~
-~18069~^~320~^0.^0^^~4~^~FLC~^^^^^^^^^^~03/01/2011~
-~18069~^~321~^0.^0^^~4~^~FLC~^^^^^^^^^^~02/01/2006~
-~18069~^~322~^0.^0^^~4~^~FLC~^^^^^^^^^^~02/01/2006~
-~18069~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~
-~18069~^~334~^0.^0^^~4~^~FLC~^^^^^^^^^^~02/01/2006~
-~18069~^~337~^0.^0^^~4~^~FLC~^^^^^^^^^^~12/01/2002~
-~18069~^~338~^44.^0^^~4~^~FLC~^^^^^^^^^^~01/01/2003~
-~18069~^~417~^111.^7^5.^~1~^~A~^^^1^91.^129.^6^97.^123.^~2, 3~^~12/01/2002~
-~18069~^~431~^86.^7^2.^~1~^~A~^^^1^78.^93.^6^80.^91.^~2, 3~^~12/01/2002~
-~18069~^~432~^25.^7^5.^~1~^~AS~^^^1^11.^44.^6^11.^37.^~2, 3~^~12/01/2002~
-~18069~^~435~^171.^0^^~4~^~NC~^^^^^^^^^^~06/01/2007~
-~18069~^~601~^0.^2^^~1~^~A~^^^1^0.^0.^^^^~1~^~12/01/2002~
-~18070~^~208~^290.^0^^~4~^~NC~^^^^^^^^^^~07/01/2015~
-~18070~^~262~^0.^0^^~4~^~RK~^^^^^^^^^^~02/01/2003~
-~18070~^~263~^0.^0^^~4~^~RK~^^^^^^^^^^~02/01/2003~
-~18070~^~268~^1213.^0^^~4~^~NC~^^^^^^^^^^~07/01/2015~
-~18070~^~301~^119.^0^^~1~^^^^^^^^^^^~05/01/2000~
-~18070~^~304~^26.^0^^~1~^^^^^^^^^^^~05/01/2000~
-~18070~^~305~^103.^0^^~1~^^^^^^^^^^^~05/01/2000~
-~18070~^~306~^131.^0^^~1~^^^^^^^^^^^~05/01/2000~
-~18070~^~307~^537.^0^^~4~^~BFSN~^~18069~^^^^^^^^^~07/01/2015~
-~18070~^~318~^1.^0^^~4~^~NC~^^^^^^^^^^~07/01/2015~
-~18070~^~319~^0.^0^^~4~^~RK~^^^^^^^^^^~02/01/2003~
-~18070~^~320~^0.^0^^~4~^~NC~^^^^^^^^^^~02/01/2003~
-~18070~^~321~^0.^0^^~4~^~RK~^^^^^^^^^^~02/01/2003~
-~18070~^~322~^0.^0^^~4~^~RK~^^^^^^^^^^~02/01/2003~
-~18070~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~
-~18070~^~334~^0.^0^^~4~^~RK~^^^^^^^^^^~02/01/2003~
-~18070~^~337~^0.^0^^~4~^~RK~^^^^^^^^^^~02/01/2003~
-~18070~^~338~^46.^0^^~4~^~RK~^^^^^^^^^^~02/01/2003~
-~18070~^~417~^104.^0^^~4~^~RK~^^^^^^^^^^~02/01/2003~
-~18070~^~431~^80.^0^^~4~^~RK~^^^^^^^^^^~07/01/2015~
-~18070~^~432~^23.^0^^~4~^~RK~^^^^^^^^^^~07/01/2015~
-~18070~^~435~^160.^0^^~4~^~NC~^^^^^^^^^^~07/01/2015~
-~18070~^~601~^1.^0^^~1~^^^^^^^^^^^~05/01/2000~
-~18071~^~208~^274.^0^^~4~^~NC~^^^^^^^^^^~08/01/1992~
-~18071~^~268~^1146.^0^^~4~^^^^^^^^^^^
-~18071~^~301~^32.^0^^~1~^^^^^^^^^^^~08/01/1992~
-~18071~^~304~^17.^0^^~1~^^^^^^^^^^^~08/01/1992~
-~18071~^~305~^96.^0^^~1~^^^^^^^^^^^~08/01/1992~
-~18071~^~306~^111.^0^^~1~^^^^^^^^^^^~08/01/1992~
-~18071~^~307~^336.^0^^~1~^^^^^^^^^^^~08/01/1992~
-~18071~^~318~^41.^0^^~1~^^^^^^^^^^^~08/01/1992~
-~18071~^~319~^12.^0^^~4~^~NC~^^^^^^^^^^~06/01/2002~
-~18071~^~320~^12.^0^^~4~^~NC~^^^^^^^^^^~06/01/2002~
-~18071~^~417~^85.^0^^~4~^~RK~^^^^^^^^^^~12/01/1997~
-~18071~^~431~^58.^0^^~4~^~NC~^^^^^^^^^^~05/01/2000~
-~18071~^~432~^27.^0^^~1~^^^^^^^^^^^~08/01/1992~
-~18071~^~435~^126.^0^^~4~^~NC~^^^^^^^^^^~01/01/2001~
-~18071~^~601~^0.^0^^~1~^^^^^^^^^^^~08/01/1992~
-~18073~^~208~^285.^0^^~4~^~NC~^^^^^^^^^^~08/01/1992~
-~18073~^~268~^1192.^0^^~4~^^^^^^^^^^^
-~18073~^~301~^57.^0^^~1~^^^^^^^^^^^~08/01/1992~
-~18073~^~304~^19.^0^^~1~^^^^^^^^^^^~08/01/1992~
-~18073~^~305~^115.^0^^~1~^^^^^^^^^^^~08/01/1992~
-~18073~^~306~^146.^0^^~1~^^^^^^^^^^^~08/01/1992~
-~18073~^~307~^359.^0^^~1~^^^^^^^^^^^~08/01/1992~
-~18073~^~318~^79.^0^^~1~^^^^^^^^^^^~08/01/1992~
-~18073~^~319~^21.^0^^~4~^~NC~^^^^^^^^^^~06/01/2002~
-~18073~^~320~^22.^0^^~4~^~NC~^^^^^^^^^^~06/01/2002~
-~18073~^~417~^91.^0^^~4~^~RK~^^^^^^^^^^~12/01/1997~
-~18073~^~431~^49.^0^^~4~^~NC~^^^^^^^^^^~05/01/2000~
-~18073~^~432~^42.^0^^~1~^^^^^^^^^^^~08/01/1992~
-~18073~^~435~^125.^0^^~4~^~NC~^^^^^^^^^^~01/01/2001~
-~18073~^~601~^3.^0^^~1~^^^^^^^^^^^~08/01/1992~
-~18075~^~208~^252.^0^^~4~^~NC~^^^^^^^^^^~04/01/2013~
-~18075~^~262~^0.^0^^~4~^~FLA~^^^^^^^^^^~02/01/2003~
-~18075~^~263~^0.^0^^~4~^~FLA~^^^^^^^^^^~02/01/2003~
-~18075~^~268~^1055.^0^^~4~^~NC~^^^^^^^^^^~04/01/2013~
-~18075~^~301~^161.^10^15.^~1~^~A~^^^1^109.^249.^7^123.^198.^~2, 3~^~04/01/2013~
-~18075~^~304~^75.^10^1.^~1~^~A~^^^1^66.^87.^6^71.^79.^~2, 3~^~04/01/2013~
-~18075~^~305~^212.^10^5.^~1~^~A~^^^1^190.^248.^6^198.^225.^~2, 3~^~04/01/2013~
-~18075~^~306~^254.^10^10.^~1~^~A~^^^1^207.^308.^3^222.^285.^~2, 3~^~04/01/2013~
-~18075~^~307~^455.^10^25.^~1~^~A~^^^1^255.^545.^7^394.^515.^~2, 3~^~04/01/2013~
-~18075~^~318~^3.^0^^~4~^~NC~^^^^^^^^^^~11/01/2009~
-~18075~^~319~^0.^0^^~4~^~FLA~^^^^^^^^^^~10/01/2005~
-~18075~^~320~^0.^0^^~4~^~NC~^^^^^^^^^^~11/01/2009~
-~18075~^~321~^2.^0^^~4~^~FLA~^^^^^^^^^^~06/01/2009~
-~18075~^~322~^0.^0^^~4~^~FLA~^^^^^^^^^^~02/01/2003~
-~18075~^~324~^0.^0^^~4~^~FLA~^^^^^^^^^^~06/01/2009~
-~18075~^~334~^0.^0^^~4~^~FLA~^^^^^^^^^^~02/01/2003~
-~18075~^~337~^0.^0^^~4~^~FLA~^^^^^^^^^^~02/01/2003~
-~18075~^~338~^87.^0^^~4~^~FLA~^^^^^^^^^^~06/01/2009~
-~18075~^~417~^42.^7^4.^~1~^~A~^^^1^24.^60.^4^28.^55.^~2, 3~^~04/01/2013~
-~18075~^~431~^0.^0^^~4~^~FLA~^^^^^^^^^^~11/01/2009~
-~18075~^~432~^42.^0^^~4~^~NR~^^^^^^^^^^~04/01/2013~
-~18075~^~435~^42.^0^^~4~^~NC~^^^^^^^^^^~04/01/2013~
-~18075~^~601~^0.^0^^~4~^~FLA~^^^^^^^^^^~10/01/2005~
-~18076~^~208~^306.^0^^~4~^~NC~^^^^^^^^^^~11/01/2005~
-~18076~^~262~^0.^0^^~4~^~RA~^^^^^^^^^^~11/01/2005~
-~18076~^~263~^0.^0^^~4~^~RA~^^^^^^^^^^~11/01/2005~
-~18076~^~268~^1282.^0^^~4~^~NC~^^^^^^^^^^~11/01/2005~
-~18076~^~301~^130.^2^^~1~^~A~^^^1^127.^134.^1^^^^~11/01/2005~
-~18076~^~304~^99.^2^^~1~^~A~^^^1^97.^101.^1^^^^~11/01/2005~
-~18076~^~305~^303.^2^^~1~^~A~^^^1^296.^309.^1^^^^~11/01/2005~
-~18076~^~306~^326.^2^^~1~^~A~^^^1^313.^338.^1^^^^~11/01/2005~
-~18076~^~307~^565.^0^^~4~^~BFSN~^~18075~^^^^^^^^^~07/01/2015~
-~18076~^~318~^4.^0^^~4~^~RA~^^^^^^^^^^~11/01/2005~
-~18076~^~319~^0.^0^^~4~^~RA~^^^^^^^^^^~11/01/2005~
-~18076~^~320~^0.^0^^~4~^~RA~^^^^^^^^^^~11/01/2005~
-~18076~^~321~^2.^0^^~4~^~RA~^^^^^^^^^^~11/01/2005~
-~18076~^~322~^0.^0^^~4~^~RA~^^^^^^^^^^~11/01/2005~
-~18076~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~
-~18076~^~334~^0.^0^^~4~^~RA~^^^^^^^^^^~11/01/2005~
-~18076~^~337~^0.^0^^~4~^~RA~^^^^^^^^^^~11/01/2005~
-~18076~^~338~^89.^0^^~4~^~RA~^^^^^^^^^^~11/01/2005~
-~18076~^~417~^52.^0^^~4~^~RA~^^^^^^^^^^~11/01/2005~
-~18076~^~431~^0.^0^^~4~^~RA~^^^^^^^^^^~11/01/2005~
-~18076~^~432~^52.^0^^~4~^~RA~^^^^^^^^^^~11/01/2005~
-~18076~^~435~^52.^0^^~4~^~NC~^^^^^^^^^^~06/01/2009~
-~18076~^~601~^0.^0^^~4~^~RA~^^^^^^^^^^~11/01/2005~
-~18077~^~208~^278.^0^^~4~^~NC~^^^^^^^^^^~08/01/1992~
-~18077~^~262~^0.^0^^~4~^~RA~^^^^^^^^^^~02/01/2003~
-~18077~^~263~^0.^0^^~4~^~RA~^^^^^^^^^^~02/01/2003~
-~18077~^~268~^1163.^0^^~4~^^^^^^^^^^^~05/01/2005~
-~18077~^~301~^33.^0^^~1~^^^^^^^^^^^~08/01/1992~
-~18077~^~304~^81.^0^^~1~^^^^^^^^^^^~08/01/1992~
-~18077~^~305~^187.^0^^~1~^^^^^^^^^^^~08/01/1992~
-~18077~^~306~^314.^0^^~1~^^^^^^^^^^^~08/01/1992~
-~18077~^~307~^346.^0^^~1~^^^^^^^^^^^~08/01/1992~
-~18077~^~318~^3.^0^^~4~^~NC~^^^^^^^^^^~02/01/2003~
-~18077~^~319~^0.^0^^~4~^~RA~^^^^^^^^^^~02/01/2003~
-~18077~^~320~^0.^0^^~4~^~NC~^^^^^^^^^^~02/01/2003~
-~18077~^~321~^2.^0^^~4~^~RA~^^^^^^^^^^~02/01/2003~
-~18077~^~322~^0.^0^^~4~^~RA~^^^^^^^^^^~02/01/2003~
-~18077~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~
-~18077~^~334~^0.^0^^~4~^~RA~^^^^^^^^^^~02/01/2003~
-~18077~^~337~^0.^0^^~4~^~RA~^^^^^^^^^^~02/01/2003~
-~18077~^~338~^89.^0^^~4~^~RA~^^^^^^^^^^~02/01/2003~
-~18077~^~417~^65.^0^^~4~^~RA~^^^^^^^^^^~02/01/2003~
-~18077~^~431~^18.^0^^~4~^^^^^^^^^^^~02/01/2003~
-~18077~^~432~^47.^0^^~1~^^^^^^^^^^^~08/01/1992~
-~18077~^~435~^78.^0^^~4~^~NC~^^^^^^^^^^~05/01/2009~
-~18077~^~601~^0.^0^^~1~^^^^^^^^^^^~08/01/1992~
-~18078~^~208~^305.^0^^~4~^~NC~^^^^^^^^^^~08/01/1992~
-~18078~^~262~^0.^0^^~4~^^^^^^^^^^^~02/01/2003~
-~18078~^~263~^0.^0^^~4~^^^^^^^^^^^~02/01/2003~
-~18078~^~268~^1276.^0^^~4~^^^^^^^^^^^~05/01/2005~
-~18078~^~301~^36.^0^^~1~^^^^^^^^^^^~08/01/1992~
-~18078~^~304~^89.^0^^~1~^^^^^^^^^^^~08/01/1992~
-~18078~^~305~^205.^0^^~1~^^^^^^^^^^^~08/01/1992~
-~18078~^~306~^345.^0^^~1~^^^^^^^^^^^~08/01/1992~
-~18078~^~307~^381.^0^^~1~^^^^^^^^^^^~08/01/1992~
-~18078~^~318~^4.^0^^~4~^~NC~^^^^^^^^^^~02/01/2003~
-~18078~^~319~^0.^0^^~4~^~RA~^^^^^^^^^^~02/01/2003~
-~18078~^~320~^0.^0^^~4~^~NC~^^^^^^^^^^~02/01/2003~
-~18078~^~321~^2.^0^^~4~^~RA~^^^^^^^^^^~02/01/2003~
-~18078~^~322~^0.^0^^~4~^~RA~^^^^^^^^^^~02/01/2003~
-~18078~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~
-~18078~^~334~^0.^0^^~4~^~RA~^^^^^^^^^^~02/01/2003~
-~18078~^~337~^0.^0^^~4~^~RA~^^^^^^^^^^~02/01/2003~
-~18078~^~338~^97.^0^^~4~^~RA~^^^^^^^^^^~02/01/2003~
-~18078~^~417~^67.^0^^~4~^~RA~^^^^^^^^^^~02/01/2003~
-~18078~^~431~^31.^0^^~4~^^^^^^^^^^^~02/01/2003~
-~18078~^~432~^36.^0^^~1~^^^^^^^^^^^~08/01/1992~
-~18078~^~435~^89.^0^^~4~^~NC~^^^^^^^^^^~02/01/2007~
-~18078~^~601~^0.^0^^~1~^^^^^^^^^^^~08/01/1992~
-~18079~^~208~^395.^0^^~4~^~NC~^^^^^^^^^^~01/01/2007~
-~18079~^~262~^0.^0^^~4~^~FLC~^^^^^^^^^^~01/01/2003~
-~18079~^~263~^0.^0^^~4~^~FLC~^^^^^^^^^^~01/01/2003~
-~18079~^~268~^1653.^0^^~4~^~NC~^^^^^^^^^^~01/01/2007~
-~18079~^~301~^183.^6^2.^~1~^~A~^^^1^174.^194.^5^175.^190.^~2, 3~^~01/01/2003~
-~18079~^~304~^43.^6^0.^~1~^~A~^^^1^43.^44.^5^42.^44.^~2, 3~^~01/01/2003~
-~18079~^~305~^165.^6^1.^~1~^~A~^^^1^161.^168.^5^162.^168.^~2, 3~^~01/01/2003~
-~18079~^~306~^196.^6^2.^~1~^~A~^^^1^189.^201.^5^190.^201.^~2, 3~^~01/01/2003~
-~18079~^~307~^732.^6^3.^~1~^~A~^^^1^718.^745.^5^721.^741.^~2, 3~^~01/01/2003~
-~18079~^~318~^0.^0^^~1~^~AS~^^^^^^^^^^~01/01/2003~
-~18079~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2002~
-~18079~^~320~^0.^0^^~1~^~AS~^^^^^^^^^^~01/01/2003~
-~18079~^~321~^0.^3^0.^~1~^~A~^^^1^0.^0.^^^^~1, 2, 3~^~01/01/2003~
-~18079~^~322~^0.^3^0.^~1~^~A~^^^1^0.^0.^^^^~1, 2, 3~^~01/01/2003~
-~18079~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~
-~18079~^~334~^0.^3^0.^~1~^~A~^^^1^0.^0.^^^^~1, 2, 3~^~01/01/2003~
-~18079~^~337~^0.^3^0.^~1~^~A~^^^1^0.^0.^^^^~1, 2, 3~^~01/01/2003~
-~18079~^~338~^0.^0^^~4~^^^^^^^^^^^~01/01/2007~
-~18079~^~417~^107.^6^3.^~1~^~A~^^^1^94.^120.^5^97.^116.^~2, 3~^~01/01/2003~
-~18079~^~431~^82.^0^^~4~^~O~^^^^^^^^^^~01/01/2003~
-~18079~^~432~^25.^0^^~4~^^^^^^^^^^^~05/01/2005~
-~18079~^~435~^164.^0^^~4~^~NC~^^^^^^^^^^~01/01/2007~
-~18079~^~601~^0.^1^^~1~^~A~^^^^^^^^^~1~^~01/01/2003~
-~18079~^~636~^8.^0^^~4~^~FLC~^^^^^^^^^^~01/01/2003~
-~18080~^~208~^412.^0^^~4~^~NC~^^^^^^^^^^~01/01/2007~
-~18080~^~262~^0.^0^^~4~^~FLA~^^^^^^^^^^~02/01/2003~
-~18080~^~263~^0.^0^^~4~^~FLA~^^^^^^^^^^~02/01/2003~
-~18080~^~268~^1724.^0^^~4~^^^^^^^^^^^~01/01/2007~
-~18080~^~301~^22.^4^3.^~1~^^^^^^^^^^^~08/01/1992~
-~18080~^~304~^32.^4^0.^~1~^^^^^^^^^^^~08/01/1992~
-~18080~^~305~^121.^4^12.^~1~^^^^^^^^^^^~08/01/1992~
-~18080~^~306~^124.^5^33.^~1~^^^^^^^^^^^~08/01/1992~
-~18080~^~307~^713.^0^^~8~^~LC~^^^^^^^^^^~08/01/2012~
-~18080~^~318~^0.^0^^~1~^^^^^^^^^^^~01/01/2007~
-~18080~^~319~^0.^0^^~4~^~FLA~^^^^^^^^^^~02/01/2003~
-~18080~^~320~^0.^0^^~4~^~NC~^^^^^^^^^^~01/01/2007~
-~18080~^~321~^1.^0^^~4~^~FLA~^^^^^^^^^^~02/01/2003~
-~18080~^~322~^0.^0^^~4~^~FLA~^^^^^^^^^^~02/01/2003~
-~18080~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~
-~18080~^~334~^0.^0^^~4~^~FLA~^^^^^^^^^^~02/01/2003~
-~18080~^~337~^0.^0^^~4~^~FLA~^^^^^^^^^^~02/01/2003~
-~18080~^~338~^65.^0^^~4~^~FLA~^^^^^^^^^^~02/01/2003~
-~18080~^~417~^162.^0^^~4~^~FLA~^^^^^^^^^^~02/01/2003~
-~18080~^~431~^132.^0^^~4~^~NR~^^^^^^^^^^~01/01/2007~
-~18080~^~432~^30.^0^^~4~^^^^^^^^^^^~08/01/1992~
-~18080~^~435~^255.^0^^~4~^~NC~^^^^^^^^^^~07/01/2012~
-~18080~^~601~^0.^3^0.^~1~^^^^^^^^^^^~08/01/1992~
-~18081~^~208~^386.^0^^~4~^~NC~^^^^^^^^^^~08/01/1992~
-~18081~^~262~^0.^0^^~4~^~FLA~^^^^^^^^^^~02/01/2003~
-~18081~^~263~^0.^0^^~4~^~FLA~^^^^^^^^^^~02/01/2003~
-~18081~^~268~^1615.^0^^~4~^^^^^^^^^^^~05/01/2005~
-~18081~^~301~^97.^49^1.^~1~^^^^^^^^^^^~08/01/1992~
-~18081~^~304~^40.^10^0.^~1~^^^^^^^^^^^~08/01/1992~
-~18081~^~305~^141.^10^3.^~1~^^^^^^^^^^^~08/01/1992~
-~18081~^~306~^246.^19^10.^~1~^^^^^^^^^^^~08/01/1992~
-~18081~^~307~^1405.^0^^~8~^~LC~^^^^^^^^^^~05/01/2010~
-~18081~^~318~^2.^0^^~4~^~NC~^^^^^^^^^^~02/01/2003~
-~18081~^~319~^0.^0^^~4~^~FLA~^^^^^^^^^^~02/01/2003~
-~18081~^~320~^0.^0^^~4~^~NC~^^^^^^^^^^~02/01/2003~
-~18081~^~321~^1.^0^^~4~^~FLA~^^^^^^^^^^~02/01/2003~
-~18081~^~322~^0.^0^^~4~^~FLA~^^^^^^^^^^~02/01/2003~
-~18081~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~
-~18081~^~334~^0.^0^^~4~^~FLA~^^^^^^^^^^~02/01/2003~
-~18081~^~337~^0.^0^^~4~^~FLA~^^^^^^^^^^~02/01/2003~
-~18081~^~338~^72.^0^^~4~^~FLA~^^^^^^^^^^~02/01/2003~
-~18081~^~417~^168.^0^^~4~^~FLA~^^^^^^^^^^~02/01/2003~
-~18081~^~431~^82.^0^^~4~^^^^^^^^^^^~02/01/2003~
-~18081~^~432~^86.^5^1.^~1~^^^^^^^^^^^~08/01/1992~
-~18081~^~435~^225.^0^^~4~^~NC~^^^^^^^^^^~01/01/2007~
-~18081~^~601~^1.^0^^~4~^~FLA~^^^^^^^^^^~12/01/1997~
-~18082~^~208~^195.^0^^~4~^~NC~^^^^^^^^^^~07/01/2015~
-~18082~^~262~^0.^0^^~4~^~RA~^^^^^^^^^^~02/01/2003~
-~18082~^~263~^0.^0^^~4~^~RA~^^^^^^^^^^~02/01/2003~
-~18082~^~268~^815.^0^^~4~^~NC~^^^^^^^^^^~07/01/2015~
-~18082~^~301~^30.^0^^~4~^~RA~^^^^^^^^^^~07/01/2015~
-~18082~^~304~^11.^0^^~4~^~RA~^^^^^^^^^^~07/01/2015~
-~18082~^~305~^38.^0^^~4~^~RA~^^^^^^^^^^~07/01/2015~
-~18082~^~306~^67.^0^^~4~^~RA~^^^^^^^^^^~07/01/2015~
-~18082~^~307~^479.^0^^~4~^~RA~^^^^^^^^^^~08/01/2012~
-~18082~^~318~^497.^0^^~4~^~RA~^^^^^^^^^^~07/01/2015~
-~18082~^~319~^107.^0^^~4~^~RA~^^^^^^^^^^~07/01/2015~
-~18082~^~320~^114.^0^^~4~^~RA~^^^^^^^^^^~07/01/2015~
-~18082~^~321~^85.^0^^~4~^~RA~^^^^^^^^^^~07/01/2015~
-~18082~^~322~^0.^0^^~4~^~RA~^^^^^^^^^^~02/01/2003~
-~18082~^~324~^0.^0^^~4~^~RA~^^^^^^^^^^~08/01/2012~
-~18082~^~334~^0.^0^^~4~^~RA~^^^^^^^^^^~02/01/2003~
-~18082~^~337~^0.^0^^~4~^~RA~^^^^^^^^^^~02/01/2003~
-~18082~^~338~^18.^0^^~4~^~RA~^^^^^^^^^^~02/01/2003~
-~18082~^~417~^37.^0^^~4~^~RA~^^^^^^^^^^~07/01/2015~
-~18082~^~431~^18.^0^^~4~^~RA~^^^^^^^^^^~07/01/2015~
-~18082~^~432~^19.^0^^~4~^~RA~^^^^^^^^^^~07/01/2015~
-~18082~^~435~^50.^0^^~4~^~NC~^^^^^^^^^^~07/01/2015~
-~18082~^~601~^0.^0^^~4~^~RA~^^^^^^^^^^~08/01/1992~
-~18084~^~208~^389.^0^^~4~^~NC~^^^^^^^^^^~11/01/2004~
-~18084~^~268~^1628.^0^^~4~^^^^^^^^^^^~11/01/2004~
-~18084~^~301~^78.^20^1.^~1~^^^^^^^^^^^~08/01/1992~
-~18084~^~304~^44.^1^^~1~^^^^^^^^^^^~08/01/1992~
-~18084~^~305~^113.^1^^~1~^^^^^^^^^^^~08/01/1992~
-~18084~^~306~^204.^3^43.^~1~^^^^^^^^^^^~08/01/1992~
-~18084~^~307~^1429.^0^^~4~^~NR~^^^^^^^^^^~07/01/2015~
-~18084~^~318~^157.^1^^~1~^^^^^^^^^^^~11/01/2004~
-~18084~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2002~
-~18084~^~320~^8.^1^^~1~^^^^^^^^^^^~08/01/2008~
-~18084~^~417~^175.^0^^~4~^~FLA~^^^^^^^^^^~05/01/2003~
-~18084~^~431~^133.^0^^~4~^~FLA~^^^^^^^^^^~05/01/2003~
-~18084~^~432~^42.^0^^~4~^~FLA~^^^^^^^^^^~05/01/2003~
-~18084~^~435~^269.^0^^~4~^~NC~^^^^^^^^^^~08/01/2008~
-~18084~^~601~^0.^1^^~1~^^^^^^^^^^^~08/01/1992~
-~18085~^~208~^179.^0^^~4~^^^^^^^^^^^~08/01/1992~
-~18085~^~262~^0.^0^^~4~^~RA~^^^^^^^^^^~03/01/2003~
-~18085~^~263~^0.^0^^~4~^~RA~^^^^^^^^^^~03/01/2003~
-~18085~^~268~^749.^0^^~4~^^^^^^^^^^^~05/01/2005~
-~18085~^~301~^26.^0^^~4~^^^^^^^^^^^~08/01/1992~
-~18085~^~304~^13.^0^^~4~^^^^^^^^^^^~08/01/1992~
-~18085~^~305~^34.^0^^~4~^^^^^^^^^^^~08/01/1992~
-~18085~^~306~^62.^0^^~4~^^^^^^^^^^^~08/01/1992~
-~18085~^~307~^526.^0^^~4~^~BFSN~^~18084~^^^^^^^^^~07/01/2015~
-~18085~^~318~^340.^0^^~4~^~NC~^^^^^^^^^^~03/01/2003~
-~18085~^~319~^73.^0^^~4~^~RA~^^^^^^^^^^~03/01/2003~
-~18085~^~320~^78.^0^^~4~^~NC~^^^^^^^^^^~03/01/2003~
-~18085~^~321~^58.^0^^~4~^~RA~^^^^^^^^^^~03/01/2003~
-~18085~^~322~^0.^0^^~4~^~RA~^^^^^^^^^^~03/01/2003~
-~18085~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~
-~18085~^~334~^0.^0^^~4~^~RA~^^^^^^^^^^~03/01/2003~
-~18085~^~337~^0.^0^^~4~^~RA~^^^^^^^^^^~03/01/2003~
-~18085~^~338~^0.^0^^~4~^~RA~^^^^^^^^^^~03/01/2003~
-~18085~^~417~^97.^0^^~4~^~FLA~^^^^^^^^^^~03/01/1998~
-~18085~^~431~^89.^0^^~4~^~NC~^^^^^^^^^^~05/01/2000~
-~18085~^~432~^8.^0^^~4~^^^^^^^^^^^~08/01/1992~
-~18085~^~435~^159.^0^^~4~^~NC~^^^^^^^^^^~01/01/2007~
-~18085~^~601~^0.^0^^~4~^^^^^^^^^^^~08/01/1992~
-~18086~^~208~^258.^0^^~4~^~NC~^^^^^^^^^^~12/01/2005~
-~18086~^~268~^1077.^0^^~4~^~NC~^^^^^^^^^^~12/01/2005~
-~18086~^~301~^140.^6^16.^~1~^^^^^^^^^^^~08/01/1992~
-~18086~^~304~^12.^2^^~1~^^^^^^^^^^^~08/01/1992~
-~18086~^~305~^324.^1^^~1~^~A~^^^^^^^^^^~12/01/2005~
-~18086~^~306~^93.^2^^~1~^^^^^^^^^^^~08/01/1992~
-~18086~^~307~^749.^3^54.^~1~^^^^^^^^^^^~08/01/1992~
-~18086~^~318~^0.^0^^~4~^~FLA~^^^^^^^^^^~08/01/1992~
-~18086~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2002~
-~18086~^~320~^0.^0^^~1~^~AS~^^^^^^^^^^~12/01/2005~
-~18086~^~417~^35.^0^^~4~^~FLA~^^^^^^^^^^~03/01/1998~
-~18086~^~431~^32.^0^^~4~^~NC~^^^^^^^^^^~05/01/2000~
-~18086~^~432~^3.^0^^~4~^^^^^^^^^^^~08/01/1992~
-~18086~^~435~^57.^0^^~4~^~NC~^^^^^^^^^^~12/01/2005~
-~18086~^~601~^0.^0^^~4~^^^^^^^^^^^~08/01/1992~
-~18088~^~208~^257.^0^^~4~^^^^^^^^^^^~08/01/1992~
-~18088~^~262~^0.^0^^~4~^~RA~^^^^^^^^^^~03/01/2003~
-~18088~^~263~^0.^0^^~4~^~RA~^^^^^^^^^^~03/01/2003~
-~18088~^~268~^1075.^0^^~4~^^^^^^^^^^^~05/01/2005~
-~18088~^~301~^84.^0^^~4~^^^^^^^^^^^~08/01/1992~
-~18088~^~304~^8.^0^^~4~^^^^^^^^^^^~08/01/1992~
-~18088~^~305~^232.^0^^~4~^^^^^^^^^^^~08/01/1992~
-~18088~^~306~^135.^0^^~4~^^^^^^^^^^^~08/01/1992~
-~18088~^~307~^511.^0^^~4~^~NR~^^^^^^^^^^~08/01/2010~
-~18088~^~318~^0.^0^^~4~^~NC~^^^^^^^^^^~03/01/2003~
-~18088~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2002~
-~18088~^~320~^0.^0^^~4~^~NC~^^^^^^^^^^~03/01/2003~
-~18088~^~321~^0.^0^^~4~^^^^^^^^^^^~03/01/2003~
-~18088~^~322~^0.^0^^~4~^^^^^^^^^^^~03/01/2003~
-~18088~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~
-~18088~^~334~^0.^0^^~4~^^^^^^^^^^^~03/01/2003~
-~18088~^~337~^0.^0^^~4~^~RA~^^^^^^^^^^~03/01/2003~
-~18088~^~338~^1.^0^^~4~^~RA~^^^^^^^^^^~03/01/2003~
-~18088~^~417~^19.^0^^~4~^~RA~^^^^^^^^^^~03/01/2003~
-~18088~^~431~^14.^0^^~4~^^^^^^^^^^^~03/01/2003~
-~18088~^~432~^5.^0^^~4~^^^^^^^^^^^~08/01/1992~
-~18088~^~435~^29.^0^^~4~^~NC~^^^^^^^^^^~02/01/2007~
-~18088~^~601~^0.^0^^~4~^^^^^^^^^^^~08/01/1992~
-~18090~^~208~^252.^0^^~4~^^^^^^^^^^^~08/01/1992~
-~18090~^~262~^0.^0^^~4~^~FLA~^^^^^^^^^^~02/01/2003~
-~18090~^~263~^6.^0^^~4~^~FLA~^^^^^^^^^^~05/01/1998~
-~18090~^~268~^1054.^0^^~4~^^^^^^^^^^^~05/01/2005~
-~18090~^~301~^23.^3^0.^~1~^^^^^^^^^^^~08/01/1992~
-~18090~^~304~^6.^2^^~1~^^^^^^^^^^^~08/01/1992~
-~18090~^~305~^49.^2^^~1~^^^^^^^^^^^~08/01/1992~
-~18090~^~306~^39.^3^4.^~1~^^^^^^^^^^^~08/01/1992~
-~18090~^~307~^254.^0^^~8~^~LC~^^^^^^^^^^~05/01/2010~
-~18090~^~318~^82.^0^^~4~^~NC~^^^^^^^^^^~02/01/2003~
-~18090~^~319~^23.^0^^~4~^~FLA~^^^^^^^^^^~02/01/2003~
-~18090~^~320~^24.^0^^~4~^~NC~^^^^^^^^^^~02/01/2003~
-~18090~^~321~^2.^0^^~4~^~FLA~^^^^^^^^^^~02/01/2003~
-~18090~^~322~^0.^0^^~4~^~FLA~^^^^^^^^^^~02/01/2003~
-~18090~^~324~^5.^0^^~4~^~FLA~^^^^^^^^^^~03/01/2009~
-~18090~^~334~^1.^0^^~4~^~FLA~^^^^^^^^^^~02/01/2003~
-~18090~^~337~^0.^0^^~4~^~FLA~^^^^^^^^^^~02/01/2003~
-~18090~^~338~^27.^0^^~4~^~FLA~^^^^^^^^^^~02/01/2003~
-~18090~^~417~^14.^0^^~4~^~FLA~^^^^^^^^^^~02/01/2003~
-~18090~^~431~^6.^0^^~4~^^^^^^^^^^^~02/01/2003~
-~18090~^~432~^8.^8^0.^~1~^^^^^^^^^^^~08/01/1992~
-~18090~^~435~^18.^0^^~4~^~NC~^^^^^^^^^^~03/01/2009~
-~18090~^~601~^37.^1^^~1~^^^^^^^^^^^~08/01/1992~
-~18092~^~208~^415.^0^^~4~^~NC~^^^^^^^^^^~08/01/1992~
-~18092~^~268~^1736.^0^^~4~^^^^^^^^^^^
-~18092~^~301~^172.^2^^~1~^^^^^^^^^^^~08/01/1992~
-~18092~^~304~^8.^1^^~1~^^^^^^^^^^^~08/01/1992~
-~18092~^~305~^247.^2^^~1~^^^^^^^^^^^~08/01/1992~
-~18092~^~306~^169.^2^^~1~^^^^^^^^^^^~08/01/1992~
-~18092~^~307~^567.^2^^~1~^^^^^^^^^^^~08/01/1992~
-~18092~^~318~^1930.^2^^~1~^^^^^^^^^^^~08/01/1992~
-~18092~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2002~
-~18092~^~320~^97.^0^^~4~^~NC~^^^^^^^^^^~06/01/2002~
-~18092~^~417~^67.^0^^~4~^~FLA~^^^^^^^^^^~12/01/1997~
-~18092~^~431~^53.^0^^~4~^~NC~^^^^^^^^^^~05/01/2000~
-~18092~^~432~^14.^0^^~4~^^^^^^^^^^^~08/01/1992~
-~18092~^~435~^104.^0^^~4~^~NC~^^^^^^^^^^~01/01/2001~
-~18092~^~601~^0.^0^^~4~^^^^^^^^^^^~08/01/1992~
-~18095~^~208~^264.^0^^~4~^~NC~^^^^^^^^^^~08/01/1992~
-~18095~^~262~^0.^0^^~4~^~FLA~^^^^^^^^^^~02/01/2003~
-~18095~^~263~^2.^0^^~4~^~FLA~^^^^^^^^^^~07/01/2015~
-~18095~^~268~^1104.^0^^~4~^~NC~^^^^^^^^^^~07/01/2015~
-~18095~^~301~^48.^1^^~1~^^^^^^^^^^^~08/01/1992~
-~18095~^~304~^19.^1^^~1~^^^^^^^^^^^~08/01/1992~
-~18095~^~305~^105.^1^^~1~^^^^^^^^^^^~08/01/1992~
-~18095~^~306~^166.^1^^~1~^^^^^^^^^^^~08/01/1992~
-~18095~^~307~^164.^0^^~4~^~FLC~^^^^^^^^^^~07/01/2015~
-~18095~^~318~^448.^0^^~4~^~NC~^^^^^^^^^^~07/01/2015~
-~18095~^~319~^69.^0^^~4~^~FLC~^^^^^^^^^^~07/01/2015~
-~18095~^~320~^80.^0^^~4~^~NC~^^^^^^^^^^~07/01/2015~
-~18095~^~321~^131.^0^^~4~^~FLC~^^^^^^^^^^~02/01/2003~
-~18095~^~322~^0.^0^^~4~^~FLC~^^^^^^^^^^~02/01/2003~
-~18095~^~324~^14.^0^^~4~^~FLC~^^^^^^^^^^~07/01/2015~
-~18095~^~334~^0.^0^^~4~^~FLC~^^^^^^^^^^~02/01/2003~
-~18095~^~337~^0.^0^^~4~^~FLC~^^^^^^^^^^~02/01/2003~
-~18095~^~338~^42.^0^^~4~^~FLC~^^^^^^^^^^~07/01/2015~
-~18095~^~417~^10.^0^^~4~^~FLA~^^^^^^^^^^~07/01/2015~
-~18095~^~431~^2.^0^^~4~^~NC~^^^^^^^^^^~07/01/2015~
-~18095~^~432~^8.^0^^~4~^~NC~^^^^^^^^^^~08/01/1992~
-~18095~^~435~^11.^0^^~4~^~NC~^^^^^^^^^^~07/01/2015~
-~18095~^~601~^42.^0^^~4~^~FLA~^^^^^^^^^^~12/01/1997~
-~18096~^~208~^389.^0^^~4~^~NC~^^^^^^^^^^~07/01/2011~
-~18096~^~262~^6.^0^^~4~^~BFZN~^~18127~^^^^^^^^^~05/01/2011~
-~18096~^~263~^215.^0^^~4~^~BFZN~^~18127~^^^^^^^^^~05/01/2011~
-~18096~^~268~^1629.^0^^~4~^~NC~^^^^^^^^^^~07/01/2011~
-~18096~^~301~^30.^6^1.^~1~^~A~^^^1^25.^38.^5^25.^34.^~2, 3~^~07/01/2011~
-~18096~^~304~^31.^6^1.^~1~^~A~^^^1^28.^35.^5^27.^34.^~2, 3~^~07/01/2011~
-~18096~^~305~^137.^6^5.^~1~^~A~^^^1^124.^155.^5^123.^150.^~2, 3~^~07/01/2011~
-~18096~^~306~^270.^6^8.^~1~^~A~^^^1^241.^292.^5^249.^290.^~2, 3~^~07/01/2011~
-~18096~^~307~^348.^6^19.^~1~^~A~^^^1^285.^407.^5^298.^397.^~2, 3~^~07/01/2011~
-~18096~^~318~^2.^0^^~4~^~NC~^^^^^^^^^^~07/01/2011~
-~18096~^~319~^1.^0^^~4~^~BFZN~^~18127~^^^^^^^^^~05/01/2011~
-~18096~^~320~^1.^0^^~4~^~NC~^^^^^^^^^^~05/01/2011~
-~18096~^~321~^0.^0^^~4~^~BFZN~^~18127~^^^^^^^^^~05/01/2011~
-~18096~^~322~^0.^0^^~4~^~BFZN~^~18127~^^^^^^^^^~05/01/2011~
-~18096~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~08/01/2012~
-~18096~^~334~^0.^0^^~4~^~BFZN~^~18127~^^^^^^^^^~05/01/2011~
-~18096~^~337~^0.^0^^~4~^~BFZN~^~18127~^^^^^^^^^~05/01/2011~
-~18096~^~338~^3.^0^^~4~^~BFZN~^~18127~^^^^^^^^^~05/01/2011~
-~18096~^~417~^17.^0^^~4~^~FLA~^^^^^^^^^^~03/01/1998~
-~18096~^~431~^9.^0^^~4~^~NC~^^^^^^^^^^~05/01/2000~
-~18096~^~432~^8.^0^^~4~^^^^^^^^^^^~08/01/1992~
-~18096~^~435~^23.^0^^~4~^~NC~^^^^^^^^^^~01/01/2001~
-~18096~^~601~^22.^3^2.^~1~^~A~^^^1^16.^26.^2^9.^34.^~2, 3~^~08/01/2012~
-~18097~^~208~^391.^0^^~4~^~NC~^^^^^^^^^^~05/01/2013~
-~18097~^~262~^6.^0^^~4~^~FLA~^^^^^^^^^^~05/01/1998~
-~18097~^~263~^207.^0^^~4~^~FLA~^^^^^^^^^^~05/01/1998~
-~18097~^~268~^1634.^0^^~4~^~NC~^^^^^^^^^^~05/01/2013~
-~18097~^~301~^133.^44^6.^~1~^^^^^^^^^^^~08/01/1992~
-~18097~^~304~^41.^36^0.^~1~^^^^^^^^^^^~08/01/1992~
-~18097~^~305~^286.^32^2.^~1~^^^^^^^^^^^~08/01/1992~
-~18097~^~306~^337.^40^24.^~1~^^^^^^^^^^^~08/01/1992~
-~18097~^~307~^866.^0^^~4~^~NR~^^^^^^^^^^~07/01/2017~
-~18097~^~318~^2.^0^^~4~^~FLA~^^^^^^^^^^~02/01/2003~
-~18097~^~319~^1.^0^^~4~^~FLC~^^^^^^^^^^~02/01/2003~
-~18097~^~320~^1.^0^^~4~^~FLC~^^^^^^^^^^~02/01/2003~
-~18097~^~321~^0.^0^^~4~^~FLC~^^^^^^^^^^~02/01/2003~
-~18097~^~322~^0.^0^^~4~^~FLC~^^^^^^^^^^~02/01/2003~
-~18097~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~
-~18097~^~334~^0.^0^^~4~^~FLC~^^^^^^^^^^~02/01/2003~
-~18097~^~337~^0.^0^^~4~^~FLC~^^^^^^^^^^~02/01/2003~
-~18097~^~338~^4.^0^^~4~^~FLC~^^^^^^^^^^~02/01/2003~
-~18097~^~417~^54.^0^^~4~^~FLA~^^^^^^^^^^~05/01/2013~
-~18097~^~431~^44.^0^^~4~^~NC~^^^^^^^^^^~05/01/2013~
-~18097~^~432~^10.^0^^~4~^^^^^^^^^^^~08/01/1992~
-~18097~^~435~^85.^0^^~4~^~NC~^^^^^^^^^^~05/01/2013~
-~18097~^~601~^0.^0^^~4~^~FLA~^^^^^^^^^^~11/01/1997~
-~18101~^~208~^371.^0^^~4~^~NC~^^^^^^^^^^~12/01/2006~
-~18101~^~268~^1551.^0^^~4~^~NC~^^^^^^^^^^~12/01/2006~
-~18101~^~301~^60.^0^^~4~^^^^^^^^^^^~08/01/1992~
-~18101~^~304~^32.^0^^~4~^^^^^^^^^^^~08/01/1992~
-~18101~^~305~^106.^0^^~4~^^^^^^^^^^^~08/01/1992~
-~18101~^~306~^140.^0^^~4~^^^^^^^^^^^~08/01/1992~
-~18101~^~307~^315.^0^^~4~^^^^^^^^^^^~08/01/1992~
-~18101~^~318~^140.^0^^~4~^^^^^^^^^^^~08/01/1992~
-~18101~^~417~^27.^0^^~4~^~RK~^^^^^^^^^^~12/01/1997~
-~18101~^~431~^17.^0^^~4~^~NC~^^^^^^^^^^~05/01/2000~
-~18101~^~432~^10.^0^^~4~^^^^^^^^^^^~08/01/1992~
-~18101~^~435~^39.^0^^~4~^~NC~^^^^^^^^^^~12/01/2006~
-~18101~^~601~^58.^0^^~4~^^^^^^^^^^^~08/01/1992~
-~18102~^~208~^356.^0^^~4~^~NC~^^^^^^^^^^~08/01/1992~
-~18102~^~262~^0.^0^^~4~^~RA~^^^^^^^^^^~03/01/2003~
-~18102~^~263~^0.^0^^~4~^~RA~^^^^^^^^^^~03/01/2003~
-~18102~^~268~^1490.^0^^~4~^^^^^^^^^^^~05/01/2005~
-~18102~^~301~^90.^0^^~1~^^^^^^^^^^^~08/01/1992~
-~18102~^~304~^12.^0^^~1~^^^^^^^^^^^~08/01/1992~
-~18102~^~305~^70.^0^^~1~^^^^^^^^^^^~08/01/1992~
-~18102~^~306~^99.^0^^~1~^^^^^^^^^^^~08/01/1992~
-~18102~^~307~^284.^0^^~1~^^^^^^^^^^^~08/01/1992~
-~18102~^~318~^42.^0^^~4~^~NC~^^^^^^^^^^~03/01/2003~
-~18102~^~319~^12.^0^^~4~^~RA~^^^^^^^^^^~03/01/2003~
-~18102~^~320~^12.^0^^~4~^~NC~^^^^^^^^^^~03/01/2003~
-~18102~^~321~^1.^0^^~4~^~RA~^^^^^^^^^^~03/01/2003~
-~18102~^~322~^0.^0^^~4~^~RA~^^^^^^^^^^~03/01/2003~
-~18102~^~324~^8.^0^^~4~^~RA~^^^^^^^^^^~04/01/2009~
-~18102~^~334~^0.^0^^~4~^~RA~^^^^^^^^^^~03/01/2003~
-~18102~^~337~^0.^0^^~4~^~RA~^^^^^^^^^^~03/01/2003~
-~18102~^~338~^4.^0^^~4~^~RA~^^^^^^^^^^~03/01/2003~
-~18102~^~417~^31.^0^^~4~^~RA~^^^^^^^^^^~03/01/2003~
-~18102~^~431~^27.^0^^~4~^^^^^^^^^^^~03/01/2003~
-~18102~^~432~^5.^0^^~1~^^^^^^^^^^^~08/01/1992~
-~18102~^~435~^51.^0^^~4~^~NC~^^^^^^^^^^~04/01/2009~
-~18102~^~601~^1.^0^^~1~^^^^^^^^^^^~08/01/1992~
-~18103~^~208~^339.^0^^~4~^~NC~^^^^^^^^^^~08/01/1992~
-~18103~^~268~^1418.^0^^~4~^^^^^^^^^^^
-~18103~^~301~^59.^2^^~1~^^^^^^^^^^^~08/01/1992~
-~18103~^~304~^15.^4^0.^~1~^^^^^^^^^^^~08/01/1992~
-~18103~^~305~^101.^0^^~4~^~FLA~^^^^^^^^^^~12/01/1997~
-~18103~^~306~^289.^0^^~4~^^^^^^^^^^^~08/01/1992~
-~18103~^~307~^339.^4^14.^~1~^^^^^^^^^^^~08/01/1992~
-~18103~^~318~^287.^0^^~4~^~FLA~^^^^^^^^^^~12/01/1997~
-~18103~^~319~^86.^0^^~4~^~NC~^^^^^^^^^^~06/01/2002~
-~18103~^~320~^86.^0^^~4~^~NC~^^^^^^^^^^~06/01/2002~
-~18103~^~417~^39.^0^^~4~^~FLA~^^^^^^^^^^~03/01/1998~
-~18103~^~431~^20.^0^^~4~^~FLA~^^^^^^^^^^~12/01/2000~
-~18103~^~432~^19.^0^^~4~^~FLA~^^^^^^^^^^~12/01/2000~
-~18103~^~435~^53.^0^^~4~^~NC~^^^^^^^^^^~12/01/2000~
-~18103~^~601~^85.^0^^~4~^~FLA~^^^^^^^^^^~12/01/1997~
-~18104~^~208~^418.^0^^~4~^~NC~^^^^^^^^^^~08/01/1992~
-~18104~^~268~^1749.^0^^~4~^^^^^^^^^^^
-~18104~^~301~^54.^34^4.^~1~^^^^^^^^^^^~08/01/1992~
-~18104~^~304~^22.^34^0.^~1~^^^^^^^^^^^~08/01/1992~
-~18104~^~305~^108.^33^3.^~1~^^^^^^^^^^^~08/01/1992~
-~18104~^~306~^123.^32^3.^~1~^^^^^^^^^^^~08/01/1992~
-~18104~^~307~^351.^35^13.^~1~^^^^^^^^^^^~08/01/1992~
-~18104~^~318~^111.^0^^~4~^~FLA~^^^^^^^^^^~12/01/1997~
-~18104~^~319~^33.^0^^~4~^~NC~^^^^^^^^^^~06/01/2002~
-~18104~^~320~^33.^0^^~4~^~NC~^^^^^^^^^^~06/01/2002~
-~18104~^~417~^61.^0^^~4~^~FLA~^^^^^^^^^^~03/01/1998~
-~18104~^~431~^29.^0^^~4~^~NC~^^^^^^^^^^~05/01/2000~
-~18104~^~432~^32.^8^0.^~1~^^^^^^^^^^^~08/01/1992~
-~18104~^~435~^81.^0^^~4~^~NC~^^^^^^^^^^~01/01/2001~
-~18104~^~601~^32.^3^1.^~1~^^^^^^^^^^^~08/01/1992~
-~18105~^~208~^331.^0^^~4~^^^^^^^^^^^~08/01/1992~
-~18105~^~268~^1385.^0^^~4~^^^^^^^^^^^
-~18105~^~301~^38.^2^^~1~^^^^^^^^^^^~08/01/1992~
-~18105~^~304~^15.^2^^~1~^^^^^^^^^^^~08/01/1992~
-~18105~^~305~^75.^2^^~1~^^^^^^^^^^^~08/01/1992~
-~18105~^~306~^78.^0^^~4~^~FLA~^^^^^^^^^^~12/01/1997~
-~18105~^~307~^323.^2^^~1~^^^^^^^^^^^~08/01/1992~
-~18105~^~318~^123.^0^^~4~^~FLA~^^^^^^^^^^~12/01/1997~
-~18105~^~319~^37.^0^^~4~^~NC~^^^^^^^^^^~06/01/2002~
-~18105~^~320~^37.^0^^~4~^~NC~^^^^^^^^^^~06/01/2002~
-~18105~^~417~^41.^0^^~4~^~FLA~^^^^^^^^^^~03/01/1998~
-~18105~^~431~^24.^0^^~4~^~FLA~^^^^^^^^^^~12/01/2000~
-~18105~^~432~^17.^0^^~4~^~FLA~^^^^^^^^^^~12/01/2000~
-~18105~^~435~^58.^0^^~4~^~NC~^^^^^^^^^^~12/01/2000~
-~18105~^~601~^69.^0^^~4~^~FLA~^^^^^^^^^^~12/01/1997~
-~18106~^~208~^311.^0^^~4~^^^^^^^^^^^~08/01/1992~
-~18106~^~268~^1301.^0^^~4~^^^^^^^^^^^
-~18106~^~301~^45.^3^14.^~1~^^^^^^^^^^^~08/01/1992~
-~18106~^~304~^17.^3^2.^~1~^^^^^^^^^^^~08/01/1992~
-~18106~^~305~^118.^3^27.^~1~^^^^^^^^^^^~08/01/1992~
-~18106~^~306~^90.^3^7.^~1~^^^^^^^^^^^~08/01/1992~
-~18106~^~307~^385.^3^19.^~1~^^^^^^^^^^^~08/01/1992~
-~18106~^~318~^140.^1^^~1~^^^^^^^^^^^~08/01/1992~
-~18106~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2002~
-~18106~^~320~^7.^0^^~4~^~NC~^^^^^^^^^^~06/01/2002~
-~18106~^~417~^47.^0^^~4~^~FLA~^^^^^^^^^^~03/01/1998~
-~18106~^~431~^28.^0^^~4~^~NC~^^^^^^^^^^~05/01/2000~
-~18106~^~432~^19.^8^1.^~1~^^^^^^^^^^^~08/01/1992~
-~18106~^~435~^67.^0^^~4~^~NC~^^^^^^^^^^~01/01/2001~
-~18106~^~601~^7.^0^^~4~^~FLA~^^^^^^^^^^~11/01/1997~
-~18108~^~208~^318.^0^^~4~^^^^^^^^^^^~08/01/1992~
-~18108~^~262~^0.^0^^~4~^~RA~^^^^^^^^^^~02/01/2003~
-~18108~^~263~^0.^0^^~4~^~RA~^^^^^^^^^^~02/01/2003~
-~18108~^~268~^1331.^0^^~4~^^^^^^^^^^^~03/01/2009~
-~18108~^~301~^136.^0^^~4~^^^^^^^^^^^~08/01/1992~
-~18108~^~304~^18.^0^^~4~^^^^^^^^^^^~08/01/1992~
-~18108~^~305~^215.^0^^~4~^^^^^^^^^^^~08/01/1992~
-~18108~^~306~^112.^0^^~4~^^^^^^^^^^^~08/01/1992~
-~18108~^~307~^421.^0^^~4~^^^^^^^^^^^~08/01/1992~
-~18108~^~318~^139.^0^^~4~^^^^^^^^^^^~03/01/2009~
-~18108~^~319~^35.^0^^~4~^~RA~^^^^^^^^^^~02/01/2003~
-~18108~^~320~^35.^0^^~4~^~NC~^^^^^^^^^^~03/01/2009~
-~18108~^~321~^2.^0^^~4~^~RA~^^^^^^^^^^~03/01/2009~
-~18108~^~322~^0.^0^^~4~^~RA~^^^^^^^^^^~03/01/2009~
-~18108~^~324~^19.^0^^~4~^~RA~^^^^^^^^^^~03/01/2009~
-~18108~^~334~^2.^0^^~4~^~RA~^^^^^^^^^^~03/01/2009~
-~18108~^~337~^0.^0^^~4~^~RA~^^^^^^^^^^~03/01/2009~
-~18108~^~338~^43.^0^^~4~^~RA~^^^^^^^^^^~03/01/2009~
-~18108~^~417~^48.^0^^~4~^~RK~^^^^^^^^^^~01/01/1999~
-~18108~^~431~^36.^0^^~4~^~NC~^^^^^^^^^^~05/01/2000~
-~18108~^~432~^12.^0^^~4~^^^^^^^^^^^~08/01/1992~
-~18108~^~435~^73.^0^^~4~^~NC~^^^^^^^^^^~03/01/2009~
-~18108~^~601~^49.^0^^~4~^^^^^^^^^^^~08/01/1992~
-~18110~^~208~^324.^0^^~4~^~NC~^^^^^^^^^^~08/01/1992~
-~18110~^~262~^0.^0^^~4~^~FLA~^^^^^^^^^^~03/01/2003~
-~18110~^~263~^0.^0^^~4~^~FLA~^^^^^^^^^^~03/01/2003~
-~18110~^~268~^1356.^0^^~4~^^^^^^^^^^^~05/01/2005~
-~18110~^~301~^33.^3^4.^~1~^^^^^^^^^^^~08/01/1992~
-~18110~^~304~^16.^2^^~1~^^^^^^^^^^^~08/01/1992~
-~18110~^~305~^52.^2^^~1~^^^^^^^^^^^~08/01/1992~
-~18110~^~306~^153.^2^^~1~^^^^^^^^^^^~08/01/1992~
-~18110~^~307~^101.^0^^~8~^~LC~^^^^^^^^^^~08/01/2012~
-~18110~^~318~^22.^0^^~4~^~FLA~^^^^^^^^^^~07/01/2012~
-~18110~^~319~^7.^0^^~4~^~FLA~^^^^^^^^^^~03/01/2003~
-~18110~^~320~^7.^0^^~4~^~NC~^^^^^^^^^^~03/01/2003~
-~18110~^~321~^3.^0^^~4~^~FLA~^^^^^^^^^^~03/01/2003~
-~18110~^~322~^1.^0^^~4~^~FLA~^^^^^^^^^^~03/01/2003~
-~18110~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~
-~18110~^~334~^1.^0^^~4~^~FLA~^^^^^^^^^^~03/01/2003~
-~18110~^~337~^0.^0^^~4~^~FLA~^^^^^^^^^^~03/01/2003~
-~18110~^~338~^21.^0^^~4~^~FLA~^^^^^^^^^^~03/01/2003~
-~18110~^~417~^20.^0^^~4~^~FLA~^^^^^^^^^^~03/01/2003~
-~18110~^~431~^17.^0^^~4~^~NR~^^^^^^^^^^~03/01/2003~
-~18110~^~432~^3.^8^0.^~1~^^^^^^^^^^^~08/01/1992~
-~18110~^~435~^32.^0^^~4~^~NC~^^^^^^^^^^~02/01/2007~
-~18110~^~601~^5.^1^^~1~^^^^^^^^^^^~08/01/1992~
-~18114~^~208~^437.^0^^~4~^~NC~^^^^^^^^^^~08/01/1992~
-~18114~^~262~^0.^0^^~4~^~FLC~^^^^^^^^^^~02/01/2003~
-~18114~^~263~^0.^0^^~4~^~FLC~^^^^^^^^^^~02/01/2003~
-~18114~^~268~^1828.^0^^~4~^^^^^^^^^^^~05/01/2005~
-~18114~^~301~^94.^1^^~1~^^^^^^^^^^^~08/01/1992~
-~18114~^~304~^21.^0^^~4~^~FLA~^^^^^^^^^^~12/01/1997~
-~18114~^~305~^226.^1^^~1~^^^^^^^^^^^~08/01/1992~
-~18114~^~306~^341.^1^^~1~^^^^^^^^^^^~08/01/1992~
-~18114~^~307~^657.^1^^~1~^^^^^^^^^^^~08/01/1992~
-~18114~^~318~^3.^0^^~4~^~NC~^^^^^^^^^^~02/01/2003~
-~18114~^~319~^0.^0^^~4~^~FLC~^^^^^^^^^^~02/01/2003~
-~18114~^~320~^0.^0^^~4~^~NC~^^^^^^^^^^~02/01/2003~
-~18114~^~321~^1.^0^^~4~^~FLC~^^^^^^^^^^~02/01/2003~
-~18114~^~322~^0.^0^^~4~^~FLC~^^^^^^^^^^~02/01/2003~
-~18114~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~
-~18114~^~334~^1.^0^^~4~^~FLC~^^^^^^^^^^~02/01/2003~
-~18114~^~337~^0.^0^^~4~^~FLC~^^^^^^^^^^~02/01/2003~
-~18114~^~338~^3.^0^^~4~^~FLC~^^^^^^^^^^~02/01/2003~
-~18114~^~417~^51.^0^^~4~^~FLC~^^^^^^^^^^~02/01/2003~
-~18114~^~431~^37.^0^^~4~^^^^^^^^^^^~02/01/2003~
-~18114~^~432~^14.^0^^~4~^^^^^^^^^^^~08/01/1992~
-~18114~^~435~^77.^0^^~4~^~NC~^^^^^^^^^^~02/01/2007~
-~18114~^~601~^0.^0^^~1~^^^^^^^^^^^~08/01/1992~
-~18116~^~208~^356.^0^^~4~^~NC~^^^^^^^^^^~08/01/1992~
-~18116~^~268~^1490.^0^^~4~^^^^^^^^^^^
-~18116~^~301~^71.^0^^~1~^^^^^^^^^^^~08/01/1992~
-~18116~^~304~^70.^0^^~1~^^^^^^^^^^^~08/01/1992~
-~18116~^~305~^54.^0^^~1~^^^^^^^^^^^~08/01/1992~
-~18116~^~306~^439.^0^^~1~^^^^^^^^^^^~08/01/1992~
-~18116~^~307~^327.^0^^~1~^^^^^^^^^^^~08/01/1992~
-~18116~^~318~^48.^0^^~1~^^^^^^^^^^^~08/01/1992~
-~18116~^~319~^14.^0^^~4~^~NC~^^^^^^^^^^~06/01/2002~
-~18116~^~320~^14.^0^^~4~^~NC~^^^^^^^^^^~06/01/2002~
-~18116~^~417~^33.^0^^~4~^~RK~^^^^^^^^^^~12/01/1997~
-~18116~^~431~^25.^0^^~4~^~NC~^^^^^^^^^^~05/01/2000~
-~18116~^~432~^8.^0^^~1~^^^^^^^^^^^~08/01/1992~
-~18116~^~435~^51.^0^^~4~^~NC~^^^^^^^^^^~01/01/2001~
-~18116~^~601~^32.^0^^~1~^^^^^^^^^^^~08/01/1992~
-~18119~^~208~^319.^0^^~4~^~NC~^^^^^^^^^^~08/01/1992~
-~18119~^~268~^1335.^0^^~4~^^^^^^^^^^^
-~18119~^~301~^120.^0^^~1~^^^^^^^^^^^~08/01/1992~
-~18119~^~304~^13.^0^^~1~^^^^^^^^^^^~08/01/1992~
-~18119~^~305~^82.^0^^~1~^^^^^^^^^^^~08/01/1992~
-~18119~^~306~^112.^0^^~1~^^^^^^^^^^^~08/01/1992~
-~18119~^~307~^319.^0^^~1~^^^^^^^^^^^~08/01/1992~
-~18119~^~318~^253.^0^^~1~^^^^^^^^^^^~08/01/1992~
-~18119~^~319~^59.^0^^~4~^~NC~^^^^^^^^^^~06/01/2002~
-~18119~^~320~^62.^0^^~4~^~NC~^^^^^^^^^^~06/01/2002~
-~18119~^~417~^26.^0^^~4~^~RK~^^^^^^^^^^~12/01/1997~
-~18119~^~431~^19.^0^^~4~^~NC~^^^^^^^^^^~05/01/2000~
-~18119~^~432~^7.^0^^~1~^^^^^^^^^^^~08/01/1992~
-~18119~^~435~^39.^0^^~4~^~NC~^^^^^^^^^^~01/01/2001~
-~18119~^~601~^22.^0^^~1~^^^^^^^^^^^~08/01/1992~
-~18120~^~208~^353.^0^^~4~^~NC~^^^^^^^^^^~04/01/2013~
-~18120~^~262~^0.^0^^~4~^~FLC~^^^^^^^^^^~04/01/2013~
-~18120~^~263~^0.^0^^~4~^~FLC~^^^^^^^^^^~04/01/2013~
-~18120~^~268~^1477.^0^^~4~^~NC~^^^^^^^^^^~04/01/2013~
-~18120~^~301~^47.^9^5.^~1~^~A~^^^1^26.^61.^5^32.^61.^~2, 3~^~04/01/2013~
-~18120~^~304~^8.^9^0.^~1~^~A~^^^1^7.^9.^5^7.^8.^~2, 3~^~04/01/2013~
-~18120~^~305~^140.^9^9.^~1~^~A~^^^1^96.^170.^5^115.^163.^~2, 3~^~04/01/2013~
-~18120~^~306~^149.^9^19.^~1~^~A~^^^1^72.^202.^5^97.^199.^~2, 3~^~04/01/2013~
-~18120~^~307~^377.^9^29.^~1~^~A~^^^1^252.^446.^5^301.^452.^~2, 3~^~04/01/2013~
-~18120~^~318~^241.^0^^~4~^~NC~^^^^^^^^^^~04/01/2013~
-~18120~^~319~^69.^2^^~1~^~A~^^^1^53.^133.^^^^^~04/01/2013~
-~18120~^~320~^70.^0^^~4~^~NC~^^^^^^^^^^~04/01/2013~
-~18120~^~321~^5.^0^^~4~^~FLC~^^^^^^^^^^~04/01/2013~
-~18120~^~322~^0.^0^^~4~^~FLC~^^^^^^^^^^~04/01/2013~
-~18120~^~324~^34.^0^^~4~^~FLC~^^^^^^^^^^~04/01/2013~
-~18120~^~334~^4.^0^^~4~^~FLC~^^^^^^^^^^~04/01/2013~
-~18120~^~337~^0.^0^^~4~^~FLC~^^^^^^^^^^~04/01/2013~
-~18120~^~338~^203.^0^^~4~^~FLC~^^^^^^^^^^~04/01/2013~
-~18120~^~417~^42.^6^3.^~1~^~A~^^^1^11.^53.^2^30.^54.^~2, 3~^~04/01/2013~
-~18120~^~431~^14.^0^^~4~^~FLC~^^^^^^^^^^~04/01/2013~
-~18120~^~432~^28.^0^^~4~^~NC~^^^^^^^^^^~04/01/2013~
-~18120~^~435~^52.^0^^~4~^~NC~^^^^^^^^^^~04/01/2013~
-~18120~^~601~^66.^6^2.^~1~^~A~^^^1^51.^122.^4^57.^73.^~2, 3~^~04/01/2013~
-~18121~^~208~^389.^0^^~4~^~NC~^^^^^^^^^^~08/01/1992~
-~18121~^~268~^1628.^0^^~4~^^^^^^^^^^^
-~18121~^~301~^64.^7^13.^~1~^^^^^^^^^^^~08/01/1992~
-~18121~^~304~^13.^5^2.^~1~^^^^^^^^^^^~08/01/1992~
-~18121~^~305~^134.^6^10.^~1~^^^^^^^^^^^~08/01/1992~
-~18121~^~306~^106.^4^25.^~1~^^^^^^^^^^^~08/01/1992~
-~18121~^~307~^400.^11^41.^~1~^^^^^^^^^^^~08/01/1992~
-~18121~^~318~^118.^0^^~4~^~FLA~^^^^^^^^^^~11/01/1997~
-~18121~^~319~^35.^0^^~4~^~NC~^^^^^^^^^^~06/01/2002~
-~18121~^~320~^35.^0^^~4~^~NC~^^^^^^^^^^~06/01/2002~
-~18121~^~417~^36.^0^^~4~^~FLA~^^^^^^^^^^~03/01/1998~
-~18121~^~431~^27.^0^^~4~^~NC~^^^^^^^^^^~05/01/2000~
-~18121~^~432~^9.^0^^~4~^^^^^^^^^^^~08/01/1992~
-~18121~^~435~^55.^0^^~4~^~NC~^^^^^^^^^^~01/01/2001~
-~18121~^~601~^58.^6^25.^~1~^^^^^^^^^^^~08/01/1992~
-~18126~^~208~^346.^0^^~4~^~NC~^^^^^^^^^^~08/01/1992~
-~18126~^~268~^1448.^0^^~4~^^^^^^^^^^^
-~18126~^~301~^205.^0^^~1~^^^^^^^^^^^~08/01/1992~
-~18126~^~304~^16.^0^^~1~^^^^^^^^^^^~08/01/1992~
-~18126~^~305~^143.^0^^~1~^^^^^^^^^^^~08/01/1992~
-~18126~^~306~^106.^0^^~1~^^^^^^^^^^^~08/01/1992~
-~18126~^~307~^506.^0^^~1~^^^^^^^^^^^~08/01/1992~
-~18126~^~318~^72.^0^^~1~^^^^^^^^^^^~08/01/1992~
-~18126~^~319~^17.^0^^~4~^~NC~^^^^^^^^^^~06/01/2002~
-~18126~^~320~^18.^0^^~4~^~NC~^^^^^^^^^^~06/01/2002~
-~18126~^~417~^53.^0^^~4~^~RA~^^^^^^^^^^~11/01/1998~
-~18126~^~431~^43.^0^^~4~^~NC~^^^^^^^^^^~05/01/2000~
-~18126~^~432~^10.^0^^~1~^^^^^^^^^^^~08/01/1992~
-~18126~^~435~^83.^0^^~4~^~NC~^^^^^^^^^^~01/01/2001~
-~18126~^~601~^3.^0^^~1~^^^^^^^^^^^~08/01/1992~
-~18127~^~208~^399.^0^^~4~^~NC~^^^^^^^^^^~10/01/2005~
-~18127~^~262~^6.^0^^~4~^~FLC~^^^^^^^^^^~10/01/2005~
-~18127~^~263~^215.^0^^~4~^~FLC~^^^^^^^^^^~10/01/2005~
-~18127~^~268~^1670.^0^^~4~^~NC~^^^^^^^^^^~10/01/2005~
-~18127~^~301~^116.^2^^~1~^~A~^^^1^11.^220.^1^^^^~10/01/2005~
-~18127~^~304~^36.^2^^~1~^~A~^^^1^33.^40.^1^^^^~10/01/2005~
-~18127~^~305~^87.^2^^~1~^~A~^^^1^67.^107.^1^^^^~10/01/2005~
-~18127~^~306~^176.^2^^~1~^~A~^^^1^161.^191.^1^^^^~10/01/2005~
-~18127~^~307~^332.^0^^~8~^~LC~^^^^^^^^^^~05/01/2010~
-~18127~^~318~^2.^0^^~4~^~FLC~^^^^^^^^^^~10/01/2005~
-~18127~^~319~^1.^0^^~4~^~FLC~^^^^^^^^^^~10/01/2005~
-~18127~^~320~^1.^0^^~4~^~FLC~^^^^^^^^^^~10/01/2005~
-~18127~^~321~^0.^0^^~4~^~FLC~^^^^^^^^^^~10/01/2005~
-~18127~^~322~^0.^0^^~4~^~FLC~^^^^^^^^^^~10/01/2005~
-~18127~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~
-~18127~^~334~^0.^0^^~4~^~FLC~^^^^^^^^^^~10/01/2005~
-~18127~^~337~^0.^0^^~4~^~FLC~^^^^^^^^^^~02/01/2003~
-~18127~^~338~^3.^0^^~4~^~FLC~^^^^^^^^^^~10/01/2005~
-~18127~^~417~^26.^2^^~1~^~A~^^^1^20.^32.^1^^^^~10/01/2005~
-~18127~^~431~^13.^2^^~1~^~A~^^^1^9.^17.^1^^^^~10/01/2005~
-~18127~^~432~^13.^0^^~1~^~AS~^^^^^^^^^^~10/01/2005~
-~18127~^~435~^35.^0^^~4~^~NC~^^^^^^^^^^~06/01/2009~
-~18127~^~601~^0.^0^^~4~^~FLC~^^^^^^^^^^~10/01/2005~
-~18128~^~208~^374.^0^^~4~^~NC~^^^^^^^^^^~10/01/2007~
-~18128~^~262~^0.^0^^~4~^~FLA~^^^^^^^^^^~02/01/2003~
-~18128~^~263~^0.^0^^~4~^~FLA~^^^^^^^^^^~02/01/2003~
-~18128~^~268~^1564.^0^^~4~^~NC~^^^^^^^^^^~10/01/2007~
-~18128~^~301~^24.^2^^~1~^~A~^^^1^19.^28.^1^^^^~10/01/2007~
-~18128~^~304~^8.^2^^~1~^~A~^^^1^8.^9.^1^^^^~10/01/2007~
-~18128~^~305~^185.^2^^~1~^~A~^^^1^180.^190.^1^^^^~10/01/2007~
-~18128~^~306~^71.^2^^~1~^~A~^^^1^59.^82.^1^^^^~10/01/2007~
-~18128~^~307~^470.^0^^~8~^~LC~^^^^^^^^^^~08/01/2012~
-~18128~^~318~^17.^0^^~4~^~FLA~^^^^^^^^^^~10/01/2007~
-~18128~^~319~^5.^0^^~4~^~FLA~^^^^^^^^^^~02/01/2003~
-~18128~^~320~^5.^0^^~4~^~NC~^^^^^^^^^^~10/01/2007~
-~18128~^~321~^0.^0^^~4~^~FLA~^^^^^^^^^^~10/01/2007~
-~18128~^~322~^0.^0^^~4~^~FLA~^^^^^^^^^^~10/01/2007~
-~18128~^~324~^4.^0^^~4~^~NR~^^^^^^^^^^~08/01/2012~
-~18128~^~334~^0.^0^^~4~^~FLA~^^^^^^^^^^~10/01/2007~
-~18128~^~337~^0.^0^^~4~^~FLA~^^^^^^^^^^~02/01/2003~
-~18128~^~338~^9.^0^^~4~^~FLA~^^^^^^^^^^~02/01/2003~
-~18128~^~417~^38.^2^^~1~^~A~^^^1^24.^51.^1^^^^~10/01/2007~
-~18128~^~431~^24.^2^^~1~^~A~^^^1^12.^35.^1^^^^~10/01/2007~
-~18128~^~432~^14.^0^^~1~^~AS~^^^^^^^^^^~10/01/2007~
-~18128~^~435~^54.^0^^~4~^~NC~^^^^^^^^^^~03/01/2009~
-~18128~^~601~^41.^0^^~4~^~FLA~^^^^^^^^^^~10/01/2007~
-~18131~^~208~^397.^0^^~4~^~NC~^^^^^^^^^^~08/01/1992~
-~18131~^~268~^1661.^0^^~4~^^^^^^^^^^^
-~18131~^~301~^26.^2^^~1~^^^^^^^^^^^~08/01/1992~
-~18131~^~304~^10.^2^^~1~^^^^^^^^^^^~08/01/1992~
-~18131~^~305~^296.^2^^~1~^^^^^^^^^^^~08/01/1992~
-~18131~^~306~^149.^2^^~1~^^^^^^^^^^^~08/01/1992~
-~18131~^~307~^260.^2^^~1~^^^^^^^^^^^~08/01/1992~
-~18131~^~318~^0.^2^^~1~^^^^^^^^^^^~08/01/1992~
-~18131~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2002~
-~18131~^~320~^0.^0^^~4~^~NC~^^^^^^^^^^~06/01/2002~
-~18131~^~417~^69.^0^^~4~^~FLA~^^^^^^^^^^~11/01/1997~
-~18131~^~431~^60.^0^^~4~^~NC~^^^^^^^^^^~05/01/2000~
-~18131~^~432~^9.^2^^~1~^^^^^^^^^^^~08/01/1992~
-~18131~^~435~^111.^0^^~4~^~NC~^^^^^^^^^^~01/01/2001~
-~18131~^~601~^0.^2^^~1~^^^^^^^^^^^~08/01/1992~
-~18133~^~208~^290.^0^^~4~^~NC~^^^^^^^^^^~07/01/2013~
-~18133~^~262~^0.^0^^~4~^~FLA~^^^^^^^^^^~02/01/2003~
-~18133~^~263~^0.^0^^~4~^~FLA~^^^^^^^^^^~02/01/2003~
-~18133~^~268~^1213.^0^^~4~^~NC~^^^^^^^^^^~07/01/2013~
-~18133~^~301~^70.^0^^~1~^^^^^^^^^^^~08/01/1992~
-~18133~^~304~^11.^0^^~1~^^^^^^^^^^^~08/01/1992~
-~18133~^~305~^137.^0^^~1~^^^^^^^^^^^~08/01/1992~
-~18133~^~306~^99.^0^^~1~^^^^^^^^^^^~08/01/1992~
-~18133~^~307~^623.^0^^~8~^~LC~^^^^^^^^^^~07/01/2013~
-~18133~^~318~^154.^0^^~1~^^^^^^^^^^^~07/01/2012~
-~18133~^~319~^44.^0^^~4~^~FLA~^^^^^^^^^^~02/01/2003~
-~18133~^~320~^44.^0^^~4~^~NC~^^^^^^^^^^~02/01/2003~
-~18133~^~321~^4.^0^^~4~^~FLA~^^^^^^^^^^~02/01/2003~
-~18133~^~322~^1.^0^^~4~^~FLA~^^^^^^^^^^~02/01/2003~
-~18133~^~324~^9.^0^^~4~^~FLA~^^^^^^^^^^~07/01/2013~
-~18133~^~334~^2.^0^^~4~^~FLA~^^^^^^^^^^~02/01/2003~
-~18133~^~337~^0.^0^^~4~^~FLA~^^^^^^^^^^~02/01/2003~
-~18133~^~338~^85.^0^^~4~^~FLA~^^^^^^^^^^~02/01/2003~
-~18133~^~417~^47.^0^^~4~^~FLA~^^^^^^^^^^~02/01/2003~
-~18133~^~431~^34.^0^^~4~^~NR~^^^^^^^^^^~02/01/2003~
-~18133~^~432~^13.^0^^~1~^^^^^^^^^^^~08/01/1992~
-~18133~^~435~^71.^0^^~4~^~NC~^^^^^^^^^^~03/01/2009~
-~18133~^~601~^102.^0^^~1~^^^^^^^^^^^~08/01/1992~
-~18134~^~208~^297.^0^^~4~^~NC~^^^^^^^^^^~08/01/1992~
-~18134~^~268~^1243.^0^^~4~^^^^^^^^^^^
-~18134~^~301~^42.^0^^~1~^^^^^^^^^^^~08/01/1992~
-~18134~^~304~^9.^0^^~1~^^^^^^^^^^^~08/01/1992~
-~18134~^~305~^100.^0^^~1~^^^^^^^^^^^~08/01/1992~
-~18134~^~306~^141.^0^^~1~^^^^^^^^^^^~08/01/1992~
-~18134~^~307~^228.^0^^~1~^^^^^^^^^^^~08/01/1992~
-~18134~^~318~^258.^0^^~1~^^^^^^^^^^^~08/01/1992~
-~18134~^~319~^77.^0^^~4~^~NC~^^^^^^^^^^~06/01/2002~
-~18134~^~320~^77.^0^^~4~^~NC~^^^^^^^^^^~06/01/2002~
-~18134~^~417~^39.^0^^~4~^~RK~^^^^^^^^^^~12/01/1997~
-~18134~^~431~^20.^0^^~4~^~NC~^^^^^^^^^^~05/01/2000~
-~18134~^~432~^19.^0^^~1~^^^^^^^^^^^~08/01/1992~
-~18134~^~435~^53.^0^^~4~^~NC~^^^^^^^^^^~01/01/2001~
-~18134~^~601~^170.^0^^~1~^^^^^^^^^^^~08/01/1992~
-~18135~^~208~^423.^0^^~4~^~NC~^^^^^^^^^^~08/01/1992~
-~18135~^~262~^0.^0^^~4~^~FLA~^^^^^^^^^^~02/01/2003~
-~18135~^~263~^0.^0^^~4~^~FLA~^^^^^^^^^^~02/01/2003~
-~18135~^~268~^1771.^0^^~4~^~NC~^^^^^^^^^^~07/01/2013~
-~18135~^~301~^77.^16^1.^~1~^^^^^^^^^^^~08/01/1992~
-~18135~^~304~^9.^16^0.^~1~^^^^^^^^^^^~08/01/1992~
-~18135~^~305~^277.^16^6.^~1~^^^^^^^^^^^~08/01/1992~
-~18135~^~306~^72.^8^9.^~1~^^^^^^^^^^^~08/01/1992~
-~18135~^~307~^665.^8^4.^~1~^^^^^^^^^^^~08/01/1992~
-~18135~^~318~^0.^0^^~4~^~FLA~^^^^^^^^^^~05/01/2003~
-~18135~^~319~^0.^0^^~4~^~FLA~^^^^^^^^^^~02/01/2003~
-~18135~^~320~^0.^0^^~4~^~FLA~^^^^^^^^^^~05/01/2003~
-~18135~^~321~^0.^0^^~4~^~FLA~^^^^^^^^^^~02/01/2003~
-~18135~^~322~^0.^0^^~4~^~FLA~^^^^^^^^^^~02/01/2003~
-~18135~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~
-~18135~^~334~^0.^0^^~4~^~FLA~^^^^^^^^^^~02/01/2003~
-~18135~^~337~^0.^0^^~4~^~FLA~^^^^^^^^^^~02/01/2003~
-~18135~^~338~^1.^0^^~4~^~FLA~^^^^^^^^^^~02/01/2003~
-~18135~^~417~^91.^1^^~13~^~AI~^^^^^^^^^^~05/01/2003~
-~18135~^~431~^63.^0^^~4~^~NC~^^^^^^^^^^~07/01/2013~
-~18135~^~432~^28.^0^^~4~^~NC~^^^^^^^^^^~07/01/2013~
-~18135~^~435~^135.^0^^~4~^~NC~^^^^^^^^^^~07/01/2013~
-~18135~^~601~^0.^0^^~4~^^^^^^^^^^^~08/01/1992~
-~18139~^~208~^357.^0^^~4~^~NC~^^^^^^^^^^~08/01/1992~
-~18139~^~262~^0.^0^^~4~^~RA~^^^^^^^^^^~03/01/2003~
-~18139~^~263~^0.^0^^~4~^~RA~^^^^^^^^^^~03/01/2003~
-~18139~^~268~^1494.^0^^~4~^^^^^^^^^^^~05/01/2005~
-~18139~^~301~^130.^0^^~1~^^^^^^^^^^^~08/01/1992~
-~18139~^~304~^12.^0^^~1~^^^^^^^^^^^~08/01/1992~
-~18139~^~305~^93.^0^^~1~^^^^^^^^^^^~08/01/1992~
-~18139~^~306~^95.^0^^~1~^^^^^^^^^^^~08/01/1992~
-~18139~^~307~^327.^0^^~1~^^^^^^^^^^^~08/01/1992~
-~18139~^~318~^52.^0^^~4~^~NC~^^^^^^^^^^~03/01/2003~
-~18139~^~319~^15.^0^^~4~^~RA~^^^^^^^^^^~03/01/2003~
-~18139~^~320~^15.^0^^~4~^~NC~^^^^^^^^^^~03/01/2003~
-~18139~^~321~^1.^0^^~4~^~RA~^^^^^^^^^^~03/01/2003~
-~18139~^~322~^0.^0^^~4~^~RA~^^^^^^^^^^~03/01/2003~
-~18139~^~334~^0.^0^^~4~^~RA~^^^^^^^^^^~03/01/2003~
-~18139~^~337~^0.^0^^~4~^~RA~^^^^^^^^^^~03/01/2003~
-~18139~^~338~^5.^0^^~4~^~RA~^^^^^^^^^^~03/01/2003~
-~18139~^~417~^38.^0^^~4~^~RA~^^^^^^^^^^~03/01/2003~
-~18139~^~431~^31.^0^^~4~^^^^^^^^^^^~03/01/2003~
-~18139~^~432~^7.^0^^~1~^^^^^^^^^^^~08/01/1992~
-~18139~^~435~^60.^0^^~4~^~NC~^^^^^^^^^^~02/01/2007~
-~18139~^~601~^2.^0^^~1~^^^^^^^^^^^~08/01/1992~
-~18140~^~208~^379.^0^^~4~^~NC~^^^^^^^^^^~08/01/1992~
-~18140~^~262~^0.^0^^~4~^~BFZN~^~18128~^^^^^^^^^~02/01/2013~
-~18140~^~263~^0.^0^^~4~^~BFZN~^~18128~^^^^^^^^^~02/01/2013~
-~18140~^~268~^1584.^0^^~4~^~NC~^^^^^^^^^^~07/01/2011~
-~18140~^~301~^32.^6^2.^~1~^~A~^^^1^26.^42.^5^26.^37.^~2, 3~^~07/01/2011~
-~18140~^~304~^20.^6^2.^~1~^~A~^^^1^15.^27.^5^14.^25.^~2, 3~^~07/01/2011~
-~18140~^~305~^138.^6^6.^~1~^~A~^^^1^117.^158.^5^121.^153.^~2, 3~^~07/01/2011~
-~18140~^~306~^187.^6^16.^~1~^~A~^^^1^133.^233.^5^146.^228.^~2, 3~^~07/01/2011~
-~18140~^~307~^310.^6^14.^~1~^~A~^^^1^274.^364.^5^272.^347.^~2, 3~^~07/01/2011~
-~18140~^~318~^26.^0^^~4~^~BFFN~^~18128~^^^^^^^^^~02/01/2013~
-~18140~^~319~^7.^0^^~4~^~BFFN~^~18128~^^^^^^^^^~02/01/2013~
-~18140~^~320~^7.^0^^~4~^~BFFN~^~18128~^^^^^^^^^~02/01/2013~
-~18140~^~321~^0.^0^^~4~^~BFFN~^~18128~^^^^^^^^^~02/01/2013~
-~18140~^~322~^0.^0^^~4~^~BFFN~^~18128~^^^^^^^^^~02/01/2013~
-~18140~^~324~^6.^0^^~4~^~BFFN~^~18128~^^^^^^^^^~02/01/2013~
-~18140~^~334~^0.^0^^~4~^~BFFN~^~18128~^^^^^^^^^~02/01/2013~
-~18140~^~337~^0.^0^^~4~^~BFFN~^~18128~^^^^^^^^^~02/01/2013~
-~18140~^~338~^14.^0^^~4~^~BFFN~^~18128~^^^^^^^^^~02/01/2013~
-~18140~^~417~^22.^0^^~4~^~FLA~^^^^^^^^^^~02/01/2013~
-~18140~^~431~^14.^0^^~4~^~NC~^^^^^^^^^^~02/01/2013~
-~18140~^~432~^8.^0^^~4~^~NC~^^^^^^^^^^~02/01/2013~
-~18140~^~435~^32.^0^^~4~^~NC~^^^^^^^^^^~02/01/2013~
-~18140~^~601~^16.^3^1.^~1~^~A~^^^1^13.^18.^2^9.^22.^~2, 3~^~08/01/2012~
-~18141~^~208~^391.^0^^~4~^~NC~^^^^^^^^^^~05/01/2013~
-~18141~^~262~^0.^0^^~4~^~FLC~^^^^^^^^^^~05/01/2013~
-~18141~^~263~^0.^0^^~4~^~FLC~^^^^^^^^^^~05/01/2013~
-~18141~^~268~^1636.^0^^~4~^~NC~^^^^^^^^^^~05/01/2013~
-~18141~^~301~^62.^31^2.^~1~^^^^^^^^^^^~08/01/1992~
-~18141~^~304~^6.^32^0.^~1~^^^^^^^^^^^~08/01/1992~
-~18141~^~305~^143.^31^3.^~1~^^^^^^^^^^^~08/01/1992~
-~18141~^~306~^53.^32^3.^~1~^^^^^^^^^^^~08/01/1992~
-~18141~^~307~^269.^0^^~8~^~LC~^^^^^^^^^^~05/01/2013~
-~18141~^~318~^108.^0^^~4~^~FLC~^^^^^^^^^^~05/01/2013~
-~18141~^~319~^32.^0^^~4~^~FLC~^^^^^^^^^^~05/01/2013~
-~18141~^~320~^32.^0^^~4~^~NC~^^^^^^^^^^~05/01/2013~
-~18141~^~321~^0.^0^^~4~^~FLC~^^^^^^^^^^~05/01/2013~
-~18141~^~322~^0.^0^^~4~^~FLC~^^^^^^^^^^~05/01/2013~
-~18141~^~324~^16.^0^^~4~^~FLC~^^^^^^^^^^~05/01/2013~
-~18141~^~334~^2.^0^^~4~^~FLC~^^^^^^^^^^~05/01/2013~
-~18141~^~337~^0.^0^^~4~^~FLC~^^^^^^^^^^~05/01/2013~
-~18141~^~338~^104.^0^^~4~^~FLC~^^^^^^^^^^~05/01/2013~
-~18141~^~417~^27.^0^^~4~^~FLA~^^^^^^^^^^~03/01/1998~
-~18141~^~431~^18.^0^^~4~^~NC~^^^^^^^^^^~05/01/2000~
-~18141~^~432~^9.^0^^~4~^^^^^^^^^^^~08/01/1992~
-~18141~^~435~^40.^0^^~4~^~NC~^^^^^^^^^^~03/01/2006~
-~18141~^~601~^75.^0^^~8~^~LC~^^^^^^^^^^~05/01/2013~
-~18142~^~208~^423.^0^^~4~^~NC~^^^^^^^^^^~08/01/1992~
-~18142~^~262~^0.^0^^~4~^~FLA~^^^^^^^^^^~02/01/2003~
-~18142~^~263~^0.^0^^~4~^~FLA~^^^^^^^^^^~02/01/2003~
-~18142~^~268~^1768.^0^^~4~^~NC~^^^^^^^^^^~04/01/2013~
-~18142~^~301~^115.^44^7.^~1~^^^^^^^^^^^~08/01/1992~
-~18142~^~304~^9.^32^0.^~1~^^^^^^^^^^^~08/01/1992~
-~18142~^~305~^253.^28^4.^~1~^^^^^^^^^^^~08/01/1992~
-~18142~^~306~^63.^36^4.^~1~^^^^^^^^^^^~08/01/1992~
-~18142~^~307~^860.^0^^~4~^~T~^^^^^^^^^^~04/01/2013~
-~18142~^~318~^0.^0^^~4~^~FLA~^^^^^^^^^^~05/01/2003~
-~18142~^~319~^0.^0^^~4~^~FLA~^^^^^^^^^^~02/01/2003~
-~18142~^~320~^0.^0^^~4~^~FLA~^^^^^^^^^^~05/01/2003~
-~18142~^~321~^0.^0^^~4~^~FLA~^^^^^^^^^^~02/01/2003~
-~18142~^~322~^0.^0^^~4~^~FLA~^^^^^^^^^^~02/01/2003~
-~18142~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~
-~18142~^~334~^0.^0^^~4~^~FLA~^^^^^^^^^^~02/01/2003~
-~18142~^~337~^0.^0^^~4~^~FLA~^^^^^^^^^^~02/01/2003~
-~18142~^~338~^1.^0^^~4~^~FLA~^^^^^^^^^^~02/01/2003~
-~18142~^~417~^104.^1^^~13~^~AI~^^^^^^^^^^~05/01/2013~
-~18142~^~431~^95.^0^^~4~^~NR~^^^^^^^^^^~05/01/2013~
-~18142~^~432~^9.^0^^~4~^^^^^^^^^^^~08/01/1992~
-~18142~^~435~^171.^0^^~4~^~NC~^^^^^^^^^^~05/01/2013~
-~18142~^~601~^0.^0^^~4~^^^^^^^^^^^~08/01/1992~
-~18144~^~208~^374.^0^^~4~^~NC~^^^^^^^^^^~07/01/2013~
-~18144~^~262~^0.^0^^~4~^~FLA~^^^^^^^^^^~02/01/2003~
-~18144~^~263~^0.^0^^~4~^~FLA~^^^^^^^^^^~02/01/2003~
-~18144~^~268~^1563.^0^^~4~^~NC~^^^^^^^^^^~07/01/2013~
-~18144~^~301~^211.^1^^~9~^~MC~^^^^^^^^^^~04/01/2012~
-~18144~^~304~^10.^46^0.^~1~^^^^^^^^^^^~08/01/1992~
-~18144~^~305~^310.^55^7.^~1~^^^^^^^^^^^~08/01/1992~
-~18144~^~306~^47.^1^^~9~^~MC~^^^^^^^^^^~04/01/2012~
-~18144~^~307~^728.^1^^~9~^~MC~^^^^^^^^^^~04/01/2012~
-~18144~^~318~^1.^0^^~4~^~NC~^^^^^^^^^^~07/01/2013~
-~18144~^~319~^0.^0^^~4~^~FLA~^^^^^^^^^^~02/01/2003~
-~18144~^~320~^0.^0^^~4~^~NC~^^^^^^^^^^~05/01/2003~
-~18144~^~321~^0.^0^^~4~^~FLA~^^^^^^^^^^~02/01/2003~
-~18144~^~322~^0.^0^^~4~^~FLA~^^^^^^^^^^~02/01/2003~
-~18144~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~
-~18144~^~334~^0.^0^^~4~^~FLA~^^^^^^^^^^~02/01/2003~
-~18144~^~337~^0.^0^^~4~^~FLA~^^^^^^^^^^~02/01/2003~
-~18144~^~338~^1.^0^^~4~^~FLA~^^^^^^^^^^~02/01/2003~
-~18144~^~417~^68.^1^^~9~^~MC~^^^^^^^^^^~04/01/2012~
-~18144~^~431~^57.^0^^~4~^~NC~^^^^^^^^^^~04/01/2012~
-~18144~^~432~^11.^0^^~4~^~NC~^^^^^^^^^^~04/01/2012~
-~18144~^~435~^108.^0^^~4~^~NC~^^^^^^^^^^~04/01/2012~
-~18144~^~601~^0.^1^^~9~^~MC~^^^^^^^^^^~04/01/2012~
-~18146~^~208~^361.^0^^~4~^~NC~^^^^^^^^^^~08/01/1992~
-~18146~^~268~^1510.^0^^~4~^^^^^^^^^^^
-~18146~^~301~^146.^0^^~1~^^^^^^^^^^^~08/01/1992~
-~18146~^~304~^12.^0^^~1~^^^^^^^^^^^~08/01/1992~
-~18146~^~305~^117.^0^^~1~^^^^^^^^^^^~08/01/1992~
-~18146~^~306~^91.^0^^~1~^^^^^^^^^^^~08/01/1992~
-~18146~^~307~^343.^0^^~1~^^^^^^^^^^^~08/01/1992~
-~18146~^~318~^139.^0^^~1~^^^^^^^^^^^~08/01/1992~
-~18146~^~319~^39.^0^^~4~^~NC~^^^^^^^^^^~06/01/2002~
-~18146~^~320~^40.^0^^~4~^~NC~^^^^^^^^^^~06/01/2002~
-~18146~^~417~^34.^0^^~4~^~RK~^^^^^^^^^^~12/01/1997~
-~18146~^~431~^24.^0^^~4~^~NC~^^^^^^^^^^~05/01/2000~
-~18146~^~432~^10.^0^^~1~^^^^^^^^^^^~08/01/1992~
-~18146~^~435~^51.^0^^~4~^~NC~^^^^^^^^^^~01/01/2001~
-~18146~^~601~^54.^0^^~1~^^^^^^^^^^^~08/01/1992~
-~18147~^~208~^321.^0^^~4~^~NC~^^^^^^^^^^~08/01/1992~
-~18147~^~262~^0.^0^^~4~^~FLA~^^^^^^^^^^~03/01/2009~
-~18147~^~263~^0.^0^^~4~^~FLA~^^^^^^^^^^~03/01/2009~
-~18147~^~268~^1343.^0^^~4~^^^^^^^^^^^~03/01/2009~
-~18147~^~301~^51.^4^3.^~1~^^^^^^^^^^^~08/01/1992~
-~18147~^~304~^11.^4^0.^~1~^^^^^^^^^^^~08/01/1992~
-~18147~^~305~^93.^4^8.^~1~^^^^^^^^^^^~08/01/1992~
-~18147~^~306~^90.^4^6.^~1~^^^^^^^^^^^~08/01/1992~
-~18147~^~307~^438.^0^^~8~^~LC~^^^^^^^^^^~08/01/2012~
-~18147~^~318~^547.^0^^~4~^~FLA~^^^^^^^^^^~11/01/1997~
-~18147~^~319~^156.^0^^~4~^~FLA~^^^^^^^^^^~07/01/2012~
-~18147~^~320~^159.^0^^~4~^~NC~^^^^^^^^^^~07/01/2012~
-~18147~^~321~^34.^0^^~4~^~FLA~^^^^^^^^^^~07/01/2012~
-~18147~^~322~^0.^0^^~4~^~FLA~^^^^^^^^^^~03/01/2009~
-~18147~^~324~^18.^0^^~4~^~FLA~^^^^^^^^^^~03/01/2009~
-~18147~^~334~^2.^0^^~4~^~FLA~^^^^^^^^^^~03/01/2009~
-~18147~^~337~^0.^0^^~4~^~FLA~^^^^^^^^^^~03/01/2009~
-~18147~^~338~^62.^0^^~4~^~FLA~^^^^^^^^^^~03/01/2009~
-~18147~^~417~^18.^0^^~4~^~FLA~^^^^^^^^^^~03/01/1998~
-~18147~^~431~^3.^0^^~4~^~NC~^^^^^^^^^^~05/01/2000~
-~18147~^~432~^15.^8^0.^~1~^^^^^^^^^^^~08/01/1992~
-~18147~^~435~^20.^0^^~4~^~NC~^^^^^^^^^^~03/01/2009~
-~18147~^~601~^55.^2^^~1~^^^^^^^^^^^~08/01/1992~
-~18148~^~208~^274.^0^^~4~^~NC~^^^^^^^^^^~08/01/1992~
-~18148~^~268~^1146.^0^^~4~^^^^^^^^^^^
-~18148~^~301~^172.^6^14.^~1~^^^^^^^^^^^~08/01/1992~
-~18148~^~304~^19.^4^0.^~1~^^^^^^^^^^^~08/01/1992~
-~18148~^~305~^234.^6^18.^~1~^^^^^^^^^^^~08/01/1992~
-~18148~^~306~^211.^6^14.^~1~^^^^^^^^^^^~08/01/1992~
-~18148~^~307~^380.^6^52.^~1~^^^^^^^^^^^~08/01/1992~
-~18148~^~318~^366.^4^35.^~1~^^^^^^^^^^^~08/01/1992~
-~18148~^~319~^92.^0^^~4~^~NC~^^^^^^^^^^~06/01/2002~
-~18148~^~320~^96.^0^^~4~^~NC~^^^^^^^^^^~06/01/2002~
-~18148~^~417~^30.^0^^~4~^~FLA~^^^^^^^^^^~11/01/1997~
-~18148~^~431~^12.^0^^~4~^~NC~^^^^^^^^^^~05/01/2000~
-~18148~^~432~^18.^10^1.^~1~^^^^^^^^^^^~08/01/1992~
-~18148~^~435~^38.^0^^~4~^~NC~^^^^^^^^^^~01/01/2001~
-~18148~^~601~^29.^0^^~4~^~FLA~^^^^^^^^^^~11/01/1997~
-~18151~^~208~^405.^0^^~4~^^^^^^^^^^^~08/01/1992~
-~18151~^~262~^2.^0^^~4~^~FLA~^^^^^^^^^^~05/01/1998~
-~18151~^~263~^78.^0^^~4~^~FLA~^^^^^^^^^^~05/01/1998~
-~18151~^~268~^1695.^0^^~4~^^^^^^^^^^^~05/01/2005~
-~18151~^~301~^29.^18^2.^~1~^^^^^^^^^^^~08/01/1992~
-~18151~^~304~^31.^11^1.^~1~^^^^^^^^^^^~08/01/1992~
-~18151~^~305~^101.^12^8.^~1~^^^^^^^^^^^~08/01/1992~
-~18151~^~306~^149.^11^17.^~1~^^^^^^^^^^^~08/01/1992~
-~18151~^~307~^286.^0^^~8~^~LC~^^^^^^^^^^~08/01/2012~
-~18151~^~318~^69.^1^^~1~^^^^^^^^^^^~07/01/2012~
-~18151~^~319~^20.^0^^~4~^~FLA~^^^^^^^^^^~02/01/2003~
-~18151~^~320~^20.^0^^~4~^~FLC~^^^^^^^^^^~07/01/2012~
-~18151~^~321~^0.^0^^~4~^~FLA~^^^^^^^^^^~02/01/2003~
-~18151~^~322~^0.^0^^~4~^~FLA~^^^^^^^^^^~02/01/2003~
-~18151~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~
-~18151~^~334~^0.^0^^~4~^~FLA~^^^^^^^^^^~02/01/2003~
-~18151~^~337~^0.^0^^~4~^~FLA~^^^^^^^^^^~02/01/2003~
-~18151~^~338~^6.^0^^~4~^~FLC~^^^^^^^^^^~07/01/2012~
-~18151~^~417~^47.^0^^~4~^~FLC~^^^^^^^^^^~07/01/2012~
-~18151~^~431~^35.^0^^~4~^~NR~^^^^^^^^^^~02/01/2003~
-~18151~^~432~^12.^0^^~4~^^^^^^^^^^^~08/01/1992~
-~18151~^~435~^72.^0^^~4~^~NC~^^^^^^^^^^~02/01/2007~
-~18151~^~601~^17.^4^8.^~1~^^^^^^^^^^^~08/01/1992~
-~18152~^~208~^434.^0^^~4~^^^^^^^^^^^~08/01/1992~
-~18152~^~268~^1816.^0^^~4~^^^^^^^^^^^
-~18152~^~301~^19.^36^0.^~1~^^^^^^^^^^^~08/01/1992~
-~18152~^~304~^40.^25^1.^~1~^^^^^^^^^^^~08/01/1992~
-~18152~^~305~^82.^37^2.^~1~^^^^^^^^^^^~08/01/1992~
-~18152~^~306~^219.^29^14.^~1~^^^^^^^^^^^~08/01/1992~
-~18152~^~307~^303.^37^13.^~1~^^^^^^^^^^^~08/01/1992~
-~18152~^~318~^11.^0^^~4~^~FLA~^^^^^^^^^^~12/01/1997~
-~18152~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2002~
-~18152~^~320~^1.^0^^~4~^~NC~^^^^^^^^^^~06/01/2002~
-~18152~^~417~^35.^0^^~4~^~FLA~^^^^^^^^^^~12/01/1997~
-~18152~^~431~^26.^0^^~4~^~NC~^^^^^^^^^^~05/01/2000~
-~18152~^~432~^9.^0^^~4~^^^^^^^^^^^~08/01/1992~
-~18152~^~435~^53.^0^^~4~^~NC~^^^^^^^^^^~01/01/2001~
-~18152~^~601~^0.^1^^~1~^^^^^^^^^^^~08/01/1992~
-~18154~^~208~^466.^0^^~4~^~NC~^^^^^^^^^^~08/01/1992~
-~18154~^~268~^1950.^0^^~4~^^^^^^^^^^^
-~18154~^~301~^57.^0^^~1~^^^^^^^^^^^~08/01/1992~
-~18154~^~304~^53.^0^^~1~^^^^^^^^^^^~08/01/1992~
-~18154~^~305~^132.^0^^~1~^^^^^^^^^^^~08/01/1992~
-~18154~^~306~^176.^0^^~1~^^^^^^^^^^^~08/01/1992~
-~18154~^~307~^343.^0^^~1~^^^^^^^^^^^~08/01/1992~
-~18154~^~318~^827.^0^^~4~^~NC~^^^^^^^^^^~04/01/2002~
-~18154~^~319~^161.^0^^~4~^~RP~^^^^^^^^^^~04/01/2002~
-~18154~^~320~^176.^0^^~4~^~NC~^^^^^^^^^^~04/01/2002~
-~18154~^~321~^174.^0^^~4~^~RP~^^^^^^^^^^~04/01/2002~
-~18154~^~417~^29.^0^^~4~^~RK~^^^^^^^^^^~12/01/1997~
-~18154~^~431~^14.^0^^~4~^~NC~^^^^^^^^^^~05/01/2000~
-~18154~^~432~^15.^0^^~1~^^^^^^^^^^^~08/01/1992~
-~18154~^~435~^39.^0^^~4~^~NC~^^^^^^^^^^~04/01/2002~
-~18154~^~601~^73.^0^^~1~^^^^^^^^^^^~08/01/1992~
-~18155~^~208~^467.^0^^~4~^~NC~^^^^^^^^^^~08/01/1992~
-~18155~^~262~^0.^0^^~4~^~FLA~^^^^^^^^^^~02/01/2003~
-~18155~^~263~^0.^0^^~4~^~FLA~^^^^^^^^^^~02/01/2003~
-~18155~^~268~^1954.^0^^~4~^^^^^^^^^^^~05/01/2005~
-~18155~^~301~^29.^5^6.^~1~^^^^^^^^^^^~08/01/1992~
-~18155~^~304~^12.^3^3.^~1~^^^^^^^^^^^~08/01/1992~
-~18155~^~305~^102.^4^28.^~1~^^^^^^^^^^^~08/01/1992~
-~18155~^~306~^111.^3^20.^~1~^^^^^^^^^^^~08/01/1992~
-~18155~^~307~^282.^0^^~8~^~LC~^^^^^^^^^^~08/01/2012~
-~18155~^~318~^673.^0^^~4~^~FLA~^^^^^^^^^^~07/01/2012~
-~18155~^~319~^162.^0^^~4~^~FLA~^^^^^^^^^^~02/01/2003~
-~18155~^~320~^165.^0^^~4~^~NC~^^^^^^^^^^~07/01/2012~
-~18155~^~321~^35.^0^^~4~^~FLA~^^^^^^^^^^~02/01/2003~
-~18155~^~322~^0.^0^^~4~^~FLA~^^^^^^^^^^~02/01/2003~
-~18155~^~324~^16.^0^^~4~^~NR~^^^^^^^^^^~03/01/2009~
-~18155~^~334~^1.^0^^~4~^~FLA~^^^^^^^^^^~02/01/2003~
-~18155~^~337~^0.^0^^~4~^~NR~^^^^^^^^^^~02/01/2003~
-~18155~^~338~^22.^0^^~4~^~FLA~^^^^^^^^^^~02/01/2003~
-~18155~^~417~^76.^0^^~4~^~NR~^^^^^^^^^^~02/01/2003~
-~18155~^~431~^70.^0^^~4~^~NR~^^^^^^^^^^~02/01/2003~
-~18155~^~432~^6.^8^0.^~1~^^^^^^^^^^^~08/01/1992~
-~18155~^~435~^125.^0^^~4~^~NC~^^^^^^^^^^~03/01/2009~
-~18155~^~601~^117.^0^^~4~^~FLA~^^^^^^^^^^~11/01/1997~
-~18156~^~208~^349.^0^^~4~^^^^^^^^^^^~08/01/1992~
-~18156~^~268~^1460.^0^^~4~^^^^^^^^^^^
-~18156~^~301~^34.^38^0.^~1~^^^^^^^^^^^~08/01/1992~
-~18156~^~304~^32.^7^1.^~1~^^^^^^^^^^^~08/01/1992~
-~18156~^~305~^83.^38^1.^~1~^^^^^^^^^^^~08/01/1992~
-~18156~^~306~^138.^37^2.^~1~^^^^^^^^^^^~08/01/1992~
-~18156~^~307~^192.^38^3.^~1~^^^^^^^^^^^~08/01/1992~
-~18156~^~318~^2.^0^^~4~^~FLA~^^^^^^^^^^~10/01/1997~
-~18156~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2002~
-~18156~^~320~^0.^0^^~4~^~NC~^^^^^^^^^^~06/01/2002~
-~18156~^~417~^43.^0^^~4~^~FLA~^^^^^^^^^^~03/01/1998~
-~18156~^~431~^34.^0^^~4~^~NC~^^^^^^^^^^~05/01/2000~
-~18156~^~432~^9.^0^^~4~^^^^^^^^^^^~08/01/1992~
-~18156~^~435~^67.^0^^~4~^~NC~^^^^^^^^^^~01/01/2001~
-~18156~^~601~^0.^0^^~4~^^^^^^^^^^^~08/01/1992~
-~18157~^~208~^433.^0^^~4~^~NC~^^^^^^^^^^~08/01/1992~
-~18157~^~262~^10.^0^^~4~^~FLA~^^^^^^^^^^~07/01/2013~
-~18157~^~263~^354.^0^^~4~^~FLA~^^^^^^^^^^~07/01/2013~
-~18157~^~268~^1812.^0^^~4~^~NC~^^^^^^^^^^~05/01/2005~
-~18157~^~301~^31.^16^1.^~1~^^^^^^^^^^^~08/01/1992~
-~18157~^~304~^53.^13^2.^~1~^^^^^^^^^^^~08/01/1992~
-~18157~^~305~^132.^15^3.^~1~^^^^^^^^^^^~08/01/1992~
-~18157~^~306~^210.^16^11.^~1~^^^^^^^^^^^~08/01/1992~
-~18157~^~307~^580.^18^38.^~1~^^^^^^^^^^^~07/01/2013~
-~18157~^~318~^10.^0^^~4~^~NC~^^^^^^^^^^~07/01/2013~
-~18157~^~319~^3.^0^^~4~^~FLA~^^^^^^^^^^~02/01/2003~
-~18157~^~320~^3.^0^^~4~^~FLA~^^^^^^^^^^~02/01/2003~
-~18157~^~321~^0.^0^^~4~^~FLA~^^^^^^^^^^~02/01/2003~
-~18157~^~322~^0.^0^^~4~^~FLA~^^^^^^^^^^~02/01/2003~
-~18157~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~
-~18157~^~334~^0.^0^^~4~^~FLA~^^^^^^^^^^~02/01/2003~
-~18157~^~337~^0.^0^^~4~^~FLA~^^^^^^^^^^~02/01/2003~
-~18157~^~338~^13.^0^^~4~^~FLA~^^^^^^^^^^~07/01/2013~
-~18157~^~417~^47.^0^^~4~^~FLA~^^^^^^^^^^~07/01/2013~
-~18157~^~431~^39.^0^^~4~^~NC~^^^^^^^^^^~07/01/2013~
-~18157~^~432~^8.^0^^~4~^~NC~^^^^^^^^^^~07/01/2013~
-~18157~^~435~^75.^0^^~4~^~NC~^^^^^^^^^^~07/01/2013~
-~18157~^~601~^2.^1^^~1~^^^^^^^^^^^~08/01/1992~
-~18158~^~208~^451.^0^^~4~^~NC~^^^^^^^^^^~05/01/2013~
-~18158~^~262~^13.^0^^~4~^~FLC~^^^^^^^^^^~05/01/2013~
-~18158~^~263~^105.^0^^~4~^~FLC~^^^^^^^^^^~05/01/2013~
-~18158~^~268~^1889.^0^^~4~^~NC~^^^^^^^^^^~05/01/2013~
-~18158~^~301~^0.^0^^~8~^~LC~^^^^^^^^^^~02/01/2013~
-~18158~^~304~^32.^0^^~4~^~FLC~^^^^^^^^^^~05/01/2013~
-~18158~^~305~^63.^0^^~4~^~FLC~^^^^^^^^^^~05/01/2013~
-~18158~^~306~^134.^0^^~8~^~LC~^^^^^^^^^^~02/01/2013~
-~18158~^~307~^418.^0^^~8~^~LC~^^^^^^^^^^~02/01/2013~
-~18158~^~318~^1.^0^^~4~^~NC~^^^^^^^^^^~02/01/2013~
-~18158~^~319~^0.^0^^~4~^~FLC~^^^^^^^^^^~02/01/2013~
-~18158~^~320~^0.^0^^~4~^~FLC~^^^^^^^^^^~06/01/2002~
-~18158~^~321~^0.^0^^~4~^~FLC~^^^^^^^^^^~02/01/2013~
-~18158~^~322~^0.^0^^~4~^~FLC~^^^^^^^^^^~02/01/2013~
-~18158~^~324~^0.^0^^~4~^~FLC~^^^^^^^^^^~02/01/2013~
-~18158~^~334~^0.^0^^~4~^~FLC~^^^^^^^^^^~02/01/2013~
-~18158~^~337~^0.^0^^~4~^~FLC~^^^^^^^^^^~02/01/2013~
-~18158~^~338~^29.^0^^~4~^~FLC~^^^^^^^^^^~05/01/2013~
-~18158~^~417~^62.^0^^~4~^~FLC~^^^^^^^^^^~05/01/2013~
-~18158~^~431~^49.^0^^~4~^~FLC~^^^^^^^^^^~05/01/2013~
-~18158~^~432~^12.^0^^~4~^~NC~^^^^^^^^^^~05/01/2013~
-~18158~^~435~^96.^0^^~4~^~NC~^^^^^^^^^^~05/01/2013~
-~18158~^~601~^0.^0^^~8~^~LC~^^^^^^^^^^~02/01/2013~
-~18159~^~208~^492.^0^^~4~^~NC~^^^^^^^^^^~07/01/2014~
-~18159~^~262~^11.^0^^~4~^~FLA~^^^^^^^^^^~11/01/1997~
-~18159~^~263~^83.^0^^~4~^~FLA~^^^^^^^^^^~11/01/1997~
-~18159~^~268~^2060.^0^^~4~^~NC~^^^^^^^^^^~07/01/2014~
-~18159~^~301~^21.^12^0.^~1~^~A~^^^1^19.^24.^7^20.^21.^~2, 3~^~02/01/2013~
-~18159~^~304~^41.^12^0.^~1~^~A~^^^1^36.^49.^6^38.^43.^~2, 3~^~07/01/2014~
-~18159~^~305~^109.^12^0.^~1~^~A~^^^1^89.^117.^6^106.^111.^~2, 3~^~07/01/2014~
-~18159~^~306~^171.^12^3.^~1~^~A~^^^1^149.^198.^5^161.^179.^~2, 3~^~07/01/2014~
-~18159~^~307~^311.^12^5.^~1~^~A~^^^1^285.^365.^6^299.^323.^~2, 3~^~07/01/2014~
-~18159~^~318~^1.^0^^~1~^~AS~^^^^^^^^^^~02/01/2013~
-~18159~^~319~^0.^2^^~1~^~A~^^^1^0.^1.^^^^~1~^~02/01/2013~
-~18159~^~320~^0.^0^^~1~^~AS~^^^^^^^^^^~02/01/2013~
-~18159~^~321~^0.^0^^~4~^~FLA~^^^^^^^^^^~02/01/2003~
-~18159~^~322~^0.^0^^~4~^~FLA~^^^^^^^^^^~02/01/2003~
-~18159~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~
-~18159~^~334~^0.^0^^~4~^~FLA~^^^^^^^^^^~02/01/2003~
-~18159~^~337~^0.^0^^~4~^~FLA~^^^^^^^^^^~02/01/2003~
-~18159~^~338~^1.^0^^~4~^~FLA~^^^^^^^^^^~02/01/2003~
-~18159~^~417~^72.^6^6.^~1~^~A~^^^1^59.^90.^2^42.^100.^~2, 3~^~02/01/2013~
-~18159~^~431~^29.^2^^~1~^~A~^^^2^25.^33.^^^^^~04/01/2008~
-~18159~^~432~^43.^0^^~4~^~NC~^^^^^^^^^^~02/01/2013~
-~18159~^~435~^92.^0^^~4~^~NC~^^^^^^^^^^~07/01/2014~
-~18159~^~601~^0.^0^^~4~^^^^^^^^^^^~04/01/2008~
-~18160~^~208~^444.^0^^~4~^~NC~^^^^^^^^^^~02/01/2013~
-~18160~^~268~^1858.^0^^~4~^~NC~^^^^^^^^^^~02/01/2013~
-~18160~^~301~^17.^6^0.^~1~^~A~^^^1^15.^18.^5^15.^17.^~2, 3~^~02/01/2013~
-~18160~^~304~^29.^6^0.^~1~^~A~^^^1^28.^30.^5^27.^29.^~2, 3~^~02/01/2013~
-~18160~^~305~^61.^6^0.^~1~^~A~^^^1^59.^63.^5^58.^62.^~2, 3~^~02/01/2013~
-~18160~^~306~^130.^6^3.^~1~^~A~^^^1^119.^145.^5^120.^138.^~2, 3~^~02/01/2013~
-~18160~^~307~^276.^6^2.^~1~^~A~^^^1^266.^281.^5^270.^282.^~2, 3~^~02/01/2013~
-~18160~^~318~^0.^0^^~1~^~AS~^^^^^^^^^^~04/01/2008~
-~18160~^~319~^0.^1^^~1~^~A~^^^^^^^^^~1~^~02/01/2013~
-~18160~^~320~^0.^0^^~1~^~AS~^^^^^^^^^^~04/01/2008~
-~18160~^~417~^27.^3^1.^~1~^~A~^^^1^25.^31.^2^20.^34.^~2, 3~^~02/01/2013~
-~18160~^~431~^25.^1^^~1~^~A~^^^^^^^^^^~04/01/2008~
-~18160~^~432~^2.^0^^~4~^~NC~^^^^^^^^^^~02/01/2013~
-~18160~^~435~^45.^0^^~4~^~NC~^^^^^^^^^^~02/01/2013~
-~18161~^~208~^497.^0^^~4~^~NC~^^^^^^^^^^~08/01/1992~
-~18161~^~262~^12.^0^^~4~^~FLA~^^^^^^^^^^~10/01/1997~
-~18161~^~263~^91.^0^^~4~^~FLA~^^^^^^^^^^~10/01/1997~
-~18161~^~268~^2079.^0^^~4~^^^^^^^^^^^
-~18161~^~301~^43.^2^^~1~^^^^^^^^^^^~08/01/1992~
-~18161~^~304~^36.^1^^~1~^^^^^^^^^^^~08/01/1992~
-~18161~^~305~^80.^2^^~1~^^^^^^^^^^^~08/01/1992~
-~18161~^~306~^208.^2^^~1~^^^^^^^^^^^~08/01/1992~
-~18161~^~307~^290.^2^^~1~^^^^^^^^^^^~08/01/1992~
-~18161~^~318~^4.^0^^~4~^~FLA~^^^^^^^^^^~10/01/1997~
-~18161~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2002~
-~18161~^~320~^0.^0^^~4~^~NC~^^^^^^^^^^~06/01/2002~
-~18161~^~417~^51.^0^^~4~^~FLA~^^^^^^^^^^~10/01/1997~
-~18161~^~431~^45.^0^^~4~^~NC~^^^^^^^^^^~05/01/2000~
-~18161~^~432~^6.^0^^~4~^^^^^^^^^^^~08/01/1992~
-~18161~^~435~^83.^0^^~4~^~NC~^^^^^^^^^^~01/01/2001~
-~18161~^~601~^0.^0^^~4~^^^^^^^^^^^~08/01/1992~
-~18163~^~208~^451.^2^^~9~^~MC~^^^1^450.^453.^1^^^^~04/01/2012~
-~18163~^~262~^9.^0^^~4~^~FLA~^^^^^^^^^^~12/01/1997~
-~18163~^~263~^72.^0^^~4~^~FLA~^^^^^^^^^^~12/01/1997~
-~18163~^~268~^1889.^0^^~9~^~MC~^^^^^^^^^^~04/01/2012~
-~18163~^~301~^14.^2^^~9~^~MC~^^^1^14.^14.^1^^^^~04/01/2012~
-~18163~^~304~^24.^9^1.^~1~^^^^^^^^^^^~08/01/1992~
-~18163~^~305~^69.^9^1.^~1~^^^^^^^^^^^~08/01/1992~
-~18163~^~306~^180.^19^27.^~1~^^^^^^^^^^^~08/01/1992~
-~18163~^~307~^321.^2^^~9~^~MC~^^^1^317.^326.^1^^^^~04/01/2012~
-~18163~^~318~^12.^2^^~9~^~MC~^^^1^4.^19.^1^^^^~04/01/2012~
-~18163~^~320~^4.^0^^~4~^~NR~^^^^^^^^^^~08/01/2012~
-~18163~^~417~^57.^0^^~4~^~FLA~^^^^^^^^^^~12/01/1997~
-~18163~^~431~^48.^0^^~4~^~NC~^^^^^^^^^^~05/01/2000~
-~18163~^~432~^9.^0^^~4~^^^^^^^^^^^~08/01/1992~
-~18163~^~435~^91.^0^^~4~^~NC~^^^^^^^^^^~04/01/2001~
-~18163~^~601~^7.^2^^~9~^~MC~^^^1^6.^8.^1^^^^~04/01/2012~
-~18164~^~208~^492.^0^^~4~^^^^^^^^^^^~08/01/1992~
-~18164~^~268~^2059.^0^^~4~^^^^^^^^^^^
-~18164~^~301~^28.^0^^~4~^^^^^^^^^^^~08/01/1992~
-~18164~^~304~^27.^0^^~4~^^^^^^^^^^^~08/01/1992~
-~18164~^~305~^76.^0^^~4~^^^^^^^^^^^~08/01/1992~
-~18164~^~306~^200.^0^^~4~^^^^^^^^^^^~08/01/1992~
-~18164~^~307~^232.^0^^~4~^^^^^^^^^^^~08/01/1992~
-~18164~^~318~^59.^0^^~4~^^^^^^^^^^^~08/01/1992~
-~18164~^~319~^18.^0^^~4~^~NC~^^^^^^^^^^~06/01/2002~
-~18164~^~320~^18.^0^^~4~^~NC~^^^^^^^^^^~06/01/2002~
-~18164~^~417~^44.^0^^~4~^~RP~^^^^^^^^^^~11/01/1998~
-~18164~^~431~^37.^0^^~4~^~NC~^^^^^^^^^^~05/01/2000~
-~18164~^~432~^7.^0^^~4~^^^^^^^^^^^~08/01/1992~
-~18164~^~435~^70.^0^^~4~^~NC~^^^^^^^^^^~01/01/2001~
-~18164~^~601~^27.^0^^~4~^^^^^^^^^^^~08/01/1992~
-~18165~^~208~^488.^0^^~4~^~NC~^^^^^^^^^^~08/01/1992~
-~18165~^~262~^16.^0^^~4~^~RK~^^^^^^^^^^~04/01/2002~
-~18165~^~263~^127.^0^^~4~^~RK~^^^^^^^^^^~04/01/2002~
-~18165~^~268~^2042.^0^^~4~^^^^^^^^^^^
-~18165~^~301~^39.^0^^~1~^^^^^^^^^^^~08/01/1992~
-~18165~^~304~^55.^0^^~1~^^^^^^^^^^^~08/01/1992~
-~18165~^~305~^100.^0^^~1~^^^^^^^^^^^~08/01/1992~
-~18165~^~306~^224.^0^^~1~^^^^^^^^^^^~08/01/1992~
-~18165~^~307~^361.^0^^~1~^^^^^^^^^^^~08/01/1992~
-~18165~^~318~^683.^0^^~4~^~NC~^^^^^^^^^^~04/01/2002~
-~18165~^~319~^130.^0^^~4~^~RK~^^^^^^^^^^~04/01/2002~
-~18165~^~320~^143.^0^^~4~^~NC~^^^^^^^^^^~04/01/2002~
-~18165~^~321~^150.^0^^~4~^~RK~^^^^^^^^^^~04/01/2002~
-~18165~^~417~^33.^0^^~4~^~RK~^^^^^^^^^^~12/01/1997~
-~18165~^~431~^20.^0^^~4~^~NC~^^^^^^^^^^~05/01/2000~
-~18165~^~432~^13.^0^^~1~^^^^^^^^^^^~08/01/1992~
-~18165~^~435~^47.^0^^~4~^~NC~^^^^^^^^^^~04/01/2002~
-~18165~^~601~^32.^0^^~1~^^^^^^^^^^^~08/01/1992~
-~18166~^~208~^464.^0^^~4~^~NC~^^^^^^^^^^~07/01/2014~
-~18166~^~262~^5.^0^^~4~^~FLA~^^^^^^^^^^~07/01/2013~
-~18166~^~263~^184.^0^^~4~^~FLA~^^^^^^^^^^~07/01/2013~
-~18166~^~268~^1939.^0^^~4~^~NC~^^^^^^^^^^~04/01/2013~
-~18166~^~301~^21.^12^0.^~1~^~A~^^^1^19.^65.^9^19.^22.^~2, 3~^~07/01/2014~
-~18166~^~304~^47.^12^0.^~1~^~A~^^^1^38.^55.^6^45.^48.^~2, 3~^~04/01/2013~
-~18166~^~305~^93.^12^1.^~1~^~A~^^^1^86.^135.^8^89.^95.^~2, 3~^~04/01/2013~
-~18166~^~306~^234.^12^16.^~1~^~A~^^^1^195.^318.^5^192.^275.^~2, 3~^~04/01/2013~
-~18166~^~307~^388.^12^9.^~1~^~A~^^^1^338.^525.^5^364.^411.^~2, 3~^~04/01/2013~
-~18166~^~318~^2.^0^^~4~^~NC~^^^^^^^^^^~04/01/2008~
-~18166~^~319~^0.^0^^~4~^~FLA~^^^^^^^^^^~04/01/2008~
-~18166~^~320~^1.^0^^~4~^~FLA~^^^^^^^^^^~07/01/2013~
-~18166~^~321~^0.^0^^~4~^~FLA~^^^^^^^^^^~04/01/2008~
-~18166~^~322~^0.^0^^~4~^~FLA~^^^^^^^^^^~04/01/2008~
-~18166~^~324~^0.^0^^~4~^~FLA~^^^^^^^^^^~07/01/2014~
-~18166~^~334~^0.^0^^~4~^~FLA~^^^^^^^^^^~04/01/2008~
-~18166~^~337~^0.^0^^~4~^~FLA~^^^^^^^^^^~04/01/2008~
-~18166~^~338~^4.^0^^~4~^~FLA~^^^^^^^^^^~04/01/2008~
-~18166~^~417~^61.^5^7.^~1~^~A~^^^1^42.^77.^2^31.^90.^~2, 3~^~04/01/2013~
-~18166~^~431~^58.^1^^~1~^~A~^^^^^^^^^^~04/01/2008~
-~18166~^~432~^3.^0^^~4~^~NC~^^^^^^^^^^~04/01/2013~
-~18166~^~435~^102.^0^^~4~^~NC~^^^^^^^^^^~04/01/2013~
-~18166~^~601~^0.^0^^~4~^^^^^^^^^^^~04/01/2008~
-~18167~^~208~^481.^0^^~4~^~NC~^^^^^^^^^^~08/01/1992~
-~18167~^~262~^4.^0^^~4~^~FLA~^^^^^^^^^^~07/01/2013~
-~18167~^~263~^132.^0^^~4~^~FLA~^^^^^^^^^^~07/01/2013~
-~18167~^~268~^2013.^0^^~4~^~NC~^^^^^^^^^^~05/01/2005~
-~18167~^~301~^35.^11^1.^~1~^^^^^^^^^^^~08/01/1992~
-~18167~^~304~^39.^11^1.^~1~^^^^^^^^^^^~08/01/1992~
-~18167~^~305~^90.^11^3.^~1~^^^^^^^^^^^~08/01/1992~
-~18167~^~306~^240.^11^15.^~1~^^^^^^^^^^^~08/01/1992~
-~18167~^~307~^326.^11^8.^~1~^^^^^^^^^^^~08/01/1992~
-~18167~^~318~^5.^0^^~4~^~NC~^^^^^^^^^^~02/01/2003~
-~18167~^~319~^2.^0^^~4~^~FLA~^^^^^^^^^^~02/01/2003~
-~18167~^~320~^2.^0^^~4~^~FLA~^^^^^^^^^^~02/01/2003~
-~18167~^~321~^0.^0^^~4~^~FLA~^^^^^^^^^^~02/01/2003~
-~18167~^~322~^0.^0^^~4~^~FLA~^^^^^^^^^^~02/01/2003~
-~18167~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~
-~18167~^~334~^0.^0^^~4~^~FLA~^^^^^^^^^^~02/01/2003~
-~18167~^~337~^0.^0^^~4~^~FLA~^^^^^^^^^^~02/01/2003~
-~18167~^~338~^2.^0^^~4~^~FLA~^^^^^^^^^^~07/01/2013~
-~18167~^~417~^18.^0^^~4~^~FLA~^^^^^^^^^^~03/01/1998~
-~18167~^~431~^11.^0^^~4~^~NC~^^^^^^^^^^~05/01/2000~
-~18167~^~432~^7.^0^^~4~^^^^^^^^^^^~08/01/1992~
-~18167~^~435~^26.^0^^~4~^~NC~^^^^^^^^^^~02/01/2007~
-~18167~^~601~^0.^0^^~4~^^^^^^^^^^^~08/01/1992~
-~18168~^~208~^497.^0^^~4~^~NC~^^^^^^^^^^~03/01/2004~
-~18168~^~262~^6.^0^^~4~^~FLA~^^^^^^^^^^~07/01/2013~
-~18168~^~263~^190.^0^^~4~^~FLA~^^^^^^^^^^~07/01/2013~
-~18168~^~268~^2081.^0^^~4~^~NC~^^^^^^^^^^~03/01/2004~
-~18168~^~301~^16.^2^^~1~^~A~^^^1^16.^16.^1^^^^~03/01/2004~
-~18168~^~304~^36.^2^^~1~^~A~^^^1^36.^37.^1^^^^~03/01/2004~
-~18168~^~305~^69.^2^^~1~^~A~^^^1^68.^71.^1^^^^~03/01/2004~
-~18168~^~306~^137.^2^^~1~^~A~^^^1^134.^140.^1^^^^~03/01/2004~
-~18168~^~307~^351.^2^^~1~^~A~^^^1^346.^356.^1^^^^~03/01/2004~
-~18168~^~318~^0.^0^^~4~^~FLA~^^^^^^^^^^~03/01/2004~
-~18168~^~319~^0.^0^^~4~^~FLA~^^^^^^^^^^~02/01/2003~
-~18168~^~320~^0.^0^^~4~^~FLA~^^^^^^^^^^~03/01/2004~
-~18168~^~321~^0.^0^^~4~^~FLA~^^^^^^^^^^~02/01/2003~
-~18168~^~322~^0.^0^^~4~^~FLA~^^^^^^^^^^~02/01/2003~
-~18168~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~
-~18168~^~334~^0.^0^^~4~^~FLA~^^^^^^^^^^~02/01/2003~
-~18168~^~337~^0.^0^^~4~^~FLA~^^^^^^^^^^~02/01/2003~
-~18168~^~338~^3.^0^^~4~^~FLA~^^^^^^^^^^~07/01/2013~
-~18168~^~417~^46.^2^^~1~^~A~^^^1^46.^46.^1^^^^~03/01/2004~
-~18168~^~431~^34.^1^^~1~^~A~^^^^^^^^^^~05/01/2011~
-~18168~^~432~^12.^0^^~4~^~NC~^^^^^^^^^^~05/01/2011~
-~18168~^~435~^69.^0^^~4~^~NC~^^^^^^^^^^~05/01/2011~
-~18168~^~601~^0.^0^^~4~^^^^^^^^^^^~08/01/1992~
-~18168~^~638~^11.^1^^~1~^~A~^^^^^^^^^^~03/01/2004~
-~18168~^~639~^13.^1^^~1~^~A~^^^^^^^^^^~03/01/2004~
-~18168~^~641~^34.^1^^~1~^~A~^^^^^^^^^^~03/01/2004~
-~18170~^~208~^348.^0^^~4~^~NC~^^^^^^^^^^~08/01/1992~
-~18170~^~262~^0.^0^^~4~^~FLA~^^^^^^^^^^~02/01/2003~
-~18170~^~263~^0.^0^^~4~^~FLA~^^^^^^^^^^~02/01/2003~
-~18170~^~268~^1456.^0^^~4~^^^^^^^^^^^~05/01/2005~
-~18170~^~301~^64.^28^3.^~1~^^^^^^^^^^^~08/01/1992~
-~18170~^~304~^27.^25^0.^~1~^^^^^^^^^^^~08/01/1992~
-~18170~^~305~^62.^26^1.^~1~^^^^^^^^^^^~08/01/1992~
-~18170~^~306~^207.^26^9.^~1~^^^^^^^^^^^~08/01/1992~
-~18170~^~307~^350.^27^21.^~1~^^^^^^^^^^^~08/01/1992~
-~18170~^~318~^33.^0^^~4~^~NC~^^^^^^^^^^~02/01/2003~
-~18170~^~319~^9.^0^^~4~^~FLA~^^^^^^^^^^~02/01/2003~
-~18170~^~320~^9.^0^^~4~^~NC~^^^^^^^^^^~02/01/2003~
-~18170~^~321~^1.^0^^~4~^~FLA~^^^^^^^^^^~02/01/2003~
-~18170~^~322~^0.^0^^~4~^~FLA~^^^^^^^^^^~02/01/2003~
-~18170~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~
-~18170~^~334~^0.^0^^~4~^~FLA~^^^^^^^^^^~02/01/2003~
-~18170~^~337~^0.^0^^~4~^~FLA~^^^^^^^^^^~02/01/2003~
-~18170~^~338~^8.^0^^~4~^~FLA~^^^^^^^^^^~02/01/2003~
-~18170~^~417~^35.^0^^~4~^~FLA~^^^^^^^^^^~02/01/2003~
-~18170~^~431~^25.^0^^~4~^^^^^^^^^^^~06/01/2003~
-~18170~^~432~^10.^8^0.^~1~^^^^^^^^^^^~08/01/1992~
-~18170~^~435~^53.^0^^~4~^~NC~^^^^^^^^^^~02/01/2007~
-~18170~^~601~^0.^0^^~4~^^^^^^^^^^^~08/01/1992~
-~18171~^~208~^378.^0^^~4~^~NC~^^^^^^^^^^~08/01/1992~
-~18171~^~262~^0.^0^^~4~^~FLA~^^^^^^^^^^~02/01/2003~
-~18171~^~263~^0.^0^^~4~^~FLA~^^^^^^^^^^~02/01/2003~
-~18171~^~268~^1582.^0^^~4~^^^^^^^^^^^~05/01/2005~
-~18171~^~301~^12.^2^^~1~^^^^^^^^^^^~08/01/1992~
-~18171~^~304~^7.^2^^~1~^^^^^^^^^^^~08/01/1992~
-~18171~^~305~^35.^2^^~1~^^^^^^^^^^^~08/01/1992~
-~18171~^~306~^41.^2^^~1~^^^^^^^^^^^~08/01/1992~
-~18171~^~307~^31.^0^^~8~^~LC~^^^^^^^^^^~08/01/2012~
-~18171~^~318~^3.^0^^~4~^~FLA~^^^^^^^^^^~02/01/2003~
-~18171~^~319~^1.^0^^~4~^~FLA~^^^^^^^^^^~02/01/2003~
-~18171~^~320~^1.^0^^~4~^~FLA~^^^^^^^^^^~02/01/2003~
-~18171~^~321~^0.^0^^~4~^~FLA~^^^^^^^^^^~02/01/2003~
-~18171~^~322~^0.^0^^~4~^~FLA~^^^^^^^^^^~02/01/2003~
-~18171~^~324~^0.^0^^~4~^~FLA~^^^^^^^^^^~07/01/2012~
-~18171~^~334~^0.^0^^~4~^~FLA~^^^^^^^^^^~02/01/2003~
-~18171~^~337~^0.^0^^~4~^~FLA~^^^^^^^^^^~02/01/2003~
-~18171~^~338~^3.^0^^~4~^~FLA~^^^^^^^^^^~02/01/2003~
-~18171~^~417~^66.^0^^~4~^~FLA~^^^^^^^^^^~02/01/2003~
-~18171~^~431~^56.^0^^~4~^~NR~^^^^^^^^^^~02/01/2003~
-~18171~^~432~^10.^8^0.^~1~^^^^^^^^^^^~08/01/1992~
-~18171~^~435~^105.^0^^~4~^~NC~^^^^^^^^^^~02/01/2007~
-~18171~^~601~^2.^0^^~4~^~FLA~^^^^^^^^^^~11/01/1997~
-~18172~^~208~^416.^0^^~4~^~NC~^^^^^^^^^^~08/01/1992~
-~18172~^~262~^0.^0^^~4~^~FLA~^^^^^^^^^^~02/01/2003~
-~18172~^~263~^0.^0^^~4~^~FLA~^^^^^^^^^^~02/01/2003~
-~18172~^~268~^1741.^0^^~4~^^^^^^^^^^^~05/01/2005~
-~18172~^~301~^77.^24^4.^~1~^^^^^^^^^^^~08/01/1992~
-~18172~^~304~^49.^23^2.^~1~^^^^^^^^^^^~08/01/1992~
-~18172~^~305~^83.^24^2.^~1~^^^^^^^^^^^~08/01/1992~
-~18172~^~306~^346.^22^20.^~1~^^^^^^^^^^^~08/01/1992~
-~18172~^~307~^555.^0^^~4~^~NR~^^^^^^^^^^~07/01/2017~
-~18172~^~318~^2.^0^^~4~^~NC~^^^^^^^^^^~02/01/2003~
-~18172~^~319~^0.^0^^~4~^~FLA~^^^^^^^^^^~02/01/2003~
-~18172~^~320~^0.^0^^~4~^~NC~^^^^^^^^^^~02/01/2003~
-~18172~^~321~^1.^0^^~4~^~FLA~^^^^^^^^^^~02/01/2003~
-~18172~^~322~^0.^0^^~4~^~FLA~^^^^^^^^^^~02/01/2003~
-~18172~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~
-~18172~^~334~^0.^0^^~4~^~FLA~^^^^^^^^^^~02/01/2003~
-~18172~^~337~^0.^0^^~4~^~FLA~^^^^^^^^^^~02/01/2003~
-~18172~^~338~^2.^0^^~4~^~FLA~^^^^^^^^^^~02/01/2003~
-~18172~^~417~^87.^0^^~4~^~FLA~^^^^^^^^^^~02/01/2003~
-~18172~^~431~^82.^0^^~4~^~NR~^^^^^^^^^^~02/01/2003~
-~18172~^~432~^6.^0^^~4~^^^^^^^^^^^~08/01/1992~
-~18172~^~435~^145.^0^^~4~^~NC~^^^^^^^^^^~02/01/2007~
-~18172~^~601~^0.^0^^~1~^^^^^^^^^^^~08/01/1992~
-~18173~^~208~^430.^0^^~4~^~NC~^^^^^^^^^^~06/01/2014~
-~18173~^~262~^0.^0^^~4~^~FLA~^^^^^^^^^^~02/01/2003~
-~18173~^~263~^0.^0^^~4~^~FLA~^^^^^^^^^^~02/01/2003~
-~18173~^~268~^1799.^0^^~4~^~NC~^^^^^^^^^^~06/01/2014~
-~18173~^~301~^77.^16^0.^~1~^~A~^^^1^46.^445.^5^74.^78.^~2, 3~^~06/01/2014~
-~18173~^~304~^40.^16^1.^~1~^~A~^^^1^31.^48.^1^30.^49.^~2, 3~^~06/01/2014~
-~18173~^~305~^185.^16^1.^~1~^~A~^^^1^167.^243.^2^176.^193.^~2, 3~^~06/01/2014~
-~18173~^~306~^170.^16^3.^~1~^~A~^^^1^145.^252.^2^153.^186.^~2, 3~^~06/01/2014~
-~18173~^~307~^516.^0^^~4~^~NR~^^^^^^^^^^~07/01/2017~
-~18173~^~318~^2.^0^^~4~^~NC~^^^^^^^^^^~02/01/2003~
-~18173~^~319~^0.^0^^~4~^~FLA~^^^^^^^^^^~02/01/2003~
-~18173~^~320~^0.^0^^~4~^~FLA~^^^^^^^^^^~02/01/2003~
-~18173~^~321~^1.^0^^~4~^~FLA~^^^^^^^^^^~02/01/2003~
-~18173~^~322~^0.^0^^~4~^~FLA~^^^^^^^^^^~02/01/2003~
-~18173~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~
-~18173~^~334~^0.^0^^~4~^~FLA~^^^^^^^^^^~02/01/2003~
-~18173~^~337~^0.^0^^~4~^~FLA~^^^^^^^^^^~02/01/2003~
-~18173~^~338~^77.^0^^~4~^~FLA~^^^^^^^^^^~06/01/2014~
-~18173~^~417~^91.^9^4.^~1~^~A~^^^1^54.^122.^2^71.^110.^~2, 3~^~06/01/2014~
-~18173~^~431~^72.^0^^~4~^~FLA~^^^^^^^^^^~06/01/2014~
-~18173~^~432~^19.^0^^~4~^~FLA~^^^^^^^^^^~06/01/2014~
-~18173~^~435~^142.^0^^~4~^~NC~^^^^^^^^^^~06/01/2014~
-~18173~^~601~^0.^0^^~4~^~FLA~^^^^^^^^^^~06/01/2014~
-~18174~^~208~^500.^0^^~4~^~NC~^^^^^^^^^^~10/01/2013~
-~18174~^~262~^3.^0^^~4~^~FLM~^^^^^^^^^^~10/01/2013~
-~18174~^~263~^88.^0^^~4~^~FLM~^^^^^^^^^^~10/01/2013~
-~18174~^~268~^2092.^0^^~4~^~NC~^^^^^^^^^^~10/01/2013~
-~18174~^~301~^46.^0^^~4~^~FLM~^^^^^^^^^^~10/01/2013~
-~18174~^~304~^16.^0^^~9~^~MC~^^^^^^^^^^~10/01/2013~
-~18174~^~305~^87.^0^^~9~^~MC~^^^^^^^^^^~10/01/2013~
-~18174~^~306~^267.^0^^~9~^~MC~^^^^^^^^^^~10/01/2013~
-~18174~^~307~^265.^0^^~9~^~MC~^^^^^^^^^^~10/01/2013~
-~18174~^~318~^8.^0^^~4~^~FLM~^^^^^^^^^^~10/01/2013~
-~18174~^~319~^2.^0^^~4~^~FLM~^^^^^^^^^^~10/01/2013~
-~18174~^~320~^2.^0^^~4~^~FLM~^^^^^^^^^^~10/01/2013~
-~18174~^~321~^0.^0^^~4~^~FLM~^^^^^^^^^^~10/01/2013~
-~18174~^~322~^0.^0^^~4~^~FLM~^^^^^^^^^^~02/01/2003~
-~18174~^~324~^1.^0^^~9~^~MC~^^^^^^^^^^~10/01/2013~
-~18174~^~334~^0.^0^^~4~^~FLM~^^^^^^^^^^~02/01/2003~
-~18174~^~337~^0.^0^^~4~^~FLM~^^^^^^^^^^~02/01/2003~
-~18174~^~338~^13.^0^^~4~^~FLM~^^^^^^^^^^~10/01/2013~
-~18174~^~417~^50.^0^^~9~^~MC~^^^^^^^^^^~10/01/2013~
-~18174~^~431~^38.^0^^~4~^~FLM~^^^^^^^^^^~10/01/2013~
-~18174~^~432~^12.^0^^~4~^~NC~^^^^^^^^^^~10/01/2013~
-~18174~^~435~^77.^0^^~4~^~NC~^^^^^^^^^^~10/01/2013~
-~18174~^~601~^1.^0^^~9~^~MC~^^^^^^^^^^~10/01/2013~
-~18175~^~208~^365.^0^^~4~^~NC~^^^^^^^^^^~08/01/1992~
-~18175~^~262~^0.^0^^~4~^~FLC~^^^^^^^^^^~02/01/2003~
-~18175~^~263~^0.^0^^~4~^~FLC~^^^^^^^^^^~02/01/2003~
-~18175~^~268~^1527.^0^^~4~^^^^^^^^^^^~05/01/2005~
-~18175~^~301~^47.^0^^~1~^^^^^^^^^^^~08/01/1992~
-~18175~^~304~^12.^0^^~1~^^^^^^^^^^^~08/01/1992~
-~18175~^~305~^173.^0^^~1~^^^^^^^^^^^~08/01/1992~
-~18175~^~306~^113.^0^^~1~^^^^^^^^^^^~08/01/1992~
-~18175~^~307~^147.^0^^~1~^^^^^^^^^^^~08/01/1992~
-~18175~^~318~^50.^0^^~4~^~NC~^^^^^^^^^^~02/01/2003~
-~18175~^~319~^0.^0^^~4~^~NR~^^^^^^^^^^~02/01/2003~
-~18175~^~320~^3.^0^^~4~^~NC~^^^^^^^^^^~02/01/2003~
-~18175~^~321~^22.^0^^~4~^~FLC~^^^^^^^^^^~02/01/2003~
-~18175~^~322~^9.^0^^~4~^~FLC~^^^^^^^^^^~02/01/2003~
-~18175~^~324~^22.^0^^~4~^~RC~^^^^^^^^^^~03/01/2009~
-~18175~^~334~^8.^0^^~4~^~FLC~^^^^^^^^^^~02/01/2003~
-~18175~^~337~^0.^0^^~4~^~FLC~^^^^^^^^^^~02/01/2003~
-~18175~^~338~^266.^0^^~4~^~FLC~^^^^^^^^^^~02/01/2003~
-~18175~^~417~^60.^0^^~4~^~FLC~^^^^^^^^^^~02/01/2003~
-~18175~^~431~^23.^0^^~4~^^^^^^^^^^^~02/01/2003~
-~18175~^~432~^37.^0^^~1~^^^^^^^^^^^~08/01/1992~
-~18175~^~435~^76.^0^^~4~^~NC~^^^^^^^^^^~03/01/2009~
-~18175~^~601~^221.^0^^~4~^~FLA~^^^^^^^^^^~07/01/2006~
-~18176~^~208~^421.^0^^~4~^^^^^^^^^^^~08/01/1992~
-~18176~^~262~^5.^0^^~4~^~FLA~^^^^^^^^^^~05/01/1998~
-~18176~^~263~^159.^0^^~4~^~FLA~^^^^^^^^^^~05/01/1998~
-~18176~^~268~^1761.^0^^~4~^^^^^^^^^^^~05/01/2005~
-~18176~^~301~^46.^21^3.^~1~^^^^^^^^^^^~08/01/1992~
-~18176~^~304~^36.^21^3.^~1~^^^^^^^^^^^~08/01/1992~
-~18176~^~305~^97.^21^3.^~1~^^^^^^^^^^^~08/01/1992~
-~18176~^~306~^182.^21^5.^~1~^^^^^^^^^^^~08/01/1992~
-~18176~^~307~^188.^0^^~8~^~LC~^^^^^^^^^^~08/01/2012~
-~18176~^~318~^5.^0^^~4~^~FLA~^^^^^^^^^^~02/01/2003~
-~18176~^~319~^1.^0^^~4~^~FLA~^^^^^^^^^^~02/01/2003~
-~18176~^~320~^1.^0^^~4~^~FLA~^^^^^^^^^^~02/01/2003~
-~18176~^~321~^0.^0^^~4~^~FLA~^^^^^^^^^^~02/01/2003~
-~18176~^~322~^0.^0^^~4~^~FLA~^^^^^^^^^^~02/01/2003~
-~18176~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~
-~18176~^~334~^0.^0^^~4~^~FLA~^^^^^^^^^^~02/01/2003~
-~18176~^~337~^0.^0^^~4~^~FLA~^^^^^^^^^^~02/01/2003~
-~18176~^~338~^3.^0^^~4~^~FLA~^^^^^^^^^^~02/01/2003~
-~18176~^~417~^23.^0^^~4~^~FLA~^^^^^^^^^^~02/01/2003~
-~18176~^~431~^20.^0^^~4~^~NR~^^^^^^^^^^~02/01/2003~
-~18176~^~432~^3.^0^^~4~^~NC~^^^^^^^^^^~07/01/2012~
-~18176~^~435~^37.^0^^~4~^~NC~^^^^^^^^^^~07/01/2012~
-~18176~^~601~^0.^0^^~4~^^^^^^^^^^^~08/01/1992~
-~18177~^~208~^430.^0^^~4~^~NC~^^^^^^^^^^~08/01/1992~
-~18177~^~262~^0.^0^^~4~^~FLA~^^^^^^^^^^~02/01/2003~
-~18177~^~263~^0.^0^^~4~^~FLA~^^^^^^^^^^~02/01/2003~
-~18177~^~268~^1799.^0^^~4~^^^^^^^^^^^~05/01/2005~
-~18177~^~301~^74.^14^5.^~1~^^^^^^^^^^^~08/01/1992~
-~18177~^~304~^52.^9^3.^~1~^^^^^^^^^^^~08/01/1992~
-~18177~^~305~^95.^10^5.^~1~^^^^^^^^^^^~08/01/1992~
-~18177~^~306~^346.^12^30.^~1~^^^^^^^^^^^~08/01/1992~
-~18177~^~307~^459.^13^21.^~1~^^^^^^^^^^^~08/01/1992~
-~18177~^~318~^0.^0^^~4~^~NC~^^^^^^^^^^~02/01/2003~
-~18177~^~319~^0.^0^^~4~^~FLA~^^^^^^^^^^~02/01/2003~
-~18177~^~320~^0.^0^^~4~^~NC~^^^^^^^^^^~02/01/2003~
-~18177~^~321~^0.^0^^~4~^~FLA~^^^^^^^^^^~02/01/2003~
-~18177~^~322~^0.^0^^~4~^~FLA~^^^^^^^^^^~02/01/2003~
-~18177~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~
-~18177~^~334~^0.^0^^~4~^~FLA~^^^^^^^^^^~02/01/2003~
-~18177~^~337~^0.^0^^~4~^~FLA~^^^^^^^^^^~02/01/2003~
-~18177~^~338~^2.^0^^~4~^~FLA~^^^^^^^^^^~02/01/2003~
-~18177~^~417~^89.^0^^~4~^~FLA~^^^^^^^^^^~02/01/2003~
-~18177~^~431~^82.^0^^~4~^^^^^^^^^^^~02/01/2003~
-~18177~^~432~^7.^0^^~4~^^^^^^^^^^^~08/01/1992~
-~18177~^~435~^146.^0^^~4~^~NC~^^^^^^^^^^~02/01/2007~
-~18177~^~601~^0.^0^^~1~^^^^^^^^^^^~08/01/1992~
-~18178~^~208~^450.^0^^~4~^~NC~^^^^^^^^^^~08/01/1992~
-~18178~^~262~^0.^0^^~4~^~FLA~^^^^^^^^^^~03/01/2003~
-~18178~^~263~^0.^0^^~4~^~FLA~^^^^^^^^^^~03/01/2003~
-~18178~^~268~^1883.^0^^~4~^^^^^^^^^^^~05/01/2005~
-~18178~^~301~^37.^28^2.^~1~^^^^^^^^^^^~08/01/1992~
-~18178~^~304~^33.^20^1.^~1~^^^^^^^^^^^~08/01/1992~
-~18178~^~305~^138.^24^6.^~1~^^^^^^^^^^^~08/01/1992~
-~18178~^~306~^142.^24^9.^~1~^^^^^^^^^^^~08/01/1992~
-~18178~^~307~^520.^0^^~4~^~NR~^^^^^^^^^^~07/01/2017~
-~18178~^~318~^18.^0^^~4~^~NC~^^^^^^^^^^~03/01/2003~
-~18178~^~319~^5.^0^^~4~^~FLA~^^^^^^^^^^~03/01/2003~
-~18178~^~320~^5.^0^^~4~^~NC~^^^^^^^^^^~03/01/2003~
-~18178~^~321~^0.^0^^~4~^~FLA~^^^^^^^^^^~03/01/2003~
-~18178~^~322~^0.^0^^~4~^~FLA~^^^^^^^^^^~02/01/2003~
-~18178~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~
-~18178~^~334~^0.^0^^~4~^~FLA~^^^^^^^^^^~02/01/2003~
-~18178~^~337~^0.^0^^~4~^~FLA~^^^^^^^^^^~02/01/2003~
-~18178~^~338~^31.^0^^~4~^~FLA~^^^^^^^^^^~03/01/2003~
-~18178~^~417~^59.^0^^~4~^~FLA~^^^^^^^^^^~03/01/2003~
-~18178~^~431~^52.^0^^~4~^^^^^^^^^^^~03/01/2003~
-~18178~^~432~^7.^0^^~4~^^^^^^^^^^^~08/01/1992~
-~18178~^~435~^95.^0^^~4~^~NC~^^^^^^^^^^~02/01/2007~
-~18178~^~601~^0.^0^^~1~^^^^^^^^^^^~08/01/1992~
-~18179~^~208~^409.^0^^~4~^~NC~^^^^^^^^^^~08/01/1992~
-~18179~^~268~^1711.^0^^~4~^^^^^^^^^^^
-~18179~^~301~^90.^3^20.^~1~^^^^^^^^^^^~08/01/1992~
-~18179~^~304~^30.^3^2.^~1~^^^^^^^^^^^~08/01/1992~
-~18179~^~305~^209.^3^4.^~1~^^^^^^^^^^^~08/01/1992~
-~18179~^~306~^135.^3^28.^~1~^^^^^^^^^^^~08/01/1992~
-~18179~^~307~^349.^3^43.^~1~^^^^^^^^^^^~08/01/1992~
-~18179~^~318~^32.^0^^~4~^~FLA~^^^^^^^^^^~12/01/1997~
-~18179~^~319~^4.^0^^~4~^~NC~^^^^^^^^^^~06/01/2002~
-~18179~^~320~^5.^0^^~4~^~NC~^^^^^^^^^^~06/01/2002~
-~18179~^~417~^34.^0^^~4~^~FLA~^^^^^^^^^^~03/01/1998~
-~18179~^~431~^26.^0^^~4~^~NC~^^^^^^^^^^~05/01/2000~
-~18179~^~432~^8.^0^^~4~^^^^^^^^^^^~08/01/1992~
-~18179~^~435~^52.^0^^~4~^~NC~^^^^^^^^^^~01/01/2001~
-~18179~^~601~^5.^0^^~4~^~FLA~^^^^^^^^^^~12/01/1997~
-~18180~^~208~^462.^0^^~4~^~NC~^^^^^^^^^^~08/01/1992~
-~18180~^~268~^1933.^0^^~4~^^^^^^^^^^^
-~18180~^~301~^25.^13^4.^~1~^^^^^^^^^^^~08/01/1992~
-~18180~^~304~^48.^1^^~1~^^^^^^^^^^^~08/01/1992~
-~18180~^~305~^163.^3^13.^~1~^^^^^^^^^^^~08/01/1992~
-~18180~^~306~^183.^9^9.^~1~^^^^^^^^^^^~08/01/1992~
-~18180~^~307~^473.^9^33.^~1~^^^^^^^^^^^~08/01/1992~
-~18180~^~318~^28.^0^^~4~^~FLA~^^^^^^^^^^~11/01/1997~
-~18180~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2002~
-~18180~^~320~^1.^0^^~4~^~NC~^^^^^^^^^^~06/01/2002~
-~18180~^~417~^50.^0^^~4~^~FLA~^^^^^^^^^^~11/01/1997~
-~18180~^~431~^39.^0^^~4~^~NC~^^^^^^^^^^~05/01/2000~
-~18180~^~432~^11.^0^^~4~^^^^^^^^^^^~08/01/1992~
-~18180~^~435~^77.^0^^~4~^~NC~^^^^^^^^^^~01/01/2001~
-~18180~^~601~^0.^0^^~1~^^^^^^^^^^^~08/01/1992~
-~18182~^~208~^424.^0^^~4~^~NC~^^^^^^^^^^~08/01/1992~
-~18182~^~268~^1774.^0^^~4~^^^^^^^^^^^
-~18182~^~301~^31.^26^1.^~1~^^^^^^^^^^^~08/01/1992~
-~18182~^~304~^28.^17^1.^~1~^^^^^^^^^^^~08/01/1992~
-~18182~^~305~^104.^18^3.^~1~^^^^^^^^^^^~08/01/1992~
-~18182~^~306~^147.^18^15.^~1~^^^^^^^^^^^~08/01/1992~
-~18182~^~307~^294.^30^12.^~1~^^^^^^^^^^^~08/01/1992~
-~18182~^~318~^70.^6^9.^~1~^^^^^^^^^^^~08/01/1992~
-~18182~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2002~
-~18182~^~320~^4.^0^^~4~^~NC~^^^^^^^^^^~06/01/2002~
-~18182~^~417~^35.^0^^~4~^~FLA~^^^^^^^^^^~11/01/1997~
-~18182~^~431~^26.^0^^~4~^~NC~^^^^^^^^^^~05/01/2000~
-~18182~^~432~^9.^0^^~4~^^^^^^^^^^^~08/01/1992~
-~18182~^~435~^53.^0^^~4~^~NC~^^^^^^^^^^~01/01/2001~
-~18182~^~601~^24.^15^1.^~1~^^^^^^^^^^^~08/01/1992~
-~18183~^~208~^471.^0^^~4~^^^^^^^^^^^~08/01/1992~
-~18183~^~268~^1971.^0^^~4~^^^^^^^^^^^
-~18183~^~301~^35.^0^^~4~^^^^^^^^^^^~08/01/1992~
-~18183~^~304~^32.^0^^~4~^^^^^^^^^^^~08/01/1992~
-~18183~^~305~^116.^0^^~4~^^^^^^^^^^^~08/01/1992~
-~18183~^~306~^163.^0^^~4~^^^^^^^^^^^~08/01/1992~
-~18183~^~307~^327.^0^^~4~^^^^^^^^^^^~08/01/1992~
-~18183~^~318~^70.^0^^~4~^^^^^^^^^^^~08/01/1992~
-~18183~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2002~
-~18183~^~320~^4.^0^^~4~^~NC~^^^^^^^^^^~06/01/2002~
-~18183~^~417~^27.^0^^~4~^~RP~^^^^^^^^^^~12/01/1998~
-~18183~^~431~^20.^0^^~4~^~NC~^^^^^^^^^^~05/01/2000~
-~18183~^~432~^7.^0^^~4~^^^^^^^^^^^~08/01/1992~
-~18183~^~435~^41.^0^^~4~^~NC~^^^^^^^^^^~01/01/2001~
-~18183~^~601~^26.^0^^~4~^^^^^^^^^^^~08/01/1992~
-~18184~^~208~^441.^0^^~4~^~NC~^^^^^^^^^^~01/01/2017~
-~18184~^~268~^1846.^0^^~4~^~NC~^^^^^^^^^^~01/01/2017~
-~18184~^~301~^28.^14^0.^~1~^~A~^^^1^25.^36.^13^25.^30.^~2, 3~^~01/01/2017~
-~18184~^~304~^34.^14^1.^~1~^~A~^^^1^24.^40.^13^31.^36.^~2, 3~^~01/01/2017~
-~18184~^~305~^114.^14^2.^~1~^~A~^^^1^89.^135.^13^107.^120.^~2, 3~^~01/01/2017~
-~18184~^~306~^230.^14^10.^~1~^~A~^^^1^175.^279.^13^207.^252.^~2, 3~^~01/01/2017~
-~18184~^~307~^322.^14^7.^~1~^~A~^^^1^284.^370.^13^305.^338.^~2, 3~^~01/01/2017~
-~18184~^~417~^35.^8^4.^~1~^~A~^^^1^18.^56.^7^25.^44.^~2, 3~^~01/01/2017~
-~18184~^~432~^35.^8^4.^~1~^~A~^^^1^18.^56.^7^25.^44.^^~01/01/2017~
-~18185~^~208~^473.^0^^~4~^~NC~^^^^^^^^^^~05/01/2014~
-~18185~^~262~^0.^0^^~4~^~FLC~^^^^^^^^^^~03/01/2003~
-~18185~^~263~^0.^0^^~4~^~FLC~^^^^^^^^^^~03/01/2003~
-~18185~^~268~^1978.^0^^~4~^~NC~^^^^^^^^^^~05/01/2014~
-~18185~^~301~^41.^5^8.^~1~^~A~^^^1^25.^59.^2^5.^75.^~2, 3~^~05/01/2014~
-~18185~^~304~^44.^5^3.^~1~^~A~^^^1^39.^51.^2^28.^58.^~2, 3~^~05/01/2014~
-~18185~^~305~^156.^5^47.^~1~^~A~^^^1^104.^257.^2^-48.^360.^~2, 3~^~05/01/2014~
-~18185~^~306~^202.^5^12.^~1~^~A~^^^1^178.^248.^2^149.^255.^~2, 3~^~05/01/2014~
-~18185~^~307~^463.^5^32.^~1~^~A~^^^1^265.^520.^2^322.^603.^~2, 3~^~05/01/2014~
-~18185~^~318~^32.^0^^~4~^~NC~^^^^^^^^^^~05/01/2014~
-~18185~^~319~^9.^1^^~1~^~A~^^^^^^^^^^~05/01/2014~
-~18185~^~320~^9.^0^^~1~^~AS~^^^^^^^^^^~05/01/2014~
-~18185~^~321~^1.^0^^~4~^~FLC~^^^^^^^^^^~02/01/2003~
-~18185~^~322~^0.^0^^~4~^~FLC~^^^^^^^^^^~02/01/2003~
-~18185~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~
-~18185~^~334~^0.^0^^~4~^~FLC~^^^^^^^^^^~02/01/2003~
-~18185~^~337~^0.^0^^~4~^~FLC~^^^^^^^^^^~02/01/2003~
-~18185~^~338~^14.^0^^~4~^~FLC~^^^^^^^^^^~02/01/2003~
-~18185~^~417~^57.^3^0.^~1~^~A~^^^1^56.^82.^1^54.^59.^~2, 3~^~05/01/2014~
-~18185~^~431~^30.^0^^~4~^~NC~^^^^^^^^^^~05/01/2014~
-~18185~^~432~^27.^0^^~4~^~NC~^^^^^^^^^^~05/01/2014~
-~18185~^~435~^78.^0^^~4~^~NC~^^^^^^^^^^~05/01/2014~
-~18185~^~601~^27.^1^^~1~^~A~^^^^^^^^^^~05/01/2014~
-~18186~^~208~^457.^0^^~4~^~NC~^^^^^^^^^^~08/01/1992~
-~18186~^~268~^1912.^0^^~4~^^^^^^^^^^^
-~18186~^~301~^12.^2^^~1~^^^^^^^^^^^~08/01/1992~
-~18186~^~304~^32.^2^^~1~^^^^^^^^^^^~08/01/1992~
-~18186~^~305~^87.^2^^~1~^^^^^^^^^^^~08/01/1992~
-~18186~^~306~^107.^2^^~1~^^^^^^^^^^^~08/01/1992~
-~18186~^~307~^336.^2^^~1~^^^^^^^^^^^~08/01/1992~
-~18186~^~318~^0.^0^^~1~^^^^^^^^^^^~08/01/1992~
-~18186~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2002~
-~18186~^~320~^0.^0^^~4~^~NC~^^^^^^^^^^~06/01/2002~
-~18186~^~417~^67.^0^^~4~^~FLA~^^^^^^^^^^~03/01/1998~
-~18186~^~431~^62.^0^^~4~^~NC~^^^^^^^^^^~05/01/2000~
-~18186~^~432~^5.^8^0.^~1~^^^^^^^^^^^~08/01/1992~
-~18186~^~435~^110.^0^^~4~^~NC~^^^^^^^^^^~01/01/2001~
-~18186~^~601~^0.^0^^~1~^^^^^^^^^^^~08/01/1992~
-~18187~^~208~^458.^0^^~4~^~NC~^^^^^^^^^^~08/01/1992~
-~18187~^~268~^1916.^0^^~4~^^^^^^^^^^^
-~18187~^~301~^101.^34^8.^~1~^^^^^^^^^^^~08/01/1992~
-~18187~^~304~^37.^22^1.^~1~^^^^^^^^^^^~08/01/1992~
-~18187~^~305~^241.^23^7.^~1~^^^^^^^^^^^~08/01/1992~
-~18187~^~306~^308.^26^31.^~1~^^^^^^^^^^^~08/01/1992~
-~18187~^~307~^397.^38^32.^~1~^^^^^^^^^^^~08/01/1992~
-~18187~^~318~^47.^1^^~1~^^^^^^^^^^^~08/01/1992~
-~18187~^~319~^14.^0^^~4~^~NC~^^^^^^^^^^~06/01/2002~
-~18187~^~320~^14.^0^^~4~^~NC~^^^^^^^^^^~06/01/2002~
-~18187~^~417~^57.^0^^~4~^~FLA~^^^^^^^^^^~11/01/1997~
-~18187~^~431~^45.^0^^~4~^~NC~^^^^^^^^^^~05/01/2000~
-~18187~^~432~^12.^0^^~4~^^^^^^^^^^^~08/01/1992~
-~18187~^~435~^89.^0^^~4~^~NC~^^^^^^^^^^~01/01/2001~
-~18187~^~601~^27.^17^2.^~1~^^^^^^^^^^^~08/01/1992~
-~18188~^~208~^503.^0^^~4~^^^^^^^^^^^~08/01/1992~
-~18188~^~268~^2105.^0^^~4~^^^^^^^^^^^
-~18188~^~301~^111.^0^^~4~^^^^^^^^^^^~08/01/1992~
-~18188~^~304~^41.^0^^~4~^^^^^^^^^^^~08/01/1992~
-~18188~^~305~^264.^0^^~4~^^^^^^^^^^^~08/01/1992~
-~18188~^~306~^338.^0^^~4~^^^^^^^^^^^~08/01/1992~
-~18188~^~307~^436.^0^^~4~^^^^^^^^^^^~08/01/1992~
-~18188~^~318~^46.^0^^~4~^^^^^^^^^^^~08/01/1992~
-~18188~^~319~^14.^0^^~4~^~NC~^^^^^^^^^^~06/01/2002~
-~18188~^~320~^14.^0^^~4~^~NC~^^^^^^^^^^~06/01/2002~
-~18188~^~417~^44.^0^^~4~^~RP~^^^^^^^^^^~12/01/1998~
-~18188~^~431~^35.^0^^~4~^~NC~^^^^^^^^^^~05/01/2000~
-~18188~^~432~^9.^0^^~4~^^^^^^^^^^^~08/01/1992~
-~18188~^~435~^69.^0^^~4~^~NC~^^^^^^^^^^~01/01/2001~
-~18188~^~601~^30.^0^^~4~^^^^^^^^^^^~08/01/1992~
-~18189~^~208~^475.^0^^~4~^~NC~^^^^^^^^^^~08/01/1992~
-~18189~^~268~^1987.^0^^~4~^^^^^^^^^^^
-~18189~^~301~^39.^0^^~1~^^^^^^^^^^^~08/01/1992~
-~18189~^~304~^39.^0^^~1~^^^^^^^^^^^~08/01/1992~
-~18189~^~305~^116.^0^^~1~^^^^^^^^^^^~08/01/1992~
-~18189~^~306~^231.^0^^~1~^^^^^^^^^^^~08/01/1992~
-~18189~^~307~^518.^0^^~1~^^^^^^^^^^^~08/01/1992~
-~18189~^~318~^647.^0^^~4~^~NC~^^^^^^^^^^~04/01/2002~
-~18189~^~319~^125.^0^^~4~^^^^^^^^^^^~04/01/2002~
-~18189~^~320~^137.^0^^~4~^~NC~^^^^^^^^^^~04/01/2002~
-~18189~^~321~^138.^0^^~4~^~RK~^^^^^^^^^^~04/01/2002~
-~18189~^~417~^55.^0^^~4~^~RK~^^^^^^^^^^~12/01/1997~
-~18189~^~431~^37.^0^^~4~^~NC~^^^^^^^^^^~05/01/2000~
-~18189~^~432~^18.^0^^~1~^^^^^^^^^^^~08/01/1992~
-~18189~^~435~^81.^0^^~4~^~NC~^^^^^^^^^^~04/01/2002~
-~18189~^~601~^31.^0^^~1~^^^^^^^^^^^~08/01/1992~
-~18190~^~208~^478.^0^^~4~^~NC~^^^^^^^^^^~08/01/1992~
-~18190~^~262~^0.^0^^~4~^~FLC~^^^^^^^^^^~03/01/2003~
-~18190~^~263~^0.^0^^~4~^~FLC~^^^^^^^^^^~03/01/2003~
-~18190~^~268~^2000.^0^^~4~^^^^^^^^^^^~05/01/2005~
-~18190~^~301~^53.^19^1.^~1~^^^^^^^^^^^~08/01/1992~
-~18190~^~304~^49.^19^0.^~1~^^^^^^^^^^^~08/01/1992~
-~18190~^~305~^188.^18^6.^~1~^^^^^^^^^^^~08/01/1992~
-~18190~^~306~^192.^19^4.^~1~^^^^^^^^^^^~08/01/1992~
-~18190~^~307~^368.^19^8.^~1~^^^^^^^^^^^~08/01/1992~
-~18190~^~318~^4.^0^^~4~^~NC~^^^^^^^^^^~03/01/2003~
-~18190~^~319~^1.^0^^~4~^~FLC~^^^^^^^^^^~03/01/2003~
-~18190~^~320~^1.^0^^~4~^~NC~^^^^^^^^^^~03/01/2003~
-~18190~^~321~^0.^0^^~4~^~FLC~^^^^^^^^^^~02/01/2003~
-~18190~^~322~^0.^0^^~4~^~FLC~^^^^^^^^^^~02/01/2003~
-~18190~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~
-~18190~^~334~^0.^0^^~4~^~FLC~^^^^^^^^^^~02/01/2003~
-~18190~^~337~^0.^0^^~4~^~FLC~^^^^^^^^^^~02/01/2003~
-~18190~^~338~^7.^0^^~4~^~FLC~^^^^^^^^^^~02/01/2003~
-~18190~^~417~^61.^0^^~4~^~FLC~^^^^^^^^^^~03/01/2003~
-~18190~^~431~^46.^0^^~4~^^^^^^^^^^^~03/01/2003~
-~18190~^~432~^15.^0^^~4~^^^^^^^^^^^~08/01/1992~
-~18190~^~435~^93.^0^^~4~^~NC~^^^^^^^^^^~03/01/2007~
-~18190~^~601~^0.^3^0.^~1~^^^^^^^^^^^~08/01/1992~
-~18191~^~208~^401.^0^^~4~^~NC~^^^^^^^^^^~08/01/1992~
-~18191~^~262~^0.^0^^~4~^~FLC~^^^^^^^^^^~03/01/2003~
-~18191~^~263~^0.^0^^~4~^~FLC~^^^^^^^^^^~03/01/2003~
-~18191~^~268~^1678.^0^^~4~^^^^^^^^^^^~05/01/2005~
-~18191~^~301~^46.^4^9.^~1~^^^^^^^^^^^~08/01/1992~
-~18191~^~304~^21.^3^0.^~1~^^^^^^^^^^^~08/01/1992~
-~18191~^~305~^83.^3^14.^~1~^^^^^^^^^^^~08/01/1992~
-~18191~^~306~^140.^3^22.^~1~^^^^^^^^^^^~08/01/1992~
-~18191~^~307~^418.^0^^~8~^~LC~^^^^^^^^^^~08/01/2012~
-~18191~^~318~^5.^0^^~4~^~FLA~^^^^^^^^^^~07/01/2012~
-~18191~^~319~^2.^0^^~4~^~NR~^^^^^^^^^^~08/01/2012~
-~18191~^~320~^2.^0^^~4~^~NR~^^^^^^^^^^~08/01/2012~
-~18191~^~321~^1.^0^^~4~^~FLC~^^^^^^^^^^~02/01/2003~
-~18191~^~322~^0.^0^^~4~^~FLC~^^^^^^^^^^~02/01/2003~
-~18191~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~
-~18191~^~334~^1.^0^^~4~^~FLC~^^^^^^^^^^~02/01/2003~
-~18191~^~337~^0.^0^^~4~^~FLC~^^^^^^^^^^~02/01/2003~
-~18191~^~338~^37.^0^^~4~^~FLC~^^^^^^^^^^~02/01/2003~
-~18191~^~417~^32.^0^^~4~^~FLC~^^^^^^^^^^~03/01/2003~
-~18191~^~431~^23.^0^^~4~^~NR~^^^^^^^^^^~03/01/2003~
-~18191~^~432~^9.^0^^~4~^~NC~^^^^^^^^^^~08/01/1992~
-~18191~^~435~^48.^0^^~4~^~NC~^^^^^^^^^^~03/01/2007~
-~18191~^~601~^2.^1^^~1~^^^^^^^^^^^~08/01/1992~
-~18192~^~208~^514.^0^^~4~^~NC~^^^^^^^^^^~05/01/2014~
-~18192~^~262~^0.^0^^~4~^~FLC~^^^^^^^^^^~03/01/2003~
-~18192~^~263~^0.^0^^~4~^~FLC~^^^^^^^^^^~03/01/2003~
-~18192~^~268~^2151.^0^^~4~^~NC~^^^^^^^^^^~05/01/2014~
-~18192~^~301~^13.^12^0.^~1~^~A~^^^1^11.^16.^8^12.^13.^~2, 3~^~05/01/2014~
-~18192~^~304~^14.^12^0.^~1~^~A~^^^1^13.^15.^10^14.^14.^~2, 3~^~05/01/2014~
-~18192~^~305~^66.^12^0.^~1~^~A~^^^1^64.^69.^8^65.^66.^~2, 3~^~05/01/2014~
-~18192~^~306~^88.^12^1.^~1~^~A~^^^1^80.^98.^10^85.^90.^~2, 3~^~05/01/2014~
-~18192~^~307~^353.^12^2.^~1~^~A~^^^1^272.^417.^10^348.^358.^~2, 3~^~05/01/2014~
-~18192~^~318~^1.^0^^~4~^~NC~^^^^^^^^^^~05/01/2014~
-~18192~^~319~^0.^0^^~4~^~FLC~^^^^^^^^^^~05/01/2014~
-~18192~^~320~^0.^0^^~4~^~FLC~^^^^^^^^^^~05/01/2014~
-~18192~^~321~^1.^0^^~4~^~FLC~^^^^^^^^^^~05/01/2014~
-~18192~^~322~^0.^0^^~4~^~FLC~^^^^^^^^^^~05/01/2014~
-~18192~^~324~^0.^0^^~4~^~FLC~^^^^^^^^^^~05/01/2014~
-~18192~^~334~^0.^0^^~4~^~FLC~^^^^^^^^^^~05/01/2014~
-~18192~^~337~^0.^0^^~4~^~FLC~^^^^^^^^^^~02/01/2003~
-~18192~^~338~^29.^0^^~4~^~FLC~^^^^^^^^^^~05/01/2014~
-~18192~^~417~^81.^6^8.^~1~^~A~^^^1^54.^106.^2^48.^114.^~2, 3~^~05/01/2014~
-~18192~^~431~^61.^0^^~4~^~NR~^^^^^^^^^^~03/01/2003~
-~18192~^~432~^20.^0^^~4~^~NC~^^^^^^^^^^~05/01/2014~
-~18192~^~435~^124.^0^^~4~^~NC~^^^^^^^^^^~05/01/2014~
-~18192~^~601~^0.^0^^~4~^~FLC~^^^^^^^^^^~05/01/2014~
-~18193~^~208~^542.^0^^~4~^~NC~^^^^^^^^^^~08/01/1992~
-~18193~^~268~^2268.^0^^~4~^^^^^^^^^^^
-~18193~^~301~^30.^23^1.^~1~^^^^^^^^^^^~08/01/1992~
-~18193~^~304~^18.^22^0.^~1~^^^^^^^^^^^~08/01/1992~
-~18193~^~305~^85.^23^1.^~1~^^^^^^^^^^^~08/01/1992~
-~18193~^~306~^73.^23^2.^~1~^^^^^^^^^^^~08/01/1992~
-~18193~^~307~^281.^23^5.^~1~^^^^^^^^^^^~08/01/1992~
-~18193~^~318~^3.^0^^~4~^~FLA~^^^^^^^^^^~11/01/1997~
-~18193~^~319~^1.^0^^~4~^~NC~^^^^^^^^^^~06/01/2002~
-~18193~^~320~^1.^0^^~4~^~NC~^^^^^^^^^^~06/01/2002~
-~18193~^~417~^63.^0^^~4~^~FLA~^^^^^^^^^^~03/01/1998~
-~18193~^~431~^55.^0^^~4~^~NC~^^^^^^^^^^~05/01/2000~
-~18193~^~432~^8.^8^0.^~1~^^^^^^^^^^^~08/01/1992~
-~18193~^~435~^102.^0^^~4~^~NC~^^^^^^^^^^~01/01/2001~
-~18193~^~601~^33.^1^^~1~^^^^^^^^^^^~08/01/1992~
-~18196~^~208~^426.^0^^~4~^^^^^^^^^^^~08/01/1992~
-~18196~^~268~^1782.^0^^~4~^^^^^^^^^^^~02/01/2007~
-~18196~^~301~^12.^1^^~1~^^^^^^^^^^^~08/01/1992~
-~18196~^~304~^4.^1^^~1~^^^^^^^^^^^~08/01/1992~
-~18196~^~305~^57.^1^^~1~^^^^^^^^^^^~08/01/1992~
-~18196~^~306~^335.^1^^~1~^^^^^^^^^^^~08/01/1992~
-~18196~^~307~^83.^1^^~1~^^^^^^^^^^^~08/01/1992~
-~18196~^~318~^0.^1^^~1~^^^^^^^^^^^~08/01/1992~
-~18196~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2002~
-~18196~^~320~^0.^0^^~4~^~NC~^^^^^^^^^^~06/01/2002~
-~18196~^~417~^48.^0^^~4~^~FLA~^^^^^^^^^^~11/01/1997~
-~18196~^~431~^45.^0^^~4~^~NC~^^^^^^^^^^~05/01/2000~
-~18196~^~432~^3.^1^^~1~^^^^^^^^^^^~08/01/1992~
-~18196~^~435~^80.^0^^~4~^~NC~^^^^^^^^^^~02/01/2007~
-~18196~^~601~^0.^1^^~1~^^^^^^^^^^^~08/01/1992~
-~18198~^~208~^450.^0^^~4~^^^^^^^^^^^~08/01/1992~
-~18198~^~262~^8.^0^^~4~^~FLA~^^^^^^^^^^~11/01/1997~
-~18198~^~263~^61.^0^^~4~^~FLA~^^^^^^^^^^~11/01/1997~
-~18198~^~268~^1883.^0^^~4~^^^^^^^^^^^~05/01/2005~
-~18198~^~301~^46.^0^^~4~^~FLA~^^^^^^^^^^~11/01/1997~
-~18198~^~304~^21.^0^^~4~^~FLA~^^^^^^^^^^~11/01/1997~
-~18198~^~305~^109.^0^^~4~^~FLA~^^^^^^^^^^~11/01/1997~
-~18198~^~306~^199.^1^^~1~^^^^^^^^^^^~08/01/1992~
-~18198~^~307~^244.^0^^~8~^~LC~^^^^^^^^^^~08/01/2012~
-~18198~^~318~^3.^0^^~4~^~FLA~^^^^^^^^^^~03/01/2003~
-~18198~^~319~^1.^0^^~4~^~FLC~^^^^^^^^^^~03/01/2003~
-~18198~^~320~^1.^0^^~4~^~NC~^^^^^^^^^^~03/01/2003~
-~18198~^~321~^0.^0^^~4~^~FLC~^^^^^^^^^^~03/01/2003~
-~18198~^~322~^0.^0^^~4~^~FLC~^^^^^^^^^^~03/01/2003~
-~18198~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~
-~18198~^~334~^0.^0^^~4~^~FLC~^^^^^^^^^^~03/01/2003~
-~18198~^~337~^0.^0^^~4~^~FLC~^^^^^^^^^^~03/01/2003~
-~18198~^~338~^3.^0^^~4~^~FLC~^^^^^^^^^^~03/01/2003~
-~18198~^~417~^54.^0^^~4~^~FLC~^^^^^^^^^^~03/01/2003~
-~18198~^~431~^48.^0^^~4~^~NR~^^^^^^^^^^~03/01/2003~
-~18198~^~432~^6.^0^^~4~^~NC~^^^^^^^^^^~08/01/1992~
-~18198~^~435~^87.^0^^~4~^~NC~^^^^^^^^^^~07/01/2012~
-~18198~^~601~^0.^0^^~4~^^^^^^^^^^^~08/01/1992~
-~18199~^~208~^461.^0^^~4~^~NC~^^^^^^^^^^~08/01/1992~
-~18199~^~262~^4.^0^^~4~^~FLC~^^^^^^^^^^~07/01/2013~
-~18199~^~263~^96.^0^^~4~^~FLC~^^^^^^^^^^~07/01/2013~
-~18199~^~268~^1929.^0^^~4~^~NC~^^^^^^^^^^~05/01/2005~
-~18199~^~301~^98.^0^^~4~^~FLA~^^^^^^^^^^~11/01/1997~
-~18199~^~304~^26.^0^^~4~^~FLA~^^^^^^^^^^~11/01/1997~
-~18199~^~305~^200.^0^^~4~^~FLA~^^^^^^^^^^~11/01/1997~
-~18199~^~306~^295.^1^^~1~^^^^^^^^^^^~08/01/1992~
-~18199~^~307~^342.^0^^~4~^~NR~^^^^^^^^^^~07/01/2013~
-~18199~^~318~^4.^0^^~4~^~NC~^^^^^^^^^^~07/01/2013~
-~18199~^~319~^1.^0^^~4~^~FLC~^^^^^^^^^^~03/01/2003~
-~18199~^~320~^1.^0^^~4~^~FLC~^^^^^^^^^^~03/01/2003~
-~18199~^~321~^0.^0^^~4~^~FLC~^^^^^^^^^^~03/01/2003~
-~18199~^~322~^0.^0^^~4~^~FLC~^^^^^^^^^^~03/01/2003~
-~18199~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~
-~18199~^~334~^0.^0^^~4~^~FLC~^^^^^^^^^^~03/01/2003~
-~18199~^~337~^0.^0^^~4~^~FLC~^^^^^^^^^^~03/01/2003~
-~18199~^~338~^3.^0^^~4~^~FLC~^^^^^^^^^^~07/01/2013~
-~18199~^~417~^62.^0^^~4~^~FLA~^^^^^^^^^^~07/01/2013~
-~18199~^~431~^52.^0^^~4~^~NC~^^^^^^^^^^~07/01/2013~
-~18199~^~432~^10.^0^^~4~^~NC~^^^^^^^^^^~08/01/1992~
-~18199~^~435~^98.^0^^~4~^~NC~^^^^^^^^^^~07/01/2013~
-~18199~^~601~^0.^0^^~4~^^^^^^^^^^^~08/01/1992~
-~18200~^~208~^449.^0^^~4~^~NC~^^^^^^^^^^~08/01/1992~
-~18200~^~262~^0.^0^^~4~^~FLC~^^^^^^^^^^~03/01/2003~
-~18200~^~263~^0.^0^^~4~^~FLC~^^^^^^^^^^~03/01/2003~
-~18200~^~268~^1879.^0^^~4~^^^^^^^^^^^~05/01/2005~
-~18200~^~301~^54.^0^^~4~^~FLA~^^^^^^^^^^~11/01/1997~
-~18200~^~304~^17.^0^^~4~^~FLA~^^^^^^^^^^~11/01/1997~
-~18200~^~305~^122.^0^^~4~^~FLA~^^^^^^^^^^~11/01/1997~
-~18200~^~306~^175.^1^^~1~^^^^^^^^^^^~08/01/1992~
-~18200~^~307~^273.^0^^~8~^~LC~^^^^^^^^^^~08/01/2012~
-~18200~^~318~^8.^0^^~4~^~FLA~^^^^^^^^^^~07/01/2012~
-~18200~^~319~^0.^0^^~4~^~FLC~^^^^^^^^^^~03/01/2003~
-~18200~^~320~^1.^0^^~4~^~NC~^^^^^^^^^^~03/01/2003~
-~18200~^~321~^3.^0^^~4~^~FLC~^^^^^^^^^^~03/01/2003~
-~18200~^~322~^0.^0^^~4~^~FLC~^^^^^^^^^^~03/01/2003~
-~18200~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~
-~18200~^~334~^18.^0^^~4~^~FLC~^^^^^^^^^^~03/01/2003~
-~18200~^~337~^2.^0^^~4~^~FLC~^^^^^^^^^^~03/01/2003~
-~18200~^~338~^49.^0^^~4~^~FLC~^^^^^^^^^^~03/01/2003~
-~18200~^~417~^46.^0^^~4~^~FLC~^^^^^^^^^^~03/01/2003~
-~18200~^~431~^39.^0^^~4~^~NR~^^^^^^^^^^~03/01/2003~
-~18200~^~432~^7.^0^^~4~^~NC~^^^^^^^^^^~07/01/2012~
-~18200~^~435~^74.^0^^~4~^~NC~^^^^^^^^^^~02/01/2007~
-~18200~^~601~^0.^0^^~1~^^^^^^^^^^^~08/01/1992~
-~18201~^~208~^535.^0^^~4~^~NC~^^^^^^^^^^~08/01/1992~
-~18201~^~268~^2238.^0^^~4~^^^^^^^^^^^
-~18201~^~301~^43.^0^^~4~^~FLA~^^^^^^^^^^~11/01/1997~
-~18201~^~304~^51.^0^^~4~^~FLA~^^^^^^^^^^~11/01/1997~
-~18201~^~305~^154.^0^^~4~^~FLA~^^^^^^^^^^~11/01/1997~
-~18201~^~306~^294.^1^^~1~^^^^^^^^^^^~08/01/1992~
-~18201~^~307~^412.^1^^~1~^^^^^^^^^^^~08/01/1992~
-~18201~^~318~^0.^0^^~4~^^^^^^^^^^^~08/01/1992~
-~18201~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2002~
-~18201~^~320~^0.^0^^~4~^~NC~^^^^^^^^^^~06/01/2002~
-~18201~^~417~^54.^0^^~4~^~FLA~^^^^^^^^^^~03/01/1998~
-~18201~^~431~^21.^0^^~4~^~NC~^^^^^^^^^^~05/01/2000~
-~18201~^~432~^33.^0^^~4~^^^^^^^^^^^~08/01/1992~
-~18201~^~435~^69.^0^^~4~^~NC~^^^^^^^^^^~01/01/2001~
-~18201~^~601~^0.^0^^~4~^^^^^^^^^^^~08/01/1992~
-~18202~^~208~^531.^0^^~4~^~NC~^^^^^^^^^^~06/01/2015~
-~18202~^~262~^0.^0^^~4~^~BFNN~^~18213~^^^^^^^^^~06/01/2015~
-~18202~^~263~^0.^0^^~4~^~BFNN~^~18213~^^^^^^^^^~06/01/2015~
-~18202~^~268~^2221.^0^^~4~^~NC~^^^^^^^^^^~06/01/2015~
-~18202~^~301~^0.^0^^~8~^~LC~^^^^^^^^^^~06/01/2015~
-~18202~^~304~^7.^0^^~9~^~MC~^^^^^^^^^^~06/01/2015~
-~18202~^~305~^40.^0^^~9~^~MC~^^^^^^^^^^~06/01/2015~
-~18202~^~306~^57.^0^^~9~^~MC~^^^^^^^^^^~06/01/2015~
-~18202~^~307~^71.^0^^~8~^~LC~^^^^^^^^^^~06/01/2015~
-~18202~^~318~^1.^0^^~4~^~NC~^^^^^^^^^^~06/01/2015~
-~18202~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2002~
-~18202~^~320~^0.^0^^~4~^~BFFN~^~18209~^^^^^^^^^~06/01/2015~
-~18202~^~321~^0.^0^^~4~^~BFFN~^~18209~^^^^^^^^^~06/01/2015~
-~18202~^~322~^0.^0^^~4~^~BFFN~^~18209~^^^^^^^^^~06/01/2015~
-~18202~^~324~^0.^0^^~4~^~BFFN~^~18209~^^^^^^^^^~06/01/2015~
-~18202~^~334~^0.^0^^~4~^~BFFN~^~18209~^^^^^^^^^~06/01/2015~
-~18202~^~337~^0.^0^^~4~^~BFFN~^~18209~^^^^^^^^^~06/01/2015~
-~18202~^~338~^31.^0^^~4~^~BFFN~^~18209~^^^^^^^^^~06/01/2015~
-~18202~^~417~^42.^0^^~4~^~FLA~^^^^^^^^^^~03/01/1998~
-~18202~^~431~^38.^0^^~4~^~NC~^^^^^^^^^^~05/01/2000~
-~18202~^~432~^4.^3^0.^~1~^^^^^^^^^^^~08/01/1992~
-~18202~^~435~^69.^0^^~4~^~NC~^^^^^^^^^^~01/01/2001~
-~18202~^~601~^0.^3^0.^~1~^^^^^^^^^^^~08/01/1992~
-~18204~^~208~^464.^0^^~4~^~NC~^^^^^^^^^^~05/01/2014~
-~18204~^~262~^0.^0^^~4~^~FLC~^^^^^^^^^^~03/01/2003~
-~18204~^~263~^0.^0^^~4~^~FLC~^^^^^^^^^^~03/01/2003~
-~18204~^~268~^1941.^0^^~4~^~NC~^^^^^^^^^^~05/01/2014~
-~18204~^~301~^35.^9^9.^~1~^~A~^^^1^15.^71.^4^9.^60.^~2, 3~^~05/01/2014~
-~18204~^~304~^13.^9^0.^~1~^~A~^^^1^10.^15.^4^11.^13.^~2, 3~^~05/01/2014~
-~18204~^~305~^99.^9^14.^~1~^~A~^^^1^54.^158.^4^59.^137.^~2, 3~^~05/01/2014~
-~18204~^~306~^87.^9^5.^~1~^~A~^^^1^70.^104.^4^73.^101.^~2, 3~^~05/01/2014~
-~18204~^~307~^385.^9^28.^~1~^~A~^^^1^213.^539.^4^306.^463.^~2, 3~^~05/01/2014~
-~18204~^~318~^27.^0^^~4~^~NC~^^^^^^^^^^~05/01/2014~
-~18204~^~319~^7.^1^^~1~^~A~^^^^^^^^^^~05/01/2014~
-~18204~^~320~^7.^0^^~4~^~NC~^^^^^^^^^^~05/01/2014~
-~18204~^~321~^1.^0^^~4~^~FLC~^^^^^^^^^^~03/01/2003~
-~18204~^~322~^0.^0^^~4~^~FLC~^^^^^^^^^^~03/01/2003~
-~18204~^~324~^0.^0^^~4~^~BFNN~^~18159~^^^^^^^^^~05/01/2014~
-~18204~^~334~^1.^0^^~4~^~FLC~^^^^^^^^^^~03/01/2003~
-~18204~^~337~^0.^0^^~4~^~FLC~^^^^^^^^^^~03/01/2003~
-~18204~^~338~^38.^0^^~4~^~FLC~^^^^^^^^^^~03/01/2003~
-~18204~^~417~^72.^6^10.^~1~^~A~^^^1^50.^105.^2^25.^117.^~2, 3~^~05/01/2014~
-~18204~^~431~^34.^0^^~4~^~NC~^^^^^^^^^^~05/01/2014~
-~18204~^~432~^38.^0^^~4~^~NC~^^^^^^^^^^~05/01/2014~
-~18204~^~435~^95.^0^^~4~^~NC~^^^^^^^^^^~05/01/2014~
-~18204~^~601~^12.^2^^~1~^~A~^^^1^1.^47.^^^^^~05/01/2014~
-~18205~^~208~^436.^2^^~9~^~MC~^^^1^428.^443.^1^^^^~04/01/2012~
-~18205~^~262~^0.^0^^~4~^~FLC~^^^^^^^^^^~03/01/2003~
-~18205~^~263~^0.^0^^~4~^~FLC~^^^^^^^^^^~03/01/2003~
-~18205~^~268~^1823.^0^^~9~^~MC~^^^^^^^^^^~04/01/2012~
-~18205~^~301~^8.^2^^~9~^~MC~^^^1^7.^8.^1^^^^~04/01/2012~
-~18205~^~304~^7.^11^0.^~1~^^^^^^^^^^^~08/01/1992~
-~18205~^~305~^169.^11^5.^~1~^^^^^^^^^^^~08/01/1992~
-~18205~^~306~^147.^7^66.^~1~^^^^^^^^^^^~08/01/1992~
-~18205~^~307~^328.^0^^~4~^~NR~^^^^^^^^^^~07/01/2015~
-~18205~^~318~^37.^1^^~1~^^^^^^^^^^^~04/01/2012~
-~18205~^~319~^11.^0^^~4~^~FLC~^^^^^^^^^^~03/01/2003~
-~18205~^~320~^11.^0^^~4~^~NC~^^^^^^^^^^~03/01/2003~
-~18205~^~321~^0.^0^^~4~^~FLC~^^^^^^^^^^~03/01/2003~
-~18205~^~322~^0.^0^^~4~^~FLC~^^^^^^^^^^~03/01/2003~
-~18205~^~334~^0.^0^^~4~^~FLC~^^^^^^^^^^~03/01/2003~
-~18205~^~337~^0.^0^^~4~^~FLC~^^^^^^^^^^~03/01/2003~
-~18205~^~338~^8.^0^^~4~^~FLC~^^^^^^^^^^~03/01/2003~
-~18205~^~417~^63.^0^^~4~^~FLC~^^^^^^^^^^~03/01/2003~
-~18205~^~432~^8.^0^^~4~^^^^^^^^^^^~08/01/1992~
-~18205~^~601~^11.^2^^~9~^~MC~^^^1^11.^12.^1^^^^~04/01/2012~
-~18206~^~208~^489.^0^^~4~^~NC~^^^^^^^^^^~07/01/2015~
-~18206~^~262~^0.^0^^~6~^~RPI~^^^^^^^^^^~03/01/2003~
-~18206~^~263~^0.^0^^~6~^~RPI~^^^^^^^^^^~03/01/2003~
-~18206~^~268~^2046.^0^^~4~^~NC~^^^^^^^^^^~07/01/2015~
-~18206~^~301~^90.^0^^~1~^^^^^^^^^^^~08/01/1992~
-~18206~^~304~^8.^0^^~1~^^^^^^^^^^^~08/01/1992~
-~18206~^~305~^187.^0^^~1~^^^^^^^^^^^~08/01/1992~
-~18206~^~306~^163.^0^^~1~^^^^^^^^^^^~08/01/1992~
-~18206~^~307~^362.^0^^~4~^~BFSN~^~18205~^^^^^^^^^~07/01/2015~
-~18206~^~318~^41.^0^^~4~^~NC~^^^^^^^^^^~07/01/2015~
-~18206~^~319~^12.^0^^~6~^~RPI~^^^^^^^^^^~03/01/2003~
-~18206~^~320~^12.^0^^~6~^~RPI~^^^^^^^^^^~07/01/2015~
-~18206~^~321~^0.^0^^~6~^~RPI~^^^^^^^^^^~03/01/2003~
-~18206~^~322~^0.^0^^~6~^~RPI~^^^^^^^^^^~03/01/2003~
-~18206~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~
-~18206~^~334~^0.^0^^~6~^~RPI~^^^^^^^^^^~03/01/2003~
-~18206~^~337~^0.^0^^~6~^~RPI~^^^^^^^^^^~03/01/2003~
-~18206~^~338~^9.^0^^~6~^~RPI~^^^^^^^^^^~03/01/2003~
-~18206~^~417~^70.^0^^~6~^~RPI~^^^^^^^^^^~03/01/2003~
-~18206~^~431~^61.^0^^~6~^~RPI~^^^^^^^^^^~07/01/2015~
-~18206~^~432~^9.^0^^~6~^~RPI~^^^^^^^^^^~07/01/2015~
-~18206~^~435~^113.^0^^~4~^~NC~^^^^^^^^^^~07/01/2015~
-~18206~^~601~^32.^0^^~1~^^^^^^^^^^^~08/01/1992~
-~18209~^~208~^502.^0^^~4~^~NC~^^^^^^^^^^~06/01/2010~
-~18209~^~262~^9.^0^^~4~^~FLC~^^^^^^^^^^~06/01/2010~
-~18209~^~263~^77.^0^^~4~^~FLC~^^^^^^^^^^~06/01/2010~
-~18209~^~268~^2102.^0^^~4~^~NC~^^^^^^^^^^~06/01/2010~
-~18209~^~301~^27.^6^1.^~1~^~A~^^^1^22.^33.^5^22.^31.^~2, 3~^~06/01/2010~
-~18209~^~304~^16.^6^0.^~1~^~A~^^^1^14.^19.^5^13.^17.^~2, 3~^~06/01/2010~
-~18209~^~305~^72.^6^2.^~1~^~A~^^^1^65.^84.^5^64.^78.^~2, 3~^~06/01/2010~
-~18209~^~306~^117.^6^5.^~1~^~A~^^^1^102.^131.^5^102.^130.^~2, 3~^~06/01/2010~
-~18209~^~307~^103.^6^6.^~1~^~A~^^^1^94.^135.^5^86.^119.^~2, 3~^~06/01/2010~
-~18209~^~318~^1.^0^^~4~^~FLC~^^^^^^^^^^~06/01/2010~
-~18209~^~319~^0.^0^^~4~^~FLC~^^^^^^^^^^~06/01/2010~
-~18209~^~320~^0.^0^^~4~^~FLC~^^^^^^^^^^~06/01/2010~
-~18209~^~321~^0.^0^^~4~^~FLC~^^^^^^^^^^~06/01/2010~
-~18209~^~322~^0.^0^^~4~^~FLC~^^^^^^^^^^~06/01/2010~
-~18209~^~324~^0.^0^^~4~^~FLC~^^^^^^^^^^~06/01/2010~
-~18209~^~334~^0.^0^^~4~^~FLC~^^^^^^^^^^~06/01/2010~
-~18209~^~337~^0.^0^^~4~^~FLC~^^^^^^^^^^~06/01/2010~
-~18209~^~338~^25.^0^^~4~^~FLC~^^^^^^^^^^~06/01/2010~
-~18209~^~417~^77.^4^15.^~1~^^^^1^55.^122.^3^27.^125.^~2, 3~^~06/01/2010~
-~18209~^~431~^75.^4^15.^~1~^~A~^^^1^54.^121.^3^26.^124.^~2, 3~^~06/01/2010~
-~18209~^~432~^1.^4^0.^~1~^~AS~^^^1^1.^1.^^^^~1, 2, 3~^~06/01/2010~
-~18209~^~435~^129.^0^^~4~^~NC~^^^^^^^^^^~06/01/2010~
-~18209~^~601~^0.^0^^~4~^~FLC~^^^^^^^^^^~06/01/2010~
-~18209~^~636~^102.^0^^~4~^~FLC~^^^^^^^^^^~06/01/2010~
-~18210~^~208~^483.^0^^~4~^~NC~^^^^^^^^^^~08/01/1992~
-~18210~^~262~^0.^0^^~4~^~FLC~^^^^^^^^^^~03/01/2003~
-~18210~^~263~^0.^0^^~4~^~FLC~^^^^^^^^^^~03/01/2003~
-~18210~^~268~^2021.^0^^~4~^^^^^^^^^^^~05/01/2005~
-~18210~^~301~^27.^38^2.^~1~^^^^^^^^^^^~08/01/1992~
-~18210~^~304~^14.^31^0.^~1~^^^^^^^^^^^~08/01/1992~
-~18210~^~305~^75.^36^3.^~1~^^^^^^^^^^^~08/01/1992~
-~18210~^~306~^91.^33^6.^~1~^^^^^^^^^^^~08/01/1992~
-~18210~^~307~^388.^0^^~4~^~NR~^^^^^^^^^^~07/01/2017~
-~18210~^~318~^0.^0^^~4~^~NC~^^^^^^^^^^~03/01/2003~
-~18210~^~319~^0.^0^^~4~^~FLC~^^^^^^^^^^~03/01/2003~
-~18210~^~320~^0.^0^^~4~^~NC~^^^^^^^^^^~03/01/2003~
-~18210~^~321~^0.^0^^~4~^~FLC~^^^^^^^^^^~03/01/2003~
-~18210~^~322~^0.^0^^~4~^~FLC~^^^^^^^^^^~03/01/2003~
-~18210~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~
-~18210~^~334~^0.^0^^~4~^~FLC~^^^^^^^^^^~03/01/2003~
-~18210~^~337~^0.^0^^~4~^~FLC~^^^^^^^^^^~03/01/2003~
-~18210~^~338~^1.^0^^~4~^~FLC~^^^^^^^^^^~03/01/2003~
-~18210~^~417~^50.^0^^~4~^~FLC~^^^^^^^^^^~03/01/2003~
-~18210~^~431~^46.^0^^~4~^^^^^^^^^^^~03/01/2003~
-~18210~^~432~^4.^11^0.^~1~^^^^^^^^^^^~08/01/1992~
-~18210~^~435~^82.^0^^~4~^~NC~^^^^^^^^^^~03/01/2007~
-~18210~^~601~^0.^0^^~4~^^^^^^^^^^^~08/01/1992~
-~18211~^~208~^558.^0^^~4~^~NC~^^^^^^^^^^~08/01/1992~
-~18211~^~262~^0.^0^^~4~^~RA~^^^^^^^^^^~03/01/2003~
-~18211~^~263~^0.^0^^~4~^~RA~^^^^^^^^^^~03/01/2003~
-~18211~^~268~^2335.^0^^~4~^^^^^^^^^^^~03/01/2007~
-~18211~^~301~^10.^0^^~1~^^^^^^^^^^^~08/01/1992~
-~18211~^~304~^16.^0^^~1~^^^^^^^^^^^~08/01/1992~
-~18211~^~305~^60.^0^^~1~^^^^^^^^^^^~08/01/1992~
-~18211~^~306~^62.^0^^~1~^^^^^^^^^^^~08/01/1992~
-~18211~^~307~^253.^0^^~1~^^^^^^^^^^^~08/01/1992~
-~18211~^~318~^1.^0^^~4~^~NC~^^^^^^^^^^~03/01/2003~
-~18211~^~319~^0.^0^^~4~^~RA~^^^^^^^^^^~03/01/2003~
-~18211~^~320~^0.^0^^~4~^~NC~^^^^^^^^^^~03/01/2003~
-~18211~^~321~^0.^0^^~4~^~RA~^^^^^^^^^^~03/01/2003~
-~18211~^~322~^0.^0^^~4~^~RA~^^^^^^^^^^~03/01/2003~
-~18211~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~
-~18211~^~334~^0.^0^^~4~^~RA~^^^^^^^^^^~03/01/2003~
-~18211~^~337~^0.^0^^~4~^~RA~^^^^^^^^^^~03/01/2003~
-~18211~^~338~^39.^0^^~4~^~RA~^^^^^^^^^^~03/01/2003~
-~18211~^~417~^55.^0^^~4~^~RA~^^^^^^^^^^~03/01/2003~
-~18211~^~431~^46.^0^^~4~^^^^^^^^^^^~03/01/2003~
-~18211~^~432~^9.^0^^~1~^^^^^^^^^^^~08/01/1992~
-~18211~^~435~^87.^0^^~4~^~NC~^^^^^^^^^^~03/01/2007~
-~18211~^~601~^0.^0^^~1~^^^^^^^^^^^~08/01/1992~
-~18212~^~208~^441.^0^^~4~^~NC~^^^^^^^^^^~08/01/1992~
-~18212~^~262~^0.^0^^~4~^~FLA~^^^^^^^^^^~03/01/2003~
-~18212~^~263~^0.^0^^~4~^~FLA~^^^^^^^^^^~03/01/2003~
-~18212~^~268~^1845.^0^^~4~^^^^^^^^^^^~05/01/2005~
-~18212~^~301~^48.^51^1.^~1~^^^^^^^^^^^~08/01/1992~
-~18212~^~304~^14.^47^0.^~1~^^^^^^^^^^^~08/01/1992~
-~18212~^~305~^104.^47^1.^~1~^^^^^^^^^^^~08/01/1992~
-~18212~^~306~^97.^46^1.^~1~^^^^^^^^^^^~08/01/1992~
-~18212~^~307~^388.^0^^~8~^~LC~^^^^^^^^^^~05/01/2010~
-~18212~^~318~^30.^0^^~4~^~NC~^^^^^^^^^^~03/01/2003~
-~18212~^~319~^8.^0^^~4~^~FLA~^^^^^^^^^^~03/01/2003~
-~18212~^~320~^8.^0^^~4~^~NC~^^^^^^^^^^~03/01/2003~
-~18212~^~321~^1.^0^^~4~^~FLA~^^^^^^^^^^~03/01/2003~
-~18212~^~322~^0.^0^^~4~^~FLA~^^^^^^^^^^~03/01/2003~
-~18212~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~
-~18212~^~334~^1.^0^^~4~^~FLA~^^^^^^^^^^~03/01/2003~
-~18212~^~337~^0.^0^^~4~^~FLA~^^^^^^^^^^~03/01/2003~
-~18212~^~338~^41.^0^^~4~^~FLA~^^^^^^^^^^~03/01/2003~
-~18212~^~417~^60.^0^^~4~^~FLA~^^^^^^^^^^~03/01/2003~
-~18212~^~431~^51.^0^^~4~^^^^^^^^^^^~03/01/2003~
-~18212~^~432~^9.^0^^~4~^^^^^^^^^^^~08/01/1992~
-~18212~^~435~^96.^0^^~4~^~NC~^^^^^^^^^^~03/01/2007~
-~18212~^~601~^51.^0^^~4~^~FLA~^^^^^^^^^^~11/01/1997~
-~18213~^~208~^455.^0^^~4~^~NC~^^^^^^^^^^~06/01/2015~
-~18213~^~262~^0.^0^^~4~^~BFNN~^~18185~^^^^^^^^^~06/01/2015~
-~18213~^~263~^0.^0^^~4~^~BFNN~^~18185~^^^^^^^^^~06/01/2015~
-~18213~^~268~^1903.^0^^~4~^~NC~^^^^^^^^^^~06/01/2015~
-~18213~^~301~^36.^17^0.^~1~^~A~^^^1^9.^53.^8^33.^38.^~2, 3~^~06/01/2015~
-~18213~^~304~^12.^17^0.^~1~^~A~^^^1^9.^15.^9^11.^12.^~2, 3~^~08/01/1992~
-~18213~^~305~^88.^17^1.^~1~^~A~^^^1^50.^115.^10^85.^91.^~2, 3~^~06/01/2015~
-~18213~^~306~^99.^17^2.^~1~^~A~^^^1^68.^120.^7^92.^105.^~2, 3~^~06/01/2015~
-~18213~^~307~^325.^17^7.^~1~^~A~^^^1^185.^402.^6^307.^343.^~2, 3~^~06/01/2015~
-~18213~^~318~^0.^0^^~1~^~AS~^^^^^^^^^^~06/01/2015~
-~18213~^~319~^0.^3^^~1~^~A~^^^1^0.^0.^^^^~1, 2, 3~^~06/01/2015~
-~18213~^~320~^0.^0^^~1~^~AS~^^^^^^^^^^~06/01/2015~
-~18213~^~321~^0.^0^^~4~^~BFFN~^~18159~^^^^^^^^^~06/01/2015~
-~18213~^~322~^0.^0^^~4~^~BFFN~^~18159~^^^^^^^^^~06/01/2015~
-~18213~^~324~^0.^0^^~4~^~BFFN~^~18159~^^^^^^^^^~06/01/2015~
-~18213~^~334~^0.^0^^~4~^~BFFN~^~18159~^^^^^^^^^~06/01/2015~
-~18213~^~337~^0.^0^^~4~^~BFFN~^~18159~^^^^^^^^^~06/01/2015~
-~18213~^~338~^1.^0^^~4~^~BFFN~^~18159~^^^^^^^^^~06/01/2015~
-~18213~^~417~^83.^9^3.^~1~^~A~^^^1^61.^99.^2^66.^100.^~2, 3~^~06/01/2015~
-~18213~^~431~^35.^0^^~4~^~NC~^^^^^^^^^^~05/01/2000~
-~18213~^~432~^48.^0^^~4~^~NC~^^^^^^^^^^~06/01/2015~
-~18213~^~435~^108.^0^^~4~^~NC~^^^^^^^^^^~06/01/2015~
-~18213~^~601~^9.^2^^~1~^~A~^^^1^0.^15.^^^^~1~^~06/01/2015~
-~18214~^~208~^489.^0^^~4~^~NC~^^^^^^^^^^~03/01/2011~
-~18214~^~262~^0.^0^^~4~^~FLA~^^^^^^^^^^~02/01/2003~
-~18214~^~263~^0.^0^^~4~^~FLA~^^^^^^^^^^~02/01/2003~
-~18214~^~268~^2044.^0^^~4~^~NC~^^^^^^^^^^~03/01/2011~
-~18214~^~301~^136.^12^2.^~1~^~A~^^^1^108.^168.^10^130.^140.^~2, 3~^~03/01/2011~
-~18214~^~304~^25.^12^0.^~1~^~A~^^^1^22.^28.^9^24.^25.^~2, 3~^~03/01/2011~
-~18214~^~305~^200.^12^1.^~1~^~A~^^^1^173.^229.^8^195.^204.^~2, 3~^~03/01/2011~
-~18214~^~306~^156.^12^2.^~1~^~A~^^^1^134.^178.^10^150.^160.^~2, 3~^~03/01/2011~
-~18214~^~307~^973.^12^28.^~1~^~A~^^^1^688.^1280.^9^908.^1037.^~2, 3~^~03/01/2011~
-~18214~^~318~^156.^0^^~4~^~NC~^^^^^^^^^^~03/01/2011~
-~18214~^~319~^11.^0^^~4~^~FLA~^^^^^^^^^^~03/01/2011~
-~18214~^~320~^17.^0^^~4~^~NC~^^^^^^^^^^~03/01/2011~
-~18214~^~321~^63.^0^^~4~^~FLA~^^^^^^^^^^~03/01/2011~
-~18214~^~322~^0.^0^^~4~^~FLA~^^^^^^^^^^~02/01/2003~
-~18214~^~324~^1.^0^^~4~^~FLA~^^^^^^^^^^~03/01/2011~
-~18214~^~334~^17.^0^^~4~^~FLA~^^^^^^^^^^~03/01/2011~
-~18214~^~337~^0.^0^^~4~^~FLA~^^^^^^^^^^~02/01/2003~
-~18214~^~338~^34.^0^^~4~^~FLA~^^^^^^^^^^~03/01/2011~
-~18214~^~417~^152.^1^^~13~^~AI~^^^^^^^^^^~05/01/2003~
-~18214~^~431~^127.^0^^~4~^~NR~^^^^^^^^^^~07/01/2017~
-~18214~^~432~^25.^1^^~1~^^^^^^^^^^^~08/01/1992~
-~18214~^~435~^241.^0^^~4~^~NC~^^^^^^^^^^~07/01/2017~
-~18214~^~601~^3.^6^0.^~1~^~A~^^^1^2.^5.^3^3.^3.^~2, 3~^~03/01/2011~
-~18215~^~208~^496.^0^^~4~^~NC~^^^^^^^^^^~12/01/2002~
-~18215~^~262~^0.^0^^~4~^~FLA~^^^^^^^^^^~12/01/2002~
-~18215~^~263~^0.^0^^~4~^~FLA~^^^^^^^^^^~12/01/2002~
-~18215~^~268~^2074.^0^^~4~^~NC~^^^^^^^^^^~12/01/2002~
-~18215~^~301~^50.^6^0.^~1~^~A~^^^1^46.^52.^5^47.^52.^~2, 3~^~12/01/2002~
-~18215~^~304~^56.^6^0.^~1~^~A~^^^1^54.^58.^5^54.^57.^~2, 3~^~12/01/2002~
-~18215~^~305~^268.^6^7.^~1~^~A~^^^1^233.^283.^5^247.^288.^~2, 3~^~12/01/2002~
-~18215~^~306~^218.^6^4.^~1~^~A~^^^1^205.^237.^5^206.^230.^~2, 3~^~12/01/2002~
-~18215~^~307~^829.^0^^~8~^~LC~^^^^^^^^^^~08/01/2012~
-~18215~^~318~^2.^0^^~4~^~NC~^^^^^^^^^^~12/01/2002~
-~18215~^~319~^1.^0^^~4~^~NR~^^^^^^^^^^~07/01/2012~
-~18215~^~320~^1.^0^^~4~^~NR~^^^^^^^^^^~07/01/2012~
-~18215~^~321~^0.^0^^~4~^~FLA~^^^^^^^^^^~12/01/2002~
-~18215~^~322~^0.^0^^~4~^~FLA~^^^^^^^^^^~12/01/2002~
-~18215~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~
-~18215~^~334~^0.^0^^~4~^~FLA~^^^^^^^^^^~12/01/2002~
-~18215~^~337~^0.^0^^~4~^~FLA~^^^^^^^^^^~12/01/2002~
-~18215~^~338~^7.^0^^~4~^~FLA~^^^^^^^^^^~12/01/2002~
-~18215~^~417~^94.^5^2.^~1~^~A~^^^1^90.^101.^4^87.^100.^~2, 3~^~12/01/2002~
-~18215~^~431~^69.^0^^~4~^~O~^^^^^^^^^^~12/01/2002~
-~18215~^~432~^25.^0^^~4~^~NC~^^^^^^^^^^~07/01/2012~
-~18215~^~435~^142.^0^^~4~^~NC~^^^^^^^^^^~07/01/2007~
-~18215~^~601~^0.^3^0.^~1~^~A~^^^1^0.^0.^^^^~1, 2, 3~^~12/01/2002~
-~18216~^~208~^366.^0^^~4~^^^^^^^^^^^~08/01/1992~
-~18216~^~262~^0.^0^^~4~^~FLM~^^^^^^^^^^~02/01/2003~
-~18216~^~263~^0.^0^^~4~^~FLM~^^^^^^^^^^~02/01/2003~
-~18216~^~268~^1531.^0^^~4~^^^^^^^^^^^~03/01/2007~
-~18216~^~301~^31.^4^3.^~1~^^^^^^^^^^^~08/01/1992~
-~18216~^~304~^78.^4^3.^~1~^^^^^^^^^^^~08/01/1992~
-~18216~^~305~^269.^4^19.^~1~^^^^^^^^^^^~08/01/1992~
-~18216~^~306~^319.^4^34.^~1~^^^^^^^^^^^~08/01/1992~
-~18216~^~307~^410.^0^^~4~^~NR~^^^^^^^^^^~07/01/2012~
-~18216~^~318~^0.^0^^~1~^^^^^^^^^^^~08/01/1992~
-~18216~^~319~^0.^0^^~4~^~FLM~^^^^^^^^^^~02/01/2003~
-~18216~^~320~^0.^0^^~4~^~NC~^^^^^^^^^^~02/01/2003~
-~18216~^~321~^0.^0^^~4~^~FLM~^^^^^^^^^^~02/01/2003~
-~18216~^~322~^0.^0^^~4~^~FLM~^^^^^^^^^^~02/01/2003~
-~18216~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~
-~18216~^~334~^0.^0^^~4~^~FLM~^^^^^^^^^^~02/01/2003~
-~18216~^~337~^0.^0^^~4~^~FLM~^^^^^^^^^^~02/01/2003~
-~18216~^~338~^194.^0^^~4~^~FLM~^^^^^^^^^^~02/01/2003~
-~18216~^~417~^47.^0^^~4~^~FLA~^^^^^^^^^^~03/01/1998~
-~18216~^~431~^25.^0^^~4~^~NC~^^^^^^^^^^~05/01/2000~
-~18216~^~432~^22.^16^1.^~1~^^^^^^^^^^^~08/01/1992~
-~18216~^~435~^65.^0^^~4~^~NC~^^^^^^^^^^~03/01/2007~
-~18216~^~601~^0.^1^^~1~^^^^^^^^^^^~08/01/1992~
-~18217~^~208~^395.^0^^~4~^~NC~^^^^^^^^^^~08/01/1992~
-~18217~^~262~^0.^0^^~4~^~FLM~^^^^^^^^^^~02/01/2003~
-~18217~^~263~^0.^0^^~4~^~FLM~^^^^^^^^^^~02/01/2003~
-~18217~^~268~^1653.^0^^~4~^^^^^^^^^^^~03/01/2007~
-~18217~^~301~^13.^2^^~1~^^^^^^^^^^^~08/01/1992~
-~18217~^~304~^25.^2^^~1~^^^^^^^^^^^~08/01/1992~
-~18217~^~305~^89.^2^^~1~^^^^^^^^^^^~08/01/1992~
-~18217~^~306~^112.^4^8.^~1~^^^^^^^^^^^~08/01/1992~
-~18217~^~307~^0.^0^^~8~^~LC~^^^^^^^^^^~05/01/2010~
-~18217~^~318~^0.^0^^~1~^^^^^^^^^^^~08/01/1992~
-~18217~^~319~^0.^0^^~4~^~FLM~^^^^^^^^^^~02/01/2003~
-~18217~^~320~^0.^0^^~4~^~NC~^^^^^^^^^^~02/01/2003~
-~18217~^~321~^0.^0^^~4~^^^^^^^^^^^~02/01/2003~
-~18217~^~322~^0.^0^^~4~^^^^^^^^^^^~02/01/2003~
-~18217~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~
-~18217~^~334~^0.^0^^~4~^^^^^^^^^^^~02/01/2003~
-~18217~^~337~^0.^0^^~4~^~FLM~^^^^^^^^^^~02/01/2003~
-~18217~^~338~^18.^0^^~4~^~FLM~^^^^^^^^^^~02/01/2003~
-~18217~^~417~^17.^0^^~4~^~FLA~^^^^^^^^^^~04/01/2001~
-~18217~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2007~
-~18217~^~432~^17.^0^^~4~^~FLA~^^^^^^^^^^~02/01/2003~
-~18217~^~435~^17.^0^^~4~^~NC~^^^^^^^^^^~03/01/2007~
-~18217~^~601~^0.^1^^~1~^^^^^^^^^^^~08/01/1992~
-~18218~^~208~^391.^0^^~4~^~NC~^^^^^^^^^^~08/01/1992~
-~18218~^~268~^1636.^0^^~4~^^^^^^^^^^^
-~18218~^~301~^40.^1^^~1~^^^^^^^^^^^~08/01/1992~
-~18218~^~304~^24.^0^^~4~^~FLA~^^^^^^^^^^~11/01/1997~
-~18218~^~305~^148.^0^^~4~^~FLA~^^^^^^^^^^~11/01/1997~
-~18218~^~306~^150.^1^^~1~^^^^^^^^^^^~08/01/1992~
-~18218~^~307~^21.^1^^~1~^^^^^^^^^^^~08/01/1992~
-~18218~^~318~^42.^1^^~1~^^^^^^^^^^^~08/01/1992~
-~18218~^~319~^13.^0^^~4~^~NC~^^^^^^^^^^~06/01/2002~
-~18218~^~320~^13.^0^^~4~^~NC~^^^^^^^^^^~06/01/2002~
-~18218~^~417~^24.^0^^~4~^~FLA~^^^^^^^^^^~03/01/2001~
-~18218~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2001~
-~18218~^~432~^24.^0^^~4~^~FLA~^^^^^^^^^^~03/01/2001~
-~18218~^~435~^24.^0^^~4~^~NC~^^^^^^^^^^~03/01/2001~
-~18218~^~601~^83.^0^^~4~^~FLA~^^^^^^^^^^~11/01/1997~
-~18219~^~208~^351.^0^^~4~^~NC~^^^^^^^^^^~08/01/1992~
-~18219~^~268~^1469.^0^^~4~^^^^^^^^^^^
-~18219~^~301~^23.^3^2.^~1~^^^^^^^^^^^~08/01/1992~
-~18219~^~304~^134.^2^^~1~^^^^^^^^^^^~08/01/1992~
-~18219~^~305~^305.^2^^~1~^^^^^^^^^^^~08/01/1992~
-~18219~^~306~^316.^2^^~1~^^^^^^^^^^^~08/01/1992~
-~18219~^~307~^2.^5^0.^~1~^^^^^^^^^^^~08/01/1992~
-~18219~^~318~^0.^1^^~1~^^^^^^^^^^^~08/01/1992~
-~18219~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2002~
-~18219~^~320~^0.^0^^~4~^~NC~^^^^^^^^^^~06/01/2002~
-~18219~^~417~^35.^9^1.^~1~^^^^^^^^^^^~01/01/1999~
-~18219~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~
-~18219~^~432~^35.^9^1.^~1~^^^^^^^^^^^~01/01/1999~
-~18219~^~435~^35.^0^^~4~^~NC~^^^^^^^^^^~01/01/2001~
-~18219~^~601~^0.^0^^~1~^^^^^^^^^^^~08/01/1992~
-~18220~^~208~^390.^0^^~4~^~NC~^^^^^^^^^^~08/01/1992~
-~18220~^~262~^0.^0^^~4~^~FLA~^^^^^^^^^^~02/01/2003~
-~18220~^~263~^0.^0^^~4~^~FLA~^^^^^^^^^^~02/01/2003~
-~18220~^~268~^1632.^0^^~4~^^^^^^^^^^^~05/01/2005~
-~18220~^~301~^93.^15^14.^~1~^^^^^^^^^^^~08/01/1992~
-~18220~^~304~^59.^8^6.^~1~^^^^^^^^^^^~08/01/1992~
-~18220~^~305~^196.^12^7.^~1~^^^^^^^^^^^~08/01/1992~
-~18220~^~306~^202.^13^10.^~1~^^^^^^^^^^^~08/01/1992~
-~18220~^~307~^598.^0^^~8~^~LC~^^^^^^^^^^~05/01/2010~
-~18220~^~318~^0.^0^^~1~^^^^^^^^^^^~08/01/1992~
-~18220~^~319~^0.^0^^~4~^~FLA~^^^^^^^^^^~02/01/2003~
-~18220~^~320~^0.^0^^~4~^~NC~^^^^^^^^^^~02/01/2003~
-~18220~^~321~^0.^0^^~4~^^^^^^^^^^^~02/01/2003~
-~18220~^~322~^0.^0^^~4~^^^^^^^^^^^~02/01/2003~
-~18220~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~
-~18220~^~334~^0.^0^^~4~^^^^^^^^^^^~02/01/2003~
-~18220~^~337~^0.^0^^~4~^~FLA~^^^^^^^^^^~02/01/2003~
-~18220~^~338~^74.^0^^~4~^~FLA~^^^^^^^^^^~02/01/2003~
-~18220~^~417~^124.^0^^~4~^~FLA~^^^^^^^^^^~03/01/1998~
-~18220~^~431~^98.^0^^~4~^~NC~^^^^^^^^^^~05/01/2000~
-~18220~^~432~^26.^8^1.^~1~^^^^^^^^^^^~08/01/1992~
-~18220~^~435~^193.^0^^~4~^~NC~^^^^^^^^^^~03/01/2007~
-~18220~^~601~^0.^0^^~1~^^^^^^^^^^^~08/01/1992~
-~18221~^~208~^389.^0^^~4~^~NC~^^^^^^^^^^~08/01/1992~
-~18221~^~268~^1628.^0^^~4~^^^^^^^^^^^
-~18221~^~301~^78.^8^15.^~1~^^^^^^^^^^^~08/01/1992~
-~18221~^~304~^39.^3^4.^~1~^^^^^^^^^^^~08/01/1992~
-~18221~^~305~^183.^6^18.^~1~^^^^^^^^^^^~08/01/1992~
-~18221~^~306~^193.^6^21.^~1~^^^^^^^^^^^~08/01/1992~
-~18221~^~307~^899.^5^58.^~1~^^^^^^^^^^^~08/01/1992~
-~18221~^~318~^0.^0^^~4~^~FLA~^^^^^^^^^^~11/01/1997~
-~18221~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2002~
-~18221~^~320~^0.^0^^~4~^~NC~^^^^^^^^^^~06/01/2002~
-~18221~^~417~^85.^0^^~4~^~FLA~^^^^^^^^^^~03/01/1998~
-~18221~^~431~^63.^0^^~4~^~NC~^^^^^^^^^^~05/01/2000~
-~18221~^~432~^22.^8^1.^~1~^^^^^^^^^^^~08/01/1992~
-~18221~^~435~^129.^0^^~4~^~NC~^^^^^^^^^^~01/01/2001~
-~18221~^~601~^0.^0^^~4~^^^^^^^^^^^~08/01/1992~
-~18222~^~208~^374.^0^^~4~^~NC~^^^^^^^^^^~08/01/1992~
-~18222~^~268~^1565.^0^^~4~^^^^^^^^^^^
-~18222~^~301~^43.^3^3.^~1~^^^^^^^^^^^~08/01/1992~
-~18222~^~304~^56.^2^^~1~^^^^^^^^^^^~08/01/1992~
-~18222~^~305~^165.^2^^~1~^^^^^^^^^^^~08/01/1992~
-~18222~^~306~^148.^2^^~1~^^^^^^^^^^^~08/01/1992~
-~18222~^~307~^837.^3^50.^~1~^^^^^^^^^^^~08/01/1992~
-~18222~^~318~^0.^0^^~1~^^^^^^^^^^^~08/01/1992~
-~18222~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2002~
-~18222~^~320~^0.^0^^~4~^~NC~^^^^^^^^^^~06/01/2002~
-~18222~^~417~^132.^0^^~4~^~FLA~^^^^^^^^^^~03/01/1998~
-~18222~^~431~^108.^0^^~4~^~NC~^^^^^^^^^^~05/01/2000~
-~18222~^~432~^24.^8^0.^~1~^^^^^^^^^^^~08/01/1992~
-~18222~^~435~^208.^0^^~4~^~NC~^^^^^^^^^^~01/01/2001~
-~18222~^~601~^0.^0^^~1~^^^^^^^^^^^~08/01/1992~
-~18223~^~208~^446.^0^^~4~^~NC~^^^^^^^^^^~08/01/2015~
-~18223~^~262~^0.^0^^~4~^~FLA~^^^^^^^^^^~02/01/2003~
-~18223~^~263~^0.^0^^~4~^~FLA~^^^^^^^^^^~02/01/2003~
-~18223~^~268~^1865.^0^^~4~^~NC~^^^^^^^^^^~08/01/2015~
-~18223~^~301~^172.^9^2.^~1~^^^^^^^^^^^~08/01/1992~
-~18223~^~304~^22.^9^0.^~1~^^^^^^^^^^^~08/01/1992~
-~18223~^~305~^303.^9^4.^~1~^^^^^^^^^^^~08/01/1992~
-~18223~^~306~^114.^9^5.^~1~^^^^^^^^^^^~08/01/1992~
-~18223~^~307~^687.^0^^~4~^~NR~^^^^^^^^^^~06/01/2015~
-~18223~^~318~^58.^0^^~4~^~FLA~^^^^^^^^^^~02/01/2003~
-~18223~^~319~^16.^0^^~4~^~FLA~^^^^^^^^^^~02/01/2003~
-~18223~^~320~^16.^0^^~4~^~NC~^^^^^^^^^^~02/01/2003~
-~18223~^~321~^3.^0^^~4~^~FLA~^^^^^^^^^^~02/01/2003~
-~18223~^~322~^0.^0^^~4~^~FLA~^^^^^^^^^^~02/01/2003~
-~18223~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~
-~18223~^~334~^0.^0^^~4~^~FLA~^^^^^^^^^^~02/01/2003~
-~18223~^~337~^0.^0^^~4~^~FLA~^^^^^^^^^^~02/01/2003~
-~18223~^~338~^16.^0^^~4~^~FLA~^^^^^^^^^^~02/01/2003~
-~18223~^~417~^90.^0^^~4~^~FLA~^^^^^^^^^^~02/01/2003~
-~18223~^~431~^70.^0^^~4~^~FLA~^^^^^^^^^^~06/01/2015~
-~18223~^~432~^20.^0^^~4~^~NC~^^^^^^^^^^~06/01/2015~
-~18223~^~435~^139.^0^^~4~^~NC~^^^^^^^^^^~06/01/2015~
-~18223~^~601~^11.^0^^~4~^~FLA~^^^^^^^^^^~11/01/1997~
-~18224~^~208~^407.^0^^~4~^^^^^^^^^^^~08/01/1992~
-~18224~^~268~^1703.^0^^~4~^^^^^^^^^^^
-~18224~^~301~^27.^15^0.^~1~^^^^^^^^^^^~08/01/1992~
-~18224~^~304~^36.^12^0.^~1~^^^^^^^^^^^~08/01/1992~
-~18224~^~305~^153.^15^1.^~1~^^^^^^^^^^^~08/01/1992~
-~18224~^~306~^245.^14^8.^~1~^^^^^^^^^^^~08/01/1992~
-~18224~^~307~^253.^15^6.^~1~^^^^^^^^^^^~08/01/1992~
-~18224~^~318~^41.^0^^~4~^~FLA~^^^^^^^^^^~11/01/1997~
-~18224~^~319~^12.^0^^~4~^~NC~^^^^^^^^^^~06/01/2002~
-~18224~^~320~^12.^0^^~4~^~NC~^^^^^^^^^^~06/01/2002~
-~18224~^~417~^87.^0^^~4~^~FLA~^^^^^^^^^^~03/01/1998~
-~18224~^~431~^23.^0^^~4~^~NC~^^^^^^^^^^~05/01/2000~
-~18224~^~432~^64.^0^^~4~^^^^^^^^^^^~08/01/1992~
-~18224~^~435~^103.^0^^~4~^~NC~^^^^^^^^^^~01/01/2001~
-~18224~^~601~^78.^0^^~4~^~FLA~^^^^^^^^^^~11/01/1997~
-~18225~^~208~^481.^0^^~4~^~NC~^^^^^^^^^^~08/01/1992~
-~18225~^~268~^2013.^0^^~4~^^^^^^^^^^^
-~18225~^~301~^222.^5^18.^~1~^^^^^^^^^^^~08/01/1992~
-~18225~^~304~^37.^4^0.^~1~^^^^^^^^^^^~08/01/1992~
-~18225~^~305~^339.^4^4.^~1~^^^^^^^^^^^~08/01/1992~
-~18225~^~306~^342.^5^61.^~1~^^^^^^^^^^^~08/01/1992~
-~18225~^~307~^1044.^5^73.^~1~^^^^^^^^^^^~08/01/1992~
-~18225~^~318~^334.^0^^~4~^~FLA~^^^^^^^^^^~12/01/1997~
-~18225~^~319~^8.^0^^~4~^~NC~^^^^^^^^^^~06/01/2002~
-~18225~^~320~^24.^0^^~4~^~NC~^^^^^^^^^^~06/01/2002~
-~18225~^~417~^81.^0^^~4~^~FLA~^^^^^^^^^^~03/01/1998~
-~18225~^~431~^65.^0^^~4~^~NC~^^^^^^^^^^~05/01/2000~
-~18225~^~432~^16.^0^^~4~^^^^^^^^^^^~08/01/1992~
-~18225~^~435~^127.^0^^~4~^~NC~^^^^^^^^^^~01/01/2001~
-~18225~^~601~^9.^1^^~1~^^^^^^^^^^^~08/01/1992~
-~18226~^~208~^334.^0^^~4~^~NC~^^^^^^^^^^~08/01/1992~
-~18226~^~262~^0.^0^^~4~^~FLA~^^^^^^^^^^~02/01/2003~
-~18226~^~263~^0.^0^^~4~^~FLA~^^^^^^^^^^~02/01/2003~
-~18226~^~268~^1397.^0^^~4~^^^^^^^^^^^~03/01/2007~
-~18226~^~301~^40.^21^1.^~1~^^^^^^^^^^^~08/01/1992~
-~18226~^~304~^121.^21^1.^~1~^^^^^^^^^^^~08/01/1992~
-~18226~^~305~^334.^21^9.^~1~^^^^^^^^^^^~08/01/1992~
-~18226~^~306~^495.^2^^~1~^^^^^^^^^^^~08/01/1992~
-~18226~^~307~^557.^0^^~8~^~LC~^^^^^^^^^^~05/01/2010~
-~18226~^~318~^5.^0^^~4~^~FLA~^^^^^^^^^^~12/01/1997~
-~18226~^~319~^0.^0^^~4~^~FLA~^^^^^^^^^^~02/01/2003~
-~18226~^~320~^0.^0^^~4~^~NC~^^^^^^^^^^~02/01/2003~
-~18226~^~321~^2.^0^^~4~^~FLA~^^^^^^^^^^~02/01/2003~
-~18226~^~322~^1.^0^^~4~^~FLA~^^^^^^^^^^~02/01/2003~
-~18226~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~
-~18226~^~334~^0.^0^^~4~^~FLA~^^^^^^^^^^~02/01/2003~
-~18226~^~337~^0.^0^^~4~^~FLA~^^^^^^^^^^~02/01/2003~
-~18226~^~338~^245.^0^^~4~^~FLA~^^^^^^^^^^~02/01/2003~
-~18226~^~417~^45.^17^5.^~1~^^^^^^^^^^^~01/01/1999~
-~18226~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~
-~18226~^~432~^45.^17^5.^~1~^^^^^^^^^^^~02/01/2003~
-~18226~^~435~^45.^0^^~4~^~NC~^^^^^^^^^^~03/01/2007~
-~18226~^~601~^0.^0^^~1~^^^^^^^^^^^~08/01/1992~
-~18227~^~208~^381.^0^^~4~^~NC~^^^^^^^^^^~08/01/1992~
-~18227~^~268~^1594.^0^^~4~^^^^^^^^^^^
-~18227~^~301~^44.^5^4.^~1~^^^^^^^^^^^~08/01/1992~
-~18227~^~304~^106.^5^5.^~1~^^^^^^^^^^^~08/01/1992~
-~18227~^~305~^307.^5^11.^~1~^^^^^^^^^^^~08/01/1992~
-~18227~^~306~^454.^5^9.^~1~^^^^^^^^^^^~08/01/1992~
-~18227~^~307~^887.^6^51.^~1~^^^^^^^^^^^~08/01/1992~
-~18227~^~318~^8.^0^^~4~^~FLA~^^^^^^^^^^~12/01/1997~
-~18227~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2002~
-~18227~^~320~^0.^0^^~4~^~NC~^^^^^^^^^^~06/01/2002~
-~18227~^~417~^52.^2^^~1~^^^^^^^^^^^~01/01/1999~
-~18227~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~
-~18227~^~432~^52.^2^^~1~^^^^^^^^^^^~01/01/1999~
-~18227~^~435~^52.^0^^~4~^~NC~^^^^^^^^^^~01/01/2001~
-~18227~^~601~^0.^0^^~4~^^^^^^^^^^^~08/01/1992~
-~18228~^~208~^418.^0^^~4~^~NC~^^^^^^^^^^~02/01/2013~
-~18228~^~262~^0.^0^^~4~^~FLA~^^^^^^^^^^~02/01/2003~
-~18228~^~263~^0.^0^^~4~^~FLA~^^^^^^^^^^~02/01/2003~
-~18228~^~268~^1747.^0^^~4~^~NC~^^^^^^^^^^~02/01/2013~
-~18228~^~301~^19.^12^0.^~1~^~A~^^^1^18.^23.^5^18.^20.^~2, 3~^~02/01/2013~
-~18228~^~304~^23.^12^0.^~1~^~A~^^^1^21.^29.^5^22.^24.^~2, 3~^~02/01/2013~
-~18228~^~305~^102.^12^0.^~1~^~A~^^^1^99.^125.^5^100.^103.^~2, 3~^~07/01/2014~
-~18228~^~306~^152.^12^3.^~1~^~A~^^^1^142.^177.^5^143.^161.^~2, 3~^~07/01/2014~
-~18228~^~307~^941.^12^17.^~1~^~A~^^^1^750.^1110.^6^896.^985.^~2, 3~^~07/01/2014~
-~18228~^~318~^2.^0^^~1~^~AS~^^^^^^^^^^~02/01/2013~
-~18228~^~319~^1.^2^^~1~^~A~^^^1^0.^1.^^^^~1~^~02/01/2013~
-~18228~^~320~^1.^0^^~1~^~AS~^^^^^^^^^^~02/01/2013~
-~18228~^~321~^0.^0^^~4~^~FLA~^^^^^^^^^^~04/01/2008~
-~18228~^~322~^0.^0^^~4~^~FLA~^^^^^^^^^^~04/01/2008~
-~18228~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~
-~18228~^~334~^0.^0^^~4~^~FLA~^^^^^^^^^^~04/01/2008~
-~18228~^~337~^0.^0^^~4~^~FLA~^^^^^^^^^^~02/01/2003~
-~18228~^~338~^17.^0^^~4~^~FLA~^^^^^^^^^^~04/01/2008~
-~18228~^~417~^134.^6^2.^~1~^~A~^^^1^99.^146.^3^126.^142.^~2, 3~^~02/01/2013~
-~18228~^~431~^117.^2^^~1~^~A~^^^1^108.^126.^1^^^^~05/01/2013~
-~18228~^~432~^17.^0^^~4~^~NC~^^^^^^^^^^~05/01/2013~
-~18228~^~435~^216.^0^^~4~^~NC~^^^^^^^^^^~05/01/2013~
-~18228~^~601~^0.^3^0.^~1~^~A~^^^1^0.^0.^2^0.^0.^~1, 2, 3~^~04/01/2008~
-~18229~^~208~^510.^0^^~4~^~NC~^^^^^^^^^^~02/01/2013~
-~18229~^~262~^0.^0^^~4~^~FLA~^^^^^^^^^^~02/01/2003~
-~18229~^~263~^0.^0^^~4~^~FLA~^^^^^^^^^^~02/01/2003~
-~18229~^~268~^2132.^0^^~4~^~NC~^^^^^^^^^^~07/01/2014~
-~18229~^~301~^120.^12^2.^~1~^~A~^^^1^37.^146.^5^115.^125.^~2, 3~^~07/01/2014~
-~18229~^~304~^18.^12^0.^~1~^~A~^^^1^15.^20.^5^17.^18.^~2, 3~^~07/01/2014~
-~18229~^~305~^248.^12^1.^~1~^~A~^^^1^225.^259.^6^244.^252.^~2, 3~^~07/01/2014~
-~18229~^~306~^118.^12^5.^~1~^~A~^^^1^103.^138.^5^105.^130.^~2, 3~^~02/01/2013~
-~18229~^~307~^726.^12^18.^~1~^~A~^^^1^638.^877.^5^678.^774.^~2, 3~^~07/01/2014~
-~18229~^~318~^0.^0^^~1~^~AS~^^^^^^^^^^~07/01/2014~
-~18229~^~319~^0.^2^^~1~^~A~^^^1^0.^0.^^^^~1~^~07/01/2014~
-~18229~^~320~^0.^0^^~1~^~AS~^^^^^^^^^^~07/01/2014~
-~18229~^~321~^0.^0^^~4~^~FLA~^^^^^^^^^^~04/01/2008~
-~18229~^~322~^0.^0^^~4~^~FLA~^^^^^^^^^^~04/01/2008~
-~18229~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~
-~18229~^~334~^0.^0^^~4~^~FLA~^^^^^^^^^^~04/01/2008~
-~18229~^~337~^0.^0^^~4~^~FLA~^^^^^^^^^^~04/01/2008~
-~18229~^~338~^12.^0^^~4~^~FLA~^^^^^^^^^^~04/01/2008~
-~18229~^~417~^92.^6^3.^~1~^~A~^^^1^77.^102.^2^77.^106.^~2, 3~^~07/01/2014~
-~18229~^~431~^84.^2^^~1~^~A~^^^1^83.^84.^1^^^^~05/01/2013~
-~18229~^~432~^8.^0^^~4~^~NC~^^^^^^^^^^~07/01/2014~
-~18229~^~435~^150.^0^^~4~^~NC~^^^^^^^^^^~07/01/2014~
-~18229~^~601~^0.^0^^~4~^~FLA~^^^^^^^^^^~04/01/2008~
-~18230~^~208~^477.^0^^~4~^~NC~^^^^^^^^^^~08/01/1992~
-~18230~^~262~^0.^0^^~4~^~FLA~^^^^^^^^^^~02/01/2003~
-~18230~^~263~^0.^0^^~4~^~FLA~^^^^^^^^^^~02/01/2003~
-~18230~^~268~^1996.^0^^~4~^^^^^^^^^^^~05/01/2005~
-~18230~^~301~^257.^6^17.^~1~^^^^^^^^^^^~08/01/1992~
-~18230~^~304~^36.^5^0.^~1~^^^^^^^^^^^~08/01/1992~
-~18230~^~305~^406.^5^9.^~1~^^^^^^^^^^^~08/01/1992~
-~18230~^~306~^429.^6^53.^~1~^^^^^^^^^^^~08/01/1992~
-~18230~^~307~^978.^0^^~9~^~MC~^^^^^^^^^^~08/01/2012~
-~18230~^~318~^62.^0^^~4~^~FLA~^^^^^^^^^^~02/01/2003~
-~18230~^~319~^16.^0^^~4~^~FLA~^^^^^^^^^^~02/01/2003~
-~18230~^~320~^17.^0^^~4~^~NC~^^^^^^^^^^~02/01/2003~
-~18230~^~321~^5.^0^^~4~^~FLA~^^^^^^^^^^~02/01/2003~
-~18230~^~322~^0.^0^^~4~^~FLA~^^^^^^^^^^~02/01/2003~
-~18230~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~
-~18230~^~334~^0.^0^^~4~^~FLA~^^^^^^^^^^~02/01/2003~
-~18230~^~337~^0.^0^^~4~^~FLA~^^^^^^^^^^~02/01/2003~
-~18230~^~338~^10.^0^^~4~^~FLA~^^^^^^^^^^~02/01/2003~
-~18230~^~417~^100.^0^^~4~^~FLA~^^^^^^^^^^~02/01/2003~
-~18230~^~431~^86.^0^^~4~^~NR~^^^^^^^^^^~08/01/2012~
-~18230~^~432~^14.^0^^~4~^^^^^^^^^^^~08/01/1992~
-~18230~^~435~^160.^0^^~4~^~NC~^^^^^^^^^^~08/01/2012~
-~18230~^~601~^2.^1^^~1~^^^^^^^^^^^~08/01/1992~
-~18231~^~208~^494.^0^^~4~^~NC~^^^^^^^^^^~02/01/2005~
-~18231~^~262~^0.^0^^~4~^~FLC~^^^^^^^^^^~12/01/2002~
-~18231~^~263~^0.^0^^~4~^~FLC~^^^^^^^^^^~12/01/2002~
-~18231~^~268~^2067.^0^^~4~^~NC~^^^^^^^^^^~02/01/2005~
-~18231~^~301~^81.^6^16.^~1~^~A~^^^1^46.^135.^5^39.^121.^~2, 3~^~12/01/2002~
-~18231~^~304~^55.^6^1.^~1~^~A~^^^1^52.^57.^5^52.^57.^~2, 3~^~12/01/2002~
-~18231~^~305~^274.^6^2.^~1~^~A~^^^1^267.^280.^5^267.^280.^~2, 3~^~12/01/2002~
-~18231~^~306~^215.^6^5.^~1~^~A~^^^1^201.^235.^5^201.^228.^~2, 3~^~12/01/2002~
-~18231~^~307~^801.^0^^~8~^~LC~^^^^^^^^^^~08/01/2012~
-~18231~^~318~^4.^0^^~4~^~NC~^^^^^^^^^^~02/01/2005~
-~18231~^~319~^1.^0^^~4~^~FLC~^^^^^^^^^^~12/01/2002~
-~18231~^~320~^1.^0^^~4~^~FLC~^^^^^^^^^^~02/01/2005~
-~18231~^~321~^0.^0^^~4~^~FLC~^^^^^^^^^^~12/01/2002~
-~18231~^~322~^0.^0^^~4~^~FLC~^^^^^^^^^^~12/01/2002~
-~18231~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~
-~18231~^~334~^0.^0^^~4~^~FLC~^^^^^^^^^^~12/01/2002~
-~18231~^~337~^0.^0^^~4~^~FLC~^^^^^^^^^^~12/01/2002~
-~18231~^~338~^10.^0^^~4~^~FLC~^^^^^^^^^^~12/01/2002~
-~18231~^~417~^86.^6^2.^~1~^~A~^^^1^75.^90.^5^80.^91.^~2, 3~^~12/01/2002~
-~18231~^~431~^52.^0^^~4~^~O~^^^^^^^^^^~12/01/2002~
-~18231~^~432~^34.^0^^~4~^^^^^^^^^^^~08/01/1992~
-~18231~^~435~^122.^0^^~4~^~NC~^^^^^^^^^^~03/01/2007~
-~18231~^~601~^0.^0^^~4~^^^^^^^^^^^~08/01/1992~
-~18231~^~636~^49.^0^^~4~^~FLC~^^^^^^^^^^~12/01/2002~
-~18231~^~638~^0.^0^^~4~^~FLC~^^^^^^^^^^~12/01/2002~
-~18231~^~639~^0.^0^^~4~^~FLC~^^^^^^^^^^~12/01/2002~
-~18231~^~641~^0.^0^^~4~^~FLC~^^^^^^^^^^~12/01/2002~
-~18232~^~208~^455.^0^^~4~^~NC~^^^^^^^^^^~05/01/2014~
-~18232~^~262~^0.^0^^~4~^~FLA~^^^^^^^^^^~02/01/2003~
-~18232~^~263~^0.^0^^~4~^~FLA~^^^^^^^^^^~02/01/2003~
-~18232~^~268~^1903.^0^^~4~^~NC~^^^^^^^^^^~05/01/2014~
-~18232~^~301~^92.^12^2.^~1~^~A~^^^1^20.^121.^6^85.^99.^~2, 3~^~05/01/2014~
-~18232~^~304~^72.^12^1.^~1~^~A~^^^1^41.^80.^10^69.^74.^~2, 3~^~05/01/2014~
-~18232~^~305~^302.^12^5.^~1~^~A~^^^1^146.^325.^6^288.^314.^~2, 3~^~05/01/2014~
-~18232~^~306~^283.^12^4.^~1~^~A~^^^1^172.^314.^10^273.^292.^~2, 3~^~05/01/2014~
-~18232~^~307~^699.^12^35.^~1~^~A~^^^1^578.^900.^5^608.^789.^~2, 3~^~05/01/2014~
-~18232~^~318~^7.^0^^~4~^~NC~^^^^^^^^^^~05/01/2014~
-~18232~^~319~^0.^0^^~4~^~FLA~^^^^^^^^^^~02/01/2003~
-~18232~^~320~^0.^0^^~4~^~FLA~^^^^^^^^^^~05/01/2009~
-~18232~^~321~^4.^0^^~4~^~FLA~^^^^^^^^^^~05/01/2014~
-~18232~^~322~^0.^0^^~4~^~FLA~^^^^^^^^^^~10/01/2008~
-~18232~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~
-~18232~^~334~^0.^0^^~4~^~FLA~^^^^^^^^^^~10/01/2008~
-~18232~^~337~^0.^0^^~4~^~FLA~^^^^^^^^^^~10/01/2008~
-~18232~^~338~^180.^0^^~4~^~FLA~^^^^^^^^^^~05/01/2014~
-~18232~^~417~^38.^6^6.^~1~^~A~^^^1^21.^175.^2^12.^63.^~2, 3~^~05/01/2014~
-~18232~^~431~^2.^0^^~4~^~NR~^^^^^^^^^^~05/01/2014~
-~18232~^~432~^36.^0^^~4~^~FLA~^^^^^^^^^^~05/01/2014~
-~18232~^~435~^40.^0^^~4~^~NC~^^^^^^^^^^~05/01/2014~
-~18232~^~601~^0.^0^^~4~^~FLA~^^^^^^^^^^~05/01/2014~
-~18233~^~208~^497.^0^^~4~^~NC~^^^^^^^^^^~08/01/1992~
-~18233~^~268~^2079.^0^^~4~^^^^^^^^^^^
-~18233~^~301~^204.^2^^~1~^^^^^^^^^^^~08/01/1992~
-~18233~^~304~^54.^1^^~1~^^^^^^^^^^^~08/01/1992~
-~18233~^~305~^382.^1^^~1~^^^^^^^^^^^~08/01/1992~
-~18233~^~306~^306.^2^^~1~^^^^^^^^^^^~08/01/1992~
-~18233~^~307~^839.^0^^~9~^~MC~^^^^^^^^^^~08/01/2012~
-~18233~^~318~^71.^1^^~1~^^^^^^^^^^^~08/01/1992~
-~18233~^~320~^21.^0^^~4~^~NR~^^^^^^^^^^~08/01/2012~
-~18233~^~417~^64.^0^^~4~^~FLA~^^^^^^^^^^~03/01/1998~
-~18233~^~431~^45.^0^^~4~^~NC~^^^^^^^^^^~05/01/2000~
-~18233~^~432~^19.^0^^~4~^^^^^^^^^^^~08/01/1992~
-~18233~^~435~^96.^0^^~4~^~NC~^^^^^^^^^^~01/01/2001~
-~18233~^~601~^7.^2^^~1~^^^^^^^^^^^~08/01/1992~
-~18234~^~208~^495.^0^^~4~^~NC~^^^^^^^^^^~08/01/1992~
-~18234~^~268~^2071.^0^^~4~^^^^^^^^^^^
-~18234~^~301~^170.^2^^~1~^^^^^^^^^^^~08/01/1992~
-~18234~^~304~^38.^1^^~1~^^^^^^^^^^^~08/01/1992~
-~18234~^~305~^347.^1^^~1~^^^^^^^^^^^~08/01/1992~
-~18234~^~306~^297.^2^^~1~^^^^^^^^^^^~08/01/1992~
-~18234~^~307~^807.^2^^~1~^^^^^^^^^^^~08/01/1992~
-~18234~^~318~^0.^0^^~4~^~FLA~^^^^^^^^^^~11/01/1997~
-~18234~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2002~
-~18234~^~320~^0.^0^^~4~^~NC~^^^^^^^^^^~06/01/2002~
-~18234~^~417~^70.^0^^~4~^~FLA~^^^^^^^^^^~03/01/1998~
-~18234~^~431~^33.^0^^~4~^~NC~^^^^^^^^^^~05/01/2000~
-~18234~^~432~^37.^0^^~4~^^^^^^^^^^^~08/01/1992~
-~18234~^~435~^93.^0^^~4~^~NC~^^^^^^^^^^~01/01/2001~
-~18234~^~601~^0.^0^^~1~^^^^^^^^^^^~08/01/1992~
-~18235~^~208~^427.^0^^~4~^~NC~^^^^^^^^^^~10/01/2008~
-~18235~^~262~^0.^0^^~4~^~FLA~^^^^^^^^^^~02/01/2003~
-~18235~^~263~^0.^0^^~4~^~FLA~^^^^^^^^^^~02/01/2003~
-~18235~^~268~^1786.^0^^~4~^~NC~^^^^^^^^^^~10/01/2008~
-~18235~^~301~^36.^4^0.^~1~^~A~^^^1^36.^37.^3^35.^37.^~2, 3~^~10/01/2008~
-~18235~^~304~^110.^4^1.^~1~^~A~^^^1^106.^112.^3^105.^113.^~2, 3~^~10/01/2008~
-~18235~^~305~^331.^4^3.^~1~^~A~^^^1^322.^337.^3^320.^340.^~2, 3~^~10/01/2008~
-~18235~^~306~^345.^4^3.^~1~^~A~^^^1^336.^349.^3^334.^354.^~2, 3~^~10/01/2008~
-~18235~^~307~^800.^0^^~4~^~NR~^^^^^^^^^^~07/01/2017~
-~18235~^~318~^0.^0^^~1~^^^^^^^^^^^~08/01/1992~
-~18235~^~319~^0.^0^^~4~^~FLA~^^^^^^^^^^~10/01/2008~
-~18235~^~320~^0.^0^^~4~^~NC~^^^^^^^^^^~10/01/2008~
-~18235~^~321~^0.^0^^~4~^~FLA~^^^^^^^^^^~10/01/2008~
-~18235~^~322~^0.^0^^~4~^~FLA~^^^^^^^^^^~02/01/2003~
-~18235~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~
-~18235~^~334~^0.^0^^~4~^~FLA~^^^^^^^^^^~02/01/2003~
-~18235~^~337~^0.^0^^~4~^~FLA~^^^^^^^^^^~10/01/2008~
-~18235~^~338~^179.^0^^~4~^~FLA~^^^^^^^^^^~02/01/2003~
-~18235~^~417~^28.^8^0.^~1~^^^^^^^^^^^~01/01/1999~
-~18235~^~431~^0.^0^^~4~^~FLA~^^^^^^^^^^~10/01/2008~
-~18235~^~432~^28.^8^0.^~1~^^^^^^^^^^^~10/01/2008~
-~18235~^~435~^28.^0^^~4~^~NC~^^^^^^^^^^~10/01/2008~
-~18235~^~601~^0.^0^^~4~^~FLA~^^^^^^^^^^~10/01/2008~
-~18236~^~208~^383.^0^^~4~^~NC~^^^^^^^^^^~12/01/2006~
-~18236~^~262~^0.^0^^~4~^~FLC~^^^^^^^^^^~02/01/2003~
-~18236~^~263~^0.^0^^~4~^~FLC~^^^^^^^^^^~02/01/2003~
-~18236~^~268~^1603.^0^^~4~^~NC~^^^^^^^^^^~12/01/2006~
-~18236~^~301~^23.^15^1.^~1~^^^^^^^^^^^~08/01/1992~
-~18236~^~304~^24.^15^0.^~1~^^^^^^^^^^^~08/01/1992~
-~18236~^~305~^104.^16^3.^~1~^^^^^^^^^^^~08/01/1992~
-~18236~^~306~^115.^14^4.^~1~^^^^^^^^^^^~08/01/1992~
-~18236~^~307~^16.^0^^~8~^~LC~^^^^^^^^^^~05/01/2010~
-~18236~^~318~^0.^0^^~1~^^^^^^^^^^^~08/01/1992~
-~18236~^~319~^0.^0^^~4~^~FLC~^^^^^^^^^^~02/01/2003~
-~18236~^~320~^0.^0^^~4~^~NC~^^^^^^^^^^~12/01/2006~
-~18236~^~321~^0.^0^^~4~^~FLC~^^^^^^^^^^~12/01/2006~
-~18236~^~322~^0.^0^^~4~^~FLC~^^^^^^^^^^~12/01/2006~
-~18236~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~
-~18236~^~334~^0.^0^^~4~^~FLC~^^^^^^^^^^~12/01/2006~
-~18236~^~337~^0.^0^^~4~^~FLC~^^^^^^^^^^~02/01/2003~
-~18236~^~338~^76.^0^^~4~^~FLC~^^^^^^^^^^~02/01/2003~
-~18236~^~417~^136.^0^^~4~^~FLC~^^^^^^^^^^~02/01/2003~
-~18236~^~431~^114.^0^^~4~^^^^^^^^^^^~12/01/2006~
-~18236~^~432~^22.^0^^~4~^^^^^^^^^^^~08/01/1992~
-~18236~^~435~^216.^0^^~4~^~NC~^^^^^^^^^^~12/01/2006~
-~18236~^~601~^0.^0^^~1~^^^^^^^^^^^~08/01/1992~
-~18237~^~208~^360.^0^^~4~^~NC~^^^^^^^^^^~07/01/2015~
-~18237~^~262~^0.^0^^~4~^~RC~^^^^^^^^^^~03/01/2009~
-~18237~^~263~^0.^0^^~4~^~RC~^^^^^^^^^^~03/01/2009~
-~18237~^~268~^1507.^0^^~4~^~NC~^^^^^^^^^^~07/01/2015~
-~18237~^~301~^36.^0^^~1~^^^^^^^^^^^~08/01/1992~
-~18237~^~304~^12.^0^^~1~^^^^^^^^^^^~08/01/1992~
-~18237~^~305~^119.^0^^~1~^^^^^^^^^^^~08/01/1992~
-~18237~^~306~^97.^0^^~1~^^^^^^^^^^^~08/01/1992~
-~18237~^~307~^483.^0^^~4~^~RC~^^^^^^^^^^~07/01/2015~
-~18237~^~318~^1183.^0^^~4~^~NC~^^^^^^^^^^~07/01/2015~
-~18237~^~319~^274.^0^^~4~^~RC~^^^^^^^^^^~07/01/2015~
-~18237~^~320~^288.^0^^~4~^~RC~^^^^^^^^^^~07/01/2015~
-~18237~^~321~^159.^0^^~4~^~RC~^^^^^^^^^^~07/01/2015~
-~18237~^~322~^0.^0^^~4~^~RC~^^^^^^^^^^~03/01/2009~
-~18237~^~324~^55.^0^^~4~^~RC~^^^^^^^^^^~07/01/2015~
-~18237~^~334~^4.^0^^~4~^~RC~^^^^^^^^^^~03/01/2009~
-~18237~^~337~^0.^0^^~4~^~RC~^^^^^^^^^^~03/01/2009~
-~18237~^~338~^237.^0^^~4~^~RC~^^^^^^^^^^~07/01/2015~
-~18237~^~417~^53.^0^^~4~^~RC~^^^^^^^^^^~03/01/2009~
-~18237~^~431~^31.^0^^~4~^~RC~^^^^^^^^^^~03/01/2009~
-~18237~^~432~^22.^0^^~4~^~RC~^^^^^^^^^^~03/01/2009~
-~18237~^~435~^75.^0^^~4~^~NC~^^^^^^^^^^~03/01/2009~
-~18237~^~601~^171.^0^^~4~^~RC~^^^^^^^^^^~07/01/2015~
-~18239~^~208~^406.^0^^~4~^^^^^^^^^^^~08/01/1992~
-~18239~^~262~^0.^0^^~4~^~FLA~^^^^^^^^^^~02/01/2003~
-~18239~^~263~^0.^0^^~4~^~FLA~^^^^^^^^^^~02/01/2003~
-~18239~^~268~^1699.^0^^~4~^^^^^^^^^^^~04/01/2005~
-~18239~^~301~^37.^26^1.^~1~^^^^^^^^^^^~08/01/1992~
-~18239~^~304~^16.^25^0.^~1~^^^^^^^^^^^~08/01/1992~
-~18239~^~305~^105.^3^4.^~1~^^^^^^^^^^^~08/01/1992~
-~18239~^~306~^118.^25^1.^~1~^^^^^^^^^^^~08/01/1992~
-~18239~^~307~^384.^0^^~4~^~NR~^^^^^^^^^^~07/01/2017~
-~18239~^~318~^740.^0^^~4~^~NC~^^^^^^^^^^~07/01/2017~
-~18239~^~319~^202.^0^^~4~^~FLA~^^^^^^^^^^~02/01/2003~
-~18239~^~320~^206.^0^^~4~^~NC~^^^^^^^^^^~02/01/2003~
-~18239~^~321~^38.^0^^~4~^~FLA~^^^^^^^^^^~02/01/2003~
-~18239~^~322~^0.^0^^~4~^~FLA~^^^^^^^^^^~02/01/2003~
-~18239~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~
-~18239~^~334~^1.^0^^~4~^~FLA~^^^^^^^^^^~02/01/2003~
-~18239~^~337~^0.^0^^~4~^~FLA~^^^^^^^^^^~02/01/2003~
-~18239~^~338~^74.^0^^~4~^~FLA~^^^^^^^^^^~02/01/2003~
-~18239~^~417~^88.^0^^~4~^~FLA~^^^^^^^^^^~02/01/2003~
-~18239~^~431~^60.^0^^~4~^~NR~^^^^^^^^^^~02/01/2003~
-~18239~^~432~^28.^8^1.^~1~^^^^^^^^^^^~08/01/1992~
-~18239~^~435~^130.^0^^~4~^~NC~^^^^^^^^^^~03/01/2007~
-~18239~^~601~^67.^0^^~4~^~FLA~^^^^^^^^^^~11/01/1997~
-~18240~^~208~^254.^0^^~4~^~NC~^^^^^^^^^^~08/01/1992~
-~18240~^~268~^1063.^0^^~4~^^^^^^^^^^^
-~18240~^~301~^30.^2^^~1~^^^^^^^^^^^~08/01/1992~
-~18240~^~304~^13.^2^^~1~^^^^^^^^^^^~08/01/1992~
-~18240~^~305~^58.^2^^~1~^^^^^^^^^^^~08/01/1992~
-~18240~^~306~^90.^2^^~1~^^^^^^^^^^^~08/01/1992~
-~18240~^~307~^274.^2^^~1~^^^^^^^^^^^~08/01/1992~
-~18240~^~318~^380.^0^^~4~^~FLA~^^^^^^^^^^~11/01/1997~
-~18240~^~319~^90.^0^^~4~^~NC~^^^^^^^^^^~06/01/2002~
-~18240~^~320~^94.^0^^~4~^~NC~^^^^^^^^^^~06/01/2002~
-~18240~^~417~^57.^0^^~4~^~FLA~^^^^^^^^^^~03/01/1998~
-~18240~^~431~^44.^0^^~4~^~NC~^^^^^^^^^^~05/01/2000~
-~18240~^~432~^13.^8^0.^~1~^^^^^^^^^^^~08/01/1992~
-~18240~^~435~^88.^0^^~4~^~NC~^^^^^^^^^^~01/01/2001~
-~18240~^~601~^31.^0^^~4~^~FLA~^^^^^^^^^^~11/01/1997~
-~18241~^~208~^414.^0^^~4~^~NC~^^^^^^^^^^~08/01/1992~
-~18241~^~262~^0.^0^^~4~^~FLA~^^^^^^^^^^~02/01/2003~
-~18241~^~263~^0.^0^^~4~^~FLA~^^^^^^^^^^~02/01/2003~
-~18241~^~268~^1732.^0^^~4~^^^^^^^^^^^~05/01/2005~
-~18241~^~301~^53.^2^^~1~^^^^^^^^^^^~08/01/1992~
-~18241~^~304~^24.^2^^~1~^^^^^^^^^^^~08/01/1992~
-~18241~^~305~^130.^2^^~1~^^^^^^^^^^^~08/01/1992~
-~18241~^~306~^132.^2^^~1~^^^^^^^^^^^~08/01/1992~
-~18241~^~307~^361.^0^^~8~^~LC~^^^^^^^^^^~05/01/2010~
-~18241~^~318~^805.^0^^~4~^~FLA~^^^^^^^^^^~11/01/1997~
-~18241~^~319~^197.^0^^~4~^~FLA~^^^^^^^^^^~02/01/2003~
-~18241~^~320~^204.^0^^~4~^~NC~^^^^^^^^^^~02/01/2003~
-~18241~^~321~^89.^0^^~4~^~FLA~^^^^^^^^^^~02/01/2003~
-~18241~^~322~^0.^0^^~4~^~FLA~^^^^^^^^^^~02/01/2003~
-~18241~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~
-~18241~^~334~^0.^0^^~4~^~FLA~^^^^^^^^^^~02/01/2003~
-~18241~^~337~^0.^0^^~4~^~FLA~^^^^^^^^^^~02/01/2003~
-~18241~^~338~^43.^0^^~4~^~FLA~^^^^^^^^^^~02/01/2003~
-~18241~^~417~^74.^0^^~4~^~FLA~^^^^^^^^^^~03/01/1998~
-~18241~^~431~^41.^0^^~4~^~NC~^^^^^^^^^^~05/01/2000~
-~18241~^~432~^33.^8^0.^~1~^^^^^^^^^^^~08/01/1992~
-~18241~^~435~^103.^0^^~4~^~NC~^^^^^^^^^^~03/01/2007~
-~18241~^~601~^57.^0^^~4~^~FLA~^^^^^^^^^^~11/01/1997~
-~18242~^~208~^407.^0^^~4~^~NC~^^^^^^^^^^~08/01/1992~
-~18242~^~268~^1703.^0^^~4~^^^^^^^^^^^
-~18242~^~301~^76.^5^10.^~1~^^^^^^^^^^^~08/01/1992~
-~18242~^~304~^31.^5^2.^~1~^^^^^^^^^^^~08/01/1992~
-~18242~^~305~^115.^4^6.^~1~^^^^^^^^^^^~08/01/1992~
-~18242~^~306~^124.^6^18.^~1~^^^^^^^^^^^~08/01/1992~
-~18242~^~307~^698.^6^60.^~1~^^^^^^^^^^^~08/01/1992~
-~18242~^~318~^0.^0^^~1~^^^^^^^^^^^~08/01/1992~
-~18242~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2002~
-~18242~^~320~^0.^0^^~4~^~NC~^^^^^^^^^^~06/01/2002~
-~18242~^~417~^132.^0^^~4~^~FLA~^^^^^^^^^^~03/01/1998~
-~18242~^~431~^110.^0^^~4~^~NC~^^^^^^^^^^~05/01/2000~
-~18242~^~432~^22.^8^0.^~1~^^^^^^^^^^^~08/01/1992~
-~18242~^~435~^209.^0^^~4~^~NC~^^^^^^^^^^~01/01/2001~
-~18242~^~601~^0.^1^^~1~^^^^^^^^^^^~08/01/1992~
-~18243~^~208~^465.^0^^~4~^~NC~^^^^^^^^^^~08/01/1992~
-~18243~^~262~^0.^0^^~4~^~FLA~^^^^^^^^^^~03/01/2003~
-~18243~^~263~^0.^0^^~4~^~FLA~^^^^^^^^^^~03/01/2003~
-~18243~^~268~^1946.^0^^~4~^^^^^^^^^^^~05/01/2005~
-~18243~^~301~^96.^40^4.^~1~^^^^^^^^^^^~08/01/1992~
-~18243~^~304~^42.^5^2.^~1~^^^^^^^^^^^~08/01/1992~
-~18243~^~305~^140.^5^20.^~1~^^^^^^^^^^^~08/01/1992~
-~18243~^~306~^181.^15^6.^~1~^^^^^^^^^^^~08/01/1992~
-~18243~^~307~^1333.^0^^~4~^~NR~^^^^^^^^^^~07/01/2017~
-~18243~^~318~^32.^0^^~4~^~NC~^^^^^^^^^^~03/01/2003~
-~18243~^~319~^7.^0^^~4~^~FLA~^^^^^^^^^^~03/01/2003~
-~18243~^~320~^7.^0^^~4~^~NC~^^^^^^^^^^~03/01/2003~
-~18243~^~321~^6.^0^^~4~^~FLA~^^^^^^^^^^~03/01/2003~
-~18243~^~322~^0.^0^^~4~^~FLA~^^^^^^^^^^~03/01/2003~
-~18243~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~
-~18243~^~334~^0.^0^^~4~^~FLA~^^^^^^^^^^~03/01/2003~
-~18243~^~337~^0.^0^^~4~^~FLA~^^^^^^^^^^~03/01/2003~
-~18243~^~338~^45.^0^^~4~^~FLA~^^^^^^^^^^~03/01/2003~
-~18243~^~417~^105.^0^^~4~^~FLA~^^^^^^^^^^~03/01/2003~
-~18243~^~431~^65.^0^^~4~^^^^^^^^^^^~03/01/2003~
-~18243~^~432~^40.^8^2.^~1~^^^^^^^^^^^~08/01/1992~
-~18243~^~435~^151.^0^^~4~^~NC~^^^^^^^^^^~03/01/2007~
-~18243~^~601~^7.^0^^~4~^~FLA~^^^^^^^^^^~12/01/1997~
-~18244~^~208~^403.^0^^~4~^^^^^^^^^^^~08/01/1992~
-~18244~^~262~^0.^0^^~4~^~FLA~^^^^^^^^^^~03/01/2003~
-~18244~^~263~^0.^0^^~4~^~FLA~^^^^^^^^^^~03/01/2003~
-~18244~^~268~^1686.^0^^~4~^^^^^^^^^^^~05/01/2005~
-~18244~^~301~^71.^30^5.^~1~^^^^^^^^^^^~08/01/1992~
-~18244~^~304~^19.^31^0.^~1~^^^^^^^^^^^~08/01/1992~
-~18244~^~305~^107.^30^3.^~1~^^^^^^^^^^^~08/01/1992~
-~18244~^~306~^125.^29^4.^~1~^^^^^^^^^^^~08/01/1992~
-~18244~^~307~^414.^0^^~8~^~LC~^^^^^^^^^^~08/01/2012~
-~18244~^~318~^24.^0^^~4~^~FLA~^^^^^^^^^^~03/01/2003~
-~18244~^~319~^6.^0^^~4~^~FLA~^^^^^^^^^^~03/01/2003~
-~18244~^~320~^6.^0^^~4~^~NC~^^^^^^^^^^~03/01/2003~
-~18244~^~321~^2.^0^^~4~^~FLA~^^^^^^^^^^~03/01/2003~
-~18244~^~322~^0.^0^^~4~^~FLA~^^^^^^^^^^~03/01/2003~
-~18244~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~
-~18244~^~334~^1.^0^^~4~^~FLA~^^^^^^^^^^~03/01/2003~
-~18244~^~337~^0.^0^^~4~^~FLA~^^^^^^^^^^~03/01/2003~
-~18244~^~338~^52.^0^^~4~^~FLA~^^^^^^^^^^~03/01/2003~
-~18244~^~417~^68.^0^^~4~^~FLA~^^^^^^^^^^~03/01/2003~
-~18244~^~431~^35.^0^^~4~^~FLA~^^^^^^^^^^~03/01/2003~
-~18244~^~432~^33.^0^^~4~^^^^^^^^^^^~08/01/1992~
-~18244~^~435~^92.^0^^~4~^~NC~^^^^^^^^^^~03/01/2007~
-~18244~^~601~^21.^0^^~4~^~FLA~^^^^^^^^^^~11/01/1997~
-~18245~^~208~^374.^0^^~4~^~NC~^^^^^^^^^^~08/01/1992~
-~18245~^~262~^0.^0^^~4~^~FLA~^^^^^^^^^^~03/01/2003~
-~18245~^~263~^0.^0^^~4~^~FLA~^^^^^^^^^^~03/01/2003~
-~18245~^~268~^1565.^0^^~4~^^^^^^^^^^^~01/01/2009~
-~18245~^~301~^35.^1^^~1~^^^^^^^^^^^~08/01/1992~
-~18245~^~304~^15.^1^^~1~^^^^^^^^^^^~08/01/1992~
-~18245~^~305~^108.^1^^~1~^^^^^^^^^^^~08/01/1992~
-~18245~^~306~^98.^1^^~1~^^^^^^^^^^^~08/01/1992~
-~18245~^~307~^417.^0^^~4~^~NR~^^^^^^^^^^~08/01/2012~
-~18245~^~318~^128.^0^^~4~^~FLA~^^^^^^^^^^~01/01/2009~
-~18245~^~319~^34.^0^^~4~^~FLA~^^^^^^^^^^~03/01/2003~
-~18245~^~320~^35.^0^^~4~^~NC~^^^^^^^^^^~01/01/2009~
-~18245~^~321~^8.^0^^~4~^~FLA~^^^^^^^^^^~03/01/2003~
-~18245~^~322~^0.^0^^~4~^~FLA~^^^^^^^^^^~03/01/2003~
-~18245~^~324~^2.^0^^~4~^~NR~^^^^^^^^^^~08/01/2012~
-~18245~^~334~^0.^0^^~4~^~FLA~^^^^^^^^^^~03/01/2003~
-~18245~^~337~^0.^0^^~4~^~FLA~^^^^^^^^^^~03/01/2003~
-~18245~^~338~^38.^0^^~4~^~FLA~^^^^^^^^^^~03/01/2003~
-~18245~^~417~^60.^0^^~4~^~FLA~^^^^^^^^^^~03/01/1998~
-~18245~^~431~^35.^0^^~4~^~NC~^^^^^^^^^^~05/01/2000~
-~18245~^~432~^25.^0^^~4~^^^^^^^^^^^~08/01/1992~
-~18245~^~435~^85.^0^^~4~^~NC~^^^^^^^^^^~01/01/2009~
-~18245~^~601~^23.^0^^~4~^~FLA~^^^^^^^^^^~01/01/2009~
-~18246~^~208~^371.^0^^~4~^~NC~^^^^^^^^^^~08/01/1992~
-~18246~^~262~^0.^0^^~4~^~FLA~^^^^^^^^^^~03/01/2003~
-~18246~^~263~^0.^0^^~4~^~FLA~^^^^^^^^^^~03/01/2003~
-~18246~^~268~^1552.^0^^~4~^^^^^^^^^^^~05/01/2005~
-~18246~^~301~^46.^16^9.^~1~^^^^^^^^^^^~08/01/1992~
-~18246~^~304~^15.^15^0.^~1~^^^^^^^^^^^~08/01/1992~
-~18246~^~305~^89.^15^8.^~1~^^^^^^^^^^^~08/01/1992~
-~18246~^~306~^83.^11^6.^~1~^^^^^^^^^^^~08/01/1992~
-~18246~^~307~^445.^0^^~8~^~LC~^^^^^^^^^^~08/01/2012~
-~18246~^~318~^51.^0^^~4~^~FLA~^^^^^^^^^^~03/01/2003~
-~18246~^~319~^15.^0^^~4~^~FLA~^^^^^^^^^^~03/01/2003~
-~18246~^~320~^15.^0^^~4~^~NC~^^^^^^^^^^~03/01/2003~
-~18246~^~321~^1.^0^^~4~^~FLA~^^^^^^^^^^~03/01/2003~
-~18246~^~322~^0.^0^^~4~^~FLA~^^^^^^^^^^~03/01/2003~
-~18246~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~
-~18246~^~334~^1.^0^^~4~^~FLA~^^^^^^^^^^~03/01/2003~
-~18246~^~337~^0.^0^^~4~^~FLA~^^^^^^^^^^~03/01/2003~
-~18246~^~338~^49.^0^^~4~^~FLA~^^^^^^^^^^~03/01/2003~
-~18246~^~417~^47.^0^^~4~^~FLA~^^^^^^^^^^~03/01/2003~
-~18246~^~431~^31.^0^^~4~^~NR~^^^^^^^^^^~03/01/2003~
-~18246~^~432~^16.^0^^~4~^~NC~^^^^^^^^^^~07/01/2012~
-~18246~^~435~^68.^0^^~4~^~NC~^^^^^^^^^^~07/01/2012~
-~18246~^~601~^114.^0^^~4~^~FLA~^^^^^^^^^^~11/01/1997~
-~18248~^~208~^434.^0^^~4~^~NC~^^^^^^^^^^~04/01/2014~
-~18248~^~262~^0.^0^^~4~^~FLA~^^^^^^^^^^~03/01/2003~
-~18248~^~263~^0.^0^^~4~^~FLA~^^^^^^^^^^~03/01/2003~
-~18248~^~268~^1815.^0^^~4~^~NC~^^^^^^^^^^~04/01/2014~
-~18248~^~301~^40.^5^0.^~1~^~A~^^^1^31.^47.^3^38.^42.^~2, 3~^~04/01/2014~
-~18248~^~304~^17.^5^0.^~1~^~A~^^^1^16.^19.^3^16.^17.^~2, 3~^~04/01/2014~
-~18248~^~305~^260.^5^5.^~1~^~A~^^^1^246.^292.^1^200.^319.^~2, 3~^~04/01/2014~
-~18248~^~306~^134.^5^4.^~1~^~A~^^^1^125.^146.^2^115.^151.^~2, 3~^~04/01/2014~
-~18248~^~307~^477.^5^8.^~1~^~A~^^^1^452.^526.^1^401.^551.^~2, 3~^~04/01/2014~
-~18248~^~318~^14.^0^^~4~^~NC~^^^^^^^^^^~04/01/2014~
-~18248~^~319~^3.^0^^~4~^~FLA~^^^^^^^^^^~11/01/2005~
-~18248~^~320~^4.^0^^~4~^~FLA~^^^^^^^^^^~04/01/2014~
-~18248~^~321~^1.^0^^~4~^~FLA~^^^^^^^^^^~11/01/2005~
-~18248~^~322~^0.^0^^~4~^~FLA~^^^^^^^^^^~11/01/2005~
-~18248~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~
-~18248~^~334~^0.^0^^~4~^~FLA~^^^^^^^^^^~11/01/2005~
-~18248~^~337~^0.^0^^~4~^~FLA~^^^^^^^^^^~03/01/2003~
-~18248~^~338~^19.^0^^~4~^~FLA~^^^^^^^^^^~04/01/2014~
-~18248~^~417~^92.^4^1.^~1~^~A~^^^1^83.^98.^2^82.^100.^~2, 3~^~04/01/2014~
-~18248~^~431~^76.^0^^~4~^~FLA~^^^^^^^^^^~04/01/2014~
-~18248~^~432~^16.^0^^~4~^~FLA~^^^^^^^^^^~04/01/2014~
-~18248~^~435~^145.^0^^~4~^~NC~^^^^^^^^^^~04/01/2014~
-~18248~^~601~^10.^0^^~4~^~FLA~^^^^^^^^^^~04/01/2014~
-~18249~^~208~^452.^0^^~4~^~NC~^^^^^^^^^^~11/01/2006~
-~18249~^~262~^2.^0^^~4~^~FLA~^^^^^^^^^^~10/01/2005~
-~18249~^~263~^53.^0^^~4~^~FLA~^^^^^^^^^^~10/01/2005~
-~18249~^~268~^1892.^0^^~4~^~NC~^^^^^^^^^^~11/01/2006~
-~18249~^~301~^24.^2^^~1~^~A~^^^1^24.^25.^1^^^^~10/01/2005~
-~18249~^~304~^30.^2^^~1~^~A~^^^1^24.^36.^1^^^^~10/01/2005~
-~18249~^~305~^210.^2^^~1~^~A~^^^1^185.^235.^1^^^^~10/01/2005~
-~18249~^~306~^201.^2^^~1~^~A~^^^1^158.^244.^1^^^^~10/01/2005~
-~18249~^~307~^326.^0^^~8~^~LC~^^^^^^^^^^~05/01/2010~
-~18249~^~318~^16.^0^^~4~^~FLA~^^^^^^^^^^~10/01/2005~
-~18249~^~319~^3.^0^^~4~^~FLA~^^^^^^^^^^~10/01/2005~
-~18249~^~320~^4.^0^^~4~^~FLA~^^^^^^^^^^~10/01/2005~
-~18249~^~321~^2.^0^^~4~^~FLA~^^^^^^^^^^~10/01/2005~
-~18249~^~322~^1.^0^^~4~^~FLA~^^^^^^^^^^~10/01/2005~
-~18249~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~
-~18249~^~334~^1.^0^^~4~^~FLA~^^^^^^^^^^~10/01/2005~
-~18249~^~337~^0.^0^^~4~^~FLA~^^^^^^^^^^~03/01/2003~
-~18249~^~338~^24.^0^^~4~^~FLA~^^^^^^^^^^~10/01/2005~
-~18249~^~417~^65.^2^^~1~^~A~^^^1^64.^65.^1^^^^~10/01/2005~
-~18249~^~431~^37.^2^^~1~^~A~^^^1^35.^38.^1^^^^~10/01/2005~
-~18249~^~432~^28.^0^^~1~^~AS~^^^^^^^^^^~10/01/2005~
-~18249~^~435~^90.^0^^~4~^~NC~^^^^^^^^^^~06/01/2009~
-~18249~^~601~^19.^0^^~4~^~FLA~^^^^^^^^^^~10/01/2005~
-~18250~^~208~^426.^0^^~4~^~NC~^^^^^^^^^^~08/01/1992~
-~18250~^~268~^1782.^0^^~4~^^^^^^^^^^^
-~18250~^~301~^60.^15^12.^~1~^^^^^^^^^^^~08/01/1992~
-~18250~^~304~^17.^7^0.^~1~^^^^^^^^^^^~08/01/1992~
-~18250~^~305~^117.^6^19.^~1~^^^^^^^^^^^~08/01/1992~
-~18250~^~306~^102.^6^5.^~1~^^^^^^^^^^^~08/01/1992~
-~18250~^~307~^402.^19^22.^~1~^^^^^^^^^^^~08/01/1992~
-~18250~^~318~^10.^2^^~1~^^^^^^^^^^^~08/01/1992~
-~18250~^~319~^3.^0^^~4~^~NC~^^^^^^^^^^~06/01/2002~
-~18250~^~320~^3.^0^^~4~^~NC~^^^^^^^^^^~06/01/2002~
-~18250~^~417~^46.^0^^~4~^~FLA~^^^^^^^^^^~03/01/1998~
-~18250~^~431~^34.^0^^~4~^~NC~^^^^^^^^^^~05/01/2000~
-~18250~^~432~^12.^0^^~4~^^^^^^^^^^^~08/01/1992~
-~18250~^~435~^70.^0^^~4~^~NC~^^^^^^^^^^~01/01/2001~
-~18250~^~601~^32.^15^4.^~1~^^^^^^^^^^^~08/01/1992~
-~18251~^~208~^417.^0^^~4~^~NC~^^^^^^^^^^~08/01/1992~
-~18251~^~262~^1.^0^^~4~^~FLA~^^^^^^^^^^~05/01/1998~
-~18251~^~263~^21.^0^^~4~^~FLA~^^^^^^^^^^~05/01/1998~
-~18251~^~268~^1745.^0^^~4~^^^^^^^^^^^~05/01/2005~
-~18251~^~301~^213.^2^^~1~^^^^^^^^^^^~08/01/1992~
-~18251~^~304~^34.^2^^~1~^^^^^^^^^^^~08/01/1992~
-~18251~^~305~^162.^2^^~1~^^^^^^^^^^^~08/01/1992~
-~18251~^~306~^106.^0^^~4~^~FLA~^^^^^^^^^^~11/01/1997~
-~18251~^~307~^215.^0^^~8~^~LC~^^^^^^^^^^~08/01/2012~
-~18251~^~318~^39.^0^^~4~^~FLA~^^^^^^^^^^~11/01/1997~
-~18251~^~319~^11.^0^^~4~^~FLA~^^^^^^^^^^~03/01/2003~
-~18251~^~320~^12.^0^^~4~^~NC~^^^^^^^^^^~03/01/2003~
-~18251~^~321~^2.^0^^~4~^~FLA~^^^^^^^^^^~03/01/2003~
-~18251~^~322~^1.^0^^~4~^~FLA~^^^^^^^^^^~03/01/2003~
-~18251~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~
-~18251~^~334~^1.^0^^~4~^~FLA~^^^^^^^^^^~03/01/2003~
-~18251~^~337~^0.^0^^~4~^~FLA~^^^^^^^^^^~03/01/2003~
-~18251~^~338~^20.^0^^~4~^~FLA~^^^^^^^^^^~03/01/2003~
-~18251~^~417~^45.^0^^~4~^~FLA~^^^^^^^^^^~03/01/2003~
-~18251~^~431~^28.^0^^~4~^~NR~^^^^^^^^^^~03/01/2003~
-~18251~^~432~^17.^0^^~4~^~NC~^^^^^^^^^^~08/01/1992~
-~18251~^~435~^64.^0^^~4~^~NC~^^^^^^^^^^~07/01/2012~
-~18251~^~601~^57.^0^^~4~^^^^^^^^^^^~08/01/1992~
-~18253~^~208~^412.^0^^~4~^~NC~^^^^^^^^^^~08/01/1992~
-~18253~^~262~^0.^0^^~4~^~FLA~^^^^^^^^^^~03/01/2003~
-~18253~^~263~^0.^0^^~4~^~FLA~^^^^^^^^^^~03/01/2003~
-~18253~^~268~^1724.^0^^~4~^^^^^^^^^^^~05/01/2005~
-~18253~^~301~^26.^1^^~1~^^^^^^^^^^^~08/01/1992~
-~18253~^~304~^12.^1^^~1~^^^^^^^^^^^~08/01/1992~
-~18253~^~305~^123.^1^^~1~^^^^^^^^^^^~08/01/1992~
-~18253~^~306~^78.^1^^~1~^^^^^^^^^^^~08/01/1992~
-~18253~^~307~^345.^1^^~1~^^^^^^^^^^^~08/01/1992~
-~18253~^~318~^8.^0^^~4~^~FLA~^^^^^^^^^^~03/01/2003~
-~18253~^~319~^2.^0^^~4~^~FLA~^^^^^^^^^^~03/01/2003~
-~18253~^~320~^2.^0^^~4~^~NC~^^^^^^^^^^~03/01/2003~
-~18253~^~321~^1.^0^^~4~^~FLA~^^^^^^^^^^~03/01/2003~
-~18253~^~322~^0.^0^^~4~^~FLA~^^^^^^^^^^~03/01/2003~
-~18253~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~
-~18253~^~334~^0.^0^^~4~^~FLA~^^^^^^^^^^~03/01/2003~
-~18253~^~337~^0.^0^^~4~^~FLA~^^^^^^^^^^~03/01/2003~
-~18253~^~338~^6.^0^^~4~^~FLA~^^^^^^^^^^~03/01/2003~
-~18253~^~417~^42.^0^^~4~^~FLA~^^^^^^^^^^~03/01/2003~
-~18253~^~431~^34.^0^^~4~^^^^^^^^^^^~03/01/2003~
-~18253~^~432~^8.^0^^~4~^^^^^^^^^^^~08/01/1992~
-~18253~^~435~^66.^0^^~4~^~NC~^^^^^^^^^^~03/01/2007~
-~18253~^~601~^11.^1^^~1~^^^^^^^^^^^~08/01/1992~
-~18254~^~208~^361.^0^^~4~^~NC~^^^^^^^^^^~08/01/1992~
-~18254~^~262~^0.^0^^~4~^~FLA~^^^^^^^^^^~03/01/2003~
-~18254~^~263~^0.^0^^~4~^~FLA~^^^^^^^^^^~03/01/2003~
-~18254~^~268~^1510.^0^^~4~^^^^^^^^^^^~05/01/2005~
-~18254~^~301~^25.^2^^~1~^^^^^^^^^^^~08/01/1992~
-~18254~^~304~^20.^2^^~1~^^^^^^^^^^^~08/01/1992~
-~18254~^~305~^76.^2^^~1~^^^^^^^^^^^~08/01/1992~
-~18254~^~306~^80.^2^^~1~^^^^^^^^^^^~08/01/1992~
-~18254~^~307~^309.^2^^~1~^^^^^^^^^^^~08/01/1992~
-~18254~^~318~^40.^0^^~4~^~NC~^^^^^^^^^^~03/01/2003~
-~18254~^~319~^11.^0^^~4~^~FLA~^^^^^^^^^^~03/01/2003~
-~18254~^~320~^11.^0^^~4~^~NC~^^^^^^^^^^~03/01/2003~
-~18254~^~321~^2.^0^^~4~^~FLA~^^^^^^^^^^~03/01/2003~
-~18254~^~322~^0.^0^^~4~^~FLA~^^^^^^^^^^~03/01/2003~
-~18254~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~
-~18254~^~334~^1.^0^^~4~^~FLA~^^^^^^^^^^~03/01/2003~
-~18254~^~337~^0.^0^^~4~^~FLA~^^^^^^^^^^~03/01/2003~
-~18254~^~338~^33.^0^^~4~^~FLA~^^^^^^^^^^~03/01/2003~
-~18254~^~417~^70.^0^^~4~^~FLA~^^^^^^^^^^~03/01/2003~
-~18254~^~431~^56.^0^^~4~^^^^^^^^^^^~03/01/2003~
-~18254~^~432~^14.^0^^~4~^^^^^^^^^^^~08/01/1992~
-~18254~^~435~^109.^0^^~4~^~NC~^^^^^^^^^^~03/01/2007~
-~18254~^~601~^24.^2^^~1~^^^^^^^^^^^~08/01/1992~
-~18255~^~208~^421.^0^^~4~^~NC~^^^^^^^^^^~08/01/2012~
-~18255~^~262~^0.^0^^~4~^~FLA~^^^^^^^^^^~03/01/2003~
-~18255~^~263~^0.^0^^~4~^~FLA~^^^^^^^^^^~03/01/2003~
-~18255~^~268~^1760.^0^^~4~^~NC~^^^^^^^^^^~08/01/2012~
-~18255~^~301~^101.^8^13.^~1~^~A~^^^1^19.^176.^5^65.^136.^~2, 3~^~08/01/2012~
-~18255~^~304~^17.^8^0.^~1~^~A~^^^1^15.^18.^2^15.^19.^~2, 3~^~08/01/2012~
-~18255~^~305~^117.^8^4.^~1~^~A~^^^1^76.^181.^6^106.^128.^~2, 3~^~08/01/2012~
-~18255~^~306~^102.^8^1.^~1~^~A~^^^1^91.^123.^5^96.^106.^~2, 3~^~08/01/2012~
-~18255~^~307~^316.^8^10.^~1~^~A~^^^1^218.^498.^6^290.^342.^~2, 3~^~08/01/2012~
-~18255~^~318~^23.^0^^~4~^~FLA~^^^^^^^^^^~11/01/2005~
-~18255~^~319~^5.^0^^~4~^~FLA~^^^^^^^^^^~11/01/2005~
-~18255~^~320~^5.^0^^~4~^~FLA~^^^^^^^^^^~11/01/2005~
-~18255~^~321~^3.^0^^~4~^~FLA~^^^^^^^^^^~11/01/2005~
-~18255~^~322~^1.^0^^~4~^~FLA~^^^^^^^^^^~11/01/2005~
-~18255~^~324~^3.^0^^~4~^~FLA~^^^^^^^^^^~08/01/2012~
-~18255~^~334~^1.^0^^~4~^~FLA~^^^^^^^^^^~11/01/2005~
-~18255~^~337~^0.^0^^~4~^~FLA~^^^^^^^^^^~03/01/2003~
-~18255~^~338~^36.^0^^~4~^~FLA~^^^^^^^^^^~11/01/2005~
-~18255~^~417~^108.^2^^~1~^~A~^^^1^98.^117.^1^^^^~11/01/2005~
-~18255~^~431~^68.^2^^~1~^~A~^^^1^59.^76.^1^^^^~11/01/2005~
-~18255~^~432~^40.^0^^~1~^~AS~^^^^^^^^^^~11/01/2005~
-~18255~^~435~^155.^0^^~4~^~NC~^^^^^^^^^^~03/01/2007~
-~18255~^~601~^30.^0^^~4~^~FLA~^^^^^^^^^^~11/01/2005~
-~18256~^~208~^340.^0^^~4~^~NC~^^^^^^^^^^~08/01/1992~
-~18256~^~262~^0.^0^^~4~^~FLA~^^^^^^^^^^~03/01/2003~
-~18256~^~263~^0.^0^^~4~^~FLA~^^^^^^^^^^~03/01/2003~
-~18256~^~268~^1423.^0^^~4~^^^^^^^^^^^~05/01/2005~
-~18256~^~301~^25.^2^^~1~^^^^^^^^^^^~08/01/1992~
-~18256~^~304~^20.^2^^~1~^^^^^^^^^^^~08/01/1992~
-~18256~^~305~^85.^2^^~1~^^^^^^^^^^^~08/01/1992~
-~18256~^~306~^79.^2^^~1~^^^^^^^^^^^~08/01/1992~
-~18256~^~307~^455.^0^^~8~^~LC~^^^^^^^^^^~08/01/2012~
-~18256~^~318~^71.^0^^~4~^~FLA~^^^^^^^^^^~03/01/2003~
-~18256~^~319~^16.^0^^~4~^~FLA~^^^^^^^^^^~03/01/2003~
-~18256~^~320~^17.^0^^~4~^~NC~^^^^^^^^^^~03/01/2003~
-~18256~^~321~^8.^0^^~4~^~FLA~^^^^^^^^^^~03/01/2003~
-~18256~^~322~^3.^0^^~4~^~FLA~^^^^^^^^^^~03/01/2003~
-~18256~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~
-~18256~^~334~^3.^0^^~4~^~FLA~^^^^^^^^^^~03/01/2003~
-~18256~^~337~^0.^0^^~4~^~FLA~^^^^^^^^^^~03/01/2003~
-~18256~^~338~^108.^0^^~4~^~FLA~^^^^^^^^^^~03/01/2003~
-~18256~^~417~^68.^0^^~4~^~FLA~^^^^^^^^^^~03/01/2003~
-~18256~^~431~^51.^0^^~4~^~NR~^^^^^^^^^^~03/01/2003~
-~18256~^~432~^17.^0^^~4~^~NC~^^^^^^^^^^~08/01/1992~
-~18256~^~435~^104.^0^^~4~^~NC~^^^^^^^^^^~03/01/2007~
-~18256~^~601~^26.^2^^~1~^^^^^^^^^^^~08/01/1992~
-~18258~^~208~^227.^0^^~4~^~NC~^^^^^^^^^^~11/01/2006~
-~18258~^~262~^0.^0^^~4~^~FLA~^^^^^^^^^^~03/01/2003~
-~18258~^~263~^0.^0^^~4~^~FLA~^^^^^^^^^^~03/01/2003~
-~18258~^~268~^951.^0^^~4~^~NC~^^^^^^^^^^~11/01/2006~
-~18258~^~301~^163.^2^^~1~^~A~^^^1^143.^182.^1^^^^~03/01/2005~
-~18258~^~304~^24.^2^^~1~^~A~^^^1^24.^24.^1^^^^~03/01/2005~
-~18258~^~305~^92.^2^^~1~^~A~^^^1^85.^100.^1^^^^~03/01/2005~
-~18258~^~306~^109.^2^^~1~^~A~^^^1^104.^113.^1^^^^~03/01/2005~
-~18258~^~307~^425.^2^^~1~^~A~^^^1^408.^441.^1^^^^~05/01/2013~
-~18258~^~318~^0.^0^^~4~^~FLA~^^^^^^^^^^~10/01/1997~
-~18258~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2005~
-~18258~^~320~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2005~
-~18258~^~321~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2005~
-~18258~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2005~
-~18258~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~
-~18258~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2005~
-~18258~^~337~^0.^0^^~4~^~FLA~^^^^^^^^^^~03/01/2003~
-~18258~^~338~^42.^0^^~4~^~FLA~^^^^^^^^^^~03/01/2003~
-~18258~^~417~^94.^2^^~1~^~A~^^^1^73.^115.^1^^^^~03/01/2005~
-~18258~^~431~^55.^2^^~1~^~A~^^^1^36.^73.^1^^^^~11/01/2006~
-~18258~^~432~^40.^0^^~1~^~AS~^^^^^^^^^^~05/01/2013~
-~18258~^~435~^132.^0^^~4~^~NC~^^^^^^^^^^~07/01/2007~
-~18258~^~601~^0.^4^0.^~1~^^^^^^^^^^^~08/01/1992~
-~18259~^~208~^270.^0^^~4~^~NC~^^^^^^^^^^~03/01/2005~
-~18259~^~262~^0.^0^^~4~^~RK~^^^^^^^^^^~03/01/2003~
-~18259~^~263~^0.^0^^~4~^~RK~^^^^^^^^^^~03/01/2003~
-~18259~^~268~^1130.^0^^~4~^~NC~^^^^^^^^^^~03/01/2005~
-~18259~^~301~^197.^2^^~1~^~A~^^^1^175.^218.^1^^^^~03/01/2005~
-~18259~^~304~^28.^2^^~1~^~A~^^^1^28.^29.^1^^^^~03/01/2005~
-~18259~^~305~^107.^2^^~1~^~A~^^^1^99.^116.^1^^^^~03/01/2005~
-~18259~^~306~^129.^2^^~1~^~A~^^^1^118.^140.^1^^^^~03/01/2005~
-~18259~^~307~^477.^2^^~1~^~A~^^^1^455.^498.^1^^^^~03/01/2005~
-~18259~^~318~^0.^0^^~4~^^^^^^^^^^^~08/01/1992~
-~18259~^~319~^0.^0^^~4~^~RK~^^^^^^^^^^~03/01/2005~
-~18259~^~320~^0.^0^^~4~^~RK~^^^^^^^^^^~03/01/2005~
-~18259~^~321~^0.^0^^~4~^~RK~^^^^^^^^^^~03/01/2003~
-~18259~^~322~^0.^0^^~4~^~RK~^^^^^^^^^^~03/01/2003~
-~18259~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~
-~18259~^~334~^0.^0^^~4~^~RK~^^^^^^^^^^~03/01/2003~
-~18259~^~337~^0.^0^^~4~^~RK~^^^^^^^^^^~03/01/2003~
-~18259~^~338~^47.^0^^~4~^~RK~^^^^^^^^^^~03/01/2005~
-~18259~^~417~^119.^2^^~1~^~A~^^^1^96.^141.^1^^^^~03/01/2005~
-~18259~^~431~^88.^2^^~1~^~A~^^^1^77.^98.^1^^^^~03/01/2005~
-~18259~^~432~^31.^0^^~1~^~AS~^^^^^^^^^^~03/01/2005~
-~18259~^~435~^180.^0^^~4~^~NC~^^^^^^^^^^~07/01/2007~
-~18259~^~601~^0.^0^^~4~^~RK~^^^^^^^^^^~03/01/2005~
-~18260~^~208~^235.^0^^~4~^^^^^^^^^^^~08/01/1992~
-~18260~^~262~^0.^0^^~4~^~FLC~^^^^^^^^^^~03/01/2003~
-~18260~^~263~^0.^0^^~4~^~FLC~^^^^^^^^^^~03/01/2003~
-~18260~^~268~^983.^0^^~4~^^^^^^^^^^^~05/01/2005~
-~18260~^~301~^196.^10^18.^~1~^^^^^^^^^^^~08/01/1992~
-~18260~^~304~^41.^0^^~4~^~FLA~^^^^^^^^^^~12/01/1997~
-~18260~^~305~^81.^0^^~4~^~FLA~^^^^^^^^^^~12/01/1997~
-~18260~^~306~^156.^2^^~1~^^^^^^^^^^^~08/01/1992~
-~18260~^~307~^298.^0^^~8~^~LC~^^^^^^^^^^~08/01/2012~
-~18260~^~318~^0.^0^^~4~^~FLA~^^^^^^^^^^~12/01/1997~
-~18260~^~319~^0.^0^^~4~^~FLC~^^^^^^^^^^~03/01/2003~
-~18260~^~320~^0.^0^^~4~^~NC~^^^^^^^^^^~03/01/2003~
-~18260~^~321~^0.^0^^~4~^~FLC~^^^^^^^^^^~03/01/2003~
-~18260~^~322~^0.^0^^~4~^~FLC~^^^^^^^^^^~03/01/2003~
-~18260~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~
-~18260~^~334~^0.^0^^~4~^~FLC~^^^^^^^^^^~03/01/2003~
-~18260~^~337~^0.^0^^~4~^~FLC~^^^^^^^^^^~03/01/2003~
-~18260~^~338~^1.^0^^~4~^~FLC~^^^^^^^^^^~03/01/2003~
-~18260~^~417~^80.^0^^~4~^~FLA~^^^^^^^^^^~03/01/1998~
-~18260~^~431~^45.^0^^~4~^~NC~^^^^^^^^^^~05/01/2000~
-~18260~^~432~^35.^0^^~4~^^^^^^^^^^^~08/01/1992~
-~18260~^~435~^112.^0^^~4~^~NC~^^^^^^^^^^~05/01/2007~
-~18260~^~601~^0.^4^0.^~1~^^^^^^^^^^^~08/01/1992~
-~18262~^~208~^240.^0^^~4~^~NC~^^^^^^^^^^~03/01/2005~
-~18262~^~262~^0.^0^^~4~^~FLA~^^^^^^^^^^~03/01/2005~
-~18262~^~263~^0.^0^^~4~^~FLC~^^^^^^^^^^~03/01/2003~
-~18262~^~268~^1005.^0^^~4~^~NC~^^^^^^^^^^~03/01/2005~
-~18262~^~301~^114.^2^^~1~^~A~^^^1^80.^147.^1^^^^~03/01/2005~
-~18262~^~304~^23.^2^^~1~^~A~^^^1^23.^24.^1^^^^~03/01/2005~
-~18262~^~305~^91.^2^^~1~^~A~^^^1^85.^98.^1^^^^~03/01/2005~
-~18262~^~306~^173.^2^^~1~^~A~^^^1^162.^184.^1^^^^~03/01/2005~
-~18262~^~307~^299.^0^^~4~^~NR~^^^^^^^^^^~06/01/2014~
-~18262~^~318~^0.^0^^~4~^~NC~^^^^^^^^^^~07/01/2012~
-~18262~^~319~^0.^0^^~4~^~FLA~^^^^^^^^^^~03/01/2005~
-~18262~^~320~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2005~
-~18262~^~321~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2005~
-~18262~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2005~
-~18262~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~
-~18262~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2005~
-~18262~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2005~
-~18262~^~338~^25.^0^^~4~^~FLC~^^^^^^^^^^~03/01/2003~
-~18262~^~417~^74.^2^^~1~^~A~^^^1^70.^78.^1^^^^~03/01/2005~
-~18262~^~431~^54.^2^^~1~^~A~^^^1^53.^55.^1^^^^~03/01/2005~
-~18262~^~432~^20.^0^^~1~^~AS~^^^^^^^^^^~03/01/2005~
-~18262~^~435~^112.^0^^~4~^~NC~^^^^^^^^^^~07/01/2007~
-~18262~^~601~^0.^2^^~1~^^^^^^^^^^^~08/01/1992~
-~18262~^~636~^2.^0^^~4~^~FLA~^^^^^^^^^^~03/01/2005~
-~18263~^~208~^276.^0^^~4~^~NC~^^^^^^^^^^~03/01/2005~
-~18263~^~262~^0.^0^^~4~^~RA~^^^^^^^^^^~03/01/2003~
-~18263~^~263~^0.^0^^~4~^~RA~^^^^^^^^^^~03/01/2003~
-~18263~^~268~^1153.^0^^~4~^~NC~^^^^^^^^^^~03/01/2005~
-~18263~^~301~^139.^2^^~1~^~A~^^^1^95.^184.^1^^^^~03/01/2005~
-~18263~^~304~^28.^2^^~1~^~A~^^^1^27.^28.^1^^^^~03/01/2005~
-~18263~^~305~^108.^2^^~1~^~A~^^^1^99.^117.^1^^^^~03/01/2005~
-~18263~^~306~^194.^1^^~1~^~A~^^^^^^^^^^~03/01/2005~
-~18263~^~307~^342.^0^^~4~^~BFSN~^~18262~^^^^^^^^^~08/01/2012~
-~18263~^~318~^1.^0^^~4~^~RA~^^^^^^^^^^~03/01/2005~
-~18263~^~319~^0.^0^^~4~^~RA~^^^^^^^^^^~03/01/2003~
-~18263~^~320~^0.^0^^~4~^~RA~^^^^^^^^^^~03/01/2005~
-~18263~^~321~^0.^0^^~4~^~RA~^^^^^^^^^^~03/01/2005~
-~18263~^~322~^0.^0^^~4~^~RA~^^^^^^^^^^~03/01/2005~
-~18263~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~
-~18263~^~334~^0.^0^^~4~^~RA~^^^^^^^^^^~03/01/2005~
-~18263~^~337~^0.^0^^~4~^~RA~^^^^^^^^^^~03/01/2005~
-~18263~^~338~^28.^0^^~4~^~RA~^^^^^^^^^^~03/01/2005~
-~18263~^~417~^86.^2^^~1~^~A~^^^1^76.^95.^1^^^^~03/01/2005~
-~18263~^~431~^66.^2^^~1~^~A~^^^1^62.^69.^1^^^^~03/01/2005~
-~18263~^~432~^20.^0^^~1~^~AS~^^^^^^^^^^~03/01/2005~
-~18263~^~435~^131.^0^^~4~^~NC~^^^^^^^^^^~07/01/2007~
-~18263~^~601~^0.^0^^~4~^~RA~^^^^^^^^^^~03/01/2005~
-~18263~^~636~^2.^0^^~4~^~RA~^^^^^^^^^^~03/01/2005~
-~18264~^~208~^223.^0^^~4~^~NC~^^^^^^^^^^~08/01/1992~
-~18264~^~262~^0.^0^^~4~^~FLC~^^^^^^^^^^~03/01/2003~
-~18264~^~263~^0.^0^^~4~^~FLC~^^^^^^^^^^~03/01/2003~
-~18264~^~268~^933.^0^^~4~^^^^^^^^^^^~05/01/2005~
-~18264~^~301~^178.^11^22.^~1~^^^^^^^^^^^~08/01/1992~
-~18264~^~304~^37.^0^^~4~^~FLA~^^^^^^^^^^~12/01/1997~
-~18264~^~305~^107.^0^^~4~^~FLA~^^^^^^^^^^~12/01/1997~
-~18264~^~306~^186.^1^^~1~^^^^^^^^^^^~08/01/1992~
-~18264~^~307~^353.^0^^~8~^~LC~^^^^^^^^^^~08/01/2012~
-~18264~^~318~^1.^0^^~4~^~FLA~^^^^^^^^^^~07/01/2012~
-~18264~^~319~^0.^0^^~4~^~FLC~^^^^^^^^^^~03/01/2003~
-~18264~^~320~^0.^0^^~4~^~NC~^^^^^^^^^^~03/01/2003~
-~18264~^~321~^2.^0^^~4~^~FLC~^^^^^^^^^^~03/01/2003~
-~18264~^~322~^0.^0^^~4~^~FLC~^^^^^^^^^^~03/01/2003~
-~18264~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~
-~18264~^~334~^0.^0^^~4~^~FLC~^^^^^^^^^^~03/01/2003~
-~18264~^~337~^0.^0^^~4~^~FLC~^^^^^^^^^^~03/01/2003~
-~18264~^~338~^92.^0^^~4~^~FLC~^^^^^^^^^^~03/01/2003~
-~18264~^~417~^64.^0^^~4~^~FLC~^^^^^^^^^^~03/01/2003~
-~18264~^~431~^25.^0^^~4~^~NR~^^^^^^^^^^~03/01/2003~
-~18264~^~432~^39.^0^^~4~^~NC~^^^^^^^^^^~08/01/1992~
-~18264~^~435~^81.^0^^~4~^~NC~^^^^^^^^^^~07/01/2012~
-~18264~^~601~^0.^1^^~1~^^^^^^^^^^^~08/01/1992~
-~18266~^~208~^203.^0^^~4~^^^^^^^^^^^~08/01/1992~
-~18266~^~262~^0.^0^^~4~^~FLC~^^^^^^^^^^~03/01/2003~
-~18266~^~263~^0.^0^^~4~^~FLC~^^^^^^^^^^~03/01/2003~
-~18266~^~268~^849.^0^^~4~^^^^^^^^^^^~05/01/2005~
-~18266~^~301~^265.^1^^~1~^^^^^^^^^^^~08/01/1992~
-~18266~^~304~^71.^0^^~4~^~FLA~^^^^^^^^^^~12/01/1997~
-~18266~^~305~^282.^0^^~4~^~FLA~^^^^^^^^^^~12/01/1997~
-~18266~^~306~^210.^1^^~1~^^^^^^^^^^^~08/01/1992~
-~18266~^~307~^364.^0^^~8~^~LC~^^^^^^^^^^~05/01/2010~
-~18266~^~318~^5.^0^^~4~^~NC~^^^^^^^^^^~03/01/2003~
-~18266~^~319~^0.^0^^~4~^~FLC~^^^^^^^^^^~03/01/2003~
-~18266~^~320~^0.^0^^~4~^~NC~^^^^^^^^^^~03/01/2003~
-~18266~^~321~^3.^0^^~4~^~FLC~^^^^^^^^^^~03/01/2003~
-~18266~^~322~^1.^0^^~4~^~FLC~^^^^^^^^^^~03/01/2003~
-~18266~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~
-~18266~^~334~^0.^0^^~4~^~FLC~^^^^^^^^^^~03/01/2003~
-~18266~^~337~^0.^0^^~4~^~FLC~^^^^^^^^^^~03/01/2003~
-~18266~^~338~^91.^0^^~4~^~FLC~^^^^^^^^^^~03/01/2003~
-~18266~^~417~^49.^0^^~4~^^^^^^^^^^^~01/01/1999~
-~18266~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~
-~18266~^~432~^49.^0^^~4~^^^^^^^^^^^~03/01/2003~
-~18266~^~435~^49.^0^^~4~^~NC~^^^^^^^^^^~07/01/2007~
-~18266~^~601~^0.^1^^~1~^^^^^^^^^^^~08/01/1992~
-~18268~^~208~^213.^0^^~4~^~NC~^^^^^^^^^^~08/01/1992~
-~18268~^~268~^891.^0^^~4~^^^^^^^^^^^
-~18268~^~301~^107.^52^2.^~1~^^^^^^^^^^^~08/01/1992~
-~18268~^~304~^17.^26^0.^~1~^^^^^^^^^^^~08/01/1992~
-~18268~^~305~^139.^24^2.^~1~^^^^^^^^^^^~08/01/1992~
-~18268~^~306~^134.^46^3.^~1~^^^^^^^^^^^~08/01/1992~
-~18268~^~307~^495.^46^8.^~1~^^^^^^^^^^^~08/01/1992~
-~18268~^~318~^187.^39^12.^~1~^^^^^^^^^^^~08/01/1992~
-~18268~^~319~^53.^0^^~4~^~NC~^^^^^^^^^^~06/01/2002~
-~18268~^~320~^54.^0^^~4~^~NC~^^^^^^^^^^~06/01/2002~
-~18268~^~417~^52.^0^^~4~^~FLA~^^^^^^^^^^~03/01/1998~
-~18268~^~431~^28.^0^^~4~^~NC~^^^^^^^^^^~05/01/2000~
-~18268~^~432~^24.^8^0.^~1~^^^^^^^^^^^~08/01/1992~
-~18268~^~435~^72.^0^^~4~^~NC~^^^^^^^^^^~01/01/2001~
-~18268~^~601~^82.^1^^~1~^^^^^^^^^^^~08/01/1992~
-~18269~^~208~^229.^0^^~4~^~NC~^^^^^^^^^^~08/01/1992~
-~18269~^~268~^958.^0^^~4~^^^^^^^^^^^
-~18269~^~301~^100.^0^^~1~^^^^^^^^^^^~08/01/1992~
-~18269~^~304~^17.^0^^~1~^^^^^^^^^^^~08/01/1992~
-~18269~^~305~^117.^0^^~1~^^^^^^^^^^^~08/01/1992~
-~18269~^~306~^134.^0^^~1~^^^^^^^^^^^~08/01/1992~
-~18269~^~307~^479.^0^^~1~^^^^^^^^^^^~08/01/1992~
-~18269~^~318~^503.^0^^~4~^~NC~^^^^^^^^^^~04/01/2002~
-~18269~^~319~^118.^0^^~4~^^^^^^^^^^^~04/01/2002~
-~18269~^~320~^124.^0^^~4~^~NC~^^^^^^^^^^~04/01/2002~
-~18269~^~321~^66.^0^^~4~^~RK~^^^^^^^^^^~04/01/2002~
-~18269~^~417~^43.^0^^~4~^~RK~^^^^^^^^^^~12/01/1997~
-~18269~^~431~^20.^0^^~4~^~NC~^^^^^^^^^^~05/01/2000~
-~18269~^~432~^23.^0^^~1~^^^^^^^^^^^~08/01/1992~
-~18269~^~435~^57.^0^^~4~^~NC~^^^^^^^^^^~04/01/2002~
-~18269~^~601~^116.^0^^~1~^^^^^^^^^^^~08/01/1992~
-~18270~^~208~^337.^0^^~4~^~NC~^^^^^^^^^^~08/01/1992~
-~18270~^~262~^0.^0^^~4~^~RA~^^^^^^^^^^~03/01/2003~
-~18270~^~263~^0.^0^^~4~^~RA~^^^^^^^^^^~03/01/2003~
-~18270~^~268~^1410.^0^^~4~^^^^^^^^^^^~03/01/2007~
-~18270~^~301~^278.^0^^~1~^^^^^^^^^^^~08/01/1992~
-~18270~^~304~^24.^0^^~1~^^^^^^^^^^^~08/01/1992~
-~18270~^~305~^189.^0^^~1~^^^^^^^^^^^~08/01/1992~
-~18270~^~306~^144.^0^^~1~^^^^^^^^^^^~08/01/1992~
-~18270~^~307~^668.^0^^~1~^^^^^^^^^^^~08/01/1992~
-~18270~^~318~^186.^0^^~4~^~NC~^^^^^^^^^^~03/01/2003~
-~18270~^~319~^38.^0^^~4~^~RA~^^^^^^^^^^~03/01/2003~
-~18270~^~320~^41.^0^^~4~^~NC~^^^^^^^^^^~03/01/2003~
-~18270~^~321~^27.^0^^~4~^~RA~^^^^^^^^^^~03/01/2003~
-~18270~^~322~^17.^0^^~4~^~RA~^^^^^^^^^^~03/01/2003~
-~18270~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~
-~18270~^~334~^1.^0^^~4~^~RA~^^^^^^^^^^~03/01/2003~
-~18270~^~337~^0.^0^^~4~^~RA~^^^^^^^^^^~03/01/2003~
-~18270~^~338~^401.^0^^~4~^~RA~^^^^^^^^^^~03/01/2003~
-~18270~^~417~^89.^0^^~4~^~FLA~^^^^^^^^^^~05/01/2003~
-~18270~^~431~^69.^0^^~4~^~FLA~^^^^^^^^^^~05/01/2003~
-~18270~^~432~^20.^0^^~1~^^^^^^^^^^^~08/01/1992~
-~18270~^~435~^137.^0^^~4~^~NC~^^^^^^^^^^~03/01/2007~
-~18270~^~601~^45.^0^^~1~^^^^^^^^^^^~08/01/1992~
-~18271~^~208~^417.^0^^~4~^~NC~^^^^^^^^^^~08/01/1992~
-~18271~^~262~^0.^0^^~4~^~FLC~^^^^^^^^^^~03/01/2003~
-~18271~^~263~^0.^0^^~4~^~FLC~^^^^^^^^^^~03/01/2003~
-~18271~^~268~^1745.^0^^~4~^^^^^^^^^^^~05/01/2005~
-~18271~^~301~^25.^13^1.^~1~^^^^^^^^^^^~08/01/1992~
-~18271~^~304~^26.^13^1.^~1~^^^^^^^^^^^~08/01/1992~
-~18271~^~305~^97.^13^3.^~1~^^^^^^^^^^^~08/01/1992~
-~18271~^~306~^112.^13^5.^~1~^^^^^^^^^^^~08/01/1992~
-~18271~^~307~^256.^0^^~8~^~LC~^^^^^^^^^^~05/01/2010~
-~18271~^~318~^0.^0^^~4~^~NC~^^^^^^^^^^~03/01/2003~
-~18271~^~319~^0.^0^^~4~^~FLC~^^^^^^^^^^~03/01/2003~
-~18271~^~320~^0.^0^^~4~^~NC~^^^^^^^^^^~03/01/2003~
-~18271~^~321~^0.^0^^~4~^~FLC~^^^^^^^^^^~03/01/2003~
-~18271~^~322~^0.^0^^~4~^~FLC~^^^^^^^^^^~03/01/2003~
-~18271~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~
-~18271~^~334~^0.^0^^~4~^~FLC~^^^^^^^^^^~03/01/2003~
-~18271~^~337~^0.^0^^~4~^~FLC~^^^^^^^^^^~03/01/2003~
-~18271~^~338~^17.^0^^~4~^~FLC~^^^^^^^^^^~03/01/2003~
-~18271~^~417~^173.^0^^~4~^~FLC~^^^^^^^^^^~03/01/2003~
-~18271~^~431~^168.^0^^~4~^^^^^^^^^^^~03/01/2003~
-~18271~^~432~^5.^8^0.^~1~^^^^^^^^^^^~08/01/1992~
-~18271~^~435~^291.^0^^~4~^~NC~^^^^^^^^^^~03/01/2007~
-~18271~^~601~^0.^0^^~1~^^^^^^^^^^^~08/01/1992~
-~18272~^~208~^402.^0^^~4~^~NC~^^^^^^^^^^~08/01/1992~
-~18272~^~262~^0.^0^^~4~^~FLC~^^^^^^^^^^~03/01/2003~
-~18272~^~263~^0.^0^^~4~^~FLC~^^^^^^^^^^~03/01/2003~
-~18272~^~268~^1682.^0^^~4~^^^^^^^^^^^~05/01/2005~
-~18272~^~301~^44.^13^3.^~1~^^^^^^^^^^^~08/01/1992~
-~18272~^~304~^31.^13^1.^~1~^^^^^^^^^^^~08/01/1992~
-~18272~^~305~^103.^13^3.^~1~^^^^^^^^^^^~08/01/1992~
-~18272~^~306~^145.^13^6.^~1~^^^^^^^^^^^~08/01/1992~
-~18272~^~307~^298.^0^^~8~^~LC~^^^^^^^^^^~08/01/2012~
-~18272~^~318~^0.^1^^~1~^^^^^^^^^^^~07/01/2012~
-~18272~^~319~^0.^0^^~4~^~FLC~^^^^^^^^^^~03/01/2003~
-~18272~^~320~^0.^0^^~4~^~NC~^^^^^^^^^^~03/01/2003~
-~18272~^~321~^0.^0^^~4~^~FLC~^^^^^^^^^^~03/01/2003~
-~18272~^~322~^0.^0^^~4~^~FLC~^^^^^^^^^^~03/01/2003~
-~18272~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~
-~18272~^~334~^0.^0^^~4~^~FLC~^^^^^^^^^^~03/01/2003~
-~18272~^~337~^0.^0^^~4~^~FLC~^^^^^^^^^^~03/01/2003~
-~18272~^~338~^14.^0^^~4~^~FLC~^^^^^^^^^^~03/01/2003~
-~18272~^~417~^140.^0^^~4~^~FLC~^^^^^^^^^^~03/01/2003~
-~18272~^~431~^136.^0^^~4~^~NR~^^^^^^^^^^~03/01/2003~
-~18272~^~432~^4.^0^^~4~^~NC~^^^^^^^^^^~07/01/2012~
-~18272~^~435~^236.^0^^~4~^~NC~^^^^^^^^^^~03/01/2007~
-~18272~^~601~^0.^0^^~1~^^^^^^^^^^^~08/01/1992~
-~18273~^~208~^296.^0^^~4~^~NC~^^^^^^^^^^~08/01/1992~
-~18273~^~268~^1238.^0^^~4~^^^^^^^^^^^~03/01/2006~
-~18273~^~301~^200.^0^^~1~^^^^^^^^^^^~08/01/1992~
-~18273~^~304~^17.^0^^~1~^^^^^^^^^^^~08/01/1992~
-~18273~^~305~^153.^0^^~1~^^^^^^^^^^^~08/01/1992~
-~18273~^~306~^121.^0^^~1~^^^^^^^^^^^~08/01/1992~
-~18273~^~307~^467.^0^^~1~^^^^^^^^^^^~08/01/1992~
-~18273~^~318~^140.^0^^~1~^^^^^^^^^^^~08/01/1992~
-~18273~^~319~^39.^0^^~4~^~NC~^^^^^^^^^^~06/01/2002~
-~18273~^~320~^40.^0^^~4~^~NC~^^^^^^^^^^~06/01/2002~
-~18273~^~417~^51.^0^^~4~^~RK~^^^^^^^^^^~12/01/1997~
-~18273~^~431~^38.^0^^~4~^~NC~^^^^^^^^^^~05/01/2000~
-~18273~^~432~^13.^0^^~1~^^^^^^^^^^^~08/01/1992~
-~18273~^~435~^78.^0^^~4~^~NC~^^^^^^^^^^~07/01/2007~
-~18273~^~601~^39.^0^^~1~^^^^^^^^^^^~08/01/1992~
-~18274~^~208~^375.^0^^~4~^~NC~^^^^^^^^^^~07/01/2014~
-~18274~^~262~^0.^0^^~4~^~FLA~^^^^^^^^^^~11/01/2005~
-~18274~^~263~^0.^0^^~4~^~FLA~^^^^^^^^^^~11/01/2005~
-~18274~^~268~^1568.^0^^~4~^~NC~^^^^^^^^^^~07/01/2014~
-~18274~^~301~^44.^15^0.^~1~^~A~^^^1^36.^59.^2^40.^47.^~2, 3~^~07/01/2014~
-~18274~^~304~^10.^15^0.^~1~^~A~^^^1^9.^12.^6^9.^9.^~2, 3~^~11/01/2005~
-~18274~^~305~^146.^15^4.^~1~^~A~^^^1^122.^165.^2^127.^163.^~2, 3~^~07/01/2014~
-~18274~^~306~^121.^15^7.^~1~^~A~^^^1^79.^167.^2^91.^150.^~2, 3~^~07/01/2014~
-~18274~^~307~^336.^15^4.^~1~^~A~^^^1^258.^446.^3^321.^350.^~2, 3~^~07/01/2014~
-~18274~^~318~^73.^0^^~4~^~NC~^^^^^^^^^^~07/01/2014~
-~18274~^~319~^21.^3^^~1~^~A~^^^1^18.^27.^^^^~2, 3~^~07/01/2014~
-~18274~^~320~^21.^0^^~4~^~NC~^^^^^^^^^^~07/01/2014~
-~18274~^~321~^2.^0^^~4~^~FLA~^^^^^^^^^^~11/01/2005~
-~18274~^~322~^0.^0^^~4~^~FLA~^^^^^^^^^^~11/01/2005~
-~18274~^~324~^4.^0^^~4~^~FLA~^^^^^^^^^^~04/01/2009~
-~18274~^~334~^1.^0^^~4~^~FLA~^^^^^^^^^^~11/01/2005~
-~18274~^~337~^0.^0^^~4~^~FLA~^^^^^^^^^^~11/01/2005~
-~18274~^~338~^37.^0^^~4~^~FLA~^^^^^^^^^^~11/01/2005~
-~18274~^~417~^48.^1^^~1~^~A~^^^^^^^^^^~11/01/2005~
-~18274~^~431~^36.^1^^~1~^~A~^^^^^^^^^^~11/01/2005~
-~18274~^~432~^12.^0^^~1~^~AS~^^^^^^^^^^~11/01/2005~
-~18274~^~435~^73.^0^^~4~^~NC~^^^^^^^^^^~06/01/2009~
-~18274~^~601~^30.^1^^~1~^^^^^^^^^^^~08/01/2012~
-~18275~^~208~^293.^0^^~4~^~NC~^^^^^^^^^^~04/01/2012~
-~18275~^~268~^1224.^0^^~4~^~NC~^^^^^^^^^^~04/01/2012~
-~18275~^~301~^18.^1^^~9~^~MC~^^^^^^^^^^~04/01/2012~
-~18275~^~304~^13.^2^^~1~^^^^^^^^^^^~08/01/1992~
-~18275~^~305~^220.^2^^~1~^^^^^^^^^^^~08/01/1992~
-~18275~^~306~^48.^1^^~9~^~MC~^^^^^^^^^^~04/01/2012~
-~18275~^~307~^479.^1^^~9~^~MC~^^^^^^^^^^~04/01/2012~
-~18275~^~318~^18.^1^^~9~^~MC~^^^^^^^^^^~04/01/2012~
-~18275~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2002~
-~18275~^~320~^1.^0^^~4~^~NC~^^^^^^^^^^~08/01/2008~
-~18275~^~417~^53.^1^^~9~^~MC~^^^^^^^^^^~04/01/2012~
-~18275~^~601~^0.^1^^~9~^~MC~^^^^^^^^^^~04/01/2012~
-~18277~^~208~^313.^0^^~4~^~NC~^^^^^^^^^^~08/01/1992~
-~18277~^~262~^0.^0^^~4~^~FLC~^^^^^^^^^^~03/01/2003~
-~18277~^~263~^0.^0^^~4~^~FLC~^^^^^^^^^^~03/01/2003~
-~18277~^~268~^1310.^0^^~4~^^^^^^^^^^^~05/01/2005~
-~18277~^~301~^13.^1^^~1~^^^^^^^^^^^~08/01/1992~
-~18277~^~304~^12.^0^^~4~^~FLA~^^^^^^^^^^~12/01/1997~
-~18277~^~305~^59.^0^^~4~^~FLA~^^^^^^^^^^~12/01/1997~
-~18277~^~306~^83.^1^^~1~^^^^^^^^^^^~08/01/1992~
-~18277~^~307~^417.^0^^~8~^~LC~^^^^^^^^^^~08/01/2012~
-~18277~^~318~^318.^1^^~1~^^^^^^^^^^^~07/01/2012~
-~18277~^~319~^94.^0^^~4~^~FLC~^^^^^^^^^^~03/01/2003~
-~18277~^~320~^94.^0^^~4~^~NC~^^^^^^^^^^~03/01/2003~
-~18277~^~321~^3.^0^^~4~^~FLC~^^^^^^^^^^~03/01/2003~
-~18277~^~322~^0.^0^^~4~^~FLC~^^^^^^^^^^~03/01/2003~
-~18277~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~
-~18277~^~334~^0.^0^^~4~^~FLC~^^^^^^^^^^~03/01/2003~
-~18277~^~337~^0.^0^^~4~^~FLC~^^^^^^^^^^~03/01/2003~
-~18277~^~338~^19.^0^^~4~^~FLC~^^^^^^^^^^~03/01/2003~
-~18277~^~417~^65.^0^^~4~^~FLC~^^^^^^^^^^~03/01/2003~
-~18277~^~431~^54.^0^^~4~^~NR~^^^^^^^^^^~03/01/2003~
-~18277~^~432~^11.^0^^~4~^~NC~^^^^^^^^^^~08/01/1992~
-~18277~^~435~^103.^0^^~4~^~NC~^^^^^^^^^^~03/01/2007~
-~18277~^~601~^6.^0^^~4~^~FLA~^^^^^^^^^^~12/01/1997~
-~18278~^~208~^285.^0^^~4~^~NC~^^^^^^^^^^~08/01/1992~
-~18278~^~268~^1192.^0^^~4~^^^^^^^^^^^
-~18278~^~301~^189.^0^^~1~^^^^^^^^^^^~08/01/1992~
-~18278~^~304~^16.^0^^~1~^^^^^^^^^^^~08/01/1992~
-~18278~^~305~^145.^0^^~1~^^^^^^^^^^^~08/01/1992~
-~18278~^~306~^123.^0^^~1~^^^^^^^^^^^~08/01/1992~
-~18278~^~307~^441.^0^^~1~^^^^^^^^^^^~08/01/1992~
-~18278~^~318~^141.^0^^~1~^^^^^^^^^^^~08/01/1992~
-~18278~^~319~^37.^0^^~4~^~NC~^^^^^^^^^^~06/01/2002~
-~18278~^~320~^38.^0^^~4~^~NC~^^^^^^^^^^~06/01/2002~
-~18278~^~417~^48.^0^^~4~^~RK~^^^^^^^^^^~12/01/1997~
-~18278~^~431~^36.^0^^~4~^~NC~^^^^^^^^^^~05/01/2000~
-~18278~^~432~^12.^0^^~1~^^^^^^^^^^^~08/01/1992~
-~18278~^~435~^73.^0^^~4~^~NC~^^^^^^^^^^~01/01/2001~
-~18278~^~601~^37.^0^^~1~^^^^^^^^^^^~08/01/1992~
-~18279~^~208~^305.^0^^~4~^~NC~^^^^^^^^^^~08/01/1992~
-~18279~^~262~^0.^0^^~4~^~FLC~^^^^^^^^^^~03/01/2003~
-~18279~^~263~^0.^0^^~4~^~FLC~^^^^^^^^^^~03/01/2003~
-~18279~^~268~^1278.^0^^~4~^~NC~^^^^^^^^^^~07/01/2013~
-~18279~^~301~^74.^2^^~1~^^^^^^^^^^^~11/01/2001~
-~18279~^~304~^32.^0^^~4~^~FLA~^^^^^^^^^^~11/01/1997~
-~18279~^~305~^284.^2^^~1~^^^^^^^^^^^~11/01/2001~
-~18279~^~306~^69.^1^^~1~^^^^^^^^^^^~08/01/1992~
-~18279~^~307~^385.^0^^~4~^~NR~^^^^^^^^^^~07/01/2017~
-~18279~^~318~^208.^2^^~1~^^^^^^^^^^^~07/01/2012~
-~18279~^~319~^49.^0^^~4~^~FLC~^^^^^^^^^^~03/01/2003~
-~18279~^~320~^52.^0^^~4~^~NC~^^^^^^^^^^~03/01/2003~
-~18279~^~321~^20.^0^^~4~^~FLC~^^^^^^^^^^~03/01/2003~
-~18279~^~322~^12.^0^^~4~^~FLC~^^^^^^^^^^~03/01/2003~
-~18279~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~
-~18279~^~334~^0.^0^^~4~^~FLC~^^^^^^^^^^~03/01/2003~
-~18279~^~337~^0.^0^^~4~^~FLC~^^^^^^^^^^~03/01/2003~
-~18279~^~338~^263.^0^^~4~^~FLC~^^^^^^^^^^~03/01/2003~
-~18279~^~417~^62.^0^^~4~^~FLA~^^^^^^^^^^~07/01/2013~
-~18279~^~431~^28.^0^^~4~^~NC~^^^^^^^^^^~07/01/2013~
-~18279~^~432~^34.^0^^~4~^~NC~^^^^^^^^^^~08/01/1992~
-~18279~^~435~^82.^0^^~4~^~NC~^^^^^^^^^^~07/01/2013~
-~18279~^~601~^26.^0^^~4~^~FLA~^^^^^^^^^^~11/01/1997~
-~18280~^~208~^321.^0^^~4~^~NC~^^^^^^^^^^~08/01/1992~
-~18280~^~268~^1343.^0^^~4~^^^^^^^^^^^
-~18280~^~301~^75.^0^^~1~^^^^^^^^^^^~08/01/1992~
-~18280~^~304~^21.^0^^~1~^^^^^^^^^^^~08/01/1992~
-~18280~^~305~^384.^0^^~1~^^^^^^^^^^^~08/01/1992~
-~18280~^~306~^131.^0^^~1~^^^^^^^^^^^~08/01/1992~
-~18280~^~307~^795.^0^^~1~^^^^^^^^^^^~08/01/1992~
-~18280~^~318~^210.^0^^~1~^^^^^^^^^^^~08/01/1992~
-~18280~^~319~^36.^0^^~4~^~NC~^^^^^^^^^^~06/01/2002~
-~18280~^~320~^41.^0^^~4~^~NC~^^^^^^^^^^~06/01/2002~
-~18280~^~417~^57.^0^^~4~^~RP~^^^^^^^^^^~11/01/1998~
-~18280~^~431~^46.^0^^~4~^~NC~^^^^^^^^^^~05/01/2000~
-~18280~^~432~^11.^0^^~1~^^^^^^^^^^^~08/01/1992~
-~18280~^~435~^89.^0^^~4~^~NC~^^^^^^^^^^~01/01/2001~
-~18280~^~601~^62.^0^^~1~^^^^^^^^^^^~08/01/1992~
-~18281~^~208~^346.^0^^~4~^~NC~^^^^^^^^^^~08/01/1992~
-~18281~^~268~^1448.^0^^~4~^^^^^^^^^^^
-~18281~^~301~^19.^1^^~1~^^^^^^^^^^^~08/01/1992~
-~18281~^~304~^14.^0^^~4~^~FLA~^^^^^^^^^^~11/01/1997~
-~18281~^~305~^151.^0^^~4~^~FLA~^^^^^^^^^^~11/01/1997~
-~18281~^~306~^92.^1^^~1~^^^^^^^^^^^~08/01/1992~
-~18281~^~307~^430.^1^^~1~^^^^^^^^^^^~08/01/1992~
-~18281~^~318~^97.^1^^~1~^^^^^^^^^^^~08/01/1992~
-~18281~^~319~^16.^0^^~4~^~NC~^^^^^^^^^^~06/01/2002~
-~18281~^~320~^18.^0^^~4~^~NC~^^^^^^^^^^~06/01/2002~
-~18281~^~417~^57.^0^^~4~^~FLA~^^^^^^^^^^~03/01/1998~
-~18281~^~431~^45.^0^^~4~^~NC~^^^^^^^^^^~05/01/2000~
-~18281~^~432~^12.^0^^~4~^^^^^^^^^^^~08/01/1992~
-~18281~^~435~^89.^0^^~4~^~NC~^^^^^^^^^^~01/01/2001~
-~18281~^~601~^13.^0^^~4~^~FLA~^^^^^^^^^^~11/01/1997~
-~18282~^~208~^316.^0^^~4~^~NC~^^^^^^^^^^~08/01/1992~
-~18282~^~268~^1322.^0^^~4~^^^^^^^^^^^
-~18282~^~301~^259.^0^^~1~^^^^^^^^^^^~08/01/1992~
-~18282~^~304~^23.^0^^~1~^^^^^^^^^^^~08/01/1992~
-~18282~^~305~^177.^0^^~1~^^^^^^^^^^^~08/01/1992~
-~18282~^~306~^145.^0^^~1~^^^^^^^^^^^~08/01/1992~
-~18282~^~307~^585.^0^^~1~^^^^^^^^^^^~08/01/1992~
-~18282~^~318~^241.^0^^~1~^^^^^^^^^^^~08/01/1992~
-~18282~^~417~^75.^0^^~4~^~FLA~^^^^^^^^^^~05/01/2003~
-~18282~^~431~^57.^0^^~4~^~FLA~^^^^^^^^^^~05/01/2003~
-~18282~^~432~^18.^0^^~1~^^^^^^^^^^^~08/01/1992~
-~18282~^~435~^115.^0^^~4~^~NC~^^^^^^^^^^~05/01/2003~
-~18282~^~601~^42.^0^^~1~^^^^^^^^^^^~08/01/1992~
-~18283~^~208~^270.^0^^~4~^~NC~^^^^^^^^^^~08/01/1992~
-~18283~^~262~^0.^0^^~4~^~FLC~^^^^^^^^^^~03/01/2003~
-~18283~^~263~^0.^0^^~4~^~FLC~^^^^^^^^^^~03/01/2003~
-~18283~^~268~^1130.^0^^~4~^^^^^^^^^^^~05/01/2005~
-~18283~^~301~^63.^2^^~1~^^^^^^^^^^^~11/01/2001~
-~18283~^~304~^157.^2^^~1~^^^^^^^^^^^~11/01/2001~
-~18283~^~305~^376.^2^^~1~^^^^^^^^^^^~11/01/2001~
-~18283~^~306~^507.^2^^~1~^^^^^^^^^^^~11/01/2001~
-~18283~^~307~^393.^2^^~1~^^^^^^^^^^^~11/01/2001~
-~18283~^~318~^0.^0^^~4~^~NC~^^^^^^^^^^~03/01/2003~
-~18283~^~319~^0.^0^^~4~^~FLC~^^^^^^^^^^~03/01/2003~
-~18283~^~320~^0.^0^^~4~^~NC~^^^^^^^^^^~03/01/2003~
-~18283~^~321~^0.^0^^~4~^~FLC~^^^^^^^^^^~03/01/2003~
-~18283~^~322~^0.^0^^~4~^~FLC~^^^^^^^^^^~03/01/2003~
-~18283~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~
-~18283~^~334~^0.^0^^~4~^~FLC~^^^^^^^^^^~03/01/2003~
-~18283~^~337~^0.^0^^~4~^~FLC~^^^^^^^^^^~03/01/2003~
-~18283~^~338~^13.^0^^~4~^~FLC~^^^^^^^^^^~03/01/2003~
-~18283~^~417~^89.^0^^~4~^~FLC~^^^^^^^^^^~03/01/2003~
-~18283~^~431~^71.^0^^~4~^^^^^^^^^^^~03/01/2003~
-~18283~^~432~^18.^8^0.^~1~^^^^^^^^^^^~08/01/1992~
-~18283~^~435~^139.^0^^~4~^~NC~^^^^^^^^^^~03/01/2007~
-~18283~^~601~^0.^0^^~4~^^^^^^^^^^^~08/01/1992~
-~18284~^~208~^396.^0^^~4~^~NC~^^^^^^^^^^~08/01/1992~
-~18284~^~268~^1657.^0^^~4~^^^^^^^^^^^
-~18284~^~301~^36.^1^^~1~^^^^^^^^^^^~08/01/1992~
-~18284~^~304~^87.^1^^~1~^^^^^^^^^^^~08/01/1992~
-~18284~^~305~^480.^1^^~1~^^^^^^^^^^^~08/01/1992~
-~18284~^~306~^200.^1^^~1~^^^^^^^^^^^~08/01/1992~
-~18284~^~307~^700.^1^^~1~^^^^^^^^^^^~08/01/1992~
-~18284~^~318~^0.^0^^~1~^^^^^^^^^^^~08/01/1992~
-~18284~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2002~
-~18284~^~320~^0.^0^^~4~^~NC~^^^^^^^^^^~06/01/2002~
-~18284~^~417~^85.^0^^~4~^~FLA~^^^^^^^^^^~11/01/1997~
-~18284~^~431~^62.^0^^~4~^~NC~^^^^^^^^^^~05/01/2000~
-~18284~^~432~^23.^0^^~4~^^^^^^^^^^^~08/01/1992~
-~18284~^~435~^128.^0^^~4~^~NC~^^^^^^^^^^~01/01/2001~
-~18284~^~601~^0.^0^^~1~^^^^^^^^^^^~08/01/1992~
-~18288~^~208~^233.^0^^~4~^~NC~^^^^^^^^^^~08/01/2012~
-~18288~^~262~^0.^0^^~4~^~FLA~^^^^^^^^^^~10/01/2004~
-~18288~^~263~^0.^0^^~4~^~FLA~^^^^^^^^^^~10/01/2004~
-~18288~^~268~^977.^0^^~4~^~NC~^^^^^^^^^^~08/01/2012~
-~18288~^~301~^78.^6^0.^~1~^~A~^^^1^75.^81.^5^75.^80.^~2, 3~^~08/01/2012~
-~18288~^~304~^14.^6^0.^~1~^~A~^^^1^14.^14.^5^13.^13.^~2, 3~^~08/01/2004~
-~18288~^~305~^215.^6^1.^~1~^~A~^^^1^212.^219.^5^211.^218.^~2, 3~^~08/01/2012~
-~18288~^~306~^90.^6^2.^~1~^~A~^^^1^83.^98.^5^84.^95.^~2, 3~^~08/01/2012~
-~18288~^~307~^461.^6^3.^~1~^~A~^^^1^449.^474.^5^451.^470.^~2, 3~^~08/01/2012~
-~18288~^~318~^1511.^0^^~1~^~AS~^^^^^^^^^^~08/01/2012~
-~18288~^~319~^453.^2^^~1~^~A~^^^1^451.^454.^1^^^^~08/01/2012~
-~18288~^~320~^453.^0^^~1~^~AS~^^^^^^^^^^~08/01/2012~
-~18288~^~321~^1.^1^^~1~^~A~^^^^^^^^^^~08/01/2012~
-~18288~^~322~^0.^1^^~1~^~A~^^^^^^^^^~1~^~08/01/2012~
-~18288~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~
-~18288~^~334~^0.^1^^~1~^~A~^^^^^^^^^^~08/01/2012~
-~18288~^~337~^0.^1^^~1~^~A~^^^^^^^^^~1~^~08/01/2012~
-~18288~^~338~^59.^1^^~1~^~A~^^^^^^^^^^~08/01/2012~
-~18288~^~417~^71.^0^^~4~^~FLA~^^^^^^^^^^~12/01/2004~
-~18288~^~431~^57.^0^^~4~^~O~^^^^^^^^^^~12/01/2004~
-~18288~^~432~^14.^0^^~4~^~NC~^^^^^^^^^^~12/01/2004~
-~18288~^~435~^110.^0^^~4~^~NC~^^^^^^^^^^~07/01/2012~
-~18288~^~601~^18.^0^^~4~^~FLA~^^^^^^^^^^~12/01/2004~
-~18289~^~208~^368.^0^^~4~^~NC~^^^^^^^^^^~04/01/2011~
-~18289~^~268~^1541.^0^^~4~^~NC~^^^^^^^^^^~04/01/2011~
-~18289~^~301~^344.^17^2.^~1~^~A~^^^1^253.^421.^6^337.^351.^~2, 3~^~04/01/2011~
-~18289~^~304~^28.^17^0.^~1~^~A~^^^1^21.^31.^7^26.^28.^~2, 3~^~04/01/2011~
-~18289~^~305~^600.^17^3.^~1~^~A~^^^1^546.^727.^7^592.^607.^~2, 3~^~04/01/2011~
-~18289~^~306~^191.^17^5.^~1~^~A~^^^1^115.^334.^5^177.^204.^~2, 3~^~04/01/2011~
-~18289~^~307~^1082.^17^13.^~1~^~A~^^^1^964.^1290.^7^1050.^1112.^~2, 3~^~04/01/2011~
-~18289~^~601~^2.^5^0.^~1~^~A~^^^1^1.^21.^2^1.^2.^~1, 2, 3~^~04/01/2011~
-~18290~^~208~^194.^0^^~4~^~NC~^^^^^^^^^^~08/01/1992~
-~18290~^~268~^812.^0^^~4~^^^^^^^^^^^~03/01/2006~
-~18290~^~301~^126.^0^^~1~^^^^^^^^^^^~08/01/1992~
-~18290~^~304~^20.^0^^~1~^^^^^^^^^^^~08/01/1992~
-~18290~^~305~^334.^0^^~1~^^^^^^^^^^^~08/01/1992~
-~18290~^~306~^175.^0^^~1~^^^^^^^^^^^~08/01/1992~
-~18290~^~307~^628.^0^^~1~^^^^^^^^^^^~08/01/1992~
-~18290~^~318~^32.^0^^~1~^^^^^^^^^^^~08/01/1992~
-~18290~^~319~^10.^0^^~4~^~NC~^^^^^^^^^^~06/01/2002~
-~18290~^~320~^10.^0^^~4~^~NC~^^^^^^^^^^~06/01/2002~
-~18290~^~417~^37.^0^^~4~^~FLA~^^^^^^^^^^~04/01/1998~
-~18290~^~431~^28.^0^^~4~^~NC~^^^^^^^^^^~05/01/2000~
-~18290~^~432~^9.^0^^~4~^^^^^^^^^^^~08/01/1992~
-~18290~^~435~^57.^0^^~4~^~NC~^^^^^^^^^^~07/01/2007~
-~18290~^~601~^12.^0^^~4~^^^^^^^^^^^~08/01/1992~
-~18291~^~208~^355.^0^^~4~^~NC~^^^^^^^^^^~08/01/1992~
-~18291~^~262~^0.^0^^~4~^~FLC~^^^^^^^^^^~03/01/2003~
-~18291~^~263~^0.^0^^~4~^~FLC~^^^^^^^^^^~03/01/2003~
-~18291~^~268~^1485.^0^^~4~^^^^^^^^^^^~05/01/2005~
-~18291~^~301~^342.^134^13.^~1~^^^^^^^^^^^~08/01/1992~
-~18291~^~304~^31.^60^1.^~1~^^^^^^^^^^^~08/01/1992~
-~18291~^~305~^627.^135^16.^~1~^^^^^^^^^^^~08/01/1992~
-~18291~^~306~^191.^82^3.^~1~^^^^^^^^^^^~08/01/1992~
-~18291~^~307~^1148.^0^^~4~^~NR~^^^^^^^^^^~07/01/2017~
-~18291~^~318~^1.^0^^~4~^~NC~^^^^^^^^^^~07/01/2017~
-~18291~^~319~^0.^0^^~4~^~FLC~^^^^^^^^^^~03/01/2003~
-~18291~^~320~^0.^0^^~4~^~NC~^^^^^^^^^^~03/01/2003~
-~18291~^~321~^1.^0^^~4~^~FLC~^^^^^^^^^^~03/01/2003~
-~18291~^~322~^0.^0^^~4~^~FLC~^^^^^^^^^^~03/01/2003~
-~18291~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~
-~18291~^~334~^0.^0^^~4~^~FLC~^^^^^^^^^^~03/01/2003~
-~18291~^~337~^0.^0^^~4~^~FLC~^^^^^^^^^^~03/01/2003~
-~18291~^~338~^78.^0^^~4~^~FLC~^^^^^^^^^^~03/01/2003~
-~18291~^~417~^136.^0^^~4~^~FLC~^^^^^^^^^^~03/01/2003~
-~18291~^~431~^127.^0^^~4~^~NR~^^^^^^^^^^~03/01/2003~
-~18291~^~432~^9.^6^0.^~1~^^^^^^^^^^^~08/01/1992~
-~18291~^~435~^225.^0^^~4~^~NC~^^^^^^^^^^~03/01/2007~
-~18291~^~601~^0.^1^^~1~^^^^^^^^^^^~08/01/1992~
-~18292~^~208~^218.^0^^~4~^~NC~^^^^^^^^^^~08/01/1992~
-~18292~^~268~^912.^0^^~4~^^^^^^^^^^^
-~18292~^~301~^215.^0^^~1~^^^^^^^^^^^~08/01/1992~
-~18292~^~304~^22.^0^^~1~^^^^^^^^^^^~08/01/1992~
-~18292~^~305~^313.^0^^~1~^^^^^^^^^^^~08/01/1992~
-~18292~^~306~^199.^0^^~1~^^^^^^^^^^^~08/01/1992~
-~18292~^~307~^505.^0^^~1~^^^^^^^^^^^~08/01/1992~
-~18292~^~318~^250.^0^^~1~^^^^^^^^^^^~08/01/1992~
-~18292~^~319~^70.^0^^~4~^~NC~^^^^^^^^^^~06/01/2002~
-~18292~^~320~^71.^0^^~4~^~NC~^^^^^^^^^^~06/01/2002~
-~18292~^~417~^36.^0^^~4~^~FLA~^^^^^^^^^^~04/01/1998~
-~18292~^~431~^25.^0^^~4~^~NC~^^^^^^^^^^~05/01/2000~
-~18292~^~432~^11.^0^^~1~^^^^^^^^^^^~08/01/1992~
-~18292~^~435~^54.^0^^~4~^~NC~^^^^^^^^^^~01/01/2001~
-~18292~^~601~^71.^0^^~1~^^^^^^^^^^^~08/01/1992~
-~18293~^~208~^227.^0^^~4~^~NC~^^^^^^^^^^~08/01/1992~
-~18293~^~268~^950.^0^^~4~^^^^^^^^^^^
-~18293~^~301~^219.^0^^~1~^^^^^^^^^^^~08/01/1992~
-~18293~^~304~^16.^0^^~1~^^^^^^^^^^^~08/01/1992~
-~18293~^~305~^159.^0^^~1~^^^^^^^^^^^~08/01/1992~
-~18293~^~306~^132.^0^^~1~^^^^^^^^^^^~08/01/1992~
-~18293~^~307~^439.^0^^~1~^^^^^^^^^^^~08/01/1992~
-~18293~^~318~^196.^0^^~1~^^^^^^^^^^^~08/01/1992~
-~18293~^~319~^53.^0^^~4~^~NC~^^^^^^^^^^~06/01/2002~
-~18293~^~320~^54.^0^^~4~^~NC~^^^^^^^^^^~06/01/2002~
-~18293~^~417~^38.^0^^~4~^~RK~^^^^^^^^^^~12/01/1997~
-~18293~^~431~^26.^0^^~4~^~NC~^^^^^^^^^^~05/01/2000~
-~18293~^~432~^12.^0^^~1~^^^^^^^^^^^~08/01/1992~
-~18293~^~435~^56.^0^^~4~^~NC~^^^^^^^^^^~01/01/2001~
-~18293~^~601~^59.^0^^~1~^^^^^^^^^^^~08/01/1992~
-~18294~^~208~^222.^0^^~4~^~NC~^^^^^^^^^^~08/01/1992~
-~18294~^~268~^929.^0^^~4~^^^^^^^^^^^
-~18294~^~301~^206.^0^^~1~^^^^^^^^^^^~08/01/1992~
-~18294~^~304~^16.^0^^~1~^^^^^^^^^^^~08/01/1992~
-~18294~^~305~^151.^0^^~1~^^^^^^^^^^^~08/01/1992~
-~18294~^~306~^138.^0^^~1~^^^^^^^^^^^~08/01/1992~
-~18294~^~307~^412.^0^^~1~^^^^^^^^^^^~08/01/1992~
-~18294~^~318~^199.^0^^~1~^^^^^^^^^^^~08/01/1992~
-~18294~^~319~^48.^0^^~4~^~NC~^^^^^^^^^^~06/01/2002~
-~18294~^~320~^50.^0^^~4~^~NC~^^^^^^^^^^~06/01/2002~
-~18294~^~417~^36.^0^^~4~^~RK~^^^^^^^^^^~12/01/1997~
-~18294~^~431~^24.^0^^~4~^~NC~^^^^^^^^^^~05/01/2000~
-~18294~^~432~^12.^0^^~1~^^^^^^^^^^^~08/01/1992~
-~18294~^~435~^53.^0^^~4~^~NC~^^^^^^^^^^~01/01/2001~
-~18294~^~601~^56.^0^^~1~^^^^^^^^^^^~08/01/1992~
-~18295~^~208~^340.^0^^~4~^~NC~^^^^^^^^^^~08/01/1992~
-~18295~^~262~^0.^0^^~4~^~FLC~^^^^^^^^^^~03/01/2003~
-~18295~^~263~^0.^0^^~4~^~FLC~^^^^^^^^^^~03/01/2003~
-~18295~^~268~^1423.^0^^~4~^^^^^^^^^^^~05/01/2005~
-~18295~^~301~^476.^33^4.^~1~^^^^^^^^^^^~08/01/1992~
-~18295~^~304~^190.^0^^~4~^~FLA~^^^^^^^^^^~11/01/1997~
-~18295~^~305~^913.^33^19.^~1~^^^^^^^^^^^~08/01/1992~
-~18295~^~306~^316.^20^11.^~1~^^^^^^^^^^^~08/01/1992~
-~18295~^~307~^684.^0^^~8~^~LC~^^^^^^^^^^~08/01/2012~
-~18295~^~318~^0.^0^^~1~^^^^^^^^^^^~07/01/2012~
-~18295~^~319~^0.^0^^~4~^~FLC~^^^^^^^^^^~03/01/2003~
-~18295~^~320~^0.^0^^~4~^~NC~^^^^^^^^^^~03/01/2003~
-~18295~^~321~^2.^0^^~4~^~FLC~^^^^^^^^^^~03/01/2003~
-~18295~^~322~^0.^0^^~4~^~FLC~^^^^^^^^^^~03/01/2003~
-~18295~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~
-~18295~^~334~^0.^0^^~4~^~FLC~^^^^^^^^^^~03/01/2003~
-~18295~^~337~^0.^0^^~4~^~FLC~^^^^^^^^^^~03/01/2003~
-~18295~^~338~^154.^0^^~4~^~FLC~^^^^^^^^^^~03/01/2003~
-~18295~^~417~^53.^0^^~4~^~FLC~^^^^^^^^^^~03/01/2003~
-~18295~^~431~^18.^0^^~4~^~NR~^^^^^^^^^^~03/01/2003~
-~18295~^~432~^35.^0^^~4~^~NC~^^^^^^^^^^~08/01/1992~
-~18295~^~435~^66.^0^^~4~^~NC~^^^^^^^^^^~03/01/2007~
-~18295~^~601~^0.^0^^~1~^^^^^^^^^^^~08/01/1992~
-~18297~^~208~^349.^0^^~4~^~NC~^^^^^^^^^^~08/01/1992~
-~18297~^~268~^1460.^0^^~4~^^^^^^^^^^^
-~18297~^~301~^99.^1^^~1~^^^^^^^^^^^~08/01/1992~
-~18297~^~304~^47.^1^^~1~^^^^^^^^^^^~08/01/1992~
-~18297~^~305~^596.^1^^~1~^^^^^^^^^^^~08/01/1992~
-~18297~^~306~^676.^1^^~1~^^^^^^^^^^^~08/01/1992~
-~18297~^~307~^456.^1^^~1~^^^^^^^^^^^~08/01/1992~
-~18297~^~318~^126.^1^^~1~^^^^^^^^^^^~08/01/1992~
-~18297~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2002~
-~18297~^~320~^6.^0^^~4~^~NC~^^^^^^^^^^~06/01/2002~
-~18297~^~417~^107.^0^^~4~^~FLA~^^^^^^^^^^~11/01/1997~
-~18297~^~431~^93.^0^^~4~^~NC~^^^^^^^^^^~05/01/2000~
-~18297~^~432~^14.^1^^~1~^^^^^^^^^^^~08/01/1992~
-~18297~^~435~^172.^0^^~4~^~NC~^^^^^^^^^^~01/01/2001~
-~18297~^~601~^0.^1^^~1~^^^^^^^^^^^~08/01/1992~
-~18299~^~208~^344.^0^^~4~^~NC~^^^^^^^^^^~08/01/1992~
-~18299~^~268~^1439.^0^^~4~^^^^^^^^^^^
-~18299~^~301~^449.^19^11.^~1~^^^^^^^^^^^~08/01/1992~
-~18299~^~304~^104.^0^^~4~^~FLA~^^^^^^^^^^~12/01/1997~
-~18299~^~305~^782.^19^8.^~1~^^^^^^^^^^^~08/01/1992~
-~18299~^~306~^445.^9^16.^~1~^^^^^^^^^^^~08/01/1992~
-~18299~^~307~^1419.^9^32.^~1~^^^^^^^^^^^~08/01/1992~
-~18299~^~318~^31.^10^3.^~1~^^^^^^^^^^^~08/01/1992~
-~18299~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2002~
-~18299~^~320~^2.^0^^~4~^~NC~^^^^^^^^^^~06/01/2002~
-~18299~^~417~^82.^0^^~4~^~FLA~^^^^^^^^^^~12/01/1997~
-~18299~^~431~^28.^0^^~4~^~NC~^^^^^^^^^^~05/01/2000~
-~18299~^~432~^54.^0^^~4~^^^^^^^^^^^~08/01/1992~
-~18299~^~435~^102.^0^^~4~^~NC~^^^^^^^^^^~01/01/2001~
-~18299~^~601~^0.^0^^~1~^^^^^^^^^^^~08/01/1992~
-~18300~^~208~^208.^0^^~4~^~NC~^^^^^^^^^^~08/01/1992~
-~18300~^~268~^870.^0^^~4~^^^^^^^^^^^
-~18300~^~301~^250.^0^^~1~^^^^^^^^^^^~08/01/1992~
-~18300~^~304~^46.^0^^~4~^^^^^^^^^^^~08/01/1992~
-~18300~^~305~^373.^0^^~1~^^^^^^^^^^^~08/01/1992~
-~18300~^~306~^279.^0^^~1~^^^^^^^^^^^~08/01/1992~
-~18300~^~307~^572.^0^^~1~^^^^^^^^^^^~08/01/1992~
-~18300~^~318~^226.^0^^~1~^^^^^^^^^^^~08/01/1992~
-~18300~^~319~^63.^0^^~4~^~NC~^^^^^^^^^^~06/01/2002~
-~18300~^~320~^64.^0^^~4~^~NC~^^^^^^^^^^~06/01/2002~
-~18300~^~417~^29.^0^^~4~^~FLA~^^^^^^^^^^~04/01/1998~
-~18300~^~431~^8.^0^^~4~^~NC~^^^^^^^^^^~05/01/2000~
-~18300~^~432~^21.^0^^~4~^^^^^^^^^^^~08/01/1992~
-~18300~^~435~^35.^0^^~4~^~NC~^^^^^^^^^^~01/01/2001~
-~18300~^~601~^61.^0^^~1~^^^^^^^^^^^~08/01/1992~
-~18301~^~208~^237.^0^^~4~^~NC~^^^^^^^^^^~11/01/2006~
-~18301~^~262~^0.^0^^~4~^~FLC~^^^^^^^^^^~03/01/2003~
-~18301~^~263~^0.^0^^~4~^~FLC~^^^^^^^^^^~03/01/2003~
-~18301~^~268~^992.^0^^~4~^~NC~^^^^^^^^^^~11/01/2006~
-~18301~^~301~^11.^40^0.^~1~^^^^^^^^^^^~08/01/1992~
-~18301~^~304~^7.^36^0.^~1~^^^^^^^^^^^~08/01/1992~
-~18301~^~305~^24.^35^0.^~1~^^^^^^^^^^^~08/01/1992~
-~18301~^~306~^65.^39^1.^~1~^^^^^^^^^^^~08/01/1992~
-~18301~^~307~^201.^0^^~8~^~LC~^^^^^^^^^^~05/01/2010~
-~18301~^~318~^124.^7^24.^~1~^^^^^^^^^^^~11/01/2006~
-~18301~^~319~^31.^0^^~4~^~FLC~^^^^^^^^^^~03/01/2003~
-~18301~^~320~^32.^0^^~4~^~NC~^^^^^^^^^^~11/01/2006~
-~18301~^~321~^9.^0^^~4~^~FLC~^^^^^^^^^^~03/01/2003~
-~18301~^~322~^0.^0^^~4~^~FLC~^^^^^^^^^^~03/01/2003~
-~18301~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~
-~18301~^~334~^6.^0^^~4~^~FLC~^^^^^^^^^^~03/01/2003~
-~18301~^~337~^0.^0^^~4~^~FLC~^^^^^^^^^^~03/01/2003~
-~18301~^~338~^9.^0^^~4~^~FLC~^^^^^^^^^^~03/01/2003~
-~18301~^~417~^27.^0^^~4~^~FLC~^^^^^^^^^^~03/01/2003~
-~18301~^~431~^23.^0^^~4~^^^^^^^^^^^~11/01/2006~
-~18301~^~432~^4.^11^0.^~1~^^^^^^^^^^^~08/01/1992~
-~18301~^~435~^43.^0^^~4~^~NC~^^^^^^^^^^~11/01/2006~
-~18301~^~601~^0.^0^^~1~^^^^^^^^^^^~08/01/1992~
-~18302~^~208~^265.^0^^~4~^~NC~^^^^^^^^^^~08/01/1992~
-~18302~^~268~^1109.^0^^~4~^^^^^^^^^^^
-~18302~^~301~^7.^0^^~1~^^^^^^^^^^^~08/01/1992~
-~18302~^~304~^7.^0^^~1~^^^^^^^^^^^~08/01/1992~
-~18302~^~305~^28.^0^^~1~^^^^^^^^^^^~08/01/1992~
-~18302~^~306~^79.^0^^~1~^^^^^^^^^^^~08/01/1992~
-~18302~^~307~^211.^0^^~1~^^^^^^^^^^^~08/01/1992~
-~18302~^~318~^58.^0^^~1~^^^^^^^^^^^~08/01/1992~
-~18302~^~319~^9.^0^^~4~^~NC~^^^^^^^^^^~06/01/2002~
-~18302~^~320~^11.^0^^~4~^~NC~^^^^^^^^^^~06/01/2002~
-~18302~^~417~^24.^0^^~4~^~RK~^^^^^^^^^^~12/01/1997~
-~18302~^~431~^20.^0^^~4~^~NC~^^^^^^^^^^~05/01/2000~
-~18302~^~432~^4.^0^^~1~^^^^^^^^^^^~08/01/1992~
-~18302~^~435~^38.^0^^~4~^~NC~^^^^^^^^^^~01/01/2001~
-~18302~^~601~^0.^0^^~1~^^^^^^^^^^^~08/01/1992~
-~18303~^~208~^251.^0^^~4~^~NC~^^^^^^^^^^~08/01/1992~
-~18303~^~268~^1050.^0^^~4~^^^^^^^^^^^
-~18303~^~301~^73.^1^^~1~^^^^^^^^^^^~08/01/1992~
-~18303~^~304~^12.^1^^~1~^^^^^^^^^^^~08/01/1992~
-~18303~^~305~^167.^1^^~1~^^^^^^^^^^^~08/01/1992~
-~18303~^~306~^113.^1^^~1~^^^^^^^^^^^~08/01/1992~
-~18303~^~307~^290.^1^^~1~^^^^^^^^^^^~08/01/1992~
-~18303~^~318~^408.^1^^~1~^^^^^^^^^^^~08/01/1992~
-~18303~^~319~^90.^0^^~4~^~NC~^^^^^^^^^^~06/01/2002~
-~18303~^~320~^95.^0^^~4~^~NC~^^^^^^^^^^~06/01/2002~
-~18303~^~417~^21.^0^^~4~^~FLA~^^^^^^^^^^~12/01/1997~
-~18303~^~431~^14.^0^^~4~^~NC~^^^^^^^^^^~05/01/2000~
-~18303~^~432~^7.^1^^~1~^^^^^^^^^^^~08/01/1992~
-~18303~^~435~^31.^0^^~4~^~NC~^^^^^^^^^^~01/01/2001~
-~18303~^~601~^29.^0^^~4~^~FLA~^^^^^^^^^^~12/01/1997~
-~18304~^~208~^269.^0^^~4~^~NC~^^^^^^^^^^~08/01/1992~
-~18304~^~262~^0.^0^^~6~^~RKI~^^^^^^^^^^~03/01/2003~
-~18304~^~263~^0.^0^^~6~^~RKI~^^^^^^^^^^~03/01/2003~
-~18304~^~268~^1125.^0^^~4~^^^^^^^^^^^~05/01/2005~
-~18304~^~301~^75.^0^^~1~^^^^^^^^^^^~08/01/1992~
-~18304~^~304~^16.^0^^~1~^^^^^^^^^^^~08/01/1992~
-~18304~^~305~^92.^0^^~1~^^^^^^^^^^^~08/01/1992~
-~18304~^~306~^165.^0^^~1~^^^^^^^^^^^~08/01/1992~
-~18304~^~307~^240.^0^^~1~^^^^^^^^^^^~08/01/1992~
-~18304~^~318~^237.^0^^~4~^~NC~^^^^^^^^^^~06/01/2003~
-~18304~^~319~^59.^0^^~6~^~RKI~^^^^^^^^^^~03/01/2003~
-~18304~^~320~^61.^0^^~4~^~NC~^^^^^^^^^^~06/01/2003~
-~18304~^~321~^21.^0^^~6~^~RKI~^^^^^^^^^^~03/01/2003~
-~18304~^~322~^5.^0^^~6~^~RKI~^^^^^^^^^^~03/01/2003~
-~18304~^~324~^32.^0^^~6~^~RKI~^^^^^^^^^^~03/01/2009~
-~18304~^~334~^1.^0^^~6~^~RKI~^^^^^^^^^^~03/01/2003~
-~18304~^~337~^0.^0^^~6~^~RKI~^^^^^^^^^^~03/01/2003~
-~18304~^~338~^46.^0^^~6~^~RKI~^^^^^^^^^^~03/01/2003~
-~18304~^~417~^27.^0^^~4~^~RK~^^^^^^^^^^~12/01/1997~
-~18304~^~431~^16.^0^^~4~^~NC~^^^^^^^^^^~05/01/2000~
-~18304~^~432~^11.^0^^~1~^^^^^^^^^^^~08/01/1992~
-~18304~^~435~^38.^0^^~4~^~NC~^^^^^^^^^^~03/01/2009~
-~18304~^~601~^51.^0^^~1~^^^^^^^^^^^~08/01/1992~
-~18305~^~208~^232.^0^^~4~^~NC~^^^^^^^^^^~08/01/1992~
-~18305~^~262~^0.^0^^~4~^~FLC~^^^^^^^^^^~03/01/2003~
-~18305~^~263~^0.^0^^~4~^~FLC~^^^^^^^^^^~03/01/2003~
-~18305~^~268~^971.^0^^~4~^^^^^^^^^^^~05/01/2005~
-~18305~^~301~^8.^1^^~1~^^^^^^^^^^^~08/01/1992~
-~18305~^~304~^5.^0^^~4~^~FLA~^^^^^^^^^^~12/01/1997~
-~18305~^~305~^23.^0^^~4~^~FLA~^^^^^^^^^^~12/01/1997~
-~18305~^~306~^50.^1^^~1~^^^^^^^^^^^~08/01/1992~
-~18305~^~307~^287.^0^^~8~^~LC~^^^^^^^^^^~08/01/2012~
-~18305~^~318~^140.^1^^~1~^^^^^^^^^^^~07/01/2012~
-~18305~^~319~^41.^0^^~4~^~FLC~^^^^^^^^^^~03/01/2003~
-~18305~^~320~^44.^0^^~4~^~NC~^^^^^^^^^^~03/01/2003~
-~18305~^~321~^39.^0^^~4~^~FLC~^^^^^^^^^^~03/01/2003~
-~18305~^~322~^0.^0^^~4~^~FLC~^^^^^^^^^^~03/01/2003~
-~18305~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~
-~18305~^~334~^0.^0^^~4~^~FLC~^^^^^^^^^^~03/01/2003~
-~18305~^~337~^0.^0^^~4~^~FLC~^^^^^^^^^^~03/01/2003~
-~18305~^~338~^15.^0^^~4~^~FLC~^^^^^^^^^^~03/01/2003~
-~18305~^~417~^27.^0^^~4~^~FLC~^^^^^^^^^^~03/01/2003~
-~18305~^~431~^23.^0^^~4~^~NR~^^^^^^^^^^~03/01/2003~
-~18305~^~432~^4.^0^^~4~^~NC~^^^^^^^^^^~08/01/1992~
-~18305~^~435~^43.^0^^~4~^~NC~^^^^^^^^^^~05/01/2007~
-~18305~^~601~^0.^0^^~4~^^^^^^^^^^^~08/01/1992~
-~18306~^~208~^245.^0^^~4~^~NC~^^^^^^^^^^~08/01/1992~
-~18306~^~268~^1025.^0^^~4~^^^^^^^^^^^
-~18306~^~301~^7.^0^^~1~^^^^^^^^^^^~08/01/1992~
-~18306~^~304~^8.^0^^~1~^^^^^^^^^^^~08/01/1992~
-~18306~^~305~^30.^0^^~1~^^^^^^^^^^^~08/01/1992~
-~18306~^~306~^50.^0^^~1~^^^^^^^^^^^~08/01/1992~
-~18306~^~307~^185.^0^^~1~^^^^^^^^^^^~08/01/1992~
-~18306~^~318~^42.^0^^~1~^^^^^^^^^^^~08/01/1992~
-~18306~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2002~
-~18306~^~320~^2.^0^^~4~^~NC~^^^^^^^^^^~06/01/2002~
-~18306~^~417~^23.^0^^~4~^~RK~^^^^^^^^^^~12/01/1997~
-~18306~^~431~^18.^0^^~4~^~NC~^^^^^^^^^^~05/01/2000~
-~18306~^~432~^5.^0^^~1~^^^^^^^^^^^~08/01/1992~
-~18306~^~435~^36.^0^^~4~^~NC~^^^^^^^^^^~01/01/2001~
-~18306~^~601~^0.^0^^~1~^^^^^^^^^^^~08/01/1992~
-~18308~^~208~^260.^0^^~4~^~NC~^^^^^^^^^^~08/01/1992~
-~18308~^~262~^0.^0^^~4~^~FLC~^^^^^^^^^^~03/01/2003~
-~18308~^~263~^0.^0^^~4~^~FLC~^^^^^^^^^^~03/01/2003~
-~18308~^~268~^1088.^0^^~4~^^^^^^^^^^^~05/01/2005~
-~18308~^~301~^12.^5^2.^~1~^^^^^^^^^^^~08/01/1992~
-~18308~^~304~^8.^2^^~1~^^^^^^^^^^^~08/01/1992~
-~18308~^~305~^29.^2^^~1~^^^^^^^^^^^~08/01/1992~
-~18308~^~306~^81.^5^8.^~1~^^^^^^^^^^^~08/01/1992~
-~18308~^~307~^246.^5^43.^~1~^^^^^^^^^^^~08/01/1992~
-~18308~^~318~^267.^0^^~4~^~NC~^^^^^^^^^^~03/01/2003~
-~18308~^~319~^46.^0^^~4~^~FLC~^^^^^^^^^^~03/01/2003~
-~18308~^~320~^52.^0^^~4~^~NC~^^^^^^^^^^~03/01/2003~
-~18308~^~321~^69.^0^^~4~^~FLC~^^^^^^^^^^~03/01/2003~
-~18308~^~322~^0.^0^^~4~^~FLC~^^^^^^^^^^~03/01/2003~
-~18308~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~
-~18308~^~334~^0.^0^^~4~^~FLC~^^^^^^^^^^~03/01/2003~
-~18308~^~337~^0.^0^^~4~^~FLC~^^^^^^^^^^~03/01/2003~
-~18308~^~338~^20.^0^^~4~^~FLC~^^^^^^^^^^~03/01/2003~
-~18308~^~417~^27.^0^^~4~^~FLC~^^^^^^^^^^~03/01/2003~
-~18308~^~431~^19.^0^^~4~^^^^^^^^^^^~03/01/2003~
-~18308~^~432~^8.^8^0.^~1~^^^^^^^^^^^~08/01/1992~
-~18308~^~435~^40.^0^^~4~^~NC~^^^^^^^^^^~03/01/2007~
-~18308~^~601~^0.^0^^~4~^^^^^^^^^^^~08/01/1992~
-~18309~^~208~^270.^0^^~4~^~NC~^^^^^^^^^^~08/01/1992~
-~18309~^~268~^1130.^0^^~4~^^^^^^^^^^^
-~18309~^~301~^10.^0^^~1~^^^^^^^^^^^~08/01/1992~
-~18309~^~304~^9.^0^^~1~^^^^^^^^^^^~08/01/1992~
-~18309~^~305~^30.^0^^~1~^^^^^^^^^^^~08/01/1992~
-~18309~^~306~^77.^0^^~1~^^^^^^^^^^^~08/01/1992~
-~18309~^~307~^191.^0^^~1~^^^^^^^^^^^~08/01/1992~
-~18309~^~318~^409.^0^^~1~^^^^^^^^^^^~08/01/1992~
-~18309~^~319~^9.^0^^~4~^~NC~^^^^^^^^^^~06/01/2002~
-~18309~^~320~^29.^0^^~4~^~NC~^^^^^^^^^^~06/01/2002~
-~18309~^~417~^27.^0^^~4~^~RK~^^^^^^^^^^~12/01/1997~
-~18309~^~431~^20.^0^^~4~^~NC~^^^^^^^^^^~05/01/2000~
-~18309~^~432~^7.^0^^~1~^^^^^^^^^^^~08/01/1992~
-~18309~^~435~^41.^0^^~4~^~NC~^^^^^^^^^^~01/01/2001~
-~18309~^~601~^0.^0^^~1~^^^^^^^^^^^~08/01/1992~
-~18310~^~208~^353.^0^^~4~^~NC~^^^^^^^^^^~02/01/2013~
-~18310~^~262~^0.^0^^~4~^~FLA~^^^^^^^^^^~12/01/1997~
-~18310~^~263~^56.^0^^~4~^~FLC~^^^^^^^^^^~02/01/2013~
-~18310~^~268~^1477.^0^^~4~^~NC~^^^^^^^^^^~02/01/2013~
-~18310~^~301~^66.^0^^~8~^~LC~^^^^^^^^^^~02/01/2013~
-~18310~^~304~^19.^0^^~4~^~FLC~^^^^^^^^^^~02/01/2013~
-~18310~^~305~^79.^0^^~4~^~FLC~^^^^^^^^^^~02/01/2013~
-~18310~^~306~^161.^0^^~4~^~FLC~^^^^^^^^^^~02/01/2013~
-~18310~^~307~^266.^0^^~8~^~LC~^^^^^^^^^^~02/01/2013~
-~18310~^~318~^166.^0^^~8~^~LC~^^^^^^^^^^~02/01/2013~
-~18310~^~319~^45.^0^^~4~^~FLC~^^^^^^^^^^~02/01/2013~
-~18310~^~320~^46.^0^^~4~^~FLC~^^^^^^^^^^~02/01/2013~
-~18310~^~321~^10.^0^^~4~^~FLC~^^^^^^^^^^~02/01/2013~
-~18310~^~322~^0.^0^^~4~^~FLC~^^^^^^^^^^~02/01/2013~
-~18310~^~324~^3.^0^^~4~^~FLC~^^^^^^^^^^~02/01/2013~
-~18310~^~334~^0.^0^^~4~^~FLC~^^^^^^^^^^~02/01/2013~
-~18310~^~337~^0.^0^^~4~^~FLC~^^^^^^^^^^~02/01/2013~
-~18310~^~338~^8.^0^^~4~^~FLC~^^^^^^^^^^~02/01/2013~
-~18310~^~417~^19.^0^^~4~^~FLC~^^^^^^^^^^~02/01/2013~
-~18310~^~431~^13.^0^^~4~^~FLC~^^^^^^^^^^~02/01/2013~
-~18310~^~432~^6.^0^^~4~^~NC~^^^^^^^^^^~02/01/2013~
-~18310~^~435~^28.^0^^~4~^~NC~^^^^^^^^^^~02/01/2013~
-~18310~^~601~^12.^0^^~8~^~LC~^^^^^^^^^^~02/01/2013~
-~18312~^~208~^260.^0^^~4~^^^^^^^^^^^~08/01/1992~
-~18312~^~262~^1.^0^^~4~^~FLA~^^^^^^^^^^~12/01/1997~
-~18312~^~263~^8.^0^^~4~^~FLA~^^^^^^^^^^~12/01/1997~
-~18312~^~268~^1088.^0^^~4~^^^^^^^^^^^
-~18312~^~301~^77.^1^^~1~^^^^^^^^^^^~08/01/1992~
-~18312~^~304~^32.^1^^~1~^^^^^^^^^^^~08/01/1992~
-~18312~^~305~^231.^1^^~1~^^^^^^^^^^^~08/01/1992~
-~18312~^~306~^285.^1^^~1~^^^^^^^^^^^~08/01/1992~
-~18312~^~307~^460.^1^^~1~^^^^^^^^^^^~08/01/1992~
-~18312~^~318~^413.^1^^~1~^^^^^^^^^^^~08/01/1992~
-~18312~^~319~^124.^0^^~4~^~NC~^^^^^^^^^^~06/01/2002~
-~18312~^~320~^124.^0^^~4~^~NC~^^^^^^^^^^~06/01/2002~
-~18312~^~417~^26.^0^^~4~^~FLA~^^^^^^^^^^~12/01/1997~
-~18312~^~431~^23.^0^^~4~^~NC~^^^^^^^^^^~05/01/2000~
-~18312~^~432~^3.^1^^~1~^^^^^^^^^^^~08/01/1992~
-~18312~^~435~^42.^0^^~4~^~NC~^^^^^^^^^^~01/01/2001~
-~18312~^~601~^35.^0^^~4~^~FLA~^^^^^^^^^^~12/01/1997~
-~18313~^~208~^298.^0^^~4~^~NC~^^^^^^^^^^~08/01/1992~
-~18313~^~262~^0.^0^^~4~^~FLC~^^^^^^^^^^~03/01/2003~
-~18313~^~263~^0.^0^^~4~^~FLC~^^^^^^^^^^~03/01/2003~
-~18313~^~268~^1247.^0^^~4~^^^^^^^^^^^~05/01/2005~
-~18313~^~301~^29.^1^^~1~^^^^^^^^^^^~08/01/1992~
-~18313~^~304~^20.^0^^~4~^^^^^^^^^^^~08/01/1992~
-~18313~^~305~^85.^0^^~4~^^^^^^^^^^^~08/01/1992~
-~18313~^~306~^65.^1^^~1~^^^^^^^^^^^~08/01/1992~
-~18313~^~307~^204.^0^^~4~^~NR~^^^^^^^^^^~06/01/2014~
-~18313~^~318~^90.^1^^~1~^^^^^^^^^^^~07/01/2012~
-~18313~^~319~^27.^0^^~4~^~FLC~^^^^^^^^^^~03/01/2003~
-~18313~^~320~^27.^0^^~4~^~NC~^^^^^^^^^^~03/01/2003~
-~18313~^~321~^0.^0^^~4~^~FLC~^^^^^^^^^^~03/01/2003~
-~18313~^~322~^0.^0^^~4~^~FLC~^^^^^^^^^^~03/01/2003~
-~18313~^~324~^6.^0^^~4~^~FLC~^^^^^^^^^^~06/01/2014~
-~18313~^~334~^0.^0^^~4~^~FLC~^^^^^^^^^^~03/01/2003~
-~18313~^~337~^0.^0^^~4~^~FLC~^^^^^^^^^^~03/01/2003~
-~18313~^~338~^0.^0^^~4~^~FLC~^^^^^^^^^^~03/01/2003~
-~18313~^~417~^7.^0^^~4~^~FLA~^^^^^^^^^^~03/01/1998~
-~18313~^~431~^2.^0^^~4~^~NC~^^^^^^^^^^~05/01/2000~
-~18313~^~432~^5.^0^^~4~^^^^^^^^^^^~08/01/1992~
-~18313~^~435~^8.^0^^~4~^~NC~^^^^^^^^^^~03/01/2009~
-~18313~^~601~^0.^1^^~1~^^^^^^^^^^^~08/01/1992~
-~18314~^~208~^276.^0^^~4~^~NC~^^^^^^^^^^~08/01/1992~
-~18314~^~268~^1155.^0^^~4~^^^^^^^^^^^
-~18314~^~301~^72.^1^^~1~^^^^^^^^^^^~08/01/1992~
-~18314~^~304~^17.^1^^~1~^^^^^^^^^^^~08/01/1992~
-~18314~^~305~^169.^1^^~1~^^^^^^^^^^^~08/01/1992~
-~18314~^~306~^141.^1^^~1~^^^^^^^^^^^~08/01/1992~
-~18314~^~307~^329.^1^^~1~^^^^^^^^^^^~08/01/1992~
-~18314~^~318~^405.^1^^~1~^^^^^^^^^^^~08/01/1992~
-~18314~^~319~^90.^0^^~4~^~NC~^^^^^^^^^^~06/01/2002~
-~18314~^~320~^95.^0^^~4~^~NC~^^^^^^^^^^~06/01/2002~
-~18314~^~417~^15.^0^^~4~^~FLA~^^^^^^^^^^~12/01/1997~
-~18314~^~431~^11.^0^^~4~^~NC~^^^^^^^^^^~05/01/2000~
-~18314~^~432~^4.^1^^~1~^^^^^^^^^^^~08/01/1992~
-~18314~^~435~^23.^0^^~4~^~NC~^^^^^^^^^^~01/01/2001~
-~18314~^~601~^23.^0^^~4~^~FLA~^^^^^^^^^^~12/01/1997~
-~18316~^~208~^260.^0^^~4~^~NC~^^^^^^^^^^~08/01/1992~
-~18316~^~268~^1088.^0^^~4~^^^^^^^^^^^
-~18316~^~301~^81.^3^0.^~1~^^^^^^^^^^^~08/01/1992~
-~18316~^~304~^18.^2^^~1~^^^^^^^^^^^~08/01/1992~
-~18316~^~305~^122.^2^^~1~^^^^^^^^^^^~08/01/1992~
-~18316~^~306~^175.^1^^~1~^^^^^^^^^^^~08/01/1992~
-~18316~^~307~^335.^3^12.^~1~^^^^^^^^^^^~08/01/1992~
-~18316~^~318~^110.^1^^~1~^^^^^^^^^^^~08/01/1992~
-~18316~^~319~^24.^0^^~4~^~NC~^^^^^^^^^^~06/01/2002~
-~18316~^~320~^26.^0^^~4~^~NC~^^^^^^^^^^~06/01/2002~
-~18316~^~417~^13.^0^^~4~^~FLA~^^^^^^^^^^~03/01/1998~
-~18316~^~431~^9.^0^^~4~^~NC~^^^^^^^^^^~05/01/2000~
-~18316~^~432~^4.^0^^~4~^^^^^^^^^^^~08/01/1992~
-~18316~^~435~^19.^0^^~4~^~NC~^^^^^^^^^^~01/01/2001~
-~18316~^~601~^35.^2^^~1~^^^^^^^^^^^~08/01/1992~
-~18317~^~208~^210.^0^^~4~^~NC~^^^^^^^^^^~08/01/1992~
-~18317~^~262~^0.^0^^~4~^~FLC~^^^^^^^^^^~03/01/2003~
-~18317~^~263~^0.^0^^~4~^~FLC~^^^^^^^^^^~03/01/2003~
-~18317~^~268~^879.^0^^~4~^^^^^^^^^^^~05/01/2005~
-~18317~^~301~^80.^4^12.^~1~^^^^^^^^^^^~08/01/1992~
-~18317~^~304~^11.^3^1.^~1~^^^^^^^^^^^~08/01/1992~
-~18317~^~305~^112.^3^4.^~1~^^^^^^^^^^^~08/01/1992~
-~18317~^~306~^106.^4^23.^~1~^^^^^^^^^^^~08/01/1992~
-~18317~^~307~^275.^0^^~8~^~LC~^^^^^^^^^^~08/01/2012~
-~18317~^~318~^232.^0^^~4~^~FLA~^^^^^^^^^^~07/01/2012~
-~18317~^~319~^57.^0^^~4~^~FLC~^^^^^^^^^^~03/01/2003~
-~18317~^~320~^57.^0^^~4~^~NC~^^^^^^^^^^~03/01/2003~
-~18317~^~321~^9.^0^^~4~^~FLC~^^^^^^^^^^~03/01/2003~
-~18317~^~322~^0.^0^^~4~^~FLC~^^^^^^^^^^~03/01/2003~
-~18317~^~324~^34.^0^^~4~^~FLC~^^^^^^^^^^~03/01/2009~
-~18317~^~334~^1.^0^^~4~^~FLC~^^^^^^^^^^~03/01/2003~
-~18317~^~337~^0.^0^^~4~^~FLC~^^^^^^^^^^~03/01/2003~
-~18317~^~338~^50.^0^^~4~^~FLC~^^^^^^^^^^~03/01/2003~
-~18317~^~417~^20.^8^0.^~1~^^^^^^^^^^^~03/01/1998~
-~18317~^~431~^0.^0^^~4~^~NR~^^^^^^^^^^~03/01/2003~
-~18317~^~432~^20.^0^^~4~^~NR~^^^^^^^^^^~07/01/2012~
-~18317~^~435~^20.^0^^~4~^~NC~^^^^^^^^^^~03/01/2009~
-~18317~^~601~^33.^6^5.^~1~^^^^^^^^^^^~08/01/1992~
-~18319~^~208~^316.^0^^~4~^~NC~^^^^^^^^^^~08/01/1992~
-~18319~^~262~^0.^0^^~4~^~FLC~^^^^^^^^^^~03/01/2003~
-~18319~^~263~^0.^0^^~4~^~FLC~^^^^^^^^^^~03/01/2003~
-~18319~^~268~^1322.^0^^~4~^^^^^^^^^^^~05/01/2005~
-~18319~^~301~^22.^23^2.^~1~^^^^^^^^^^^~08/01/1992~
-~18319~^~304~^10.^8^0.^~1~^^^^^^^^^^^~08/01/1992~
-~18319~^~305~^43.^11^6.^~1~^^^^^^^^^^^~08/01/1992~
-~18319~^~306~^65.^6^11.^~1~^^^^^^^^^^^~08/01/1992~
-~18319~^~307~^333.^0^^~8~^~LC~^^^^^^^^^^~08/01/2012~
-~18319~^~318~^27.^5^8.^~1~^^^^^^^^^^^~07/01/2012~
-~18319~^~319~^5.^0^^~4~^~FLC~^^^^^^^^^^~03/01/2003~
-~18319~^~320~^5.^0^^~4~^~NC~^^^^^^^^^^~03/01/2003~
-~18319~^~321~^5.^0^^~4~^~FLC~^^^^^^^^^^~03/01/2003~
-~18319~^~322~^0.^0^^~4~^~FLC~^^^^^^^^^^~03/01/2003~
-~18319~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~
-~18319~^~334~^5.^0^^~4~^~FLC~^^^^^^^^^^~03/01/2003~
-~18319~^~337~^0.^0^^~4~^~FLC~^^^^^^^^^^~03/01/2003~
-~18319~^~338~^8.^0^^~4~^~FLC~^^^^^^^^^^~03/01/2003~
-~18319~^~417~^18.^0^^~4~^~FLA~^^^^^^^^^^~03/01/1998~
-~18319~^~431~^15.^0^^~4~^~NC~^^^^^^^^^^~05/01/2000~
-~18319~^~432~^3.^2^^~1~^^^^^^^^^^^~08/01/1992~
-~18319~^~435~^29.^0^^~4~^~NC~^^^^^^^^^^~03/01/2007~
-~18319~^~601~^0.^0^^~4~^^^^^^^^^^^~08/01/1992~
-~18320~^~208~^268.^0^^~4~^~NC~^^^^^^^^^^~08/01/1992~
-~18320~^~262~^0.^0^^~4~^~FLC~^^^^^^^^^^~03/01/2003~
-~18320~^~263~^0.^0^^~4~^~FLC~^^^^^^^^^^~03/01/2003~
-~18320~^~268~^1121.^0^^~4~^^^^^^^^^^^~05/01/2005~
-~18320~^~301~^56.^3^21.^~1~^^^^^^^^^^^~08/01/1992~
-~18320~^~304~^15.^2^^~1~^^^^^^^^^^^~08/01/1992~
-~18320~^~305~^105.^2^^~1~^^^^^^^^^^^~08/01/1992~
-~18320~^~306~^89.^3^29.^~1~^^^^^^^^^^^~08/01/1992~
-~18320~^~307~^172.^0^^~8~^~LC~^^^^^^^^^^~05/01/2010~
-~18320~^~318~^173.^0^^~4~^~NC~^^^^^^^^^^~03/01/2003~
-~18320~^~319~^51.^0^^~4~^~FLC~^^^^^^^^^^~03/01/2003~
-~18320~^~320~^51.^0^^~4~^~NC~^^^^^^^^^^~03/01/2003~
-~18320~^~321~^1.^0^^~4~^~FLC~^^^^^^^^^^~03/01/2003~
-~18320~^~322~^0.^0^^~4~^~FLC~^^^^^^^^^^~03/01/2003~
-~18320~^~324~^7.^0^^~4~^~FLA~^^^^^^^^^^~03/01/2009~
-~18320~^~334~^3.^0^^~4~^~FLC~^^^^^^^^^^~03/01/2003~
-~18320~^~337~^0.^0^^~4~^~FLC~^^^^^^^^^^~03/01/2003~
-~18320~^~338~^9.^0^^~4~^~FLC~^^^^^^^^^^~03/01/2003~
-~18320~^~417~^24.^0^^~4~^~FLC~^^^^^^^^^^~03/01/2003~
-~18320~^~431~^16.^0^^~4~^^^^^^^^^^^~06/01/2003~
-~18320~^~432~^8.^8^0.^~1~^^^^^^^^^^^~08/01/1992~
-~18320~^~435~^35.^0^^~4~^~NC~^^^^^^^^^^~03/01/2009~
-~18320~^~601~^45.^2^^~1~^^^^^^^^^^^~08/01/1992~
-~18321~^~208~^285.^0^^~4~^~NC~^^^^^^^^^^~08/01/1992~
-~18321~^~268~^1192.^0^^~4~^^^^^^^^^^^
-~18321~^~301~^12.^0^^~1~^^^^^^^^^^^~08/01/1992~
-~18321~^~304~^6.^0^^~1~^^^^^^^^^^^~08/01/1992~
-~18321~^~305~^42.^0^^~1~^^^^^^^^^^^~08/01/1992~
-~18321~^~306~^65.^0^^~1~^^^^^^^^^^^~08/01/1992~
-~18321~^~307~^242.^0^^~1~^^^^^^^^^^^~08/01/1992~
-~18321~^~318~^160.^0^^~1~^^^^^^^^^^^~08/01/1992~
-~18321~^~319~^41.^0^^~4~^~NC~^^^^^^^^^^~06/01/2002~
-~18321~^~320~^43.^0^^~4~^~NC~^^^^^^^^^^~06/01/2002~
-~18321~^~417~^25.^0^^~4~^~RK~^^^^^^^^^^~12/01/1997~
-~18321~^~431~^16.^0^^~4~^~NC~^^^^^^^^^^~05/01/2000~
-~18321~^~432~^9.^0^^~1~^^^^^^^^^^^~08/01/1992~
-~18321~^~435~^36.^0^^~4~^~NC~^^^^^^^^^^~01/01/2001~
-~18321~^~601~^53.^0^^~1~^^^^^^^^^^^~08/01/1992~
-~18322~^~208~^289.^0^^~4~^~NC~^^^^^^^^^^~08/01/1992~
-~18322~^~262~^0.^0^^~4~^~RA~^^^^^^^^^^~03/01/2003~
-~18322~^~263~^0.^0^^~4~^~RA~^^^^^^^^^^~03/01/2003~
-~18322~^~268~^1209.^0^^~4~^^^^^^^^^^^~05/01/2005~
-~18322~^~301~^22.^0^^~1~^^^^^^^^^^^~08/01/1992~
-~18322~^~304~^14.^0^^~1~^^^^^^^^^^^~08/01/1992~
-~18322~^~305~^42.^0^^~1~^^^^^^^^^^^~08/01/1992~
-~18322~^~306~^203.^0^^~1~^^^^^^^^^^^~08/01/1992~
-~18322~^~307~^254.^0^^~1~^^^^^^^^^^^~08/01/1992~
-~18322~^~318~^22.^0^^~1~^^^^^^^^^^^~08/01/1992~
-~18322~^~319~^0.^0^^~4~^~RA~^^^^^^^^^^~03/01/2003~
-~18322~^~320~^1.^0^^~4~^~NC~^^^^^^^^^^~03/01/2003~
-~18322~^~321~^5.^0^^~4~^~RA~^^^^^^^^^^~03/01/2003~
-~18322~^~322~^0.^0^^~4~^~RA~^^^^^^^^^^~03/01/2003~
-~18322~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~
-~18322~^~334~^12.^0^^~4~^~RA~^^^^^^^^^^~03/01/2003~
-~18322~^~337~^0.^0^^~4~^~RA~^^^^^^^^^^~03/01/2003~
-~18322~^~338~^13.^0^^~4~^~RA~^^^^^^^^^^~03/01/2003~
-~18322~^~417~^23.^0^^~4~^~RK~^^^^^^^^^^~12/01/1997~
-~18322~^~431~^18.^0^^~4~^~NC~^^^^^^^^^^~05/01/2000~
-~18322~^~432~^5.^0^^~1~^^^^^^^^^^^~08/01/1992~
-~18322~^~435~^36.^0^^~4~^~NC~^^^^^^^^^^~03/01/2007~
-~18322~^~601~^0.^0^^~1~^^^^^^^^^^^~08/01/1992~
-~18323~^~208~^224.^0^^~4~^~NC~^^^^^^^^^^~06/01/2014~
-~18323~^~262~^0.^0^^~4~^~FLC~^^^^^^^^^^~03/01/2003~
-~18323~^~263~^0.^0^^~4~^~FLC~^^^^^^^^^^~03/01/2003~
-~18323~^~268~^936.^0^^~4~^~NC~^^^^^^^^^^~06/01/2014~
-~18323~^~301~^8.^1^^~1~^^^^^^^^^^^~08/01/1992~
-~18323~^~304~^6.^0^^~4~^~FLA~^^^^^^^^^^~12/01/1997~
-~18323~^~305~^22.^0^^~4~^~FLA~^^^^^^^^^^~12/01/1997~
-~18323~^~306~^125.^1^^~1~^^^^^^^^^^^~08/01/1992~
-~18323~^~307~^217.^0^^~4~^~NR~^^^^^^^^^^~06/01/2014~
-~18323~^~318~^140.^0^^~4~^~NC~^^^^^^^^^^~06/01/2014~
-~18323~^~319~^4.^0^^~4~^~FLC~^^^^^^^^^^~03/01/2003~
-~18323~^~320~^10.^0^^~4~^~NC~^^^^^^^^^^~03/01/2003~
-~18323~^~321~^64.^0^^~4~^~FLC~^^^^^^^^^^~03/01/2003~
-~18323~^~322~^0.^0^^~4~^~FLC~^^^^^^^^^^~03/01/2003~
-~18323~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~
-~18323~^~334~^25.^0^^~4~^~FLC~^^^^^^^^^^~03/01/2003~
-~18323~^~337~^0.^0^^~4~^~FLC~^^^^^^^^^^~03/01/2003~
-~18323~^~338~^15.^0^^~4~^~FLC~^^^^^^^^^^~03/01/2003~
-~18323~^~417~^29.^0^^~4~^~FLC~^^^^^^^^^^~03/01/2003~
-~18323~^~431~^25.^0^^~4~^~NR~^^^^^^^^^^~03/01/2003~
-~18323~^~432~^4.^0^^~4~^~NC~^^^^^^^^^^~08/01/1992~
-~18323~^~435~^46.^0^^~4~^~NC~^^^^^^^^^^~07/01/2012~
-~18323~^~601~^0.^0^^~1~^^^^^^^^^^^~08/01/1992~
-~18324~^~208~^407.^0^^~4~^~NC~^^^^^^^^^^~10/01/2007~
-~18324~^~262~^0.^0^^~4~^~FLA~^^^^^^^^^^~10/01/2007~
-~18324~^~263~^0.^0^^~4~^~FLA~^^^^^^^^^^~10/01/2007~
-~18324~^~268~^1702.^0^^~4~^~NC~^^^^^^^^^^~10/01/2007~
-~18324~^~301~^22.^2^^~1~^~A~^^^1^22.^22.^^^^^~10/01/2007~
-~18324~^~304~^22.^2^^~1~^~A~^^^1^21.^23.^1^^^^~10/01/2007~
-~18324~^~305~^83.^2^^~1~^~A~^^^1^80.^86.^1^^^^~10/01/2007~
-~18324~^~306~^99.^2^^~1~^~A~^^^1^99.^99.^^^^^~10/01/2007~
-~18324~^~307~^275.^0^^~8~^~LC~^^^^^^^^^^~08/01/2012~
-~18324~^~318~^175.^4^28.^~1~^^^^^^^^^^^~10/01/2007~
-~18324~^~319~^50.^0^^~4~^~FLC~^^^^^^^^^^~03/01/2003~
-~18324~^~320~^51.^0^^~4~^~FLC~^^^^^^^^^^~10/01/2007~
-~18324~^~321~^4.^0^^~4~^~FLA~^^^^^^^^^^~10/01/2007~
-~18324~^~322~^0.^0^^~4~^~FLA~^^^^^^^^^^~10/01/2007~
-~18324~^~324~^3.^0^^~4~^~FLA~^^^^^^^^^^~07/01/2012~
-~18324~^~334~^2.^0^^~4~^~FLA~^^^^^^^^^^~10/01/2007~
-~18324~^~337~^0.^0^^~4~^~FLA~^^^^^^^^^^~10/01/2007~
-~18324~^~338~^39.^0^^~4~^~FLA~^^^^^^^^^^~10/01/2007~
-~18324~^~417~^32.^2^^~1~^~A~^^^1^26.^38.^1^^^^~10/01/2007~
-~18324~^~431~^16.^2^^~1~^~A~^^^1^12.^19.^1^^^^~10/01/2007~
-~18324~^~432~^17.^0^^~1~^~AS~^^^^^^^^^^~10/01/2007~
-~18324~^~435~^43.^0^^~4~^~NC~^^^^^^^^^^~03/01/2009~
-~18324~^~601~^42.^0^^~4~^~FLA~^^^^^^^^^^~10/01/2007~
-~18325~^~208~^412.^0^^~4~^~NC~^^^^^^^^^^~08/01/1992~
-~18325~^~268~^1724.^0^^~4~^^^^^^^^^^^
-~18325~^~301~^32.^0^^~1~^^^^^^^^^^^~08/01/1992~
-~18325~^~304~^26.^0^^~1~^^^^^^^^^^^~08/01/1992~
-~18325~^~305~^94.^0^^~1~^^^^^^^^^^^~08/01/1992~
-~18325~^~306~^133.^0^^~1~^^^^^^^^^^^~08/01/1992~
-~18325~^~307~^262.^0^^~1~^^^^^^^^^^^~08/01/1992~
-~18325~^~318~^357.^0^^~4~^~NC~^^^^^^^^^^~04/01/2002~
-~18325~^~319~^77.^0^^~4~^^^^^^^^^^^~04/01/2002~
-~18325~^~320~^82.^0^^~4~^~NC~^^^^^^^^^^~04/01/2002~
-~18325~^~321~^60.^0^^~4~^~RK~^^^^^^^^^^~04/01/2002~
-~18325~^~417~^26.^0^^~4~^~RK~^^^^^^^^^^~12/01/1997~
-~18325~^~431~^12.^0^^~4~^~NC~^^^^^^^^^^~05/01/2000~
-~18325~^~432~^14.^0^^~1~^^^^^^^^^^^~08/01/1992~
-~18325~^~435~^34.^0^^~4~^~NC~^^^^^^^^^^~04/01/2002~
-~18325~^~601~^87.^0^^~1~^^^^^^^^^^^~08/01/1992~
-~18326~^~208~^243.^0^^~4~^~NC~^^^^^^^^^^~11/01/2007~
-~18326~^~262~^0.^0^^~4~^~FLA~^^^^^^^^^^~11/01/2007~
-~18326~^~263~^0.^0^^~4~^~FLA~^^^^^^^^^^~11/01/2007~
-~18326~^~268~^1015.^0^^~4~^~NC~^^^^^^^^^^~11/01/2007~
-~18326~^~301~^64.^3^18.^~1~^~A~^^^1^45.^100.^2^-14.^141.^~2, 3~^~11/01/2007~
-~18326~^~304~^14.^3^0.^~1~^~A~^^^1^13.^16.^2^10.^18.^~2, 3~^~11/01/2007~
-~18326~^~305~^81.^3^9.^~1~^~A~^^^1^65.^98.^2^39.^122.^~2, 3~^~11/01/2007~
-~18326~^~306~^167.^3^12.^~1~^~A~^^^1^150.^190.^2^114.^218.^~2, 3~^~11/01/2007~
-~18326~^~307~^239.^0^^~8~^~LC~^^^^^^^^^^~08/01/2012~
-~18326~^~318~^3434.^0^^~4~^~FLA~^^^^^^^^^^~11/01/2007~
-~18326~^~319~^334.^0^^~4~^~FLC~^^^^^^^^^^~11/01/2007~
-~18326~^~320~^448.^0^^~4~^~FLC~^^^^^^^^^^~11/01/2007~
-~18326~^~321~^1023.^0^^~4~^~FLC~^^^^^^^^^^~11/01/2007~
-~18326~^~322~^686.^0^^~4~^~FLC~^^^^^^^^^^~11/01/2007~
-~18326~^~324~^2.^0^^~4~^~FLA~^^^^^^^^^^~07/01/2012~
-~18326~^~334~^3.^0^^~4~^~FLC~^^^^^^^^^^~11/01/2007~
-~18326~^~337~^0.^0^^~4~^~FLC~^^^^^^^^^^~11/01/2007~
-~18326~^~338~^20.^0^^~4~^~FLA~^^^^^^^^^^~11/01/2007~
-~18326~^~417~^26.^3^4.^~1~^~A~^^^1^19.^33.^2^8.^43.^~2, 3~^~11/01/2007~
-~18326~^~431~^16.^3^4.^~1~^~A~^^^1^8.^25.^2^-5.^37.^~2, 3~^~11/01/2007~
-~18326~^~432~^10.^3^1.^~1~^~AS~^^^1^8.^11.^2^5.^14.^~2, 3~^~11/01/2007~
-~18326~^~435~^37.^0^^~4~^~NC~^^^^^^^^^^~03/01/2009~
-~18326~^~601~^26.^0^^~4~^~FLA~^^^^^^^^^^~11/01/2007~
-~18327~^~208~^204.^0^^~4~^~NC~^^^^^^^^^^~08/01/1992~
-~18327~^~268~^854.^0^^~4~^^^^^^^^^^^
-~18327~^~301~^94.^0^^~1~^^^^^^^^^^^~08/01/1992~
-~18327~^~304~^19.^0^^~1~^^^^^^^^^^^~08/01/1992~
-~18327~^~305~^98.^0^^~1~^^^^^^^^^^^~08/01/1992~
-~18327~^~306~^186.^0^^~1~^^^^^^^^^^^~08/01/1992~
-~18327~^~307~^225.^0^^~1~^^^^^^^^^^^~08/01/1992~
-~18327~^~318~^8020.^0^^~4~^~NC~^^^^^^^^^^~04/01/2002~
-~18327~^~319~^30.^0^^~4~^~RK~^^^^^^^^^^~04/01/2002~
-~18327~^~320~^426.^0^^~4~^~NC~^^^^^^^^^^~06/01/2002~
-~18327~^~321~^4752.^0^^~4~^~RK~^^^^^^^^^^~04/01/2002~
-~18327~^~417~^21.^0^^~4~^~RK~^^^^^^^^^^~12/01/1997~
-~18327~^~431~^10.^0^^~4~^~NC~^^^^^^^^^^~05/01/2000~
-~18327~^~432~^11.^0^^~1~^^^^^^^^^^^~08/01/1992~
-~18327~^~435~^28.^0^^~4~^~NC~^^^^^^^^^^~06/01/2002~
-~18327~^~601~^42.^0^^~1~^^^^^^^^^^^~08/01/1992~
-~18328~^~208~^278.^0^^~4~^~NC~^^^^^^^^^^~08/01/1992~
-~18328~^~262~^0.^0^^~6~^~RKI~^^^^^^^^^^~03/01/2003~
-~18328~^~263~^0.^0^^~6~^~RKI~^^^^^^^^^^~03/01/2003~
-~18328~^~268~^1163.^0^^~4~^^^^^^^^^^^~05/01/2005~
-~18328~^~301~^90.^0^^~1~^^^^^^^^^^^~08/01/1992~
-~18328~^~304~^13.^0^^~1~^^^^^^^^^^^~08/01/1992~
-~18328~^~305~^104.^0^^~1~^^^^^^^^^^^~08/01/1992~
-~18328~^~306~^126.^0^^~1~^^^^^^^^^^^~08/01/1992~
-~18328~^~307~^260.^0^^~1~^^^^^^^^^^^~08/01/1992~
-~18328~^~318~^306.^0^^~1~^^^^^^^^^^^~03/01/2003~
-~18328~^~319~^81.^0^^~6~^~RKI~^^^^^^^^^^~03/01/2003~
-~18328~^~320~^83.^0^^~4~^~NC~^^^^^^^^^^~03/01/2003~
-~18328~^~321~^22.^0^^~6~^~RKI~^^^^^^^^^^~03/01/2003~
-~18328~^~322~^2.^0^^~6~^~RKI~^^^^^^^^^^~03/01/2003~
-~18328~^~324~^47.^0^^~6~^~RKI~^^^^^^^^^^~03/01/2009~
-~18328~^~334~^1.^0^^~6~^~RKI~^^^^^^^^^^~03/01/2003~
-~18328~^~337~^0.^0^^~6~^~RKI~^^^^^^^^^^~03/01/2003~
-~18328~^~338~^52.^0^^~6~^~RKI~^^^^^^^^^^~03/01/2003~
-~18328~^~417~^26.^0^^~4~^~RK~^^^^^^^^^^~12/01/1997~
-~18328~^~431~^15.^0^^~4~^~NC~^^^^^^^^^^~05/01/2000~
-~18328~^~432~^11.^0^^~1~^^^^^^^^^^^~08/01/1992~
-~18328~^~435~^37.^0^^~4~^~NC~^^^^^^^^^^~03/01/2009~
-~18328~^~601~^62.^0^^~1~^^^^^^^^^^^~08/01/1992~
-~18332~^~208~^518.^0^^~4~^~NC~^^^^^^^^^^~08/01/1992~
-~18332~^~268~^2167.^0^^~4~^^^^^^^^^^^
-~18332~^~301~^61.^20^12.^~1~^^^^^^^^^^^~08/01/1992~
-~18332~^~304~^15.^15^1.^~1~^^^^^^^^^^^~08/01/1992~
-~18332~^~305~^86.^21^6.^~1~^^^^^^^^^^^~08/01/1992~
-~18332~^~306~^64.^8^2.^~1~^^^^^^^^^^^~08/01/1992~
-~18332~^~307~^753.^16^22.^~1~^^^^^^^^^^^~08/01/1992~
-~18332~^~318~^0.^0^^~1~^^^^^^^^^^^~08/01/1992~
-~18332~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2002~
-~18332~^~320~^0.^0^^~4~^~NC~^^^^^^^^^^~06/01/2002~
-~18332~^~417~^104.^0^^~4~^~FLA~^^^^^^^^^^~12/01/1997~
-~18332~^~431~^86.^0^^~4~^~NC~^^^^^^^^^^~05/01/2000~
-~18332~^~432~^18.^0^^~4~^^^^^^^^^^^~08/01/1992~
-~18332~^~435~^164.^0^^~4~^~NC~^^^^^^^^^^~01/01/2001~
-~18332~^~601~^0.^1^^~1~^^^^^^^^^^^~08/01/1992~
-~18333~^~208~^501.^0^^~4~^~NC~^^^^^^^^^^~08/01/1992~
-~18333~^~268~^2096.^0^^~4~^^^^^^^^^^^
-~18333~^~301~^60.^0^^~1~^^^^^^^^^^^~08/01/1992~
-~18333~^~304~^15.^0^^~1~^^^^^^^^^^^~08/01/1992~
-~18333~^~305~^84.^0^^~1~^^^^^^^^^^^~08/01/1992~
-~18333~^~306~^62.^0^^~1~^^^^^^^^^^^~08/01/1992~
-~18333~^~307~^729.^0^^~1~^^^^^^^^^^^~08/01/1992~
-~18333~^~318~^0.^0^^~1~^^^^^^^^^^^~08/01/1992~
-~18333~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2002~
-~18333~^~320~^0.^0^^~4~^~NC~^^^^^^^^^^~06/01/2002~
-~18333~^~417~^70.^0^^~4~^~RP~^^^^^^^^^^~12/01/1998~
-~18333~^~431~^58.^0^^~4~^~NC~^^^^^^^^^^~05/01/2000~
-~18333~^~432~^12.^0^^~4~^^^^^^^^^^^~08/01/1992~
-~18333~^~435~^111.^0^^~4~^~NC~^^^^^^^^^^~01/01/2001~
-~18333~^~601~^0.^0^^~1~^^^^^^^^^^^~08/01/1992~
-~18334~^~208~^457.^0^^~4~^~NC~^^^^^^^^^^~04/01/2008~
-~18334~^~262~^0.^0^^~4~^~FLA~^^^^^^^^^^~04/01/2008~
-~18334~^~263~^0.^0^^~4~^~FLA~^^^^^^^^^^~04/01/2008~
-~18334~^~268~^1910.^0^^~4~^~NC~^^^^^^^^^^~04/01/2008~
-~18334~^~301~^19.^2^^~1~^~A~^^^1^17.^20.^1^^^^~04/01/2008~
-~18334~^~304~^15.^2^^~1~^~A~^^^1^14.^15.^1^^^^~04/01/2008~
-~18334~^~305~^72.^2^^~1~^~A~^^^1^70.^75.^1^^^^~04/01/2008~
-~18334~^~306~^97.^2^^~1~^~A~^^^1^94.^100.^1^^^^~04/01/2008~
-~18334~^~307~^409.^2^^~1~^~A~^^^1^404.^414.^1^^^^~04/01/2008~
-~18334~^~318~^1.^0^^~4~^~NC~^^^^^^^^^^~12/01/1997~
-~18334~^~319~^0.^0^^~4~^~FLA~^^^^^^^^^^~05/01/2014~
-~18334~^~320~^0.^0^^~4~^~FLA~^^^^^^^^^^~04/01/2008~
-~18334~^~321~^0.^0^^~4~^~FLA~^^^^^^^^^^~03/01/2003~
-~18334~^~322~^0.^0^^~4~^~FLA~^^^^^^^^^^~04/01/2008~
-~18334~^~324~^0.^0^^~4~^~BFYN~^~18335~^^^^^^^^^~05/01/2014~
-~18334~^~334~^0.^0^^~4~^~FLA~^^^^^^^^^^~05/01/2014~
-~18334~^~337~^0.^0^^~4~^~FLA~^^^^^^^^^^~03/01/2003~
-~18334~^~338~^1.^0^^~4~^~FLA~^^^^^^^^^^~03/01/2003~
-~18334~^~417~^70.^2^^~1~^~A~^^^1^39.^101.^1^^^^~04/01/2008~
-~18334~^~431~^46.^2^^~1~^~A~^^^1^18.^73.^1^^^^~04/01/2008~
-~18334~^~432~^25.^0^^~1~^~AS~^^^^^^^^^^~04/01/2008~
-~18334~^~435~^102.^0^^~4~^~NC~^^^^^^^^^^~04/01/2008~
-~18334~^~601~^0.^0^^~4~^~FLA~^^^^^^^^^^~12/01/1997~
-~18335~^~208~^508.^0^^~4~^~NC~^^^^^^^^^^~04/01/2008~
-~18335~^~262~^0.^0^^~4~^~RK~^^^^^^^^^^~03/01/2003~
-~18335~^~263~^0.^0^^~4~^~RK~^^^^^^^^^^~03/01/2003~
-~18335~^~268~^2127.^0^^~4~^~NC~^^^^^^^^^^~04/01/2008~
-~18335~^~301~^21.^2^^~1~^~A~^^^1^20.^23.^1^^^^~04/01/2008~
-~18335~^~304~^17.^2^^~1~^~A~^^^1^17.^17.^1^^^^~04/01/2008~
-~18335~^~305~^82.^2^^~1~^~A~^^^1^80.^85.^1^^^^~04/01/2008~
-~18335~^~306~^114.^2^^~1~^~A~^^^1^114.^114.^^^^^~04/01/2008~
-~18335~^~307~^467.^2^^~1~^~A~^^^1^455.^478.^1^^^^~04/01/2008~
-~18335~^~318~^0.^0^^~4~^~NC~^^^^^^^^^^~04/01/2008~
-~18335~^~319~^0.^0^^~4~^~RK~^^^^^^^^^^~03/01/2003~
-~18335~^~320~^0.^0^^~4~^~NC~^^^^^^^^^^~04/01/2008~
-~18335~^~321~^0.^0^^~4~^~RK~^^^^^^^^^^~03/01/2003~
-~18335~^~322~^0.^0^^~4~^~NR~^^^^^^^^^^~04/01/2008~
-~18335~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~
-~18335~^~334~^0.^0^^~4~^~RK~^^^^^^^^^^~03/01/2003~
-~18335~^~337~^0.^0^^~4~^~RK~^^^^^^^^^^~03/01/2003~
-~18335~^~338~^1.^0^^~4~^~RK~^^^^^^^^^^~03/01/2003~
-~18335~^~417~^68.^2^^~1~^~A~^^^1^41.^94.^1^^^^~04/01/2008~
-~18335~^~431~^49.^2^^~1~^~A~^^^1^22.^76.^1^^^^~04/01/2008~
-~18335~^~432~^19.^0^^~1~^~AS~^^^^^^^^^^~04/01/2008~
-~18335~^~435~^102.^0^^~4~^~NC~^^^^^^^^^^~04/01/2008~
-~18335~^~601~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2008~
-~18336~^~208~^527.^0^^~4~^~NC~^^^^^^^^^^~08/01/1992~
-~18336~^~262~^0.^0^^~4~^~RA~^^^^^^^^^^~03/01/2003~
-~18336~^~263~^0.^0^^~4~^~RA~^^^^^^^^^^~03/01/2003~
-~18336~^~268~^2205.^0^^~4~^^^^^^^^^^^~05/01/2005~
-~18336~^~301~^10.^0^^~1~^^^^^^^^^^^~08/01/1992~
-~18336~^~304~^14.^0^^~1~^^^^^^^^^^^~08/01/1992~
-~18336~^~305~^67.^0^^~1~^^^^^^^^^^^~08/01/1992~
-~18336~^~306~^67.^0^^~1~^^^^^^^^^^^~08/01/1992~
-~18336~^~307~^542.^0^^~1~^^^^^^^^^^^~08/01/1992~
-~18336~^~318~^0.^0^^~1~^^^^^^^^^^^~08/01/1992~
-~18336~^~319~^0.^0^^~4~^~RA~^^^^^^^^^^~03/01/2003~
-~18336~^~320~^0.^0^^~4~^~NC~^^^^^^^^^^~03/01/2003~
-~18336~^~321~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2003~
-~18336~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2003~
-~18336~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2003~
-~18336~^~337~^0.^0^^~4~^~RA~^^^^^^^^^^~03/01/2003~
-~18336~^~338~^10.^0^^~4~^~RA~^^^^^^^^^^~03/01/2003~
-~18336~^~417~^67.^0^^~4~^~RK~^^^^^^^^^^~12/01/1997~
-~18336~^~431~^56.^0^^~4~^~NC~^^^^^^^^^^~05/01/2000~
-~18336~^~432~^11.^0^^~1~^^^^^^^^^^^~08/01/1992~
-~18336~^~435~^106.^0^^~4~^~NC~^^^^^^^^^^~03/01/2007~
-~18336~^~601~^0.^0^^~1~^^^^^^^^^^^~08/01/1992~
-~18337~^~208~^551.^0^^~4~^~NC~^^^^^^^^^^~08/01/1992~
-~18337~^~262~^0.^0^^~4~^~FLC~^^^^^^^^^^~03/01/2003~
-~18337~^~263~^0.^0^^~4~^~FLC~^^^^^^^^^^~03/01/2003~
-~18337~^~268~^2305.^0^^~4~^^^^^^^^^^^~03/01/2007~
-~18337~^~301~^10.^0^^~1~^^^^^^^^^^^~08/01/1992~
-~18337~^~304~^16.^0^^~1~^^^^^^^^^^^~08/01/1992~
-~18337~^~305~^60.^0^^~1~^^^^^^^^^^^~08/01/1992~
-~18337~^~306~^61.^0^^~1~^^^^^^^^^^^~08/01/1992~
-~18337~^~307~^249.^0^^~1~^^^^^^^^^^^~08/01/1992~
-~18337~^~318~^1.^0^^~4~^~NC~^^^^^^^^^^~03/01/2003~
-~18337~^~319~^0.^0^^~4~^~FLC~^^^^^^^^^^~03/01/2003~
-~18337~^~320~^0.^0^^~4~^~NC~^^^^^^^^^^~03/01/2003~
-~18337~^~321~^0.^0^^~4~^~FLC~^^^^^^^^^^~03/01/2003~
-~18337~^~322~^0.^0^^~4~^~FLC~^^^^^^^^^^~03/01/2003~
-~18337~^~334~^0.^0^^~4~^~FLC~^^^^^^^^^^~03/01/2003~
-~18337~^~337~^0.^0^^~4~^~FLC~^^^^^^^^^^~03/01/2003~
-~18337~^~338~^43.^0^^~4~^~FLC~^^^^^^^^^^~03/01/2003~
-~18337~^~417~^78.^0^^~4~^~FLC~^^^^^^^^^^~03/01/2003~
-~18337~^~431~^65.^0^^~4~^^^^^^^^^^^~03/01/2003~
-~18337~^~432~^13.^0^^~1~^^^^^^^^^^^~08/01/1992~
-~18337~^~435~^124.^0^^~4~^~NC~^^^^^^^^^^~03/01/2007~
-~18337~^~601~^0.^0^^~1~^^^^^^^^^^^~08/01/1992~
-~18338~^~208~^299.^0^^~4~^~NC~^^^^^^^^^^~08/01/1992~
-~18338~^~262~^0.^0^^~4~^~FLC~^^^^^^^^^^~03/01/2003~
-~18338~^~263~^0.^0^^~4~^~FLC~^^^^^^^^^^~03/01/2003~
-~18338~^~268~^1251.^0^^~4~^^^^^^^^^^^~03/01/2007~
-~18338~^~301~^11.^0^^~1~^^^^^^^^^^^~08/01/1992~
-~18338~^~304~^15.^0^^~1~^^^^^^^^^^^~08/01/1992~
-~18338~^~305~^75.^0^^~1~^^^^^^^^^^^~08/01/1992~
-~18338~^~306~^74.^0^^~1~^^^^^^^^^^^~08/01/1992~
-~18338~^~307~^483.^0^^~1~^^^^^^^^^^^~08/01/1992~
-~18338~^~318~^0.^0^^~4~^~NC~^^^^^^^^^^~03/01/2003~
-~18338~^~319~^0.^0^^~4~^~FLC~^^^^^^^^^^~03/01/2003~
-~18338~^~320~^0.^0^^~4~^~NC~^^^^^^^^^^~03/01/2003~
-~18338~^~321~^0.^0^^~4~^~FLC~^^^^^^^^^^~03/01/2003~
-~18338~^~322~^0.^0^^~4~^~FLC~^^^^^^^^^^~03/01/2003~
-~18338~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~
-~18338~^~334~^0.^0^^~4~^~FLC~^^^^^^^^^^~03/01/2003~
-~18338~^~337~^0.^0^^~4~^~FLC~^^^^^^^^^^~03/01/2003~
-~18338~^~338~^11.^0^^~4~^~FLC~^^^^^^^^^^~03/01/2003~
-~18338~^~417~^88.^0^^~4~^~FLC~^^^^^^^^^^~03/01/2003~
-~18338~^~431~^70.^0^^~4~^^^^^^^^^^^~03/01/2003~
-~18338~^~432~^18.^0^^~1~^^^^^^^^^^^~08/01/1992~
-~18338~^~435~^137.^0^^~4~^~NC~^^^^^^^^^^~03/01/2007~
-~18338~^~601~^0.^0^^~1~^^^^^^^^^^^~08/01/1992~
-~18339~^~208~^371.^0^^~4~^~NC~^^^^^^^^^^~08/01/1992~
-~18339~^~268~^1552.^0^^~4~^^^^^^^^^^^
-~18339~^~301~^32.^11^0.^~1~^^^^^^^^^^^~08/01/1992~
-~18339~^~304~^25.^5^0.^~1~^^^^^^^^^^^~08/01/1992~
-~18339~^~305~^100.^11^2.^~1~^^^^^^^^^^^~08/01/1992~
-~18339~^~306~^100.^5^2.^~1~^^^^^^^^^^^~08/01/1992~
-~18339~^~307~^906.^5^34.^~1~^^^^^^^^^^^~08/01/1992~
-~18339~^~318~^0.^0^^~4~^~FLA~^^^^^^^^^^~12/01/1997~
-~18339~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2002~
-~18339~^~320~^0.^0^^~4~^~NC~^^^^^^^^^^~06/01/2002~
-~18339~^~417~^145.^0^^~4~^~FLA~^^^^^^^^^^~12/01/1997~
-~18339~^~431~^120.^0^^~4~^~NC~^^^^^^^^^^~05/01/2000~
-~18339~^~432~^25.^0^^~4~^^^^^^^^^^^~08/01/1992~
-~18339~^~435~^229.^0^^~4~^~NC~^^^^^^^^^^~01/01/2001~
-~18339~^~601~^0.^0^^~4~^~FLA~^^^^^^^^^^~12/01/1997~
-~18342~^~208~^310.^0^^~4~^~NC~^^^^^^^^^^~10/01/2005~
-~18342~^~262~^0.^0^^~4~^~FLA~^^^^^^^^^^~10/01/2005~
-~18342~^~263~^0.^0^^~4~^~FLA~^^^^^^^^^^~10/01/2005~
-~18342~^~268~^1297.^0^^~4~^~NC~^^^^^^^^^^~10/01/2005~
-~18342~^~301~^178.^3^6.^~1~^~A~^^^1^166.^188.^2^150.^205.^~2, 3~^~10/01/2005~
-~18342~^~304~^26.^3^0.^~1~^~A~^^^1^25.^26.^2^23.^27.^~2, 3~^~10/01/2005~
-~18342~^~305~^122.^3^1.^~1~^~A~^^^1^120.^124.^2^116.^126.^~2, 3~^~10/01/2005~
-~18342~^~306~^139.^3^9.^~1~^~A~^^^1^122.^155.^2^97.^179.^~2, 3~^~10/01/2005~
-~18342~^~307~^467.^0^^~4~^~NR~^^^^^^^^^^~06/01/2014~
-~18342~^~318~^5.^0^^~4~^~FLA~^^^^^^^^^^~10/01/2005~
-~18342~^~319~^1.^0^^~4~^~FLA~^^^^^^^^^^~10/01/2005~
-~18342~^~320~^1.^0^^~4~^~FLA~^^^^^^^^^^~10/01/2005~
-~18342~^~321~^0.^0^^~4~^~FLA~^^^^^^^^^^~10/01/2005~
-~18342~^~322~^0.^0^^~4~^~FLA~^^^^^^^^^^~10/01/2005~
-~18342~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~
-~18342~^~334~^0.^0^^~4~^~FLA~^^^^^^^^^^~10/01/2005~
-~18342~^~337~^0.^0^^~4~^~FLA~^^^^^^^^^^~10/01/2005~
-~18342~^~338~^13.^0^^~4~^~FLA~^^^^^^^^^^~10/01/2005~
-~18342~^~417~^101.^2^^~1~^~A~^^^1^71.^130.^1^^^^~10/01/2005~
-~18342~^~431~^71.^0^^~1~^~AS~^^^^^^^^^^~10/01/2005~
-~18342~^~432~^30.^2^^~1~^~A~^^^1^27.^32.^1^^^^~10/01/2005~
-~18342~^~435~^150.^0^^~4~^~NC~^^^^^^^^^^~03/01/2007~
-~18342~^~601~^4.^0^^~4~^~FLA~^^^^^^^^^^~10/01/2005~
-~18344~^~208~^307.^0^^~4~^~NC~^^^^^^^^^^~08/01/1992~
-~18344~^~262~^0.^0^^~4~^~FLC~^^^^^^^^^^~03/01/2003~
-~18344~^~263~^0.^0^^~4~^~FLC~^^^^^^^^^^~03/01/2003~
-~18344~^~268~^1284.^0^^~4~^^^^^^^^^^^~05/01/2005~
-~18344~^~301~^59.^2^^~1~^^^^^^^^^^^~08/01/1992~
-~18344~^~304~^25.^2^^~1~^^^^^^^^^^^~08/01/1992~
-~18344~^~305~^101.^0^^~4~^~FLA~^^^^^^^^^^~12/01/1997~
-~18344~^~306~^104.^0^^~4~^~FLA~^^^^^^^^^^~12/01/1997~
-~18344~^~307~^566.^0^^~8~^~LC~^^^^^^^^^^~08/01/2012~
-~18344~^~318~^26.^0^^~4~^~FLA~^^^^^^^^^^~07/01/2012~
-~18344~^~319~^5.^0^^~4~^~FLC~^^^^^^^^^^~03/01/2003~
-~18344~^~320~^5.^0^^~4~^~NC~^^^^^^^^^^~03/01/2003~
-~18344~^~321~^1.^0^^~4~^~FLC~^^^^^^^^^^~03/01/2003~
-~18344~^~322~^0.^0^^~4~^~FLC~^^^^^^^^^^~03/01/2003~
-~18344~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~
-~18344~^~334~^1.^0^^~4~^~FLC~^^^^^^^^^^~03/01/2003~
-~18344~^~337~^0.^0^^~4~^~FLC~^^^^^^^^^^~03/01/2003~
-~18344~^~338~^71.^0^^~4~^~FLC~^^^^^^^^^^~03/01/2003~
-~18344~^~417~^184.^0^^~4~^~FLC~^^^^^^^^^^~03/01/2003~
-~18344~^~431~^131.^0^^~4~^~NR~^^^^^^^^^^~03/01/2003~
-~18344~^~432~^53.^0^^~4~^~NC~^^^^^^^^^^~08/01/1992~
-~18344~^~435~^276.^0^^~4~^~NC~^^^^^^^^^^~03/01/2007~
-~18344~^~601~^50.^0^^~4~^~FLA~^^^^^^^^^^~12/01/1997~
-~18345~^~208~^236.^0^^~4~^~NC~^^^^^^^^^^~08/01/1992~
-~18345~^~262~^0.^0^^~4~^~FLC~^^^^^^^^^^~03/01/2003~
-~18345~^~263~^0.^0^^~4~^~FLC~^^^^^^^^^^~03/01/2003~
-~18345~^~268~^987.^0^^~4~^^^^^^^^^^^~05/01/2005~
-~18345~^~301~^85.^1^^~1~^^^^^^^^^^^~08/01/1992~
-~18345~^~304~^33.^0^^~4~^~FLA~^^^^^^^^^^~12/01/1997~
-~18345~^~305~^115.^0^^~4~^~FLA~^^^^^^^^^^~12/01/1997~
-~18345~^~306~^121.^0^^~4~^~FLA~^^^^^^^^^^~12/01/1997~
-~18345~^~307~^413.^1^^~1~^^^^^^^^^^^~08/01/1992~
-~18345~^~318~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2003~
-~18345~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2002~
-~18345~^~320~^0.^0^^~4~^~NC~^^^^^^^^^^~03/01/2003~
-~18345~^~321~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2003~
-~18345~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2003~
-~18345~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~
-~18345~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2003~
-~18345~^~337~^0.^0^^~4~^~FLC~^^^^^^^^^^~03/01/2003~
-~18345~^~338~^44.^0^^~4~^~FLC~^^^^^^^^^^~03/01/2003~
-~18345~^~417~^95.^0^^~4~^~BFZN~^^^^^^^^^^~03/01/1998~
-~18345~^~431~^64.^0^^~4~^~NC~^^^^^^^^^^~05/01/2000~
-~18345~^~432~^31.^0^^~4~^^^^^^^^^^^~08/01/1992~
-~18345~^~435~^140.^0^^~4~^~NC~^^^^^^^^^^~03/01/2007~
-~18345~^~601~^0.^0^^~1~^^^^^^^^^^^~08/01/1992~
-~18346~^~208~^286.^0^^~4~^^^^^^^^^^^~08/01/1992~
-~18346~^~262~^0.^0^^~4~^~FLA~^^^^^^^^^^~03/01/2003~
-~18346~^~263~^0.^0^^~4~^~FLA~^^^^^^^^^^~03/01/2003~
-~18346~^~268~^1197.^0^^~4~^^^^^^^^^^^~03/01/2007~
-~18346~^~301~^30.^1^^~1~^^^^^^^^^^^~08/01/1992~
-~18346~^~304~^54.^1^^~1~^^^^^^^^^^^~08/01/1992~
-~18346~^~305~^159.^1^^~1~^^^^^^^^^^^~08/01/1992~
-~18346~^~306~^180.^1^^~1~^^^^^^^^^^^~08/01/1992~
-~18346~^~307~^650.^0^^~8~^~LC~^^^^^^^^^^~08/01/2012~
-~18346~^~318~^8.^0^^~4~^~FLA~^^^^^^^^^^~07/01/2012~
-~18346~^~319~^0.^0^^~4~^~FLA~^^^^^^^^^^~03/01/2003~
-~18346~^~320~^0.^0^^~4~^~NC~^^^^^^^^^^~03/01/2003~
-~18346~^~321~^4.^0^^~4~^~FLA~^^^^^^^^^^~03/01/2003~
-~18346~^~322~^0.^0^^~4~^~FLA~^^^^^^^^^^~03/01/2003~
-~18346~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~
-~18346~^~334~^1.^0^^~4~^~FLA~^^^^^^^^^^~03/01/2003~
-~18346~^~337~^0.^0^^~4~^~FLA~^^^^^^^^^^~03/01/2003~
-~18346~^~338~^54.^0^^~4~^~FLA~^^^^^^^^^^~03/01/2003~
-~18346~^~417~^99.^0^^~4~^~FLA~^^^^^^^^^^~03/01/2003~
-~18346~^~431~^77.^0^^~4~^~NR~^^^^^^^^^^~03/01/2003~
-~18346~^~432~^22.^0^^~4~^~NC~^^^^^^^^^^~08/01/1992~
-~18346~^~435~^153.^0^^~4~^~NC~^^^^^^^^^^~03/01/2007~
-~18346~^~601~^0.^0^^~1~^^^^^^^^^^^~08/01/1992~
-~18347~^~208~^273.^0^^~4~^~NC~^^^^^^^^^^~08/01/1992~
-~18347~^~262~^0.^0^^~4~^~FLA~^^^^^^^^^^~03/01/2003~
-~18347~^~263~^0.^0^^~4~^~FLA~^^^^^^^^^^~03/01/2003~
-~18347~^~268~^1142.^0^^~4~^^^^^^^^^^^~05/01/2005~
-~18347~^~301~^176.^2^^~1~^^^^^^^^^^^~08/01/1992~
-~18347~^~304~^36.^0^^~4~^~FLA~^^^^^^^^^^~12/01/1997~
-~18347~^~305~^104.^0^^~4~^~FLA~^^^^^^^^^^~12/01/1997~
-~18347~^~306~^115.^0^^~4~^~FLA~^^^^^^^^^^~12/01/1997~
-~18347~^~307~^524.^0^^~8~^~LC~^^^^^^^^^^~08/01/2012~
-~18347~^~318~^0.^0^^~1~^^^^^^^^^^^~07/01/2012~
-~18347~^~319~^0.^0^^~4~^~FLA~^^^^^^^^^^~03/01/2003~
-~18347~^~320~^0.^0^^~4~^~NC~^^^^^^^^^^~03/01/2003~
-~18347~^~321~^0.^0^^~7~^~Z~^^^^^^^^^^~07/01/2012~
-~18347~^~322~^0.^0^^~4~^~FLA~^^^^^^^^^^~07/01/2012~
-~18347~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~
-~18347~^~334~^0.^0^^~4~^~FLA~^^^^^^^^^^~07/01/2012~
-~18347~^~337~^0.^0^^~4~^~FLA~^^^^^^^^^^~03/01/2003~
-~18347~^~338~^65.^0^^~4~^~FLA~^^^^^^^^^^~03/01/2003~
-~18347~^~417~^60.^0^^~4~^~FLA~^^^^^^^^^^~03/01/2003~
-~18347~^~431~^45.^0^^~4~^~NR~^^^^^^^^^^~03/01/2003~
-~18347~^~432~^15.^0^^~4~^~NC~^^^^^^^^^^~08/01/1992~
-~18347~^~435~^92.^0^^~4~^~NC~^^^^^^^^^^~03/01/2007~
-~18347~^~601~^0.^0^^~1~^^^^^^^^^^^~08/01/1992~
-~18348~^~208~^266.^0^^~4~^~NC~^^^^^^^^^^~08/01/1992~
-~18348~^~262~^0.^0^^~4~^~FLA~^^^^^^^^^^~03/01/2003~
-~18348~^~263~^0.^0^^~4~^~FLA~^^^^^^^^^^~03/01/2003~
-~18348~^~268~^1113.^0^^~4~^^^^^^^^^^^~05/01/2005~
-~18348~^~301~^106.^0^^~1~^^^^^^^^^^^~08/01/1992~
-~18348~^~304~^85.^0^^~1~^^^^^^^^^^^~08/01/1992~
-~18348~^~305~^224.^0^^~1~^^^^^^^^^^^~08/01/1992~
-~18348~^~306~^272.^0^^~1~^^^^^^^^^^^~08/01/1992~
-~18348~^~307~^521.^0^^~8~^~LC~^^^^^^^^^^~08/01/2012~
-~18348~^~318~^0.^0^^~1~^^^^^^^^^^^~08/01/1992~
-~18348~^~319~^0.^0^^~4~^~FLA~^^^^^^^^^^~03/01/2003~
-~18348~^~320~^0.^0^^~4~^~NC~^^^^^^^^^^~03/01/2003~
-~18348~^~321~^0.^0^^~7~^~Z~^^^^^^^^^^~07/01/2012~
-~18348~^~322~^0.^0^^~4~^~FLA~^^^^^^^^^^~03/01/2003~
-~18348~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~
-~18348~^~334~^0.^0^^~4~^~FLA~^^^^^^^^^^~03/01/2003~
-~18348~^~337~^0.^0^^~4~^~FLA~^^^^^^^^^^~03/01/2003~
-~18348~^~338~^115.^0^^~4~^~FLA~^^^^^^^^^^~03/01/2003~
-~18348~^~417~^30.^0^^~4~^^^^^^^^^^^~01/01/1999~
-~18348~^~431~^0.^0^^~4~^~NR~^^^^^^^^^^~07/01/2012~
-~18348~^~432~^30.^0^^~4~^~NR~^^^^^^^^^^~07/01/2012~
-~18348~^~435~^30.^0^^~4~^~NC~^^^^^^^^^^~07/01/2012~
-~18348~^~601~^0.^0^^~1~^^^^^^^^^^^~08/01/1992~
-~18349~^~208~^277.^0^^~4~^^^^^^^^^^^~08/01/1992~
-~18349~^~262~^0.^0^^~4~^~FLA~^^^^^^^^^^~03/01/2003~
-~18349~^~263~^0.^0^^~4~^~FLA~^^^^^^^^^^~03/01/2003~
-~18349~^~268~^1159.^0^^~4~^^^^^^^^^^^~05/01/2005~
-~18349~^~301~^91.^27^6.^~1~^^^^^^^^^^^~08/01/1992~
-~18349~^~304~^20.^1^^~1~^^^^^^^^^^^~08/01/1992~
-~18349~^~305~^84.^1^^~1~^^^^^^^^^^^~08/01/1992~
-~18349~^~306~^114.^6^10.^~1~^^^^^^^^^^^~08/01/1992~
-~18349~^~307~^574.^0^^~8~^~LC~^^^^^^^^^^~08/01/2012~
-~18349~^~318~^0.^0^^~4~^~FLA~^^^^^^^^^^~12/01/1997~
-~18349~^~319~^0.^0^^~4~^~FLA~^^^^^^^^^^~03/01/2003~
-~18349~^~320~^0.^0^^~4~^~NC~^^^^^^^^^^~03/01/2003~
-~18349~^~321~^0.^0^^~7~^~Z~^^^^^^^^^^~07/01/2012~
-~18349~^~322~^0.^0^^~4~^~FLA~^^^^^^^^^^~07/01/2012~
-~18349~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~
-~18349~^~334~^0.^0^^~4~^~FLA~^^^^^^^^^^~07/01/2012~
-~18349~^~337~^0.^0^^~4~^~FLA~^^^^^^^^^^~03/01/2003~
-~18349~^~338~^50.^0^^~4~^~FLA~^^^^^^^^^^~03/01/2003~
-~18349~^~417~^113.^0^^~4~^~FLA~^^^^^^^^^^~03/01/2003~
-~18349~^~431~^80.^0^^~4~^~NR~^^^^^^^^^^~03/01/2003~
-~18349~^~432~^33.^0^^~4~^~NC~^^^^^^^^^^~08/01/1992~
-~18349~^~435~^169.^0^^~4~^~NC~^^^^^^^^^^~03/01/2007~
-~18349~^~601~^0.^0^^~1~^^^^^^^^^^^~08/01/1992~
-~18350~^~208~^279.^0^^~4~^~NC~^^^^^^^^^^~02/01/2015~
-~18350~^~262~^0.^0^^~4~^~FLA~^^^^^^^^^^~01/01/2003~
-~18350~^~263~^0.^0^^~4~^~FLA~^^^^^^^^^^~01/01/2003~
-~18350~^~268~^1167.^0^^~4~^~NC~^^^^^^^^^^~02/01/2015~
-~18350~^~301~^144.^5^13.^~1~^~A~^^^1^99.^176.^4^107.^180.^~2, 3~^~02/01/2015~
-~18350~^~304~^23.^5^0.^~1~^~A~^^^1^21.^26.^4^20.^25.^~2, 3~^~02/01/2015~
-~18350~^~305~^101.^5^9.^~1~^~A~^^^1^79.^130.^4^76.^126.^~2, 3~^~02/01/2015~
-~18350~^~306~^122.^5^9.^~1~^~A~^^^1^98.^147.^4^94.^148.^~2, 3~^~02/01/2015~
-~18350~^~307~^494.^5^19.^~1~^~A~^^^1^433.^548.^4^438.^548.^~2, 3~^~02/01/2015~
-~18350~^~318~^107.^0^^~4~^~FLA~^^^^^^^^^^~08/01/2015~
-~18350~^~319~^29.^0^^~4~^~FLA~^^^^^^^^^^~08/01/2015~
-~18350~^~320~^29.^0^^~4~^~FLA~^^^^^^^^^^~08/01/2015~
-~18350~^~321~^7.^0^^~4~^~FLA~^^^^^^^^^^~08/01/2015~
-~18350~^~322~^0.^0^^~4~^~FLA~^^^^^^^^^^~01/01/2003~
-~18350~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~
-~18350~^~334~^0.^0^^~4~^~FLA~^^^^^^^^^^~01/01/2003~
-~18350~^~337~^0.^0^^~4~^~FLA~^^^^^^^^^^~01/01/2003~
-~18350~^~338~^6.^0^^~4~^~FLA~^^^^^^^^^^~08/01/2015~
-~18350~^~417~^94.^3^26.^~1~^~A~^^^1^51.^141.^2^-18.^206.^~2, 3~^~02/01/2015~
-~18350~^~431~^53.^0^^~4~^~FLA~^^^^^^^^^^~02/01/2015~
-~18350~^~432~^41.^0^^~4~^~FLA~^^^^^^^^^^~02/01/2015~
-~18350~^~435~^131.^0^^~4~^~NC~^^^^^^^^^^~02/01/2015~
-~18350~^~601~^0.^2^^~1~^~A~^^^1^0.^0.^^^^~1~^~01/01/2003~
-~18351~^~208~^263.^0^^~4~^~NC~^^^^^^^^^^~08/01/1992~
-~18351~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2005~
-~18351~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2003~
-~18351~^~268~^1100.^0^^~4~^^^^^^^^^^^~05/01/2005~
-~18351~^~301~^95.^15^8.^~1~^^^^^^^^^^^~08/01/1992~
-~18351~^~304~^44.^0^^~4~^~FLA~^^^^^^^^^^~12/01/1997~
-~18351~^~305~^122.^0^^~4~^~FLA~^^^^^^^^^^~12/01/1997~
-~18351~^~306~^160.^0^^~4~^~FLA~^^^^^^^^^^~12/01/1997~
-~18351~^~307~^458.^3^18.^~1~^^^^^^^^^^^~08/01/1992~
-~18351~^~318~^0.^0^^~4~^~NC~^^^^^^^^^^~03/01/2003~
-~18351~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2002~
-~18351~^~320~^0.^0^^~4~^~NC~^^^^^^^^^^~03/01/2003~
-~18351~^~321~^0.^0^^~4~^~T~^^^^^^^^^^~03/01/2003~
-~18351~^~322~^0.^0^^~4~^~T~^^^^^^^^^^~03/01/2003~
-~18351~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~
-~18351~^~334~^0.^0^^~4~^~T~^^^^^^^^^^~03/01/2003~
-~18351~^~337~^0.^0^^~4~^~T~^^^^^^^^^^~03/01/2003~
-~18351~^~338~^45.^0^^~4~^~T~^^^^^^^^^^~03/01/2003~
-~18351~^~417~^111.^7^5.^~1~^~A~^^^1^91.^129.^6^97.^123.^~2, 3~^~03/01/2003~
-~18351~^~431~^86.^7^2.^~1~^~A~^^^1^78.^93.^6^80.^91.^~2, 3~^~03/01/2003~
-~18351~^~432~^25.^7^5.^~1~^~AS~^^^1^11.^44.^6^11.^37.^~2, 3~^~03/01/2003~
-~18351~^~435~^171.^0^^~4~^~NC~^^^^^^^^^^~03/01/2007~
-~18351~^~601~^0.^1^^~1~^^^^^^^^^^^~08/01/1992~
-~18353~^~208~^293.^0^^~4~^~NC~^^^^^^^^^^~08/01/1992~
-~18353~^~262~^0.^0^^~4~^~FLA~^^^^^^^^^^~03/01/2003~
-~18353~^~263~^0.^0^^~4~^~FLA~^^^^^^^^^^~03/01/2003~
-~18353~^~268~^1226.^0^^~4~^^^^^^^^^^^~05/01/2005~
-~18353~^~301~^95.^35^6.^~1~^^^^^^^^^^^~08/01/1992~
-~18353~^~304~^27.^9^1.^~1~^^^^^^^^^^^~08/01/1992~
-~18353~^~305~^100.^6^6.^~1~^^^^^^^^^^^~08/01/1992~
-~18353~^~306~^108.^9^5.^~1~^^^^^^^^^^^~08/01/1992~
-~18353~^~307~^544.^5^28.^~1~^^^^^^^^^^^~08/01/1992~
-~18353~^~318~^0.^1^^~1~^^^^^^^^^^^~08/01/1992~
-~18353~^~319~^0.^0^^~4~^~FLA~^^^^^^^^^^~03/01/2003~
-~18353~^~320~^0.^0^^~4~^~NC~^^^^^^^^^^~03/01/2003~
-~18353~^~321~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2003~
-~18353~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2003~
-~18353~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~
-~18353~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2003~
-~18353~^~337~^0.^0^^~4~^~FLA~^^^^^^^^^^~03/01/2003~
-~18353~^~338~^58.^0^^~4~^~FLA~^^^^^^^^^^~03/01/2003~
-~18353~^~417~^95.^0^^~4~^~BFZN~^^^^^^^^^^~03/01/1998~
-~18353~^~431~^80.^0^^~4~^~NC~^^^^^^^^^^~05/01/2000~
-~18353~^~432~^15.^4^1.^~1~^^^^^^^^^^^~08/01/1992~
-~18353~^~435~^151.^0^^~4~^~NC~^^^^^^^^^^~05/01/2007~
-~18353~^~601~^0.^0^^~1~^^^^^^^^^^^~08/01/1992~
-~18354~^~208~^274.^0^^~4~^~NC~^^^^^^^^^^~08/01/1992~
-~18354~^~262~^0.^0^^~4~^~FLA~^^^^^^^^^^~03/01/2003~
-~18354~^~263~^0.^0^^~4~^~FLA~^^^^^^^^^^~03/01/2003~
-~18354~^~268~^1146.^0^^~4~^^^^^^^^^^^~05/01/2005~
-~18354~^~301~^15.^2^^~1~^^^^^^^^^^^~08/01/1992~
-~18354~^~304~^9.^2^^~1~^^^^^^^^^^^~08/01/1992~
-~18354~^~305~^33.^2^^~1~^^^^^^^^^^^~08/01/1992~
-~18354~^~306~^149.^0^^~4~^~FLA~^^^^^^^^^^~12/01/1997~
-~18354~^~307~^135.^0^^~4~^~NR~^^^^^^^^^^~07/01/2012~
-~18354~^~318~^30.^2^^~1~^^^^^^^^^^^~07/01/2012~
-~18354~^~319~^6.^0^^~4~^~FLA~^^^^^^^^^^~03/01/2003~
-~18354~^~320~^6.^0^^~4~^~NC~^^^^^^^^^^~03/01/2003~
-~18354~^~321~^5.^0^^~4~^~FLA~^^^^^^^^^^~03/01/2003~
-~18354~^~322~^1.^0^^~4~^~FLA~^^^^^^^^^^~03/01/2003~
-~18354~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~
-~18354~^~334~^3.^0^^~4~^~FLA~^^^^^^^^^^~03/01/2003~
-~18354~^~337~^0.^0^^~4~^~FLA~^^^^^^^^^^~03/01/2003~
-~18354~^~338~^42.^0^^~4~^~FLA~^^^^^^^^^^~03/01/2003~
-~18354~^~417~^28.^0^^~4~^~FLA~^^^^^^^^^^~03/01/2003~
-~18354~^~431~^22.^0^^~4~^~NR~^^^^^^^^^^~03/01/2003~
-~18354~^~432~^6.^0^^~4~^~NC~^^^^^^^^^^~08/01/1992~
-~18354~^~435~^44.^0^^~4~^~NC~^^^^^^^^^^~07/01/2012~
-~18354~^~601~^6.^0^^~4~^~FLA~^^^^^^^^^^~12/01/1997~
-~18355~^~208~^360.^0^^~4~^~NC~^^^^^^^^^^~08/01/1992~
-~18355~^~268~^1506.^0^^~4~^^^^^^^^^^^
-~18355~^~301~^118.^2^^~1~^^^^^^^^^^^~08/01/1992~
-~18355~^~304~^19.^2^^~1~^^^^^^^^^^^~08/01/1992~
-~18355~^~305~^98.^2^^~1~^^^^^^^^^^^~08/01/1992~
-~18355~^~306~^137.^0^^~4~^~FLA~^^^^^^^^^^~12/01/1997~
-~18355~^~307~^357.^2^^~1~^^^^^^^^^^^~08/01/1992~
-~18355~^~318~^254.^0^^~4~^~FLA~^^^^^^^^^^~12/01/1997~
-~18355~^~417~^43.^0^^~4~^~FLA~^^^^^^^^^^~03/01/1998~
-~18355~^~431~^12.^0^^~4~^~NC~^^^^^^^^^^~05/01/2000~
-~18355~^~432~^31.^0^^~4~^^^^^^^^^^^~08/01/1992~
-~18355~^~435~^51.^0^^~4~^~NC~^^^^^^^^^^~01/01/2001~
-~18355~^~601~^76.^0^^~4~^~FLA~^^^^^^^^^^~12/01/1997~
-~18356~^~208~^372.^0^^~4~^~NC~^^^^^^^^^^~08/01/1992~
-~18356~^~262~^0.^0^^~4~^~FLA~^^^^^^^^^^~03/01/2003~
-~18356~^~263~^0.^0^^~4~^~FLA~^^^^^^^^^^~03/01/2003~
-~18356~^~268~^1556.^0^^~4~^^^^^^^^^^^~05/01/2005~
-~18356~^~301~^72.^10^19.^~1~^^^^^^^^^^^~08/01/1992~
-~18356~^~304~^17.^10^1.^~1~^^^^^^^^^^^~08/01/1992~
-~18356~^~305~^76.^10^4.^~1~^^^^^^^^^^^~08/01/1992~
-~18356~^~306~^111.^8^6.^~1~^^^^^^^^^^^~08/01/1992~
-~18356~^~307~^304.^0^^~8~^~LC~^^^^^^^^^^~05/01/2010~
-~18356~^~318~^214.^0^^~4~^~NC~^^^^^^^^^^~03/01/2003~
-~18356~^~319~^61.^0^^~4~^~FLA~^^^^^^^^^^~03/01/2003~
-~18356~^~320~^62.^0^^~4~^~NC~^^^^^^^^^^~03/01/2003~
-~18356~^~321~^5.^0^^~4~^~FLA~^^^^^^^^^^~03/01/2003~
-~18356~^~322~^1.^0^^~4~^~FLA~^^^^^^^^^^~03/01/2003~
-~18356~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~
-~18356~^~334~^2.^0^^~4~^~FLA~^^^^^^^^^^~03/01/2003~
-~18356~^~337~^0.^0^^~4~^~FLA~^^^^^^^^^^~03/01/2003~
-~18356~^~338~^70.^0^^~4~^~FLA~^^^^^^^^^^~03/01/2003~
-~18356~^~417~^72.^0^^~4~^~FLA~^^^^^^^^^^~03/01/2003~
-~18356~^~431~^48.^0^^~4~^^^^^^^^^^^~03/01/2003~
-~18356~^~432~^24.^4^1.^~1~^^^^^^^^^^^~08/01/1992~
-~18356~^~435~^106.^0^^~4~^~NC~^^^^^^^^^^~03/01/2007~
-~18356~^~601~^66.^2^^~1~^^^^^^^^^^^~08/01/1992~
-~18357~^~208~^333.^0^^~4~^~NC~^^^^^^^^^^~08/01/1992~
-~18357~^~268~^1393.^0^^~4~^^^^^^^^^^^
-~18357~^~301~^31.^14^10.^~1~^^^^^^^^^^^~08/01/1992~
-~18357~^~304~^11.^11^0.^~1~^^^^^^^^^^^~08/01/1992~
-~18357~^~305~^321.^11^10.^~1~^^^^^^^^^^^~08/01/1992~
-~18357~^~306~^58.^11^8.^~1~^^^^^^^^^^^~08/01/1992~
-~18357~^~307~^765.^14^15.^~1~^^^^^^^^^^^~08/01/1992~
-~18357~^~318~^2.^0^^~4~^~FLA~^^^^^^^^^^~12/01/1997~
-~18357~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2002~
-~18357~^~320~^0.^0^^~4~^~NC~^^^^^^^^^^~06/01/2002~
-~18357~^~417~^50.^0^^~4~^~FLA~^^^^^^^^^^~03/01/1998~
-~18357~^~431~^42.^0^^~4~^~NC~^^^^^^^^^^~05/01/2000~
-~18357~^~432~^8.^0^^~4~^^^^^^^^^^^~08/01/1992~
-~18357~^~435~^79.^0^^~4~^~NC~^^^^^^^^^^~01/01/2001~
-~18357~^~601~^0.^0^^~4~^^^^^^^^^^^~08/01/1992~
-~18358~^~208~^362.^0^^~4~^^^^^^^^^^^~08/01/1992~
-~18358~^~268~^1515.^0^^~4~^^^^^^^^^^^
-~18358~^~301~^34.^0^^~4~^^^^^^^^^^^~08/01/1992~
-~18358~^~304~^12.^0^^~4~^^^^^^^^^^^~08/01/1992~
-~18358~^~305~^348.^0^^~4~^^^^^^^^^^^~08/01/1992~
-~18358~^~306~^63.^0^^~4~^^^^^^^^^^^~08/01/1992~
-~18358~^~307~^832.^0^^~4~^^^^^^^^^^^~08/01/1992~
-~18358~^~318~^2.^0^^~4~^^^^^^^^^^^~08/01/1992~
-~18358~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2002~
-~18358~^~320~^0.^0^^~4~^~NC~^^^^^^^^^^~06/01/2002~
-~18358~^~417~^55.^0^^~4~^~RP~^^^^^^^^^^~11/01/1998~
-~18358~^~431~^49.^0^^~4~^~NC~^^^^^^^^^^~05/01/2000~
-~18358~^~432~^6.^0^^~4~^^^^^^^^^^^~08/01/1992~
-~18358~^~435~^89.^0^^~4~^~NC~^^^^^^^^^^~01/01/2001~
-~18358~^~601~^0.^0^^~4~^^^^^^^^^^^~08/01/1992~
-~18360~^~208~^476.^0^^~4~^~NC~^^^^^^^^^^~07/01/2014~
-~18360~^~262~^0.^0^^~4~^~FLA~^^^^^^^^^^~03/01/2003~
-~18360~^~263~^0.^0^^~4~^~FLA~^^^^^^^^^^~03/01/2003~
-~18360~^~268~^1991.^0^^~4~^~NC~^^^^^^^^^^~07/01/2014~
-~18360~^~301~^100.^16^2.^~1~^~A~^^^1^61.^128.^8^94.^106.^~2, 3~^~07/01/2014~
-~18360~^~304~^83.^16^1.^~1~^~A~^^^1^70.^144.^5^78.^86.^~2, 3~^~07/01/2014~
-~18360~^~305~^233.^16^3.^~1~^~A~^^^1^208.^328.^8^225.^240.^~2, 3~^~07/01/2014~
-~18360~^~306~^231.^16^4.^~1~^~A~^^^1^202.^281.^12^220.^241.^~2, 3~^~07/01/2014~
-~18360~^~307~^324.^16^22.^~1~^~A~^^^1^11.^577.^8^271.^376.^~2, 3~^~07/01/2014~
-~18360~^~318~^17.^0^^~1~^~AS~^^^^^^^^^^~02/01/2006~
-~18360~^~319~^0.^0^^~4~^~FLA~^^^^^^^^^^~03/01/2003~
-~18360~^~320~^1.^0^^~4~^~NC~^^^^^^^^^^~07/01/2014~
-~18360~^~321~^3.^3^0.^~1~^~A~^^^1^3.^3.^^^^~1, 2, 3~^~02/01/2006~
-~18360~^~322~^3.^3^0.^~1~^~A~^^^1^3.^3.^^^^~1, 2, 3~^~02/01/2006~
-~18360~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~
-~18360~^~334~^13.^3^10.^~1~^~A~^^^1^3.^33.^2^-31.^56.^~1, 2, 3~^~02/01/2006~
-~18360~^~337~^3.^3^0.^~1~^~A~^^^1^3.^3.^^^^~1, 2, 3~^~02/01/2006~
-~18360~^~338~^106.^0^^~4~^~FLA~^^^^^^^^^^~06/01/2012~
-~18360~^~417~^69.^2^^~1~^~A~^^^1^60.^78.^1^^^^~02/01/2006~
-~18360~^~431~^24.^2^^~1~^~A~^^^1^11.^36.^1^^^^~02/01/2006~
-~18360~^~432~^46.^0^^~1~^~AS~^^^^^^^^^^~05/01/2013~
-~18360~^~435~^85.^0^^~4~^~NC~^^^^^^^^^^~03/01/2009~
-~18360~^~601~^0.^0^^~4~^~FLA~^^^^^^^^^^~07/01/2014~
-~18361~^~208~^370.^0^^~4~^~NC~^^^^^^^^^^~04/01/2014~
-~18361~^~268~^1549.^0^^~4~^~NC~^^^^^^^^^^~04/01/2014~
-~18361~^~301~^293.^1^^~1~^~A~^^^^^^^^^^~04/01/2014~
-~18361~^~304~^18.^1^^~1~^~A~^^^^^^^^^^~04/01/2014~
-~18361~^~305~^84.^1^^~1~^~A~^^^^^^^^^^~04/01/2014~
-~18361~^~306~^105.^1^^~1~^~A~^^^^^^^^^^~04/01/2014~
-~18361~^~307~^361.^1^^~1~^~A~^^^^^^^^^^~04/01/2014~
-~18361~^~417~^137.^1^^~1~^~A~^^^^^^^^^^~04/01/2014~
-~18362~^~208~^388.^0^^~4~^~NC~^^^^^^^^^^~04/01/2014~
-~18362~^~262~^0.^0^^~4~^~FLC~^^^^^^^^^^~03/01/2003~
-~18362~^~263~^0.^0^^~4~^~FLC~^^^^^^^^^^~03/01/2003~
-~18362~^~268~^1622.^0^^~4~^~NC~^^^^^^^^^^~04/01/2014~
-~18362~^~301~^16.^11^1.^~1~^~A~^^^1^10.^26.^8^12.^19.^~2, 3~^~04/01/2014~
-~18362~^~304~^12.^11^0.^~1~^~A~^^^1^11.^14.^8^11.^12.^~2, 3~^~01/01/2006~
-~18362~^~305~^87.^11^5.^~1~^~A~^^^1^67.^117.^8^75.^98.^~2, 3~^~04/01/2014~
-~18362~^~306~^102.^11^7.^~1~^~A~^^^1^70.^140.^8^85.^117.^~2, 3~^~04/01/2014~
-~18362~^~307~^334.^11^7.^~1~^~A~^^^1^258.^373.^8^315.^352.^~2, 3~^~01/01/2006~
-~18362~^~318~^680.^0^^~4~^~NC~^^^^^^^^^^~04/01/2014~
-~18362~^~319~^202.^0^^~4~^~BFZN~^~18938~^^^^^^^^^~04/01/2014~
-~18362~^~320~^202.^0^^~4~^~BFZN~^~18938~^^^^^^^^^~04/01/2014~
-~18362~^~321~^3.^0^^~4~^~BFZN~^~18938~^^^^^^^^^~04/01/2014~
-~18362~^~322~^3.^0^^~4~^~BFZN~^~18938~^^^^^^^^^~04/01/2014~
-~18362~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~
-~18362~^~334~^3.^0^^~4~^~BFZN~^~18938~^^^^^^^^^~04/01/2014~
-~18362~^~337~^0.^0^^~4~^~BFZN~^~18938~^^^^^^^^^~04/01/2014~
-~18362~^~338~^52.^0^^~4~^~BFZN~^~18938~^^^^^^^^^~04/01/2014~
-~18362~^~417~^111.^5^11.^~1~^~A~^^^1^77.^146.^3^74.^147.^~2, 3~^~04/01/2014~
-~18362~^~431~^91.^0^^~4~^~FLC~^^^^^^^^^^~04/01/2014~
-~18362~^~432~^20.^0^^~4~^~FLC~^^^^^^^^^^~04/01/2014~
-~18362~^~435~^174.^0^^~4~^~NC~^^^^^^^^^^~04/01/2014~
-~18362~^~601~^0.^0^^~4~^~FLC~^^^^^^^^^^~01/01/2006~
-~18363~^~208~^218.^0^^~4~^~NC~^^^^^^^^^^~02/01/2004~
-~18363~^~262~^0.^0^^~4~^~FLA~^^^^^^^^^^~03/01/2003~
-~18363~^~263~^0.^0^^~4~^~FLA~^^^^^^^^^^~03/01/2003~
-~18363~^~268~^912.^0^^~4~^~NC~^^^^^^^^^^~02/01/2004~
-~18363~^~301~^81.^6^11.^~1~^~A~^^^1^48.^129.^5^50.^110.^~2, 3~^~02/01/2004~
-~18363~^~304~^72.^6^5.^~1~^~A~^^^1^60.^93.^5^59.^85.^~2, 3~^~02/01/2004~
-~18363~^~305~^314.^42^26.^~1~^^^^^^^^^^^~08/01/1992~
-~18363~^~306~^186.^6^4.^~1~^~A~^^^1^178.^206.^5^174.^196.^~2, 3~^~02/01/2004~
-~18363~^~307~^45.^6^3.^~1~^~A~^^^1^34.^58.^5^36.^54.^~2, 3~^~02/01/2004~
-~18363~^~318~^2.^0^^~4~^~NC~^^^^^^^^^^~02/01/2004~
-~18363~^~319~^0.^0^^~4~^~FLA~^^^^^^^^^^~03/01/2003~
-~18363~^~320~^0.^0^^~4~^~NC~^^^^^^^^^^~02/01/2004~
-~18363~^~321~^1.^0^^~4~^~FLA~^^^^^^^^^^~03/01/2003~
-~18363~^~322~^0.^0^^~4~^~FLA~^^^^^^^^^^~03/01/2003~
-~18363~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~
-~18363~^~334~^1.^0^^~4~^~FLA~^^^^^^^^^^~03/01/2003~
-~18363~^~337~^0.^0^^~4~^~FLA~^^^^^^^^^^~03/01/2003~
-~18363~^~338~^3.^0^^~4~^~FLA~^^^^^^^^^^~03/01/2003~
-~18363~^~417~^5.^6^0.^~1~^~A~^^^1^3.^9.^5^2.^7.^~2, 3~^~02/01/2004~
-~18363~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2004~
-~18363~^~432~^5.^0^^~4~^~O~^^^^^^^^^^~02/01/2004~
-~18363~^~435~^5.^0^^~4~^~NC~^^^^^^^^^^~03/01/2006~
-~18363~^~601~^0.^0^^~1~^^^^^^^^^^^~08/01/1992~
-~18364~^~208~^306.^0^^~4~^~NC~^^^^^^^^^^~02/01/2015~
-~18364~^~262~^0.^0^^~4~^~FLA~^^^^^^^^^^~03/01/2003~
-~18364~^~263~^0.^0^^~4~^~FLA~^^^^^^^^^^~03/01/2003~
-~18364~^~268~^1279.^0^^~4~^~NC~^^^^^^^^^^~02/01/2015~
-~18364~^~301~^146.^16^7.^~1~^~A~^^^1^30.^197.^8^129.^161.^~2, 3~^~02/01/2015~
-~18364~^~304~^22.^16^0.^~1~^~A~^^^1^20.^25.^11^21.^22.^~2, 3~^~02/01/2015~
-~18364~^~305~^206.^16^6.^~1~^~A~^^^1^119.^260.^8^190.^221.^~2, 3~^~02/01/2015~
-~18364~^~306~^125.^16^4.^~1~^~A~^^^1^95.^209.^8^114.^136.^~2, 3~^~02/01/2015~
-~18364~^~307~^736.^16^10.^~1~^~A~^^^1^531.^873.^9^711.^760.^~2, 3~^~02/01/2015~
-~18364~^~318~^0.^0^^~4~^~NC~^^^^^^^^^^~03/01/2004~
-~18364~^~319~^0.^0^^~4~^~FLA~^^^^^^^^^^~03/01/2003~
-~18364~^~320~^0.^0^^~4~^~FLA~^^^^^^^^^^~03/01/2004~
-~18364~^~321~^0.^0^^~4~^~FLA~^^^^^^^^^^~03/01/2003~
-~18364~^~322~^0.^0^^~4~^~FLA~^^^^^^^^^^~03/01/2003~
-~18364~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~
-~18364~^~334~^0.^0^^~4~^~FLA~^^^^^^^^^^~03/01/2003~
-~18364~^~337~^0.^0^^~4~^~FLA~^^^^^^^^^^~03/01/2003~
-~18364~^~338~^9.^0^^~4~^~FLA~^^^^^^^^^^~02/01/2015~
-~18364~^~417~^94.^9^5.^~1~^~A~^^^1^58.^125.^4^79.^108.^~2, 3~^~02/01/2015~
-~18364~^~431~^79.^0^^~4~^~FLA~^^^^^^^^^^~02/01/2015~
-~18364~^~432~^15.^0^^~4~^~NC~^^^^^^^^^^~02/01/2015~
-~18364~^~435~^149.^0^^~4~^~NC~^^^^^^^^^^~02/01/2015~
-~18364~^~601~^0.^0^^~4~^~FLA~^^^^^^^^^^~02/01/2015~
-~18365~^~208~^285.^0^^~4~^~NC~^^^^^^^^^^~10/01/2004~
-~18365~^~262~^0.^0^^~4~^~FLA~^^^^^^^^^^~03/01/2003~
-~18365~^~263~^0.^0^^~4~^~FLA~^^^^^^^^^^~03/01/2003~
-~18365~^~268~^1193.^0^^~4~^~NC~^^^^^^^^^^~10/01/2004~
-~18365~^~301~^308.^2^^~1~^~A~^^^1^192.^423.^1^^^^~10/01/2004~
-~18365~^~304~^23.^2^^~1~^~A~^^^1^19.^28.^1^^^^~10/01/2004~
-~18365~^~305~^361.^2^^~1~^~A~^^^1^350.^371.^1^^^^~10/01/2004~
-~18365~^~306~^125.^2^^~1~^~A~^^^1^110.^140.^1^^^^~10/01/2004~
-~18365~^~307~^638.^2^^~1~^~A~^^^1^601.^674.^1^^^^~10/01/2004~
-~18365~^~318~^1271.^0^^~4~^~FLA~^^^^^^^^^^~10/01/2004~
-~18365~^~319~^380.^0^^~4~^~FLA~^^^^^^^^^^~10/01/2004~
-~18365~^~320~^381.^0^^~4~^~FLA~^^^^^^^^^^~10/01/2004~
-~18365~^~321~^1.^0^^~4~^~FLA~^^^^^^^^^^~10/01/2004~
-~18365~^~322~^0.^0^^~4~^~FLA~^^^^^^^^^^~10/01/2004~
-~18365~^~334~^1.^0^^~4~^~FLA~^^^^^^^^^^~10/01/2004~
-~18365~^~337~^0.^0^^~4~^~FLA~^^^^^^^^^^~03/01/2003~
-~18365~^~338~^48.^0^^~4~^~FLA~^^^^^^^^^^~10/01/2004~
-~18365~^~417~^68.^1^^~1~^~A~^^^^^^^^^^~10/01/2004~
-~18365~^~431~^57.^1^^~1~^~A~^^^^^^^^^^~10/01/2004~
-~18365~^~432~^11.^0^^~1~^~AS~^^^^^^^^^^~10/01/2004~
-~18365~^~435~^108.^0^^~4~^~NC~^^^^^^^^^^~03/01/2005~
-~18365~^~601~^14.^2^^~1~^~A~^^^1^7.^22.^1^^^^~10/01/2004~
-~18367~^~208~^291.^0^^~4~^~NC~^^^^^^^^^^~08/01/1992~
-~18367~^~268~^1218.^0^^~4~^^^^^^^^^^^
-~18367~^~301~^255.^0^^~1~^^^^^^^^^^^~08/01/1992~
-~18367~^~304~^19.^0^^~1~^^^^^^^^^^^~08/01/1992~
-~18367~^~305~^190.^0^^~1~^^^^^^^^^^^~08/01/1992~
-~18367~^~306~^159.^0^^~1~^^^^^^^^^^^~08/01/1992~
-~18367~^~307~^511.^0^^~1~^^^^^^^^^^^~08/01/1992~
-~18367~^~318~^228.^0^^~1~^^^^^^^^^^^~08/01/1992~
-~18367~^~319~^64.^0^^~4~^~NC~^^^^^^^^^^~06/01/2002~
-~18367~^~320~^65.^0^^~4~^~NC~^^^^^^^^^^~06/01/2002~
-~18367~^~417~^46.^0^^~4~^~RK~^^^^^^^^^^~12/01/1997~
-~18367~^~431~^31.^0^^~4~^~NC~^^^^^^^^^^~05/01/2000~
-~18367~^~432~^15.^0^^~1~^^^^^^^^^^^~08/01/1992~
-~18367~^~435~^68.^0^^~4~^~NC~^^^^^^^^^^~01/01/2001~
-~18367~^~601~^69.^0^^~1~^^^^^^^^^^^~08/01/1992~
-~18368~^~208~^291.^0^^~4~^~NC~^^^^^^^^^^~08/01/1992~
-~18368~^~268~^1218.^0^^~4~^^^^^^^^^^^
-~18368~^~301~^47.^0^^~1~^^^^^^^^^^^~08/01/1992~
-~18368~^~304~^20.^0^^~1~^^^^^^^^^^^~08/01/1992~
-~18368~^~305~^81.^0^^~1~^^^^^^^^^^^~08/01/1992~
-~18368~^~306~^82.^0^^~1~^^^^^^^^^^^~08/01/1992~
-~18368~^~307~^572.^0^^~1~^^^^^^^^^^^~08/01/1992~
-~18368~^~318~^14.^0^^~1~^^^^^^^^^^^~08/01/1992~
-~18368~^~319~^4.^0^^~4~^~NC~^^^^^^^^^^~06/01/2002~
-~18368~^~320~^4.^0^^~4~^~NC~^^^^^^^^^^~06/01/2002~
-~18368~^~417~^86.^0^^~4~^~FLA~^^^^^^^^^^~03/01/1998~
-~18368~^~431~^69.^0^^~4~^~NC~^^^^^^^^^^~05/01/2000~
-~18368~^~432~^17.^0^^~1~^^^^^^^^^^^~08/01/1992~
-~18368~^~435~^134.^0^^~4~^~NC~^^^^^^^^^^~01/01/2001~
-~18368~^~601~^9.^0^^~1~^^^^^^^^^^^~08/01/1992~
-~18369~^~208~^53.^0^^~4~^~NC~^^^^^^^^^^~08/01/1992~
-~18369~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~09/01/2002~
-~18369~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~09/01/2002~
-~18369~^~268~^222.^0^^~4~^^^^^^^^^^^~11/01/2006~
-~18369~^~301~^5876.^2^^~1~^^^^^^^^^^^~08/01/1992~
-~18369~^~304~^27.^4^1.^~1~^^^^^^^^^^^~08/01/1992~
-~18369~^~305~^2191.^4^40.^~1~^^^^^^^^^^^~08/01/1992~
-~18369~^~306~^20.^1^^~1~^^^^^^^^^^^~08/01/1992~
-~18369~^~307~^10600.^2^^~1~^^^^^^^^^^^~08/01/1992~
-~18369~^~318~^0.^0^^~1~^^^^^^^^^^^~08/01/1992~
-~18369~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2002~
-~18369~^~320~^0.^0^^~4~^~NC~^^^^^^^^^^~06/01/2002~
-~18369~^~321~^0.^0^^~7~^~Z~^^^^^^^^^^~09/01/2002~
-~18369~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~09/01/2002~
-~18369~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~
-~18369~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~09/01/2002~
-~18369~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~09/01/2002~
-~18369~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~09/01/2002~
-~18369~^~417~^0.^0^^~1~^^^^^^^^^^^~08/01/1992~
-~18369~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~
-~18369~^~432~^0.^0^^~1~^^^^^^^^^^^~08/01/1992~
-~18369~^~435~^0.^0^^~4~^~NC~^^^^^^^^^^~11/01/2006~
-~18369~^~601~^0.^0^^~1~^^^^^^^^^^^~08/01/1992~
-~18370~^~208~^51.^0^^~4~^~NC~^^^^^^^^^^~08/01/1992~
-~18370~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~09/01/2002~
-~18370~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~09/01/2002~
-~18370~^~268~^213.^0^^~4~^^^^^^^^^^^~11/01/2006~
-~18370~^~301~^7364.^3^32.^~1~^^^^^^^^^^^~08/01/1992~
-~18370~^~304~^39.^3^12.^~1~^^^^^^^^^^^~08/01/1992~
-~18370~^~305~^9918.^3^309.^~1~^^^^^^^^^^^~08/01/1992~
-~18370~^~306~^5.^1^^~1~^^^^^^^^^^^~08/01/1992~
-~18370~^~307~^7893.^3^404.^~1~^^^^^^^^^^^~08/01/1992~
-~18370~^~318~^0.^0^^~1~^^^^^^^^^^^~08/01/1992~
-~18370~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2002~
-~18370~^~320~^0.^0^^~4~^~NC~^^^^^^^^^^~06/01/2002~
-~18370~^~321~^0.^0^^~7~^~Z~^^^^^^^^^^~09/01/2002~
-~18370~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~09/01/2002~
-~18370~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~
-~18370~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~09/01/2002~
-~18370~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~09/01/2002~
-~18370~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~09/01/2002~
-~18370~^~417~^0.^0^^~1~^^^^^^^^^^^~08/01/1992~
-~18370~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~
-~18370~^~432~^0.^0^^~1~^^^^^^^^^^^~08/01/1992~
-~18370~^~435~^0.^0^^~4~^~NC~^^^^^^^^^^~11/01/2006~
-~18370~^~601~^0.^0^^~1~^^^^^^^^^^^~08/01/1992~
-~18371~^~208~^97.^0^^~4~^~NC~^^^^^^^^^^~08/01/1992~
-~18371~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~09/01/2002~
-~18371~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~09/01/2002~
-~18371~^~268~^406.^0^^~4~^^^^^^^^^^^~11/01/2006~
-~18371~^~301~^4332.^2^^~1~^^^^^^^^^^^~08/01/1992~
-~18371~^~304~^29.^2^^~1~^^^^^^^^^^^~08/01/1992~
-~18371~^~305~^6869.^2^^~1~^^^^^^^^^^^~08/01/1992~
-~18371~^~306~^10100.^1^^~1~^^^^^^^^^^^~08/01/1992~
-~18371~^~307~^90.^1^^~1~^^^^^^^^^^^~08/01/1992~
-~18371~^~318~^0.^0^^~1~^^^^^^^^^^^~08/01/1992~
-~18371~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2002~
-~18371~^~320~^0.^0^^~4~^~NC~^^^^^^^^^^~06/01/2002~
-~18371~^~321~^0.^0^^~7~^~Z~^^^^^^^^^^~09/01/2002~
-~18371~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~09/01/2002~
-~18371~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~
-~18371~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~09/01/2002~
-~18371~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~09/01/2002~
-~18371~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~11/01/2002~
-~18371~^~417~^0.^0^^~1~^^^^^^^^^^^~08/01/1992~
-~18371~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~
-~18371~^~432~^0.^0^^~1~^^^^^^^^^^^~08/01/1992~
-~18371~^~435~^0.^0^^~4~^~NC~^^^^^^^^^^~11/01/2006~
-~18371~^~601~^0.^0^^~1~^^^^^^^^^^^~08/01/1992~
-~18372~^~208~^0.^0^^~4~^~NC~^^^^^^^^^^~08/01/1992~
-~18372~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~09/01/2002~
-~18372~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~09/01/2002~
-~18372~^~268~^0.^0^^~4~^^^^^^^^^^^~11/01/2006~
-~18372~^~301~^0.^1^^~1~^^^^^^^^^^^~08/01/1992~
-~18372~^~304~^0.^1^^~1~^^^^^^^^^^^~08/01/1992~
-~18372~^~305~^0.^1^^~1~^^^^^^^^^^^~08/01/1992~
-~18372~^~306~^0.^1^^~1~^^^^^^^^^^^~08/01/1992~
-~18372~^~307~^27360.^1^^~1~^^^^^^^^^^^~08/01/1992~
-~18372~^~318~^0.^0^^~1~^^^^^^^^^^^~08/01/1992~
-~18372~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2002~
-~18372~^~320~^0.^0^^~4~^~NC~^^^^^^^^^^~06/01/2002~
-~18372~^~321~^0.^0^^~7~^~Z~^^^^^^^^^^~09/01/2002~
-~18372~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~09/01/2002~
-~18372~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~
-~18372~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~09/01/2002~
-~18372~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~09/01/2002~
-~18372~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~09/01/2002~
-~18372~^~417~^0.^0^^~1~^^^^^^^^^^^~08/01/1992~
-~18372~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~
-~18372~^~432~^0.^0^^~1~^^^^^^^^^^^~08/01/1992~
-~18372~^~435~^0.^0^^~4~^~NC~^^^^^^^^^^~11/01/2006~
-~18372~^~601~^0.^0^^~1~^^^^^^^^^^^~08/01/1992~
-~18373~^~208~^258.^0^^~4~^~NC~^^^^^^^^^^~08/01/1992~
-~18373~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~09/01/2002~
-~18373~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~09/01/2002~
-~18373~^~268~^1079.^0^^~4~^^^^^^^^^^^~11/01/2006~
-~18373~^~301~^8.^2^^~1~^^^^^^^^^^^~08/01/1992~
-~18373~^~304~^2.^2^^~1~^^^^^^^^^^^~08/01/1992~
-~18373~^~305~^5.^2^^~1~^^^^^^^^^^^~08/01/1992~
-~18373~^~306~^16500.^1^^~1~^^^^^^^^^^^~08/01/1992~
-~18373~^~307~^52.^2^^~1~^^^^^^^^^^^~08/01/1992~
-~18373~^~318~^0.^0^^~1~^^^^^^^^^^^~08/01/1992~
-~18373~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2002~
-~18373~^~320~^0.^0^^~4~^~NC~^^^^^^^^^^~06/01/2002~
-~18373~^~321~^0.^0^^~7~^~Z~^^^^^^^^^^~09/01/2002~
-~18373~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~09/01/2002~
-~18373~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~
-~18373~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~09/01/2002~
-~18373~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~09/01/2002~
-~18373~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~09/01/2002~
-~18373~^~417~^0.^0^^~1~^^^^^^^^^^^~08/01/1992~
-~18373~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~
-~18373~^~432~^0.^0^^~1~^^^^^^^^^^^~08/01/1992~
-~18373~^~435~^0.^0^^~4~^~NC~^^^^^^^^^^~11/01/2006~
-~18373~^~601~^0.^0^^~1~^^^^^^^^^^^~08/01/1992~
-~18374~^~208~^105.^0^^~4~^~NC~^^^^^^^^^^~12/01/2006~
-~18374~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~09/01/2002~
-~18374~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~09/01/2002~
-~18374~^~268~^439.^0^^~4~^~NC~^^^^^^^^^^~06/01/2008~
-~18374~^~301~^19.^2^^~1~^^^^^^^^^^^~08/01/1992~
-~18374~^~304~^40.^2^^~1~^^^^^^^^^^^~08/01/1992~
-~18374~^~305~^336.^1^^~1~^^^^^^^^^^^~08/01/1992~
-~18374~^~306~^601.^1^^~1~^^^^^^^^^^^~08/01/1992~
-~18374~^~307~^30.^1^^~1~^^^^^^^^^^^~08/01/1992~
-~18374~^~318~^0.^0^^~4~^^^^^^^^^^^~08/01/1992~
-~18374~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2002~
-~18374~^~320~^0.^0^^~1~^~AS~^^^^^^^^^^~12/01/2006~
-~18374~^~321~^0.^0^^~7~^~Z~^^^^^^^^^^~09/01/2002~
-~18374~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~09/01/2002~
-~18374~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~
-~18374~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~09/01/2002~
-~18374~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~09/01/2002~
-~18374~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~09/01/2002~
-~18374~^~417~^785.^1^^~1~^^^^^^^^^^^~08/01/1992~
-~18374~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~
-~18374~^~432~^785.^1^^~1~^^^^^^^^^^^~12/01/2006~
-~18374~^~435~^785.^0^^~4~^~NC~^^^^^^^^^^~06/01/2008~
-~18374~^~601~^0.^1^^~1~^^^^^^^^^^^~08/01/1992~
-~18375~^~208~^325.^0^^~4~^~NC~^^^^^^^^^^~01/01/2009~
-~18375~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~11/01/2002~
-~18375~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~11/01/2002~
-~18375~^~268~^1361.^0^^~4~^~NC~^^^^^^^^^^~01/01/2009~
-~18375~^~301~^30.^1^^~1~^~A~^^^^^^^^^^~01/01/2009~
-~18375~^~304~^54.^1^^~1~^~A~^^^^^^^^^^~01/01/2009~
-~18375~^~305~^637.^1^^~1~^~A~^^^^^^^^^^~01/01/2009~
-~18375~^~306~^955.^1^^~1~^~A~^^^^^^^^^^~01/01/2009~
-~18375~^~307~^51.^1^^~1~^~A~^^^^^^^^^^~01/01/2009~
-~18375~^~318~^0.^0^^~1~^~AS~^^^^^^^^^^~01/01/2009~
-~18375~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2002~
-~18375~^~320~^0.^0^^~1~^~AS~^^^^^^^^^^~01/01/2009~
-~18375~^~321~^0.^0^^~7~^~Z~^^^^^^^^^^~11/01/2002~
-~18375~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~11/01/2002~
-~18375~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~
-~18375~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~11/01/2002~
-~18375~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~11/01/2002~
-~18375~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~11/01/2002~
-~18375~^~417~^2340.^1^^~1~^^^^^^^^^^^~08/01/1992~
-~18375~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~
-~18375~^~432~^2340.^1^^~1~^^^^^^^^^^^~01/01/2009~
-~18375~^~435~^2340.^0^^~4~^~NC~^^^^^^^^^^~01/01/2009~
-~18375~^~601~^0.^1^^~1~^^^^^^^^^^^~01/01/2009~
-~18376~^~208~^383.^0^^~4~^~NC~^^^^^^^^^^~04/01/2004~
-~18376~^~262~^0.^0^^~4~^~BFZN~^~18079~^^^^^^^^^~05/01/2011~
-~18376~^~263~^0.^0^^~4~^~BFZN~^~18079~^^^^^^^^^~05/01/2011~
-~18376~^~268~^1604.^0^^~4~^~NC~^^^^^^^^^^~04/01/2004~
-~18376~^~301~^182.^6^5.^~1~^~A~^^^1^168.^200.^5^168.^195.^~2, 3~^~04/01/2004~
-~18376~^~304~^46.^6^0.^~1~^~A~^^^1^45.^46.^5^45.^46.^~2, 3~^~04/01/2004~
-~18376~^~305~^177.^6^2.^~1~^~A~^^^1^170.^186.^5^169.^184.^~2, 3~^~04/01/2004~
-~18376~^~306~^231.^6^5.^~1~^~A~^^^1^221.^260.^5^215.^246.^~2, 3~^~04/01/2004~
-~18376~^~307~^2100.^0^^~4~^~NR~^^^^^^^^^^~07/01/2017~
-~18376~^~318~^193.^0^^~4~^~NC~^^^^^^^^^^~07/01/2017~
-~18376~^~319~^0.^0^^~4~^~BFZN~^~18079~^^^^^^^^^~05/01/2011~
-~18376~^~320~^10.^0^^~4~^~NC~^^^^^^^^^^~07/01/2017~
-~18376~^~321~^116.^2^^~1~^~A~^^^1^114.^118.^1^^^^~04/01/2004~
-~18376~^~322~^0.^3^0.^~1~^~A~^^^1^0.^0.^^^^~1, 2, 3~^~04/01/2004~
-~18376~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~08/01/2012~
-~18376~^~334~^0.^3^0.^~1~^~A~^^^1^0.^0.^^^^~1, 2, 3~^~04/01/2004~
-~18376~^~337~^0.^3^0.^~1~^~A~^^^1^0.^0.^^^^~1, 2, 3~^~04/01/2004~
-~18376~^~338~^0.^0^^~4~^~BFZN~^~18079~^^^^^^^^^~05/01/2011~
-~18376~^~417~^119.^6^2.^~1~^~A~^^^1^112.^129.^5^112.^125.^~2, 3~^~04/01/2004~
-~18376~^~431~^91.^0^^~4~^~NR~^~18079~^^^^^^^^^~08/01/2012~
-~18376~^~432~^28.^0^^~4~^~NC~^~18079~^^^^^^^^^~08/01/2012~
-~18376~^~435~^183.^0^^~4~^~NC~^~18079~^^^^^^^^^~08/01/2012~
-~18376~^~601~^1.^0^^~4~^~FLA~^^^^^^^^^^~12/01/1997~
-~18377~^~208~^447.^0^^~4~^~NC~^^^^^^^^^^~08/01/1992~
-~18377~^~268~^1870.^0^^~4~^^^^^^^^^^^
-~18377~^~301~^105.^0^^~1~^^^^^^^^^^^~08/01/1992~
-~18377~^~304~^43.^0^^~1~^^^^^^^^^^^~08/01/1992~
-~18377~^~305~^167.^0^^~1~^^^^^^^^^^^~08/01/1992~
-~18377~^~306~^182.^0^^~1~^^^^^^^^^^^~08/01/1992~
-~18377~^~307~^598.^0^^~1~^^^^^^^^^^^~08/01/1992~
-~18377~^~318~^757.^0^^~4~^~NC~^^^^^^^^^^~04/01/2002~
-~18377~^~319~^146.^0^^~4~^~RK~^^^^^^^^^^~04/01/2002~
-~18377~^~320~^160.^0^^~4~^~NC~^^^^^^^^^^~04/01/2002~
-~18377~^~321~^162.^0^^~4~^~RK~^^^^^^^^^^~04/01/2002~
-~18377~^~417~^33.^0^^~4~^~RK~^^^^^^^^^^~12/01/1997~
-~18377~^~431~^21.^0^^~4~^~NC~^^^^^^^^^^~05/01/2000~
-~18377~^~432~^12.^0^^~1~^^^^^^^^^^^~08/01/1992~
-~18377~^~435~^48.^0^^~4~^~NC~^^^^^^^^^^~04/01/2002~
-~18377~^~601~^36.^0^^~1~^^^^^^^^^^^~08/01/1992~
-~18378~^~208~^488.^0^^~4~^~NC~^^^^^^^^^^~08/01/1992~
-~18378~^~268~^2042.^0^^~4~^^^^^^^^^^^
-~18378~^~301~^38.^0^^~1~^^^^^^^^^^^~08/01/1992~
-~18378~^~304~^55.^0^^~1~^^^^^^^^^^^~08/01/1992~
-~18378~^~305~^100.^0^^~1~^^^^^^^^^^^~08/01/1992~
-~18378~^~306~^221.^0^^~1~^^^^^^^^^^^~08/01/1992~
-~18378~^~307~^341.^0^^~1~^^^^^^^^^^^~08/01/1992~
-~18378~^~318~^594.^0^^~1~^^^^^^^^^^^~08/01/1992~
-~18378~^~319~^131.^0^^~4~^~NC~^^^^^^^^^^~06/01/2002~
-~18378~^~320~^139.^0^^~4~^~NC~^^^^^^^^^^~06/01/2002~
-~18378~^~417~^33.^0^^~4~^~RK~^^^^^^^^^^~12/01/1997~
-~18378~^~431~^20.^0^^~4~^~NC~^^^^^^^^^^~05/01/2000~
-~18378~^~432~^13.^0^^~1~^^^^^^^^^^^~08/01/1992~
-~18378~^~435~^47.^0^^~4~^~NC~^^^^^^^^^^~01/01/2001~
-~18378~^~601~^70.^0^^~1~^^^^^^^^^^^~08/01/1992~
-~18383~^~208~^270.^0^^~4~^^^^^^^^^^^~08/01/1992~
-~18383~^~262~^0.^0^^~4~^~RA~^^^^^^^^^^~03/01/2003~
-~18383~^~263~^0.^0^^~4~^~RA~^^^^^^^^^^~03/01/2003~
-~18383~^~268~^1130.^0^^~4~^^^^^^^^^^^~02/01/2007~
-~18383~^~301~^136.^0^^~4~^^^^^^^^^^^~08/01/1992~
-~18383~^~304~^56.^0^^~4~^^^^^^^^^^^~08/01/1992~
-~18383~^~305~^189.^0^^~4~^^^^^^^^^^^~08/01/1992~
-~18383~^~306~^346.^0^^~4~^^^^^^^^^^^~08/01/1992~
-~18383~^~307~^444.^0^^~4~^~BFSN~^~18043~^^^^^^^^^~08/01/2012~
-~18383~^~318~^5.^0^^~4~^~RA~^^^^^^^^^^~03/01/2003~
-~18383~^~319~^0.^0^^~4~^~RA~^^^^^^^^^^~03/01/2003~
-~18383~^~320~^0.^0^^~4~^~NC~^^^^^^^^^^~03/01/2003~
-~18383~^~321~^3.^0^^~4~^~RA~^^^^^^^^^^~03/01/2003~
-~18383~^~322~^0.^0^^~4~^~RA~^^^^^^^^^^~03/01/2003~
-~18383~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~
-~18383~^~334~^0.^0^^~4~^~RA~^^^^^^^^^^~03/01/2003~
-~18383~^~337~^0.^0^^~4~^~RA~^^^^^^^^^^~03/01/2003~
-~18383~^~338~^73.^0^^~4~^~RA~^^^^^^^^^^~03/01/2003~
-~18383~^~417~^99.^0^^~4~^~RA~^^^^^^^^^^~03/01/2003~
-~18383~^~431~^72.^0^^~4~^~NR~^^^^^^^^^^~03/01/2003~
-~18383~^~432~^27.^0^^~4~^~NC~^^^^^^^^^^~03/01/2003~
-~18383~^~435~^149.^0^^~4~^~NC~^^^^^^^^^^~02/01/2007~
-~18383~^~601~^0.^0^^~4~^^^^^^^^^^^~08/01/1992~
-~18384~^~208~^264.^0^^~4~^~NC~^^^^^^^^^^~08/01/1992~
-~18384~^~262~^0.^0^^~4~^~RA~^^^^^^^^^^~03/01/2003~
-~18384~^~263~^0.^0^^~4~^~RA~^^^^^^^^^^~03/01/2003~
-~18384~^~268~^1105.^0^^~4~^^^^^^^^^^^~05/01/2005~
-~18384~^~301~^75.^0^^~1~^^^^^^^^^^^~08/01/1992~
-~18384~^~304~^76.^0^^~4~^^^^^^^^^^^~08/01/1992~
-~18384~^~305~^174.^0^^~4~^^^^^^^^^^^~08/01/1992~
-~18384~^~306~^212.^0^^~4~^^^^^^^^^^^~08/01/1992~
-~18384~^~307~^292.^0^^~4~^~BFSN~^~18059~^^^^^^^^^~08/01/2012~
-~18384~^~318~^1.^0^^~4~^~RA~^^^^^^^^^^~03/01/2003~
-~18384~^~319~^0.^0^^~4~^~RA~^^^^^^^^^^~03/01/2003~
-~18384~^~320~^0.^0^^~4~^~NC~^^^^^^^^^^~03/01/2003~
-~18384~^~321~^0.^0^^~4~^~RA~^^^^^^^^^^~03/01/2003~
-~18384~^~322~^0.^0^^~4~^~RA~^^^^^^^^^^~03/01/2003~
-~18384~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~
-~18384~^~334~^0.^0^^~4~^~RA~^^^^^^^^^^~03/01/2003~
-~18384~^~337~^0.^0^^~4~^~RA~^^^^^^^^^^~03/01/2003~
-~18384~^~338~^51.^0^^~4~^~RA~^^^^^^^^^^~03/01/2003~
-~18384~^~417~^79.^0^^~4~^~RA~^^^^^^^^^^~03/01/2003~
-~18384~^~431~^56.^0^^~4~^~NR~^^^^^^^^^^~03/01/2003~
-~18384~^~432~^23.^0^^~4~^~NC~^^^^^^^^^^~08/01/1992~
-~18384~^~435~^118.^0^^~4~^~NC~^^^^^^^^^^~02/01/2007~
-~18384~^~601~^0.^0^^~1~^^^^^^^^^^^~08/01/1992~
-~18386~^~208~^333.^0^^~4~^~NC~^^^^^^^^^^~08/01/1992~
-~18386~^~262~^0.^0^^~4~^~RA~^^^^^^^^^^~03/01/2003~
-~18386~^~263~^0.^0^^~4~^~RA~^^^^^^^^^^~03/01/2003~
-~18386~^~268~^1393.^0^^~4~^^^^^^^^^^^~03/01/2007~
-~18386~^~301~^14.^0^^~1~^^^^^^^^^^^~08/01/1992~
-~18386~^~304~^15.^0^^~4~^^^^^^^^^^^~08/01/1992~
-~18386~^~305~^192.^0^^~4~^^^^^^^^^^^~08/01/1992~
-~18386~^~306~^88.^0^^~1~^^^^^^^^^^^~08/01/1992~
-~18386~^~307~^444.^0^^~4~^~BFSN~^~18277~^^^^^^^^^~08/01/2012~
-~18386~^~318~^324.^0^^~4~^~RA~^^^^^^^^^^~08/01/2012~
-~18386~^~319~^101.^0^^~4~^~RA~^^^^^^^^^^~03/01/2003~
-~18386~^~320~^101.^0^^~4~^~NC~^^^^^^^^^^~03/01/2003~
-~18386~^~321~^3.^0^^~4~^~RA~^^^^^^^^^^~03/01/2003~
-~18386~^~322~^0.^0^^~4~^~RA~^^^^^^^^^^~03/01/2003~
-~18386~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~
-~18386~^~334~^0.^0^^~4~^~RA~^^^^^^^^^^~03/01/2003~
-~18386~^~337~^0.^0^^~4~^~RA~^^^^^^^^^^~03/01/2003~
-~18386~^~338~^20.^0^^~4~^~RA~^^^^^^^^^^~03/01/2003~
-~18386~^~417~^59.^0^^~4~^~RA~^^^^^^^^^^~03/01/2003~
-~18386~^~431~^50.^0^^~4~^~NR~^^^^^^^^^^~03/01/2003~
-~18386~^~432~^9.^0^^~4~^~NC~^^^^^^^^^^~08/01/1992~
-~18386~^~435~^94.^0^^~4~^~NC~^^^^^^^^^^~03/01/2007~
-~18386~^~601~^5.^0^^~4~^^^^^^^^^^^~08/01/1992~
-~18388~^~208~^313.^0^^~4~^~NC~^^^^^^^^^^~08/01/1992~
-~18388~^~262~^0.^0^^~4~^~RK~^^^^^^^^^^~03/01/2003~
-~18388~^~263~^0.^0^^~4~^~RK~^^^^^^^^^^~03/01/2003~
-~18388~^~268~^1310.^0^^~4~^^^^^^^^^^^
-~18388~^~301~^39.^0^^~1~^^^^^^^^^^^~08/01/1992~
-~18388~^~304~^21.^0^^~4~^^^^^^^^^^^~08/01/1992~
-~18388~^~305~^284.^0^^~4~^^^^^^^^^^^~08/01/1992~
-~18388~^~306~^177.^0^^~1~^^^^^^^^^^^~08/01/1992~
-~18388~^~307~^527.^0^^~1~^^^^^^^^^^^~08/01/1992~
-~18388~^~318~^190.^0^^~4~^~NC~^^^^^^^^^^~03/01/2003~
-~18388~^~319~^56.^0^^~4~^~RK~^^^^^^^^^^~03/01/2003~
-~18388~^~320~^56.^0^^~4~^~NC~^^^^^^^^^^~03/01/2003~
-~18388~^~321~^1.^0^^~4~^~RK~^^^^^^^^^^~03/01/2003~
-~18388~^~322~^0.^0^^~4~^~RK~^^^^^^^^^^~03/01/2003~
-~18388~^~334~^0.^0^^~4~^~RK~^^^^^^^^^^~03/01/2003~
-~18388~^~337~^0.^0^^~4~^~RK~^^^^^^^^^^~03/01/2003~
-~18388~^~338~^48.^0^^~4~^~RK~^^^^^^^^^^~03/01/2003~
-~18388~^~417~^30.^0^^~4~^~RK~^^^^^^^^^^~03/01/2003~
-~18388~^~431~^23.^0^^~4~^^^^^^^^^^^~03/01/2003~
-~18388~^~432~^7.^0^^~4~^^^^^^^^^^^~08/01/1992~
-~18388~^~435~^46.^0^^~4~^~NC~^^^^^^^^^^~03/01/2003~
-~18388~^~601~^9.^0^^~4~^^^^^^^^^^^~08/01/1992~
-~18390~^~208~^227.^0^^~4~^~NC~^^^^^^^^^^~08/01/1992~
-~18390~^~268~^950.^0^^~4~^^^^^^^^^^^
-~18390~^~301~^157.^0^^~1~^^^^^^^^^^^~08/01/1992~
-~18390~^~304~^15.^0^^~1~^^^^^^^^^^^~08/01/1992~
-~18390~^~305~^139.^0^^~1~^^^^^^^^^^^~08/01/1992~
-~18390~^~306~^145.^0^^~1~^^^^^^^^^^^~08/01/1992~
-~18390~^~307~^522.^0^^~1~^^^^^^^^^^^~08/01/1992~
-~18390~^~318~^105.^0^^~1~^^^^^^^^^^^~08/01/1992~
-~18390~^~319~^29.^0^^~4~^~NC~^^^^^^^^^^~06/01/2002~
-~18390~^~320~^30.^0^^~4~^~NC~^^^^^^^^^^~06/01/2002~
-~18390~^~417~^38.^0^^~4~^~RK~^^^^^^^^^^~12/01/1997~
-~18390~^~431~^25.^0^^~4~^~NC~^^^^^^^^^^~05/01/2000~
-~18390~^~432~^13.^0^^~1~^^^^^^^^^^^~08/01/1992~
-~18390~^~435~^56.^0^^~4~^~NC~^^^^^^^^^^~01/01/2001~
-~18390~^~601~^58.^0^^~1~^^^^^^^^^^^~08/01/1992~
-~18396~^~208~^316.^0^^~4~^~NC~^^^^^^^^^^~08/01/1992~
-~18396~^~268~^1322.^0^^~4~^^^^^^^^^^^
-~18396~^~301~^60.^0^^~1~^^^^^^^^^^^~08/01/1992~
-~18396~^~304~^19.^0^^~1~^^^^^^^^^^^~08/01/1992~
-~18396~^~305~^126.^0^^~1~^^^^^^^^^^^~08/01/1992~
-~18396~^~306~^152.^0^^~1~^^^^^^^^^^^~08/01/1992~
-~18396~^~307~^415.^0^^~1~^^^^^^^^^^^~08/01/1992~
-~18396~^~318~^338.^0^^~1~^^^^^^^^^^^~08/01/1992~
-~18396~^~319~^84.^0^^~4~^~NC~^^^^^^^^^^~06/01/2002~
-~18396~^~320~^87.^0^^~4~^~NC~^^^^^^^^^^~06/01/2002~
-~18396~^~417~^90.^0^^~4~^~RK~^^^^^^^^^^~12/01/1997~
-~18396~^~431~^47.^0^^~4~^~NC~^^^^^^^^^^~05/01/2000~
-~18396~^~432~^43.^0^^~1~^^^^^^^^^^^~08/01/1992~
-~18396~^~435~^123.^0^^~4~^~NC~^^^^^^^^^^~01/01/2001~
-~18396~^~601~^35.^0^^~1~^^^^^^^^^^^~08/01/1992~
-~18399~^~208~^484.^0^^~4~^~NC~^^^^^^^^^^~08/01/1992~
-~18399~^~262~^0.^0^^~4~^~RA~^^^^^^^^^^~03/01/2003~
-~18399~^~263~^0.^0^^~4~^~RA~^^^^^^^^^^~03/01/2003~
-~18399~^~268~^2025.^0^^~4~^^^^^^^^^^^~05/01/2005~
-~18399~^~301~^20.^0^^~1~^^^^^^^^^^^~08/01/1992~
-~18399~^~304~^18.^0^^~1~^^^^^^^^^^^~08/01/1992~
-~18399~^~305~^64.^0^^~1~^^^^^^^^^^^~08/01/1992~
-~18399~^~306~^86.^0^^~1~^^^^^^^^^^^~08/01/1992~
-~18399~^~307~^560.^0^^~1~^^^^^^^^^^^~08/01/1992~
-~18399~^~318~^833.^0^^~4~^~NC~^^^^^^^^^^~03/01/2003~
-~18399~^~319~^179.^0^^~4~^~RA~^^^^^^^^^^~03/01/2003~
-~18399~^~320~^191.^0^^~4~^~NC~^^^^^^^^^^~03/01/2003~
-~18399~^~321~^143.^0^^~4~^~RA~^^^^^^^^^^~03/01/2003~
-~18399~^~322~^0.^0^^~4~^~RA~^^^^^^^^^^~03/01/2003~
-~18399~^~334~^0.^0^^~4~^~RA~^^^^^^^^^^~03/01/2003~
-~18399~^~337~^0.^0^^~4~^~RA~^^^^^^^^^^~03/01/2003~
-~18399~^~338~^31.^0^^~4~^~RA~^^^^^^^^^^~03/01/2003~
-~18399~^~417~^34.^0^^~4~^~RK~^^^^^^^^^^~12/01/1997~
-~18399~^~431~^27.^0^^~4~^~NC~^^^^^^^^^^~05/01/2000~
-~18399~^~432~^7.^0^^~1~^^^^^^^^^^^~08/01/1992~
-~18399~^~435~^53.^0^^~4~^~NC~^^^^^^^^^^~03/01/2007~
-~18399~^~601~^0.^0^^~1~^^^^^^^^^^^~08/01/1992~
-~18400~^~208~^391.^0^^~4~^~NC~^^^^^^^^^^~08/01/1992~
-~18400~^~268~^1636.^0^^~4~^^^^^^^^^^^
-~18400~^~301~^36.^2^^~1~^^^^^^^^^^^~08/01/1992~
-~18400~^~304~^30.^2^^~1~^^^^^^^^^^^~08/01/1992~
-~18400~^~305~^89.^2^^~1~^^^^^^^^^^^~08/01/1992~
-~18400~^~306~^83.^2^^~1~^^^^^^^^^^^~08/01/1992~
-~18400~^~307~^285.^2^^~1~^^^^^^^^^^^~08/01/1992~
-~18400~^~318~^24.^0^^~4~^~FLA~^^^^^^^^^^~12/01/1997~
-~18400~^~319~^7.^0^^~4~^~NC~^^^^^^^^^^~06/01/2002~
-~18400~^~320~^7.^0^^~4~^~NC~^^^^^^^^^^~06/01/2002~
-~18400~^~417~^158.^0^^~4~^~FLA~^^^^^^^^^^~12/01/1997~
-~18400~^~431~^148.^0^^~4~^~NC~^^^^^^^^^^~05/01/2000~
-~18400~^~432~^10.^8^0.^~1~^^^^^^^^^^^~08/01/1992~
-~18400~^~435~^262.^0^^~4~^~NC~^^^^^^^^^^~01/01/2001~
-~18400~^~601~^45.^0^^~4~^~FLA~^^^^^^^^^^~12/01/1997~
-~18401~^~208~^531.^0^^~4~^~NC~^^^^^^^^^^~08/01/1992~
-~18401~^~262~^0.^0^^~4~^~RC~^^^^^^^^^^~03/01/2003~
-~18401~^~263~^0.^0^^~4~^~RC~^^^^^^^^^^~03/01/2003~
-~18401~^~268~^2222.^0^^~4~^^^^^^^^^^^~05/01/2005~
-~18401~^~301~^42.^0^^~1~^^^^^^^^^^^~08/01/1992~
-~18401~^~304~^10.^0^^~1~^^^^^^^^^^^~08/01/1992~
-~18401~^~305~^78.^0^^~1~^^^^^^^^^^^~08/01/1992~
-~18401~^~306~^79.^0^^~1~^^^^^^^^^^^~08/01/1992~
-~18401~^~307~^515.^0^^~1~^^^^^^^^^^^~08/01/1992~
-~18401~^~318~^1172.^0^^~4~^~NC~^^^^^^^^^^~03/01/2003~
-~18401~^~319~^253.^0^^~4~^~RC~^^^^^^^^^^~03/01/2003~
-~18401~^~320~^269.^0^^~4~^~NC~^^^^^^^^^^~03/01/2003~
-~18401~^~321~^197.^0^^~4~^~RC~^^^^^^^^^^~03/01/2003~
-~18401~^~322~^0.^0^^~4~^~RC~^^^^^^^^^^~03/01/2003~
-~18401~^~324~^21.^0^^~4~^~RP~^^^^^^^^^^~04/01/2009~
-~18401~^~334~^1.^0^^~4~^~RC~^^^^^^^^^^~03/01/2003~
-~18401~^~337~^0.^0^^~4~^~RC~^^^^^^^^^^~03/01/2003~
-~18401~^~338~^27.^0^^~4~^~RC~^^^^^^^^^^~03/01/2003~
-~18401~^~417~^49.^0^^~4~^~RK~^^^^^^^^^^~12/01/1997~
-~18401~^~431~^43.^0^^~4~^~NC~^^^^^^^^^^~05/01/2000~
-~18401~^~432~^6.^0^^~1~^^^^^^^^^^^~08/01/1992~
-~18401~^~435~^79.^0^^~4~^~NC~^^^^^^^^^^~04/01/2009~
-~18401~^~601~^39.^0^^~1~^^^^^^^^^^^~08/01/1992~
-~18402~^~208~^469.^0^^~4~^~NC~^^^^^^^^^^~08/01/1992~
-~18402~^~262~^0.^0^^~4~^~RC~^^^^^^^^^^~03/01/2003~
-~18402~^~263~^0.^0^^~4~^~RC~^^^^^^^^^^~03/01/2003~
-~18402~^~268~^1962.^0^^~4~^^^^^^^^^^^~05/01/2005~
-~18402~^~301~^9.^0^^~1~^^^^^^^^^^^~08/01/1992~
-~18402~^~304~^12.^0^^~1~^^^^^^^^^^^~08/01/1992~
-~18402~^~305~^60.^0^^~1~^^^^^^^^^^^~08/01/1992~
-~18402~^~306~^59.^0^^~1~^^^^^^^^^^^~08/01/1992~
-~18402~^~307~^482.^0^^~1~^^^^^^^^^^^~08/01/1992~
-~18402~^~318~^0.^0^^~1~^^^^^^^^^^^~08/01/1992~
-~18402~^~319~^0.^0^^~4~^~RC~^^^^^^^^^^~03/01/2003~
-~18402~^~320~^0.^0^^~4~^~NC~^^^^^^^^^^~03/01/2003~
-~18402~^~321~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2003~
-~18402~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2003~
-~18402~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~
-~18402~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2003~
-~18402~^~337~^0.^0^^~4~^~RC~^^^^^^^^^^~03/01/2003~
-~18402~^~338~^9.^0^^~4~^~RC~^^^^^^^^^^~03/01/2003~
-~18402~^~417~^71.^0^^~4~^~RC~^^^^^^^^^^~03/01/2003~
-~18402~^~431~^61.^0^^~4~^^^^^^^^^^^~03/01/2003~
-~18402~^~432~^10.^0^^~1~^^^^^^^^^^^~08/01/1992~
-~18402~^~435~^114.^0^^~4~^~NC~^^^^^^^^^^~03/01/2007~
-~18402~^~601~^0.^0^^~1~^^^^^^^^^^^~08/01/1992~
-~18403~^~208~^312.^0^^~4~^~NC~^^^^^^^^^^~10/01/2004~
-~18403~^~262~^0.^0^^~4~^~RA~^^^^^^^^^^~03/01/2003~
-~18403~^~263~^0.^0^^~4~^~RA~^^^^^^^^^^~03/01/2003~
-~18403~^~268~^1307.^0^^~4~^~NC~^^^^^^^^^^~10/01/2004~
-~18403~^~301~^307.^6^52.^~1~^~A~^^^1^193.^474.^5^170.^442.^~2, 3~^~10/01/2004~
-~18403~^~304~^24.^6^1.^~1~^~A~^^^1^21.^30.^5^20.^26.^~2, 3~^~10/01/2004~
-~18403~^~305~^429.^6^10.^~1~^~A~^^^1^389.^462.^5^401.^456.^~2, 3~^~10/01/2004~
-~18403~^~306~^144.^6^7.^~1~^~A~^^^1^126.^173.^5^124.^163.^~2, 3~^~10/01/2004~
-~18403~^~307~^467.^0^^~4~^~NR~^^^^^^^^^^~07/01/2017~
-~18403~^~318~^1330.^0^^~4~^~NC~^^^^^^^^^^~07/01/2017~
-~18403~^~319~^398.^0^^~4~^~RA~^^^^^^^^^^~03/01/2005~
-~18403~^~320~^398.^0^^~4~^~NC~^^^^^^^^^^~03/01/2005~
-~18403~^~321~^1.^0^^~4~^~RA~^^^^^^^^^^~10/01/2004~
-~18403~^~322~^0.^0^^~4~^~RA~^^^^^^^^^^~10/01/2004~
-~18403~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~
-~18403~^~334~^1.^0^^~4~^~RA~^^^^^^^^^^~10/01/2004~
-~18403~^~337~^0.^0^^~4~^~RA~^^^^^^^^^^~03/01/2003~
-~18403~^~338~^51.^0^^~4~^~RA~^^^^^^^^^^~10/01/2004~
-~18403~^~417~^75.^2^^~1~^~A~^^^1^70.^79.^1^^^^~10/01/2004~
-~18403~^~431~^64.^2^^~1~^~A~^^^1^58.^69.^1^^^^~10/01/2004~
-~18403~^~432~^11.^0^^~1~^~AS~^^^^^^^^^^~10/01/2004~
-~18403~^~435~^119.^0^^~4~^~NC~^^^^^^^^^^~03/01/2007~
-~18403~^~601~^15.^3^5.^~1~^~A~^^^1^8.^26.^2^-8.^38.^~2, 3~^~10/01/2004~
-~18406~^~208~^275.^0^^~4~^~NC~^^^^^^^^^^~08/01/1992~
-~18406~^~268~^1151.^0^^~4~^^^^^^^^^^^~05/01/2009~
-~18406~^~301~^18.^0^^~4~^^^^^^^^^^^~08/01/1992~
-~18406~^~304~^29.^17^1.^~1~^^^^^^^^^^^~08/01/1992~
-~18406~^~305~^96.^17^3.^~1~^^^^^^^^^^^~08/01/1992~
-~18406~^~306~^101.^18^2.^~1~^^^^^^^^^^^~08/01/1992~
-~18406~^~307~^534.^22^17.^~1~^^^^^^^^^^^~08/01/1992~
-~18406~^~318~^0.^3^0.^~1~^^^^^^^^^^^~08/01/1992~
-~18406~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2002~
-~18406~^~320~^0.^0^^~4~^~NC~^^^^^^^^^^~06/01/2002~
-~18406~^~417~^88.^0^^~4~^~FLA~^^^^^^^^^^~03/01/1998~
-~18406~^~431~^66.^0^^~4~^~NC~^^^^^^^^^^~05/01/2000~
-~18406~^~432~^22.^11^1.^~1~^^^^^^^^^^^~08/01/1992~
-~18406~^~435~^134.^0^^~4~^~NC~^^^^^^^^^^~05/01/2009~
-~18406~^~601~^0.^4^0.^~1~^^^^^^^^^^^~08/01/1992~
-~18407~^~208~^275.^0^^~4~^~NC~^^^^^^^^^^~08/01/1992~
-~18407~^~268~^1151.^0^^~4~^^^^^^^^^^^~05/01/2009~
-~18407~^~301~^74.^8^5.^~1~^^^^^^^^^^^~08/01/1992~
-~18407~^~304~^29.^17^1.^~1~^^^^^^^^^^^~08/01/1992~
-~18407~^~305~^96.^17^3.^~1~^^^^^^^^^^^~08/01/1992~
-~18407~^~306~^101.^18^2.^~1~^^^^^^^^^^^~08/01/1992~
-~18407~^~307~^534.^22^17.^~1~^^^^^^^^^^^~08/01/1992~
-~18407~^~318~^0.^3^0.^~1~^^^^^^^^^^^~08/01/1992~
-~18407~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2002~
-~18407~^~320~^0.^0^^~4~^~NC~^^^^^^^^^^~06/01/2002~
-~18407~^~417~^22.^11^1.^~1~^^^^^^^^^^^~08/01/1992~
-~18407~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~
-~18407~^~432~^22.^11^1.^~1~^^^^^^^^^^^~12/01/2001~
-~18407~^~435~^22.^0^^~4~^~NC~^^^^^^^^^^~05/01/2009~
-~18407~^~601~^0.^4^0.^~1~^^^^^^^^^^^~08/01/1992~
-~18408~^~208~^275.^0^^~4~^~NC~^^^^^^^^^^~08/01/1992~
-~18408~^~268~^1151.^0^^~4~^^^^^^^^^^^~05/01/2009~
-~18408~^~301~^18.^0^^~4~^^^^^^^^^^^~08/01/1992~
-~18408~^~304~^29.^17^1.^~1~^^^^^^^^^^^~08/01/1992~
-~18408~^~305~^96.^17^3.^~1~^^^^^^^^^^^~08/01/1992~
-~18408~^~306~^101.^18^2.^~1~^^^^^^^^^^^~08/01/1992~
-~18408~^~307~^534.^22^17.^~1~^^^^^^^^^^^~08/01/1992~
-~18408~^~318~^0.^3^0.^~1~^^^^^^^^^^^~08/01/1992~
-~18408~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2002~
-~18408~^~320~^0.^0^^~4~^~NC~^^^^^^^^^^~06/01/2002~
-~18408~^~417~^22.^11^1.^~1~^^^^^^^^^^^~08/01/1992~
-~18408~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~
-~18408~^~432~^22.^11^1.^~1~^^^^^^^^^^^~12/01/2001~
-~18408~^~435~^22.^0^^~4~^~NC~^^^^^^^^^^~05/01/2009~
-~18408~^~601~^0.^4^0.^~1~^^^^^^^^^^^~08/01/1992~
-~18412~^~208~^418.^0^^~4~^~NC~^^^^^^^^^^~08/01/1992~
-~18412~^~268~^1749.^0^^~4~^^^^^^^^^^^
-~18412~^~301~^57.^29^3.^~1~^^^^^^^^^^^~08/01/1992~
-~18412~^~304~^24.^21^1.^~1~^^^^^^^^^^^~08/01/1992~
-~18412~^~305~^489.^45^11.^~1~^^^^^^^^^^^~08/01/1992~
-~18412~^~306~^113.^43^3.^~1~^^^^^^^^^^^~08/01/1992~
-~18412~^~307~^1111.^43^34.^~1~^^^^^^^^^^^~08/01/1992~
-~18412~^~318~^115.^3^33.^~1~^^^^^^^^^^^~08/01/1992~
-~18412~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2002~
-~18412~^~320~^6.^0^^~4~^~NC~^^^^^^^^^^~06/01/2002~
-~18412~^~417~^11.^13^0.^~1~^^^^^^^^^^^~08/01/1992~
-~18412~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~
-~18412~^~432~^11.^13^0.^~1~^^^^^^^^^^^~08/01/1992~
-~18412~^~435~^11.^0^^~4~^~NC~^^^^^^^^^^~01/01/2001~
-~18412~^~601~^2.^0^^~4~^~BFZN~^^^^^^^^^^~12/01/1997~
-~18413~^~208~^275.^0^^~4~^~NC~^^^^^^^^^^~08/01/1992~
-~18413~^~268~^1151.^0^^~4~^^^^^^^^^^^
-~18413~^~301~^86.^38^2.^~1~^^^^^^^^^^^~08/01/1992~
-~18413~^~304~^26.^13^1.^~1~^^^^^^^^^^^~08/01/1992~
-~18413~^~305~^97.^13^2.^~1~^^^^^^^^^^^~08/01/1992~
-~18413~^~306~^120.^17^6.^~1~^^^^^^^^^^^~08/01/1992~
-~18413~^~307~^536.^24^16.^~1~^^^^^^^^^^^~08/01/1992~
-~18413~^~318~^0.^0^^~4~^^^^^^^^^^^~08/01/1992~
-~18413~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2002~
-~18413~^~320~^0.^0^^~4~^~NC~^^^^^^^^^^~06/01/2002~
-~18413~^~417~^24.^10^2.^~1~^^^^^^^^^^^~08/01/1992~
-~18413~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~
-~18413~^~432~^24.^10^2.^~1~^^^^^^^^^^^~08/01/1992~
-~18413~^~435~^24.^0^^~4~^~NC~^^^^^^^^^^~01/01/2001~
-~18413~^~601~^0.^2^^~1~^^^^^^^^^^^~08/01/1992~
-~18414~^~208~^274.^0^^~4~^~NC~^^^^^^^^^^~08/01/1992~
-~18414~^~268~^1146.^0^^~4~^^^^^^^^^^^
-~18414~^~301~^66.^29^5.^~1~^^^^^^^^^^^~08/01/1992~
-~18414~^~304~^26.^13^1.^~1~^^^^^^^^^^^~08/01/1992~
-~18414~^~305~^109.^13^5.^~1~^^^^^^^^^^^~08/01/1992~
-~18414~^~306~^227.^15^11.^~1~^^^^^^^^^^^~08/01/1992~
-~18414~^~307~^390.^20^9.^~1~^^^^^^^^^^^~08/01/1992~
-~18414~^~318~^0.^0^^~4~^~BFZN~^^^^^^^^^^~12/01/1997~
-~18414~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2002~
-~18414~^~320~^0.^0^^~4~^~NC~^^^^^^^^^^~06/01/2002~
-~18414~^~417~^34.^11^1.^~1~^^^^^^^^^^^~08/01/1992~
-~18414~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~
-~18414~^~432~^34.^11^1.^~1~^^^^^^^^^^^~08/01/1992~
-~18414~^~435~^34.^0^^~4~^~NC~^^^^^^^^^^~01/01/2001~
-~18414~^~601~^0.^2^^~1~^^^^^^^^^^^~08/01/1992~
-~18416~^~208~^267.^0^^~4~^~NC~^^^^^^^^^^~08/01/1992~
-~18416~^~262~^0.^0^^~4~^~FLC~^^^^^^^^^^~03/01/2003~
-~18416~^~263~^0.^0^^~4~^~FLC~^^^^^^^^^^~03/01/2003~
-~18416~^~268~^1116.^0^^~4~^~NC~^^^^^^^^^^~07/01/2013~
-~18416~^~301~^108.^250^2.^~1~^^^^^^^^^^^~08/01/1992~
-~18416~^~304~^24.^108^0.^~1~^^^^^^^^^^^~08/01/1992~
-~18416~^~305~^94.^96^1.^~1~^^^^^^^^^^^~08/01/1992~
-~18416~^~306~^119.^105^2.^~1~^^^^^^^^^^^~08/01/1992~
-~18416~^~307~^298.^0^^~8~^~LC~^^^^^^^^^^~07/01/2013~
-~18416~^~318~^1.^0^^~4~^~NC~^^^^^^^^^^~07/01/2013~
-~18416~^~319~^0.^0^^~4~^~FLC~^^^^^^^^^^~03/01/2003~
-~18416~^~320~^0.^0^^~4~^~NC~^^^^^^^^^^~03/01/2003~
-~18416~^~321~^0.^0^^~4~^~FLC~^^^^^^^^^^~07/01/2012~
-~18416~^~322~^0.^0^^~4~^~FLC~^^^^^^^^^^~07/01/2012~
-~18416~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~
-~18416~^~334~^0.^0^^~4~^~FLC~^^^^^^^^^^~07/01/2012~
-~18416~^~337~^0.^0^^~4~^~FLC~^^^^^^^^^^~03/01/2003~
-~18416~^~338~^44.^0^^~4~^~FLC~^^^^^^^^^^~03/01/2003~
-~18416~^~417~^111.^7^5.^~1~^~A~^^^1^91.^129.^6^97.^123.^~2, 3~^~03/01/2003~
-~18416~^~431~^86.^7^2.^~1~^~A~^^^1^78.^93.^6^80.^91.^~2, 3~^~03/01/2003~
-~18416~^~432~^25.^7^5.^~1~^~AS~^^^1^11.^44.^6^11.^37.^~2, 3~^~03/01/2003~
-~18416~^~435~^171.^0^^~4~^~NC~^^^^^^^^^^~01/01/2007~
-~18416~^~601~^1.^11^0.^~1~^^^^^^^^^^^~08/01/1992~
-~18417~^~208~^418.^0^^~4~^~NC~^^^^^^^^^^~08/01/1992~
-~18417~^~268~^1749.^0^^~4~^^^^^^^^^^^
-~18417~^~301~^54.^34^4.^~1~^^^^^^^^^^^~08/01/1992~
-~18417~^~304~^22.^34^0.^~1~^^^^^^^^^^^~08/01/1992~
-~18417~^~305~^108.^33^3.^~1~^^^^^^^^^^^~08/01/1992~
-~18417~^~306~^123.^32^3.^~1~^^^^^^^^^^^~08/01/1992~
-~18417~^~307~^351.^35^13.^~1~^^^^^^^^^^^~08/01/1992~
-~18417~^~318~^111.^0^^~4~^~BFZN~^^^^^^^^^^~12/01/1997~
-~18417~^~319~^33.^0^^~4~^~NC~^^^^^^^^^^~06/01/2002~
-~18417~^~320~^33.^0^^~4~^~NC~^^^^^^^^^^~06/01/2002~
-~18417~^~417~^32.^8^0.^~1~^^^^^^^^^^^~08/01/1992~
-~18417~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~
-~18417~^~432~^32.^8^0.^~1~^^^^^^^^^^^~08/01/1992~
-~18417~^~435~^32.^0^^~4~^~NC~^^^^^^^^^^~01/01/2001~
-~18417~^~601~^32.^3^1.^~1~^^^^^^^^^^^~08/01/1992~
-~18418~^~208~^389.^0^^~4~^~NC~^^^^^^^^^^~08/01/1992~
-~18418~^~268~^1628.^0^^~4~^^^^^^^^^^^
-~18418~^~301~^64.^7^13.^~1~^^^^^^^^^^^~08/01/1992~
-~18418~^~304~^13.^5^2.^~1~^^^^^^^^^^^~08/01/1992~
-~18418~^~305~^134.^6^10.^~1~^^^^^^^^^^^~08/01/1992~
-~18418~^~306~^106.^4^25.^~1~^^^^^^^^^^^~08/01/1992~
-~18418~^~307~^400.^11^41.^~1~^^^^^^^^^^^~08/01/1992~
-~18418~^~318~^118.^0^^~4~^~BFZN~^^^^^^^^^^~12/01/1997~
-~18418~^~319~^35.^0^^~4~^~NC~^^^^^^^^^^~06/01/2002~
-~18418~^~320~^35.^0^^~4~^~NC~^^^^^^^^^^~06/01/2002~
-~18418~^~417~^9.^0^^~4~^^^^^^^^^^^~08/01/1992~
-~18418~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~
-~18418~^~432~^9.^0^^~4~^^^^^^^^^^^~08/01/1992~
-~18418~^~435~^9.^0^^~4~^~NC~^^^^^^^^^^~01/01/2001~
-~18418~^~601~^58.^6^25.^~1~^^^^^^^^^^^~08/01/1992~
-~18419~^~208~^423.^0^^~4~^~NC~^^^^^^^^^^~08/01/1992~
-~18419~^~268~^1770.^0^^~4~^^^^^^^^^^^
-~18419~^~301~^77.^16^1.^~1~^^^^^^^^^^^~08/01/1992~
-~18419~^~304~^9.^16^0.^~1~^^^^^^^^^^^~08/01/1992~
-~18419~^~305~^277.^16^6.^~1~^^^^^^^^^^^~08/01/1992~
-~18419~^~306~^72.^8^9.^~1~^^^^^^^^^^^~08/01/1992~
-~18419~^~307~^665.^8^4.^~1~^^^^^^^^^^^~08/01/1992~
-~18419~^~318~^0.^0^^~4~^~BFZN~^^^^^^^^^^~12/01/1997~
-~18419~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2002~
-~18419~^~320~^0.^0^^~4~^~NC~^^^^^^^^^^~06/01/2002~
-~18419~^~417~^9.^0^^~4~^^^^^^^^^^^~08/01/1992~
-~18419~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~
-~18419~^~432~^9.^0^^~4~^^^^^^^^^^^~08/01/1992~
-~18419~^~435~^9.^0^^~4~^~NC~^^^^^^^^^^~01/01/2001~
-~18419~^~601~^0.^0^^~4~^^^^^^^^^^^~08/01/1992~
-~18420~^~208~^432.^0^^~4~^~NC~^^^^^^^^^^~08/01/1992~
-~18420~^~268~^1807.^0^^~4~^^^^^^^^^^^
-~18420~^~301~^135.^50^6.^~1~^^^^^^^^^^^~08/01/1992~
-~18420~^~304~^10.^46^0.^~1~^^^^^^^^^^^~08/01/1992~
-~18420~^~305~^310.^55^7.^~1~^^^^^^^^^^^~08/01/1992~
-~18420~^~306~^82.^27^5.^~1~^^^^^^^^^^^~08/01/1992~
-~18420~^~307~^657.^61^18.^~1~^^^^^^^^^^^~08/01/1992~
-~18420~^~318~^1.^0^^~4~^^^^^^^^^^^~08/01/1992~
-~18420~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2002~
-~18420~^~320~^0.^0^^~4~^~NC~^^^^^^^^^^~06/01/2002~
-~18420~^~417~^9.^0^^~4~^^^^^^^^^^^~08/01/1992~
-~18420~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~
-~18420~^~432~^9.^0^^~4~^^^^^^^^^^^~08/01/1992~
-~18420~^~435~^9.^0^^~4~^~NC~^^^^^^^^^^~01/01/2001~
-~18420~^~601~^2.^2^^~1~^^^^^^^^^^^~08/01/1992~
-~18421~^~208~^467.^0^^~4~^~NC~^^^^^^^^^^~08/01/1992~
-~18421~^~268~^1954.^0^^~4~^^^^^^^^^^^
-~18421~^~301~^29.^5^6.^~1~^^^^^^^^^^^~08/01/1992~
-~18421~^~304~^12.^3^3.^~1~^^^^^^^^^^^~08/01/1992~
-~18421~^~305~^102.^4^28.^~1~^^^^^^^^^^^~08/01/1992~
-~18421~^~306~^111.^3^20.^~1~^^^^^^^^^^^~08/01/1992~
-~18421~^~307~^351.^4^58.^~1~^^^^^^^^^^^~08/01/1992~
-~18421~^~318~^673.^0^^~4~^~BFZN~^^^^^^^^^^~12/01/1997~
-~18421~^~319~^151.^0^^~4~^~NC~^^^^^^^^^^~06/01/2002~
-~18421~^~320~^160.^0^^~4~^~NC~^^^^^^^^^^~06/01/2002~
-~18421~^~417~^6.^8^0.^~1~^^^^^^^^^^^~08/01/1992~
-~18421~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~
-~18421~^~432~^6.^8^0.^~1~^^^^^^^^^^^~08/01/1992~
-~18421~^~435~^6.^0^^~4~^~NC~^^^^^^^^^^~01/01/2001~
-~18421~^~601~^117.^0^^~4~^~BFZN~^^^^^^^^^^~12/01/1997~
-~18422~^~208~^481.^0^^~4~^~NC~^^^^^^^^^^~08/01/1992~
-~18422~^~262~^11.^0^^~4~^~BFZN~^^^^^^^^^^~12/01/1997~
-~18422~^~263~^83.^0^^~4~^~BFZN~^^^^^^^^^^~12/01/1997~
-~18422~^~268~^2013.^0^^~4~^^^^^^^^^^^~06/01/2009~
-~18422~^~301~^25.^115^0.^~1~^^^^^^^^^^^~08/01/1992~
-~18422~^~304~^31.^110^0.^~1~^^^^^^^^^^^~08/01/1992~
-~18422~^~305~^108.^110^1.^~1~^^^^^^^^^^^~08/01/1992~
-~18422~^~306~^135.^107^2.^~1~^^^^^^^^^^^~08/01/1992~
-~18422~^~307~^315.^112^4.^~1~^^^^^^^^^^^~08/01/1992~
-~18422~^~318~^4.^0^^~4~^^^^^^^^^^^~08/01/1992~
-~18422~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2002~
-~18422~^~320~^0.^0^^~4~^~NC~^^^^^^^^^^~06/01/2002~
-~18422~^~417~^9.^3^0.^~1~^^^^^^^^^^^~08/01/1992~
-~18422~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~
-~18422~^~432~^9.^3^0.^~1~^^^^^^^^^^^~08/01/1992~
-~18422~^~435~^9.^0^^~4~^~NC~^^^^^^^^^^~06/01/2009~
-~18422~^~601~^0.^0^^~4~^^^^^^^^^^^~08/01/1992~
-~18423~^~208~^363.^0^^~4~^~NC~^^^^^^^^^^~06/01/2014~
-~18423~^~268~^1519.^0^^~4~^~NC~^^^^^^^^^^~06/01/2014~
-~18423~^~301~^47.^0^^~1~^^^^^^^^^^^~08/01/1992~
-~18423~^~304~^12.^0^^~1~^^^^^^^^^^^~08/01/1992~
-~18423~^~305~^173.^0^^~1~^^^^^^^^^^^~08/01/1992~
-~18423~^~306~^113.^0^^~1~^^^^^^^^^^^~08/01/1992~
-~18423~^~307~^147.^0^^~1~^^^^^^^^^^^~08/01/1992~
-~18423~^~318~^556.^0^^~1~^^^^^^^^^^^~08/01/1992~
-~18423~^~319~^167.^0^^~4~^~NC~^^^^^^^^^^~06/01/2002~
-~18423~^~320~^167.^0^^~4~^~NC~^^^^^^^^^^~06/01/2002~
-~18423~^~417~^77.^0^^~4~^~FLA~^^^^^^^^^^~03/01/1998~
-~18423~^~431~^40.^0^^~4~^~NC~^^^^^^^^^^~05/01/2000~
-~18423~^~432~^37.^0^^~1~^^^^^^^^^^^~08/01/1992~
-~18423~^~435~^105.^0^^~4~^~NC~^^^^^^^^^^~07/01/2006~
-~18423~^~601~^221.^0^^~4~^~BFZN~^^^^^^^^^^~07/01/2006~
-~18424~^~208~^390.^0^^~4~^~NC~^^^^^^^^^^~08/01/1992~
-~18424~^~268~^1632.^0^^~4~^^^^^^^^^^^
-~18424~^~301~^93.^15^14.^~1~^^^^^^^^^^^~08/01/1992~
-~18424~^~304~^59.^8^6.^~1~^^^^^^^^^^^~08/01/1992~
-~18424~^~305~^196.^12^7.^~1~^^^^^^^^^^^~08/01/1992~
-~18424~^~306~^202.^13^10.^~1~^^^^^^^^^^^~08/01/1992~
-~18424~^~307~^19.^0^^~4~^^^^^^^^^^^~08/01/1992~
-~18424~^~318~^0.^0^^~4~^^^^^^^^^^^~08/01/1992~
-~18424~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2002~
-~18424~^~320~^0.^0^^~4~^~NC~^^^^^^^^^^~06/01/2002~
-~18424~^~417~^124.^0^^~4~^~BFZN~^^^^^^^^^^~03/01/1998~
-~18424~^~431~^98.^0^^~4~^~NC~^^^^^^^^^^~05/01/2000~
-~18424~^~432~^26.^8^1.^~1~^^^^^^^^^^^~08/01/1992~
-~18424~^~435~^193.^0^^~4~^~NC~^^^^^^^^^^~01/01/2001~
-~18424~^~601~^0.^0^^~4~^^^^^^^^^^^~08/01/1992~
-~18425~^~208~^421.^0^^~4~^~NC~^^^^^^^^^^~04/01/2008~
-~18425~^~262~^0.^0^^~4~^~FLA~^^^^^^^^^^~04/01/2008~
-~18425~^~263~^0.^0^^~4~^~FLA~^^^^^^^^^^~04/01/2008~
-~18425~^~268~^1760.^0^^~4~^~NC~^^^^^^^^^^~04/01/2008~
-~18425~^~301~^119.^0^^~1~^~A~^^^^^^^^^^~04/01/2008~
-~18425~^~304~^25.^8^0.^~1~^~A~^^^1^23.^28.^7^23.^26.^~2, 3~^~04/01/2008~
-~18425~^~305~^111.^8^3.^~1~^~A~^^^1^100.^122.^7^102.^118.^~2, 3~^~04/01/2008~
-~18425~^~306~^724.^0^^~1~^~A~^^^^^^^^^^~04/01/2008~
-~18425~^~307~^198.^0^^~8~^~LC~^^^^^^^^^^~05/01/2010~
-~18425~^~318~^0.^0^^~4~^^^^^^^^^^^~08/01/1992~
-~18425~^~319~^0.^0^^~4~^~FLA~^^^^^^^^^^~03/01/2003~
-~18425~^~320~^0.^0^^~4~^~NC~^^^^^^^^^^~04/01/2008~
-~18425~^~321~^0.^0^^~4~^~FLA~^^^^^^^^^^~04/01/2008~
-~18425~^~322~^0.^0^^~4~^~FLA~^^^^^^^^^^~04/01/2008~
-~18425~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~
-~18425~^~334~^0.^0^^~4~^~FLA~^^^^^^^^^^~04/01/2008~
-~18425~^~337~^0.^0^^~4~^~FLA~^^^^^^^^^^~03/01/2003~
-~18425~^~338~^17.^0^^~4~^~FLA~^^^^^^^^^^~04/01/2008~
-~18425~^~417~^140.^2^^~1~^~A~^^^1^139.^140.^1^^^^~04/01/2008~
-~18425~^~431~^117.^2^^~1~^~A~^^^1^108.^126.^1^^^^~04/01/2008~
-~18425~^~432~^23.^0^^~1~^~AS~^^^^^^^^^^~04/01/2008~
-~18425~^~435~^221.^0^^~4~^~NC~^^^^^^^^^^~04/01/2008~
-~18425~^~601~^0.^0^^~4~^~FLA~^^^^^^^^^^~04/01/2008~
-~18426~^~208~^434.^0^^~4~^~NC~^^^^^^^^^^~08/01/1992~
-~18426~^~268~^1816.^0^^~4~^^^^^^^^^^^
-~18426~^~301~^119.^162^5.^~1~^^^^^^^^^^^~08/01/1992~
-~18426~^~304~^27.^162^0.^~1~^^^^^^^^^^^~08/01/1992~
-~18426~^~305~^105.^165^1.^~1~^^^^^^^^^^^~08/01/1992~
-~18426~^~306~^128.^166^1.^~1~^^^^^^^^^^^~08/01/1992~
-~18426~^~307~^766.^0^^~4~^^^^^^^^^^^~08/01/1992~
-~18426~^~318~^0.^0^^~4~^^^^^^^^^^^~08/01/1992~
-~18426~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2002~
-~18426~^~320~^0.^0^^~4~^~NC~^^^^^^^^^^~06/01/2002~
-~18426~^~417~^124.^0^^~4~^~BFZN~^^^^^^^^^^~03/01/1998~
-~18426~^~431~^93.^0^^~4~^~NC~^^^^^^^^^^~05/01/2000~
-~18426~^~432~^31.^2^^~1~^^^^^^^^^^^~08/01/1992~
-~18426~^~435~^189.^0^^~4~^~NC~^^^^^^^^^^~01/01/2001~
-~18426~^~601~^0.^9^0.^~1~^^^^^^^^^^^~08/01/1992~
-~18427~^~208~^502.^0^^~4~^~NC~^^^^^^^^^^~08/01/1992~
-~18427~^~262~^0.^0^^~4~^~FLA~^^^^^^^^^^~03/01/2003~
-~18427~^~263~^0.^0^^~4~^~FLA~^^^^^^^^^^~03/01/2003~
-~18427~^~268~^2100.^0^^~4~^^^^^^^^^^^~05/01/2005~
-~18427~^~301~^120.^145^3.^~1~^^^^^^^^^^^~08/01/1992~
-~18427~^~304~^27.^137^1.^~1~^^^^^^^^^^^~08/01/1992~
-~18427~^~305~^228.^139^6.^~1~^^^^^^^^^^^~08/01/1992~
-~18427~^~306~^355.^0^^~4~^^^^^^^^^^^~08/01/1992~
-~18427~^~307~^216.^0^^~8~^~LC~^^^^^^^^^^~05/01/2010~
-~18427~^~318~^0.^0^^~4~^^^^^^^^^^^~08/01/1992~
-~18427~^~319~^0.^0^^~4~^~FLA~^^^^^^^^^^~03/01/2003~
-~18427~^~320~^0.^0^^~4~^~NC~^^^^^^^^^^~03/01/2003~
-~18427~^~321~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2003~
-~18427~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2003~
-~18427~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~
-~18427~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2003~
-~18427~^~337~^0.^0^^~4~^~FLA~^^^^^^^^^^~03/01/2003~
-~18427~^~338~^11.^0^^~4~^~FLA~^^^^^^^^^^~03/01/2003~
-~18427~^~417~^90.^0^^~4~^~FLA~^^^^^^^^^^~03/01/2003~
-~18427~^~431~^75.^0^^~4~^~FLA~^^^^^^^^^^~03/01/2003~
-~18427~^~432~^14.^0^^~4~^~FLA~^^^^^^^^^^~03/01/2003~
-~18427~^~435~^142.^0^^~4~^~NC~^^^^^^^^^^~03/01/2007~
-~18427~^~601~^0.^7^0.^~1~^^^^^^^^^^^~08/01/1992~
-~18428~^~208~^473.^0^^~4~^~NC~^^^^^^^^^^~08/01/1992~
-~18428~^~262~^0.^0^^~4~^~FLA~^^^^^^^^^^~03/01/2003~
-~18428~^~263~^0.^0^^~4~^~FLA~^^^^^^^^^^~03/01/2003~
-~18428~^~268~^1979.^0^^~4~^^^^^^^^^^^~05/01/2005~
-~18428~^~301~^49.^55^4.^~1~^^^^^^^^^^^~08/01/1992~
-~18428~^~304~^62.^52^1.^~1~^^^^^^^^^^^~08/01/1992~
-~18428~^~305~^220.^53^9.^~1~^^^^^^^^^^^~08/01/1992~
-~18428~^~306~^203.^0^^~4~^^^^^^^^^^^~08/01/1992~
-~18428~^~307~^190.^0^^~8~^~LC~^^^^^^^^^^~05/01/2010~
-~18428~^~318~^0.^0^^~4~^^^^^^^^^^^~08/01/1992~
-~18428~^~319~^0.^0^^~4~^~FLA~^^^^^^^^^^~03/01/2003~
-~18428~^~320~^0.^0^^~4~^~NC~^^^^^^^^^^~03/01/2003~
-~18428~^~321~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2003~
-~18428~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2003~
-~18428~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~
-~18428~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2003~
-~18428~^~337~^0.^0^^~4~^~FLA~^^^^^^^^^^~03/01/2003~
-~18428~^~338~^81.^0^^~4~^~FLA~^^^^^^^^^^~03/01/2003~
-~18428~^~417~^50.^0^^~4~^~FLA~^^^^^^^^^^~03/01/2003~
-~18428~^~431~^32.^0^^~4~^^^^^^^^^^^~03/01/2003~
-~18428~^~432~^18.^1^^~1~^^^^^^^^^^^~08/01/1992~
-~18428~^~435~^72.^0^^~4~^~NC~^^^^^^^^^^~08/01/2009~
-~18428~^~601~^0.^2^^~1~^^^^^^^^^^^~08/01/1992~
-~18429~^~208~^443.^0^^~4~^~NC~^^^^^^^^^^~08/01/1992~
-~18429~^~262~^0.^0^^~4~^~FLA~^^^^^^^^^^~03/01/2003~
-~18429~^~263~^0.^0^^~4~^~FLA~^^^^^^^^^^~03/01/2003~
-~18429~^~268~^1854.^0^^~4~^^^^^^^^^^^~03/01/2007~
-~18429~^~301~^50.^24^7.^~1~^^^^^^^^^^^~08/01/1992~
-~18429~^~304~^99.^24^2.^~1~^^^^^^^^^^^~08/01/1992~
-~18429~^~305~^295.^23^9.^~1~^^^^^^^^^^^~08/01/1992~
-~18429~^~306~^297.^24^9.^~1~^^^^^^^^^^^~08/01/1992~
-~18429~^~307~^186.^0^^~8~^~LC~^^^^^^^^^^~05/01/2010~
-~18429~^~318~^0.^0^^~4~^^^^^^^^^^^~08/01/1992~
-~18429~^~319~^0.^0^^~4~^~FLA~^^^^^^^^^^~03/01/2003~
-~18429~^~320~^0.^0^^~4~^~NC~^^^^^^^^^^~03/01/2003~
-~18429~^~321~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2003~
-~18429~^~322~^0.^0^^~4~^~FLA~^^^^^^^^^^~03/01/2003~
-~18429~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~
-~18429~^~334~^0.^0^^~4~^~FLA~^^^^^^^^^^~03/01/2003~
-~18429~^~337~^0.^0^^~4~^~FLA~^^^^^^^^^^~03/01/2003~
-~18429~^~338~^179.^0^^~4~^~FLA~^^^^^^^^^^~03/01/2003~
-~18429~^~417~^28.^8^0.^~1~^^^^^^^^^^^~01/01/1999~
-~18429~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~
-~18429~^~432~^28.^8^0.^~1~^^^^^^^^^^^~03/01/2003~
-~18429~^~435~^28.^0^^~4~^~NC~^^^^^^^^^^~03/01/2007~
-~18429~^~601~^0.^0^^~4~^^^^^^^^^^^~08/01/1992~
-~18430~^~208~^403.^0^^~4~^~NC~^^^^^^^^^^~08/01/1992~
-~18430~^~268~^1686.^0^^~4~^^^^^^^^^^^
-~18430~^~301~^71.^30^5.^~1~^^^^^^^^^^^~08/01/1992~
-~18430~^~304~^19.^31^0.^~1~^^^^^^^^^^^~08/01/1992~
-~18430~^~305~^107.^30^3.^~1~^^^^^^^^^^^~08/01/1992~
-~18430~^~306~^125.^29^4.^~1~^^^^^^^^^^^~08/01/1992~
-~18430~^~307~^371.^31^8.^~1~^^^^^^^^^^^~08/01/1992~
-~18430~^~318~^12.^0^^~4~^~BFZN~^^^^^^^^^^~12/01/1997~
-~18430~^~319~^4.^0^^~4~^~NC~^^^^^^^^^^~06/01/2002~
-~18430~^~320~^4.^0^^~4~^~NC~^^^^^^^^^^~06/01/2002~
-~18430~^~417~^33.^0^^~4~^^^^^^^^^^^~08/01/1992~
-~18430~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~
-~18430~^~432~^33.^0^^~4~^^^^^^^^^^^~08/01/1992~
-~18430~^~435~^33.^0^^~4~^~NC~^^^^^^^^^^~01/01/2001~
-~18430~^~601~^21.^0^^~4~^~BFZN~^^^^^^^^^^~12/01/1997~
-~18431~^~208~^371.^0^^~4~^~NC~^^^^^^^^^^~08/01/1992~
-~18431~^~268~^1552.^0^^~4~^^^^^^^^^^^
-~18431~^~301~^46.^16^9.^~1~^^^^^^^^^^^~08/01/1992~
-~18431~^~304~^15.^15^0.^~1~^^^^^^^^^^^~08/01/1992~
-~18431~^~305~^89.^15^8.^~1~^^^^^^^^^^^~08/01/1992~
-~18431~^~306~^83.^11^6.^~1~^^^^^^^^^^^~08/01/1992~
-~18431~^~307~^354.^16^6.^~1~^^^^^^^^^^^~08/01/1992~
-~18431~^~318~^74.^0^^~4~^~BFZN~^^^^^^^^^^~12/01/1997~
-~18431~^~319~^22.^0^^~4~^~NC~^^^^^^^^^^~06/01/2002~
-~18431~^~320~^22.^0^^~4~^~NC~^^^^^^^^^^~06/01/2002~
-~18431~^~417~^16.^8^1.^~1~^^^^^^^^^^^~08/01/1992~
-~18431~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~
-~18431~^~432~^16.^8^1.^~1~^^^^^^^^^^^~08/01/1992~
-~18431~^~435~^16.^0^^~4~^~NC~^^^^^^^^^^~01/01/2001~
-~18431~^~601~^40.^0^^~4~^~BFZN~^^^^^^^^^^~12/01/1997~
-~18432~^~208~^293.^0^^~4~^^^^^^^^^^^~08/01/1992~
-~18432~^~268~^1226.^0^^~4~^^^^^^^^^^^
-~18432~^~301~^119.^0^^~4~^^^^^^^^^^^~08/01/1992~
-~18432~^~304~^26.^0^^~4~^^^^^^^^^^^~08/01/1992~
-~18432~^~305~^103.^0^^~4~^^^^^^^^^^^~08/01/1992~
-~18432~^~306~^131.^0^^~4~^^^^^^^^^^^~08/01/1992~
-~18432~^~307~^376.^0^^~4~^~BFSN~^~18416~^^^^^^^^^~09/01/2012~
-~18432~^~318~^0.^0^^~4~^^^^^^^^^^^~08/01/1992~
-~18432~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2002~
-~18432~^~417~^95.^0^^~4~^~BFZN~^^^^^^^^^^~03/01/1998~
-~18432~^~431~^69.^0^^~4~^~NC~^^^^^^^^^^~05/01/2000~
-~18432~^~432~^26.^0^^~4~^^^^^^^^^^^~08/01/1992~
-~18432~^~435~^143.^0^^~4~^~NC~^^^^^^^^^^~01/01/2001~
-~18432~^~601~^1.^0^^~4~^^^^^^^^^^^~08/01/1992~
-~18433~^~208~^371.^0^^~4~^~NC~^^^^^^^^^^~08/01/1992~
-~18433~^~268~^1552.^0^^~4~^^^^^^^^^^^
-~18433~^~301~^46.^16^9.^~1~^^^^^^^^^^^~08/01/1992~
-~18433~^~304~^15.^15^0.^~1~^^^^^^^^^^^~08/01/1992~
-~18433~^~305~^89.^15^8.^~1~^^^^^^^^^^^~08/01/1992~
-~18433~^~306~^83.^11^6.^~1~^^^^^^^^^^^~08/01/1992~
-~18433~^~307~^354.^16^6.^~1~^^^^^^^^^^^~08/01/1992~
-~18433~^~318~^175.^0^^~4~^^^^^^^^^^^~08/01/1992~
-~18433~^~319~^53.^0^^~4~^~NC~^^^^^^^^^^~06/01/2002~
-~18433~^~320~^53.^0^^~4~^~NC~^^^^^^^^^^~06/01/2002~
-~18433~^~417~^16.^8^1.^~1~^^^^^^^^^^^~08/01/1992~
-~18433~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~
-~18433~^~432~^16.^8^1.^~1~^^^^^^^^^^^~08/01/1992~
-~18433~^~435~^16.^0^^~4~^~NC~^^^^^^^^^^~01/01/2001~
-~18433~^~601~^40.^0^^~4~^~BFZN~^^^^^^^^^^~12/01/1997~
-~18434~^~208~^503.^0^^~4~^~NC~^^^^^^^^^^~08/01/1992~
-~18434~^~262~^0.^0^^~4~^~FLA~^^^^^^^^^^~03/01/2003~
-~18434~^~263~^0.^0^^~4~^~FLA~^^^^^^^^^^~03/01/2003~
-~18434~^~268~^2105.^0^^~4~^^^^^^^^^^^~12/01/2005~
-~18434~^~301~^151.^48^11.^~1~^^^^^^^^^^^~08/01/1992~
-~18434~^~304~^36.^43^2.^~1~^^^^^^^^^^^~08/01/1992~
-~18434~^~305~^218.^44^11.^~1~^^^^^^^^^^^~08/01/1992~
-~18434~^~306~^106.^0^^~1~^^^^^^^^^^^~08/01/1992~
-~18434~^~307~^458.^0^^~1~^^^^^^^^^^^~08/01/1992~
-~18434~^~318~^156.^0^^~4~^~NC~^^^^^^^^^^~03/01/2003~
-~18434~^~319~^11.^0^^~4~^~FLA~^^^^^^^^^^~03/01/2003~
-~18434~^~320~^17.^0^^~4~^~NC~^^^^^^^^^^~03/01/2003~
-~18434~^~321~^63.^0^^~4~^~FLA~^^^^^^^^^^~03/01/2003~
-~18434~^~322~^0.^0^^~4~^~FLA~^^^^^^^^^^~03/01/2003~
-~18434~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~
-~18434~^~334~^17.^0^^~4~^~FLA~^^^^^^^^^^~03/01/2003~
-~18434~^~337~^0.^0^^~4~^~FLA~^^^^^^^^^^~03/01/2003~
-~18434~^~338~^34.^0^^~4~^~FLA~^^^^^^^^^^~03/01/2003~
-~18434~^~417~^89.^0^^~4~^~FLA~^^^^^^^^^^~03/01/2003~
-~18434~^~431~^64.^0^^~4~^^^^^^^^^^^~03/01/2003~
-~18434~^~432~^25.^1^^~1~^^^^^^^^^^^~08/01/1992~
-~18434~^~435~^134.^0^^~4~^~NC~^^^^^^^^^^~03/01/2007~
-~18434~^~601~^13.^1^^~1~^^^^^^^^^^^~08/01/1992~
-~18435~^~208~^371.^0^^~4~^~NC~^^^^^^^^^^~08/01/1992~
-~18435~^~268~^1552.^0^^~4~^^^^^^^^^^^
-~18435~^~301~^46.^16^9.^~1~^^^^^^^^^^^~08/01/1992~
-~18435~^~304~^15.^15^0.^~1~^^^^^^^^^^^~08/01/1992~
-~18435~^~305~^89.^15^8.^~1~^^^^^^^^^^^~08/01/1992~
-~18435~^~306~^83.^11^6.^~1~^^^^^^^^^^^~08/01/1992~
-~18435~^~307~^354.^16^6.^~1~^^^^^^^^^^^~08/01/1992~
-~18435~^~318~^200.^0^^~4~^^^^^^^^^^^~08/01/1992~
-~18435~^~319~^60.^0^^~4~^~NC~^^^^^^^^^^~06/01/2002~
-~18435~^~320~^60.^0^^~4~^~NC~^^^^^^^^^^~06/01/2002~
-~18435~^~417~^16.^8^1.^~1~^^^^^^^^^^^~08/01/1992~
-~18435~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~
-~18435~^~432~^16.^8^1.^~1~^^^^^^^^^^^~08/01/1992~
-~18435~^~435~^16.^0^^~4~^~NC~^^^^^^^^^^~01/01/2001~
-~18435~^~601~^40.^0^^~4~^~BFZN~^^^^^^^^^^~12/01/1997~
-~18436~^~208~^403.^0^^~4~^~NC~^^^^^^^^^^~08/01/1992~
-~18436~^~268~^1686.^0^^~4~^^^^^^^^^^^
-~18436~^~301~^43.^13^9.^~1~^^^^^^^^^^^~08/01/1992~
-~18436~^~304~^22.^7^0.^~1~^^^^^^^^^^^~08/01/1992~
-~18436~^~305~^93.^7^2.^~1~^^^^^^^^^^^~08/01/1992~
-~18436~^~306~^108.^7^6.^~1~^^^^^^^^^^^~08/01/1992~
-~18436~^~307~^342.^14^30.^~1~^^^^^^^^^^^~08/01/1992~
-~18436~^~318~^14.^0^^~4~^~BFZN~^^^^^^^^^^~12/01/1997~
-~18436~^~319~^4.^0^^~4~^~NC~^^^^^^^^^^~06/01/2002~
-~18436~^~320~^4.^0^^~4~^~NC~^^^^^^^^^^~06/01/2002~
-~18436~^~417~^22.^3^3.^~1~^^^^^^^^^^^~08/01/1992~
-~18436~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~
-~18436~^~432~^22.^3^3.^~1~^^^^^^^^^^^~08/01/1992~
-~18436~^~435~^22.^0^^~4~^~NC~^^^^^^^^^^~01/01/2001~
-~18436~^~601~^6.^8^2.^~1~^^^^^^^^^^^~08/01/1992~
-~18437~^~208~^235.^0^^~4~^~NC~^^^^^^^^^^~08/01/1992~
-~18437~^~268~^983.^0^^~4~^^^^^^^^^^^
-~18437~^~301~^52.^0^^~4~^^^^^^^^^^^~08/01/1992~
-~18437~^~304~^21.^16^0.^~1~^^^^^^^^^^^~08/01/1992~
-~18437~^~305~^133.^11^16.^~1~^^^^^^^^^^^~08/01/1992~
-~18437~^~306~^131.^14^10.^~1~^^^^^^^^^^^~08/01/1992~
-~18437~^~307~^464.^20^21.^~1~^^^^^^^^^^^~08/01/1992~
-~18437~^~318~^0.^0^^~4~^^^^^^^^^^^~08/01/1992~
-~18437~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2002~
-~18437~^~320~^0.^0^^~4~^~NC~^^^^^^^^^^~06/01/2002~
-~18437~^~417~^74.^0^^~4~^~FLA~^^^^^^^^^^~03/01/1998~
-~18437~^~431~^37.^0^^~4~^~NC~^^^^^^^^^^~05/01/2000~
-~18437~^~432~^37.^0^^~4~^^^^^^^^^^^~08/01/1992~
-~18437~^~435~^100.^0^^~4~^~NC~^^^^^^^^^^~01/01/2001~
-~18437~^~601~^0.^4^0.^~1~^^^^^^^^^^^~08/01/1992~
-~18438~^~208~^235.^0^^~4~^~NC~^^^^^^^^^^~08/01/1992~
-~18438~^~268~^983.^0^^~4~^^^^^^^^^^^
-~18438~^~301~^174.^28^10.^~1~^^^^^^^^^^^~08/01/1992~
-~18438~^~304~^21.^16^0.^~1~^^^^^^^^^^^~08/01/1992~
-~18438~^~305~^133.^11^16.^~1~^^^^^^^^^^^~08/01/1992~
-~18438~^~306~^131.^14^10.^~1~^^^^^^^^^^^~08/01/1992~
-~18438~^~307~^464.^20^21.^~1~^^^^^^^^^^^~08/01/1992~
-~18438~^~318~^0.^0^^~4~^^^^^^^^^^^~08/01/1992~
-~18438~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2002~
-~18438~^~320~^0.^0^^~4~^~NC~^^^^^^^^^^~06/01/2002~
-~18438~^~417~^37.^0^^~4~^^^^^^^^^^^~08/01/1992~
-~18438~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~
-~18438~^~432~^37.^0^^~4~^^^^^^^^^^^~08/01/1992~
-~18438~^~435~^37.^0^^~4~^~NC~^^^^^^^^^^~01/01/2001~
-~18438~^~601~^0.^4^0.^~1~^^^^^^^^^^^~08/01/1992~
-~18439~^~208~^235.^0^^~4~^~NC~^^^^^^^^^^~08/01/1992~
-~18439~^~268~^983.^0^^~4~^^^^^^^^^^^
-~18439~^~301~^52.^0^^~4~^^^^^^^^^^^~08/01/1992~
-~18439~^~304~^21.^16^0.^~1~^^^^^^^^^^^~08/01/1992~
-~18439~^~305~^133.^11^16.^~1~^^^^^^^^^^^~08/01/1992~
-~18439~^~306~^131.^14^10.^~1~^^^^^^^^^^^~08/01/1992~
-~18439~^~307~^464.^20^21.^~1~^^^^^^^^^^^~08/01/1992~
-~18439~^~318~^0.^0^^~4~^^^^^^^^^^^~08/01/1992~
-~18439~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2002~
-~18439~^~320~^0.^0^^~4~^~NC~^^^^^^^^^^~06/01/2002~
-~18439~^~417~^37.^0^^~4~^^^^^^^^^^^~08/01/1992~
-~18439~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~
-~18439~^~432~^37.^0^^~4~^^^^^^^^^^^~08/01/1992~
-~18439~^~435~^37.^0^^~4~^~NC~^^^^^^^^^^~01/01/2001~
-~18439~^~601~^0.^4^0.^~1~^^^^^^^^^^^~08/01/1992~
-~18443~^~208~^237.^0^^~4~^~NC~^^^^^^^^^^~08/01/1992~
-~18443~^~268~^992.^0^^~4~^^^^^^^^^^^
-~18443~^~301~^11.^40^0.^~1~^^^^^^^^^^^~08/01/1992~
-~18443~^~304~^7.^36^0.^~1~^^^^^^^^^^^~08/01/1992~
-~18443~^~305~^24.^35^0.^~1~^^^^^^^^^^^~08/01/1992~
-~18443~^~306~^65.^39^1.^~1~^^^^^^^^^^^~08/01/1992~
-~18443~^~307~^266.^41^7.^~1~^^^^^^^^^^^~08/01/1992~
-~18443~^~318~^124.^7^24.^~1~^^^^^^^^^^^~08/01/1992~
-~18443~^~319~^28.^0^^~4~^~NC~^^^^^^^^^^~06/01/2002~
-~18443~^~320~^29.^0^^~4~^~NC~^^^^^^^^^^~06/01/2002~
-~18443~^~417~^4.^11^0.^~1~^^^^^^^^^^^~08/01/1992~
-~18443~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~
-~18443~^~432~^4.^11^0.^~1~^^^^^^^^^^^~08/01/1992~
-~18443~^~435~^4.^0^^~4~^~NC~^^^^^^^^^^~01/01/2001~
-~18443~^~601~^0.^0^^~4~^^^^^^^^^^^~08/01/1992~
-~18444~^~208~^316.^0^^~4~^~NC~^^^^^^^^^^~08/01/1992~
-~18444~^~268~^1322.^0^^~4~^^^^^^^^^^^
-~18444~^~301~^22.^23^2.^~1~^^^^^^^^^^^~08/01/1992~
-~18444~^~304~^10.^8^0.^~1~^^^^^^^^^^^~08/01/1992~
-~18444~^~305~^43.^11^6.^~1~^^^^^^^^^^^~08/01/1992~
-~18444~^~306~^65.^6^11.^~1~^^^^^^^^^^^~08/01/1992~
-~18444~^~307~^374.^23^12.^~1~^^^^^^^^^^^~08/01/1992~
-~18444~^~318~^172.^0^^~4~^^^^^^^^^^^~08/01/1992~
-~18444~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2002~
-~18444~^~320~^9.^0^^~4~^~NC~^^^^^^^^^^~06/01/2002~
-~18444~^~417~^18.^0^^~4~^~FLA~^^^^^^^^^^~03/01/1998~
-~18444~^~431~^15.^0^^~4~^~NC~^^^^^^^^^^~05/01/2000~
-~18444~^~432~^3.^2^^~1~^^^^^^^^^^^~08/01/1992~
-~18444~^~435~^29.^0^^~4~^~NC~^^^^^^^^^^~01/01/2001~
-~18444~^~601~^0.^0^^~4~^^^^^^^^^^^~08/01/1992~
-~18445~^~208~^316.^0^^~4~^~NC~^^^^^^^^^^~08/01/1992~
-~18445~^~268~^1322.^0^^~4~^^^^^^^^^^^
-~18445~^~301~^22.^23^2.^~1~^^^^^^^^^^^~08/01/1992~
-~18445~^~304~^10.^8^0.^~1~^^^^^^^^^^^~08/01/1992~
-~18445~^~305~^43.^11^6.^~1~^^^^^^^^^^^~08/01/1992~
-~18445~^~306~^65.^6^11.^~1~^^^^^^^^^^^~08/01/1992~
-~18445~^~307~^374.^23^12.^~1~^^^^^^^^^^^~08/01/1992~
-~18445~^~318~^32.^0^^~4~^^^^^^^^^^^~08/01/1992~
-~18445~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2002~
-~18445~^~320~^2.^0^^~4~^~NC~^^^^^^^^^^~06/01/2002~
-~18445~^~417~^18.^0^^~4~^~FLA~^^^^^^^^^^~03/01/1998~
-~18445~^~431~^15.^0^^~4~^~NC~^^^^^^^^^^~05/01/2000~
-~18445~^~432~^3.^2^^~1~^^^^^^^^^^^~08/01/1992~
-~18445~^~435~^29.^0^^~4~^~NC~^^^^^^^^^^~01/01/2001~
-~18445~^~601~^0.^0^^~4~^^^^^^^^^^^~08/01/1992~
-~18446~^~208~^457.^0^^~4~^~NC~^^^^^^^^^^~08/01/1992~
-~18446~^~268~^1912.^0^^~4~^^^^^^^^^^^
-~18446~^~301~^18.^7^5.^~1~^^^^^^^^^^^~08/01/1992~
-~18446~^~304~^16.^7^4.^~1~^^^^^^^^^^^~08/01/1992~
-~18446~^~305~^53.^7^7.^~1~^^^^^^^^^^^~08/01/1992~
-~18446~^~306~^98.^7^18.^~1~^^^^^^^^^^^~08/01/1992~
-~18446~^~307~^576.^7^60.^~1~^^^^^^^^^^^~08/01/1992~
-~18446~^~318~^0.^0^^~4~^^^^^^^^^^^~08/01/1992~
-~18446~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2002~
-~18446~^~320~^0.^0^^~4~^~NC~^^^^^^^^^^~06/01/2002~
-~18446~^~417~^10.^0^^~4~^^^^^^^^^^^~08/01/1992~
-~18446~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~
-~18446~^~432~^10.^0^^~4~^^^^^^^^^^^~08/01/1992~
-~18446~^~435~^10.^0^^~4~^~NC~^^^^^^^^^^~01/01/2001~
-~18446~^~601~^0.^0^^~4~^^^^^^^^^^^~08/01/1992~
-~18447~^~208~^371.^0^^~4~^~NC~^^^^^^^^^^~08/01/1992~
-~18447~^~268~^1552.^0^^~4~^^^^^^^^^^^
-~18447~^~301~^32.^11^0.^~1~^^^^^^^^^^^~08/01/1992~
-~18447~^~304~^25.^5^0.^~1~^^^^^^^^^^^~08/01/1992~
-~18447~^~305~^100.^11^2.^~1~^^^^^^^^^^^~08/01/1992~
-~18447~^~306~^100.^5^2.^~1~^^^^^^^^^^^~08/01/1992~
-~18447~^~307~^906.^5^34.^~1~^^^^^^^^^^^~08/01/1992~
-~18447~^~318~^0.^0^^~4~^~BFZN~^^^^^^^^^^~12/01/1997~
-~18447~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2002~
-~18447~^~320~^0.^0^^~4~^~NC~^^^^^^^^^^~06/01/2002~
-~18447~^~417~^25.^0^^~4~^^^^^^^^^^^~08/01/1992~
-~18447~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~
-~18447~^~432~^25.^0^^~4~^^^^^^^^^^^~08/01/1992~
-~18447~^~435~^25.^0^^~4~^~NC~^^^^^^^^^^~01/01/2001~
-~18447~^~601~^0.^0^^~4~^^^^^^^^^^^~08/01/1992~
-~18448~^~208~^468.^0^^~4~^~NC~^^^^^^^^^^~08/01/1992~
-~18448~^~268~^1958.^0^^~4~^^^^^^^^^^^
-~18448~^~301~^160.^3^45.^~1~^^^^^^^^^^^~08/01/1992~
-~18448~^~304~^105.^3^15.^~1~^^^^^^^^^^^~08/01/1992~
-~18448~^~305~^248.^3^25.^~1~^^^^^^^^^^^~08/01/1992~
-~18448~^~306~^179.^3^35.^~1~^^^^^^^^^^^~08/01/1992~
-~18448~^~307~^15.^0^^~4~^^^^^^^^^^^~08/01/1992~
-~18448~^~318~^0.^0^^~4~^~BFZN~^^^^^^^^^^~12/01/1997~
-~18448~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2002~
-~18448~^~320~^0.^0^^~4~^~NC~^^^^^^^^^^~06/01/2002~
-~18448~^~417~^105.^0^^~4~^~FLA~^^^^^^^^^^~03/01/1998~
-~18448~^~431~^99.^0^^~4~^~NC~^^^^^^^^^^~05/01/2000~
-~18448~^~432~^6.^8^0.^~1~^^^^^^^^^^^~08/01/1992~
-~18448~^~435~^174.^0^^~4~^~NC~^^^^^^^^^^~01/01/2001~
-~18448~^~601~^0.^0^^~4~^^^^^^^^^^^~08/01/1992~
-~18449~^~208~^222.^0^^~4~^~NC~^^^^^^^^^^~08/01/1992~
-~18449~^~268~^929.^0^^~4~^^^^^^^^^^^
-~18449~^~301~^175.^53^7.^~1~^^^^^^^^^^^~08/01/1992~
-~18449~^~304~^65.^30^1.^~1~^^^^^^^^^^^~08/01/1992~
-~18449~^~305~^314.^42^26.^~1~^^^^^^^^^^^~08/01/1992~
-~18449~^~306~^154.^35^7.^~1~^^^^^^^^^^^~08/01/1992~
-~18449~^~307~^11.^0^^~4~^^^^^^^^^^^~08/01/1992~
-~18449~^~318~^0.^0^^~4~^~BFZN~^^^^^^^^^^~12/01/1997~
-~18449~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2002~
-~18449~^~320~^0.^0^^~4~^~NC~^^^^^^^^^^~06/01/2002~
-~18449~^~417~^114.^0^^~4~^~BFZN~^^^^^^^^^^~12/01/1997~
-~18449~^~431~^99.^0^^~4~^~NC~^^^^^^^^^^~05/01/2000~
-~18449~^~432~^15.^11^1.^~1~^^^^^^^^^^^~08/01/1992~
-~18449~^~435~^183.^0^^~4~^~NC~^^^^^^^^^^~01/01/2001~
-~18449~^~601~^0.^0^^~4~^^^^^^^^^^^~08/01/1992~
-~18450~^~208~^325.^0^^~4~^~NC~^^^^^^^^^^~08/01/1992~
-~18450~^~268~^1360.^0^^~4~^^^^^^^^^^^
-~18450~^~301~^39.^0^^~4~^^^^^^^^^^^~08/01/1992~
-~18450~^~304~^26.^38^1.^~1~^^^^^^^^^^^~08/01/1992~
-~18450~^~305~^124.^38^7.^~1~^^^^^^^^^^^~08/01/1992~
-~18450~^~306~^131.^40^7.^~1~^^^^^^^^^^^~08/01/1992~
-~18450~^~307~^478.^40^24.^~1~^^^^^^^^^^^~08/01/1992~
-~18450~^~318~^0.^0^^~4~^^^^^^^^^^^~08/01/1992~
-~18450~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2002~
-~18450~^~320~^0.^0^^~4~^~NC~^^^^^^^^^^~06/01/2002~
-~18450~^~417~^123.^0^^~4~^~BFZN~^^^^^^^^^^~12/01/1997~
-~18450~^~431~^111.^0^^~4~^~NC~^^^^^^^^^^~05/01/2000~
-~18450~^~432~^12.^10^1.^~1~^^^^^^^^^^^~08/01/1992~
-~18450~^~435~^201.^0^^~4~^~NC~^^^^^^^^^^~01/01/2001~
-~18450~^~601~^0.^0^^~4~^^^^^^^^^^^~08/01/1992~
-~18451~^~208~^283.^0^^~4~^~NC~^^^^^^^^^^~08/01/1992~
-~18451~^~262~^0.^0^^~4~^~FLA~^^^^^^^^^^~03/01/2003~
-~18451~^~263~^0.^0^^~4~^~FLA~^^^^^^^^^^~03/01/2003~
-~18451~^~268~^1184.^0^^~4~^^^^^^^^^^^~05/01/2005~
-~18451~^~301~^43.^2^^~1~^^^^^^^^^^^~08/01/1992~
-~18451~^~304~^10.^2^^~1~^^^^^^^^^^^~08/01/1992~
-~18451~^~305~^146.^2^^~1~^^^^^^^^^^^~08/01/1992~
-~18451~^~306~^110.^2^^~1~^^^^^^^^^^^~08/01/1992~
-~18451~^~307~^341.^2^^~1~^^^^^^^^^^^~08/01/1992~
-~18451~^~318~^95.^0^^~4~^~NC~^^^^^^^^^^~03/01/2003~
-~18451~^~319~^29.^0^^~4~^~FLA~^^^^^^^^^^~03/01/2003~
-~18451~^~320~^29.^0^^~4~^~NC~^^^^^^^^^^~03/01/2003~
-~18451~^~321~^0.^0^^~4~^~FLA~^^^^^^^^^^~03/01/2003~
-~18451~^~322~^0.^0^^~4~^~FLA~^^^^^^^^^^~03/01/2003~
-~18451~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~
-~18451~^~334~^0.^0^^~4~^~FLA~^^^^^^^^^^~03/01/2003~
-~18451~^~337~^0.^0^^~4~^~FLA~^^^^^^^^^^~03/01/2003~
-~18451~^~338~^2.^0^^~4~^~FLA~^^^^^^^^^^~03/01/2003~
-~18451~^~417~^43.^0^^~4~^~FLA~^^^^^^^^^^~03/01/2003~
-~18451~^~431~^39.^0^^~4~^^^^^^^^^^^~03/01/2003~
-~18451~^~432~^4.^2^^~1~^^^^^^^^^^^~08/01/1992~
-~18451~^~435~^70.^0^^~4~^~NC~^^^^^^^^^^~02/01/2007~
-~18451~^~601~^0.^0^^~1~^^^^^^^^^^^~08/01/1992~
-~18453~^~208~^404.^0^^~4~^~NC~^^^^^^^^^^~08/01/1992~
-~18453~^~268~^1690.^0^^~4~^^^^^^^^^^^
-~18453~^~301~^155.^2^^~1~^^^^^^^^^^^~08/01/1992~
-~18453~^~304~^10.^2^^~1~^^^^^^^^^^^~08/01/1992~
-~18453~^~305~^324.^2^^~1~^^^^^^^^^^^~08/01/1992~
-~18453~^~306~^65.^2^^~1~^^^^^^^^^^^~08/01/1992~
-~18453~^~307~^604.^2^^~1~^^^^^^^^^^^~08/01/1992~
-~18453~^~318~^13.^2^^~1~^^^^^^^^^^^~08/01/1992~
-~18453~^~319~^4.^0^^~4~^~NC~^^^^^^^^^^~06/01/2002~
-~18453~^~320~^4.^0^^~4~^~NC~^^^^^^^^^^~06/01/2002~
-~18453~^~417~^76.^0^^~4~^~FLA~^^^^^^^^^^~12/01/1997~
-~18453~^~431~^71.^0^^~4~^~NC~^^^^^^^^^^~05/01/2000~
-~18453~^~432~^5.^2^^~1~^^^^^^^^^^^~08/01/1992~
-~18453~^~435~^126.^0^^~4~^~NC~^^^^^^^^^^~01/01/2001~
-~18453~^~601~^0.^0^^~1~^^^^^^^^^^^~08/01/1992~
-~18457~^~208~^393.^0^^~4~^~NC~^^^^^^^^^^~08/01/1992~
-~18457~^~262~^0.^0^^~4~^~FLA~^^^^^^^^^^~03/01/2003~
-~18457~^~263~^0.^0^^~4~^~FLA~^^^^^^^^^^~03/01/2003~
-~18457~^~268~^1644.^0^^~4~^^^^^^^^^^^~03/01/2007~
-~18457~^~301~^22.^1^^~1~^^^^^^^^^^^~08/01/1992~
-~18457~^~304~^26.^1^^~1~^^^^^^^^^^^~08/01/1992~
-~18457~^~305~^113.^1^^~1~^^^^^^^^^^^~08/01/1992~
-~18457~^~306~^115.^1^^~1~^^^^^^^^^^^~08/01/1992~
-~18457~^~307~^849.^0^^~8~^~LC~^^^^^^^^^^~08/01/2012~
-~18457~^~318~^0.^1^^~1~^^^^^^^^^^^~08/01/1992~
-~18457~^~319~^0.^0^^~4~^~FLA~^^^^^^^^^^~03/01/2003~
-~18457~^~320~^0.^0^^~4~^~NC~^^^^^^^^^^~03/01/2003~
-~18457~^~321~^0.^0^^~4~^~FLA~^^^^^^^^^^~07/01/2012~
-~18457~^~322~^0.^0^^~4~^~FLA~^^^^^^^^^^~07/01/2012~
-~18457~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~
-~18457~^~334~^0.^0^^~4~^~FLA~^^^^^^^^^^~07/01/2012~
-~18457~^~337~^0.^0^^~4~^~FLA~^^^^^^^^^^~03/01/2003~
-~18457~^~338~^9.^0^^~4~^~FLA~^^^^^^^^^^~03/01/2003~
-~18457~^~417~^124.^0^^~4~^~BFZN~^^^^^^^^^^~03/01/1998~
-~18457~^~431~^111.^0^^~4~^~NC~^^^^^^^^^^~05/01/2000~
-~18457~^~432~^13.^1^^~1~^^^^^^^^^^^~08/01/1992~
-~18457~^~435~^202.^0^^~4~^~NC~^^^^^^^^^^~03/01/2007~
-~18457~^~601~^0.^0^^~1~^^^^^^^^^^^~08/01/1992~
-~18459~^~208~^372.^0^^~4~^~FLC~^^^^^^^^^^~05/01/2005~
-~18459~^~262~^0.^0^^~4~^~FLM~^^^^^^^^^^~03/01/2003~
-~18459~^~263~^0.^0^^~4~^~FLM~^^^^^^^^^^~03/01/2003~
-~18459~^~268~^1556.^0^^~4~^^^^^^^^^^^~05/01/2005~
-~18459~^~301~^44.^0^^~4~^~FLC~^^^^^^^^^^~05/01/2005~
-~18459~^~304~^44.^0^^~4~^~FLC~^^^^^^^^^^~05/01/2005~
-~18459~^~305~^93.^0^^~4~^~FLC~^^^^^^^^^^~05/01/2005~
-~18459~^~306~^66.^0^^~4~^~FLC~^^^^^^^^^^~05/01/2005~
-~18459~^~307~^361.^0^^~8~^~LC~^^^^^^^^^^~08/01/2012~
-~18459~^~318~^950.^0^^~8~^~LC~^^^^^^^^^^~05/01/2005~
-~18459~^~319~^285.^0^^~4~^~FLM~^^^^^^^^^^~05/01/2005~
-~18459~^~320~^285.^0^^~4~^~NC~^^^^^^^^^^~03/01/2003~
-~18459~^~321~^3.^0^^~4~^~FLM~^^^^^^^^^^~03/01/2003~
-~18459~^~322~^0.^0^^~4~^~FLM~^^^^^^^^^^~03/01/2003~
-~18459~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~
-~18459~^~334~^1.^0^^~4~^~FLM~^^^^^^^^^^~03/01/2003~
-~18459~^~337~^0.^0^^~4~^~FLM~^^^^^^^^^^~03/01/2003~
-~18459~^~338~^4.^0^^~4~^~FLM~^^^^^^^^^^~03/01/2003~
-~18459~^~417~^100.^0^^~9~^~MC~^^^^^^^^^^~05/01/2005~
-~18459~^~431~^47.^0^^~4~^~NR~^^^^^^^^^^~05/01/2005~
-~18459~^~432~^53.^0^^~4~^~O~^^^^^^^^^^~03/01/2003~
-~18459~^~435~^133.^0^^~4~^~NC~^^^^^^^^^^~01/01/2007~
-~18459~^~601~^0.^0^^~4~^~FLC~^^^^^^^^^^~05/01/2005~
-~18513~^~208~^442.^0^^~9~^~MC~^^^^^^^^^^~09/01/1998~
-~18513~^~268~^1849.^0^^~9~^~MC~^^^^^^^^^^
-~18513~^~301~^20.^0^^~9~^~MC~^^^^^^^^^^~09/01/1998~
-~18513~^~306~^87.^0^^~9~^~MC~^^^^^^^^^^~09/01/1998~
-~18513~^~307~^308.^0^^~9~^~MC~^^^^^^^^^^~09/01/1998~
-~18513~^~318~^1.^0^^~9~^~MC~^^^^^^^^^^~09/01/1998~
-~18513~^~417~^58.^0^^~9~^~MC~^^^^^^^^^^~09/01/1998~
-~18513~^~432~^58.^0^^~9~^~MC~^^^^^^^^^^~11/01/2016~
-~18513~^~601~^0.^0^^~9~^~MC~^^^^^^^^^^~09/01/1998~
-~18522~^~208~^497.^1^^~4~^~NC~^^^^^^^^^^~11/01/2005~
-~18522~^~268~^2079.^0^^~4~^~NC~^^^^^^^^^^~11/01/2005~
-~18522~^~301~^14.^1^^~9~^^^^^^^^^^^~11/01/2005~
-~18522~^~306~^127.^1^^~9~^^^^^^^^^^^~11/01/2005~
-~18522~^~307~^270.^1^^~9~^^^^^^^^^^^~11/01/2005~
-~18522~^~318~^16.^1^^~9~^^^^^^^^^^^~11/01/2005~
-~18522~^~417~^60.^1^^~9~^^^^^^^^^^^~11/01/2005~
-~18522~^~432~^60.^1^^~9~^^^^^^^^^^^~11/01/2016~
-~18522~^~601~^13.^1^^~9~^^^^^^^^^^^~11/01/2005~
-~18524~^~208~^460.^0^^~4~^~NC~^^^^^^^^^^~04/01/2006~
-~18524~^~268~^1924.^0^^~4~^~NC~^^^^^^^^^^~04/01/2006~
-~18524~^~301~^5.^1^^~9~^~MC~^^^^^^^^^^~04/01/2006~
-~18524~^~306~^123.^1^^~9~^~MC~^^^^^^^^^^~04/01/2006~
-~18524~^~307~^200.^0^^~8~^~LC~^^^^^^^^^^~06/01/2010~
-~18524~^~318~^0.^1^^~9~^~MC~^^^^^^^^^^~04/01/2006~
-~18524~^~320~^0.^0^^~4~^~NR~^^^^^^^^^^~06/01/2010~
-~18524~^~417~^5.^1^^~9~^~MC~^^^^^^^^^^~04/01/2006~
-~18524~^~432~^5.^1^^~9~^~MC~^^^^^^^^^^~06/01/2010~
-~18524~^~601~^0.^1^^~9~^~MC~^^^^^^^^^^~04/01/2006~
-~18527~^~208~^400.^1^^~4~^~NC~^^^^^^^^^^~11/01/2005~
-~18527~^~268~^1673.^0^^~4~^~NC~^^^^^^^^^^~11/01/2005~
-~18527~^~301~^28.^1^^~9~^^^^^^^^^^^~11/01/2005~
-~18527~^~306~^159.^1^^~9~^^^^^^^^^^^~11/01/2005~
-~18527~^~307~^331.^1^^~9~^^^^^^^^^^^~11/01/2005~
-~18527~^~318~^13.^1^^~9~^^^^^^^^^^^~11/01/2005~
-~18527~^~417~^56.^1^^~9~^^^^^^^^^^^~11/01/2005~
-~18527~^~432~^56.^1^^~9~^^^^^^^^^^^~11/01/2016~
-~18527~^~601~^6.^1^^~9~^^^^^^^^^^^~11/01/2005~
-~18528~^~208~^431.^1^^~4~^~NC~^^^^^^^^^^~11/01/2005~
-~18528~^~268~^1802.^0^^~4~^~NC~^^^^^^^^^^~11/01/2005~
-~18528~^~301~^13.^1^^~9~^^^^^^^^^^^~11/01/2005~
-~18528~^~306~^239.^1^^~9~^^^^^^^^^^^~11/01/2005~
-~18528~^~307~^384.^1^^~9~^^^^^^^^^^^~11/01/2005~
-~18528~^~318~^14.^1^^~9~^^^^^^^^^^^~11/01/2005~
-~18528~^~417~^63.^1^^~9~^^^^^^^^^^^~11/01/2005~
-~18528~^~432~^63.^1^^~9~^^^^^^^^^^^~11/01/2016~
-~18528~^~601~^7.^1^^~9~^^^^^^^^^^^~11/01/2005~
-~18529~^~208~^430.^0^^~9~^~MC~^^^^^^^^^^~10/01/1998~
-~18529~^~268~^1799.^0^^~9~^~MC~^^^^^^^^^^~06/01/2010~
-~18529~^~301~^41.^0^^~9~^~MC~^^^^^^^^^^~10/01/1998~
-~18529~^~306~^92.^0^^~9~^~MC~^^^^^^^^^^~10/01/1998~
-~18529~^~307~^449.^0^^~8~^~LC~^^^^^^^^^^~06/01/2010~
-~18529~^~318~^0.^0^^~9~^~MC~^^^^^^^^^^~10/01/1998~
-~18529~^~320~^0.^0^^~4~^~NR~^^^^^^^^^^~06/01/2010~
-~18529~^~417~^59.^0^^~9~^~MC~^^^^^^^^^^~10/01/1998~
-~18529~^~432~^59.^0^^~9~^~MC~^^^^^^^^^^~06/01/2010~
-~18529~^~601~^0.^0^^~9~^~MC~^^^^^^^^^^~10/01/1998~
-~18532~^~208~^420.^1^^~4~^~NC~^^^^^^^^^^~11/01/2005~
-~18532~^~268~^1759.^0^^~4~^~NC~^^^^^^^^^^~11/01/2005~
-~18532~^~301~^24.^1^^~9~^^^^^^^^^^^~11/01/2005~
-~18532~^~306~^125.^1^^~9~^^^^^^^^^^^~11/01/2005~
-~18532~^~307~^605.^0^^~8~^~LC~^^^^^^^^^^~06/01/2010~
-~18532~^~318~^11.^1^^~9~^^^^^^^^^^^~11/01/2005~
-~18532~^~320~^0.^0^^~4~^~NR~^^^^^^^^^^~06/01/2010~
-~18532~^~417~^61.^1^^~9~^^^^^^^^^^^~11/01/2005~
-~18532~^~432~^61.^1^^~9~^^^^^^^^^^^~06/01/2010~
-~18532~^~601~^12.^1^^~9~^^^^^^^^^^^~11/01/2005~
-~18533~^~208~^435.^1^^~4~^~NC~^^^^^^^^^^~11/01/2005~
-~18533~^~268~^1822.^0^^~4~^~NC~^^^^^^^^^^~11/01/2005~
-~18533~^~301~^32.^1^^~9~^^^^^^^^^^^~11/01/2005~
-~18533~^~306~^185.^1^^~9~^^^^^^^^^^^~11/01/2005~
-~18533~^~307~^377.^1^^~9~^^^^^^^^^^^~11/01/2005~
-~18533~^~318~^15.^1^^~9~^^^^^^^^^^^~11/01/2005~
-~18533~^~417~^50.^1^^~9~^^^^^^^^^^^~11/01/2005~
-~18533~^~432~^50.^1^^~9~^^^^^^^^^^^~11/01/2016~
-~18533~^~601~^8.^1^^~9~^^^^^^^^^^^~11/01/2005~
-~18535~^~208~^403.^1^^~4~^~NC~^^^^^^^^^^~11/01/2005~
-~18535~^~268~^1687.^0^^~4~^~NC~^^^^^^^^^^~11/01/2005~
-~18535~^~301~^29.^1^^~9~^^^^^^^^^^^~11/01/2005~
-~18535~^~306~^117.^1^^~9~^^^^^^^^^^^~11/01/2005~
-~18535~^~307~^577.^1^^~9~^^^^^^^^^^^~11/01/2005~
-~18535~^~318~^17.^1^^~9~^^^^^^^^^^^~11/01/2005~
-~18535~^~417~^69.^1^^~9~^^^^^^^^^^^~11/01/2005~
-~18535~^~432~^69.^1^^~9~^^^^^^^^^^^~11/01/2016~
-~18535~^~601~^25.^1^^~9~^^^^^^^^^^^~11/01/2005~
-~18537~^~208~^421.^1^^~4~^~NC~^^^^^^^^^^~11/01/2005~
-~18537~^~268~^1763.^0^^~4~^~NC~^^^^^^^^^^~11/01/2005~
-~18537~^~301~^35.^1^^~9~^^^^^^^^^^^~11/01/2005~
-~18537~^~306~^219.^1^^~9~^^^^^^^^^^^~11/01/2005~
-~18537~^~307~^394.^1^^~9~^^^^^^^^^^^~11/01/2005~
-~18537~^~318~^15.^1^^~9~^^^^^^^^^^^~11/01/2005~
-~18537~^~417~^54.^1^^~9~^^^^^^^^^^^~11/01/2005~
-~18537~^~432~^54.^1^^~9~^^^^^^^^^^^~11/01/2016~
-~18537~^~601~^10.^1^^~9~^^^^^^^^^^^~11/01/2005~
-~18538~^~208~^406.^1^^~4~^~NC~^^^^^^^^^^~11/01/2005~
-~18538~^~268~^1701.^0^^~4~^~NC~^^^^^^^^^^~11/01/2005~
-~18538~^~301~^38.^1^^~9~^^^^^^^^^^^~11/01/2005~
-~18538~^~306~^285.^1^^~9~^^^^^^^^^^^~11/01/2005~
-~18538~^~307~^339.^1^^~9~^^^^^^^^^^^~11/01/2005~
-~18538~^~318~^15.^1^^~9~^^^^^^^^^^^~11/01/2005~
-~18538~^~417~^47.^1^^~9~^^^^^^^^^^^~11/01/2005~
-~18538~^~432~^47.^1^^~9~^^^^^^^^^^^~11/01/2016~
-~18538~^~601~^8.^1^^~9~^^^^^^^^^^^~11/01/2005~
-~18539~^~208~^406.^1^^~4~^~NC~^^^^^^^^^^~11/01/2005~
-~18539~^~268~^1698.^0^^~4~^~NC~^^^^^^^^^^~11/01/2005~
-~18539~^~301~^32.^1^^~9~^^^^^^^^^^^~11/01/2005~
-~18539~^~307~^561.^1^^~9~^^^^^^^^^^^~11/01/2005~
-~18539~^~318~^12.^1^^~9~^^^^^^^^^^^~11/01/2005~
-~18539~^~417~^71.^1^^~9~^^^^^^^^^^^~11/01/2005~
-~18539~^~432~^71.^1^^~9~^^^^^^^^^^^~11/01/2016~
-~18539~^~601~^25.^1^^~9~^^^^^^^^^^^~11/01/2005~
-~18540~^~208~^468.^1^^~4~^~NC~^^^^^^^^^^~11/01/2005~
-~18540~^~268~^1956.^0^^~4~^~NC~^^^^^^^^^^~11/01/2005~
-~18540~^~301~^36.^1^^~9~^^^^^^^^^^^~11/01/2005~
-~18540~^~306~^113.^1^^~9~^^^^^^^^^^^~11/01/2005~
-~18540~^~307~^471.^1^^~9~^^^^^^^^^^^~11/01/2005~
-~18540~^~318~^2.^1^^~9~^^^^^^^^^^^~11/01/2005~
-~18540~^~417~^82.^1^^~9~^^^^^^^^^^^~11/01/2005~
-~18540~^~432~^82.^1^^~9~^^^^^^^^^^^~11/01/2016~
-~18540~^~601~^1.^1^^~9~^^^^^^^^^^^~11/01/2005~
-~18541~^~208~^480.^0^^~9~^~MC~^^^^^^^^^^~10/01/1998~
-~18541~^~268~^2008.^0^^~9~^~MC~^^^^^^^^^^
-~18541~^~301~^35.^0^^~9~^~MC~^^^^^^^^^^~10/01/1998~
-~18541~^~306~^209.^0^^~9~^~MC~^^^^^^^^^^~10/01/1998~
-~18541~^~307~^404.^0^^~9~^~MC~^^^^^^^^^^~10/01/1998~
-~18541~^~318~^61.^0^^~9~^~MC~^^^^^^^^^^~10/01/1998~
-~18541~^~601~^37.^0^^~9~^~MC~^^^^^^^^^^~10/01/1998~
-~18544~^~208~^400.^1^^~4~^~NC~^^^^^^^^^^~10/01/2005~
-~18544~^~268~^1675.^0^^~4~^~NC~^^^^^^^^^^~10/01/2005~
-~18544~^~301~^20.^1^^~9~^^^^^^^^^^^~10/01/2005~
-~18544~^~306~^118.^1^^~9~^^^^^^^^^^^~10/01/2005~
-~18544~^~307~^334.^1^^~9~^^^^^^^^^^^~10/01/2005~
-~18544~^~318~^18.^1^^~9~^^^^^^^^^^^~10/01/2005~
-~18544~^~417~^62.^1^^~9~^^^^^^^^^^^~10/01/2005~
-~18544~^~432~^62.^1^^~9~^^^^^^^^^^^~11/01/2016~
-~18544~^~601~^6.^1^^~9~^^^^^^^^^^^~10/01/2005~
-~18547~^~208~^400.^1^^~4~^~NC~^^^^^^^^^^~10/01/2005~
-~18547~^~268~^1675.^0^^~4~^~NC~^^^^^^^^^^~10/01/2005~
-~18547~^~301~^20.^1^^~9~^^^^^^^^^^^~10/01/2005~
-~18547~^~306~^118.^1^^~9~^^^^^^^^^^^~10/01/2005~
-~18547~^~307~^377.^0^^~8~^~LC~^^^^^^^^^^~06/01/2010~
-~18547~^~318~^18.^1^^~9~^^^^^^^^^^^~10/01/2005~
-~18547~^~320~^0.^0^^~4~^~NR~^^^^^^^^^^~06/01/2010~
-~18547~^~417~^62.^1^^~9~^^^^^^^^^^^~10/01/2005~
-~18547~^~432~^62.^1^^~9~^^^^^^^^^^^~06/01/2010~
-~18547~^~601~^6.^1^^~9~^^^^^^^^^^^~10/01/2005~
-~18562~^~208~^424.^1^^~4~^~NC~^^^^^^^^^^~11/01/2005~
-~18562~^~268~^1773.^0^^~4~^~NC~^^^^^^^^^^~11/01/2005~
-~18562~^~301~^62.^1^^~9~^^^^^^^^^^^~11/01/2005~
-~18562~^~306~^309.^1^^~9~^^^^^^^^^^^~11/01/2005~
-~18562~^~307~^406.^1^^~9~^^^^^^^^^^^~11/01/2005~
-~18562~^~318~^2.^1^^~9~^^^^^^^^^^^~11/01/2005~
-~18562~^~417~^76.^1^^~9~^^^^^^^^^^^~11/01/2005~
-~18562~^~432~^76.^1^^~9~^^^^^^^^^^^~11/01/2016~
-~18562~^~601~^1.^1^^~9~^^^^^^^^^^^~11/01/2005~
-~18566~^~208~^407.^0^^~4~^~NC~^^^^^^^^^^~10/01/1998~
-~18566~^~268~^1703.^0^^~4~^^^^^^^^^^^
-~18566~^~307~^760.^2^^~1~^~A~^^^^^^^^^^~10/01/1998~
-~18567~^~208~^381.^0^^~9~^~MC~^^^^^^^^^^~02/01/1999~
-~18567~^~268~^1594.^0^^~9~^~MC~^^^^^^^^^^
-~18567~^~301~^63.^0^^~9~^~MC~^^^^^^^^^^~02/01/1999~
-~18567~^~305~^129.^0^^~9~^~MC~^^^^^^^^^^~02/01/1999~
-~18567~^~306~^267.^0^^~9~^~MC~^^^^^^^^^^~02/01/1999~
-~18567~^~307~^1532.^0^^~9~^~MC~^^^^^^^^^^~02/01/1999~
-~18567~^~318~^107.^0^^~9~^~MC~^^^^^^^^^^~02/01/1999~
-~18567~^~417~^80.^0^^~9~^~MC~^^^^^^^^^^~02/01/1999~
-~18567~^~432~^80.^0^^~9~^~MC~^^^^^^^^^^~11/01/2016~
-~18567~^~601~^4.^0^^~9~^~MC~^^^^^^^^^^~02/01/1999~
-~18603~^~208~^390.^0^^~4~^~NC~^^^^^^^^^^~12/01/2005~
-~18603~^~268~^1631.^0^^~4~^~NC~^^^^^^^^^^~12/01/2005~
-~18603~^~307~^1680.^1^^~1~^~A~^^^^^^^^^^~09/01/1996~
-~18608~^~208~^465.^0^^~4~^~NC~^^^^^^^^^^~09/01/1996~
-~18608~^~268~^1946.^0^^~4~^^^^^^^^^^^
-~18608~^~307~^357.^1^^~1~^~A~^^^^^^^^^^~09/01/1996~
-~18610~^~208~^418.^1^^~4~^~NC~^^^^^^^^^^~11/01/2005~
-~18610~^~268~^1747.^0^^~4~^~NC~^^^^^^^^^^~11/01/2005~
-~18610~^~301~^82.^1^^~9~^^^^^^^^^^^~11/01/2005~
-~18610~^~307~^590.^1^^~9~^^^^^^^^^^^~11/01/2005~
-~18612~^~208~^548.^0^^~4~^~NC~^^^^^^^^^^~09/01/1996~
-~18612~^~268~^2293.^0^^~4~^^^^^^^^^^^
-~18612~^~307~^223.^1^^~1~^~A~^^^^^^^^^^~09/01/1996~
-~18614~^~208~^407.^0^^~4~^~NC~^^^^^^^^^^~12/01/2005~
-~18614~^~268~^1705.^0^^~4~^~NC~^^^^^^^^^^~12/01/2005~
-~18614~^~301~^17.^1^^~9~^~MC~^^^^^^^^^^~12/01/2005~
-~18614~^~306~^51.^1^^~9~^~MC~^^^^^^^^^^~12/01/2005~
-~18614~^~307~^457.^1^^~9~^~MC~^^^^^^^^^^~12/01/2005~
-~18614~^~318~^0.^1^^~9~^~MC~^^^^^^^^^^~12/01/2005~
-~18614~^~320~^0.^1^^~4~^~NR~^^^^^^^^^^~05/01/2011~
-~18614~^~417~^49.^1^^~9~^~MC~^^^^^^^^^^~12/01/2005~
-~18614~^~432~^49.^1^^~9~^~MC~^^^^^^^^^^~05/01/2011~
-~18614~^~601~^0.^1^^~9~^~MC~^^^^^^^^^^~12/01/2005~
-~18615~^~208~^388.^0^^~4~^~NC~^^^^^^^^^^~12/01/2005~
-~18615~^~268~^1623.^0^^~4~^~NC~^^^^^^^^^^~12/01/2005~
-~18615~^~301~^168.^1^^~9~^~MC~^^^^^^^^^^~12/01/2005~
-~18615~^~306~^212.^1^^~9~^~MC~^^^^^^^^^^~12/01/2005~
-~18615~^~307~^1295.^1^^~9~^~MC~^^^^^^^^^^~12/01/2005~
-~18615~^~318~^7.^1^^~9~^~MC~^^^^^^^^^^~12/01/2005~
-~18615~^~320~^0.^1^^~4~^~NR~^^^^^^^^^^~05/01/2011~
-~18615~^~601~^3.^1^^~9~^~MC~^^^^^^^^^^~12/01/2005~
-~18616~^~208~^287.^0^^~4~^~NC~^^^^^^^^^^~09/01/1996~
-~18616~^~268~^1202.^0^^~4~^^^^^^^^^^^
-~18616~^~301~^191.^1^^~1~^~A~^^^^^^^^^^~09/01/1996~
-~18616~^~307~^898.^0^^~8~^~LC~^^^^^^^^^^~06/01/2010~
-~18617~^~208~^424.^0^^~4~^~NC~^^^^^^^^^^~09/01/1996~
-~18617~^~268~^1776.^0^^~4~^~NC~^^^^^^^^^^
-~18617~^~301~^79.^0^^~9~^~MC~^^^^^^^^^^~02/01/1998~
-~18617~^~304~^59.^0^^~9~^~MC~^^^^^^^^^^~02/01/1998~
-~18617~^~305~^202.^0^^~9~^~MC~^^^^^^^^^^~02/01/1998~
-~18617~^~306~^177.^0^^~12~^~MA~^^^^^^^^^^~02/01/1998~
-~18617~^~307~^659.^1^^~12~^~MA~^^^^^^^^^^~02/01/1998~
-~18617~^~318~^0.^0^^~9~^~MC~^^^^^^^^^^~02/01/1998~
-~18617~^~417~^46.^0^^~9~^~MC~^^^^^^^^^^~02/01/1998~
-~18617~^~432~^46.^0^^~9~^~MC~^^^^^^^^^^~11/01/2016~
-~18617~^~601~^0.^0^^~9~^~MC~^^^^^^^^^^~02/01/1998~
-~18619~^~208~^476.^0^^~9~^~MC~^^^^^^^^^^~02/01/1998~
-~18619~^~268~^1992.^0^^~9~^~MC~^^^^^^^^^^
-~18619~^~301~^24.^0^^~9~^~MC~^^^^^^^^^^~02/01/1998~
-~18619~^~304~^48.^0^^~9~^~MC~^^^^^^^^^^~02/01/1998~
-~18619~^~305~^103.^0^^~9~^~MC~^^^^^^^^^^~02/01/1998~
-~18619~^~306~^194.^0^^~9~^~MC~^^^^^^^^^^~02/01/1998~
-~18619~^~307~^528.^0^^~9~^~MC~^^^^^^^^^^~02/01/1998~
-~18619~^~318~^3.^0^^~9~^~MC~^^^^^^^^^^~02/01/1998~
-~18619~^~417~^30.^0^^~9~^~MC~^^^^^^^^^^~02/01/1998~
-~18619~^~432~^30.^0^^~9~^~MC~^^^^^^^^^^~11/01/2016~
-~18621~^~208~^492.^0^^~4~^~NC~^^^^^^^^^^~06/01/2008~
-~18621~^~268~^2058.^0^^~4~^~NC~^^^^^^^^^^~06/01/2008~
-~18621~^~301~^154.^4^1.^~1~^~A~^^^1^151.^157.^3^150.^158.^~2, 3~^~06/01/2008~
-~18621~^~304~^19.^4^0.^~1~^~A~^^^1^18.^19.^3^18.^19.^~2, 3~^~06/01/2008~
-~18621~^~305~^273.^4^2.^~1~^~A~^^^1^268.^278.^3^266.^279.^~2, 3~^~06/01/2008~
-~18621~^~306~^119.^4^4.^~1~^~A~^^^1^110.^127.^3^105.^132.^~2, 3~^~06/01/2008~
-~18621~^~307~^882.^4^41.^~1~^~A~^^^1^804.^991.^3^750.^1013.^~2, 3~^~06/01/2008~
-~18621~^~417~^72.^1^^~1~^~A~^^^^^^^^^^~06/01/2008~
-~18621~^~431~^55.^1^^~1~^~A~^^^^^^^^^^~06/01/2008~
-~18621~^~432~^17.^0^^~1~^~AS~^^^^^^^^^^~06/01/2008~
-~18621~^~435~^111.^0^^~4~^~NC~^^^^^^^^^^~06/01/2008~
-~18629~^~208~^236.^1^^~9~^~MC~^^^^^^^^^^~04/01/2012~
-~18629~^~268~^985.^0^^~9~^~MC~^^^^^^^^^^~04/01/2012~
-~18629~^~301~^23.^1^^~9~^~MC~^^^^^^^^^^~04/01/2012~
-~18629~^~307~^854.^1^^~9~^~MC~^^^^^^^^^^~04/01/2012~
-~18629~^~318~^0.^1^^~9~^~MC~^^^^^^^^^^~04/01/2012~
-~18629~^~320~^0.^0^^~4~^~NR~^^^^^^^^^^~04/01/2012~
-~18629~^~601~^0.^1^^~9~^~MC~^^^^^^^^^^~04/01/2012~
-~18630~^~208~^450.^1^^~9~^~MC~^^^^^^^^^^~04/01/2012~
-~18630~^~268~^1881.^0^^~9~^~MC~^^^^^^^^^^~04/01/2012~
-~18630~^~301~^14.^1^^~9~^~MC~^^^^^^^^^^~04/01/2012~
-~18630~^~307~^326.^1^^~9~^~MC~^^^^^^^^^^~04/01/2012~
-~18630~^~318~^19.^1^^~9~^~MC~^^^^^^^^^^~04/01/2012~
-~18630~^~320~^0.^0^^~4~^~NR~^^^^^^^^^^~04/01/2012~
-~18630~^~601~^6.^1^^~9~^~MC~^^^^^^^^^^~04/01/2012~
-~18631~^~208~^243.^1^^~9~^~MC~^^^^^^^^^^~04/01/2012~
-~18631~^~268~^1019.^0^^~9~^~MC~^^^^^^^^^^~04/01/2012~
-~18631~^~301~^19.^1^^~9~^~MC~^^^^^^^^^^~04/01/2012~
-~18631~^~307~^575.^1^^~9~^~MC~^^^^^^^^^^~04/01/2012~
-~18631~^~318~^0.^1^^~9~^~MC~^^^^^^^^^^~04/01/2012~
-~18631~^~320~^0.^0^^~4~^~NR~^^^^^^^^^^~04/01/2012~
-~18631~^~601~^0.^1^^~9~^~MC~^^^^^^^^^^~04/01/2012~
-~18633~^~208~^293.^1^^~9~^~MC~^^^^^^^^^^~04/01/2012~
-~18633~^~268~^1227.^0^^~9~^~MC~^^^^^^^^^^~04/01/2012~
-~18633~^~301~^23.^1^^~9~^~MC~^^^^^^^^^^~04/01/2012~
-~18633~^~307~^1066.^1^^~9~^~MC~^^^^^^^^^^~04/01/2012~
-~18633~^~318~^0.^1^^~9~^~MC~^^^^^^^^^^~04/01/2012~
-~18633~^~320~^0.^0^^~4~^~NR~^^^^^^^^^^~04/01/2012~
-~18633~^~601~^0.^1^^~9~^~MC~^^^^^^^^^^~04/01/2012~
-~18634~^~208~^307.^0^^~4~^~NC~^^^^^^^^^^~01/01/2006~
-~18634~^~268~^1286.^0^^~4~^~NC~^^^^^^^^^^~01/01/2006~
-~18634~^~307~^1059.^1^^~12~^~MA~^^^^^^^^^^~01/01/2006~
-~18634~^~601~^0.^1^^~12~^~MA~^^^^^^^^^^~01/01/2006~
-~18635~^~208~^330.^1^^~9~^~MC~^^^^^^^^^^~04/01/2012~
-~18635~^~268~^1381.^0^^~9~^~MC~^^^^^^^^^^~04/01/2012~
-~18635~^~301~^28.^1^^~9~^~MC~^^^^^^^^^^~04/01/2012~
-~18635~^~307~^780.^1^^~9~^~MC~^^^^^^^^^^~04/01/2012~
-~18635~^~318~^1.^1^^~9~^~MC~^^^^^^^^^^~04/01/2012~
-~18635~^~320~^0.^0^^~4~^~NR~^^^^^^^^^^~04/01/2012~
-~18635~^~601~^0.^1^^~9~^~MC~^^^^^^^^^^~04/01/2012~
-~18637~^~208~^377.^0^^~4~^~NC~^^^^^^^^^^~09/01/1996~
-~18637~^~268~^1577.^0^^~4~^^^^^^^^^^^
-~18637~^~307~^2182.^0^^~8~^~LC~^^^^^^^^^^~06/01/2010~
-~18639~^~208~^232.^1^^~4~^~NC~^^^^^^^^^^~12/01/2005~
-~18639~^~268~^972.^0^^~4~^~NC~^^^^^^^^^^~12/01/2005~
-~18639~^~301~^180.^1^^~9~^~MC~^^^^^^^^^^~12/01/2005~
-~18639~^~307~^345.^1^^~9~^~MC~^^^^^^^^^^~12/01/2005~
-~18639~^~318~^0.^0^^~1~^~AS~^^^^^^^^^^~12/01/2005~
-~18639~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2002~
-~18639~^~320~^0.^0^^~1~^~AS~^^^^^^^^^^~12/01/2005~
-~18639~^~417~^40.^1^^~9~^~MC~^^^^^^^^^^~12/01/2005~
-~18640~^~208~^241.^0^^~4~^~NC~^^^^^^^^^^~12/01/2005~
-~18640~^~268~^1008.^0^^~4~^~NC~^^^^^^^^^^~12/01/2005~
-~18640~^~301~^48.^1^^~12~^~MA~^^^^^^^^^^~12/01/2005~
-~18640~^~307~^300.^1^^~12~^~MA~^^^^^^^^^^~12/01/2005~
-~18640~^~318~^75.^1^^~12~^~MA~^^^^^^^^^^~12/01/2005~
-~18640~^~601~^47.^1^^~12~^~MA~^^^^^^^^^^~12/01/2005~
-~18641~^~208~^273.^0^^~9~^~MC~^^^^^^^^^^~02/01/1999~
-~18641~^~268~^1142.^0^^~9~^~MC~^^^^^^^^^^~06/01/2010~
-~18641~^~301~^87.^0^^~9~^~MC~^^^^^^^^^^~02/01/1999~
-~18641~^~307~^488.^0^^~8~^~LC~^^^^^^^^^^~06/01/2010~
-~18651~^~208~^305.^0^^~9~^~MC~^^^^^^^^^^~04/01/1999~
-~18651~^~262~^8.^0^^~9~^~MC~^^^^^^^^^^~04/01/1999~
-~18651~^~263~^95.^0^^~9~^~MC~^^^^^^^^^^~04/01/1999~
-~18651~^~268~^1276.^0^^~9~^~MC~^^^^^^^^^^
-~18651~^~301~^30.^0^^~9~^~MC~^^^^^^^^^^~09/01/1998~
-~18651~^~304~^25.^0^^~9~^~MC~^^^^^^^^^^~04/01/1999~
-~18651~^~305~^71.^0^^~9~^~MC~^^^^^^^^^^~04/01/1999~
-~18651~^~306~^111.^0^^~9~^~MC~^^^^^^^^^^~04/01/1999~
-~18651~^~307~^174.^0^^~9~^~MC~^^^^^^^^^^~09/01/1998~
-~18651~^~318~^1.^0^^~9~^~MC~^^^^^^^^^^~09/01/1998~
-~18651~^~417~^19.^0^^~9~^~MC~^^^^^^^^^^~04/01/1999~
-~18651~^~432~^19.^0^^~9~^~MC~^^^^^^^^^^~11/01/2016~
-~18651~^~601~^0.^0^^~9~^~MC~^^^^^^^^^^~09/01/1998~
-~18927~^~208~^490.^0^^~4~^~NC~^^^^^^^^^^~11/01/2006~
-~18927~^~262~^0.^0^^~4~^~FLC~^^^^^^^^^^~12/01/2002~
-~18927~^~263~^0.^0^^~4~^~FLC~^^^^^^^^^^~12/01/2002~
-~18927~^~268~^2052.^0^^~4~^~NC~^^^^^^^^^^~11/01/2006~
-~18927~^~301~^89.^6^1.^~1~^~A~^^^1^85.^93.^5^85.^91.^~2, 3~^~12/01/2002~
-~18927~^~304~^28.^6^0.^~1~^~A~^^^1^27.^29.^5^27.^28.^~2, 3~^~12/01/2002~
-~18927~^~305~^288.^6^8.^~1~^~A~^^^1^261.^317.^5^266.^309.^~2, 3~^~12/01/2002~
-~18927~^~306~^295.^6^3.^~1~^~A~^^^1^281.^302.^5^287.^302.^~2, 3~^~12/01/2002~
-~18927~^~307~^878.^6^16.^~1~^~A~^^^1^838.^950.^5^836.^920.^~2, 3~^~12/01/2002~
-~18927~^~318~^39.^0^^~4~^~NC~^^^^^^^^^^~11/01/2006~
-~18927~^~319~^11.^0^^~4~^~FLC~^^^^^^^^^^~12/01/2002~
-~18927~^~320~^11.^0^^~4~^~FLC~^^^^^^^^^^~11/01/2006~
-~18927~^~321~^2.^0^^~4~^~FLC~^^^^^^^^^^~12/01/2002~
-~18927~^~322~^0.^0^^~4~^~FLC~^^^^^^^^^^~12/01/2002~
-~18927~^~334~^0.^0^^~4~^~FLC~^^^^^^^^^^~12/01/2002~
-~18927~^~337~^0.^0^^~4~^~FLC~^^^^^^^^^^~12/01/2002~
-~18927~^~338~^9.^0^^~4~^~FLC~^^^^^^^^^^~12/01/2002~
-~18927~^~417~^82.^6^2.^~1~^~A~^^^1^76.^88.^5^76.^87.^~2, 3~^~12/01/2002~
-~18927~^~431~^66.^0^^~4~^~FLC~^^^^^^^^^^~12/01/2002~
-~18927~^~432~^16.^0^^~4~^~FLC~^^^^^^^^^^~12/01/2002~
-~18927~^~435~^128.^0^^~4~^~NC~^^^^^^^^^^~06/01/2009~
-~18927~^~601~^6.^3^0.^~1~^~A~^^^1^6.^6.^2^5.^6.^~2, 3~^~12/01/2002~
-~18927~^~636~^44.^0^^~4~^~FLC~^^^^^^^^^^~12/01/2002~
-~18932~^~208~^273.^0^^~4~^~NC~^^^^^^^^^^~10/01/2004~
-~18932~^~262~^0.^0^^~4~^~FLA~^^^^^^^^^^~10/01/2004~
-~18932~^~263~^0.^0^^~4~^~FLA~^^^^^^^^^^~10/01/2004~
-~18932~^~268~^1144.^0^^~4~^~NC~^^^^^^^^^^~10/01/2004~
-~18932~^~301~^279.^2^^~1~^~A~^^^1^116.^441.^1^^^^~10/01/2004~
-~18932~^~304~^19.^2^^~1~^~A~^^^1^18.^19.^1^^^^~10/01/2004~
-~18932~^~305~^388.^2^^~1~^~A~^^^1^373.^403.^1^^^^~10/01/2004~
-~18932~^~306~^126.^2^^~1~^~A~^^^1^109.^142.^1^^^^~10/01/2004~
-~18932~^~307~^621.^2^^~1~^~A~^^^1^555.^687.^1^^^^~10/01/2004~
-~18932~^~318~^1340.^0^^~4~^~NC~^^^^^^^^^^~06/01/2014~
-~18932~^~319~^401.^2^^~1~^~A~^^^1^191.^610.^1^^^^~10/01/2004~
-~18932~^~320~^401.^0^^~4~^~NC~^^^^^^^^^^~06/01/2014~
-~18932~^~321~^2.^0^^~4~^~FLA~^^^^^^^^^^~10/01/2004~
-~18932~^~322~^0.^0^^~4~^~FLA~^^^^^^^^^^~10/01/2004~
-~18932~^~334~^2.^0^^~4~^~FLA~^^^^^^^^^^~10/01/2004~
-~18932~^~337~^0.^0^^~4~^~FLA~^^^^^^^^^^~10/01/2004~
-~18932~^~338~^63.^0^^~4~^~FLA~^^^^^^^^^^~10/01/2004~
-~18932~^~417~^63.^2^^~1~^~A~^^^1^57.^68.^1^^^^~10/01/2004~
-~18932~^~431~^49.^2^^~1~^~A~^^^1^43.^54.^1^^^^~10/01/2004~
-~18932~^~432~^14.^0^^~1~^~AS~^^^^^^^^^^~10/01/2004~
-~18932~^~435~^96.^0^^~4~^~NC~^^^^^^^^^^~07/01/2008~
-~18932~^~601~^15.^2^^~1~^~A~^^^1^7.^24.^1^^^^~10/01/2004~
-~18933~^~208~^309.^0^^~4~^~NC~^^^^^^^^^^~11/01/2004~
-~18933~^~262~^0.^0^^~4~^~RA~^^^^^^^^^^~11/01/2004~
-~18933~^~263~^0.^0^^~4~^~RA~^^^^^^^^^^~11/01/2004~
-~18933~^~268~^1291.^0^^~4~^~NC~^^^^^^^^^^~11/01/2004~
-~18933~^~301~^299.^5^89.^~1~^~A~^^^1^82.^511.^4^49.^547.^~2, 3~^~11/01/2004~
-~18933~^~304~^22.^6^1.^~1~^~A~^^^1^15.^29.^5^16.^26.^~2, 3~^~11/01/2004~
-~18933~^~305~^444.^6^4.^~1~^~A~^^^1^429.^458.^5^433.^454.^~2, 3~^~11/01/2004~
-~18933~^~306~^138.^6^14.^~1~^~A~^^^1^93.^192.^5^102.^174.^~2, 3~^~11/01/2004~
-~18933~^~307~^710.^6^38.^~1~^~A~^^^1^589.^824.^5^611.^809.^~2, 3~^~07/01/2017~
-~18933~^~318~^1463.^0^^~4~^~NC~^^^^^^^^^^~11/01/2004~
-~18933~^~319~^437.^3^137.^~1~^~A~^^^1^210.^685.^2^-154.^1028.^~2, 3~^~11/01/2004~
-~18933~^~320~^438.^0^^~4~^~NC~^^^^^^^^^^~07/01/2017~
-~18933~^~321~^2.^0^^~4~^~RA~^^^^^^^^^^~11/01/2004~
-~18933~^~322~^0.^0^^~4~^~RA~^^^^^^^^^^~11/01/2004~
-~18933~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~
-~18933~^~334~^2.^0^^~4~^~RA~^^^^^^^^^^~11/01/2004~
-~18933~^~337~^0.^0^^~4~^~RA~^^^^^^^^^^~11/01/2004~
-~18933~^~338~^66.^0^^~4~^~RA~^^^^^^^^^^~11/01/2004~
-~18933~^~417~^68.^3^6.^~1~^~A~^^^1^55.^76.^2^39.^96.^~2, 3~^~11/01/2004~
-~18933~^~431~^55.^3^5.^~1~^~A~^^^1^45.^63.^2^32.^78.^~2, 3~^~11/01/2004~
-~18933~^~432~^13.^0^^~1~^~AS~^^^^^^^^^^~05/01/2006~
-~18933~^~435~^107.^0^^~4~^~NC~^^^^^^^^^^~03/01/2007~
-~18933~^~601~^13.^3^6.^~1~^~A~^^^1^6.^26.^2^-14.^40.^~2, 3~^~11/01/2004~
-~18934~^~208~^289.^0^^~4~^~NC~^^^^^^^^^^~11/01/2004~
-~18934~^~268~^1209.^0^^~4~^~NC~^^^^^^^^^^~11/01/2004~
-~18934~^~301~^125.^1^^~1~^~A~^^^^^^^^^^~11/01/2004~
-~18934~^~304~^20.^2^^~1~^~A~^^^1^20.^20.^1^^^^~11/01/2004~
-~18934~^~305~^410.^2^^~1~^~A~^^^1^382.^438.^1^^^^~11/01/2004~
-~18934~^~306~^110.^2^^~1~^~A~^^^1^103.^116.^1^^^^~11/01/2004~
-~18934~^~307~^663.^2^^~1~^~A~^^^1^581.^745.^1^^^^~11/01/2004~
-~18934~^~318~^1430.^0^^~1~^~AS~^^^^^^^^^^~11/01/2004~
-~18934~^~319~^429.^2^^~1~^~A~^^^1^212.^646.^1^^^^~11/01/2004~
-~18934~^~320~^429.^0^^~1~^~AS~^^^^^^^^^^~11/01/2004~
-~18934~^~417~^64.^2^^~1~^~A~^^^1^59.^68.^1^^^^~11/01/2004~
-~18934~^~431~^50.^2^^~1~^~A~^^^1^48.^52.^1^^^^~11/01/2004~
-~18934~^~432~^14.^0^^~1~^~AS~^^^^^^^^^^~11/01/2004~
-~18934~^~435~^99.^0^^~4~^~NC~^^^^^^^^^^~11/01/2004~
-~18934~^~601~^16.^2^^~1~^~A~^^^1^7.^25.^1^^^^~11/01/2004~
-~18935~^~208~^298.^0^^~4~^~NC~^^^^^^^^^^~11/01/2004~
-~18935~^~268~^1245.^0^^~4~^~NC~^^^^^^^^^^~11/01/2004~
-~18935~^~301~^197.^1^^~1~^~A~^^^^^^^^^^~11/01/2004~
-~18935~^~304~^25.^2^^~1~^~A~^^^1^21.^29.^1^^^^~11/01/2004~
-~18935~^~305~^410.^2^^~1~^~A~^^^1^398.^422.^1^^^^~11/01/2004~
-~18935~^~306~^148.^2^^~1~^~A~^^^1^127.^169.^1^^^^~11/01/2004~
-~18935~^~307~^682.^2^^~1~^~A~^^^1^649.^714.^1^^^^~11/01/2004~
-~18935~^~417~^67.^1^^~1~^~A~^^^^^^^^^^~11/01/2004~
-~18935~^~431~^56.^1^^~1~^~A~^^^^^^^^^^~11/01/2004~
-~18935~^~432~^11.^0^^~1~^~AS~^^^^^^^^^^~11/01/2004~
-~18935~^~435~^106.^0^^~4~^~NC~^^^^^^^^^^~07/01/2008~
-~18935~^~601~^16.^2^^~1~^~A~^^^1^7.^24.^1^^^^~11/01/2004~
-~18936~^~208~^239.^0^^~4~^~NC~^^^^^^^^^^~11/01/2006~
-~18936~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~12/01/2004~
-~18936~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~12/01/2004~
-~18936~^~268~^1002.^0^^~4~^~NC~^^^^^^^^^^~11/01/2006~
-~18936~^~301~^72.^4^8.^~1~^~A~^^^1^51.^92.^3^44.^100.^~2, 3~^~12/01/2004~
-~18936~^~304~^16.^4^2.^~1~^~A~^^^1^13.^25.^3^7.^25.^~2, 3~^~12/01/2004~
-~18936~^~305~^350.^4^51.^~1~^~A~^^^1^243.^485.^3^185.^514.^~2, 3~^~12/01/2004~
-~18936~^~306~^122.^4^24.^~1~^~A~^^^1^86.^193.^3^45.^198.^~2, 3~^~12/01/2004~
-~18936~^~307~^566.^4^48.^~1~^~A~^^^1^455.^693.^3^410.^721.^~2, 3~^~12/01/2004~
-~18936~^~318~^719.^0^^~1~^~AS~^^^^^^^^^^~11/01/2006~
-~18936~^~319~^216.^3^204.^~1~^~A~^^^1^11.^625.^2^-664.^1096.^~1, 2, 3~^~12/01/2004~
-~18936~^~320~^216.^0^^~1~^~AS~^^^^^^^^^^~12/01/2004~
-~18936~^~417~^54.^1^^~1~^~A~^^^^^^^^^^~12/01/2004~
-~18936~^~431~^45.^1^^~1~^~A~^^^^^^^^^^~12/01/2004~
-~18936~^~432~^9.^0^^~1~^~AS~^^^^^^^^^^~12/01/2004~
-~18936~^~435~^86.^0^^~4~^~NC~^^^^^^^^^^~07/01/2007~
-~18938~^~208~^385.^0^^~4~^~NC~^^^^^^^^^^~04/01/2013~
-~18938~^~262~^0.^0^^~4~^~FLA~^^^^^^^^^^~03/01/2007~
-~18938~^~263~^0.^0^^~4~^~FLA~^^^^^^^^^^~03/01/2007~
-~18938~^~268~^1609.^0^^~4~^~NC~^^^^^^^^^^~04/01/2013~
-~18938~^~301~^12.^17^0.^~1~^~A~^^^1^10.^21.^6^11.^12.^~2, 3~^~04/01/2013~
-~18938~^~304~^11.^17^0.^~1~^~A~^^^1^10.^13.^12^10.^11.^~2, 3~^~03/01/2007~
-~18938~^~305~^71.^17^0.^~1~^~A~^^^1^61.^109.^7^68.^73.^~2, 3~^~07/01/2014~
-~18938~^~306~^86.^17^2.^~1~^~A~^^^1^66.^150.^11^81.^90.^~2, 3~^~07/01/2014~
-~18938~^~307~^311.^17^5.^~1~^~A~^^^1^258.^345.^5^297.^325.^~2, 3~^~07/01/2014~
-~18938~^~318~^672.^0^^~1~^~AS~^^^^^^^^^^~07/01/2014~
-~18938~^~319~^202.^2^^~1~^~A~^^^1^163.^240.^1^^^^~05/01/2013~
-~18938~^~320~^202.^0^^~1~^~AS~^^^^^^^^^^~05/01/2013~
-~18938~^~321~^0.^1^^~1~^~A~^^^^^^^^^~1~^~07/01/2014~
-~18938~^~322~^0.^1^^~1~^~A~^^^^^^^^^~1~^~07/01/2014~
-~18938~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2009~
-~18938~^~334~^0.^1^^~1~^~A~^^^^^^^^^~1~^~07/01/2014~
-~18938~^~337~^0.^1^^~1~^~A~^^^^^^^^^~1~^~04/01/2013~
-~18938~^~338~^52.^1^^~1~^~A~^^^^^^^^^^~04/01/2013~
-~18938~^~417~^90.^7^3.^~1~^~A~^^^1^59.^98.^1^66.^113.^~2, 3~^~07/01/2014~
-~18938~^~431~^36.^1^^~1~^~A~^^^^^^^^^^~05/01/2013~
-~18938~^~432~^54.^0^^~4~^~NC~^^^^^^^^^^~07/01/2014~
-~18938~^~435~^115.^0^^~4~^~NC~^^^^^^^^^^~07/01/2014~
-~18938~^~601~^0.^0^^~4~^~FLA~^^^^^^^^^^~03/01/2007~
-~18939~^~208~^409.^0^^~4~^~NC~^^^^^^^^^^~01/01/2006~
-~18939~^~268~^1711.^0^^~4~^~NC~^^^^^^^^^^~01/01/2006~
-~18939~^~301~^11.^1^^~1~^~A~^^^^^^^^^^~01/01/2006~
-~18939~^~304~^12.^1^^~1~^~A~^^^^^^^^^^~01/01/2006~
-~18939~^~305~^76.^1^^~1~^~A~^^^^^^^^^^~01/01/2006~
-~18939~^~306~^81.^1^^~1~^~A~^^^^^^^^^^~01/01/2006~
-~18939~^~307~^354.^1^^~1~^~A~^^^^^^^^^^~01/01/2006~
-~18939~^~318~^1563.^0^^~1~^~AS~^^^^^^^^^^~01/01/2006~
-~18939~^~319~^467.^2^^~1~^~A~^^^1^246.^687.^1^^^^~01/01/2006~
-~18939~^~320~^467.^0^^~1~^~AS~^^^^^^^^^^~01/01/2006~
-~18939~^~321~^3.^2^^~1~^~A~^^^1^3.^3.^^^^~1~^~01/01/2006~
-~18939~^~322~^3.^2^^~1~^~A~^^^1^3.^3.^^^^~1~^~01/01/2006~
-~18939~^~334~^3.^2^^~1~^~A~^^^1^3.^3.^^^^~1~^~01/01/2006~
-~18939~^~337~^3.^2^^~1~^~A~^^^1^3.^3.^^^^~1~^~01/01/2006~
-~18939~^~417~^48.^2^^~1~^~A~^^^1^42.^53.^1^^^^~01/01/2006~
-~18939~^~431~^40.^2^^~1~^~A~^^^1^36.^44.^1^^^^~01/01/2006~
-~18939~^~432~^8.^0^^~1~^~AS~^^^^^^^^^^~01/01/2006~
-~18939~^~435~^76.^0^^~4~^~NC~^^^^^^^^^^~07/01/2007~
-~18940~^~208~^255.^0^^~4~^~NC~^^^^^^^^^^~03/01/2007~
-~18940~^~262~^0.^0^^~4~^~FLC~^^^^^^^^^^~03/01/2007~
-~18940~^~263~^0.^0^^~4~^~FLC~^^^^^^^^^^~03/01/2007~
-~18940~^~268~^1067.^0^^~4~^~NC~^^^^^^^^^^~03/01/2007~
-~18940~^~301~^35.^0^^~4~^~BFZN~^~18274~^^^^^^^^^~03/01/2007~
-~18940~^~304~^10.^0^^~4~^~BFZN~^~18274~^^^^^^^^^~03/01/2007~
-~18940~^~305~^125.^0^^~4~^~BFZN~^~18274~^^^^^^^^^~03/01/2007~
-~18940~^~306~^96.^0^^~4~^~BFZN~^~18274~^^^^^^^^^~03/01/2007~
-~18940~^~307~^413.^0^^~8~^~LC~^~18274~^^^^^^^^^~05/01/2010~
-~18940~^~318~^39.^0^^~4~^~FLC~^^^^^^^^^^~03/01/2007~
-~18940~^~319~^10.^0^^~4~^~FLC~^^^^^^^^^^~03/01/2007~
-~18940~^~320~^10.^0^^~4~^~FLC~^^^^^^^^^^~03/01/2007~
-~18940~^~321~^3.^0^^~4~^~FLC~^^^^^^^^^^~03/01/2007~
-~18940~^~322~^0.^0^^~4~^~FLC~^^^^^^^^^^~03/01/2007~
-~18940~^~324~^3.^0^^~4~^~FLC~^^^^^^^^^^~04/01/2009~
-~18940~^~334~^1.^0^^~4~^~FLC~^^^^^^^^^^~03/01/2007~
-~18940~^~337~^0.^0^^~4~^~FLC~^^^^^^^^^^~03/01/2007~
-~18940~^~338~^56.^0^^~4~^~FLC~^^^^^^^^^^~03/01/2007~
-~18940~^~417~^48.^0^^~4~^~BFZN~^~18274~^^^^^^^^^~03/01/2007~
-~18940~^~431~^36.^0^^~4~^~BFZN~^~18274~^^^^^^^^^~03/01/2007~
-~18940~^~432~^12.^0^^~4~^~FLC~^^^^^^^^^^~03/01/2007~
-~18940~^~435~^73.^0^^~4~^~NC~^^^^^^^^^^~04/01/2009~
-~18940~^~601~^28.^1^^~8~^~LC~^^^^^^^^^^~03/01/2007~
-~18942~^~208~^501.^0^^~4~^~NC~^^^^^^^^^^~05/01/2009~
-~18942~^~262~^0.^0^^~4~^~FLA~^^^^^^^^^^~05/01/2009~
-~18942~^~263~^0.^0^^~4~^~FLA~^^^^^^^^^^~05/01/2009~
-~18942~^~268~^2097.^0^^~4~^~NC~^^^^^^^^^^~05/01/2009~
-~18942~^~301~^29.^3^5.^~1~^~A~^^^1^19.^38.^2^5.^52.^~2, 3~^~08/01/2007~
-~18942~^~304~^23.^3^3.^~1~^~A~^^^1^16.^29.^2^6.^38.^~2, 3~^~08/01/2007~
-~18942~^~305~^117.^3^21.^~1~^~A~^^^1^96.^160.^2^25.^209.^~2, 3~^~08/01/2007~
-~18942~^~306~^113.^3^12.^~1~^~A~^^^1^90.^130.^2^61.^165.^~2, 3~^~08/01/2007~
-~18942~^~307~^471.^0^^~8~^~LC~^^^^^^^^^^~08/01/2012~
-~18942~^~318~^1.^0^^~4~^~NC~^^^^^^^^^^~05/01/2009~
-~18942~^~319~^0.^0^^~4~^~FLA~^^^^^^^^^^~05/01/2009~
-~18942~^~320~^0.^0^^~4~^~NC~^^^^^^^^^^~05/01/2009~
-~18942~^~321~^0.^0^^~4~^~FLA~^^^^^^^^^^~05/01/2009~
-~18942~^~322~^0.^0^^~4~^~FLA~^^^^^^^^^^~05/01/2009~
-~18942~^~324~^0.^0^^~4~^~FLA~^^^^^^^^^^~05/01/2009~
-~18942~^~334~^0.^0^^~4~^~FLA~^^^^^^^^^^~05/01/2009~
-~18942~^~337~^0.^0^^~4~^~FLA~^^^^^^^^^^~05/01/2009~
-~18942~^~338~^23.^0^^~4~^~FLA~^^^^^^^^^^~05/01/2009~
-~18942~^~417~^65.^3^8.^~1~^~A~^^^1^50.^80.^2^27.^101.^~2, 3~^~08/01/2007~
-~18942~^~431~^46.^3^6.^~1~^~A~^^^1^36.^58.^2^17.^73.^~2, 3~^~09/01/2007~
-~18942~^~432~^19.^3^2.^~1~^~AS~^^^1^14.^22.^2^8.^29.^~2, 3~^~08/01/2007~
-~18942~^~435~^97.^0^^~4~^~NC~^^^^^^^^^^~05/01/2009~
-~18942~^~601~^0.^0^^~4~^~FLA~^^^^^^^^^^~05/01/2009~
-~18943~^~208~^484.^0^^~4~^~NC~^^^^^^^^^^~09/01/2007~
-~18943~^~262~^8.^3^0.^~1~^~A~^^^1^6.^9.^2^4.^11.^~2, 3~^~05/01/2014~
-~18943~^~263~^100.^3^24.^~1~^~A~^^^1^69.^148.^2^-5.^204.^~2, 3~^~09/01/2007~
-~18943~^~268~^2025.^0^^~4~^~NC~^^^^^^^^^^~09/01/2007~
-~18943~^~301~^32.^3^7.^~1~^~A~^^^1^19.^46.^2^-2.^65.^~2, 3~^~09/01/2007~
-~18943~^~304~^40.^3^2.^~1~^~A~^^^1^37.^46.^2^28.^52.^~2, 3~^~09/01/2007~
-~18943~^~305~^120.^3^10.^~1~^~A~^^^1^100.^130.^2^76.^163.^~2, 3~^~09/01/2007~
-~18943~^~306~^187.^3^8.^~1~^~A~^^^1^170.^200.^2^148.^224.^~2, 3~^~09/01/2007~
-~18943~^~307~^503.^3^48.^~1~^~A~^^^1^450.^600.^2^295.^711.^~2, 3~^~09/01/2007~
-~18943~^~318~^0.^0^^~4~^~FLA~^^^^^^^^^^~09/01/2007~
-~18943~^~319~^0.^0^^~4~^~FLA~^^^^^^^^^^~09/01/2007~
-~18943~^~320~^0.^0^^~4~^~FLA~^^^^^^^^^^~09/01/2007~
-~18943~^~321~^0.^0^^~4~^~FLA~^^^^^^^^^^~09/01/2007~
-~18943~^~322~^0.^0^^~4~^~FLA~^^^^^^^^^^~09/01/2007~
-~18943~^~324~^0.^0^^~4~^~BFFN~^~18942~^^^^^^^^^~05/01/2014~
-~18943~^~334~^0.^0^^~4~^~FLA~^^^^^^^^^^~09/01/2007~
-~18943~^~337~^0.^0^^~4~^~FLA~^^^^^^^^^^~09/01/2007~
-~18943~^~338~^12.^0^^~4~^~FLA~^^^^^^^^^^~09/01/2007~
-~18943~^~417~^72.^3^7.^~1~^~A~^^^1^59.^85.^2^40.^104.^~2, 3~^~09/01/2007~
-~18943~^~431~^50.^3^7.^~1~^~A~^^^1^36.^63.^2^16.^84.^~2, 3~^~09/01/2007~
-~18943~^~432~^22.^3^0.^~1~^~AS~^^^1^21.^23.^2^19.^24.^~2, 3~^~09/01/2007~
-~18943~^~435~^108.^0^^~4~^~NC~^^^^^^^^^^~04/01/2008~
-~18943~^~601~^0.^0^^~4~^~FLA~^^^^^^^^^^~09/01/2007~
-~18944~^~208~^290.^0^^~4~^~NC~^^^^^^^^^^~11/01/2007~
-~18944~^~262~^0.^0^^~4~^~FLA~^^^^^^^^^^~11/01/2007~
-~18944~^~263~^0.^0^^~4~^~FLA~^^^^^^^^^^~11/01/2007~
-~18944~^~268~^1215.^0^^~4~^~NC~^^^^^^^^^^~11/01/2007~
-~18944~^~301~^14.^3^3.^~1~^~A~^^^1^9.^20.^2^0.^28.^~2, 3~^~11/01/2007~
-~18944~^~304~^8.^3^0.^~1~^~A~^^^1^7.^8.^2^6.^8.^~2, 3~^~11/01/2007~
-~18944~^~305~^29.^3^2.^~1~^~A~^^^1^24.^34.^2^16.^41.^~2, 3~^~11/01/2007~
-~18944~^~306~^76.^3^6.^~1~^~A~^^^1^64.^84.^2^49.^101.^~2, 3~^~11/01/2007~
-~18944~^~307~^200.^3^30.^~1~^~A~^^^1^170.^260.^2^70.^329.^~2, 3~^~11/01/2007~
-~18944~^~318~^82.^0^^~4~^~FLC~^^^^^^^^^^~11/01/2007~
-~18944~^~319~^17.^0^^~4~^~FLC~^^^^^^^^^^~11/01/2007~
-~18944~^~320~^18.^0^^~4~^~FLC~^^^^^^^^^^~11/01/2007~
-~18944~^~321~^10.^0^^~4~^~FLC~^^^^^^^^^^~11/01/2007~
-~18944~^~322~^0.^0^^~4~^~FLC~^^^^^^^^^^~11/01/2007~
-~18944~^~334~^11.^0^^~4~^~FLC~^^^^^^^^^^~11/01/2007~
-~18944~^~337~^1.^0^^~4~^~FLC~^^^^^^^^^^~11/01/2007~
-~18944~^~338~^42.^0^^~4~^~FLC~^^^^^^^^^^~11/01/2007~
-~18944~^~417~^21.^3^11.^~1~^~A~^^^1^0.^41.^2^-29.^71.^~1, 2, 3~^~11/01/2007~
-~18944~^~431~^15.^3^8.^~1~^~A~^^^1^0.^27.^2^-19.^49.^~1, 2, 3~^~11/01/2007~
-~18944~^~432~^6.^3^4.^~1~^~AS~^^^1^0.^14.^2^-12.^23.^~1, 2, 3~^~11/01/2007~
-~18944~^~435~^32.^0^^~4~^~NC~^^^^^^^^^^~04/01/2008~
-~18944~^~601~^0.^3^0.^~8~^~LC~^^^1^0.^0.^^^^~2, 3~^~11/01/2007~
-~18945~^~208~^468.^0^^~4~^~NC~^^^^^^^^^^~04/01/2008~
-~18945~^~268~^1958.^0^^~4~^~NC~^^^^^^^^^^~04/01/2008~
-~18945~^~301~^20.^3^1.^~1~^~A~^^^1^17.^23.^2^12.^28.^~2, 3~^~04/01/2008~
-~18945~^~304~^15.^3^0.^~1~^~A~^^^1^14.^15.^2^13.^16.^~2, 3~^~04/01/2008~
-~18945~^~305~^68.^3^6.^~1~^~A~^^^1^55.^76.^2^39.^96.^~2, 3~^~04/01/2008~
-~18945~^~306~^91.^3^7.^~1~^~A~^^^1^77.^103.^2^57.^124.^~2, 3~^~04/01/2008~
-~18945~^~307~^353.^3^32.^~1~^~A~^^^1^290.^399.^2^212.^493.^~2, 3~^~04/01/2008~
-~18945~^~417~^77.^1^^~1~^~A~^^^^^^^^^^~04/01/2008~
-~18945~^~431~^48.^1^^~1~^~A~^^^^^^^^^^~04/01/2008~
-~18945~^~432~^29.^0^^~1~^~AS~^^^^^^^^^^~04/01/2008~
-~18945~^~435~^111.^0^^~4~^~NC~^^^^^^^^^^~04/01/2008~
-~18946~^~208~^506.^0^^~4~^~NC~^^^^^^^^^^~04/01/2008~
-~18946~^~268~^2117.^0^^~4~^~NC~^^^^^^^^^^~04/01/2008~
-~18946~^~301~^12.^2^^~1~^~A~^^^1^10.^14.^1^^^^~04/01/2008~
-~18946~^~304~^9.^2^^~1~^~A~^^^1^8.^9.^1^^^^~04/01/2008~
-~18946~^~305~^52.^2^^~1~^~A~^^^1^50.^55.^1^^^^~04/01/2008~
-~18946~^~306~^83.^2^^~1~^~A~^^^1^76.^91.^1^^^^~04/01/2008~
-~18946~^~307~^472.^2^^~1~^~A~^^^1^404.^540.^1^^^^~04/01/2008~
-~18946~^~417~^32.^2^^~1~^~A~^^^1^0.^64.^1^^^~1~^~04/01/2008~
-~18946~^~431~^21.^2^^~1~^~A~^^^1^0.^42.^1^^^~1~^~04/01/2008~
-~18946~^~432~^11.^0^^~1~^~AS~^^^^^^^^^^~04/01/2008~
-~18946~^~435~^47.^0^^~4~^~NC~^^^^^^^^^^~04/01/2008~
-~18947~^~208~^521.^0^^~4~^~NC~^^^^^^^^^^~04/01/2008~
-~18947~^~268~^2179.^0^^~4~^~NC~^^^^^^^^^^~04/01/2008~
-~18947~^~301~^23.^3^2.^~1~^~A~^^^1^19.^27.^2^13.^32.^~2, 3~^~04/01/2008~
-~18947~^~304~^17.^3^0.^~1~^~A~^^^1^16.^17.^2^14.^18.^~2, 3~^~04/01/2008~
-~18947~^~305~^77.^3^7.^~1~^~A~^^^1^62.^86.^2^45.^107.^~2, 3~^~04/01/2008~
-~18947~^~306~^103.^3^9.^~1~^~A~^^^1^85.^119.^2^60.^145.^~2, 3~^~04/01/2008~
-~18947~^~307~^393.^3^37.^~1~^~A~^^^1^326.^454.^2^233.^552.^~2, 3~^~04/01/2008~
-~18947~^~417~^94.^1^^~1~^~A~^^^^^^^^^^~04/01/2008~
-~18947~^~431~^72.^1^^~1~^~A~^^^^^^^^^^~04/01/2008~
-~18947~^~432~^22.^0^^~1~^~AS~^^^^^^^^^^~04/01/2008~
-~18947~^~435~^144.^0^^~4~^~NC~^^^^^^^^^^~04/01/2008~
-~18948~^~208~^445.^0^^~4~^~NC~^^^^^^^^^^~04/01/2008~
-~18948~^~268~^1864.^0^^~4~^~NC~^^^^^^^^^^~04/01/2008~
-~18948~^~301~^10.^2^^~1~^~A~^^^1^8.^12.^1^^^^~04/01/2008~
-~18948~^~304~^8.^2^^~1~^~A~^^^1^7.^8.^1^^^^~04/01/2008~
-~18948~^~305~^45.^2^^~1~^~A~^^^1^44.^46.^1^^^^~04/01/2008~
-~18948~^~306~^73.^2^^~1~^~A~^^^1^68.^78.^1^^^^~04/01/2008~
-~18948~^~307~^409.^2^^~1~^~A~^^^1^360.^457.^1^^^^~04/01/2008~
-~18948~^~417~^25.^2^^~1~^~A~^^^1^2.^47.^1^^^^~04/01/2008~
-~18948~^~431~^18.^2^^~1~^~A~^^^1^0.^36.^1^^^~1~^~04/01/2008~
-~18948~^~432~^7.^0^^~1~^~AS~^^^^^^^^^^~04/01/2008~
-~18948~^~435~^37.^0^^~4~^~NC~^^^^^^^^^^~04/01/2008~
-~18949~^~208~^416.^0^^~4~^~NC~^^^^^^^^^^~05/01/2009~
-~18949~^~262~^0.^0^^~4~^~BFNN~^~18235~^^^^^^^^^~05/01/2009~
-~18949~^~263~^0.^0^^~4~^~BFNN~^~18235~^^^^^^^^^~05/01/2009~
-~18949~^~268~^1739.^0^^~4~^~NC~^^^^^^^^^^~05/01/2009~
-~18949~^~301~^39.^4^0.^~1~^~A~^^^1^38.^39.^3^38.^39.^~2, 3~^~10/01/2008~
-~18949~^~304~^120.^4^0.^~1~^~A~^^^1^119.^121.^3^117.^121.^~2, 3~^~10/01/2008~
-~18949~^~305~^364.^4^2.^~1~^~A~^^^1^360.^372.^3^355.^372.^~2, 3~^~10/01/2008~
-~18949~^~306~^373.^4^2.^~1~^~A~^^^1^368.^377.^3^366.^379.^~2, 3~^~10/01/2008~
-~18949~^~307~^745.^0^^~8~^~LC~^^^^^^^^^^~05/01/2010~
-~18949~^~318~^0.^0^^~4~^~NC~^^^^^^^^^^~05/01/2009~
-~18949~^~319~^0.^0^^~4~^~BFNN~^~18235~^^^^^^^^^~05/01/2009~
-~18949~^~320~^0.^0^^~4~^~BFNN~^~18235~^^^^^^^^^~05/01/2009~
-~18949~^~321~^0.^0^^~4~^~BFNN~^~18235~^^^^^^^^^~05/01/2009~
-~18949~^~322~^0.^0^^~4~^~BFNN~^~18235~^^^^^^^^^~05/01/2009~
-~18949~^~324~^0.^0^^~4~^~BFNN~^~18235~^^^^^^^^^~05/01/2009~
-~18949~^~334~^0.^0^^~4~^~BFNN~^~18235~^^^^^^^^^~05/01/2009~
-~18949~^~337~^0.^0^^~4~^~BFNN~^~18235~^^^^^^^^^~05/01/2009~
-~18949~^~338~^194.^0^^~4~^~BFNN~^~18235~^^^^^^^^^~05/01/2009~
-~18949~^~417~^30.^0^^~4~^~BFNN~^~18235~^^^^^^^^^~05/01/2009~
-~18949~^~431~^0.^0^^~4~^~BFNN~^~18235~^^^^^^^^^~05/01/2009~
-~18949~^~432~^30.^0^^~4~^~BFNN~^~18235~^^^^^^^^^~05/01/2009~
-~18949~^~435~^30.^0^^~4~^~NC~^~18235~^^^^^^^^^~05/01/2009~
-~18949~^~601~^0.^0^^~4~^~BFNN~^~18235~^^^^^^^^^~05/01/2009~
-~18950~^~208~^444.^0^^~4~^~NC~^^^^^^^^^^~05/01/2009~
-~18950~^~262~^0.^0^^~4~^~BFNN~^~18232~^^^^^^^^^~05/01/2009~
-~18950~^~263~^0.^0^^~4~^~BFNN~^~18232~^^^^^^^^^~05/01/2009~
-~18950~^~268~^1857.^0^^~4~^~NC~^^^^^^^^^^~05/01/2009~
-~18950~^~301~^80.^4^5.^~1~^~A~^^^1^65.^90.^3^62.^98.^~2, 3~^~10/01/2008~
-~18950~^~304~^47.^4^0.^~1~^~A~^^^1^45.^49.^3^44.^49.^~2, 3~^~10/01/2008~
-~18950~^~305~^258.^4^6.^~1~^~A~^^^1^243.^275.^3^236.^279.^~2, 3~^~10/01/2008~
-~18950~^~306~^210.^4^1.^~1~^~A~^^^1^207.^213.^3^205.^214.^~2, 3~^~10/01/2008~
-~18950~^~307~^776.^0^^~8~^~LC~^^^^^^^^^^~08/01/2012~
-~18950~^~318~^0.^0^^~4~^~NC~^^^^^^^^^^~05/01/2009~
-~18950~^~319~^0.^0^^~4~^~BFNN~^~18232~^^^^^^^^^~05/01/2009~
-~18950~^~320~^0.^0^^~4~^~BFNN~^~18232~^^^^^^^^^~05/01/2009~
-~18950~^~321~^0.^0^^~4~^~BFNN~^~18232~^^^^^^^^^~05/01/2009~
-~18950~^~322~^0.^0^^~4~^~BFNN~^~18232~^^^^^^^^^~05/01/2009~
-~18950~^~324~^0.^0^^~4~^~BFNN~^~18232~^^^^^^^^^~05/01/2009~
-~18950~^~334~^0.^0^^~4~^~BFNN~^~18232~^^^^^^^^^~05/01/2009~
-~18950~^~337~^0.^0^^~4~^~BFNN~^~18232~^^^^^^^^^~05/01/2009~
-~18950~^~338~^86.^0^^~4~^~BFNN~^~18232~^^^^^^^^^~05/01/2009~
-~18950~^~417~^127.^0^^~4~^~BFNN~^~18232~^^^^^^^^^~05/01/2009~
-~18950~^~431~^100.^0^^~4~^~BFNN~^~18232~^^^^^^^^^~05/01/2009~
-~18950~^~432~^26.^0^^~4~^~BFNN~^~18232~^^^^^^^^^~05/01/2009~
-~18950~^~435~^197.^0^^~4~^~NC~^~18232~^^^^^^^^^~05/01/2009~
-~18950~^~601~^0.^0^^~4~^~BFNN~^~18232~^^^^^^^^^~05/01/2009~
-~18951~^~208~^297.^0^^~4~^~NC~^^^^^^^^^^~04/01/2014~
-~18951~^~262~^10.^0^^~4~^~FLC~^^^^^^^^^^~03/01/2009~
-~18951~^~263~^89.^0^^~4~^~FLC~^^^^^^^^^^~03/01/2009~
-~18951~^~268~^1242.^0^^~4~^~NC~^^^^^^^^^^~04/01/2014~
-~18951~^~301~^357.^0^^~9~^~MC~^^^^^^^^^^~08/01/2012~
-~18951~^~304~^16.^0^^~9~^~MC~^^^^^^^^^^~08/01/2012~
-~18951~^~305~^272.^0^^~9~^~MC~^^^^^^^^^^~08/01/2012~
-~18951~^~306~^74.^0^^~9~^~MC~^^^^^^^^^^~08/01/2012~
-~18951~^~307~^529.^0^^~9~^~MC~^^^^^^^^^^~08/01/2012~
-~18951~^~318~^1429.^0^^~9~^~MC~^^^^^^^^^^~08/01/2012~
-~18951~^~319~^429.^0^^~4~^~NR~^^^^^^^^^^~04/01/2014~
-~18951~^~320~^429.^0^^~4~^~NR~^^^^^^^^^^~04/01/2014~
-~18951~^~321~^0.^0^^~4~^~FLC~^^^^^^^^^^~03/01/2009~
-~18951~^~322~^0.^0^^~4~^~FLC~^^^^^^^^^^~03/01/2009~
-~18951~^~324~^2.^0^^~9~^~MC~^^^^^^^^^^~08/01/2012~
-~18951~^~334~^0.^0^^~4~^~FLC~^^^^^^^^^^~03/01/2009~
-~18951~^~337~^0.^0^^~4~^~FLC~^^^^^^^^^^~03/01/2009~
-~18951~^~338~^22.^0^^~4~^~FLC~^^^^^^^^^^~03/01/2009~
-~18951~^~417~^75.^0^^~9~^~MC~^^^^^^^^^^~08/01/2012~
-~18951~^~431~^59.^0^^~4~^~FLM~^^^^^^^^^^~04/01/2014~
-~18951~^~432~^16.^0^^~4~^~FLM~^^^^^^^^^^~04/01/2014~
-~18951~^~435~^117.^0^^~4~^~NC~^^^^^^^^^^~04/01/2014~
-~18951~^~601~^21.^0^^~9~^~MC~^^^^^^^^^^~08/01/2012~
-~18952~^~208~^474.^2^^~8~^~LC~^^^1^450.^497.^1^^^^~01/01/2009~
-~18952~^~268~^1983.^2^^~8~^~LC~^^^^^^^^^^~08/01/2009~
-~18952~^~301~^76.^3^8.^~1~^~A~^^^1^67.^94.^2^38.^114.^~2, 3~^~01/01/2009~
-~18952~^~304~^76.^3^4.^~1~^~A~^^^1^68.^84.^2^56.^96.^~2, 3~^~01/01/2009~
-~18952~^~305~^203.^3^17.^~1~^~A~^^^1^170.^230.^2^127.^279.^~2, 3~^~01/01/2009~
-~18952~^~306~^237.^3^8.^~1~^~A~^^^1^220.^250.^2^198.^274.^~2, 3~^~01/01/2009~
-~18952~^~307~^657.^3^43.^~1~^~A~^^^1^570.^710.^2^468.^844.^~2, 3~^~01/01/2009~
-~18953~^~208~^374.^0^^~4~^~NC~^^^^^^^^^^~05/01/2009~
-~18953~^~262~^0.^0^^~4~^~FLA~^^^^^^^^^^~05/01/2009~
-~18953~^~263~^0.^0^^~4~^~FLA~^^^^^^^^^^~05/01/2009~
-~18953~^~268~^1564.^0^^~4~^~NC~^^^^^^^^^^~05/01/2009~
-~18953~^~301~^73.^1^^~1~^~A~^^^^^^^^^^~01/01/2009~
-~18953~^~304~^11.^1^^~1~^~A~^^^^^^^^^^~01/01/2009~
-~18953~^~305~^200.^1^^~1~^~A~^^^^^^^^^^~01/01/2009~
-~18953~^~306~^350.^1^^~1~^~A~^^^^^^^^^^~01/01/2009~
-~18953~^~307~^510.^1^^~1~^~A~^^^^^^^^^^~01/01/2009~
-~18953~^~318~^584.^0^^~4~^~NC~^^^^^^^^^^~05/01/2009~
-~18953~^~319~^135.^0^^~4~^~FLA~^^^^^^^^^^~05/01/2009~
-~18953~^~320~^141.^0^^~4~^~NC~^^^^^^^^^^~05/01/2009~
-~18953~^~321~^81.^0^^~4~^~FLA~^^^^^^^^^^~05/01/2009~
-~18953~^~322~^0.^0^^~4~^~FLA~^^^^^^^^^^~05/01/2009~
-~18953~^~324~^14.^0^^~4~^~FLA~^^^^^^^^^^~05/01/2009~
-~18953~^~334~^1.^0^^~4~^~FLA~^^^^^^^^^^~05/01/2009~
-~18953~^~337~^0.^0^^~4~^~FLA~^^^^^^^^^^~05/01/2009~
-~18953~^~338~^41.^0^^~4~^~FLA~^^^^^^^^^^~05/01/2009~
-~18953~^~417~^33.^0^^~4~^~FLA~^^^^^^^^^^~05/01/2009~
-~18953~^~431~^21.^0^^~4~^~FLA~^^^^^^^^^^~05/01/2009~
-~18953~^~432~^12.^0^^~4~^~FLA~^^^^^^^^^^~05/01/2009~
-~18953~^~435~^48.^0^^~4~^~NC~^^^^^^^^^^~05/01/2009~
-~18953~^~601~^59.^0^^~4~^~FLA~^^^^^^^^^^~05/01/2009~
-~18954~^~208~^390.^0^^~4~^~NC~^^^^^^^^^^~01/01/2009~
-~18954~^~268~^1634.^0^^~4~^~NC~^^^^^^^^^^~01/01/2009~
-~18954~^~301~^46.^1^^~1~^~A~^^^^^^^^^^~01/01/2009~
-~18954~^~304~^19.^1^^~1~^~A~^^^^^^^^^^~01/01/2009~
-~18954~^~305~^300.^1^^~1~^~A~^^^^^^^^^^~01/01/2009~
-~18954~^~306~^210.^1^^~1~^~A~^^^^^^^^^^~01/01/2009~
-~18954~^~307~^390.^1^^~1~^~A~^^^^^^^^^^~01/01/2009~
-~18955~^~208~^367.^0^^~4~^~NC~^^^^^^^^^^~05/01/2009~
-~18955~^~262~^0.^0^^~4~^~BFZN~^~18255~^^^^^^^^^~05/01/2011~
-~18955~^~263~^0.^0^^~4~^~BFZN~^~18255~^^^^^^^^^~05/01/2011~
-~18955~^~268~^1537.^0^^~4~^~NC~^^^^^^^^^^~05/01/2009~
-~18955~^~301~^86.^3^26.^~1~^~A~^^^1^37.^128.^2^-28.^200.^~2, 3~^~05/01/2009~
-~18955~^~304~^24.^3^0.^~1~^~A~^^^1^22.^25.^2^19.^27.^~2, 3~^~05/01/2009~
-~18955~^~305~^94.^3^6.^~1~^~A~^^^1^88.^107.^2^67.^121.^~2, 3~^~05/01/2009~
-~18955~^~306~^103.^3^14.^~1~^~A~^^^1^78.^128.^2^41.^165.^~2, 3~^~05/01/2009~
-~18955~^~307~^228.^3^49.^~1~^~A~^^^1^128.^283.^2^12.^442.^~2, 3~^~05/01/2009~
-~18955~^~318~^23.^0^^~4~^~NC~^^^^^^^^^^~05/01/2011~
-~18955~^~319~^5.^0^^~4~^~BFZN~^~18255~^^^^^^^^^~05/01/2011~
-~18955~^~320~^5.^0^^~4~^~BFZN~^~18255~^^^^^^^^^~05/01/2011~
-~18955~^~321~^3.^0^^~4~^~BFZN~^~18255~^^^^^^^^^~05/01/2011~
-~18955~^~322~^1.^0^^~4~^~BFZN~^~18255~^^^^^^^^^~05/01/2011~
-~18955~^~324~^0.^0^^~4~^~BFZN~^~18255~^^^^^^^^^~05/01/2011~
-~18955~^~334~^1.^0^^~4~^~BFZN~^~18255~^^^^^^^^^~05/01/2011~
-~18955~^~337~^0.^0^^~4~^~BFZN~^~18255~^^^^^^^^^~05/01/2011~
-~18955~^~338~^36.^0^^~4~^~BFZN~^~18255~^^^^^^^^^~05/01/2011~
-~18955~^~417~^108.^0^^~4~^~BFZN~^~18255~^^^^^^^^^~05/01/2011~
-~18955~^~431~^68.^0^^~4~^~BFZN~^~18255~^^^^^^^^^~05/01/2011~
-~18955~^~432~^40.^0^^~4~^~BFZN~^~18255~^^^^^^^^^~05/01/2011~
-~18955~^~435~^155.^0^^~4~^~NC~^~18255~^^^^^^^^^~05/01/2011~
-~18955~^~601~^30.^0^^~4~^~BFZN~^~18255~^^^^^^^^^~05/01/2011~
-~18956~^~208~^467.^0^^~4~^~NC~^^^^^^^^^^~05/01/2009~
-~18956~^~268~^1954.^0^^~4~^~NC~^^^^^^^^^^~05/01/2009~
-~18956~^~301~^63.^1^^~1~^~A~^^^^^^^^^^~05/01/2009~
-~18956~^~304~^12.^1^^~1~^~A~^^^^^^^^^^~05/01/2009~
-~18956~^~305~^255.^1^^~1~^~A~^^^^^^^^^^~05/01/2009~
-~18956~^~306~^90.^1^^~1~^~A~^^^^^^^^^^~05/01/2009~
-~18956~^~307~^515.^1^^~1~^~A~^^^^^^^^^^~05/01/2009~
-~18957~^~208~^418.^0^^~4~^~NC~^^^^^^^^^^~05/01/2009~
-~18957~^~268~^1747.^0^^~4~^~NC~^^^^^^^^^^~05/01/2009~
-~18957~^~301~^52.^1^^~1~^~A~^^^^^^^^^^~05/01/2009~
-~18957~^~304~^13.^1^^~1~^~A~^^^^^^^^^^~05/01/2009~
-~18957~^~305~^119.^1^^~1~^~A~^^^^^^^^^^~05/01/2009~
-~18957~^~306~^101.^1^^~1~^~A~^^^^^^^^^^~05/01/2009~
-~18957~^~307~^357.^1^^~1~^~A~^^^^^^^^^^~05/01/2009~
-~18958~^~208~^445.^0^^~4~^~NC~^^^^^^^^^^~05/01/2009~
-~18958~^~268~^1863.^0^^~4~^~NC~^^^^^^^^^^~05/01/2009~
-~18958~^~301~^52.^1^^~1~^~A~^^^^^^^^^^~05/01/2009~
-~18958~^~304~^22.^1^^~1~^~A~^^^^^^^^^^~05/01/2009~
-~18958~^~305~^297.^1^^~1~^~A~^^^^^^^^^^~05/01/2009~
-~18958~^~306~^94.^1^^~1~^~A~^^^^^^^^^^~05/01/2009~
-~18958~^~307~^445.^1^^~1~^~A~^^^^^^^^^^~05/01/2009~
-~18959~^~208~^379.^0^^~4~^~NC~^^^^^^^^^^~05/01/2009~
-~18959~^~268~^1588.^0^^~4~^~NC~^^^^^^^^^^~05/01/2009~
-~18959~^~301~^14.^3^3.^~1~^~A~^^^1^10.^20.^2^0.^27.^~2, 3~^~05/01/2009~
-~18959~^~304~^15.^3^1.^~1~^~A~^^^1^12.^19.^2^7.^23.^~2, 3~^~05/01/2009~
-~18959~^~305~^56.^3^10.^~1~^~A~^^^1^41.^77.^2^11.^101.^~2, 3~^~05/01/2009~
-~18959~^~306~^103.^3^12.^~1~^~A~^^^1^83.^127.^2^48.^158.^~2, 3~^~05/01/2009~
-~18959~^~307~^231.^3^44.^~1~^~A~^^^1^144.^287.^2^41.^420.^~2, 3~^~05/01/2009~
-~18959~^~321~^17.^2^^~1~^~A~^^^1^5.^29.^1^^^^~05/01/2009~
-~18959~^~322~^0.^2^^~1~^~A~^^^1^0.^0.^^^^~1~^~05/01/2009~
-~18959~^~334~^3.^2^^~1~^~A~^^^1^2.^3.^1^^^^~05/01/2009~
-~18959~^~337~^348.^2^^~1~^~A~^^^1^16.^680.^1^^^^~05/01/2009~
-~18959~^~338~^14.^2^^~1~^~A~^^^1^1.^27.^1^^^^~05/01/2009~
-~18959~^~601~^10.^3^8.^~1~^~A~^^^1^0.^26.^2^-26.^45.^~1, 2, 3~^~05/01/2009~
-~18960~^~208~^433.^0^^~8~^~LC~^^^^^^^^^^~06/01/2010~
-~18960~^~268~^1812.^0^^~8~^~LC~^^^^^^^^^^~06/01/2010~
-~18960~^~301~^16.^1^^~1~^~A~^^^^^^^^^^~06/01/2010~
-~18960~^~304~^39.^1^^~1~^~A~^^^^^^^^^^~06/01/2010~
-~18960~^~305~^145.^1^^~1~^~A~^^^^^^^^^^~06/01/2010~
-~18960~^~306~^124.^1^^~1~^~A~^^^^^^^^^^~06/01/2010~
-~18960~^~307~^665.^1^^~1~^~A~^^^^^^^^^^~06/01/2010~
-~18961~^~208~^484.^0^^~8~^~LC~^^^^^^^^^^~06/01/2010~
-~18961~^~268~^2025.^0^^~8~^~LC~^^^^^^^^^^~06/01/2010~
-~18961~^~301~^26.^6^^~1~^~A~^^^1^15.^50.^^^^~2~^~06/01/2010~
-~18961~^~304~^25.^6^^~1~^~A~^^^1^24.^26.^^^^~2~^~06/01/2010~
-~18961~^~305~^98.^6^^~1~^~A~^^^1^95.^101.^^^^~2~^~06/01/2010~
-~18961~^~306~^129.^6^^~1~^~A~^^^1^120.^142.^^^^~2~^~06/01/2010~
-~18961~^~307~^1148.^6^^~1~^~A~^^^1^1050.^1270.^^^^~2~^~06/01/2010~
-~18961~^~417~^149.^4^^~1~^^^^1^103.^179.^^^^~2~^~06/01/2010~
-~18961~^~431~^148.^4^^~1~^~A~^^^1^101.^178.^^^^~2~^~06/01/2010~
-~18961~^~432~^2.^4^^~1~^~AS~^^^1^1.^2.^^^^~1, 2~^~06/01/2010~
-~18961~^~435~^253.^0^^~4~^~NC~^^^^^^^^^^~06/01/2010~
-~18962~^~208~^464.^0^^~4~^~NC~^^^^^^^^^^~06/01/2014~
-~18962~^~268~^1941.^0^^~4~^~NC~^^^^^^^^^^~06/01/2014~
-~18962~^~301~^734.^2^^~1~^~A~^^^1^723.^744.^^^^^~06/01/2010~
-~18962~^~304~^28.^2^^~1~^~A~^^^1^28.^28.^^^^^~06/01/2010~
-~18962~^~305~^100.^2^^~1~^~A~^^^1^99.^101.^^^^^~06/01/2010~
-~18962~^~306~^117.^2^^~1~^~A~^^^1^117.^117.^^^^^~06/01/2010~
-~18962~^~307~^752.^2^^~1~^~A~^^^1^737.^766.^^^^^~06/01/2010~
-~18963~^~208~^350.^0^^~4~^~NC~^^^^^^^^^^~04/01/2011~
-~18963~^~262~^0.^0^^~4~^~FLC~^^^^^^^^^^~04/01/2011~
-~18963~^~263~^0.^0^^~4~^~FLC~^^^^^^^^^^~04/01/2011~
-~18963~^~268~^1464.^0^^~4~^~NC~^^^^^^^^^^~04/01/2011~
-~18963~^~301~^27.^10^3.^~1~^~A~^^^1^18.^47.^9^20.^34.^~2, 3~^~04/01/2011~
-~18963~^~304~^23.^10^0.^~1~^~A~^^^1^19.^25.^9^21.^23.^~2, 3~^~04/01/2011~
-~18963~^~305~^87.^10^2.^~1~^~A~^^^1^78.^99.^9^82.^92.^~2, 3~^~04/01/2011~
-~18963~^~306~^103.^10^3.^~1~^~A~^^^1^89.^119.^9^95.^111.^~2, 3~^~04/01/2011~
-~18963~^~307~^544.^10^3.^~1~^~A~^^^1^522.^571.^9^534.^552.^~2, 3~^~04/01/2011~
-~18963~^~318~^44.^0^^~4~^~NC~^^^^^^^^^^~04/01/2011~
-~18963~^~319~^13.^0^^~4~^~FLC~^^^^^^^^^^~04/01/2011~
-~18963~^~320~^13.^0^^~4~^~NC~^^^^^^^^^^~04/01/2011~
-~18963~^~321~^0.^0^^~4~^~FLC~^^^^^^^^^^~04/01/2011~
-~18963~^~322~^0.^0^^~4~^~FLC~^^^^^^^^^^~04/01/2011~
-~18963~^~324~^9.^0^^~4~^~FLC~^^^^^^^^^^~04/01/2011~
-~18963~^~334~^0.^0^^~4~^~FLC~^^^^^^^^^^~04/01/2011~
-~18963~^~337~^0.^0^^~4~^~FLC~^^^^^^^^^^~04/01/2011~
-~18963~^~338~^25.^0^^~4~^~FLC~^^^^^^^^^^~04/01/2011~
-~18963~^~417~^186.^0^^~4~^~FLC~^^^^^^^^^^~04/01/2011~
-~18963~^~431~^50.^0^^~4~^~FLC~^^^^^^^^^^~04/01/2011~
-~18963~^~432~^136.^0^^~4~^~FLC~^^^^^^^^^^~04/01/2011~
-~18963~^~435~^221.^0^^~4~^~NC~^^^^^^^^^^~04/01/2011~
-~18963~^~601~^0.^0^^~4~^~FLC~^^^^^^^^^^~04/01/2011~
-~18964~^~208~^452.^0^^~4~^~NC~^^^^^^^^^^~07/01/2014~
-~18964~^~262~^0.^0^^~4~^~FLC~^^^^^^^^^^~03/01/2011~
-~18964~^~263~^0.^0^^~4~^~FLC~^^^^^^^^^^~03/01/2011~
-~18964~^~268~^1890.^0^^~4~^~NC~^^^^^^^^^^~07/01/2014~
-~18964~^~301~^183.^10^1.^~1~^~A~^^^1^133.^192.^6^179.^186.^~2, 3~^~07/01/2014~
-~18964~^~304~^14.^10^0.^~1~^~A~^^^1^13.^15.^6^13.^14.^~2, 3~^~03/01/2011~
-~18964~^~305~^131.^10^1.^~1~^~A~^^^1^93.^140.^5^127.^134.^~2, 3~^~07/01/2014~
-~18964~^~306~^102.^10^1.^~1~^~A~^^^1^77.^110.^6^98.^105.^~2, 3~^~07/01/2014~
-~18964~^~307~^305.^10^2.^~1~^~A~^^^1^285.^339.^6^298.^311.^~2, 3~^~03/01/2011~
-~18964~^~318~^2.^0^^~4~^~FLC~^^^^^^^^^^~03/01/2011~
-~18964~^~319~^0.^0^^~4~^~FLC~^^^^^^^^^^~03/01/2011~
-~18964~^~320~^0.^0^^~4~^~FLC~^^^^^^^^^^~03/01/2011~
-~18964~^~321~^1.^0^^~4~^~FLC~^^^^^^^^^^~03/01/2011~
-~18964~^~322~^0.^0^^~4~^~FLC~^^^^^^^^^^~03/01/2011~
-~18964~^~324~^0.^0^^~4~^~FLC~^^^^^^^^^^~03/01/2011~
-~18964~^~334~^0.^0^^~4~^~FLC~^^^^^^^^^^~03/01/2011~
-~18964~^~337~^0.^0^^~4~^~FLC~^^^^^^^^^^~03/01/2011~
-~18964~^~338~^6.^0^^~4~^~FLC~^^^^^^^^^^~03/01/2011~
-~18964~^~417~^72.^0^^~4~^~FLC~^^^^^^^^^^~03/01/2011~
-~18964~^~431~^53.^0^^~4~^~FLC~^^^^^^^^^^~03/01/2011~
-~18964~^~432~^19.^0^^~4~^~FLC~^^^^^^^^^^~03/01/2011~
-~18964~^~435~^109.^0^^~4~^~NC~^^^^^^^^^^~03/01/2011~
-~18964~^~601~^5.^6^0.^~1~^~A~^^^1^1.^6.^2^4.^5.^~2, 3~^~07/01/2014~
-~18965~^~208~^418.^0^^~4~^~NC~^^^^^^^^^^~08/01/2011~
-~18965~^~262~^0.^0^^~4~^~FLC~^^^^^^^^^^~04/01/2011~
-~18965~^~263~^0.^0^^~4~^~FLC~^^^^^^^^^^~04/01/2011~
-~18965~^~268~^1748.^0^^~4~^~NC~^^^^^^^^^^~08/01/2011~
-~18965~^~301~^67.^1^^~8~^~LC~^^^^^^^^^^~04/01/2011~
-~18965~^~304~^22.^0^^~4~^~FLC~^^^^^^^^^^~08/01/2011~
-~18965~^~305~^162.^0^^~4~^~FLC~^^^^^^^^^^~08/01/2011~
-~18965~^~306~^141.^0^^~4~^~FLC~^^^^^^^^^^~08/01/2011~
-~18965~^~307~^1167.^1^^~8~^~LC~^^^^^^^^^^~04/01/2011~
-~18965~^~318~^56.^0^^~4~^~FLC~^^^^^^^^^^~08/01/2011~
-~18965~^~319~^8.^0^^~4~^~FLC~^^^^^^^^^^~08/01/2011~
-~18965~^~320~^9.^0^^~4~^~FLC~^^^^^^^^^^~08/01/2011~
-~18965~^~321~^16.^0^^~4~^~FLC~^^^^^^^^^^~08/01/2011~
-~18965~^~322~^0.^0^^~4~^~FLC~^^^^^^^^^^~05/01/2011~
-~18965~^~324~^1.^0^^~4~^~FLC~^^^^^^^^^^~08/01/2011~
-~18965~^~334~^3.^0^^~4~^~FLC~^^^^^^^^^^~08/01/2011~
-~18965~^~337~^0.^0^^~4~^~FLC~^^^^^^^^^^~04/01/2011~
-~18965~^~338~^68.^0^^~4~^~FLC~^^^^^^^^^^~08/01/2011~
-~18965~^~417~^228.^0^^~4~^~FLC~^^^^^^^^^^~08/01/2011~
-~18965~^~431~^174.^0^^~4~^~FLC~^^^^^^^^^^~08/01/2011~
-~18965~^~432~^54.^0^^~4~^~FLC~^^^^^^^^^^~08/01/2011~
-~18965~^~435~^349.^0^^~4~^~NC~^^^^^^^^^^~08/01/2011~
-~18965~^~601~^0.^1^^~8~^~LC~^^^^^^^^^^~04/01/2011~
-~18966~^~208~^398.^0^^~4~^~NC~^^^^^^^^^^~04/01/2011~
-~18966~^~262~^0.^0^^~4~^~FLC~^^^^^^^^^^~04/01/2011~
-~18966~^~263~^0.^0^^~4~^~FLC~^^^^^^^^^^~04/01/2011~
-~18966~^~268~^1665.^0^^~4~^~NC~^^^^^^^^^^~04/01/2011~
-~18966~^~301~^0.^1^^~8~^~LC~^^^^^^^^^^~04/01/2011~
-~18966~^~304~^70.^0^^~4~^~FLC~^^^^^^^^^^~04/01/2011~
-~18966~^~305~^196.^0^^~4~^~FLC~^^^^^^^^^^~04/01/2011~
-~18966~^~306~^221.^0^^~4~^~FLC~^^^^^^^^^^~04/01/2011~
-~18966~^~307~^1214.^1^^~8~^~LC~^^^^^^^^^^~04/01/2011~
-~18966~^~318~^1.^0^^~4~^~NC~^^^^^^^^^^~08/01/2015~
-~18966~^~319~^0.^0^^~4~^~FLC~^^^^^^^^^^~04/01/2011~
-~18966~^~320~^0.^0^^~4~^~NC~^^^^^^^^^^~04/01/2011~
-~18966~^~321~^1.^0^^~4~^~FLC~^^^^^^^^^^~04/01/2011~
-~18966~^~322~^0.^0^^~4~^~FLC~^^^^^^^^^^~04/01/2011~
-~18966~^~324~^0.^0^^~4~^~FLC~^^^^^^^^^^~04/01/2011~
-~18966~^~334~^0.^0^^~4~^~FLC~^^^^^^^^^^~04/01/2011~
-~18966~^~337~^0.^0^^~4~^~FLC~^^^^^^^^^^~04/01/2011~
-~18966~^~338~^80.^0^^~4~^~FLC~^^^^^^^^^^~04/01/2011~
-~18966~^~417~^82.^0^^~4~^~FLC~^^^^^^^^^^~04/01/2011~
-~18966~^~431~^52.^0^^~4~^~FLC~^^^^^^^^^^~04/01/2011~
-~18966~^~432~^30.^0^^~4~^~FLC~^^^^^^^^^^~04/01/2011~
-~18966~^~435~^119.^0^^~4~^~NC~^^^^^^^^^^~04/01/2011~
-~18966~^~601~^0.^1^^~8~^~LC~^^^^^^^^^^~04/01/2011~
-~18967~^~208~^238.^0^^~4~^~NC~^^^^^^^^^^~03/01/2011~
-~18967~^~262~^0.^0^^~4~^~FLC~^^^^^^^^^^~03/01/2011~
-~18967~^~263~^0.^0^^~4~^~FLC~^^^^^^^^^^~03/01/2011~
-~18967~^~268~^994.^0^^~4~^~NC~^^^^^^^^^^~03/01/2011~
-~18967~^~301~^684.^2^^~1~^~A~^^^1^672.^696.^1^^^^~03/01/2011~
-~18967~^~304~^26.^2^^~1~^~A~^^^1^26.^26.^^^^^~03/01/2011~
-~18967~^~305~^103.^2^^~1~^~A~^^^1^103.^103.^^^^^~03/01/2011~
-~18967~^~306~^127.^2^^~1~^~A~^^^1^125.^129.^1^^^^~03/01/2011~
-~18967~^~307~^478.^2^^~1~^~A~^^^1^446.^509.^1^^^^~03/01/2011~
-~18967~^~318~^4.^0^^~4~^~NC~^^^^^^^^^^~03/01/2011~
-~18967~^~319~^0.^0^^~4~^~FLC~^^^^^^^^^^~03/01/2011~
-~18967~^~320~^0.^0^^~4~^~NC~^^^^^^^^^^~03/01/2011~
-~18967~^~321~^2.^0^^~4~^~FLC~^^^^^^^^^^~03/01/2011~
-~18967~^~322~^0.^0^^~4~^~FLC~^^^^^^^^^^~03/01/2011~
-~18967~^~324~^0.^0^^~4~^~FLC~^^^^^^^^^^~03/01/2011~
-~18967~^~334~^0.^0^^~4~^~FLC~^^^^^^^^^^~03/01/2011~
-~18967~^~337~^0.^0^^~4~^~FLC~^^^^^^^^^^~03/01/2011~
-~18967~^~338~^25.^0^^~4~^~FLC~^^^^^^^^^^~03/01/2011~
-~18967~^~417~^127.^0^^~4~^~FLC~^^^^^^^^^^~03/01/2011~
-~18967~^~431~^49.^0^^~4~^~FLC~^^^^^^^^^^~03/01/2011~
-~18967~^~432~^78.^0^^~4~^~FLC~^^^^^^^^^^~03/01/2011~
-~18967~^~435~^162.^0^^~4~^~NC~^^^^^^^^^^~03/01/2011~
-~18967~^~601~^0.^0^^~4~^~FLC~^^^^^^^^^^~03/01/2011~
-~18968~^~208~^250.^0^^~4~^~NC~^^^^^^^^^^~04/01/2011~
-~18968~^~262~^0.^0^^~4~^~FLC~^^^^^^^^^^~04/01/2011~
-~18968~^~263~^0.^0^^~4~^~FLC~^^^^^^^^^^~04/01/2011~
-~18968~^~268~^1047.^0^^~4~^~NC~^^^^^^^^^^~04/01/2011~
-~18968~^~301~^20.^1^^~8~^~LC~^^^^^^^^^^~04/01/2011~
-~18968~^~304~^51.^0^^~4~^~FLC~^^^^^^^^^^~04/01/2011~
-~18968~^~305~^142.^0^^~4~^~FLC~^^^^^^^^^^~04/01/2011~
-~18968~^~306~^165.^0^^~4~^~FLC~^^^^^^^^^^~04/01/2011~
-~18968~^~307~^439.^1^^~8~^~LC~^^^^^^^^^^~04/01/2011~
-~18968~^~318~^0.^1^^~8~^~LC~^^^^^^^^^^~04/01/2011~
-~18968~^~319~^0.^0^^~4~^~FLC~^^^^^^^^^^~04/01/2011~
-~18968~^~320~^0.^0^^~4~^~NC~^^^^^^^^^^~04/01/2011~
-~18968~^~321~^2.^0^^~4~^~FLC~^^^^^^^^^^~04/01/2011~
-~18968~^~322~^0.^0^^~4~^~FLC~^^^^^^^^^^~04/01/2011~
-~18968~^~324~^0.^0^^~4~^~FLC~^^^^^^^^^^~04/01/2011~
-~18968~^~334~^0.^0^^~4~^~FLC~^^^^^^^^^^~04/01/2011~
-~18968~^~337~^0.^0^^~4~^~FLC~^^^^^^^^^^~04/01/2011~
-~18968~^~338~^88.^0^^~4~^~FLC~^^^^^^^^^^~04/01/2011~
-~18968~^~417~^76.^0^^~4~^~FLC~^^^^^^^^^^~04/01/2011~
-~18968~^~431~^46.^0^^~4~^~FLC~^^^^^^^^^^~04/01/2011~
-~18968~^~432~^31.^0^^~4~^~FLC~^^^^^^^^^^~04/01/2011~
-~18968~^~435~^108.^0^^~4~^~NC~^^^^^^^^^^~04/01/2011~
-~18968~^~601~^0.^1^^~8~^~LC~^^^^^^^^^^~04/01/2011~
-~18969~^~208~^334.^0^^~4~^~NC~^^^^^^^^^^~03/01/2011~
-~18969~^~262~^0.^0^^~4~^~FLC~^^^^^^^^^^~03/01/2011~
-~18969~^~263~^0.^0^^~4~^~FLC~^^^^^^^^^^~03/01/2011~
-~18969~^~268~^1398.^0^^~4~^~NC~^^^^^^^^^^~03/01/2011~
-~18969~^~301~^35.^1^^~8~^~LC~^^^^^^^^^^~03/01/2011~
-~18969~^~304~^10.^0^^~4~^~FLC~^^^^^^^^^^~03/01/2011~
-~18969~^~305~^71.^0^^~4~^~FLC~^^^^^^^^^^~03/01/2011~
-~18969~^~306~^68.^0^^~4~^~FLC~^^^^^^^^^^~03/01/2011~
-~18969~^~307~^265.^1^^~8~^~LC~^^^^^^^^^^~03/01/2011~
-~18969~^~318~^88.^1^^~8~^~LC~^^^^^^^^^^~03/01/2011~
-~18969~^~319~^22.^0^^~4~^~FLC~^^^^^^^^^^~03/01/2011~
-~18969~^~320~^23.^0^^~4~^~FLC~^^^^^^^^^^~03/01/2011~
-~18969~^~321~^1.^0^^~4~^~FLC~^^^^^^^^^^~03/01/2011~
-~18969~^~322~^0.^0^^~4~^~FLC~^^^^^^^^^^~03/01/2011~
-~18969~^~324~^11.^0^^~4~^~FLC~^^^^^^^^^^~03/01/2011~
-~18969~^~334~^1.^0^^~4~^~FLC~^^^^^^^^^^~03/01/2011~
-~18969~^~337~^0.^0^^~4~^~FLC~^^^^^^^^^^~03/01/2011~
-~18969~^~338~^86.^0^^~4~^~FLC~^^^^^^^^^^~03/01/2011~
-~18969~^~417~^66.^0^^~4~^~FLC~^^^^^^^^^^~03/01/2011~
-~18969~^~431~^49.^0^^~4~^~FLC~^^^^^^^^^^~03/01/2011~
-~18969~^~432~^16.^0^^~4~^~FLC~^^^^^^^^^^~03/01/2011~
-~18969~^~435~^100.^0^^~4~^~NC~^^^^^^^^^^~03/01/2011~
-~18969~^~601~^66.^1^^~8~^~LC~^^^^^^^^^^~03/01/2011~
-~18970~^~208~^297.^0^^~4~^~NC~^^^^^^^^^^~03/01/2011~
-~18970~^~262~^0.^0^^~4~^~FLC~^^^^^^^^^^~03/01/2011~
-~18970~^~263~^0.^0^^~4~^~FLC~^^^^^^^^^^~03/01/2011~
-~18970~^~268~^1244.^0^^~4~^~NC~^^^^^^^^^^~03/01/2011~
-~18970~^~301~^163.^12^13.^~1~^~A~^^^1^60.^224.^11^133.^192.^~2, 3~^~03/01/2011~
-~18970~^~304~^21.^12^0.^~1~^~A~^^^1^17.^27.^11^19.^23.^~2, 3~^~03/01/2011~
-~18970~^~305~^213.^12^15.^~1~^~A~^^^1^103.^260.^11^179.^247.^~2, 3~^~03/01/2011~
-~18970~^~306~^133.^12^12.^~1~^~A~^^^1^97.^245.^11^104.^160.^~2, 3~^~03/01/2011~
-~18970~^~307~^742.^12^35.^~1~^~A~^^^1^559.^882.^11^664.^819.^~2, 3~^~03/01/2011~
-~18970~^~318~^0.^0^^~4~^~FLC~^^^^^^^^^^~03/01/2011~
-~18970~^~319~^0.^0^^~4~^~FLC~^^^^^^^^^^~03/01/2011~
-~18970~^~320~^0.^0^^~4~^~FLC~^^^^^^^^^^~03/01/2011~
-~18970~^~321~^0.^0^^~4~^~FLC~^^^^^^^^^^~03/01/2011~
-~18970~^~322~^0.^0^^~4~^~FLC~^^^^^^^^^^~03/01/2011~
-~18970~^~324~^0.^0^^~4~^~FLC~^^^^^^^^^^~03/01/2011~
-~18970~^~334~^0.^0^^~4~^~FLC~^^^^^^^^^^~03/01/2011~
-~18970~^~337~^0.^0^^~4~^~FLC~^^^^^^^^^^~03/01/2011~
-~18970~^~338~^12.^0^^~4~^~FLC~^^^^^^^^^^~03/01/2011~
-~18970~^~417~^118.^0^^~4~^~FLC~^^^^^^^^^^~03/01/2011~
-~18970~^~431~^100.^0^^~4~^~FLC~^^^^^^^^^^~03/01/2011~
-~18970~^~432~^19.^0^^~4~^~FLC~^^^^^^^^^^~03/01/2011~
-~18970~^~435~^188.^0^^~4~^~NC~^^^^^^^^^^~03/01/2011~
-~18970~^~601~^0.^0^^~4~^~FLC~^^^^^^^^^^~03/01/2011~
-~18971~^~208~^266.^0^^~4~^~NC~^^^^^^^^^^~08/01/2011~
-~18971~^~262~^0.^0^^~4~^~FLC~^^^^^^^^^^~04/01/2011~
-~18971~^~263~^0.^0^^~4~^~FLC~^^^^^^^^^^~04/01/2011~
-~18971~^~268~^1115.^0^^~4~^~NC~^^^^^^^^^^~08/01/2011~
-~18971~^~301~^188.^1^^~8~^~LC~^^^^^^^^^^~04/01/2011~
-~18971~^~304~^28.^0^^~4~^~FLC~^^^^^^^^^^~08/01/2011~
-~18971~^~305~^369.^0^^~4~^~FLC~^^^^^^^^^^~08/01/2011~
-~18971~^~306~^718.^0^^~4~^~FLC~^^^^^^^^^^~08/01/2011~
-~18971~^~307~^375.^1^^~8~^~LC~^^^^^^^^^^~04/01/2011~
-~18971~^~318~^89.^0^^~4~^~FLC~^^^^^^^^^^~08/01/2011~
-~18971~^~319~^24.^0^^~4~^~FLC~^^^^^^^^^^~08/01/2011~
-~18971~^~320~^24.^0^^~4~^~FLC~^^^^^^^^^^~08/01/2011~
-~18971~^~321~^6.^0^^~4~^~FLC~^^^^^^^^^^~08/01/2011~
-~18971~^~322~^0.^0^^~4~^~FLC~^^^^^^^^^^~04/01/2011~
-~18971~^~324~^2.^0^^~4~^~FLC~^^^^^^^^^^~08/01/2011~
-~18971~^~334~^0.^0^^~4~^~FLC~^^^^^^^^^^~04/01/2011~
-~18971~^~337~^0.^0^^~4~^~FLC~^^^^^^^^^^~04/01/2011~
-~18971~^~338~^17.^0^^~4~^~FLC~^^^^^^^^^^~08/01/2011~
-~18971~^~417~^126.^0^^~4~^~FLC~^^^^^^^^^^~08/01/2011~
-~18971~^~431~^33.^0^^~4~^~FLC~^^^^^^^^^^~08/01/2011~
-~18971~^~432~^92.^0^^~4~^~FLC~^^^^^^^^^^~08/01/2011~
-~18971~^~435~^149.^0^^~4~^~NC~^^^^^^^^^^~08/01/2011~
-~18971~^~601~^0.^1^^~8~^~LC~^^^^^^^^^^~04/01/2011~
-~18972~^~208~^408.^0^^~4~^~NC~^^^^^^^^^^~04/01/2011~
-~18972~^~262~^0.^0^^~4~^~FLC~^^^^^^^^^^~04/01/2011~
-~18972~^~263~^0.^0^^~4~^~FLC~^^^^^^^^^^~04/01/2011~
-~18972~^~268~^1709.^0^^~4~^~NC~^^^^^^^^^^~04/01/2011~
-~18972~^~301~^90.^0^^~4~^~FLC~^^^^^^^^^^~04/01/2011~
-~18972~^~304~^17.^0^^~4~^~FLC~^^^^^^^^^^~04/01/2011~
-~18972~^~305~^120.^0^^~4~^~FLC~^^^^^^^^^^~04/01/2011~
-~18972~^~306~^84.^0^^~4~^~FLC~^^^^^^^^^^~04/01/2011~
-~18972~^~307~^750.^1^^~8~^~LC~^^^^^^^^^^~04/01/2011~
-~18972~^~318~^93.^0^^~4~^~NC~^^^^^^^^^^~04/01/2011~
-~18972~^~319~^23.^0^^~4~^~FLC~^^^^^^^^^^~04/01/2011~
-~18972~^~320~^24.^0^^~4~^~FLC~^^^^^^^^^^~04/01/2011~
-~18972~^~321~^9.^0^^~4~^~FLC~^^^^^^^^^^~04/01/2011~
-~18972~^~322~^1.^0^^~4~^~FLC~^^^^^^^^^^~04/01/2011~
-~18972~^~324~^2.^0^^~4~^~FLC~^^^^^^^^^^~04/01/2011~
-~18972~^~334~^0.^0^^~4~^~FLC~^^^^^^^^^^~04/01/2011~
-~18972~^~337~^0.^0^^~4~^~FLC~^^^^^^^^^^~04/01/2011~
-~18972~^~338~^45.^0^^~4~^~FLC~^^^^^^^^^^~04/01/2011~
-~18972~^~417~^107.^0^^~4~^~FLC~^^^^^^^^^^~04/01/2011~
-~18972~^~431~^75.^0^^~4~^~FLC~^^^^^^^^^^~04/01/2011~
-~18972~^~432~^32.^0^^~4~^~FLC~^^^^^^^^^^~04/01/2011~
-~18972~^~435~^159.^0^^~4~^~NC~^^^^^^^^^^~04/01/2011~
-~18972~^~601~^10.^1^^~8~^~LC~^^^^^^^^^^~04/01/2011~
-~18973~^~208~^249.^0^^~4~^~NC~^^^^^^^^^^~04/01/2011~
-~18973~^~262~^0.^1^^~8~^~LC~^^^^^^^^^^~04/01/2011~
-~18973~^~263~^0.^0^^~4~^~FLC~^^^^^^^^^^~04/01/2011~
-~18973~^~268~^1044.^0^^~4~^~NC~^^^^^^^^^^~04/01/2011~
-~18973~^~301~^35.^1^^~8~^~LC~^^^^^^^^^^~04/01/2011~
-~18973~^~304~^20.^0^^~4~^~FLC~^^^^^^^^^^~04/01/2011~
-~18973~^~305~^128.^0^^~4~^~FLC~^^^^^^^^^^~04/01/2011~
-~18973~^~306~^114.^0^^~4~^~FLC~^^^^^^^^^^~04/01/2011~
-~18973~^~307~^561.^1^^~8~^~LC~^^^^^^^^^^~04/01/2011~
-~18973~^~318~^2.^0^^~4~^~NC~^^^^^^^^^^~04/01/2011~
-~18973~^~319~^0.^0^^~4~^~FLC~^^^^^^^^^^~04/01/2011~
-~18973~^~320~^0.^0^^~4~^~NC~^^^^^^^^^^~04/01/2011~
-~18973~^~321~^1.^0^^~4~^~FLC~^^^^^^^^^^~04/01/2011~
-~18973~^~322~^0.^0^^~4~^~FLC~^^^^^^^^^^~04/01/2011~
-~18973~^~324~^0.^0^^~4~^~FLC~^^^^^^^^^^~04/01/2011~
-~18973~^~334~^0.^0^^~4~^~FLC~^^^^^^^^^^~04/01/2011~
-~18973~^~337~^0.^0^^~4~^~FLC~^^^^^^^^^^~04/01/2011~
-~18973~^~338~^42.^0^^~4~^~FLC~^^^^^^^^^^~04/01/2011~
-~18973~^~417~^138.^0^^~4~^~FLC~^^^^^^^^^^~04/01/2011~
-~18973~^~431~^54.^0^^~4~^~FLC~^^^^^^^^^^~04/01/2011~
-~18973~^~432~^84.^0^^~4~^~FLC~^^^^^^^^^^~04/01/2011~
-~18973~^~435~^175.^0^^~4~^~NC~^^^^^^^^^^~04/01/2011~
-~18973~^~601~^0.^1^^~8~^~LC~^^^^^^^^^^~04/01/2011~
-~19000~^~208~^387.^0^^~4~^~NC~^^^^^^^^^^~01/01/2017~
-~19000~^~262~^0.^0^^~4~^~FLC~^^^^^^^^^^~02/01/2015~
-~19000~^~263~^0.^0^^~4~^~FLC~^^^^^^^^^^~02/01/2015~
-~19000~^~268~^1621.^0^^~4~^~NC~^^^^^^^^^^~01/01/2017~
-~19000~^~301~^429.^0^^~8~^~LC~^^^^^^^^^^~08/01/2015~
-~19000~^~304~^336.^0^^~8~^~LC~^^^^^^^^^^~08/01/2015~
-~19000~^~305~^560.^0^^~8~^~LC~^^^^^^^^^^~08/01/2015~
-~19000~^~306~^294.^0^^~8~^~LC~^^^^^^^^^^~08/01/2015~
-~19000~^~307~^168.^0^^~8~^~LC~^^^^^^^^^^~08/01/2015~
-~19000~^~318~^3.^0^^~4~^~NC~^^^^^^^^^^~02/01/2015~
-~19000~^~319~^1.^0^^~4~^~FLC~^^^^^^^^^^~02/01/2015~
-~19000~^~320~^1.^0^^~4~^~NC~^^^^^^^^^^~02/01/2015~
-~19000~^~321~^0.^0^^~4~^~FLC~^^^^^^^^^^~02/01/2015~
-~19000~^~322~^0.^0^^~4~^~FLC~^^^^^^^^^^~02/01/2015~
-~19000~^~324~^0.^0^^~4~^~FLC~^^^^^^^^^^~02/01/2015~
-~19000~^~334~^0.^0^^~4~^~FLC~^^^^^^^^^^~02/01/2015~
-~19000~^~337~^0.^0^^~4~^~FLC~^^^^^^^^^^~02/01/2015~
-~19000~^~338~^0.^0^^~4~^~FLC~^^^^^^^^^^~02/01/2015~
-~19000~^~417~^55.^0^^~4~^~FLC~^^^^^^^^^^~02/01/2015~
-~19000~^~431~^0.^0^^~4~^~FLC~^^^^^^^^^^~02/01/2015~
-~19000~^~432~^55.^0^^~4~^~FLC~^^^^^^^^^^~02/01/2015~
-~19000~^~435~^55.^0^^~4~^~NC~^^^^^^^^^^~02/01/2015~
-~19000~^~601~^2.^0^^~4~^~FLC~^^^^^^^^^^~02/01/2015~
-~19000~^~638~^0.^0^^~4~^~FLC~^^^^^^^^^^~02/01/2015~
-~19000~^~639~^15.^0^^~4~^~FLC~^^^^^^^^^^~02/01/2015~
-~19000~^~641~^27.^0^^~4~^~FLC~^^^^^^^^^^~02/01/2015~
-~19001~^~208~^489.^0^^~4~^~NC~^^^^^^^^^^~01/01/2017~
-~19001~^~262~^12.^0^^~4~^~FLC~^^^^^^^^^^~02/01/2015~
-~19001~^~263~^128.^0^^~4~^~NR~^^^^^^^^^^~02/01/2015~
-~19001~^~268~^2045.^0^^~4~^~NC~^^^^^^^^^^~01/01/2017~
-~19001~^~301~^126.^0^^~4~^~FLC~^^^^^^^^^^~02/01/2015~
-~19001~^~304~^47.^0^^~4~^~FLC~^^^^^^^^^^~02/01/2015~
-~19001~^~305~^145.^0^^~4~^~FLC~^^^^^^^^^^~02/01/2015~
-~19001~^~306~^260.^0^^~4~^~FLC~^^^^^^^^^^~02/01/2015~
-~19001~^~307~^54.^0^^~4~^~FLC~^^^^^^^^^^~02/01/2015~
-~19001~^~318~^122.^0^^~4~^~NC~^^^^^^^^^^~02/01/2015~
-~19001~^~319~^37.^0^^~4~^~FLC~^^^^^^^^^^~02/01/2015~
-~19001~^~320~^37.^0^^~4~^~NC~^^^^^^^^^^~02/01/2015~
-~19001~^~321~^0.^0^^~4~^~FLC~^^^^^^^^^^~02/01/2015~
-~19001~^~322~^0.^0^^~4~^~FLC~^^^^^^^^^^~02/01/2015~
-~19001~^~324~^0.^0^^~4~^~FLC~^^^^^^^^^^~02/01/2015~
-~19001~^~334~^0.^0^^~4~^~FLC~^^^^^^^^^^~02/01/2015~
-~19001~^~337~^0.^0^^~4~^~FLC~^^^^^^^^^^~02/01/2015~
-~19001~^~338~^4.^0^^~4~^~FLC~^^^^^^^^^^~02/01/2015~
-~19001~^~417~^9.^0^^~4~^~FLC~^^^^^^^^^^~02/01/2015~
-~19001~^~431~^0.^0^^~4~^~FLC~^^^^^^^^^^~02/01/2015~
-~19001~^~432~^9.^0^^~4~^~NR~^^^^^^^^^^~02/01/2015~
-~19001~^~435~^9.^0^^~4~^~NC~^^^^^^^^^^~02/01/2015~
-~19001~^~601~^14.^0^^~4~^~FLC~^^^^^^^^^^~02/01/2015~
-~19001~^~638~^10.^0^^~4~^~FLC~^^^^^^^^^^~02/01/2015~
-~19001~^~639~^4.^0^^~4~^~FLC~^^^^^^^^^^~02/01/2015~
-~19001~^~641~^27.^0^^~4~^~FLC~^^^^^^^^^^~02/01/2015~
-~19002~^~208~^410.^0^^~9~^~MC~^^^^^^^^^^~06/01/2010~
-~19002~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2003~
-~19002~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2003~
-~19002~^~268~^1715.^0^^~9~^~MC~^^^^^^^^^^~06/01/2010~
-~19002~^~301~^20.^1^^~12~^~MA~^^^^^^^^^^~05/01/1996~
-~19002~^~304~^51.^0^^~4~^~FLC~^^^^^^^^^^~05/01/1996~
-~19002~^~305~^407.^0^^~4~^~FLC~^^^^^^^^^^~05/01/1996~
-~19002~^~306~^597.^0^^~4~^~FLC~^^^^^^^^^^~08/01/1991~
-~19002~^~307~^1785.^0^^~8~^~LC~^^^^^^^^^^~01/01/2018~
-~19002~^~318~^0.^0^^~4~^~FLC~^^^^^^^^^^~08/01/1991~
-~19002~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2002~
-~19002~^~320~^0.^0^^~1~^~AS~^^^^^^^^^^~06/01/2010~
-~19002~^~321~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2003~
-~19002~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2003~
-~19002~^~324~^11.^0^^~4~^~O~^^^^^^^^^^~03/01/2009~
-~19002~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2003~
-~19002~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2003~
-~19002~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2003~
-~19002~^~417~^134.^0^^~4~^~FLC~^^^^^^^^^^~05/01/1996~
-~19002~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~
-~19002~^~432~^134.^0^^~4~^~FLC~^^^^^^^^^^~06/01/2010~
-~19002~^~435~^134.^0^^~4~^~NC~^^^^^^^^^^~06/01/2010~
-~19002~^~601~^48.^0^^~4~^~NR~^^^^^^^^^^~05/01/2013~
-~19003~^~208~^539.^0^^~4~^~NC~^^^^^^^^^^~07/01/2017~
-~19003~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2003~
-~19003~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2003~
-~19003~^~268~^2256.^0^^~4~^~NC~^^^^^^^^^^~07/01/2017~
-~19003~^~301~^138.^12^4.^~1~^~A~^^^1^114.^160.^11^128.^147.^~2, 3~^~05/01/2014~
-~19003~^~304~^72.^12^1.^~1~^~A~^^^1^64.^83.^11^67.^75.^~2, 3~^~05/01/2014~
-~19003~^~305~^194.^12^4.^~1~^~A~^^^1^176.^217.^11^184.^202.^~2, 3~^~05/01/2014~
-~19003~^~306~^144.^12^4.^~1~^~A~^^^1^119.^166.^11^134.^154.^~2, 3~^~05/01/2014~
-~19003~^~307~^514.^12^28.^~1~^~A~^^^1^300.^645.^11^450.^577.^~2, 3~^~05/01/2014~
-~19003~^~318~^69.^0^^~4~^~NC~^^^^^^^^^^~07/01/2017~
-~19003~^~319~^0.^0^^~4~^~BNA~^~20016~^^^^^^^^^~03/01/2003~
-~19003~^~320~^3.^0^^~4~^~NC~^^^^^^^^^^~07/01/2017~
-~19003~^~321~^20.^6^3.^~1~^~A~^^^1^13.^30.^5^11.^28.^~2, 3~^~05/01/2014~
-~19003~^~322~^2.^6^0.^~1~^~A~^^^1^0.^5.^5^0.^4.^~1, 2, 3~^~05/01/2014~
-~19003~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2009~
-~19003~^~334~^41.^6^9.^~1~^~A~^^^1^22.^79.^5^16.^64.^~2, 3~^~05/01/2014~
-~19003~^~337~^0.^6^0.^~1~^~A~^^^1^0.^0.^^^^~1, 2, 3~^~05/01/2014~
-~19003~^~338~^527.^6^94.^~1~^~A~^^^1^334.^958.^5^283.^770.^~2, 3~^~05/01/2014~
-~19003~^~417~^8.^6^1.^~1~^~A~^^^1^4.^11.^5^4.^11.^~1, 2, 3~^~05/01/2014~
-~19003~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~
-~19003~^~432~^8.^0^^~4~^~NR~^^^^^^^^^^~05/01/2014~
-~19003~^~435~^8.^0^^~4~^~NC~^^^^^^^^^^~05/01/2014~
-~19003~^~601~^0.^4^0.^~1~^~A~^^^1^0.^0.^^^^~1, 2, 3~^~02/01/2005~
-~19003~^~638~^21.^4^0.^~1~^~A~^^^1^19.^21.^3^18.^22.^~2, 3~^~08/01/2015~
-~19003~^~639~^51.^4^2.^~1~^~A~^^^1^42.^53.^3^41.^59.^~2, 3~^~02/01/2005~
-~19003~^~641~^148.^4^8.^~1~^~A~^^^1^123.^157.^3^121.^174.^~2, 3~^~02/01/2005~
-~19004~^~208~^523.^0^^~4~^^^^^^^^^^^~08/01/1991~
-~19004~^~268~^2188.^0^^~4~^^^^^^^^^^^
-~19004~^~301~^131.^21^5.^~1~^^^^^^^^^^^~08/01/1991~
-~19004~^~304~^77.^19^1.^~1~^^^^^^^^^^^~08/01/1991~
-~19004~^~305~^207.^19^6.^~1~^^^^^^^^^^^~08/01/1991~
-~19004~^~306~^236.^22^31.^~1~^^^^^^^^^^^~08/01/1991~
-~19004~^~307~^763.^7^35.^~1~^^^^^^^^^^^~08/01/1991~
-~19004~^~318~^611.^15^58.^~1~^^^^^^^^^^^~08/01/1991~
-~19004~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2002~
-~19004~^~320~^31.^0^^~4~^~NC~^^^^^^^^^^~06/01/2002~
-~19004~^~417~^39.^1^^~4~^^^^^^^^^^^~08/01/1991~
-~19004~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~
-~19004~^~432~^39.^1^^~4~^^^^^^^^^^^~08/01/1991~
-~19004~^~435~^39.^0^^~4~^~NC~^^^^^^^^^^~01/01/2001~
-~19004~^~601~^0.^4^0.^~1~^^^^^^^^^^^~08/01/1991~
-~19005~^~208~^510.^0^^~4~^~NC~^^^^^^^^^^~08/01/1991~
-~19005~^~268~^2134.^0^^~4~^^^^^^^^^^^
-~19005~^~301~^3.^1^^~4~^^^^^^^^^^^~08/01/1991~
-~19005~^~304~^11.^1^^~1~^^^^^^^^^^^~08/01/1991~
-~19005~^~305~^44.^1^^~1~^^^^^^^^^^^~08/01/1991~
-~19005~^~306~^81.^1^^~1~^^^^^^^^^^^~08/01/1991~
-~19005~^~307~^1022.^1^^~1~^^^^^^^^^^^~08/01/1991~
-~19005~^~318~^318.^1^^~4~^^^^^^^^^^^~08/01/1991~
-~19005~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2002~
-~19005~^~320~^16.^0^^~4~^~NC~^^^^^^^^^^~06/01/2002~
-~19005~^~417~^3.^1^^~4~^^^^^^^^^^^~08/01/1991~
-~19005~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~
-~19005~^~432~^3.^1^^~4~^^^^^^^^^^^~08/01/1991~
-~19005~^~435~^3.^0^^~4~^~NC~^^^^^^^^^^~01/01/2001~
-~19005~^~601~^0.^1^^~4~^^^^^^^^^^^~08/01/1991~
-~19007~^~208~^499.^0^^~4~^~NC~^^^^^^^^^^~04/01/2007~
-~19007~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2003~
-~19007~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2003~
-~19007~^~268~^2089.^0^^~4~^~NC~^^^^^^^^^^~04/01/2007~
-~19007~^~301~^29.^15^1.^~1~^^^^^^^^^^^~08/01/1991~
-~19007~^~304~^28.^15^2.^~1~^^^^^^^^^^^~08/01/1991~
-~19007~^~305~^72.^15^7.^~1~^^^^^^^^^^^~08/01/1991~
-~19007~^~306~^143.^14^4.^~1~^^^^^^^^^^^~08/01/1991~
-~19007~^~307~^950.^0^^~8~^~LC~^^^^^^^^^^~05/01/2010~
-~19007~^~318~^120.^0^^~4~^~NC~^^^^^^^^^^~03/01/2009~
-~19007~^~319~^2.^0^^~4~^~BNA~^^^^^^^^^^~03/01/2003~
-~19007~^~320~^8.^0^^~4~^~NC~^^^^^^^^^^~03/01/2009~
-~19007~^~321~^51.^0^^~4~^~BNA~^^^^^^^^^^~03/01/2003~
-~19007~^~322~^33.^0^^~4~^~BNA~^^^^^^^^^^~03/01/2003~
-~19007~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2009~
-~19007~^~334~^0.^0^^~4~^~BNA~^^^^^^^^^^~03/01/2003~
-~19007~^~337~^0.^0^^~4~^~FLA~^^^^^^^^^^~03/01/2003~
-~19007~^~338~^879.^0^^~4~^~FLA~^^^^^^^^^^~03/01/2003~
-~19007~^~417~^110.^1^^~12~^~MA~^^^^^^^^^^~02/01/1998~
-~19007~^~431~^94.^0^^~4~^~NC~^^^^^^^^^^~05/01/2000~
-~19007~^~432~^16.^0^^~4~^^^^^^^^^^^~08/01/1991~
-~19007~^~435~^176.^0^^~4~^~NC~^^^^^^^^^^~03/01/2009~
-~19007~^~601~^0.^1^^~4~^^^^^^^^^^^~08/01/1991~
-~19008~^~208~^567.^0^^~4~^~NC~^^^^^^^^^^~02/01/2016~
-~19008~^~262~^0.^0^^~4~^~FLA~^^^^^^^^^^~07/01/2008~
-~19008~^~263~^0.^0^^~4~^~FLA~^^^^^^^^^^~07/01/2008~
-~19008~^~268~^2372.^0^^~4~^~NC~^^^^^^^^^^~02/01/2016~
-~19008~^~301~^53.^12^2.^~1~^~A~^^^1^43.^63.^11^48.^57.^~2, 3~^~02/01/2016~
-~19008~^~304~^18.^12^0.^~1~^~A~^^^1^16.^20.^11^17.^18.^~2, 3~^~02/01/2016~
-~19008~^~305~^126.^12^3.^~1~^~A~^^^1^108.^145.^11^119.^133.^~2, 3~^~02/01/2016~
-~19008~^~306~^180.^12^4.^~1~^~A~^^^1^156.^206.^11^168.^190.^~2, 3~^~02/01/2016~
-~19008~^~307~^928.^12^30.^~1~^~A~^^^1^775.^1070.^11^861.^994.^~2, 3~^~02/01/2016~
-~19008~^~318~^95.^0^^~1~^~AS~^^^^^^^^^^~02/01/2016~
-~19008~^~319~^10.^1^^~1~^~A~^^^^^^^^^^~02/01/2016~
-~19008~^~320~^13.^0^^~1~^~AS~^^^^^^^^^^~02/01/2016~
-~19008~^~321~^23.^6^3.^~1~^~A~^^^1^12.^30.^5^14.^30.^~2, 3~^~02/01/2016~
-~19008~^~322~^0.^6^0.^~1~^~A~^^^1^0.^0.^^^^~1, 2, 3~^~05/01/2005~
-~19008~^~324~^2.^0^^~4~^~FLA~^^^^^^^^^^~08/01/2012~
-~19008~^~334~^29.^6^4.^~1~^~A~^^^1^12.^39.^5^18.^39.^~2, 3~^~02/01/2016~
-~19008~^~337~^0.^6^0.^~1~^~A~^^^1^0.^0.^^^^~1, 2, 3~^~02/01/2016~
-~19008~^~338~^635.^6^16.^~1~^~A~^^^1^562.^669.^5^591.^678.^~2, 3~^~02/01/2016~
-~19008~^~417~^80.^6^3.^~1~^~A~^^^1^65.^89.^5^70.^89.^~2, 3~^~02/01/2016~
-~19008~^~431~^0.^0^^~4~^~NR~^^^^^^^^^^~02/01/2016~
-~19008~^~432~^80.^6^3.^~1~^~A~^^^1^65.^89.^5^70.^89.^^~02/01/2016~
-~19008~^~435~^80.^0^^~4~^~NC~^^^^^^^^^^~02/01/2016~
-~19008~^~601~^7.^0^^~4~^~NR~^^^^^^^^^^~08/01/2014~
-~19008~^~636~^276.^0^^~4~^~FLA~^^^^^^^^^^~08/01/2012~
-~19009~^~208~^446.^0^^~4~^~NC~^^^^^^^^^^~05/01/2003~
-~19009~^~262~^0.^0^^~4~^~FLA~^^^^^^^^^^~03/01/2003~
-~19009~^~263~^0.^0^^~4~^~FLA~^^^^^^^^^^~03/01/2003~
-~19009~^~268~^1868.^0^^~4~^~NC~^^^^^^^^^^~05/01/2003~
-~19009~^~301~^9.^8^1.^~1~^^^^^^^^^^^~05/01/2003~
-~19009~^~304~^113.^8^3.^~1~^^^^^^^^^^^~08/01/1991~
-~19009~^~305~^275.^8^5.^~1~^^^^^^^^^^^~08/01/1991~
-~19009~^~306~^278.^8^11.^~1~^^^^^^^^^^^~08/01/1991~
-~19009~^~307~^564.^0^^~8~^~LC~^^^^^^^^^^~06/01/2012~
-~19009~^~318~^0.^1^^~9~^~MC~^^^^^^^^^^~07/01/2003~
-~19009~^~319~^0.^0^^~4~^~FLA~^^^^^^^^^^~05/01/2003~
-~19009~^~320~^0.^0^^~4~^~NC~^^^^^^^^^^~07/01/2003~
-~19009~^~321~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2003~
-~19009~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2003~
-~19009~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2009~
-~19009~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2003~
-~19009~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2003~
-~19009~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2003~
-~19009~^~417~^0.^1^^~4~^^^^^^^^^^^~08/01/1991~
-~19009~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~
-~19009~^~432~^0.^1^^~4~^^^^^^^^^^^~05/01/2003~
-~19009~^~435~^0.^0^^~4~^~NC~^^^^^^^^^^~04/01/2007~
-~19009~^~601~^0.^1^^~4~^^^^^^^^^^^~08/01/1991~
-~19010~^~208~^404.^0^^~4~^^^^^^^^^^^~08/01/1991~
-~19010~^~268~^1690.^0^^~4~^^^^^^^^^^^
-~19010~^~301~^21.^2^^~1~^^^^^^^^^^^~08/01/1991~
-~19010~^~304~^48.^2^^~1~^^^^^^^^^^^~08/01/1991~
-~19010~^~305~^134.^2^^~1~^^^^^^^^^^^~08/01/1991~
-~19010~^~306~^168.^2^^~1~^^^^^^^^^^^~08/01/1991~
-~19010~^~307~^278.^1^^~1~^^^^^^^^^^^~08/01/1991~
-~19010~^~318~^1764.^2^^~1~^^^^^^^^^^^~08/01/1991~
-~19010~^~417~^140.^1^^~1~^^^^^^^^^^^~08/01/1991~
-~19010~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~
-~19010~^~432~^140.^1^^~1~^^^^^^^^^^^~08/01/1991~
-~19010~^~435~^140.^0^^~4~^~NC~^^^^^^^^^^~01/01/2001~
-~19010~^~601~^0.^1^^~4~^^^^^^^^^^^~08/01/1991~
-~19013~^~208~^359.^0^^~4~^~NC~^^^^^^^^^^~04/01/2005~
-~19013~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~10/01/2001~
-~19013~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~10/01/2001~
-~19013~^~268~^1504.^0^^~4~^~NC~^^^^^^^^^^~04/01/2005~
-~19013~^~301~^18.^2^^~1~^^^^^^^^^^^~06/01/2002~
-~19013~^~304~^14.^7^0.^~1~^^^^^^^^^^^~08/01/1991~
-~19013~^~305~^24.^6^3.^~1~^^^^^^^^^^^~08/01/1991~
-~19013~^~306~^164.^7^6.^~1~^^^^^^^^^^^~08/01/1991~
-~19013~^~307~^199.^0^^~8~^~LC~^^^^^^^^^^~01/01/2018~
-~19013~^~318~^58.^0^^~4~^~NC~^~19014~^^^^^^^^^~02/01/2003~
-~19013~^~319~^0.^0^^~4~^~O~^^^^^^^^^^~06/01/2002~
-~19013~^~320~^3.^0^^~4~^~NC~^~19014~^^^^^^^^^~07/01/2017~
-~19013~^~321~^34.^0^^~4~^~BFZN~^~19014~^^^^^^^^^~02/01/2003~
-~19013~^~322~^1.^0^^~4~^~BFZN~^~19014~^^^^^^^^^~02/01/2003~
-~19013~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~
-~19013~^~334~^0.^0^^~4~^~BFZN~^~19014~^^^^^^^^^~02/01/2003~
-~19013~^~337~^0.^0^^~4~^~BFZN~^~19014~^^^^^^^^^~02/01/2003~
-~19013~^~338~^51.^0^^~4~^~BFZN~^~19014~^^^^^^^^^~02/01/2003~
-~19013~^~417~^4.^0^^~4~^~BFZN~^~19014~^^^^^^^^^~02/01/2003~
-~19013~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~
-~19013~^~432~^4.^0^^~4~^~BFZN~^~19014~^^^^^^^^^~02/01/2003~
-~19013~^~435~^4.^0^^~4~^~NC~^~19014~^^^^^^^^^~12/01/2006~
-~19013~^~601~^0.^4^0.^~8~^~LC~^^^1^0.^0.^3^0.^0.^~4~^~02/01/2003~
-~19014~^~208~^371.^0^^~4~^~NC~^^^^^^^^^^~04/01/2005~
-~19014~^~262~^0.^0^^~4~^~FLA~^^^^^^^^^^~11/01/2002~
-~19014~^~263~^0.^0^^~4~^~FLA~^^^^^^^^^^~11/01/2002~
-~19014~^~268~^1551.^0^^~4~^~NC~^^^^^^^^^^~04/01/2005~
-~19014~^~301~^32.^17^1.^~1~^^^^^^^^^^^~08/01/1991~
-~19014~^~304~^20.^17^0.^~1~^^^^^^^^^^^~08/01/1991~
-~19014~^~305~^31.^16^1.^~1~^^^^^^^^^^^~08/01/1991~
-~19014~^~306~^294.^17^11.^~1~^^^^^^^^^^^~08/01/1991~
-~19014~^~307~^317.^1^^~13~^~AI~^^^^^^^^^^~04/01/2005~
-~19014~^~318~^57.^0^^~4~^~FLA~^^^^^^^^^^~04/01/2005~
-~19014~^~319~^0.^0^^~4~^~FLA~^^^^^^^^^^~11/01/2002~
-~19014~^~320~^6.^0^^~4~^~FLA~^^^^^^^^^^~04/01/2005~
-~19014~^~321~^34.^0^^~4~^~FLA~^^^^^^^^^^~04/01/2005~
-~19014~^~322~^1.^0^^~4~^~FLA~^^^^^^^^^^~04/01/2005~
-~19014~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~
-~19014~^~334~^0.^0^^~4~^~FLA~^^^^^^^^^^~04/01/2005~
-~19014~^~337~^0.^0^^~4~^~FLA~^^^^^^^^^^~02/01/2003~
-~19014~^~338~^41.^0^^~4~^~FLA~^^^^^^^^^^~04/01/2005~
-~19014~^~417~^2.^0^^~4~^~FLA~^^^^^^^^^^~04/01/2005~
-~19014~^~431~^0.^0^^~4~^~FLA~^^^^^^^^^^~11/01/2002~
-~19014~^~432~^2.^0^^~4~^~FLA~^^^^^^^^^^~04/01/2005~
-~19014~^~435~^2.^0^^~4~^~NC~^^^^^^^^^^~12/01/2006~
-~19014~^~601~^0.^0^^~4~^~FLA~^^^^^^^^^^~11/01/2002~
-~19015~^~208~^471.^0^^~4~^~NC~^^^^^^^^^^~03/01/2006~
-~19015~^~262~^0.^0^^~4~^~FLA~^^^^^^^^^^~05/01/2011~
-~19015~^~263~^0.^0^^~4~^~FLA~^^^^^^^^^^~05/01/2011~
-~19015~^~268~^1972.^0^^~4~^~NC~^^^^^^^^^^~03/01/2006~
-~19015~^~301~^61.^18^2.^~1~^^^^^^^^^^^~08/01/1991~
-~19015~^~304~^97.^3^7.^~1~^^^^^^^^^^^~08/01/1991~
-~19015~^~305~^277.^21^4.^~1~^^^^^^^^^^^~08/01/1991~
-~19015~^~306~^336.^19^10.^~1~^^^^^^^^^^^~08/01/1991~
-~19015~^~307~^294.^24^7.^~1~^^^^^^^^^^^~08/01/1991~
-~19015~^~318~^33.^0^^~4~^~NC~^^^^^^^^^^~05/01/2011~
-~19015~^~319~^0.^0^^~4~^~FLA~^^^^^^^^^^~05/01/2011~
-~19015~^~320~^2.^0^^~4~^~NC~^^^^^^^^^^~05/01/2011~
-~19015~^~321~^17.^0^^~4~^~FLA~^^^^^^^^^^~05/01/2011~
-~19015~^~322~^6.^0^^~4~^~FLA~^^^^^^^^^^~05/01/2011~
-~19015~^~324~^0.^0^^~4~^~NR~^^^^^^^^^^~07/01/2012~
-~19015~^~334~^0.^0^^~4~^~FLA~^^^^^^^^^^~05/01/2011~
-~19015~^~337~^0.^0^^~4~^~FLA~^^^^^^^^^^~05/01/2011~
-~19015~^~338~^189.^0^^~4~^~FLA~^^^^^^^^^^~05/01/2011~
-~19015~^~417~^23.^3^1.^~1~^^^^^^^^^^^~08/01/1991~
-~19015~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~
-~19015~^~432~^23.^3^1.^~1~^^^^^^^^^^^~03/01/2006~
-~19015~^~435~^23.^0^^~4~^~NC~^^^^^^^^^^~08/01/2008~
-~19015~^~601~^0.^1^^~4~^^^^^^^^^^^~08/01/1991~
-~19016~^~208~^495.^0^^~4~^~NC~^^^^^^^^^^~08/01/1991~
-~19016~^~268~^2071.^0^^~4~^^^^^^^^^^^
-~19016~^~301~^32.^1^^~1~^^^^^^^^^^^~08/01/1991~
-~19016~^~304~^81.^1^^~1~^^^^^^^^^^^~08/01/1991~
-~19016~^~305~^228.^1^^~1~^^^^^^^^^^^~08/01/1991~
-~19016~^~306~^273.^1^^~1~^^^^^^^^^^^~08/01/1991~
-~19016~^~307~^256.^1^^~1~^^^^^^^^^^^~08/01/1991~
-~19016~^~318~^37.^1^^~4~^^^^^^^^^^^~08/01/1991~
-~19016~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2002~
-~19016~^~320~^2.^0^^~4~^~NC~^^^^^^^^^^~06/01/2002~
-~19016~^~417~^12.^1^^~4~^^^^^^^^^^^~08/01/1991~
-~19016~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~
-~19016~^~432~^12.^1^^~4~^^^^^^^^^^^~08/01/1991~
-~19016~^~435~^12.^0^^~4~^~NC~^^^^^^^^^^~01/01/2001~
-~19016~^~601~^0.^1^^~4~^^^^^^^^^^^~08/01/1991~
-~19017~^~208~^438.^0^^~4~^~NC~^^^^^^^^^^~08/01/1991~
-~19017~^~268~^1833.^0^^~4~^^^^^^^^^^^
-~19017~^~301~^77.^1^^~1~^^^^^^^^^^^~08/01/1991~
-~19017~^~304~^72.^1^^~4~^^^^^^^^^^^~08/01/1991~
-~19017~^~305~^204.^1^^~4~^^^^^^^^^^^~08/01/1991~
-~19017~^~306~^251.^1^^~1~^^^^^^^^^^^~08/01/1991~
-~19017~^~307~^344.^1^^~1~^^^^^^^^^^^~08/01/1991~
-~19017~^~318~^42.^1^^~4~^^^^^^^^^^^~08/01/1991~
-~19017~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2002~
-~19017~^~320~^2.^0^^~4~^~NC~^^^^^^^^^^~06/01/2002~
-~19017~^~417~^13.^1^^~4~^^^^^^^^^^^~08/01/1991~
-~19017~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~
-~19017~^~432~^13.^1^^~4~^^^^^^^^^^^~08/01/1991~
-~19017~^~435~^13.^0^^~4~^~NC~^^^^^^^^^^~01/01/2001~
-~19017~^~601~^0.^1^^~4~^^^^^^^^^^^~08/01/1991~
-~19018~^~208~^341.^0^^~4~^~NC~^^^^^^^^^^~03/01/2015~
-~19018~^~262~^0.^0^^~4~^~FLC~^^^^^^^^^^~03/01/2015~
-~19018~^~263~^0.^0^^~4~^~FLC~^^^^^^^^^^~03/01/2015~
-~19018~^~268~^1425.^0^^~4~^~NC~^^^^^^^^^^~08/01/2015~
-~19018~^~301~^8.^0^^~4~^~FLC~^^^^^^^^^^~03/01/2015~
-~19018~^~304~^1.^0^^~4~^~FLC~^^^^^^^^^^~03/01/2015~
-~19018~^~305~^0.^0^^~4~^~FLC~^^^^^^^^^^~03/01/2015~
-~19018~^~306~^7.^0^^~4~^~FLC~^^^^^^^^^^~08/01/2015~
-~19018~^~307~^0.^0^^~8~^~LC~^^^^^^^^^^~08/01/2015~
-~19018~^~318~^2.^0^^~4~^~NC~^^^^^^^^^^~08/01/2015~
-~19018~^~319~^0.^0^^~4~^~FLC~^^^^^^^^^^~03/01/2015~
-~19018~^~320~^0.^0^^~4~^~NC~^^^^^^^^^^~03/01/2015~
-~19018~^~321~^1.^0^^~4~^~FLC~^^^^^^^^^^~03/01/2015~
-~19018~^~322~^0.^0^^~4~^~FLC~^^^^^^^^^^~03/01/2015~
-~19018~^~324~^0.^0^^~4~^~FLC~^^^^^^^^^^~03/01/2015~
-~19018~^~334~^0.^0^^~4~^~FLC~^^^^^^^^^^~03/01/2015~
-~19018~^~337~^0.^0^^~4~^~FLC~^^^^^^^^^^~03/01/2015~
-~19018~^~338~^1.^0^^~4~^~FLC~^^^^^^^^^^~03/01/2015~
-~19018~^~417~^0.^0^^~4~^~FLC~^^^^^^^^^^~03/01/2015~
-~19018~^~431~^0.^0^^~4~^~FLC~^^^^^^^^^^~03/01/2015~
-~19018~^~432~^0.^0^^~4~^~FLC~^^^^^^^^^^~03/01/2015~
-~19018~^~435~^0.^0^^~4~^~NC~^^^^^^^^^^~03/01/2015~
-~19018~^~601~^0.^0^^~4~^~FLC~^^^^^^^^^^~03/01/2015~
-~19020~^~208~^443.^0^^~4~^~NC~^^^^^^^^^^~08/01/1991~
-~19020~^~268~^1854.^0^^~4~^^^^^^^^^^^
-~19020~^~301~^105.^1^^~1~^^^^^^^^^^^~08/01/1991~
-~19020~^~304~^74.^1^^~1~^^^^^^^^^^^~08/01/1991~
-~19020~^~305~^230.^1^^~1~^^^^^^^^^^^~08/01/1991~
-~19020~^~306~^325.^1^^~1~^^^^^^^^^^^~08/01/1991~
-~19020~^~307~^278.^1^^~1~^^^^^^^^^^^~08/01/1991~
-~19020~^~318~^0.^1^^~1~^^^^^^^^^^^~08/01/1991~
-~19020~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2002~
-~19020~^~320~^0.^0^^~4~^~NC~^^^^^^^^^^~06/01/2002~
-~19020~^~417~^24.^1^^~1~^^^^^^^^^^^~08/01/1991~
-~19020~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~
-~19020~^~432~^24.^1^^~1~^^^^^^^^^^^~08/01/1991~
-~19020~^~435~^24.^0^^~4~^~NC~^^^^^^^^^^~01/01/2001~
-~19020~^~601~^0.^0^^~4~^~NR~^^^^^^^^^^~05/01/2013~
-~19021~^~208~^426.^0^^~4~^~NC~^^^^^^^^^^~08/01/1991~
-~19021~^~268~^1782.^0^^~4~^^^^^^^^^^^
-~19021~^~301~^91.^2^^~1~^^^^^^^^^^^~08/01/1991~
-~19021~^~304~^86.^1^^~1~^^^^^^^^^^^~08/01/1991~
-~19021~^~305~^250.^1^^~1~^^^^^^^^^^^~08/01/1991~
-~19021~^~306~^291.^2^^~1~^^^^^^^^^^^~08/01/1991~
-~19021~^~307~^409.^2^^~1~^^^^^^^^^^^~08/01/1991~
-~19021~^~318~^14.^1^^~4~^^^^^^^^^^^~08/01/1991~
-~19021~^~319~^1.^0^^~4~^~NC~^^^^^^^^^^~06/01/2002~
-~19021~^~320~^2.^0^^~4~^~NC~^^^^^^^^^^~06/01/2002~
-~19021~^~417~^32.^2^^~1~^^^^^^^^^^^~08/01/1991~
-~19021~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~
-~19021~^~432~^32.^2^^~1~^^^^^^^^^^^~08/01/1991~
-~19021~^~435~^32.^0^^~4~^~NC~^^^^^^^^^^~01/01/2001~
-~19021~^~601~^0.^0^^~4~^~NR~^^^^^^^^^^~05/01/2013~
-~19022~^~208~^448.^0^^~4~^~NC~^^^^^^^^^^~08/01/1991~
-~19022~^~268~^1874.^0^^~4~^^^^^^^^^^^
-~19022~^~301~^101.^2^^~1~^^^^^^^^^^^~08/01/1991~
-~19022~^~304~^72.^1^^~1~^^^^^^^^^^^~08/01/1991~
-~19022~^~305~^220.^1^^~1~^^^^^^^^^^^~08/01/1991~
-~19022~^~306~^362.^2^^~1~^^^^^^^^^^^~08/01/1991~
-~19022~^~307~^282.^2^^~1~^^^^^^^^^^^~08/01/1991~
-~19022~^~318~^0.^1^^~1~^^^^^^^^^^^~08/01/1991~
-~19022~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2002~
-~19022~^~320~^0.^0^^~4~^~NC~^^^^^^^^^^~06/01/2002~
-~19022~^~417~^21.^2^^~1~^^^^^^^^^^^~08/01/1991~
-~19022~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~
-~19022~^~432~^21.^2^^~1~^^^^^^^^^^^~08/01/1991~
-~19022~^~435~^21.^0^^~4~^~NC~^^^^^^^^^^~01/01/2001~
-~19022~^~601~^0.^0^^~4~^~NR~^^^^^^^^^^~05/01/2013~
-~19024~^~208~^466.^0^^~4~^^^^^^^^^^^~08/01/1991~
-~19024~^~268~^1950.^0^^~4~^^^^^^^^^^^
-~19024~^~301~^103.^2^^~1~^^^^^^^^^^^~08/01/1991~
-~19024~^~304~^66.^1^^~1~^^^^^^^^^^^~08/01/1991~
-~19024~^~305~^199.^1^^~1~^^^^^^^^^^^~08/01/1991~
-~19024~^~306~^313.^1^^~1~^^^^^^^^^^^~08/01/1991~
-~19024~^~307~^200.^2^^~1~^^^^^^^^^^^~08/01/1991~
-~19024~^~318~^39.^1^^~4~^^^^^^^^^^^~08/01/1991~
-~19024~^~319~^5.^0^^~4~^~NC~^^^^^^^^^^~06/01/2002~
-~19024~^~320~^7.^0^^~4~^~NC~^^^^^^^^^^~06/01/2002~
-~19024~^~417~^26.^1^^~1~^^^^^^^^^^^~08/01/1991~
-~19024~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~
-~19024~^~432~^26.^1^^~1~^^^^^^^^^^^~08/01/1991~
-~19024~^~435~^26.^0^^~4~^~NC~^^^^^^^^^^~01/01/2001~
-~19024~^~601~^5.^1^^~1~^^^^^^^^^^^~08/01/1991~
-~19025~^~208~^473.^0^^~4~^~NC~^^^^^^^^^^~01/01/2017~
-~19025~^~262~^0.^0^^~4~^~FLC~^^^^^^^^^^~03/01/2015~
-~19025~^~263~^0.^0^^~4~^~FLC~^^^^^^^^^^~03/01/2015~
-~19025~^~268~^1981.^0^^~4~^~NC~^^^^^^^^^^~01/01/2017~
-~19025~^~301~^21.^0^^~4~^~FLC~^^^^^^^^^^~03/01/2015~
-~19025~^~304~^66.^0^^~4~^~FLC~^^^^^^^^^^~03/01/2015~
-~19025~^~305~^132.^0^^~4~^~FLC~^^^^^^^^^^~03/01/2015~
-~19025~^~306~^220.^0^^~4~^~FLC~^^^^^^^^^^~03/01/2015~
-~19025~^~307~^174.^0^^~4~^~FLC~^^^^^^^^^^~03/01/2015~
-~19025~^~318~^0.^0^^~4~^~FLC~^^^^^^^^^^~03/01/2015~
-~19025~^~319~^0.^0^^~4~^~FLC~^^^^^^^^^^~03/01/2015~
-~19025~^~320~^0.^0^^~4~^~NC~^^^^^^^^^^~03/01/2015~
-~19025~^~321~^0.^0^^~4~^~FLC~^^^^^^^^^^~03/01/2015~
-~19025~^~322~^0.^0^^~4~^~FLC~^^^^^^^^^^~03/01/2015~
-~19025~^~324~^0.^0^^~4~^~FLC~^^^^^^^^^^~03/01/2015~
-~19025~^~334~^0.^0^^~4~^~FLC~^^^^^^^^^^~03/01/2015~
-~19025~^~337~^0.^0^^~4~^~FLC~^^^^^^^^^^~03/01/2015~
-~19025~^~338~^0.^0^^~4~^~FLC~^^^^^^^^^^~03/01/2015~
-~19025~^~417~^34.^0^^~4~^~FLC~^^^^^^^^^^~03/01/2015~
-~19025~^~431~^0.^0^^~4~^~FLC~^^^^^^^^^^~03/01/2015~
-~19025~^~432~^34.^0^^~4~^~FLC~^^^^^^^^^^~03/01/2015~
-~19025~^~435~^34.^0^^~4~^~NC~^^^^^^^^^^~03/01/2015~
-~19025~^~601~^0.^0^^~4~^~FLC~^^^^^^^^^^~03/01/2015~
-~19026~^~208~^508.^0^^~4~^~NC~^^^^^^^^^^~05/01/2011~
-~19026~^~262~^6.^1^^~1~^^^^^^^^^^^~08/01/1991~
-~19026~^~263~^42.^1^^~1~^^^^^^^^^^^~08/01/1991~
-~19026~^~268~^2126.^0^^~4~^~NC~^^^^^^^^^^~05/01/2011~
-~19026~^~301~^108.^3^13.^~1~^^^^^^^^^^^~08/01/1991~
-~19026~^~304~^67.^1^^~4~^^^^^^^^^^^~08/01/1991~
-~19026~^~305~^227.^1^^~4~^^^^^^^^^^^~08/01/1991~
-~19026~^~306~^339.^1^^~1~^^^^^^^^^^^~08/01/1991~
-~19026~^~307~^193.^2^^~1~^^^^^^^^^^^~08/01/1991~
-~19026~^~318~^25.^0^^~4~^~NC~^^^^^^^^^^~04/01/2002~
-~19026~^~319~^5.^0^^~4~^~NR~^^^^^^^^^^~04/01/2002~
-~19026~^~320~^5.^0^^~4~^~NC~^^^^^^^^^^~04/01/2002~
-~19026~^~321~^6.^0^^~4~^~NR~^^^^^^^^^^~04/01/2002~
-~19026~^~322~^0.^0^^~4~^~FLA~^^^^^^^^^^~05/01/2011~
-~19026~^~324~^0.^0^^~4~^~NR~^^^^^^^^^^~07/01/2012~
-~19026~^~334~^0.^0^^~4~^~FLA~^^^^^^^^^^~05/01/2011~
-~19026~^~337~^0.^0^^~4~^~FLA~^^^^^^^^^^~05/01/2011~
-~19026~^~338~^33.^0^^~4~^~FLA~^^^^^^^^^^~05/01/2011~
-~19026~^~417~^25.^1^^~4~^^^^^^^^^^^~08/01/1991~
-~19026~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~
-~19026~^~432~^25.^1^^~4~^^^^^^^^^^^~08/01/1991~
-~19026~^~435~^25.^0^^~4~^~NC~^^^^^^^^^^~04/01/2002~
-~19026~^~601~^12.^1^^~1~^^^^^^^^^^^~08/01/1991~
-~19027~^~208~^432.^0^^~4~^^^^^^^^^^^~08/01/1991~
-~19027~^~268~^1807.^0^^~4~^^^^^^^^^^^
-~19027~^~301~^80.^1^^~1~^^^^^^^^^^^~08/01/1991~
-~19027~^~304~^88.^1^^~1~^^^^^^^^^^^~08/01/1991~
-~19027~^~305~^262.^1^^~1~^^^^^^^^^^^~08/01/1991~
-~19027~^~306~^377.^1^^~1~^^^^^^^^^^^~08/01/1991~
-~19027~^~307~^328.^1^^~1~^^^^^^^^^^^~08/01/1991~
-~19027~^~318~^12.^1^^~4~^^^^^^^^^^^~08/01/1991~
-~19027~^~319~^1.^0^^~4~^~NC~^^^^^^^^^^~06/01/2002~
-~19027~^~320~^2.^0^^~4~^~NC~^^^^^^^^^^~06/01/2002~
-~19027~^~417~^33.^1^^~1~^^^^^^^^^^^~08/01/1991~
-~19027~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~
-~19027~^~432~^33.^1^^~1~^^^^^^^^^^^~08/01/1991~
-~19027~^~435~^33.^0^^~4~^~NC~^^^^^^^^^^~01/01/2001~
-~19027~^~601~^1.^1^^~1~^^^^^^^^^^^~08/01/1991~
-~19029~^~208~^609.^0^^~4~^~NC~^^^^^^^^^^~08/01/2015~
-~19029~^~262~^4.^0^^~4~^~FLC~^^^^^^^^^^~03/01/2015~
-~19029~^~263~^46.^0^^~4~^~FLC~^^^^^^^^^^~03/01/2015~
-~19029~^~268~^2548.^0^^~4~^~NC~^^^^^^^^^^~08/01/2015~
-~19029~^~301~^0.^0^^~8~^~LC~^^^^^^^^^^~08/01/2015~
-~19029~^~304~^15.^0^^~4~^~FLC~^^^^^^^^^^~03/01/2015~
-~19029~^~305~^54.^0^^~4~^~FLC~^^^^^^^^^^~03/01/2015~
-~19029~^~306~^73.^0^^~4~^~FLC~^^^^^^^^^^~03/01/2015~
-~19029~^~307~^29.^0^^~8~^~LC~^^^^^^^^^^~08/01/2015~
-~19029~^~318~^21.^0^^~4~^~NC~^^^^^^^^^^~03/01/2015~
-~19029~^~319~^6.^0^^~4~^~FLC~^^^^^^^^^^~03/01/2015~
-~19029~^~320~^6.^0^^~4~^~NC~^^^^^^^^^^~03/01/2015~
-~19029~^~321~^1.^0^^~4~^~FLC~^^^^^^^^^^~03/01/2015~
-~19029~^~322~^0.^0^^~4~^~FLC~^^^^^^^^^^~03/01/2015~
-~19029~^~324~^0.^0^^~4~^~FLC~^^^^^^^^^^~08/01/2015~
-~19029~^~334~^0.^0^^~4~^~FLC~^^^^^^^^^^~03/01/2015~
-~19029~^~337~^0.^0^^~4~^~FLC~^^^^^^^^^^~03/01/2015~
-~19029~^~338~^1.^0^^~4~^~FLC~^^^^^^^^^^~03/01/2015~
-~19029~^~417~^6.^0^^~4~^~FLC~^^^^^^^^^^~03/01/2015~
-~19029~^~431~^0.^0^^~4~^~FLC~^^^^^^^^^^~03/01/2015~
-~19029~^~432~^6.^0^^~4~^~FLC~^^^^^^^^^^~03/01/2015~
-~19029~^~435~^6.^0^^~4~^~NC~^^^^^^^^^^~03/01/2015~
-~19029~^~601~^2.^0^^~4~^~FLC~^^^^^^^^^^~03/01/2015~
-~19029~^~636~^40.^0^^~4~^~FLC~^^^^^^^^^^~03/01/2015~
-~19029~^~638~^1.^0^^~4~^~FLC~^^^^^^^^^^~03/01/2015~
-~19029~^~639~^0.^0^^~4~^~FLC~^^^^^^^^^^~03/01/2015~
-~19029~^~641~^2.^0^^~4~^~FLC~^^^^^^^^^^~03/01/2015~
-~19030~^~208~^261.^0^^~4~^~FLC~^^^^^^^^^^~07/01/2015~
-~19030~^~262~^0.^0^^~4~^~FLC~^^^^^^^^^^~07/01/2015~
-~19030~^~263~^0.^0^^~4~^~FLC~^^^^^^^^^^~07/01/2015~
-~19030~^~268~^1090.^0^^~4~^~FLC~^^^^^^^^^^~07/01/2015~
-~19030~^~301~^0.^0^^~8~^~LC~^^^^^^^^^^~08/01/2015~
-~19030~^~304~^1.^0^^~4~^~FLC~^^^^^^^^^^~07/01/2015~
-~19030~^~305~^0.^0^^~4~^~FLC~^^^^^^^^^^~07/01/2015~
-~19030~^~306~^1.^0^^~4~^~FLC~^^^^^^^^^^~07/01/2015~
-~19030~^~307~^0.^0^^~8~^~LC~^^^^^^^^^^~08/01/2015~
-~19030~^~318~^0.^0^^~4~^~FLC~^^^^^^^^^^~07/01/2015~
-~19030~^~319~^0.^0^^~4~^~FLC~^^^^^^^^^^~07/01/2015~
-~19030~^~320~^0.^0^^~4~^~NC~^^^^^^^^^^~07/01/2015~
-~19030~^~321~^0.^0^^~4~^~FLC~^^^^^^^^^^~07/01/2015~
-~19030~^~322~^0.^0^^~4~^~FLC~^^^^^^^^^^~07/01/2015~
-~19030~^~324~^0.^0^^~4~^~FLC~^^^^^^^^^^~07/01/2015~
-~19030~^~334~^0.^0^^~4~^~FLC~^^^^^^^^^^~07/01/2015~
-~19030~^~337~^0.^0^^~4~^~FLC~^^^^^^^^^^~07/01/2015~
-~19030~^~338~^0.^0^^~4~^~FLC~^^^^^^^^^^~07/01/2015~
-~19030~^~417~^0.^0^^~4~^~FLC~^^^^^^^^^^~07/01/2015~
-~19030~^~431~^0.^0^^~4~^~FLC~^^^^^^^^^^~07/01/2015~
-~19030~^~432~^0.^0^^~4~^~FLC~^^^^^^^^^^~07/01/2015~
-~19030~^~435~^0.^0^^~4~^~NC~^^^^^^^^^^~07/01/2015~
-~19030~^~601~^0.^0^^~4~^~FLC~^^^^^^^^^^~07/01/2015~
-~19031~^~208~^506.^0^^~4~^~NC~^^^^^^^^^^~03/01/2003~
-~19031~^~262~^0.^0^^~4~^~NR~^^^^^^^^^^~04/01/2007~
-~19031~^~263~^0.^0^^~4~^~NR~^^^^^^^^^^~04/01/2007~
-~19031~^~268~^2117.^0^^~4~^~NC~^^^^^^^^^^~03/01/2003~
-~19031~^~301~^54.^1^^~1~^~A~^^^^^^^^^^~06/01/1996~
-~19031~^~304~^118.^1^^~1~^~A~^^^^^^^^^^~06/01/1996~
-~19031~^~305~^262.^1^^~1~^~A~^^^^^^^^^^~06/01/1996~
-~19031~^~306~^328.^1^^~1~^~A~^^^^^^^^^^~06/01/1996~
-~19031~^~307~^413.^1^^~1~^~A~^^^^^^^^^^~06/01/1996~
-~19031~^~318~^0.^0^^~1~^~AS~^^^^^^^^^^~03/01/2003~
-~19031~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2002~
-~19031~^~320~^0.^0^^~1~^~AS~^^^^^^^^^^~03/01/2003~
-~19031~^~321~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2003~
-~19031~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2003~
-~19031~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2009~
-~19031~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2003~
-~19031~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2003~
-~19031~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2003~
-~19031~^~417~^38.^1^^~1~^~A~^^^^^^^^^^~06/01/1996~
-~19031~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~
-~19031~^~432~^38.^1^^~1~^~A~^^^^^^^^^^~06/01/1996~
-~19031~^~435~^38.^0^^~4~^~NC~^^^^^^^^^^~04/01/2007~
-~19031~^~601~^0.^0^^~1~^^^^^^^^^^^~08/01/1991~
-~19031~^~636~^25.^0^^~1~^^^^^^^^^^^~08/01/1991~
-~19034~^~208~^387.^0^^~4~^~NC~^^^^^^^^^^~03/01/2006~
-~19034~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2003~
-~19034~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2003~
-~19034~^~268~^1618.^0^^~4~^~NC~^^^^^^^^^^~07/01/2013~
-~19034~^~301~^7.^4^0.^~1~^~A~^^^1^6.^7.^3^6.^6.^~2, 3~^~09/01/2004~
-~19034~^~304~^144.^4^2.^~1~^~A~^^^1^136.^149.^3^134.^153.^~2, 3~^~09/01/2004~
-~19034~^~305~^358.^4^5.^~1~^~A~^^^1^342.^368.^3^338.^376.^~2, 3~^~09/01/2004~
-~19034~^~306~^329.^4^2.^~1~^~A~^^^1^324.^335.^3^321.^336.^~2, 3~^~09/01/2004~
-~19034~^~307~^8.^4^0.^~1~^~A~^^^1^7.^11.^3^5.^10.^~2, 3~^~09/01/2004~
-~19034~^~318~^196.^0^^~4~^~NC~^^^^^^^^^^~06/01/2013~
-~19034~^~319~^0.^0^^~4~^~BNA~^~20014~^^^^^^^^^~03/01/2003~
-~19034~^~320~^10.^0^^~4~^~NC~^^^^^^^^^^~03/01/2006~
-~19034~^~321~^89.^0^^~4~^~BNA~^~20014~^^^^^^^^^~03/01/2003~
-~19034~^~322~^58.^0^^~4~^~BNA~^~20014~^^^^^^^^^~03/01/2003~
-~19034~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2009~
-~19034~^~334~^0.^0^^~4~^~BNA~^~20014~^^^^^^^^^~03/01/2003~
-~19034~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2003~
-~19034~^~338~^1450.^0^^~4~^~BFSN~^~20014~^^^^^^^^^~03/01/2003~
-~19034~^~417~^31.^4^2.^~1~^~A~^^^1^25.^38.^3^22.^40.^~2, 3~^~09/01/2004~
-~19034~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~
-~19034~^~432~^31.^0^^~4~^~NR~^^^^^^^^^^~02/01/2005~
-~19034~^~435~^31.^0^^~4~^~NC~^^^^^^^^^^~03/01/2006~
-~19034~^~601~^0.^1^^~4~^^^^^^^^^^^~08/01/1991~
-~19035~^~208~^583.^0^^~4~^~NC~^^^^^^^^^^~07/01/2007~
-~19035~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2006~
-~19035~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2006~
-~19035~^~268~^2440.^0^^~4~^~NC~^^^^^^^^^^~07/01/2007~
-~19035~^~301~^4.^6^0.^~1~^~A~^^^1^3.^4.^5^3.^4.^~2, 3~^~05/01/2006~
-~19035~^~304~^79.^6^1.^~1~^~A~^^^1^75.^84.^5^75.^83.^~2, 3~^~05/01/2006~
-~19035~^~305~^199.^6^4.^~1~^~A~^^^1^185.^212.^5^188.^210.^~2, 3~^~05/01/2006~
-~19035~^~306~^182.^6^4.^~1~^~A~^^^1^167.^201.^5^170.^194.^~2, 3~^~05/01/2006~
-~19035~^~307~^909.^0^^~8~^~LC~^^^^^^^^^^~07/01/2017~
-~19035~^~318~^154.^0^^~4~^~NC~^^^^^^^^^^~06/01/2013~
-~19035~^~319~^0.^0^^~4~^~BNA~^^^^^^^^^^~05/01/2006~
-~19035~^~320~^8.^0^^~4~^~NC~^^^^^^^^^^~07/01/2007~
-~19035~^~321~^70.^0^^~4~^~BNA~^^^^^^^^^^~03/01/2003~
-~19035~^~322~^46.^0^^~4~^~BNA~^^^^^^^^^^~03/01/2003~
-~19035~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2009~
-~19035~^~334~^0.^0^^~4~^~BNA~^^^^^^^^^^~03/01/2003~
-~19035~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2006~
-~19035~^~338~^829.^0^^~4~^~O~^^^^^^^^^^~05/01/2006~
-~19035~^~417~^25.^6^0.^~1~^~A~^^^1^23.^28.^5^23.^27.^~2, 3~^~05/01/2006~
-~19035~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~
-~19035~^~432~^25.^6^0.^~1~^~A~^^^1^23.^28.^5^23.^27.^^~07/01/2007~
-~19035~^~435~^25.^0^^~4~^~NC~^^^^^^^^^^~07/01/2007~
-~19035~^~601~^0.^6^0.^~1~^^^^^^^^^^^~08/01/1991~
-~19036~^~208~^384.^0^^~4~^~NC~^^^^^^^^^^~08/01/1991~
-~19036~^~262~^0.^0^^~4~^~BFSN~^~19034~^^^^^^^^^~03/01/2003~
-~19036~^~263~^0.^0^^~4~^~BFSN~^~19034~^^^^^^^^^~03/01/2003~
-~19036~^~268~^1607.^0^^~4~^^^^^^^^^^^~01/01/2007~
-~19036~^~301~^9.^3^1.^~1~^^^^^^^^^^^~08/01/1991~
-~19036~^~304~^159.^1^^~4~^^^^^^^^^^^~08/01/1991~
-~19036~^~305~^277.^1^^~4~^^^^^^^^^^^~08/01/1991~
-~19036~^~306~^327.^3^28.^~1~^^^^^^^^^^^~08/01/1991~
-~19036~^~307~^288.^4^55.^~1~^^^^^^^^^^^~08/01/1991~
-~19036~^~318~^72.^3^28.^~1~^^^^^^^^^^^~08/01/1991~
-~19036~^~319~^0.^0^^~4~^~BNA~^~19034~^^^^^^^^^~03/01/2003~
-~19036~^~320~^4.^0^^~4~^~NC~^^^^^^^^^^~03/01/2003~
-~19036~^~321~^33.^0^^~4~^~BNA~^~19034~^^^^^^^^^~03/01/2003~
-~19036~^~322~^21.^0^^~4~^~BNA~^~19034~^^^^^^^^^~03/01/2003~
-~19036~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2009~
-~19036~^~334~^0.^0^^~4~^~BNA~^~19034~^^^^^^^^^~03/01/2003~
-~19036~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2003~
-~19036~^~338~^537.^0^^~4~^~O~^^^^^^^^^^~03/01/2003~
-~19036~^~417~^18.^1^^~4~^^^^^^^^^^^~08/01/1991~
-~19036~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~
-~19036~^~432~^18.^1^^~4~^^^^^^^^^^^~03/01/2003~
-~19036~^~435~^18.^0^^~4~^~NC~^^^^^^^^^^~04/01/2007~
-~19036~^~601~^0.^1^^~4~^^^^^^^^^^^~08/01/1991~
-~19038~^~208~^400.^0^^~4~^~NC~^^^^^^^^^^~08/01/1991~
-~19038~^~262~^0.^0^^~4~^~FLM~^^^^^^^^^^~03/01/2003~
-~19038~^~263~^0.^0^^~4~^~FLM~^^^^^^^^^^~03/01/2003~
-~19038~^~268~^1674.^0^^~4~^^^^^^^^^^^~03/01/2005~
-~19038~^~301~^66.^14^4.^~1~^^^^^^^^^^^~08/01/1991~
-~19038~^~304~^80.^14^3.^~1~^^^^^^^^^^^~08/01/1991~
-~19038~^~305~^127.^11^4.^~1~^^^^^^^^^^^~08/01/1991~
-~19038~^~306~^355.^15^12.^~1~^^^^^^^^^^^~08/01/1991~
-~19038~^~307~^177.^0^^~8~^~LC~^^^^^^^^^^~06/01/2013~
-~19038~^~318~^78.^0^^~4~^~NC~^^^^^^^^^^~02/01/2009~
-~19038~^~319~^0.^0^^~4~^~FLM~^^^^^^^^^^~03/01/2003~
-~19038~^~320~^4.^0^^~4~^~NC~^^^^^^^^^^~02/01/2009~
-~19038~^~321~^35.^0^^~4~^~FLM~^^^^^^^^^^~03/01/2003~
-~19038~^~322~^23.^0^^~4~^~FLM~^^^^^^^^^^~03/01/2003~
-~19038~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2009~
-~19038~^~334~^0.^0^^~4~^~FLM~^^^^^^^^^^~03/01/2003~
-~19038~^~337~^0.^0^^~4~^~FLM~^^^^^^^^^^~03/01/2003~
-~19038~^~338~^580.^0^^~4~^~FLM~^^^^^^^^^^~03/01/2003~
-~19038~^~417~^16.^1^^~4~^^^^^^^^^^^~08/01/1991~
-~19038~^~431~^0.^0^^~4~^~FLM~^^^^^^^^^^~03/01/2003~
-~19038~^~432~^16.^1^^~4~^^^^^^^^^^^~03/01/2003~
-~19038~^~435~^16.^0^^~4~^~NC~^^^^^^^^^^~02/01/2009~
-~19038~^~601~^0.^1^^~1~^^^^^^^^^^^~08/01/1991~
-~19039~^~208~^431.^0^^~4~^~NC~^^^^^^^^^^~08/01/1991~
-~19039~^~262~^0.^0^^~4~^~FLM~^^^^^^^^^^~03/01/2003~
-~19039~^~263~^0.^0^^~4~^~FLM~^^^^^^^^^^~03/01/2003~
-~19039~^~268~^1803.^0^^~4~^^^^^^^^^^^~03/01/2005~
-~19039~^~301~^43.^2^^~1~^^^^^^^^^^^~08/01/1991~
-~19039~^~304~^35.^1^^~1~^^^^^^^^^^^~08/01/1991~
-~19039~^~305~^83.^1^^~1~^^^^^^^^^^^~08/01/1991~
-~19039~^~306~^109.^1^^~1~^^^^^^^^^^^~08/01/1991~
-~19039~^~307~^206.^2^^~1~^^^^^^^^^^^~08/01/1991~
-~19039~^~318~^8.^0^^~4~^~NC~^^^^^^^^^^~02/01/2009~
-~19039~^~319~^2.^0^^~4~^~FLM~^^^^^^^^^^~03/01/2003~
-~19039~^~320~^2.^0^^~4~^~NC~^^^^^^^^^^~02/01/2009~
-~19039~^~321~^1.^0^^~4~^~FLM~^^^^^^^^^^~03/01/2003~
-~19039~^~322~^0.^0^^~4~^~FLM~^^^^^^^^^^~03/01/2003~
-~19039~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2009~
-~19039~^~334~^0.^0^^~4~^~FLM~^^^^^^^^^^~03/01/2003~
-~19039~^~337~^0.^0^^~4~^~FLM~^^^^^^^^^^~03/01/2003~
-~19039~^~338~^0.^0^^~4~^~FLM~^^^^^^^^^^~03/01/2003~
-~19039~^~417~^5.^0^^~4~^~FLM~^^^^^^^^^^~03/01/2003~
-~19039~^~431~^0.^0^^~4~^~FLM~^^^^^^^^^^~03/01/2003~
-~19039~^~432~^5.^0^^~4~^~FLM~^^^^^^^^^^~03/01/2003~
-~19039~^~435~^5.^0^^~4~^~NC~^^^^^^^^^^~02/01/2009~
-~19039~^~601~^0.^0^^~4~^~NR~^^^^^^^^^^~05/01/2013~
-~19040~^~208~^526.^0^^~4~^~NC~^^^^^^^^^^~08/01/1991~
-~19040~^~262~^0.^0^^~4~^~FLA~^^^^^^^^^^~05/01/2013~
-~19040~^~263~^0.^0^^~4~^~FLA~^^^^^^^^^^~05/01/2013~
-~19040~^~268~^2203.^0^^~4~^~NC~^^^^^^^^^^~05/01/2013~
-~19040~^~301~^113.^11^11.^~1~^^^^^^^^^^^~08/01/1991~
-~19040~^~304~^91.^6^5.^~1~^^^^^^^^^^^~08/01/1991~
-~19040~^~305~^361.^6^36.^~1~^^^^^^^^^^^~08/01/1991~
-~19040~^~306~^261.^8^23.^~1~^^^^^^^^^^^~08/01/1991~
-~19040~^~307~^889.^10^73.^~1~^^^^^^^^^^^~08/01/1991~
-~19040~^~318~^140.^0^^~4~^~NC~^^^^^^^^^^~05/01/2013~
-~19040~^~319~^1.^0^^~4~^~FLA~^^^^^^^^^^~05/01/2013~
-~19040~^~320~^8.^0^^~4~^~NC~^^^^^^^^^^~05/01/2013~
-~19040~^~321~^62.^0^^~4~^~FLA~^^^^^^^^^^~05/01/2013~
-~19040~^~322~^40.^0^^~4~^~FLA~^^^^^^^^^^~05/01/2013~
-~19040~^~324~^0.^0^^~4~^~NR~^^^^^^^^^^~03/01/2009~
-~19040~^~334~^0.^0^^~4~^~FLA~^^^^^^^^^^~05/01/2013~
-~19040~^~337~^0.^0^^~4~^~FLA~^^^^^^^^^^~05/01/2013~
-~19040~^~338~^1002.^0^^~4~^~FLA~^^^^^^^^^^~05/01/2013~
-~19040~^~417~^11.^1^^~4~^^^^^^^^^^^~08/01/1991~
-~19040~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~
-~19040~^~432~^11.^1^^~4~^^^^^^^^^^^~08/01/1991~
-~19040~^~435~^11.^0^^~4~^~NC~^^^^^^^^^^~03/01/2009~
-~19040~^~601~^11.^5^2.^~1~^^^^^^^^^^^~08/01/1991~
-~19041~^~208~^544.^0^^~4~^~NC~^^^^^^^^^^~04/01/2007~
-~19041~^~262~^0.^0^^~4~^~FLA~^^^^^^^^^^~03/01/2003~
-~19041~^~263~^0.^0^^~4~^~FLA~^^^^^^^^^^~03/01/2003~
-~19041~^~268~^2276.^0^^~4~^~NC~^^^^^^^^^^~04/01/2007~
-~19041~^~301~^30.^21^2.^~1~^^^^^^^^^^^~08/01/1991~
-~19041~^~304~^11.^21^0.^~1~^^^^^^^^^^^~08/01/1991~
-~19041~^~305~^85.^18^1.^~1~^^^^^^^^^^^~08/01/1991~
-~19041~^~306~^127.^24^5.^~1~^^^^^^^^^^^~08/01/1991~
-~19041~^~307~^1818.^0^^~8~^~LC~^^^^^^^^^^~07/01/2010~
-~19041~^~318~^40.^0^^~4~^~NC~^^^^^^^^^^~03/01/2003~
-~19041~^~319~^12.^0^^~4~^~FLA~^^^^^^^^^^~03/01/2003~
-~19041~^~320~^12.^0^^~4~^~NC~^^^^^^^^^^~03/01/2003~
-~19041~^~321~^0.^0^^~4~^~FLA~^^^^^^^^^^~03/01/2003~
-~19041~^~322~^0.^0^^~4~^~FLA~^^^^^^^^^^~03/01/2003~
-~19041~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2009~
-~19041~^~334~^0.^0^^~4~^~FLA~^^^^^^^^^^~03/01/2003~
-~19041~^~337~^0.^0^^~4~^~FLA~^^^^^^^^^^~03/01/2003~
-~19041~^~338~^0.^0^^~4~^~FLA~^^^^^^^^^^~03/01/2003~
-~19041~^~417~^0.^1^^~4~^^^^^^^^^^^~08/01/1991~
-~19041~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~
-~19041~^~432~^0.^1^^~4~^^^^^^^^^^^~03/01/2003~
-~19041~^~435~^0.^0^^~4~^~NC~^^^^^^^^^^~04/01/2007~
-~19041~^~601~^95.^15^6.^~1~^^^^^^^^^^^~08/01/1991~
-~19042~^~208~^487.^0^^~4~^~NC~^^^^^^^^^^~04/01/2015~
-~19042~^~262~^0.^0^^~4~^~NR~^^^^^^^^^^~05/01/2011~
-~19042~^~263~^0.^0^^~4~^~NR~^^^^^^^^^^~05/01/2011~
-~19042~^~268~^2038.^0^^~4~^~NC~^^^^^^^^^^~04/01/2015~
-~19042~^~301~^32.^13^2.^~1~^~A~^^^1^17.^83.^10^25.^38.^~2, 3~^~04/01/2015~
-~19042~^~304~^58.^13^2.^~1~^~A~^^^1^45.^66.^7^53.^63.^~2, 3~^~05/01/2013~
-~19042~^~305~^145.^13^6.^~1~^~A~^^^1^114.^186.^7^129.^160.^~2, 3~^~05/01/2013~
-~19042~^~306~^1186.^13^56.^~1~^~A~^^^1^864.^1390.^7^1051.^1320.^~2, 3~^~04/01/2015~
-~19042~^~307~^545.^13^17.^~1~^~A~^^^1^443.^934.^9^506.^583.^~2, 3~^~04/01/2015~
-~19042~^~318~^393.^0^^~4~^~NC~^^^^^^^^^^~04/01/2015~
-~19042~^~319~^0.^0^^~4~^~NR~^^^^^^^^^^~05/01/2013~
-~19042~^~320~^20.^0^^~4~^~NC~^^^^^^^^^^~04/01/2015~
-~19042~^~321~^203.^7^17.^~1~^~A~^^^1^124.^250.^4^154.^252.^~2, 3~^~04/01/2015~
-~19042~^~322~^5.^7^0.^~1~^~A~^^^1^0.^8.^4^2.^7.^~1, 2, 3~^~05/01/2013~
-~19042~^~324~^0.^0^^~4~^~NR~^^^^^^^^^^~05/01/2011~
-~19042~^~334~^60.^7^6.^~1~^~A~^^^1^44.^81.^3^38.^82.^~2, 3~^~04/01/2015~
-~19042~^~337~^130.^7^20.^~1~^~A~^^^1^66.^304.^4^75.^184.^~2, 3~^~04/01/2015~
-~19042~^~338~^151.^7^13.^~1~^~A~^^^1^107.^202.^4^114.^188.^~2, 3~^~04/01/2015~
-~19042~^~417~^64.^3^7.^~1~^~A~^^^1^42.^79.^1^-35.^163.^~2, 3~^~04/01/2015~
-~19042~^~431~^0.^0^^~4~^~NR~^^^^^^^^^^~05/01/2011~
-~19042~^~432~^64.^0^^~4~^~NR~^^^^^^^^^^~04/01/2015~
-~19042~^~435~^64.^0^^~4~^~NC~^^^^^^^^^^~04/01/2015~
-~19042~^~601~^0.^0^^~4~^~NR~^^^^^^^^^^~04/01/2015~
-~19043~^~208~^531.^0^^~4~^~NC~^^^^^^^^^^~08/01/1991~
-~19043~^~268~^2222.^0^^~4~^^^^^^^^^^^
-~19043~^~301~^72.^39^2.^~1~^^^^^^^^^^^~08/01/1991~
-~19043~^~304~^74.^35^3.^~1~^^^^^^^^^^^~08/01/1991~
-~19043~^~305~^176.^35^7.^~1~^^^^^^^^^^^~08/01/1991~
-~19043~^~306~^1331.^37^20.^~1~^^^^^^^^^^^~08/01/1991~
-~19043~^~307~^549.^0^^~4~^~T~^^^^^^^^^^~05/01/2011~
-~19043~^~318~^170.^0^^~4~^~NC~^^^^^^^^^^~04/01/2002~
-~19043~^~319~^6.^0^^~4~^~NR~^^^^^^^^^^~04/01/2002~
-~19043~^~320~^14.^0^^~4~^~NC~^^^^^^^^^^~04/01/2002~
-~19043~^~321~^90.^0^^~4~^~NR~^^^^^^^^^^~04/01/2002~
-~19043~^~417~^62.^4^12.^~1~^^^^^^^^^^^~08/01/1991~
-~19043~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~
-~19043~^~432~^62.^4^12.^~1~^^^^^^^^^^^~08/01/1991~
-~19043~^~435~^62.^0^^~4~^~NC~^^^^^^^^^^~04/01/2002~
-~19043~^~601~^7.^5^0.^~1~^^^^^^^^^^^~08/01/1991~
-~19045~^~208~^502.^0^^~4~^~NC~^^^^^^^^^^~03/01/2008~
-~19045~^~262~^0.^0^^~4~^~FLA~^^^^^^^^^^~03/01/2003~
-~19045~^~263~^0.^0^^~4~^~FLA~^^^^^^^^^^~03/01/2003~
-~19045~^~268~^2102.^0^^~4~^~NC~^^^^^^^^^^~03/01/2008~
-~19045~^~301~^29.^4^1.^~1~^~A~^^^1^26.^32.^3^24.^33.^~2, 3~^~03/01/2008~
-~19045~^~304~^45.^4^0.^~1~^~A~^^^1^44.^47.^3^41.^47.^~2, 3~^~03/01/2008~
-~19045~^~305~^129.^4^3.^~1~^~A~^^^1^122.^137.^3^118.^139.^~2, 3~^~03/01/2008~
-~19045~^~306~^760.^4^22.^~1~^~A~^^^1^723.^825.^3^688.^832.^~2, 3~^~03/01/2008~
-~19045~^~307~^450.^0^^~8~^~LC~^^^^^^^^^^~07/01/2013~
-~19045~^~318~^0.^1^^~4~^^^^^^^^^^^~03/01/2008~
-~19045~^~319~^0.^0^^~4~^~FLA~^^^^^^^^^^~03/01/2003~
-~19045~^~320~^0.^0^^~4~^~NC~^^^^^^^^^^~07/01/2008~
-~19045~^~321~^0.^0^^~4~^~FLA~^^^^^^^^^^~03/01/2003~
-~19045~^~322~^0.^0^^~4~^~FLA~^^^^^^^^^^~03/01/2003~
-~19045~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2009~
-~19045~^~334~^0.^0^^~4~^~FLA~^^^^^^^^^^~03/01/2003~
-~19045~^~337~^0.^0^^~4~^~FLA~^^^^^^^^^^~03/01/2003~
-~19045~^~338~^0.^0^^~4~^~FLA~^^^^^^^^^^~03/01/2003~
-~19045~^~417~^27.^0^^~4~^~FLA~^^^^^^^^^^~03/01/2003~
-~19045~^~431~^0.^0^^~4~^~FLA~^^^^^^^^^^~03/01/2003~
-~19045~^~432~^27.^0^^~4~^~FLA~^^^^^^^^^^~03/01/2003~
-~19045~^~435~^27.^0^^~4~^~NC~^^^^^^^^^^~07/01/2008~
-~19045~^~601~^0.^1^^~1~^^^^^^^^^^^~08/01/1991~
-~19046~^~208~^547.^0^^~4~^~NC~^^^^^^^^^^~08/01/1991~
-~19046~^~268~^2289.^0^^~4~^^^^^^^^^^^
-~19046~^~301~^64.^1^^~1~^^^^^^^^^^^~08/01/1991~
-~19046~^~304~^55.^1^^~4~^^^^^^^^^^^~08/01/1991~
-~19046~^~305~^169.^1^^~4~^^^^^^^^^^^~08/01/1991~
-~19046~^~306~^496.^1^^~4~^^^^^^^^^^^~08/01/1991~
-~19046~^~307~^541.^0^^~4~^~T~^^^^^^^^^^~05/01/2011~
-~19046~^~318~^755.^1^^~4~^^^^^^^^^^^~08/01/1991~
-~19046~^~320~^323.^0^^~4~^~NR~^^^^^^^^^^~07/01/2012~
-~19046~^~417~^23.^1^^~4~^^^^^^^^^^^~08/01/1991~
-~19046~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~
-~19046~^~432~^23.^1^^~4~^^^^^^^^^^^~08/01/1991~
-~19046~^~435~^23.^0^^~4~^~NC~^^^^^^^^^^~01/01/2001~
-~19046~^~601~^3.^1^^~1~^^^^^^^^^^^~08/01/1991~
-~19047~^~208~^384.^0^^~4~^~NC~^^^^^^^^^^~05/01/2013~
-~19047~^~262~^0.^0^^~4~^~FLA~^^^^^^^^^^~03/01/2003~
-~19047~^~263~^0.^0^^~4~^~FLA~^^^^^^^^^^~03/01/2003~
-~19047~^~268~^1608.^0^^~4~^~NC~^^^^^^^^^^~12/01/2014~
-~19047~^~301~^27.^21^0.^~1~^~A~^^^2^21.^32.^6^26.^27.^~2, 3~^~05/01/2013~
-~19047~^~304~^29.^21^0.^~1~^~A~^^^2^24.^36.^4^27.^31.^~2, 3~^~04/01/2005~
-~19047~^~305~^128.^21^1.^~1~^~A~^^^2^110.^150.^6^124.^131.^~2, 3~^~07/01/2014~
-~19047~^~306~^223.^21^3.^~1~^~A~^^^2^153.^432.^4^213.^231.^~2, 3~^~12/01/2014~
-~19047~^~307~^1240.^21^23.^~1~^~A~^^^2^849.^1640.^8^1186.^1293.^~2, 3~^~12/01/2014~
-~19047~^~318~^0.^15^0.^~1~^^^^^^^^^^^~05/01/2013~
-~19047~^~319~^0.^0^^~4~^~FLA~^^^^^^^^^^~03/01/2003~
-~19047~^~320~^0.^0^^~4~^~NC~^^^^^^^^^^~07/01/2007~
-~19047~^~321~^0.^0^^~4~^~FLA~^^^^^^^^^^~03/01/2003~
-~19047~^~322~^0.^0^^~4~^~FLA~^^^^^^^^^^~03/01/2003~
-~19047~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2009~
-~19047~^~334~^0.^0^^~4~^~FLA~^^^^^^^^^^~03/01/2003~
-~19047~^~337~^0.^0^^~4~^~FLA~^^^^^^^^^^~03/01/2003~
-~19047~^~338~^9.^0^^~4~^~FLA~^^^^^^^^^^~03/01/2003~
-~19047~^~417~^166.^4^0.^~1~^~A~^^^2^155.^236.^1^164.^167.^~2, 3~^~07/01/2014~
-~19047~^~431~^0.^0^^~4~^~NR~^^^^^^^^^^~07/01/2014~
-~19047~^~432~^166.^0^^~4~^~NR~^^^^^^^^^^~07/01/2014~
-~19047~^~435~^166.^0^^~4~^~NC~^^^^^^^^^^~07/01/2014~
-~19047~^~601~^0.^13^0.^~1~^^^^^^^^^^^~08/01/1991~
-~19048~^~208~^457.^0^^~4~^~NC~^^^^^^^^^^~05/01/2013~
-~19048~^~262~^8.^0^^~4~^~FLC~^^^^^^^^^^~05/01/2013~
-~19048~^~263~^87.^0^^~4~^~FLC~^^^^^^^^^^~05/01/2013~
-~19048~^~268~^1914.^0^^~4~^~NC~^^^^^^^^^^~05/01/2013~
-~19048~^~301~^74.^1^^~1~^^^^^^^^^^^~08/01/1991~
-~19048~^~304~^41.^1^^~4~^^^^^^^^^^^~08/01/1991~
-~19048~^~305~^145.^1^^~4~^^^^^^^^^^^~08/01/1991~
-~19048~^~306~^225.^1^^~4~^^^^^^^^^^^~08/01/1991~
-~19048~^~307~^569.^1^^~4~^^^^^^^^^^^~08/01/1991~
-~19048~^~318~^0.^0^^~4~^~NC~^^^^^^^^^^~05/01/2013~
-~19048~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2002~
-~19048~^~320~^0.^0^^~4~^~NC~^^^^^^^^^^~05/01/2013~
-~19048~^~321~^0.^0^^~4~^~FLC~^^^^^^^^^^~05/01/2013~
-~19048~^~322~^0.^0^^~4~^~FLC~^^^^^^^^^^~05/01/2013~
-~19048~^~324~^0.^0^^~4~^~NR~^^^^^^^^^^~05/01/2013~
-~19048~^~334~^0.^0^^~4~^~FLC~^^^^^^^^^^~05/01/2013~
-~19048~^~337~^0.^0^^~4~^~FLC~^^^^^^^^^^~05/01/2013~
-~19048~^~338~^9.^0^^~4~^~FLC~^^^^^^^^^^~05/01/2013~
-~19048~^~417~^9.^1^^~4~^^^^^^^^^^^~08/01/1991~
-~19048~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~
-~19048~^~432~^9.^0^^~4~^~FLC~^^^^^^^^^^~08/01/1991~
-~19048~^~435~^9.^0^^~4~^~NC~^^^^^^^^^^~01/01/2001~
-~19048~^~601~^0.^1^^~4~^^^^^^^^^^^~08/01/1991~
-~19049~^~208~^463.^0^^~9~^~MC~^^^^^^^^^^~05/01/2013~
-~19049~^~262~^0.^0^^~4~^~FLC~^^^^^^^^^^~05/01/2013~
-~19049~^~263~^0.^0^^~4~^~FLC~^^^^^^^^^^~05/01/2013~
-~19049~^~268~^1937.^0^^~9~^~MC~^^^^^^^^^^~05/01/2013~
-~19049~^~301~^197.^0^^~9~^~MC~^^^^^^^^^^~05/01/2013~
-~19049~^~304~^22.^1^^~4~^^^^^^^^^^^~08/01/1991~
-~19049~^~305~^143.^1^^~4~^^^^^^^^^^^~08/01/1991~
-~19049~^~306~^130.^1^^~1~^^^^^^^^^^^~08/01/1991~
-~19049~^~307~^1117.^3^53.^~1~^^^^^^^^^^^~05/01/2013~
-~19049~^~318~^213.^0^^~4~^~NC~^^^^^^^^^^~05/01/2013~
-~19049~^~319~^55.^0^^~4~^~FLC~^^^^^^^^^^~05/01/2013~
-~19049~^~320~^56.^0^^~4~^~NC~^^^^^^^^^^~05/01/2013~
-~19049~^~321~^18.^0^^~4~^~FLC~^^^^^^^^^^~05/01/2013~
-~19049~^~322~^0.^0^^~4~^~FLC~^^^^^^^^^^~05/01/2013~
-~19049~^~324~^5.^0^^~4~^~NR~^^^^^^^^^^~05/01/2013~
-~19049~^~334~^0.^0^^~4~^~FLC~^^^^^^^^^^~05/01/2013~
-~19049~^~337~^0.^0^^~4~^~FLC~^^^^^^^^^^~05/01/2013~
-~19049~^~338~^5.^0^^~4~^~FLC~^^^^^^^^^^~05/01/2013~
-~19049~^~417~^8.^1^^~4~^^^^^^^^^^^~06/01/2013~
-~19049~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2013~
-~19049~^~432~^8.^1^^~4~^^^^^^^^^^^~06/01/2013~
-~19049~^~435~^8.^0^^~4~^~NC~^^^^^^^^^^~06/01/2013~
-~19049~^~601~^5.^0^^~9~^~MC~^^^^^^^^^^~05/01/2013~
-~19050~^~208~^362.^0^^~4~^~NC~^^^^^^^^^^~08/01/1991~
-~19050~^~268~^1514.^0^^~4~^~NC~^^^^^^^^^^~09/01/2012~
-~19050~^~301~^28.^3^3.^~1~^^^^^^^^^^^~08/01/1991~
-~19050~^~304~^30.^1^^~1~^^^^^^^^^^^~08/01/1991~
-~19050~^~305~^125.^1^^~1~^^^^^^^^^^^~08/01/1991~
-~19050~^~306~^430.^2^^~1~^^^^^^^^^^^~08/01/1991~
-~19050~^~307~^203.^2^^~1~^^^^^^^^^^^~08/01/1991~
-~19050~^~318~^0.^1^^~4~^^^^^^^^^^^~08/01/1991~
-~19050~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2002~
-~19050~^~320~^0.^0^^~4~^~NC~^^^^^^^^^^~06/01/2002~
-~19050~^~417~^54.^1^^~4~^^^^^^^^^^^~08/01/1991~
-~19050~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~
-~19050~^~432~^54.^1^^~4~^^^^^^^^^^^~08/01/1991~
-~19050~^~435~^54.^0^^~4~^~NC~^^^^^^^^^^~01/01/2001~
-~19050~^~601~^0.^1^^~1~^^^^^^^^^^^~08/01/1991~
-~19051~^~208~^387.^0^^~4~^~NC~^^^^^^^^^^~08/01/1991~
-~19051~^~262~^0.^0^^~4~^~FLA~^^^^^^^^^^~03/01/2003~
-~19051~^~263~^0.^0^^~4~^~FLA~^^^^^^^^^^~03/01/2003~
-~19051~^~268~^1620.^0^^~4~^~NC~^^^^^^^^^^~04/01/2015~
-~19051~^~301~^11.^9^1.^~1~^^^^^^^^^^^~08/01/1991~
-~19051~^~304~^131.^2^^~1~^^^^^^^^^^^~08/01/1991~
-~19051~^~305~^360.^2^^~1~^^^^^^^^^^^~08/01/1991~
-~19051~^~306~^290.^6^21.^~1~^^^^^^^^^^^~08/01/1991~
-~19051~^~307~^166.^0^^~8~^~LC~^^^^^^^^^^~07/01/2017~
-~19051~^~318~^0.^0^^~4~^~FLA~^^^^^^^^^^~07/01/2015~
-~19051~^~319~^0.^0^^~4~^~FLA~^^^^^^^^^^~03/01/2003~
-~19051~^~320~^0.^0^^~4~^~NC~^^^^^^^^^^~03/01/2003~
-~19051~^~321~^0.^0^^~4~^~FLA~^^^^^^^^^^~03/01/2003~
-~19051~^~322~^0.^0^^~4~^~FLA~^^^^^^^^^^~03/01/2003~
-~19051~^~324~^0.^0^^~4~^~FLA~^^^^^^^^^^~04/01/2015~
-~19051~^~334~^0.^0^^~4~^~FLA~^^^^^^^^^^~03/01/2003~
-~19051~^~337~^0.^0^^~4~^~FLA~^^^^^^^^^^~03/01/2003~
-~19051~^~338~^0.^0^^~4~^~FLA~^^^^^^^^^^~03/01/2003~
-~19051~^~417~^21.^0^^~4~^~FLA~^^^^^^^^^^~04/01/2015~
-~19051~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~
-~19051~^~432~^21.^0^^~4~^~FLA~^^^^^^^^^^~04/01/2015~
-~19051~^~435~^21.^0^^~4~^~NC~^^^^^^^^^^~04/01/2007~
-~19051~^~601~^0.^1^^~4~^^^^^^^^^^^~08/01/1991~
-~19052~^~208~^380.^0^^~4~^~NC~^^^^^^^^^^~08/01/1991~
-~19052~^~268~^1590.^0^^~4~^^^^^^^^^^^
-~19052~^~301~^11.^4^2.^~1~^^^^^^^^^^^~08/01/1991~
-~19052~^~304~^151.^1^^~1~^^^^^^^^^^^~08/01/1991~
-~19052~^~305~^380.^1^^~1~^^^^^^^^^^^~08/01/1991~
-~19052~^~306~^299.^4^10.^~1~^^^^^^^^^^^~08/01/1991~
-~19052~^~307~^116.^1^^~1~^^^^^^^^^^^~08/01/1991~
-~19052~^~318~^0.^2^^~1~^^^^^^^^^^^~08/01/1991~
-~19052~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2002~
-~19052~^~320~^0.^0^^~4~^~NC~^^^^^^^^^^~06/01/2002~
-~19052~^~417~^21.^1^^~1~^^^^^^^^^^^~08/01/1991~
-~19052~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~
-~19052~^~432~^21.^1^^~1~^^^^^^^^^^^~08/01/1991~
-~19052~^~435~^21.^0^^~4~^~NC~^^^^^^^^^^~01/01/2001~
-~19052~^~601~^0.^1^^~4~^^^^^^^^^^^~08/01/1991~
-~19053~^~208~^392.^0^^~4~^~NC~^^^^^^^^^^~08/01/1991~
-~19053~^~268~^1640.^0^^~4~^^^^^^^^^^^
-~19053~^~301~^12.^6^1.^~1~^^^^^^^^^^^~08/01/1991~
-~19053~^~304~^136.^2^^~1~^^^^^^^^^^^~08/01/1991~
-~19053~^~305~^375.^2^^~1~^^^^^^^^^^^~08/01/1991~
-~19053~^~306~^290.^6^13.^~1~^^^^^^^^^^^~08/01/1991~
-~19053~^~307~^227.^2^^~1~^^^^^^^^^^^~08/01/1991~
-~19053~^~318~^0.^2^^~1~^^^^^^^^^^^~08/01/1991~
-~19053~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2002~
-~19053~^~320~^0.^0^^~4~^~NC~^^^^^^^^^^~06/01/2002~
-~19053~^~417~^18.^2^^~1~^^^^^^^^^^^~08/01/1991~
-~19053~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~
-~19053~^~432~^18.^2^^~1~^^^^^^^^^^^~08/01/1991~
-~19053~^~435~^18.^0^^~4~^~NC~^^^^^^^^^^~01/01/2001~
-~19053~^~601~^0.^1^^~4~^^^^^^^^^^^~08/01/1991~
-~19056~^~208~^472.^0^^~4~^~NC~^^^^^^^^^^~07/01/2014~
-~19056~^~262~^0.^0^^~4~^~FLA~^^^^^^^^^^~07/01/2014~
-~19056~^~263~^0.^0^^~4~^~FLA~^^^^^^^^^^~07/01/2014~
-~19056~^~268~^1976.^0^^~4~^~NC~^^^^^^^^^^~07/01/2014~
-~19056~^~301~^106.^12^2.^~1~^~A~^^^1^75.^132.^6^98.^112.^~2, 3~^~07/01/2014~
-~19056~^~304~^84.^12^1.^~1~^~A~^^^1^58.^90.^5^80.^87.^~2, 3~^~07/01/2014~
-~19056~^~305~^225.^12^4.^~1~^~A~^^^1^155.^242.^5^213.^235.^~2, 3~^~07/01/2014~
-~19056~^~306~^182.^12^3.^~1~^~A~^^^1^157.^204.^5^171.^191.^~2, 3~^~07/01/2014~
-~19056~^~307~^328.^12^10.^~1~^~A~^^^1^184.^515.^8^302.^353.^~2, 3~^~07/01/2014~
-~19056~^~318~^4.^0^^~4~^~NC~^^^^^^^^^^~04/01/2015~
-~19056~^~319~^0.^0^^~4~^~FLA~^^^^^^^^^^~07/01/2014~
-~19056~^~320~^0.^0^^~4~^~NC~^^^^^^^^^^~05/01/2009~
-~19056~^~321~^2.^0^^~4~^~FLA~^^^^^^^^^^~04/01/2015~
-~19056~^~322~^0.^0^^~4~^~FLA~^^^^^^^^^^~05/01/2006~
-~19056~^~324~^0.^0^^~4~^~FLA~^^^^^^^^^^~04/01/2015~
-~19056~^~334~^2.^0^^~4~^~FLA~^^^^^^^^^^~04/01/2015~
-~19056~^~337~^0.^0^^~4~^~FLA~^^^^^^^^^^~07/01/2014~
-~19056~^~338~^5.^0^^~4~^~FLA~^^^^^^^^^^~04/01/2015~
-~19056~^~417~^12.^4^0.^~1~^~A~^^^1^11.^14.^1^1.^23.^~2, 3~^~05/01/2013~
-~19056~^~431~^0.^0^^~4~^~NR~^^^^^^^^^^~07/01/2014~
-~19056~^~432~^12.^4^0.^~1~^~A~^^^1^11.^14.^1^1.^23.^^~07/01/2014~
-~19056~^~435~^12.^0^^~4~^~NC~^^^^^^^^^^~07/01/2014~
-~19056~^~601~^0.^4^0.^~1~^~A~^^^1^0.^0.^3^0.^0.^~1, 2, 3~^~05/01/2009~
-~19056~^~638~^14.^4^0.^~1~^~A~^^^1^13.^15.^3^12.^15.^~2, 3~^~05/01/2006~
-~19056~^~639~^24.^4^0.^~1~^~A~^^^1^22.^25.^3^20.^26.^~2, 3~^~05/01/2006~
-~19056~^~641~^61.^4^1.^~1~^~A~^^^1^56.^64.^3^55.^66.^~2, 3~^~05/01/2006~
-~19057~^~208~^519.^0^^~4~^~NC~^^^^^^^^^^~08/01/2014~
-~19057~^~262~^0.^0^^~4~^~NR~^^^^^^^^^^~05/01/2014~
-~19057~^~263~^0.^0^^~4~^~NR~^^^^^^^^^^~05/01/2014~
-~19057~^~268~^2173.^0^^~4~^~NC~^^^^^^^^^^~08/01/2014~
-~19057~^~301~^137.^12^3.^~1~^~A~^^^1^120.^167.^5^128.^145.^~2, 3~^~07/01/2014~
-~19057~^~304~^75.^12^1.^~1~^~A~^^^1^70.^79.^5^71.^78.^~2, 3~^~05/01/2014~
-~19057~^~305~^252.^12^2.^~1~^~A~^^^1^213.^257.^5^246.^257.^~2, 3~^~07/01/2014~
-~19057~^~306~^223.^12^4.^~1~^~A~^^^1^203.^310.^5^212.^233.^~2, 3~^~07/01/2014~
-~19057~^~307~^691.^12^14.^~1~^~A~^^^1^514.^730.^5^653.^728.^~2, 3~^~07/01/2014~
-~19057~^~318~^112.^0^^~1~^~AS~^^^^^^^^^^~07/01/2014~
-~19057~^~319~^0.^0^^~4~^~NR~^^^^^^^^^^~05/01/2014~
-~19057~^~320~^6.^0^^~1~^~AS~^^^^^^^^^^~07/01/2014~
-~19057~^~321~^35.^6^1.^~1~^~A~^^^1^31.^135.^4^31.^39.^~2, 3~^~07/01/2014~
-~19057~^~322~^8.^6^0.^~1~^~A~^^^1^7.^9.^2^6.^10.^~2, 3~^~05/01/2014~
-~19057~^~324~^0.^0^^~4~^~NR~^^^^^^^^^^~05/01/2014~
-~19057~^~334~^55.^6^2.^~1~^~A~^^^1^50.^103.^2^46.^63.^~2, 3~^~07/01/2014~
-~19057~^~337~^33.^6^2.^~1~^~A~^^^1^14.^218.^4^26.^40.^~2, 3~^~07/01/2014~
-~19057~^~338~^769.^6^10.^~1~^~A~^^^1^483.^889.^3^733.^805.^~2, 3~^~07/01/2014~
-~19057~^~417~^13.^6^0.^~1~^~A~^^^1^8.^14.^2^8.^16.^~2, 3~^~07/01/2014~
-~19057~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~
-~19057~^~432~^13.^6^0.^~1~^~A~^^^1^8.^14.^2^8.^16.^^~07/01/2014~
-~19057~^~435~^13.^0^^~4~^~NC~^^^^^^^^^^~07/01/2014~
-~19057~^~601~^0.^0^^~4~^~NR~^^^^^^^^^^~05/01/2014~
-~19058~^~208~^501.^0^^~4~^~NC~^^^^^^^^^^~02/01/2007~
-~19058~^~268~^2098.^0^^~4~^~NC~^^^^^^^^^^~02/01/2007~
-~19058~^~301~^134.^1^^~1~^~A~^^^^^^^^^^~05/01/2005~
-~19058~^~304~^87.^1^^~1~^~A~^^^^^^^^^^~05/01/2005~
-~19058~^~305~^252.^1^^~1~^~A~^^^^^^^^^^~05/01/2005~
-~19058~^~306~^259.^1^^~1~^~A~^^^^^^^^^^~05/01/2005~
-~19058~^~307~^519.^1^^~1~^~A~^^^^^^^^^^~05/01/2005~
-~19058~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~
-~19059~^~208~^462.^0^^~4~^~NC~^^^^^^^^^^~08/01/1991~
-~19059~^~268~^1933.^0^^~4~^^^^^^^^^^^
-~19059~^~301~^78.^1^^~1~^^^^^^^^^^^~08/01/1991~
-~19059~^~304~^158.^1^^~1~^^^^^^^^^^^~08/01/1991~
-~19059~^~305~^345.^1^^~1~^^^^^^^^^^^~08/01/1991~
-~19059~^~306~^685.^1^^~1~^^^^^^^^^^^~08/01/1991~
-~19059~^~307~^229.^1^^~1~^^^^^^^^^^^~08/01/1991~
-~19059~^~318~^18.^1^^~1~^^^^^^^^^^^~08/01/1991~
-~19059~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2002~
-~19059~^~320~^1.^0^^~4~^~NC~^^^^^^^^^^~06/01/2002~
-~19059~^~417~^71.^1^^~1~^^^^^^^^^^^~08/01/1991~
-~19059~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~
-~19059~^~432~^71.^1^^~1~^^^^^^^^^^^~08/01/1991~
-~19059~^~435~^71.^0^^~4~^~NC~^^^^^^^^^^~01/01/2001~
-~19059~^~601~^0.^1^^~1~^^^^^^^^^^^~08/01/1991~
-~19061~^~208~^442.^0^^~4~^~NC~^^^^^^^^^^~09/01/2012~
-~19061~^~268~^1847.^0^^~4~^~NC~^^^^^^^^^^~09/01/2012~
-~19061~^~301~^57.^0^^~1~^^^^^^^^^^^~08/01/1991~
-~19061~^~304~^96.^0^^~1~^^^^^^^^^^^~08/01/1991~
-~19061~^~305~^186.^0^^~1~^^^^^^^^^^^~08/01/1991~
-~19061~^~306~^709.^0^^~1~^^^^^^^^^^^~08/01/1991~
-~19061~^~307~^95.^0^^~4~^~NR~^^^^^^^^^^~09/01/2012~
-~19061~^~318~^49.^0^^~1~^^^^^^^^^^^~08/01/1991~
-~19061~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2002~
-~19061~^~320~^2.^0^^~4~^~NC~^^^^^^^^^^~06/01/2002~
-~19061~^~417~^42.^0^^~1~^^^^^^^^^^^~08/01/1991~
-~19061~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~
-~19061~^~432~^42.^0^^~1~^^^^^^^^^^^~08/01/1991~
-~19061~^~435~^42.^0^^~4~^~NC~^^^^^^^^^^~01/01/2001~
-~19061~^~601~^0.^0^^~1~^^^^^^^^^^^~08/01/1991~
-~19061~^~636~^80.^0^^~1~^^^^^^^^^^^~08/01/1991~
-~19062~^~208~^484.^0^^~4~^~NC~^^^^^^^^^^~08/01/1991~
-~19062~^~262~^0.^0^^~4~^~FLC~^^^^^^^^^^~05/01/2013~
-~19062~^~263~^0.^0^^~4~^~FLC~^^^^^^^^^^~05/01/2013~
-~19062~^~268~^2024.^0^^~4~^~NC~^^^^^^^^^^~05/01/2013~
-~19062~^~301~^109.^1^^~1~^^^^^^^^^^^~08/01/1991~
-~19062~^~304~^161.^1^^~1~^^^^^^^^^^^~08/01/1991~
-~19062~^~305~^387.^1^^~1~^^^^^^^^^^^~08/01/1991~
-~19062~^~306~^648.^1^^~1~^^^^^^^^^^^~08/01/1991~
-~19062~^~307~^121.^1^^~1~^^^^^^^^^^^~08/01/1991~
-~19062~^~318~^10.^0^^~4~^~NC~^^^^^^^^^^~07/01/2013~
-~19062~^~319~^0.^0^^~4~^~FLC~^^^^^^^^^^~07/01/2013~
-~19062~^~320~^0.^0^^~4~^~NC~^^^^^^^^^^~07/01/2013~
-~19062~^~321~^6.^0^^~4~^~FLC~^^^^^^^^^^~07/01/2013~
-~19062~^~322~^0.^0^^~4~^~FLC~^^^^^^^^^^~05/01/2013~
-~19062~^~324~^0.^0^^~4~^~FLC~^^^^^^^^^^~05/01/2013~
-~19062~^~334~^0.^0^^~4~^~FLC~^^^^^^^^^^~05/01/2013~
-~19062~^~337~^0.^0^^~4~^~FLC~^^^^^^^^^^~05/01/2013~
-~19062~^~338~^6.^0^^~4~^~FLC~^^^^^^^^^^~07/01/2013~
-~19062~^~417~^52.^0^^~4~^~FLC~^^^^^^^^^^~07/01/2013~
-~19062~^~431~^0.^0^^~4~^~FLC~^^^^^^^^^^~07/01/2013~
-~19062~^~432~^52.^0^^~4~^~FLC~^^^^^^^^^^~07/01/2013~
-~19062~^~435~^52.^0^^~4~^~NC~^^^^^^^^^^~07/01/2013~
-~19062~^~601~^4.^1^^~1~^^^^^^^^^^^~08/01/1991~
-~19062~^~638~^0.^0^^~4~^~FLC~^^^^^^^^^^~07/01/2013~
-~19062~^~639~^3.^0^^~4~^~FLC~^^^^^^^^^^~07/01/2013~
-~19062~^~641~^31.^0^^~4~^~FLC~^^^^^^^^^^~07/01/2013~
-~19063~^~208~^480.^0^^~4~^~NC~^^^^^^^^^^~08/01/1991~
-~19063~^~268~^2008.^0^^~4~^^^^^^^^^^^
-~19063~^~301~^155.^13^6.^~1~^^^^^^^^^^^~08/01/1991~
-~19063~^~304~^88.^13^2.^~1~^^^^^^^^^^^~08/01/1991~
-~19063~^~305~^239.^13^13.^~1~^^^^^^^^^^^~08/01/1991~
-~19063~^~306~^217.^13^10.^~1~^^^^^^^^^^^~08/01/1991~
-~19063~^~307~^787.^16^51.^~1~^^^^^^^^^^^~08/01/1991~
-~19063~^~318~^905.^8^119.^~1~^^^^^^^^^^^~08/01/1991~
-~19063~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2002~
-~19063~^~320~^45.^0^^~4~^~NC~^^^^^^^^^^~06/01/2002~
-~19063~^~417~^21.^1^^~4~^^^^^^^^^^^~08/01/1991~
-~19063~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~
-~19063~^~432~^21.^1^^~4~^^^^^^^^^^^~08/01/1991~
-~19063~^~435~^21.^0^^~4~^~NC~^^^^^^^^^^~01/01/2001~
-~19063~^~601~^0.^0^^~4~^~NR~^^^^^^^^^^~05/01/2013~
-~19064~^~208~^387.^0^^~4~^~NC~^^^^^^^^^^~11/01/2003~
-~19064~^~262~^7.^1^^~1~^~A~^^^^^^^^^^~11/01/2003~
-~19064~^~263~^75.^1^^~1~^~A~^^^^^^^^^^~11/01/2003~
-~19064~^~268~^1619.^0^^~4~^~NC~^^^^^^^^^^~11/01/2003~
-~19064~^~301~^36.^1^^~1~^~A~^^^^^^^^^^~11/01/2003~
-~19064~^~304~^22.^1^^~1~^~A~^^^^^^^^^^~11/01/2003~
-~19064~^~305~^57.^1^^~1~^~A~^^^^^^^^^^~11/01/2003~
-~19064~^~306~^116.^1^^~1~^~A~^^^^^^^^^^~11/01/2003~
-~19064~^~307~^44.^1^^~1~^~A~^^^^^^^^^^~11/01/2003~
-~19064~^~318~^0.^0^^~1~^~AS~^^^^^^^^^^~11/01/2003~
-~19064~^~320~^0.^0^^~1~^~AS~^^^^^^^^^^~11/01/2003~
-~19064~^~321~^0.^1^^~1~^~A~^^^^^^^^^~1~^~11/01/2003~
-~19064~^~322~^0.^1^^~1~^~A~^^^^^^^^^~1~^~11/01/2003~
-~19064~^~334~^0.^1^^~1~^~A~^^^^^^^^^~1~^~11/01/2003~
-~19064~^~337~^0.^1^^~1~^~A~^^^^^^^^^~1~^~11/01/2003~
-~19064~^~338~^0.^0^^~4~^~NR~^^^^^^^^^^~11/01/2003~
-~19064~^~417~^9.^1^^~1~^~A~^^^^^^^^^^~11/01/2003~
-~19064~^~431~^3.^1^^~1~^~A~^^^^^^^^^^~11/01/2003~
-~19064~^~432~^6.^1^^~1~^~AS~^^^^^^^^^^~11/01/2003~
-~19064~^~435~^11.^0^^~4~^~NC~^^^^^^^^^^~05/01/2006~
-~19064~^~601~^2.^1^^~1~^~A~^^^^^^^^^^~11/01/2003~
-~19065~^~208~^479.^1^^~9~^~MC~^^^^^^^^^^~05/01/2002~
-~19065~^~268~^2003.^0^^~9~^~MC~^^^^^^^^^^~05/01/2002~
-~19065~^~301~^64.^1^^~9~^~MC~^^^^^^^^^^~05/01/2002~
-~19065~^~305~^112.^1^^~9~^~MC~^^^^^^^^^^~05/01/2002~
-~19065~^~306~^254.^1^^~9~^~MC~^^^^^^^^^^~05/01/2002~
-~19065~^~307~^142.^1^^~9~^~MC~^^^^^^^^^^~05/01/2002~
-~19065~^~318~^42.^1^^~9~^~MC~^^^^^^^^^^~05/01/2002~
-~19065~^~601~^4.^1^^~9~^~MC~^^^^^^^^^^~05/01/2002~
-~19067~^~208~^338.^1^^~9~^~MC~^^^^^^^^^^~05/01/2002~
-~19067~^~268~^1413.^0^^~9~^~MC~^^^^^^^^^^~05/01/2002~
-~19067~^~301~^12.^1^^~9~^~MC~^^^^^^^^^^~05/01/2002~
-~19067~^~305~^47.^1^^~9~^~MC~^^^^^^^^^^~05/01/2002~
-~19067~^~306~^14.^1^^~9~^~MC~^^^^^^^^^^~05/01/2002~
-~19067~^~307~^261.^1^^~9~^~MC~^^^^^^^^^^~05/01/2002~
-~19067~^~318~^0.^1^^~9~^~MC~^^^^^^^^^^~04/01/2002~
-~19067~^~601~^0.^1^^~9~^~MC~^^^^^^^^^^~04/01/2002~
-~19068~^~208~^388.^0^^~4~^~NC~^^^^^^^^^^~01/01/2017~
-~19068~^~262~^0.^0^^~4~^~FLA~^^^^^^^^^^~04/01/2006~
-~19068~^~263~^0.^0^^~4~^~FLA~^^^^^^^^^^~04/01/2006~
-~19068~^~268~^1621.^0^^~4~^~NC~^^^^^^^^^^~01/01/2017~
-~19068~^~301~^35.^1^^~9~^~MC~^^^^^^^^^^~04/01/2006~
-~19068~^~304~^7.^0^^~4~^~FLA~^^^^^^^^^^~04/01/2006~
-~19068~^~305~^28.^0^^~4~^~FLA~^^^^^^^^^^~04/01/2006~
-~19068~^~306~^44.^0^^~4~^~FLA~^^^^^^^^^^~04/01/2006~
-~19068~^~307~^295.^1^^~9~^~MC~^^^^^^^^^^~04/01/2006~
-~19068~^~318~^0.^1^^~9~^~MC~^^^^^^^^^^~04/01/2006~
-~19068~^~319~^0.^0^^~4~^~NR~^^^^^^^^^^~04/01/2006~
-~19068~^~320~^0.^0^^~4~^~NC~^^^^^^^^^^~04/01/2006~
-~19068~^~321~^0.^0^^~4~^~NR~^^^^^^^^^^~04/01/2006~
-~19068~^~322~^0.^0^^~4~^~FLA~^^^^^^^^^^~04/01/2006~
-~19068~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~
-~19068~^~334~^0.^0^^~4~^~FLA~^^^^^^^^^^~04/01/2006~
-~19068~^~337~^0.^0^^~4~^~FLA~^^^^^^^^^^~04/01/2006~
-~19068~^~338~^0.^0^^~4~^~NR~^^^^^^^^^^~04/01/2006~
-~19068~^~417~^2.^0^^~4~^~FLA~^^^^^^^^^^~04/01/2006~
-~19068~^~431~^0.^0^^~4~^~FLA~^^^^^^^^^^~04/01/2006~
-~19068~^~432~^2.^0^^~4~^~FLA~^^^^^^^^^^~04/01/2006~
-~19068~^~435~^2.^0^^~4~^~NC~^^^^^^^^^^~12/01/2006~
-~19068~^~601~^0.^1^^~9~^~MC~^^^^^^^^^^~04/01/2006~
-~19069~^~208~^459.^1^^~9~^~MC~^^^^^^^^^^~03/01/2006~
-~19069~^~262~^1.^0^^~4~^~FLA~^^^^^^^^^^~03/01/2006~
-~19069~^~263~^36.^0^^~4~^~FLA~^^^^^^^^^^~03/01/2006~
-~19069~^~268~^1920.^0^^~9~^~MC~^^^^^^^^^^~03/01/2006~
-~19069~^~301~^36.^1^^~9~^~MC~^^^^^^^^^^~03/01/2006~
-~19069~^~304~^48.^0^^~4~^~FLA~^^^^^^^^^^~03/01/2006~
-~19069~^~305~^97.^0^^~4~^~FLA~^^^^^^^^^^~03/01/2006~
-~19069~^~306~^220.^0^^~4~^~FLA~^^^^^^^^^^~03/01/2006~
-~19069~^~307~^230.^1^^~9~^~MC~^^^^^^^^^^~03/01/2006~
-~19069~^~318~^0.^1^^~9~^~MC~^^^^^^^^^^~03/01/2006~
-~19069~^~319~^0.^0^^~4~^~NR~^^^^^^^^^^~03/01/2006~
-~19069~^~320~^0.^0^^~4~^~NC~^^^^^^^^^^~01/01/2017~
-~19069~^~321~^0.^0^^~4~^~NR~^^^^^^^^^^~03/01/2006~
-~19069~^~322~^0.^0^^~4~^~FLA~^^^^^^^^^^~02/01/2003~
-~19069~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~
-~19069~^~334~^0.^0^^~4~^~FLA~^^^^^^^^^^~02/01/2003~
-~19069~^~337~^0.^0^^~4~^~FLA~^^^^^^^^^^~02/01/2003~
-~19069~^~338~^0.^0^^~4~^~NR~^^^^^^^^^^~03/01/2006~
-~19069~^~417~^28.^0^^~4~^~FLA~^^^^^^^^^^~03/01/2006~
-~19069~^~431~^0.^0^^~4~^~FLA~^^^^^^^^^^~02/01/2003~
-~19069~^~432~^28.^0^^~4~^~FLA~^^^^^^^^^^~03/01/2006~
-~19069~^~435~^28.^0^^~4~^~NC~^^^^^^^^^^~12/01/2006~
-~19069~^~601~^0.^1^^~9~^~MC~^^^^^^^^^^~03/01/2006~
-~19070~^~208~^391.^0^^~4~^~NC~^^^^^^^^^^~04/01/2005~
-~19070~^~262~^0.^0^^~4~^~FLC~^^^^^^^^^^~02/01/2003~
-~19070~^~263~^0.^0^^~4~^~FLC~^^^^^^^^^^~02/01/2003~
-~19070~^~268~^1638.^0^^~4~^~NC~^^^^^^^^^^~04/01/2005~
-~19070~^~301~^4.^0^^~4~^~FLC~^^^^^^^^^^~04/01/2005~
-~19070~^~304~^0.^0^^~4~^~FLC~^^^^^^^^^^~04/01/2005~
-~19070~^~305~^1.^0^^~4~^~FLC~^^^^^^^^^^~04/01/2005~
-~19070~^~306~^3.^0^^~4~^~FLC~^^^^^^^^^^~04/01/2005~
-~19070~^~307~^391.^0^^~4~^~FLC~^^^^^^^^^^~04/01/2005~
-~19070~^~318~^100.^0^^~4~^~FLC~^^^^^^^^^^~04/01/2005~
-~19070~^~319~^27.^0^^~4~^~FLC~^^^^^^^^^^~04/01/2005~
-~19070~^~320~^28.^0^^~4~^~NC~^^^^^^^^^^~04/01/2005~
-~19070~^~321~^6.^0^^~4~^~FLC~^^^^^^^^^^~04/01/2005~
-~19070~^~322~^0.^0^^~4~^~FLC~^^^^^^^^^^~02/01/2003~
-~19070~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~
-~19070~^~334~^0.^0^^~4~^~FLC~^^^^^^^^^^~02/01/2003~
-~19070~^~337~^0.^0^^~4~^~FLC~^^^^^^^^^^~02/01/2003~
-~19070~^~338~^0.^0^^~4~^~FLC~^^^^^^^^^^~02/01/2003~
-~19070~^~417~^0.^0^^~4~^~FLC~^^^^^^^^^^~04/01/2005~
-~19070~^~431~^0.^0^^~4~^~FLC~^^^^^^^^^^~02/01/2003~
-~19070~^~432~^0.^0^^~4~^~FLC~^^^^^^^^^^~04/01/2005~
-~19070~^~435~^0.^0^^~4~^~NC~^^^^^^^^^^~12/01/2006~
-~19070~^~601~^9.^0^^~4~^~FLC~^^^^^^^^^^~04/01/2005~
-~19071~^~208~^540.^0^^~4~^~NC~^^^^^^^^^^~12/01/2006~
-~19071~^~262~^0.^0^^~4~^~FLA~^^^^^^^^^^~02/01/2003~
-~19071~^~263~^0.^0^^~4~^~FLA~^^^^^^^^^^~02/01/2003~
-~19071~^~268~^2259.^0^^~4~^~NC~^^^^^^^^^^~12/01/2006~
-~19071~^~301~^303.^3^^~1~^~A~^^^^^^^^^^~03/01/1996~
-~19071~^~304~^36.^3^^~1~^~A~^^^^^^^^^^~03/01/1996~
-~19071~^~305~^126.^2^^~1~^~A~^^^^^^^^^^~03/01/1996~
-~19071~^~306~^633.^3^^~1~^~A~^^^^^^^^^^~03/01/1996~
-~19071~^~307~^107.^2^^~1~^~A~^^^^^^^^^^~03/01/1996~
-~19071~^~318~^10.^0^^~4~^~NC~^^^^^^^^^^~12/01/2006~
-~19071~^~319~^0.^0^^~4~^~FLA~^^^^^^^^^^~04/01/2005~
-~19071~^~320~^1.^0^^~4~^~FLA~^^^^^^^^^^~04/01/2005~
-~19071~^~321~^5.^0^^~4~^~FLA~^^^^^^^^^^~04/01/2005~
-~19071~^~322~^0.^0^^~4~^~FLA~^^^^^^^^^^~02/01/2003~
-~19071~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~
-~19071~^~334~^0.^0^^~4~^~FLA~^^^^^^^^^^~02/01/2003~
-~19071~^~337~^0.^0^^~4~^~FLA~^^^^^^^^^^~02/01/2003~
-~19071~^~338~^0.^0^^~4~^~FLA~^^^^^^^^^^~02/01/2003~
-~19071~^~417~^21.^0^^~4~^~FLA~^^^^^^^^^^~04/01/2005~
-~19071~^~431~^0.^0^^~4~^~FLA~^^^^^^^^^^~02/01/2003~
-~19071~^~432~^21.^0^^~4~^~FLA~^^^^^^^^^^~04/01/2005~
-~19071~^~435~^21.^0^^~4~^~NC~^^^^^^^^^^~12/01/2006~
-~19071~^~601~^1.^0^^~4~^~FLA~^^^^^^^^^^~12/01/2006~
-~19074~^~208~^382.^0^^~4~^~NC~^^^^^^^^^^~03/01/2006~
-~19074~^~262~^0.^0^^~4~^~FLC~^^^^^^^^^^~02/01/2003~
-~19074~^~263~^0.^0^^~4~^~FLC~^^^^^^^^^^~02/01/2003~
-~19074~^~268~^1598.^0^^~4~^~NC~^^^^^^^^^^~03/01/2006~
-~19074~^~301~^138.^41^7.^~1~^^^^^^^^^^^~08/01/1991~
-~19074~^~304~^17.^41^0.^~1~^^^^^^^^^^^~08/01/1991~
-~19074~^~305~^114.^40^5.^~1~^^^^^^^^^^^~08/01/1991~
-~19074~^~306~^214.^42^12.^~1~^^^^^^^^^^^~08/01/1991~
-~19074~^~307~^245.^42^13.^~1~^^^^^^^^^^^~08/01/1991~
-~19074~^~318~^42.^0^^~4~^~FLC~^^^^^^^^^^~04/01/2005~
-~19074~^~319~^11.^0^^~4~^~FLC~^^^^^^^^^^~04/01/2005~
-~19074~^~320~^12.^0^^~4~^~FLC~^^^^^^^^^^~04/01/2005~
-~19074~^~321~^2.^0^^~4~^~FLC~^^^^^^^^^^~04/01/2005~
-~19074~^~322~^0.^0^^~4~^~FLC~^^^^^^^^^^~02/01/2003~
-~19074~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~
-~19074~^~334~^0.^0^^~4~^~FLC~^^^^^^^^^^~02/01/2003~
-~19074~^~337~^0.^0^^~4~^~FLC~^^^^^^^^^^~02/01/2003~
-~19074~^~338~^0.^0^^~4~^~FLC~^^^^^^^^^^~02/01/2003~
-~19074~^~417~^4.^0^^~4~^~FLC~^^^^^^^^^^~04/01/2005~
-~19074~^~431~^0.^0^^~4~^~FLC~^^^^^^^^^^~02/01/2003~
-~19074~^~432~^4.^0^^~4~^~FLC~^^^^^^^^^^~04/01/2005~
-~19074~^~435~^4.^0^^~4~^~NC~^^^^^^^^^^~12/01/2006~
-~19074~^~601~^7.^3^0.^~1~^^^^^^^^^^^~08/01/1991~
-~19075~^~208~^462.^1^^~9~^~MC~^^^^^^^^^^~05/01/2002~
-~19075~^~268~^1932.^0^^~9~^~MC~^^^^^^^^^^~05/01/2002~
-~19075~^~301~^213.^1^^~9~^~MC~^^^^^^^^^^~05/01/2002~
-~19075~^~305~^150.^1^^~9~^~MC~^^^^^^^^^^~05/01/2002~
-~19075~^~306~^341.^1^^~9~^~MC~^^^^^^^^^^~05/01/2002~
-~19075~^~307~^122.^1^^~9~^~MC~^^^^^^^^^^~05/01/2002~
-~19075~^~318~^303.^1^^~9~^~MC~^^^^^^^^^^~05/01/2002~
-~19075~^~601~^27.^1^^~9~^~MC~^^^^^^^^^^~05/01/2002~
-~19076~^~208~^387.^0^^~4~^~NC~^^^^^^^^^^~08/01/2011~
-~19076~^~262~^7.^1^^~1~^~A~^^^^^^^^^^~04/01/2005~
-~19076~^~263~^75.^1^^~1~^~A~^^^^^^^^^^~04/01/2005~
-~19076~^~268~^1619.^0^^~4~^~NC~^^^^^^^^^^~08/01/2011~
-~19076~^~301~^36.^1^^~1~^~A~^^^^^^^^^^~04/01/2005~
-~19076~^~304~^22.^1^^~1~^~A~^^^^^^^^^^~04/01/2005~
-~19076~^~305~^57.^1^^~1~^~A~^^^^^^^^^^~04/01/2005~
-~19076~^~306~^116.^1^^~1~^~A~^^^^^^^^^^~04/01/2005~
-~19076~^~307~^44.^1^^~1~^~A~^^^^^^^^^^~04/01/2005~
-~19076~^~318~^0.^0^^~1~^~AS~^^^^^^^^^^~12/01/2006~
-~19076~^~319~^0.^0^^~4~^~FLC~^^^^^^^^^^~12/01/2006~
-~19076~^~320~^0.^0^^~4~^~FLC~^^^^^^^^^^~07/01/2007~
-~19076~^~321~^0.^1^^~1~^~A~^^^^^^^^^~1~^~04/01/2005~
-~19076~^~322~^0.^1^^~1~^~A~^^^^^^^^^~1~^~04/01/2005~
-~19076~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~
-~19076~^~334~^0.^1^^~1~^~A~^^^^^^^^^~1~^~04/01/2005~
-~19076~^~337~^0.^1^^~1~^~A~^^^^^^^^^~1~^~04/01/2005~
-~19076~^~338~^1.^0^^~4~^~FLC~^^^^^^^^^^~12/01/2006~
-~19076~^~417~^9.^1^^~1~^~A~^^^^^^^^^^~04/01/2005~
-~19076~^~431~^3.^1^^~1~^~A~^^^^^^^^^^~04/01/2005~
-~19076~^~432~^6.^1^^~1~^~AS~^^^^^^^^^^~04/01/2005~
-~19076~^~435~^11.^0^^~4~^~NC~^^^^^^^^^^~07/01/2007~
-~19076~^~601~^2.^1^^~1~^~A~^^^^^^^^^^~04/01/2005~
-~19077~^~208~^472.^0^^~4~^^^^^^^^^^^~08/01/1991~
-~19077~^~262~^47.^0^^~4~^~FLA~^^^^^^^^^^~12/01/1997~
-~19077~^~263~^1597.^0^^~4~^~FLA~^^^^^^^^^^~12/01/1997~
-~19077~^~268~^1975.^0^^~4~^^^^^^^^^^^~09/01/2004~
-~19077~^~301~^54.^1^^~1~^^^^^^^^^^^~08/01/1991~
-~19077~^~304~^265.^1^^~1~^^^^^^^^^^^~08/01/1991~
-~19077~^~305~^340.^1^^~1~^^^^^^^^^^^~08/01/1991~
-~19077~^~306~^1166.^1^^~1~^^^^^^^^^^^~08/01/1991~
-~19077~^~307~^12.^1^^~1~^^^^^^^^^^^~08/01/1991~
-~19077~^~318~^12.^0^^~4~^~FLA~^^^^^^^^^^~12/01/1997~
-~19077~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2002~
-~19077~^~320~^1.^0^^~4~^~NC~^^^^^^^^^^~06/01/2002~
-~19077~^~417~^19.^0^^~4~^~FLA~^^^^^^^^^^~12/01/1997~
-~19077~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~
-~19077~^~432~^19.^0^^~4~^~FLA~^^^^^^^^^^~12/01/1997~
-~19077~^~435~^19.^0^^~4~^~NC~^^^^^^^^^^~05/01/2009~
-~19077~^~601~^0.^0^^~4~^~FLA~^^^^^^^^^^~12/01/1997~
-~19078~^~208~^642.^0^^~4~^~NC~^^^^^^^^^^~08/01/2014~
-~19078~^~262~^80.^3^0.^~1~^~A~^^^1^80.^80.^^^^~2, 3~^~02/01/2003~
-~19078~^~263~^1297.^3^34.^~1~^~A~^^^1^1240.^1360.^2^1146.^1446.^~2, 3~^~08/01/2014~
-~19078~^~268~^2685.^0^^~4~^~NC~^^^^^^^^^^~08/01/2014~
-~19078~^~301~^101.^3^7.^~1~^~A~^^^1^87.^109.^2^70.^132.^~2, 3~^~02/01/2003~
-~19078~^~304~^327.^3^7.^~1~^~A~^^^1^312.^338.^2^293.^360.^~2, 3~^~02/01/2003~
-~19078~^~305~^400.^3^25.^~1~^~A~^^^1^350.^431.^2^291.^507.^~2, 3~^~02/01/2003~
-~19078~^~306~^830.^3^41.^~1~^~A~^^^1^784.^914.^2^649.^1010.^~2, 3~^~02/01/2003~
-~19078~^~307~^24.^3^2.^~1~^~A~^^^1^19.^28.^2^12.^35.^~2, 3~^~02/01/2003~
-~19078~^~318~^0.^0^^~1~^~AS~^^^^^^^^^^~02/01/2003~
-~19078~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2002~
-~19078~^~320~^0.^0^^~1~^~AS~^^^^^^^^^^~02/01/2003~
-~19078~^~321~^0.^2^^~1~^~A~^^^1^0.^0.^^^^~1~^~02/01/2003~
-~19078~^~322~^0.^2^^~1~^~A~^^^1^0.^0.^^^^~1~^~02/01/2003~
-~19078~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~
-~19078~^~334~^0.^2^^~1~^~A~^^^1^0.^0.^^^^~1~^~02/01/2003~
-~19078~^~337~^0.^2^^~1~^~A~^^^1^0.^0.^^^^~1~^~02/01/2003~
-~19078~^~338~^38.^0^^~4~^~NR~^^^^^^^^^^~10/01/2002~
-~19078~^~417~^28.^2^^~1~^~A~^^^1^28.^28.^^^^^~02/01/2003~
-~19078~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~
-~19078~^~432~^28.^2^^~1~^~A~^^^^^^^^^^~12/01/2006~
-~19078~^~435~^28.^0^^~4~^~NC~^^^^^^^^^^~12/01/2006~
-~19078~^~601~^2.^2^^~1~^~A~^^^1^2.^2.^1^^^^~08/01/2014~
-~19078~^~638~^38.^2^^~1~^~A~^^^1^38.^38.^1^^^^~02/01/2003~
-~19078~^~639~^13.^2^^~1~^~A~^^^1^13.^13.^^^^^~02/01/2003~
-~19078~^~641~^85.^2^^~1~^~A~^^^1^85.^86.^1^^^^~02/01/2003~
-~19079~^~208~^522.^0^^~4~^~NC~^^^^^^^^^^~04/01/2005~
-~19079~^~262~^0.^0^^~4~^~FLA~^^^^^^^^^^~03/01/2002~
-~19079~^~263~^0.^0^^~4~^~FLA~^^^^^^^^^^~03/01/2002~
-~19079~^~268~^2185.^0^^~4~^~NC~^^^^^^^^^^~04/01/2005~
-~19079~^~301~^205.^0^^~4~^~FLA~^^^^^^^^^^~04/01/2005~
-~19079~^~304~^18.^0^^~4~^~FLA~^^^^^^^^^^~04/01/2005~
-~19079~^~305~^157.^0^^~4~^~FLA~^^^^^^^^^^~04/01/2005~
-~19079~^~306~^290.^0^^~4~^~FLA~^^^^^^^^^^~04/01/2005~
-~19079~^~307~^88.^0^^~4~^~FLA~^^^^^^^^^^~04/01/2005~
-~19079~^~318~^4.^0^^~4~^~FLA~^^^^^^^^^^~04/01/2005~
-~19079~^~319~^1.^0^^~4~^~FLA~^^^^^^^^^^~04/01/2005~
-~19079~^~320~^1.^0^^~4~^~FLA~^^^^^^^^^^~04/01/2005~
-~19079~^~321~^0.^0^^~4~^~FLA~^^^^^^^^^^~04/01/2005~
-~19079~^~322~^0.^0^^~4~^~FLA~^^^^^^^^^^~02/01/2003~
-~19079~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~
-~19079~^~334~^0.^0^^~4~^~FLA~^^^^^^^^^^~02/01/2003~
-~19079~^~337~^0.^0^^~4~^~FLA~^^^^^^^^^^~02/01/2003~
-~19079~^~338~^0.^0^^~4~^~FLA~^^^^^^^^^^~02/01/2003~
-~19079~^~417~^8.^0^^~4~^~FLA~^^^^^^^^^^~04/01/2005~
-~19079~^~431~^0.^0^^~4~^~FLA~^^^^^^^^^^~03/01/2002~
-~19079~^~432~^8.^0^^~4~^~FLA~^^^^^^^^^^~04/01/2005~
-~19079~^~435~^8.^0^^~4~^~NC~^^^^^^^^^^~12/01/2006~
-~19079~^~601~^1.^2^^~1~^~A~^^^^^^^^^^~04/01/2005~
-~19080~^~208~^480.^0^^~4~^~NC~^^^^^^^^^^~05/01/2009~
-~19080~^~262~^62.^6^3.^~1~^^^^^^^^^^^~08/01/1991~
-~19080~^~263~^486.^7^40.^~1~^^^^^^^^^^^~08/01/1991~
-~19080~^~268~^2008.^0^^~4~^~NC~^^^^^^^^^^~05/01/2009~
-~19080~^~301~^32.^3^1.^~1~^^^^^^^^^^^~08/01/1991~
-~19080~^~304~^115.^2^^~1~^^^^^^^^^^^~08/01/1991~
-~19080~^~305~^132.^2^^~1~^^^^^^^^^^^~08/01/1991~
-~19080~^~306~^365.^6^17.^~1~^^^^^^^^^^^~08/01/1991~
-~19080~^~307~^11.^6^3.^~1~^^^^^^^^^^^~08/01/1991~
-~19080~^~318~^0.^0^^~4~^~FLA~^^^^^^^^^^~02/01/2003~
-~19080~^~319~^0.^0^^~4~^~FLA~^^^^^^^^^^~02/01/2003~
-~19080~^~320~^0.^0^^~4~^~FLA~^^^^^^^^^^~02/01/2003~
-~19080~^~321~^0.^0^^~4~^~FLA~^^^^^^^^^^~02/01/2003~
-~19080~^~322~^0.^0^^~4~^~FLA~^^^^^^^^^^~02/01/2003~
-~19080~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~
-~19080~^~334~^0.^0^^~4~^~FLA~^^^^^^^^^^~02/01/2003~
-~19080~^~337~^0.^0^^~4~^~FLA~^^^^^^^^^^~02/01/2003~
-~19080~^~338~^18.^0^^~4~^~FLA~^^^^^^^^^^~04/01/2005~
-~19080~^~417~^13.^0^^~4~^~FLA~^^^^^^^^^^~04/01/2005~
-~19080~^~431~^0.^0^^~4~^~FLA~^^^^^^^^^^~02/01/2003~
-~19080~^~432~^13.^0^^~4~^~FLA~^^^^^^^^^^~04/01/2005~
-~19080~^~435~^13.^0^^~4~^~NC~^^^^^^^^^^~05/01/2009~
-~19080~^~601~^0.^0^^~4~^~FLA~^^^^^^^^^^~04/01/2005~
-~19081~^~208~^507.^0^^~4~^~NC~^^^^^^^^^^~05/01/2009~
-~19081~^~262~^66.^1^^~1~^^^^^^^^^^^~08/01/1991~
-~19081~^~263~^426.^1^^~1~^^^^^^^^^^^~08/01/1991~
-~19081~^~268~^2120.^0^^~4~^~NC~^^^^^^^^^^~05/01/2009~
-~19081~^~301~^24.^6^1.^~1~^^^^^^^^^^^~08/01/1991~
-~19081~^~304~^113.^6^9.^~1~^^^^^^^^^^^~08/01/1991~
-~19081~^~305~^147.^4^5.^~1~^^^^^^^^^^^~08/01/1991~
-~19081~^~306~^290.^6^17.^~1~^^^^^^^^^^^~08/01/1991~
-~19081~^~307~^16.^4^4.^~1~^^^^^^^^^^^~08/01/1991~
-~19081~^~318~^0.^0^^~4~^~BFSN~^~19080~^^^^^^^^^~02/01/2003~
-~19081~^~319~^0.^0^^~4~^~BFSN~^~19080~^^^^^^^^^~02/01/2003~
-~19081~^~320~^0.^0^^~4~^~BFSN~^~19080~^^^^^^^^^~02/01/2003~
-~19081~^~321~^0.^0^^~4~^~BFSN~^~19080~^^^^^^^^^~02/01/2003~
-~19081~^~322~^0.^0^^~4~^~BFSN~^~19080~^^^^^^^^^~02/01/2003~
-~19081~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~
-~19081~^~334~^0.^0^^~4~^~BFSN~^~19080~^^^^^^^^^~02/01/2003~
-~19081~^~337~^0.^0^^~4~^~BFSN~^~19080~^^^^^^^^^~02/01/2003~
-~19081~^~338~^18.^0^^~4~^~BFSN~^~19080~^^^^^^^^^~02/01/2003~
-~19081~^~417~^3.^1^^~4~^^^^^^^^^^^~08/01/1991~
-~19081~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~
-~19081~^~432~^3.^1^^~4~^^^^^^^^^^^~04/01/2005~
-~19081~^~435~^3.^0^^~4~^~NC~^^^^^^^^^^~05/01/2009~
-~19081~^~601~^0.^1^^~4~^^^^^^^^^^^~08/01/1991~
-~19083~^~208~^366.^0^^~4~^~NC~^^^^^^^^^^~12/01/2006~
-~19083~^~262~^10.^0^^~4~^~FLA~^^^^^^^^^^~12/01/2006~
-~19083~^~263~^185.^0^^~4~^~FLA~^^^^^^^^^^~12/01/2006~
-~19083~^~268~^1533.^0^^~4~^~NC~^^^^^^^^^^~12/01/2006~
-~19083~^~301~^17.^4^2.^~1~^^^^^^^^^^^~08/01/1991~
-~19083~^~304~^63.^1^^~1~^^^^^^^^^^^~08/01/1991~
-~19083~^~305~^95.^1^^~1~^^^^^^^^^^^~08/01/1991~
-~19083~^~306~^168.^1^^~1~^^^^^^^^^^^~08/01/1991~
-~19083~^~307~^26.^2^^~1~^^^^^^^^^^^~08/01/1991~
-~19083~^~318~^0.^0^^~4~^~FLA~^^^^^^^^^^~02/01/2003~
-~19083~^~319~^0.^0^^~4~^~FLA~^^^^^^^^^^~02/01/2003~
-~19083~^~320~^0.^0^^~4~^~FLA~^^^^^^^^^^~02/01/2003~
-~19083~^~321~^0.^0^^~4~^~FLA~^^^^^^^^^^~02/01/2003~
-~19083~^~322~^0.^0^^~4~^~FLA~^^^^^^^^^^~02/01/2003~
-~19083~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~
-~19083~^~334~^0.^0^^~4~^~FLA~^^^^^^^^^^~02/01/2003~
-~19083~^~337~^0.^0^^~4~^~FLA~^^^^^^^^^^~02/01/2003~
-~19083~^~338~^4.^0^^~4~^~FLA~^^^^^^^^^^~12/01/2006~
-~19083~^~417~^3.^0^^~4~^~FLA~^^^^^^^^^^~12/01/2006~
-~19083~^~431~^0.^0^^~4~^~FLA~^^^^^^^^^^~02/01/2003~
-~19083~^~432~^3.^0^^~4~^~FLA~^^^^^^^^^^~12/01/2006~
-~19083~^~435~^3.^0^^~4~^~NC~^^^^^^^^^^~12/01/2006~
-~19083~^~601~^0.^3^0.^~1~^^^^^^^^^^^~08/01/1991~
-~19084~^~208~^569.^0^^~4~^~NC~^^^^^^^^^^~08/01/2015~
-~19084~^~268~^2383.^0^^~4~^~NC~^^^^^^^^^^~08/01/2015~
-~19084~^~301~^203.^1^^~9~^~MC~^^^^^^^^^^~05/01/2002~
-~19084~^~307~^52.^1^^~9~^~MC~^^^^^^^^^^~05/01/2002~
-~19084~^~318~^0.^1^^~9~^~MC~^^^^^^^^^^~04/01/2002~
-~19084~^~601~^13.^1^^~9~^~MC~^^^^^^^^^^~05/01/2002~
-~19085~^~208~^539.^0^^~4~^~NC~^^^^^^^^^^~12/01/2006~
-~19085~^~262~^0.^0^^~4~^~FLC~^^^^^^^^^^~02/01/2003~
-~19085~^~263~^0.^0^^~4~^~FLC~^^^^^^^^^^~02/01/2003~
-~19085~^~268~^2254.^0^^~4~^~NC~^^^^^^^^^^~12/01/2006~
-~19085~^~301~^34.^1^^~1~^^^^^^^^^^^~08/01/1991~
-~19085~^~304~^5.^0^^~4~^~FLC~^^^^^^^^^^~04/01/2005~
-~19085~^~305~^31.^0^^~4~^~FLC~^^^^^^^^^^~04/01/2005~
-~19085~^~306~^64.^0^^~4~^~FLC~^^^^^^^^^^~12/01/2006~
-~19085~^~307~^89.^2^^~1~^~A~^^^^^^^^^^~12/01/1997~
-~19085~^~318~^1.^0^^~4~^~NC~^^^^^^^^^^~04/01/2005~
-~19085~^~319~^0.^0^^~4~^~FLC~^^^^^^^^^^~04/01/2005~
-~19085~^~320~^0.^0^^~4~^~NC~^^^^^^^^^^~04/01/2005~
-~19085~^~321~^0.^0^^~4~^~FLC~^^^^^^^^^^~04/01/2005~
-~19085~^~322~^0.^0^^~4~^~FLC~^^^^^^^^^^~02/01/2003~
-~19085~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~
-~19085~^~334~^0.^0^^~4~^~FLC~^^^^^^^^^^~02/01/2003~
-~19085~^~337~^0.^0^^~4~^~FLC~^^^^^^^^^^~02/01/2003~
-~19085~^~338~^0.^0^^~4~^~FLC~^^^^^^^^^^~02/01/2003~
-~19085~^~417~^1.^0^^~4~^~FLC~^^^^^^^^^^~04/01/2005~
-~19085~^~431~^0.^0^^~4~^~FLC~^^^^^^^^^^~02/01/2003~
-~19085~^~432~^1.^0^^~4~^~FLC~^^^^^^^^^^~04/01/2005~
-~19085~^~435~^1.^0^^~4~^~NC~^^^^^^^^^^~12/01/2006~
-~19085~^~601~^0.^0^^~4~^~FLC~^^^^^^^^^^~04/01/2005~
-~19086~^~208~^529.^0^^~4~^~NC~^^^^^^^^^^~12/01/2006~
-~19086~^~262~^0.^0^^~4~^~FLC~^^^^^^^^^^~02/01/2003~
-~19086~^~263~^0.^0^^~4~^~FLC~^^^^^^^^^^~02/01/2003~
-~19086~^~268~^2213.^0^^~4~^~NC~^^^^^^^^^^~12/01/2006~
-~19086~^~301~^110.^1^^~1~^^^^^^^^^^^~08/01/1991~
-~19086~^~304~^110.^1^^~1~^^^^^^^^^^^~08/01/1991~
-~19086~^~305~^310.^1^^~1~^^^^^^^^^^^~08/01/1991~
-~19086~^~306~^505.^1^^~1~^^^^^^^^^^^~08/01/1991~
-~19086~^~307~^250.^1^^~1~^^^^^^^^^^^~08/01/1991~
-~19086~^~318~^1.^0^^~4~^~FLC~^^^^^^^^^^~12/01/2006~
-~19086~^~319~^0.^0^^~4~^~FLC~^^^^^^^^^^~12/01/2006~
-~19086~^~320~^0.^0^^~4~^~FLC~^^^^^^^^^^~12/01/2006~
-~19086~^~321~^0.^0^^~4~^~FLC~^^^^^^^^^^~12/01/2006~
-~19086~^~322~^0.^0^^~4~^~FLC~^^^^^^^^^^~02/01/2003~
-~19086~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~
-~19086~^~334~^0.^0^^~4~^~FLC~^^^^^^^^^^~02/01/2003~
-~19086~^~337~^0.^0^^~4~^~FLC~^^^^^^^^^^~02/01/2003~
-~19086~^~338~^0.^0^^~4~^~FLC~^^^^^^^^^^~02/01/2003~
-~19086~^~417~^77.^0^^~4~^~FLC~^^^^^^^^^^~12/01/2006~
-~19086~^~431~^0.^0^^~4~^~FLC~^^^^^^^^^^~02/01/2003~
-~19086~^~432~^77.^0^^~4~^~FLC~^^^^^^^^^^~12/01/2006~
-~19086~^~435~^77.^0^^~4~^~NC~^^^^^^^^^^~12/01/2006~
-~19086~^~601~^1.^0^^~4~^~FLC~^^^^^^^^^^~12/01/2006~
-~19087~^~208~^539.^0^^~4~^~NC~^^^^^^^^^^~12/01/2006~
-~19087~^~262~^0.^0^^~4~^~FLA~^^^^^^^^^^~12/01/2006~
-~19087~^~263~^0.^0^^~4~^~FLA~^^^^^^^^^^~12/01/2006~
-~19087~^~268~^2254.^0^^~4~^~NC~^^^^^^^^^^~12/01/2006~
-~19087~^~301~^199.^3^^~1~^~A~^^^^^^^^^^~02/01/1996~
-~19087~^~304~^12.^3^^~1~^~A~^^^^^^^^^^~02/01/1996~
-~19087~^~305~^176.^3^^~1~^~A~^^^^^^^^^^~02/01/1996~
-~19087~^~306~^286.^3^^~1~^~A~^^^^^^^^^^~02/01/1996~
-~19087~^~307~^90.^3^^~1~^~A~^^^^^^^^^^~02/01/1996~
-~19087~^~318~^30.^0^^~4~^~NR~^^^^^^^^^^~05/01/2007~
-~19087~^~319~^9.^0^^~4~^~NR~^^^^^^^^^^~05/01/2007~
-~19087~^~320~^9.^0^^~4~^~NC~^^^^^^^^^^~05/01/2007~
-~19087~^~321~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2007~
-~19087~^~322~^0.^0^^~4~^~FLA~^^^^^^^^^^~12/01/2006~
-~19087~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~
-~19087~^~334~^0.^0^^~4~^~FLA~^^^^^^^^^^~12/01/2006~
-~19087~^~337~^0.^0^^~4~^~FLA~^^^^^^^^^^~12/01/2006~
-~19087~^~338~^0.^0^^~4~^~FLA~^^^^^^^^^^~02/01/2003~
-~19087~^~417~^7.^0^^~4~^~FLA~^^^^^^^^^^~12/01/2006~
-~19087~^~431~^0.^0^^~4~^~FLA~^^^^^^^^^^~12/01/2006~
-~19087~^~432~^7.^0^^~4~^~FLA~^^^^^^^^^^~12/01/2006~
-~19087~^~435~^7.^0^^~4~^~NC~^^^^^^^^^^~05/01/2007~
-~19087~^~601~^21.^2^^~1~^~A~^^^^^^^^^^~12/01/2006~
-~19088~^~208~^180.^0^^~4~^~NC~^^^^^^^^^^~05/01/2009~
-~19088~^~262~^0.^0^^~4~^~FLC~^^^^^^^^^^~03/01/2003~
-~19088~^~263~^0.^0^^~4~^~FLC~^^^^^^^^^^~03/01/2003~
-~19088~^~268~^755.^0^^~4~^~NC~^^^^^^^^^^~05/01/2009~
-~19088~^~301~^161.^3^4.^~9~^~MC~^^^1^155.^169.^2^143.^178.^~4~^~05/01/2004~
-~19088~^~304~^14.^18^0.^~1~^~A~^^^7^13.^16.^6^13.^15.^~4~^~03/01/2003~
-~19088~^~305~^103.^18^3.^~1~^~A~^^^7^91.^118.^6^94.^112.^~4~^~03/01/2003~
-~19088~^~306~^208.^18^6.^~1~^~A~^^^7^186.^240.^6^191.^225.^~4~^~03/01/2003~
-~19088~^~307~^74.^18^2.^~1~^~A~^^^7^64.^84.^6^68.^80.^~4~^~03/01/2003~
-~19088~^~318~^448.^3^21.^~9~^~MC~^^^1^417.^489.^2^355.^539.^~4~^~05/01/2004~
-~19088~^~319~^127.^0^^~4~^~FLA~^^^^^^^^^^~06/01/2005~
-~19088~^~320~^128.^0^^~4~^~FLA~^^^^^^^^^^~06/01/2005~
-~19088~^~321~^14.^0^^~4~^~FLA~^^^^^^^^^^~06/01/2005~
-~19088~^~322~^0.^0^^~4~^~FLA~^^^^^^^^^^~06/01/2005~
-~19088~^~324~^4.^0^^~4~^~BFFN~^~01211~^^^^^^^^^~03/01/2009~
-~19088~^~334~^0.^0^^~4~^~FLA~^^^^^^^^^^~06/01/2005~
-~19088~^~337~^0.^0^^~4~^~FLA~^^^^^^^^^^~06/01/2005~
-~19088~^~338~^0.^0^^~4~^~FLA~^^^^^^^^^^~06/01/2005~
-~19088~^~417~^6.^0^^~4~^~FLC~^^^^^^^^^^~05/01/2004~
-~19088~^~431~^0.^0^^~4~^~FLC~^^^^^^^^^^~03/01/2003~
-~19088~^~432~^6.^0^^~4~^~FLC~^^^^^^^^^^~05/01/2004~
-~19088~^~435~^6.^0^^~4~^~NC~^^^^^^^^^^~05/01/2009~
-~19088~^~601~^27.^3^12.^~9~^~MC~^^^1^14.^53.^2^-27.^81.^~4~^~05/01/2004~
-~19089~^~208~^249.^0^^~4~^~NC~^^^^^^^^^^~03/01/2009~
-~19089~^~262~^0.^0^^~4~^~FLA~^^^^^^^^^^~03/01/2002~
-~19089~^~263~^0.^0^^~4~^~FLA~^^^^^^^^^^~03/01/2002~
-~19089~^~268~^1042.^0^^~4~^~NC~^^^^^^^^^^~03/01/2009~
-~19089~^~301~^117.^2^^~8~^~LC~^^^1^93.^142.^1^^^^~03/01/2003~
-~19089~^~304~^11.^0^^~4~^~FLA~^^^^^^^^^^~03/01/2003~
-~19089~^~305~^105.^0^^~4~^~FLA~^^^^^^^^^^~03/01/2003~
-~19089~^~306~^157.^0^^~4~^~FLA~^^^^^^^^^^~03/01/2003~
-~19089~^~307~^61.^2^^~8~^~LC~^^^1^56.^66.^1^^^^~03/01/2003~
-~19089~^~318~^653.^0^^~4~^~FLA~^^^^^^^^^^~03/01/2003~
-~19089~^~319~^179.^0^^~4~^~FLA~^^^^^^^^^^~03/01/2003~
-~19089~^~320~^182.^0^^~4~^~FLA~^^^^^^^^^^~03/01/2003~
-~19089~^~321~^32.^0^^~4~^~FLA~^^^^^^^^^^~03/01/2003~
-~19089~^~322~^1.^0^^~4~^~FLA~^^^^^^^^^^~03/01/2003~
-~19089~^~324~^12.^0^^~4~^~BFFN~^~01211~^^^^^^^^^~03/01/2009~
-~19089~^~334~^1.^0^^~4~^~FLA~^^^^^^^^^^~03/01/2003~
-~19089~^~337~^0.^0^^~4~^~FLA~^^^^^^^^^^~03/01/2003~
-~19089~^~338~^34.^0^^~4~^~FLA~^^^^^^^^^^~03/01/2003~
-~19089~^~417~^8.^0^^~4~^~FLA~^^^^^^^^^^~03/01/2003~
-~19089~^~431~^0.^0^^~4~^~FLA~^^^^^^^^^^~03/01/2002~
-~19089~^~432~^8.^0^^~4~^~FLA~^^^^^^^^^^~03/01/2003~
-~19089~^~435~^9.^0^^~4~^~FLA~^^^^^^^^^^~03/01/2009~
-~19089~^~601~^92.^2^^~8~^~LC~^^^1^70.^113.^1^^^^~03/01/2003~
-~19090~^~208~^222.^0^^~4~^~NC~^^^^^^^^^^~05/01/2009~
-~19090~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2002~
-~19090~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2002~
-~19090~^~268~^930.^0^^~4~^~NC~^^^^^^^^^^~05/01/2009~
-~19090~^~301~^131.^1^^~4~^^^^^^^^^^^~08/01/1991~
-~19090~^~304~^12.^1^^~4~^^^^^^^^^^^~08/01/1991~
-~19090~^~305~^116.^1^^~4~^^^^^^^^^^^~08/01/1991~
-~19090~^~306~^177.^1^^~4~^^^^^^^^^^^~08/01/1991~
-~19090~^~307~^61.^1^^~4~^^^^^^^^^^^~08/01/1991~
-~19090~^~318~^589.^0^^~4~^~FLA~^^^^^^^^^^~03/01/2003~
-~19090~^~319~^159.^0^^~4~^~FLA~^^^^^^^^^^~03/01/2003~
-~19090~^~320~^162.^0^^~4~^~FLA~^^^^^^^^^^~03/01/2003~
-~19090~^~321~^30.^0^^~4~^~FLA~^^^^^^^^^^~03/01/2003~
-~19090~^~322~^5.^0^^~4~^~FLA~^^^^^^^^^^~03/01/2003~
-~19090~^~324~^29.^0^^~4~^~FLA~^^^^^^^^^^~03/01/2009~
-~19090~^~334~^5.^0^^~4~^~FLA~^^^^^^^^^^~03/01/2003~
-~19090~^~337~^0.^0^^~4~^~FLA~^^^^^^^^^^~03/01/2003~
-~19090~^~338~^151.^0^^~4~^~FLA~^^^^^^^^^^~03/01/2003~
-~19090~^~417~^9.^1^^~4~^^^^^^^^^^^~08/01/1991~
-~19090~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~
-~19090~^~432~^9.^1^^~4~^^^^^^^^^^^~03/01/2009~
-~19090~^~435~^9.^0^^~4~^~NC~^^^^^^^^^^~05/01/2009~
-~19090~^~601~^91.^1^^~4~^^^^^^^^^^^~08/01/1991~
-~19091~^~208~^384.^1^^~9~^~MC~^^^^^^^^^^~05/01/2002~
-~19091~^~268~^1606.^0^^~9~^~MC~^^^^^^^^^^~05/01/2002~
-~19091~^~301~^11.^1^^~9~^~MC~^^^^^^^^^^~05/01/2002~
-~19091~^~305~^0.^1^^~9~^~MC~^^^^^^^^^^~05/01/2002~
-~19091~^~306~^111.^1^^~9~^~MC~^^^^^^^^^^~05/01/2002~
-~19091~^~307~^28.^1^^~9~^~MC~^^^^^^^^^^~05/01/2002~
-~19091~^~318~^7.^1^^~9~^~MC~^^^^^^^^^^~05/01/2002~
-~19091~^~601~^1.^1^^~9~^~MC~^^^^^^^^^^~05/01/2002~
-~19092~^~208~^347.^1^^~9~^~MC~^^^^^^^^^^~05/01/2002~
-~19092~^~268~^1453.^0^^~9~^~MC~^^^^^^^^^^~05/01/2002~
-~19092~^~301~^8.^1^^~9~^~MC~^^^^^^^^^^~05/01/2002~
-~19092~^~305~^24.^1^^~9~^~MC~^^^^^^^^^^~05/01/2002~
-~19092~^~306~^37.^1^^~9~^~MC~^^^^^^^^^^~05/01/2002~
-~19092~^~307~^195.^1^^~9~^~MC~^^^^^^^^^^~05/01/2002~
-~19092~^~318~^0.^1^^~9~^~MC~^^^^^^^^^^~04/01/2002~
-~19092~^~601~^0.^1^^~9~^~MC~^^^^^^^^^^~04/01/2002~
-~19093~^~208~^531.^1^^~9~^~MC~^^^^^^^^^^~05/01/2002~
-~19093~^~268~^2222.^0^^~9~^~MC~^^^^^^^^^^~05/01/2002~
-~19093~^~301~^251.^1^^~9~^~MC~^^^^^^^^^^~05/01/2002~
-~19093~^~305~^206.^1^^~9~^~MC~^^^^^^^^^^~05/01/2002~
-~19093~^~306~^438.^1^^~9~^~MC~^^^^^^^^^^~05/01/2002~
-~19093~^~307~^101.^1^^~9~^~MC~^^^^^^^^^^~05/01/2002~
-~19093~^~318~^229.^1^^~9~^~MC~^^^^^^^^^^~05/01/2002~
-~19093~^~601~^24.^1^^~9~^~MC~^^^^^^^^^^~05/01/2002~
-~19094~^~208~^145.^0^^~4~^~NC~^^^^^^^^^^~05/01/2009~
-~19094~^~262~^0.^0^^~4~^~RC~^^^^^^^^^^~05/01/2006~
-~19094~^~263~^0.^0^^~4~^~RC~^^^^^^^^^^~05/01/2006~
-~19094~^~268~^609.^0^^~4~^~NC~^^^^^^^^^^~05/01/2009~
-~19094~^~301~^83.^0^^~4~^~RC~^^^^^^^^^^~05/01/2006~
-~19094~^~304~^9.^0^^~4~^~RC~^^^^^^^^^^~05/01/2006~
-~19094~^~305~^96.^0^^~4~^~RC~^^^^^^^^^^~05/01/2006~
-~19094~^~306~^118.^0^^~4~^~RC~^^^^^^^^^^~05/01/2006~
-~19094~^~307~^53.^0^^~4~^~RC~^^^^^^^^^^~05/01/2006~
-~19094~^~318~^161.^0^^~4~^~NC~^^^^^^^^^^~05/01/2006~
-~19094~^~319~^45.^0^^~4~^~RC~^^^^^^^^^^~05/01/2006~
-~19094~^~320~^46.^0^^~4~^~NC~^^^^^^^^^^~05/01/2006~
-~19094~^~321~^5.^0^^~4~^~RC~^^^^^^^^^^~05/01/2006~
-~19094~^~322~^0.^0^^~4~^~RC~^^^^^^^^^^~05/01/2006~
-~19094~^~334~^2.^0^^~4~^~RC~^^^^^^^^^^~05/01/2006~
-~19094~^~337~^0.^0^^~4~^~RC~^^^^^^^^^^~05/01/2006~
-~19094~^~338~^65.^0^^~4~^~RC~^^^^^^^^^^~05/01/2006~
-~19094~^~417~^9.^0^^~4~^~RC~^^^^^^^^^^~05/01/2006~
-~19094~^~431~^0.^0^^~4~^~RC~^^^^^^^^^^~05/01/2006~
-~19094~^~432~^9.^0^^~4~^~RC~^^^^^^^^^^~05/01/2006~
-~19094~^~435~^9.^0^^~4~^~NC~^^^^^^^^^^~05/01/2009~
-~19094~^~601~^90.^0^^~4~^~RC~^^^^^^^^^^~05/01/2006~
-~19095~^~208~^207.^0^^~4~^~NC~^^^^^^^^^^~07/01/2008~
-~19095~^~262~^0.^0^^~4~^~FLC~^^^^^^^^^^~03/01/2002~
-~19095~^~263~^0.^0^^~4~^~FLC~^^^^^^^^^^~03/01/2002~
-~19095~^~268~^868.^0^^~4~^~NC~^^^^^^^^^^~07/01/2008~
-~19095~^~301~^128.^17^5.^~1~^^^^^^^^^^^~08/01/1991~
-~19095~^~304~^14.^12^0.^~1~^^^^^^^^^^^~08/01/1991~
-~19095~^~305~^105.^12^4.^~1~^^^^^^^^^^^~08/01/1991~
-~19095~^~306~^199.^12^6.^~1~^^^^^^^^^^^~08/01/1991~
-~19095~^~307~^80.^19^6.^~1~^^^^^^^^^^^~08/01/1991~
-~19095~^~318~^421.^0^^~4~^~FLC~^^^^^^^^^^~03/01/2006~
-~19095~^~319~^116.^0^^~4~^~FLC~^^^^^^^^^^~03/01/2006~
-~19095~^~320~^118.^0^^~4~^~NC~^^^^^^^^^^~07/01/2008~
-~19095~^~321~^19.^2^^~1~^~A~^^^^^^^^^^~03/01/2003~
-~19095~^~322~^0.^2^^~1~^~A~^^^^^^^^^^~03/01/2003~
-~19095~^~324~^8.^0^^~4~^~O~^^^^^^^^^^~03/01/2009~
-~19095~^~334~^0.^2^^~1~^~A~^^^^^^^^^^~03/01/2003~
-~19095~^~337~^0.^2^^~1~^~A~^^^^^^^^^^~03/01/2003~
-~19095~^~338~^0.^2^^~1~^~A~^^^^^^^^^^~03/01/2003~
-~19095~^~417~^5.^4^1.^~1~^^^^^^^^^^^~03/01/2003~
-~19095~^~431~^0.^0^^~4~^~FLC~^^^^^^^^^^~03/01/2002~
-~19095~^~432~^5.^4^1.^~1~^^^^^^^^^^^~03/01/2006~
-~19095~^~435~^5.^0^^~4~^~NC~^^^^^^^^^^~07/01/2008~
-~19095~^~601~^44.^10^1.^~1~^^^^^^^^^^^~08/01/1991~
-~19096~^~208~^126.^0^^~4~^^^^^^^^^^^~08/01/1991~
-~19096~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2002~
-~19096~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2002~
-~19096~^~268~^527.^0^^~4~^^^^^^^^^^^~03/01/2009~
-~19096~^~301~^157.^1^^~4~^^^^^^^^^^^~08/01/1991~
-~19096~^~304~^14.^1^^~4~^^^^^^^^^^^~08/01/1991~
-~19096~^~305~^121.^1^^~4~^^^^^^^^^^^~08/01/1991~
-~19096~^~306~^221.^1^^~4~^^^^^^^^^^^~08/01/1991~
-~19096~^~307~^70.^1^^~4~^^^^^^^^^^^~08/01/1991~
-~19096~^~318~^103.^1^^~4~^^^^^^^^^^^~03/01/2003~
-~19096~^~319~^28.^0^^~4~^~FLA~^^^^^^^^^^~03/01/2003~
-~19096~^~320~^29.^0^^~4~^~FLA~^^^^^^^^^^~03/01/2003~
-~19096~^~321~^5.^0^^~4~^~FLA~^^^^^^^^^^~03/01/2003~
-~19096~^~322~^0.^0^^~4~^~FLA~^^^^^^^^^^~03/01/2003~
-~19096~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~
-~19096~^~334~^0.^0^^~4~^~FLA~^^^^^^^^^^~03/01/2003~
-~19096~^~337~^0.^0^^~4~^~FLA~^^^^^^^^^^~03/01/2003~
-~19096~^~338~^0.^0^^~4~^~FLA~^^^^^^^^^^~03/01/2003~
-~19096~^~417~^5.^0^^~4~^~FLA~^^^^^^^^^^~05/01/2004~
-~19096~^~431~^0.^0^^~4~^~FLA~^^^^^^^^^^~05/01/2004~
-~19096~^~432~^5.^0^^~4~^~FLA~^^^^^^^^^^~05/01/2004~
-~19096~^~435~^5.^0^^~4~^~NC~^^^^^^^^^^~03/01/2009~
-~19096~^~601~^12.^1^^~4~^^^^^^^^^^^~08/01/1991~
-~19097~^~208~^144.^0^^~4~^~NC~^^^^^^^^^^~12/01/2006~
-~19097~^~262~^0.^0^^~4~^~FLA~^^^^^^^^^^~02/01/2003~
-~19097~^~263~^0.^0^^~4~^~FLA~^^^^^^^^^^~12/01/2006~
-~19097~^~268~^602.^0^^~4~^~NC~^^^^^^^^^^~12/01/2006~
-~19097~^~301~^54.^10^4.^~1~^^^^^^^^^^^~08/01/1991~
-~19097~^~304~^8.^8^1.^~1~^^^^^^^^^^^~08/01/1991~
-~19097~^~305~^40.^7^4.^~1~^^^^^^^^^^^~08/01/1991~
-~19097~^~306~^96.^12^13.^~1~^^^^^^^^^^^~08/01/1991~
-~19097~^~307~^46.^12^5.^~1~^^^^^^^^^^^~08/01/1991~
-~19097~^~318~^46.^0^^~4~^~FLA~^^^^^^^^^^~12/01/2006~
-~19097~^~319~^12.^0^^~4~^~FLA~^^^^^^^^^^~12/01/2006~
-~19097~^~320~^12.^0^^~4~^~FLA~^^^^^^^^^^~12/01/2006~
-~19097~^~321~^1.^0^^~4~^~FLA~^^^^^^^^^^~12/01/2006~
-~19097~^~322~^0.^0^^~4~^~FLA~^^^^^^^^^^~12/01/2006~
-~19097~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~
-~19097~^~334~^5.^0^^~4~^~FLA~^^^^^^^^^^~12/01/2006~
-~19097~^~337~^0.^0^^~4~^~FLA~^^^^^^^^^^~02/01/2003~
-~19097~^~338~^7.^0^^~4~^~FLA~^^^^^^^^^^~12/01/2006~
-~19097~^~417~^4.^0^^~4~^~FLA~^^^^^^^^^^~12/01/2006~
-~19097~^~431~^0.^0^^~4~^~FLA~^^^^^^^^^^~02/01/2003~
-~19097~^~432~^4.^0^^~4~^~FLA~^^^^^^^^^^~12/01/2006~
-~19097~^~435~^4.^0^^~4~^~NC~^^^^^^^^^^~12/01/2006~
-~19097~^~601~^1.^0^^~4~^~FLA~^^^^^^^^^^~12/01/2006~
-~19098~^~208~^482.^1^^~9~^~MC~^^^^^^^^^^~05/01/2002~
-~19098~^~262~^5.^0^^~4~^~FLM~^^^^^^^^^^~02/01/2003~
-~19098~^~263~^79.^0^^~4~^~FLM~^^^^^^^^^^~02/01/2003~
-~19098~^~268~^2017.^0^^~9~^~MC~^^^^^^^^^^~02/01/2003~
-~19098~^~301~^73.^1^^~9~^~MC~^^^^^^^^^^~05/01/2002~
-~19098~^~304~^62.^1^^~9~^~MC~^^^^^^^^^^~05/01/2002~
-~19098~^~305~^141.^1^^~9~^~MC~^^^^^^^^^^~05/01/2002~
-~19098~^~306~^347.^1^^~9~^~MC~^^^^^^^^^^~05/01/2002~
-~19098~^~307~^225.^1^^~9~^~MC~^^^^^^^^^^~05/01/2002~
-~19098~^~318~^51.^0^^~4~^~FLM~^^^^^^^^^^~02/01/2003~
-~19098~^~319~^14.^0^^~4~^~FLM~^^^^^^^^^^~02/01/2003~
-~19098~^~320~^14.^0^^~4~^~FLM~^^^^^^^^^^~02/01/2003~
-~19098~^~321~^1.^0^^~4~^~FLM~^^^^^^^^^^~02/01/2003~
-~19098~^~322~^0.^0^^~4~^~FLM~^^^^^^^^^^~02/01/2003~
-~19098~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~
-~19098~^~334~^0.^0^^~4~^~FLM~^^^^^^^^^^~02/01/2003~
-~19098~^~337~^0.^0^^~4~^~FLM~^^^^^^^^^^~02/01/2003~
-~19098~^~338~^0.^0^^~4~^~FLM~^^^^^^^^^^~02/01/2003~
-~19098~^~417~^36.^0^^~4~^~FLM~^^^^^^^^^^~02/01/2003~
-~19098~^~431~^0.^0^^~4~^~FLM~^^^^^^^^^^~07/01/2002~
-~19098~^~432~^36.^0^^~4~^~FLM~^^^^^^^^^^~02/01/2003~
-~19098~^~435~^36.^0^^~4~^~NC~^^^^^^^^^^~12/01/2006~
-~19098~^~601~^6.^1^^~9~^~MC~^^^^^^^^^^~05/01/2002~
-~19099~^~208~^373.^0^^~4~^~NC~^^^^^^^^^^~12/01/2006~
-~19099~^~262~^0.^0^^~6~^~RKI~^^^^^^^^^^~02/01/2003~
-~19099~^~263~^0.^0^^~6~^~RKI~^^^^^^^^^^~02/01/2003~
-~19099~^~268~^1560.^0^^~4~^~NC~^^^^^^^^^^~12/01/2006~
-~19099~^~301~^3.^0^^~1~^~RKA~^^^^^^^^^^~12/01/2006~
-~19099~^~304~^0.^0^^~1~^~RKA~^^^^^^^^^^~12/01/2006~
-~19099~^~305~^0.^0^^~1~^~RKA~^^^^^^^^^^~12/01/2006~
-~19099~^~306~^4.^0^^~1~^~RKA~^^^^^^^^^^~12/01/2006~
-~19099~^~307~^11.^0^^~1~^~RKA~^^^^^^^^^^~12/01/2006~
-~19099~^~318~^0.^0^^~6~^~RKI~^^^^^^^^^^~02/01/2003~
-~19099~^~319~^0.^0^^~6~^~RKI~^^^^^^^^^^~02/01/2003~
-~19099~^~320~^0.^0^^~4~^~NC~^^^^^^^^^^~05/01/2011~
-~19099~^~321~^0.^0^^~6~^~RKI~^^^^^^^^^^~02/01/2003~
-~19099~^~322~^0.^0^^~6~^~RKI~^^^^^^^^^^~02/01/2003~
-~19099~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~
-~19099~^~334~^0.^0^^~6~^~RKI~^^^^^^^^^^~02/01/2003~
-~19099~^~337~^0.^0^^~6~^~RKI~^^^^^^^^^^~02/01/2003~
-~19099~^~338~^0.^0^^~6~^~RKI~^^^^^^^^^^~02/01/2003~
-~19099~^~417~^0.^0^^~6~^~RKI~^^^^^^^^^^~02/01/2003~
-~19099~^~431~^0.^0^^~6~^~RKI~^^^^^^^^^^~02/01/2003~
-~19099~^~432~^0.^0^^~6~^~RKI~^^^^^^^^^^~02/01/2003~
-~19099~^~435~^0.^0^^~4~^~NC~^^^^^^^^^^~12/01/2006~
-~19099~^~601~^0.^0^^~6~^~RKI~^^^^^^^^^^~02/01/2003~
-~19100~^~208~^410.^0^^~4~^~NC~^^^^^^^^^^~01/01/2017~
-~19100~^~262~^8.^0^^~4~^~RC~^^^^^^^^^^~02/01/2003~
-~19100~^~263~^130.^0^^~4~^~RC~^^^^^^^^^^~02/01/2003~
-~19100~^~268~^1715.^0^^~4~^~NC~^^^^^^^^^^~01/01/2017~
-~19100~^~301~^49.^0^^~4~^~RC~^^^^^^^^^^~12/01/2006~
-~19100~^~304~^36.^0^^~4~^~RC~^^^^^^^^^^~12/01/2006~
-~19100~^~305~^71.^0^^~4~^~RC~^^^^^^^^^^~12/01/2006~
-~19100~^~306~^134.^0^^~4~^~RC~^^^^^^^^^^~12/01/2006~
-~19100~^~307~^45.^0^^~4~^~RC~^^^^^^^^^^~12/01/2006~
-~19100~^~318~^159.^0^^~4~^~NC~^^^^^^^^^^~02/01/2003~
-~19100~^~319~^43.^0^^~4~^~RC~^^^^^^^^^^~02/01/2003~
-~19100~^~320~^44.^0^^~4~^~NC~^^^^^^^^^^~07/01/2007~
-~19100~^~321~^10.^0^^~4~^~RC~^^^^^^^^^^~02/01/2003~
-~19100~^~322~^0.^0^^~4~^~RC~^^^^^^^^^^~02/01/2003~
-~19100~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~
-~19100~^~334~^0.^0^^~4~^~RC~^^^^^^^^^^~02/01/2003~
-~19100~^~337~^0.^0^^~4~^~RC~^^^^^^^^^^~02/01/2003~
-~19100~^~338~^4.^0^^~4~^~RC~^^^^^^^^^^~02/01/2003~
-~19100~^~417~^4.^0^^~4~^~RC~^^^^^^^^^^~02/01/2003~
-~19100~^~431~^0.^0^^~4~^~RC~^^^^^^^^^^~03/01/2002~
-~19100~^~432~^4.^0^^~4~^~RC~^^^^^^^^^^~02/01/2003~
-~19100~^~435~^4.^0^^~4~^~NC~^^^^^^^^^^~07/01/2007~
-~19100~^~601~^14.^0^^~4~^~RC~^^^^^^^^^^~02/01/2003~
-~19101~^~208~^460.^0^^~4~^~NC~^^^^^^^^^^~01/01/2017~
-~19101~^~262~^7.^0^^~4~^~RC~^^^^^^^^^^~02/01/2003~
-~19101~^~263~^112.^0^^~4~^~RC~^^^^^^^^^^~02/01/2003~
-~19101~^~268~^1927.^0^^~4~^~NC~^^^^^^^^^^~01/01/2017~
-~19101~^~301~^57.^0^^~4~^~RC~^^^^^^^^^^~12/01/2006~
-~19101~^~304~^55.^0^^~4~^~RC~^^^^^^^^^^~12/01/2006~
-~19101~^~305~^114.^0^^~4~^~RC~^^^^^^^^^^~12/01/2006~
-~19101~^~306~^183.^0^^~4~^~RC~^^^^^^^^^^~12/01/2006~
-~19101~^~307~^39.^0^^~4~^~RC~^^^^^^^^^^~12/01/2006~
-~19101~^~318~^140.^0^^~4~^~NC~^^^^^^^^^^~02/01/2003~
-~19101~^~319~^37.^0^^~4~^~RC~^^^^^^^^^^~02/01/2003~
-~19101~^~320~^38.^0^^~4~^~NC~^^^^^^^^^^~07/01/2007~
-~19101~^~321~^10.^0^^~4~^~RC~^^^^^^^^^^~02/01/2003~
-~19101~^~322~^0.^0^^~4~^~RC~^^^^^^^^^^~08/01/2003~
-~19101~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~
-~19101~^~334~^0.^0^^~4~^~RC~^^^^^^^^^^~02/01/2003~
-~19101~^~337~^0.^0^^~4~^~RC~^^^^^^^^^^~12/01/2006~
-~19101~^~338~^5.^0^^~4~^~RC~^^^^^^^^^^~02/01/2003~
-~19101~^~417~^16.^0^^~4~^~RC~^^^^^^^^^^~02/01/2003~
-~19101~^~431~^0.^0^^~4~^~RC~^^^^^^^^^^~02/01/2003~
-~19101~^~432~^16.^0^^~4~^~RC~^^^^^^^^^^~02/01/2003~
-~19101~^~435~^16.^0^^~4~^~NC~^^^^^^^^^^~07/01/2007~
-~19101~^~601~^12.^0^^~4~^~RC~^^^^^^^^^^~02/01/2003~
-~19102~^~208~^387.^0^^~4~^~RC~^^^^^^^^^^~05/01/2006~
-~19102~^~262~^0.^0^^~4~^~RC~^^^^^^^^^^~05/01/2006~
-~19102~^~263~^0.^0^^~4~^~RC~^^^^^^^^^^~05/01/2006~
-~19102~^~268~^1620.^0^^~4~^~RC~^^^^^^^^^^~05/01/2006~
-~19102~^~301~^42.^0^^~4~^~RC~^^^^^^^^^^~05/01/2006~
-~19102~^~304~^20.^0^^~4~^~RC~^^^^^^^^^^~05/01/2006~
-~19102~^~305~^68.^0^^~4~^~RC~^^^^^^^^^^~05/01/2006~
-~19102~^~306~^119.^0^^~4~^~RC~^^^^^^^^^^~05/01/2006~
-~19102~^~307~^118.^0^^~4~^~RC~^^^^^^^^^^~05/01/2006~
-~19102~^~318~^32.^0^^~4~^~RC~^^^^^^^^^^~05/01/2006~
-~19102~^~319~^9.^0^^~4~^~RC~^^^^^^^^^^~05/01/2006~
-~19102~^~320~^9.^0^^~4~^~RC~^^^^^^^^^^~05/01/2006~
-~19102~^~417~^9.^0^^~4~^~RC~^^^^^^^^^^~05/01/2006~
-~19102~^~431~^0.^0^^~4~^~RC~^^^^^^^^^^~05/01/2006~
-~19102~^~432~^9.^0^^~4~^~RC~^^^^^^^^^^~05/01/2006~
-~19102~^~435~^9.^0^^~4~^~NC~^^^^^^^^^^~05/01/2006~
-~19102~^~601~^3.^0^^~4~^~RC~^^^^^^^^^^~05/01/2006~
-~19103~^~208~^383.^0^^~4~^~NC~^^^^^^^^^^~12/01/2006~
-~19103~^~262~^0.^0^^~4~^~RC~^^^^^^^^^^~03/01/2002~
-~19103~^~263~^0.^0^^~4~^~RC~^^^^^^^^^^~03/01/2002~
-~19103~^~268~^1602.^0^^~4~^~NC~^^^^^^^^^^~12/01/2006~
-~19103~^~301~^38.^0^^~4~^~RC~^^^^^^^^^^~12/01/2006~
-~19103~^~304~^3.^0^^~4~^~RC~^^^^^^^^^^~12/01/2006~
-~19103~^~305~^30.^0^^~4~^~RC~^^^^^^^^^^~12/01/2006~
-~19103~^~306~^49.^0^^~4~^~RC~^^^^^^^^^^~12/01/2006~
-~19103~^~307~^47.^0^^~4~^~RC~^^^^^^^^^^~12/01/2006~
-~19103~^~318~^168.^0^^~4~^~NC~^^^^^^^^^^~12/01/2006~
-~19103~^~319~^45.^0^^~4~^~RC~^^^^^^^^^^~12/01/2006~
-~19103~^~320~^46.^0^^~4~^~NC~^^^^^^^^^^~07/01/2007~
-~19103~^~321~^10.^0^^~4~^~RC~^^^^^^^^^^~12/01/2006~
-~19103~^~322~^0.^0^^~4~^~RC~^^^^^^^^^^~02/01/2003~
-~19103~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~
-~19103~^~334~^0.^0^^~4~^~RC~^^^^^^^^^^~02/01/2003~
-~19103~^~337~^0.^0^^~4~^~RC~^^^^^^^^^^~02/01/2003~
-~19103~^~338~^0.^0^^~4~^~RC~^^^^^^^^^^~02/01/2003~
-~19103~^~417~^1.^0^^~4~^~RC~^^^^^^^^^^~12/01/2006~
-~19103~^~431~^0.^0^^~4~^~RC~^^^^^^^^^^~03/01/2002~
-~19103~^~432~^1.^0^^~4~^~RC~^^^^^^^^^^~12/01/2006~
-~19103~^~435~^1.^0^^~4~^~NC~^^^^^^^^^^~07/01/2007~
-~19103~^~601~^15.^0^^~4~^~RC~^^^^^^^^^^~12/01/2006~
-~19104~^~208~^435.^0^^~4~^~NC~^^^^^^^^^^~12/01/2006~
-~19104~^~262~^0.^0^^~4~^~RC~^^^^^^^^^^~12/01/2006~
-~19104~^~263~^0.^0^^~4~^~RC~^^^^^^^^^^~12/01/2006~
-~19104~^~268~^1819.^0^^~4~^~NC~^^^^^^^^^^~12/01/2006~
-~19104~^~301~^47.^0^^~4~^~RC~^^^^^^^^^^~12/01/2006~
-~19104~^~304~^24.^0^^~4~^~RC~^^^^^^^^^^~12/01/2006~
-~19104~^~305~^73.^0^^~4~^~RC~^^^^^^^^^^~12/01/2006~
-~19104~^~306~^103.^0^^~4~^~RC~^^^^^^^^^^~12/01/2006~
-~19104~^~307~^42.^0^^~4~^~RC~^^^^^^^^^^~12/01/2006~
-~19104~^~318~^151.^0^^~4~^~NC~^^^^^^^^^^~12/01/2006~
-~19104~^~319~^40.^0^^~4~^~RC~^^^^^^^^^^~12/01/2006~
-~19104~^~320~^41.^0^^~4~^~NC~^^^^^^^^^^~07/01/2007~
-~19104~^~321~^11.^0^^~4~^~RC~^^^^^^^^^^~12/01/2006~
-~19104~^~322~^0.^0^^~4~^~RC~^^^^^^^^^^~12/01/2006~
-~19104~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~
-~19104~^~334~^0.^0^^~4~^~RC~^^^^^^^^^^~12/01/2006~
-~19104~^~337~^0.^0^^~4~^~RC~^^^^^^^^^^~12/01/2006~
-~19104~^~338~^1.^0^^~4~^~RC~^^^^^^^^^^~12/01/2006~
-~19104~^~417~^12.^0^^~4~^~RC~^^^^^^^^^^~12/01/2006~
-~19104~^~431~^0.^0^^~4~^~RC~^^^^^^^^^^~12/01/2006~
-~19104~^~432~^12.^0^^~4~^~RC~^^^^^^^^^^~12/01/2006~
-~19104~^~435~^12.^0^^~4~^~NC~^^^^^^^^^^~07/01/2007~
-~19104~^~601~^13.^0^^~4~^~RC~^^^^^^^^^^~12/01/2006~
-~19105~^~208~^512.^1^^~9~^~MC~^^^^^^^^^^~04/01/2006~
-~19105~^~268~^2142.^0^^~9~^~MC~^^^^^^^^^^~04/01/2006~
-~19105~^~301~^89.^1^^~9~^~MC~^^^^^^^^^^~03/01/2006~
-~19105~^~306~^502.^3^10.^~1~^^^^^^^^^^^~08/01/1991~
-~19105~^~307~^36.^1^^~9~^~MC~^^^^^^^^^^~03/01/2006~
-~19105~^~318~^68.^1^^~9~^~MC~^^^^^^^^^^~03/01/2006~
-~19105~^~601~^12.^1^^~9~^~MC~^^^^^^^^^^~03/01/2006~
-~19106~^~208~^396.^0^^~4~^~NC~^^^^^^^^^^~02/01/2003~
-~19106~^~262~^0.^0^^~4~^~FLC~^^^^^^^^^^~02/01/2003~
-~19106~^~263~^0.^0^^~4~^~FLC~^^^^^^^^^^~02/01/2003~
-~19106~^~268~^1655.^0^^~4~^~NC~^^^^^^^^^^~02/01/2003~
-~19106~^~301~^3.^9^0.^~1~^^^^^^^^^^^~08/01/1991~
-~19106~^~304~^1.^9^0.^~1~^^^^^^^^^^^~08/01/1991~
-~19106~^~305~^1.^8^0.^~1~^^^^^^^^^^^~08/01/1991~
-~19106~^~306~^5.^9^3.^~1~^^^^^^^^^^^~08/01/1991~
-~19106~^~307~^44.^9^5.^~1~^^^^^^^^^^^~08/01/1991~
-~19106~^~318~^0.^0^^~4~^~FLC~^^^^^^^^^^~02/01/2003~
-~19106~^~319~^0.^0^^~4~^~FLC~^^^^^^^^^^~02/01/2003~
-~19106~^~320~^0.^0^^~4~^~FLC~^^^^^^^^^^~02/01/2003~
-~19106~^~321~^0.^0^^~4~^~FLC~^^^^^^^^^^~02/01/2003~
-~19106~^~322~^0.^0^^~4~^~FLC~^^^^^^^^^^~02/01/2003~
-~19106~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~
-~19106~^~334~^0.^0^^~4~^~FLC~^^^^^^^^^^~02/01/2003~
-~19106~^~337~^0.^0^^~4~^~FLC~^^^^^^^^^^~02/01/2003~
-~19106~^~338~^0.^0^^~4~^~FLC~^^^^^^^^^^~02/01/2003~
-~19106~^~417~^0.^0^^~4~^~FLC~^^^^^^^^^^~02/01/2003~
-~19106~^~431~^0.^0^^~4~^~FLC~^^^^^^^^^^~02/01/2003~
-~19106~^~432~^0.^0^^~4~^~FLC~^^^^^^^^^^~02/01/2003~
-~19106~^~435~^0.^0^^~4~^~NC~^^^^^^^^^^~12/01/2006~
-~19106~^~601~^0.^1^^~8~^~LC~^^^^^^^^^^~02/01/2003~
-~19107~^~208~^394.^0^^~4~^~NC~^^^^^^^^^^~12/01/1997~
-~19107~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~
-~19107~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~
-~19107~^~268~^1648.^0^^~4~^^^^^^^^^^^~04/01/2005~
-~19107~^~301~^3.^37^1.^~1~^^^^^^^^^^^~08/01/1991~
-~19107~^~304~^3.^37^0.^~1~^^^^^^^^^^^~08/01/1991~
-~19107~^~305~^3.^37^1.^~1~^^^^^^^^^^^~08/01/1991~
-~19107~^~306~^5.^37^1.^~1~^^^^^^^^^^^~08/01/1991~
-~19107~^~307~^38.^33^7.^~1~^^^^^^^^^^^~08/01/1991~
-~19107~^~318~^0.^1^^~4~^^^^^^^^^^^~08/01/1991~
-~19107~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2002~
-~19107~^~320~^0.^0^^~4~^~NC~^^^^^^^^^^~06/01/2002~
-~19107~^~321~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~
-~19107~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~
-~19107~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~
-~19107~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~
-~19107~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~
-~19107~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~
-~19107~^~417~^0.^1^^~4~^^^^^^^^^^^~08/01/1991~
-~19107~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~
-~19107~^~432~^0.^1^^~4~^^^^^^^^^^^~08/01/1991~
-~19107~^~435~^0.^0^^~4~^~NC~^^^^^^^^^^~12/01/2006~
-~19107~^~601~^0.^1^^~4~^^^^^^^^^^^~08/01/1991~
-~19108~^~208~^375.^0^^~4~^~NC~^^^^^^^^^^~02/01/2003~
-~19108~^~262~^0.^0^^~4~^~FLC~^^^^^^^^^^~02/01/2003~
-~19108~^~263~^0.^0^^~4~^~FLC~^^^^^^^^^^~02/01/2003~
-~19108~^~268~^1568.^0^^~4~^~NC~^^^^^^^^^^~02/01/2003~
-~19108~^~301~^3.^1^^~1~^^^^^^^^^^^~08/01/1991~
-~19108~^~304~^2.^1^^~1~^^^^^^^^^^^~08/01/1991~
-~19108~^~305~^4.^0^^~4~^~FLC~^^^^^^^^^^~02/01/2003~
-~19108~^~306~^37.^1^^~1~^^^^^^^^^^^~08/01/1991~
-~19108~^~307~^50.^1^^~8~^~LC~^^^^^^^^^^~02/01/2003~
-~19108~^~318~^0.^0^^~4~^~FLC~^^^^^^^^^^~02/01/2003~
-~19108~^~319~^0.^0^^~4~^~FLC~^^^^^^^^^^~02/01/2003~
-~19108~^~320~^0.^0^^~4~^~FLC~^^^^^^^^^^~02/01/2003~
-~19108~^~321~^0.^0^^~4~^~FLC~^^^^^^^^^^~02/01/2003~
-~19108~^~322~^0.^0^^~4~^~FLC~^^^^^^^^^^~02/01/2003~
-~19108~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~
-~19108~^~334~^0.^0^^~4~^~FLC~^^^^^^^^^^~02/01/2003~
-~19108~^~337~^0.^0^^~4~^~FLC~^^^^^^^^^^~02/01/2003~
-~19108~^~338~^0.^0^^~4~^~FLC~^^^^^^^^^^~02/01/2003~
-~19108~^~417~^0.^0^^~4~^~FLC~^^^^^^^^^^~02/01/2003~
-~19108~^~431~^0.^0^^~4~^~FLC~^^^^^^^^^^~02/01/2003~
-~19108~^~432~^0.^0^^~4~^~FLC~^^^^^^^^^^~02/01/2003~
-~19108~^~435~^0.^0^^~4~^~NC~^^^^^^^^^^~12/01/2006~
-~19108~^~601~^0.^0^^~4~^~FLC~^^^^^^^^^^~02/01/2003~
-~19109~^~208~^518.^0^^~4~^~NC~^^^^^^^^^^~03/01/2006~
-~19109~^~262~^14.^1^^~1~^~A~^^^^^^^^^^~11/01/2003~
-~19109~^~263~^116.^1^^~1~^~A~^^^^^^^^^^~11/01/2003~
-~19109~^~268~^2169.^0^^~4~^~NC~^^^^^^^^^^~03/01/2006~
-~19109~^~301~^125.^1^^~1~^~A~^^^^^^^^^^~11/01/2003~
-~19109~^~304~^37.^1^^~1~^~A~^^^^^^^^^^~11/01/2003~
-~19109~^~305~^135.^1^^~1~^~A~^^^^^^^^^^~11/01/2003~
-~19109~^~306~^231.^1^^~1~^~A~^^^^^^^^^^~11/01/2003~
-~19109~^~307~^54.^1^^~1~^~A~^^^^^^^^^^~11/01/2003~
-~19109~^~318~^81.^0^^~1~^~AS~^^^^^^^^^^~02/01/2004~
-~19109~^~319~^24.^1^^~1~^~A~^^^^^^^^^^~02/01/2004~
-~19109~^~320~^24.^0^^~1~^~AS~^^^^^^^^^^~02/01/2004~
-~19109~^~321~^0.^1^^~1~^~A~^^^^^^^^^~1~^~11/01/2003~
-~19109~^~322~^0.^1^^~1~^~A~^^^^^^^^^~1~^~11/01/2003~
-~19109~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~
-~19109~^~334~^0.^1^^~1~^~A~^^^^^^^^^~1~^~11/01/2003~
-~19109~^~337~^0.^1^^~1~^~A~^^^^^^^^^~1~^~11/01/2003~
-~19109~^~338~^23.^0^^~4~^~NR~^^^^^^^^^^~11/01/2003~
-~19109~^~417~^14.^1^^~1~^~A~^^^^^^^^^^~11/01/2003~
-~19109~^~431~^6.^1^^~1~^~A~^^^^^^^^^^~11/01/2003~
-~19109~^~432~^8.^1^^~1~^~AS~^^^^^^^^^^~11/01/2003~
-~19109~^~435~^18.^0^^~4~^~NC~^^^^^^^^^^~03/01/2006~
-~19109~^~601~^11.^1^^~1~^~A~^^^^^^^^^^~11/01/2003~
-~19110~^~208~^523.^0^^~4~^~NC~^^^^^^^^^^~02/01/2017~
-~19110~^~268~^2188.^0^^~4~^~NC~^^^^^^^^^^~02/01/2017~
-~19110~^~301~^158.^1^^~9~^~MC~^^^^^^^^^^~05/01/2002~
-~19110~^~304~^13.^1^^~9~^~MC~^^^^^^^^^^~05/01/2002~
-~19110~^~305~^123.^1^^~9~^~MC~^^^^^^^^^^~05/01/2002~
-~19110~^~306~^325.^1^^~9~^~MC~^^^^^^^^^^~05/01/2002~
-~19110~^~307~^196.^1^^~9~^~MC~^^^^^^^^^^~05/01/2002~
-~19110~^~318~^102.^1^^~9~^~MC~^^^^^^^^^^~05/01/2002~
-~19110~^~417~^6.^1^^~9~^~MC~^^^^^^^^^^~05/01/2002~
-~19110~^~601~^11.^1^^~9~^~MC~^^^^^^^^^^~05/01/2002~
-~19111~^~208~^475.^0^^~4~^~NC~^^^^^^^^^^~02/01/2017~
-~19111~^~262~^4.^0^^~4~^~FLC~^^^^^^^^^^~03/01/2006~
-~19111~^~263~^119.^0^^~4~^~FLC~^^^^^^^^^^~03/01/2006~
-~19111~^~268~^1988.^0^^~4~^~NC~^^^^^^^^^^~02/01/2017~
-~19111~^~301~^47.^1^^~9~^~MC~^^^^^^^^^^~03/01/2006~
-~19111~^~304~^43.^0^^~4~^~FLC~^^^^^^^^^^~03/01/2006~
-~19111~^~305~^94.^0^^~4~^~FLC~^^^^^^^^^^~03/01/2006~
-~19111~^~306~^249.^0^^~4~^~FLC~^^^^^^^^^^~03/01/2006~
-~19111~^~307~^230.^1^^~9~^~MC~^^^^^^^^^^~03/01/2006~
-~19111~^~318~^0.^1^^~9~^~MC~^^^^^^^^^^~03/01/2006~
-~19111~^~319~^0.^0^^~4~^~NR~^^^^^^^^^^~03/01/2006~
-~19111~^~320~^0.^0^^~4~^~NC~^^^^^^^^^^~03/01/2006~
-~19111~^~321~^0.^0^^~4~^~NR~^^^^^^^^^^~03/01/2006~
-~19111~^~322~^0.^0^^~4~^~FLC~^^^^^^^^^^~02/01/2003~
-~19111~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~
-~19111~^~334~^0.^0^^~4~^~FLC~^^^^^^^^^^~02/01/2003~
-~19111~^~337~^0.^0^^~4~^~FLC~^^^^^^^^^^~02/01/2003~
-~19111~^~338~^0.^0^^~4~^~NR~^^^^^^^^^^~03/01/2006~
-~19111~^~417~^12.^0^^~4~^~FLC~^^^^^^^^^^~03/01/2006~
-~19111~^~431~^0.^0^^~4~^~FLC~^^^^^^^^^^~03/01/2006~
-~19111~^~432~^12.^0^^~4~^~FLC~^^^^^^^^^^~03/01/2006~
-~19111~^~435~^12.^0^^~4~^~NC~^^^^^^^^^^~12/01/2006~
-~19111~^~601~^0.^1^^~9~^~MC~^^^^^^^^^^~03/01/2006~
-~19112~^~208~^348.^0^^~4~^~NC~^^^^^^^^^^~08/01/2015~
-~19112~^~268~^1455.^0^^~4~^~NC~^^^^^^^^^^~08/01/2015~
-~19112~^~301~^0.^3^0.^~8~^~LC~^^^1^0.^0.^2^0.^0.^~4~^~03/01/2002~
-~19112~^~307~^287.^3^2.^~8~^~LC~^^^1^282.^289.^2^275.^297.^~4~^~03/01/2002~
-~19112~^~318~^0.^3^0.^~8~^~LC~^^^1^0.^0.^2^0.^0.^~4~^~03/01/2002~
-~19112~^~601~^0.^3^0.^~8~^~LC~^^^1^0.^0.^2^0.^0.^~4~^~03/01/2002~
-~19113~^~208~^291.^0^^~4~^~FLC~^^^^^^^^^^~03/01/2015~
-~19113~^~262~^0.^0^^~4~^~FLC~^^^^^^^^^^~03/01/2015~
-~19113~^~263~^0.^0^^~4~^~FLC~^^^^^^^^^^~03/01/2015~
-~19113~^~268~^1216.^0^^~4~^~FLC~^^^^^^^^^^~03/01/2015~
-~19113~^~301~^2.^0^^~1~^^^^^^^^^^^~08/01/1991~
-~19113~^~304~^0.^0^^~4~^~FLC~^^^^^^^^^^~03/01/2015~
-~19113~^~305~^10.^0^^~1~^^^^^^^^^^^~08/01/1991~
-~19113~^~306~^3.^0^^~1~^^^^^^^^^^^~08/01/1991~
-~19113~^~307~^287.^0^^~4~^~FLC~^^^^^^^^^^~03/01/2015~
-~19113~^~318~^0.^0^^~4~^~FLC~^^^^^^^^^^~03/01/2015~
-~19113~^~319~^0.^0^^~4~^~FLC~^^^^^^^^^^~03/01/2015~
-~19113~^~320~^0.^0^^~4~^~NC~^^^^^^^^^^~03/01/2015~
-~19113~^~321~^0.^0^^~4~^~FLC~^^^^^^^^^^~03/01/2015~
-~19113~^~322~^0.^0^^~4~^~FLC~^^^^^^^^^^~03/01/2015~
-~19113~^~324~^0.^0^^~4~^~FLC~^^^^^^^^^^~03/01/2015~
-~19113~^~334~^0.^0^^~4~^~FLC~^^^^^^^^^^~03/01/2015~
-~19113~^~337~^0.^0^^~4~^~FLC~^^^^^^^^^^~03/01/2015~
-~19113~^~338~^0.^0^^~4~^~FLC~^^^^^^^^^^~03/01/2015~
-~19113~^~417~^0.^0^^~4~^~FLC~^^^^^^^^^^~12/01/1997~
-~19113~^~431~^0.^0^^~4~^~FLC~^^^^^^^^^^~03/01/2015~
-~19113~^~432~^0.^0^^~4~^~FLC~^^^^^^^^^^~12/01/1997~
-~19113~^~435~^0.^0^^~4~^~NC~^^^^^^^^^^~01/01/2001~
-~19113~^~601~^0.^0^^~4~^~FLC~^^^^^^^^^^~03/01/2015~
-~19113~^~636~^0.^0^^~4~^~FLC~^^^^^^^^^^~03/01/2015~
-~19114~^~208~^187.^0^^~4~^~NC~^^^^^^^^^^~05/01/2009~
-~19114~^~262~^2.^0^^~4~^~FLM~^^^^^^^^^^~05/01/2004~
-~19114~^~263~^69.^0^^~4~^~FLM~^^^^^^^^^^~05/01/2004~
-~19114~^~268~^784.^0^^~4~^~NC~^^^^^^^^^^~05/01/2009~
-~19114~^~301~^159.^2^^~9~^~MC~^^^1^158.^160.^1^^^^~05/01/2004~
-~19114~^~304~^20.^0^^~4~^~FLM~^^^^^^^^^^~05/01/2004~
-~19114~^~305~^83.^0^^~4~^~FLM~^^^^^^^^^^~05/01/2004~
-~19114~^~306~^170.^0^^~4~^~FLM~^^^^^^^^^^~05/01/2004~
-~19114~^~307~^71.^2^^~9~^~MC~^^^1^67.^75.^1^^^^~05/01/2004~
-~19114~^~318~^424.^0^^~4~^~NC~^^^^^^^^^^~02/01/2017~
-~19114~^~319~^60.^0^^~4~^~FLM~^^^^^^^^^^~05/01/2004~
-~19114~^~320~^71.^0^^~4~^~NC~^^^^^^^^^^~03/01/2009~
-~19114~^~321~^135.^0^^~4~^~FLM~^^^^^^^^^^~05/01/2004~
-~19114~^~322~^0.^0^^~4~^~FLM~^^^^^^^^^^~05/01/2004~
-~19114~^~324~^5.^0^^~4~^~BFFN~^~01211~^^^^^^^^^~03/01/2009~
-~19114~^~334~^0.^0^^~4~^~FLM~^^^^^^^^^^~05/01/2004~
-~19114~^~337~^0.^0^^~4~^~FLM~^^^^^^^^^^~05/01/2004~
-~19114~^~338~^1.^0^^~4~^~FLM~^^^^^^^^^^~05/01/2004~
-~19114~^~417~^4.^0^^~4~^~FLM~^^^^^^^^^^~05/01/2004~
-~19114~^~431~^0.^0^^~4~^~FLM~^^^^^^^^^^~05/01/2004~
-~19114~^~432~^4.^0^^~4~^~FLM~^^^^^^^^^^~05/01/2004~
-~19114~^~435~^4.^0^^~4~^~NC~^^^^^^^^^^~05/01/2009~
-~19114~^~601~^28.^2^^~9~^~MC~^^^1^15.^41.^1^^^^~05/01/2004~
-~19115~^~208~^467.^0^^~4~^~NC~^^^^^^^^^^~08/01/1991~
-~19115~^~262~^4.^0^^~4~^~FLA~^^^^^^^^^^~12/01/1997~
-~19115~^~263~^29.^0^^~4~^~FLA~^^^^^^^^^^~12/01/1997~
-~19115~^~268~^1954.^0^^~4~^^^^^^^^^^^~12/01/2006~
-~19115~^~301~^168.^2^^~1~^^^^^^^^^^^~08/01/1991~
-~19115~^~304~^72.^1^^~1~^^^^^^^^^^^~08/01/1991~
-~19115~^~305~^234.^0^^~4~^~FLA~^^^^^^^^^^~12/01/1997~
-~19115~^~306~^325.^2^^~1~^^^^^^^^^^^~08/01/1991~
-~19115~^~307~^170.^1^^~1~^^^^^^^^^^^~08/01/1991~
-~19115~^~318~^51.^0^^~4~^~NC~^^^^^^^^^^~03/01/2009~
-~19115~^~319~^15.^0^^~4~^~FLC~^^^^^^^^^^~02/01/2003~
-~19115~^~320~^15.^0^^~4~^~NC~^^^^^^^^^^~03/01/2009~
-~19115~^~321~^1.^0^^~4~^~FLC~^^^^^^^^^^~02/01/2003~
-~19115~^~322~^0.^0^^~4~^~FLC~^^^^^^^^^^~02/01/2003~
-~19115~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~
-~19115~^~334~^0.^0^^~4~^~FLC~^^^^^^^^^^~02/01/2003~
-~19115~^~337~^0.^0^^~4~^~FLC~^^^^^^^^^^~02/01/2003~
-~19115~^~338~^0.^0^^~4~^~FLC~^^^^^^^^^^~02/01/2003~
-~19115~^~417~^9.^0^^~4~^~FLC~^^^^^^^^^^~02/01/2003~
-~19115~^~431~^0.^0^^~4~^~FLC~^^^^^^^^^^~02/01/2003~
-~19115~^~432~^9.^0^^~4~^~FLC~^^^^^^^^^^~02/01/2003~
-~19115~^~435~^9.^0^^~4~^~NC~^^^^^^^^^^~03/01/2009~
-~19115~^~601~^17.^0^^~4~^~FLA~^^^^^^^^^^~12/01/1997~
-~19116~^~208~^318.^0^^~4~^~NC~^^^^^^^^^^~08/01/1991~
-~19116~^~262~^0.^0^^~4~^~FLA~^^^^^^^^^^~02/01/2003~
-~19116~^~263~^0.^0^^~4~^~FLA~^^^^^^^^^^~02/01/2003~
-~19116~^~268~^1331.^0^^~4~^^^^^^^^^^^~04/01/2005~
-~19116~^~301~^3.^10^0.^~1~^^^^^^^^^^^~08/01/1991~
-~19116~^~304~^2.^10^0.^~1~^^^^^^^^^^^~08/01/1991~
-~19116~^~305~^8.^6^1.^~1~^^^^^^^^^^^~08/01/1991~
-~19116~^~306~^5.^10^1.^~1~^^^^^^^^^^^~08/01/1991~
-~19116~^~307~^80.^3^12.^~8~^~LC~^^^1^56.^100.^2^23.^135.^~4~^~02/01/2003~
-~19116~^~318~^0.^0^^~4~^~FLA~^^^^^^^^^^~02/01/2003~
-~19116~^~319~^0.^0^^~4~^~FLA~^^^^^^^^^^~02/01/2003~
-~19116~^~320~^0.^0^^~4~^~FLA~^^^^^^^^^^~02/01/2003~
-~19116~^~321~^0.^0^^~4~^~FLA~^^^^^^^^^^~02/01/2003~
-~19116~^~322~^0.^0^^~4~^~FLA~^^^^^^^^^^~02/01/2003~
-~19116~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~
-~19116~^~334~^0.^0^^~4~^~FLA~^^^^^^^^^^~02/01/2003~
-~19116~^~337~^0.^0^^~4~^~FLA~^^^^^^^^^^~02/01/2003~
-~19116~^~338~^0.^0^^~4~^~FLA~^^^^^^^^^^~02/01/2003~
-~19116~^~417~^1.^0^^~4~^~FLA~^^^^^^^^^^~02/01/2003~
-~19116~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~
-~19116~^~432~^1.^0^^~4~^~FLA~^^^^^^^^^^~02/01/2003~
-~19116~^~435~^1.^0^^~4~^~NC~^^^^^^^^^^~12/01/2006~
-~19116~^~601~^0.^4^0.^~1~^^^^^^^^^^^~08/01/1991~
-~19117~^~208~^469.^0^^~4~^~NC~^^^^^^^^^^~03/01/1996~
-~19117~^~268~^1962.^0^^~4~^^^^^^^^^^^
-~19117~^~301~^33.^2^^~1~^~A~^^^^^^^^^^~03/01/1996~
-~19117~^~304~^218.^2^^~1~^~A~^^^^^^^^^^~03/01/1996~
-~19117~^~305~^607.^2^^~1~^~A~^^^^^^^^^^~03/01/1996~
-~19117~^~306~^187.^2^^~1~^~A~^^^^^^^^^^~03/01/1996~
-~19117~^~307~^195.^2^^~1~^~A~^^^^^^^^^^~03/01/1996~
-~19117~^~318~^2.^2^^~1~^~A~^^^^^^^^^^~03/01/1996~
-~19117~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2002~
-~19117~^~320~^0.^0^^~4~^~NC~^^^^^^^^^^~06/01/2002~
-~19117~^~321~^0.^0^^~4~^~T~^^^^^^^^^^~06/01/2003~
-~19117~^~322~^0.^0^^~4~^~T~^^^^^^^^^^~06/01/2003~
-~19117~^~334~^0.^0^^~4~^~T~^^^^^^^^^^~06/01/2003~
-~19117~^~417~^65.^2^^~1~^~A~^^^^^^^^^^~03/01/1996~
-~19117~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~
-~19117~^~432~^65.^2^^~1~^~A~^^^^^^^^^^~03/01/1996~
-~19117~^~435~^65.^0^^~4~^~NC~^^^^^^^^^^~06/01/2003~
-~19117~^~601~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/1996~
-~19118~^~208~^462.^1^^~9~^~MC~^^^^^^^^^^~04/01/2006~
-~19118~^~262~^4.^0^^~4~^~FLC~^^^^^^^^^^~04/01/2006~
-~19118~^~263~^44.^0^^~4~^~FLC~^^^^^^^^^^~04/01/2006~
-~19118~^~268~^1933.^0^^~9~^~MC~^^^^^^^^^^~04/01/2006~
-~19118~^~301~^69.^1^^~9~^~MC~^^^^^^^^^^~04/01/2006~
-~19118~^~304~^51.^0^^~4~^~FLC~^^^^^^^^^^~04/01/2003~
-~19118~^~305~^140.^0^^~4~^~FLC~^^^^^^^^^^~04/01/2003~
-~19118~^~306~^259.^0^^~4~^~FLC~^^^^^^^^^^~04/01/2006~
-~19118~^~307~^193.^1^^~9~^~MC~^^^^^^^^^^~04/01/2006~
-~19118~^~318~^0.^1^^~9~^~MC~^^^^^^^^^^~04/01/2006~
-~19118~^~319~^0.^0^^~4~^~NR~^^^^^^^^^^~04/01/2006~
-~19118~^~320~^0.^0^^~4~^~NC~^^^^^^^^^^~04/01/2006~
-~19118~^~321~^0.^0^^~4~^~NR~^^^^^^^^^^~04/01/2006~
-~19118~^~322~^0.^0^^~4~^~FLC~^^^^^^^^^^~02/01/2003~
-~19118~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~
-~19118~^~334~^0.^0^^~4~^~FLC~^^^^^^^^^^~02/01/2003~
-~19118~^~337~^0.^0^^~4~^~FLC~^^^^^^^^^^~02/01/2003~
-~19118~^~338~^0.^0^^~4~^~FLC~^^^^^^^^^^~02/01/2003~
-~19118~^~417~^44.^0^^~4~^~FLC~^^^^^^^^^^~04/01/2003~
-~19118~^~431~^0.^0^^~4~^~FLC~^^^^^^^^^^~04/01/2006~
-~19118~^~432~^44.^0^^~4~^~FLC~^^^^^^^^^^~04/01/2003~
-~19118~^~435~^44.^0^^~4~^~NC~^^^^^^^^^^~12/01/2006~
-~19118~^~601~^7.^1^^~9~^~MC~^^^^^^^^^^~04/01/2006~
-~19119~^~208~^519.^0^^~4~^~NC~^^^^^^^^^^~01/01/2017~
-~19119~^~268~^2172.^0^^~4~^~NC~^^^^^^^^^^~01/01/2017~
-~19119~^~301~^100.^1^^~9~^~MC~^^^^^^^^^^~03/01/2006~
-~19119~^~307~^38.^1^^~9~^~MC~^^^^^^^^^^~03/01/2006~
-~19119~^~318~^0.^1^^~9~^~MC~^^^^^^^^^^~03/01/2006~
-~19119~^~601~^10.^1^^~9~^~MC~^^^^^^^^^^~03/01/2006~
-~19120~^~208~^535.^0^^~4~^~NC~^^^^^^^^^^~12/01/2006~
-~19120~^~262~^20.^9^0.^~1~^~A~^^^^20.^20.^^^^^~02/01/2003~
-~19120~^~263~^205.^8^6.^~1~^~A~^^^^166.^221.^^^^^~02/01/2003~
-~19120~^~268~^2239.^0^^~4~^~NC~^^^^^^^^^^~12/01/2006~
-~19120~^~301~^189.^27^0.^~1~^~A~^^^1^188.^189.^1^184.^192.^~4~^~02/01/2003~
-~19120~^~304~^63.^27^3.^~1~^~A~^^^1^59.^66.^1^22.^102.^~4~^~02/01/2003~
-~19120~^~305~^208.^27^6.^~1~^~A~^^^1^202.^215.^1^124.^292.^~4~^~02/01/2003~
-~19120~^~306~^372.^27^30.^~1~^~A~^^^1^342.^403.^1^-11.^756.^~4~^~02/01/2003~
-~19120~^~307~^79.^27^8.^~1~^~A~^^^1^70.^87.^1^-30.^188.^~4~^~02/01/2003~
-~19120~^~318~^195.^0^^~4~^~NC~^^^^^^^^^^~08/01/2008~
-~19120~^~319~^59.^0^^~4~^~FLA~^^^^^^^^^^~12/01/2006~
-~19120~^~320~^59.^0^^~4~^~NC~^^^^^^^^^^~08/01/2008~
-~19120~^~321~^0.^4^0.^~1~^~A~^^^^0.^0.^^^^^~02/01/2003~
-~19120~^~322~^0.^4^0.^~1~^~A~^^^^0.^0.^^^^^~02/01/2003~
-~19120~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~
-~19120~^~334~^0.^4^0.^~1~^~A~^^^^0.^0.^^^^^~02/01/2003~
-~19120~^~337~^0.^4^0.^~1~^~A~^^^^0.^0.^^^^^~02/01/2003~
-~19120~^~338~^6.^0^^~4~^~FLA~^^^^^^^^^^~12/01/2006~
-~19120~^~417~^12.^5^0.^~1~^~A~^^^^9.^13.^^^^^~02/01/2003~
-~19120~^~431~^0.^0^^~4~^~FLA~^^^^^^^^^^~12/01/2006~
-~19120~^~432~^11.^0^^~4~^~FLC~^^^^^^^^^^~12/01/2006~
-~19120~^~435~^11.^0^^~4~^~NC~^^^^^^^^^^~08/01/2008~
-~19120~^~601~^23.^1^^~1~^~A~^^^^^^^^^^~02/01/2003~
-~19120~^~638~^16.^1^^~1~^~A~^^^^^^^^^^~02/01/2003~
-~19120~^~639~^6.^1^^~1~^~A~^^^^^^^^^^~02/01/2003~
-~19120~^~641~^37.^1^^~1~^~A~^^^^^^^^^^~02/01/2003~
-~19121~^~208~^105.^0^^~6~^~RPI~^^^^^^^^^^~03/01/2002~
-~19121~^~262~^0.^0^^~6~^~RPI~^^^^^^^^^^~03/01/2002~
-~19121~^~263~^0.^0^^~6~^~RPI~^^^^^^^^^^~03/01/2002~
-~19121~^~268~^441.^0^^~6~^~RPI~^^^^^^^^^^~05/01/2002~
-~19121~^~301~^102.^0^^~6~^~RPI~^^^^^^^^^^~03/01/2002~
-~19121~^~304~^12.^0^^~6~^~RPI~^^^^^^^^^^~03/01/2002~
-~19121~^~305~^216.^0^^~6~^~RPI~^^^^^^^^^^~03/01/2002~
-~19121~^~306~^131.^0^^~6~^~RPI~^^^^^^^^^^~03/01/2002~
-~19121~^~307~^296.^0^^~6~^~RPI~^^^^^^^^^^~03/01/2002~
-~19121~^~318~^170.^0^^~6~^~RPI~^^^^^^^^^^~03/01/2002~
-~19121~^~319~^46.^0^^~1~^~RPA~^^^^^^^^^^~03/01/2002~
-~19121~^~320~^46.^0^^~4~^~NC~^^^^^^^^^^~05/01/2002~
-~19121~^~321~^10.^0^^~4~^~O~^^^^^^^^^^~05/01/2002~
-~19121~^~324~^33.^0^^~6~^~RPI~^^^^^^^^^^~03/01/2002~
-~19121~^~417~^4.^0^^~6~^~RPI~^^^^^^^^^^~03/01/2002~
-~19121~^~431~^0.^0^^~6~^~RPI~^^^^^^^^^^~03/01/2002~
-~19121~^~432~^4.^0^^~6~^~RPI~^^^^^^^^^^~03/01/2002~
-~19121~^~435~^4.^0^^~4~^~NC~^^^^^^^^^^~05/01/2002~
-~19121~^~601~^6.^0^^~6~^~RPI~^^^^^^^^^^~03/01/2002~
-~19122~^~208~^101.^0^^~4~^~RP~^^^^^^^^^^~03/01/2002~
-~19122~^~262~^0.^0^^~4~^~RP~^^^^^^^^^^~03/01/2002~
-~19122~^~263~^0.^0^^~4~^~RP~^^^^^^^^^^~03/01/2002~
-~19122~^~268~^422.^0^^~4~^~RP~^^^^^^^^^^~05/01/2002~
-~19122~^~301~^109.^0^^~4~^~RP~^^^^^^^^^^~03/01/2002~
-~19122~^~304~^13.^0^^~4~^~RP~^^^^^^^^^^~03/01/2002~
-~19122~^~305~^83.^0^^~4~^~RP~^^^^^^^^^^~03/01/2002~
-~19122~^~306~^137.^0^^~4~^~RP~^^^^^^^^^^~03/01/2002~
-~19122~^~307~^164.^0^^~4~^~RP~^^^^^^^^^^~03/01/2002~
-~19122~^~318~^178.^0^^~4~^~RP~^^^^^^^^^^~03/01/2002~
-~19122~^~319~^49.^0^^~4~^~RP~^^^^^^^^^^~03/01/2002~
-~19122~^~320~^50.^0^^~4~^~NC~^^^^^^^^^^~05/01/2002~
-~19122~^~321~^10.^0^^~4~^~O~^^^^^^^^^^~05/01/2002~
-~19122~^~324~^35.^0^^~4~^~RP~^^^^^^^^^^~03/01/2002~
-~19122~^~417~^4.^0^^~4~^~RP~^^^^^^^^^^~03/01/2002~
-~19122~^~431~^0.^0^^~4~^~RP~^^^^^^^^^^~03/01/2002~
-~19122~^~432~^4.^0^^~4~^~RP~^^^^^^^^^^~03/01/2002~
-~19122~^~435~^4.^0^^~4~^~NC~^^^^^^^^^^~05/01/2002~
-~19122~^~601~^7.^0^^~4~^~RP~^^^^^^^^^^~03/01/2002~
-~19123~^~208~^105.^0^^~6~^~RPI~^^^^^^^^^^~03/01/2002~
-~19123~^~262~^1.^0^^~6~^~RPI~^^^^^^^^^^~03/01/2002~
-~19123~^~263~^39.^0^^~6~^~RPI~^^^^^^^^^^~03/01/2002~
-~19123~^~268~^441.^0^^~6~^~RPI~^^^^^^^^^^~05/01/2002~
-~19123~^~301~^104.^0^^~6~^~RPI~^^^^^^^^^^~03/01/2002~
-~19123~^~304~^19.^0^^~6~^~RPI~^^^^^^^^^^~03/01/2002~
-~19123~^~305~^238.^0^^~6~^~RPI~^^^^^^^^^^~03/01/2002~
-~19123~^~306~^168.^0^^~1~^~RPA~^^^^^^^^^^~03/01/2002~
-~19123~^~307~^284.^0^^~1~^~RPA~^^^^^^^^^^~03/01/2002~
-~19123~^~318~^170.^0^^~6~^~RPI~^^^^^^^^^^~03/01/2002~
-~19123~^~319~^46.^0^^~1~^~RPA~^^^^^^^^^^~03/01/2002~
-~19123~^~320~^46.^0^^~4~^~NC~^^^^^^^^^^~05/01/2002~
-~19123~^~321~^10.^0^^~4~^~O~^^^^^^^^^^~05/01/2002~
-~19123~^~324~^33.^0^^~6~^~RPI~^^^^^^^^^^~03/01/2002~
-~19123~^~417~^5.^0^^~6~^~RPI~^^^^^^^^^^~03/01/2002~
-~19123~^~431~^0.^0^^~6~^~RPI~^^^^^^^^^^~03/01/2002~
-~19123~^~432~^5.^0^^~6~^~RPI~^^^^^^^^^^~03/01/2002~
-~19123~^~435~^5.^0^^~4~^~NC~^^^^^^^^^^~05/01/2002~
-~19123~^~601~^6.^0^^~6~^~RPI~^^^^^^^^^^~03/01/2002~
-~19124~^~208~^426.^0^^~4~^~NC~^^^^^^^^^^~03/01/1996~
-~19124~^~262~^14.^0^^~4~^~FLA~^^^^^^^^^^~02/01/2003~
-~19124~^~263~^231.^0^^~4~^~FLA~^^^^^^^^^^~02/01/2003~
-~19124~^~268~^1782.^0^^~4~^^^^^^^^^^^~04/01/2005~
-~19124~^~301~^34.^2^^~1~^~A~^^^^^^^^^^~03/01/1996~
-~19124~^~304~^95.^2^^~1~^~A~^^^^^^^^^^~03/01/1996~
-~19124~^~305~^142.^2^^~1~^~A~^^^^^^^^^^~03/01/1996~
-~19124~^~306~^397.^2^^~1~^~A~^^^^^^^^^^~03/01/1996~
-~19124~^~307~^3.^2^^~1~^~A~^^^^^^^^^^~03/01/1996~
-~19124~^~318~^0.^0^^~4~^~FLA~^^^^^^^^^^~02/01/2003~
-~19124~^~319~^0.^0^^~4~^~FLA~^^^^^^^^^^~02/01/2003~
-~19124~^~320~^0.^0^^~4~^~FLA~^^^^^^^^^^~02/01/2003~
-~19124~^~321~^0.^0^^~4~^~FLA~^^^^^^^^^^~02/01/2003~
-~19124~^~322~^0.^0^^~4~^~FLA~^^^^^^^^^^~02/01/2003~
-~19124~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~
-~19124~^~334~^0.^0^^~4~^~FLA~^^^^^^^^^^~02/01/2003~
-~19124~^~337~^0.^0^^~4~^~FLA~^^^^^^^^^^~02/01/2003~
-~19124~^~338~^7.^0^^~4~^~FLA~^^^^^^^^^^~02/01/2003~
-~19124~^~417~^5.^0^^~4~^~FLA~^^^^^^^^^^~02/01/2003~
-~19124~^~431~^0.^0^^~4~^~FLA~^^^^^^^^^^~02/01/2003~
-~19124~^~432~^5.^0^^~4~^~FLA~^^^^^^^^^^~02/01/2003~
-~19124~^~435~^5.^0^^~4~^~NC~^^^^^^^^^^~12/01/2006~
-~19124~^~601~^0.^2^^~1~^~A~^^^^^^^^^^~03/01/1996~
-~19125~^~208~^539.^0^^~4~^~NC~^^^^^^^^^^~01/01/2017~
-~19125~^~262~^7.^0^^~4~^~FLC~^^^^^^^^^^~02/01/2003~
-~19125~^~263~^230.^0^^~4~^~FLC~^^^^^^^^^^~02/01/2003~
-~19125~^~268~^2254.^0^^~4~^~NC~^^^^^^^^^^~01/01/2017~
-~19125~^~301~^108.^1^^~8~^~LC~^^^^^^^^^^~02/01/2003~
-~19125~^~304~^64.^0^^~4~^~FLC~^^^^^^^^^^~02/01/2003~
-~19125~^~305~^152.^0^^~4~^~FLC~^^^^^^^^^^~02/01/2003~
-~19125~^~306~^407.^0^^~4~^~FLC~^^^^^^^^^^~02/01/2003~
-~19125~^~307~^41.^1^^~8~^~LC~^^^^^^^^^^~02/01/2003~
-~19125~^~318~^3.^0^^~4~^~NC~^^^^^^^^^^~02/01/2003~
-~19125~^~319~^0.^0^^~4~^~FLC~^^^^^^^^^^~02/01/2003~
-~19125~^~320~^1.^0^^~4~^~NC~^^^^^^^^^^~05/01/2007~
-~19125~^~321~^1.^0^^~4~^~FLC~^^^^^^^^^^~02/01/2003~
-~19125~^~322~^0.^0^^~4~^~FLC~^^^^^^^^^^~02/01/2003~
-~19125~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~
-~19125~^~334~^0.^0^^~4~^~FLC~^^^^^^^^^^~02/01/2003~
-~19125~^~337~^0.^0^^~4~^~FLC~^^^^^^^^^^~02/01/2003~
-~19125~^~338~^10.^0^^~4~^~FLC~^^^^^^^^^^~02/01/2003~
-~19125~^~417~^14.^0^^~4~^~FLC~^^^^^^^^^^~12/01/2006~
-~19125~^~431~^0.^0^^~4~^~FLC~^^^^^^^^^^~02/01/2003~
-~19125~^~432~^14.^0^^~4~^~FLC~^^^^^^^^^^~12/01/2006~
-~19125~^~435~^14.^0^^~4~^~NC~^^^^^^^^^^~05/01/2007~
-~19125~^~601~^0.^1^^~8~^~LC~^^^^^^^^^^~02/01/2003~
-~19126~^~208~^519.^0^^~4~^~NC~^^^^^^^^^^~12/01/2006~
-~19126~^~262~^14.^0^^~4~^~FLM~^^^^^^^^^^~12/01/2006~
-~19126~^~263~^145.^0^^~4~^~FLM~^^^^^^^^^^~12/01/2006~
-~19126~^~268~^2172.^0^^~4~^~NC~^^^^^^^^^^~12/01/2006~
-~19126~^~301~^104.^5^15.^~1~^^^^^^^^^^^~08/01/1991~
-~19126~^~304~^96.^0^^~4~^~FLM~^^^^^^^^^^~02/01/2003~
-~19126~^~305~^212.^2^^~1~^^^^^^^^^^^~08/01/1991~
-~19126~^~306~^502.^3^10.^~1~^^^^^^^^^^^~08/01/1991~
-~19126~^~307~^41.^3^2.^~1~^^^^^^^^^^^~08/01/1991~
-~19126~^~318~^131.^0^^~4~^~FLM~^^^^^^^^^^~12/01/2006~
-~19126~^~319~^41.^0^^~4~^~FLM~^^^^^^^^^^~12/01/2006~
-~19126~^~320~^41.^0^^~4~^~NC~^^^^^^^^^^~07/01/2007~
-~19126~^~321~^0.^0^^~4~^~FLM~^^^^^^^^^^~02/01/2003~
-~19126~^~322~^0.^0^^~4~^~FLM~^^^^^^^^^^~02/01/2003~
-~19126~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~
-~19126~^~334~^0.^0^^~4~^~FLM~^^^^^^^^^^~02/01/2003~
-~19126~^~337~^0.^0^^~4~^~FLM~^^^^^^^^^^~02/01/2003~
-~19126~^~338~^4.^0^^~4~^~FLM~^^^^^^^^^^~12/01/2006~
-~19126~^~417~^51.^0^^~4~^~FLM~^^^^^^^^^^~12/01/2006~
-~19126~^~431~^0.^0^^~4~^~FLM~^^^^^^^^^^~02/01/2003~
-~19126~^~432~^51.^0^^~4~^~FLM~^^^^^^^^^^~12/01/2006~
-~19126~^~435~^51.^0^^~4~^~NC~^^^^^^^^^^~07/01/2007~
-~19126~^~601~^9.^2^^~1~^^^^^^^^^^^~08/01/1991~
-~19127~^~208~^390.^0^^~4~^~NC~^^^^^^^^^^~12/01/2006~
-~19127~^~262~^10.^0^^~4~^~FLC~^^^^^^^^^^~12/01/2006~
-~19127~^~263~^122.^0^^~4~^~FLC~^^^^^^^^^^~12/01/2006~
-~19127~^~268~^1631.^0^^~4~^~NC~^^^^^^^^^^~12/01/2006~
-~19127~^~301~^86.^4^14.^~1~^^^^^^^^^^^~08/01/1991~
-~19127~^~304~^45.^0^^~4~^~FLC~^^^^^^^^^^~12/01/2006~
-~19127~^~305~^143.^2^^~1~^^^^^^^^^^^~08/01/1991~
-~19127~^~306~^514.^2^^~1~^^^^^^^^^^^~08/01/1991~
-~19127~^~307~^36.^2^^~1~^^^^^^^^^^^~08/01/1991~
-~19127~^~318~^91.^0^^~4~^~FLC~^^^^^^^^^^~12/01/2006~
-~19127~^~319~^29.^0^^~4~^~FLC~^^^^^^^^^^~12/01/2006~
-~19127~^~320~^29.^0^^~4~^~NC~^^^^^^^^^^~07/01/2007~
-~19127~^~321~^0.^0^^~4~^~FLC~^^^^^^^^^^~02/01/2003~
-~19127~^~322~^0.^0^^~4~^~FLC~^^^^^^^^^^~02/01/2003~
-~19127~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~
-~19127~^~334~^0.^0^^~4~^~FLC~^^^^^^^^^^~02/01/2003~
-~19127~^~337~^0.^0^^~4~^~FLC~^^^^^^^^^^~02/01/2003~
-~19127~^~338~^3.^0^^~4~^~FLC~^^^^^^^^^^~12/01/2006~
-~19127~^~417~^8.^0^^~4~^~FLC~^^^^^^^^^^~12/01/2006~
-~19127~^~431~^0.^0^^~4~^~FLC~^^^^^^^^^^~02/01/2003~
-~19127~^~432~^7.^0^^~4~^~FLC~^^^^^^^^^^~12/01/2006~
-~19127~^~435~^7.^0^^~4~^~NC~^^^^^^^^^^~07/01/2007~
-~19127~^~601~^3.^3^1.^~1~^^^^^^^^^^^~08/01/1991~
-~19128~^~208~^165.^0^^~4~^~NC~^^^^^^^^^^~12/01/2006~
-~19128~^~262~^0.^0^^~4~^~FLA~^^^^^^^^^^~12/01/2006~
-~19128~^~263~^0.^0^^~4~^~FLA~^^^^^^^^^^~12/01/2006~
-~19128~^~268~^690.^0^^~4~^~NC~^^^^^^^^^^~12/01/2006~
-~19128~^~301~^10.^0^^~4~^~FLA~^^^^^^^^^^~12/01/2006~
-~19128~^~304~^2.^0^^~4~^~FLA~^^^^^^^^^^~12/01/2006~
-~19128~^~305~^43.^1^^~4~^^^^^^^^^^^~08/01/1991~
-~19128~^~306~^3.^0^^~4~^~O~^^^^^^^^^^~05/01/2007~
-~19128~^~307~^178.^2^^~8~^~LC~^^^1^178.^178.^1^^^^~12/01/2006~
-~19128~^~318~^0.^0^^~4~^~FLA~^^^^^^^^^^~12/01/2006~
-~19128~^~319~^0.^0^^~4~^~FLA~^^^^^^^^^^~12/01/2006~
-~19128~^~320~^0.^0^^~4~^~NC~^^^^^^^^^^~05/01/2007~
-~19128~^~321~^0.^0^^~4~^~FLA~^^^^^^^^^^~12/01/2006~
-~19128~^~322~^0.^0^^~4~^~FLA~^^^^^^^^^^~12/01/2006~
-~19128~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~
-~19128~^~334~^0.^0^^~4~^~FLA~^^^^^^^^^^~12/01/2006~
-~19128~^~337~^0.^0^^~4~^~FLA~^^^^^^^^^^~12/01/2006~
-~19128~^~338~^0.^0^^~4~^~FLA~^^^^^^^^^^~12/01/2006~
-~19128~^~417~^0.^0^^~4~^~FLA~^^^^^^^^^^~12/01/2006~
-~19128~^~431~^0.^0^^~4~^~FLA~^^^^^^^^^^~12/01/2006~
-~19128~^~432~^0.^0^^~4~^~FLA~^^^^^^^^^^~12/01/2006~
-~19128~^~435~^0.^0^^~4~^~NC~^^^^^^^^^^~05/01/2007~
-~19128~^~601~^0.^2^^~8~^~LC~^^^1^0.^0.^1^^^^~12/01/2006~
-~19129~^~208~^234.^0^^~4~^~NC~^^^^^^^^^^~12/01/2006~
-~19129~^~262~^0.^0^^~4~^~FLC~^^^^^^^^^^~02/01/2003~
-~19129~^~263~^0.^0^^~4~^~FLC~^^^^^^^^^^~02/01/2003~
-~19129~^~268~^977.^0^^~4~^~NC~^^^^^^^^^^~12/01/2006~
-~19129~^~301~^3.^18^0.^~1~^~A~^^^7^1.^5.^17^2.^3.^~4~^~02/01/2003~
-~19129~^~304~^2.^18^0.^~1~^~A~^^^7^1.^3.^17^1.^2.^~4~^~02/01/2003~
-~19129~^~305~^9.^18^1.^~1~^~A~^^^7^0.^19.^17^6.^12.^~4~^~02/01/2003~
-~19129~^~306~^15.^18^1.^~1~^~A~^^^7^3.^25.^17^12.^18.^~4~^~02/01/2003~
-~19129~^~307~^82.^18^7.^~1~^~A~^^^7^49.^154.^17^67.^97.^~4~^~02/01/2003~
-~19129~^~318~^0.^0^^~4~^~FLC~^^^^^^^^^^~02/01/2003~
-~19129~^~319~^0.^0^^~4~^~FLC~^^^^^^^^^^~02/01/2003~
-~19129~^~320~^0.^0^^~4~^~FLC~^^^^^^^^^^~02/01/2003~
-~19129~^~321~^0.^0^^~4~^~FLC~^^^^^^^^^^~02/01/2003~
-~19129~^~322~^0.^0^^~4~^~FLC~^^^^^^^^^^~02/01/2003~
-~19129~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~
-~19129~^~334~^0.^0^^~4~^~FLC~^^^^^^^^^^~02/01/2003~
-~19129~^~337~^0.^0^^~4~^~FLC~^^^^^^^^^^~02/01/2003~
-~19129~^~338~^0.^0^^~4~^~FLC~^^^^^^^^^^~02/01/2003~
-~19129~^~417~^0.^0^^~4~^~FLC~^^^^^^^^^^~02/01/2003~
-~19129~^~431~^0.^0^^~4~^~FLC~^^^^^^^^^^~02/01/2003~
-~19129~^~432~^0.^0^^~4~^~FLC~^^^^^^^^^^~02/01/2003~
-~19129~^~435~^0.^0^^~4~^~NC~^^^^^^^^^^~12/01/2006~
-~19129~^~601~^0.^1^^~8~^~LC~^^^1^0.^0.^0^^^^~02/01/2003~
-~19130~^~208~^577.^0^^~4~^~NC~^^^^^^^^^^~08/01/2015~
-~19130~^~268~^2414.^0^^~9~^~MC~^^^^^^^^^^~04/01/2002~
-~19130~^~301~^192.^1^^~9~^~MC~^^^^^^^^^^~04/01/2002~
-~19130~^~307~^64.^1^^~9~^~MC~^^^^^^^^^^~04/01/2002~
-~19130~^~601~^13.^1^^~9~^~MC~^^^^^^^^^^~04/01/2002~
-~19132~^~208~^526.^0^^~4~^~NC~^^^^^^^^^^~12/01/2006~
-~19132~^~262~^18.^0^^~4~^~FLM~^^^^^^^^^^~12/01/2006~
-~19132~^~263~^183.^0^^~4~^~FLM~^^^^^^^^^^~12/01/2006~
-~19132~^~268~^2200.^0^^~4~^~NC~^^^^^^^^^^~12/01/2006~
-~19132~^~301~^224.^12^13.^~1~^^^^^^^^^^^~08/01/1991~
-~19132~^~304~^90.^6^5.^~1~^^^^^^^^^^^~08/01/1991~
-~19132~^~305~^264.^6^14.^~1~^^^^^^^^^^^~08/01/1991~
-~19132~^~306~^444.^8^6.^~1~^^^^^^^^^^^~08/01/1991~
-~19132~^~307~^74.^11^8.^~1~^^^^^^^^^^^~08/01/1991~
-~19132~^~318~^175.^0^^~4~^~NC~^^^^^^^^^^~01/01/2008~
-~19132~^~319~^52.^0^^~4~^~FLM~^^^^^^^^^^~12/01/2006~
-~19132~^~320~^52.^0^^~4~^~NC~^^^^^^^^^^~01/01/2008~
-~19132~^~321~^0.^0^^~4~^~FLM~^^^^^^^^^^~02/01/2003~
-~19132~^~322~^0.^0^^~4~^~FLM~^^^^^^^^^^~02/01/2003~
-~19132~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~
-~19132~^~334~^0.^0^^~4~^~FLM~^^^^^^^^^^~02/01/2003~
-~19132~^~337~^0.^0^^~4~^~FLM~^^^^^^^^^^~02/01/2003~
-~19132~^~338~^6.^0^^~4~^~FLM~^^^^^^^^^^~12/01/2006~
-~19132~^~417~^14.^0^^~4~^~FLM~^^^^^^^^^^~02/01/2003~
-~19132~^~431~^0.^0^^~4~^~FLM~^^^^^^^^^^~02/01/2003~
-~19132~^~432~^13.^0^^~4~^~FLM~^^^^^^^^^^~12/01/2006~
-~19132~^~435~^13.^0^^~4~^~NC~^^^^^^^^^^~01/01/2008~
-~19132~^~601~^19.^8^1.^~1~^^^^^^^^^^^~08/01/1991~
-~19134~^~208~^511.^0^^~4~^~NC~^^^^^^^^^^~07/01/2008~
-~19134~^~262~^20.^0^^~4~^~FLC~^^^^^^^^^^~12/01/2006~
-~19134~^~263~^203.^0^^~4~^~FLC~^^^^^^^^^^~12/01/2006~
-~19134~^~268~^2136.^0^^~4~^~NC~^^^^^^^^^^~07/01/2008~
-~19134~^~301~^187.^0^^~4~^~FLC~^^^^^^^^^^~12/01/2006~
-~19134~^~304~^62.^0^^~4~^~FLC~^^^^^^^^^^~12/01/2006~
-~19134~^~305~^207.^0^^~4~^~FLC~^^^^^^^^^^~12/01/2006~
-~19134~^~306~^370.^0^^~4~^~FLC~^^^^^^^^^^~12/01/2006~
-~19134~^~307~^86.^0^^~4~^~FLC~^^^^^^^^^^~12/01/2006~
-~19134~^~318~^217.^0^^~4~^~NC~^^^^^^^^^^~01/01/2008~
-~19134~^~319~^65.^0^^~4~^~FLC~^^^^^^^^^^~12/01/2006~
-~19134~^~320~^65.^0^^~4~^~NC~^^^^^^^^^^~07/01/2008~
-~19134~^~321~^0.^0^^~4~^~FLC~^^^^^^^^^^~02/01/2003~
-~19134~^~322~^0.^0^^~4~^~FLC~^^^^^^^^^^~02/01/2003~
-~19134~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~
-~19134~^~334~^0.^0^^~4~^~FLC~^^^^^^^^^^~02/01/2003~
-~19134~^~337~^0.^0^^~4~^~FLC~^^^^^^^^^^~02/01/2003~
-~19134~^~338~^6.^0^^~4~^~FLC~^^^^^^^^^^~12/01/2006~
-~19134~^~417~^18.^0^^~4~^~FLC~^^^^^^^^^^~12/01/2006~
-~19134~^~431~^6.^0^^~4~^~FLC~^^^^^^^^^^~12/01/2006~
-~19134~^~432~^11.^0^^~4~^~FLC~^^^^^^^^^^~12/01/2006~
-~19134~^~435~^21.^0^^~4~^~NC~^^^^^^^^^^~07/01/2008~
-~19134~^~601~^23.^0^^~4~^~FLC~^^^^^^^^^^~12/01/2006~
-~19135~^~208~^456.^0^^~4~^~NC~^^^^^^^^^^~04/01/2009~
-~19135~^~262~^6.^0^^~4~^~FLA~^^^^^^^^^^~01/01/2006~
-~19135~^~263~^64.^0^^~4~^~FLA~^^^^^^^^^^~01/01/2006~
-~19135~^~268~^1907.^0^^~4~^~NC~^^^^^^^^^^~04/01/2009~
-~19135~^~301~^115.^1^^~9~^~MC~^^^^^^^^^^~01/01/2006~
-~19135~^~304~^20.^0^^~4~^~FLA~^^^^^^^^^^~01/01/2006~
-~19135~^~305~^67.^0^^~4~^~FLA~^^^^^^^^^^~01/01/2006~
-~19135~^~306~^124.^0^^~4~^~FLA~^^^^^^^^^^~01/01/2006~
-~19135~^~307~^167.^1^^~9~^~MC~^^^^^^^^^^~01/01/2006~
-~19135~^~318~^110.^0^^~4~^~NC~^^^^^^^^^^~03/01/2009~
-~19135~^~319~^31.^0^^~4~^~FLA~^^^^^^^^^^~01/01/2006~
-~19135~^~320~^31.^0^^~4~^~NC~^^^^^^^^^^~03/01/2009~
-~19135~^~321~^4.^0^^~4~^~FLA~^^^^^^^^^^~01/01/2006~
-~19135~^~322~^0.^0^^~4~^~FLA~^^^^^^^^^^~01/01/2006~
-~19135~^~324~^16.^0^^~4~^~FLA~^^^^^^^^^^~01/01/2006~
-~19135~^~334~^0.^0^^~4~^~FLA~^^^^^^^^^^~01/01/2006~
-~19135~^~337~^0.^0^^~4~^~FLA~^^^^^^^^^^~01/01/2006~
-~19135~^~338~^1.^0^^~4~^~FLA~^^^^^^^^^^~01/01/2006~
-~19135~^~417~^4.^0^^~4~^~FLA~^^^^^^^^^^~01/01/2006~
-~19135~^~431~^0.^0^^~4~^~FLA~^^^^^^^^^^~01/01/2006~
-~19135~^~432~^4.^0^^~4~^~FLA~^^^^^^^^^^~01/01/2006~
-~19135~^~435~^4.^0^^~4~^~NC~^^^^^^^^^^~05/01/2009~
-~19135~^~601~^9.^1^^~9~^~MC~^^^^^^^^^^~01/01/2006~
-~19136~^~208~^541.^0^^~4~^~NC~^^^^^^^^^^~02/01/2015~
-~19136~^~262~^10.^0^^~4~^~FLC~^^^^^^^^^^~02/01/2015~
-~19136~^~263~^111.^0^^~4~^~FLC~^^^^^^^^^^~02/01/2015~
-~19136~^~268~^2263.^0^^~4~^~NC~^^^^^^^^^^~02/01/2015~
-~19136~^~301~^30.^0^^~4~^~FLC~^^^^^^^^^^~02/01/2015~
-~19136~^~304~^10.^1^^~9~^~MC~^^^^^^^^^^~05/01/2002~
-~19136~^~305~^61.^1^^~9~^~MC~^^^^^^^^^^~05/01/2002~
-~19136~^~306~^153.^1^^~9~^~MC~^^^^^^^^^^~05/01/2002~
-~19136~^~307~^317.^1^^~9~^~MC~^^^^^^^^^^~05/01/2002~
-~19136~^~318~^204.^0^^~4~^~NC~^^^^^^^^^^~07/01/2015~
-~19136~^~319~^61.^0^^~4~^~NR~^^^^^^^^^^~07/01/2015~
-~19136~^~320~^61.^0^^~4~^~NC~^^^^^^^^^^~07/01/2015~
-~19136~^~321~^0.^0^^~4~^~NR~^^^^^^^^^^~07/01/2015~
-~19136~^~322~^2.^0^^~4~^~NR~^^^^^^^^^^~02/01/2015~
-~19136~^~324~^3.^0^^~4~^~FLC~^^^^^^^^^^~02/01/2015~
-~19136~^~334~^0.^0^^~4~^~FLC~^^^^^^^^^^~02/01/2015~
-~19136~^~337~^0.^0^^~4~^~FLC~^^^^^^^^^^~02/01/2015~
-~19136~^~338~^7.^0^^~4~^~FLC~^^^^^^^^^^~02/01/2015~
-~19136~^~417~^2.^0^^~4~^~FLC~^^^^^^^^^^~02/01/2015~
-~19136~^~431~^0.^0^^~4~^~FLC~^^^^^^^^^^~02/01/2015~
-~19136~^~432~^2.^0^^~4~^~FLC~^^^^^^^^^^~02/01/2015~
-~19136~^~435~^2.^0^^~4~^~NC~^^^^^^^^^^~02/01/2015~
-~19136~^~601~^53.^1^^~9~^~MC~^^^^^^^^^^~05/01/2002~
-~19137~^~208~^254.^0^^~4~^^^^^^^^^^^~08/01/1991~
-~19137~^~262~^0.^0^^~4~^~FLC~^^^^^^^^^^~02/01/2003~
-~19137~^~263~^0.^0^^~4~^~FLC~^^^^^^^^^^~02/01/2003~
-~19137~^~268~^1063.^0^^~4~^^^^^^^^^^^~04/01/2005~
-~19137~^~301~^6.^0^^~4~^~FLC~^^^^^^^^^^~02/01/2003~
-~19137~^~304~^4.^0^^~4~^~FLC~^^^^^^^^^^~02/01/2003~
-~19137~^~305~^5.^0^^~4~^~FLC~^^^^^^^^^^~02/01/2003~
-~19137~^~306~^51.^0^^~4~^~FLC~^^^^^^^^^^~02/01/2003~
-~19137~^~307~^21.^0^^~4~^^^^^^^^^^^~08/01/1991~
-~19137~^~318~^18.^0^^~4~^^^^^^^^^^^~08/01/1991~
-~19137~^~319~^0.^0^^~4~^~FLC~^^^^^^^^^^~02/01/2003~
-~19137~^~320~^1.^0^^~4~^~FLC~^^^^^^^^^^~02/01/2003~
-~19137~^~321~^9.^0^^~4~^~FLC~^^^^^^^^^^~02/01/2003~
-~19137~^~322~^0.^0^^~4~^~FLC~^^^^^^^^^^~02/01/2003~
-~19137~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~
-~19137~^~334~^0.^0^^~4~^~FLC~^^^^^^^^^^~02/01/2003~
-~19137~^~337~^0.^0^^~4~^~FLC~^^^^^^^^^^~02/01/2003~
-~19137~^~338~^9.^0^^~4~^~FLC~^^^^^^^^^^~02/01/2003~
-~19137~^~417~^6.^0^^~4~^~FLC~^^^^^^^^^^~02/01/2003~
-~19137~^~431~^0.^0^^~4~^~FLC~^^^^^^^^^^~02/01/2003~
-~19137~^~432~^6.^0^^~4~^~FLC~^^^^^^^^^^~02/01/2003~
-~19137~^~435~^6.^0^^~4~^~NC~^^^^^^^^^^~10/01/2006~
-~19137~^~601~^0.^0^^~4~^~FLC~^^^^^^^^^^~02/01/2003~
-~19138~^~208~^510.^0^^~4~^~RC~^^^^^^^^^^~05/01/2006~
-~19138~^~262~^15.^0^^~4~^~RC~^^^^^^^^^^~05/01/2006~
-~19138~^~263~^152.^0^^~4~^~RC~^^^^^^^^^^~05/01/2006~
-~19138~^~268~^2133.^0^^~4~^~RC~^^^^^^^^^^~05/01/2006~
-~19138~^~301~^157.^0^^~4~^~RC~^^^^^^^^^^~05/01/2006~
-~19138~^~304~^48.^0^^~4~^~RC~^^^^^^^^^^~05/01/2006~
-~19138~^~305~^171.^0^^~4~^~RC~^^^^^^^^^^~05/01/2006~
-~19138~^~306~^297.^0^^~4~^~RC~^^^^^^^^^^~05/01/2006~
-~19138~^~307~^68.^0^^~4~^~RC~^^^^^^^^^^~05/01/2006~
-~19138~^~318~^513.^0^^~4~^~RC~^^^^^^^^^^~05/01/2006~
-~19138~^~319~^142.^0^^~4~^~RC~^^^^^^^^^^~05/01/2006~
-~19138~^~320~^144.^0^^~4~^~RC~^^^^^^^^^^~05/01/2006~
-~19138~^~321~^19.^0^^~4~^~RC~^^^^^^^^^^~05/01/2006~
-~19138~^~322~^0.^0^^~4~^~RC~^^^^^^^^^^~05/01/2006~
-~19138~^~334~^0.^0^^~4~^~RC~^^^^^^^^^^~05/01/2006~
-~19138~^~337~^0.^0^^~4~^~RC~^^^^^^^^^^~05/01/2006~
-~19138~^~338~^0.^0^^~4~^~RC~^^^^^^^^^^~05/01/2006~
-~19138~^~417~^9.^0^^~4~^~RC~^^^^^^^^^^~05/01/2006~
-~19138~^~431~^0.^0^^~4~^~RC~^^^^^^^^^^~05/01/2006~
-~19138~^~432~^9.^0^^~4~^~RC~^^^^^^^^^^~05/01/2006~
-~19138~^~435~^9.^0^^~4~^~NC~^^^^^^^^^^~05/01/2006~
-~19138~^~601~^53.^0^^~4~^~RC~^^^^^^^^^^~05/01/2006~
-~19139~^~208~^517.^1^^~9~^~MC~^^^^^^^^^^~02/01/2006~
-~19139~^~268~^2163.^0^^~9~^~MC~^^^^^^^^^^~02/01/2006~
-~19139~^~301~^34.^1^^~9~^~MC~^^^^^^^^^^~02/01/2006~
-~19139~^~307~^2.^1^^~9~^~MC~^^^^^^^^^^~02/01/2006~
-~19139~^~318~^74.^1^^~9~^~MC~^^^^^^^^^^~02/01/2006~
-~19139~^~601~^3.^1^^~9~^~MC~^^^^^^^^^^~02/01/2006~
-~19140~^~208~^515.^1^^~9~^~MC~^^^^^^^^^^~01/01/2006~
-~19140~^~262~^10.^0^^~4~^~FLM~^^^^^^^^^^~01/01/2006~
-~19140~^~263~^108.^0^^~4~^~FLM~^^^^^^^^^^~01/01/2006~
-~19140~^~268~^2156.^0^^~9~^~MC~^^^^^^^^^^~01/01/2006~
-~19140~^~301~^102.^1^^~9~^~MC~^^^^^^^^^^~01/01/2006~
-~19140~^~304~^69.^0^^~4~^~FLM~^^^^^^^^^^~01/01/2006~
-~19140~^~305~^190.^0^^~4~^~FLM~^^^^^^^^^^~01/01/2006~
-~19140~^~306~^347.^0^^~4~^~FLM~^^^^^^^^^^~01/01/2006~
-~19140~^~307~^50.^1^^~9~^~MC~^^^^^^^^^^~01/01/2006~
-~19140~^~318~^74.^0^^~4~^~NC~^^^^^^^^^^~03/01/2009~
-~19140~^~319~^22.^0^^~4~^~O~^^^^^^^^^^~01/01/2006~
-~19140~^~320~^22.^0^^~4~^~NC~^^^^^^^^^^~03/01/2009~
-~19140~^~321~^0.^0^^~4~^~FLM~^^^^^^^^^^~02/01/2003~
-~19140~^~322~^0.^0^^~4~^~FLM~^^^^^^^^^^~02/01/2003~
-~19140~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~
-~19140~^~334~^0.^0^^~4~^~FLM~^^^^^^^^^^~02/01/2003~
-~19140~^~337~^0.^0^^~4~^~FLM~^^^^^^^^^^~02/01/2003~
-~19140~^~338~^0.^0^^~4~^~FLM~^^^^^^^^^^~02/01/2003~
-~19140~^~417~^55.^0^^~4~^~FLM~^^^^^^^^^^~01/01/2006~
-~19140~^~431~^0.^0^^~4~^~FLM~^^^^^^^^^^~03/01/2002~
-~19140~^~432~^55.^0^^~4~^~FLM~^^^^^^^^^^~01/01/2006~
-~19140~^~435~^55.^0^^~4~^~NC~^^^^^^^^^^~03/01/2009~
-~19140~^~601~^8.^1^^~9~^~MC~^^^^^^^^^^~01/01/2006~
-~19141~^~208~^492.^1^^~9~^~MC~^^^^^^^^^^~01/01/2006~
-~19141~^~262~^14.^0^^~4~^~FLM~^^^^^^^^^^~12/01/2006~
-~19141~^~263~^143.^0^^~4~^~FLM~^^^^^^^^^^~12/01/2006~
-~19141~^~268~^2057.^0^^~9~^~MC~^^^^^^^^^^~12/01/2006~
-~19141~^~301~^105.^1^^~9~^~MC~^^^^^^^^^^~01/01/2006~
-~19141~^~304~^44.^0^^~4~^~FLM~^^^^^^^^^^~12/01/2006~
-~19141~^~305~^146.^0^^~4~^~FLM~^^^^^^^^^^~12/01/2006~
-~19141~^~306~^261.^0^^~4~^~FLM~^^^^^^^^^^~12/01/2006~
-~19141~^~307~^61.^1^^~9~^~MC~^^^^^^^^^^~01/01/2006~
-~19141~^~318~^187.^0^^~4~^~NC~^^^^^^^^^^~03/01/2009~
-~19141~^~319~^56.^0^^~4~^~O~^^^^^^^^^^~12/01/2006~
-~19141~^~320~^56.^0^^~4~^~NC~^^^^^^^^^^~03/01/2009~
-~19141~^~321~^0.^0^^~4~^~FLM~^^^^^^^^^^~02/01/2003~
-~19141~^~322~^0.^0^^~4~^~FLM~^^^^^^^^^^~02/01/2003~
-~19141~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~
-~19141~^~334~^0.^0^^~4~^~FLM~^^^^^^^^^^~02/01/2003~
-~19141~^~337~^0.^0^^~4~^~FLM~^^^^^^^^^^~02/01/2003~
-~19141~^~338~^0.^0^^~4~^~NR~^^^^^^^^^^~12/01/2006~
-~19141~^~417~^8.^0^^~4~^~FLM~^^^^^^^^^^~12/01/2006~
-~19141~^~431~^0.^0^^~4~^~FLM~^^^^^^^^^^~06/01/2002~
-~19141~^~432~^8.^0^^~4~^~FLM~^^^^^^^^^^~12/01/2006~
-~19141~^~435~^8.^0^^~4~^~NC~^^^^^^^^^^~03/01/2009~
-~19141~^~601~^14.^1^^~9~^~MC~^^^^^^^^^^~01/01/2006~
-~19142~^~208~^493.^0^^~4~^~NC~^^^^^^^^^^~01/01/2017~
-~19142~^~262~^17.^0^^~4~^~FLM~^^^^^^^^^^~12/01/2006~
-~19142~^~263~^130.^0^^~4~^~FLM~^^^^^^^^^^~12/01/2006~
-~19142~^~268~^2064.^0^^~4~^~NC~^^^^^^^^^^~01/01/2017~
-~19142~^~301~^21.^1^^~9~^~MC~^^^^^^^^^^~05/01/2002~
-~19142~^~304~^55.^0^^~4~^~FLM~^^^^^^^^^^~12/01/2006~
-~19142~^~305~^91.^0^^~4~^~FLM~^^^^^^^^^^~12/01/2006~
-~19142~^~306~^321.^1^^~9~^~MC~^^^^^^^^^^~05/01/2002~
-~19142~^~307~^145.^1^^~9~^~MC~^^^^^^^^^^~05/01/2002~
-~19142~^~318~^0.^0^^~4~^~FLM~^^^^^^^^^^~02/01/2003~
-~19142~^~319~^0.^0^^~4~^~FLM~^^^^^^^^^^~02/01/2003~
-~19142~^~320~^0.^0^^~4~^~NC~^^^^^^^^^^~02/01/2003~
-~19142~^~321~^0.^0^^~4~^~FLM~^^^^^^^^^^~02/01/2003~
-~19142~^~322~^0.^0^^~4~^~FLM~^^^^^^^^^^~02/01/2003~
-~19142~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~
-~19142~^~334~^0.^0^^~4~^~FLM~^^^^^^^^^^~02/01/2003~
-~19142~^~337~^0.^0^^~4~^~FLM~^^^^^^^^^^~02/01/2003~
-~19142~^~338~^5.^0^^~4~^~FLM~^^^^^^^^^^~12/01/2006~
-~19142~^~417~^6.^0^^~4~^~FLM~^^^^^^^^^^~12/01/2006~
-~19142~^~431~^0.^0^^~4~^~FLM~^^^^^^^^^^~02/01/2003~
-~19142~^~432~^6.^0^^~4~^~FLM~^^^^^^^^^^~12/01/2006~
-~19142~^~435~^6.^0^^~4~^~NC~^^^^^^^^^^~12/01/2006~
-~19142~^~601~^2.^1^^~9~^~MC~^^^^^^^^^^~05/01/2002~
-~19143~^~208~^538.^1^^~9~^~MC~^^^^^^^^^^~05/01/2002~
-~19143~^~262~^18.^0^^~4~^~FLM~^^^^^^^^^^~05/01/2003~
-~19143~^~263~^198.^0^^~4~^~FLM~^^^^^^^^^^~05/01/2003~
-~19143~^~268~^2252.^0^^~9~^~MC~^^^^^^^^^^~05/01/2003~
-~19143~^~301~^110.^1^^~9~^~MC~^^^^^^^^^^~05/01/2002~
-~19143~^~304~^47.^1^^~9~^~MC~^^^^^^^^^^~05/01/2002~
-~19143~^~305~^163.^1^^~9~^~MC~^^^^^^^^^^~05/01/2002~
-~19143~^~306~^394.^1^^~9~^~MC~^^^^^^^^^^~05/01/2002~
-~19143~^~307~^41.^1^^~9~^~MC~^^^^^^^^^^~05/01/2002~
-~19143~^~318~^115.^0^^~4~^~NC~^^^^^^^^^^~01/01/2017~
-~19143~^~319~^35.^0^^~4~^~FLC~^^^^^^^^^^~04/01/2003~
-~19143~^~320~^35.^0^^~4~^~NC~^^^^^^^^^^~04/01/2003~
-~19143~^~321~^0.^0^^~4~^~FLC~^^^^^^^^^^~04/01/2003~
-~19143~^~322~^0.^0^^~4~^~FLC~^^^^^^^^^^~04/01/2003~
-~19143~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~
-~19143~^~334~^0.^0^^~4~^~FLC~^^^^^^^^^^~04/01/2003~
-~19143~^~337~^0.^0^^~4~^~FLC~^^^^^^^^^^~04/01/2003~
-~19143~^~338~^5.^0^^~4~^~FLC~^^^^^^^^^^~04/01/2003~
-~19143~^~417~^38.^1^^~9~^~MC~^^^^^^^^^^~05/01/2002~
-~19143~^~431~^0.^0^^~4~^~FLM~^^^^^^^^^^~02/01/2003~
-~19143~^~432~^38.^1^^~9~^~MC~^^^^^^^^^^~05/01/2003~
-~19143~^~435~^38.^0^^~4~^~NC~^^^^^^^^^^~12/01/2006~
-~19143~^~601~^10.^1^^~9~^~MC~^^^^^^^^^^~05/01/2002~
-~19144~^~208~^468.^0^^~4~^~NC~^^^^^^^^^^~05/01/2009~
-~19144~^~262~^8.^1^^~9~^~MC~^^^^^^^^^^~03/01/2006~
-~19144~^~263~^55.^1^^~9~^~MC~^^^^^^^^^^~03/01/2006~
-~19144~^~268~^1957.^0^^~4~^~NC~^^^^^^^^^^~05/01/2009~
-~19144~^~301~^76.^1^^~9~^~MC~^^^^^^^^^^~03/01/2006~
-~19144~^~304~^25.^0^^~4~^~FLA~^^^^^^^^^^~12/01/2006~
-~19144~^~305~^86.^0^^~4~^~FLA~^^^^^^^^^^~12/01/2006~
-~19144~^~306~^163.^1^^~9~^~MC~^^^^^^^^^^~03/01/2006~
-~19144~^~307~^203.^1^^~9~^~MC~^^^^^^^^^^~03/01/2006~
-~19144~^~318~^127.^1^^~9~^~MC~^^^^^^^^^^~03/01/2006~
-~19144~^~319~^37.^0^^~4~^~FLA~^^^^^^^^^^~12/01/2006~
-~19144~^~320~^38.^0^^~4~^~NC~^^^^^^^^^^~07/01/2007~
-~19144~^~321~^3.^0^^~4~^~FLA~^^^^^^^^^^~12/01/2006~
-~19144~^~322~^0.^0^^~4~^~FLA~^^^^^^^^^^~12/01/2006~
-~19144~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~
-~19144~^~334~^0.^0^^~4~^~FLA~^^^^^^^^^^~12/01/2006~
-~19144~^~337~^0.^0^^~4~^~FLA~^^^^^^^^^^~12/01/2006~
-~19144~^~338~^2.^0^^~4~^~FLA~^^^^^^^^^^~12/01/2006~
-~19144~^~417~^5.^0^^~4~^~FLA~^^^^^^^^^^~12/01/2006~
-~19144~^~431~^0.^0^^~4~^~FLA~^^^^^^^^^^~12/01/2006~
-~19144~^~432~^5.^0^^~4~^~FLA~^^^^^^^^^^~12/01/2006~
-~19144~^~435~^5.^0^^~4~^~NC~^^^^^^^^^^~05/01/2009~
-~19144~^~601~^12.^1^^~8~^~LC~^^^^^^^^^^~12/01/2006~
-~19145~^~208~^500.^1^^~9~^~MC~^^^^^^^^^^~04/01/2006~
-~19145~^~262~^30.^1^^~9~^~MC~^^^^^^^^^^~04/01/2006~
-~19145~^~263~^168.^1^^~9~^~MC~^^^^^^^^^^~04/01/2006~
-~19145~^~268~^2092.^0^^~9~^~MC~^^^^^^^^^^~04/01/2006~
-~19145~^~301~^100.^1^^~9~^~MC~^^^^^^^^^^~04/01/2006~
-~19145~^~306~^305.^1^^~9~^~MC~^^^^^^^^^^~04/01/2006~
-~19145~^~307~^150.^1^^~9~^~MC~^^^^^^^^^^~04/01/2006~
-~19145~^~318~^107.^1^^~9~^~MC~^^^^^^^^^^~04/01/2006~
-~19145~^~601~^13.^1^^~9~^~MC~^^^^^^^^^^~04/01/2006~
-~19146~^~208~^502.^1^^~9~^~MC~^^^^^^^^^^~02/01/2006~
-~19146~^~268~^2102.^0^^~9~^~MC~^^^^^^^^^^~02/01/2006~
-~19146~^~301~^116.^1^^~9~^~MC~^^^^^^^^^^~02/01/2006~
-~19146~^~307~^68.^1^^~9~^~MC~^^^^^^^^^^~02/01/2006~
-~19146~^~318~^224.^1^^~9~^~MC~^^^^^^^^^^~02/01/2006~
-~19146~^~601~^15.^1^^~9~^~MC~^^^^^^^^^^~02/01/2006~
-~19147~^~208~^522.^0^^~4~^~NC~^^^^^^^^^^~08/01/1991~
-~19147~^~262~^0.^0^^~4~^~FLM~^^^^^^^^^^~02/01/2003~
-~19147~^~263~^0.^0^^~4~^~FLM~^^^^^^^^^^~02/01/2003~
-~19147~^~268~^2184.^0^^~4~^^^^^^^^^^^~04/01/2005~
-~19147~^~301~^78.^1^^~1~^^^^^^^^^^^~08/01/1991~
-~19147~^~304~^110.^0^^~4~^~FLM~^^^^^^^^^^~02/01/2003~
-~19147~^~305~^308.^0^^~4~^~FLM~^^^^^^^^^^~02/01/2003~
-~19147~^~306~^407.^2^^~1~^^^^^^^^^^^~08/01/1991~
-~19147~^~307~^156.^0^^~8~^~LC~^^^^^^^^^^~11/01/1997~
-~19147~^~318~^0.^0^^~4~^~FLM~^^^^^^^^^^~02/01/2003~
-~19147~^~319~^0.^0^^~4~^~FLM~^^^^^^^^^^~02/01/2003~
-~19147~^~320~^0.^0^^~4~^~FLM~^^^^^^^^^^~02/01/2003~
-~19147~^~321~^0.^0^^~4~^~FLM~^^^^^^^^^^~02/01/2003~
-~19147~^~322~^0.^0^^~4~^~FLM~^^^^^^^^^^~02/01/2003~
-~19147~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~
-~19147~^~334~^0.^0^^~4~^~FLM~^^^^^^^^^^~02/01/2003~
-~19147~^~337~^0.^0^^~4~^~FLM~^^^^^^^^^^~02/01/2003~
-~19147~^~338~^0.^0^^~4~^~FLM~^^^^^^^^^^~02/01/2003~
-~19147~^~417~^75.^0^^~4~^~FLM~^^^^^^^^^^~02/01/2003~
-~19147~^~431~^0.^0^^~4~^~FLM~^^^^^^^^^^~02/01/2003~
-~19147~^~432~^75.^0^^~4~^~FLM~^^^^^^^^^^~02/01/2003~
-~19147~^~435~^75.^0^^~4~^~NC~^^^^^^^^^^~12/01/2006~
-~19147~^~601~^0.^0^^~4~^~FLA~^^^^^^^^^^~11/01/1997~
-~19148~^~208~^486.^0^^~4~^~NC~^^^^^^^^^^~04/01/2005~
-~19148~^~262~^0.^0^^~4~^~RC~^^^^^^^^^^~04/01/2002~
-~19148~^~263~^0.^0^^~4~^~RC~^^^^^^^^^^~04/01/2002~
-~19148~^~268~^2033.^0^^~4~^~NC~^^^^^^^^^^~04/01/2005~
-~19148~^~301~^27.^0^^~4~^~RC~^^^^^^^^^^~02/01/2003~
-~19148~^~304~^42.^0^^~4~^~RC~^^^^^^^^^^~02/01/2003~
-~19148~^~305~^106.^0^^~4~^~RC~^^^^^^^^^^~02/01/2003~
-~19148~^~306~^168.^0^^~4~^~RC~^^^^^^^^^^~02/01/2003~
-~19148~^~307~^445.^0^^~4~^~RC~^^^^^^^^^^~02/01/2003~
-~19148~^~318~^142.^0^^~4~^~NC~^^^^^^^^^^~02/01/2003~
-~19148~^~319~^38.^0^^~4~^~RC~^^^^^^^^^^~02/01/2003~
-~19148~^~320~^39.^0^^~4~^~NC~^^^^^^^^^^~02/01/2003~
-~19148~^~321~^9.^0^^~4~^~RC~^^^^^^^^^^~02/01/2003~
-~19148~^~322~^0.^0^^~4~^~RC~^^^^^^^^^^~02/01/2003~
-~19148~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~
-~19148~^~334~^0.^0^^~4~^~RC~^^^^^^^^^^~02/01/2003~
-~19148~^~337~^0.^0^^~4~^~RC~^^^^^^^^^^~02/01/2003~
-~19148~^~338~^0.^0^^~4~^~RC~^^^^^^^^^^~02/01/2003~
-~19148~^~417~^46.^0^^~4~^~RC~^^^^^^^^^^~02/01/2003~
-~19148~^~431~^0.^0^^~4~^~RC~^^^^^^^^^^~04/01/2002~
-~19148~^~432~^46.^0^^~4~^~RC~^^^^^^^^^^~02/01/2003~
-~19148~^~435~^46.^0^^~4~^~NC~^^^^^^^^^^~12/01/2006~
-~19148~^~601~^12.^0^^~4~^~RC~^^^^^^^^^^~02/01/2003~
-~19149~^~208~^422.^1^^~9~^~MC~^^^^^^^^^^~03/01/2006~
-~19149~^~268~^1766.^0^^~9~^~MC~^^^^^^^^^^~03/01/2006~
-~19149~^~301~^85.^1^^~9~^~MC~^^^^^^^^^^~03/01/2006~
-~19149~^~307~^33.^1^^~9~^~MC~^^^^^^^^^^~03/01/2006~
-~19149~^~318~^77.^1^^~9~^~MC~^^^^^^^^^^~03/01/2006~
-~19149~^~601~^11.^1^^~9~^~MC~^^^^^^^^^^~03/01/2006~
-~19150~^~208~^515.^1^^~9~^~MC~^^^^^^^^^^~05/01/2002~
-~19150~^~262~^7.^0^^~4~^~FLM~^^^^^^^^^^~12/01/2006~
-~19150~^~263~^72.^0^^~4~^~FLM~^^^^^^^^^^~12/01/2006~
-~19150~^~268~^2153.^0^^~9~^~MC~^^^^^^^^^^~12/01/2006~
-~19150~^~301~^78.^1^^~9~^~MC~^^^^^^^^^^~05/01/2002~
-~19150~^~304~^62.^1^^~9~^~MC~^^^^^^^^^^~05/01/2002~
-~19150~^~305~^161.^1^^~9~^~MC~^^^^^^^^^^~05/01/2002~
-~19150~^~306~^343.^1^^~9~^~MC~^^^^^^^^^^~05/01/2002~
-~19150~^~307~^357.^0^^~9~^~MC~^^^^^^^^^^~07/01/2010~
-~19150~^~318~^56.^0^^~4~^~NC~^^^^^^^^^^~07/01/2010~
-~19150~^~319~^17.^0^^~4~^~NR~^^^^^^^^^^~02/01/2003~
-~19150~^~320~^17.^0^^~4~^~NC~^^^^^^^^^^~07/01/2007~
-~19150~^~321~^0.^0^^~4~^~FLM~^^^^^^^^^^~02/01/2003~
-~19150~^~322~^0.^0^^~4~^~FLM~^^^^^^^^^^~02/01/2003~
-~19150~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~
-~19150~^~334~^0.^0^^~4~^~FLM~^^^^^^^^^^~02/01/2003~
-~19150~^~337~^0.^0^^~4~^~FLM~^^^^^^^^^^~02/01/2003~
-~19150~^~338~^2.^0^^~4~^~FLM~^^^^^^^^^^~12/01/2006~
-~19150~^~417~^50.^1^^~9~^~MC~^^^^^^^^^^~05/01/2002~
-~19150~^~431~^0.^0^^~4~^~FLM~^^^^^^^^^^~02/01/2003~
-~19150~^~432~^50.^1^^~9~^~MC~^^^^^^^^^^~12/01/2006~
-~19150~^~435~^50.^0^^~4~^~NC~^^^^^^^^^^~07/01/2007~
-~19150~^~601~^6.^1^^~9~^~MC~^^^^^^^^^^~05/01/2002~
-~19151~^~208~^497.^1^^~9~^~MC~^^^^^^^^^^~05/01/2002~
-~19151~^~262~^0.^1^^~9~^~MC~^^^^^^^^^^~05/01/2002~
-~19151~^~263~^0.^0^^~4~^~FLM~^^^^^^^^^^~03/01/2002~
-~19151~^~268~^2080.^0^^~9~^~MC~^^^^^^^^^^~12/01/2006~
-~19151~^~301~^69.^1^^~9~^~MC~^^^^^^^^^^~05/01/2002~
-~19151~^~304~^88.^1^^~9~^~MC~^^^^^^^^^^~05/01/2002~
-~19151~^~305~^207.^1^^~9~^~MC~^^^^^^^^^^~05/01/2002~
-~19151~^~306~^359.^1^^~9~^~MC~^^^^^^^^^^~05/01/2002~
-~19151~^~307~^194.^1^^~9~^~MC~^^^^^^^^^^~05/01/2002~
-~19151~^~318~^1.^0^^~4~^~NC~^^^^^^^^^^~01/01/2017~
-~19151~^~319~^0.^0^^~4~^~FLM~^^^^^^^^^^~12/01/2006~
-~19151~^~320~^0.^0^^~4~^~NC~^^^^^^^^^^~12/01/2006~
-~19151~^~321~^0.^0^^~4~^~FLM~^^^^^^^^^^~12/01/2006~
-~19151~^~322~^0.^0^^~4~^~FLM~^^^^^^^^^^~02/01/2003~
-~19151~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~
-~19151~^~334~^0.^0^^~4~^~FLM~^^^^^^^^^^~02/01/2003~
-~19151~^~337~^0.^0^^~4~^~FLM~^^^^^^^^^^~02/01/2003~
-~19151~^~338~^0.^0^^~4~^~FLM~^^^^^^^^^^~02/01/2003~
-~19151~^~417~^55.^1^^~9~^~MC~^^^^^^^^^^~05/01/2002~
-~19151~^~431~^0.^0^^~4~^~FLM~^^^^^^^^^^~07/01/2002~
-~19151~^~432~^55.^1^^~9~^~MC~^^^^^^^^^^~12/01/2006~
-~19151~^~435~^55.^0^^~4~^~NC~^^^^^^^^^^~12/01/2006~
-~19151~^~601~^0.^1^^~9~^~MC~^^^^^^^^^^~05/01/2002~
-~19152~^~208~^474.^1^^~9~^~MC~^^^^^^^^^^~05/01/2002~
-~19152~^~262~^6.^1^^~8~^~LC~^^^^^^^^^^~11/01/2004~
-~19152~^~263~^52.^1^^~8~^~LC~^^^^^^^^^^~11/01/2004~
-~19152~^~268~^1984.^0^^~9~^~MC~^^^^^^^^^^~11/01/2004~
-~19152~^~301~^145.^1^^~9~^~MC~^^^^^^^^^^~05/01/2002~
-~19152~^~304~^0.^1^^~9~^~MC~^^^^^^^^^^~05/01/2002~
-~19152~^~305~^71.^1^^~9~^~MC~^^^^^^^^^^~05/01/2002~
-~19152~^~306~^188.^1^^~9~^~MC~^^^^^^^^^^~05/01/2002~
-~19152~^~307~^188.^1^^~9~^~MC~^^^^^^^^^^~05/01/2002~
-~19152~^~318~^111.^0^^~4~^~NC~^^^^^^^^^^~01/01/2017~
-~19152~^~319~^33.^0^^~4~^~FLM~^^^^^^^^^^~02/01/2003~
-~19152~^~320~^33.^0^^~4~^~NC~^^^^^^^^^^~01/01/2017~
-~19152~^~321~^0.^0^^~4~^~FLM~^^^^^^^^^^~02/01/2003~
-~19152~^~322~^0.^0^^~4~^~FLM~^^^^^^^^^^~02/01/2003~
-~19152~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~
-~19152~^~334~^0.^0^^~4~^~FLM~^^^^^^^^^^~02/01/2003~
-~19152~^~337~^0.^0^^~4~^~FLM~^^^^^^^^^^~02/01/2003~
-~19152~^~338~^0.^0^^~4~^~FLM~^^^^^^^^^^~02/01/2003~
-~19152~^~417~^0.^1^^~9~^~MC~^^^^^^^^^^~05/01/2002~
-~19152~^~431~^0.^0^^~4~^~FLC~^^^^^^^^^^~11/01/2004~
-~19152~^~432~^0.^0^^~4~^~NR~^^^^^^^^^^~11/01/2004~
-~19152~^~435~^0.^0^^~4~^~NC~^^^^^^^^^^~12/01/2006~
-~19152~^~601~^12.^1^^~9~^~MC~^^^^^^^^^^~05/01/2002~
-~19153~^~208~^432.^0^^~4~^~NC~^^^^^^^^^^~05/01/2009~
-~19153~^~268~^1807.^0^^~4~^~NC~^^^^^^^^^^~05/01/2009~
-~19153~^~301~^13.^1^^~9~^~MC~^^^^^^^^^^~03/01/2006~
-~19153~^~307~^1.^1^^~9~^~MC~^^^^^^^^^^~03/01/2006~
-~19153~^~318~^0.^1^^~9~^~MC~^^^^^^^^^^~03/01/2006~
-~19153~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2002~
-~19153~^~320~^0.^0^^~1~^~AS~^^^^^^^^^^~03/01/2006~
-~19153~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~
-~19153~^~601~^0.^1^^~9~^~MC~^^^^^^^^^^~03/01/2006~
-~19154~^~208~^516.^0^^~4~^~NC~^^^^^^^^^^~12/01/2006~
-~19154~^~262~^0.^0^^~4~^~FLM~^^^^^^^^^^~02/01/2003~
-~19154~^~263~^0.^0^^~4~^~FLM~^^^^^^^^^^~02/01/2003~
-~19154~^~268~^2161.^0^^~4~^~NC~^^^^^^^^^^~12/01/2006~
-~19154~^~301~^639.^0^^~4~^~FLM~^^^^^^^^^^~12/01/2006~
-~19154~^~304~^251.^3^10.^~1~^^^^^^^^^^^~08/01/1991~
-~19154~^~305~^412.^0^^~4~^~FLM~^^^^^^^^^^~12/01/2006~
-~19154~^~306~^307.^0^^~4~^~FLM~^^^^^^^^^^~12/01/2006~
-~19154~^~307~^167.^0^^~8~^~LC~^^^^^^^^^^~11/01/1997~
-~19154~^~318~^6.^0^^~4~^~FLM~^^^^^^^^^^~12/01/2006~
-~19154~^~319~^0.^0^^~4~^~FLM~^^^^^^^^^^~02/01/2003~
-~19154~^~320~^0.^0^^~4~^~FLM~^^^^^^^^^^~12/01/2006~
-~19154~^~321~^3.^0^^~4~^~FLM~^^^^^^^^^^~12/01/2006~
-~19154~^~322~^0.^0^^~4~^~FLM~^^^^^^^^^^~02/01/2003~
-~19154~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~
-~19154~^~334~^0.^0^^~4~^~FLM~^^^^^^^^^^~02/01/2003~
-~19154~^~337~^0.^0^^~4~^~FLM~^^^^^^^^^^~02/01/2003~
-~19154~^~338~^0.^0^^~4~^~FLM~^^^^^^^^^^~02/01/2003~
-~19154~^~417~^51.^0^^~4~^~FLM~^^^^^^^^^^~12/01/2006~
-~19154~^~431~^0.^0^^~4~^~FLM~^^^^^^^^^^~02/01/2003~
-~19154~^~432~^51.^0^^~4~^~FLM~^^^^^^^^^^~12/01/2006~
-~19154~^~435~^51.^0^^~4~^~NC~^^^^^^^^^^~12/01/2006~
-~19154~^~601~^0.^0^^~4~^~FLM~^^^^^^^^^^~12/01/2006~
-~19155~^~208~^491.^0^^~4~^~NC~^^^^^^^^^^~05/01/2009~
-~19155~^~262~^8.^0^^~4~^~FLA~^^^^^^^^^^~02/01/2006~
-~19155~^~263~^85.^0^^~4~^~FLA~^^^^^^^^^^~02/01/2006~
-~19155~^~268~^2053.^0^^~4~^~NC~^^^^^^^^^^~05/01/2009~
-~19155~^~301~^93.^1^^~9~^~MC~^^^^^^^^^^~02/01/2006~
-~19155~^~304~^72.^1^^~1~^~A~^^^^^^^^^^~11/01/2003~
-~19155~^~305~^190.^1^^~1~^~A~^^^^^^^^^^~11/01/2003~
-~19155~^~306~^323.^1^^~1~^~A~^^^^^^^^^^~11/01/2003~
-~19155~^~307~^239.^0^^~8~^~LC~^^^^^^^^^^~07/01/2010~
-~19155~^~318~^161.^0^^~4~^~NC~^^^^^^^^^^~03/01/2009~
-~19155~^~319~^45.^0^^~4~^~FLA~^^^^^^^^^^~02/01/2006~
-~19155~^~320~^46.^0^^~4~^~NC~^^^^^^^^^^~03/01/2009~
-~19155~^~321~^6.^0^^~4~^~FLA~^^^^^^^^^^~02/01/2006~
-~19155~^~322~^0.^1^^~1~^~A~^^^^^^^^^~1~^~11/01/2003~
-~19155~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~
-~19155~^~334~^0.^1^^~1~^~A~^^^^^^^^^~1~^~11/01/2003~
-~19155~^~337~^0.^1^^~1~^~A~^^^^^^^^^~1~^~11/01/2003~
-~19155~^~338~^16.^0^^~4~^~NR~^^^^^^^^^^~11/01/2003~
-~19155~^~417~^27.^1^^~1~^~A~^^^^^^^^^^~11/01/2003~
-~19155~^~431~^6.^1^^~1~^~A~^^^^^^^^^^~11/01/2003~
-~19155~^~432~^21.^1^^~1~^~AS~^^^^^^^^^^~11/01/2003~
-~19155~^~435~^31.^0^^~4~^~NC~^^^^^^^^^^~05/01/2009~
-~19155~^~601~^13.^1^^~9~^~MC~^^^^^^^^^^~02/01/2006~
-~19156~^~208~^408.^1^^~9~^~MC~^^^^^^^^^^~03/01/2006~
-~19156~^~262~^0.^0^^~4~^~FLC~^^^^^^^^^^~02/01/2003~
-~19156~^~263~^0.^0^^~4~^~FLC~^^^^^^^^^^~02/01/2003~
-~19156~^~268~^1706.^0^^~9~^~MC~^^^^^^^^^^~03/01/2006~
-~19156~^~301~^0.^1^^~9~^~MC~^^^^^^^^^^~02/01/2006~
-~19156~^~304~^1.^2^^~1~^^^^^^^^^^^~08/01/1991~
-~19156~^~305~^5.^0^^~4~^~FLC~^^^^^^^^^^~02/01/2006~
-~19156~^~306~^2.^2^^~1~^^^^^^^^^^^~08/01/1991~
-~19156~^~307~^2.^1^^~9~^~MC~^^^^^^^^^^~02/01/2006~
-~19156~^~318~^1.^1^^~9~^~MC~^^^^^^^^^^~02/01/2006~
-~19156~^~319~^0.^0^^~4~^~FLC~^^^^^^^^^^~02/01/2003~
-~19156~^~320~^0.^0^^~4~^~NC~^^^^^^^^^^~03/01/2009~
-~19156~^~321~^0.^0^^~4~^~FLC~^^^^^^^^^^~02/01/2006~
-~19156~^~322~^0.^0^^~4~^~FLC~^^^^^^^^^^~02/01/2006~
-~19156~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~
-~19156~^~334~^0.^0^^~4~^~FLC~^^^^^^^^^^~02/01/2006~
-~19156~^~337~^0.^0^^~4~^~FLC~^^^^^^^^^^~02/01/2003~
-~19156~^~338~^6.^0^^~4~^~FLC~^^^^^^^^^^~02/01/2006~
-~19156~^~417~^1.^0^^~4~^~FLC~^^^^^^^^^^~02/01/2006~
-~19156~^~431~^0.^0^^~4~^~FLC~^^^^^^^^^^~02/01/2003~
-~19156~^~432~^1.^0^^~4~^~FLC~^^^^^^^^^^~02/01/2006~
-~19156~^~435~^1.^0^^~4~^~NC~^^^^^^^^^^~03/01/2009~
-~19156~^~601~^0.^1^^~9~^~MC~^^^^^^^^^^~02/01/2006~
-~19157~^~208~^502.^1^^~9~^~MC~^^^^^^^^^^~01/01/2006~
-~19157~^~268~^2102.^0^^~9~^~MC~^^^^^^^^^^~01/01/2006~
-~19157~^~301~^116.^1^^~9~^~MC~^^^^^^^^^^~01/01/2006~
-~19157~^~307~^68.^1^^~9~^~MC~^^^^^^^^^^~01/01/2006~
-~19157~^~318~^224.^1^^~9~^~MC~^^^^^^^^^^~01/01/2006~
-~19157~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~
-~19157~^~601~^15.^1^^~9~^~MC~^^^^^^^^^^~01/01/2006~
-~19159~^~208~^436.^0^^~4~^~NC~^^^^^^^^^^~05/01/2009~
-~19159~^~262~^7.^0^^~4~^~FLC~^^^^^^^^^^~12/01/2005~
-~19159~^~263~^106.^0^^~4~^~FLC~^^^^^^^^^^~12/01/2005~
-~19159~^~268~^1825.^0^^~4~^~NC~^^^^^^^^^^~05/01/2009~
-~19159~^~301~^54.^1^^~9~^~MC~^^^^^^^^^^~12/01/2005~
-~19159~^~304~^29.^2^^~1~^^^^^^^^^^^~08/01/1991~
-~19159~^~305~^69.^0^^~4~^~FLC~^^^^^^^^^^~12/01/2005~
-~19159~^~306~^133.^3^51.^~1~^^^^^^^^^^^~08/01/1991~
-~19159~^~307~^194.^1^^~9~^~MC~^^^^^^^^^^~12/01/2005~
-~19159~^~318~^67.^0^^~4~^~NC~^^^^^^^^^^~03/01/2009~
-~19159~^~319~^20.^0^^~4~^~O~^^^^^^^^^^~12/01/2005~
-~19159~^~320~^20.^0^^~4~^~NC~^^^^^^^^^^~03/01/2009~
-~19159~^~321~^0.^0^^~4~^~FLC~^^^^^^^^^^~02/01/2003~
-~19159~^~322~^0.^0^^~4~^~FLC~^^^^^^^^^^~02/01/2003~
-~19159~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~
-~19159~^~334~^0.^0^^~4~^~FLC~^^^^^^^^^^~02/01/2003~
-~19159~^~337~^0.^0^^~4~^~FLC~^^^^^^^^^^~02/01/2003~
-~19159~^~338~^1.^0^^~4~^~FLC~^^^^^^^^^^~12/01/2005~
-~19159~^~417~^4.^0^^~4~^~FLC~^^^^^^^^^^~12/01/2005~
-~19159~^~431~^0.^0^^~4~^~FLC~^^^^^^^^^^~02/01/2003~
-~19159~^~432~^4.^0^^~4~^~FLC~^^^^^^^^^^~12/01/2005~
-~19159~^~435~^4.^0^^~4~^~NC~^^^^^^^^^^~05/01/2009~
-~19159~^~601~^5.^1^^~9~^~MC~^^^^^^^^^^~12/01/2005~
-~19160~^~208~^502.^0^^~4~^~NC~^^^^^^^^^^~05/01/2009~
-~19160~^~262~^7.^0^^~4~^~FLA~^^^^^^^^^^~02/01/2006~
-~19160~^~263~^70.^0^^~4~^~FLA~^^^^^^^^^^~12/01/2006~
-~19160~^~268~^2102.^0^^~4~^~NC~^^^^^^^^^^~05/01/2009~
-~19160~^~301~^106.^1^^~9~^~MC~^^^^^^^^^^~02/01/2006~
-~19160~^~304~^27.^0^^~4~^~FLA~^^^^^^^^^^~12/01/2006~
-~19160~^~305~^105.^0^^~4~^~FLA~^^^^^^^^^^~12/01/2006~
-~19160~^~306~^186.^0^^~4~^~FLA~^^^^^^^^^^~12/01/2006~
-~19160~^~307~^198.^1^^~9~^~MC~^^^^^^^^^^~02/01/2006~
-~19160~^~318~^67.^0^^~4~^~NC~^^^^^^^^^^~03/01/2009~
-~19160~^~319~^20.^0^^~4~^~FLA~^^^^^^^^^^~12/01/2006~
-~19160~^~320~^20.^0^^~4~^~NC~^^^^^^^^^^~03/01/2009~
-~19160~^~321~^0.^0^^~4~^~FLA~^^^^^^^^^^~12/01/2006~
-~19160~^~322~^0.^0^^~4~^~FLA~^^^^^^^^^^~12/01/2006~
-~19160~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~
-~19160~^~334~^0.^0^^~4~^~FLA~^^^^^^^^^^~12/01/2006~
-~19160~^~337~^0.^0^^~4~^~FLA~^^^^^^^^^^~12/01/2006~
-~19160~^~338~^5.^0^^~4~^~FLA~^^^^^^^^^^~12/01/2006~
-~19160~^~417~^26.^0^^~4~^~FLA~^^^^^^^^^^~12/01/2006~
-~19160~^~431~^18.^0^^~4~^~FLA~^^^^^^^^^^~05/01/2009~
-~19160~^~432~^9.^0^^~4~^~FLA~^^^^^^^^^^~05/01/2009~
-~19160~^~435~^39.^0^^~4~^~NC~^^^^^^^^^^~05/01/2009~
-~19160~^~601~^7.^1^^~9~^~MC~^^^^^^^^^^~02/01/2006~
-~19161~^~208~^547.^0^^~4~^~NC~^^^^^^^^^^~01/01/2017~
-~19161~^~262~^7.^0^^~4~^~FLC~^^^^^^^^^^~12/01/2006~
-~19161~^~263~^70.^0^^~4~^~FLC~^^^^^^^^^^~12/01/2006~
-~19161~^~268~^2290.^0^^~4~^~NC~^^^^^^^^^^~01/01/2017~
-~19161~^~301~^75.^1^^~9~^~MC~^^^^^^^^^^~02/01/2006~
-~19161~^~304~^61.^0^^~4~^~FLC~^^^^^^^^^^~12/01/2006~
-~19161~^~305~^173.^0^^~4~^~FLC~^^^^^^^^^^~12/01/2006~
-~19161~^~306~^264.^0^^~4~^~FLC~^^^^^^^^^^~12/01/2006~
-~19161~^~307~^226.^1^^~9~^~MC~^^^^^^^^^^~02/01/2006~
-~19161~^~318~^68.^0^^~4~^~NC~^^^^^^^^^^~03/01/2009~
-~19161~^~319~^20.^0^^~4~^~FLC~^^^^^^^^^^~12/01/2006~
-~19161~^~320~^20.^0^^~4~^~NC~^^^^^^^^^^~03/01/2009~
-~19161~^~321~^1.^0^^~4~^~FLC~^^^^^^^^^^~12/01/2006~
-~19161~^~322~^0.^0^^~4~^~FLC~^^^^^^^^^^~12/01/2006~
-~19161~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~
-~19161~^~334~^0.^0^^~4~^~FLC~^^^^^^^^^^~12/01/2006~
-~19161~^~337~^0.^0^^~4~^~FLC~^^^^^^^^^^~12/01/2006~
-~19161~^~338~^31.^0^^~4~^~FLC~^^^^^^^^^^~12/01/2006~
-~19161~^~417~^15.^0^^~4~^~FLC~^^^^^^^^^^~12/01/2006~
-~19161~^~431~^0.^0^^~4~^~FLC~^^^^^^^^^^~12/01/2006~
-~19161~^~432~^15.^0^^~4~^~FLC~^^^^^^^^^^~12/01/2006~
-~19161~^~435~^15.^0^^~4~^~NC~^^^^^^^^^^~03/01/2009~
-~19161~^~601~^6.^1^^~9~^~MC~^^^^^^^^^^~02/01/2006~
-~19162~^~208~^494.^1^^~9~^~MC~^^^^^^^^^^~05/01/2002~
-~19162~^~262~^10.^0^^~4~^~FLM~^^^^^^^^^^~02/01/2003~
-~19162~^~263~^100.^0^^~4~^~FLM~^^^^^^^^^^~02/01/2003~
-~19162~^~268~^2067.^0^^~9~^~MC~^^^^^^^^^^~02/01/2003~
-~19162~^~301~^118.^1^^~9~^~MC~^^^^^^^^^^~05/01/2002~
-~19162~^~304~^28.^1^^~9~^~MC~^^^^^^^^^^~05/01/2002~
-~19162~^~305~^138.^1^^~9~^~MC~^^^^^^^^^^~05/01/2002~
-~19162~^~306~^303.^1^^~9~^~MC~^^^^^^^^^^~05/01/2002~
-~19162~^~307~^299.^1^^~9~^~MC~^^^^^^^^^^~05/01/2002~
-~19162~^~318~^126.^0^^~4~^~NC~^^^^^^^^^^~01/01/2017~
-~19162~^~319~^37.^0^^~4~^~FLM~^^^^^^^^^^~02/01/2003~
-~19162~^~320~^37.^0^^~4~^~NC~^^^^^^^^^^~01/01/2017~
-~19162~^~321~^1.^0^^~4~^~FLM~^^^^^^^^^^~02/01/2003~
-~19162~^~322~^0.^0^^~4~^~FLM~^^^^^^^^^^~02/01/2003~
-~19162~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~
-~19162~^~334~^0.^0^^~4~^~FLM~^^^^^^^^^^~02/01/2003~
-~19162~^~337~^0.^0^^~4~^~FLM~^^^^^^^^^^~02/01/2003~
-~19162~^~338~^0.^0^^~4~^~FLM~^^^^^^^^^^~02/01/2003~
-~19162~^~417~^18.^1^^~9~^~MC~^^^^^^^^^^~05/01/2002~
-~19162~^~431~^0.^0^^~4~^~O~^^^^^^^^^^~07/01/2002~
-~19162~^~432~^18.^0^^~4~^~FLM~^^^^^^^^^^~02/01/2003~
-~19162~^~435~^18.^0^^~4~^~NC~^^^^^^^^^^~12/01/2006~
-~19162~^~601~^12.^1^^~9~^~MC~^^^^^^^^^^~05/01/2002~
-~19163~^~208~^360.^0^^~4~^~NC~^^^^^^^^^^~05/01/2009~
-~19163~^~262~^0.^0^^~4~^~FLC~^^^^^^^^^^~11/01/2002~
-~19163~^~263~^0.^0^^~4~^~FLC~^^^^^^^^^^~11/01/2002~
-~19163~^~268~^1507.^0^^~4~^~NC~^^^^^^^^^^~05/01/2009~
-~19163~^~301~^0.^1^^~1~^^^^^^^^^^^~08/01/1991~
-~19163~^~304~^0.^1^^~1~^^^^^^^^^^^~08/01/1991~
-~19163~^~305~^0.^1^^~1~^^^^^^^^^^^~08/01/1991~
-~19163~^~306~^2.^0^^~4~^~FLC~^^^^^^^^^^~11/01/2002~
-~19163~^~307~^1.^0^^~4~^~FLC~^^^^^^^^^^~11/01/2002~
-~19163~^~318~^0.^0^^~4~^~FLC~^^^^^^^^^^~11/01/2002~
-~19163~^~319~^0.^0^^~4~^~FLC~^^^^^^^^^^~11/01/2002~
-~19163~^~320~^0.^0^^~4~^~FLC~^^^^^^^^^^~11/01/2002~
-~19163~^~321~^0.^0^^~7~^~Z~^^^^^^^^^^~11/01/2002~
-~19163~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~11/01/2002~
-~19163~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~
-~19163~^~334~^0.^0^^~4~^~FLC~^^^^^^^^^^~11/01/2002~
-~19163~^~337~^0.^0^^~4~^~FLC~^^^^^^^^^^~11/01/2002~
-~19163~^~338~^0.^0^^~4~^~FLC~^^^^^^^^^^~11/01/2002~
-~19163~^~417~^0.^0^^~4~^~FLC~^^^^^^^^^^~11/01/2002~
-~19163~^~431~^0.^0^^~4~^~FLC~^^^^^^^^^^~11/01/2002~
-~19163~^~432~^0.^0^^~4~^~FLC~^^^^^^^^^^~11/01/2002~
-~19163~^~435~^0.^0^^~4~^~NC~^^^^^^^^^^~05/01/2009~
-~19163~^~601~^0.^0^^~4~^~FLC~^^^^^^^^^^~11/01/2002~
-~19164~^~208~^556.^0^^~4~^~NC~^^^^^^^^^^~05/01/2009~
-~19164~^~268~^2325.^0^^~4~^~NC~^^^^^^^^^^~05/01/2009~
-~19164~^~301~^30.^1^^~9~^~MC~^^^^^^^^^^~05/01/2002~
-~19164~^~304~^31.^1^^~9~^~MC~^^^^^^^^^^~05/01/2002~
-~19164~^~305~^51.^1^^~9~^~MC~^^^^^^^^^^~05/01/2002~
-~19164~^~306~^502.^1^^~9~^~MC~^^^^^^^^^^~05/01/2002~
-~19164~^~307~^6.^1^^~9~^~MC~^^^^^^^^^^~05/01/2002~
-~19164~^~417~^0.^1^^~9~^~MC~^^^^^^^^^^~05/01/2002~
-~19164~^~432~^0.^1^^~9~^~MC~^^^^^^^^^^~03/01/2003~
-~19164~^~601~^5.^1^^~9~^~MC~^^^^^^^^^^~05/01/2002~
-~19165~^~208~^228.^0^^~4~^~NC~^^^^^^^^^^~05/01/2009~
-~19165~^~262~^230.^1^^~1~^^^^^^^^^^^~08/01/1991~
-~19165~^~263~^2057.^1^^~1~^^^^^^^^^^^~08/01/1991~
-~19165~^~268~^952.^0^^~4~^~NC~^^^^^^^^^^~05/01/2009~
-~19165~^~301~^128.^9^8.^~1~^^^^^^^^^^^~08/01/1991~
-~19165~^~304~^499.^9^11.^~1~^^^^^^^^^^^~08/01/1991~
-~19165~^~305~^734.^9^19.^~1~^^^^^^^^^^^~08/01/1991~
-~19165~^~306~^1524.^6^74.^~1~^^^^^^^^^^^~08/01/1991~
-~19165~^~307~^21.^8^3.^~1~^^^^^^^^^^^~08/01/1991~
-~19165~^~318~^0.^0^^~4~^~BFSN~^~19078~^^^^^^^^^~02/01/2003~
-~19165~^~319~^0.^0^^~4~^~BFSN~^~19078~^^^^^^^^^~02/01/2003~
-~19165~^~320~^0.^0^^~4~^~NC~^^^^^^^^^^~02/01/2003~
-~19165~^~321~^0.^0^^~4~^~BFSN~^~19078~^^^^^^^^^~02/01/2003~
-~19165~^~322~^0.^0^^~4~^~BFSN~^~19078~^^^^^^^^^~02/01/2003~
-~19165~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~
-~19165~^~334~^0.^0^^~4~^~BFSN~^~19078~^^^^^^^^^~02/01/2003~
-~19165~^~337~^0.^0^^~4~^~BFSN~^~19078~^^^^^^^^^~02/01/2003~
-~19165~^~338~^38.^0^^~4~^~BFSN~^~19078~^^^^^^^^^~02/01/2003~
-~19165~^~417~^32.^2^^~1~^^^^^^^^^^^~08/01/1991~
-~19165~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~
-~19165~^~432~^32.^2^^~1~^^^^^^^^^^^~02/01/2003~
-~19165~^~435~^32.^0^^~4~^~NC~^^^^^^^^^^~05/01/2009~
-~19165~^~601~^0.^1^^~1~^^^^^^^^^^^~08/01/1991~
-~19166~^~208~^220.^0^^~4~^~NC~^^^^^^^^^^~05/01/2009~
-~19166~^~262~^78.^1^^~1~^^^^^^^^^^^~08/01/1991~
-~19166~^~263~^2634.^1^^~1~^^^^^^^^^^^~08/01/1991~
-~19166~^~268~^922.^0^^~4~^~NC~^^^^^^^^^^~05/01/2009~
-~19166~^~301~^111.^3^1.^~1~^^^^^^^^^^^~08/01/1991~
-~19166~^~304~^476.^3^14.^~1~^^^^^^^^^^^~08/01/1991~
-~19166~^~305~^728.^3^10.^~1~^^^^^^^^^^^~08/01/1991~
-~19166~^~306~^2509.^3^585.^~1~^^^^^^^^^^^~08/01/1991~
-~19166~^~307~^19.^2^^~1~^^^^^^^^^^^~08/01/1991~
-~19166~^~318~^0.^0^^~4~^~BFSN~^~19078~^^^^^^^^^~02/01/2003~
-~19166~^~319~^0.^0^^~4~^~BFSN~^~19078~^^^^^^^^^~02/01/2003~
-~19166~^~320~^0.^0^^~4~^~NC~^^^^^^^^^^~02/01/2003~
-~19166~^~321~^0.^0^^~4~^~BFSN~^~19078~^^^^^^^^^~02/01/2003~
-~19166~^~322~^0.^0^^~4~^~BFSN~^~19078~^^^^^^^^^~02/01/2003~
-~19166~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~
-~19166~^~334~^0.^0^^~4~^~BFSN~^~19078~^^^^^^^^^~02/01/2003~
-~19166~^~337~^0.^0^^~4~^~BFSN~^~19078~^^^^^^^^^~02/01/2003~
-~19166~^~338~^38.^0^^~4~^~BFSN~^~19078~^^^^^^^^^~02/01/2003~
-~19166~^~417~^32.^1^^~4~^^^^^^^^^^^~08/01/1991~
-~19166~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~
-~19166~^~432~^32.^1^^~4~^^^^^^^^^^^~02/01/2003~
-~19166~^~435~^32.^0^^~4~^~NC~^^^^^^^^^^~05/01/2009~
-~19166~^~601~^0.^1^^~4~^^^^^^^^^^^~08/01/1991~
-~19168~^~208~^104.^0^^~4~^~NC~^^^^^^^^^^~05/01/2009~
-~19168~^~262~^0.^0^^~4~^~RC~^^^^^^^^^^~05/01/2006~
-~19168~^~263~^0.^0^^~4~^~RC~^^^^^^^^^^~05/01/2006~
-~19168~^~268~^437.^0^^~4~^~NC~^^^^^^^^^^~05/01/2009~
-~19168~^~301~^107.^0^^~4~^~RC~^^^^^^^^^^~05/01/2006~
-~19168~^~304~^11.^0^^~4~^~RC~^^^^^^^^^^~05/01/2006~
-~19168~^~305~^113.^0^^~4~^~RC~^^^^^^^^^^~05/01/2006~
-~19168~^~306~^148.^0^^~4~^~RC~^^^^^^^^^^~05/01/2006~
-~19168~^~307~^61.^0^^~4~^~RC~^^^^^^^^^^~05/01/2006~
-~19168~^~318~^175.^0^^~4~^~NC~^^^^^^^^^^~08/01/2010~
-~19168~^~319~^49.^0^^~4~^~RC~^^^^^^^^^^~05/01/2006~
-~19168~^~320~^49.^0^^~4~^~NC~^^^^^^^^^^~08/01/2010~
-~19168~^~321~^6.^0^^~4~^~RC~^^^^^^^^^^~05/01/2006~
-~19168~^~322~^0.^0^^~4~^~RC~^^^^^^^^^^~05/01/2006~
-~19168~^~334~^2.^0^^~4~^~RC~^^^^^^^^^^~05/01/2006~
-~19168~^~337~^0.^0^^~4~^~RC~^^^^^^^^^^~05/01/2006~
-~19168~^~338~^59.^0^^~4~^~RC~^^^^^^^^^^~05/01/2006~
-~19168~^~417~^10.^0^^~4~^~RC~^^^^^^^^^^~05/01/2006~
-~19168~^~431~^0.^0^^~4~^~RC~^^^^^^^^^^~05/01/2006~
-~19168~^~432~^10.^0^^~4~^~RC~^^^^^^^^^^~05/01/2006~
-~19168~^~435~^10.^0^^~4~^~NC~^^^^^^^^^^~05/01/2009~
-~19168~^~601~^84.^0^^~4~^~RC~^^^^^^^^^^~05/01/2006~
-~19169~^~208~^410.^0^^~4~^~NC~^^^^^^^^^^~08/01/1991~
-~19169~^~268~^1715.^0^^~4~^^^^^^^^^^^~05/01/2006~
-~19169~^~301~^228.^6^4.^~1~^^^^^^^^^^^~08/01/1991~
-~19169~^~304~^45.^0^^~4~^~FLA~^^^^^^^^^^~03/01/2002~
-~19169~^~305~^332.^0^^~4~^~FLA~^^^^^^^^^^~03/01/2002~
-~19169~^~306~^540.^0^^~4~^~FLA~^^^^^^^^^^~03/01/2002~
-~19169~^~307~^281.^0^^~4~^~FLA~^^^^^^^^^^~03/01/2002~
-~19169~^~318~^217.^6^13.^~1~^^^^^^^^^^^~08/01/1991~
-~19169~^~319~^63.^0^^~4~^~O~^^^^^^^^^^~03/01/2002~
-~19169~^~320~^63.^0^^~4~^~NC~^^^^^^^^^^~03/01/2002~
-~19169~^~417~^30.^0^^~4~^~FLA~^^^^^^^^^^~03/01/2002~
-~19169~^~431~^0.^0^^~4~^~FLA~^^^^^^^^^^~03/01/2002~
-~19169~^~432~^30.^0^^~4~^~FLA~^^^^^^^^^^~03/01/2002~
-~19169~^~435~^30.^0^^~4~^~NC~^^^^^^^^^^~05/01/2006~
-~19169~^~601~^258.^0^^~4~^~FLA~^^^^^^^^^^~03/01/2002~
-~19170~^~208~^122.^0^^~4~^~NC~^^^^^^^^^^~03/01/2009~
-~19170~^~262~^0.^0^^~4~^~RP~^^^^^^^^^^~03/01/2002~
-~19170~^~263~^0.^0^^~4~^~RP~^^^^^^^^^^~03/01/2002~
-~19170~^~268~^512.^0^^~4~^~NC~^^^^^^^^^^~03/01/2009~
-~19170~^~301~^139.^0^^~4~^~RP~^^^^^^^^^^~03/01/2009~
-~19170~^~304~^16.^0^^~4~^~RP~^^^^^^^^^^~03/01/2009~
-~19170~^~305~^130.^0^^~4~^~RP~^^^^^^^^^^~03/01/2009~
-~19170~^~306~^207.^0^^~4~^~RP~^^^^^^^^^^~03/01/2009~
-~19170~^~307~^84.^0^^~4~^~RP~^^^^^^^^^^~03/01/2009~
-~19170~^~318~^182.^0^^~4~^~NC~^^^^^^^^^^~03/01/2009~
-~19170~^~319~^52.^0^^~4~^~RP~^^^^^^^^^^~03/01/2009~
-~19170~^~320~^52.^0^^~4~^~NC~^^^^^^^^^^~08/01/2009~
-~19170~^~321~^6.^0^^~4~^~RP~^^^^^^^^^^~03/01/2009~
-~19170~^~322~^0.^0^^~4~^~RP~^^^^^^^^^^~03/01/2009~
-~19170~^~324~^47.^0^^~4~^~RP~^^^^^^^^^^~08/01/2009~
-~19170~^~334~^0.^0^^~4~^~RP~^^^^^^^^^^~03/01/2009~
-~19170~^~337~^0.^0^^~4~^~RP~^^^^^^^^^^~03/01/2009~
-~19170~^~338~^0.^0^^~4~^~RP~^^^^^^^^^^~03/01/2009~
-~19170~^~417~^9.^0^^~4~^~RP~^^^^^^^^^^~03/01/2009~
-~19170~^~431~^0.^0^^~4~^~RP~^^^^^^^^^^~03/01/2002~
-~19170~^~432~^9.^0^^~4~^~RP~^^^^^^^^^^~03/01/2009~
-~19170~^~435~^9.^0^^~4~^~NC~^^^^^^^^^^~08/01/2009~
-~19170~^~601~^51.^0^^~4~^~RP~^^^^^^^^^^~03/01/2009~
-~19171~^~208~^410.^0^^~4~^~NC~^^^^^^^^^^~08/01/2015~
-~19171~^~268~^1715.^0^^~4~^~NC~^^^^^^^^^^~08/01/2015~
-~19171~^~301~^0.^1^^~9~^~MC~^^^^^^^^^^~04/01/2002~
-~19171~^~307~^0.^1^^~9~^~MC~^^^^^^^^^^~04/01/2002~
-~19171~^~318~^0.^1^^~9~^~MC~^^^^^^^^^^~04/01/2002~
-~19171~^~601~^0.^1^^~9~^~MC~^^^^^^^^^^~04/01/2002~
-~19172~^~208~^381.^0^^~4~^^^^^^^^^^^~08/01/1991~
-~19172~^~262~^0.^0^^~4~^~FLC~^^^^^^^^^^~02/01/2003~
-~19172~^~263~^0.^0^^~4~^~FLC~^^^^^^^^^^~02/01/2003~
-~19172~^~268~^1594.^0^^~4~^^^^^^^^^^^~04/01/2005~
-~19172~^~301~^3.^9^0.^~1~^^^^^^^^^^^~08/01/1991~
-~19172~^~304~^2.^0^^~4~^~FLC~^^^^^^^^^^~02/01/2003~
-~19172~^~305~^141.^0^^~4~^~FLA~^^^^^^^^^^~02/01/2003~
-~19172~^~306~^7.^17^0.^~1~^^^^^^^^^^^~08/01/1991~
-~19172~^~307~^466.^4^54.^~8~^~LC~^^^2^364.^619.^3^293.^639.^~4~^~02/01/2003~
-~19172~^~318~^0.^0^^~4~^~NC~^^^^^^^^^^~04/01/2005~
-~19172~^~319~^0.^0^^~4~^~FLC~^^^^^^^^^^~02/01/2003~
-~19172~^~320~^0.^0^^~4~^~FLC~^^^^^^^^^^~02/01/2003~
-~19172~^~321~^0.^0^^~4~^~FLC~^^^^^^^^^^~02/01/2003~
-~19172~^~322~^0.^0^^~4~^~FLC~^^^^^^^^^^~02/01/2003~
-~19172~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~
-~19172~^~334~^0.^0^^~4~^~FLC~^^^^^^^^^^~02/01/2003~
-~19172~^~337~^0.^0^^~4~^~FLC~^^^^^^^^^^~02/01/2003~
-~19172~^~338~^0.^0^^~4~^~FLC~^^^^^^^^^^~02/01/2003~
-~19172~^~417~^3.^0^^~4~^~FLC~^^^^^^^^^^~02/01/2003~
-~19172~^~431~^0.^0^^~4~^~FLC~^^^^^^^^^^~02/01/2003~
-~19172~^~432~^3.^0^^~4~^~FLC~^^^^^^^^^^~02/01/2003~
-~19172~^~435~^3.^0^^~4~^~NC~^^^^^^^^^^~12/01/2006~
-~19172~^~601~^0.^2^^~8~^~LC~^^^1^0.^0.^1^^^^~02/01/2003~
-~19173~^~208~^60.^0^^~4~^~NC~^^^^^^^^^^~01/01/2017~
-~19173~^~262~^0.^0^^~6~^~RPI~^^^^^^^^^^~02/01/2003~
-~19173~^~263~^0.^0^^~6~^~RPI~^^^^^^^^^^~02/01/2003~
-~19173~^~268~^250.^0^^~4~^~NC~^^^^^^^^^^~01/01/2017~
-~19173~^~301~^3.^0^^~1~^~RPA~^^^^^^^^^^~02/01/2003~
-~19173~^~304~^1.^0^^~6~^~RPI~^^^^^^^^^^~02/01/2003~
-~19173~^~305~^22.^0^^~6~^~RPI~^^^^^^^^^^~02/01/2003~
-~19173~^~306~^1.^0^^~1~^~RPA~^^^^^^^^^^~02/01/2003~
-~19173~^~307~^75.^0^^~6~^~RPI~^^^^^^^^^^~02/01/2003~
-~19173~^~318~^0.^0^^~6~^~RPI~^^^^^^^^^^~02/01/2003~
-~19173~^~319~^0.^0^^~6~^~RPI~^^^^^^^^^^~02/01/2003~
-~19173~^~320~^0.^0^^~4~^~NC~^^^^^^^^^^~01/01/2017~
-~19173~^~321~^0.^0^^~6~^~RPI~^^^^^^^^^^~02/01/2003~
-~19173~^~322~^0.^0^^~6~^~RPI~^^^^^^^^^^~02/01/2003~
-~19173~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~
-~19173~^~334~^0.^0^^~6~^~RPI~^^^^^^^^^^~02/01/2003~
-~19173~^~337~^0.^0^^~6~^~RPI~^^^^^^^^^^~02/01/2003~
-~19173~^~338~^0.^0^^~6~^~RPI~^^^^^^^^^^~02/01/2003~
-~19173~^~417~^1.^0^^~6~^~RPI~^^^^^^^^^^~02/01/2003~
-~19173~^~431~^0.^0^^~6~^~RPI~^^^^^^^^^^~02/01/2003~
-~19173~^~432~^1.^0^^~6~^~RPI~^^^^^^^^^^~02/01/2003~
-~19173~^~435~^1.^0^^~4~^~NC~^^^^^^^^^^~03/01/2006~
-~19173~^~601~^0.^0^^~6~^~RPI~^^^^^^^^^^~02/01/2003~
-~19175~^~208~^198.^0^^~4~^~NC~^^^^^^^^^^~03/01/2003~
-~19175~^~262~^0.^0^^~4~^~FLC~^^^^^^^^^^~03/01/2003~
-~19175~^~263~^0.^0^^~4~^~FLC~^^^^^^^^^^~03/01/2003~
-~19175~^~268~^829.^0^^~4~^~NC~^^^^^^^^^^~03/01/2003~
-~19175~^~301~^8.^0^^~4~^~FLC~^^^^^^^^^^~03/01/2003~
-~19175~^~304~^2.^0^^~4~^~FLC~^^^^^^^^^^~03/01/2003~
-~19175~^~305~^1293.^0^^~4~^^^^^^^^^^^~08/01/1991~
-~19175~^~306~^14.^7^1.^~1~^^^^^^^^^^^~03/01/2003~
-~19175~^~307~^862.^1^^~8~^~LC~^^^^^^^^^^~03/01/2003~
-~19175~^~318~^0.^0^^~4~^~FLC~^^^^^^^^^^~03/01/2003~
-~19175~^~319~^0.^0^^~4~^~FLC~^^^^^^^^^^~03/01/2003~
-~19175~^~320~^0.^0^^~4~^~FLC~^^^^^^^^^^~03/01/2003~
-~19175~^~321~^0.^0^^~4~^~FLC~^^^^^^^^^^~03/01/2003~
-~19175~^~322~^0.^0^^~4~^~FLC~^^^^^^^^^^~03/01/2003~
-~19175~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~
-~19175~^~334~^0.^0^^~4~^~FLC~^^^^^^^^^^~03/01/2003~
-~19175~^~337~^0.^0^^~4~^~FLC~^^^^^^^^^^~03/01/2003~
-~19175~^~338~^0.^0^^~4~^~FLC~^^^^^^^^^^~03/01/2003~
-~19175~^~417~^0.^0^^~4~^~FLC~^^^^^^^^^^~03/01/2003~
-~19175~^~431~^0.^0^^~4~^~FLC~^^^^^^^^^^~03/01/2003~
-~19175~^~432~^0.^0^^~4~^~FLC~^^^^^^^^^^~03/01/2003~
-~19175~^~435~^0.^0^^~4~^~NC~^^^^^^^^^^~12/01/2006~
-~19175~^~601~^0.^1^^~8~^~LC~^^^^^^^^^^~03/01/2003~
-~19176~^~208~^20.^0^^~4~^~NC~^^^^^^^^^^~01/01/2017~
-~19176~^~262~^0.^0^^~6~^~RPI~^^^^^^^^^^~03/01/2003~
-~19176~^~263~^0.^0^^~6~^~RPI~^^^^^^^^^^~03/01/2003~
-~19176~^~268~^82.^0^^~4~^~NC~^^^^^^^^^^~01/01/2017~
-~19176~^~301~^3.^0^^~6~^~RPI~^^^^^^^^^^~03/01/2003~
-~19176~^~304~^1.^0^^~6~^~RPI~^^^^^^^^^^~03/01/2003~
-~19176~^~305~^68.^0^^~6~^~RPI~^^^^^^^^^^~03/01/2003~
-~19176~^~306~^1.^0^^~1~^~RPA~^^^^^^^^^^~03/01/2003~
-~19176~^~307~^48.^0^^~6~^~RPI~^^^^^^^^^^~03/01/2003~
-~19176~^~318~^0.^0^^~6~^~RPI~^^^^^^^^^^~03/01/2003~
-~19176~^~319~^0.^0^^~6~^~RPI~^^^^^^^^^^~03/01/2003~
-~19176~^~320~^0.^0^^~4~^~NC~^^^^^^^^^^~01/01/2017~
-~19176~^~321~^0.^0^^~6~^~RPI~^^^^^^^^^^~03/01/2003~
-~19176~^~322~^0.^0^^~6~^~RPI~^^^^^^^^^^~03/01/2003~
-~19176~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~
-~19176~^~334~^0.^0^^~6~^~RPI~^^^^^^^^^^~03/01/2003~
-~19176~^~337~^0.^0^^~6~^~RPI~^^^^^^^^^^~03/01/2003~
-~19176~^~338~^0.^0^^~6~^~RPI~^^^^^^^^^^~03/01/2003~
-~19176~^~417~^0.^0^^~6~^~RPI~^^^^^^^^^^~03/01/2003~
-~19176~^~431~^0.^0^^~6~^~RPI~^^^^^^^^^^~03/01/2003~
-~19176~^~432~^0.^0^^~6~^~RPI~^^^^^^^^^^~03/01/2003~
-~19176~^~435~^0.^0^^~4~^~NC~^^^^^^^^^^~12/01/2006~
-~19176~^~601~^0.^0^^~6~^~RPI~^^^^^^^^^^~03/01/2003~
-~19177~^~208~^335.^0^^~4~^^^^^^^^^^^~08/01/1991~
-~19177~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2002~
-~19177~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2002~
-~19177~^~268~^1402.^0^^~4~^^^^^^^^^^^~12/01/2006~
-~19177~^~301~^55.^2^^~1~^^^^^^^^^^^~08/01/1991~
-~19177~^~304~^22.^2^^~1~^^^^^^^^^^^~08/01/1991~
-~19177~^~305~^39.^2^^~1~^^^^^^^^^^^~08/01/1991~
-~19177~^~306~^16.^2^^~1~^^^^^^^^^^^~08/01/1991~
-~19177~^~307~^196.^2^^~1~^^^^^^^^^^^~08/01/1991~
-~19177~^~318~^0.^2^^~1~^^^^^^^^^^^~08/01/1991~
-~19177~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2002~
-~19177~^~320~^0.^0^^~1~^~AS~^^^^^^^^^^~03/01/2002~
-~19177~^~321~^0.^0^^~4~^~NR~^^^^^^^^^^~11/01/2002~
-~19177~^~322~^0.^0^^~4~^~NR~^^^^^^^^^^~11/01/2002~
-~19177~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~
-~19177~^~334~^0.^0^^~4~^~NR~^^^^^^^^^^~11/01/2002~
-~19177~^~337~^0.^0^^~4~^~NR~^^^^^^^^^^~11/01/2002~
-~19177~^~338~^0.^0^^~4~^~NR~^^^^^^^^^^~11/01/2002~
-~19177~^~417~^30.^2^^~1~^^^^^^^^^^^~08/01/1991~
-~19177~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~
-~19177~^~432~^30.^2^^~1~^^^^^^^^^^^~08/01/1991~
-~19177~^~435~^30.^0^^~4~^~NC~^^^^^^^^^^~12/01/2006~
-~19177~^~601~^0.^1^^~4~^^^^^^^^^^^~08/01/1991~
-~19181~^~208~^394.^1^^~9~^~MC~^^^^^^^^^^~05/01/2002~
-~19181~^~268~^1647.^0^^~9~^~MC~^^^^^^^^^^~05/01/2002~
-~19181~^~301~^10.^1^^~9~^~MC~^^^^^^^^^^~05/01/2002~
-~19181~^~304~^1.^1^^~9~^~MC~^^^^^^^^^^~05/01/2002~
-~19181~^~305~^3.^1^^~9~^~MC~^^^^^^^^^^~05/01/2002~
-~19181~^~306~^108.^1^^~9~^~MC~^^^^^^^^^^~05/01/2002~
-~19181~^~307~^46.^1^^~9~^~MC~^^^^^^^^^^~05/01/2002~
-~19181~^~318~^7.^1^^~9~^~MC~^^^^^^^^^^~05/01/2002~
-~19181~^~417~^0.^1^^~9~^~MC~^^^^^^^^^^~05/01/2002~
-~19181~^~601~^1.^1^^~9~^~MC~^^^^^^^^^^~05/01/2002~
-~19182~^~208~^225.^0^^~4~^~RC~^^^^^^^^^^~05/01/2006~
-~19182~^~262~^7.^0^^~4~^~RC~^^^^^^^^^^~05/01/2006~
-~19182~^~263~^45.^0^^~4~^~RC~^^^^^^^^^^~05/01/2006~
-~19182~^~268~^941.^0^^~4~^~RC~^^^^^^^^^^~05/01/2006~
-~19182~^~301~^96.^0^^~4~^~RC~^^^^^^^^^^~05/01/2006~
-~19182~^~304~^20.^0^^~4~^~RC~^^^^^^^^^^~05/01/2006~
-~19182~^~305~^117.^0^^~4~^~RC~^^^^^^^^^^~05/01/2006~
-~19182~^~306~^143.^0^^~4~^~RC~^^^^^^^^^^~05/01/2006~
-~19182~^~307~^38.^0^^~4~^~RC~^^^^^^^^^^~05/01/2006~
-~19182~^~318~^509.^0^^~4~^~RC~^^^^^^^^^^~05/01/2006~
-~19182~^~319~^138.^0^^~4~^~RC~^^^^^^^^^^~05/01/2006~
-~19182~^~320~^140.^0^^~4~^~RC~^^^^^^^^^^~05/01/2006~
-~19182~^~321~^27.^0^^~4~^~RC~^^^^^^^^^^~05/01/2006~
-~19182~^~322~^3.^0^^~4~^~RC~^^^^^^^^^^~05/01/2006~
-~19182~^~334~^3.^0^^~4~^~RC~^^^^^^^^^^~05/01/2006~
-~19182~^~337~^0.^0^^~4~^~RC~^^^^^^^^^^~05/01/2006~
-~19182~^~338~^94.^0^^~4~^~RC~^^^^^^^^^^~05/01/2006~
-~19182~^~417~^15.^0^^~4~^~RC~^^^^^^^^^^~05/01/2006~
-~19182~^~431~^0.^0^^~4~^~RC~^^^^^^^^^^~05/01/2006~
-~19182~^~432~^15.^0^^~4~^~RC~^^^^^^^^^^~05/01/2006~
-~19182~^~435~^15.^0^^~4~^~NC~^^^^^^^^^^~05/01/2006~
-~19182~^~601~^140.^0^^~4~^~RC~^^^^^^^^^^~05/01/2006~
-~19183~^~208~^142.^0^^~4~^~NC~^^^^^^^^^^~10/01/2006~
-~19183~^~262~^2.^0^^~4~^~FLA~^^^^^^^^^^~10/01/2006~
-~19183~^~263~^70.^0^^~4~^~FLA~^^^^^^^^^^~10/01/2006~
-~19183~^~268~^593.^0^^~4~^~NC~^^^^^^^^^^~10/01/2006~
-~19183~^~301~^51.^4^10.^~1~^~A~^^^1^28.^80.^3^17.^85.^~2, 3~^~10/01/2006~
-~19183~^~304~^18.^4^0.^~1~^~A~^^^1^16.^19.^3^15.^19.^~2, 3~^~10/01/2006~
-~19183~^~305~^56.^4^8.^~1~^~A~^^^1^39.^80.^3^28.^83.^~2, 3~^~10/01/2006~
-~19183~^~306~^184.^4^14.^~1~^~A~^^^1^146.^208.^3^136.^231.^~2, 3~^~10/01/2006~
-~19183~^~307~^152.^4^3.^~1~^~A~^^^1^142.^160.^3^139.^163.^~2, 3~^~10/01/2006~
-~19183~^~318~^46.^0^^~4~^~FLA~^^^^^^^^^^~10/01/2006~
-~19183~^~319~^14.^0^^~4~^~FLA~^^^^^^^^^^~10/01/2006~
-~19183~^~320~^14.^0^^~4~^~FLA~^^^^^^^^^^~10/01/2006~
-~19183~^~321~^0.^4^0.^~1~^~A~^^^1^0.^0.^^^^~1, 2, 3~^~10/01/2006~
-~19183~^~322~^0.^4^0.^~1~^~A~^^^1^0.^0.^^^^~1, 2, 3~^~10/01/2006~
-~19183~^~324~^0.^0^^~4~^~FLA~^^^^^^^^^^~03/01/2009~
-~19183~^~334~^0.^4^0.^~1~^~A~^^^1^0.^0.^^^^~1, 2, 3~^~10/01/2006~
-~19183~^~337~^0.^4^0.^~1~^~A~^^^1^0.^0.^^^^~1, 2, 3~^~10/01/2006~
-~19183~^~338~^1.^0^^~4~^~FLA~^^^^^^^^^^~10/01/2006~
-~19183~^~417~^3.^0^^~4~^~FLA~^^^^^^^^^^~10/01/2006~
-~19183~^~431~^0.^0^^~4~^~NR~^^^^^^^^^^~10/01/2006~
-~19183~^~432~^3.^0^^~4~^~FLA~^^^^^^^^^^~10/01/2006~
-~19183~^~435~^3.^0^^~4~^~NC~^^^^^^^^^^~03/01/2009~
-~19183~^~601~^1.^0^^~4~^~FLA~^^^^^^^^^^~10/01/2006~
-~19184~^~208~^378.^0^^~4~^~NC~^^^^^^^^^^~12/01/2006~
-~19184~^~262~^7.^0^^~4~^~FLC~^^^^^^^^^^~03/01/2003~
-~19184~^~263~^245.^0^^~4~^~FLC~^^^^^^^^^^~03/01/2003~
-~19184~^~268~^1581.^0^^~4~^~NC~^^^^^^^^^^~12/01/2006~
-~19184~^~301~^12.^0^^~4~^~FLC~^^^^^^^^^^~03/01/2003~
-~19184~^~304~^45.^0^^~4~^~FLC~^^^^^^^^^^~03/01/2003~
-~19184~^~305~^72.^0^^~4~^~FLC~^^^^^^^^^^~12/01/2006~
-~19184~^~306~^236.^17^10.^~1~^^^^^^^^^^^~08/01/1991~
-~19184~^~307~^1771.^0^^~8~^~LC~^^^^^^^^^^~06/01/2013~
-~19184~^~318~^0.^0^^~4~^~FLC~^^^^^^^^^^~03/01/2003~
-~19184~^~319~^0.^0^^~4~^~FLC~^^^^^^^^^^~03/01/2003~
-~19184~^~320~^0.^0^^~4~^~NC~^^^^^^^^^^~03/01/2003~
-~19184~^~321~^0.^0^^~4~^~FLC~^^^^^^^^^^~03/01/2003~
-~19184~^~322~^0.^0^^~4~^~FLC~^^^^^^^^^^~03/01/2003~
-~19184~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~
-~19184~^~334~^0.^0^^~4~^~FLC~^^^^^^^^^^~03/01/2003~
-~19184~^~337~^0.^0^^~4~^~FLC~^^^^^^^^^^~03/01/2003~
-~19184~^~338~^4.^0^^~4~^~FLC~^^^^^^^^^^~03/01/2003~
-~19184~^~417~^3.^0^^~4~^~FLC~^^^^^^^^^^~03/01/2003~
-~19184~^~431~^0.^0^^~4~^~FLC~^^^^^^^^^^~03/01/2003~
-~19184~^~432~^3.^0^^~4~^~FLC~^^^^^^^^^^~03/01/2003~
-~19184~^~435~^3.^0^^~4~^~NC~^^^^^^^^^^~12/01/2006~
-~19184~^~601~^0.^0^^~4~^~FLC~^^^^^^^^^^~03/01/2003~
-~19185~^~208~^111.^0^^~4~^~NC~^^^^^^^^^^~08/01/1991~
-~19185~^~262~^2.^0^^~4~^~BFZN~^^^^^^^^^^~12/01/1997~
-~19185~^~263~^62.^0^^~4~^~BFZN~^^^^^^^^^^~12/01/1997~
-~19185~^~268~^464.^0^^~4~^^^^^^^^^^^~03/01/2006~
-~19185~^~301~^102.^0^^~1~^^^^^^^^^^^~08/01/1991~
-~19185~^~304~^18.^0^^~1~^^^^^^^^^^^~08/01/1991~
-~19185~^~305~^239.^0^^~1~^^^^^^^^^^^~08/01/1991~
-~19185~^~306~^166.^0^^~1~^^^^^^^^^^^~08/01/1991~
-~19185~^~307~^284.^0^^~1~^^^^^^^^^^^~08/01/1991~
-~19185~^~318~^120.^0^^~4~^~O~^^^^^^^^^^~05/01/2002~
-~19185~^~319~^24.^0^^~4~^~O~^^^^^^^^^^~03/01/2002~
-~19185~^~320~^26.^0^^~4~^~NC~^^^^^^^^^^~05/01/2002~
-~19185~^~321~^24.^0^^~4~^~O~^^^^^^^^^^~05/01/2002~
-~19185~^~417~^4.^0^^~1~^^^^^^^^^^^~08/01/1991~
-~19185~^~431~^0.^0^^~4~^~O~^^^^^^^^^^~07/01/2002~
-~19185~^~432~^4.^0^^~1~^^^^^^^^^^^~03/01/2002~
-~19185~^~435~^4.^0^^~4~^~NC~^^^^^^^^^^~03/01/2006~
-~19185~^~601~^11.^0^^~1~^^^^^^^^^^^~08/01/1991~
-~19185~^~636~^0.^0^^~1~^^^^^^^^^^^~08/01/1991~
-~19186~^~208~^161.^0^^~4~^~RC~^^^^^^^^^^~05/01/2006~
-~19186~^~262~^0.^0^^~4~^~RC~^^^^^^^^^^~05/01/2006~
-~19186~^~263~^0.^0^^~4~^~RC~^^^^^^^^^^~05/01/2006~
-~19186~^~268~^675.^0^^~4~^~RC~^^^^^^^^^^~05/01/2006~
-~19186~^~301~^35.^0^^~4~^~RC~^^^^^^^^^^~05/01/2006~
-~19186~^~304~^8.^0^^~4~^~RC~^^^^^^^^^^~05/01/2006~
-~19186~^~305~^28.^0^^~4~^~RC~^^^^^^^^^^~05/01/2006~
-~19186~^~306~^78.^0^^~4~^~RC~^^^^^^^^^^~05/01/2006~
-~19186~^~307~^351.^0^^~4~^~RC~^^^^^^^^^^~05/01/2006~
-~19186~^~318~^142.^0^^~4~^~RC~^^^^^^^^^^~05/01/2006~
-~19186~^~319~^26.^0^^~4~^~RC~^^^^^^^^^^~05/01/2006~
-~19186~^~320~^29.^0^^~4~^~RC~^^^^^^^^^^~05/01/2006~
-~19186~^~321~^30.^0^^~4~^~RC~^^^^^^^^^^~05/01/2006~
-~19186~^~322~^0.^0^^~4~^~RC~^^^^^^^^^^~05/01/2006~
-~19186~^~334~^8.^0^^~4~^~RC~^^^^^^^^^^~05/01/2006~
-~19186~^~337~^0.^0^^~4~^~RC~^^^^^^^^^^~05/01/2006~
-~19186~^~338~^19.^0^^~4~^~RC~^^^^^^^^^^~05/01/2006~
-~19186~^~417~^16.^0^^~4~^~RC~^^^^^^^^^^~05/01/2006~
-~19186~^~431~^12.^0^^~4~^~RC~^^^^^^^^^^~05/01/2006~
-~19186~^~432~^4.^0^^~4~^~RC~^^^^^^^^^^~05/01/2006~
-~19186~^~435~^24.^0^^~4~^~NC~^^^^^^^^^^~05/01/2006~
-~19186~^~601~^0.^0^^~4~^~RC~^^^^^^^^^^~05/01/2006~
-~19187~^~208~^348.^0^^~4~^~NC~^^^^^^^^^^~01/01/1996~
-~19187~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2002~
-~19187~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2002~
-~19187~^~268~^1456.^0^^~4~^^^^^^^^^^^~05/01/2006~
-~19187~^~301~^24.^1^^~4~^^^^^^^^^^^~08/01/1991~
-~19187~^~304~^0.^1^^~4~^^^^^^^^^^^~08/01/1991~
-~19187~^~305~^1.^1^^~4~^^^^^^^^^^^~08/01/1991~
-~19187~^~306~^153.^5^8.^~1~^^^^^^^^^^^~08/01/1991~
-~19187~^~307~^432.^5^13.^~1~^^^^^^^^^^^~08/01/1991~
-~19187~^~318~^0.^1^^~4~^^^^^^^^^^^~08/01/1991~
-~19187~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2002~
-~19187~^~320~^0.^0^^~1~^~AS~^^^^^^^^^^~03/01/2002~
-~19187~^~417~^0.^1^^~4~^^^^^^^^^^^~08/01/1991~
-~19187~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~
-~19187~^~432~^0.^1^^~4~^^^^^^^^^^^~08/01/1991~
-~19187~^~435~^0.^0^^~4~^~NC~^^^^^^^^^^~05/01/2006~
-~19187~^~601~^0.^1^^~4~^^^^^^^^^^^~08/01/1991~
-~19188~^~208~^362.^0^^~4~^~NC~^^^^^^^^^^~12/01/2006~
-~19188~^~262~^11.^0^^~4~^~FLA~^^^^^^^^^^~03/01/2003~
-~19188~^~263~^362.^0^^~4~^~FLA~^^^^^^^^^^~03/01/2003~
-~19188~^~268~^1514.^0^^~4~^~NC~^^^^^^^^^^~12/01/2006~
-~19188~^~301~^53.^4^2.^~1~^^^^^^^^^^^~08/01/1991~
-~19188~^~304~^67.^0^^~4~^~FLA~^^^^^^^^^^~03/01/2003~
-~19188~^~305~^88.^4^9.^~1~^^^^^^^^^^^~08/01/1991~
-~19188~^~306~^209.^20^13.^~1~^^^^^^^^^^^~08/01/1991~
-~19188~^~307~^479.^0^^~8~^~LC~^^^^^^^^^^~06/01/2013~
-~19188~^~318~^0.^0^^~4~^~FLA~^^^^^^^^^^~12/01/2006~
-~19188~^~319~^0.^0^^~4~^~FLA~^^^^^^^^^^~03/01/2003~
-~19188~^~320~^0.^0^^~4~^~NC~^^^^^^^^^^~12/01/2006~
-~19188~^~321~^0.^0^^~4~^~FLA~^^^^^^^^^^~03/01/2003~
-~19188~^~322~^0.^0^^~4~^~FLA~^^^^^^^^^^~03/01/2003~
-~19188~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~
-~19188~^~334~^0.^0^^~4~^~FLA~^^^^^^^^^^~03/01/2003~
-~19188~^~337~^0.^0^^~4~^~FLA~^^^^^^^^^^~03/01/2003~
-~19188~^~338~^5.^0^^~4~^~FLA~^^^^^^^^^^~12/01/2006~
-~19188~^~417~^4.^0^^~4~^~FLA~^^^^^^^^^^~03/01/2003~
-~19188~^~431~^0.^0^^~4~^~FLA~^^^^^^^^^^~03/01/2003~
-~19188~^~432~^4.^0^^~4~^~FLA~^^^^^^^^^^~03/01/2003~
-~19188~^~435~^4.^0^^~4~^~NC~^^^^^^^^^^~12/01/2006~
-~19188~^~601~^0.^0^^~4~^~FLA~^^^^^^^^^^~12/01/2006~
-~19189~^~208~^120.^0^^~4~^~NC~^^^^^^^^^^~06/01/2009~
-~19189~^~262~^2.^0^^~4~^~RP~^^^^^^^^^^~03/01/2003~
-~19189~^~263~^63.^0^^~4~^~RP~^^^^^^^^^^~03/01/2003~
-~19189~^~268~^500.^0^^~4~^~NC~^^^^^^^^^^~06/01/2009~
-~19189~^~301~^106.^0^^~4~^~RP~^^^^^^^^^^~02/01/2009~
-~19189~^~304~^20.^0^^~4~^~RP~^^^^^^^^^^~02/01/2009~
-~19189~^~305~^87.^0^^~4~^~RP~^^^^^^^^^^~02/01/2009~
-~19189~^~306~^150.^0^^~4~^~RP~^^^^^^^^^^~02/01/2009~
-~19189~^~307~^98.^0^^~4~^~RP~^^^^^^^^^^~02/01/2009~
-~19189~^~318~^139.^0^^~4~^~RP~^^^^^^^^^^~06/01/2009~
-~19189~^~319~^39.^0^^~4~^~RP~^^^^^^^^^^~02/01/2009~
-~19189~^~320~^39.^0^^~4~^~NC~^^^^^^^^^^~06/01/2009~
-~19189~^~321~^6.^0^^~4~^~RP~^^^^^^^^^^~02/01/2009~
-~19189~^~322~^0.^0^^~4~^~RP~^^^^^^^^^^~03/01/2003~
-~19189~^~324~^44.^0^^~4~^~RP~^^^^^^^^^^~02/01/2009~
-~19189~^~334~^0.^0^^~4~^~RP~^^^^^^^^^^~03/01/2003~
-~19189~^~337~^0.^0^^~4~^~RP~^^^^^^^^^^~03/01/2003~
-~19189~^~338~^1.^0^^~4~^~RP~^^^^^^^^^^~12/01/2006~
-~19189~^~417~^4.^0^^~4~^~RP~^^^^^^^^^^~03/01/2003~
-~19189~^~431~^0.^0^^~4~^~RP~^^^^^^^^^^~03/01/2003~
-~19189~^~432~^4.^0^^~4~^~RP~^^^^^^^^^^~03/01/2003~
-~19189~^~435~^4.^0^^~4~^~NC~^^^^^^^^^^~06/01/2009~
-~19189~^~601~^9.^0^^~4~^~RP~^^^^^^^^^^~12/01/2006~
-~19190~^~208~^111.^0^^~4~^~RP~^^^^^^^^^^~08/01/2010~
-~19190~^~262~^2.^0^^~4~^~RP~^^^^^^^^^^~03/01/2009~
-~19190~^~263~^63.^0^^~4~^~RP~^^^^^^^^^^~03/01/2009~
-~19190~^~268~^463.^0^^~4~^~RP~^^^^^^^^^^~08/01/2010~
-~19190~^~301~^112.^0^^~4~^~RP~^^^^^^^^^^~03/01/2009~
-~19190~^~304~^21.^0^^~4~^~RP~^^^^^^^^^^~03/01/2009~
-~19190~^~305~^94.^0^^~4~^~RP~^^^^^^^^^^~03/01/2009~
-~19190~^~306~^156.^0^^~4~^~RP~^^^^^^^^^^~03/01/2009~
-~19190~^~307~^102.^0^^~4~^~RP~^^^^^^^^^^~03/01/2009~
-~19190~^~318~^163.^0^^~4~^~NC~^^^^^^^^^^~08/01/2010~
-~19190~^~319~^47.^0^^~4~^~RP~^^^^^^^^^^~03/01/2009~
-~19190~^~320~^47.^0^^~4~^~NC~^^^^^^^^^^~08/01/2010~
-~19190~^~321~^3.^0^^~4~^~RP~^^^^^^^^^^~03/01/2009~
-~19190~^~322~^0.^0^^~4~^~RP~^^^^^^^^^^~03/01/2009~
-~19190~^~324~^42.^0^^~4~^~RP~^^^^^^^^^^~06/01/2009~
-~19190~^~334~^0.^0^^~4~^~RP~^^^^^^^^^^~03/01/2009~
-~19190~^~337~^0.^0^^~4~^~RP~^^^^^^^^^^~03/01/2009~
-~19190~^~338~^1.^0^^~4~^~RP~^^^^^^^^^^~03/01/2009~
-~19190~^~417~^4.^0^^~4~^~RP~^^^^^^^^^^~03/01/2009~
-~19190~^~431~^0.^0^^~4~^~RP~^^^^^^^^^^~03/01/2002~
-~19190~^~432~^4.^0^^~4~^~RP~^^^^^^^^^^~03/01/2009~
-~19190~^~435~^4.^0^^~4~^~NC~^^^^^^^^^^~08/01/2010~
-~19190~^~601~^7.^0^^~4~^~RP~^^^^^^^^^^~03/01/2009~
-~19190~^~638~^0.^0^^~4~^~RP~^^^^^^^^^^~03/01/2009~
-~19190~^~639~^0.^0^^~4~^~RP~^^^^^^^^^^~03/01/2009~
-~19190~^~641~^0.^0^^~4~^~RP~^^^^^^^^^^~03/01/2009~
-~19191~^~208~^107.^0^^~4~^~NC~^^^^^^^^^^~08/01/1991~
-~19191~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2002~
-~19191~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2002~
-~19191~^~268~^448.^0^^~4~^^^^^^^^^^^
-~19191~^~301~^102.^0^^~1~^^^^^^^^^^^~08/01/1991~
-~19191~^~304~^14.^0^^~1~^^^^^^^^^^^~08/01/1991~
-~19191~^~305~^201.^0^^~1~^^^^^^^^^^^~08/01/1991~
-~19191~^~306~^132.^0^^~1~^^^^^^^^^^^~08/01/1991~
-~19191~^~307~^246.^0^^~1~^^^^^^^^^^^~08/01/1991~
-~19191~^~318~^150.^0^^~4~^~O~^^^^^^^^^^~05/01/2002~
-~19191~^~319~^45.^0^^~4~^~O~^^^^^^^^^^~03/01/2002~
-~19191~^~320~^45.^0^^~4~^~NC~^^^^^^^^^^~05/01/2002~
-~19191~^~321~^0.^0^^~4~^~O~^^^^^^^^^^~05/01/2002~
-~19191~^~417~^4.^0^^~1~^^^^^^^^^^^~08/01/1991~
-~19191~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~
-~19191~^~432~^4.^0^^~1~^^^^^^^^^^^~08/01/1991~
-~19191~^~435~^4.^0^^~4~^~NC~^^^^^^^^^^~05/01/2002~
-~19191~^~601~^6.^0^^~1~^^^^^^^^^^^~08/01/1991~
-~19193~^~208~^108.^0^^~4~^~NC~^^^^^^^^^^~05/01/2013~
-~19193~^~262~^0.^0^^~4~^~FLC~^^^^^^^^^^~11/01/2006~
-~19193~^~263~^0.^0^^~4~^~FLC~^^^^^^^^^^~11/01/2006~
-~19193~^~268~^451.^0^^~4~^~NC~^^^^^^^^^^~05/01/2013~
-~19193~^~301~^95.^6^0.^~1~^~A~^^^1^93.^99.^5^92.^97.^~2, 3~^~05/01/2013~
-~19193~^~304~^8.^1^^~4~^^^^^^^^^^^~08/01/1991~
-~19193~^~305~^82.^6^0.^~1~^~A~^^^1^80.^84.^5^80.^83.^~2, 3~^~05/01/2013~
-~19193~^~306~^125.^6^0.^~1~^~A~^^^1^124.^127.^5^124.^126.^~2, 3~^~05/01/2013~
-~19193~^~307~^97.^6^0.^~1~^~A~^^^1^94.^100.^5^94.^99.^~2, 3~^~05/01/2013~
-~19193~^~318~^69.^0^^~4~^~NC~^^^^^^^^^^~05/01/2013~
-~19193~^~319~^19.^1^^~1~^~A~^^^^^^^^^^~05/01/2013~
-~19193~^~320~^19.^0^^~4~^~NC~^^^^^^^^^^~05/01/2013~
-~19193~^~321~^4.^0^^~4~^~FLC~^^^^^^^^^^~11/01/2006~
-~19193~^~322~^0.^0^^~4~^~FLC~^^^^^^^^^^~11/01/2006~
-~19193~^~324~^0.^0^^~4~^~NR~^^^^^^^^^^~06/01/2014~
-~19193~^~334~^0.^0^^~4~^~FLC~^^^^^^^^^^~11/01/2006~
-~19193~^~337~^0.^0^^~4~^~FLC~^^^^^^^^^^~11/01/2006~
-~19193~^~338~^9.^0^^~4~^~FLC~^^^^^^^^^^~11/01/2006~
-~19193~^~417~^4.^0^^~4~^~FLC~^^^^^^^^^^~11/01/2006~
-~19193~^~431~^0.^0^^~4~^~FLC~^^^^^^^^^^~11/01/2006~
-~19193~^~432~^4.^0^^~4~^~FLC~^^^^^^^^^^~11/01/2006~
-~19193~^~435~^4.^0^^~4~^~NC~^^^^^^^^^^~07/01/2007~
-~19193~^~601~^12.^3^0.^~1~^~A~^^^1^11.^13.^2^10.^14.^~2, 3~^~05/01/2013~
-~19194~^~208~^376.^0^^~4~^^^^^^^^^^^~08/01/1991~
-~19194~^~268~^1573.^0^^~4~^^^^^^^^^^^~05/01/2006~
-~19194~^~301~^14.^1^^~4~^^^^^^^^^^^~08/01/1991~
-~19194~^~304~^8.^1^^~4~^^^^^^^^^^^~08/01/1991~
-~19194~^~305~^39.^1^^~4~^^^^^^^^^^^~08/01/1991~
-~19194~^~306~^5.^1^^~4~^^^^^^^^^^^~08/01/1991~
-~19194~^~307~^366.^1^^~4~^^^^^^^^^^^~08/01/1991~
-~19194~^~318~^0.^1^^~4~^^^^^^^^^^^~08/01/1991~
-~19194~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2002~
-~19194~^~320~^0.^0^^~1~^~AS~^^^^^^^^^^~04/01/2002~
-~19194~^~417~^1.^1^^~4~^^^^^^^^^^^~08/01/1991~
-~19194~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~
-~19194~^~432~^1.^1^^~4~^^^^^^^^^^^~08/01/1991~
-~19194~^~435~^1.^0^^~4~^~NC~^^^^^^^^^^~05/01/2006~
-~19194~^~601~^0.^1^^~4~^^^^^^^^^^^~08/01/1991~
-~19195~^~208~^121.^0^^~4~^~RP~^^^^^^^^^^~03/01/2002~
-~19195~^~262~^0.^0^^~4~^~RP~^^^^^^^^^^~03/01/2002~
-~19195~^~263~^0.^0^^~4~^~RP~^^^^^^^^^^~03/01/2002~
-~19195~^~268~^507.^0^^~4~^~RP~^^^^^^^^^^~05/01/2002~
-~19195~^~301~^103.^0^^~4~^~RP~^^^^^^^^^^~03/01/2002~
-~19195~^~304~^13.^0^^~4~^~RP~^^^^^^^^^^~03/01/2002~
-~19195~^~305~^85.^0^^~4~^~RP~^^^^^^^^^^~03/01/2002~
-~19195~^~306~^128.^0^^~4~^~RP~^^^^^^^^^^~03/01/2002~
-~19195~^~307~^108.^0^^~4~^~RP~^^^^^^^^^^~03/01/2002~
-~19195~^~318~^115.^0^^~4~^~O~^^^^^^^^^^~05/01/2002~
-~19195~^~319~^28.^0^^~4~^~RP~^^^^^^^^^^~03/01/2002~
-~19195~^~320~^29.^0^^~4~^~NC~^^^^^^^^^^~05/01/2002~
-~19195~^~321~^15.^0^^~4~^~O~^^^^^^^^^^~05/01/2002~
-~19195~^~324~^34.^0^^~4~^~RP~^^^^^^^^^^~03/01/2002~
-~19195~^~417~^4.^0^^~4~^~RP~^^^^^^^^^^~03/01/2002~
-~19195~^~431~^0.^0^^~4~^~RP~^^^^^^^^^^~03/01/2002~
-~19195~^~432~^4.^0^^~4~^~RP~^^^^^^^^^^~03/01/2002~
-~19195~^~435~^4.^0^^~4~^~NC~^^^^^^^^^^~05/01/2002~
-~19195~^~601~^11.^0^^~4~^~RP~^^^^^^^^^^~03/01/2002~
-~19195~^~636~^0.^0^^~4~^~RP~^^^^^^^^^^~03/01/2002~
-~19198~^~208~^369.^0^^~4~^^^^^^^^^^^~08/01/1991~
-~19198~^~268~^1544.^0^^~4~^^^^^^^^^^^~05/01/2006~
-~19198~^~301~^4.^0^^~4~^^^^^^^^^^^~08/01/1991~
-~19198~^~304~^2.^0^^~4~^^^^^^^^^^^~08/01/1991~
-~19198~^~305~^4.^0^^~4~^^^^^^^^^^^~08/01/1991~
-~19198~^~306~^5.^0^^~4~^^^^^^^^^^^~08/01/1991~
-~19198~^~307~^477.^0^^~4~^^^^^^^^^^^~08/01/1991~
-~19198~^~318~^0.^0^^~4~^^^^^^^^^^^~08/01/1991~
-~19198~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2002~
-~19198~^~320~^0.^0^^~1~^~AS~^^^^^^^^^^~03/01/2002~
-~19198~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2009~
-~19198~^~417~^0.^0^^~4~^^^^^^^^^^^~08/01/1991~
-~19198~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~
-~19198~^~432~^0.^0^^~4~^^^^^^^^^^^~08/01/1991~
-~19198~^~435~^0.^0^^~4~^~NC~^^^^^^^^^^~05/01/2006~
-~19198~^~601~^0.^0^^~4~^^^^^^^^^^^~08/01/1991~
-~19199~^~208~^115.^0^^~4~^~RP~^^^^^^^^^^~03/01/2002~
-~19199~^~262~^0.^0^^~4~^~RP~^^^^^^^^^^~03/01/2002~
-~19199~^~263~^0.^0^^~4~^~RP~^^^^^^^^^^~03/01/2002~
-~19199~^~268~^481.^0^^~4~^~RP~^^^^^^^^^^~05/01/2002~
-~19199~^~301~^103.^0^^~4~^~RP~^^^^^^^^^^~03/01/2002~
-~19199~^~304~^12.^0^^~4~^~RP~^^^^^^^^^^~03/01/2002~
-~19199~^~305~^81.^0^^~4~^~RP~^^^^^^^^^^~03/01/2002~
-~19199~^~306~^131.^0^^~4~^~RP~^^^^^^^^^^~03/01/2002~
-~19199~^~307~^120.^0^^~4~^~RP~^^^^^^^^^^~03/01/2002~
-~19199~^~318~^108.^0^^~4~^~RP~^^^^^^^^^^~03/01/2002~
-~19199~^~319~^24.^0^^~4~^~RP~^^^^^^^^^^~03/01/2002~
-~19199~^~320~^25.^0^^~4~^~NC~^^^^^^^^^^~05/01/2002~
-~19199~^~321~^15.^0^^~4~^~O~^^^^^^^^^^~05/01/2002~
-~19199~^~324~^34.^0^^~4~^~RP~^^^^^^^^^^~03/01/2002~
-~19199~^~417~^4.^0^^~4~^~RP~^^^^^^^^^^~03/01/2002~
-~19199~^~431~^0.^0^^~4~^~RP~^^^^^^^^^^~03/01/2002~
-~19199~^~432~^4.^0^^~4~^~RP~^^^^^^^^^^~03/01/2002~
-~19199~^~435~^4.^0^^~4~^~NC~^^^^^^^^^^~05/01/2002~
-~19199~^~601~^12.^0^^~4~^~RP~^^^^^^^^^^~03/01/2002~
-~19199~^~636~^0.^0^^~4~^~RP~^^^^^^^^^^~03/01/2002~
-~19201~^~208~^130.^0^^~4~^~NC~^^^^^^^^^^~12/01/2006~
-~19201~^~262~^0.^0^^~4~^~FLA~^^^^^^^^^^~03/01/2003~
-~19201~^~263~^0.^0^^~4~^~FLA~^^^^^^^^^^~03/01/2003~
-~19201~^~268~^545.^0^^~4~^~NC~^^^^^^^^^^~12/01/2006~
-~19201~^~301~^49.^4^0.^~1~^~A~^^^1^45.^74.^1^43.^53.^~2, 3~^~10/01/2006~
-~19201~^~304~^4.^4^0.^~1~^~A~^^^1^4.^6.^1^3.^5.^~2, 3~^~10/01/2006~
-~19201~^~305~^41.^4^2.^~1~^~A~^^^1^36.^58.^1^11.^70.^~2, 3~^~10/01/2006~
-~19201~^~306~^65.^4^1.^~1~^~A~^^^1^56.^99.^1^49.^79.^~2, 3~^~10/01/2006~
-~19201~^~307~^172.^0^^~8~^~LC~^^^^^^^^^^~07/01/2017~
-~19201~^~318~^5.^0^^~4~^~NC~^^^^^^^^^^~07/01/2017~
-~19201~^~319~^2.^0^^~4~^~FLA~^^^^^^^^^^~10/01/2006~
-~19201~^~320~^2.^0^^~4~^~NC~^^^^^^^^^^~10/01/2006~
-~19201~^~321~^0.^4^0.^~1~^~A~^^^1^0.^0.^^^^~1, 2, 3~^~12/01/2006~
-~19201~^~322~^0.^4^0.^~1~^~A~^^^1^0.^0.^^^^~1, 2, 3~^~10/01/2006~
-~19201~^~324~^0.^0^^~4~^~FLA~^^^^^^^^^^~05/01/2009~
-~19201~^~334~^0.^4^0.^~1~^~A~^^^1^0.^0.^^^^~1, 2, 3~^~10/01/2006~
-~19201~^~337~^0.^4^0.^~1~^~A~^^^1^0.^0.^^^^~1, 2, 3~^~10/01/2006~
-~19201~^~338~^0.^0^^~4~^~FLA~^^^^^^^^^^~03/01/2003~
-~19201~^~417~^2.^0^^~4~^~FLA~^^^^^^^^^^~10/01/2006~
-~19201~^~431~^0.^0^^~4~^~FLA~^^^^^^^^^^~03/01/2003~
-~19201~^~432~^2.^0^^~4~^~FLA~^^^^^^^^^^~10/01/2006~
-~19201~^~435~^2.^0^^~4~^~NC~^^^^^^^^^^~05/01/2009~
-~19201~^~601~^1.^0^^~4~^~FLA~^^^^^^^^^^~10/01/2006~
-~19202~^~208~^377.^0^^~4~^~NC~^^^^^^^^^^~04/01/2005~
-~19202~^~262~^0.^0^^~4~^~FLA~^^^^^^^^^^~03/01/2003~
-~19202~^~263~^0.^0^^~4~^~FLA~^^^^^^^^^^~03/01/2003~
-~19202~^~268~^1577.^0^^~4~^~NC~^^^^^^^^^^~04/01/2005~
-~19202~^~301~^12.^3^1.^~1~^^^^^^^^^^^~08/01/1991~
-~19202~^~304~^1.^0^^~4~^~FLA~^^^^^^^^^^~03/01/2003~
-~19202~^~305~^705.^3^9.^~1~^^^^^^^^^^^~08/01/1991~
-~19202~^~306~^12.^16^1.^~1~^^^^^^^^^^^~08/01/1991~
-~19202~^~307~^1400.^0^^~8~^~LC~^^^^^^^^^^~07/01/2017~
-~19202~^~318~^2.^0^^~4~^~NC~^^^^^^^^^^~03/01/2003~
-~19202~^~319~^1.^0^^~4~^~FLA~^^^^^^^^^^~03/01/2003~
-~19202~^~320~^1.^0^^~4~^~NC~^^^^^^^^^^~03/01/2003~
-~19202~^~321~^0.^0^^~4~^~FLA~^^^^^^^^^^~03/01/2003~
-~19202~^~322~^0.^0^^~4~^~FLA~^^^^^^^^^^~03/01/2003~
-~19202~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~
-~19202~^~334~^0.^0^^~4~^~FLA~^^^^^^^^^^~03/01/2003~
-~19202~^~337~^0.^0^^~4~^~FLA~^^^^^^^^^^~03/01/2003~
-~19202~^~338~^0.^0^^~4~^~FLA~^^^^^^^^^^~03/01/2003~
-~19202~^~417~^0.^0^^~4~^~FLA~^^^^^^^^^^~03/01/2003~
-~19202~^~431~^0.^0^^~4~^~FLA~^^^^^^^^^^~03/01/2003~
-~19202~^~432~^0.^0^^~4~^~FLA~^^^^^^^^^^~03/01/2003~
-~19202~^~435~^0.^0^^~4~^~NC~^^^^^^^^^^~12/01/2006~
-~19202~^~601~^0.^0^^~4~^~FLA~^^^^^^^^^^~03/01/2003~
-~19203~^~208~^114.^0^^~4~^~NC~^^^^^^^^^^~08/01/1991~
-~19203~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2002~
-~19203~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2002~
-~19203~^~268~^477.^0^^~4~^^^^^^^^^^^~05/01/2005~
-~19203~^~301~^101.^0^^~1~^^^^^^^^^^^~08/01/1991~
-~19203~^~304~^12.^0^^~1~^^^^^^^^^^^~08/01/1991~
-~19203~^~305~^197.^0^^~1~^^^^^^^^^^^~08/01/1991~
-~19203~^~306~^128.^0^^~1~^^^^^^^^^^^~08/01/1991~
-~19203~^~307~^286.^0^^~1~^^^^^^^^^^^~08/01/1991~
-~19203~^~318~^105.^0^^~1~^^^^^^^^^^^~08/01/1991~
-~19203~^~319~^23.^0^^~4~^~O~^^^^^^^^^^~03/01/2002~
-~19203~^~320~^25.^0^^~4~^~NC~^^^^^^^^^^~05/01/2002~
-~19203~^~321~^18.^0^^~4~^~O~^^^^^^^^^^~05/01/2002~
-~19203~^~417~^4.^0^^~1~^^^^^^^^^^^~08/01/1991~
-~19203~^~431~^0.^0^^~4~^~O~^^^^^^^^^^~07/01/2002~
-~19203~^~432~^4.^0^^~1~^^^^^^^^^^^~03/01/2002~
-~19203~^~435~^4.^0^^~4~^~NC~^^^^^^^^^^~03/01/2006~
-~19203~^~601~^11.^0^^~1~^^^^^^^^^^^~08/01/1991~
-~19203~^~636~^0.^0^^~1~^^^^^^^^^^^~08/01/1991~
-~19204~^~208~^107.^0^^~6~^~RPI~^^^^^^^^^^~03/01/2002~
-~19204~^~262~^0.^0^^~6~^~RPI~^^^^^^^^^^~03/01/2002~
-~19204~^~263~^0.^0^^~6~^~RPI~^^^^^^^^^^~03/01/2002~
-~19204~^~268~^449.^0^^~6~^~RPI~^^^^^^^^^^~04/01/2003~
-~19204~^~301~^101.^0^^~6~^~RPI~^^^^^^^^^^~03/01/2002~
-~19204~^~304~^11.^0^^~6~^~RPI~^^^^^^^^^^~03/01/2002~
-~19204~^~305~^207.^0^^~1~^~RPA~^^^^^^^^^^~03/01/2002~
-~19204~^~306~^130.^0^^~1~^~RPA~^^^^^^^^^^~03/01/2002~
-~19204~^~307~^268.^0^^~1~^~RPA~^^^^^^^^^^~03/01/2002~
-~19204~^~318~^170.^0^^~6~^~RPI~^^^^^^^^^^~03/01/2002~
-~19204~^~319~^45.^0^^~1~^~RPA~^^^^^^^^^^~03/01/2002~
-~19204~^~320~^46.^0^^~4~^~NC~^^^^^^^^^^~05/01/2002~
-~19204~^~321~^10.^0^^~4~^~O~^^^^^^^^^^~05/01/2002~
-~19204~^~324~^33.^0^^~6~^~RPI~^^^^^^^^^^~03/01/2002~
-~19204~^~417~^4.^0^^~6~^~RPI~^^^^^^^^^^~03/01/2002~
-~19204~^~431~^0.^0^^~6~^~RPI~^^^^^^^^^^~03/01/2002~
-~19204~^~432~^4.^0^^~6~^~RPI~^^^^^^^^^^~03/01/2002~
-~19204~^~435~^4.^0^^~4~^~NC~^^^^^^^^^^~04/01/2003~
-~19204~^~601~^6.^0^^~6~^~RPI~^^^^^^^^^^~03/01/2002~
-~19205~^~208~^112.^0^^~4~^~RP~^^^^^^^^^^~08/01/2010~
-~19205~^~262~^0.^0^^~4~^~RP~^^^^^^^^^^~03/01/2002~
-~19205~^~263~^0.^0^^~4~^~RP~^^^^^^^^^^~03/01/2002~
-~19205~^~268~^470.^0^^~4~^~RP~^^^^^^^^^^~08/01/2010~
-~19205~^~301~^146.^0^^~4~^~RP~^^^^^^^^^^~03/01/2009~
-~19205~^~304~^17.^0^^~4~^~RP~^^^^^^^^^^~03/01/2009~
-~19205~^~305~^137.^0^^~4~^~RP~^^^^^^^^^^~03/01/2009~
-~19205~^~306~^214.^0^^~4~^~RP~^^^^^^^^^^~03/01/2009~
-~19205~^~307~^87.^0^^~4~^~RP~^^^^^^^^^^~03/01/2009~
-~19205~^~318~^208.^0^^~4~^~NC~^^^^^^^^^^~08/01/2010~
-~19205~^~319~^60.^0^^~4~^~RP~^^^^^^^^^^~03/01/2009~
-~19205~^~320~^61.^0^^~4~^~NC~^^^^^^^^^^~08/01/2010~
-~19205~^~321~^4.^0^^~4~^~RP~^^^^^^^^^^~03/01/2009~
-~19205~^~322~^0.^0^^~4~^~RP~^^^^^^^^^^~03/01/2009~
-~19205~^~324~^44.^0^^~4~^~RP~^^^^^^^^^^~06/01/2009~
-~19205~^~334~^0.^0^^~4~^~RP~^^^^^^^^^^~03/01/2009~
-~19205~^~337~^0.^0^^~4~^~RP~^^^^^^^^^^~03/01/2009~
-~19205~^~338~^0.^0^^~4~^~RP~^^^^^^^^^^~03/01/2009~
-~19205~^~417~^8.^0^^~4~^~RP~^^^^^^^^^^~03/01/2009~
-~19205~^~431~^0.^0^^~4~^~RP~^^^^^^^^^^~03/01/2002~
-~19205~^~432~^8.^0^^~4~^~RP~^^^^^^^^^^~03/01/2009~
-~19205~^~435~^8.^0^^~4~^~NC~^^^^^^^^^^~08/01/2010~
-~19205~^~601~^49.^0^^~4~^~RP~^^^^^^^^^^~03/01/2009~
-~19205~^~638~^0.^0^^~4~^~RP~^^^^^^^^^^~03/01/2009~
-~19205~^~639~^0.^0^^~4~^~RP~^^^^^^^^^^~03/01/2009~
-~19205~^~641~^0.^0^^~4~^~RP~^^^^^^^^^^~03/01/2009~
-~19206~^~208~^379.^0^^~4~^~NC~^^^^^^^^^^~03/01/2003~
-~19206~^~262~^0.^0^^~4~^~FLA~^^^^^^^^^^~03/01/2003~
-~19206~^~263~^0.^0^^~4~^~FLA~^^^^^^^^^^~03/01/2003~
-~19206~^~268~^1585.^0^^~4~^~NC~^^^^^^^^^^~03/01/2003~
-~19206~^~301~^5.^0^^~4~^~FLA~^^^^^^^^^^~03/01/2003~
-~19206~^~304~^0.^0^^~4~^~FLA~^^^^^^^^^^~03/01/2003~
-~19206~^~305~^2.^0^^~4~^~FLA~^^^^^^^^^^~03/01/2003~
-~19206~^~306~^20.^17^1.^~1~^^^^^^^^^^^~08/01/1991~
-~19206~^~307~^613.^0^^~8~^~LC~^^^^^^^^^^~07/01/2017~
-~19206~^~318~^0.^0^^~4~^~FLA~^^^^^^^^^^~11/01/1997~
-~19206~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2002~
-~19206~^~320~^0.^0^^~4~^~NC~^^^^^^^^^^~07/01/2010~
-~19206~^~321~^0.^0^^~4~^~FLA~^^^^^^^^^^~03/01/2003~
-~19206~^~322~^0.^0^^~4~^~FLA~^^^^^^^^^^~03/01/2003~
-~19206~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~
-~19206~^~334~^0.^0^^~4~^~FLA~^^^^^^^^^^~03/01/2003~
-~19206~^~337~^0.^0^^~4~^~FLA~^^^^^^^^^^~03/01/2003~
-~19206~^~338~^0.^0^^~4~^~FLA~^^^^^^^^^^~03/01/2003~
-~19206~^~417~^0.^0^^~4~^~FLA~^^^^^^^^^^~11/01/1997~
-~19206~^~431~^0.^0^^~4~^~FLA~^^^^^^^^^^~03/01/2003~
-~19206~^~432~^0.^0^^~4~^~FLA~^^^^^^^^^^~11/01/1997~
-~19206~^~435~^0.^0^^~4~^~NC~^^^^^^^^^^~12/01/2006~
-~19206~^~601~^0.^0^^~4~^~FLA~^^^^^^^^^^~11/01/1997~
-~19207~^~208~^113.^0^^~4~^~RP~^^^^^^^^^^~02/01/2009~
-~19207~^~262~^0.^0^^~4~^~RP~^^^^^^^^^^~03/01/2003~
-~19207~^~263~^0.^0^^~4~^~RP~^^^^^^^^^^~03/01/2003~
-~19207~^~268~^473.^0^^~4~^~RP~^^^^^^^^^^~02/01/2009~
-~19207~^~301~^99.^0^^~4~^~RP~^^^^^^^^^^~02/01/2009~
-~19207~^~304~^9.^0^^~4~^~RP~^^^^^^^^^^~02/01/2009~
-~19207~^~305~^74.^0^^~4~^~RP~^^^^^^^^^^~02/01/2009~
-~19207~^~306~^119.^0^^~4~^~RP~^^^^^^^^^^~02/01/2009~
-~19207~^~307~^156.^0^^~4~^~RP~^^^^^^^^^^~02/01/2009~
-~19207~^~318~^141.^0^^~4~^~NC~^^^^^^^^^^~02/01/2009~
-~19207~^~319~^40.^0^^~4~^~RP~^^^^^^^^^^~02/01/2009~
-~19207~^~320~^40.^0^^~4~^~NC~^^^^^^^^^^~02/01/2009~
-~19207~^~321~^6.^0^^~4~^~RP~^^^^^^^^^^~02/01/2009~
-~19207~^~322~^0.^0^^~4~^~RP~^^^^^^^^^^~03/01/2003~
-~19207~^~324~^45.^0^^~4~^~RP~^^^^^^^^^^~02/01/2009~
-~19207~^~334~^0.^0^^~4~^~RP~^^^^^^^^^^~03/01/2003~
-~19207~^~337~^0.^0^^~4~^~RP~^^^^^^^^^^~03/01/2003~
-~19207~^~338~^0.^0^^~4~^~RP~^^^^^^^^^^~03/01/2003~
-~19207~^~417~^4.^0^^~4~^~RP~^^^^^^^^^^~03/01/2003~
-~19207~^~431~^0.^0^^~4~^~RP~^^^^^^^^^^~03/01/2003~
-~19207~^~432~^4.^0^^~4~^~RP~^^^^^^^^^^~03/01/2003~
-~19207~^~435~^4.^0^^~4~^~NC~^^^^^^^^^^~02/01/2009~
-~19207~^~601~^9.^0^^~4~^~RP~^^^^^^^^^^~03/01/2003~
-~19208~^~208~^111.^0^^~4~^~RP~^^^^^^^^^^~03/01/2002~
-~19208~^~262~^0.^0^^~4~^~RP~^^^^^^^^^^~03/01/2002~
-~19208~^~263~^0.^0^^~4~^~RP~^^^^^^^^^^~03/01/2002~
-~19208~^~268~^465.^0^^~4~^~RP~^^^^^^^^^^~05/01/2002~
-~19208~^~301~^105.^0^^~4~^~RP~^^^^^^^^^^~03/01/2002~
-~19208~^~304~^13.^0^^~4~^~RP~^^^^^^^^^^~03/01/2002~
-~19208~^~305~^87.^0^^~4~^~RP~^^^^^^^^^^~03/01/2002~
-~19208~^~306~^130.^0^^~4~^~RP~^^^^^^^^^^~03/01/2002~
-~19208~^~307~^109.^0^^~4~^~RP~^^^^^^^^^^~03/01/2002~
-~19208~^~318~^172.^0^^~4~^~RP~^^^^^^^^^^~03/01/2002~
-~19208~^~319~^45.^0^^~4~^~RP~^^^^^^^^^^~03/01/2002~
-~19208~^~320~^46.^0^^~4~^~NC~^^^^^^^^^^~05/01/2002~
-~19208~^~321~^10.^0^^~4~^~O~^^^^^^^^^^~05/01/2002~
-~19208~^~324~^34.^0^^~4~^~RP~^^^^^^^^^^~03/01/2002~
-~19208~^~417~^4.^0^^~4~^~RP~^^^^^^^^^^~03/01/2002~
-~19208~^~431~^0.^0^^~4~^~RP~^^^^^^^^^^~03/01/2002~
-~19208~^~432~^4.^0^^~4~^~RP~^^^^^^^^^^~03/01/2002~
-~19208~^~435~^4.^0^^~4~^~NC~^^^^^^^^^^~05/01/2002~
-~19208~^~601~^6.^0^^~4~^~RP~^^^^^^^^^^~03/01/2002~
-~19209~^~208~^105.^0^^~4~^~RP~^^^^^^^^^^~03/01/2002~
-~19209~^~262~^0.^0^^~4~^~RP~^^^^^^^^^^~03/01/2002~
-~19209~^~263~^0.^0^^~4~^~RP~^^^^^^^^^^~03/01/2002~
-~19209~^~268~^438.^0^^~4~^~RP~^^^^^^^^^^~05/01/2002~
-~19209~^~301~^105.^0^^~4~^~RP~^^^^^^^^^^~03/01/2002~
-~19209~^~304~^12.^0^^~4~^~RP~^^^^^^^^^^~03/01/2002~
-~19209~^~305~^82.^0^^~4~^~RP~^^^^^^^^^^~03/01/2002~
-~19209~^~306~^133.^0^^~4~^~RP~^^^^^^^^^^~03/01/2002~
-~19209~^~307~^121.^0^^~4~^~RP~^^^^^^^^^^~03/01/2002~
-~19209~^~318~^160.^0^^~4~^~O~^^^^^^^^^^~05/01/2002~
-~19209~^~319~^46.^0^^~4~^~RP~^^^^^^^^^^~03/01/2002~
-~19209~^~320~^47.^0^^~4~^~NC~^^^^^^^^^^~05/01/2002~
-~19209~^~321~^10.^0^^~4~^~O~^^^^^^^^^^~05/01/2002~
-~19209~^~324~^34.^0^^~4~^~RP~^^^^^^^^^^~03/01/2002~
-~19209~^~417~^4.^0^^~4~^~RP~^^^^^^^^^^~03/01/2002~
-~19209~^~431~^0.^0^^~4~^~RP~^^^^^^^^^^~03/01/2002~
-~19209~^~432~^4.^0^^~4~^~RP~^^^^^^^^^^~03/01/2002~
-~19209~^~435~^4.^0^^~4~^~NC~^^^^^^^^^^~05/01/2002~
-~19209~^~601~^6.^0^^~4~^~RP~^^^^^^^^^^~03/01/2002~
-~19212~^~208~^101.^0^^~4~^~RP~^^^^^^^^^^~03/01/2002~
-~19212~^~262~^0.^0^^~4~^~RP~^^^^^^^^^^~03/01/2002~
-~19212~^~263~^0.^0^^~4~^~RP~^^^^^^^^^^~03/01/2002~
-~19212~^~268~^425.^0^^~4~^~RP~^^^^^^^^^^~05/01/2002~
-~19212~^~301~^108.^0^^~4~^~RP~^^^^^^^^^^~03/01/2002~
-~19212~^~304~^12.^0^^~4~^~RP~^^^^^^^^^^~03/01/2002~
-~19212~^~305~^83.^0^^~4~^~RP~^^^^^^^^^^~03/01/2002~
-~19212~^~306~^137.^0^^~4~^~RP~^^^^^^^^^^~03/01/2002~
-~19212~^~307~^159.^0^^~4~^~RP~^^^^^^^^^^~03/01/2002~
-~19212~^~318~^160.^0^^~4~^~O~^^^^^^^^^^~05/01/2002~
-~19212~^~319~^47.^0^^~4~^~RP~^^^^^^^^^^~03/01/2002~
-~19212~^~320~^48.^0^^~4~^~NC~^^^^^^^^^^~05/01/2002~
-~19212~^~321~^10.^0^^~4~^~O~^^^^^^^^^^~05/01/2002~
-~19212~^~324~^35.^0^^~4~^~RP~^^^^^^^^^^~03/01/2002~
-~19212~^~417~^4.^0^^~4~^~RP~^^^^^^^^^^~03/01/2002~
-~19212~^~431~^0.^0^^~4~^~RP~^^^^^^^^^^~03/01/2002~
-~19212~^~432~^4.^0^^~4~^~RP~^^^^^^^^^^~03/01/2002~
-~19212~^~435~^4.^0^^~4~^~NC~^^^^^^^^^^~05/01/2002~
-~19212~^~601~^7.^0^^~4~^~RP~^^^^^^^^^^~03/01/2002~
-~19213~^~208~^85.^0^^~6~^~RPI~^^^^^^^^^^~03/01/2002~
-~19213~^~262~^1.^0^^~6~^~RPI~^^^^^^^^^^~03/01/2002~
-~19213~^~263~^42.^0^^~6~^~RPI~^^^^^^^^^^~03/01/2002~
-~19213~^~268~^357.^0^^~6~^~RPI~^^^^^^^^^^~05/01/2002~
-~19213~^~301~^126.^0^^~6~^~RPI~^^^^^^^^^^~03/01/2002~
-~19213~^~304~^20.^0^^~6~^~RPI~^^^^^^^^^^~03/01/2002~
-~19213~^~305~^98.^0^^~6~^~RPI~^^^^^^^^^^~03/01/2002~
-~19213~^~306~^182.^0^^~6~^~RPI~^^^^^^^^^^~03/01/2002~
-~19213~^~307~^52.^0^^~6~^~RPI~^^^^^^^^^^~03/01/2002~
-~19213~^~318~^170.^0^^~4~^~O~^^^^^^^^^^~05/01/2002~
-~19213~^~319~^50.^0^^~6~^~RPI~^^^^^^^^^^~03/01/2002~
-~19213~^~320~^50.^0^^~4~^~NC~^^^^^^^^^^~05/01/2002~
-~19213~^~321~^11.^0^^~4~^~O~^^^^^^^^^^~05/01/2002~
-~19213~^~324~^36.^0^^~6~^~RPI~^^^^^^^^^^~03/01/2002~
-~19213~^~417~^5.^0^^~6~^~RPI~^^^^^^^^^^~03/01/2002~
-~19213~^~431~^0.^0^^~6~^~RPI~^^^^^^^^^^~03/01/2002~
-~19213~^~432~^5.^0^^~6~^~RPI~^^^^^^^^^^~03/01/2002~
-~19213~^~435~^5.^0^^~4~^~NC~^^^^^^^^^^~05/01/2002~
-~19213~^~601~^7.^0^^~6~^~RPI~^^^^^^^^^^~03/01/2002~
-~19214~^~208~^77.^0^^~6~^~RPI~^^^^^^^^^^~03/01/2002~
-~19214~^~262~^0.^0^^~6~^~RPI~^^^^^^^^^^~03/01/2002~
-~19214~^~263~^0.^0^^~6~^~RPI~^^^^^^^^^^~03/01/2002~
-~19214~^~268~^324.^0^^~6~^~RPI~^^^^^^^^^^~05/01/2002~
-~19214~^~301~^121.^0^^~6~^~RPI~^^^^^^^^^^~03/01/2002~
-~19214~^~304~^13.^0^^~6~^~RPI~^^^^^^^^^^~03/01/2002~
-~19214~^~305~^95.^0^^~6~^~RPI~^^^^^^^^^^~03/01/2002~
-~19214~^~306~^142.^0^^~6~^~RPI~^^^^^^^^^^~03/01/2002~
-~19214~^~307~^46.^0^^~6~^~RPI~^^^^^^^^^^~03/01/2002~
-~19214~^~318~^170.^0^^~4~^~O~^^^^^^^^^^~05/01/2002~
-~19214~^~319~^51.^0^^~6~^~RPI~^^^^^^^^^^~03/01/2002~
-~19214~^~320~^51.^0^^~4~^~NC~^^^^^^^^^^~03/01/2002~
-~19214~^~324~^37.^0^^~6~^~RPI~^^^^^^^^^^~03/01/2002~
-~19214~^~417~^5.^0^^~6~^~RPI~^^^^^^^^^^~03/01/2002~
-~19214~^~431~^0.^0^^~6~^~RPI~^^^^^^^^^^~03/01/2002~
-~19214~^~432~^5.^0^^~6~^~RPI~^^^^^^^^^^~03/01/2002~
-~19214~^~435~^5.^0^^~4~^~NC~^^^^^^^^^^~05/01/2002~
-~19214~^~601~^7.^0^^~6~^~RPI~^^^^^^^^^^~03/01/2002~
-~19216~^~208~^485.^0^^~4~^~RC~^^^^^^^^^^~05/01/2006~
-~19216~^~262~^0.^0^^~4~^~RC~^^^^^^^^^^~05/01/2006~
-~19216~^~263~^0.^0^^~4~^~RC~^^^^^^^^^^~05/01/2006~
-~19216~^~268~^2028.^0^^~4~^~RC~^^^^^^^^^^~05/01/2006~
-~19216~^~301~^43.^0^^~4~^~RC~^^^^^^^^^^~05/01/2006~
-~19216~^~304~^49.^0^^~4~^~RC~^^^^^^^^^^~05/01/2006~
-~19216~^~305~^104.^0^^~4~^~RC~^^^^^^^^^^~05/01/2006~
-~19216~^~306~^217.^0^^~4~^~RC~^^^^^^^^^^~05/01/2006~
-~19216~^~307~^48.^0^^~4~^~RC~^^^^^^^^^^~05/01/2006~
-~19216~^~318~^19.^0^^~4~^~RC~^^^^^^^^^^~05/01/2006~
-~19216~^~319~^0.^0^^~4~^~RC~^^^^^^^^^^~05/01/2006~
-~19216~^~320~^1.^0^^~4~^~RC~^^^^^^^^^^~05/01/2006~
-~19216~^~321~^10.^0^^~4~^~RC~^^^^^^^^^^~05/01/2006~
-~19216~^~322~^0.^0^^~4~^~RC~^^^^^^^^^^~05/01/2006~
-~19216~^~334~^3.^0^^~4~^~RC~^^^^^^^^^^~05/01/2006~
-~19216~^~337~^0.^0^^~4~^~RC~^^^^^^^^^^~05/01/2006~
-~19216~^~338~^6.^0^^~4~^~RC~^^^^^^^^^^~05/01/2006~
-~19216~^~417~^6.^0^^~4~^~RC~^^^^^^^^^^~05/01/2006~
-~19216~^~431~^0.^0^^~4~^~RC~^^^^^^^^^^~05/01/2006~
-~19216~^~432~^6.^0^^~4~^~RC~^^^^^^^^^^~05/01/2006~
-~19216~^~435~^6.^0^^~4~^~NC~^^^^^^^^^^~05/01/2006~
-~19216~^~601~^0.^0^^~4~^~RC~^^^^^^^^^^~05/01/2006~
-~19217~^~208~^24.^0^^~4~^^^^^^^^^^^~08/01/1991~
-~19217~^~268~^100.^0^^~4~^^^^^^^^^^^~04/01/2005~
-~19217~^~301~^2.^0^^~4~^^^^^^^^^^^~08/01/1991~
-~19217~^~304~^2.^1^^~4~^^^^^^^^^^^~08/01/1991~
-~19217~^~305~^0.^0^^~4~^^^^^^^^^^^~08/01/1991~
-~19217~^~306~^26.^0^^~4~^^^^^^^^^^^~08/01/1991~
-~19217~^~307~^5.^0^^~4~^^^^^^^^^^^~08/01/1991~
-~19217~^~318~^1.^0^^~4~^^^^^^^^^^^~08/01/1991~
-~19217~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2002~
-~19217~^~320~^0.^0^^~4~^~NC~^^^^^^^^^^~06/01/2002~
-~19217~^~417~^0.^0^^~4~^^^^^^^^^^^~08/01/1991~
-~19217~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~
-~19217~^~432~^0.^0^^~4~^^^^^^^^^^^~08/01/1991~
-~19217~^~435~^0.^0^^~4~^~NC~^^^^^^^^^^~04/01/2005~
-~19217~^~601~^0.^0^^~4~^^^^^^^^^^^~08/01/1991~
-~19218~^~208~^130.^0^^~4~^~NC~^^^^^^^^^^~10/01/2006~
-~19218~^~262~^0.^0^^~4~^~FLA~^^^^^^^^^^~10/01/2006~
-~19218~^~263~^0.^0^^~4~^~FLA~^^^^^^^^^^~10/01/2006~
-~19218~^~268~^542.^0^^~4~^~NC~^^^^^^^^^^~10/01/2006~
-~19218~^~301~^71.^2^^~1~^~A~^^^1^67.^76.^1^^^^~10/01/2006~
-~19218~^~304~^6.^2^^~1~^~A~^^^1^6.^7.^1^^^^~10/01/2006~
-~19218~^~305~^60.^2^^~1~^~A~^^^1^59.^61.^1^^^^~10/01/2006~
-~19218~^~306~^92.^2^^~1~^~A~^^^1^87.^98.^1^^^^~10/01/2006~
-~19218~^~307~^145.^2^^~1~^~A~^^^1^136.^154.^1^^^^~10/01/2006~
-~19218~^~318~^0.^0^^~1~^~AS~^^^^^^^^^^~10/01/2006~
-~19218~^~319~^0.^0^^~4~^~FLA~^^^^^^^^^^~10/01/2006~
-~19218~^~320~^0.^0^^~1~^~AS~^^^^^^^^^^~10/01/2006~
-~19218~^~321~^0.^2^^~1~^~A~^^^1^0.^0.^^^^~1~^~10/01/2006~
-~19218~^~322~^0.^2^^~1~^~A~^^^1^0.^0.^^^^~1~^~10/01/2006~
-~19218~^~324~^0.^0^^~4~^~FLA~^^^^^^^^^^~03/01/2009~
-~19218~^~334~^0.^2^^~1~^~A~^^^1^0.^0.^^^^~1~^~10/01/2006~
-~19218~^~337~^0.^2^^~1~^~A~^^^1^0.^0.^^^^~1~^~10/01/2006~
-~19218~^~338~^0.^0^^~4~^~FLA~^^^^^^^^^^~10/01/2006~
-~19218~^~417~^3.^0^^~4~^~FLA~^^^^^^^^^^~10/01/2006~
-~19218~^~431~^0.^0^^~4~^~FLA~^^^^^^^^^^~10/01/2006~
-~19218~^~432~^3.^0^^~4~^~FLA~^^^^^^^^^^~10/01/2006~
-~19218~^~435~^3.^0^^~4~^~NC~^^^^^^^^^^~03/01/2009~
-~19218~^~601~^1.^0^^~4~^~FLA~^^^^^^^^^^~10/01/2006~
-~19219~^~208~^104.^0^^~4~^~NC~^^^^^^^^^^~08/01/1991~
-~19219~^~268~^435.^0^^~4~^^^^^^^^^^^
-~19219~^~301~^113.^0^^~1~^^^^^^^^^^^~08/01/1991~
-~19219~^~304~^16.^0^^~1~^^^^^^^^^^^~08/01/1991~
-~19219~^~305~^89.^0^^~1~^^^^^^^^^^^~08/01/1991~
-~19219~^~306~^159.^0^^~1~^^^^^^^^^^^~08/01/1991~
-~19219~^~307~^163.^0^^~1~^^^^^^^^^^^~08/01/1991~
-~19219~^~318~^170.^0^^~4~^~O~^^^^^^^^^^~05/01/2002~
-~19219~^~319~^48.^0^^~4~^~O~^^^^^^^^^^~03/01/2002~
-~19219~^~320~^49.^0^^~4~^~NC~^^^^^^^^^^~05/01/2002~
-~19219~^~321~^12.^0^^~4~^~O~^^^^^^^^^^~05/01/2002~
-~19219~^~417~^4.^0^^~1~^^^^^^^^^^^~08/01/1991~
-~19219~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~
-~19219~^~432~^4.^0^^~1~^^^^^^^^^^^~08/01/1991~
-~19219~^~435~^4.^0^^~4~^~NC~^^^^^^^^^^~05/01/2002~
-~19219~^~601~^7.^0^^~1~^^^^^^^^^^^~08/01/1991~
-~19220~^~208~^363.^0^^~4~^~NC~^^^^^^^^^^~08/01/1991~
-~19220~^~262~^13.^0^^~4~^~FLM~^^^^^^^^^^~12/01/1997~
-~19220~^~263~^424.^0^^~4~^~FLM~^^^^^^^^^^~12/01/1997~
-~19220~^~268~^1519.^0^^~4~^^^^^^^^^^^~07/01/2008~
-~19220~^~301~^166.^1^^~4~^^^^^^^^^^^~08/01/1991~
-~19220~^~304~^81.^1^^~4~^^^^^^^^^^^~08/01/1991~
-~19220~^~305~^129.^1^^~4~^^^^^^^^^^^~08/01/1991~
-~19220~^~306~^430.^1^^~4~^^^^^^^^^^^~08/01/1991~
-~19220~^~307~^187.^0^^~4~^~NR~^^^^^^^^^^~09/01/2012~
-~19220~^~318~^3.^1^^~4~^^^^^^^^^^^~08/01/1991~
-~19220~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2002~
-~19220~^~320~^0.^0^^~1~^~AS~^^^^^^^^^^~07/01/2008~
-~19220~^~417~^6.^1^^~4~^^^^^^^^^^^~08/01/1991~
-~19220~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~
-~19220~^~432~^6.^1^^~4~^^^^^^^^^^^~08/01/1991~
-~19220~^~435~^6.^0^^~4~^~NC~^^^^^^^^^^~07/01/2008~
-~19220~^~601~^0.^1^^~4~^^^^^^^^^^^~08/01/1991~
-~19221~^~208~^96.^0^^~6~^~RPI~^^^^^^^^^^~03/01/2002~
-~19221~^~262~^1.^0^^~6~^~RPI~^^^^^^^^^^~03/01/2002~
-~19221~^~263~^42.^0^^~6~^~RPI~^^^^^^^^^^~03/01/2002~
-~19221~^~268~^403.^0^^~6~^~RPI~^^^^^^^^^^~05/01/2002~
-~19221~^~301~^124.^0^^~6~^~RPI~^^^^^^^^^^~03/01/2002~
-~19221~^~304~^20.^0^^~6~^~RPI~^^^^^^^^^^~03/01/2002~
-~19221~^~305~^97.^0^^~6~^~RPI~^^^^^^^^^^~03/01/2002~
-~19221~^~306~^179.^0^^~6~^~RPI~^^^^^^^^^^~03/01/2002~
-~19221~^~307~^51.^0^^~6~^~RPI~^^^^^^^^^^~03/01/2002~
-~19221~^~318~^110.^0^^~4~^~O~^^^^^^^^^^~05/01/2002~
-~19221~^~319~^25.^0^^~6~^~RPI~^^^^^^^^^^~03/01/2002~
-~19221~^~320~^27.^0^^~4~^~NC~^^^^^^^^^^~05/01/2002~
-~19221~^~321~^16.^0^^~4~^~O~^^^^^^^^^^~05/01/2002~
-~19221~^~324~^36.^0^^~6~^~RPI~^^^^^^^^^^~03/01/2002~
-~19221~^~417~^5.^0^^~6~^~RPI~^^^^^^^^^^~03/01/2002~
-~19221~^~431~^0.^0^^~6~^~RPI~^^^^^^^^^^~03/01/2002~
-~19221~^~432~^5.^0^^~6~^~RPI~^^^^^^^^^^~03/01/2002~
-~19221~^~435~^5.^0^^~4~^~NC~^^^^^^^^^^~05/01/2002~
-~19221~^~601~^12.^0^^~6~^~RPI~^^^^^^^^^^~03/01/2002~
-~19221~^~636~^0.^0^^~1~^~RPA~^^^^^^^^^^~03/01/2002~
-~19222~^~208~^383.^0^^~4~^^^^^^^^^^^~08/01/1991~
-~19222~^~268~^1602.^0^^~4~^^^^^^^^^^^~05/01/2006~
-~19222~^~301~^117.^1^^~4~^^^^^^^^^^^~08/01/1991~
-~19222~^~304~^1.^1^^~4~^^^^^^^^^^^~08/01/1991~
-~19222~^~305~^91.^1^^~4~^^^^^^^^^^^~08/01/1991~
-~19222~^~306~^3.^1^^~4~^^^^^^^^^^^~08/01/1991~
-~19222~^~307~^6.^1^^~4~^^^^^^^^^^^~08/01/1991~
-~19222~^~318~^0.^1^^~4~^^^^^^^^^^^~08/01/1991~
-~19222~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2002~
-~19222~^~320~^0.^0^^~4~^~NC~^^^^^^^^^^~06/01/2002~
-~19222~^~417~^0.^1^^~4~^^^^^^^^^^^~08/01/1991~
-~19222~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~
-~19222~^~432~^0.^1^^~4~^^^^^^^^^^^~08/01/1991~
-~19222~^~435~^0.^0^^~4~^~NC~^^^^^^^^^^~05/01/2006~
-~19222~^~601~^0.^1^^~4~^^^^^^^^^^^~08/01/1991~
-~19223~^~208~^89.^0^^~6~^~RPI~^^^^^^^^^^~03/01/2002~
-~19223~^~262~^0.^0^^~6~^~RPI~^^^^^^^^^^~03/01/2002~
-~19223~^~263~^0.^0^^~6~^~RPI~^^^^^^^^^^~03/01/2002~
-~19223~^~268~^371.^0^^~6~^~RPI~^^^^^^^^^^~05/01/2002~
-~19223~^~301~^119.^0^^~6~^~RPI~^^^^^^^^^^~03/01/2002~
-~19223~^~304~^12.^0^^~6~^~RPI~^^^^^^^^^^~03/01/2002~
-~19223~^~305~^93.^0^^~6~^~RPI~^^^^^^^^^^~03/01/2002~
-~19223~^~306~^140.^0^^~6~^~RPI~^^^^^^^^^^~03/01/2002~
-~19223~^~307~^46.^0^^~6~^~RPI~^^^^^^^^^^~03/01/2002~
-~19223~^~318~^115.^0^^~4~^~O~^^^^^^^^^^~05/01/2002~
-~19223~^~319~^26.^0^^~6~^~RPI~^^^^^^^^^^~03/01/2002~
-~19223~^~320~^27.^0^^~4~^~NC~^^^^^^^^^^~05/01/2002~
-~19223~^~321~^17.^0^^~4~^~O~^^^^^^^^^^~05/01/2002~
-~19223~^~324~^37.^0^^~6~^~RPI~^^^^^^^^^^~03/01/2002~
-~19223~^~417~^5.^0^^~6~^~RPI~^^^^^^^^^^~03/01/2002~
-~19223~^~431~^0.^0^^~6~^~RPI~^^^^^^^^^^~03/01/2002~
-~19223~^~432~^5.^0^^~6~^~RPI~^^^^^^^^^^~03/01/2002~
-~19223~^~435~^5.^0^^~4~^~NC~^^^^^^^^^^~05/01/2002~
-~19223~^~601~^13.^0^^~6~^~RPI~^^^^^^^^^^~03/01/2002~
-~19223~^~636~^0.^0^^~1~^~RPA~^^^^^^^^^^~03/01/2002~
-~19225~^~208~^84.^0^^~4~^~NC~^^^^^^^^^^~08/01/1991~
-~19225~^~268~^351.^0^^~4~^^^^^^^^^^^
-~19225~^~301~^3733.^2^^~1~^^^^^^^^^^^~08/01/1991~
-~19225~^~304~^18.^3^10.^~1~^^^^^^^^^^^~08/01/1991~
-~19225~^~305~^340.^2^^~1~^^^^^^^^^^^~08/01/1991~
-~19225~^~306~^292.^2^^~1~^^^^^^^^^^^~08/01/1991~
-~19225~^~307~^26050.^2^^~1~^^^^^^^^^^^~08/01/1991~
-~19225~^~318~^0.^1^^~4~^^^^^^^^^^^~08/01/1991~
-~19225~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2002~
-~19225~^~320~^0.^0^^~4~^~NC~^^^^^^^^^^~06/01/2002~
-~19225~^~417~^0.^1^^~4~^^^^^^^^^^^~08/01/1991~
-~19225~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~
-~19225~^~432~^0.^1^^~4~^^^^^^^^^^^~08/01/1991~
-~19225~^~435~^0.^0^^~4~^~NC~^^^^^^^^^^~01/01/2001~
-~19225~^~601~^0.^1^^~4~^^^^^^^^^^^~08/01/1991~
-~19226~^~208~^397.^0^^~4~^^^^^^^^^^^~08/01/1991~
-~19226~^~262~^2.^0^^~4~^~FLC~^^^^^^^^^^~03/01/2002~
-~19226~^~263~^79.^0^^~4~^~FLC~^^^^^^^^^^~03/01/2002~
-~19226~^~268~^1661.^0^^~4~^^^^^^^^^^^~03/01/2006~
-~19226~^~301~^8.^7^0.^~1~^^^^^^^^^^^~08/01/1991~
-~19226~^~304~^21.^6^1.^~1~^^^^^^^^^^^~08/01/1991~
-~19226~^~305~^79.^1^^~1~^^^^^^^^^^^~08/01/1991~
-~19226~^~306~^196.^9^18.^~1~^^^^^^^^^^^~08/01/1991~
-~19226~^~307~^183.^15^19.^~1~^^^^^^^^^^^~08/01/1991~
-~19226~^~318~^1.^0^^~4~^~FLC~^^^^^^^^^^~03/01/2002~
-~19226~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2002~
-~19226~^~320~^0.^0^^~1~^~AS~^^^^^^^^^^~03/01/2006~
-~19226~^~321~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2011~
-~19226~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2011~
-~19226~^~324~^0.^0^^~4~^~FLC~^^^^^^^^^^~03/01/2009~
-~19226~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2011~
-~19226~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2011~
-~19226~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2011~
-~19226~^~417~^1.^0^^~4~^~FLC~^^^^^^^^^^~03/01/2002~
-~19226~^~431~^0.^0^^~4~^~FLC~^^^^^^^^^^~03/01/2002~
-~19226~^~432~^1.^0^^~4~^~FLC~^^^^^^^^^^~03/01/2002~
-~19226~^~435~^1.^0^^~4~^~NC~^^^^^^^^^^~03/01/2009~
-~19226~^~601~^0.^1^^~1~^^^^^^^^^^^~08/01/1991~
-~19226~^~636~^34.^0^^~4~^~FLC~^^^^^^^^^^~03/01/2002~
-~19227~^~208~^433.^0^^~4~^~NC~^^^^^^^^^^~12/01/2006~
-~19227~^~262~^0.^0^^~4~^~FLA~^^^^^^^^^^~02/01/2003~
-~19227~^~263~^0.^0^^~4~^~FLA~^^^^^^^^^^~02/01/2003~
-~19227~^~268~^1811.^0^^~4~^~NC~^^^^^^^^^^~12/01/2006~
-~19227~^~301~^13.^9^0.^~1~^^^^^^^^^^^~08/01/1991~
-~19227~^~304~^19.^9^0.^~1~^^^^^^^^^^^~08/01/1991~
-~19227~^~305~^63.^1^^~1~^^^^^^^^^^^~08/01/1991~
-~19227~^~306~^186.^9^2.^~1~^^^^^^^^^^^~08/01/1991~
-~19227~^~307~^160.^0^^~8~^~LC~^^^^^^^^^^~06/01/2013~
-~19227~^~318~^4.^0^^~4~^~NC~^^^^^^^^^^~04/01/2005~
-~19227~^~319~^0.^0^^~4~^~FLA~^^^^^^^^^^~03/01/2003~
-~19227~^~320~^0.^0^^~4~^~NC~^^^^^^^^^^~04/01/2005~
-~19227~^~321~^2.^0^^~4~^~FLA~^^^^^^^^^^~04/01/2005~
-~19227~^~322~^0.^0^^~4~^~FLA~^^^^^^^^^^~02/01/2003~
-~19227~^~324~^0.^0^^~4~^~FLA~^^^^^^^^^^~03/01/2009~
-~19227~^~334~^1.^0^^~4~^~FLA~^^^^^^^^^^~04/01/2005~
-~19227~^~337~^0.^0^^~4~^~FLA~^^^^^^^^^^~02/01/2003~
-~19227~^~338~^1.^0^^~4~^~FLA~^^^^^^^^^^~04/01/2005~
-~19227~^~417~^2.^0^^~4~^~FLA~^^^^^^^^^^~04/01/2005~
-~19227~^~431~^0.^0^^~4~^~FLA~^^^^^^^^^^~03/01/2003~
-~19227~^~432~^2.^0^^~4~^~FLA~^^^^^^^^^^~04/01/2005~
-~19227~^~435~^2.^0^^~4~^~NC~^^^^^^^^^^~03/01/2009~
-~19227~^~601~^0.^0^^~4~^~FLA~^^^^^^^^^^~04/01/2005~
-~19228~^~208~^415.^0^^~4~^~NC~^^^^^^^^^^~03/01/2002~
-~19228~^~268~^1737.^0^^~4~^~NC~^^^^^^^^^^~03/01/2002~
-~19228~^~301~^3.^2^^~1~^^^^^^^^^^^~03/01/2002~
-~19228~^~304~^2.^1^^~1~^^^^^^^^^^^~08/01/1991~
-~19228~^~305~^3.^1^^~1~^^^^^^^^^^^~08/01/1991~
-~19228~^~306~^35.^2^^~1~^^^^^^^^^^^~03/01/2002~
-~19228~^~307~^191.^3^3.^~8~^~LC~^^^1^188.^197.^2^177.^204.^~4~^~03/01/2002~
-~19228~^~318~^0.^3^0.^~8~^~LC~^^^1^0.^0.^2^0.^0.^~4~^~03/01/2002~
-~19228~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2002~
-~19228~^~320~^0.^0^^~1~^~AS~^^^^^^^^^^~06/01/2008~
-~19228~^~417~^0.^1^^~1~^^^^^^^^^^^~08/01/1991~
-~19228~^~431~^0.^0^^~4~^~FLC~^^^^^^^^^^~03/01/2002~
-~19228~^~432~^0.^0^^~4~^~FLC~^^^^^^^^^^~03/01/2002~
-~19228~^~435~^0.^0^^~4~^~NC~^^^^^^^^^^~06/01/2008~
-~19228~^~601~^0.^1^^~1~^^^^^^^^^^^~08/01/1991~
-~19230~^~208~^418.^0^^~4~^~NC~^^^^^^^^^^~03/01/2006~
-~19230~^~262~^0.^0^^~4~^~FLA~^^^^^^^^^^~03/01/2003~
-~19230~^~263~^0.^0^^~4~^~FLA~^^^^^^^^^^~03/01/2003~
-~19230~^~268~^1748.^0^^~4~^~NC~^^^^^^^^^^~03/01/2006~
-~19230~^~301~^3.^6^0.^~1~^~A~^^^1^2.^4.^5^2.^3.^~2, 3~^~03/01/2003~
-~19230~^~304~^1.^6^0.^~1~^~A~^^^1^0.^1.^5^0.^1.^~1, 2, 3~^~03/01/2003~
-~19230~^~305~^18.^6^5.^~1~^~A~^^^1^4.^32.^5^4.^31.^~1, 2, 3~^~03/01/2003~
-~19230~^~306~^34.^6^2.^~1~^~A~^^^1^27.^40.^5^28.^39.^~2, 3~^~03/01/2003~
-~19230~^~307~^184.^6^2.^~1~^~A~^^^1^176.^195.^5^176.^191.^~2, 3~^~03/01/2003~
-~19230~^~318~^0.^4^0.^~8~^~LC~^^^1^0.^0.^3^0.^0.^~4~^~02/01/2003~
-~19230~^~319~^0.^0^^~4~^~FLA~^^^^^^^^^^~03/01/2003~
-~19230~^~320~^0.^0^^~4~^~FLA~^^^^^^^^^^~03/01/2003~
-~19230~^~321~^0.^0^^~4~^~FLA~^^^^^^^^^^~02/01/2003~
-~19230~^~322~^0.^0^^~4~^~FLA~^^^^^^^^^^~02/01/2003~
-~19230~^~324~^0.^0^^~4~^~FLA~^^^^^^^^^^~03/01/2009~
-~19230~^~334~^0.^0^^~4~^~FLA~^^^^^^^^^^~02/01/2003~
-~19230~^~337~^0.^0^^~4~^~FLA~^^^^^^^^^^~02/01/2003~
-~19230~^~338~^0.^0^^~4~^~FLA~^^^^^^^^^^~02/01/2003~
-~19230~^~417~^8.^6^0.^~1~^~A~^^^1^8.^8.^^^^~1, 2, 3~^~03/01/2003~
-~19230~^~431~^0.^0^^~4~^~NR~^^^^^^^^^^~04/01/2005~
-~19230~^~432~^8.^6^0.^~1~^~A~^^^1^8.^8.^^^^^~03/01/2006~
-~19230~^~435~^8.^0^^~4~^~NC~^^^^^^^^^^~03/01/2009~
-~19230~^~601~^0.^0^^~4~^~FLA~^^^^^^^^^^~03/01/2003~
-~19231~^~208~^103.^0^^~4~^~RP~^^^^^^^^^^~03/01/2002~
-~19231~^~262~^0.^0^^~4~^~RP~^^^^^^^^^^~03/01/2002~
-~19231~^~263~^0.^0^^~4~^~RP~^^^^^^^^^^~03/01/2002~
-~19231~^~268~^430.^0^^~4~^~RP~^^^^^^^^^^~05/01/2002~
-~19231~^~301~^113.^0^^~4~^~RP~^^^^^^^^^^~03/01/2002~
-~19231~^~304~^12.^0^^~4~^~RP~^^^^^^^^^^~03/01/2002~
-~19231~^~305~^86.^0^^~4~^~RP~^^^^^^^^^^~03/01/2002~
-~19231~^~306~^163.^0^^~4~^~RP~^^^^^^^^^^~03/01/2002~
-~19231~^~307~^113.^0^^~4~^~RP~^^^^^^^^^^~03/01/2002~
-~19231~^~318~^180.^0^^~4~^~O~^^^^^^^^^^~05/01/2002~
-~19231~^~319~^51.^0^^~4~^~RP~^^^^^^^^^^~03/01/2002~
-~19231~^~320~^52.^0^^~4~^~NC~^^^^^^^^^^~05/01/2002~
-~19231~^~321~^11.^0^^~4~^~O~^^^^^^^^^^~05/01/2002~
-~19231~^~324~^36.^0^^~4~^~RP~^^^^^^^^^^~03/01/2002~
-~19231~^~417~^4.^0^^~4~^~RP~^^^^^^^^^^~03/01/2002~
-~19231~^~431~^0.^0^^~4~^~RP~^^^^^^^^^^~03/01/2002~
-~19231~^~432~^4.^0^^~4~^~RP~^^^^^^^^^^~03/01/2002~
-~19231~^~435~^4.^0^^~4~^~NC~^^^^^^^^^^~05/01/2002~
-~19231~^~601~^7.^0^^~4~^~RP~^^^^^^^^^^~03/01/2002~
-~19232~^~208~^113.^0^^~4~^~RP~^^^^^^^^^^~03/01/2002~
-~19232~^~262~^0.^0^^~4~^~RP~^^^^^^^^^^~03/01/2002~
-~19232~^~263~^0.^0^^~4~^~RP~^^^^^^^^^^~03/01/2002~
-~19232~^~268~^475.^0^^~4~^~RP~^^^^^^^^^^~05/01/2002~
-~19232~^~301~^111.^0^^~4~^~RP~^^^^^^^^^^~03/01/2002~
-~19232~^~304~^12.^0^^~4~^~RP~^^^^^^^^^^~03/01/2002~
-~19232~^~305~^84.^0^^~4~^~RP~^^^^^^^^^^~03/01/2002~
-~19232~^~306~^160.^0^^~4~^~RP~^^^^^^^^^^~03/01/2002~
-~19232~^~307~^112.^0^^~4~^~RP~^^^^^^^^^^~03/01/2002~
-~19232~^~318~^113.^0^^~4~^~RP~^^^^^^^^^^~03/01/2002~
-~19232~^~319~^28.^0^^~4~^~O~^^^^^^^^^^~03/01/2002~
-~19232~^~320~^29.^0^^~4~^~NC~^^^^^^^^^^~05/01/2002~
-~19232~^~321~^16.^0^^~4~^~O~^^^^^^^^^^~05/01/2002~
-~19232~^~324~^36.^0^^~4~^~RP~^^^^^^^^^^~03/01/2002~
-~19232~^~417~^4.^0^^~4~^~RP~^^^^^^^^^^~03/01/2002~
-~19232~^~431~^0.^0^^~4~^~RP~^^^^^^^^^^~03/01/2002~
-~19232~^~432~^4.^0^^~4~^~RP~^^^^^^^^^^~03/01/2002~
-~19232~^~435~^4.^0^^~4~^~NC~^^^^^^^^^^~08/01/2002~
-~19232~^~601~^12.^0^^~4~^~RP~^^^^^^^^^^~03/01/2002~
-~19232~^~636~^0.^0^^~4~^~RP~^^^^^^^^^^~03/01/2002~
-~19233~^~208~^89.^0^^~4~^~NC~^^^^^^^^^^~07/01/2008~
-~19233~^~262~^0.^0^^~4~^~FLC~^^^^^^^^^^~11/01/2006~
-~19233~^~263~^0.^0^^~4~^~FLC~^^^^^^^^^^~11/01/2006~
-~19233~^~268~^371.^0^^~4~^~NC~^^^^^^^^^^~07/01/2008~
-~19233~^~301~^40.^1^^~8~^~LC~^^^^^^^^^^~11/01/2006~
-~19233~^~304~^7.^0^^~4~^~FLC~^^^^^^^^^^~11/01/2006~
-~19233~^~305~^54.^0^^~4~^~FLC~^^^^^^^^^^~11/01/2006~
-~19233~^~306~^108.^0^^~4~^~FLC~^^^^^^^^^^~11/01/2006~
-~19233~^~307~^191.^1^^~8~^~LC~^^^^^^^^^^~11/01/2006~
-~19233~^~318~^1.^0^^~4~^~NR~^^^^^^^^^^~01/01/2007~
-~19233~^~319~^0.^0^^~4~^~FLC~^^^^^^^^^^~01/01/2007~
-~19233~^~320~^1.^0^^~4~^~NC~^^^^^^^^^^~07/01/2008~
-~19233~^~321~^5.^0^^~4~^~FLC~^^^^^^^^^^~11/01/2006~
-~19233~^~322~^0.^0^^~4~^~FLC~^^^^^^^^^^~11/01/2006~
-~19233~^~324~^0.^0^^~4~^~FLA~^^^^^^^^^^~03/01/2009~
-~19233~^~334~^0.^0^^~4~^~FLC~^^^^^^^^^^~11/01/2006~
-~19233~^~337~^0.^0^^~4~^~FLC~^^^^^^^^^^~11/01/2006~
-~19233~^~338~^0.^0^^~4~^~FLC~^^^^^^^^^^~11/01/2006~
-~19233~^~417~^3.^0^^~4~^~FLC~^^^^^^^^^^~11/01/2006~
-~19233~^~431~^0.^0^^~4~^~FLC~^^^^^^^^^^~11/01/2006~
-~19233~^~432~^3.^0^^~4~^~FLC~^^^^^^^^^^~11/01/2006~
-~19233~^~435~^3.^0^^~4~^~NC~^^^^^^^^^^~03/01/2009~
-~19233~^~601~^0.^1^^~8~^~LC~^^^^^^^^^^~11/01/2006~
-~19234~^~208~^94.^0^^~4~^~NC~^^^^^^^^^^~10/01/2006~
-~19234~^~262~^0.^0^^~4~^~FLA~^^^^^^^^^^~03/01/2003~
-~19234~^~263~^0.^0^^~4~^~FLA~^^^^^^^^^^~03/01/2003~
-~19234~^~268~^394.^0^^~4~^~NC~^^^^^^^^^^~10/01/2006~
-~19234~^~301~^52.^1^^~1~^~A~^^^^^^^^^^~10/01/2006~
-~19234~^~304~^5.^1^^~1~^~A~^^^^^^^^^^~10/01/2006~
-~19234~^~305~^66.^1^^~1~^~A~^^^^^^^^^^~10/01/2006~
-~19234~^~306~^70.^1^^~1~^~A~^^^^^^^^^^~10/01/2006~
-~19234~^~307~^187.^1^^~1~^~A~^^^^^^^^^^~10/01/2006~
-~19234~^~318~^1.^0^^~4~^~FLA~^^^^^^^^^^~10/01/2006~
-~19234~^~319~^0.^0^^~4~^~FLA~^^^^^^^^^^~10/01/2006~
-~19234~^~320~^0.^0^^~4~^~FLA~^^^^^^^^^^~10/01/2006~
-~19234~^~321~^0.^1^^~1~^~A~^^^^^^^^^~1~^~10/01/2006~
-~19234~^~322~^0.^1^^~1~^~A~^^^^^^^^^~1~^~10/01/2006~
-~19234~^~324~^0.^0^^~4~^~FLA~^^^^^^^^^^~03/01/2009~
-~19234~^~334~^0.^1^^~1~^~A~^^^^^^^^^~1~^~10/01/2006~
-~19234~^~337~^0.^1^^~1~^~A~^^^^^^^^^~1~^~10/01/2006~
-~19234~^~338~^0.^0^^~4~^~FLA~^^^^^^^^^^~03/01/2003~
-~19234~^~417~^2.^0^^~4~^~FLA~^^^^^^^^^^~10/01/2006~
-~19234~^~431~^0.^0^^~4~^~NR~^^^^^^^^^^~10/01/2006~
-~19234~^~432~^2.^0^^~4~^~FLA~^^^^^^^^^^~10/01/2006~
-~19234~^~435~^2.^0^^~4~^~NC~^^^^^^^^^^~03/01/2009~
-~19234~^~601~^1.^0^^~4~^~FLA~^^^^^^^^^^~10/01/2006~
-~19235~^~208~^93.^3^3.^~8~^~LC~^^^1^88.^101.^2^76.^109.^~4~^~11/01/2006~
-~19235~^~262~^2.^0^^~4~^~FLC~^^^^^^^^^^~11/01/2006~
-~19235~^~263~^53.^0^^~4~^~FLC~^^^^^^^^^^~11/01/2006~
-~19235~^~268~^390.^0^^~8~^~LC~^^^^^^^^^^~12/01/2006~
-~19235~^~301~^39.^3^17.^~8~^~LC~^^^1^4.^60.^2^-36.^115.^~4~^~11/01/2006~
-~19235~^~304~^15.^0^^~4~^~FLC~^^^^^^^^^^~12/01/2006~
-~19235~^~305~^54.^0^^~4~^~FLC~^^^^^^^^^^~12/01/2006~
-~19235~^~306~^208.^0^^~4~^~BFZN~^^^^^^^^^^~12/01/2006~
-~19235~^~307~^154.^0^^~8~^~LC~^^^^^^^^^^~06/01/2013~
-~19235~^~318~^1.^0^^~4~^~NC~^^^^^^^^^^~12/01/2006~
-~19235~^~319~^0.^0^^~4~^~FLC~^^^^^^^^^^~12/01/2006~
-~19235~^~320~^0.^0^^~4~^~NC~^^^^^^^^^^~05/01/2007~
-~19235~^~321~^0.^0^^~4~^~FLC~^^^^^^^^^^~12/01/2006~
-~19235~^~322~^0.^0^^~4~^~FLC~^^^^^^^^^^~11/01/2006~
-~19235~^~324~^0.^0^^~4~^~FLA~^^^^^^^^^^~03/01/2009~
-~19235~^~334~^0.^0^^~4~^~FLC~^^^^^^^^^^~11/01/2006~
-~19235~^~337~^0.^0^^~4~^~FLC~^^^^^^^^^^~11/01/2006~
-~19235~^~338~^1.^0^^~4~^~FLC~^^^^^^^^^^~11/01/2006~
-~19235~^~417~^3.^0^^~4~^~FLC~^^^^^^^^^^~12/01/2006~
-~19235~^~431~^0.^0^^~4~^~NR~^^^^^^^^^^~11/01/2006~
-~19235~^~432~^3.^0^^~4~^~FLC~^^^^^^^^^^~12/01/2006~
-~19235~^~435~^3.^0^^~4~^~NC~^^^^^^^^^^~03/01/2009~
-~19235~^~601~^1.^0^^~4~^~FLM~^^^^^^^^^^~05/01/2007~
-~19236~^~208~^568.^0^^~4~^~NC~^^^^^^^^^^~05/01/2014~
-~19236~^~268~^2375.^0^^~4~^~NC~^^^^^^^^^^~05/01/2014~
-~19236~^~304~^59.^1^^~9~^~MC~^^^^^^^^^^~05/01/2002~
-~19236~^~305~^227.^1^^~9~^~MC~^^^^^^^^^^~05/01/2002~
-~19236~^~306~^471.^1^^~9~^~MC~^^^^^^^^^^~05/01/2002~
-~19236~^~307~^74.^1^^~9~^~MC~^^^^^^^^^^~05/01/2002~
-~19236~^~318~^177.^1^^~9~^~MC~^^^^^^^^^^~05/01/2002~
-~19236~^~417~^16.^1^^~9~^~MC~^^^^^^^^^^~05/01/2002~
-~19236~^~601~^19.^1^^~9~^~MC~^^^^^^^^^^~05/01/2002~
-~19238~^~208~^521.^1^^~9~^~MC~^^^^^^^^^^~05/01/2002~
-~19238~^~262~^0.^1^^~9~^~MC~^^^^^^^^^^~05/01/2002~
-~19238~^~268~^2181.^0^^~9~^~MC~^^^^^^^^^^~05/01/2002~
-~19238~^~301~^112.^1^^~9~^~MC~^^^^^^^^^^~05/01/2002~
-~19238~^~304~^63.^1^^~9~^~MC~^^^^^^^^^^~05/01/2002~
-~19238~^~305~^194.^1^^~9~^~MC~^^^^^^^^^^~05/01/2002~
-~19238~^~306~^382.^1^^~9~^~MC~^^^^^^^^^^~05/01/2002~
-~19238~^~307~^179.^1^^~9~^~MC~^^^^^^^^^^~05/01/2002~
-~19238~^~318~^60.^1^^~9~^~MC~^^^^^^^^^^~05/01/2002~
-~19238~^~417~^42.^1^^~9~^~MC~^^^^^^^^^^~05/01/2002~
-~19238~^~601~^7.^1^^~9~^~MC~^^^^^^^^^^~05/01/2002~
-~19239~^~208~^517.^1^^~9~^~MC~^^^^^^^^^^~05/01/2002~
-~19239~^~268~^2165.^0^^~9~^~MC~^^^^^^^^^^~05/01/2002~
-~19239~^~301~^68.^1^^~9~^~MC~^^^^^^^^^^~05/01/2002~
-~19239~^~304~^68.^1^^~9~^~MC~^^^^^^^^^^~05/01/2002~
-~19239~^~305~^175.^1^^~9~^~MC~^^^^^^^^^^~05/01/2002~
-~19239~^~306~^364.^1^^~9~^~MC~^^^^^^^^^^~05/01/2002~
-~19239~^~307~^141.^1^^~9~^~MC~^^^^^^^^^^~05/01/2002~
-~19239~^~318~^36.^1^^~9~^~MC~^^^^^^^^^^~05/01/2002~
-~19239~^~417~^56.^1^^~9~^~MC~^^^^^^^^^^~05/01/2002~
-~19239~^~601~^3.^1^^~9~^~MC~^^^^^^^^^^~05/01/2002~
-~19240~^~208~^389.^0^^~4~^^^^^^^^^^^~08/01/1991~
-~19240~^~262~^6.^0^^~4~^~FLM~^^^^^^^^^^~12/01/1997~
-~19240~^~263~^188.^0^^~4~^~FLM~^^^^^^^^^^~12/01/1997~
-~19240~^~268~^1628.^0^^~4~^^^^^^^^^^^~05/01/2006~
-~19240~^~301~^11.^1^^~4~^^^^^^^^^^^~08/01/1991~
-~19240~^~304~^38.^1^^~4~^^^^^^^^^^^~08/01/1991~
-~19240~^~305~^62.^1^^~4~^^^^^^^^^^^~08/01/1991~
-~19240~^~306~^180.^1^^~1~^^^^^^^^^^^~08/01/1991~
-~19240~^~307~^76.^1^^~1~^^^^^^^^^^^~08/01/1991~
-~19240~^~318~^0.^1^^~1~^^^^^^^^^^^~08/01/1991~
-~19240~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2002~
-~19240~^~320~^0.^0^^~4~^~NC~^^^^^^^^^^~06/01/2002~
-~19240~^~417~^3.^1^^~4~^^^^^^^^^^^~08/01/1991~
-~19240~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~
-~19240~^~432~^3.^1^^~4~^^^^^^^^^^^~08/01/1991~
-~19240~^~435~^3.^0^^~4~^~NC~^^^^^^^^^^~05/01/2006~
-~19240~^~601~^0.^1^^~4~^^^^^^^^^^^~08/01/1991~
-~19241~^~208~^408.^0^^~4~^~NC~^^^^^^^^^^~03/01/2009~
-~19241~^~262~^5.^0^^~6~^~RPI~^^^^^^^^^^~03/01/2009~
-~19241~^~263~^146.^0^^~6~^~RPI~^^^^^^^^^^~03/01/2009~
-~19241~^~268~^1708.^0^^~4~^~NC~^^^^^^^^^^~03/01/2009~
-~19241~^~301~^12.^0^^~6~^~RPI~^^^^^^^^^^~03/01/2009~
-~19241~^~304~^30.^0^^~6~^~RPI~^^^^^^^^^^~03/01/2009~
-~19241~^~305~^51.^0^^~6~^~RPI~^^^^^^^^^^~03/01/2009~
-~19241~^~306~^143.^0^^~1~^~RPA~^^^^^^^^^^~03/01/2009~
-~19241~^~307~^124.^0^^~1~^~RPA~^^^^^^^^^^~03/01/2009~
-~19241~^~318~^278.^0^^~4~^~NC~^^^^^^^^^^~03/01/2009~
-~19241~^~319~^75.^0^^~6~^~RPI~^^^^^^^^^^~03/01/2009~
-~19241~^~320~^76.^0^^~4~^~NC~^^^^^^^^^^~06/01/2009~
-~19241~^~321~^18.^0^^~6~^~RPI~^^^^^^^^^^~03/01/2009~
-~19241~^~322~^0.^0^^~6~^~RPI~^^^^^^^^^^~03/01/2009~
-~19241~^~324~^7.^0^^~6~^~RPI~^^^^^^^^^^~05/01/2009~
-~19241~^~334~^0.^0^^~6~^~RPI~^^^^^^^^^^~03/01/2009~
-~19241~^~337~^0.^0^^~6~^~RPI~^^^^^^^^^^~03/01/2009~
-~19241~^~338~^0.^0^^~6~^~RPI~^^^^^^^^^^~03/01/2009~
-~19241~^~417~^3.^0^^~6~^~RPI~^^^^^^^^^^~03/01/2009~
-~19241~^~431~^0.^0^^~6~^~RPI~^^^^^^^^^^~03/01/2002~
-~19241~^~432~^3.^0^^~6~^~RPI~^^^^^^^^^^~03/01/2009~
-~19241~^~435~^3.^0^^~4~^~NC~^^^^^^^^^^~06/01/2009~
-~19241~^~601~^24.^0^^~6~^~RPI~^^^^^^^^^^~03/01/2009~
-~19241~^~638~^0.^0^^~1~^~RPA~^^^^^^^^^^~03/01/2009~
-~19241~^~639~^0.^0^^~1~^~RPA~^^^^^^^^^^~03/01/2009~
-~19241~^~641~^0.^0^^~1~^~RPA~^^^^^^^^^^~03/01/2009~
-~19243~^~208~^530.^1^^~9~^~MC~^^^^^^^^^^~05/01/2002~
-~19243~^~262~^0.^1^^~9~^~MC~^^^^^^^^^^~05/01/2002~
-~19243~^~268~^2217.^0^^~9~^~MC~^^^^^^^^^^~05/01/2002~
-~19243~^~301~^86.^1^^~9~^~MC~^^^^^^^^^^~05/01/2002~
-~19243~^~304~^6.^1^^~9~^~MC~^^^^^^^^^^~05/01/2002~
-~19243~^~305~^71.^1^^~9~^~MC~^^^^^^^^^^~05/01/2002~
-~19243~^~306~^210.^1^^~9~^~MC~^^^^^^^^^^~05/01/2002~
-~19243~^~307~^245.^1^^~9~^~MC~^^^^^^^^^^~05/01/2002~
-~19243~^~318~^232.^1^^~9~^~MC~^^^^^^^^^^~05/01/2002~
-~19243~^~417~^1.^1^^~9~^~MC~^^^^^^^^^^~05/01/2002~
-~19243~^~601~^19.^1^^~9~^~MC~^^^^^^^^^^~05/01/2002~
-~19244~^~208~^410.^0^^~4~^~NC~^^^^^^^^^^~08/01/1991~
-~19244~^~268~^1715.^0^^~4~^^^^^^^^^^^~07/01/2008~
-~19244~^~301~^3.^1^^~1~^^^^^^^^^^^~08/01/1991~
-~19244~^~304~^2.^1^^~1~^^^^^^^^^^^~08/01/1991~
-~19244~^~305~^4.^1^^~1~^^^^^^^^^^^~08/01/1991~
-~19244~^~306~^7.^2^^~1~^^^^^^^^^^^~08/01/1991~
-~19244~^~307~^13.^2^^~1~^^^^^^^^^^^~08/01/1991~
-~19244~^~318~^0.^1^^~1~^^^^^^^^^^^~08/01/1991~
-~19244~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2002~
-~19244~^~320~^0.^0^^~1~^~AS~^^^^^^^^^^~07/01/2008~
-~19244~^~417~^0.^1^^~4~^^^^^^^^^^^~08/01/1991~
-~19244~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~
-~19244~^~432~^0.^1^^~4~^^^^^^^^^^^~08/01/1991~
-~19244~^~435~^0.^0^^~4~^~NC~^^^^^^^^^^~07/01/2008~
-~19244~^~601~^0.^1^^~4~^^^^^^^^^^^~08/01/1991~
-~19246~^~208~^371.^0^^~4~^~NC~^^^^^^^^^^~08/01/1991~
-~19246~^~268~^1552.^0^^~4~^^^^^^^^^^^~07/01/2008~
-~19246~^~301~^4.^1^^~1~^^^^^^^^^^^~08/01/1991~
-~19246~^~304~^3.^1^^~1~^^^^^^^^^^^~08/01/1991~
-~19246~^~305~^7.^1^^~1~^^^^^^^^^^^~08/01/1991~
-~19246~^~306~^117.^1^^~1~^^^^^^^^^^^~08/01/1991~
-~19246~^~307~^234.^1^^~1~^^^^^^^^^^^~08/01/1991~
-~19246~^~318~^0.^1^^~4~^^^^^^^^^^^~08/01/1991~
-~19246~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2002~
-~19246~^~320~^0.^0^^~1~^~AS~^^^^^^^^^^~07/01/2008~
-~19246~^~417~^3.^1^^~4~^^^^^^^^^^^~08/01/1991~
-~19246~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~
-~19246~^~432~^3.^1^^~4~^^^^^^^^^^^~08/01/1991~
-~19246~^~435~^3.^0^^~4~^~NC~^^^^^^^^^^~07/01/2008~
-~19246~^~601~^0.^1^^~4~^^^^^^^^^^^~08/01/1991~
-~19247~^~208~^244.^0^^~4~^~NC~^^^^^^^^^^~08/01/1991~
-~19247~^~268~^1021.^0^^~4~^^^^^^^^^^^
-~19247~^~301~^4.^0^^~1~^^^^^^^^^^^~08/01/1991~
-~19247~^~304~^2.^0^^~1~^^^^^^^^^^^~08/01/1991~
-~19247~^~305~^5.^0^^~1~^^^^^^^^^^^~08/01/1991~
-~19247~^~306~^77.^0^^~1~^^^^^^^^^^^~08/01/1991~
-~19247~^~307~^156.^0^^~1~^^^^^^^^^^^~08/01/1991~
-~19247~^~318~^0.^0^^~1~^^^^^^^^^^^~08/01/1991~
-~19247~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2002~
-~19247~^~320~^0.^0^^~4~^~NC~^^^^^^^^^^~06/01/2002~
-~19247~^~417~^2.^0^^~1~^^^^^^^^^^^~08/01/1991~
-~19247~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~
-~19247~^~432~^2.^0^^~1~^^^^^^^^^^^~08/01/1991~
-~19247~^~435~^2.^0^^~4~^~NC~^^^^^^^^^^~01/01/2001~
-~19247~^~601~^0.^0^^~1~^^^^^^^^^^^~08/01/1991~
-~19248~^~208~^563.^0^^~4~^~NC~^^^^^^^^^^~06/01/2009~
-~19248~^~268~^2356.^0^^~4~^~NC~^^^^^^^^^^~06/01/2009~
-~19248~^~301~^109.^1^^~9~^~MC~^^^^^^^^^^~05/01/2002~
-~19248~^~304~^38.^1^^~9~^~MC~^^^^^^^^^^~05/01/2002~
-~19248~^~305~^129.^1^^~9~^~MC~^^^^^^^^^^~05/01/2002~
-~19248~^~306~^306.^1^^~9~^~MC~^^^^^^^^^^~05/01/2002~
-~19248~^~307~^39.^1^^~9~^~MC~^^^^^^^^^^~05/01/2002~
-~19248~^~318~^117.^1^^~9~^~MC~^^^^^^^^^^~05/01/2002~
-~19248~^~417~^8.^1^^~9~^~MC~^^^^^^^^^^~05/01/2002~
-~19248~^~601~^11.^1^^~9~^~MC~^^^^^^^^^^~05/01/2002~
-~19249~^~208~^521.^1^^~9~^~MC~^^^^^^^^^^~03/01/2003~
-~19249~^~262~^0.^1^^~9~^~MC~^^^^^^^^^^~03/01/2003~
-~19249~^~263~^48.^0^^~4~^~FLC~^^^^^^^^^^~03/01/2003~
-~19249~^~268~^2181.^0^^~9~^~MC~^^^^^^^^^^~03/01/2003~
-~19249~^~301~^70.^1^^~9~^~MC~^^^^^^^^^^~03/01/2003~
-~19249~^~304~^49.^1^^~9~^~MC~^^^^^^^^^^~03/01/2003~
-~19249~^~305~^144.^1^^~9~^~MC~^^^^^^^^^^~03/01/2003~
-~19249~^~306~^295.^1^^~9~^~MC~^^^^^^^^^^~03/01/2003~
-~19249~^~307~^264.^1^^~9~^~MC~^^^^^^^^^^~03/01/2003~
-~19249~^~318~^58.^1^^~9~^~MC~^^^^^^^^^^~03/01/2003~
-~19249~^~319~^14.^0^^~4~^~O~^^^^^^^^^^~03/01/2003~
-~19249~^~320~^14.^0^^~4~^~NC~^^^^^^^^^^~04/01/2003~
-~19249~^~321~^4.^0^^~4~^~NR~^^^^^^^^^^~03/01/2003~
-~19249~^~322~^0.^0^^~4~^~FLC~^^^^^^^^^^~03/01/2003~
-~19249~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~
-~19249~^~334~^0.^0^^~4~^~FLC~^^^^^^^^^^~03/01/2003~
-~19249~^~337~^0.^0^^~4~^~FLC~^^^^^^^^^^~03/01/2003~
-~19249~^~338~^45.^0^^~4~^~FLC~^^^^^^^^^^~03/01/2003~
-~19249~^~417~^40.^1^^~9~^~MC~^^^^^^^^^^~03/01/2003~
-~19249~^~431~^0.^0^^~4~^~FLC~^^^^^^^^^^~03/01/2003~
-~19249~^~432~^40.^1^^~9~^~MC~^^^^^^^^^^~03/01/2003~
-~19249~^~435~^40.^0^^~4~^~NC~^^^^^^^^^^~05/01/2009~
-~19249~^~601~^6.^1^^~9~^~MC~^^^^^^^^^^~03/01/2003~
-~19250~^~208~^520.^1^^~9~^~MC~^^^^^^^^^^~03/01/2003~
-~19250~^~262~^0.^1^^~9~^~MC~^^^^^^^^^^~03/01/2003~
-~19250~^~268~^2175.^0^^~9~^~MC~^^^^^^^^^^~03/01/2003~
-~19250~^~301~^138.^1^^~9~^~MC~^^^^^^^^^^~03/01/2003~
-~19250~^~304~^2.^1^^~9~^~MC~^^^^^^^^^^~03/01/2003~
-~19250~^~305~^112.^1^^~9~^~MC~^^^^^^^^^^~03/01/2003~
-~19250~^~306~^294.^1^^~9~^~MC~^^^^^^^^^^~03/01/2003~
-~19250~^~307~^64.^1^^~9~^~MC~^^^^^^^^^^~03/01/2003~
-~19250~^~318~^92.^1^^~9~^~MC~^^^^^^^^^^~03/01/2003~
-~19250~^~417~^3.^1^^~9~^~MC~^^^^^^^^^^~03/01/2003~
-~19250~^~432~^3.^1^^~9~^~MC~^^^^^^^^^^~03/01/2003~
-~19250~^~601~^9.^1^^~9~^~MC~^^^^^^^^^^~03/01/2003~
-~19252~^~208~^474.^1^^~9~^~MC~^^^^^^^^^^~03/01/2003~
-~19252~^~262~^0.^1^^~9~^~MC~^^^^^^^^^^~03/01/2003~
-~19252~^~268~^1985.^0^^~9~^~MC~^^^^^^^^^^~03/01/2003~
-~19252~^~301~^61.^1^^~9~^~MC~^^^^^^^^^^~03/01/2003~
-~19252~^~304~^48.^1^^~9~^~MC~^^^^^^^^^^~03/01/2003~
-~19252~^~305~^130.^1^^~9~^~MC~^^^^^^^^^^~03/01/2003~
-~19252~^~306~^284.^1^^~9~^~MC~^^^^^^^^^^~03/01/2003~
-~19252~^~307~^330.^1^^~9~^~MC~^^^^^^^^^^~03/01/2003~
-~19252~^~318~^40.^1^^~9~^~MC~^^^^^^^^^^~03/01/2003~
-~19252~^~417~^39.^1^^~9~^~MC~^^^^^^^^^^~03/01/2003~
-~19252~^~432~^39.^1^^~9~^~MC~^^^^^^^^^^~03/01/2003~
-~19252~^~601~^4.^1^^~9~^~MC~^^^^^^^^^^~03/01/2003~
-~19254~^~208~^546.^1^^~9~^~MC~^^^^^^^^^^~03/01/2006~
-~19254~^~268~^2282.^0^^~9~^~MC~^^^^^^^^^^~03/01/2006~
-~19254~^~301~^160.^1^^~9~^~MC~^^^^^^^^^^~01/01/2006~
-~19254~^~307~^63.^1^^~9~^~MC~^^^^^^^^^^~01/01/2006~
-~19254~^~318~^292.^1^^~9~^~MC~^^^^^^^^^^~01/01/2006~
-~19254~^~601~^18.^1^^~9~^~MC~^^^^^^^^^^~01/01/2006~
-~19255~^~208~^520.^1^^~9~^~MC~^^^^^^^^^^~03/01/2006~
-~19255~^~268~^2176.^0^^~9~^~MC~^^^^^^^^^^~03/01/2006~
-~19255~^~301~^37.^1^^~9~^~MC~^^^^^^^^^^~01/01/2006~
-~19255~^~307~^4.^1^^~9~^~MC~^^^^^^^^^^~01/01/2006~
-~19255~^~318~^134.^1^^~9~^~MC~^^^^^^^^^^~01/01/2006~
-~19255~^~601~^7.^1^^~9~^~MC~^^^^^^^^^^~01/01/2006~
-~19256~^~208~^463.^1^^~9~^~MC~^^^^^^^^^^~03/01/2006~
-~19256~^~268~^1938.^0^^~9~^~MC~^^^^^^^^^^~03/01/2006~
-~19256~^~301~^141.^1^^~9~^~MC~^^^^^^^^^^~02/01/2006~
-~19256~^~307~^273.^1^^~9~^~MC~^^^^^^^^^^~02/01/2006~
-~19256~^~318~^262.^1^^~9~^~MC~^^^^^^^^^^~02/01/2006~
-~19256~^~601~^20.^1^^~9~^~MC~^^^^^^^^^^~02/01/2006~
-~19258~^~208~^458.^1^^~9~^~MC~^^^^^^^^^^~03/01/2006~
-~19258~^~268~^1915.^0^^~9~^~MC~^^^^^^^^^^~03/01/2006~
-~19258~^~301~^83.^1^^~9~^~MC~^^^^^^^^^^~02/01/2006~
-~19258~^~307~^246.^1^^~9~^~MC~^^^^^^^^^^~02/01/2006~
-~19258~^~318~^246.^1^^~9~^~MC~^^^^^^^^^^~02/01/2006~
-~19258~^~601~^17.^1^^~9~^~MC~^^^^^^^^^^~02/01/2006~
-~19260~^~208~^169.^0^^~4~^~NC~^^^^^^^^^^~05/01/2009~
-~19260~^~262~^0.^0^^~4~^~FLM~^^^^^^^^^^~05/01/2004~
-~19260~^~263~^0.^0^^~4~^~FLM~^^^^^^^^^^~05/01/2004~
-~19260~^~268~^706.^0^^~4~^~NC~^^^^^^^^^^~05/01/2009~
-~19260~^~301~^136.^4^4.^~9~^~MC~^^^1^130.^151.^3^120.^152.^~4~^~05/01/2004~
-~19260~^~304~^9.^0^^~4~^~FLM~^^^^^^^^^^~05/01/2004~
-~19260~^~305~^75.^0^^~4~^~FLM~^^^^^^^^^^~05/01/2004~
-~19260~^~306~^196.^0^^~8~^~LC~^^^^^^^^^^~03/01/2009~
-~19260~^~307~^96.^4^23.^~9~^~MC~^^^1^66.^164.^3^23.^169.^~4~^~05/01/2004~
-~19260~^~318~^302.^4^14.^~9~^~MC~^^^1^281.^345.^3^256.^348.^~4~^~05/01/2004~
-~19260~^~319~^85.^0^^~4~^~FLM~^^^^^^^^^^~05/01/2004~
-~19260~^~320~^86.^0^^~4~^~NC~^^^^^^^^^^~03/01/2009~
-~19260~^~321~^12.^0^^~4~^~FLM~^^^^^^^^^^~05/01/2004~
-~19260~^~322~^0.^0^^~4~^~FLM~^^^^^^^^^^~05/01/2004~
-~19260~^~324~^5.^0^^~4~^~BFFN~^~01211~^^^^^^^^^~03/01/2009~
-~19260~^~334~^0.^0^^~4~^~FLM~^^^^^^^^^^~05/01/2004~
-~19260~^~337~^0.^0^^~4~^~FLM~^^^^^^^^^^~05/01/2004~
-~19260~^~338~^0.^0^^~4~^~FLM~^^^^^^^^^^~05/01/2004~
-~19260~^~417~^4.^0^^~4~^~FLM~^^^^^^^^^^~05/01/2004~
-~19260~^~431~^0.^0^^~4~^~FLA~^^^^^^^^^^~10/01/2002~
-~19260~^~432~^4.^0^^~4~^~FLM~^^^^^^^^^^~05/01/2004~
-~19260~^~435~^4.^0^^~4~^~NC~^^^^^^^^^^~05/01/2009~
-~19260~^~601~^27.^4^8.^~9~^~MC~^^^1^18.^53.^3^-1.^54.^~4~^~05/01/2004~
-~19263~^~208~^87.^0^^~4~^~NC~^^^^^^^^^^~04/01/2005~
-~19263~^~262~^0.^0^^~4~^~FLA~^^^^^^^^^^~03/01/2003~
-~19263~^~263~^0.^0^^~4~^~FLA~^^^^^^^^^^~03/01/2003~
-~19263~^~268~^362.^0^^~4~^~NC~^^^^^^^^^^~04/01/2005~
-~19263~^~301~^5.^0^^~4~^^^^^^^^^^^~08/01/1991~
-~19263~^~304~^4.^0^^~4~^^^^^^^^^^^~08/01/1991~
-~19263~^~305~^6.^0^^~4~^^^^^^^^^^^~08/01/1991~
-~19263~^~306~^53.^0^^~1~^^^^^^^^^^^~08/01/1991~
-~19263~^~307~^4.^0^^~1~^^^^^^^^^^^~08/01/1991~
-~19263~^~318~^18.^0^^~4~^~FLA~^^^^^^^^^^~03/01/2003~
-~19263~^~319~^0.^0^^~4~^~FLA~^^^^^^^^^^~03/01/2003~
-~19263~^~320~^1.^0^^~4~^~FLA~^^^^^^^^^^~03/01/2003~
-~19263~^~321~^11.^0^^~4~^~FLA~^^^^^^^^^^~03/01/2003~
-~19263~^~322~^0.^0^^~4~^~FLA~^^^^^^^^^^~03/01/2003~
-~19263~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~
-~19263~^~334~^0.^0^^~4~^~FLA~^^^^^^^^^^~03/01/2003~
-~19263~^~337~^0.^0^^~4~^~FLA~^^^^^^^^^^~03/01/2003~
-~19263~^~338~^34.^0^^~4~^~FLA~^^^^^^^^^^~03/01/2003~
-~19263~^~417~^7.^0^^~4~^~FLA~^^^^^^^^^^~03/01/2003~
-~19263~^~431~^0.^0^^~4~^~FLA~^^^^^^^^^^~03/01/2003~
-~19263~^~432~^7.^0^^~4~^~FLA~^^^^^^^^^^~03/01/2003~
-~19263~^~435~^7.^0^^~4~^~NC~^^^^^^^^^^~12/01/2006~
-~19263~^~601~^0.^0^^~4~^~FLA~^^^^^^^^^^~04/01/2005~
-~19265~^~208~^173.^0^^~4~^~NC~^^^^^^^^^^~05/01/2009~
-~19265~^~262~^0.^0^^~4~^~FLM~^^^^^^^^^^~05/01/2004~
-~19265~^~263~^5.^0^^~4~^~FLM~^^^^^^^^^^~05/01/2004~
-~19265~^~268~^724.^0^^~4~^~NC~^^^^^^^^^^~05/01/2009~
-~19265~^~301~^121.^2^^~9~^~MC~^^^1^121.^121.^1^^^^~05/01/2004~
-~19265~^~304~^15.^0^^~4~^~FLM~^^^^^^^^^^~05/01/2004~
-~19265~^~305~^106.^0^^~4~^~FLM~^^^^^^^^^^~05/01/2004~
-~19265~^~306~^196.^0^^~4~^~FLM~^^^^^^^^^^~05/01/2004~
-~19265~^~307~^75.^2^^~9~^~MC~^^^1^72.^77.^1^^^^~05/01/2004~
-~19265~^~318~^264.^2^^~9~^~MC~^^^1^262.^266.^1^^^^~05/01/2004~
-~19265~^~319~^74.^0^^~4~^~FLM~^^^^^^^^^^~05/01/2004~
-~19265~^~320~^75.^0^^~4~^~FLM~^^^^^^^^^^~03/01/2009~
-~19265~^~321~^10.^0^^~4~^~FLM~^^^^^^^^^^~05/01/2004~
-~19265~^~322~^0.^0^^~4~^~FLM~^^^^^^^^^^~05/01/2004~
-~19265~^~324~^4.^0^^~4~^~BFFN~^~01211~^^^^^^^^^~03/01/2009~
-~19265~^~334~^0.^0^^~4~^~FLM~^^^^^^^^^^~05/01/2004~
-~19265~^~337~^0.^0^^~4~^~FLM~^^^^^^^^^^~05/01/2004~
-~19265~^~338~^0.^0^^~4~^~FLM~^^^^^^^^^^~05/01/2004~
-~19265~^~417~^5.^0^^~4~^~FLM~^^^^^^^^^^~05/01/2004~
-~19265~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2004~
-~19265~^~432~^5.^0^^~4~^~FLM~^^^^^^^^^^~05/01/2004~
-~19265~^~435~^5.^0^^~4~^~NC~^^^^^^^^^^~05/01/2009~
-~19265~^~601~^16.^2^^~9~^~MC~^^^1^16.^16.^1^^^^~05/01/2004~
-~19268~^~208~^540.^0^^~4~^~NC~^^^^^^^^^^~02/01/2003~
-~19268~^~262~^839.^0^^~4~^~FLC~^^^^^^^^^^~02/01/2003~
-~19268~^~263~^368.^0^^~4~^~FLC~^^^^^^^^^^~02/01/2003~
-~19268~^~268~^2259.^0^^~4~^~NC~^^^^^^^^^^~02/01/2003~
-~19268~^~301~^100.^1^^~8~^~LC~^^^^^^^^^^~02/01/2003~
-~19268~^~304~^107.^0^^~4~^~FLC~^^^^^^^^^^~02/01/2003~
-~19268~^~305~^135.^0^^~4~^~FLC~^^^^^^^^^^~02/01/2003~
-~19268~^~306~^342.^0^^~4~^~FLC~^^^^^^^^^^~02/01/2003~
-~19268~^~307~^25.^1^^~8~^~LC~^^^^^^^^^^~02/01/2003~
-~19268~^~318~^0.^1^^~8~^~LC~^^^^^^^^^^~02/01/2003~
-~19268~^~319~^0.^0^^~4~^~FLC~^^^^^^^^^^~02/01/2003~
-~19268~^~320~^0.^0^^~4~^~FLC~^^^^^^^^^^~02/01/2003~
-~19268~^~321~^0.^0^^~4~^~FLC~^^^^^^^^^^~02/01/2003~
-~19268~^~322~^0.^0^^~4~^~FLC~^^^^^^^^^^~02/01/2003~
-~19268~^~334~^0.^0^^~4~^~FLC~^^^^^^^^^^~02/01/2003~
-~19268~^~337~^0.^0^^~4~^~FLC~^^^^^^^^^^~02/01/2003~
-~19268~^~338~^16.^0^^~4~^~FLC~^^^^^^^^^^~02/01/2003~
-~19268~^~417~^3.^0^^~4~^~FLC~^^^^^^^^^^~02/01/2003~
-~19268~^~431~^0.^0^^~4~^~FLC~^^^^^^^^^^~02/01/2003~
-~19268~^~432~^3.^0^^~4~^~FLC~^^^^^^^^^^~02/01/2003~
-~19268~^~435~^3.^0^^~4~^~NC~^^^^^^^^^^~02/01/2003~
-~19268~^~601~^13.^1^^~8~^~LC~^^^^^^^^^^~02/01/2003~
-~19269~^~208~^373.^0^^~4~^~NC~^^^^^^^^^^~09/01/1996~
-~19269~^~268~^1559.^0^^~4~^^^^^^^^^^^
-~19269~^~307~^317.^1^^~1~^~A~^^^^^^^^^^~09/01/1996~
-~19270~^~208~^216.^0^^~4~^~NC~^^^^^^^^^^~08/01/1991~
-~19270~^~262~^3.^1^^~1~^^^^^^^^^^^~08/01/1991~
-~19270~^~263~^62.^1^^~1~^^^^^^^^^^^~08/01/1991~
-~19270~^~268~^904.^0^^~4~^^^^^^^^^^^~03/01/2009~
-~19270~^~301~^109.^34^2.^~1~^^^^^^^^^^^~08/01/1991~
-~19270~^~304~^29.^36^0.^~1~^^^^^^^^^^^~08/01/1991~
-~19270~^~305~^107.^28^1.^~1~^^^^^^^^^^^~08/01/1991~
-~19270~^~306~^249.^35^4.^~1~^^^^^^^^^^^~08/01/1991~
-~19270~^~307~^76.^36^2.^~1~^^^^^^^^^^^~08/01/1991~
-~19270~^~318~^416.^5^30.^~1~^^^^^^^^^^^~03/01/2003~
-~19270~^~319~^116.^0^^~4~^~BFFN~^~19095~^^^^^^^^^~03/01/2003~
-~19270~^~320~^118.^0^^~4~^~BFFN~^~19095~^^^^^^^^^~03/01/2003~
-~19270~^~321~^19.^0^^~4~^~BFFN~^~19095~^^^^^^^^^~03/01/2003~
-~19270~^~322~^0.^0^^~4~^~BFFN~^~19095~^^^^^^^^^~03/01/2003~
-~19270~^~324~^8.^0^^~4~^~BFFN~^~01211~^^^^^^^^^~03/01/2009~
-~19270~^~334~^0.^0^^~4~^~BFFN~^~19095~^^^^^^^^^~03/01/2003~
-~19270~^~337~^0.^0^^~4~^~BFFN~^~19095~^^^^^^^^^~03/01/2003~
-~19270~^~338~^0.^0^^~4~^~BFFN~^~19095~^^^^^^^^^~03/01/2003~
-~19270~^~417~^16.^5^1.^~1~^^^^^^^^^^^~08/01/1991~
-~19270~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~
-~19270~^~432~^16.^5^1.^~1~^^^^^^^^^^^~03/01/2009~
-~19270~^~435~^16.^0^^~4~^~NC~^^^^^^^^^^~03/01/2009~
-~19270~^~601~^34.^1^^~1~^^^^^^^^^^^~08/01/1991~
-~19271~^~208~^192.^0^^~4~^~NC~^^^^^^^^^^~08/01/1991~
-~19271~^~262~^0.^0^^~4~^~FLA~^^^^^^^^^^~03/01/2002~
-~19271~^~263~^0.^0^^~4~^~FLA~^^^^^^^^^^~03/01/2002~
-~19271~^~268~^803.^0^^~4~^^^^^^^^^^^
-~19271~^~301~^120.^4^4.^~1~^^^^^^^^^^^~08/01/1991~
-~19271~^~304~^14.^4^0.^~1~^^^^^^^^^^^~08/01/1991~
-~19271~^~305~^100.^2^^~1~^^^^^^^^^^^~03/01/2002~
-~19271~^~306~^188.^4^8.^~1~^^^^^^^^^^^~08/01/1991~
-~19271~^~307~^60.^4^10.^~1~^^^^^^^^^^^~08/01/1991~
-~19271~^~318~^320.^2^^~1~^^^^^^^^^^^~03/01/2002~
-~19271~^~319~^96.^0^^~4~^~FLA~^^^^^^^^^^~03/01/2002~
-~19271~^~320~^96.^0^^~4~^~NC~^^^^^^^^^^~03/01/2002~
-~19271~^~417~^12.^2^^~1~^^^^^^^^^^^~03/01/2002~
-~19271~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~
-~19271~^~432~^12.^2^^~1~^^^^^^^^^^^~03/01/2002~
-~19271~^~435~^12.^0^^~4~^~NC~^^^^^^^^^^~03/01/2002~
-~19271~^~601~^29.^2^^~1~^^^^^^^^^^^~03/01/2002~
-~19272~^~208~^341.^0^^~4~^~NC~^^^^^^^^^^~09/01/1996~
-~19272~^~268~^1428.^0^^~4~^^^^^^^^^^^
-~19272~^~307~^36.^1^^~1~^~A~^^^^^^^^^^~09/01/1996~
-~19272~^~318~^5436.^1^^~12~^~MA~^^^^^^^^^^~12/01/1997~
-~19273~^~208~^342.^0^^~4~^~NC~^^^^^^^^^^~09/01/1996~
-~19273~^~268~^1432.^0^^~4~^^^^^^^^^^^~05/01/2007~
-~19273~^~307~^111.^1^^~1~^~A~^^^^^^^^^^~09/01/1996~
-~19273~^~318~^835.^1^^~1~^~A~^^^^^^^^^^~09/01/1996~
-~19274~^~208~^373.^0^^~4~^~BFZN~^^^^^^^^^^~01/01/1999~
-~19274~^~268~^1561.^0^^~4~^^^^^^^^^^^
-~19274~^~301~^18.^0^^~4~^~BFZN~^^^^^^^^^^~01/01/1999~
-~19274~^~304~^14.^0^^~4~^~BFZN~^^^^^^^^^^~01/01/1999~
-~19274~^~305~^24.^0^^~4~^~BFZN~^^^^^^^^^^~01/01/1999~
-~19274~^~306~^164.^0^^~4~^~BFZN~^^^^^^^^^^~01/01/1999~
-~19274~^~307~^317.^0^^~4~^~BFZN~^^^^^^^^^^~01/01/1999~
-~19274~^~318~^116.^0^^~4~^~BFZN~^^^^^^^^^^~01/01/1999~
-~19274~^~417~^14.^0^^~4~^~BFZN~^^^^^^^^^^~01/01/1999~
-~19274~^~432~^14.^0^^~4~^~BFZN~^^^^^^^^^^~05/01/2011~
-~19274~^~601~^0.^0^^~4~^~BFZN~^^^^^^^^^^~01/01/1999~
-~19279~^~208~^549.^0^^~4~^~NC~^^^^^^^^^^~12/01/2006~
-~19279~^~262~^800.^0^^~4~^~RA~^^^^^^^^^^~02/01/2003~
-~19279~^~263~^178.^0^^~4~^~RA~^^^^^^^^^^~02/01/2003~
-~19279~^~268~^2298.^0^^~4~^~NC~^^^^^^^^^^~12/01/2006~
-~19279~^~301~^169.^0^^~4~^~RA~^^^^^^^^^^~12/01/2006~
-~19279~^~304~^64.^0^^~4~^~RA~^^^^^^^^^^~12/01/2006~
-~19279~^~305~^188.^0^^~4~^~RA~^^^^^^^^^^~12/01/2006~
-~19279~^~306~^413.^0^^~4~^~RA~^^^^^^^^^^~12/01/2006~
-~19279~^~307~^70.^0^^~4~^~RA~^^^^^^^^^^~12/01/2006~
-~19279~^~318~^168.^0^^~4~^~NC~^^^^^^^^^^~05/01/2011~
-~19279~^~319~^51.^0^^~4~^~RA~^^^^^^^^^^~12/01/2006~
-~19279~^~320~^51.^0^^~4~^~NC~^^^^^^^^^^~12/01/2006~
-~19279~^~321~^0.^0^^~4~^~RA~^^^^^^^^^^~02/01/2003~
-~19279~^~322~^0.^0^^~4~^~RA~^^^^^^^^^^~02/01/2003~
-~19279~^~324~^0.^0^^~4~^~FLA~^^^^^^^^^^~03/01/2009~
-~19279~^~334~^0.^0^^~4~^~RA~^^^^^^^^^^~04/01/2003~
-~19279~^~337~^0.^0^^~4~^~RA~^^^^^^^^^^~02/01/2003~
-~19279~^~338~^5.^0^^~4~^~RA~^^^^^^^^^^~12/01/2006~
-~19279~^~417~^10.^0^^~4~^~RA~^^^^^^^^^^~02/01/2003~
-~19279~^~431~^0.^0^^~4~^~RA~^^^^^^^^^^~02/01/2003~
-~19279~^~432~^10.^0^^~4~^~RA~^^^^^^^^^^~12/01/2006~
-~19279~^~435~^10.^0^^~4~^~NC~^^^^^^^^^^~03/01/2009~
-~19279~^~601~^20.^0^^~4~^~RA~^^^^^^^^^^~02/01/2003~
-~19280~^~208~^128.^0^^~4~^~NC~^^^^^^^^^^~04/01/1997~
-~19280~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2002~
-~19280~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2002~
-~19280~^~268~^536.^0^^~4~^^^^^^^^^^^~04/01/2005~
-~19280~^~301~^2.^1^^~4~^^^^^^^^^^^~08/01/1991~
-~19280~^~304~^1.^1^^~4~^^^^^^^^^^^~08/01/1991~
-~19280~^~305~^1.^1^^~4~^^^^^^^^^^^~08/01/1991~
-~19280~^~306~^3.^1^^~4~^^^^^^^^^^^~08/01/1991~
-~19280~^~307~^22.^1^^~4~^^^^^^^^^^^~08/01/1991~
-~19280~^~318~^0.^1^^~4~^^^^^^^^^^^~08/01/1991~
-~19280~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2002~
-~19280~^~320~^0.^0^^~1~^~AS~^^^^^^^^^^~03/01/2002~
-~19280~^~321~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~
-~19280~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~
-~19280~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~
-~19280~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~
-~19280~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~
-~19280~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~
-~19280~^~417~^0.^1^^~4~^^^^^^^^^^^~08/01/1991~
-~19280~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~
-~19280~^~432~^0.^1^^~4~^^^^^^^^^^^~08/01/1991~
-~19280~^~435~^0.^0^^~4~^~NC~^^^^^^^^^^~06/01/2008~
-~19280~^~601~^0.^1^^~4~^^^^^^^^^^^~08/01/1991~
-~19281~^~208~^53.^0^^~4~^~NC~^^^^^^^^^^~03/01/1996~
-~19281~^~268~^222.^0^^~4~^^^^^^^^^^^~04/01/2005~
-~19281~^~301~^1.^2^^~1~^~A~^^^^^^^^^^~03/01/1996~
-~19281~^~304~^0.^2^^~1~^~A~^^^^^^^^^^~03/01/1996~
-~19281~^~305~^0.^2^^~1~^~A~^^^^^^^^^^~03/01/1996~
-~19281~^~306~^6.^2^^~1~^~A~^^^^^^^^^^~03/01/1996~
-~19281~^~307~^4.^2^^~1~^~A~^^^^^^^^^^~03/01/1996~
-~19281~^~318~^167.^0^^~4~^~NC~^^^^^^^^^^~03/01/2002~
-~19281~^~417~^5.^2^^~1~^~A~^^^^^^^^^^~03/01/1996~
-~19281~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~
-~19281~^~432~^5.^2^^~1~^~A~^^^^^^^^^^~03/01/1996~
-~19281~^~435~^5.^0^^~4~^~NC~^^^^^^^^^^~04/01/2005~
-~19281~^~601~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2001~
-~19283~^~208~^79.^0^^~4~^~NC~^^^^^^^^^^~04/01/2005~
-~19283~^~262~^0.^0^^~4~^~FLA~^^^^^^^^^^~04/01/2005~
-~19283~^~263~^0.^0^^~4~^~FLA~^^^^^^^^^^~04/01/2005~
-~19283~^~268~^331.^0^^~4~^~NC~^^^^^^^^^^~04/01/2005~
-~19283~^~301~^0.^3^0.^~1~^~A~^^^1^0.^0.^^^^~1, 2, 3~^~04/01/2005~
-~19283~^~304~^1.^3^0.^~1~^~A~^^^1^1.^1.^2^0.^1.^~2, 3~^~04/01/2005~
-~19283~^~305~^0.^3^0.^~1~^~A~^^^1^0.^0.^^^^~1, 2, 3~^~04/01/2005~
-~19283~^~306~^15.^3^3.^~1~^~A~^^^1^7.^20.^2^-1.^31.^~2, 3~^~04/01/2005~
-~19283~^~307~^7.^3^0.^~1~^~A~^^^1^7.^7.^2^6.^7.^~2, 3~^~04/01/2005~
-~19283~^~318~^0.^0^^~4~^~FLA~^^^^^^^^^^~04/01/2005~
-~19283~^~319~^0.^0^^~4~^~FLA~^^^^^^^^^^~04/01/2005~
-~19283~^~320~^0.^0^^~4~^~FLA~^^^^^^^^^^~04/01/2005~
-~19283~^~321~^0.^0^^~4~^~FLA~^^^^^^^^^^~04/01/2005~
-~19283~^~322~^0.^0^^~4~^~FLA~^^^^^^^^^^~04/01/2005~
-~19283~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~
-~19283~^~334~^0.^0^^~4~^~FLA~^^^^^^^^^^~04/01/2005~
-~19283~^~337~^0.^0^^~4~^~FLA~^^^^^^^^^^~04/01/2005~
-~19283~^~338~^0.^0^^~4~^~FLA~^^^^^^^^^^~04/01/2005~
-~19283~^~417~^0.^0^^~4~^~FLA~^^^^^^^^^^~04/01/2005~
-~19283~^~431~^0.^0^^~4~^~FLA~^^^^^^^^^^~04/01/2005~
-~19283~^~432~^0.^0^^~4~^~FLA~^^^^^^^^^^~04/01/2005~
-~19283~^~435~^0.^0^^~4~^~NC~^^^^^^^^^^~12/01/2006~
-~19283~^~601~^0.^0^^~4~^~FLA~^^^^^^^^^^~04/01/2005~
-~19292~^~208~^475.^1^^~9~^~MC~^^^^^^^^^^~03/01/2006~
-~19292~^~268~^1987.^0^^~9~^~MC~^^^^^^^^^^~03/01/2006~
-~19292~^~301~^90.^1^^~9~^~MC~^^^^^^^^^^~02/01/2006~
-~19292~^~307~^136.^1^^~9~^~MC~^^^^^^^^^^~02/01/2006~
-~19292~^~318~^167.^1^^~9~^~MC~^^^^^^^^^^~02/01/2006~
-~19292~^~601~^12.^1^^~9~^~MC~^^^^^^^^^^~02/01/2006~
-~19293~^~208~^159.^0^^~4~^~NC~^^^^^^^^^^~03/01/2009~
-~19293~^~262~^0.^0^^~4~^~FLM~^^^^^^^^^^~03/01/2003~
-~19293~^~263~^0.^0^^~4~^~FLM~^^^^^^^^^^~03/01/2003~
-~19293~^~268~^665.^0^^~4~^^^^^^^^^^^~03/01/2009~
-~19293~^~301~^143.^8^4.^~1~^^^^^^^^^^^~08/01/1991~
-~19293~^~304~^14.^3^0.^~1~^^^^^^^^^^^~08/01/1991~
-~19293~^~305~^129.^3^3.^~1~^^^^^^^^^^^~08/01/1991~
-~19293~^~306~^211.^3^10.^~1~^^^^^^^^^^^~08/01/1991~
-~19293~^~307~^87.^8^4.^~1~^^^^^^^^^^^~08/01/1991~
-~19293~^~318~^212.^3^8.^~1~^^^^^^^^^^^~08/01/1991~
-~19293~^~319~^58.^0^^~4~^~FLA~^^^^^^^^^^~03/01/2003~
-~19293~^~320~^59.^0^^~4~^~FLA~^^^^^^^^^^~03/01/2003~
-~19293~^~321~^11.^0^^~4~^~FLA~^^^^^^^^^^~03/01/2003~
-~19293~^~322~^0.^0^^~4~^~FLA~^^^^^^^^^^~03/01/2003~
-~19293~^~324~^4.^0^^~4~^~BFFN~^~01211~^^^^^^^^^~03/01/2009~
-~19293~^~334~^0.^0^^~4~^~FLA~^^^^^^^^^^~03/01/2003~
-~19293~^~337~^0.^0^^~4~^~FLA~^^^^^^^^^^~03/01/2003~
-~19293~^~338~^0.^0^^~4~^~FLA~^^^^^^^^^^~03/01/2003~
-~19293~^~417~^6.^2^^~1~^^^^^^^^^^^~08/01/1991~
-~19293~^~431~^0.^0^^~4~^~FLM~^^^^^^^^^^~03/01/2003~
-~19293~^~432~^6.^2^^~1~^^^^^^^^^^^~03/01/2009~
-~19293~^~435~^6.^0^^~4~^~NC~^^^^^^^^^^~03/01/2009~
-~19293~^~601~^2.^2^^~1~^^^^^^^^^^^~08/01/1991~
-~19294~^~208~^173.^0^^~9~^~MC~^^^^^^^^^^~12/01/2006~
-~19294~^~262~^0.^0^^~4~^~FLA~^^^^^^^^^^~02/01/2003~
-~19294~^~263~^0.^0^^~4~^~FLA~^^^^^^^^^^~02/01/2003~
-~19294~^~268~^724.^0^^~9~^~MC~^^^^^^^^^^~12/01/2006~
-~19294~^~301~^14.^1^^~12~^~MA~^^^^^^^^^^~02/01/1998~
-~19294~^~304~^4.^0^^~4~^~FLA~^^^^^^^^^^~12/01/2006~
-~19294~^~305~^8.^0^^~4~^~FLA~^^^^^^^^^^~12/01/2006~
-~19294~^~306~^91.^0^^~4~^~FLA~^^^^^^^^^^~12/01/2006~
-~19294~^~307~^15.^1^^~8~^~LC~^^^^^^^^^^~02/01/2003~
-~19294~^~318~^22.^0^^~4~^~FLA~^^^^^^^^^^~12/01/2006~
-~19294~^~319~^0.^0^^~4~^~FLA~^^^^^^^^^^~02/01/2003~
-~19294~^~320~^1.^0^^~4~^~FLA~^^^^^^^^^^~12/01/2006~
-~19294~^~321~^9.^0^^~4~^~FLA~^^^^^^^^^^~12/01/2006~
-~19294~^~322~^0.^0^^~4~^~FLA~^^^^^^^^^^~02/01/2003~
-~19294~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~
-~19294~^~334~^9.^0^^~4~^~FLA~^^^^^^^^^^~12/01/2006~
-~19294~^~337~^0.^0^^~4~^~FLA~^^^^^^^^^^~12/01/2006~
-~19294~^~338~^17.^0^^~4~^~FLA~^^^^^^^^^^~12/01/2006~
-~19294~^~417~^1.^0^^~4~^~FLA~^^^^^^^^^^~12/01/2006~
-~19294~^~431~^0.^0^^~4~^~FLA~^^^^^^^^^^~02/01/2003~
-~19294~^~432~^1.^0^^~4~^~FLA~^^^^^^^^^^~12/01/2006~
-~19294~^~435~^1.^0^^~4~^~NC~^^^^^^^^^^~12/01/2006~
-~19294~^~601~^0.^1^^~8~^~LC~^^^^^^^^^^~02/01/2003~
-~19295~^~208~^536.^1^^~9~^~MC~^^^^^^^^^^~03/01/2006~
-~19295~^~268~^2244.^0^^~9~^~MC~^^^^^^^^^^~03/01/2006~
-~19295~^~301~^54.^1^^~9~^~MC~^^^^^^^^^^~02/01/2006~
-~19295~^~307~^358.^1^^~9~^~MC~^^^^^^^^^^~02/01/2006~
-~19295~^~318~^314.^1^^~9~^~MC~^^^^^^^^^^~02/01/2006~
-~19295~^~601~^24.^1^^~9~^~MC~^^^^^^^^^^~02/01/2006~
-~19296~^~208~^304.^0^^~4~^~NC~^^^^^^^^^^~08/01/1991~
-~19296~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~11/01/2002~
-~19296~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~11/01/2002~
-~19296~^~268~^1272.^0^^~4~^^^^^^^^^^^~12/01/2006~
-~19296~^~301~^6.^13^0.^~1~^^^^^^^^^^^~08/01/1991~
-~19296~^~304~^2.^14^0.^~1~^^^^^^^^^^^~08/01/1991~
-~19296~^~305~^4.^13^0.^~1~^^^^^^^^^^^~08/01/1991~
-~19296~^~306~^52.^14^9.^~1~^^^^^^^^^^^~08/01/1991~
-~19296~^~307~^4.^14^0.^~1~^^^^^^^^^^^~08/01/1991~
-~19296~^~318~^0.^1^^~4~^^^^^^^^^^^~08/01/1991~
-~19296~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2002~
-~19296~^~320~^0.^0^^~1~^~AS~^^^^^^^^^^~12/01/2006~
-~19296~^~321~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2003~
-~19296~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2003~
-~19296~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~
-~19296~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2003~
-~19296~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2003~
-~19296~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2003~
-~19296~^~417~^2.^1^^~1~^^^^^^^^^^^~08/01/1991~
-~19296~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~
-~19296~^~432~^2.^1^^~1~^^^^^^^^^^^~12/01/2006~
-~19296~^~435~^2.^0^^~4~^~NC~^^^^^^^^^^~12/01/2006~
-~19296~^~601~^0.^1^^~4~^^^^^^^^^^^~08/01/1991~
-~19297~^~208~^278.^0^^~4~^~NC~^^^^^^^^^^~11/01/2002~
-~19297~^~262~^0.^0^^~4~^~FLC~^^^^^^^^^^~11/01/2002~
-~19297~^~263~^0.^0^^~4~^~FLC~^^^^^^^^^^~11/01/2002~
-~19297~^~268~^1163.^0^^~4~^~NC~^^^^^^^^^^~03/01/2006~
-~19297~^~301~^20.^1^^~1~^^^^^^^^^^^~08/01/1991~
-~19297~^~304~^4.^1^^~1~^^^^^^^^^^^~08/01/1991~
-~19297~^~305~^19.^0^^~4~^~FLC~^^^^^^^^^^~02/01/2003~
-~19297~^~306~^77.^3^2.^~1~^^^^^^^^^^^~08/01/1991~
-~19297~^~307~^32.^5^9.^~1~^~A~^^^^^^^^^^~03/01/1998~
-~19297~^~318~^0.^0^^~4~^~NC~^^^^^^^^^^~05/01/2006~
-~19297~^~319~^0.^0^^~4~^~FLC~^^^^^^^^^^~02/01/2003~
-~19297~^~320~^0.^0^^~4~^~NC~^^^^^^^^^^~05/01/2006~
-~19297~^~321~^0.^0^^~4~^~FLC~^^^^^^^^^^~11/01/2002~
-~19297~^~322~^0.^0^^~4~^~FLC~^^^^^^^^^^~11/01/2002~
-~19297~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~
-~19297~^~334~^0.^0^^~4~^~FLC~^^^^^^^^^^~11/01/2002~
-~19297~^~337~^0.^0^^~4~^~FLC~^^^^^^^^^^~11/01/2002~
-~19297~^~338~^0.^0^^~4~^~FLC~^^^^^^^^^^~11/01/2002~
-~19297~^~417~^11.^0^^~4~^~FLC~^^^^^^^^^^~02/01/2003~
-~19297~^~431~^0.^0^^~4~^~FLC~^^^^^^^^^^~02/01/2003~
-~19297~^~432~^11.^0^^~4~^~FLC~^^^^^^^^^^~02/01/2003~
-~19297~^~435~^11.^0^^~4~^~NC~^^^^^^^^^^~05/01/2006~
-~19297~^~601~^0.^0^^~4~^~FLC~^^^^^^^^^^~02/01/2003~
-~19297~^~636~^12.^0^^~4~^~FLC~^^^^^^^^^^~11/01/2002~
-~19300~^~208~^266.^0^^~4~^~NC~^^^^^^^^^^~11/01/2002~
-~19300~^~262~^0.^0^^~4~^~FLA~^^^^^^^^^^~11/01/2002~
-~19300~^~263~^0.^0^^~4~^~FLA~^^^^^^^^^^~11/01/2002~
-~19300~^~268~^1115.^0^^~4~^~NC~^^^^^^^^^^~11/01/2002~
-~19300~^~301~^7.^70^0.^~6~^~JA~^^^1^7.^8.^1^0.^15.^~4~^~11/01/2002~
-~19300~^~304~^6.^70^0.^~6~^~JA~^^^1^6.^6.^1^3.^8.^~4~^~11/01/2002~
-~19300~^~305~^6.^67^1.^~6~^~JA~^^^1^5.^7.^1^-7.^19.^~4~^~11/01/2002~
-~19300~^~306~^54.^72^10.^~6~^~JA~^^^1^43.^64.^1^-77.^185.^~4~^~11/01/2002~
-~19300~^~307~^30.^77^1.^~11~^~JO~^^^1^28.^31.^1^10.^48.^~4~^~11/01/2002~
-~19300~^~318~^5.^0^^~4~^~FLA~^^^^^^^^^^~11/01/2002~
-~19300~^~319~^0.^0^^~4~^~FLA~^^^^^^^^^^~11/01/2002~
-~19300~^~320~^0.^0^^~4~^~FLA~^^^^^^^^^^~11/01/2002~
-~19300~^~321~^3.^0^^~4~^~FLA~^^^^^^^^^^~11/01/2002~
-~19300~^~322~^0.^0^^~4~^~FLA~^^^^^^^^^^~11/01/2002~
-~19300~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~
-~19300~^~334~^0.^0^^~4~^~FLA~^^^^^^^^^^~11/01/2002~
-~19300~^~337~^0.^0^^~4~^~FLA~^^^^^^^^^^~11/01/2002~
-~19300~^~338~^22.^0^^~4~^~FLA~^^^^^^^^^^~11/01/2002~
-~19300~^~417~^2.^0^^~4~^~FLA~^^^^^^^^^^~11/01/2002~
-~19300~^~431~^0.^0^^~4~^~FLA~^^^^^^^^^^~11/01/2002~
-~19300~^~432~^2.^0^^~4~^~FLA~^^^^^^^^^^~11/01/2002~
-~19300~^~435~^2.^0^^~4~^~NC~^^^^^^^^^^~12/01/2006~
-~19300~^~601~^0.^0^^~4~^~FLA~^^^^^^^^^^~11/01/2002~
-~19301~^~208~^474.^0^^~4~^~NC~^^^^^^^^^^~08/01/2009~
-~19301~^~262~^16.^0^^~4~^~RC~^^^^^^^^^^~05/01/2006~
-~19301~^~263~^129.^0^^~4~^~RC~^^^^^^^^^^~05/01/2006~
-~19301~^~268~^1982.^0^^~4~^~NC~^^^^^^^^^^~08/01/2009~
-~19301~^~301~^49.^0^^~4~^~RC~^^^^^^^^^^~05/01/2006~
-~19301~^~304~^46.^0^^~4~^~RC~^^^^^^^^^^~05/01/2006~
-~19301~^~305~^88.^0^^~4~^~RC~^^^^^^^^^^~05/01/2006~
-~19301~^~306~^170.^0^^~4~^~RC~^^^^^^^^^^~05/01/2006~
-~19301~^~307~^79.^0^^~4~^~RC~^^^^^^^^^^~05/01/2006~
-~19301~^~318~^228.^0^^~4~^~NC~^^^^^^^^^^~05/01/2006~
-~19301~^~319~^68.^0^^~4~^~RC~^^^^^^^^^^~05/01/2006~
-~19301~^~320~^68.^0^^~4~^~NC~^^^^^^^^^^~05/01/2006~
-~19301~^~334~^0.^0^^~4~^~RC~^^^^^^^^^^~05/01/2006~
-~19301~^~337~^0.^0^^~4~^~RC~^^^^^^^^^^~05/01/2006~
-~19301~^~338~^6.^0^^~4~^~RC~^^^^^^^^^^~05/01/2006~
-~19301~^~417~^11.^0^^~4~^~RC~^^^^^^^^^^~05/01/2006~
-~19301~^~431~^0.^0^^~4~^~RC~^^^^^^^^^^~05/01/2006~
-~19301~^~432~^11.^0^^~4~^~RC~^^^^^^^^^^~05/01/2006~
-~19301~^~435~^11.^0^^~4~^~NC~^^^^^^^^^^~08/01/2009~
-~19301~^~601~^23.^0^^~4~^~RC~^^^^^^^^^^~05/01/2006~
-~19302~^~208~^472.^1^^~9~^~MC~^^^^^^^^^^~03/01/2006~
-~19302~^~268~^1974.^0^^~9~^~MC~^^^^^^^^^^~03/01/2006~
-~19302~^~301~^132.^1^^~9~^~MC~^^^^^^^^^^~02/01/2006~
-~19302~^~307~^156.^1^^~9~^~MC~^^^^^^^^^^~02/01/2006~
-~19302~^~318~^166.^1^^~9~^~MC~^^^^^^^^^^~02/01/2006~
-~19302~^~601~^13.^1^^~9~^~MC~^^^^^^^^^^~02/01/2006~
-~19303~^~208~^246.^0^^~4~^~NC~^^^^^^^^^^~02/01/2003~
-~19303~^~262~^0.^0^^~4~^~FLC~^^^^^^^^^^~02/01/2003~
-~19303~^~263~^0.^0^^~4~^~FLC~^^^^^^^^^^~02/01/2003~
-~19303~^~268~^1029.^0^^~4~^^^^^^^^^^^~04/01/2005~
-~19303~^~301~^38.^1^^~1~^^^^^^^^^^^~08/01/1991~
-~19303~^~304~^2.^1^^~1~^^^^^^^^^^^~08/01/1991~
-~19303~^~305~^4.^0^^~4~^~FLC~^^^^^^^^^^~02/01/2003~
-~19303~^~306~^37.^1^^~1~^^^^^^^^^^^~08/01/1991~
-~19303~^~307~^56.^1^^~1~^^^^^^^^^^^~08/01/1991~
-~19303~^~318~^62.^0^^~4~^~FLC~^^^^^^^^^^~02/01/2003~
-~19303~^~319~^0.^0^^~4~^~FLC~^^^^^^^^^^~02/01/2003~
-~19303~^~320~^3.^0^^~4~^~FLC~^^^^^^^^^^~02/01/2003~
-~19303~^~321~^15.^0^^~4~^~FLC~^^^^^^^^^^~02/01/2003~
-~19303~^~322~^5.^0^^~4~^~FLC~^^^^^^^^^^~02/01/2003~
-~19303~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~
-~19303~^~334~^38.^0^^~4~^~FLC~^^^^^^^^^^~02/01/2003~
-~19303~^~337~^0.^0^^~4~^~FLC~^^^^^^^^^^~02/01/2003~
-~19303~^~338~^58.^0^^~4~^~FLC~^^^^^^^^^^~02/01/2003~
-~19303~^~417~^9.^0^^~4~^~FLC~^^^^^^^^^^~02/01/2003~
-~19303~^~431~^0.^0^^~4~^~FLC~^^^^^^^^^^~02/01/2003~
-~19303~^~432~^9.^0^^~4~^~FLC~^^^^^^^^^^~02/01/2003~
-~19303~^~435~^9.^0^^~4~^~NC~^^^^^^^^^^~12/01/2006~
-~19303~^~601~^0.^1^^~8~^~LC~^^^^^^^^^^~02/01/2003~
-~19304~^~208~^290.^0^^~4~^~NC~^^^^^^^^^^~03/01/2006~
-~19304~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~11/01/2002~
-~19304~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~11/01/2002~
-~19304~^~268~^1213.^0^^~4~^~NC~^^^^^^^^^^~03/01/2006~
-~19304~^~301~^205.^2^^~1~^^^^^^^^^^^~08/01/1991~
-~19304~^~304~^242.^2^^~1~^^^^^^^^^^^~08/01/1991~
-~19304~^~305~^31.^2^^~1~^^^^^^^^^^^~08/01/1991~
-~19304~^~306~^1464.^2^^~1~^^^^^^^^^^^~08/01/1991~
-~19304~^~307~^37.^2^^~1~^^^^^^^^^^^~08/01/1991~
-~19304~^~318~^0.^1^^~8~^~LC~^^^^^^^^^^~11/01/2002~
-~19304~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2002~
-~19304~^~320~^0.^0^^~4~^~NC~^^^^^^^^^^~03/01/2006~
-~19304~^~321~^0.^0^^~4~^~NR~^^^^^^^^^^~11/01/2002~
-~19304~^~322~^0.^0^^~4~^~NR~^^^^^^^^^^~11/01/2002~
-~19304~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~
-~19304~^~334~^0.^0^^~4~^~NR~^^^^^^^^^^~11/01/2002~
-~19304~^~337~^0.^0^^~4~^~NR~^^^^^^^^^^~11/01/2002~
-~19304~^~338~^0.^0^^~4~^~NR~^^^^^^^^^^~11/01/2002~
-~19304~^~417~^0.^2^^~1~^^^^^^^^^^^~08/01/1991~
-~19304~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~
-~19304~^~432~^0.^2^^~1~^^^^^^^^^^^~03/01/2006~
-~19304~^~435~^0.^0^^~4~^~NC~^^^^^^^^^^~10/01/2006~
-~19304~^~601~^0.^1^^~8~^~LC~^^^^^^^^^^~11/01/2002~
-~19306~^~208~^480.^1^^~9~^~MC~^^^^^^^^^^~03/01/2006~
-~19306~^~268~^2007.^0^^~9~^~MC~^^^^^^^^^^~03/01/2006~
-~19306~^~301~^96.^1^^~9~^~MC~^^^^^^^^^^~01/01/2006~
-~19306~^~307~^224.^1^^~9~^~MC~^^^^^^^^^^~01/01/2006~
-~19306~^~318~^174.^1^^~9~^~MC~^^^^^^^^^^~01/01/2006~
-~19306~^~601~^13.^1^^~9~^~MC~^^^^^^^^^^~01/01/2006~
-~19307~^~208~^463.^0^^~4~^~NC~^^^^^^^^^^~05/01/2009~
-~19307~^~268~^1935.^0^^~4~^~NC~^^^^^^^^^^~05/01/2009~
-~19307~^~301~^91.^1^^~9~^~MC~^^^^^^^^^^~01/01/2006~
-~19307~^~307~^146.^1^^~9~^~MC~^^^^^^^^^^~01/01/2006~
-~19307~^~318~^137.^1^^~9~^~MC~^^^^^^^^^^~01/01/2006~
-~19307~^~601~^11.^1^^~9~^~MC~^^^^^^^^^^~01/01/2006~
-~19308~^~208~^443.^1^^~9~^~MC~^^^^^^^^^^~03/01/2006~
-~19308~^~268~^1852.^0^^~9~^~MC~^^^^^^^^^^~03/01/2006~
-~19308~^~301~^60.^1^^~9~^~MC~^^^^^^^^^^~01/01/2006~
-~19308~^~307~^172.^1^^~9~^~MC~^^^^^^^^^^~01/01/2006~
-~19308~^~318~^99.^1^^~9~^~MC~^^^^^^^^^^~01/01/2006~
-~19308~^~601~^7.^1^^~9~^~MC~^^^^^^^^^^~01/01/2006~
-~19309~^~208~^408.^1^^~9~^~MC~^^^^^^^^^^~02/01/2006~
-~19309~^~268~^1707.^0^^~9~^~MC~^^^^^^^^^^~02/01/2006~
-~19309~^~301~^0.^1^^~9~^~MC~^^^^^^^^^^~02/01/2006~
-~19309~^~307~^2.^1^^~9~^~MC~^^^^^^^^^^~02/01/2006~
-~19309~^~318~^0.^1^^~9~^~MC~^^^^^^^^^^~02/01/2006~
-~19309~^~320~^0.^0^^~4~^~NC~^^^^^^^^^^~03/01/2009~
-~19309~^~601~^0.^1^^~9~^~MC~^^^^^^^^^^~02/01/2006~
-~19310~^~208~^325.^0^^~4~^~NC~^^^^^^^^^^~08/01/1991~
-~19310~^~268~^1360.^0^^~4~^^^^^^^^^^^~06/01/2005~
-~19310~^~301~^7.^2^^~1~^^^^^^^^^^^~08/01/1991~
-~19310~^~304~^1.^2^^~1~^^^^^^^^^^^~08/01/1991~
-~19310~^~305~^2.^2^^~1~^^^^^^^^^^^~08/01/1991~
-~19310~^~306~^7.^2^^~1~^^^^^^^^^^^~08/01/1991~
-~19310~^~307~^200.^2^^~1~^^^^^^^^^^^~08/01/1991~
-~19310~^~318~^3.^2^^~1~^^^^^^^^^^^~08/01/1991~
-~19310~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2002~
-~19310~^~320~^0.^0^^~4~^~NC~^^^^^^^^^^~06/01/2002~
-~19310~^~417~^1.^2^^~1~^^^^^^^^^^^~08/01/1991~
-~19310~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~
-~19310~^~432~^1.^2^^~1~^^^^^^^^^^^~08/01/1991~
-~19310~^~435~^1.^0^^~4~^~NC~^^^^^^^^^^~05/01/2006~
-~19310~^~601~^0.^1^^~4~^^^^^^^^^^^~08/01/1991~
-~19312~^~208~^100.^0^^~4~^~NC~^^^^^^^^^^~12/01/2006~
-~19312~^~262~^0.^0^^~4~^~FLC~^^^^^^^^^^~02/01/2003~
-~19312~^~263~^0.^0^^~4~^~FLC~^^^^^^^^^^~02/01/2003~
-~19312~^~268~^420.^0^^~4~^~NC~^^^^^^^^^^~12/01/2006~
-~19312~^~301~^4.^2^^~1~^^^^^^^^^^^~08/01/1991~
-~19312~^~304~^2.^2^^~1~^^^^^^^^^^^~08/01/1991~
-~19312~^~305~^7.^2^^~1~^^^^^^^^^^^~08/01/1991~
-~19312~^~306~^45.^2^^~1~^^^^^^^^^^^~08/01/1991~
-~19312~^~307~^47.^1^^~8~^~LC~^^^^^^^^^^~12/01/2006~
-~19312~^~318~^24.^0^^~4~^~FLC~^^^^^^^^^^~12/01/2006~
-~19312~^~319~^0.^0^^~4~^~FLC~^^^^^^^^^^~02/01/2003~
-~19312~^~320~^2.^0^^~4~^~FLC~^^^^^^^^^^~12/01/2006~
-~19312~^~321~^10.^0^^~4~^~FLC~^^^^^^^^^^~12/01/2006~
-~19312~^~322~^0.^0^^~4~^~FLC~^^^^^^^^^^~02/01/2003~
-~19312~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~
-~19312~^~334~^8.^0^^~4~^~FLC~^^^^^^^^^^~12/01/2006~
-~19312~^~337~^0.^0^^~4~^~FLC~^^^^^^^^^^~12/01/2006~
-~19312~^~338~^11.^0^^~4~^~FLC~^^^^^^^^^^~12/01/2006~
-~19312~^~417~^0.^0^^~4~^~FLC~^^^^^^^^^^~12/01/2006~
-~19312~^~431~^0.^0^^~4~^~FLC~^^^^^^^^^^~02/01/2003~
-~19312~^~432~^0.^0^^~4~^~FLC~^^^^^^^^^^~12/01/2006~
-~19312~^~435~^0.^0^^~4~^~NC~^^^^^^^^^^~12/01/2006~
-~19312~^~601~^0.^1^^~8~^~LC~^^^^^^^^^^~02/01/2003~
-~19313~^~208~^409.^1^^~9~^~MC~^^^^^^^^^^~03/01/2006~
-~19313~^~268~^1710.^0^^~9~^~MC~^^^^^^^^^^~03/01/2006~
-~19313~^~301~^0.^1^^~9~^~MC~^^^^^^^^^^~02/01/2006~
-~19313~^~307~^2.^1^^~9~^~MC~^^^^^^^^^^~02/01/2006~
-~19313~^~318~^0.^1^^~9~^~MC~^^^^^^^^^^~02/01/2006~
-~19313~^~320~^0.^0^^~4~^~NC~^^^^^^^^^^~03/01/2009~
-~19313~^~601~^0.^1^^~9~^~MC~^^^^^^^^^^~02/01/2006~
-~19314~^~208~^115.^0^^~4~^~NC~^^^^^^^^^^~03/01/1998~
-~19314~^~268~^481.^0^^~4~^^^^^^^^^^^~03/01/2009~
-~19314~^~301~^11.^2^^~1~^^^^^^^^^^^~08/01/1991~
-~19314~^~304~^7.^2^^~1~^^^^^^^^^^^~08/01/1991~
-~19314~^~305~^15.^2^^~1~^^^^^^^^^^^~08/01/1991~
-~19314~^~306~^105.^2^^~1~^^^^^^^^^^^~08/01/1991~
-~19314~^~307~^18.^4^8.^~1~^~A~^^^^^^^^^^~03/01/1998~
-~19314~^~318~^205.^2^^~1~^^^^^^^^^^^~08/01/1991~
-~19314~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2002~
-~19314~^~320~^10.^0^^~4~^~NC~^^^^^^^^^^~06/01/2002~
-~19314~^~324~^0.^0^^~4~^~FLC~^^^^^^^^^^~03/01/2009~
-~19314~^~417~^4.^2^^~1~^^^^^^^^^^^~08/01/1991~
-~19314~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~
-~19314~^~432~^4.^2^^~1~^^^^^^^^^^^~08/01/1991~
-~19314~^~435~^4.^0^^~4~^~NC~^^^^^^^^^^~03/01/2009~
-~19314~^~601~^0.^0^^~4~^^^^^^^^^^^~08/01/1991~
-~19315~^~208~^400.^1^^~9~^~MC~^^^^^^^^^^~03/01/2006~
-~19315~^~268~^1674.^0^^~9~^~MC~^^^^^^^^^^~03/01/2006~
-~19315~^~301~^0.^1^^~9~^~MC~^^^^^^^^^^~02/01/2006~
-~19315~^~307~^89.^1^^~9~^~MC~^^^^^^^^^^~02/01/2006~
-~19315~^~318~^0.^1^^~9~^~MC~^^^^^^^^^^~02/01/2006~
-~19315~^~320~^0.^0^^~4~^~NC~^^^^^^^^^^~03/01/2009~
-~19315~^~601~^0.^1^^~9~^~MC~^^^^^^^^^^~02/01/2006~
-~19318~^~208~^367.^0^^~4~^~NC~^^^^^^^^^^~08/01/1991~
-~19318~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2002~
-~19318~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2002~
-~19318~^~268~^1536.^0^^~4~^^^^^^^^^^^~05/01/2005~
-~19318~^~301~^6.^1^^~4~^^^^^^^^^^^~08/01/1991~
-~19318~^~304~^2.^1^^~4~^^^^^^^^^^^~08/01/1991~
-~19318~^~305~^804.^1^^~4~^^^^^^^^^^^~08/01/1991~
-~19318~^~306~^15.^0^^~4~^^^^^^^^^^^~08/01/1991~
-~19318~^~307~^1499.^0^^~4~^^^^^^^^^^^~08/01/1991~
-~19318~^~318~^0.^1^^~4~^^^^^^^^^^^~08/01/1991~
-~19318~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2002~
-~19318~^~320~^0.^0^^~1~^~AS~^^^^^^^^^^~03/01/2002~
-~19318~^~417~^0.^1^^~4~^^^^^^^^^^^~08/01/1991~
-~19318~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~
-~19318~^~432~^0.^1^^~4~^^^^^^^^^^^~08/01/1991~
-~19318~^~435~^0.^0^^~4~^~NC~^^^^^^^^^^~05/01/2006~
-~19318~^~601~^0.^1^^~4~^^^^^^^^^^^~08/01/1991~
-~19319~^~208~^115.^0^^~4~^~NC~^^^^^^^^^^~05/01/2009~
-~19319~^~262~^0.^0^^~6~^~RPI~^^^^^^^^^^~03/01/2002~
-~19319~^~263~^0.^0^^~6~^~RPI~^^^^^^^^^^~03/01/2002~
-~19319~^~268~^480.^0^^~4~^~NC~^^^^^^^^^^~05/01/2009~
-~19319~^~301~^94.^0^^~6~^~RPI~^^^^^^^^^^~03/01/2009~
-~19319~^~304~^9.^0^^~6~^~RPI~^^^^^^^^^^~03/01/2009~
-~19319~^~305~^206.^0^^~6~^~RPI~^^^^^^^^^^~03/01/2009~
-~19319~^~306~^112.^0^^~6~^~RPI~^^^^^^^^^^~03/01/2009~
-~19319~^~307~^290.^0^^~6~^~RPI~^^^^^^^^^^~03/01/2009~
-~19319~^~318~^134.^0^^~4~^~NC~^^^^^^^^^^~06/01/2009~
-~19319~^~319~^38.^0^^~6~^~RPI~^^^^^^^^^^~03/01/2009~
-~19319~^~320~^38.^0^^~4~^~NC~^^^^^^^^^^~06/01/2009~
-~19319~^~321~^6.^0^^~1~^~RPA~^^^^^^^^^^~03/01/2009~
-~19319~^~322~^0.^0^^~1~^~RPA~^^^^^^^^^^~05/01/2009~
-~19319~^~324~^42.^0^^~1~^~RPA~^^^^^^^^^^~06/01/2009~
-~19319~^~334~^0.^0^^~1~^~RPA~^^^^^^^^^^~05/01/2009~
-~19319~^~337~^0.^0^^~1~^~RPA~^^^^^^^^^^~05/01/2009~
-~19319~^~338~^0.^0^^~1~^~RPA~^^^^^^^^^^~05/01/2009~
-~19319~^~417~^4.^0^^~6~^~RPI~^^^^^^^^^^~03/01/2002~
-~19319~^~431~^0.^0^^~6~^~RPI~^^^^^^^^^^~03/01/2002~
-~19319~^~432~^4.^0^^~6~^~RPI~^^^^^^^^^^~03/01/2002~
-~19319~^~435~^4.^0^^~4~^~NC~^^^^^^^^^^~06/01/2009~
-~19319~^~601~^9.^0^^~6~^~RPI~^^^^^^^^^^~03/01/2009~
-~19320~^~208~^366.^0^^~4~^~NC~^^^^^^^^^^~05/01/2009~
-~19320~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2002~
-~19320~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2002~
-~19320~^~268~^1532.^0^^~4~^~NC~^^^^^^^^^^~05/01/2009~
-~19320~^~301~^20.^1^^~4~^^^^^^^^^^^~08/01/1991~
-~19320~^~304~^8.^1^^~4~^^^^^^^^^^^~08/01/1991~
-~19320~^~305~^5.^1^^~4~^^^^^^^^^^^~08/01/1991~
-~19320~^~306~^17.^0^^~4~^^^^^^^^^^^~08/01/1991~
-~19320~^~307~^788.^0^^~4~^^^^^^^^^^^~08/01/1991~
-~19320~^~318~^0.^1^^~4~^^^^^^^^^^^~08/01/1991~
-~19320~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2002~
-~19320~^~320~^0.^0^^~1~^~AS~^^^^^^^^^^~03/01/2002~
-~19320~^~417~^0.^1^^~4~^^^^^^^^^^^~08/01/1991~
-~19320~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~
-~19320~^~432~^0.^1^^~4~^^^^^^^^^^^~08/01/1991~
-~19320~^~435~^0.^0^^~4~^~NC~^^^^^^^^^^~05/01/2009~
-~19320~^~601~^0.^1^^~4~^^^^^^^^^^^~08/01/1991~
-~19321~^~208~^111.^0^^~4~^~NC~^^^^^^^^^^~03/01/2009~
-~19321~^~262~^0.^0^^~4~^~RP~^^^^^^^^^^~03/01/2002~
-~19321~^~263~^0.^0^^~4~^~RP~^^^^^^^^^^~03/01/2002~
-~19321~^~268~^463.^0^^~4~^~NC~^^^^^^^^^^~03/01/2009~
-~19321~^~301~^101.^0^^~4~^~RP~^^^^^^^^^^~03/01/2009~
-~19321~^~304~^10.^0^^~4~^~RP~^^^^^^^^^^~03/01/2009~
-~19321~^~305~^74.^0^^~4~^~RP~^^^^^^^^^^~03/01/2009~
-~19321~^~306~^118.^0^^~4~^~RP~^^^^^^^^^^~03/01/2009~
-~19321~^~307~^158.^0^^~4~^~RP~^^^^^^^^^^~03/01/2009~
-~19321~^~318~^141.^0^^~4~^~NC~^^^^^^^^^^~03/01/2009~
-~19321~^~319~^39.^0^^~4~^~RP~^^^^^^^^^^~03/01/2009~
-~19321~^~320~^40.^0^^~4~^~NC~^^^^^^^^^^~03/01/2009~
-~19321~^~321~^6.^0^^~4~^~RP~^^^^^^^^^^~03/01/2009~
-~19321~^~322~^0.^0^^~4~^~RP~^^^^^^^^^^~03/01/2009~
-~19321~^~324~^44.^0^^~4~^~RP~^^^^^^^^^^~06/01/2009~
-~19321~^~334~^0.^0^^~4~^~RP~^^^^^^^^^^~03/01/2009~
-~19321~^~337~^0.^0^^~4~^~RP~^^^^^^^^^^~03/01/2009~
-~19321~^~338~^0.^0^^~4~^~RP~^^^^^^^^^^~03/01/2009~
-~19321~^~417~^4.^0^^~4~^~RP~^^^^^^^^^^~03/01/2009~
-~19321~^~431~^0.^0^^~4~^~RP~^^^^^^^^^^~03/01/2002~
-~19321~^~432~^4.^0^^~4~^~RP~^^^^^^^^^^~03/01/2009~
-~19321~^~435~^4.^0^^~4~^~NC~^^^^^^^^^^~05/01/2009~
-~19321~^~601~^9.^0^^~4~^~RP~^^^^^^^^^^~03/01/2009~
-~19321~^~636~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2009~
-~19322~^~208~^415.^0^^~4~^~NC~^^^^^^^^^^~08/01/2011~
-~19322~^~262~^0.^0^^~4~^~FLA~^^^^^^^^^^~03/01/2003~
-~19322~^~263~^0.^0^^~4~^~FLA~^^^^^^^^^^~03/01/2003~
-~19322~^~268~^1736.^0^^~4~^~NC~^^^^^^^^^^~08/01/2011~
-~19322~^~301~^8.^0^^~4~^~FLA~^^^^^^^^^^~03/01/2003~
-~19322~^~304~^17.^0^^~4~^~FLA~^^^^^^^^^^~03/01/2003~
-~19322~^~305~^721.^1^^~4~^^^^^^^^^^^~12/01/2006~
-~19322~^~306~^96.^0^^~4~^~FLA~^^^^^^^^^^~12/01/2006~
-~19322~^~307~^1040.^1^^~8~^~LC~^^^^^^^^^^~12/01/2006~
-~19322~^~318~^0.^0^^~4~^~FLA~^^^^^^^^^^~03/01/2003~
-~19322~^~319~^0.^0^^~4~^~FLA~^^^^^^^^^^~03/01/2003~
-~19322~^~320~^0.^0^^~4~^~FLA~^^^^^^^^^^~07/01/2007~
-~19322~^~321~^0.^0^^~4~^~FLA~^^^^^^^^^^~03/01/2003~
-~19322~^~322~^0.^0^^~4~^~FLA~^^^^^^^^^^~03/01/2003~
-~19322~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~
-~19322~^~334~^0.^0^^~4~^~FLA~^^^^^^^^^^~03/01/2003~
-~19322~^~337~^0.^0^^~4~^~FLA~^^^^^^^^^^~03/01/2003~
-~19322~^~338~^0.^0^^~4~^~FLA~^^^^^^^^^^~03/01/2003~
-~19322~^~417~^2.^0^^~4~^~FLA~^^^^^^^^^^~03/01/2003~
-~19322~^~431~^0.^0^^~4~^~FLA~^^^^^^^^^^~12/01/2006~
-~19322~^~432~^2.^0^^~4~^~FLA~^^^^^^^^^^~03/01/2003~
-~19322~^~435~^2.^0^^~4~^~NC~^^^^^^^^^^~07/01/2007~
-~19322~^~601~^0.^1^^~8~^~LC~^^^^^^^^^^~12/01/2006~
-~19323~^~208~^117.^0^^~4~^~NC~^^^^^^^^^^~08/01/1991~
-~19323~^~268~^490.^0^^~4~^^^^^^^^^^^
-~19323~^~301~^100.^0^^~1~^^^^^^^^^^^~08/01/1991~
-~19323~^~304~^14.^0^^~1~^^^^^^^^^^^~08/01/1991~
-~19323~^~305~^200.^0^^~1~^^^^^^^^^^^~08/01/1991~
-~19323~^~306~^129.^0^^~1~^^^^^^^^^^^~08/01/1991~
-~19323~^~307~^246.^0^^~1~^^^^^^^^^^^~08/01/1991~
-~19323~^~318~^105.^0^^~1~^^^^^^^^^^^~08/01/1991~
-~19323~^~319~^23.^0^^~4~^~O~^^^^^^^^^^~03/01/2002~
-~19323~^~320~^24.^0^^~4~^~NC~^^^^^^^^^^~06/01/2002~
-~19323~^~321~^15.^0^^~4~^~O~^^^^^^^^^^~06/01/2002~
-~19323~^~417~^4.^0^^~1~^^^^^^^^^^^~08/01/1991~
-~19323~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~
-~19323~^~432~^4.^0^^~1~^^^^^^^^^^^~08/01/1991~
-~19323~^~435~^4.^0^^~4~^~NC~^^^^^^^^^^~06/01/2002~
-~19323~^~601~^11.^0^^~1~^^^^^^^^^^^~08/01/1991~
-~19323~^~636~^0.^0^^~1~^^^^^^^^^^^~08/01/1991~
-~19324~^~208~^434.^0^^~4~^~NC~^^^^^^^^^^~12/01/2006~
-~19324~^~262~^0.^0^^~4~^~FLA~^^^^^^^^^^~03/01/2003~
-~19324~^~263~^0.^0^^~4~^~FLA~^^^^^^^^^^~12/01/2006~
-~19324~^~268~^1814.^0^^~4~^~NC~^^^^^^^^^^~12/01/2006~
-~19324~^~301~^8.^0^^~4~^~FLA~^^^^^^^^^^~03/01/2003~
-~19324~^~304~^15.^0^^~4~^~FLA~^^^^^^^^^^~03/01/2003~
-~19324~^~305~^35.^0^^~4~^~FLA~^^^^^^^^^^~03/01/2003~
-~19324~^~306~^133.^0^^~4~^~FLA~^^^^^^^^^^~03/01/2003~
-~19324~^~307~^682.^1^^~8~^~LC~^^^^^^^^^^~12/01/2006~
-~19324~^~318~^0.^0^^~4~^~FLA~^^^^^^^^^^~11/01/1997~
-~19324~^~319~^0.^0^^~4~^~FLA~^^^^^^^^^^~03/01/2003~
-~19324~^~320~^0.^0^^~4~^~FLA~^^^^^^^^^^~03/01/2003~
-~19324~^~321~^0.^0^^~4~^~FLA~^^^^^^^^^^~03/01/2003~
-~19324~^~322~^0.^0^^~4~^~FLA~^^^^^^^^^^~03/01/2003~
-~19324~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~
-~19324~^~334~^0.^0^^~4~^~FLA~^^^^^^^^^^~03/01/2003~
-~19324~^~337~^0.^0^^~4~^~FLA~^^^^^^^^^^~03/01/2003~
-~19324~^~338~^0.^0^^~4~^~FLA~^^^^^^^^^^~03/01/2003~
-~19324~^~417~^2.^0^^~4~^~FLA~^^^^^^^^^^~03/01/2003~
-~19324~^~431~^0.^0^^~4~^~FLA~^^^^^^^^^^~03/01/2003~
-~19324~^~432~^2.^0^^~4~^~FLA~^^^^^^^^^^~03/01/2003~
-~19324~^~435~^2.^0^^~4~^~NC~^^^^^^^^^^~12/01/2006~
-~19324~^~601~^0.^0^^~4~^~FLA~^^^^^^^^^^~11/01/1997~
-~19325~^~208~^114.^0^^~4~^~NC~^^^^^^^^^^~08/01/1991~
-~19325~^~268~^477.^0^^~4~^^^^^^^^^^^
-~19325~^~301~^111.^0^^~1~^^^^^^^^^^^~08/01/1991~
-~19325~^~304~^16.^0^^~1~^^^^^^^^^^^~08/01/1991~
-~19325~^~305~^88.^0^^~1~^^^^^^^^^^^~08/01/1991~
-~19325~^~306~^157.^0^^~1~^^^^^^^^^^^~08/01/1991~
-~19325~^~307~^162.^0^^~1~^^^^^^^^^^^~08/01/1991~
-~19325~^~318~^110.^0^^~1~^^^^^^^^^^^~08/01/1991~
-~19325~^~319~^25.^0^^~4~^~O~^^^^^^^^^^~03/01/2002~
-~19325~^~320~^26.^0^^~4~^~NC~^^^^^^^^^^~06/01/2002~
-~19325~^~321~^16.^0^^~4~^~O~^^^^^^^^^^~06/01/2002~
-~19325~^~417~^4.^0^^~1~^^^^^^^^^^^~08/01/1991~
-~19325~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~
-~19325~^~432~^4.^0^^~1~^^^^^^^^^^^~08/01/1991~
-~19325~^~435~^4.^0^^~4~^~NC~^^^^^^^^^^~06/01/2002~
-~19325~^~601~^12.^0^^~1~^^^^^^^^^^^~08/01/1991~
-~19325~^~636~^0.^0^^~1~^^^^^^^^^^^~08/01/1991~
-~19326~^~208~^539.^0^^~4~^~NC~^^^^^^^^^^~05/01/2009~
-~19326~^~268~^2255.^0^^~4~^~NC~^^^^^^^^^^~05/01/2009~
-~19326~^~301~^1164.^1^^~9~^~MC~^^^^^^^^^^~02/01/2006~
-~19326~^~307~^7.^1^^~9~^~MC~^^^^^^^^^^~02/01/2006~
-~19326~^~318~^31.^1^^~9~^~MC~^^^^^^^^^^~02/01/2006~
-~19326~^~417~^273.^1^^~8~^~LC~^^^^^^^^^^~02/01/2006~
-~19326~^~432~^273.^1^^~8~^~LC~^^^^^^^^^^~12/01/2008~
-~19326~^~601~^0.^1^^~9~^~MC~^^^^^^^^^^~02/01/2006~
-~19327~^~208~^525.^0^^~4~^~NC~^^^^^^^^^^~05/01/2009~
-~19327~^~268~^2197.^0^^~4~^~NC~^^^^^^^^^^~05/01/2009~
-~19327~^~301~^985.^1^^~9~^~MC~^^^^^^^^^^~02/01/2006~
-~19327~^~307~^8.^1^^~9~^~MC~^^^^^^^^^^~02/01/2006~
-~19327~^~318~^25.^1^^~9~^~MC~^^^^^^^^^^~07/01/2006~
-~19327~^~417~^182.^1^^~8~^~LC~^^^^^^^^^^~02/01/2006~
-~19327~^~432~^182.^1^^~8~^~LC~^^^^^^^^^^~05/01/2009~
-~19327~^~601~^0.^1^^~9~^~MC~^^^^^^^^^^~02/01/2006~
-~19328~^~208~^517.^0^^~4~^~NC~^^^^^^^^^^~05/01/2009~
-~19328~^~268~^2164.^0^^~4~^~NC~^^^^^^^^^^~05/01/2009~
-~19328~^~301~^1070.^1^^~9~^~MC~^^^^^^^^^^~02/01/2006~
-~19328~^~307~^40.^1^^~9~^~MC~^^^^^^^^^^~02/01/2006~
-~19328~^~318~^27.^1^^~9~^~MC~^^^^^^^^^^~02/01/2006~
-~19328~^~417~^200.^1^^~8~^~LC~^^^^^^^^^^~02/01/2006~
-~19328~^~432~^200.^1^^~8~^~LC~^^^^^^^^^^~12/01/2008~
-~19328~^~601~^0.^1^^~9~^~MC~^^^^^^^^^^~02/01/2006~
-~19330~^~208~^378.^0^^~4~^~NC~^^^^^^^^^^~08/01/1991~
-~19330~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2002~
-~19330~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2002~
-~19330~^~268~^1582.^0^^~4~^^^^^^^^^^^~05/01/2006~
-~19330~^~301~^2.^1^^~4~^^^^^^^^^^^~08/01/1991~
-~19330~^~304~^0.^1^^~4~^^^^^^^^^^^~08/01/1991~
-~19330~^~305~^752.^2^^~1~^^^^^^^^^^^~08/01/1991~
-~19330~^~306~^8.^12^1.^~1~^^^^^^^^^^^~08/01/1991~
-~19330~^~307~^1332.^13^32.^~1~^^^^^^^^^^^~08/01/1991~
-~19330~^~318~^0.^1^^~4~^^^^^^^^^^^~08/01/1991~
-~19330~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2002~
-~19330~^~320~^0.^0^^~1~^~AS~^^^^^^^^^^~03/01/2002~
-~19330~^~417~^0.^1^^~4~^^^^^^^^^^^~08/01/1991~
-~19330~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~
-~19330~^~432~^0.^1^^~4~^^^^^^^^^^^~08/01/1991~
-~19330~^~435~^0.^0^^~4~^~NC~^^^^^^^^^^~05/01/2006~
-~19330~^~601~^0.^1^^~4~^^^^^^^^^^^~08/01/1991~
-~19331~^~208~^115.^0^^~4~^~NC~^^^^^^^^^^~08/01/1991~
-~19331~^~268~^481.^0^^~4~^^^^^^^^^^^~03/01/2006~
-~19331~^~301~^99.^0^^~1~^^^^^^^^^^^~08/01/1991~
-~19331~^~304~^11.^0^^~1~^^^^^^^^^^^~08/01/1991~
-~19331~^~305~^205.^0^^~1~^^^^^^^^^^^~08/01/1991~
-~19331~^~306~^127.^0^^~1~^^^^^^^^^^^~08/01/1991~
-~19331~^~307~^267.^0^^~1~^^^^^^^^^^^~08/01/1991~
-~19331~^~318~^105.^0^^~1~^^^^^^^^^^^~08/01/1991~
-~19331~^~319~^23.^0^^~4~^~O~^^^^^^^^^^~03/01/2002~
-~19331~^~320~^24.^0^^~4~^~NC~^^^^^^^^^^~06/01/2002~
-~19331~^~321~^15.^0^^~4~^~O~^^^^^^^^^^~06/01/2002~
-~19331~^~417~^4.^0^^~1~^^^^^^^^^^^~08/01/1991~
-~19331~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~
-~19331~^~432~^4.^0^^~1~^^^^^^^^^^^~08/01/1991~
-~19331~^~435~^4.^0^^~4~^~NC~^^^^^^^^^^~03/01/2006~
-~19331~^~601~^11.^0^^~1~^^^^^^^^^^^~08/01/1991~
-~19331~^~636~^0.^0^^~1~^^^^^^^^^^^~08/01/1991~
-~19332~^~208~^363.^0^^~4~^~NC~^^^^^^^^^^~08/01/1991~
-~19332~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2002~
-~19332~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2002~
-~19332~^~268~^1519.^0^^~4~^^^^^^^^^^^~05/01/2006~
-~19332~^~301~^5.^1^^~4~^^^^^^^^^^^~08/01/1991~
-~19332~^~304~^4.^1^^~4~^^^^^^^^^^^~08/01/1991~
-~19332~^~305~^3.^1^^~4~^^^^^^^^^^^~08/01/1991~
-~19332~^~306~^5.^1^^~4~^^^^^^^^^^^~08/01/1991~
-~19332~^~307~^506.^1^^~4~^^^^^^^^^^^~08/01/1991~
-~19332~^~318~^0.^1^^~4~^^^^^^^^^^^~08/01/1991~
-~19332~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2002~
-~19332~^~320~^0.^0^^~1~^~AS~^^^^^^^^^^~03/01/2002~
-~19332~^~417~^0.^1^^~4~^^^^^^^^^^^~08/01/1991~
-~19332~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~
-~19332~^~432~^0.^1^^~4~^^^^^^^^^^^~08/01/1991~
-~19332~^~435~^0.^0^^~4~^~NC~^^^^^^^^^^~05/01/2006~
-~19332~^~601~^0.^1^^~4~^^^^^^^^^^^~08/01/1991~
-~19333~^~208~^109.^0^^~4~^~NC~^^^^^^^^^^~12/01/2006~
-~19333~^~262~^0.^0^^~4~^~RP~^^^^^^^^^^~03/01/2002~
-~19333~^~263~^0.^0^^~4~^~RP~^^^^^^^^^^~03/01/2002~
-~19333~^~268~^458.^0^^~4~^~NC~^^^^^^^^^^~12/01/2006~
-~19333~^~301~^8.^0^^~4~^~RP~^^^^^^^^^^~12/01/2006~
-~19333~^~304~^1.^0^^~4~^~RP~^^^^^^^^^^~12/01/2006~
-~19333~^~305~^16.^0^^~4~^~RP~^^^^^^^^^^~12/01/2006~
-~19333~^~306~^6.^0^^~4~^~RP~^^^^^^^^^^~12/01/2006~
-~19333~^~307~^63.^0^^~4~^~RP~^^^^^^^^^^~12/01/2006~
-~19333~^~318~^58.^0^^~4~^~RP~^^^^^^^^^^~12/01/2006~
-~19333~^~319~^15.^0^^~4~^~RP~^^^^^^^^^^~12/01/2006~
-~19333~^~320~^15.^0^^~4~^~RP~^^^^^^^^^^~12/01/2006~
-~19333~^~321~^4.^0^^~4~^~RP~^^^^^^^^^^~12/01/2006~
-~19333~^~322~^2.^0^^~4~^~RP~^^^^^^^^^^~12/01/2006~
-~19333~^~334~^1.^0^^~4~^~RP~^^^^^^^^^^~12/01/2006~
-~19333~^~337~^0.^0^^~4~^~RP~^^^^^^^^^^~12/01/2006~
-~19333~^~338~^44.^0^^~4~^~RP~^^^^^^^^^^~12/01/2006~
-~19333~^~417~^4.^0^^~4~^~RP~^^^^^^^^^^~12/01/2006~
-~19333~^~431~^0.^0^^~4~^~RP~^^^^^^^^^^~03/01/2002~
-~19333~^~432~^4.^0^^~4~^~RP~^^^^^^^^^^~12/01/2006~
-~19333~^~435~^4.^0^^~4~^~NC~^^^^^^^^^^~12/01/2006~
-~19333~^~601~^49.^0^^~4~^~RP~^^^^^^^^^^~12/01/2006~
-~19334~^~208~^380.^0^^~4~^~NC~^^^^^^^^^^~12/01/2006~
-~19334~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~11/01/2002~
-~19334~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~11/01/2002~
-~19334~^~268~^1590.^0^^~4~^~NC~^^^^^^^^^^~12/01/2006~
-~19334~^~301~^83.^14^16.^~1~^~A~^^^1^16.^169.^7^44.^121.^~2, 3~^~12/01/2006~
-~19334~^~304~^9.^15^0.^~1~^~A~^^^1^0.^17.^11^8.^10.^~2, 3~^~12/01/2006~
-~19334~^~305~^4.^15^1.^~1~^~A~^^^1^0.^12.^7^0.^7.^~1, 2, 3~^~12/01/2006~
-~19334~^~306~^133.^15^15.^~1~^~A~^^^1^2.^212.^8^98.^167.^~2, 3~^~12/01/2006~
-~19334~^~307~^28.^15^4.^~1~^~A~^^^1^3.^63.^8^17.^38.^~2, 3~^~12/01/2006~
-~19334~^~318~^0.^1^^~1~^^^^^^^^^^^~12/01/2006~
-~19334~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2002~
-~19334~^~320~^0.^0^^~4~^~NC~^^^^^^^^^^~12/01/2006~
-~19334~^~321~^0.^0^^~4~^~NR~^^^^^^^^^^~11/01/2002~
-~19334~^~322~^0.^0^^~4~^~NR~^^^^^^^^^^~11/01/2002~
-~19334~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~
-~19334~^~334~^0.^0^^~4~^~NR~^^^^^^^^^^~11/01/2002~
-~19334~^~337~^0.^0^^~4~^~NR~^^^^^^^^^^~11/01/2002~
-~19334~^~338~^0.^0^^~4~^~NR~^^^^^^^^^^~11/01/2002~
-~19334~^~417~^1.^2^^~1~^^^^^^^^^^^~12/01/2006~
-~19334~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~
-~19334~^~432~^1.^2^^~1~^^^^^^^^^^^~12/01/2006~
-~19334~^~435~^1.^0^^~4~^~NC~^^^^^^^^^^~12/01/2006~
-~19334~^~601~^0.^1^^~4~^^^^^^^^^^^~12/01/2006~
-~19335~^~208~^387.^0^^~4~^~NC~^^^^^^^^^^~03/01/2009~
-~19335~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~09/01/2002~
-~19335~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~09/01/2002~
-~19335~^~268~^1618.^0^^~4~^~NC~^^^^^^^^^^~03/01/2009~
-~19335~^~301~^1.^8^0.^~1~^~A~^^^1^0.^3.^7^0.^1.^~1, 2, 3~^~03/01/2009~
-~19335~^~304~^0.^8^0.^~1~^~A~^^^1^0.^0.^^^^~1, 2, 3~^~03/01/2009~
-~19335~^~305~^0.^8^0.^~1~^~A~^^^1^0.^0.^^^^~1, 2, 3~^~03/01/2009~
-~19335~^~306~^2.^8^0.^~1~^~A~^^^1^1.^3.^7^1.^2.^~1, 2, 3~^~03/01/2009~
-~19335~^~307~^1.^8^0.^~1~^~A~^^^1^1.^1.^^^^~1, 2, 3~^~03/01/2009~
-~19335~^~318~^0.^1^^~4~^^^^^^^^^^^~08/01/1991~
-~19335~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2002~
-~19335~^~320~^0.^0^^~1~^~AS~^^^^^^^^^^~07/01/2009~
-~19335~^~321~^0.^0^^~7~^~Z~^^^^^^^^^^~09/01/2002~
-~19335~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~09/01/2002~
-~19335~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~
-~19335~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~09/01/2002~
-~19335~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~09/01/2002~
-~19335~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~09/01/2002~
-~19335~^~417~^0.^3^0.^~1~^^^^^^^^^^^~08/01/1991~
-~19335~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~
-~19335~^~432~^0.^3^0.^~1~^^^^^^^^^^^~03/01/2009~
-~19335~^~435~^0.^0^^~4~^~NC~^^^^^^^^^^~07/01/2009~
-~19335~^~601~^0.^1^^~4~^^^^^^^^^^^~08/01/1991~
-~19336~^~208~^389.^0^^~4~^~NC~^^^^^^^^^^~03/01/2009~
-~19336~^~262~^0.^0^^~4~^~FLA~^^^^^^^^^^~11/01/2002~
-~19336~^~263~^0.^0^^~4~^~FLA~^^^^^^^^^^~11/01/2002~
-~19336~^~268~^1627.^0^^~4~^~NC~^^^^^^^^^^~03/01/2009~
-~19336~^~301~^1.^8^0.^~1~^~A~^^^1^1.^2.^7^1.^1.^~2, 3~^~03/01/2009~
-~19336~^~304~^0.^8^0.^~1~^~A~^^^1^0.^0.^^^^~1, 2, 3~^~03/01/2009~
-~19336~^~305~^0.^8^0.^~1~^~A~^^^1^0.^1.^7^0.^0.^~2, 3~^~03/01/2009~
-~19336~^~306~^2.^8^0.^~1~^~A~^^^1^1.^2.^7^1.^1.^~1, 2, 3~^~03/01/2009~
-~19336~^~307~^2.^8^0.^~1~^~A~^^^1^1.^2.^7^1.^1.^~1, 2, 3~^~03/01/2009~
-~19336~^~318~^0.^0^^~4~^~FLA~^^^^^^^^^^~11/01/2002~
-~19336~^~319~^0.^0^^~4~^~FLA~^^^^^^^^^^~11/01/2002~
-~19336~^~320~^0.^0^^~4~^~NC~^^^^^^^^^^~07/01/2009~
-~19336~^~321~^0.^0^^~4~^~FLA~^^^^^^^^^^~11/01/2002~
-~19336~^~322~^0.^0^^~4~^~FLA~^^^^^^^^^^~11/01/2002~
-~19336~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~
-~19336~^~334~^0.^0^^~4~^~FLA~^^^^^^^^^^~11/01/2002~
-~19336~^~337~^0.^0^^~4~^~FLA~^^^^^^^^^^~11/01/2002~
-~19336~^~338~^0.^0^^~4~^~FLA~^^^^^^^^^^~11/01/2002~
-~19336~^~417~^0.^4^0.^~1~^^^^^^^^^^^~08/01/1991~
-~19336~^~431~^0.^0^^~4~^~FLA~^^^^^^^^^^~03/01/2009~
-~19336~^~432~^0.^0^^~4~^~FLA~^^^^^^^^^^~03/01/2009~
-~19336~^~435~^0.^0^^~4~^~NC~^^^^^^^^^^~07/01/2009~
-~19336~^~601~^0.^0^^~4~^~FLA~^^^^^^^^^^~11/01/2002~
-~19337~^~208~^365.^0^^~4~^~NC~^^^^^^^^^^~02/01/2005~
-~19337~^~262~^0.^0^^~4~^~FLA~^^^^^^^^^^~02/01/2005~
-~19337~^~263~^0.^0^^~4~^~FLA~^^^^^^^^^^~02/01/2005~
-~19337~^~268~^1527.^0^^~4~^~NC~^^^^^^^^^^~02/01/2005~
-~19337~^~301~^0.^3^0.^~1~^~A~^^^1^0.^0.^^^^~1, 2, 3~^~02/01/2005~
-~19337~^~304~^0.^3^0.^~1~^~A~^^^1^0.^0.^^^^~1, 2, 3~^~02/01/2005~
-~19337~^~305~^0.^3^0.^~1~^~A~^^^1^0.^0.^^^^~1, 2, 3~^~02/01/2005~
-~19337~^~306~^4.^3^0.^~1~^~A~^^^1^4.^6.^2^1.^7.^~1, 2, 3~^~02/01/2005~
-~19337~^~307~^0.^2^^~1~^~A~^^^1^0.^0.^^^^~1~^~02/01/2005~
-~19337~^~318~^0.^0^^~4~^~FLA~^^^^^^^^^^~02/01/2005~
-~19337~^~319~^0.^0^^~4~^~FLA~^^^^^^^^^^~02/01/2005~
-~19337~^~320~^0.^0^^~4~^~FLA~^^^^^^^^^^~02/01/2005~
-~19337~^~321~^0.^0^^~4~^~FLA~^^^^^^^^^^~02/01/2005~
-~19337~^~322~^0.^0^^~4~^~FLA~^^^^^^^^^^~02/01/2005~
-~19337~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~
-~19337~^~334~^0.^0^^~4~^~FLA~^^^^^^^^^^~02/01/2005~
-~19337~^~337~^0.^0^^~4~^~FLA~^^^^^^^^^^~02/01/2005~
-~19337~^~338~^0.^0^^~4~^~FLA~^^^^^^^^^^~02/01/2005~
-~19337~^~417~^0.^0^^~4~^~FLA~^^^^^^^^^^~02/01/2005~
-~19337~^~431~^0.^0^^~4~^~FLA~^^^^^^^^^^~02/01/2005~
-~19337~^~432~^0.^0^^~4~^~FLA~^^^^^^^^^^~02/01/2005~
-~19337~^~435~^0.^0^^~4~^~NC~^^^^^^^^^^~12/01/2006~
-~19337~^~601~^0.^0^^~4~^~FLA~^^^^^^^^^^~02/01/2005~
-~19340~^~208~^354.^0^^~4~^^^^^^^^^^^~02/01/2003~
-~19340~^~262~^0.^0^^~4~^~FLA~^^^^^^^^^^~02/01/2003~
-~19340~^~263~^0.^0^^~4~^~FLA~^^^^^^^^^^~02/01/2003~
-~19340~^~268~^1481.^0^^~4~^^^^^^^^^^^~04/01/2005~
-~19340~^~301~^90.^1^^~4~^^^^^^^^^^^~02/01/2003~
-~19340~^~304~^19.^1^^~4~^^^^^^^^^^^~02/01/2003~
-~19340~^~305~^3.^1^^~4~^^^^^^^^^^^~02/01/2003~
-~19340~^~306~^274.^1^^~4~^^^^^^^^^^^~02/01/2003~
-~19340~^~307~^11.^1^^~4~^^^^^^^^^^^~02/01/2003~
-~19340~^~318~^0.^0^^~4~^~FLA~^^^^^^^^^^~02/01/2003~
-~19340~^~319~^0.^0^^~4~^~FLA~^^^^^^^^^^~02/01/2003~
-~19340~^~320~^0.^0^^~4~^~NC~^^^^^^^^^^~05/01/2009~
-~19340~^~321~^0.^0^^~4~^~FLA~^^^^^^^^^^~02/01/2003~
-~19340~^~322~^0.^0^^~4~^~FLA~^^^^^^^^^^~02/01/2003~
-~19340~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~
-~19340~^~334~^0.^0^^~4~^~FLA~^^^^^^^^^^~02/01/2003~
-~19340~^~337~^0.^0^^~4~^~FLA~^^^^^^^^^^~02/01/2003~
-~19340~^~338~^0.^0^^~4~^~FLA~^^^^^^^^^^~02/01/2003~
-~19340~^~417~^0.^0^^~4~^~FLA~^^^^^^^^^^~02/01/2003~
-~19340~^~431~^0.^0^^~4~^~FLA~^^^^^^^^^^~02/01/2003~
-~19340~^~432~^0.^0^^~4~^~FLA~^^^^^^^^^^~02/01/2003~
-~19340~^~435~^0.^0^^~4~^~NC~^^^^^^^^^^~05/01/2009~
-~19340~^~601~^0.^1^^~4~^^^^^^^^^^^~02/01/2003~
-~19345~^~208~^153.^0^^~4~^~NC~^^^^^^^^^^~05/01/2009~
-~19345~^~262~^6.^0^^~4~^~FLM~^^^^^^^^^^~12/01/2006~
-~19345~^~263~^195.^0^^~4~^~FLM~^^^^^^^^^^~12/01/2006~
-~19345~^~268~^638.^0^^~4~^~NC~^^^^^^^^^^~05/01/2009~
-~19345~^~301~^11.^1^^~12~^~MA~^^^^^^^^^^~03/01/2003~
-~19345~^~304~^36.^0^^~4~^~FLM~^^^^^^^^^^~12/01/2006~
-~19345~^~305~^54.^0^^~4~^~FLM~^^^^^^^^^^~12/01/2006~
-~19345~^~306~^187.^0^^~4~^~FLM~^^^^^^^^^^~12/01/2006~
-~19345~^~307~^100.^1^^~8~^~LC~^^^^^^^^^^~12/01/2006~
-~19345~^~318~^0.^1^^~8~^~LC~^^^^^^^^^^~12/01/2006~
-~19345~^~319~^0.^0^^~4~^~FLM~^^^^^^^^^^~03/01/2003~
-~19345~^~320~^0.^0^^~4~^~FLM~^^^^^^^^^^~03/01/2003~
-~19345~^~321~^0.^0^^~4~^~FLM~^^^^^^^^^^~03/01/2003~
-~19345~^~322~^0.^0^^~4~^~FLM~^^^^^^^^^^~03/01/2003~
-~19345~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~
-~19345~^~334~^0.^0^^~4~^~FLM~^^^^^^^^^^~03/01/2003~
-~19345~^~337~^0.^0^^~4~^~FLM~^^^^^^^^^^~03/01/2003~
-~19345~^~338~^3.^0^^~4~^~FLM~^^^^^^^^^^~12/01/2006~
-~19345~^~417~^2.^0^^~4~^~FLM~^^^^^^^^^^~12/01/2006~
-~19345~^~431~^0.^0^^~4~^~FLM~^^^^^^^^^^~03/01/2002~
-~19345~^~432~^2.^0^^~4~^~FLM~^^^^^^^^^^~12/01/2006~
-~19345~^~435~^2.^0^^~4~^~NC~^^^^^^^^^^~05/01/2009~
-~19345~^~601~^0.^1^^~8~^~LC~^^^^^^^^^^~12/01/2006~
-~19348~^~208~^350.^0^^~4~^~NC~^^^^^^^^^^~12/01/2006~
-~19348~^~262~^7.^0^^~4~^~FLM~^^^^^^^^^^~12/01/2006~
-~19348~^~263~^247.^0^^~4~^~FLM~^^^^^^^^^^~12/01/2006~
-~19348~^~268~^1465.^0^^~4~^~NC~^^^^^^^^^^~12/01/2006~
-~19348~^~301~^49.^0^^~4~^~FLM~^^^^^^^^^^~12/01/2006~
-~19348~^~304~^48.^0^^~4~^~FLM~^^^^^^^^^^~12/01/2006~
-~19348~^~305~^97.^0^^~4~^~FLM~^^^^^^^^^^~12/01/2006~
-~19348~^~306~^284.^0^^~4~^~FLM~^^^^^^^^^^~12/01/2006~
-~19348~^~307~^346.^1^^~1~^~A~^^^^^^^^^^~12/01/1997~
-~19348~^~318~^2.^0^^~4~^~FLM~^^^^^^^^^^~12/01/2006~
-~19348~^~319~^1.^0^^~4~^~FLM~^^^^^^^^^^~12/01/2006~
-~19348~^~320~^1.^0^^~4~^~FLM~^^^^^^^^^^~12/01/2006~
-~19348~^~321~^0.^0^^~4~^~FLM~^^^^^^^^^^~12/01/2006~
-~19348~^~322~^0.^0^^~4~^~FLM~^^^^^^^^^^~03/01/2003~
-~19348~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~
-~19348~^~334~^0.^0^^~4~^~FLM~^^^^^^^^^^~03/01/2003~
-~19348~^~337~^0.^0^^~4~^~FLM~^^^^^^^^^^~03/01/2003~
-~19348~^~338~^4.^0^^~4~^~FLM~^^^^^^^^^^~03/01/2003~
-~19348~^~417~^4.^0^^~4~^~FLM~^^^^^^^^^^~12/01/2006~
-~19348~^~431~^0.^0^^~4~^~FLM~^^^^^^^^^^~03/01/2003~
-~19348~^~432~^4.^0^^~4~^~FLM~^^^^^^^^^^~12/01/2006~
-~19348~^~435~^4.^0^^~4~^~NC~^^^^^^^^^^~12/01/2006~
-~19348~^~601~^1.^0^^~4~^~FLM~^^^^^^^^^^~12/01/2006~
-~19349~^~208~^286.^0^^~4~^~NC~^^^^^^^^^^~07/01/2003~
-~19349~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~11/01/2002~
-~19349~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~11/01/2002~
-~19349~^~268~^1195.^0^^~4~^~NC~^^^^^^^^^^~07/01/2003~
-~19349~^~301~^18.^1^^~1~^^^^^^^^^^^~11/01/2002~
-~19349~^~304~^8.^1^^~1~^^^^^^^^^^^~11/01/2002~
-~19349~^~305~^11.^1^^~1~^^^^^^^^^^^~11/01/2002~
-~19349~^~306~^44.^1^^~1~^^^^^^^^^^^~11/01/2002~
-~19349~^~307~^155.^2^^~1~^^^^^^^^^^^~11/01/2002~
-~19349~^~318~^0.^1^^~4~^^^^^^^^^^^~11/01/2002~
-~19349~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2002~
-~19349~^~320~^0.^0^^~4~^~NC~^^^^^^^^^^~07/01/2003~
-~19349~^~321~^0.^0^^~4~^~NR~^^^^^^^^^^~11/01/2002~
-~19349~^~322~^0.^0^^~4~^~NR~^^^^^^^^^^~11/01/2002~
-~19349~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~
-~19349~^~334~^0.^0^^~4~^~NR~^^^^^^^^^^~11/01/2002~
-~19349~^~337~^0.^0^^~4~^~NR~^^^^^^^^^^~11/01/2002~
-~19349~^~338~^0.^0^^~4~^~NR~^^^^^^^^^^~11/01/2002~
-~19349~^~417~^0.^2^^~1~^^^^^^^^^^^~11/01/2002~
-~19349~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~
-~19349~^~432~^0.^2^^~1~^^^^^^^^^^^~07/01/2003~
-~19349~^~435~^0.^0^^~4~^~NC~^^^^^^^^^^~12/01/2006~
-~19349~^~601~^0.^1^^~4~^^^^^^^^^^^~11/01/2002~
-~19350~^~208~^283.^0^^~4~^~NC~^^^^^^^^^^~09/01/2007~
-~19350~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~11/01/2002~
-~19350~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~11/01/2002~
-~19350~^~268~^1182.^0^^~4~^~NC~^^^^^^^^^^~09/01/2007~
-~19350~^~301~^13.^1^^~1~^~A~^^^^^^^^^^~12/01/2004~
-~19350~^~304~^1.^1^^~1~^~A~^^^^^^^^^^~12/01/2004~
-~19350~^~305~^0.^1^^~1~^~A~^^^^^^^^^~1~^~12/01/2004~
-~19350~^~306~^1.^1^^~1~^~A~^^^^^^^^^^~12/01/2004~
-~19350~^~307~^62.^1^^~1~^~A~^^^^^^^^^^~12/01/2004~
-~19350~^~318~^0.^1^^~4~^^^^^^^^^^^~12/01/2004~
-~19350~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2002~
-~19350~^~320~^0.^0^^~4~^~NC~^^^^^^^^^^~09/01/2007~
-~19350~^~321~^0.^0^^~4~^~NR~^^^^^^^^^^~11/01/2002~
-~19350~^~322~^0.^0^^~4~^~NR~^^^^^^^^^^~11/01/2002~
-~19350~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~
-~19350~^~334~^0.^0^^~4~^~NR~^^^^^^^^^^~11/01/2002~
-~19350~^~337~^0.^0^^~4~^~NR~^^^^^^^^^^~11/01/2002~
-~19350~^~338~^0.^0^^~4~^~NR~^^^^^^^^^^~11/01/2002~
-~19350~^~417~^0.^2^^~1~^^^^^^^^^^^~08/01/1991~
-~19350~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~
-~19350~^~432~^0.^2^^~1~^^^^^^^^^^^~12/01/2004~
-~19350~^~435~^0.^0^^~4~^~NC~^^^^^^^^^^~09/01/2007~
-~19350~^~601~^0.^1^^~4~^^^^^^^^^^^~08/01/1991~
-~19351~^~208~^281.^0^^~4~^~NC~^^^^^^^^^^~08/01/1991~
-~19351~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~10/01/2002~
-~19351~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~10/01/2002~
-~19351~^~268~^1176.^0^^~4~^^^^^^^^^^^~12/01/2004~
-~19351~^~301~^0.^19^0.^~1~^^^^^^^^^^^~08/01/1991~
-~19351~^~304~^0.^19^0.^~1~^^^^^^^^^^^~08/01/1991~
-~19351~^~305~^0.^1^^~4~^^^^^^^^^^^~08/01/1991~
-~19351~^~306~^0.^16^0.^~1~^^^^^^^^^^^~08/01/1991~
-~19351~^~307~^2.^19^0.^~1~^^^^^^^^^^^~08/01/1991~
-~19351~^~318~^0.^1^^~4~^^^^^^^^^^^~08/01/1991~
-~19351~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2002~
-~19351~^~320~^0.^0^^~4~^~NC~^^^^^^^^^^~12/01/2004~
-~19351~^~321~^0.^0^^~4~^~NR~^^^^^^^^^^~10/01/2002~
-~19351~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~10/01/2002~
-~19351~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~
-~19351~^~334~^0.^0^^~4~^~NR~^^^^^^^^^^~10/01/2002~
-~19351~^~337~^0.^0^^~4~^~NR~^^^^^^^^^^~10/01/2002~
-~19351~^~338~^0.^0^^~4~^~NR~^^^^^^^^^^~10/01/2002~
-~19351~^~417~^0.^1^^~4~^^^^^^^^^^^~08/01/1991~
-~19351~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~
-~19351~^~432~^0.^1^^~4~^^^^^^^^^^^~12/01/2004~
-~19351~^~435~^0.^0^^~4~^~NC~^^^^^^^^^^~10/01/2006~
-~19351~^~601~^0.^1^^~4~^^^^^^^^^^^~08/01/1991~
-~19352~^~208~^318.^0^^~4~^~NC~^^^^^^^^^^~08/01/1991~
-~19352~^~268~^1331.^0^^~4~^^^^^^^^^^^~09/01/2004~
-~19352~^~301~^61.^1^^~1~^^^^^^^^^^^~08/01/1991~
-~19352~^~304~^72.^1^^~1~^^^^^^^^^^^~08/01/1991~
-~19352~^~305~^236.^1^^~1~^^^^^^^^^^^~08/01/1991~
-~19352~^~306~^320.^1^^~1~^^^^^^^^^^^~08/01/1991~
-~19352~^~307~^35.^1^^~1~^^^^^^^^^^^~08/01/1991~
-~19352~^~318~^0.^1^^~1~^^^^^^^^^^^~08/01/1991~
-~19352~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2002~
-~19352~^~320~^0.^0^^~1~^~AS~^^^^^^^^^^~07/01/2008~
-~19352~^~417~^12.^1^^~1~^^^^^^^^^^^~08/01/1991~
-~19352~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~
-~19352~^~432~^12.^1^^~1~^^^^^^^^^^^~08/01/1991~
-~19352~^~435~^12.^0^^~4~^~NC~^^^^^^^^^^~07/01/2008~
-~19352~^~601~^0.^1^^~4~^^^^^^^^^^^~08/01/1991~
-~19353~^~208~^260.^0^^~4~^~NC~^^^^^^^^^^~03/01/2010~
-~19353~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~11/01/2002~
-~19353~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~11/01/2002~
-~19353~^~268~^1088.^0^^~4~^~NC~^^^^^^^^^^~03/01/2010~
-~19353~^~301~^102.^16^6.^~1~^~A~^^^2^78.^123.^1^17.^186.^~2~^~03/01/2010~
-~19353~^~304~^21.^16^0.^~1~^~A~^^^2^15.^24.^1^18.^23.^~2~^~03/01/2010~
-~19353~^~305~^2.^3^0.^~1~^^^^^^^^^^^~08/01/1991~
-~19353~^~306~^212.^16^12.^~1~^~A~^^^2^175.^225.^1^54.^370.^~2~^~03/01/2010~
-~19353~^~307~^12.^16^4.^~1~^~A~^^^2^4.^16.^1^-41.^65.^~2~^~03/01/2010~
-~19353~^~318~^0.^1^^~8~^~LC~^^^^^^^^^^~03/01/2010~
-~19353~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2002~
-~19353~^~320~^0.^0^^~4~^~NC~^^^^^^^^^^~03/01/2010~
-~19353~^~321~^0.^0^^~4~^~NR~^^^^^^^^^^~05/01/2003~
-~19353~^~322~^0.^0^^~4~^~NR~^^^^^^^^^^~11/01/2002~
-~19353~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~
-~19353~^~334~^0.^0^^~4~^~NR~^^^^^^^^^^~11/01/2002~
-~19353~^~337~^0.^0^^~4~^~NR~^^^^^^^^^^~11/01/2002~
-~19353~^~338~^0.^0^^~4~^~NR~^^^^^^^^^^~11/01/2002~
-~19353~^~417~^0.^3^0.^~1~^^^^^^^^^^^~08/01/1991~
-~19353~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~
-~19353~^~432~^0.^3^0.^~1~^^^^^^^^^^^~03/01/2010~
-~19353~^~435~^0.^0^^~4~^~NC~^^^^^^^^^^~03/01/2010~
-~19353~^~601~^0.^1^^~8~^~LC~^^^^^^^^^^~03/01/2010~
-~19355~^~208~^290.^0^^~4~^~NC~^^^^^^^^^^~11/01/2002~
-~19355~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~11/01/2002~
-~19355~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~11/01/2002~
-~19355~^~268~^1213.^0^^~4~^~NC~^^^^^^^^^^~11/01/2002~
-~19355~^~301~^150.^1^^~1~^^^^^^^^^^^~08/01/1991~
-~19355~^~304~^100.^1^^~1~^^^^^^^^^^^~08/01/1991~
-~19355~^~305~^56.^1^^~1~^^^^^^^^^^^~08/01/1991~
-~19355~^~306~^1000.^1^^~1~^^^^^^^^^^^~08/01/1991~
-~19355~^~307~^8.^1^^~1~^^^^^^^^^^^~08/01/1991~
-~19355~^~318~^0.^1^^~4~^^^^^^^^^^^~08/01/1991~
-~19355~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2002~
-~19355~^~320~^0.^0^^~1~^~AS~^^^^^^^^^^~11/01/2002~
-~19355~^~321~^0.^0^^~7~^~Z~^^^^^^^^^^~11/01/2002~
-~19355~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~11/01/2002~
-~19355~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~
-~19355~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~11/01/2002~
-~19355~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~11/01/2002~
-~19355~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~11/01/2002~
-~19355~^~417~^0.^1^^~4~^^^^^^^^^^^~08/01/1991~
-~19355~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~
-~19355~^~432~^0.^1^^~4~^^^^^^^^^^^~11/01/2002~
-~19355~^~435~^0.^0^^~4~^~NC~^^^^^^^^^^~12/01/2006~
-~19355~^~601~^0.^1^^~4~^^^^^^^^^^^~08/01/1991~
-~19359~^~208~^488.^1^^~9~^~MC~^^^^^^^^^^~03/01/2006~
-~19359~^~268~^2041.^0^^~9~^~MC~^^^^^^^^^^~03/01/2006~
-~19359~^~301~^90.^1^^~9~^~MC~^^^^^^^^^^~02/01/2006~
-~19359~^~307~^189.^1^^~9~^~MC~^^^^^^^^^^~02/01/2006~
-~19359~^~318~^120.^1^^~9~^~MC~^^^^^^^^^^~02/01/2006~
-~19359~^~601~^9.^1^^~9~^~MC~^^^^^^^^^^~02/01/2006~
-~19360~^~208~^265.^0^^~4~^~NC~^^^^^^^^^^~08/01/1991~
-~19360~^~262~^0.^0^^~4~^~FLC~^^^^^^^^^^~02/01/2003~
-~19360~^~263~^0.^0^^~4~^~FLC~^^^^^^^^^^~02/01/2003~
-~19360~^~268~^1109.^0^^~4~^^^^^^^^^^^~04/01/2005~
-~19360~^~301~^5.^2^^~1~^^^^^^^^^^^~08/01/1991~
-~19360~^~304~^2.^2^^~1~^^^^^^^^^^^~08/01/1991~
-~19360~^~305~^10.^2^^~1~^^^^^^^^^^^~08/01/1991~
-~19360~^~306~^6.^1^^~1~^^^^^^^^^^^~08/01/1991~
-~19360~^~307~^61.^7^10.^~1~^^^^^^^^^^^~08/01/1991~
-~19360~^~318~^0.^0^^~4~^~FLC~^^^^^^^^^^~02/01/2003~
-~19360~^~319~^0.^0^^~4~^~FLC~^^^^^^^^^^~02/01/2003~
-~19360~^~320~^0.^0^^~4~^~FLC~^^^^^^^^^^~02/01/2003~
-~19360~^~321~^0.^0^^~4~^~FLC~^^^^^^^^^^~02/01/2003~
-~19360~^~322~^0.^0^^~4~^~FLC~^^^^^^^^^^~02/01/2003~
-~19360~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~
-~19360~^~334~^0.^0^^~4~^~FLC~^^^^^^^^^^~02/01/2003~
-~19360~^~337~^0.^0^^~4~^~FLC~^^^^^^^^^^~02/01/2003~
-~19360~^~338~^0.^0^^~4~^~FLC~^^^^^^^^^^~02/01/2003~
-~19360~^~417~^0.^2^^~1~^^^^^^^^^^^~08/01/1991~
-~19360~^~431~^0.^0^^~4~^~FLC~^^^^^^^^^^~02/01/2003~
-~19360~^~432~^0.^0^^~4~^~FLC~^^^^^^^^^^~02/01/2003~
-~19360~^~435~^0.^0^^~4~^~NC~^^^^^^^^^^~12/01/2006~
-~19360~^~601~^0.^1^^~8~^~LC~^^^^^^^^^^~02/01/2003~
-~19362~^~208~^319.^0^^~4~^^^^^^^^^^^~08/01/1991~
-~19362~^~268~^1335.^0^^~4~^^^^^^^^^^^~05/01/2006~
-~19362~^~301~^23.^1^^~1~^^^^^^^^^^^~08/01/1991~
-~19362~^~304~^9.^1^^~1~^^^^^^^^^^^~08/01/1991~
-~19362~^~305~^8.^1^^~1~^^^^^^^^^^^~08/01/1991~
-~19362~^~306~^63.^1^^~1~^^^^^^^^^^^~08/01/1991~
-~19362~^~307~^71.^1^^~1~^^^^^^^^^^^~08/01/1991~
-~19362~^~318~^0.^1^^~4~^^^^^^^^^^^~08/01/1991~
-~19362~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2002~
-~19362~^~320~^0.^0^^~4~^~NC~^^^^^^^^^^~06/01/2002~
-~19362~^~417~^3.^1^^~1~^^^^^^^^^^^~08/01/1991~
-~19362~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~
-~19362~^~432~^3.^1^^~1~^^^^^^^^^^^~08/01/1991~
-~19362~^~435~^3.^0^^~4~^~NC~^^^^^^^^^^~05/01/2006~
-~19362~^~601~^0.^1^^~4~^^^^^^^^^^^~08/01/1991~
-~19363~^~208~^402.^0^^~4~^~NC~^^^^^^^^^^~05/01/2009~
-~19363~^~268~^1682.^0^^~4~^~NC~^^^^^^^^^^~05/01/2009~
-~19363~^~301~^0.^1^^~9~^~MC~^^^^^^^^^^~02/01/2006~
-~19363~^~307~^15.^1^^~9~^~MC~^^^^^^^^^^~02/01/2006~
-~19363~^~318~^0.^1^^~9~^~MC~^^^^^^^^^^~02/01/2006~
-~19363~^~320~^0.^0^^~4~^~NC~^^^^^^^^^^~03/01/2009~
-~19363~^~601~^0.^1^^~9~^~MC~^^^^^^^^^^~02/01/2006~
-~19364~^~208~^216.^0^^~4~^~NC~^^^^^^^^^^~09/01/2015~
-~19364~^~262~^0.^0^^~4~^~FLC~^^^^^^^^^^~03/01/2015~
-~19364~^~263~^0.^0^^~4~^~FLC~^^^^^^^^^^~03/01/2015~
-~19364~^~268~^904.^0^^~4~^~NC~^^^^^^^^^^~09/01/2015~
-~19364~^~301~^49.^0^^~4~^~NR~^^^^^^^^^^~09/01/2015~
-~19364~^~304~^5.^0^^~4~^~FLC~^^^^^^^^^^~03/01/2015~
-~19364~^~305~^39.^0^^~4~^~NR~^^^^^^^^^^~09/01/2015~
-~19364~^~306~^66.^0^^~4~^~NR~^^^^^^^^^^~09/01/2015~
-~19364~^~307~^341.^0^^~4~^~NR~^^^^^^^^^^~09/01/2015~
-~19364~^~318~^62.^0^^~4~^~NC~^^^^^^^^^^~04/01/2017~
-~19364~^~319~^19.^0^^~4~^~NR~^^^^^^^^^^~04/01/2017~
-~19364~^~320~^19.^0^^~4~^~NC~^^^^^^^^^^~04/01/2017~
-~19364~^~321~^0.^0^^~4~^~NR~^^^^^^^^^^~09/01/2015~
-~19364~^~322~^0.^0^^~4~^~FLC~^^^^^^^^^^~03/01/2015~
-~19364~^~324~^0.^0^^~4~^~NR~^^^^^^^^^^~09/01/2015~
-~19364~^~334~^0.^0^^~4~^~FLC~^^^^^^^^^^~03/01/2015~
-~19364~^~337~^0.^0^^~4~^~FLC~^^^^^^^^^^~03/01/2015~
-~19364~^~338~^0.^0^^~4~^~FLC~^^^^^^^^^^~03/01/2015~
-~19364~^~417~^2.^0^^~4~^~FLC~^^^^^^^^^^~08/01/1991~
-~19364~^~431~^0.^0^^~4~^~NR~^^^^^^^^^^~03/01/2015~
-~19364~^~432~^2.^0^^~4~^~FLC~^^^^^^^^^^~08/01/1991~
-~19364~^~435~^2.^0^^~4~^~NC~^^^^^^^^^^~03/01/2009~
-~19364~^~601~^0.^0^^~4~^~NR~^^^^^^^^^^~09/01/2015~
-~19365~^~208~^322.^0^^~4~^~NC~^^^^^^^^^^~12/01/1997~
-~19365~^~262~^0.^0^^~4~^~BFSN~^~19116~^^^^^^^^^~02/01/2003~
-~19365~^~263~^0.^0^^~4~^~BFSN~^~19116~^^^^^^^^^~02/01/2003~
-~19365~^~268~^1347.^0^^~4~^^^^^^^^^^^~04/01/2005~
-~19365~^~301~^3.^0^^~4~^~BFSN~^^^^^^^^^^~08/01/1991~
-~19365~^~304~^2.^0^^~4~^~BFSN~^^^^^^^^^^~08/01/1991~
-~19365~^~305~^8.^0^^~4~^~BFSN~^^^^^^^^^^~08/01/1991~
-~19365~^~306~^5.^0^^~4~^~BFSN~^^^^^^^^^^~08/01/1991~
-~19365~^~307~^80.^3^12.^~8~^~LC~^^^1^56.^100.^2^23.^135.^~4~^~02/01/2003~
-~19365~^~318~^1.^0^^~4~^~BFSN~^^^^^^^^^^~08/01/1991~
-~19365~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2002~
-~19365~^~320~^0.^0^^~4~^~NC~^^^^^^^^^^~02/01/2003~
-~19365~^~321~^0.^0^^~4~^~BFSN~^~19116~^^^^^^^^^~02/01/2003~
-~19365~^~322~^0.^0^^~4~^~BFSN~^~19116~^^^^^^^^^~02/01/2003~
-~19365~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~
-~19365~^~334~^0.^0^^~4~^~BFSN~^~19116~^^^^^^^^^~02/01/2003~
-~19365~^~337~^0.^0^^~4~^~BFSN~^~19116~^^^^^^^^^~02/01/2003~
-~19365~^~338~^0.^0^^~4~^~BFSN~^~19116~^^^^^^^^^~02/01/2003~
-~19365~^~417~^1.^0^^~4~^~BFSN~^^^^^^^^^^~08/01/1991~
-~19365~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~
-~19365~^~432~^1.^0^^~4~^~BFSN~^^^^^^^^^^~02/01/2003~
-~19365~^~435~^1.^0^^~4~^~NC~^^^^^^^^^^~12/01/2006~
-~19365~^~601~^0.^0^^~4~^~BFSN~^^^^^^^^^^~08/01/1991~
-~19366~^~208~^253.^0^^~4~^^^^^^^^^^^~08/01/1991~
-~19366~^~262~^0.^0^^~4~^~FLC~^^^^^^^^^^~02/01/2003~
-~19366~^~263~^0.^0^^~4~^~FLC~^^^^^^^^^^~02/01/2003~
-~19366~^~268~^1059.^0^^~4~^^^^^^^^^^^~04/01/2005~
-~19366~^~301~^6.^0^^~4~^~FLC~^^^^^^^^^^~02/01/2003~
-~19366~^~304~^6.^0^^~4~^~FLC~^^^^^^^^^^~02/01/2003~
-~19366~^~305~^3.^0^^~4~^~FLC~^^^^^^^^^^~02/01/2003~
-~19366~^~306~^43.^0^^~4~^~FLC~^^^^^^^^^^~02/01/2003~
-~19366~^~307~^42.^0^^~4~^~FLC~^^^^^^^^^^~02/01/2003~
-~19366~^~318~^17.^0^^~4~^~FLC~^^^^^^^^^^~02/01/2003~
-~19366~^~319~^0.^0^^~4~^~FLC~^^^^^^^^^^~02/01/2003~
-~19366~^~320~^1.^0^^~4~^~FLC~^^^^^^^^^^~02/01/2003~
-~19366~^~321~^10.^0^^~4~^~FLC~^^^^^^^^^^~02/01/2003~
-~19366~^~322~^0.^0^^~4~^~FLC~^^^^^^^^^^~02/01/2003~
-~19366~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~
-~19366~^~334~^0.^0^^~4~^~FLC~^^^^^^^^^^~02/01/2003~
-~19366~^~337~^0.^0^^~4~^~FLC~^^^^^^^^^^~02/01/2003~
-~19366~^~338~^0.^0^^~4~^~FLC~^^^^^^^^^^~02/01/2003~
-~19366~^~417~^2.^0^^~4~^~FLC~^^^^^^^^^^~02/01/2003~
-~19366~^~431~^0.^0^^~4~^~FLC~^^^^^^^^^^~02/01/2003~
-~19366~^~432~^2.^0^^~4~^~FLC~^^^^^^^^^^~02/01/2003~
-~19366~^~435~^2.^0^^~4~^~NC~^^^^^^^^^^~12/01/2006~
-~19366~^~601~^0.^0^^~4~^~FLC~^^^^^^^^^^~02/01/2003~
-~19367~^~208~^448.^0^^~4~^~NC~^^^^^^^^^^~02/01/2003~
-~19367~^~262~^0.^0^^~4~^~FLA~^^^^^^^^^^~02/01/2003~
-~19367~^~263~^0.^0^^~4~^~FLA~^^^^^^^^^^~02/01/2003~
-~19367~^~268~^1876.^0^^~4~^~NC~^^^^^^^^^^~02/01/2003~
-~19367~^~301~^35.^0^^~4~^~FLA~^^^^^^^^^^~02/01/2003~
-~19367~^~304~^54.^0^^~4~^~FLA~^^^^^^^^^^~02/01/2003~
-~19367~^~305~^118.^0^^~4~^~FLA~^^^^^^^^^^~02/01/2003~
-~19367~^~306~^151.^0^^~4~^~FLA~^^^^^^^^^^~02/01/2003~
-~19367~^~307~^42.^1^^~4~^^^^^^^^^^^~08/01/1991~
-~19367~^~318~^7.^0^^~4~^~FLA~^^^^^^^^^^~02/01/2003~
-~19367~^~319~^0.^0^^~4~^~FLA~^^^^^^^^^^~02/01/2003~
-~19367~^~320~^0.^0^^~4~^~FLA~^^^^^^^^^^~02/01/2003~
-~19367~^~321~^4.^0^^~4~^~FLA~^^^^^^^^^^~02/01/2003~
-~19367~^~322~^0.^0^^~4~^~FLA~^^^^^^^^^^~02/01/2003~
-~19367~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~
-~19367~^~334~^0.^0^^~4~^~FLA~^^^^^^^^^^~02/01/2003~
-~19367~^~337~^0.^0^^~4~^~FLA~^^^^^^^^^^~02/01/2003~
-~19367~^~338~^3.^0^^~4~^~FLA~^^^^^^^^^^~02/01/2003~
-~19367~^~417~^26.^0^^~4~^~FLA~^^^^^^^^^^~02/01/2003~
-~19367~^~431~^0.^0^^~4~^~FLA~^^^^^^^^^^~02/01/2003~
-~19367~^~432~^26.^0^^~4~^~FLA~^^^^^^^^^^~02/01/2003~
-~19367~^~435~^26.^0^^~4~^~NC~^^^^^^^^^^~12/01/2006~
-~19367~^~601~^0.^0^^~4~^~FLA~^^^^^^^^^^~02/01/2003~
-~19368~^~208~^405.^1^^~9~^~MC~^^^^^^^^^^~03/01/2006~
-~19368~^~268~^1693.^0^^~9~^~MC~^^^^^^^^^^~03/01/2006~
-~19368~^~301~^0.^1^^~9~^~MC~^^^^^^^^^^~02/01/2006~
-~19368~^~307~^15.^1^^~9~^~MC~^^^^^^^^^^~02/01/2006~
-~19368~^~318~^0.^1^^~9~^~MC~^^^^^^^^^^~02/01/2006~
-~19368~^~320~^0.^0^^~4~^~NC~^^^^^^^^^^~03/01/2009~
-~19368~^~601~^0.^1^^~9~^~MC~^^^^^^^^^^~02/01/2006~
-~19369~^~208~^401.^0^^~4~^~NC~^^^^^^^^^^~05/01/2009~
-~19369~^~268~^1677.^0^^~4~^~NC~^^^^^^^^^^~05/01/2009~
-~19369~^~301~^0.^1^^~9~^~MC~^^^^^^^^^^~01/01/2006~
-~19369~^~307~^14.^1^^~9~^~MC~^^^^^^^^^^~01/01/2006~
-~19369~^~318~^0.^1^^~9~^~MC~^^^^^^^^^^~01/01/2006~
-~19369~^~320~^0.^0^^~4~^~NC~^^^^^^^^^^~03/01/2009~
-~19369~^~601~^0.^1^^~9~^~MC~^^^^^^^^^^~01/01/2006~
-~19370~^~208~^405.^1^^~9~^~MC~^^^^^^^^^^~01/01/2006~
-~19370~^~262~^0.^0^^~4~^~FLA~^^^^^^^^^^~01/01/2006~
-~19370~^~263~^0.^0^^~4~^~FLA~^^^^^^^^^^~01/01/2006~
-~19370~^~268~^1695.^0^^~9~^~MC~^^^^^^^^^^~01/01/2006~
-~19370~^~301~^0.^1^^~9~^~MC~^^^^^^^^^^~01/01/2006~
-~19370~^~304~^1.^0^^~4~^~FLA~^^^^^^^^^^~01/01/2006~
-~19370~^~305~^1.^0^^~4~^~FLA~^^^^^^^^^^~01/01/2006~
-~19370~^~306~^12.^0^^~4~^~FLA~^^^^^^^^^^~01/01/2006~
-~19370~^~307~^15.^1^^~9~^~MC~^^^^^^^^^^~01/01/2006~
-~19370~^~318~^0.^1^^~9~^~MC~^^^^^^^^^^~01/01/2006~
-~19370~^~319~^0.^0^^~4~^~FLA~^^^^^^^^^^~01/01/2006~
-~19370~^~320~^0.^0^^~4~^~NC~^^^^^^^^^^~03/01/2009~
-~19370~^~321~^0.^0^^~4~^~FLA~^^^^^^^^^^~01/01/2006~
-~19370~^~322~^0.^0^^~4~^~FLA~^^^^^^^^^^~01/01/2006~
-~19370~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~
-~19370~^~334~^0.^0^^~4~^~FLA~^^^^^^^^^^~01/01/2006~
-~19370~^~337~^0.^0^^~4~^~FLA~^^^^^^^^^^~01/01/2006~
-~19370~^~338~^1.^0^^~4~^~FLA~^^^^^^^^^^~01/01/2006~
-~19370~^~417~^0.^0^^~4~^~FLA~^^^^^^^^^^~01/01/2006~
-~19370~^~431~^0.^0^^~4~^~FLA~^^^^^^^^^^~01/01/2006~
-~19370~^~432~^0.^0^^~4~^~FLA~^^^^^^^^^^~01/01/2006~
-~19370~^~435~^0.^0^^~4~^~NC~^^^^^^^^^^~03/01/2009~
-~19370~^~601~^0.^1^^~9~^~MC~^^^^^^^^^^~01/01/2006~
-~19371~^~208~^413.^0^^~4~^~RP~^^^^^^^^^^~03/01/2002~
-~19371~^~268~^1728.^0^^~4~^~RP~^^^^^^^^^^~05/01/2002~
-~19371~^~301~^6.^0^^~4~^~RP~^^^^^^^^^^~03/01/2002~
-~19371~^~304~^2.^0^^~4~^~RP~^^^^^^^^^^~03/01/2002~
-~19371~^~305~^6.^0^^~4~^~RP~^^^^^^^^^^~03/01/2002~
-~19371~^~306~^10.^0^^~4~^~RP~^^^^^^^^^^~03/01/2002~
-~19371~^~307~^114.^0^^~4~^~RP~^^^^^^^^^^~03/01/2002~
-~19371~^~318~^393.^0^^~4~^~RP~^^^^^^^^^^~03/01/2002~
-~19371~^~319~^73.^0^^~4~^~RP~^^^^^^^^^^~03/01/2002~
-~19371~^~320~^80.^0^^~4~^~NC~^^^^^^^^^^~06/01/2002~
-~19371~^~321~^91.^0^^~4~^~O~^^^^^^^^^^~06/01/2002~
-~19371~^~417~^0.^0^^~4~^~RP~^^^^^^^^^^~03/01/2002~
-~19371~^~431~^0.^0^^~4~^~RP~^^^^^^^^^^~03/01/2002~
-~19371~^~432~^0.^0^^~4~^~RP~^^^^^^^^^^~03/01/2002~
-~19371~^~435~^0.^0^^~4~^~NC~^^^^^^^^^^~06/01/2002~
-~19371~^~601~^0.^0^^~4~^~RP~^^^^^^^^^^~03/01/2002~
-~19372~^~208~^404.^0^^~4~^~RP~^^^^^^^^^^~03/01/2002~
-~19372~^~262~^5.^0^^~4~^~RP~^^^^^^^^^^~03/01/2002~
-~19372~^~263~^145.^0^^~4~^~RP~^^^^^^^^^^~03/01/2002~
-~19372~^~268~^1692.^0^^~4~^~RP~^^^^^^^^^^~05/01/2002~
-~19372~^~301~^12.^0^^~4~^~RP~^^^^^^^^^^~03/01/2002~
-~19372~^~304~^30.^0^^~4~^~RP~^^^^^^^^^^~03/01/2002~
-~19372~^~305~^50.^0^^~4~^~RP~^^^^^^^^^^~03/01/2002~
-~19372~^~306~^143.^0^^~4~^~RP~^^^^^^^^^^~03/01/2002~
-~19372~^~307~^163.^0^^~4~^~RP~^^^^^^^^^^~03/01/2002~
-~19372~^~318~^393.^0^^~4~^~RP~^^^^^^^^^^~03/01/2002~
-~19372~^~319~^73.^0^^~4~^~RP~^^^^^^^^^^~03/01/2002~
-~19372~^~320~^80.^0^^~4~^~NC~^^^^^^^^^^~06/01/2002~
-~19372~^~321~^91.^0^^~4~^~O~^^^^^^^^^^~06/01/2002~
-~19372~^~417~^2.^0^^~4~^~RP~^^^^^^^^^^~03/01/2002~
-~19372~^~431~^0.^0^^~4~^~RP~^^^^^^^^^^~03/01/2002~
-~19372~^~432~^2.^0^^~4~^~RP~^^^^^^^^^^~03/01/2002~
-~19372~^~435~^2.^0^^~4~^~NC~^^^^^^^^^^~06/01/2002~
-~19372~^~601~^0.^0^^~4~^~RP~^^^^^^^^^^~03/01/2002~
-~19372~^~636~^29.^0^^~4~^~RP~^^^^^^^^^^~03/01/2002~
-~19375~^~208~^341.^0^^~4~^~NC~^^^^^^^^^^~07/01/2008~
-~19375~^~262~^0.^0^^~4~^~RC~^^^^^^^^^^~05/01/2006~
-~19375~^~263~^0.^0^^~4~^~RC~^^^^^^^^^^~05/01/2006~
-~19375~^~268~^1427.^0^^~4~^~NC~^^^^^^^^^^~07/01/2008~
-~19375~^~301~^17.^0^^~4~^~RC~^^^^^^^^^^~05/01/2006~
-~19375~^~304~^2.^0^^~4~^~RC~^^^^^^^^^^~05/01/2006~
-~19375~^~305~^13.^0^^~4~^~RC~^^^^^^^^^^~05/01/2006~
-~19375~^~306~^30.^0^^~4~^~RC~^^^^^^^^^^~05/01/2006~
-~19375~^~307~^6.^0^^~4~^~RC~^^^^^^^^^^~05/01/2006~
-~19375~^~318~^14.^0^^~4~^~RC~^^^^^^^^^^~05/01/2006~
-~19375~^~319~^4.^0^^~4~^~RC~^^^^^^^^^^~05/01/2006~
-~19375~^~320~^4.^0^^~4~^~NC~^^^^^^^^^^~07/01/2008~
-~19375~^~321~^1.^0^^~4~^~RC~^^^^^^^^^^~05/01/2006~
-~19375~^~322~^0.^0^^~4~^~RC~^^^^^^^^^^~05/01/2006~
-~19375~^~334~^0.^0^^~4~^~RC~^^^^^^^^^^~05/01/2006~
-~19375~^~337~^0.^0^^~4~^~RC~^^^^^^^^^^~05/01/2006~
-~19375~^~338~^0.^0^^~4~^~RC~^^^^^^^^^^~05/01/2006~
-~19375~^~417~^1.^0^^~4~^~RC~^^^^^^^^^^~05/01/2006~
-~19375~^~431~^0.^0^^~4~^~RC~^^^^^^^^^^~05/01/2006~
-~19375~^~432~^1.^0^^~4~^~RC~^^^^^^^^^^~05/01/2006~
-~19375~^~435~^1.^0^^~4~^~NC~^^^^^^^^^^~07/01/2008~
-~19375~^~601~^1.^0^^~4~^~RC~^^^^^^^^^^~05/01/2006~
-~19379~^~208~^453.^0^^~4~^~RC~^^^^^^^^^^~05/01/2006~
-~19379~^~262~^18.^0^^~4~^~RC~^^^^^^^^^^~05/01/2006~
-~19379~^~263~^139.^0^^~4~^~RC~^^^^^^^^^^~05/01/2006~
-~19379~^~268~^1893.^0^^~4~^~RC~^^^^^^^^^^~05/01/2006~
-~19379~^~301~^45.^0^^~4~^~RC~^^^^^^^^^^~05/01/2006~
-~19379~^~304~^36.^0^^~4~^~RC~^^^^^^^^^^~05/01/2006~
-~19379~^~305~^67.^0^^~4~^~RC~^^^^^^^^^^~05/01/2006~
-~19379~^~306~^147.^0^^~4~^~RC~^^^^^^^^^^~05/01/2006~
-~19379~^~307~^85.^0^^~4~^~RC~^^^^^^^^^^~05/01/2006~
-~19379~^~318~^273.^0^^~4~^~NC~^^^^^^^^^^~05/01/2006~
-~19379~^~319~^73.^0^^~4~^~RC~^^^^^^^^^^~05/01/2006~
-~19379~^~320~^75.^0^^~4~^~NC~^^^^^^^^^^~05/01/2006~
-~19379~^~321~^17.^0^^~4~^~RC~^^^^^^^^^^~05/01/2006~
-~19379~^~322~^0.^0^^~4~^~RC~^^^^^^^^^^~05/01/2006~
-~19379~^~334~^0.^0^^~4~^~RC~^^^^^^^^^^~05/01/2006~
-~19379~^~337~^0.^0^^~4~^~RC~^^^^^^^^^^~05/01/2006~
-~19379~^~338~^5.^0^^~4~^~RC~^^^^^^^^^^~05/01/2006~
-~19379~^~417~^5.^0^^~4~^~RC~^^^^^^^^^^~05/01/2006~
-~19379~^~431~^0.^0^^~4~^~RC~^^^^^^^^^^~05/01/2006~
-~19379~^~432~^5.^0^^~4~^~RC~^^^^^^^^^^~05/01/2006~
-~19379~^~435~^5.^0^^~4~^~NC~^^^^^^^^^^~05/01/2006~
-~19379~^~601~^25.^0^^~4~^~RC~^^^^^^^^^^~05/01/2006~
-~19382~^~208~^397.^0^^~4~^~RC~^^^^^^^^^^~05/01/2006~
-~19382~^~262~^0.^0^^~4~^~RC~^^^^^^^^^^~05/01/2006~
-~19382~^~263~^0.^0^^~4~^~RC~^^^^^^^^^^~05/01/2006~
-~19382~^~268~^1660.^0^^~4~^~RC~^^^^^^^^^^~05/01/2006~
-~19382~^~301~^8.^0^^~4~^~RC~^^^^^^^^^^~05/01/2006~
-~19382~^~304~^0.^0^^~4~^~RC~^^^^^^^^^^~05/01/2006~
-~19382~^~305~^1.^0^^~4~^~RC~^^^^^^^^^^~05/01/2006~
-~19382~^~306~^3.^0^^~4~^~RC~^^^^^^^^^^~05/01/2006~
-~19382~^~307~^52.^0^^~4~^~RC~^^^^^^^^^^~05/01/2006~
-~19382~^~318~^100.^0^^~4~^~RC~^^^^^^^^^^~05/01/2006~
-~19382~^~319~^27.^0^^~4~^~RC~^^^^^^^^^^~05/01/2006~
-~19382~^~320~^27.^0^^~4~^~RC~^^^^^^^^^^~05/01/2006~
-~19382~^~321~^6.^0^^~4~^~RC~^^^^^^^^^^~05/01/2006~
-~19382~^~322~^0.^0^^~4~^~RC~^^^^^^^^^^~05/01/2006~
-~19382~^~334~^0.^0^^~4~^~RC~^^^^^^^^^^~05/01/2006~
-~19382~^~337~^0.^0^^~4~^~RC~^^^^^^^^^^~05/01/2006~
-~19382~^~338~^0.^0^^~4~^~RC~^^^^^^^^^^~05/01/2006~
-~19382~^~417~^0.^0^^~4~^~RC~^^^^^^^^^^~05/01/2006~
-~19382~^~431~^0.^0^^~4~^~RC~^^^^^^^^^^~05/01/2006~
-~19382~^~432~^0.^0^^~4~^~RC~^^^^^^^^^^~05/01/2006~
-~19382~^~435~^0.^0^^~4~^~NC~^^^^^^^^^^~05/01/2006~
-~19382~^~601~^9.^0^^~4~^~RC~^^^^^^^^^^~05/01/2006~
-~19383~^~208~^560.^0^^~4~^~RC~^^^^^^^^^^~05/01/2006~
-~19383~^~262~^0.^0^^~4~^~RC~^^^^^^^^^^~05/01/2006~
-~19383~^~263~^0.^0^^~4~^~RC~^^^^^^^^^^~05/01/2006~
-~19383~^~268~^2342.^0^^~4~^~RC~^^^^^^^^^^~05/01/2006~
-~19383~^~301~^34.^0^^~4~^~RC~^^^^^^^^^^~05/01/2006~
-~19383~^~304~^4.^0^^~4~^~RC~^^^^^^^^^^~05/01/2006~
-~19383~^~305~^32.^0^^~4~^~RC~^^^^^^^^^^~05/01/2006~
-~19383~^~306~^51.^0^^~4~^~RC~^^^^^^^^^^~05/01/2006~
-~19383~^~307~^135.^0^^~4~^~RC~^^^^^^^^^^~05/01/2006~
-~19383~^~318~^1152.^0^^~4~^~RC~^^^^^^^^^^~05/01/2006~
-~19383~^~319~^314.^0^^~4~^~RC~^^^^^^^^^^~05/01/2006~
-~19383~^~320~^319.^0^^~4~^~RC~^^^^^^^^^^~05/01/2006~
-~19383~^~321~^64.^0^^~4~^~RC~^^^^^^^^^^~05/01/2006~
-~19383~^~322~^0.^0^^~4~^~RC~^^^^^^^^^^~05/01/2006~
-~19383~^~334~^0.^0^^~4~^~RC~^^^^^^^^^^~05/01/2006~
-~19383~^~337~^0.^0^^~4~^~RC~^^^^^^^^^^~05/01/2006~
-~19383~^~338~^0.^0^^~4~^~RC~^^^^^^^^^^~05/01/2006~
-~19383~^~417~^2.^0^^~4~^~RC~^^^^^^^^^^~05/01/2006~
-~19383~^~431~^0.^0^^~4~^~RC~^^^^^^^^^^~05/01/2006~
-~19383~^~432~^2.^0^^~4~^~RC~^^^^^^^^^^~05/01/2006~
-~19383~^~435~^2.^0^^~4~^~NC~^^^^^^^^^^~05/01/2006~
-~19383~^~601~^104.^0^^~4~^~RC~^^^^^^^^^^~05/01/2006~
-~19384~^~208~^364.^0^^~4~^~RC~^^^^^^^^^^~05/01/2006~
-~19384~^~262~^0.^0^^~4~^~RC~^^^^^^^^^^~05/01/2006~
-~19384~^~263~^0.^0^^~4~^~RC~^^^^^^^^^^~05/01/2006~
-~19384~^~268~^1523.^0^^~4~^~RC~^^^^^^^^^^~05/01/2006~
-~19384~^~301~^5.^0^^~4~^~RC~^^^^^^^^^^~05/01/2006~
-~19384~^~304~^2.^0^^~4~^~RC~^^^^^^^^^^~05/01/2006~
-~19384~^~305~^2.^0^^~4~^~RC~^^^^^^^^^^~05/01/2006~
-~19384~^~306~^23.^0^^~4~^~RC~^^^^^^^^^^~05/01/2006~
-~19384~^~307~^34.^0^^~4~^~RC~^^^^^^^^^^~05/01/2006~
-~19384~^~318~^0.^0^^~4~^~RC~^^^^^^^^^^~05/01/2006~
-~19384~^~319~^0.^0^^~4~^~RC~^^^^^^^^^^~05/01/2006~
-~19384~^~320~^0.^0^^~4~^~RC~^^^^^^^^^^~05/01/2006~
-~19384~^~321~^0.^0^^~4~^~RC~^^^^^^^^^^~05/01/2006~
-~19384~^~322~^0.^0^^~4~^~RC~^^^^^^^^^^~05/01/2006~
-~19384~^~334~^0.^0^^~4~^~RC~^^^^^^^^^^~05/01/2006~
-~19384~^~337~^0.^0^^~4~^~RC~^^^^^^^^^^~05/01/2006~
-~19384~^~338~^0.^0^^~4~^~RC~^^^^^^^^^^~05/01/2006~
-~19384~^~417~^0.^0^^~4~^~RC~^^^^^^^^^^~05/01/2006~
-~19384~^~431~^0.^0^^~4~^~RC~^^^^^^^^^^~05/01/2006~
-~19384~^~432~^0.^0^^~4~^~RC~^^^^^^^^^^~05/01/2006~
-~19384~^~435~^0.^0^^~4~^~NC~^^^^^^^^^^~05/01/2006~
-~19384~^~601~^0.^0^^~4~^~RC~^^^^^^^^^^~05/01/2006~
-~19387~^~208~^113.^0^^~4~^^^^^^^^^^^~08/01/1991~
-~19387~^~268~^473.^0^^~4~^^^^^^^^^^^~04/01/2005~
-~19387~^~301~^0.^1^^~1~^^^^^^^^^^^~08/01/1991~
-~19387~^~304~^5.^0^^~4~^^^^^^^^^^^~08/01/1991~
-~19387~^~305~^9.^0^^~4~^^^^^^^^^^^~08/01/1991~
-~19387~^~306~^17.^0^^~4~^^^^^^^^^^^~08/01/1991~
-~19387~^~307~^35.^1^^~1~^^^^^^^^^^^~08/01/1991~
-~19387~^~318~^0.^1^^~1~^^^^^^^^^^^~08/01/1991~
-~19387~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2002~
-~19387~^~320~^0.^0^^~4~^~NC~^^^^^^^^^^~06/01/2002~
-~19387~^~417~^1.^0^^~4~^^^^^^^^^^^~08/01/1991~
-~19387~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~
-~19387~^~432~^1.^0^^~4~^^^^^^^^^^^~08/01/1991~
-~19387~^~435~^1.^0^^~4~^~NC~^^^^^^^^^^~04/01/2005~
-~19387~^~601~^0.^1^^~1~^^^^^^^^^^^~08/01/1991~
-~19393~^~208~^160.^0^^~4~^^^^^^^^^^^~08/01/1991~
-~19393~^~262~^3.^0^^~4~^~FLA~^^^^^^^^^^~12/01/1997~
-~19393~^~263~^106.^0^^~4~^~FLA~^^^^^^^^^^~12/01/1997~
-~19393~^~268~^669.^0^^~4~^^^^^^^^^^^
-~19393~^~301~^147.^3^2.^~1~^^^^^^^^^^^~08/01/1991~
-~19393~^~304~^27.^2^^~1~^^^^^^^^^^^~08/01/1991~
-~19393~^~305~^139.^2^^~1~^^^^^^^^^^^~08/01/1991~
-~19393~^~306~^261.^2^^~1~^^^^^^^^^^^~08/01/1991~
-~19393~^~307~^98.^3^3.^~1~^^^^^^^^^^^~08/01/1991~
-~19393~^~318~^160.^1^^~4~^^^^^^^^^^^~08/01/1991~
-~19393~^~319~^43.^0^^~4~^~O~^^^^^^^^^^~03/01/2002~
-~19393~^~320~^44.^0^^~4~^~NC~^^^^^^^^^^~06/01/2002~
-~19393~^~321~^12.^0^^~4~^~O~^^^^^^^^^^~06/01/2002~
-~19393~^~417~^11.^2^^~1~^^^^^^^^^^^~08/01/1991~
-~19393~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~
-~19393~^~432~^11.^2^^~1~^^^^^^^^^^^~08/01/1991~
-~19393~^~435~^11.^0^^~4~^~NC~^^^^^^^^^^~06/01/2002~
-~19393~^~601~^5.^2^^~1~^^^^^^^^^^^~08/01/1991~
-~19400~^~208~^519.^0^^~4~^~NC~^^^^^^^^^^~04/01/2007~
-~19400~^~262~^0.^0^^~4~^~FLA~^^^^^^^^^^~03/01/2003~
-~19400~^~263~^0.^0^^~4~^~FLA~^^^^^^^^^^~03/01/2003~
-~19400~^~268~^2170.^0^^~4~^~NC~^^^^^^^^^^~04/01/2007~
-~19400~^~301~^18.^2^^~1~^^^^^^^^^^^~08/01/1991~
-~19400~^~304~^76.^2^^~1~^^^^^^^^^^^~08/01/1991~
-~19400~^~305~^56.^2^^~1~^^^^^^^^^^^~08/01/1991~
-~19400~^~306~^536.^2^^~1~^^^^^^^^^^^~08/01/1991~
-~19400~^~307~^6.^2^^~1~^^^^^^^^^^^~08/01/1991~
-~19400~^~318~^83.^1^^~4~^^^^^^^^^^^~08/01/1991~
-~19400~^~319~^0.^0^^~4~^~FLA~^^^^^^^^^^~03/01/2003~
-~19400~^~320~^4.^0^^~4~^~NC~^^^^^^^^^^~03/01/2003~
-~19400~^~321~^34.^0^^~4~^~BNA~^^^^^^^^^^~03/01/2003~
-~19400~^~322~^32.^0^^~4~^~BNA~^^^^^^^^^^~03/01/2003~
-~19400~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2009~
-~19400~^~334~^0.^0^^~4~^~BNA~^^^^^^^^^^~03/01/2003~
-~19400~^~337~^0.^0^^~4~^~FLA~^^^^^^^^^^~03/01/2003~
-~19400~^~338~^46.^0^^~4~^~FLA~^^^^^^^^^^~03/01/2003~
-~19400~^~417~^14.^2^^~1~^^^^^^^^^^^~08/01/1991~
-~19400~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~
-~19400~^~432~^14.^2^^~1~^^^^^^^^^^^~03/01/2003~
-~19400~^~435~^14.^0^^~4~^~NC~^^^^^^^^^^~04/01/2007~
-~19400~^~601~^0.^1^^~4~^^^^^^^^^^^~08/01/1991~
-~19401~^~208~^436.^0^^~4~^~NC~^^^^^^^^^^~08/01/1991~
-~19401~^~268~^1824.^0^^~4~^^^^^^^^^^^
-~19401~^~301~^17.^4^1.^~1~^^^^^^^^^^^~08/01/1991~
-~19401~^~304~^109.^4^4.^~1~^^^^^^^^^^^~08/01/1991~
-~19401~^~305~^283.^4^10.^~1~^^^^^^^^^^^~08/01/1991~
-~19401~^~306~^286.^4^14.^~1~^^^^^^^^^^^~08/01/1991~
-~19401~^~307~^600.^0^^~8~^~LC~^^^^^^^^^^~05/01/2010~
-~19401~^~318~^338.^1^^~4~^^^^^^^^^^^~08/01/1991~
-~19401~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2002~
-~19401~^~320~^17.^0^^~4~^~NC~^^^^^^^^^^~06/01/2002~
-~19401~^~417~^0.^3^0.^~1~^^^^^^^^^^^~08/01/1991~
-~19401~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~
-~19401~^~432~^0.^3^0.^~1~^^^^^^^^^^^~08/01/1991~
-~19401~^~435~^0.^0^^~4~^~NC~^^^^^^^^^^~01/01/2001~
-~19401~^~601~^0.^1^^~4~^^^^^^^^^^^~08/01/1991~
-~19403~^~208~^458.^0^^~4~^~NC~^^^^^^^^^^~08/01/1991~
-~19403~^~268~^1916.^0^^~4~^^^^^^^^^^^
-~19403~^~301~^74.^1^^~1~^^^^^^^^^^^~08/01/1991~
-~19403~^~304~^71.^1^^~1~^^^^^^^^^^^~08/01/1991~
-~19403~^~305~^167.^1^^~1~^^^^^^^^^^^~08/01/1991~
-~19403~^~306~^229.^1^^~1~^^^^^^^^^^^~08/01/1991~
-~19403~^~307~^234.^1^^~1~^^^^^^^^^^^~08/01/1991~
-~19403~^~318~^2645.^1^^~1~^^^^^^^^^^^~08/01/1991~
-~19403~^~417~^0.^1^^~1~^^^^^^^^^^^~08/01/1991~
-~19403~^~432~^0.^1^^~1~^^^^^^^^^^^~05/01/2011~
-~19403~^~601~^0.^1^^~4~^^^^^^^^^^^~08/01/1991~
-~19404~^~208~^418.^0^^~4~^~NC~^^^^^^^^^^~03/01/2006~
-~19404~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2006~
-~19404~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2006~
-~19404~^~268~^1749.^0^^~4~^~NC~^^^^^^^^^^~03/01/2006~
-~19404~^~301~^41.^3^7.^~1~^~A~^^^1^26.^50.^2^8.^72.^~2, 3~^~03/01/2006~
-~19404~^~304~^64.^3^1.^~1~^~A~^^^1^61.^67.^2^55.^71.^~2, 3~^~03/01/2006~
-~19404~^~305~^176.^3^3.^~1~^~A~^^^1^169.^181.^2^160.^191.^~2, 3~^~03/01/2006~
-~19404~^~306~^237.^3^20.^~1~^~A~^^^1^209.^276.^2^150.^323.^~2, 3~^~03/01/2006~
-~19404~^~307~^291.^0^^~8~^~LC~^^^^^^^^^^~01/01/2018~
-~19404~^~318~^0.^0^^~1~^~AS~^^^^^^^^^^~05/01/2006~
-~19404~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2006~
-~19404~^~320~^0.^0^^~4~^~NC~^^^^^^^^^^~04/01/2011~
-~19404~^~321~^0.^0^^~4~^~NR~^^^^^^^^^^~04/01/2011~
-~19404~^~322~^0.^0^^~4~^~NR~^^^^^^^^^^~04/01/2011~
-~19404~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~
-~19404~^~334~^0.^0^^~4~^~NR~^^^^^^^^^^~04/01/2011~
-~19404~^~337~^0.^0^^~4~^~NR~^^^^^^^^^^~04/01/2011~
-~19404~^~338~^0.^0^^~4~^~NR~^^^^^^^^^^~04/01/2011~
-~19404~^~417~^16.^3^0.^~1~^~A~^^^1^16.^17.^2^14.^17.^~2, 3~^~03/01/2006~
-~19404~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~
-~19404~^~432~^16.^3^0.^~1~^~A~^^^1^16.^17.^2^14.^17.^^~03/01/2006~
-~19404~^~435~^16.^0^^~4~^~NC~^^^^^^^^^^~05/01/2006~
-~19404~^~601~^0.^1^^~1~^~A~^^^^^^^^^~1~^~03/01/2006~
-~19405~^~208~^427.^0^^~4~^~NC~^^^^^^^^^^~08/01/1991~
-~19405~^~268~^1787.^0^^~4~^^^^^^^^^^^
-~19405~^~301~^89.^1^^~1~^^^^^^^^^^^~08/01/1991~
-~19405~^~304~^71.^1^^~1~^^^^^^^^^^^~08/01/1991~
-~19405~^~305~^202.^1^^~1~^^^^^^^^^^^~08/01/1991~
-~19405~^~306~^275.^1^^~1~^^^^^^^^^^^~08/01/1991~
-~19405~^~307~^316.^1^^~1~^^^^^^^^^^^~08/01/1991~
-~19405~^~318~^47.^1^^~4~^^^^^^^^^^^~08/01/1991~
-~19405~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2002~
-~19405~^~320~^2.^0^^~4~^~NC~^^^^^^^^^^~06/01/2002~
-~19405~^~417~^21.^1^^~1~^^^^^^^^^^^~08/01/1991~
-~19405~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~
-~19405~^~432~^21.^1^^~1~^^^^^^^^^^^~08/01/1991~
-~19405~^~435~^21.^0^^~4~^~NC~^^^^^^^^^^~01/01/2001~
-~19405~^~601~^0.^0^^~4~^~NR~^^^^^^^^^^~05/01/2013~
-~19406~^~208~^454.^0^^~4~^~NC~^^^^^^^^^^~08/01/1991~
-~19406~^~268~^1900.^0^^~4~^^^^^^^^^^^
-~19406~^~301~^84.^1^^~1~^^^^^^^^^^^~08/01/1991~
-~19406~^~304~^91.^1^^~1~^^^^^^^^^^^~08/01/1991~
-~19406~^~305~^241.^1^^~1~^^^^^^^^^^^~08/01/1991~
-~19406~^~306~^392.^1^^~1~^^^^^^^^^^^~08/01/1991~
-~19406~^~307~^254.^1^^~1~^^^^^^^^^^^~08/01/1991~
-~19406~^~318~^41.^1^^~4~^^^^^^^^^^^~08/01/1991~
-~19406~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2002~
-~19406~^~320~^2.^0^^~4~^~NC~^^^^^^^^^^~06/01/2002~
-~19406~^~417~^30.^1^^~1~^^^^^^^^^^^~08/01/1991~
-~19406~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~
-~19406~^~432~^30.^1^^~1~^^^^^^^^^^^~08/01/1991~
-~19406~^~435~^30.^0^^~4~^~NC~^^^^^^^^^^~01/01/2001~
-~19406~^~601~^0.^0^^~4~^~NR~^^^^^^^^^^~05/01/2013~
-~19407~^~208~^550.^0^^~4~^~NC~^^^^^^^^^^~08/01/1991~
-~19407~^~268~^2301.^0^^~4~^^^^^^^^^^^
-~19407~^~301~^68.^1^^~1~^^^^^^^^^^^~08/01/1991~
-~19407~^~304~^21.^1^^~4~^^^^^^^^^^^~08/01/1991~
-~19407~^~305~^180.^1^^~1~^^^^^^^^^^^~08/01/1991~
-~19407~^~306~^257.^1^^~4~^^^^^^^^^^^~08/01/1991~
-~19407~^~307~^1531.^0^^~8~^~LC~^^^^^^^^^^~06/01/2010~
-~19407~^~318~^250.^0^^~4~^~NC~^^^^^^^^^^~04/01/2002~
-~19407~^~319~^0.^0^^~4~^~NR~^^^^^^^^^^~04/01/2002~
-~19407~^~320~^13.^0^^~4~^~NC~^^^^^^^^^^~04/01/2002~
-~19407~^~321~^150.^0^^~4~^~NR~^^^^^^^^^^~04/01/2002~
-~19407~^~417~^0.^1^^~1~^^^^^^^^^^^~08/01/1991~
-~19407~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~
-~19407~^~432~^0.^1^^~1~^^^^^^^^^^^~08/01/1991~
-~19407~^~435~^0.^0^^~4~^~NC~^^^^^^^^^^~01/01/2001~
-~19407~^~601~^133.^4^0.^~1~^^^^^^^^^^^~08/01/1991~
-~19408~^~208~^538.^0^^~4~^^^^^^^^^^^~08/01/1991~
-~19408~^~268~^2251.^0^^~4~^^^^^^^^^^^
-~19408~^~301~^43.^1^^~1~^^^^^^^^^^^~08/01/1991~
-~19408~^~304~^0.^1^^~1~^^^^^^^^^^^~08/01/1991~
-~19408~^~305~^220.^1^^~1~^^^^^^^^^^^~08/01/1991~
-~19408~^~306~^180.^1^^~1~^^^^^^^^^^^~08/01/1991~
-~19408~^~307~^2667.^9^194.^~1~^^^^^^^^^^^~08/01/1991~
-~19408~^~318~^667.^0^^~4~^~NC~^^^^^^^^^^~04/01/2002~
-~19408~^~319~^38.^0^^~4~^~NR~^^^^^^^^^^~04/01/2002~
-~19408~^~320~^65.^0^^~4~^~NC~^^^^^^^^^^~04/01/2002~
-~19408~^~321~^324.^0^^~4~^~NR~^^^^^^^^^^~04/01/2002~
-~19408~^~417~^31.^1^^~4~^^^^^^^^^^^~08/01/1991~
-~19408~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~
-~19408~^~432~^31.^1^^~4~^^^^^^^^^^^~08/01/1991~
-~19408~^~435~^31.^0^^~4~^~NC~^^^^^^^^^^~04/01/2002~
-~19408~^~601~^115.^8^4.^~1~^^^^^^^^^^^~08/01/1991~
-~19409~^~208~^359.^0^^~4~^~NC~^^^^^^^^^^~05/01/2006~
-~19409~^~262~^3.^0^^~4~^~RC~^^^^^^^^^^~05/01/2006~
-~19409~^~263~^98.^0^^~4~^~RC~^^^^^^^^^^~05/01/2006~
-~19409~^~268~^1502.^0^^~4~^~NC~^^^^^^^^^^~05/01/2006~
-~19409~^~301~^32.^0^^~4~^~RC~^^^^^^^^^^~05/01/2006~
-~19409~^~304~^20.^0^^~4~^~RC~^^^^^^^^^^~05/01/2006~
-~19409~^~305~^48.^0^^~4~^~RC~^^^^^^^^^^~05/01/2006~
-~19409~^~306~^130.^0^^~4~^~RC~^^^^^^^^^^~05/01/2006~
-~19409~^~307~^132.^0^^~4~^~RC~^^^^^^^^^^~05/01/2006~
-~19409~^~318~^249.^0^^~4~^~RC~^^^^^^^^^^~05/01/2006~
-~19409~^~319~^68.^0^^~4~^~RC~^^^^^^^^^^~05/01/2006~
-~19409~^~320~^69.^0^^~4~^~RC~^^^^^^^^^^~05/01/2006~
-~19409~^~321~^13.^0^^~4~^~RC~^^^^^^^^^^~05/01/2006~
-~19409~^~322~^0.^0^^~4~^~RC~^^^^^^^^^^~05/01/2006~
-~19409~^~334~^0.^0^^~4~^~RC~^^^^^^^^^^~05/01/2006~
-~19409~^~337~^0.^0^^~4~^~RC~^^^^^^^^^^~05/01/2006~
-~19409~^~338~^1.^0^^~4~^~RC~^^^^^^^^^^~05/01/2006~
-~19409~^~417~^2.^0^^~4~^~RC~^^^^^^^^^^~05/01/2006~
-~19409~^~431~^0.^0^^~4~^~RC~^^^^^^^^^^~05/01/2006~
-~19409~^~432~^2.^0^^~4~^~RC~^^^^^^^^^^~05/01/2006~
-~19409~^~435~^2.^0^^~4~^~NC~^^^^^^^^^^~05/01/2006~
-~19409~^~601~^18.^0^^~4~^~RC~^^^^^^^^^^~05/01/2006~
-~19410~^~208~^545.^0^^~4~^~NC~^^^^^^^^^^~05/01/2014~
-~19410~^~262~^0.^0^^~4~^~FLA~^^^^^^^^^^~03/01/2003~
-~19410~^~263~^0.^0^^~4~^~FLA~^^^^^^^^^^~03/01/2003~
-~19410~^~268~^2280.^0^^~4~^~NC~^^^^^^^^^^~05/01/2014~
-~19410~^~301~^17.^6^0.^~1~^~A~^^^1^14.^20.^5^15.^19.^~2, 3~^~05/01/2014~
-~19410~^~304~^40.^6^1.^~1~^~A~^^^1^36.^44.^5^36.^42.^~2, 3~^~05/01/2014~
-~19410~^~305~^110.^6^4.^~1~^~A~^^^1^96.^131.^5^97.^122.^~2, 3~^~05/01/2014~
-~19410~^~306~^637.^6^25.^~1~^~A~^^^1^571.^743.^5^570.^702.^~2, 3~^~05/01/2014~
-~19410~^~307~^529.^0^^~4~^~NR~^^^^^^^^^^~07/01/2017~
-~19410~^~318~^0.^1^^~4~^^^^^^^^^^^~03/01/2008~
-~19410~^~319~^0.^0^^~4~^~FLA~^^^^^^^^^^~03/01/2003~
-~19410~^~320~^0.^0^^~4~^~NC~^^^^^^^^^^~07/01/2008~
-~19410~^~321~^0.^0^^~4~^~FLA~^^^^^^^^^^~03/01/2003~
-~19410~^~322~^0.^0^^~4~^~FLA~^^^^^^^^^^~03/01/2003~
-~19410~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2009~
-~19410~^~334~^0.^0^^~4~^~FLA~^^^^^^^^^^~03/01/2003~
-~19410~^~337~^0.^0^^~4~^~FLA~^^^^^^^^^^~03/01/2003~
-~19410~^~338~^0.^0^^~4~^~FLA~^^^^^^^^^^~03/01/2003~
-~19410~^~417~^19.^3^3.^~1~^~A~^^^1^15.^25.^2^4.^33.^~2, 3~^~05/01/2014~
-~19410~^~431~^0.^0^^~4~^~FLA~^^^^^^^^^^~03/01/2003~
-~19410~^~432~^19.^3^3.^~1~^~A~^^^1^15.^25.^2^4.^33.^^~05/01/2014~
-~19410~^~435~^19.^0^^~4~^~NC~^^^^^^^^^^~05/01/2014~
-~19410~^~601~^0.^2^^~1~^^^^^^^^^^^~08/01/1991~
-~19410~^~636~^34.^0^^~4~^~FLA~^^^^^^^^^^~03/01/2008~
-~19411~^~208~^532.^0^^~4~^~NC~^^^^^^^^^^~05/01/2014~
-~19411~^~262~^0.^0^^~4~^~FLA~^^^^^^^^^^~12/01/2008~
-~19411~^~263~^0.^0^^~4~^~FLA~^^^^^^^^^^~12/01/2008~
-~19411~^~268~^2227.^0^^~4~^~NC~^^^^^^^^^^~05/01/2014~
-~19411~^~301~^21.^17^0.^~1~^~A~^^^1^12.^31.^7^18.^23.^~2, 3~^~05/01/2014~
-~19411~^~304~^63.^17^1.^~1~^~A~^^^1^49.^81.^8^60.^65.^~2, 3~^~05/01/2014~
-~19411~^~305~^153.^17^4.^~1~^~A~^^^1^120.^201.^7^142.^163.^~2, 3~^~05/01/2014~
-~19411~^~306~^1196.^17^23.^~1~^~A~^^^1^983.^1380.^7^1140.^1250.^~2, 3~^~05/01/2014~
-~19411~^~307~^527.^17^16.^~1~^~A~^^^1^235.^633.^6^486.^567.^~2, 3~^~05/01/2014~
-~19411~^~318~^0.^5^0.^~1~^^^^^^^^^^^~09/01/2004~
-~19411~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2002~
-~19411~^~320~^0.^0^^~4~^~NC~^^^^^^^^^^~05/01/2009~
-~19411~^~321~^0.^0^^~4~^~O~^^^^^^^^^^~02/01/2005~
-~19411~^~322~^0.^0^^~4~^~O~^^^^^^^^^^~02/01/2005~
-~19411~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~
-~19411~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2003~
-~19411~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2003~
-~19411~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2003~
-~19411~^~417~^29.^9^3.^~1~^~A~^^^1^20.^36.^2^14.^42.^~2, 3~^~05/01/2014~
-~19411~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~
-~19411~^~432~^29.^0^^~4~^~NR~^^^^^^^^^^~05/01/2014~
-~19411~^~435~^29.^0^^~4~^~NC~^^^^^^^^^^~05/01/2014~
-~19411~^~601~^0.^24^0.^~1~^^^^^^^^^^^~08/01/1991~
-~19411~^~636~^181.^0^^~4~^~FLA~^^^^^^^^^^~12/01/2008~
-~19412~^~208~^551.^0^^~4~^~NC~^^^^^^^^^^~08/01/1991~
-~19412~^~268~^2305.^0^^~4~^^^^^^^^^^^~06/01/2006~
-~19412~^~301~^110.^1^^~1~^^^^^^^^^^^~08/01/1991~
-~19412~^~304~^53.^1^^~4~^^^^^^^^^^^~08/01/1991~
-~19412~^~305~^163.^1^^~4~^^^^^^^^^^^~08/01/1991~
-~19412~^~306~^381.^1^^~4~^^^^^^^^^^^~08/01/1991~
-~19412~^~307~^600.^0^^~4~^~NR~^^^^^^^^^^~04/01/2011~
-~19412~^~318~^3.^0^^~4~^~O~^^^^^^^^^^~06/01/2006~
-~19412~^~319~^1.^0^^~4~^~NC~^^^^^^^^^^~06/01/2002~
-~19412~^~320~^1.^0^^~4~^~NC~^^^^^^^^^^~06/01/2002~
-~19412~^~417~^18.^1^^~4~^^^^^^^^^^^~08/01/1991~
-~19412~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~
-~19412~^~432~^18.^1^^~4~^^^^^^^^^^^~08/01/1991~
-~19412~^~435~^18.^0^^~4~^~NC~^^^^^^^^^^~06/01/2006~
-~19412~^~601~^4.^1^^~1~^^^^^^^^^^^~08/01/1991~
-~19413~^~208~^385.^0^^~4~^~NC~^^^^^^^^^^~08/01/1991~
-~19413~^~268~^1611.^0^^~4~^^^^^^^^^^^
-~19413~^~301~^9.^2^^~1~^^^^^^^^^^^~08/01/1991~
-~19413~^~304~^114.^1^^~1~^^^^^^^^^^^~08/01/1991~
-~19413~^~305~^320.^1^^~1~^^^^^^^^^^^~08/01/1991~
-~19413~^~306~^275.^2^^~1~^^^^^^^^^^^~08/01/1991~
-~19413~^~307~^167.^0^^~4~^~T~^^^^^^^^^^~07/01/2010~
-~19413~^~318~^0.^1^^~1~^^^^^^^^^^^~08/01/1991~
-~19413~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2002~
-~19413~^~320~^0.^0^^~4~^~NC~^^^^^^^^^^~06/01/2002~
-~19413~^~417~^19.^1^^~1~^^^^^^^^^^^~08/01/1991~
-~19413~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~
-~19413~^~432~^19.^1^^~1~^^^^^^^^^^^~08/01/1991~
-~19413~^~435~^19.^0^^~4~^~NC~^^^^^^^^^^~01/01/2001~
-~19413~^~601~^0.^1^^~4~^^^^^^^^^^^~08/01/1991~
-~19414~^~208~^387.^0^^~4~^~NC~^^^^^^^^^^~08/01/1991~
-~19414~^~268~^1619.^0^^~4~^^^^^^^^^^^
-~19414~^~301~^21.^10^3.^~1~^^^^^^^^^^^~08/01/1991~
-~19414~^~304~^137.^4^4.^~1~^^^^^^^^^^^~08/01/1991~
-~19414~^~305~^370.^4^16.^~1~^^^^^^^^^^^~08/01/1991~
-~19414~^~306~^294.^8^19.^~1~^^^^^^^^^^^~08/01/1991~
-~19414~^~307~^252.^3^76.^~1~^^^^^^^^^^^~08/01/1991~
-~19414~^~318~^0.^1^^~1~^^^^^^^^^^^~08/01/1991~
-~19414~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2002~
-~19414~^~320~^0.^0^^~4~^~NC~^^^^^^^^^^~06/01/2002~
-~19414~^~417~^20.^4^2.^~1~^^^^^^^^^^^~08/01/1991~
-~19414~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~
-~19414~^~432~^20.^4^2.^~1~^^^^^^^^^^^~08/01/1991~
-~19414~^~435~^20.^0^^~4~^~NC~^^^^^^^^^^~01/01/2001~
-~19414~^~601~^0.^0^^~4~^^^^^^^^^^^~08/01/1991~
-~19415~^~208~^522.^0^^~4~^~NC~^^^^^^^^^^~08/01/1991~
-~19415~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2003~
-~19415~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2003~
-~19415~^~268~^2184.^0^^~4~^^^^^^^^^^^~04/01/2007~
-~19415~^~301~^18.^3^0.^~1~^^^^^^^^^^^~08/01/1991~
-~19415~^~304~^64.^3^0.^~1~^^^^^^^^^^^~08/01/1991~
-~19415~^~305~^172.^3^0.^~1~^^^^^^^^^^^~08/01/1991~
-~19415~^~306~^1237.^3^10.^~1~^^^^^^^^^^^~08/01/1991~
-~19415~^~307~^633.^0^^~4~^~NR~^^^^^^^^^^~04/01/2011~
-~19415~^~318~^0.^0^^~1~^~AS~^^^^^^^^^^~03/01/2003~
-~19415~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2002~
-~19415~^~320~^0.^0^^~1~^~AS~^^^^^^^^^^~03/01/2003~
-~19415~^~321~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2003~
-~19415~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2003~
-~19415~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2009~
-~19415~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2003~
-~19415~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2003~
-~19415~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2003~
-~19415~^~417~^40.^3^2.^~1~^^^^^^^^^^^~08/01/1991~
-~19415~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~
-~19415~^~432~^40.^3^2.^~1~^^^^^^^^^^^~08/01/1991~
-~19415~^~435~^40.^0^^~4~^~NC~^^^^^^^^^^~04/01/2007~
-~19415~^~601~^0.^1^^~4~^^^^^^^^^^^~08/01/1991~
-~19416~^~208~^386.^0^^~4~^~NC~^^^^^^^^^^~08/01/1991~
-~19416~^~268~^1615.^0^^~4~^^^^^^^^^^^
-~19416~^~301~^21.^2^^~1~^^^^^^^^^^^~08/01/1991~
-~19416~^~304~^144.^1^^~1~^^^^^^^^^^^~08/01/1991~
-~19416~^~305~^380.^1^^~1~^^^^^^^^^^^~08/01/1991~
-~19416~^~306~^311.^2^^~1~^^^^^^^^^^^~08/01/1991~
-~19416~^~307~^110.^1^^~1~^^^^^^^^^^^~08/01/1991~
-~19416~^~318~^3.^1^^~4~^^^^^^^^^^^~08/01/1991~
-~19416~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2002~
-~19416~^~320~^0.^0^^~4~^~NC~^^^^^^^^^^~06/01/2002~
-~19416~^~417~^5.^1^^~1~^^^^^^^^^^^~08/01/1991~
-~19416~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~
-~19416~^~432~^5.^1^^~1~^^^^^^^^^^^~08/01/1991~
-~19416~^~435~^5.^0^^~4~^~NC~^^^^^^^^^^~01/01/2001~
-~19416~^~601~^0.^1^^~4~^^^^^^^^^^^~08/01/1991~
-~19418~^~208~^541.^0^^~4~^~NC~^^^^^^^^^^~08/01/1991~
-~19418~^~262~^0.^0^^~4~^~FLA~^^^^^^^^^^~03/01/2003~
-~19418~^~263~^0.^0^^~4~^~FLA~^^^^^^^^^^~03/01/2003~
-~19418~^~268~^2264.^0^^~4~^^^^^^^^^^^~05/01/2007~
-~19418~^~301~^170.^1^^~1~^^^^^^^^^^^~08/01/1991~
-~19418~^~304~^45.^1^^~4~^^^^^^^^^^^~08/01/1991~
-~19418~^~305~^138.^1^^~4~^^^^^^^^^^^~08/01/1991~
-~19418~^~306~^177.^1^^~4~^^^^^^^^^^^~08/01/1991~
-~19418~^~307~^1488.^1^^~1~^^^^^^^^^^^~08/01/1991~
-~19418~^~318~^5.^0^^~4~^~NC~^^^^^^^^^^~03/01/2003~
-~19418~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2002~
-~19418~^~320~^0.^0^^~4~^~NC~^^^^^^^^^^~05/01/2007~
-~19418~^~321~^3.^0^^~4~^~FLA~^^^^^^^^^^~03/01/2003~
-~19418~^~322~^0.^0^^~4~^~FLA~^^^^^^^^^^~03/01/2003~
-~19418~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2009~
-~19418~^~334~^0.^0^^~4~^~FLA~^^^^^^^^^^~03/01/2003~
-~19418~^~337~^0.^0^^~4~^~FLA~^^^^^^^^^^~03/01/2003~
-~19418~^~338~^19.^0^^~4~^~FLA~^^^^^^^^^^~03/01/2003~
-~19418~^~417~^22.^1^^~4~^^^^^^^^^^^~08/01/1991~
-~19418~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~
-~19418~^~432~^22.^1^^~4~^^^^^^^^^^^~03/01/2003~
-~19418~^~435~^22.^0^^~4~^~NC~^^^^^^^^^^~05/01/2007~
-~19418~^~601~^0.^1^^~4~^^^^^^^^^^^~08/01/1991~
-~19419~^~208~^387.^0^^~4~^~NC~^^^^^^^^^^~08/01/1991~
-~19419~^~262~^0.^0^^~4~^~FLA~^^^^^^^^^^~04/01/2003~
-~19419~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2003~
-~19419~^~268~^1619.^0^^~4~^^^^^^^^^^^~05/01/2009~
-~19419~^~301~^19.^1^^~1~^^^^^^^^^^^~08/01/1991~
-~19419~^~304~^114.^1^^~1~^^^^^^^^^^^~08/01/1991~
-~19419~^~305~^157.^1^^~1~^^^^^^^^^^^~08/01/1991~
-~19419~^~306~^157.^1^^~1~^^^^^^^^^^^~08/01/1991~
-~19419~^~307~^488.^1^^~1~^^^^^^^^^^^~08/01/1991~
-~19419~^~318~^242.^0^^~4~^~NC~^^^^^^^^^^~04/01/2003~
-~19419~^~319~^69.^0^^~4~^~BNA~^^^^^^^^^^~04/01/2003~
-~19419~^~320~^70.^0^^~4~^~NC~^^^^^^^^^^~05/01/2009~
-~19419~^~321~^5.^0^^~4~^~BNA~^^^^^^^^^^~04/01/2003~
-~19419~^~322~^0.^0^^~4~^~BNA~^^^^^^^^^^~04/01/2003~
-~19419~^~334~^4.^0^^~4~^~BNA~^^^^^^^^^^~04/01/2003~
-~19419~^~337~^0.^0^^~4~^~FLA~^^^^^^^^^^~04/01/2003~
-~19419~^~338~^0.^0^^~4~^~FLA~^^^^^^^^^^~04/01/2003~
-~19419~^~417~^19.^1^^~1~^^^^^^^^^^^~08/01/1991~
-~19419~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~
-~19419~^~432~^19.^1^^~1~^^^^^^^^^^^~04/01/2003~
-~19419~^~435~^19.^0^^~4~^~NC~^^^^^^^^^^~05/01/2009~
-~19419~^~601~^0.^1^^~4~^^^^^^^^^^^~08/01/1991~
-~19420~^~208~^483.^0^^~4~^~NC~^^^^^^^^^^~08/01/1991~
-~19420~^~268~^2021.^0^^~4~^^^^^^^^^^^
-~19420~^~301~^41.^1^^~1~^^^^^^^^^^^~08/01/1991~
-~19420~^~304~^55.^1^^~4~^^^^^^^^^^^~08/01/1991~
-~19420~^~305~^139.^1^^~4~^^^^^^^^^^^~08/01/1991~
-~19420~^~306~^291.^1^^~1~^^^^^^^^^^^~08/01/1991~
-~19420~^~307~^283.^1^^~1~^^^^^^^^^^^~08/01/1991~
-~19420~^~318~^16.^1^^~4~^^^^^^^^^^^~08/01/1991~
-~19420~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2002~
-~19420~^~320~^1.^0^^~4~^~NC~^^^^^^^^^^~06/01/2002~
-~19420~^~417~^18.^1^^~4~^^^^^^^^^^^~08/01/1991~
-~19420~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~
-~19420~^~432~^18.^1^^~4~^^^^^^^^^^^~08/01/1991~
-~19420~^~435~^18.^0^^~4~^~NC~^^^^^^^^^^~01/01/2001~
-~19420~^~601~^0.^1^^~4~^^^^^^^^^^^~08/01/1991~
-~19421~^~208~^496.^0^^~4~^~NC~^^^^^^^^^^~08/01/1991~
-~19421~^~268~^2075.^0^^~4~^^^^^^^^^^^
-~19421~^~301~^72.^4^2.^~1~^^^^^^^^^^^~08/01/1991~
-~19421~^~304~^75.^4^2.^~1~^^^^^^^^^^^~08/01/1991~
-~19421~^~305~^299.^4^7.^~1~^^^^^^^^^^^~08/01/1991~
-~19421~^~306~^1528.^4^31.^~1~^^^^^^^^^^^~08/01/1991~
-~19421~^~307~^458.^0^^~4~^~T~^^^^^^^^^^~05/01/2011~
-~19421~^~318~^33.^1^^~4~^^^^^^^^^^^~08/01/1991~
-~19421~^~319~^10.^0^^~4~^~NC~^^^^^^^^^^~06/01/2002~
-~19421~^~320~^10.^0^^~4~^~NC~^^^^^^^^^^~06/01/2002~
-~19421~^~417~^0.^4^0.^~1~^^^^^^^^^^^~08/01/1991~
-~19421~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~
-~19421~^~432~^0.^4^0.^~1~^^^^^^^^^^^~08/01/1991~
-~19421~^~435~^0.^0^^~4~^~NC~^^^^^^^^^^~01/01/2001~
-~19421~^~601~^4.^1^^~4~^^^^^^^^^^^~08/01/1991~
-~19422~^~208~^471.^0^^~4~^~NC~^^^^^^^^^^~08/01/1991~
-~19422~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2007~
-~19422~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2007~
-~19422~^~268~^1971.^0^^~4~^^^^^^^^^^^~05/01/2007~
-~19422~^~301~^21.^2^^~1~^^^^^^^^^^^~08/01/1991~
-~19422~^~304~^89.^2^^~1~^^^^^^^^^^^~08/01/1991~
-~19422~^~305~^193.^2^^~1~^^^^^^^^^^^~08/01/1991~
-~19422~^~306~^1744.^2^^~1~^^^^^^^^^^^~08/01/1991~
-~19422~^~307~^571.^0^^~8~^~LC~^^^^^^^^^^~07/01/2017~
-~19422~^~318~^0.^0^^~4~^~NC~^^^^^^^^^^~03/01/2003~
-~19422~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2002~
-~19422~^~320~^0.^0^^~4~^~NC~^^^^^^^^^^~03/01/2003~
-~19422~^~321~^0.^0^^~4~^~BFFN~^~19411~^^^^^^^^^~03/01/2003~
-~19422~^~322~^0.^0^^~4~^~BFFN~^~19411~^^^^^^^^^~03/01/2003~
-~19422~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2009~
-~19422~^~334~^0.^0^^~4~^~BFFN~^~19411~^^^^^^^^^~03/01/2003~
-~19422~^~337~^0.^0^^~4~^~BFFN~^~19411~^^^^^^^^^~03/01/2003~
-~19422~^~338~^0.^0^^~4~^~BFFN~^~19411~^^^^^^^^^~03/01/2003~
-~19422~^~417~^27.^1^^~4~^^^^^^^^^^^~08/01/1991~
-~19422~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~
-~19422~^~432~^27.^0^^~4~^~NR~^^^^^^^^^^~03/01/2003~
-~19422~^~435~^27.^0^^~4~^~NC~^^^^^^^^^^~05/01/2007~
-~19422~^~601~^0.^1^^~4~^^^^^^^^^^^~08/01/1991~
-~19423~^~208~^274.^0^^~4~^~NC~^^^^^^^^^^~03/01/2006~
-~19423~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2003~
-~19423~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2003~
-~19423~^~268~^1147.^0^^~4~^~NC~^^^^^^^^^^~03/01/2006~
-~19423~^~301~^35.^1^^~1~^~A~^^^^^^^^^^~03/01/2006~
-~19423~^~304~^69.^1^^~1~^~A~^^^^^^^^^^~03/01/2006~
-~19423~^~305~^174.^1^^~1~^~A~^^^^^^^^^^~03/01/2006~
-~19423~^~306~^1160.^1^^~1~^~A~^^^^^^^^^^~03/01/2006~
-~19423~^~307~^554.^1^^~1~^~A~^^^^^^^^^^~03/01/2006~
-~19423~^~318~^0.^0^^~1~^~AS~^^^^^^^^^^~03/01/2006~
-~19423~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2003~
-~19423~^~320~^0.^0^^~1~^~AS~^^^^^^^^^^~03/01/2006~
-~19423~^~321~^0.^1^^~1~^~A~^^^^^^^^^~1~^~03/01/2006~
-~19423~^~322~^0.^1^^~1~^~A~^^^^^^^^^~1~^~03/01/2006~
-~19423~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2009~
-~19423~^~334~^0.^1^^~1~^~A~^^^^^^^^^~1~^~03/01/2006~
-~19423~^~337~^0.^1^^~1~^~A~^^^^^^^^^~1~^~03/01/2006~
-~19423~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2003~
-~19423~^~417~^83.^1^^~1~^~A~^^^^^^^^^^~03/01/2006~
-~19423~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2003~
-~19423~^~432~^83.^1^^~1~^~A~^^^^^^^^^^~03/01/2006~
-~19423~^~435~^83.^0^^~4~^~NC~^^^^^^^^^^~05/01/2007~
-~19423~^~601~^0.^0^^~7~^~Z~^^^^^^^^^^~07/01/1998~
-~19424~^~208~^445.^0^^~4~^~NC~^^^^^^^^^^~08/01/1991~
-~19424~^~268~^1862.^0^^~4~^^^^^^^^^^^
-~19424~^~301~^159.^15^4.^~1~^^^^^^^^^^^~08/01/1991~
-~19424~^~304~^97.^15^1.^~1~^^^^^^^^^^^~08/01/1991~
-~19424~^~305~^318.^15^2.^~1~^^^^^^^^^^^~08/01/1991~
-~19424~^~306~^272.^15^2.^~1~^^^^^^^^^^^~08/01/1991~
-~19424~^~307~^1003.^24^16.^~1~^^^^^^^^^^^~08/01/1991~
-~19424~^~318~^380.^15^11.^~1~^^^^^^^^^^^~08/01/1991~
-~19424~^~319~^6.^0^^~4~^~NC~^^^^^^^^^^~06/01/2002~
-~19424~^~320~^24.^0^^~4~^~NC~^^^^^^^^^^~06/01/2002~
-~19424~^~417~^26.^1^^~4~^^^^^^^^^^^~08/01/1991~
-~19424~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~
-~19424~^~432~^26.^1^^~4~^^^^^^^^^^^~08/01/1991~
-~19424~^~435~^26.^0^^~4~^~NC~^^^^^^^^^^~04/01/2001~
-~19424~^~601~^3.^15^0.^~1~^^^^^^^^^^^~08/01/1991~
-~19433~^~208~^448.^0^^~4~^~NC~^^^^^^^^^^~02/01/2017~
-~19433~^~262~^0.^0^^~4~^~BFFN~^~19056~^^^^^^^^^~03/01/2003~
-~19433~^~263~^0.^0^^~4~^~BFFN~^~19056~^^^^^^^^^~03/01/2003~
-~19433~^~268~^1875.^0^^~4~^~NC~^^^^^^^^^^~02/01/2017~
-~19433~^~301~^159.^0^^~9~^~MC~^^^^^^^^^^~05/01/2007~
-~19433~^~304~^97.^0^^~9~^~MC~^^^^^^^^^^~05/01/2007~
-~19433~^~305~^318.^0^^~9~^~MC~^^^^^^^^^^~05/01/2007~
-~19433~^~306~^272.^0^^~9~^~MC~^^^^^^^^^^~05/01/2007~
-~19433~^~307~^517.^0^^~8~^~LC~^^^^^^^^^^~06/01/2013~
-~19433~^~318~^104.^0^^~4~^~NC~^^^^^^^^^^~03/01/2003~
-~19433~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2007~
-~19433~^~320~^5.^0^^~4~^~NC~^^^^^^^^^^~03/01/2003~
-~19433~^~321~^47.^0^^~4~^~BFNN~^~19056~^^^^^^^^^~03/01/2003~
-~19433~^~322~^30.^0^^~4~^~BFNN~^~19056~^^^^^^^^^~03/01/2003~
-~19433~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2009~
-~19433~^~334~^1.^0^^~4~^~BFNN~^~19056~^^^^^^^^^~03/01/2003~
-~19433~^~337~^0.^0^^~4~^~BFNN~^~19056~^^^^^^^^^~03/01/2003~
-~19433~^~338~^652.^0^^~4~^~BFNN~^~19056~^^^^^^^^^~03/01/2003~
-~19433~^~417~^16.^0^^~9~^~MC~^^^^^^^^^^~05/01/2007~
-~19433~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2003~
-~19433~^~432~^16.^0^^~9~^~MC~^^^^^^^^^^~05/01/2007~
-~19433~^~435~^16.^0^^~4~^~NC~^^^^^^^^^^~07/01/2008~
-~19433~^~601~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2007~
-~19434~^~208~^432.^0^^~4~^~NC~^^^^^^^^^^~04/01/2003~
-~19434~^~262~^0.^0^^~4~^~FLA~^^^^^^^^^^~04/01/2003~
-~19434~^~263~^0.^0^^~4~^~FLA~^^^^^^^^^^~04/01/2003~
-~19434~^~268~^1809.^0^^~4~^~NC~^^^^^^^^^^~04/01/2003~
-~19434~^~301~^357.^0^^~8~^^^^^^^^^^^~04/01/2007~
-~19434~^~304~^41.^0^^~4~^^^^^^^^^^^~04/01/2007~
-~19434~^~305~^357.^0^^~4~^^^^^^^^^^^~04/01/2007~
-~19434~^~306~^286.^0^^~8~^^^^^^^^^^^~04/01/2007~
-~19434~^~307~^842.^0^^~8~^~LC~^^^^^^^^^^~01/01/2018~
-~19434~^~318~^250.^0^^~4~^~NC~^^^^^^^^^^~03/01/2009~
-~19434~^~319~^38.^0^^~4~^~FLA~^^^^^^^^^^~04/01/2003~
-~19434~^~320~^44.^0^^~4~^~NC~^^^^^^^^^^~03/01/2009~
-~19434~^~321~^58.^0^^~4~^~FLA~^^^^^^^^^^~04/01/2003~
-~19434~^~322~^30.^0^^~4~^~FLA~^^^^^^^^^^~04/01/2003~
-~19434~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~
-~19434~^~334~^0.^0^^~4~^~FLA~^^^^^^^^^^~04/01/2003~
-~19434~^~337~^0.^0^^~4~^~FLA~^^^^^^^^^^~04/01/2003~
-~19434~^~338~^643.^0^^~4~^~FLA~^^^^^^^^^^~04/01/2003~
-~19434~^~417~^97.^0^^~4~^~FLM~^^^^^^^^^^~04/01/2007~
-~19434~^~431~^0.^0^^~4~^~FLA~^^^^^^^^^^~04/01/2003~
-~19434~^~432~^97.^0^^~4~^~FLM~^^^^^^^^^^~04/01/2007~
-~19434~^~435~^97.^0^^~4~^~NC~^^^^^^^^^^~03/01/2009~
-~19434~^~601~^1.^0^^~4~^^^^^^^^^^^~04/01/2007~
-~19435~^~208~^342.^0^^~4~^~NC~^^^^^^^^^^~03/01/2003~
-~19435~^~262~^0.^0^^~4~^~FLM~^^^^^^^^^^~03/01/2003~
-~19435~^~263~^0.^0^^~4~^~FLM~^^^^^^^^^^~03/01/2003~
-~19435~^~268~^1431.^0^^~4~^~NC~^^^^^^^^^^~03/01/2003~
-~19435~^~301~^3.^0^^~8~^~LC~^^^^^^^^^^~04/01/2007~
-~19435~^~304~^50.^0^^~4~^~FLC~^^^^^^^^^^~04/01/2007~
-~19435~^~305~^122.^0^^~4~^~FLC~^^^^^^^^^^~04/01/2007~
-~19435~^~306~^220.^0^^~4~^~FLC~^^^^^^^^^^~04/01/2007~
-~19435~^~307~^16.^0^^~8~^~LC~^^^^^^^^^^~06/01/2014~
-~19435~^~318~^28.^0^^~4~^~NC~^^^^^^^^^^~06/01/2014~
-~19435~^~319~^0.^0^^~4~^~FLM~^^^^^^^^^^~03/01/2003~
-~19435~^~320~^1.^0^^~4~^~NC~^^^^^^^^^^~06/01/2014~
-~19435~^~321~^12.^0^^~4~^~FLM~^^^^^^^^^^~06/01/2014~
-~19435~^~322~^0.^0^^~4~^~FLM~^^^^^^^^^^~03/01/2003~
-~19435~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2009~
-~19435~^~334~^9.^0^^~4~^~FLM~^^^^^^^^^^~06/01/2014~
-~19435~^~337~^0.^0^^~4~^~FLM~^^^^^^^^^^~06/01/2014~
-~19435~^~338~^113.^0^^~4~^~FLM~^^^^^^^^^^~06/01/2014~
-~19435~^~417~^316.^0^^~4~^~FLC~^^^^^^^^^^~06/01/2014~
-~19435~^~431~^302.^0^^~4~^~O~^^^^^^^^^^~06/01/2014~
-~19435~^~432~^14.^0^^~4~^~FLM~^^^^^^^^^^~06/01/2014~
-~19435~^~435~^527.^0^^~4~^~NC~^^^^^^^^^^~06/01/2014~
-~19435~^~601~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2007~
-~19436~^~208~^381.^0^^~4~^~NC~^^^^^^^^^^~03/01/2003~
-~19436~^~262~^0.^0^^~4~^~FLC~^^^^^^^^^^~03/01/2003~
-~19436~^~263~^0.^0^^~4~^~FLC~^^^^^^^^^^~03/01/2003~
-~19436~^~268~^1593.^0^^~4~^~NC~^^^^^^^^^^~03/01/2003~
-~19436~^~301~^18.^0^^~4~^~FLC~^^^^^^^^^^~03/01/2005~
-~19436~^~304~^27.^0^^~4~^~FLC~^^^^^^^^^^~03/01/2005~
-~19436~^~305~^55.^0^^~4~^~FLC~^^^^^^^^^^~03/01/2005~
-~19436~^~306~^110.^0^^~4~^~FLC~^^^^^^^^^^~03/01/2005~
-~19436~^~307~^286.^0^^~8~^~LC~^^^^^^^^^^~03/01/2005~
-~19436~^~318~^33.^0^^~4~^~NC~^^^^^^^^^^~02/01/2009~
-~19436~^~319~^0.^0^^~4~^~FLC~^^^^^^^^^^~03/01/2003~
-~19436~^~320~^2.^0^^~4~^~NC~^^^^^^^^^^~02/01/2009~
-~19436~^~321~^15.^0^^~4~^~FLC~^^^^^^^^^^~03/01/2003~
-~19436~^~322~^10.^0^^~4~^~FLC~^^^^^^^^^^~03/01/2003~
-~19436~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2009~
-~19436~^~334~^0.^0^^~4~^~FLC~^^^^^^^^^^~03/01/2003~
-~19436~^~337~^0.^0^^~4~^~FLC~^^^^^^^^^^~03/01/2003~
-~19436~^~338~^242.^0^^~4~^~FLC~^^^^^^^^^^~03/01/2003~
-~19436~^~417~^4.^0^^~4~^~FLC~^^^^^^^^^^~03/01/2005~
-~19436~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2003~
-~19436~^~432~^4.^0^^~4~^~FLC~^^^^^^^^^^~03/01/2005~
-~19436~^~435~^4.^0^^~4~^~NC~^^^^^^^^^^~02/01/2009~
-~19436~^~601~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2005~
-~19437~^~208~^379.^0^^~4~^~NC~^^^^^^^^^^~04/01/2003~
-~19437~^~262~^0.^0^^~4~^~BFSN~^~11378~^^^^^^^^^~03/01/2003~
-~19437~^~263~^0.^0^^~4~^~BFSN~^~11378~^^^^^^^^^~03/01/2003~
-~19437~^~268~^1586.^0^^~4~^~NC~^^^^^^^^^^~04/01/2003~
-~19437~^~301~^35.^0^^~12~^~MA~^^^^^^^^^^~05/01/2007~
-~19437~^~304~^70.^0^^~4~^~BFAN~^^^^^^^^^^~05/01/2007~
-~19437~^~305~^167.^0^^~4~^~BFAN~^^^^^^^^^^~05/01/2007~
-~19437~^~306~^1628.^0^^~9~^~MC~^^^^^^^^^^~05/01/2007~
-~19437~^~307~^643.^0^^~12~^~MA~^^^^^^^^^^~05/01/2007~
-~19437~^~318~^11.^0^^~4~^~NC~^^^^^^^^^^~04/01/2003~
-~19437~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2003~
-~19437~^~320~^1.^0^^~4~^~NC~^^^^^^^^^^~04/01/2003~
-~19437~^~321~^7.^0^^~4~^~BFSN~^~11378~^^^^^^^^^~03/01/2003~
-~19437~^~322~^0.^0^^~4~^~BFSN~^~11378~^^^^^^^^^~03/01/2003~
-~19437~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2009~
-~19437~^~334~^0.^0^^~4~^~BFSN~^~11378~^^^^^^^^^~03/01/2003~
-~19437~^~337~^0.^0^^~4~^~BFSN~^~11378~^^^^^^^^^~03/01/2003~
-~19437~^~338~^39.^0^^~4~^~BFSN~^~11378~^^^^^^^^^~03/01/2003~
-~19437~^~417~^45.^0^^~1~^^^^^^^^^^^~05/01/2007~
-~19437~^~431~^0.^0^^~4~^~NR~^^^^^^^^^^~03/01/2003~
-~19437~^~432~^45.^0^^~4~^~NR~^^^^^^^^^^~03/01/2003~
-~19437~^~435~^45.^0^^~4~^~NC~^^^^^^^^^^~05/01/2007~
-~19437~^~601~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2007~
-~19438~^~208~^417.^0^^~4~^~NC~^^^^^^^^^^~02/01/2017~
-~19438~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~07/01/2008~
-~19438~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~07/01/2008~
-~19438~^~268~^1743.^0^^~4~^~NC~^^^^^^^^^^~02/01/2017~
-~19438~^~301~^3.^0^^~9~^~MC~^^^^^^^^^^~05/01/1996~
-~19438~^~304~^13.^0^^~9~^~MC~^^^^^^^^^^~05/01/1996~
-~19438~^~305~^42.^0^^~9~^~MC~^^^^^^^^^^~05/01/1996~
-~19438~^~306~^39.^0^^~9~^~MC~^^^^^^^^^^~05/01/1996~
-~19438~^~307~^351.^0^^~9~^~MC~^^^^^^^^^^~05/01/1996~
-~19438~^~318~^900.^0^^~4~^~NC~^^^^^^^^^^~08/01/2015~
-~19438~^~319~^270.^0^^~4~^~NR~^^^^^^^^^^~05/01/2013~
-~19438~^~320~^270.^0^^~4~^~NC~^^^^^^^^^^~05/01/2013~
-~19438~^~321~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2013~
-~19438~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2013~
-~19438~^~324~^0.^0^^~4~^~NR~^^^^^^^^^^~05/01/2013~
-~19438~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2013~
-~19438~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2013~
-~19438~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2013~
-~19438~^~417~^241.^0^^~4~^~FLA~^^^^^^^^^^~05/01/2013~
-~19438~^~431~^199.^0^^~4~^~O~^^^^^^^^^^~05/01/2013~
-~19438~^~432~^42.^0^^~4~^~O~^^^^^^^^^^~05/01/2013~
-~19438~^~435~^381.^0^^~4~^~NC~^^^^^^^^^^~05/01/2013~
-~19438~^~601~^0.^0^^~9~^~MC~^^^^^^^^^^~05/01/1996~
-~19439~^~208~^390.^0^^~9~^~MC~^^^^^^^^^^~05/01/1996~
-~19439~^~268~^1632.^0^^~9~^~MC~^^^^^^^^^^~07/01/2008~
-~19439~^~301~^35.^0^^~9~^~MC~^^^^^^^^^^~05/01/1996~
-~19439~^~304~^87.^0^^~9~^~MC~^^^^^^^^^^~05/01/1996~
-~19439~^~305~^248.^0^^~9~^~MC~^^^^^^^^^^~05/01/1996~
-~19439~^~306~^249.^0^^~9~^~MC~^^^^^^^^^^~05/01/1996~
-~19439~^~307~^291.^0^^~9~^~MC~^^^^^^^^^^~05/01/1996~
-~19439~^~318~^2381.^0^^~9~^~MC~^^^^^^^^^^~05/01/1996~
-~19439~^~319~^713.^0^^~4~^~NC~^^^^^^^^^^~06/01/2002~
-~19439~^~320~^713.^0^^~4~^~NC~^^^^^^^^^^~06/01/2002~
-~19439~^~417~^0.^0^^~9~^~MC~^^^^^^^^^^~05/01/1996~
-~19439~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~
-~19439~^~432~^0.^0^^~9~^~MC~^^^^^^^^^^~05/01/1996~
-~19439~^~435~^0.^0^^~4~^~NC~^^^^^^^^^^~07/01/2008~
-~19439~^~601~^0.^0^^~9~^~MC~^^^^^^^^^^~05/01/1996~
-~19440~^~208~^420.^0^^~4~^~T~^^^^^^^^^^~04/01/2006~
-~19440~^~268~^1757.^0^^~4~^~T~^^^^^^^^^^~06/01/2006~
-~19440~^~301~^1084.^0^^~4~^~T~^^^^^^^^^^~04/01/2006~
-~19440~^~304~^70.^0^^~4~^~FLC~^^^^^^^^^^~05/01/1996~
-~19440~^~305~^207.^0^^~4~^~FLC~^^^^^^^^^^~05/01/1996~
-~19440~^~306~^279.^0^^~4~^~FLC~^^^^^^^^^^~05/01/1996~
-~19440~^~307~^246.^0^^~4~^~T~^^^^^^^^^^~04/01/2006~
-~19440~^~318~^57.^0^^~4~^~NC~^^^^^^^^^^~05/01/2006~
-~19440~^~319~^14.^0^^~4~^~NR~^^^^^^^^^^~04/01/2002~
-~19440~^~320~^15.^0^^~4~^~NC~^^^^^^^^^^~05/01/2006~
-~19440~^~321~^6.^0^^~4~^~NR~^^^^^^^^^^~04/01/2002~
-~19440~^~417~^13.^0^^~4~^~FLC~^^^^^^^^^^~05/01/1996~
-~19440~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~
-~19440~^~432~^13.^0^^~4~^~FLC~^^^^^^^^^^~05/01/2006~
-~19440~^~435~^13.^0^^~4~^~NC~^^^^^^^^^^~06/01/2006~
-~19440~^~601~^0.^0^^~4~^~NR~^^^^^^^^^^~05/01/2013~
-~19441~^~208~^365.^0^^~4~^~NC~^^^^^^^^^^~04/01/2015~
-~19441~^~262~^0.^0^^~4~^~FLC~^^^^^^^^^^~05/01/2009~
-~19441~^~263~^0.^0^^~4~^~FLC~^^^^^^^^^^~05/01/2009~
-~19441~^~268~^1528.^0^^~4~^~NC~^^^^^^^^^^~04/01/2015~
-~19441~^~301~^576.^6^6.^~1~^~A~^^^1^562.^607.^5^558.^593.^~2, 3~^~04/01/2015~
-~19441~^~304~^37.^6^0.^~1~^~A~^^^1^36.^38.^5^36.^37.^~2, 3~^~04/01/2015~
-~19441~^~305~^134.^6^0.^~1~^~A~^^^1^132.^138.^5^132.^136.^~2, 3~^~04/01/2015~
-~19441~^~306~^247.^6^3.^~1~^~A~^^^1^239.^259.^5^239.^254.^~2, 3~^~04/01/2015~
-~19441~^~307~^354.^6^4.^~1~^~A~^^^1^334.^365.^5^342.^364.^~2, 3~^~04/01/2015~
-~19441~^~318~^2028.^0^^~4~^~NC~^^^^^^^^^^~01/01/2016~
-~19441~^~319~^603.^0^^~4~^~NR~^^^^^^^^^^~05/01/2009~
-~19441~^~320~^604.^0^^~4~^~NC~^^^^^^^^^^~09/01/2009~
-~19441~^~321~^8.^0^^~4~^~FLC~^^^^^^^^^^~05/01/2009~
-~19441~^~322~^4.^0^^~4~^~FLC~^^^^^^^^^^~05/01/2009~
-~19441~^~324~^0.^0^^~9~^~MC~^^^^^^^^^^~04/01/2015~
-~19441~^~334~^2.^0^^~4~^~FLC~^^^^^^^^^^~05/01/2009~
-~19441~^~337~^0.^0^^~4~^~FLC~^^^^^^^^^^~05/01/2009~
-~19441~^~338~^37.^0^^~4~^~FLC~^^^^^^^^^^~05/01/2009~
-~19441~^~417~^14.^3^2.^~1~^~A~^^^1^11.^18.^2^5.^23.^~2, 3~^~04/01/2015~
-~19441~^~431~^0.^0^^~4~^~NR~^^^^^^^^^^~05/01/2009~
-~19441~^~432~^14.^0^^~4~^~NR~^^^^^^^^^^~04/01/2015~
-~19441~^~435~^14.^0^^~4~^~NC~^^^^^^^^^^~04/01/2015~
-~19441~^~601~^0.^0^^~9~^~MC~^^^^^^^^^^~04/01/2015~
-~19444~^~208~^318.^0^^~4~^~NC~^^^^^^^^^^~01/01/2007~
-~19444~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2003~
-~19444~^~263~^0.^0^^~4~^~NR~^^^^^^^^^^~03/01/2003~
-~19444~^~268~^1330.^0^^~4~^~NC~^^^^^^^^^^~01/01/2007~
-~19444~^~301~^128.^1^^~1~^~A~^^^^^^^^^^~01/01/2007~
-~19444~^~304~^99.^0^^~4~^~PAE~^^^^^^^^^^~07/01/1998~
-~19444~^~305~^245.^0^^~4~^~PAE~^^^^^^^^^^~07/01/1998~
-~19444~^~306~^396.^0^^~4~^~PAE~^^^^^^^^^^~07/01/1998~
-~19444~^~307~^705.^0^^~8~^~LC~^^^^^^^^^^~06/01/2013~
-~19444~^~318~^179.^0^^~4~^~NC~^^^^^^^^^^~02/01/2009~
-~19444~^~319~^0.^0^^~4~^~FLA~^^^^^^^^^^~05/01/2003~
-~19444~^~320~^9.^0^^~4~^~NC~^^^^^^^^^^~02/01/2009~
-~19444~^~321~^107.^1^^~1~^~A~^^^^^^^^^^~01/01/2007~
-~19444~^~322~^0.^1^^~1~^~A~^^^^^^^^^~1~^~01/01/2007~
-~19444~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~
-~19444~^~334~^0.^0^^~4~^~BFSN~^^^^^^^^^^~03/01/2003~
-~19444~^~337~^45.^1^^~1~^~A~^^^^^^^^^^~01/01/2007~
-~19444~^~338~^507.^0^^~4~^~BFSN~^^^^^^^^^^~03/01/2003~
-~19444~^~417~^16.^0^^~4~^~NR~^^^^^^^^^^~04/01/2014~
-~19444~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2003~
-~19444~^~432~^16.^0^^~4~^~NR~^^^^^^^^^^~04/01/2014~
-~19444~^~435~^16.^0^^~4~^~NC~^^^^^^^^^^~04/01/2014~
-~19444~^~601~^2.^0^^~4~^~PAE~^^^^^^^^^^~07/01/1998~
-~19445~^~208~^253.^0^^~4~^~NC~^^^^^^^^^^~07/01/2008~
-~19445~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2007~
-~19445~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2007~
-~19445~^~268~^1057.^0^^~4~^~NC~^^^^^^^^^^~07/01/2008~
-~19445~^~301~^20.^4^0.^~1~^~A~^^^1^18.^21.^3^17.^21.^~2, 3~^~07/01/2008~
-~19445~^~304~^48.^4^0.^~1~^~A~^^^1^47.^48.^3^46.^48.^~2, 3~^~07/01/2008~
-~19445~^~305~^132.^4^2.^~1~^~A~^^^1^128.^136.^3^125.^138.^~2, 3~^~07/01/2008~
-~19445~^~306~^931.^4^8.^~1~^~A~^^^1^911.^953.^3^902.^958.^~2, 3~^~07/01/2008~
-~19445~^~307~^429.^4^15.^~1~^~A~^^^1^404.^472.^3^379.^477.^~2, 3~^~07/01/2008~
-~19445~^~318~^0.^0^^~1~^~AS~^^^^^^^^^^~07/01/2008~
-~19445~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2007~
-~19445~^~320~^0.^0^^~1~^~AS~^^^^^^^^^^~06/01/2009~
-~19445~^~321~^0.^1^^~1~^~A~^^^^^^^^^~1~^~07/01/2008~
-~19445~^~322~^0.^1^^~1~^~A~^^^^^^^^^~1~^~07/01/2008~
-~19445~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2009~
-~19445~^~334~^0.^1^^~1~^~A~^^^^^^^^^~1~^~07/01/2008~
-~19445~^~337~^0.^1^^~1~^~A~^^^^^^^^^~1~^~07/01/2008~
-~19445~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2007~
-~19445~^~417~^67.^1^^~1~^~A~^^^^^^^^^^~07/01/2008~
-~19445~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2007~
-~19445~^~432~^67.^1^^~1~^~A~^^^^^^^^^^~07/01/2008~
-~19445~^~435~^67.^0^^~4~^~NC~^^^^^^^^^^~06/01/2009~
-~19445~^~601~^0.^0^^~7~^~Z~^^^^^^^^^^~07/01/2008~
-~19524~^~208~^498.^0^^~4~^~NC~^^^^^^^^^^~08/01/1991~
-~19524~^~262~^0.^0^^~4~^~FLA~^^^^^^^^^^~03/01/2003~
-~19524~^~263~^0.^0^^~4~^~FLA~^^^^^^^^^^~03/01/2003~
-~19524~^~268~^2084.^0^^~4~^^^^^^^^^^^~04/01/2007~
-~19524~^~301~^60.^2^^~1~^^^^^^^^^^^~08/01/1991~
-~19524~^~304~^84.^1^^~1~^^^^^^^^^^^~08/01/1991~
-~19524~^~305~^131.^1^^~1~^^^^^^^^^^^~08/01/1991~
-~19524~^~306~^755.^2^^~1~^^^^^^^^^^^~08/01/1991~
-~19524~^~307~^342.^2^^~1~^^^^^^^^^^^~08/01/1991~
-~19524~^~318~^142.^0^^~4~^~NC~^^^^^^^^^^~03/01/2003~
-~19524~^~319~^0.^0^^~4~^~FLA~^^^^^^^^^^~03/01/2003~
-~19524~^~320~^7.^0^^~4~^~NC~^^^^^^^^^^~03/01/2003~
-~19524~^~321~^66.^0^^~4~^~FLA~^^^^^^^^^^~03/01/2003~
-~19524~^~322~^0.^0^^~4~^~FLA~^^^^^^^^^^~03/01/2003~
-~19524~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2009~
-~19524~^~334~^37.^0^^~4~^~FLA~^^^^^^^^^^~03/01/2003~
-~19524~^~337~^0.^0^^~4~^~FLA~^^^^^^^^^^~03/01/2003~
-~19524~^~338~^0.^0^^~4~^~FLA~^^^^^^^^^^~03/01/2003~
-~19524~^~417~^20.^1^^~4~^^^^^^^^^^^~08/01/1991~
-~19524~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~
-~19524~^~432~^20.^1^^~4~^^^^^^^^^^^~03/01/2003~
-~19524~^~435~^20.^0^^~4~^~NC~^^^^^^^^^^~04/01/2007~
-~19524~^~601~^0.^1^^~4~^^^^^^^^^^^~08/01/1991~
-~19701~^~208~^477.^0^^~4~^^^^^^^^^^^~08/01/1991~
-~19701~^~262~^62.^6^3.^~1~^^^^^^^^^^^~08/01/1993~
-~19701~^~263~^486.^7^40.^~1~^^^^^^^^^^^~08/01/1993~
-~19701~^~268~^1996.^0^^~4~^^^^^^^^^^^
-~19701~^~301~^32.^3^1.^~1~^^^^^^^^^^^~08/01/1991~
-~19701~^~304~^115.^2^^~1~^^^^^^^^^^^~08/01/1991~
-~19701~^~305~^132.^2^^~1~^^^^^^^^^^^~08/01/1991~
-~19701~^~306~^365.^6^17.^~1~^^^^^^^^^^^~08/01/1991~
-~19701~^~307~^11.^6^3.^~1~^^^^^^^^^^^~08/01/1991~
-~19701~^~318~^60.^0^^~1~^^^^^^^^^^^~08/01/1991~
-~19701~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2002~
-~19701~^~320~^3.^0^^~4~^~NC~^^^^^^^^^^~06/01/2002~
-~19701~^~417~^3.^1^^~4~^^^^^^^^^^^~08/01/1991~
-~19701~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~
-~19701~^~432~^3.^1^^~4~^^^^^^^^^^^~08/01/1991~
-~19701~^~435~^3.^0^^~4~^~NC~^^^^^^^^^^~01/01/2001~
-~19701~^~601~^18.^0^^~1~^^^^^^^^^^^~08/01/1991~
-~19702~^~208~^381.^0^^~4~^^^^^^^^^^^~08/01/1991~
-~19702~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2002~
-~19702~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2002~
-~19702~^~268~^1594.^0^^~4~^^^^^^^^^^^
-~19702~^~301~^3.^9^0.^~1~^^^^^^^^^^^~08/01/1991~
-~19702~^~304~^2.^1^^~4~^^^^^^^^^^^~08/01/1991~
-~19702~^~305~^142.^1^^~4~^^^^^^^^^^^~08/01/1991~
-~19702~^~306~^7.^17^0.^~1~^^^^^^^^^^^~08/01/1991~
-~19702~^~307~^491.^0^^~1~^^^^^^^^^^^~08/01/1991~
-~19702~^~318~^0.^1^^~4~^^^^^^^^^^^~08/01/1991~
-~19702~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2002~
-~19702~^~320~^0.^0^^~1~^~AS~^^^^^^^^^^~03/01/2002~
-~19702~^~417~^3.^1^^~4~^^^^^^^^^^^~08/01/1991~
-~19702~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~
-~19702~^~432~^3.^1^^~4~^^^^^^^^^^^~08/01/1991~
-~19702~^~435~^3.^0^^~4~^~NC~^^^^^^^^^^~03/01/2002~
-~19702~^~601~^0.^1^^~4~^^^^^^^^^^^~08/01/1991~
-~19703~^~208~^345.^0^^~4~^^^^^^^^^^^~08/01/1991~
-~19703~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2002~
-~19703~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2002~
-~19703~^~268~^1443.^0^^~4~^^^^^^^^^^^
-~19703~^~301~^2.^0^^~4~^^^^^^^^^^^~08/01/1991~
-~19703~^~304~^1.^0^^~4~^^^^^^^^^^^~08/01/1991~
-~19703~^~305~^0.^0^^~1~^^^^^^^^^^^~08/01/1991~
-~19703~^~306~^1985.^0^^~1~^^^^^^^^^^^~08/01/1991~
-~19703~^~307~^2751.^0^^~1~^^^^^^^^^^^~08/01/1991~
-~19703~^~318~^0.^0^^~4~^^^^^^^^^^^~08/01/1991~
-~19703~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2002~
-~19703~^~320~^0.^0^^~1~^~AS~^^^^^^^^^^~04/01/2002~
-~19703~^~417~^14.^1^^~4~^^^^^^^^^^^~08/01/1991~
-~19703~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~
-~19703~^~432~^14.^1^^~4~^^^^^^^^^^^~08/01/1991~
-~19703~^~435~^14.^0^^~4~^~NC~^^^^^^^^^^~04/01/2002~
-~19703~^~601~^0.^0^^~4~^^^^^^^^^^^~08/01/1991~
-~19704~^~208~^345.^0^^~4~^^^^^^^^^^^~08/01/1991~
-~19704~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2002~
-~19704~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2002~
-~19704~^~268~^1443.^0^^~4~^^^^^^^^^^^
-~19704~^~301~^2.^0^^~4~^^^^^^^^^^^~08/01/1991~
-~19704~^~304~^1.^0^^~4~^^^^^^^^^^^~08/01/1991~
-~19704~^~305~^1293.^0^^~4~^^^^^^^^^^^~08/01/1991~
-~19704~^~306~^14.^7^1.^~1~^^^^^^^^^^^~08/01/1991~
-~19704~^~307~^158.^0^^~1~^^^^^^^^^^^~08/01/1991~
-~19704~^~318~^0.^0^^~4~^^^^^^^^^^^~08/01/1991~
-~19704~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2002~
-~19704~^~320~^0.^0^^~1~^~AS~^^^^^^^^^^~03/01/2002~
-~19704~^~417~^14.^1^^~4~^^^^^^^^^^^~08/01/1991~
-~19704~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~
-~19704~^~432~^14.^1^^~4~^^^^^^^^^^^~08/01/1991~
-~19704~^~435~^14.^0^^~4~^~NC~^^^^^^^^^^~03/01/2002~
-~19704~^~601~^0.^0^^~4~^^^^^^^^^^^~08/01/1991~
-~19705~^~208~^386.^0^^~4~^^^^^^^^^^^~08/01/1991~
-~19705~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2002~
-~19705~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2002~
-~19705~^~268~^1615.^0^^~4~^^^^^^^^^^^
-~19705~^~301~^6.^0^^~1~^^^^^^^^^^^~08/01/1991~
-~19705~^~304~^2.^0^^~4~^^^^^^^^^^^~08/01/1991~
-~19705~^~305~^804.^0^^~4~^^^^^^^^^^^~08/01/1991~
-~19705~^~306~^15.^0^^~4~^^^^^^^^^^^~08/01/1991~
-~19705~^~307~^1499.^0^^~4~^^^^^^^^^^^~08/01/1991~
-~19705~^~318~^0.^0^^~4~^^^^^^^^^^^~08/01/1991~
-~19705~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2002~
-~19705~^~320~^0.^0^^~1~^~AS~^^^^^^^^^^~03/01/2002~
-~19705~^~417~^0.^0^^~4~^^^^^^^^^^^~08/01/1991~
-~19705~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~
-~19705~^~432~^0.^0^^~4~^^^^^^^^^^^~08/01/1991~
-~19705~^~435~^0.^0^^~4~^~NC~^^^^^^^^^^~01/01/2001~
-~19705~^~601~^0.^0^^~4~^^^^^^^^^^^~08/01/1991~
-~19706~^~208~^387.^0^^~4~^~NC~^^^^^^^^^^~01/01/1996~
-~19706~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2002~
-~19706~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2002~
-~19706~^~268~^1619.^0^^~4~^^^^^^^^^^^
-~19706~^~301~^20.^1^^~4~^^^^^^^^^^^~08/01/1991~
-~19706~^~304~^8.^1^^~4~^^^^^^^^^^^~08/01/1991~
-~19706~^~305~^5.^1^^~4~^^^^^^^^^^^~08/01/1991~
-~19706~^~306~^17.^0^^~4~^^^^^^^^^^^~08/01/1991~
-~19706~^~307~^788.^0^^~4~^^^^^^^^^^^~08/01/1991~
-~19706~^~318~^0.^1^^~4~^^^^^^^^^^^~08/01/1991~
-~19706~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2002~
-~19706~^~320~^0.^0^^~1~^~AS~^^^^^^^^^^~03/01/2002~
-~19706~^~417~^0.^1^^~4~^^^^^^^^^^^~08/01/1991~
-~19706~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~
-~19706~^~432~^0.^1^^~4~^^^^^^^^^^^~08/01/1991~
-~19706~^~435~^0.^0^^~4~^~NC~^^^^^^^^^^~01/01/2001~
-~19706~^~601~^0.^1^^~4~^^^^^^^^^^^~08/01/1991~
-~19708~^~208~^366.^0^^~4~^~NC~^^^^^^^^^^~01/01/1996~
-~19708~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2002~
-~19708~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2002~
-~19708~^~268~^1531.^0^^~4~^^^^^^^^^^^
-~19708~^~304~^4.^1^^~4~^^^^^^^^^^^~08/01/1991~
-~19708~^~305~^3.^1^^~4~^^^^^^^^^^^~08/01/1991~
-~19708~^~306~^257.^0^^~1~^^^^^^^^^^^~08/01/1991~
-~19708~^~307~^849.^0^^~1~^^^^^^^^^^^~08/01/1991~
-~19708~^~318~^0.^1^^~4~^^^^^^^^^^^~08/01/1991~
-~19708~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2002~
-~19708~^~320~^0.^0^^~1~^~AS~^^^^^^^^^^~03/01/2002~
-~19708~^~417~^0.^1^^~4~^^^^^^^^^^^~08/01/1991~
-~19708~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~
-~19708~^~432~^0.^1^^~4~^^^^^^^^^^^~08/01/1991~
-~19708~^~435~^0.^0^^~4~^~NC~^^^^^^^^^^~01/01/2001~
-~19708~^~601~^0.^1^^~4~^^^^^^^^^^^~08/01/1991~
-~19709~^~208~^369.^0^^~4~^^^^^^^^^^^~08/01/1991~
-~19709~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2002~
-~19709~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2002~
-~19709~^~268~^1544.^0^^~4~^^^^^^^^^^^
-~19709~^~301~^4.^1^^~4~^^^^^^^^^^^~08/01/1991~
-~19709~^~304~^2.^1^^~4~^^^^^^^^^^^~08/01/1991~
-~19709~^~305~^4.^1^^~4~^^^^^^^^^^^~08/01/1991~
-~19709~^~306~^5.^1^^~4~^^^^^^^^^^^~08/01/1991~
-~19709~^~307~^8.^0^^~1~^^^^^^^^^^^~08/01/1991~
-~19709~^~318~^0.^1^^~4~^^^^^^^^^^^~08/01/1991~
-~19709~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2002~
-~19709~^~320~^0.^0^^~1~^~AS~^^^^^^^^^^~03/01/2002~
-~19709~^~417~^0.^1^^~4~^^^^^^^^^^^~08/01/1991~
-~19709~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~
-~19709~^~432~^0.^1^^~4~^^^^^^^^^^^~08/01/1991~
-~19709~^~435~^0.^0^^~4~^~NC~^^^^^^^^^^~01/01/2001~
-~19709~^~601~^0.^1^^~4~^^^^^^^^^^^~08/01/1991~
-~19710~^~208~^369.^0^^~4~^~NC~^^^^^^^^^^~08/01/1991~
-~19710~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2002~
-~19710~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2002~
-~19710~^~268~^1544.^0^^~4~^^^^^^^^^^^
-~19710~^~301~^15.^0^^~4~^^^^^^^^^^^~08/01/1991~
-~19710~^~304~^5.^0^^~4~^^^^^^^^^^^~08/01/1991~
-~19710~^~305~^3.^0^^~4~^^^^^^^^^^^~08/01/1991~
-~19710~^~306~^20.^17^1.^~1~^^^^^^^^^^^~08/01/1991~
-~19710~^~307~^754.^17^17.^~1~^^^^^^^^^^^~08/01/1991~
-~19710~^~318~^0.^0^^~4~^^^^^^^^^^^~08/01/1991~
-~19710~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2002~
-~19710~^~320~^0.^0^^~1~^~AS~^^^^^^^^^^~03/01/2002~
-~19710~^~417~^0.^1^^~4~^^^^^^^^^^^~08/01/1991~
-~19710~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~
-~19710~^~432~^0.^1^^~4~^^^^^^^^^^^~08/01/1991~
-~19710~^~435~^0.^0^^~4~^~NC~^^^^^^^^^^~01/01/2001~
-~19710~^~601~^0.^0^^~4~^^^^^^^^^^^~08/01/1991~
-~19719~^~208~^242.^0^^~4~^~NC~^^^^^^^^^^~12/01/2006~
-~19719~^~262~^0.^0^^~4~^~FLM~^^^^^^^^^^~03/01/2003~
-~19719~^~263~^0.^0^^~4~^~FLM~^^^^^^^^^^~03/01/2003~
-~19719~^~268~^1014.^0^^~4~^~NC~^^^^^^^^^^~12/01/2006~
-~19719~^~301~^20.^1^^~1~^^^^^^^^^^^~08/01/1991~
-~19719~^~304~^4.^1^^~1~^^^^^^^^^^^~08/01/1991~
-~19719~^~305~^3.^0^^~4~^~FLM~^^^^^^^^^^~12/01/2006~
-~19719~^~306~^77.^3^2.^~1~^^^^^^^^^^^~08/01/1991~
-~19719~^~307~^40.^3^9.^~1~^^^^^^^^^^^~08/01/1991~
-~19719~^~318~^205.^0^^~4~^~NC~^^^^^^^^^^~12/01/2006~
-~19719~^~319~^0.^0^^~4~^~FLM~^^^^^^^^^^~03/01/2003~
-~19719~^~320~^10.^0^^~4~^~NC~^^^^^^^^^^~07/01/2013~
-~19719~^~321~^116.^0^^~4~^~FLM~^^^^^^^^^^~12/01/2006~
-~19719~^~322~^2.^0^^~4~^~FLM~^^^^^^^^^^~03/01/2003~
-~19719~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~
-~19719~^~334~^11.^0^^~4~^~FLM~^^^^^^^^^^~12/01/2006~
-~19719~^~337~^0.^0^^~4~^~FLM~^^^^^^^^^^~03/01/2003~
-~19719~^~338~^9.^0^^~4~^~FLM~^^^^^^^^^^~12/01/2006~
-~19719~^~417~^1.^0^^~4~^~FLM~^^^^^^^^^^~12/01/2006~
-~19719~^~431~^0.^0^^~4~^~FLM~^^^^^^^^^^~03/01/2003~
-~19719~^~432~^1.^0^^~4~^~FLM~^^^^^^^^^^~12/01/2006~
-~19719~^~435~^1.^0^^~4~^~NC~^^^^^^^^^^~12/01/2006~
-~19719~^~601~^0.^0^^~4~^~FLM~^^^^^^^^^^~03/01/2003~
-~19720~^~208~^265.^0^^~4~^~NC~^^^^^^^^^^~08/01/1991~
-~19720~^~268~^1109.^0^^~4~^^^^^^^^^^^
-~19720~^~301~^5.^2^^~1~^^^^^^^^^^^~08/01/1991~
-~19720~^~304~^2.^2^^~1~^^^^^^^^^^^~08/01/1991~
-~19720~^~305~^10.^2^^~1~^^^^^^^^^^^~08/01/1991~
-~19720~^~306~^22.^0^^~1~^^^^^^^^^^^~08/01/1991~
-~19720~^~307~^61.^7^10.^~1~^^^^^^^^^^^~08/01/1991~
-~19720~^~318~^0.^1^^~4~^^^^^^^^^^^~08/01/1991~
-~19720~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2002~
-~19720~^~320~^0.^0^^~4~^~NC~^^^^^^^^^^~06/01/2002~
-~19720~^~417~^0.^2^^~1~^^^^^^^^^^^~08/01/1991~
-~19720~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~
-~19720~^~432~^0.^2^^~1~^^^^^^^^^^^~08/01/1991~
-~19720~^~435~^0.^0^^~4~^~NC~^^^^^^^^^^~01/01/2001~
-~19720~^~601~^0.^1^^~4~^^^^^^^^^^^~08/01/1991~
-~19800~^~208~^387.^0^^~4~^~NC~^^^^^^^^^^~08/01/1991~
-~19800~^~268~^1619.^0^^~4~^^^^^^^^^^^
-~19800~^~301~^19.^1^^~1~^^^^^^^^^^^~08/01/1991~
-~19800~^~304~^114.^1^^~1~^^^^^^^^^^^~08/01/1991~
-~19800~^~305~^157.^1^^~1~^^^^^^^^^^^~08/01/1991~
-~19800~^~306~^157.^1^^~1~^^^^^^^^^^^~08/01/1991~
-~19800~^~307~^28.^1^^~1~^^^^^^^^^^^~08/01/1991~
-~19800~^~318~^242.^1^^~1~^^^^^^^^^^^~08/01/1991~
-~19800~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2002~
-~19800~^~320~^12.^0^^~4~^~NC~^^^^^^^^^^~06/01/2002~
-~19800~^~417~^19.^1^^~1~^^^^^^^^^^^~08/01/1991~
-~19800~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~
-~19800~^~432~^19.^1^^~1~^^^^^^^^^^^~08/01/1991~
-~19800~^~435~^19.^0^^~4~^~NC~^^^^^^^^^^~01/01/2001~
-~19800~^~601~^0.^1^^~4~^^^^^^^^^^^~08/01/1991~
-~19802~^~208~^558.^0^^~4~^~NC~^^^^^^^^^^~08/01/2015~
-~19802~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/1999~
-~19802~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/1999~
-~19802~^~268~^2336.^0^^~4~^~NC~^^^^^^^^^^~08/01/2015~
-~19802~^~301~^58.^6^2.^~1~^~A~^^^^52.^65.^^^^^~05/01/2005~
-~19802~^~304~^20.^6^0.^~1~^~A~^^^^19.^21.^^^^^~05/01/2005~
-~19802~^~305~^108.^151^2.^~1~^^^^^^^^^^^~08/01/2015~
-~19802~^~306~^197.^6^9.^~1~^~A~^^^^174.^239.^^^^^~05/01/2005~
-~19802~^~307~^896.^0^^~4~^~O~^^^^^^^^^^~05/01/2005~
-~19802~^~318~^0.^1^^~1~^~AS~^^^^^^^^^^~07/01/2006~
-~19802~^~320~^0.^1^^~1~^~AS~^^^^^^^^^^~07/01/2006~
-~19802~^~321~^0.^1^^~1~^~A~^^^^^^^^^^~05/01/2005~
-~19802~^~322~^0.^1^^~1~^~A~^^^^^^^^^^~05/01/2005~
-~19802~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~
-~19802~^~334~^0.^1^^~1~^~A~^^^^^^^^^^~05/01/2005~
-~19802~^~417~^120.^1^^~1~^^^^^^^^^^^~08/01/2015~
-~19802~^~431~^86.^0^^~4~^~O~^^^^^^^^^^~05/01/2005~
-~19802~^~432~^34.^0^^~4~^~O~^^^^^^^^^^~05/01/2005~
-~19802~^~435~^180.^0^^~4~^~NC~^^^^^^^^^^~02/01/2009~
-~19802~^~601~^4.^63^0.^~1~^^^^^^^^^^^~08/01/1991~
-~19804~^~208~^523.^0^^~4~^~BFZN~^^^^^^^^^^~01/01/1998~
-~19804~^~268~^2188.^0^^~4~^^^^^^^^^^^
-~19804~^~301~^131.^0^^~4~^~BFZN~^^^^^^^^^^~01/01/1998~
-~19804~^~304~^77.^0^^~4~^~BFZN~^^^^^^^^^^~01/01/1998~
-~19804~^~305~^207.^0^^~4~^~BFZN~^^^^^^^^^^~01/01/1998~
-~19804~^~306~^236.^0^^~4~^~BFZN~^^^^^^^^^^~01/01/1998~
-~19804~^~307~^763.^0^^~4~^~BFZN~^^^^^^^^^^~01/01/1998~
-~19804~^~318~^611.^0^^~4~^~BFZN~^^^^^^^^^^~01/01/1998~
-~19804~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2002~
-~19804~^~320~^31.^0^^~4~^~NC~^^^^^^^^^^~06/01/2002~
-~19804~^~417~^200.^1^^~12~^~MA~^^^^^^^^^^~01/01/1998~
-~19804~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~
-~19804~^~432~^200.^1^^~12~^~MA~^^^^^^^^^^~01/01/1998~
-~19804~^~435~^200.^0^^~4~^~NC~^^^^^^^^^^~01/01/2001~
-~19804~^~601~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/1998~
-~19806~^~208~^382.^0^^~4~^~NC~^^^^^^^^^^~08/01/1991~
-~19806~^~268~^1598.^0^^~4~^^^^^^^^^^^
-~19806~^~301~^10.^3^1.^~1~^^^^^^^^^^^~08/01/1991~
-~19806~^~304~^131.^4^16.^~1~^^^^^^^^^^^~08/01/1991~
-~19806~^~305~^300.^3^49.^~1~^^^^^^^^^^^~08/01/1991~
-~19806~^~306~^301.^3^28.^~1~^^^^^^^^^^^~08/01/1991~
-~19806~^~307~^4.^2^^~1~^^^^^^^^^^^~08/01/1991~
-~19806~^~318~^27.^0^^~1~^^^^^^^^^^^~08/01/1991~
-~19806~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2002~
-~19806~^~320~^1.^0^^~4~^~NC~^^^^^^^^^^~06/01/2002~
-~19806~^~417~^23.^2^^~1~^^^^^^^^^^^~08/01/1991~
-~19806~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~
-~19806~^~432~^23.^2^^~1~^^^^^^^^^^^~08/01/1991~
-~19806~^~435~^23.^0^^~4~^~NC~^^^^^^^^^^~01/01/2001~
-~19806~^~601~^0.^1^^~4~^^^^^^^^^^^~08/01/1991~
-~19807~^~208~^500.^0^^~4~^~NC~^^^^^^^^^^~08/01/1991~
-~19807~^~268~^2092.^0^^~4~^^^^^^^^^^^
-~19807~^~301~^10.^55^1.^~1~^^^^^^^^^^^~08/01/1991~
-~19807~^~304~^108.^50^3.^~1~^^^^^^^^^^^~08/01/1991~
-~19807~^~305~^250.^49^7.^~1~^^^^^^^^^^^~08/01/1991~
-~19807~^~306~^225.^51^9.^~1~^^^^^^^^^^^~08/01/1991~
-~19807~^~307~^884.^29^65.^~1~^^^^^^^^^^^~08/01/1991~
-~19807~^~318~^11.^0^^~1~^^^^^^^^^^^~08/01/1991~
-~19807~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2002~
-~19807~^~320~^1.^0^^~4~^~NC~^^^^^^^^^^~06/01/2002~
-~19807~^~417~^17.^3^1.^~1~^^^^^^^^^^^~08/01/1991~
-~19807~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~
-~19807~^~432~^17.^3^1.^~1~^^^^^^^^^^^~08/01/1991~
-~19807~^~435~^17.^0^^~4~^~NC~^^^^^^^^^^~01/01/2001~
-~19807~^~601~^0.^6^0.^~1~^^^^^^^^^^^~08/01/1991~
-~19809~^~208~^536.^0^^~4~^~NC~^^^^^^^^^^~08/01/1991~
-~19809~^~268~^2243.^0^^~4~^^^^^^^^^^^
-~19809~^~301~^24.^223^0.^~1~^^^^^^^^^^^~08/01/1991~
-~19809~^~304~^67.^240^0.^~1~^^^^^^^^^^^~08/01/1991~
-~19809~^~305~^165.^237^2.^~1~^^^^^^^^^^^~08/01/1991~
-~19809~^~306~^1275.^234^11.^~1~^^^^^^^^^^^~08/01/1991~
-~19809~^~307~^594.^251^9.^~1~^^^^^^^^^^^~08/01/1991~
-~19809~^~318~^0.^5^0.^~1~^^^^^^^^^^^~08/01/1991~
-~19809~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2002~
-~19809~^~320~^0.^0^^~4~^~NC~^^^^^^^^^^~06/01/2002~
-~19809~^~417~^45.^24^0.^~1~^^^^^^^^^^^~08/01/1991~
-~19809~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~
-~19809~^~432~^45.^24^0.^~1~^^^^^^^^^^^~08/01/1991~
-~19809~^~435~^45.^0^^~4~^~NC~^^^^^^^^^^~01/01/2001~
-~19809~^~601~^0.^24^0.^~1~^^^^^^^^^^^~08/01/1991~
-~19810~^~208~^536.^0^^~4~^~NC~^^^^^^^^^^~08/01/1991~
-~19810~^~268~^2243.^0^^~4~^^^^^^^^^^^
-~19810~^~301~^24.^223^0.^~1~^^^^^^^^^^^~08/01/1991~
-~19810~^~304~^67.^240^0.^~1~^^^^^^^^^^^~08/01/1991~
-~19810~^~305~^165.^237^2.^~1~^^^^^^^^^^^~08/01/1991~
-~19810~^~306~^1275.^234^11.^~1~^^^^^^^^^^^~08/01/1991~
-~19810~^~307~^8.^0^^~1~^^^^^^^^^^^~08/01/1991~
-~19810~^~318~^0.^5^0.^~1~^^^^^^^^^^^~08/01/1991~
-~19810~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2002~
-~19810~^~320~^0.^0^^~4~^~NC~^^^^^^^^^^~06/01/2002~
-~19810~^~417~^45.^24^0.^~1~^^^^^^^^^^^~08/01/1991~
-~19810~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~
-~19810~^~432~^45.^24^0.^~1~^^^^^^^^^^^~08/01/1991~
-~19810~^~435~^45.^0^^~4~^~NC~^^^^^^^^^^~01/01/2001~
-~19810~^~601~^0.^24^0.^~1~^^^^^^^^^^^~08/01/1991~
-~19811~^~208~^536.^0^^~4~^~NC~^^^^^^^^^^~08/01/1991~
-~19811~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2003~
-~19811~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2003~
-~19811~^~268~^2243.^0^^~4~^^^^^^^^^^^~04/01/2007~
-~19811~^~301~^24.^223^0.^~1~^^^^^^^^^^^~08/01/1991~
-~19811~^~304~^67.^240^0.^~1~^^^^^^^^^^^~08/01/1991~
-~19811~^~305~^165.^237^2.^~1~^^^^^^^^^^^~08/01/1991~
-~19811~^~306~^1275.^234^11.^~1~^^^^^^^^^^^~08/01/1991~
-~19811~^~307~^8.^0^^~1~^^^^^^^^^^^~08/01/1991~
-~19811~^~318~^0.^0^^~1~^~AS~^^^^^^^^^^~03/01/2003~
-~19811~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2002~
-~19811~^~320~^0.^0^^~1~^~AS~^^^^^^^^^^~03/01/2003~
-~19811~^~321~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2003~
-~19811~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2003~
-~19811~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2009~
-~19811~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2003~
-~19811~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2003~
-~19811~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2003~
-~19811~^~417~^45.^24^0.^~1~^^^^^^^^^^^~08/01/1991~
-~19811~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~
-~19811~^~432~^45.^24^0.^~1~^^^^^^^^^^^~08/01/1991~
-~19811~^~435~^45.^0^^~4~^~NC~^^^^^^^^^^~04/01/2007~
-~19811~^~601~^0.^24^0.^~1~^^^^^^^^^^^~08/01/1991~
-~19812~^~208~^381.^0^^~4~^~NC~^^^^^^^^^^~08/01/1991~
-~19812~^~268~^1594.^0^^~4~^^^^^^^^^^^
-~19812~^~301~^36.^101^1.^~1~^^^^^^^^^^^~08/01/1991~
-~19812~^~304~^35.^85^0.^~1~^^^^^^^^^^^~08/01/1991~
-~19812~^~305~^113.^88^4.^~1~^^^^^^^^^^^~08/01/1991~
-~19812~^~306~^146.^104^3.^~1~^^^^^^^^^^^~08/01/1991~
-~19812~^~307~^1715.^87^61.^~1~^^^^^^^^^^^~08/01/1991~
-~19812~^~318~^0.^15^0.^~1~^^^^^^^^^^^~08/01/1991~
-~19812~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2002~
-~19812~^~320~^0.^0^^~4~^~NC~^^^^^^^^^^~06/01/2002~
-~19812~^~417~^83.^1^^~4~^^^^^^^^^^^~08/01/1991~
-~19812~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~
-~19812~^~432~^83.^1^^~4~^^^^^^^^^^^~08/01/1991~
-~19812~^~435~^83.^0^^~4~^~NC~^^^^^^^^^^~01/01/2001~
-~19812~^~601~^0.^13^0.^~1~^^^^^^^^^^^~08/01/1991~
-~19813~^~208~^381.^0^^~4~^~NC~^^^^^^^^^^~08/01/1991~
-~19813~^~268~^1594.^0^^~4~^^^^^^^^^^^
-~19813~^~301~^36.^101^1.^~1~^^^^^^^^^^^~08/01/1991~
-~19813~^~304~^35.^85^0.^~1~^^^^^^^^^^^~08/01/1991~
-~19813~^~305~^113.^88^4.^~1~^^^^^^^^^^^~08/01/1991~
-~19813~^~306~^146.^104^3.^~1~^^^^^^^^^^^~08/01/1991~
-~19813~^~307~^289.^0^^~1~^^^^^^^^^^^~08/01/1991~
-~19813~^~318~^0.^15^0.^~1~^^^^^^^^^^^~08/01/1991~
-~19813~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2002~
-~19813~^~320~^0.^0^^~4~^~NC~^^^^^^^^^^~06/01/2002~
-~19813~^~417~^83.^1^^~4~^^^^^^^^^^^~08/01/1991~
-~19813~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~
-~19813~^~432~^83.^1^^~4~^^^^^^^^^^^~08/01/1991~
-~19813~^~435~^83.^0^^~4~^~NC~^^^^^^^^^^~01/01/2001~
-~19813~^~601~^0.^13^0.^~1~^^^^^^^^^^^~08/01/1991~
-~19814~^~208~^381.^0^^~4~^~NC~^^^^^^^^^^~08/01/1991~
-~19814~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2005~
-~19814~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2005~
-~19814~^~268~^1594.^0^^~4~^^^^^^^^^^^~04/01/2005~
-~19814~^~301~^36.^101^1.^~1~^^^^^^^^^^^~08/01/1991~
-~19814~^~304~^35.^85^0.^~1~^^^^^^^^^^^~08/01/1991~
-~19814~^~305~^113.^88^4.^~1~^^^^^^^^^^^~08/01/1991~
-~19814~^~306~^146.^104^3.^~1~^^^^^^^^^^^~08/01/1991~
-~19814~^~307~^250.^0^^~8~^~LC~^^^^^^^^^^~06/01/2013~
-~19814~^~318~^0.^0^^~1~^~AS~^^^^^^^^^^~03/01/2003~
-~19814~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2002~
-~19814~^~320~^0.^0^^~1~^~AS~^^^^^^^^^^~03/01/2003~
-~19814~^~321~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2003~
-~19814~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2003~
-~19814~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2009~
-~19814~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2003~
-~19814~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2003~
-~19814~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2003~
-~19814~^~417~^171.^0^^~4~^~O~^^^^^^^^^^~04/01/2005~
-~19814~^~431~^88.^0^^~4~^~O~^^^^^^^^^^~04/01/2005~
-~19814~^~432~^83.^1^^~4~^^^^^^^^^^^~08/01/1991~
-~19814~^~435~^233.^0^^~4~^~NC~^^^^^^^^^^~04/01/2007~
-~19814~^~601~^0.^13^0.^~1~^^^^^^^^^^^~08/01/1991~
-~19816~^~208~^387.^0^^~4~^~NC~^^^^^^^^^^~08/01/1991~
-~19816~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2003~
-~19816~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2003~
-~19816~^~268~^1619.^0^^~4~^^^^^^^^^^^~05/01/2007~
-~19816~^~301~^11.^9^1.^~1~^^^^^^^^^^^~08/01/1991~
-~19816~^~304~^131.^2^^~1~^^^^^^^^^^^~08/01/1991~
-~19816~^~305~^360.^2^^~1~^^^^^^^^^^^~08/01/1991~
-~19816~^~306~^290.^6^21.^~1~^^^^^^^^^^^~08/01/1991~
-~19816~^~307~^26.^0^^~1~^^^^^^^^^^^~08/01/1991~
-~19816~^~318~^0.^0^^~1~^~AS~^^^^^^^^^^~03/01/2003~
-~19816~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2002~
-~19816~^~320~^0.^0^^~1~^~AS~^^^^^^^^^^~03/01/2003~
-~19816~^~321~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2003~
-~19816~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2003~
-~19816~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2009~
-~19816~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2003~
-~19816~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2003~
-~19816~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2003~
-~19816~^~417~^21.^2^^~1~^^^^^^^^^^^~08/01/1991~
-~19816~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~
-~19816~^~432~^21.^2^^~1~^^^^^^^^^^^~08/01/1991~
-~19816~^~435~^21.^0^^~4~^~NC~^^^^^^^^^^~05/01/2007~
-~19816~^~601~^0.^1^^~4~^^^^^^^^^^^~08/01/1991~
-~19817~^~208~^380.^0^^~4~^~NC~^^^^^^^^^^~08/01/1991~
-~19817~^~268~^1590.^0^^~4~^^^^^^^^^^^
-~19817~^~301~^11.^4^2.^~1~^^^^^^^^^^^~08/01/1991~
-~19817~^~304~^151.^1^^~1~^^^^^^^^^^^~08/01/1991~
-~19817~^~305~^380.^1^^~1~^^^^^^^^^^^~08/01/1991~
-~19817~^~306~^299.^4^10.^~1~^^^^^^^^^^^~08/01/1991~
-~19817~^~307~^4.^0^^~1~^^^^^^^^^^^~08/01/1991~
-~19817~^~318~^0.^2^^~1~^^^^^^^^^^^~08/01/1991~
-~19817~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2002~
-~19817~^~320~^0.^0^^~4~^~NC~^^^^^^^^^^~06/01/2002~
-~19817~^~417~^21.^1^^~1~^^^^^^^^^^^~08/01/1991~
-~19817~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~
-~19817~^~432~^21.^1^^~1~^^^^^^^^^^^~08/01/1991~
-~19817~^~435~^21.^0^^~4~^~NC~^^^^^^^^^^~01/01/2001~
-~19817~^~601~^0.^1^^~4~^^^^^^^^^^^~08/01/1991~
-~19818~^~208~^387.^0^^~4~^~NC~^^^^^^^^^^~08/01/1991~
-~19818~^~268~^1619.^0^^~4~^^^^^^^^^^^
-~19818~^~301~^21.^10^3.^~1~^^^^^^^^^^^~08/01/1991~
-~19818~^~304~^137.^4^4.^~1~^^^^^^^^^^^~08/01/1991~
-~19818~^~305~^370.^4^16.^~1~^^^^^^^^^^^~08/01/1991~
-~19818~^~306~^294.^8^19.^~1~^^^^^^^^^^^~08/01/1991~
-~19818~^~307~^4.^0^^~1~^^^^^^^^^^^~08/01/1991~
-~19818~^~318~^0.^1^^~1~^^^^^^^^^^^~08/01/1991~
-~19818~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2002~
-~19818~^~320~^0.^0^^~4~^~NC~^^^^^^^^^^~06/01/2002~
-~19818~^~417~^20.^4^2.^~1~^^^^^^^^^^^~08/01/1991~
-~19818~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~
-~19818~^~432~^20.^4^2.^~1~^^^^^^^^^^^~08/01/1991~
-~19818~^~435~^20.^0^^~4~^~NC~^^^^^^^^^^~01/01/2001~
-~19818~^~601~^0.^0^^~4~^^^^^^^^^^^~08/01/1991~
-~19819~^~208~^392.^0^^~4~^~NC~^^^^^^^^^^~08/01/1991~
-~19819~^~268~^1640.^0^^~4~^^^^^^^^^^^
-~19819~^~301~^12.^6^1.^~1~^^^^^^^^^^^~08/01/1991~
-~19819~^~304~^136.^2^^~1~^^^^^^^^^^^~08/01/1991~
-~19819~^~305~^375.^2^^~1~^^^^^^^^^^^~08/01/1991~
-~19819~^~306~^290.^6^13.^~1~^^^^^^^^^^^~08/01/1991~
-~19819~^~307~^4.^0^^~1~^^^^^^^^^^^~08/01/1991~
-~19819~^~318~^0.^2^^~1~^^^^^^^^^^^~08/01/1991~
-~19819~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2002~
-~19819~^~320~^0.^0^^~4~^~NC~^^^^^^^^^^~06/01/2002~
-~19819~^~417~^18.^2^^~1~^^^^^^^^^^^~08/01/1991~
-~19819~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~
-~19819~^~432~^18.^2^^~1~^^^^^^^^^^^~08/01/1991~
-~19819~^~435~^18.^0^^~4~^~NC~^^^^^^^^^^~01/01/2001~
-~19819~^~601~^0.^1^^~4~^^^^^^^^^^^~08/01/1991~
-~19820~^~208~^541.^0^^~4~^~NC~^^^^^^^^^^~08/01/1991~
-~19820~^~268~^2264.^0^^~4~^^^^^^^^^^^
-~19820~^~301~^170.^1^^~1~^^^^^^^^^^^~08/01/1991~
-~19820~^~304~^45.^1^^~4~^^^^^^^^^^^~08/01/1991~
-~19820~^~305~^138.^1^^~4~^^^^^^^^^^^~08/01/1991~
-~19820~^~306~^177.^1^^~4~^^^^^^^^^^^~08/01/1991~
-~19820~^~307~^29.^0^^~1~^^^^^^^^^^^~08/01/1991~
-~19820~^~318~^88.^1^^~1~^^^^^^^^^^^~08/01/1991~
-~19820~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2002~
-~19820~^~320~^4.^0^^~4~^~NC~^^^^^^^^^^~06/01/2002~
-~19820~^~417~^22.^1^^~4~^^^^^^^^^^^~08/01/1991~
-~19820~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~
-~19820~^~432~^22.^1^^~4~^^^^^^^^^^^~08/01/1991~
-~19820~^~435~^22.^0^^~4~^~NC~^^^^^^^^^^~01/01/2001~
-~19820~^~601~^0.^1^^~4~^^^^^^^^^^^~08/01/1991~
-~19821~^~208~^462.^0^^~4~^~NC~^^^^^^^^^^~08/01/1991~
-~19821~^~268~^1933.^0^^~4~^^^^^^^^^^^
-~19821~^~301~^78.^1^^~1~^^^^^^^^^^^~08/01/1991~
-~19821~^~304~^158.^1^^~1~^^^^^^^^^^^~08/01/1991~
-~19821~^~305~^345.^1^^~1~^^^^^^^^^^^~08/01/1991~
-~19821~^~306~^685.^1^^~1~^^^^^^^^^^^~08/01/1991~
-~19821~^~307~^10.^0^^~1~^^^^^^^^^^^~08/01/1991~
-~19821~^~318~^18.^1^^~1~^^^^^^^^^^^~08/01/1991~
-~19821~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2002~
-~19821~^~320~^1.^0^^~4~^~NC~^^^^^^^^^^~06/01/2002~
-~19821~^~417~^71.^1^^~1~^^^^^^^^^^^~08/01/1991~
-~19821~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~
-~19821~^~432~^71.^1^^~1~^^^^^^^^^^^~08/01/1991~
-~19821~^~435~^71.^0^^~4~^~NC~^^^^^^^^^^~01/01/2001~
-~19821~^~601~^0.^1^^~1~^^^^^^^^^^^~08/01/1991~
-~19822~^~208~^484.^0^^~4~^~NC~^^^^^^^^^^~08/01/1991~
-~19822~^~268~^2025.^0^^~4~^^^^^^^^^^^
-~19822~^~301~^109.^1^^~1~^^^^^^^^^^^~08/01/1991~
-~19822~^~304~^161.^1^^~1~^^^^^^^^^^^~08/01/1991~
-~19822~^~305~^387.^1^^~1~^^^^^^^^^^^~08/01/1991~
-~19822~^~306~^648.^1^^~1~^^^^^^^^^^^~08/01/1991~
-~19822~^~307~^27.^0^^~1~^^^^^^^^^^^~08/01/1991~
-~19822~^~318~^44.^1^^~1~^^^^^^^^^^^~08/01/1991~
-~19822~^~319~^1.^0^^~4~^~NC~^^^^^^^^^^~06/01/2002~
-~19822~^~320~^13.^0^^~4~^~NR~^^^^^^^^^^~05/01/2013~
-~19822~^~417~^65.^1^^~1~^^^^^^^^^^^~08/01/1991~
-~19822~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~
-~19822~^~432~^65.^1^^~1~^^^^^^^^^^^~08/01/1991~
-~19822~^~435~^65.^0^^~4~^~NC~^^^^^^^^^^~01/01/2001~
-~19822~^~601~^0.^0^^~4~^~NR~^^^^^^^^^^~05/01/2013~
-~19823~^~208~^487.^0^^~4~^~NC~^^^^^^^^^^~03/01/2003~
-~19823~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2003~
-~19823~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2003~
-~19823~^~268~^2037.^0^^~4~^~NC~^^^^^^^^^^~03/01/2003~
-~19823~^~301~^21.^0^^~4~^^^^^^^^^^^~05/01/2007~
-~19823~^~304~^89.^0^^~4~^^^^^^^^^^^~05/01/2007~
-~19823~^~305~^193.^0^^~4~^^^^^^^^^^^~05/01/2007~
-~19823~^~306~^1744.^0^^~4~^^^^^^^^^^^~05/01/2007~
-~19823~^~307~^8.^0^^~4~^^^^^^^^^^^~05/01/2007~
-~19823~^~318~^0.^0^^~1~^~AS~^^^^^^^^^^~03/01/2003~
-~19823~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2003~
-~19823~^~320~^0.^0^^~1~^~AS~^^^^^^^^^^~05/01/2007~
-~19823~^~321~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2003~
-~19823~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2003~
-~19823~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2009~
-~19823~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2003~
-~19823~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2003~
-~19823~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2003~
-~19823~^~417~^10.^0^^~1~^^^^^^^^^^^~05/01/2007~
-~19823~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2003~
-~19823~^~432~^10.^0^^~4~^~NR~^^^^^^^^^^~03/01/2003~
-~19823~^~435~^10.^0^^~4~^~NC~^^^^^^^^^^~07/01/2008~
-~19823~^~601~^0.^0^^~4~^^^^^^^^^^^~05/01/2007~
-~19833~^~208~^416.^0^^~4~^~NC~^^^^^^^^^^~03/01/2003~
-~19833~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2003~
-~19833~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2003~
-~19833~^~268~^1739.^0^^~4~^~NC~^^^^^^^^^^~03/01/2003~
-~19833~^~301~^159.^0^^~4~^~BFZN~^^^^^^^^^^~04/01/2007~
-~19833~^~304~^97.^0^^~4~^~BFZN~^^^^^^^^^^~04/01/2007~
-~19833~^~305~^318.^0^^~4~^~BFZN~^^^^^^^^^^~04/01/2007~
-~19833~^~306~^272.^0^^~4~^~BFZN~^^^^^^^^^^~04/01/2007~
-~19833~^~307~^15.^0^^~4~^~BFZY~^^^^^^^^^^~04/01/2007~
-~19833~^~318~^82.^0^^~4~^~NC~^^^^^^^^^^~04/01/2003~
-~19833~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2003~
-~19833~^~320~^4.^0^^~4~^~NC~^^^^^^^^^^~04/01/2003~
-~19833~^~321~^37.^0^^~4~^~O~^^^^^^^^^^~03/01/2003~
-~19833~^~322~^24.^0^^~4~^~O~^^^^^^^^^^~03/01/2003~
-~19833~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2009~
-~19833~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2003~
-~19833~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2003~
-~19833~^~338~^507.^0^^~4~^~O~^^^^^^^^^^~03/01/2003~
-~19833~^~417~^16.^0^^~4~^~BFZN~^^^^^^^^^^~04/01/2007~
-~19833~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2003~
-~19833~^~432~^16.^0^^~4~^~BFZN~^^^^^^^^^^~04/01/2007~
-~19833~^~435~^16.^0^^~4~^~NC~^^^^^^^^^^~07/01/2008~
-~19833~^~601~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2007~
-~19856~^~208~^81.^0^^~4~^~NC~^^^^^^^^^^~04/01/2005~
-~19856~^~268~^338.^0^^~4~^~NC~^^^^^^^^^^~04/01/2005~
-~19856~^~301~^5.^1^^~1~^~A~^^^^^^^^^^~04/01/2005~
-~19856~^~304~^3.^1^^~1~^~A~^^^^^^^^^^~04/01/2005~
-~19856~^~305~^2.^1^^~1~^~A~^^^^^^^^^^~04/01/2005~
-~19856~^~306~^23.^1^^~1~^~A~^^^^^^^^^^~04/01/2005~
-~19856~^~307~^13.^1^^~1~^~A~^^^^^^^^^^~04/01/2005~
-~19857~^~208~^511.^0^^~4~^~NC~^^^^^^^^^^~02/01/2017~
-~19857~^~268~^2137.^0^^~4~^~NC~^^^^^^^^^^~02/01/2017~
-~19857~^~301~^147.^0^^~4~^~BFZN~^^^^^^^^^^~01/01/1998~
-~19857~^~304~^82.^0^^~4~^~BFZN~^^^^^^^^^^~01/01/1998~
-~19857~^~305~^244.^0^^~4~^~BFZN~^^^^^^^^^^~01/01/1998~
-~19857~^~306~^216.^0^^~4~^~BFZN~^^^^^^^^^^~01/01/1998~
-~19857~^~307~^708.^0^^~4~^~BFZN~^^^^^^^^^^~01/01/1998~
-~19857~^~318~^371.^0^^~4~^~BFZN~^^^^^^^^^^~01/01/1998~
-~19857~^~319~^6.^0^^~4~^~NC~^^^^^^^^^^~06/01/2002~
-~19857~^~320~^24.^0^^~4~^~NC~^^^^^^^^^^~06/01/2002~
-~19857~^~417~^130.^1^^~12~^~MA~^^^^^^^^^^~01/01/1998~
-~19857~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~
-~19857~^~432~^130.^1^^~12~^~MA~^^^^^^^^^^~01/01/1998~
-~19857~^~435~^130.^0^^~4~^~NC~^^^^^^^^^^~01/01/2001~
-~19857~^~601~^3.^0^^~4~^~BFZN~^^^^^^^^^^~01/01/1998~
-~19857~^~636~^0.^0^^~4~^~BFZN~^^^^^^^^^^~01/01/1998~
-~19858~^~208~^465.^0^^~4~^~NC~^^^^^^^^^^~01/01/2017~
-~19858~^~262~^0.^0^^~4~^~FLM~^^^^^^^^^^~03/01/2003~
-~19858~^~263~^0.^0^^~4~^~FLM~^^^^^^^^^^~03/01/2003~
-~19858~^~268~^1945.^0^^~4~^~NC~^^^^^^^^^^~01/01/2017~
-~19858~^~301~^100.^1^^~1~^^^^^^^^^^^~04/01/2005~
-~19858~^~304~^137.^0^^~4~^~FLM~^^^^^^^^^^~03/01/2003~
-~19858~^~305~^166.^1^^~1~^^^^^^^^^^^~04/01/2005~
-~19858~^~306~^255.^1^^~1~^^^^^^^^^^^~04/01/2005~
-~19858~^~307~^13.^1^^~8~^~LC~^^^^^^^^^^~03/01/2003~
-~19858~^~318~^3.^0^^~4~^~NC~^^^^^^^^^^~03/01/2003~
-~19858~^~319~^0.^0^^~4~^~FLM~^^^^^^^^^^~03/01/2003~
-~19858~^~320~^0.^0^^~4~^~NC~^^^^^^^^^^~07/01/2008~
-~19858~^~321~^2.^0^^~4~^~FLM~^^^^^^^^^^~03/01/2003~
-~19858~^~322~^0.^0^^~4~^~FLM~^^^^^^^^^^~03/01/2003~
-~19858~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~
-~19858~^~334~^0.^0^^~4~^~FLM~^^^^^^^^^^~03/01/2003~
-~19858~^~337~^0.^0^^~4~^~FLM~^^^^^^^^^^~03/01/2003~
-~19858~^~338~^1.^0^^~4~^~FLM~^^^^^^^^^^~03/01/2003~
-~19858~^~417~^15.^0^^~4~^~FLM~^^^^^^^^^^~03/01/2003~
-~19858~^~431~^0.^0^^~4~^~FLM~^^^^^^^^^^~03/01/2003~
-~19858~^~432~^15.^0^^~4~^~FLM~^^^^^^^^^^~03/01/2003~
-~19858~^~435~^15.^0^^~4~^~NC~^^^^^^^^^^~07/01/2008~
-~19858~^~601~^0.^0^^~4~^~FLM~^^^^^^^^^^~03/01/2003~
-~19860~^~208~^479.^0^^~4~^~NC~^^^^^^^^^^~05/01/2009~
-~19860~^~262~^72.^0^^~4~^~BFPN~^^^^^^^^^^~05/01/1998~
-~19860~^~263~^2445.^0^^~4~^~BFPN~^^^^^^^^^^~05/01/1998~
-~19860~^~268~^2006.^0^^~4~^~NC~^^^^^^^^^^~05/01/2009~
-~19860~^~301~^122.^1^^~1~^^^^^^^^^^^~12/01/2006~
-~19860~^~304~^476.^1^^~1~^^^^^^^^^^^~12/01/2006~
-~19860~^~305~^758.^1^^~1~^^^^^^^^^^^~12/01/2006~
-~19860~^~306~^2509.^1^^~1~^^^^^^^^^^^~12/01/2006~
-~19860~^~307~^20.^1^^~1~^^^^^^^^^^^~12/01/2006~
-~19860~^~318~^0.^0^^~4~^~NC~^^^^^^^^^^~03/01/2003~
-~19860~^~319~^0.^0^^~4~^~BFNN~^~19166~^^^^^^^^^~03/01/2003~
-~19860~^~320~^0.^0^^~4~^~NC~^^^^^^^^^^~03/01/2003~
-~19860~^~321~^0.^0^^~4~^~BFNN~^~19166~^^^^^^^^^~03/01/2003~
-~19860~^~322~^0.^0^^~4~^~BFNN~^~19166~^^^^^^^^^~03/01/2003~
-~19860~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~
-~19860~^~334~^0.^0^^~4~^~BFNN~^~19166~^^^^^^^^^~03/01/2003~
-~19860~^~337~^0.^0^^~4~^~BFNN~^~19166~^^^^^^^^^~03/01/2003~
-~19860~^~338~^33.^0^^~4~^~BFNN~^~19166~^^^^^^^^^~03/01/2003~
-~19860~^~417~^38.^1^^~1~^^^^^^^^^^^~12/01/2006~
-~19860~^~431~^0.^0^^~4~^~BFNN~^~19166~^^^^^^^^^~03/01/2003~
-~19860~^~432~^38.^1^^~1~^^^^^^^^^^^~12/01/2006~
-~19860~^~435~^38.^0^^~4~^~NC~^^^^^^^^^^~05/01/2009~
-~19860~^~601~^0.^1^^~1~^^^^^^^^^^^~12/01/2006~
-~19866~^~208~^390.^0^^~4~^~FLC~^^^^^^^^^^~03/01/2003~
-~19866~^~262~^0.^0^^~4~^~FLC~^^^^^^^^^^~09/01/2002~
-~19866~^~263~^0.^0^^~4~^~FLC~^^^^^^^^^^~09/01/2002~
-~19866~^~268~^1633.^0^^~4~^~FLC~^^^^^^^^^^~03/01/2003~
-~19866~^~301~^17.^0^^~4~^~FLC~^^^^^^^^^^~03/01/2003~
-~19866~^~304~^25.^0^^~4~^~FLC~^^^^^^^^^^~03/01/2003~
-~19866~^~305~^54.^0^^~4~^~FLC~^^^^^^^^^^~03/01/2003~
-~19866~^~306~^82.^0^^~4~^~FLC~^^^^^^^^^^~03/01/2003~
-~19866~^~307~^131.^0^^~4~^~FLC~^^^^^^^^^^~03/01/2003~
-~19866~^~318~^3.^0^^~4~^~NC~^^^^^^^^^^~03/01/2003~
-~19866~^~319~^0.^0^^~4~^~FLC~^^^^^^^^^^~09/01/2002~
-~19866~^~320~^0.^0^^~4~^~NC~^^^^^^^^^^~03/01/2003~
-~19866~^~321~^2.^0^^~4~^~FLC~^^^^^^^^^^~03/01/2003~
-~19866~^~322~^0.^0^^~4~^~FLC~^^^^^^^^^^~09/01/2002~
-~19866~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~
-~19866~^~334~^0.^0^^~4~^~FLC~^^^^^^^^^^~09/01/2002~
-~19866~^~337~^0.^0^^~4~^~FLC~^^^^^^^^^^~09/01/2002~
-~19866~^~338~^3.^0^^~4~^~FLC~^^^^^^^^^^~03/01/2003~
-~19866~^~417~^12.^0^^~4~^~FLC~^^^^^^^^^^~03/01/2003~
-~19866~^~431~^0.^0^^~4~^~FLC~^^^^^^^^^^~09/01/2002~
-~19866~^~432~^11.^0^^~4~^~FLC~^^^^^^^^^^~03/01/2003~
-~19866~^~435~^11.^0^^~4~^~NC~^^^^^^^^^^~12/01/2006~
-~19866~^~601~^0.^0^^~4~^~FLC~^^^^^^^^^^~09/01/2002~
-~19867~^~208~^138.^0^^~4~^~NC~^^^^^^^^^^~03/01/2003~
-~19867~^~262~^0.^0^^~4~^~BFNN~^~19088~^^^^^^^^^~03/01/2003~
-~19867~^~263~^0.^0^^~4~^~BFNN~^~19088~^^^^^^^^^~03/01/2003~
-~19867~^~268~^578.^0^^~4~^~NC~^^^^^^^^^^~03/01/2003~
-~19867~^~301~^149.^1^^~8~^~LC~^^^^^^^^^^~10/01/2002~
-~19867~^~304~^21.^0^^~4~^~BFNN~^~19088~^^^^^^^^^~03/01/2003~
-~19867~^~305~^150.^0^^~4~^~BFNN~^~19088~^^^^^^^^^~03/01/2003~
-~19867~^~306~^302.^0^^~4~^~BFNN~^~19088~^^^^^^^^^~03/01/2003~
-~19867~^~307~^97.^1^^~8~^~LC~^^^^^^^^^^~10/01/2002~
-~19867~^~318~^698.^0^^~4~^~NC~^^^^^^^^^^~03/01/2003~
-~19867~^~319~^198.^0^^~4~^~BFNN~^~19088~^^^^^^^^^~03/01/2003~
-~19867~^~320~^200.^0^^~4~^~NC~^^^^^^^^^^~03/01/2003~
-~19867~^~321~^23.^0^^~4~^~BFNN~^~19088~^^^^^^^^^~03/01/2003~
-~19867~^~322~^0.^0^^~4~^~BFNN~^~19088~^^^^^^^^^~03/01/2003~
-~19867~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~
-~19867~^~334~^0.^0^^~4~^~BFNN~^~19088~^^^^^^^^^~03/01/2003~
-~19867~^~337~^0.^0^^~4~^~BFNN~^~19088~^^^^^^^^^~03/01/2003~
-~19867~^~338~^0.^0^^~4~^~BFNN~^~19088~^^^^^^^^^~03/01/2003~
-~19867~^~417~^7.^0^^~4~^~BFNN~^~19088~^^^^^^^^^~03/01/2003~
-~19867~^~431~^0.^0^^~4~^~BFNN~^~19088~^^^^^^^^^~03/01/2003~
-~19867~^~432~^7.^0^^~4~^~BFNN~^^^^^^^^^^~03/01/2003~
-~19867~^~435~^7.^0^^~4~^~NC~^^^^^^^^^^~12/01/2006~
-~19867~^~601~^0.^1^^~8~^~LC~^^^^^^^^^^~10/01/2002~
-~19868~^~208~^336.^0^^~4~^~NC~^^^^^^^^^^~05/01/2009~
-~19868~^~262~^0.^0^^~4~^~FLA~^^^^^^^^^^~02/01/2005~
-~19868~^~263~^0.^0^^~4~^~FLA~^^^^^^^^^^~02/01/2005~
-~19868~^~268~^1404.^0^^~4~^~NC~^^^^^^^^^^~05/01/2009~
-~19868~^~301~^0.^1^^~1~^~A~^^^^^^^^^~1~^~04/01/2005~
-~19868~^~304~^0.^1^^~1~^~A~^^^^^^^^^~1~^~04/01/2005~
-~19868~^~305~^0.^1^^~1~^~A~^^^^^^^^^~1~^~04/01/2005~
-~19868~^~306~^4.^1^^~1~^~A~^^^^^^^^^~1~^~04/01/2005~
-~19868~^~307~^0.^1^^~1~^~A~^^^^^^^^^~1~^~04/01/2005~
-~19868~^~318~^0.^0^^~4~^~FLA~^^^^^^^^^^~02/01/2005~
-~19868~^~319~^0.^0^^~4~^~FLA~^^^^^^^^^^~02/01/2005~
-~19868~^~320~^0.^0^^~4~^~NC~^^^^^^^^^^~07/01/2009~
-~19868~^~321~^0.^0^^~4~^~FLA~^^^^^^^^^^~02/01/2005~
-~19868~^~322~^0.^0^^~4~^~FLA~^^^^^^^^^^~02/01/2005~
-~19868~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~
-~19868~^~334~^0.^0^^~4~^~FLA~^^^^^^^^^^~02/01/2005~
-~19868~^~337~^0.^0^^~4~^~FLA~^^^^^^^^^^~02/01/2005~
-~19868~^~338~^0.^0^^~4~^~FLA~^^^^^^^^^^~02/01/2005~
-~19868~^~417~^0.^0^^~4~^~FLA~^^^^^^^^^^~02/01/2005~
-~19868~^~431~^0.^0^^~4~^~FLA~^^^^^^^^^^~02/01/2005~
-~19868~^~432~^0.^0^^~4~^~FLA~^^^^^^^^^^~02/01/2005~
-~19868~^~435~^0.^0^^~4~^~NC~^^^^^^^^^^~07/01/2009~
-~19868~^~601~^0.^0^^~4~^~FLA~^^^^^^^^^^~02/01/2005~
-~19871~^~208~^124.^0^^~4~^~NC~^^^^^^^^^^~07/01/2015~
-~19871~^~262~^4.^0^^~4~^~FLC~^^^^^^^^^^~07/01/2015~
-~19871~^~263~^133.^0^^~4~^~FLC~^^^^^^^^^^~07/01/2015~
-~19871~^~268~^519.^0^^~4~^~NC~^^^^^^^^^^~07/01/2015~
-~19871~^~301~^231.^3^3.^~1~^~A~^^^1^224.^237.^2^214.^246.^~2, 3~^~07/01/2015~
-~19871~^~304~^27.^3^0.^~1~^~A~^^^1^26.^28.^2^24.^28.^~2, 3~^~07/01/2015~
-~19871~^~305~^160.^3^2.^~1~^~A~^^^1^155.^163.^2^149.^170.^~2, 3~^~07/01/2015~
-~19871~^~306~^253.^3^1.^~1~^~A~^^^1^250.^256.^2^245.^260.^~2, 3~^~07/01/2015~
-~19871~^~307~^96.^3^2.^~1~^~A~^^^1^94.^100.^2^86.^104.^~2, 3~^~07/01/2015~
-~19871~^~318~^0.^0^^~4~^~NC~^^^^^^^^^^~07/01/2015~
-~19871~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~07/01/2015~
-~19871~^~320~^0.^0^^~4~^~NC~^^^^^^^^^^~07/01/2015~
-~19871~^~321~^0.^0^^~4~^~FLC~^^^^^^^^^^~07/01/2015~
-~19871~^~322~^0.^0^^~4~^~FLC~^^^^^^^^^^~03/01/2007~
-~19871~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~
-~19871~^~334~^0.^0^^~4~^~FLC~^^^^^^^^^^~03/01/2007~
-~19871~^~337~^0.^0^^~4~^~FLC~^^^^^^^^^^~03/01/2007~
-~19871~^~338~^2.^0^^~4~^~FLC~^^^^^^^^^^~07/01/2015~
-~19871~^~417~^6.^0^^~4~^~FLC~^^^^^^^^^^~07/01/2015~
-~19871~^~431~^0.^0^^~4~^~FLC~^^^^^^^^^^~03/01/2007~
-~19871~^~432~^6.^0^^~4~^~FLC~^^^^^^^^^^~07/01/2015~
-~19871~^~435~^6.^0^^~4~^~NC~^^^^^^^^^^~07/01/2015~
-~19871~^~601~^2.^1^^~1~^~A~^^^^^^^^^^~07/01/2015~
-~19873~^~208~^21.^1^^~4~^~NC~^^^^^^^^^^~04/01/2005~
-~19873~^~268~^86.^0^^~4~^~NC~^^^^^^^^^^~04/01/2005~
-~19873~^~301~^0.^3^0.^~1~^~A~^^^1^0.^0.^^^^~1, 2, 3~^~04/01/2005~
-~19873~^~304~^1.^3^0.^~1~^~A~^^^1^1.^1.^2^0.^1.^~2, 3~^~04/01/2005~
-~19873~^~305~^0.^3^0.^~1~^~A~^^^1^0.^0.^^^^~1, 2, 3~^~04/01/2005~
-~19873~^~306~^11.^3^2.^~1~^~A~^^^1^8.^17.^2^-1.^24.^~2, 3~^~04/01/2005~
-~19873~^~307~^10.^3^2.^~1~^~A~^^^1^7.^14.^2^0.^19.^~2, 3~^~04/01/2005~
-~19873~^~318~^0.^1^^~9~^~MC~^^^^^^^^^^~04/01/2004~
-~19873~^~601~^0.^1^^~9~^~MC~^^^^^^^^^^~04/01/2004~
-~19874~^~208~^124.^1^^~9~^~MC~^^^^^^^^^^~04/01/2004~
-~19874~^~268~^517.^0^^~9~^~MC~^^^^^^^^^^~04/01/2004~
-~19874~^~301~^138.^1^^~9~^~MC~^^^^^^^^^^~04/01/2004~
-~19874~^~307~^120.^1^^~9~^~MC~^^^^^^^^^^~04/01/2004~
-~19874~^~318~^49.^1^^~9~^~MC~^^^^^^^^^^~04/01/2004~
-~19874~^~601~^7.^1^^~9~^~MC~^^^^^^^^^^~04/01/2004~
-~19875~^~208~^162.^1^^~9~^~MC~^^^^^^^^^^~04/01/2004~
-~19875~^~268~^678.^0^^~9~^~MC~^^^^^^^^^^~04/01/2004~
-~19875~^~301~^169.^1^^~9~^~MC~^^^^^^^^^^~04/01/2004~
-~19875~^~307~^71.^1^^~9~^~MC~^^^^^^^^^^~04/01/2004~
-~19875~^~318~^437.^1^^~9~^~MC~^^^^^^^^^^~04/01/2004~
-~19875~^~601~^15.^1^^~9~^~MC~^^^^^^^^^^~04/01/2004~
-~19876~^~208~^173.^1^^~9~^~MC~^^^^^^^^^^~04/01/2004~
-~19876~^~268~^723.^0^^~9~^~MC~^^^^^^^^^^~04/01/2004~
-~19876~^~301~^155.^1^^~9~^~MC~^^^^^^^^^^~04/01/2004~
-~19876~^~307~^73.^1^^~9~^~MC~^^^^^^^^^^~04/01/2004~
-~19876~^~318~^489.^1^^~9~^~MC~^^^^^^^^^^~04/01/2004~
-~19876~^~601~^53.^1^^~9~^~MC~^^^^^^^^^^~04/01/2004~
-~19877~^~208~^137.^1^^~9~^~MC~^^^^^^^^^^~04/01/2004~
-~19877~^~268~^574.^0^^~9~^~MC~^^^^^^^^^^~04/01/2004~
-~19877~^~301~^122.^1^^~9~^~MC~^^^^^^^^^^~04/01/2004~
-~19877~^~307~^73.^1^^~9~^~MC~^^^^^^^^^^~04/01/2004~
-~19877~^~318~^268.^1^^~9~^~MC~^^^^^^^^^^~04/01/2004~
-~19877~^~601~^8.^1^^~9~^~MC~^^^^^^^^^^~04/01/2004~
-~19878~^~208~^161.^1^^~9~^~MC~^^^^^^^^^^~04/01/2004~
-~19878~^~268~^673.^0^^~9~^~MC~^^^^^^^^^^~04/01/2004~
-~19878~^~301~^158.^1^^~9~^~MC~^^^^^^^^^^~04/01/2004~
-~19878~^~307~^69.^1^^~9~^~MC~^^^^^^^^^^~04/01/2004~
-~19878~^~318~^417.^1^^~9~^~MC~^^^^^^^^^^~04/01/2004~
-~19878~^~601~^14.^1^^~9~^~MC~^^^^^^^^^^~04/01/2004~
-~19879~^~208~^196.^1^^~9~^~MC~^^^^^^^^^^~04/01/2004~
-~19879~^~268~^822.^0^^~9~^~MC~^^^^^^^^^^~04/01/2004~
-~19879~^~301~^160.^1^^~9~^~MC~^^^^^^^^^^~04/01/2004~
-~19879~^~307~^67.^1^^~9~^~MC~^^^^^^^^^^~04/01/2004~
-~19879~^~318~^404.^1^^~9~^~MC~^^^^^^^^^^~04/01/2004~
-~19879~^~601~^15.^1^^~9~^~MC~^^^^^^^^^^~04/01/2004~
-~19880~^~208~^180.^1^^~9~^~MC~^^^^^^^^^^~04/01/2004~
-~19880~^~268~^752.^0^^~9~^~MC~^^^^^^^^^^~04/01/2004~
-~19880~^~301~^130.^1^^~9~^~MC~^^^^^^^^^^~04/01/2004~
-~19880~^~307~^164.^1^^~9~^~MC~^^^^^^^^^^~04/01/2004~
-~19880~^~318~^281.^1^^~9~^~MC~^^^^^^^^^^~04/01/2004~
-~19880~^~601~^18.^1^^~9~^~MC~^^^^^^^^^^~04/01/2004~
-~19881~^~208~^154.^1^^~9~^~MC~^^^^^^^^^^~04/01/2004~
-~19881~^~268~^645.^0^^~9~^~MC~^^^^^^^^^^~04/01/2004~
-~19881~^~301~^151.^1^^~9~^~MC~^^^^^^^^^^~04/01/2004~
-~19881~^~307~^87.^1^^~9~^~MC~^^^^^^^^^^~04/01/2004~
-~19881~^~318~^345.^1^^~9~^~MC~^^^^^^^^^^~04/01/2004~
-~19881~^~601~^53.^1^^~9~^~MC~^^^^^^^^^^~04/01/2004~
-~19882~^~208~^143.^1^^~9~^~MC~^^^^^^^^^^~04/01/2004~
-~19882~^~268~^600.^0^^~9~^~MC~^^^^^^^^^^~04/01/2004~
-~19882~^~301~^133.^1^^~9~^~MC~^^^^^^^^^^~04/01/2004~
-~19882~^~307~^66.^1^^~9~^~MC~^^^^^^^^^^~04/01/2004~
-~19882~^~318~^291.^1^^~9~^~MC~^^^^^^^^^^~04/01/2004~
-~19882~^~601~^18.^1^^~9~^~MC~^^^^^^^^^^~04/01/2004~
-~19883~^~208~^153.^1^^~9~^~MC~^^^^^^^^^^~04/01/2004~
-~19883~^~268~^641.^0^^~9~^~MC~^^^^^^^^^^~04/01/2004~
-~19883~^~301~^121.^1^^~9~^~MC~^^^^^^^^^^~04/01/2004~
-~19883~^~307~^72.^1^^~9~^~MC~^^^^^^^^^^~04/01/2004~
-~19883~^~318~^262.^1^^~9~^~MC~^^^^^^^^^^~04/01/2004~
-~19883~^~601~^16.^1^^~9~^~MC~^^^^^^^^^^~04/01/2004~
-~19884~^~208~^143.^1^^~9~^~MC~^^^^^^^^^^~04/01/2004~
-~19884~^~268~^600.^0^^~9~^~MC~^^^^^^^^^^~04/01/2004~
-~19884~^~301~^132.^1^^~9~^~MC~^^^^^^^^^^~04/01/2004~
-~19884~^~307~^68.^1^^~9~^~MC~^^^^^^^^^^~04/01/2004~
-~19884~^~318~^292.^1^^~9~^~MC~^^^^^^^^^^~04/01/2004~
-~19884~^~601~^18.^1^^~9~^~MC~^^^^^^^^^^~04/01/2004~
-~19886~^~208~^224.^1^^~9~^~MC~^^^^^^^^^^~04/01/2004~
-~19886~^~268~^938.^0^^~9~^~MC~^^^^^^^^^^~04/01/2004~
-~19886~^~301~^125.^1^^~9~^~MC~^^^^^^^^^^~04/01/2004~
-~19886~^~307~^159.^1^^~9~^~MC~^^^^^^^^^^~04/01/2004~
-~19886~^~318~^259.^1^^~9~^~MC~^^^^^^^^^^~04/01/2004~
-~19886~^~601~^2.^1^^~9~^~MC~^^^^^^^^^^~04/01/2004~
-~19887~^~208~^239.^0^^~4~^~NC~^^^^^^^^^^~07/01/2013~
-~19887~^~268~^1001.^0^^~4~^~NC~^^^^^^^^^^~07/01/2013~
-~19887~^~301~^142.^1^^~9~^~MC~^^^^^^^^^^~04/01/2004~
-~19887~^~307~^191.^1^^~9~^~MC~^^^^^^^^^^~04/01/2004~
-~19887~^~318~^288.^1^^~9~^~MC~^^^^^^^^^^~04/01/2004~
-~19887~^~601~^4.^1^^~9~^~MC~^^^^^^^^^^~04/01/2004~
-~19890~^~208~^242.^0^^~4~^~NC~^^^^^^^^^^~07/01/2013~
-~19890~^~268~^1011.^0^^~4~^~NC~^^^^^^^^^^~07/01/2013~
-~19890~^~301~^289.^1^^~9~^~MC~^^^^^^^^^^~04/01/2004~
-~19890~^~307~^86.^1^^~9~^~MC~^^^^^^^^^^~04/01/2004~
-~19890~^~318~^289.^1^^~9~^~MC~^^^^^^^^^^~04/01/2004~
-~19890~^~601~^8.^1^^~9~^~MC~^^^^^^^^^^~04/01/2004~
-~19891~^~208~^72.^0^^~4~^~NC~^^^^^^^^^^~07/01/2013~
-~19891~^~268~^300.^0^^~4~^~NC~^^^^^^^^^^~07/01/2013~
-~19891~^~301~^137.^1^^~9~^~MC~^^^^^^^^^^~04/01/2004~
-~19891~^~307~^41.^1^^~9~^~MC~^^^^^^^^^^~04/01/2004~
-~19891~^~318~^23.^1^^~9~^~MC~^^^^^^^^^^~04/01/2004~
-~19891~^~601~^3.^1^^~9~^~MC~^^^^^^^^^^~04/01/2004~
-~19892~^~208~^49.^1^^~9~^~MC~^^^^^^^^^^~09/01/2015~
-~19892~^~268~^204.^0^^~9~^~MC~^^^^^^^^^^~09/01/2015~
-~19892~^~301~^23.^1^^~9~^~MC~^^^^^^^^^^~04/01/2004~
-~19892~^~307~^6.^1^^~9~^~MC~^^^^^^^^^^~04/01/2004~
-~19892~^~318~^0.^1^^~9~^~MC~^^^^^^^^^^~04/01/2004~
-~19892~^~601~^0.^1^^~9~^~MC~^^^^^^^^^^~04/01/2004~
-~19893~^~208~^201.^1^^~9~^~MC~^^^^^^^^^^~04/01/2004~
-~19893~^~268~^839.^0^^~9~^~MC~^^^^^^^^^^~04/01/2004~
-~19893~^~301~^158.^1^^~9~^~MC~^^^^^^^^^^~04/01/2004~
-~19893~^~307~^75.^1^^~9~^~MC~^^^^^^^^^^~04/01/2004~
-~19893~^~318~^446.^1^^~9~^~MC~^^^^^^^^^^~04/01/2004~
-~19893~^~601~^41.^1^^~9~^~MC~^^^^^^^^^^~04/01/2004~
-~19894~^~208~^136.^1^^~9~^~MC~^^^^^^^^^^~04/01/2004~
-~19894~^~268~^568.^0^^~9~^~MC~^^^^^^^^^^~04/01/2004~
-~19894~^~301~^126.^1^^~9~^~MC~^^^^^^^^^^~04/01/2004~
-~19894~^~307~^75.^1^^~9~^~MC~^^^^^^^^^^~04/01/2004~
-~19894~^~318~^255.^1^^~9~^~MC~^^^^^^^^^^~04/01/2004~
-~19894~^~601~^7.^1^^~9~^~MC~^^^^^^^^^^~04/01/2004~
-~19895~^~208~^151.^1^^~9~^~MC~^^^^^^^^^^~04/01/2004~
-~19895~^~268~^632.^0^^~9~^~MC~^^^^^^^^^^~04/01/2004~
-~19895~^~301~^121.^1^^~9~^~MC~^^^^^^^^^^~04/01/2004~
-~19895~^~307~^77.^1^^~9~^~MC~^^^^^^^^^^~04/01/2004~
-~19895~^~318~^266.^1^^~9~^~MC~^^^^^^^^^^~04/01/2004~
-~19895~^~601~^16.^1^^~9~^~MC~^^^^^^^^^^~04/01/2004~
-~19896~^~208~^495.^0^^~4~^~NC~^^^^^^^^^^~02/01/2005~
-~19896~^~262~^6.^0^^~4~^~FLC~^^^^^^^^^^~02/01/2005~
-~19896~^~263~^60.^0^^~4~^~FLC~^^^^^^^^^^~02/01/2005~
-~19896~^~268~^2070.^0^^~4~^~NC~^^^^^^^^^^~02/01/2005~
-~19896~^~301~^36.^1^^~8~^~LC~^^^^^^^^^^~02/01/2005~
-~19896~^~304~^60.^0^^~4~^~FLC~^^^^^^^^^^~02/01/2005~
-~19896~^~305~^156.^0^^~4~^~FLC~^^^^^^^^^^~02/01/2005~
-~19896~^~306~^257.^0^^~4~^~FLC~^^^^^^^^^^~02/01/2005~
-~19896~^~307~^321.^1^^~8~^~LC~^^^^^^^^^^~02/01/2005~
-~19896~^~318~^49.^0^^~4~^~FLC~^^^^^^^^^^~02/01/2005~
-~19896~^~319~^14.^0^^~4~^~FLC~^^^^^^^^^^~02/01/2005~
-~19896~^~320~^14.^0^^~4~^~FLC~^^^^^^^^^^~02/01/2005~
-~19896~^~321~^0.^0^^~4~^~FLC~^^^^^^^^^^~02/01/2005~
-~19896~^~322~^0.^0^^~4~^~FLC~^^^^^^^^^^~02/01/2005~
-~19896~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~
-~19896~^~334~^0.^0^^~4~^~FLC~^^^^^^^^^^~02/01/2005~
-~19896~^~337~^0.^0^^~4~^~FLC~^^^^^^^^^^~02/01/2005~
-~19896~^~338~^0.^0^^~4~^~FLC~^^^^^^^^^^~02/01/2005~
-~19896~^~417~^28.^0^^~4~^~FLC~^^^^^^^^^^~02/01/2005~
-~19896~^~431~^0.^0^^~4~^~FLC~^^^^^^^^^^~02/01/2005~
-~19896~^~432~^28.^0^^~4~^~FLC~^^^^^^^^^^~02/01/2005~
-~19896~^~435~^28.^0^^~4~^~NC~^^^^^^^^^^~12/01/2006~
-~19896~^~601~^9.^1^^~8~^~LC~^^^^^^^^^~1~^~02/01/2005~
-~19897~^~208~^573.^0^^~4~^~NC~^^^^^^^^^^~05/01/2009~
-~19897~^~268~^2395.^0^^~4~^~NC~^^^^^^^^^^~05/01/2009~
-~19897~^~301~^840.^1^^~9~^~MC~^^^^^^^^^^~02/01/2006~
-~19897~^~307~^9.^1^^~9~^~MC~^^^^^^^^^^~02/01/2006~
-~19897~^~318~^20.^1^^~9~^~MC~^^^^^^^^^^~02/01/2006~
-~19897~^~320~^0.^0^^~4~^~NC~^^^^^^^^^^~03/01/2009~
-~19897~^~417~^143.^1^^~8~^~LC~^^^^^^^^^^~02/01/2006~
-~19897~^~432~^143.^1^^~8~^~LC~^^^^^^^^^^~12/01/2008~
-~19897~^~601~^0.^1^^~9~^~MC~^^^^^^^^^^~02/01/2006~
-~19898~^~208~^216.^0^^~4~^~NC~^^^^^^^^^^~03/01/2009~
-~19898~^~262~^0.^0^^~4~^~BFZN~^~19095~^^^^^^^^^~05/01/2007~
-~19898~^~263~^0.^0^^~4~^~BFZN~^~19095~^^^^^^^^^~05/01/2007~
-~19898~^~268~^903.^0^^~4~^~NC~^^^^^^^^^^~03/01/2009~
-~19898~^~301~^128.^17^5.^~1~^^^^^^^^^^^~05/01/2007~
-~19898~^~304~^14.^12^0.^~1~^^^^^^^^^^^~05/01/2007~
-~19898~^~305~^105.^12^4.^~1~^^^^^^^^^^^~05/01/2007~
-~19898~^~306~^199.^12^6.^~1~^^^^^^^^^^^~05/01/2007~
-~19898~^~307~^48.^1^^~8~^~LC~^^^^^^^^^^~05/01/2007~
-~19898~^~318~^418.^0^^~4~^~NC~^^^^^^^^^^~03/01/2009~
-~19898~^~319~^116.^0^^~4~^~BFZN~^~19095~^^^^^^^^^~05/01/2007~
-~19898~^~320~^118.^0^^~4~^~NC~^^^^^^^^^^~03/01/2009~
-~19898~^~321~^19.^0^^~4~^~BFZN~^~19095~^^^^^^^^^~05/01/2007~
-~19898~^~322~^0.^0^^~4~^~BFZN~^~19095~^^^^^^^^^~05/01/2007~
-~19898~^~324~^9.^0^^~4~^~BFFN~^~01211~^^^^^^^^^~03/01/2009~
-~19898~^~334~^0.^0^^~4~^~BFZN~^~19095~^^^^^^^^^~05/01/2007~
-~19898~^~337~^0.^0^^~4~^~BFZN~^~19095~^^^^^^^^^~05/01/2007~
-~19898~^~338~^0.^0^^~4~^~BFZN~^~19095~^^^^^^^^^~05/01/2007~
-~19898~^~417~^5.^4^1.^~1~^^^^^^^^^^^~05/01/2007~
-~19898~^~431~^0.^0^^~4~^~BFZN~^~19095~^^^^^^^^^~05/01/2007~
-~19898~^~432~^5.^0^^~4~^~BFZN~^~19095~^^^^^^^^^~05/01/2007~
-~19898~^~435~^5.^0^^~4~^~NC~^^^^^^^^^^~03/01/2009~
-~19898~^~601~^32.^1^^~8~^~LC~^^^^^^^^^^~05/01/2007~
-~19899~^~208~^237.^0^^~4~^~NC~^^^^^^^^^^~03/01/2009~
-~19899~^~262~^3.^1^^~1~^^^^^^^^^^^~05/01/2007~
-~19899~^~263~^62.^1^^~1~^^^^^^^^^^^~05/01/2007~
-~19899~^~268~^990.^0^^~4~^~NC~^^^^^^^^^^~03/01/2009~
-~19899~^~301~^109.^34^2.^~1~^^^^^^^^^^^~05/01/2007~
-~19899~^~304~^29.^36^0.^~1~^^^^^^^^^^^~05/01/2007~
-~19899~^~305~^107.^28^1.^~1~^^^^^^^^^^^~05/01/2007~
-~19899~^~306~^249.^35^4.^~1~^^^^^^^^^^^~05/01/2007~
-~19899~^~307~^76.^36^2.^~1~^^^^^^^^^^^~05/01/2007~
-~19899~^~318~^419.^0^^~4~^~NC~^^^^^^^^^^~03/01/2009~
-~19899~^~319~^116.^0^^~4~^~BFZN~^~19270~^^^^^^^^^~05/01/2007~
-~19899~^~320~^118.^0^^~4~^~NC~^^^^^^^^^^~03/01/2009~
-~19899~^~321~^19.^0^^~4~^~BFZN~^~19270~^^^^^^^^^~05/01/2007~
-~19899~^~322~^0.^0^^~4~^~BFZN~^~19270~^^^^^^^^^~03/01/2009~
-~19899~^~324~^9.^0^^~4~^~BFFN~^~01211~^^^^^^^^^~03/01/2009~
-~19899~^~334~^0.^0^^~4~^~BFZN~^~19270~^^^^^^^^^~03/01/2009~
-~19899~^~337~^0.^0^^~4~^~BFZN~^~19270~^^^^^^^^^~03/01/2009~
-~19899~^~338~^0.^0^^~4~^~BFZN~^~19270~^^^^^^^^^~03/01/2009~
-~19899~^~417~^16.^5^1.^~1~^^^^^^^^^^^~05/01/2007~
-~19899~^~431~^0.^0^^~4~^~BFZN~^~19270~^^^^^^^^^~03/01/2009~
-~19899~^~432~^16.^0^^~4~^~BFZN~^~19270~^^^^^^^^^~05/01/2007~
-~19899~^~435~^16.^0^^~4~^~NC~^^^^^^^^^^~03/01/2009~
-~19899~^~601~^34.^1^^~1~^^^^^^^^^^^~05/01/2007~
-~19902~^~208~^546.^0^^~4~^~NC~^^^^^^^^^^~04/01/2009~
-~19902~^~262~^43.^3^^~1~^~A~^^^1^40.^50.^^^^~2, 3~^~08/01/2008~
-~19902~^~263~^493.^3^^~1~^~A~^^^1^450.^560.^^^^~2, 3~^~08/01/2008~
-~19902~^~268~^2283.^0^^~4~^~NC~^^^^^^^^^^~04/01/2009~
-~19902~^~301~^56.^5^0.^~1~^~A~^^^1^44.^78.^1^49.^61.^~2, 3~^~08/01/2008~
-~19902~^~304~^146.^5^2.^~1~^~A~^^^1^129.^171.^1^122.^170.^~2, 3~^~08/01/2008~
-~19902~^~305~^206.^5^2.^~1~^~A~^^^1^181.^230.^1^182.^229.^~2, 3~^~08/01/2008~
-~19902~^~306~^559.^5^8.^~1~^~A~^^^1^496.^596.^1^455.^662.^~2, 3~^~08/01/2008~
-~19902~^~307~^24.^5^0.^~1~^~A~^^^1^4.^40.^1^20.^27.^~1, 2, 3~^~08/01/2008~
-~19902~^~318~^50.^0^^~1~^~AS~^^^^^^^^^^~08/01/2008~
-~19902~^~320~^2.^0^^~1~^~AS~^^^^^^^^^^~04/01/2009~
-~19902~^~321~^26.^3^^~1~^~A~^^^1^21.^28.^^^^~2, 3~^~08/01/2008~
-~19902~^~322~^7.^3^^~1~^~A~^^^1^6.^8.^^^^~2, 3~^~08/01/2008~
-~19902~^~334~^1.^3^^~1~^~A~^^^1^1.^1.^^^^~2, 3~^~08/01/2008~
-~19902~^~337~^0.^3^^~1~^~A~^^^1^0.^0.^^^^~1, 2, 3~^~04/01/2009~
-~19902~^~338~^31.^3^^~1~^~A~^^^1^25.^34.^^^^~2, 3~^~08/01/2008~
-~19902~^~601~^8.^3^^~1~^~A~^^^1^2.^11.^^^^~2, 3~^~04/01/2009~
-~19902~^~638~^25.^3^^~1~^~A~^^^1^24.^28.^^^^~2, 3~^~04/01/2009~
-~19902~^~639~^11.^3^^~1~^~A~^^^1^8.^12.^^^^~2, 3~^~04/01/2009~
-~19902~^~641~^66.^3^^~1~^~A~^^^1^62.^75.^^^^~2, 3~^~04/01/2009~
-~19903~^~208~^579.^0^^~4~^~NC~^^^^^^^^^^~04/01/2009~
-~19903~^~262~^86.^3^^~1~^~A~^^^1^70.^100.^^^^~2, 3~^~08/01/2008~
-~19903~^~263~^632.^3^^~1~^~A~^^^1^540.^700.^^^^~2, 3~^~08/01/2008~
-~19903~^~268~^2422.^0^^~4~^~NC~^^^^^^^^^^~04/01/2009~
-~19903~^~301~^62.^6^0.^~1~^~A~^^^1^54.^80.^3^60.^62.^~2, 3~^~08/01/2008~
-~19903~^~304~^176.^6^0.^~1~^~A~^^^1^156.^190.^3^173.^177.^~2, 3~^~08/01/2008~
-~19903~^~305~^260.^6^1.^~1~^~A~^^^1^227.^282.^3^256.^264.^~2, 3~^~08/01/2008~
-~19903~^~306~^567.^6^3.^~1~^~A~^^^1^483.^625.^3^554.^578.^~2, 3~^~08/01/2008~
-~19903~^~307~^10.^6^0.^~1~^~A~^^^1^4.^15.^3^9.^11.^~1, 2, 3~^~08/01/2008~
-~19903~^~318~^50.^0^^~1~^~AS~^^^^^^^^^^~08/01/2008~
-~19903~^~320~^3.^0^^~1~^~AS~^^^^^^^^^^~04/01/2009~
-~19903~^~321~^25.^3^^~1~^~A~^^^1^22.^26.^^^^~2, 3~^~08/01/2008~
-~19903~^~322~^9.^3^^~1~^~A~^^^1^7.^10.^^^^~2, 3~^~08/01/2008~
-~19903~^~334~^1.^3^^~1~^~A~^^^1^1.^1.^^^^~2, 3~^~08/01/2008~
-~19903~^~337~^0.^3^^~1~^~A~^^^1^0.^0.^^^^~1, 2, 3~^~04/01/2009~
-~19903~^~338~^32.^3^^~1~^~A~^^^1^24.^38.^^^^~2, 3~^~08/01/2008~
-~19903~^~601~^6.^3^^~1~^~A~^^^1^4.^7.^^^^~2, 3~^~04/01/2009~
-~19903~^~638~^29.^3^^~1~^~A~^^^1^27.^30.^^^^~2, 3~^~04/01/2009~
-~19903~^~639~^12.^3^^~1~^~A~^^^1^10.^13.^^^^~2, 3~^~04/01/2009~
-~19903~^~641~^75.^3^^~1~^~A~^^^1^69.^77.^^^^~2, 3~^~04/01/2009~
-~19904~^~208~^598.^0^^~4~^~NC~^^^^^^^^^^~04/01/2009~
-~19904~^~262~^80.^2^^~1~^~A~^^^1^80.^80.^^^^^~08/01/2008~
-~19904~^~263~^802.^2^^~1~^~A~^^^1^710.^940.^^^^^~08/01/2008~
-~19904~^~268~^2504.^0^^~4~^~NC~^^^^^^^^^^~04/01/2009~
-~19904~^~301~^73.^2^^~1~^~A~^^^1^64.^87.^^^^^~08/01/2008~
-~19904~^~304~^228.^2^^~1~^~A~^^^1^195.^277.^^^^^~08/01/2008~
-~19904~^~305~^308.^2^^~1~^~A~^^^1^271.^364.^^^^^~08/01/2008~
-~19904~^~306~^715.^2^^~1~^~A~^^^1^623.^854.^^^^^~08/01/2008~
-~19904~^~307~^20.^2^^~1~^~A~^^^1^14.^25.^^^^^~08/01/2008~
-~19904~^~318~^39.^0^^~1~^~AS~^^^^^^^^^^~08/01/2008~
-~19904~^~320~^2.^0^^~1~^~AS~^^^^^^^^^^~04/01/2009~
-~19904~^~321~^19.^2^^~1~^~A~^^^1^17.^22.^^^^^~08/01/2008~
-~19904~^~322~^7.^2^^~1~^~A~^^^1^6.^9.^^^^^~08/01/2008~
-~19904~^~334~^1.^2^^~1~^~A~^^^1^1.^2.^^^^^~08/01/2008~
-~19904~^~337~^0.^2^^~1~^~A~^^^1^0.^0.^^^^~1~^~04/01/2009~
-~19904~^~338~^27.^2^^~1~^~A~^^^1^23.^33.^^^^^~08/01/2008~
-~19904~^~601~^3.^2^^~1~^~A~^^^1^2.^3.^^^^^~04/01/2009~
-~19904~^~638~^31.^2^^~1~^~A~^^^1^29.^34.^^^^^~04/01/2009~
-~19904~^~639~^12.^2^^~1~^~A~^^^1^11.^12.^^^^^~04/01/2009~
-~19904~^~641~^86.^2^^~1~^~A~^^^1^80.^95.^^^^^~04/01/2009~
-~19905~^~208~^550.^0^^~4~^~NC~^^^^^^^^^^~04/01/2009~
-~19905~^~262~^47.^8^^~1~^~A~^^^1^40.^100.^^^^~2, 3~^~08/01/2008~
-~19905~^~263~^515.^8^^~1~^~A~^^^1^450.^940.^^^^~2, 3~^~08/01/2008~
-~19905~^~268~^2301.^0^^~4~^~NC~^^^^^^^^^^~04/01/2009~
-~19905~^~301~^57.^13^0.^~1~^~A~^^^1^44.^87.^1^51.^62.^~2, 3~^~08/01/2008~
-~19905~^~304~^152.^13^1.^~1~^~A~^^^1^129.^277.^1^130.^173.^~2, 3~^~08/01/2008~
-~19905~^~305~^214.^13^1.^~1~^~A~^^^1^181.^364.^1^192.^235.^~2, 3~^~08/01/2008~
-~19905~^~306~^568.^13^7.^~1~^~A~^^^1^483.^854.^1^474.^660.^~2, 3~^~08/01/2008~
-~19905~^~307~^23.^13^0.^~1~^~A~^^^1^4.^40.^1^20.^26.^~1, 2, 3~^~08/01/2008~
-~19905~^~318~^49.^0^^~1~^~AS~^^^^^^^^^^~04/01/2009~
-~19905~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~
-~19905~^~320~^2.^0^^~1~^~AS~^^^^^^^^^^~04/01/2009~
-~19905~^~321~^25.^8^^~1~^~A~^^^1^17.^28.^^^^~2, 3~^~08/01/2008~
-~19905~^~322~^7.^8^^~1~^~A~^^^1^6.^10.^^^^~2, 3~^~08/01/2008~
-~19905~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2009~
-~19905~^~334~^1.^8^^~1~^~A~^^^1^1.^2.^^^^~2, 3~^~08/01/2008~
-~19905~^~337~^0.^8^^~1~^~A~^^^1^0.^0.^^^^~1, 2, 3~^~04/01/2009~
-~19905~^~338~^31.^8^^~1~^~A~^^^1^23.^38.^^^^~2, 3~^~08/01/2008~
-~19905~^~417~^0.^0^^~7~^~Z~^^^^^^^^^^~08/01/2008~
-~19905~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~
-~19905~^~432~^0.^0^^~7~^~Z~^^^^^^^^^^~08/01/2008~
-~19905~^~435~^0.^0^^~4~^~NC~^^^^^^^^^^~04/01/2009~
-~19905~^~601~^7.^8^^~1~^~A~^^^1^2.^11.^^^^~2, 3~^~04/01/2009~
-~19905~^~638~^26.^8^^~1~^~A~^^^1^24.^34.^^^^~2, 3~^~04/01/2009~
-~19905~^~639~^11.^8^^~1~^~A~^^^1^8.^13.^^^^~2, 3~^~04/01/2009~
-~19905~^~641~^67.^8^^~1~^~A~^^^1^62.^95.^^^^~2, 3~^~04/01/2009~
-~19906~^~208~^388.^0^^~4~^~NC~^^^^^^^^^^~03/01/2009~
-~19906~^~268~^1625.^0^^~4~^~NC~^^^^^^^^^^~03/01/2009~
-~19906~^~301~^63.^4^2.^~1~^~A~^^^1^58.^69.^3^55.^70.^~2, 3~^~03/01/2009~
-~19906~^~304~^10.^4^0.^~1~^~A~^^^1^9.^11.^3^8.^11.^~2, 3~^~03/01/2009~
-~19906~^~305~^2.^4^0.^~1~^~A~^^^1^2.^3.^3^1.^2.^~2, 3~^~03/01/2009~
-~19906~^~306~^130.^4^4.^~1~^~A~^^^1^123.^142.^3^116.^143.^~2, 3~^~03/01/2009~
-~19906~^~307~^11.^4^0.^~1~^~A~^^^1^9.^13.^3^7.^13.^~2, 3~^~03/01/2009~
-~19907~^~208~^398.^0^^~4~^~NC~^^^^^^^^^^~03/01/2009~
-~19907~^~268~^1666.^0^^~4~^~NC~^^^^^^^^^^~03/01/2009~
-~19907~^~301~^1.^4^0.^~1~^~A~^^^1^1.^1.^3^0.^1.^~2, 3~^~03/01/2009~
-~19907~^~304~^0.^4^0.^~1~^~A~^^^1^0.^0.^3^0.^0.^~1, 2, 3~^~03/01/2009~
-~19907~^~305~^0.^4^0.^~1~^~A~^^^1^0.^0.^3^0.^0.^~1, 2, 3~^~03/01/2009~
-~19907~^~306~^2.^4^0.^~1~^~A~^^^1^1.^3.^3^0.^3.^~1, 2, 3~^~03/01/2009~
-~19907~^~307~^2.^4^0.^~1~^~A~^^^1^1.^2.^3^1.^2.^~1, 2, 3~^~03/01/2009~
-~19908~^~208~^399.^0^^~4~^~NC~^^^^^^^^^^~03/01/2009~
-~19908~^~268~^1670.^0^^~4~^~NC~^^^^^^^^^^~03/01/2009~
-~19908~^~301~^12.^6^4.^~1~^~A~^^^1^4.^25.^5^1.^22.^~2, 3~^~03/01/2009~
-~19908~^~304~^2.^6^0.^~1~^~A~^^^1^1.^5.^5^1.^3.^~2, 3~^~03/01/2009~
-~19908~^~305~^1.^6^0.^~1~^~A~^^^1^1.^1.^5^0.^1.^~2, 3~^~03/01/2009~
-~19908~^~306~^29.^6^11.^~1~^~A~^^^1^10.^81.^5^0.^58.^~2, 3~^~03/01/2009~
-~19908~^~307~^3.^6^0.^~1~^~A~^^^1^1.^6.^5^1.^5.^~1, 2, 3~^~03/01/2009~
-~19909~^~208~^347.^0^^~4~^~NC~^^^^^^^^^^~03/01/2009~
-~19909~^~268~^1453.^0^^~4~^~NC~^^^^^^^^^^~03/01/2009~
-~19909~^~301~^879.^3^20.^~1~^~A~^^^1^838.^905.^2^789.^969.^~2, 3~^~03/01/2009~
-~19909~^~304~^6.^3^0.^~1~^~A~^^^1^6.^7.^2^5.^7.^~2, 3~^~03/01/2009~
-~19909~^~305~^8.^3^0.^~1~^~A~^^^1^7.^9.^2^6.^9.^~2, 3~^~03/01/2009~
-~19909~^~306~^39.^3^2.^~1~^~A~^^^1^36.^43.^2^30.^47.^~2, 3~^~03/01/2009~
-~19909~^~307~^572.^3^30.^~1~^~A~^^^1^513.^610.^2^443.^701.^~2, 3~^~03/01/2009~
-~19910~^~208~^542.^0^^~4~^~NC~^^^^^^^^^^~05/01/2009~
-~19910~^~262~^0.^1^^~9~^~MC~^^^^^^^^^^~05/01/2009~
-~19910~^~263~^48.^0^^~4~^~FLC~^^^^^^^^^^~05/01/2009~
-~19910~^~268~^2269.^0^^~4~^~NC~^^^^^^^^^^~05/01/2009~
-~19910~^~301~^70.^1^^~9~^~MC~^^^^^^^^^^~05/01/2009~
-~19910~^~304~^49.^1^^~9~^~MC~^^^^^^^^^^~05/01/2009~
-~19910~^~305~^144.^1^^~9~^~MC~^^^^^^^^^^~05/01/2009~
-~19910~^~306~^295.^1^^~9~^~MC~^^^^^^^^^^~05/01/2009~
-~19910~^~307~^264.^1^^~9~^~MC~^^^^^^^^^^~05/01/2009~
-~19910~^~318~^58.^1^^~9~^~MC~^^^^^^^^^^~05/01/2009~
-~19910~^~319~^15.^0^^~4~^~NR~^^^^^^^^^^~05/01/2009~
-~19910~^~320~^15.^0^^~4~^~NC~^^^^^^^^^^~05/01/2009~
-~19910~^~321~^4.^0^^~4~^~NR~^^^^^^^^^^~05/01/2009~
-~19910~^~322~^0.^0^^~4~^~FLC~^^^^^^^^^^~05/01/2009~
-~19910~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2009~
-~19910~^~334~^0.^0^^~4~^~FLC~^^^^^^^^^^~05/01/2009~
-~19910~^~337~^0.^0^^~4~^~FLC~^^^^^^^^^^~05/01/2009~
-~19910~^~338~^45.^0^^~4~^~FLC~^^^^^^^^^^~05/01/2009~
-~19910~^~417~^40.^1^^~9~^~MC~^^^^^^^^^^~05/01/2009~
-~19910~^~431~^40.^1^^~9~^~MC~^^^^^^^^^^~05/01/2009~
-~19910~^~432~^0.^1^^~1~^~AS~^^^^^^^^^^~05/01/2009~
-~19910~^~435~^68.^0^^~4~^~NC~^^^^^^^^^^~05/01/2009~
-~19910~^~601~^5.^0^^~4~^~FLC~^^^^^^^^^^~05/01/2009~
-~19911~^~208~^270.^0^^~4~^~NC~^^^^^^^^^^~07/01/2011~
-~19911~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~07/01/2011~
-~19911~^~268~^1128.^0^^~4~^~NC~^^^^^^^^^^~07/01/2011~
-~19911~^~301~^109.^600^2.^~1~^~A~^^^^^^^^^^~02/01/2011~
-~19911~^~304~^21.^600^2.^~1~^~A~^^^^^^^^^^~02/01/2011~
-~19911~^~306~^225.^90^8.^~1~^~A~^^^^^^^^^^~02/01/2011~
-~19911~^~307~^9.^13^3.^~1~^~A~^^^^^^^^^^~07/01/2011~
-~19911~^~318~^0.^0^^~7~^~Z~^^^^^^^^^^~07/01/2011~
-~19911~^~320~^0.^0^^~4~^~T~^^^^^^^^^^~10/01/2001~
-~19911~^~601~^0.^0^^~7~^~Z~^^^^^^^^^^~07/01/2011~
-~19912~^~208~^310.^0^^~4~^~NC~^^^^^^^^^^~05/01/2011~
-~19912~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2011~
-~19912~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2011~
-~19912~^~268~^1297.^0^^~4~^~NC~^^^^^^^^^^~05/01/2011~
-~19912~^~301~^1.^2^^~1~^~A~^^^1^1.^1.^1^^^^~05/01/2011~
-~19912~^~304~^1.^3^0.^~1~^~A~^^^1^0.^2.^2^0.^3.^~1, 2, 3~^~05/01/2011~
-~19912~^~305~^1.^3^0.^~1~^~A~^^^1^0.^1.^2^0.^2.^~1, 2, 3~^~05/01/2011~
-~19912~^~306~^4.^3^1.^~1~^~A~^^^1^2.^6.^2^-1.^9.^~1, 2, 3~^~05/01/2011~
-~19912~^~307~^4.^3^1.^~1~^~A~^^^1^2.^7.^2^-1.^9.^~1, 2, 3~^~05/01/2011~
-~19912~^~318~^156.^0^^~4~^~NC~^^^^^^^^^^~05/01/2013~
-~19912~^~319~^0.^0^^~4~^~BFSN~^~35192~^^^^^^^^^~05/01/2013~
-~19912~^~320~^8.^0^^~4~^~NC~^~35192~^^^^^^^^^~05/01/2013~
-~19912~^~321~^94.^0^^~4~^~BFSN~^~35192~^^^^^^^^^~05/01/2013~
-~19912~^~322~^0.^0^^~4~^~BFSN~^~35192~^^^^^^^^^~05/01/2013~
-~19912~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2013~
-~19912~^~334~^0.^0^^~4~^~BFSN~^~35192~^^^^^^^^^~05/01/2013~
-~19912~^~337~^0.^0^^~4~^~BFSN~^~35192~^^^^^^^^^~05/01/2013~
-~19912~^~338~^0.^0^^~4~^~BFSN~^~19355~^^^^^^^^^~05/01/2013~
-~19912~^~417~^30.^0^^~4~^~BFSN~^~35192~^^^^^^^^^~05/01/2013~
-~19912~^~431~^0.^0^^~4~^~BFSN~^~35192~^^^^^^^^^~05/01/2013~
-~19912~^~432~^30.^0^^~4~^~BFSN~^~35192~^^^^^^^^^~05/01/2013~
-~19912~^~435~^30.^0^^~4~^~NC~^~35192~^^^^^^^^^~05/01/2013~
-~19912~^~601~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2011~
-~19913~^~208~^465.^0^^~4~^~NC~^^^^^^^^^^~02/01/2013~
-~19913~^~262~^5.^0^^~4~^~FLC~^^^^^^^^^^~02/01/2013~
-~19913~^~263~^185.^0^^~4~^~FLC~^^^^^^^^^^~02/01/2013~
-~19913~^~268~^1947.^0^^~4~^~NC~^^^^^^^^^^~03/01/2013~
-~19913~^~301~^33.^0^^~9~^~MC~^^^^^^^^^^~02/01/2013~
-~19913~^~304~^89.^0^^~4~^~FLC~^^^^^^^^^^~02/01/2013~
-~19913~^~305~^153.^0^^~4~^~FLC~^^^^^^^^^^~02/01/2013~
-~19913~^~306~^429.^0^^~4~^~FLC~^^^^^^^^^^~02/01/2013~
-~19913~^~307~^13.^0^^~4~^~FLC~^^^^^^^^^^~02/01/2013~
-~19913~^~318~^1.^0^^~4~^~NC~^^^^^^^^^^~03/01/2013~
-~19913~^~319~^0.^0^^~4~^~FLC~^^^^^^^^^^~02/01/2013~
-~19913~^~320~^0.^0^^~4~^~NC~^^^^^^^^^^~02/01/2013~
-~19913~^~321~^1.^0^^~4~^~FLC~^^^^^^^^^^~02/01/2013~
-~19913~^~322~^0.^0^^~4~^~FLC~^^^^^^^^^^~02/01/2013~
-~19913~^~324~^0.^0^^~4~^~FLC~^^^^^^^^^^~02/01/2013~
-~19913~^~334~^0.^0^^~4~^~FLC~^^^^^^^^^^~02/01/2013~
-~19913~^~337~^0.^0^^~4~^~FLC~^^^^^^^^^^~02/01/2013~
-~19913~^~338~^28.^0^^~4~^~FLC~^^^^^^^^^^~02/01/2013~
-~19913~^~417~^25.^0^^~4~^~FLC~^^^^^^^^^^~02/01/2013~
-~19913~^~431~^0.^0^^~4~^~FLC~^^^^^^^^^^~02/01/2013~
-~19913~^~432~^25.^0^^~4~^~FLC~^^^^^^^^^^~03/01/2013~
-~19913~^~435~^25.^0^^~4~^~NC~^^^^^^^^^^~03/01/2013~
-~19913~^~601~^0.^0^^~9~^~MC~^^^^^^^^^^~03/01/2013~
-~19913~^~636~^11.^0^^~4~^~FLC~^^^^^^^^^^~02/01/2013~
-~19914~^~208~^538.^0^^~4~^~NC~^^^^^^^^^^~03/01/2013~
-~19914~^~262~^16.^0^^~4~^~FLC~^^^^^^^^^^~03/01/2013~
-~19914~^~263~^163.^0^^~4~^~FLC~^^^^^^^^^^~03/01/2013~
-~19914~^~268~^2250.^0^^~4~^~NC~^^^^^^^^^^~03/01/2013~
-~19914~^~301~^150.^0^^~4~^~FLC~^^^^^^^^^^~03/01/2013~
-~19914~^~304~^50.^0^^~4~^~FLC~^^^^^^^^^^~03/01/2013~
-~19914~^~305~^165.^0^^~4~^~FLC~^^^^^^^^^^~03/01/2013~
-~19914~^~306~^296.^0^^~4~^~FLC~^^^^^^^^^^~03/01/2013~
-~19914~^~307~^63.^0^^~4~^~FLC~^^^^^^^^^^~03/01/2013~
-~19914~^~318~^155.^0^^~4~^~NC~^^^^^^^^^^~03/01/2013~
-~19914~^~319~^46.^0^^~4~^~FLC~^^^^^^^^^^~03/01/2013~
-~19914~^~320~^46.^0^^~4~^~NC~^^^^^^^^^^~03/01/2013~
-~19914~^~321~^0.^0^^~4~^~FLC~^^^^^^^^^^~03/01/2013~
-~19914~^~322~^0.^0^^~4~^~FLC~^^^^^^^^^^~03/01/2013~
-~19914~^~324~^0.^0^^~4~^~FLC~^^^^^^^^^^~03/01/2013~
-~19914~^~334~^0.^0^^~4~^~FLC~^^^^^^^^^^~03/01/2013~
-~19914~^~337~^0.^0^^~4~^~FLC~^^^^^^^^^^~03/01/2013~
-~19914~^~338~^5.^0^^~4~^~FLC~^^^^^^^^^^~03/01/2013~
-~19914~^~417~^9.^0^^~4~^~FLC~^^^^^^^^^^~03/01/2013~
-~19914~^~431~^0.^0^^~4~^~FLC~^^^^^^^^^^~03/01/2013~
-~19914~^~432~^9.^0^^~4~^~FLC~^^^^^^^^^^~03/01/2013~
-~19914~^~435~^9.^0^^~4~^~NC~^^^^^^^^^^~03/01/2013~
-~19914~^~601~^18.^0^^~4~^~FLC~^^^^^^^^^^~03/01/2013~
-~19916~^~208~^43.^0^^~9~^~MC~^^^^^^^^^^~04/01/2013~
-~19916~^~262~^12.^0^^~4~^~FLC~^^^^^^^^^^~02/01/2013~
-~19916~^~263~^407.^0^^~4~^~FLC~^^^^^^^^^^~02/01/2013~
-~19916~^~268~^179.^0^^~9~^~MC~^^^^^^^^^^~04/01/2013~
-~19916~^~301~^0.^0^^~9~^~MC~^^^^^^^^^^~02/01/2013~
-~19916~^~304~^74.^0^^~4~^~FLC~^^^^^^^^^^~02/01/2013~
-~19916~^~305~^113.^0^^~4~^~FLC~^^^^^^^^^^~02/01/2013~
-~19916~^~306~^388.^0^^~4~^~FLC~^^^^^^^^^^~02/01/2013~
-~19916~^~307~^343.^0^^~9~^~MC~^^^^^^^^^^~02/01/2013~
-~19916~^~318~^0.^0^^~9~^~MC~^^^^^^^^^^~02/01/2013~
-~19916~^~319~^0.^0^^~4~^~FLC~^^^^^^^^^^~02/01/2013~
-~19916~^~320~^0.^0^^~4~^~NC~^^^^^^^^^^~02/01/2013~
-~19916~^~321~^0.^0^^~4~^~FLC~^^^^^^^^^^~02/01/2013~
-~19916~^~322~^0.^0^^~4~^~FLC~^^^^^^^^^^~02/01/2013~
-~19916~^~324~^0.^0^^~4~^~FLC~^^^^^^^^^^~02/01/2013~
-~19916~^~334~^0.^0^^~4~^~FLC~^^^^^^^^^^~02/01/2013~
-~19916~^~337~^0.^0^^~4~^~FLC~^^^^^^^^^^~02/01/2013~
-~19916~^~338~^6.^0^^~4~^~FLC~^^^^^^^^^^~02/01/2013~
-~19916~^~417~^5.^0^^~4~^~FLC~^^^^^^^^^^~02/01/2013~
-~19916~^~431~^0.^0^^~4~^~FLC~^^^^^^^^^^~02/01/2013~
-~19916~^~432~^5.^0^^~4~^~FLC~^^^^^^^^^^~02/01/2013~
-~19916~^~435~^5.^0^^~4~^~NC~^^^^^^^^^^~02/01/2013~
-~19916~^~601~^0.^0^^~4~^~FLC~^^^^^^^^^^~02/01/2013~
-~19916~^~636~^0.^0^^~4~^~FLC~^^^^^^^^^^~02/01/2013~
-~19917~^~208~^447.^0^^~4~^~NC~^^^^^^^^^^~02/01/2013~
-~19917~^~262~^11.^0^^~4~^~FLC~^^^^^^^^^^~02/01/2013~
-~19917~^~263~^126.^0^^~4~^~FLC~^^^^^^^^^^~02/01/2013~
-~19917~^~268~^1869.^0^^~4~^~NC~^^^^^^^^^^~03/01/2013~
-~19917~^~301~^50.^0^^~9~^~MC~^^^^^^^^^^~03/01/2013~
-~19917~^~304~^39.^0^^~4~^~FLC~^^^^^^^^^^~02/01/2013~
-~19917~^~305~^135.^0^^~4~^~FLC~^^^^^^^^^^~02/01/2013~
-~19917~^~306~^253.^0^^~4~^~FLC~^^^^^^^^^^~02/01/2013~
-~19917~^~307~^475.^0^^~4~^~FLC~^^^^^^^^^^~02/01/2013~
-~19917~^~318~^116.^0^^~4~^~NC~^^^^^^^^^^~02/01/2013~
-~19917~^~319~^34.^0^^~4~^~FLC~^^^^^^^^^^~02/01/2013~
-~19917~^~320~^34.^0^^~4~^~NC~^^^^^^^^^^~02/01/2013~
-~19917~^~321~^3.^0^^~4~^~FLC~^^^^^^^^^^~02/01/2013~
-~19917~^~322~^0.^0^^~4~^~FLC~^^^^^^^^^^~02/01/2013~
-~19917~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~05/01/2013~
-~19917~^~334~^0.^0^^~4~^~FLC~^^^^^^^^^^~02/01/2013~
-~19917~^~337~^0.^0^^~4~^~FLC~^^^^^^^^^^~02/01/2013~
-~19917~^~338~^4.^0^^~4~^~FLC~^^^^^^^^^^~02/01/2013~
-~19917~^~417~^15.^0^^~4~^~FLC~^^^^^^^^^^~02/01/2013~
-~19917~^~431~^6.^0^^~4~^~FLC~^^^^^^^^^^~02/01/2013~
-~19917~^~432~^9.^0^^~4~^~FLC~^^^^^^^^^^~02/01/2013~
-~19917~^~435~^19.^0^^~4~^~NC~^^^^^^^^^^~02/01/2013~
-~19917~^~601~^13.^0^^~4~^~FLC~^^^^^^^^^^~02/01/2013~
-~19918~^~208~^0.^0^^~4~^~NC~^^^^^^^^^^~06/01/2013~
-~19918~^~262~^0.^0^^~4~^~NR~^^^^^^^^^^~06/01/2013~
-~19918~^~263~^0.^0^^~4~^~NR~^^^^^^^^^^~06/01/2013~
-~19918~^~268~^0.^0^^~4~^~NC~^^^^^^^^^^~06/01/2013~
-~19918~^~301~^0.^0^^~4~^~NR~^^^^^^^^^^~06/01/2013~
-~19918~^~304~^0.^0^^~4~^~NR~^^^^^^^^^^~06/01/2013~
-~19918~^~305~^0.^0^^~4~^~NR~^^^^^^^^^^~06/01/2013~
-~19918~^~306~^0.^0^^~4~^~NR~^^^^^^^^^^~06/01/2013~
-~19918~^~307~^0.^0^^~4~^~NR~^^^^^^^^^^~06/01/2013~
-~19918~^~318~^0.^0^^~4~^~NR~^^^^^^^^^^~06/01/2013~
-~19918~^~319~^0.^0^^~4~^~NR~^^^^^^^^^^~06/01/2013~
-~19918~^~320~^0.^0^^~4~^~NC~^^^^^^^^^^~06/01/2013~
-~19918~^~321~^0.^0^^~4~^~NR~^^^^^^^^^^~06/01/2013~
-~19918~^~322~^0.^0^^~4~^~NR~^^^^^^^^^^~06/01/2013~
-~19918~^~324~^0.^0^^~4~^~NR~^^^^^^^^^^~06/01/2013~
-~19918~^~334~^0.^0^^~4~^~NR~^^^^^^^^^^~06/01/2013~
-~19918~^~337~^0.^0^^~4~^~NR~^^^^^^^^^^~06/01/2013~
-~19918~^~338~^0.^0^^~4~^~NR~^^^^^^^^^^~06/01/2013~
-~19918~^~417~^0.^0^^~4~^~NR~^^^^^^^^^^~06/01/2013~
-~19918~^~431~^0.^0^^~4~^~NR~^^^^^^^^^^~06/01/2013~
-~19918~^~432~^0.^0^^~4~^~NR~^^^^^^^^^^~06/01/2013~
-~19918~^~435~^0.^0^^~4~^~NC~^^^^^^^^^^~06/01/2013~
-~19918~^~601~^0.^0^^~4~^~NR~^^^^^^^^^^~06/01/2013~
-~19919~^~208~^352.^0^^~4~^~NC~^^^^^^^^^^~07/01/2013~
-~19919~^~262~^0.^0^^~4~^~NR~^^^^^^^^^^~07/01/2013~
-~19919~^~263~^0.^0^^~4~^~NR~^^^^^^^^^^~07/01/2013~
-~19919~^~268~^1474.^0^^~4~^~NC~^^^^^^^^^^~07/01/2013~
-~19919~^~301~^0.^0^^~8~^~LC~^^^^^^^^^^~07/01/2013~
-~19919~^~304~^1.^0^^~4~^~FLC~^^^^^^^^^^~07/01/2013~
-~19919~^~305~^3.^0^^~4~^~FLC~^^^^^^^^^^~07/01/2013~
-~19919~^~306~^8.^0^^~4~^~FLC~^^^^^^^^^^~07/01/2013~
-~19919~^~307~^23.^0^^~8~^~LC~^^^^^^^^^^~07/01/2013~
-~19919~^~318~^3.^0^^~4~^~NC~^^^^^^^^^^~07/01/2013~
-~19919~^~319~^0.^0^^~4~^~FLC~^^^^^^^^^^~07/01/2013~
-~19919~^~320~^0.^0^^~4~^~NC~^^^^^^^^^^~07/01/2013~
-~19919~^~321~^1.^0^^~4~^~FLC~^^^^^^^^^^~07/01/2013~
-~19919~^~322~^0.^0^^~4~^~FLC~^^^^^^^^^^~07/01/2013~
-~19919~^~324~^0.^0^^~4~^~FLC~^^^^^^^^^^~07/01/2013~
-~19919~^~334~^3.^0^^~4~^~FLC~^^^^^^^^^^~07/01/2013~
-~19919~^~337~^0.^0^^~4~^~FLC~^^^^^^^^^^~07/01/2013~
-~19919~^~338~^3.^0^^~4~^~FLC~^^^^^^^^^^~07/01/2013~
-~19919~^~417~^1.^0^^~4~^~FLC~^^^^^^^^^^~07/01/2013~
-~19919~^~431~^0.^0^^~4~^~FLC~^^^^^^^^^^~07/01/2013~
-~19919~^~432~^1.^0^^~4~^~FLC~^^^^^^^^^^~07/01/2013~
-~19919~^~435~^1.^0^^~4~^~NC~^^^^^^^^^^~07/01/2013~
-~19919~^~601~^0.^0^^~4~^~FLC~^^^^^^^^^^~07/01/2013~
-~19920~^~208~^212.^0^^~4~^~NC~^^^^^^^^^^~03/01/2015~
-~19920~^~262~^0.^0^^~4~^~FLC~^^^^^^^^^^~03/01/2015~
-~19920~^~263~^0.^0^^~4~^~FLC~^^^^^^^^^^~03/01/2015~
-~19920~^~268~^886.^0^^~4~^~NC~^^^^^^^^^^~08/01/2015~
-~19920~^~301~^11.^0^^~4~^~FLC~^^^^^^^^^^~03/01/2015~
-~19920~^~304~^5.^0^^~4~^~FLC~^^^^^^^^^^~03/01/2015~
-~19920~^~305~^6.^0^^~4~^~FLC~^^^^^^^^^^~03/01/2015~
-~19920~^~306~^65.^0^^~4~^~FLC~^^^^^^^^^^~03/01/2015~
-~19920~^~307~^0.^0^^~8~^~LC~^^^^^^^^^^~08/01/2015~
-~19920~^~318~^20.^0^^~4~^~NC~^^^^^^^^^^~03/01/2015~
-~19920~^~319~^0.^0^^~4~^~FLC~^^^^^^^^^^~03/01/2015~
-~19920~^~320~^1.^0^^~4~^~NC~^^^^^^^^^^~03/01/2015~
-~19920~^~321~^12.^0^^~4~^~FLC~^^^^^^^^^^~03/01/2015~
-~19920~^~322~^0.^0^^~4~^~FLC~^^^^^^^^^^~03/01/2015~
-~19920~^~324~^0.^0^^~4~^~FLC~^^^^^^^^^^~03/01/2015~
-~19920~^~334~^0.^0^^~4~^~FLC~^^^^^^^^^^~03/01/2015~
-~19920~^~337~^0.^0^^~4~^~FLC~^^^^^^^^^^~03/01/2015~
-~19920~^~338~^12.^0^^~4~^~FLC~^^^^^^^^^^~03/01/2015~
-~19920~^~417~^7.^0^^~4~^~FLC~^^^^^^^^^^~03/01/2015~
-~19920~^~431~^0.^0^^~4~^~FLC~^^^^^^^^^^~03/01/2015~
-~19920~^~432~^7.^0^^~4~^~FLC~^^^^^^^^^^~03/01/2015~
-~19920~^~435~^7.^0^^~4~^~NC~^^^^^^^^^^~03/01/2015~
-~19920~^~601~^0.^0^^~4~^~FLC~^^^^^^^^^^~03/01/2015~
-~19921~^~208~^331.^0^^~4~^~NC~^^^^^^^^^^~01/01/2017~
-~19921~^~262~^0.^0^^~4~^~FLC~^^^^^^^^^^~03/01/2015~
-~19921~^~263~^0.^0^^~4~^~FLC~^^^^^^^^^^~03/01/2015~
-~19921~^~268~^1385.^0^^~4~^~NC~^^^^^^^^^^~01/01/2017~
-~19921~^~301~^0.^0^^~8~^~LC~^^^^^^^^^^~08/01/2015~
-~19921~^~304~^45.^0^^~4~^~FLC~^^^^^^^^^^~03/01/2015~
-~19921~^~305~^56.^0^^~4~^~FLC~^^^^^^^^^^~03/01/2015~
-~19921~^~306~^309.^0^^~4~^~FLC~^^^^^^^^^^~03/01/2015~
-~19921~^~307~^1643.^0^^~8~^~LC~^^^^^^^^^^~08/01/2015~
-~19921~^~318~^15.^0^^~4~^~NC~^^^^^^^^^^~03/01/2015~
-~19921~^~319~^0.^0^^~4~^~FLC~^^^^^^^^^^~03/01/2015~
-~19921~^~320~^1.^0^^~4~^~NC~^^^^^^^^^^~03/01/2015~
-~19921~^~321~^9.^0^^~4~^~FLC~^^^^^^^^^^~03/01/2015~
-~19921~^~322~^0.^0^^~4~^~FLC~^^^^^^^^^^~03/01/2015~
-~19921~^~324~^0.^0^^~4~^~FLC~^^^^^^^^^^~03/01/2015~
-~19921~^~334~^0.^0^^~4~^~FLC~^^^^^^^^^^~03/01/2015~
-~19921~^~337~^0.^0^^~4~^~FLC~^^^^^^^^^^~03/01/2015~
-~19921~^~338~^0.^0^^~4~^~FLC~^^^^^^^^^^~03/01/2015~
-~19921~^~417~^7.^0^^~4~^~FLC~^^^^^^^^^^~03/01/2015~
-~19921~^~431~^0.^0^^~4~^~FLC~^^^^^^^^^^~03/01/2015~
-~19921~^~432~^7.^0^^~4~^~FLC~^^^^^^^^^^~03/01/2015~
-~19921~^~435~^7.^0^^~4~^~NC~^^^^^^^^^^~03/01/2015~
-~19921~^~601~^0.^0^^~4~^~FLC~^^^^^^^^^^~03/01/2015~
-~19921~^~636~^0.^0^^~4~^~FLC~^^^^^^^^^^~03/01/2015~
-~19922~^~208~^481.^0^^~4~^~NC~^^^^^^^^^^~08/01/2015~
-~19922~^~262~^0.^0^^~4~^~FLC~^^^^^^^^^^~03/01/2015~
-~19922~^~263~^0.^0^^~4~^~FLC~^^^^^^^^^^~03/01/2015~
-~19922~^~268~^2012.^0^^~4~^~NC~^^^^^^^^^^~08/01/2015~
-~19922~^~301~^43.^0^^~8~^~LC~^^^^^^^^^^~08/01/2015~
-~19922~^~304~^27.^0^^~4~^~FLC~^^^^^^^^^^~08/01/2015~
-~19922~^~305~^93.^0^^~4~^~FLC~^^^^^^^^^^~08/01/2015~
-~19922~^~306~^294.^0^^~4~^~FLC~^^^^^^^^^^~08/01/2015~
-~19922~^~307~^128.^0^^~8~^~LC~^^^^^^^^^^~08/01/2015~
-~19922~^~318~^0.^0^^~4~^~FLC~^^^^^^^^^^~03/01/2015~
-~19922~^~319~^0.^0^^~4~^~FLC~^^^^^^^^^^~03/01/2015~
-~19922~^~320~^0.^0^^~4~^~NC~^^^^^^^^^^~03/01/2015~
-~19922~^~321~^0.^0^^~4~^~FLC~^^^^^^^^^^~03/01/2015~
-~19922~^~322~^0.^0^^~4~^~FLC~^^^^^^^^^^~03/01/2015~
-~19922~^~324~^0.^0^^~4~^~FLC~^^^^^^^^^^~03/01/2015~
-~19922~^~334~^0.^0^^~4~^~FLC~^^^^^^^^^^~03/01/2015~
-~19922~^~337~^0.^0^^~4~^~FLC~^^^^^^^^^^~03/01/2015~
-~19922~^~338~^0.^0^^~4~^~FLC~^^^^^^^^^^~03/01/2015~
-~19922~^~417~^22.^0^^~4~^~FLC~^^^^^^^^^^~08/01/2015~
-~19922~^~431~^0.^0^^~4~^~FLC~^^^^^^^^^^~03/01/2015~
-~19922~^~432~^22.^0^^~4~^~FLC~^^^^^^^^^^~08/01/2015~
-~19922~^~435~^22.^0^^~4~^~NC~^^^^^^^^^^~08/01/2015~
-~19922~^~601~^0.^0^^~4~^~FLC~^^^^^^^^^^~03/01/2015~
-~19922~^~636~^39.^0^^~4~^~FLC~^^^^^^^^^^~08/01/2015~
-~19923~^~208~^490.^0^^~4~^~NC~^^^^^^^^^^~03/01/2015~
-~19923~^~262~^0.^0^^~4~^~FLC~^^^^^^^^^^~03/01/2015~
-~19923~^~263~^0.^0^^~4~^~FLC~^^^^^^^^^^~03/01/2015~
-~19923~^~268~^2051.^0^^~4~^~NC~^^^^^^^^^^~03/01/2015~
-~19923~^~301~^94.^0^^~4~^~NR~^^^^^^^^^^~08/01/2015~
-~19923~^~304~^90.^0^^~4~^~FLC~^^^^^^^^^^~03/01/2015~
-~19923~^~305~^197.^0^^~4~^~FLC~^^^^^^^^^^~03/01/2015~
-~19923~^~306~^725.^0^^~4~^~FLC~^^^^^^^^^^~03/01/2015~
-~19923~^~307~^231.^0^^~8~^~LC~^^^^^^^^^^~08/01/2015~
-~19923~^~318~^1.^0^^~4~^~NC~^^^^^^^^^^~03/01/2015~
-~19923~^~319~^0.^0^^~4~^~FLC~^^^^^^^^^^~03/01/2015~
-~19923~^~320~^0.^0^^~4~^~NC~^^^^^^^^^^~03/01/2015~
-~19923~^~321~^0.^0^^~4~^~FLC~^^^^^^^^^^~03/01/2015~
-~19923~^~322~^0.^0^^~4~^~FLC~^^^^^^^^^^~03/01/2015~
-~19923~^~324~^0.^0^^~4~^~FLC~^^^^^^^^^^~03/01/2015~
-~19923~^~334~^0.^0^^~4~^~FLC~^^^^^^^^^^~03/01/2015~
-~19923~^~337~^0.^0^^~4~^~FLC~^^^^^^^^^^~03/01/2015~
-~19923~^~338~^0.^0^^~4~^~FLC~^^^^^^^^^^~03/01/2015~
-~19923~^~417~^51.^0^^~4~^~FLC~^^^^^^^^^^~03/01/2015~
-~19923~^~431~^0.^0^^~4~^~FLC~^^^^^^^^^^~03/01/2015~
-~19923~^~432~^51.^0^^~4~^~FLC~^^^^^^^^^^~03/01/2015~
-~19923~^~435~^51.^0^^~4~^~NC~^^^^^^^^^^~03/01/2015~
-~19923~^~601~^0.^0^^~4~^~FLC~^^^^^^^^^^~03/01/2015~
-~19923~^~636~^0.^0^^~4~^~FLC~^^^^^^^^^^~03/01/2015~
-~19924~^~208~^269.^0^^~4~^~NC~^^^^^^^^^^~06/01/2015~
-~19924~^~262~^18.^0^^~4~^~FLC~^^^^^^^^^^~06/01/2015~
-~19924~^~263~^163.^0^^~4~^~FLC~^^^^^^^^^^~06/01/2015~
-~19924~^~268~^1125.^0^^~4~^~NC~^^^^^^^^^^~06/01/2015~
-~19924~^~301~^0.^0^^~8~^~LC~^^^^^^^^^^~08/01/2015~
-~19924~^~304~^40.^0^^~4~^~FLC~^^^^^^^^^^~06/01/2015~
-~19924~^~305~^58.^0^^~4~^~FLC~^^^^^^^^^^~06/01/2015~
-~19924~^~306~^122.^0^^~4~^~FLC~^^^^^^^^^^~06/01/2015~
-~19924~^~307~^150.^0^^~8~^~LC~^^^^^^^^^^~06/01/2015~
-~19924~^~318~^0.^0^^~8~^~LC~^^^^^^^^^^~08/01/2015~
-~19924~^~319~^0.^0^^~4~^~FLC~^^^^^^^^^^~06/01/2015~
-~19924~^~320~^0.^0^^~4~^~NC~^^^^^^^^^^~06/01/2015~
-~19924~^~321~^0.^0^^~4~^~FLC~^^^^^^^^^^~06/01/2015~
-~19924~^~322~^0.^0^^~4~^~FLC~^^^^^^^^^^~06/01/2015~
-~19924~^~324~^0.^0^^~4~^~FLC~^^^^^^^^^^~06/01/2015~
-~19924~^~334~^0.^0^^~4~^~FLC~^^^^^^^^^^~06/01/2015~
-~19924~^~337~^0.^0^^~4~^~FLC~^^^^^^^^^^~06/01/2015~
-~19924~^~338~^3.^0^^~4~^~FLC~^^^^^^^^^^~06/01/2015~
-~19924~^~417~^3.^0^^~4~^~FLC~^^^^^^^^^^~06/01/2015~
-~19924~^~431~^0.^0^^~4~^~FLC~^^^^^^^^^^~06/01/2015~
-~19924~^~432~^3.^0^^~4~^~FLC~^^^^^^^^^^~06/01/2015~
-~19924~^~435~^3.^0^^~4~^~NC~^^^^^^^^^^~06/01/2015~
-~19924~^~601~^0.^0^^~4~^~FLC~^^^^^^^^^^~06/01/2015~
-~19924~^~636~^0.^0^^~4~^~FLC~^^^^^^^^^^~06/01/2015~
-~20001~^~208~^371.^0^^~4~^~NC~^^^^^^^^^^~05/01/2008~
-~20001~^~268~^1554.^0^^~4~^~NC~^^^^^^^^^^~05/01/2008~
-~20001~^~301~^159.^3^26.^~1~^~A~^^^1^129.^211.^2^46.^271.^~4~^~05/01/2008~
-~20001~^~304~^248.^3^23.^~1~^~A~^^^1^216.^294.^2^147.^349.^~4~^~05/01/2008~
-~20001~^~305~^557.^3^46.^~1~^~A~^^^1^502.^649.^2^358.^755.^~4~^~05/01/2008~
-~20001~^~306~^508.^3^17.^~1~^~A~^^^1^478.^537.^2^434.^581.^~4~^~05/01/2008~
-~20001~^~307~^4.^3^0.^~1~^~A~^^^1^4.^4.^2^3.^3.^~1, 4~^~05/01/2008~
-~20001~^~318~^2.^1^^~1~^~A~^^^^^^^^^^~05/01/2008~
-~20001~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2002~
-~20001~^~320~^0.^1^^~1~^~A~^^^^^^^^^^~05/01/2008~
-~20001~^~321~^1.^1^^~1~^~A~^^^^^^^^^~1~^~05/01/2008~
-~20001~^~322~^0.^1^^~1~^~A~^^^^^^^^^~1~^~05/01/2008~
-~20001~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~
-~20001~^~334~^0.^1^^~1~^~A~^^^^^^^^^^~05/01/2008~
-~20001~^~337~^0.^1^^~1~^~A~^^^^^^^^^~1~^~05/01/2008~
-~20001~^~338~^28.^1^^~1~^~A~^^^^^^^^^^~05/01/2008~
-~20001~^~417~^82.^3^14.^~1~^~A~^^^1^66.^111.^2^20.^144.^~4~^~05/01/2008~
-~20001~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~
-~20001~^~432~^82.^3^14.^~1~^~A~^^^1^66.^111.^2^20.^144.^~4~^~05/01/2008~
-~20001~^~435~^82.^0^^~4~^~NC~^^^^^^^^^^~05/01/2008~
-~20001~^~601~^0.^0^^~7~^~Z~^^^^^^^^^^~10/01/1989~
-~20001~^~636~^24.^1^^~1~^^^^^^^^^^^~10/01/1989~
-~20002~^~208~^102.^0^^~4~^~NC~^^^^^^^^^^~03/01/2008~
-~20002~^~268~^429.^0^^~4~^~NC~^^^^^^^^^^~03/01/2008~
-~20002~^~301~^47.^3^^~1~^~A~^^^1^35.^64.^^^^~2~^~04/01/2007~
-~20002~^~304~^65.^3^^~1~^~A~^^^1^55.^84.^^^^~2~^~04/01/2007~
-~20002~^~305~^148.^3^^~1~^~A~^^^1^127.^180.^^^^~2~^~04/01/2007~
-~20002~^~306~^135.^3^^~1~^~A~^^^1^122.^143.^^^^~2~^~04/01/2007~
-~20002~^~307~^6.^3^^~1~^~A~^^^1^4.^9.^^^^~1, 2~^~04/01/2007~
-~20002~^~417~^22.^3^^~1~^~A~^^^1^18.^30.^^^^~2~^~04/01/2007~
-~20002~^~432~^22.^3^^~1~^~A~^^^1^18.^30.^^^^~2~^~04/01/2007~
-~20003~^~208~^357.^0^^~4~^~NC~^^^^^^^^^^~10/01/1989~
-~20003~^~268~^1494.^0^^~4~^^^^^^^^^^^
-~20003~^~301~^40.^2^^~1~^^^^^^^^^^^~10/01/1989~
-~20003~^~304~^3.^2^^~1~^^^^^^^^^^^~10/01/1989~
-~20003~^~305~^5.^2^^~1~^^^^^^^^^^^~10/01/1989~
-~20003~^~306~^11.^2^^~1~^^^^^^^^^^^~10/01/1989~
-~20003~^~307~^2.^2^^~1~^^^^^^^^^^^~10/01/1989~
-~20003~^~318~^0.^0^^~4~^^^^^^^^^^^~10/01/1989~
-~20003~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2002~
-~20003~^~320~^0.^0^^~4~^^^^^^^^^^^~06/01/2002~
-~20003~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~
-~20003~^~417~^7.^2^^~1~^^^^^^^^^^^~10/01/1989~
-~20003~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~
-~20003~^~432~^7.^2^^~1~^^^^^^^^^^^~10/01/1989~
-~20003~^~435~^7.^0^^~4~^~NC~^^^^^^^^^^~01/01/2001~
-~20003~^~601~^0.^0^^~7~^~Z~^^^^^^^^^^~10/01/1989~
-~20004~^~208~^354.^0^^~4~^~NC~^^^^^^^^^^~10/01/1989~
-~20004~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~09/01/2002~
-~20004~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~09/01/2002~
-~20004~^~268~^1481.^0^^~4~^^^^^^^^^^^~06/01/2006~
-~20004~^~301~^33.^16^1.^~1~^^^^^^^^^^^~10/01/1989~
-~20004~^~304~^133.^16^3.^~1~^^^^^^^^^^^~10/01/1989~
-~20004~^~305~^264.^9^24.^~1~^^^^^^^^^^^~10/01/1989~
-~20004~^~306~^452.^16^8.^~1~^^^^^^^^^^^~10/01/1989~
-~20004~^~307~^12.^15^1.^~1~^^^^^^^^^^^~10/01/1989~
-~20004~^~318~^22.^0^^~4~^^^^^^^^^^^~10/01/1989~
-~20004~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2002~
-~20004~^~320~^1.^0^^~4~^~NC~^^^^^^^^^^~09/01/2002~
-~20004~^~321~^13.^0^^~4~^~O~^^^^^^^^^^~09/01/2002~
-~20004~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~09/01/2002~
-~20004~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~
-~20004~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~09/01/2002~
-~20004~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~09/01/2002~
-~20004~^~338~^160.^0^^~4~^~BFZN~^~20130~^^^^^^^^^~09/01/2002~
-~20004~^~417~^19.^6^1.^~1~^^^^^^^^^^^~10/01/1989~
-~20004~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~
-~20004~^~432~^19.^6^1.^~1~^^^^^^^^^^^~09/01/2002~
-~20004~^~435~^19.^0^^~4~^~NC~^^^^^^^^^^~06/01/2006~
-~20004~^~601~^0.^0^^~7~^~Z~^^^^^^^^^^~10/01/1989~
-~20005~^~208~^352.^0^^~4~^~NC~^^^^^^^^^^~10/01/1989~
-~20005~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~09/01/2002~
-~20005~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~09/01/2002~
-~20005~^~268~^1473.^0^^~4~^^^^^^^^^^^~03/01/2007~
-~20005~^~301~^29.^11^1.^~1~^^^^^^^^^^^~10/01/1989~
-~20005~^~304~^79.^11^3.^~1~^^^^^^^^^^^~10/01/1989~
-~20005~^~305~^221.^15^11.^~1~^^^^^^^^^^^~10/01/1989~
-~20005~^~306~^280.^13^10.^~1~^^^^^^^^^^^~10/01/1989~
-~20005~^~307~^9.^13^2.^~1~^^^^^^^^^^^~10/01/1989~
-~20005~^~318~^22.^2^^~1~^^^^^^^^^^^~10/01/1989~
-~20005~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2002~
-~20005~^~320~^1.^0^^~4~^~NC~^^^^^^^^^^~03/01/2007~
-~20005~^~321~^13.^0^^~4~^~O~^^^^^^^^^^~09/01/2002~
-~20005~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~09/01/2002~
-~20005~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~
-~20005~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~09/01/2002~
-~20005~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~09/01/2002~
-~20005~^~338~^160.^0^^~4~^~BFZN~^~20130~^^^^^^^^^~09/01/2002~
-~20005~^~417~^23.^8^1.^~1~^^^^^^^^^^^~10/01/1989~
-~20005~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~
-~20005~^~432~^23.^8^1.^~1~^^^^^^^^^^^~03/01/2007~
-~20005~^~435~^23.^0^^~4~^~NC~^^^^^^^^^^~03/01/2007~
-~20005~^~601~^0.^0^^~7~^~Z~^^^^^^^^^^~10/01/1989~
-~20006~^~208~^123.^0^^~4~^~NC~^^^^^^^^^^~03/01/2007~
-~20006~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~09/01/2002~
-~20006~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~09/01/2002~
-~20006~^~268~^515.^0^^~4~^~NC~^^^^^^^^^^~03/01/2007~
-~20006~^~301~^11.^4^2.^~1~^^^^^^^^^^^~10/01/1989~
-~20006~^~304~^22.^5^2.^~1~^^^^^^^^^^^~10/01/1989~
-~20006~^~305~^54.^5^2.^~1~^^^^^^^^^^^~10/01/1989~
-~20006~^~306~^93.^5^21.^~1~^^^^^^^^^^^~10/01/1989~
-~20006~^~307~^3.^1^^~4~^^^^^^^^^^^~10/01/1989~
-~20006~^~318~^7.^0^^~4~^^^^^^^^^^^~10/01/1989~
-~20006~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2002~
-~20006~^~320~^0.^0^^~4~^~NC~^^^^^^^^^^~03/01/2007~
-~20006~^~321~^5.^0^^~4~^~BFSN~^~20005~^^^^^^^^^~09/01/2002~
-~20006~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~09/01/2002~
-~20006~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~
-~20006~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~09/01/2002~
-~20006~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~09/01/2002~
-~20006~^~338~^56.^0^^~4~^~BFSN~^~20005~^^^^^^^^^~09/01/2002~
-~20006~^~417~^16.^3^8.^~1~^^^^^^^^^^^~10/01/1989~
-~20006~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~
-~20006~^~432~^16.^3^8.^~1~^^^^^^^^^^^~03/01/2007~
-~20006~^~435~^16.^0^^~4~^~NC~^^^^^^^^^^~03/01/2007~
-~20006~^~601~^0.^0^^~7~^~Z~^^^^^^^^^^~10/01/1989~
-~20008~^~208~^343.^0^^~4~^~NC~^^^^^^^^^^~10/01/1989~
-~20008~^~268~^1435.^0^^~4~^^^^^^^^^^^~05/01/2005~
-~20008~^~301~^18.^1^^~1~^^^^^^^^^^^~10/01/1989~
-~20008~^~304~^231.^1^^~1~^^^^^^^^^^^~10/01/1989~
-~20008~^~305~^347.^1^^~1~^^^^^^^^^^^~10/01/1989~
-~20008~^~306~^460.^1^^~1~^^^^^^^^^^^~10/01/1989~
-~20008~^~307~^1.^1^^~1~^^^^^^^^^^^~10/01/1989~
-~20008~^~318~^0.^0^^~4~^^^^^^^^^^^~10/01/1989~
-~20008~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2002~
-~20008~^~320~^0.^0^^~4~^^^^^^^^^^^~06/01/2002~
-~20008~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~
-~20008~^~417~^30.^1^^~1~^^^^^^^^^^^~10/01/1989~
-~20008~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~
-~20008~^~432~^30.^1^^~1~^^^^^^^^^^^~10/01/1989~
-~20008~^~435~^30.^0^^~4~^~NC~^^^^^^^^^^~05/01/2005~
-~20008~^~601~^0.^0^^~7~^~Z~^^^^^^^^^^~10/01/1989~
-~20009~^~208~^346.^0^^~4~^~NC~^^^^^^^^^^~10/01/1989~
-~20009~^~268~^1448.^0^^~4~^^^^^^^^^^^~12/01/2006~
-~20009~^~301~^17.^5^1.^~1~^^^^^^^^^^^~10/01/1989~
-~20009~^~304~^221.^4^39.^~1~^^^^^^^^^^^~10/01/1989~
-~20009~^~305~^319.^4^114.^~1~^^^^^^^^^^^~10/01/1989~
-~20009~^~306~^320.^5^103.^~1~^^^^^^^^^^^~10/01/1989~
-~20009~^~307~^11.^2^^~1~^^^^^^^^^^^~10/01/1989~
-~20009~^~318~^0.^0^^~4~^^^^^^^^^^^~10/01/1989~
-~20009~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2002~
-~20009~^~320~^0.^0^^~1~^~AS~^^^^^^^^^^~12/01/2006~
-~20009~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~
-~20009~^~417~^42.^3^4.^~1~^^^^^^^^^^^~10/01/1989~
-~20009~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~
-~20009~^~432~^42.^3^4.^~1~^^^^^^^^^^^~12/01/2006~
-~20009~^~435~^42.^0^^~4~^~NC~^^^^^^^^^^~12/01/2006~
-~20009~^~601~^0.^0^^~7~^~Z~^^^^^^^^^^~10/01/1989~
-~20010~^~208~^92.^0^^~4~^~NC~^^^^^^^^^^~10/01/1989~
-~20010~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2001~
-~20010~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~04/01/2001~
-~20010~^~268~^385.^0^^~4~^^^^^^^^^^^~11/01/2006~
-~20010~^~301~^7.^5^0.^~1~^^^^^^^^^^^~10/01/1989~
-~20010~^~304~^51.^5^7.^~1~^^^^^^^^^^^~10/01/1989~
-~20010~^~305~^70.^4^19.^~1~^^^^^^^^^^^~10/01/1989~
-~20010~^~306~^88.^4^19.^~1~^^^^^^^^^^^~10/01/1989~
-~20010~^~307~^4.^5^0.^~1~^^^^^^^^^^^~10/01/1989~
-~20010~^~318~^0.^0^^~4~^^^^^^^^^^^~10/01/1989~
-~20010~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2002~
-~20010~^~320~^0.^0^^~4~^~NC~^^^^^^^^^^~11/01/2006~
-~20010~^~321~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2003~
-~20010~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2003~
-~20010~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~
-~20010~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2003~
-~20010~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2003~
-~20010~^~338~^60.^0^^~4~^~BFSN~^~20080~^^^^^^^^^~03/01/2003~
-~20010~^~417~^14.^4^7.^~1~^^^^^^^^^^^~10/01/1989~
-~20010~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~
-~20010~^~432~^14.^4^7.^~1~^^^^^^^^^^^~11/01/2006~
-~20010~^~435~^14.^0^^~4~^~NC~^^^^^^^^^^~11/01/2006~
-~20010~^~601~^0.^0^^~7~^~Z~^^^^^^^^^^~10/01/1989~
-~20011~^~208~^335.^0^^~4~^~NC~^^^^^^^^^^~10/01/1989~
-~20011~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~10/01/2002~
-~20011~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~10/01/2002~
-~20011~^~268~^1402.^0^^~4~^^^^^^^^^^^~12/01/2006~
-~20011~^~301~^41.^4^4.^~1~^^^^^^^^^^^~10/01/1989~
-~20011~^~304~^251.^4^19.^~1~^^^^^^^^^^^~10/01/1989~
-~20011~^~305~^337.^4^101.^~1~^^^^^^^^^^^~10/01/1989~
-~20011~^~306~^577.^4^18.^~1~^^^^^^^^^^^~10/01/1989~
-~20011~^~307~^11.^0^^~4~^^^^^^^^^^^~10/01/1989~
-~20011~^~318~^0.^0^^~4~^^^^^^^^^^^~10/01/1989~
-~20011~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2002~
-~20011~^~320~^0.^0^^~4~^~NC~^^^^^^^^^^~12/01/2006~
-~20011~^~321~^0.^0^^~7~^~Z~^^^^^^^^^^~10/01/2002~
-~20011~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~10/01/2002~
-~20011~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~
-~20011~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~10/01/2002~
-~20011~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~10/01/2002~
-~20011~^~338~^220.^0^^~4~^~BFZN~^~20080~^^^^^^^^^~10/01/2002~
-~20011~^~417~^54.^8^6.^~1~^^^^^^^^^^^~10/01/1989~
-~20011~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~
-~20011~^~432~^54.^8^6.^~1~^^^^^^^^^^^~12/01/2006~
-~20011~^~435~^54.^0^^~4~^~NC~^^^^^^^^^^~12/01/2006~
-~20011~^~601~^0.^0^^~7~^~Z~^^^^^^^^^^~10/01/1989~
-~20012~^~208~^342.^0^^~4~^~NC~^^^^^^^^^^~10/01/1989~
-~20012~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~10/01/2002~
-~20012~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~10/01/2002~
-~20012~^~268~^1431.^0^^~4~^^^^^^^^^^^~03/01/2007~
-~20012~^~301~^35.^10^5.^~1~^^^^^^^^^^^~10/01/1989~
-~20012~^~304~^164.^9^23.^~1~^^^^^^^^^^^~10/01/1989~
-~20012~^~305~^300.^9^36.^~1~^^^^^^^^^^^~10/01/1989~
-~20012~^~306~^410.^9^37.^~1~^^^^^^^^^^^~10/01/1989~
-~20012~^~307~^17.^6^5.^~1~^^^^^^^^^^^~10/01/1989~
-~20012~^~318~^9.^0^^~4~^~NC~^^^^^^^^^^~05/01/2007~
-~20012~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2002~
-~20012~^~320~^0.^0^^~4~^~NC~^^^^^^^^^^~03/01/2007~
-~20012~^~321~^5.^0^^~4~^~BFZN~^~20080~^^^^^^^^^~10/01/2002~
-~20012~^~322~^0.^0^^~4~^~BFZN~^~20080~^^^^^^^^^~10/01/2002~
-~20012~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~
-~20012~^~334~^0.^0^^~4~^~BFZN~^~20080~^^^^^^^^^~10/01/2002~
-~20012~^~337~^0.^0^^~4~^~BFZN~^~20080~^^^^^^^^^~10/01/2002~
-~20012~^~338~^220.^0^^~4~^~BFZN~^~20080~^^^^^^^^^~10/01/2002~
-~20012~^~417~^27.^5^3.^~1~^^^^^^^^^^^~10/01/1989~
-~20012~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~
-~20012~^~432~^27.^5^3.^~1~^^^^^^^^^^^~03/01/2007~
-~20012~^~435~^27.^0^^~4~^~NC~^^^^^^^^^^~05/01/2007~
-~20012~^~601~^0.^0^^~7~^^^^^^^^^^^~10/01/1989~
-~20013~^~208~^83.^0^^~4~^~NC~^^^^^^^^^^~10/01/1989~
-~20013~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~
-~20013~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~
-~20013~^~268~^347.^0^^~4~^^^^^^^^^^^~01/01/2007~
-~20013~^~301~^10.^3^0.^~1~^^^^^^^^^^^~10/01/1989~
-~20013~^~304~^32.^3^1.^~1~^^^^^^^^^^^~10/01/1989~
-~20013~^~305~^40.^3^9.^~1~^^^^^^^^^^^~10/01/1989~
-~20013~^~306~^68.^3^8.^~1~^^^^^^^^^^^~10/01/1989~
-~20013~^~307~^5.^3^0.^~1~^^^^^^^^^^^~10/01/1989~
-~20013~^~318~^2.^0^^~4~^~NC~^^^^^^^^^^~01/01/2007~
-~20013~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2002~
-~20013~^~320~^0.^0^^~4~^~NC~^^^^^^^^^^~01/01/2007~
-~20013~^~321~^1.^0^^~4~^~BFSN~^~20012~^^^^^^^^^~02/01/2003~
-~20013~^~322~^0.^0^^~4~^~BFSN~^~20012~^^^^^^^^^~02/01/2003~
-~20013~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~
-~20013~^~334~^0.^0^^~4~^~BFSN~^~20012~^^^^^^^^^~02/01/2003~
-~20013~^~337~^0.^0^^~4~^~BFSN~^~20012~^^^^^^^^^~02/01/2003~
-~20013~^~338~^54.^0^^~4~^~BFSN~^~20012~^^^^^^^^^~02/01/2003~
-~20013~^~417~^18.^3^3.^~1~^^^^^^^^^^^~10/01/1989~
-~20013~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~
-~20013~^~432~^18.^3^3.^~1~^^^^^^^^^^^~01/01/2007~
-~20013~^~435~^18.^0^^~4~^~NC~^^^^^^^^^^~01/01/2007~
-~20013~^~601~^0.^0^^~7~^~Z~^^^^^^^^^^~10/01/1989~
-~20014~^~208~^365.^0^^~4~^~NC~^^^^^^^^^^~10/01/1989~
-~20014~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~10/01/2002~
-~20014~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~10/01/2002~
-~20014~^~268~^1527.^0^^~4~^^^^^^^^^^^
-~20014~^~301~^7.^4^0.^~1~^^^^^^^^^^^~10/01/1989~
-~20014~^~304~^127.^1^^~4~^^^^^^^^^^^~10/01/1989~
-~20014~^~305~^210.^5^28.^~1~^^^^^^^^^^^~10/01/1989~
-~20014~^~306~^287.^1^^~4~^^^^^^^^^^^~10/01/1989~
-~20014~^~307~^35.^1^^~4~^^^^^^^^^^^~10/01/1989~
-~20014~^~318~^214.^0^^~4~^~NC~^^^^^^^^^^~10/01/2002~
-~20014~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2002~
-~20014~^~320~^11.^0^^~4~^~NC~^^^^^^^^^^~10/01/2002~
-~20014~^~321~^97.^0^^~4~^~BFZN~^~20020~^^^^^^^^^~10/01/2002~
-~20014~^~322~^63.^0^^~4~^~BFZN~^~20020~^^^^^^^^^~10/01/2002~
-~20014~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~
-~20014~^~334~^0.^0^^~4~^~BFZN~^~20020~^^^^^^^^^~10/01/2002~
-~20014~^~337~^0.^0^^~4~^~BFZN~^~20020~^^^^^^^^^~10/01/2002~
-~20014~^~338~^1355.^0^^~4~^~BFZN~^~20020~^^^^^^^^^~10/01/2002~
-~20014~^~417~^19.^0^^~4~^^^^^^^^^^^~10/01/1989~
-~20014~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~
-~20014~^~432~^19.^0^^~4~^^^^^^^^^^^~10/01/2002~
-~20014~^~435~^19.^0^^~4~^~NC~^^^^^^^^^^~10/01/2002~
-~20014~^~601~^0.^0^^~7~^~Z~^^^^^^^^^^~10/01/1989~
-~20015~^~208~^224.^0^^~4~^~NC~^^^^^^^^^^~10/01/1989~
-~20015~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~11/01/2002~
-~20015~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~11/01/2002~
-~20015~^~268~^937.^0^^~4~^^^^^^^^^^^~12/01/2006~
-~20015~^~301~^42.^5^2.^~1~^^^^^^^^^^^~10/01/1989~
-~20015~^~304~^64.^5^6.^~1~^^^^^^^^^^^~10/01/1989~
-~20015~^~305~^72.^4^5.^~1~^^^^^^^^^^^~10/01/1989~
-~20015~^~306~^44.^5^2.^~1~^^^^^^^^^^^~10/01/1989~
-~20015~^~307~^7.^5^0.^~1~^^^^^^^^^^^~10/01/1989~
-~20015~^~318~^71.^2^^~1~^^^^^^^^^^^~10/01/1989~
-~20015~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2002~
-~20015~^~320~^4.^2^^~1~^^^^^^^^^^^~12/01/2006~
-~20015~^~321~^32.^0^^~4~^~BNA~^~20022~^^^^^^^^^~11/01/2002~
-~20015~^~322~^21.^0^^~4~^~BNA~^~20022~^^^^^^^^^~11/01/2002~
-~20015~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~
-~20015~^~334~^0.^0^^~4~^~BNA~^~20022~^^^^^^^^^~11/01/2002~
-~20015~^~337~^0.^0^^~4~^~BFZN~^~20022~^^^^^^^^^~11/01/2002~
-~20015~^~338~^1355.^0^^~4~^~BFZN~^~20022~^^^^^^^^^~11/01/2002~
-~20015~^~417~^4.^4^1.^~1~^^^^^^^^^^^~10/01/1989~
-~20015~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~
-~20015~^~432~^4.^4^1.^~1~^^^^^^^^^^^~12/01/2006~
-~20015~^~435~^4.^0^^~4~^~NC~^^^^^^^^^^~12/01/2006~
-~20015~^~601~^0.^0^^~7~^~Z~^^^^^^^^^^~10/01/1989~
-~20016~^~208~^361.^0^^~4~^~NC~^^^^^^^^^^~10/01/1989~
-~20016~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~10/01/2002~
-~20016~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~10/01/2002~
-~20016~^~268~^1510.^0^^~4~^^^^^^^^^^^~01/01/2007~
-~20016~^~301~^7.^2^^~1~^^^^^^^^^^^~10/01/1989~
-~20016~^~304~^93.^2^^~1~^^^^^^^^^^^~10/01/1989~
-~20016~^~305~^272.^2^^~1~^^^^^^^^^^^~10/01/1989~
-~20016~^~306~^315.^2^^~1~^^^^^^^^^^^~10/01/1989~
-~20016~^~307~^5.^1^^~4~^^^^^^^^^^^~10/01/1989~
-~20016~^~318~^214.^0^^~4~^~NC~^^^^^^^^^^~01/01/2007~
-~20016~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2002~
-~20016~^~320~^11.^0^^~4~^~NC~^^^^^^^^^^~01/01/2007~
-~20016~^~321~^97.^0^^~4~^~BFZN~^~20022~^^^^^^^^^~10/01/2002~
-~20016~^~322~^63.^0^^~4~^~BFZN~^~20022~^^^^^^^^^~10/01/2002~
-~20016~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~
-~20016~^~334~^0.^0^^~4~^~BFZN~^~20022~^^^^^^^^^~10/01/2002~
-~20016~^~337~^0.^0^^~4~^~BFZN~^~20022~^^^^^^^^^~10/01/2002~
-~20016~^~338~^1355.^0^^~4~^~BFZN~^~20022~^^^^^^^^^~10/01/2002~
-~20016~^~417~^25.^2^^~1~^^^^^^^^^^^~10/01/1989~
-~20016~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~
-~20016~^~432~^25.^2^^~1~^^^^^^^^^^^~01/01/2007~
-~20016~^~435~^25.^0^^~4~^~NC~^^^^^^^^^^~01/01/2007~
-~20016~^~601~^0.^0^^~7~^~Z~^^^^^^^^^^~10/01/1989~
-~20017~^~208~^363.^0^^~4~^~NC~^^^^^^^^^^~07/01/2014~
-~20017~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~10/01/2002~
-~20017~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~10/01/2002~
-~20017~^~268~^1517.^0^^~4~^~NC~^^^^^^^^^^~07/01/2014~
-~20017~^~301~^138.^23^33.^~1~^~A~^^^4^53.^210.^3^32.^243.^~2~^~07/01/2014~
-~20017~^~304~^93.^4^8.^~1~^~A~^^^3^81.^110.^2^55.^130.^~2~^~12/01/2009~
-~20017~^~305~^231.^5^20.^~1~^~A~^^^4^178.^275.^3^167.^295.^~2~^~07/01/2014~
-~20017~^~306~^262.^8^26.^~1~^~A~^^^5^159.^311.^4^188.^336.^~2~^~07/01/2014~
-~20017~^~307~^5.^7^0.^~1~^~A~^^^4^2.^7.^3^2.^8.^~2~^~12/01/2009~
-~20017~^~318~^5.^0^^~1~^~AS~^^^^^^^^^^~12/01/2009~
-~20017~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2002~
-~20017~^~320~^0.^0^^~1~^~AS~^^^^^^^^^^~12/01/2009~
-~20017~^~321~^2.^1^^~1~^~A~^^^^^^^^^^~12/01/2009~
-~20017~^~322~^0.^1^^~1~^~A~^^^^^^^^^^~12/01/2009~
-~20017~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~
-~20017~^~334~^2.^1^^~1~^~A~^^^^^^^^^^~12/01/2009~
-~20017~^~337~^0.^1^^~1~^~A~^^^^^^^^^~1~^~12/01/2009~
-~20017~^~338~^6.^1^^~1~^~A~^^^^^^^^^^~12/01/2009~
-~20017~^~417~^162.^0^^~4~^~NR~^^^^^^^^^^~11/01/2016~
-~20017~^~431~^133.^0^^~8~^~LC~^^^^^^^^^^~04/01/2017~
-~20017~^~432~^29.^2^^~1~^~A~^^^2^13.^45.^1^^^^~12/01/2009~
-~20017~^~435~^256.^0^^~4~^~NC~^^^^^^^^^^~11/01/2016~
-~20017~^~601~^0.^0^^~7~^~Z~^^^^^^^^^^~10/01/1989~
-~20018~^~208~^375.^0^^~4~^~NC~^^^^^^^^^^~11/01/1996~
-~20018~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~10/01/2002~
-~20018~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~10/01/2002~
-~20018~^~268~^1569.^0^^~4~^^^^^^^^^^^
-~20018~^~301~^2.^2^^~1~^~A~^^^^^^^^^^~11/01/1996~
-~20018~^~304~^18.^2^^~1~^~A~^^^^^^^^^^~11/01/1996~
-~20018~^~305~^60.^2^^~1~^~A~^^^^^^^^^^~11/01/1996~
-~20018~^~306~^90.^2^^~1~^~A~^^^^^^^^^^~11/01/1996~
-~20018~^~307~^1.^2^^~1~^~A~^^^^^^^^^^~11/01/1996~
-~20018~^~318~^214.^0^^~4~^~NC~^^^^^^^^^^~10/01/2002~
-~20018~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2002~
-~20018~^~320~^11.^0^^~4~^~NC~^^^^^^^^^^~10/01/2002~
-~20018~^~321~^97.^0^^~4~^~BFZN~^~20022~^^^^^^^^^~10/01/2002~
-~20018~^~322~^63.^0^^~4~^~BFZN~^~20022~^^^^^^^^^~10/01/2002~
-~20018~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~
-~20018~^~334~^0.^0^^~4~^~BFZN~^~20022~^^^^^^^^^~10/01/2002~
-~20018~^~337~^0.^0^^~4~^~BFZN~^~20022~^^^^^^^^^~10/01/2002~
-~20018~^~338~^1355.^0^^~4~^~BFZN~^~20022~^^^^^^^^^~10/01/2002~
-~20018~^~417~^48.^0^^~4~^~BFZN~^^^^^^^^^^~11/01/1996~
-~20018~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~
-~20018~^~432~^48.^0^^~4~^~BFZN~^^^^^^^^^^~10/01/2002~
-~20018~^~435~^48.^0^^~4~^~NC~^^^^^^^^^^~10/01/2002~
-~20018~^~601~^0.^0^^~7~^~Z~^^^^^^^^^^~11/01/1996~
-~20019~^~208~^363.^0^^~4~^~NC~^^^^^^^^^^~07/01/2014~
-~20019~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2010~
-~20019~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2010~
-~20019~^~268~^1517.^0^^~4~^~NC~^^^^^^^^^^~07/01/2014~
-~20019~^~301~^138.^23^33.^~1~^~A~^^^4^53.^210.^3^32.^243.^~2~^~07/01/2014~
-~20019~^~304~^93.^4^8.^~1~^~A~^^^3^81.^110.^2^55.^130.^~2~^~12/01/2009~
-~20019~^~305~^231.^5^20.^~1~^~A~^^^4^178.^275.^3^167.^295.^~2~^~07/01/2014~
-~20019~^~306~^262.^8^26.^~1~^~A~^^^5^159.^311.^4^188.^336.^~2~^~07/01/2014~
-~20019~^~307~^5.^7^0.^~1~^~A~^^^4^2.^7.^3^2.^8.^~2~^~12/01/2009~
-~20019~^~318~^5.^1^^~1~^~A~^^^^^^^^^^~12/01/2009~
-~20019~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2010~
-~20019~^~320~^0.^1^^~1~^~A~^^^^^^^^^^~12/01/2009~
-~20019~^~321~^2.^1^^~1~^~A~^^^^^^^^^^~12/01/2009~
-~20019~^~322~^0.^1^^~1~^~A~^^^^^^^^^^~12/01/2009~
-~20019~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2010~
-~20019~^~334~^2.^1^^~1~^~A~^^^^^^^^^^~12/01/2009~
-~20019~^~337~^0.^1^^~1~^~A~^^^^^^^^^^~12/01/2009~
-~20019~^~338~^6.^1^^~1~^~A~^^^^^^^^^^~12/01/2009~
-~20019~^~417~^29.^2^^~1~^~A~^^^2^13.^45.^1^^^^~01/01/2010~
-~20019~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2010~
-~20019~^~432~^29.^2^^~1~^~A~^^^2^13.^45.^1^^^^~12/01/2009~
-~20019~^~435~^29.^0^^~4~^~NC~^^^^^^^^^^~03/01/2010~
-~20019~^~601~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2010~
-~20020~^~208~^362.^0^^~4~^~NC~^^^^^^^^^^~10/01/1989~
-~20020~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~09/01/2002~
-~20020~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~09/01/2002~
-~20020~^~268~^1515.^0^^~4~^^^^^^^^^^^~01/01/2007~
-~20020~^~301~^6.^9^1.^~1~^^^^^^^^^^^~10/01/1989~
-~20020~^~304~^127.^6^18.^~1~^^^^^^^^^^^~10/01/1989~
-~20020~^~305~^241.^3^9.^~1~^^^^^^^^^^^~10/01/1989~
-~20020~^~306~^287.^6^9.^~1~^^^^^^^^^^^~10/01/1989~
-~20020~^~307~^35.^6^5.^~1~^^^^^^^^^^^~10/01/1989~
-~20020~^~318~^214.^0^^~4~^~NC~^^^^^^^^^^~05/01/2007~
-~20020~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2002~
-~20020~^~320~^11.^0^^~4~^~NC~^^^^^^^^^^~01/01/2007~
-~20020~^~321~^97.^0^^~4~^~BFZN~^~20022~^^^^^^^^^~09/01/2002~
-~20020~^~322~^63.^0^^~4~^~BFZN~^~20022~^^^^^^^^^~09/01/2002~
-~20020~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~
-~20020~^~334~^0.^0^^~4~^~BFZN~^~20022~^^^^^^^^^~09/01/2002~
-~20020~^~337~^0.^0^^~4~^~BFZN~^~20022~^^^^^^^^^~09/01/2002~
-~20020~^~338~^1355.^0^^~4~^~BFZN~^~20022~^^^^^^^^^~09/01/2002~
-~20020~^~417~^25.^0^^~4~^^^^^^^^^^^~10/01/1989~
-~20020~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~
-~20020~^~432~^25.^0^^~4~^^^^^^^^^^^~01/01/2007~
-~20020~^~435~^25.^0^^~4~^~NC~^^^^^^^^^^~05/01/2007~
-~20020~^~601~^0.^0^^~7~^~Z~^^^^^^^^^^~10/01/1989~
-~20022~^~208~^370.^0^^~4~^~NC~^^^^^^^^^^~12/01/2009~
-~20022~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~09/01/2002~
-~20022~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~09/01/2002~
-~20022~^~268~^1547.^0^^~4~^~NC~^^^^^^^^^^~12/01/2009~
-~20022~^~301~^3.^6^0.^~1~^~A~^^^2^2.^5.^3^1.^4.^~2, 3~^~12/01/2009~
-~20022~^~304~^32.^7^3.^~1~^~A~^^^2^18.^49.^4^22.^42.^~2, 3~^~12/01/2009~
-~20022~^~305~^99.^7^9.^~1~^~A~^^^2^63.^146.^4^71.^126.^~2, 3~^~12/01/2009~
-~20022~^~306~^142.^7^11.^~1~^~A~^^^2^95.^187.^4^110.^172.^~2, 3~^~12/01/2009~
-~20022~^~307~^7.^6^1.^~1~^~A~^^^2^4.^12.^4^2.^11.^~1, 2, 3~^~12/01/2009~
-~20022~^~318~^214.^3^^~1~^~A~^^^^^^^^^^~09/01/2002~
-~20022~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2002~
-~20022~^~320~^11.^3^^~1~^~A~^^^^^^^^^^~09/01/2002~
-~20022~^~321~^97.^3^^~1~^~A~^^^^^^^^^^~09/01/2002~
-~20022~^~322~^63.^3^^~1~^~A~^^^^^^^^^^~09/01/2002~
-~20022~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~
-~20022~^~334~^0.^5^0.^~1~^~A~^^^2^0.^0.^^^^~1, 2, 3~^~12/01/2009~
-~20022~^~337~^0.^5^0.^~1~^~A~^^^2^0.^0.^^^^~1, 2~^~04/01/2006~
-~20022~^~338~^1628.^5^272.^~1~^~A~^^^2^1355.^2120.^1^-1834.^5089.^~2~^~12/01/2009~
-~20022~^~417~^209.^36^21.^~1~^~A~^^^4^62.^387.^21^165.^253.^~4~^~12/01/2009~
-~20022~^~431~^180.^0^^~4~^~NC~^^^^^^^^^^~12/01/2009~
-~20022~^~432~^30.^4^2.^~1~^~A~^^^2^26.^38.^3^20.^38.^~4~^~12/01/2009~
-~20022~^~435~^335.^0^^~4~^~NC~^^^^^^^^^^~01/01/2010~
-~20022~^~601~^0.^0^^~7~^~Z~^^^^^^^^^^~10/01/1989~
-~20023~^~208~^334.^0^^~4~^~NC~^^^^^^^^^^~10/01/1989~
-~20023~^~268~^1397.^0^^~4~^^^^^^^^^^^~08/01/2008~
-~20023~^~301~^361.^16^6.^~1~^^^^^^^^^^^~10/01/1989~
-~20023~^~304~^86.^1^^~1~^^^^^^^^^^^~10/01/1989~
-~20023~^~305~^804.^16^16.^~1~^^^^^^^^^^^~10/01/1989~
-~20023~^~306~^255.^3^48.^~1~^^^^^^^^^^^~10/01/1989~
-~20023~^~307~^1247.^3^156.^~1~^^^^^^^^^^^~10/01/1989~
-~20023~^~318~^469.^0^^~4~^^^^^^^^^^^~10/01/1989~
-~20023~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2002~
-~20023~^~320~^23.^0^^~4~^~NC~^^^^^^^^^^~08/01/2008~
-~20023~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~
-~20023~^~417~^233.^0^^~4~^~BFZN~^~20022~^^^^^^^^^~05/01/2003~
-~20023~^~431~^176.^0^^~4~^~NC~^^^^^^^^^^~05/01/2003~
-~20023~^~432~^57.^1^^~1~^^^^^^^^^^^~10/01/1989~
-~20023~^~435~^356.^0^^~4~^~NC~^^^^^^^^^^~08/01/2008~
-~20023~^~601~^0.^0^^~7~^~Z~^^^^^^^^^^~10/01/1989~
-~20024~^~208~^348.^0^^~4~^~NC~^^^^^^^^^^~10/01/1989~
-~20024~^~268~^1456.^0^^~4~^^^^^^^^^^^
-~20024~^~301~^299.^38^5.^~1~^^^^^^^^^^^~10/01/1989~
-~20024~^~304~^54.^2^^~1~^^^^^^^^^^^~10/01/1989~
-~20024~^~305~^651.^37^13.^~1~^^^^^^^^^^^~10/01/1989~
-~20024~^~306~^207.^8^20.^~1~^^^^^^^^^^^~10/01/1989~
-~20024~^~307~^1319.^8^22.^~1~^^^^^^^^^^^~10/01/1989~
-~20024~^~318~^287.^1^^~1~^^^^^^^^^^^~10/01/1989~
-~20024~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2002~
-~20024~^~320~^14.^1^^~1~^^^^^^^^^^^~05/01/2003~
-~20024~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~
-~20024~^~417~^264.^2^^~1~^~A~^^^1^254.^273.^^^^^~05/01/2003~
-~20024~^~431~^198.^0^^~4~^~NC~^^^^^^^^^^~05/01/2003~
-~20024~^~432~^66.^10^2.^~1~^^^^^^^^^^^~10/01/1989~
-~20024~^~435~^402.^0^^~4~^~NC~^^^^^^^^^^~05/01/2003~
-~20024~^~601~^0.^0^^~7~^~Z~^^^^^^^^^^~10/01/1989~
-~20025~^~208~^355.^0^^~4~^~NC~^^^^^^^^^^~10/01/1989~
-~20025~^~268~^1485.^0^^~4~^^^^^^^^^^^~06/01/2008~
-~20025~^~301~^350.^20^5.^~1~^^^^^^^^^^^~10/01/1989~
-~20025~^~304~^49.^1^^~1~^^^^^^^^^^^~10/01/1989~
-~20025~^~305~^623.^19^8.^~1~^^^^^^^^^^^~10/01/1989~
-~20025~^~306~^170.^4^7.^~1~^^^^^^^^^^^~10/01/1989~
-~20025~^~307~^1348.^4^47.^~1~^^^^^^^^^^^~10/01/1989~
-~20025~^~318~^214.^0^^~4~^~BFZN~^~20022~^^^^^^^^^~06/01/2008~
-~20025~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2002~
-~20025~^~320~^11.^0^^~4~^~BFZN~^~20022~^^^^^^^^^~06/01/2008~
-~20025~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~
-~20025~^~417~^233.^0^^~4~^~BFZN~^~20022~^^^^^^^^^~05/01/2003~
-~20025~^~431~^202.^0^^~4~^~NC~^^^^^^^^^^~06/01/2008~
-~20025~^~432~^31.^1^^~1~^^^^^^^^^^^~10/01/1989~
-~20025~^~435~^374.^0^^~4~^~NC~^^^^^^^^^^~06/01/2008~
-~20025~^~601~^0.^0^^~7~^~Z~^^^^^^^^^^~10/01/1989~
-~20027~^~208~^381.^0^^~4~^~NC~^^^^^^^^^^~10/01/1989~
-~20027~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~09/01/2002~
-~20027~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~09/01/2002~
-~20027~^~268~^1594.^0^^~4~^^^^^^^^^^^~02/01/2007~
-~20027~^~301~^2.^7^0.^~1~^^^^^^^^^^^~10/01/1989~
-~20027~^~304~^3.^7^0.^~1~^^^^^^^^^^^~10/01/1989~
-~20027~^~305~^13.^3^0.^~1~^^^^^^^^^^^~10/01/1989~
-~20027~^~306~^3.^7^0.^~1~^^^^^^^^^^^~10/01/1989~
-~20027~^~307~^9.^4^2.^~1~^^^^^^^^^^^~10/01/1989~
-~20027~^~318~^0.^0^^~4~^^^^^^^^^^^~10/01/1989~
-~20027~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2002~
-~20027~^~320~^0.^0^^~1~^~AS~^^^^^^^^^^~02/01/2007~
-~20027~^~321~^0.^0^^~7~^~Z~^^^^^^^^^^~09/01/2002~
-~20027~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~09/01/2002~
-~20027~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~
-~20027~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~09/01/2002~
-~20027~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~09/01/2002~
-~20027~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~09/01/2002~
-~20027~^~417~^0.^1^^~4~^^^^^^^^^^^~10/01/1989~
-~20027~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~
-~20027~^~432~^0.^1^^~4~^^^^^^^^^^^~02/01/2007~
-~20027~^~435~^0.^0^^~4~^~NC~^^^^^^^^^^~02/01/2007~
-~20027~^~601~^0.^0^^~7~^~Z~^^^^^^^^^^~10/01/1989~
-~20028~^~208~^376.^0^^~4~^~NC~^^^^^^^^^^~10/01/1989~
-~20028~^~268~^1573.^0^^~4~^^^^^^^^^^^
-~20028~^~301~^24.^6^2.^~1~^^^^^^^^^^^~10/01/1989~
-~20028~^~304~^44.^6^2.^~1~^^^^^^^^^^^~10/01/1989~
-~20028~^~305~^170.^5^11.^~1~^^^^^^^^^^^~10/01/1989~
-~20028~^~306~^166.^6^17.^~1~^^^^^^^^^^^~10/01/1989~
-~20028~^~307~^10.^5^2.^~1~^^^^^^^^^^^~10/01/1989~
-~20028~^~318~^0.^0^^~4~^^^^^^^^^^^~10/01/1989~
-~20028~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2002~
-~20028~^~320~^0.^0^^~4~^^^^^^^^^^^~06/01/2002~
-~20028~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~
-~20028~^~417~^20.^4^2.^~1~^^^^^^^^^^^~10/01/1989~
-~20028~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~
-~20028~^~432~^20.^4^2.^~1~^^^^^^^^^^^~10/01/1989~
-~20028~^~435~^20.^0^^~4~^~NC~^^^^^^^^^^~01/01/2001~
-~20028~^~601~^0.^0^^~7~^~Z~^^^^^^^^^^~10/01/1989~
-~20029~^~208~^112.^0^^~4~^~NC~^^^^^^^^^^~10/01/1989~
-~20029~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~
-~20029~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2003~
-~20029~^~268~^469.^0^^~4~^^^^^^^^^^^~03/01/2007~
-~20029~^~301~^8.^4^0.^~1~^^^^^^^^^^^~10/01/1989~
-~20029~^~304~^8.^4^1.^~1~^^^^^^^^^^^~10/01/1989~
-~20029~^~305~^22.^4^13.^~1~^^^^^^^^^^^~10/01/1989~
-~20029~^~306~^58.^3^4.^~1~^^^^^^^^^^^~10/01/1989~
-~20029~^~307~^5.^4^0.^~1~^^^^^^^^^^^~10/01/1989~
-~20029~^~318~^0.^0^^~4~^^^^^^^^^^^~10/01/1989~
-~20029~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2002~
-~20029~^~320~^0.^0^^~4~^~NC~^^^^^^^^^^~03/01/2007~
-~20029~^~321~^0.^0^^~4~^~BFSN~^~20083~^^^^^^^^^~02/01/2003~
-~20029~^~322~^0.^0^^~4~^~BFSN~^~20083~^^^^^^^^^~02/01/2003~
-~20029~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2009~
-~20029~^~334~^0.^0^^~4~^~BFSN~^~20083~^^^^^^^^^~02/01/2003~
-~20029~^~337~^0.^0^^~4~^~BFSN~^~20083~^^^^^^^^^~02/01/2003~
-~20029~^~338~^25.^0^^~4~^~BFSN~^~20083~^^^^^^^^^~02/01/2003~
-~20029~^~417~^15.^3^8.^~1~^^^^^^^^^^^~10/01/1989~
-~20029~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~
-~20029~^~432~^15.^3^8.^~1~^^^^^^^^^^^~03/01/2007~
-~20029~^~435~^15.^0^^~4~^~NC~^^^^^^^^^^~03/01/2007~
-~20029~^~601~^0.^0^^~7~^~Z~^^^^^^^^^^~10/01/1989~
-~20030~^~208~^72.^0^^~4~^~NC~^^^^^^^^^^~10/01/1989~
-~20030~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2003~
-~20030~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~03/01/2003~
-~20030~^~268~^301.^0^^~4~^^^^^^^^^^^~03/01/2007~
-~20030~^~301~^10.^9^2.^~1~^^^^^^^^^^^~10/01/1989~
-~20030~^~304~^16.^7^0.^~1~^^^^^^^^^^^~10/01/1989~
-~20030~^~305~^35.^7^3.^~1~^^^^^^^^^^^~10/01/1989~
-~20030~^~306~^9.^7^2.^~1~^^^^^^^^^^^~10/01/1989~
-~20030~^~307~^267.^0^^~8~^~LC~^^^^^^^^^^~12/01/2016~
-~20030~^~318~^1.^0^^~4~^~NC~^^^^^^^^^^~05/01/2007~
-~20030~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2002~
-~20030~^~320~^0.^0^^~4~^~NC~^^^^^^^^^^~03/01/2007~
-~20030~^~321~^0.^0^^~4~^~BFSN~^~11905~^^^^^^^^^~03/01/2003~
-~20030~^~322~^0.^0^^~4~^~BFSN~^~11905~^^^^^^^^^~03/01/2003~
-~20030~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~
-~20030~^~334~^0.^0^^~4~^~BFSN~^~11905~^^^^^^^^^~03/01/2003~
-~20030~^~337~^0.^0^^~4~^~BFSN~^~11905~^^^^^^^^^~03/01/2003~
-~20030~^~338~^30.^0^^~4~^~BFSN~^~11905~^^^^^^^^^~03/01/2003~
-~20030~^~417~^1.^4^0.^~1~^^^^^^^^^^^~10/01/1989~
-~20030~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~
-~20030~^~432~^1.^4^0.^~1~^^^^^^^^^^^~03/01/2007~
-~20030~^~435~^1.^0^^~4~^~NC~^^^^^^^^^^~05/01/2007~
-~20030~^~601~^0.^0^^~8~^~LC~^^^^^^^^^^~12/01/2016~
-~20031~^~208~^378.^0^^~4~^~NC~^^^^^^^^^^~10/01/1989~
-~20031~^~268~^1582.^0^^~4~^^^^^^^^^^^
-~20031~^~301~^8.^19^0.^~1~^^^^^^^^^^^~10/01/1989~
-~20031~^~304~^114.^19^4.^~1~^^^^^^^^^^^~10/01/1989~
-~20031~^~305~^285.^1^^~1~^^^^^^^^^^^~10/01/1989~
-~20031~^~306~^195.^19^5.^~1~^^^^^^^^^^^~10/01/1989~
-~20031~^~307~^5.^19^0.^~1~^^^^^^^^^^^~10/01/1989~
-~20031~^~318~^0.^0^^~4~^^^^^^^^^^^~10/01/1989~
-~20031~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2002~
-~20031~^~320~^0.^0^^~4~^^^^^^^^^^^~06/01/2002~
-~20031~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~
-~20031~^~417~^85.^0^^~4~^^^^^^^^^^^~10/01/1989~
-~20031~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~
-~20031~^~432~^85.^0^^~4~^^^^^^^^^^^~10/01/1989~
-~20031~^~435~^85.^0^^~4~^~NC~^^^^^^^^^^~02/01/2003~
-~20031~^~601~^0.^0^^~7~^~Z~^^^^^^^^^^~10/01/1989~
-~20032~^~208~^119.^0^^~4~^~NC~^^^^^^^^^^~10/01/1989~
-~20032~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~
-~20032~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~
-~20032~^~268~^498.^0^^~4~^^^^^^^^^^^~03/01/2007~
-~20032~^~301~^3.^1^^~1~^^^^^^^^^^^~10/01/1989~
-~20032~^~304~^44.^1^^~1~^^^^^^^^^^^~10/01/1989~
-~20032~^~305~^100.^1^^~1~^^^^^^^^^^^~10/01/1989~
-~20032~^~306~^62.^1^^~1~^^^^^^^^^^^~10/01/1989~
-~20032~^~307~^2.^1^^~4~^^^^^^^^^^^~10/01/1989~
-~20032~^~318~^3.^0^^~4~^~NC~^^^^^^^^^^~05/01/2007~
-~20032~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2002~
-~20032~^~320~^0.^0^^~4~^~NC~^^^^^^^^^^~03/01/2007~
-~20032~^~321~^2.^0^^~4~^~BFSN~^~20080~^^^^^^^^^~02/01/2003~
-~20032~^~322~^0.^0^^~4~^~BFSN~^~20080~^^^^^^^^^~02/01/2003~
-~20032~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~
-~20032~^~334~^0.^0^^~4~^~BFSN~^~20080~^^^^^^^^^~02/01/2003~
-~20032~^~337~^0.^0^^~4~^~BFSN~^~20080~^^^^^^^^^~02/01/2003~
-~20032~^~338~^70.^0^^~4~^~BFSN~^~20080~^^^^^^^^^~02/01/2003~
-~20032~^~417~^19.^0^^~4~^^^^^^^^^^^~10/01/1989~
-~20032~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~
-~20032~^~432~^19.^0^^~4~^^^^^^^^^^^~03/01/2007~
-~20032~^~435~^19.^0^^~4~^~NC~^^^^^^^^^^~05/01/2007~
-~20032~^~601~^0.^0^^~7~^~Z~^^^^^^^^^^~10/01/1989~
-~20033~^~208~^246.^0^^~4~^~NC~^^^^^^^^^^~10/01/1989~
-~20033~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~10/01/2002~
-~20033~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~10/01/2002~
-~20033~^~268~^1029.^0^^~4~^^^^^^^^^^^~03/01/2007~
-~20033~^~301~^58.^8^6.^~1~^^^^^^^^^^^~10/01/1989~
-~20033~^~304~^235.^8^11.^~1~^^^^^^^^^^^~10/01/1989~
-~20033~^~305~^734.^5^26.^~1~^^^^^^^^^^^~10/01/1989~
-~20033~^~306~^566.^8^36.^~1~^^^^^^^^^^^~10/01/1989~
-~20033~^~307~^4.^8^0.^~1~^^^^^^^^^^^~10/01/1989~
-~20033~^~318~^0.^0^^~4~^^^^^^^^^^^~10/01/1989~
-~20033~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2002~
-~20033~^~320~^0.^0^^~4~^~NC~^^^^^^^^^^~03/01/2007~
-~20033~^~321~^0.^0^^~4~^~BFZN~^~08120~^^^^^^^^^~10/01/2002~
-~20033~^~322~^0.^0^^~4~^~BFZN~^~08120~^^^^^^^^^~10/01/2002~
-~20033~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~
-~20033~^~334~^0.^0^^~4~^~BFZN~^~08120~^^^^^^^^^~10/01/2002~
-~20033~^~337~^0.^0^^~4~^~BFZN~^~08120~^^^^^^^^^~10/01/2002~
-~20033~^~338~^180.^0^^~4~^~BFZN~^~08120~^^^^^^^^^~10/01/2002~
-~20033~^~417~^52.^6^8.^~1~^^^^^^^^^^^~10/01/1989~
-~20033~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~
-~20033~^~432~^52.^6^8.^~1~^^^^^^^^^^^~03/01/2007~
-~20033~^~435~^52.^0^^~4~^~NC~^^^^^^^^^^~03/01/2007~
-~20033~^~601~^0.^0^^~7~^~Z~^^^^^^^^^^~10/01/1989~
-~20034~^~208~^40.^0^^~4~^~NC~^^^^^^^^^^~10/01/1989~
-~20034~^~268~^167.^0^^~4~^^^^^^^^^^^
-~20034~^~301~^10.^0^^~1~^^^^^^^^^^^~10/01/1989~
-~20034~^~304~^40.^0^^~1~^^^^^^^^^^^~10/01/1989~
-~20034~^~305~^119.^0^^~1~^^^^^^^^^^^~10/01/1989~
-~20034~^~306~^92.^0^^~1~^^^^^^^^^^^~10/01/1989~
-~20034~^~307~^1.^0^^~1~^^^^^^^^^^^~10/01/1989~
-~20034~^~318~^0.^0^^~4~^^^^^^^^^^^~10/01/1989~
-~20034~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2002~
-~20034~^~320~^0.^0^^~4~^^^^^^^^^^^~06/01/2002~
-~20034~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~
-~20034~^~417~^6.^0^^~1~^^^^^^^^^^^~10/01/1989~
-~20034~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~
-~20034~^~432~^6.^0^^~1~^^^^^^^^^^^~10/01/1989~
-~20034~^~435~^6.^0^^~4~^~NC~^^^^^^^^^^~01/01/2001~
-~20034~^~601~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/1994~
-~20035~^~208~^368.^0^^~4~^~NC~^^^^^^^^^^~05/01/2008~
-~20035~^~268~^1539.^0^^~4~^~NC~^^^^^^^^^^~05/01/2008~
-~20035~^~301~^47.^3^0.^~1~^~A~^^^1^47.^48.^2^45.^48.^~2, 3~^~04/01/2007~
-~20035~^~304~^197.^3^6.^~1~^~A~^^^1^190.^210.^2^167.^225.^~2, 3~^~04/01/2007~
-~20035~^~305~^457.^3^23.^~1~^~A~^^^1^410.^480.^2^356.^557.^~2, 3~^~04/01/2007~
-~20035~^~306~^563.^3^38.^~1~^~A~^^^1^520.^640.^2^397.^728.^~2, 3~^~04/01/2007~
-~20035~^~307~^5.^3^0.^~1~^~A~^^^1^3.^6.^2^0.^8.^~2, 3~^~04/01/2007~
-~20035~^~318~^14.^0^^~1~^~AS~^^^^^^^^^^~04/01/2007~
-~20035~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2002~
-~20035~^~320~^1.^1^^~1~^~A~^^^^^^^^^^~04/01/2007~
-~20035~^~321~^8.^1^^~1~^~A~^^^^^^^^^^~04/01/2007~
-~20035~^~322~^0.^1^^~1~^~A~^^^^^^^^^^~04/01/2007~
-~20035~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~
-~20035~^~334~^1.^1^^~1~^~A~^^^^^^^^^^~04/01/2007~
-~20035~^~337~^0.^1^^~1~^~A~^^^^^^^^^~1~^~05/01/2008~
-~20035~^~338~^163.^1^^~1~^~A~^^^^^^^^^^~04/01/2007~
-~20035~^~417~^184.^3^8.^~1~^~A~^^^1^170.^199.^2^148.^220.^~2, 3~^~04/01/2007~
-~20035~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~
-~20035~^~432~^184.^3^8.^~1~^~A~^^^1^170.^199.^2^148.^220.^~2, 3~^~04/01/2007~
-~20035~^~435~^184.^0^^~4~^~NC~^^^^^^^^^^~05/01/2008~
-~20035~^~601~^0.^0^^~7~^~Z~^^^^^^^^^^~10/01/1989~
-~20036~^~208~^367.^0^^~4~^~NC~^^^^^^^^^^~04/01/2015~
-~20036~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~09/01/2002~
-~20036~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~09/01/2002~
-~20036~^~268~^1534.^0^^~4~^~NC~^^^^^^^^^^~04/01/2015~
-~20036~^~301~^9.^6^0.^~1~^~A~^^^1^8.^10.^4^8.^9.^~2, 3~^~04/01/2015~
-~20036~^~304~^116.^6^3.^~1~^~A~^^^1^103.^128.^4^105.^126.^~2, 3~^~04/01/2015~
-~20036~^~305~^311.^6^8.^~1~^~A~^^^1^284.^337.^4^287.^333.^~2, 3~^~04/01/2015~
-~20036~^~306~^250.^6^6.^~1~^~A~^^^1^231.^268.^4^232.^266.^~2, 3~^~04/01/2015~
-~20036~^~307~^5.^6^0.^~1~^~A~^^^1^5.^5.^4^4.^4.^~1, 2, 3~^~04/01/2015~
-~20036~^~318~^0.^0^^~1~^~AS~^^^^^^^^^^~04/01/2015~
-~20036~^~319~^0.^0^^~7~^~Z~^^^^^^^^^^~06/01/2002~
-~20036~^~320~^0.^0^^~1~^~AS~^^^^^^^^^^~07/01/2014~
-~20036~^~321~^0.^0^^~7~^~Z~^^^^^^^^^^~09/01/2002~
-~20036~^~322~^0.^0^^~7~^~Z~^^^^^^^^^^~09/01/2002~
-~20036~^~324~^0.^0^^~7~^~Z~^^^^^^^^^^~02/01/2009~
-~20036~^~334~^0.^0^^~7~^~Z~^^^^^^^^^^~09/01/2002~
-~20036~^~337~^0.^0^^~7~^~Z~^^^^^^^^^^~09/01/2002~
-~20036~^~338~^0.^0^^~7~^~Z~^^^^^^^^^^~09/01/2002~
-~20036~^~417~^23.^3^0.^~1~^~A~^^^1^22.^24.^1^21.^23.^~2, 3~^~04/01/2015~
-~20036~^~431~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~
-~20036~^~432~^23.^3^0.^~1~^~A~^^^1^22.^24.^1^21.^23.^^~04/01/2015~
-~20036~^~435~^23.^0^^~4~^~NC~^^^^^^^^^^~04/01/2015~
-~20036~^~601~^0.^0^^~7~^~Z~^^^^^^^^^^~10/01/1989~
-~20037~^~208~^123.^0^^~4~^~NC~^^^^^^^^^^~04/01/2015~
-~20037~^~262~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~
-~20037~^~263~^0.^0^^~7~^~Z~^^^^^^^^^^~01/01/2001~
-~20037~^~268~^514.^0^^~4~^~NC~^^^^^^^^^^~04/01/2015~
-~20037~^~301~^3.^6^0.^~1~^~A~^^^1^3.^3.^4^2.^3.^~2, 3~^~04/01/2015~
-~20037~^~304~^39.^6^1.^~1~^~A~^^^1^32.^42.^4^34.^43.^~2, 3~^~04/01/2015~
-~20037~^~305~^103.^6^4.^~1~^~A~^^^1^83.^114.^4^90.^115.^~2, 3~^~04/01/2015~
-~20037~^~306~^86.^6^3.^~1~^~A~^^^1^68.^94.^4^74.^96.^~2, 3~^~04/01/2015~
-~20037~^~307~^4.^6^0.^~1~^~A~^^^1^4.^4.^^^^~1, 2, 3~^~04/01/2015~
-~20037~^~318~